@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');


html { 
	
	--accentColor: rgb(20, 87, 112);
	--accentColor50: rgba(20, 87, 112, .5);
	--accentColorB: rgb(86 156 179);
	--accentColorPale: rgba(20, 87, 112, .08);
	--gray75: rgb(30, 30, 30, .7);
	--gray50: rgb(30, 30, 30, .6);
	--flagColor: rgb(254, 233, 220, 1);
	--flagColor50: rgb(254, 233, 220, .5);
	--lightGray: rgb(30, 30, 30, .2);
	--smText: 0.78rem; 
	--mdText: 0.85rem;
	--lgText: 1.15rem;
	--xlText: 1.5rem;
	--mainFont: "Inter Tight", sans-serif;
	--mainBodyColor : rgb(30, 30, 30);
	--pageMaxW: 1400px;
}

* {
	padding: 0px; 
	margin: 0px;
	box-sizing: border-box;
}

*:focus{ outline: none !important; }

::-webkit-scrollbar {
  width: 1rem;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 3px rgba(20, 87, 112, .4); 
  border-radius: 5px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(20, 87, 112, .2); 
  border-radius: 5px;
  border: 3px solid transparent;
  background-clip: content-box;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(20, 87, 112, .4); 
  border: 2px solid transparent;
  background-clip: content-box;
}

em span, i span { font-style: normal; }
u{text-decoration-skip-ink: auto; text-underline-offset:3px; text-decoration-thickness: .7px; }
p {margin-bottom: 1rem;}
strong, b { font-weight: 500; }
sup { line-height: 10px; }
mark { background-color: rgba(255, 255, 0, .6); }

html{
	font-size: 100%;
	font-family: var(--mainFont);
  	font-optical-sizing: auto;
  	font-weight: 300;
  	font-style: normal;
	color: var(--mainBodyColor);
	overflow-x: hidden;
	position: relative;
	letter-spacing: .4px;
}
h1, h2, h3, h4, h5, h6{ line-height: normal; margin-bottom: 1rem; font-weight: 500;  }

a { color: var(--accentColor); text-decoration-thickness: .5px !important; text-underline-offset: 1.5px !important; text-decoration-color: #aaa !important; }
a:hover { color: var(--accentColor); }

.footnote {
	font-size: var(--mdText);
    color: var(--gray75);
}


body{
	font-size: 16px;	
}


header{
	padding-top: 1.7vw;
    padding-bottom: 1.7vw;
    padding-left: 0;
    padding-right: 0;
   
	
}
#header-wrapper { 
	display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex: 1 0 67%;
    align-items: center;
    max-width: 1345px;
    margin: 0 auto 1rem;
	padding: 0 2vw;
	column-gap: 1rem;
}


.header-title-nav-wrapper {
    display: flex;
    flex-wrap: nowrap;
    flex: 1 0 67%;
    align-items: center
}

.header-title {
    flex-grow: 0;
    flex-shrink: 0;
    backface-visibility: hidden
}

@media only screen and (pointer: coarse) and (max-width: 1024px), screen and (max-width: 799px ) {
    .header-title {
        flex-grow:1
    }
}

.header-title-logo {
    width: auto;
    font-size: 0
}

.header-title-logo a {
    display: inline-block;
    max-width: 100%;
    max-height: 132px
}

.header-title-logo img {
    width: auto;
    max-width: 100%;
    max-height: 97px;
}

@media screen and (max-width: 767px ) {
    .header-title-logo a {
        max-height:88px
    }

    .header-title-logo img {
        max-height: 88px
    }
}

.header-title-text {
    margin: 0
}

.header-title-text a {
    opacity: 1
}

.header-title .header-mobile-logo {
    display: none
}

.header-nav-list{ display: flex; column-gap: 1.4vw; position: relative;  }


.header-nav-item {
	font-weight: 500;
	font-size: 21.12px;
    line-height: 1.43em;
    letter-spacing: normal;
	white-space: nowrap;
}
.header-nav-item:not(#catNav) a{color: var(--accentColorB); font-weight: 300; }
.header-nav-item a { text-decoration: none; display: inline-block}

#catNav, #catNav li.nav-active { border-bottom: 1px solid var(--accentColor); }
#catNav ul {
	display: flex;
    position: absolute;
    column-gap: 1.4vw;
	margin: 1rem auto 0;
} 
#catNav > ul{ 
	left: 12%;
    font-size: 1.35rem;
    font-weight: 450; }
#catNav li { width: auto; list-style: none; } 


/* level two nav*/
		#catNav ul ul{ 
			font-size: 1.1rem;
			position: absolute; padding: 0px;
			background-color: #FFF;
			text-align:left;
			-webkit-box-shadow: 0px 0px 20px -3px rgba(126, 90, 81, .5);
			-moz-box-shadow: 0px 0px 20px -3px rgba(126, 90, 81, .5);
			box-shadow: 0px 0px 20px -3px rgba(126, 90, 81, .5);
			display:none;
			z-index: 1010;
		    margin-top: 0px !important;
		}
		#catNav ul ul li {
			float:none; 
			display:block; 
			margin-right: 0; 
			border-top: 1px solid #efefef;
			padding: 10px
		}
/*		#catNav ul ul li a { line-height: 22px; border-bottom: 2px solid #fff; ; }
*/		

#sectionSideNav ul{
	list-style: none;
	font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.43em;
    letter-spacing: normal;
	max-width: 230px;
}
#sectionSideNav ul a { text-decoration: none; }
#sectionSideNav ul li { margin-bottom: .8rem; position: relative; }
#sectionSideNav ul a:hover { text-decoration: underline!important; }
#sectionSideNav ul li.selected > a, .header-nav-item a.nav-active { 
	font-weight: 500; 
	text-decoration: underline;
	text-underline-offset: 6px !important;
    text-decoration-thickness: 1.5px !important;
	text-decoration-color: var(--accentColor) !important; 
}
#sectionSideNav ul li.selected::after { content: '>';
display:inline-block;
    -webkit-transform:scale(0.7,1.5); /* Safari and Chrome */
    -moz-transform:scale(0.7,1.5); /* Firefox */
    -ms-transform:scale(0.7,1.5); /* IE 9 */
    -o-transform:scale(0.7,1.5); /* Opera */
    transform:scale(0.7,1.5); /* W3C */
	margin-left: .4rem; 
	color: #ccc;
	font-weight: 400;
	top: 0px;
    right: 10px;
    position: absolute;
}

#sectionSideNav ul ul { font-size: smaller; margin: 1rem; }
#sectionSideNav ul ul li { margin-bottom: .3rem;}

#sectionSideNav {
	position: sticky;
    top: 1rem;
	align-self: flex-start;
    max-height: 90vh;
    overflow-y: auto;
	grid-column: 1 / 2;
}

#siteBand{ background-color: var(--accentColor); height: 2rem; width: 100% !important; margin-bottom: 2rem;  }

#searchResultsBox{
	width: 100%;
    text-align: center;
    padding: .5rem;
    margin: .5rem 0 2rem;
	font-size: var(--mdText);
	background-color: var(--accentColorPale);
}
#searchTextAnnounceAFour{ display: none; }

input.highlighted{ background-color: lightgoldenrodyellow; }

#maincontent { 
	max-width: 1345px;
    margin: 0 auto ;
    padding-left: 2vw;
    padding-right: 2vw;
}
#mainWrapperInner{
	position: relative;
    min-height: 100vh;
	height: fit-content;
	padding-bottom: 140px;
}
#footer{
	font-size: .95rem;
	background-color: var(--accentColor);
	min-height: 100px;
	color: white;
    display: flex;
    flex-direction: column;
	align-items: center;
    justify-content: center;
    row-gap: .8rem;
    padding: 1rem;
	position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
#footer a {color: inherit !important; text-decoration-thickness: 1px;  }
#footer img{
	height: 20px; 
    width: inherit;
    max-width: fit-content;
}

/* ARTOWKR GRID */
#pageTopMatter h1 {margin: 0px; color: var(--accentColor); font-weight: 400; }
#mainTextDiv h2 { color: var(--accentColor); font-weight: 400; }

body:not(#indexphpDir).indexPage #mainBody{
    margin: 0 auto;
    align-content: flex-start;
}

body:not(#indexphpDir).indexPage #pageTopMatter, body:not(#indexphpDir).indexPage #topMatter{ margin-bottom: 2rem; }

body:not(#indexphpDir):not(#sectionDir).indexPage #pageTopMatter,
body:not(#indexphpDir).indexPage #filterAccordion{
	width: calc(25% - 1rem);
	margin-right: auto;
	float:left;
}
.indexPage #filterAccordion{
	position: sticky;
    align-self: flex-start;
    top: 1rem;
	font-size: var(--mdText);
}
body:not(#indexphpDir):not(#sectionDir).indexPage #topMatter,
body:not(#indexphpDir).indexPage #indexContainer{
	width: calc(75% - 1rem);
	margin-left: auto;
	float: right; 
}
.indexPage #topMatter{margin-top: .5rem; }
.entryPage  #pageTopMatter{margin-bottom: 2rem;}

#searchWrap{margin-bottom: 2rem;}
#indexContainer{
	display: flex; 
	flex-wrap: wrap;
    justify-content: space-between;
}
#catWorks, #indexContent{
	flex-basis: 100% !important;
	min-height: 40vh;
	    padding-top: 1rem;
}

#paginationTop, #sortControls{ z-index: 1000; }
#paginationTop{ margin-left: auto;}

.indexPage #viewBy{ display: none; }

.indexPage .catWorksCont, .accountPage #itemcont, .entryPage .catWorksCont #itemcont, .indvSeriesWrapper{
	display: grid;
	gap: 5rem 3rem;
}
.indexPage .catWorksCont{
		grid-template-columns: 1fr 1fr 1fr;
}
.entryPage .catWorksCont #itemcont, .indvSeriesWrapper, .accountPage #itemcont{
		grid-template-columns: 1fr 1fr 1fr 1fr;
}
.indvSeriesWrapper{}

.indvSeriesDescript{ display: inline; }

#sectionContentSeries h5{ 
	margin-bottom: 1rem;
	padding-right: .3rem;
	font-weight: 400;
	font-size: 1rem;
	display: inline-block;
}
#sectionContentSeries > div{ margin-bottom: 1rem; padding-bottom: 2rem; border-bottom: 1px solid var(--accentColor);}
#sectionContentSeries > div:last-of-type { margin-bottom: 0px; border: none !important; }

.indvSeriesDescript{
	margin-bottom: 1rem; 
	max-width: 900px;
	margin-top: -.6rem;}

.catWorksCont .item a.image, .catWorksCont .item a.recordContainer{
	text-align: center; 
    display: flex;
    align-items: center;
    height: 350px;
	justify-content: center;
    margin: 0 auto 1rem;
    width: 100%;
}

.catWorksCont .item{
	display: flex;
	justify-content: flex-start;
    flex-direction: column;
	    position: relative;
}

.catWorksCont .item img{
	max-width: 100% !important; width: auto !important; height: auto !important; max-height: 350px !important;
	margin: auto; 
}

/* DIFFERENT SIZE LAYOUTS */

#bottomA #catWorks.sizeWrapper{margin-top: -2rem;}

#catWorks.sizeWrapper #itemcont{
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    column-gap: 2rem;
}
#catWorks.sizeWrapper{ overflow-x: auto; padding-top: 0px !important; }

.sizeInner{ margin-left: 0px !important; }
#relativeSizeNote{ position: static !important; margin-bottom: 1rem; color: var(--gray75) !important; font-size: var(--mdText); }

body:not(#accountphpDir) #relativeSizeNote{
	width: 100%; margin: -2rem 0;
    position: relative !important;
    top: -1em !important;
    height: 1rem !important;

}

.listview #itemcont .item{ position: relative; margin-left: 2rem; }
.listview #itemcont .item .bookmarkCont { margin-left: -2rem; }
.listview #itemcont .item a.image {
    float: left;
    padding-right: 2rem;
    max-height: 300px;
	background-color: white;
    display: inline-block;
    width: auto;
    min-width: 200px;
    text-align: center;
}
.listview #itemcont{
	display: flex;
    flex-direction: column;
    row-gap: 3rem;
    max-width: 700px;
}
.listview .captionListsing { /*margin-left: 30px;*/  }

.listview #itemcont .item a.image img {max-width: 180px !important; height: auto; width: auto; max-height: 300px; }
#itemcont .reference, #itemcont .dims, #itemcont .creditline{ margin-top: .6rem; padding-top: .6rem; border-top: 1px solid #efefef; display: block;}

.bysize.item { width: fit-content !important;
    min-width: auto !important; 
    padding-bottom: 2rem;}

#catalogueDir.indexPage .item .caption{
	display: flex; 
	flex-direction: column;
	text-align: center;
	margin-top: 1rem;
    row-gap: .3rem;
}
#catalogueDir.indexPage .item .caption .Title {
    font-size: 18px;
    font-weight: 450;
}
#catalogueDir.indexPage .item .caption .comma{ display: none; }
#catalogueDir.indexPage .item .caption .catDate{ font-weight: 500; }
#catalogueDir.indexPage .item .caption .catNo{ color: transparent !important; }
#catalogueDir.indexPage .item .caption .catNo span{ color: var(--gray75) !important; font-size: var(--mdText); }

.anchorlink, .endOfItem {display: none; }

.priorProvenance sup {display: none; } 

#splashHeading{ text-transform: uppercase; color: var(--accentColor); font-weight: 500; 
    margin-bottom: .2rem;}

#indexsplashCtrl{ display: none; }
BODY #indexsplash{ display: block !important; }
/*#indexsplashInner{ height: 3.9rem;
    overflow: hidden;
}
#indexsplashInner.all{
	height: auto;
	overflow: visible;
    position: absolute;
    background-color: white;
    z-index: 2000;
	-webkit-box-shadow: 0px 0px 10px -2px rgba(126, 90, 81, 0.4);
	-moz-box-shadow: 0px 0px 10px -2px rgba(126, 90, 81, 0.4);
	box-shadow: 0px 0px 10px -2px rgba(126, 90, 81, 0.4);
	padding: 1rem;
	margin: -1rem;
}
#indexsplash{position: relative; }
#indexsplash .more, #indexsplash .less{content: "more"; position: absolute; bottom: 0px; right: 0px; background-color: white;
text-transform: uppercase; font-size: var(--smText); font-weight: 400; padding: 5px; 
text-decoration: none; 
	-webkit-box-shadow: 0px 0px 10px -2px rgba(126, 90, 81, 0.4);
	-moz-box-shadow: 0px 0px 10px -2px rgba(126, 90, 81, 0.4);
	box-shadow: 0px 0px 10px -2px rgba(126, 90, 81, 0.4);
}
#indexsplash .less{ bottom:  1rem; right: 1rem; }*/

#filterAccordion .heading.label, #topMatter .heading.label, #sortControls, #pagiWrapper, .recType{
   font-size: var(--smText);
    color: var(--accentColor);
    text-transform: uppercase;
	margin-bottom: 1rem;
}
#filterAccordion #searchWrap .heading.label{ margin-bottom: .5rem; }
#mainImageWrapper a {text-decoration: none; }
#mainImageWrapper .enlarge{
	font-size: var(--smText);
    color: var(--accentColor);
    text-transform: uppercase;
}
#mainImageWrapper .enlarge::before{ content: "+ " }
#mainImageWrapper{ display: block; margin-bottom: 1rem;}

.recType{ display: block;
	margin-bottom: .5rem;
}
#pagiWrapper {
	display: flex;
    flex-direction: row-reverse;	
    column-gap: 1rem;
}
#pagiWrapper .nbsp, #pagiWrapper .nextprev img{ display: none; }

#pagiWrapper #pagiContentTop{ border-left: 1px solid; padding-left:1rem; display: flex; column-gap: 1rem; flex-wrap: wrap;}
.pagenos { display: flex; column-gap: .5rem; margin-top: -3px; text-align: center; }

.pageNext::after {content : " >"; position: relative; top: -1.5px; color: inherit !important}
.pagePrev::before {content : "< "; position: relative; top: -1.5px;}
.nextprev.disabled::before, .nextprev.disabled::after { color: #999; }

a.pageLink{ border:1px solid var(--accentColor); padding: 2px 5px; aspect-ratio: 1 / 1;
    display: inline-block; text-decoration: none !important; }
#pagiContentTop a.pageLink:hover{background-color: var(--accentColorB); color:#fff;}
.pageLinkCurrent{
	 
	border:1px solid var(--accentColor); 
	color:#fff; 
	background-color:var(--accentColor); 
	padding: 2px 5px;  
	aspect-ratio: 1/1;}
	#pagiContentBottom {color:var(--accentColor); }
	a.nextprev{ text-decoration:underline; }
	span.nextprev { color: #999;  cursor: not-allowed; } 
	#next img, #last img{ 
		-ms-transform:rotate(180deg);
		-webkit-transform:rotate(180deg);
		transform:rotate(180deg); }

#paginationBottom{ margin-left: auto; margin-top: 2rem; }
.pageFirst, .pageLast { display: none; }

.sortASC{
	position: relative;
	transform: scaleY(-1);
    top: 4px;
    margin-right: 4px;
    opacity: 75%;
	}
.sortDESC{
	position: relative;
    top: 4px;
    margin-right: 4px;
    opacity: 75%;
}

#pagiContentBottom{ text-align: center; }

#filterContent{margin-left: -6px; overflow: auto;  }

#filterContent h3{
    color: var(--accentColor);
    text-transform: uppercase;
	font-weight: 600;
	margin-bottom: .5rem;
}
#filterContent .filterCont  {margin-bottom: 1rem;}
.filterOptions .filter  {margin-bottom: .4rem;
	text-indent: -1.4rem;
    margin-left: 1.4rem;}
.filterOptions .filter input{margin-right: 3px; top: 2px; position: relative; }
.filetercount {color: var(--gray50); }
.filetercount::before {content: '('; }
.filetercount::after {content: ')'; }

.filterOptions{max-height: 50vh; overflow-y: auto; }

.ui-accordion-header{ border: none !important; padding: 0px !important; background-image: none !important; background-color: transparent !important; }

.ui-accordion .ui-accordion-content{ padding: 0rem 1rem !important; border: none !important; margin-bottom: 2rem; }
.ui-widget, .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-size: inherit !important; }

#selectedFiltersCont.full{
	margin: 0 1rem 1rem 0; 
	padding: .5rem;
	background-color: #FFFFE0;;
	border: .5px solid #CCC;
    display: flex;
    flex-direction: column;
    gap: .3rem;
    max-width: fit-content;
}
#selectedFiltersCont > .spaces, #selectedFiltersCont .grayLight.slashes{ display: none; }

.selectedFilter {
	display: list-item;
    list-style: circle;
    margin-left: 1rem;
}
#filterExhibitionca, #filterMonograph {
    margin-left: 3.4em;
    font-size: var(--smText);
}
.filtersBoxTextSelect{
    text-transform: uppercase;
    font-size: smaller;}
.filterExtralinks{
	color: transparent;
    text-transform: uppercase;
    font-size: smaller;
	margin-top: .5rem;
	padding-top: .5rem;
	border-top: .5px solid #ccc;
	display: flex;
	flex-direction: column;
    row-gap: .3rem;
}
.filterExtralinks a {text-decoration: none; display: inline-block; cursor: pointer; } 
.filterExtralinks .linkPermalink a { background:url('client_files/icon_permalink.gif') no-repeat 0 2px; padding-left: 1.2rem; color: #333;}
.filterExtralinks .linkRemove a { color: orangered;}
.filterExtralinks .linkRemove a::before {content : "☒ "; font-size: 1.1rem; }
.filterExtralinks .spaces {display: none; }



#savedBkLink{ margin-top: 2rem; }
#savedBkLink a { background:url("/client/amedmod003/client_files/bookmark_multi.png") no-repeat left; padding-left:20px; background-size: 14px 14px; }
#savedBkLink a, #savedBkLink u { text-decoration: none; }
#savedBkLink a:hover u { text-decoration: underline; }


/* ENTRY PAGE */

.entryPage #pageTopMatter{
	display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
	gap: 1rem;
}
.entryPage #pageTopMatter h1 {
  order: 1; 
  margin-right: auto;
}
.entryPage #pageTopMatter #sectionNavigation { order: 2; white-space: nowrap; }
.entryPage #pageTopMatter #toolbar { order: 3; }
#sectionNavigation { 
    font-size: var(--smText);
    color: var(--accentColor);
    text-transform: uppercase;
}

.entryPage #topA{ max-width: 50% !important; float: right; margin: 0 0 5rem 10rem; }
.entryPage #topB{  max-width: 900px !important;  }
.entryPage #bottomCat{  width: 100% !important; clear: both; padding-top: 3rem;}

#tombstoneWrapper {max-width: 700px; }
#tombstoneWrapper .tombstone, #sectionProvenance .item { margin-bottom: .5rem;}
#sectionProvenance a { color: inherit !important; }
#sectionLiterature .item, #sectionExhibitions .item{margin-bottom: .8rem;}
#tombstoneWrapper .tombstone.div_Title{ font-size: 2rem; color: var(--accentColor); margin: 1rem 0; }
#tombstoneWrapper .tombstone.div_fullDate{ font-size: 1.3rem; margin-bottom: 1rem; }
#tombstoneWrapper .tombstone.div_CatalogueNumber{ font-size: var(--mdText); color: var(--gray75);}

.altTitleHeading, .tombstoneHeading { color: var(--gray50); }
.abbreviationDiv a.abbreviation { font-weight: 500;}

#catalogueDir .abbreviationDiv {
	display: flex;
    column-gap: .3rem; 
}

.div_CreditLine a { color: inherit !important; }

#sectiondiscovery {
	margin: 1rem 0 0 0;
    padding: 1rem 0 0 0;
	border-top: .5px solid var(--accentColor);
}
.discoveryDivCont, #keywordsUL > li { margin-bottom: .5rem;}

#keywordsUL li { list-style: none; }
#keywordsUL li .category { float: inline-start; }
#keywordsUL ul, #keywordsUL ul li { display: inline; }
#keywordsUL ul li:not(:last-of-type)::after{ content: '; '; }
#keywordsUL .raquo { display: none; }

#sectioncommentary ol, #ExhibCommentary ol, #LitCommentary ol, #mainTextDiv ol{ margin-left: 1rem; margin-right: 1rem; }
#sectioncommentary ol li, #ExhibCommentary ol li, #LitCommentary ol li, #mainTextDiv ol li{ margin-bottom: .3rem;
    font-size: var(--mdText);
    color: var(--gray75);
}
#sectioncommentary ol a { color: inherit !important; }

#topA{
	margin-bottom: 1rem; 
	padding-bottom: 1rem;
	border-bottom: .5px solid var(--accentColor);
}
h4 .homepagelink { display: none; }


#mainImageWrapper img { max-width: 100%; height: auto !important}

#topB .section:not(:first-of-type){margin-top: 3rem}
.sectionHeading{ font-weight: 500; color: var(--accentColor); margin-bottom: .8rem; text-transform: uppercase; }

#div_customProvFootnotes{
    margin-top: 1.5rem !important;
    font-size: var(--mdText);
    color: var(--gray75);
	max-width: 650px;
}
#div_customProvFootnotes .item { margin-bottom: .3rem; text-indent: -1rem; }

#provFootnotesWrapper{max-height: 100px; overflow: hidden; padding-left: 1rem; padding-right: 1rem; }


.prov-read-more{
	color: var(--gray75);
    font-size: var(--smText);
    text-transform: uppercase;
	text-align: right;
    display: block;
    float: right;
    padding: 6px;
}

#fullCitation { text-align: center; margin: 10rem auto 2rem;
	max-width: 1200px;
    padding-left: 2vw;
    padding-right: 2vw; }

#fullCitation #printCitation{
	margin-top: 1rem;
}
#printCitation .gray, #updateDisclaimer{color: var(--gray75)}

#fullCitation .nowrap { white-space: nowrap; color: var(--gray75);}

/* INDEX PAGES */


.rowheading{ font-size: var(--xlText); margin: 3rem 0 2rem; color: var(--accentColor); }
.indexrow{margin-left: 1rem; position: relative; }
#indexContent .rowheading:first-of-type{  margin-top: 0 !important;  }
.clearfloats.typeA, .clearfloats.typeB {display: none; }

#indexContent.noresults {
	display: flex;
    flex-direction: column;
    align-items: center;
	row-gap: 1rem;
}

.entryRef .recordlink.abbreviation {font-weight: 600; font-size: var(--lgText); }
#collectionsDir .entryRef .recordlink.abbreviation {font-weight: 400;  }
body:not(.collectionsDir) .entryRef .recordlink.abbreviation{ display: inline-block; margin-bottom: .3rem; }
.entryRef { max-width: 800px; display: block; margin-bottom: 2rem;}

.entryRef .fullRef .recordlink{ text-decoration: none; color: var(--mainBodyColor) !important;}

.entryRef .linkedDocImg{
    float: right;
    max-width: 250px;
    max-height: 150px;
    height: auto;
    width: auto;
	margin: 0 0 1rem 1rem;
}
.addMaterialsCallout { font-size: var(--smText); text-transform: uppercase; color: var(--gray50); marging-top: .3rem; display: inline-block; }
.entryRef .linkedDocImg img {max-width: 100% !important; }

#collectionsDir .recordlink.abbreviation { text-decoration: underline; text-decoration-skip-ink: auto; text-underline-offset:3px; text-decoration-thickness: .5px;  }

.traveledref .heading, .entryType {
    font-size: var(--smText);
    color: var(--accentColor);
    text-transform: uppercase;
}
.indexPage .traveledref { margin: .2rem 1rem ; }
.traveledref li { list-style: none; }
#topInfo .entryType {
	display: inline-block;
	margin-bottom: 1rem;
}
#topInfo .section{margin-top: 3rem;}

#ExhibCommentary, #LitCommentary{margin-top: 1rem;}

#entryFullCitation, #sectionlinkedrecords{ max-width: 900px;}

.entryPage:not(#catalogueDir) #bottomA, #sectionlinkedrecords { margin-top: 3rem; }

ul.linksContainer li { list-style: none; }
ul.linksContainer .recordlink { color: var(--mainBodyColor); text-decoration: none; }
ul.linksContainer .abbreviation { font-weight: 500;  }
.linksContainer a.external{ background:url("/css/images/icon_externalLink.gif") no-repeat right; padding-right:15px; color: var(--mainBodyColor); }
.linksContainer .grayMed{ color: var(--gray75); }


#popoutEntries{
    position: relative;
    overflow: hidden;
    margin: 3% auto;
	max-width: 1400px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.2rem;
    background-color: white;
	-webkit-box-shadow: 0px 0px 20px -3px rgba(126, 90, 81, .5);
	-moz-box-shadow: 0px 0px 20px -3px rgba(126, 90, 81, .5);
	box-shadow: 0px 0px 20px -3px rgba(126, 90, 81, .5);
	z-index: 700;
}
#popoutEntries .innerCont {
	margin-top: 1rem; 
    max-height: 80vh;
    overflow-y: auto !important;
}
#popoutEntries h4{
	margin-top: 0px;
}
#popoutEntries #itemcont { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 3em 2rem; flex-direction: row;  }
#popoutEntries #itemcont .item { flex-basis: calc(33% - 2rem); text-align: center; position: relative; }
#popoutEntries #itemcont .item img { max-height: 200px; max-width: 100%; height: auto; width: auto; }

#popoutEntries .item_catDetails a { text-decoration: none; }
#popoutEntries .item_catDetails a .Title { text-decoration: underline; font-size: larger; margin: 2px 0 5px; }

#popOutClose { float: right; }
#popOutClose:before { content: '☒ '; }


/* ENTRY PAGES (non-artworks) */

h2.abbreviation{ font-weight: 400;   }
#workCount{ display: none; }

#pageBottomMatter{min-height: 50vh;}

#bottomA #beginWorksHeading {
    font-weight: 500;
    color: var(--accentColor);
    margin-bottom: .8rem;
    text-transform: uppercase;
}

#bottomA #sectionlinkedworks > .sectionContent {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	gap: 2rem;
    justify-content: space-between;
}
#bottomA #catWorks {flex-basis: 100% !important; }


a.viewBy {display: inline-block; height:20px; width:20px; border:1px solid #fff !important; vertical-align:middle; margin-right:3px; background:url('/css/images/icon_sizes.gif') no-repeat 1px 1px; padding:1px; }
a.viewBy:hover, a.viewBy.selected{ border-color:#F93 !important;}
#viewsnav{ text-align: right; }
#viewsnav span{
    font-size: var(--smText);
    color: var(--accentColor);
    text-transform: uppercase;}
#catalogueIndex #viewsnav span {text-transform: none; font-weight: normal; font-size:12px; color: #636679;}

a#thumbnail{ background-position:1px}
a#size{width:32px; background-position:-16px}
a#listA{background-position:-45px;}
a#listB{background-position:-62px;}

#scale{padding-top:5px;clear:both;}
#scale table{border-top: dotted 1px #CCC;}
#scale td{padding:4px; font-size:.7em}
#scale .scale div {
	height: 5px; border: #666 solid 1px; border-top: none;
}
#scaleCont{padding:1em 0;}

.linksContainer li.item{margin-bottom: 1.5rem;}
.linksContainer li.item .recType{margin-bottom: .3rem;}

.item.slideshow .caption .reference, .item.slideshow .caption .creditline{ 
	margin-top: 1rem; padding-top: 1rem; border-top: 1px solid #efefef; display: inline-block;}
.item.slideshow .Title { font-weight: 500; }
.item.slideshow .catNo { color: var(--gray50); 
    font-size: var(--mdText);}

body:not(#catalogueDir) .linkqualifier, .caption .creditline .currently{ 
	display: block; 
	text-transform: uppercase;
	margin-bottom: .3rem; 
	font-size: small;
}
.abbreviationDiv .linkqualifier{
	font-size: small;
	text-transform: uppercase;
}
.abbreviationDiv .linkqualifier::before{ content: ' (';}
.abbreviationDiv .linkqualifier::after{ content: ')';}

.item.slideshow.current { background-color: var(--accentColorPale); padding: .5rem; }
.item.slideshow.current .caption::before{ content: 'Current entry:'; display: block; margin-bottom: .1rem; 
    font-size: var(--smText);
    color: var(--accentColor);
    text-transform: uppercase;
}

#sectionDir .item.right.slideshow {float: right; margin: 0 0 1.8rem 3rem;}
#sectionDir .right.slideshow {max-width: 30%; }
#sectionDir .right.slideshow img { max-width: 100%; }


/* SECTION PAGES */
#sectionDir #pageTopMatter{ margin-bottom: 2rem; 
    grid-column: 1 / 3;}
#sectionDir #pageBottomMatter{ max-width: 900px !important; 
    grid-column: 2 / 3;
}
body#sectionDir.indexPage #mainBody{
	display: grid;
    grid-template-columns: 1fr 4fr; 25% and 75% ratio (1:3)
    grid-template-rows: auto auto;
    gap: 2rem;
    margin: 0 auto;
}

.entryPage form #searchbox { width: 160px; }
form #searchbox { width: 140px;
	font-size: var(--smText);
	height: 22px; border: 1px solid var(--accentColor); 
	padding: 5px;  }
#searchbox::placeholder{   color: var(--accentColor50);
	text-transform: uppercase; }

form#minisearchForm a#seachBoxButton{
	display: inline-block;
    height: 22px;
    width: 20px;
    text-align: center;
    background-color: var(--accentColorB);
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    border-radius: 3px;
}
.indexPage form#minisearchForm a#seachBoxButton{ padding-top: 2px; }

#removeSearchLink {margin: .3rem 0 0 .3rem; text-transform: uppercase; font-size: var(--smText) }
#removeSearchLink, #removeSearchLink a {color: orangered; text-decoration: none; }


#toolSearchButton{ position: relative; }
#toolSearchButton.open::before{ content: 'X'; position: absolute; top: 0; bottom: 0; left: 0; right: 0; text-align: center;
	background-color: white;
    z-index: 2;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--accentColor);  }

.entryPage #ToolSearchBox{display: none; position: absolute; white-space: nowrap; 
	padding: 1rem; background-color: white; top: -1rem;
    right: 37px;
	-webkit-box-shadow: 0px 0px 20px -3px rgba(126, 90, 81, .5);
	-moz-box-shadow: 0px 0px 20px -3px rgba(126, 90, 81, .5);
	box-shadow: 0px 0px 20px -3px rgba(126, 90, 81, .5);}

#closeSearchPopUp{ float: right; position: relative; right: -5px; top: -5px; font-size: 1.5rem }
#submitSearchLink { 
	font-size: var(--smText);
    color: var(--accentColor);
    text-transform: uppercase;
	text-align: center;
}

/* BOOKMARKS */

#toolbar{
	display: flex;
    column-gap: 1rem;
	position: relative; 
	top: -3px;
}
#toolbar img {opacity: 0.6;}
#toolSearchButton{order: 4}
#ToolSearchBox{order: 3}

#BookMarksTotalLink{ display: none; }
#bkmkIcon{ 
	display: block; 
	background:url("client_files/icon_bookmark_multi.png") no-repeat; 
    text-decoration: none; 
    height: 20px;
	width: auto !important;
	background-size: 20px 20px;
	top: 0px;
	padding-left: 23px;
}
@media screen and (min-width: 800px) {
#bkmkIcon:hover{ text-decoration: underline; }
}
#bkmkIconCont{ 
	margin-bottom: auto; 
    font-size: var(--smText);
}

#bkmkIconMulti{ 
	display: inline-block; 
	background:url("client_files/icon_bookmark_multi.png") no-repeat;
	/*	background:url("client_files/check-list.png") no-repeat;  */
    text-decoration: none; 
	width: 25px;
    height: 25px;
	background-size: 25px 25px;
	opacity: 1;
	/*width: 18px;
    height: 22px;
	background-size: 18px 22px;*/
	position: relative;
	top: 2px;
}

.bookmarkLink {
    border: none !important;
    display: inline-block;
    width: 20px;
    height: 20px;
   	background: url("client_files/bookmark.png") no-repeat;
	background-position:0 0 !important;
	background-size: 20px 20px;
    position: relative;
}
.indexrow .bookmarkLink { background-size: 18px 18px;}
#toolbar .bookmarkLink { background-image:url("client_files/bookmark.png");  }

.item .bookmarkLink.off, .indexrow .bookmarkLink.off{ visibility: hidden; }
.item:hover .bookmarkLink.off, .indexrow:hover .bookmarkLink.off{ visibility: visible; }

.bookmarkLink.off:hover {
    background-position: 0 0 !important;
    background-image: url(client_files/bookmark_selected.png) !important;
    opacity: 75%;
}
.bookmarkLink.on {
    background-position: 0 0 !important;
    background-image: url(client_files/bookmark_selected.png) !important;
}
#toolbar .bookmarkCont { display: inline-block; margin-top: 1px; }

#popoutEntries .bookmarkCont { display: none !important; }

.item  .bookmarkCont , .indexrow .bookmarkCont { position: absolute; }
.indexrow .bookmarkCont { left: -1.5rem;  }
#literatureDir .indexrow .bookmarkCont, #exhibitionsDir .indexrow.soloexhib .bookmarkCont { top: 26px;  }
#exhibitionsDir .indexrow:not(.soloexhib) .bookmarkCont { top: 3px;  }
#collectionsDir .indexrow .bookmarkCont { bottom: 3px;  }
.item:hover .bookmarkCont,  .indexrow:hover .bookmarkCont { visibility: visible; }

#sectionDir .bookmarkCont{ display: none; }

.fancybox-caption .Title {text-decoration: underline; }


@media screen and (max-width: 1139px) {
  .header-nav-item { font-size: 18px !important;}
	#catNav > ul{ font-size: 19.5px !important; left: 9% !important; }
	.entryPage #topA{ margin: 0 0 3rem 3vw !important; max-width: 43% !important; }
	
	.indexPage .catWorksCont, .accountPage #itemcont, .entryPage .catWorksCont #itemcont, .indvSeriesWrapper {
		    gap: 3rem;
	}
	.catWorksCont .item img { max-height: 300px !important; }
	.catWorksCont .item a.image, .catWorksCont .item a.recordContainer{ height: 300px; }
	
	#homeDBText{ max-height: 30vh !important; }
	#homeContentWrap h1{ font-size: 2rem !important; }
	
}
@media screen and (max-width: 1115px) {
  .header-nav-item { font-size: 16px !important;}
	#catNav > ul{ font-size: 17.5px !important; left: 7% !important; }
	.header-title-logo img{ max-height: 78px; }
	
	.indexPage .catWorksCont, .accountPage #itemcont, .entryPage .catWorksCont #itemcont, .indvSeriesWrapper {
		    gap: 2rem;
	}
	.catWorksCont .item img { max-height: 260px !important; }
	.catWorksCont .item a.image, .catWorksCont .item a.recordContainer{ height: 260px; }
	#catalogueDir.indexPage .item .caption .Title { font-size: 17px; font-weight: 400; }
	
	
}

@media screen and (max-width: 845px) {
  .header-nav-item { font-size: 15px !important;}
	#catNav > ul{ font-size: 16.5px !important; left: 7% !important; }
	.header-title-logo img{ max-height: 70px; }
	.catWorksCont .item img { max-height: 230px !important; }
	.catWorksCont .item a.image, .catWorksCont .item a.recordContainer{ height: 230px; }
	#catalogueDir.indexPage .item .caption .Title { font-size: 17px; font-weight: 400; }
	#fullCitation{ margin-top: 5rem;}
	
	
	
}

.mobile-nav{ display: none; }

@media screen and (max-width: 795px) {
	
	#siteBand{ margin-bottom: 1rem; }
	
	header{padding: 0 !important; }
	.header-title {
		margin-left: auto;
    	text-align: right;
	}
	#header-wrapper{ padding: 6vw; margin: 0px;  }
	.mobile-nav{ display: block;  width: 50px; }
	#mobile-navigation-link{ display: block; height: 35px; width: 35px; padding-top: 10px; margin: auto; cursor: pointer; }
	#mobile-navigation-link span { display: block; height: 14px;
		border-top: 1px solid var(--accentColor); 
		border-bottom: 1px solid var(--accentColor); margin: auto; }
	#mobile-navigation-link.open{ padding: 0px; }
	#mobile-navigation-link.open span{ border: none;
		background:url('client_files/closeMobileNav.png') no-repeat 0 0; height: 35px; background-size: contain; }
	#catNav li.nav-active{ border: none !important; }
	#catNav li.nav-active > a { border-bottom: 1px solid var(--accentColor); }
	.header-nav{
		display: none; 
		position:absolute;
        top: calc(60px + 12vw);
        right: 0;
        left: 0px;
        bottom: 0px;
        background-color: white;
        padding: 0 2rem;
        z-index: 10000;
		height: 100vh;
    }
	.header-nav-wrapper { margin: 0 auto; max-width: 500px; margin-top: 2rem; overflow-y: auto;
        max-height: 72vh;} 
	.header-nav-item{ font-size: 1.3rem !important; }
	#catNav ul{ font-size: 1.45rem !important; }
	#catNav ul ul { position: static !important; -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
		margin: 1rem 1rem 0 !important; 
	}
	#catNav ul ul li{ border: none;
        font-size: smaller;
        padding: 0 0 5px; } 
	.header-nav-list {
		row-gap: 1.4vw;
		flex-direction: column;
    	max-width: fit-content;
    	margin: auto;
		position: static;
	}
	#catNav{ border: none !important; }
	#catNav ul{
		row-gap: 1.4vw;
    	margin: 1rem;
    	flex-direction: column;
		position: static
	}
	.nav-active{
		display: inline-block !important;
    width: fit-content !important; 
	}
	
	#fullCitation{ margin-top: 2rem;}
	body:not(#indexphpDir):not(#sectionDir).indexPage #pageTopMatter{
	margin-bottom: 1rem;}
	body:not(#indexphpDir):not(#sectionDir).indexPage #pageTopMatter, body:not(#indexphpDir):not(#sectionDir).indexPage #topMatter,
	body:not(#indexphpDir).indexPage #filterAccordion,
	body:not(#indexphpDir).indexPage #indexContainer{ 
		width: 100% !important;
    float: none; 
	}
	
	#filterAccordion #minisearchForm input{ max-width: 75%; }	
	
	.catWorksCont .item a.recordContainer{ height: 300px; }
	.catWorksCont .item img{ max-height: 300px !important; }
	.indexPage .catWorksCont .item{ margin-bottom: 3rem; }
	.indexPage .catWorksCont .item a.recordContainer{ margin-bottom: 0px  }
	
	#indexContainer{ flex-direction: column; }
	
	#indexsplash,  #filterAccordion{ 
		border-bottom: 1px solid var(--accentColor);  position: static !important;  }
	.indexPage #topMatter{ margin-bottom: 0px !important; }
	#filterAccordion{padding: .5rem .5rem 0 ; background-color: var(--accentColorPale); margin-bottom: 1rem; }
	/*body:not(#indexphpDir):not(#sectionDir).indexPage #pageTopMatter, body:not(#indexphpDir).indexPage #filterAccordion, body:not(#indexphpDir):not(#sectionDir).indexPage #topMatter, body:not(#indexphpDir).indexPage #indexContainer {
		float: none; width: 100% !important; 
	}
	
	.indexPage #filterAccordion{ position: static; }*/
	
	#splashEssay{ max-height: 28vh; overflow-y: auto; }
	
	#maincontent { background: none !important; }
	#welcometext, #logintext{ position: static !important; max-width: 100% !important; max-height:  fit-content !important; height:  fit-content !important;}
	#homeDBText{ max-height: 100% !important; overflow: visible !important; background-color: transparent !important;}
	
	#welcometext::before{
	content: "";
	 display: block;
  width: 100%;
		aspect-ratio:13/8;
  background-image: url('/client/amedmod003/client_files/Modigliani-in-his-studio_horiz.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
	}
	
	#indexphpDir #footer{ text-align: center; }
	#footer a { white-space: nowrap; }
	
	#welcometext h2 {margin-top: 2rem; }
	
	#paginationTop #pagiContentTop { display: none; }
	#pagiWrapper { flex-direction: column; }
	
	#pagiWrapper #pagiContentTop{ border: none !important; margin-bottom: 1rem; padding: 0px;     justify-content: center; }
	#paginationBottom{ margin-left: 0px; }
	
	.entryPage .catWorksCont #itemcont, .indvSeriesWrapper, .accountPage #itemcont { grid-template-columns: 1fr 1fr 1fr !important;} 	
	
	body:not(#accountphpDir) #relativeSizeNote{ margin: 0px 0 2rem !important; top: 0px !important;}

	.entryPage #pageTopMatter{  align-content: flex-start;
    justify-content: space-between; flex-wrap: wrap; }	
	.entryPage #pageTopMatter #sectionNavigation { white-space: normal !important; }
	.entryPage #pageTopMatter #toolbar { order: 2 !important;   
    width: fit-content;
    margin-left: auto;
	}
	.entryPage #pageTopMatter h1 {     width: fit-content; margin-right: auto;}
	#toolbar{   top: 0;     align-items: center; }
	#sectionNavigation{ display: flex;
    flex-wrap: wrap;         gap: .1rem 1rem;
        flex-basis: 100%;
        padding-bottom: 1rem;
        border-bottom: .5px solid var(--accentColor);
	}
	#sectionNavigation .previous{order: 1; }
	#sectionNavigation .next{order: 3;}
	#sectionNavigation .queueresults{order: 2;}
	#sectionNavigation .queuedividerB{order: 4;}
	#sectionNavigation .queueLinkback{order: 5;}
	#sectionNavigation .linkBackWrapper{order: 6;}
	#sectionNavigation .queuedivider{ display: none; }
	#sectionNavigation .queuedividerB{ flex-basis: 100%; height: 1px; visibility: hidden; }
	
	.entryPage #pageTopMatter { margin-bottom: 2rem; }
	
	#maincontent { padding-left: 4vw !important;
    padding-right: 4vw !important; }
	
	#minisearchForm .heading.label, #savedBkLink .heading.label{ display: inline; margin: 0px !important; }
	#minisearchForm .heading.label::after, #savedBkLink .heading.label::after { content: ': '; }
	#minisearchForm, #savedBkLink  { display: flex; margin-bottom: 1rem; gap: .3rem;align-items: center; }
	#minisearchForm > div{ margin: 0px !important; }
	#searchWrap #savedBkLink {margin: 0px; }
	#searchWrap{ margin-bottom: 1rem;}
	#topMatter{ margin-bottom: 1rem !important; }
	
	#splashText { font-size: 14px; }
	
	body#sectionDir.indexPage #mainBody{ display: block; }
	
	#sectionSideNav{ position: static;
	    max-height: fit-content;
    	overflow-y: visible; 
		margin-bottom: 2rem;
	}
	#sectionSideNav > ul{ 
		display: flex;
    	max-width: 100% !important;
    	gap: 1rem;
		font-size: 14px;
	}
	
	body:not(#indexphpDir).indexPage #pageTopMatter, body:not(#indexphpDir).indexPage #topMatter{
		margin-bottom: 1rem;
	}
	.MethodologyUserGuide #pageBottomMatter { display: flex; gap: 1.5rem; }
	#sidenavMobile{         list-style: none;
        font-size: smaller;
        position: sticky;
        top: 1rem;
        align-self: flex-start;
        max-height: 90vh;
        width: 25% !important;
        flex-basis: 20% !important;
	}
	#sidenavMobile li{ margin-bottom: .6rem; }
	
	#filterContent{ display: flex; gap: 1.4rem }
	.accordion-group h3 { white-space: nowrap;  font-size: smaller !important; }
	.accordion-group .filterOptions { position: absolute; background-color: white; z-index: 2000;white-space: nowrap; margin-left: -1rem; padding: .5rem !important;
	
			-webkit-box-shadow: 0px 0px 20px -3px rgba(126, 90, 81, .5);
			-moz-box-shadow: 0px 0px 20px -3px rgba(126, 90, 81, .5);
			box-shadow: 0px 0px 20px -3px rgba(126, 90, 81, .5);
	}
	.accordion-group:first-of-type .filterOptions{left: 0px; margin-left: 4vw;  }
	.accordion-group:last-of-type .filterOptions{right: 4vw;  }
	
	#selectedFiltersCont.full{ flex-wrap: wrap; flex-direction: row; }
	.filterExtralinks { flex-basis: 100%; align-items: center;flex-direction: row;
    column-gap: 1rem; }
	
	#accountphpDir #pageTopMatter ul { column-gap: 1rem !important;
    font-size: smaller; }
	#accountphpDir #pageTopMatter li { white-space: nowrap; }
	#accountphpDir #catWorks #sortHeadingText {    display: block;}
	
	#catalogueDir #topA{ font-size: smaller;  }
	
	#popoutEntries{
		position: absolute;
		top: auto;
    	bottom: auto;
		left: 4vw;
	    right: 4vw;
		margin: 0px;
	}
	
	#topB .section:not(:first-of-type){
		    margin-top: 2rem;
	}
	
}

@media screen and (max-width: 550px) {
	.indexPage .catWorksCont, .entryPage .catWorksCont #itemcont, .indvSeriesWrapper, .accountPage #itemcont{ grid-template-columns : 1fr 1fr !important; }	
	
}

@media screen and (max-width: 515px) {
	.entryPage .catWorksCont #itemcont, .indvSeriesWrapper, .accountPage #itemcont { grid-template-columns: 1fr 1fr !important;} 	
	.catWorksCont .item img{ max-height: 280px !important; }
	.catWorksCont .item a.recordContainer { height: 270px; }
	#popoutEntries #itemcont .item { flex-basis: calc(50% - 1rem) !important; }
	
	.entryPage #topA {
        margin: 0 0 1rem 0 !important;
        max-width: 100% !important;
		    padding-bottom: 0;
	    border-bottom: none !important;
		float: none; 
    }
	#bottomCat{padding-top: 0px !important; }
	#sectionSeries, #sectiondiscovery{    margin: 2rem 0 0 0;
    padding: 1rem 0 0 0;
    border-top: .5px solid var(--accentColor);
	}
	BODY h2#enterSiteLinkWrap{ margin: 0px 0 1rem; }
	#homeContentWrap{ margin-bottom: 1rem !important; }
	#mainImageWrapper img {
    max-height: 60vh;
    width: auto !important;
}
	
	.ui-accordion .ui-accordion-header{ margin-bottom: 0px !important; }

    #filterContent {
        display: flex;
        gap: .2rem 1.4rem;
        flex-wrap: wrap;
		margin-bottom: .5rem;
    }
	
	 .accordion-group .filterOptions {
        right: 4vw !important;
        left: 4vw !important;
		 margin: 2px 0 0 0px !important; 
    }
	
	h3.ui-accordion-header-active{ background-color: white !important;     position: relative;
    z-index: 200000; }
	
	.indexPage .catWorksCont .item{ margin-bottom: 1rem;}
	
	html .item .bookmarkLink.off{ visibility: visible; opacity: 0.5; }

}

