/* -----------------------------------------------
bepress IR local stylesheet.
Author:   David Stienstra
Version:  October 2018
PLEASE SAVE THIS FILE LOCALLY!
----------------------------------------------- */

/* ---------------- Meta Elements ---------------- */

	/* --- Meta styles and background --- */

body {
	font: normal 12px/1.5 Arial, Helvetica Neue, Helvetica, sans-serif;  /* should be medium except when fitting into a fixed container */
	background: #f6f6f6 url(assets/md5images/96c803c1a379ea8874c5e22c67ab278e.gif) repeat-x left top;
}


/* ---------------- Header ---------------- */

#trace #header {
	position: relative;  /* needed for logo positioning */
  height: auto !important; /* !important overrides mbl styling */
}

#trace #banner_image {
	display: block; /* removes descender of inline element */
	width: 980px; /* not necessary if image is sized correctly */
	height: auto !important;  /* avoids warping improperly sized header image / SUP-19994 */
}

	/* --- Logo --- */

#trace #logo_image {
	position: absolute !important; /* !important overrides mbl styling */
	top: 0;
	left: 0;  /* change to "right:" for right aligned logo */
	width: 24.4897959183% !important;  /* 240 / 980 */
	height: auto !important; /* Important avoides DC assigning incorrect height to logo image */
}


/* ---------------- Navigation ---------------- */

#trace #navigation,
#trace #navigation #tabs {
	height: 42px;
	overflow: hidden; /* have seen issues with tabs extending below nav container */
}

#trace #navigation #tabs,
#trace #navigation #tabs ul,
#trace #navigation #tabs ul li {
	padding: 0;
	margin: 0;
}

/* Flexbox Navigation July 2018 */

#trace #navigation #tabs,
#trace #navigation #tabs ul {
	display: flex;
	justify-content: flex-start; /* "flex-start" for left-aligned tabs, change to "flex-end" for right-aligned tabs, "center" for centered */
	width: 100%;
}

#trace #navigation #tabs li#tabone a:hover,
#trace #navigation #tabs li#tabone a:active, 
#trace #navigation #tabs li#tabone a:focus {
	background: transparent;
}

#trace #navigation #tabs li#tabone {
	background: #f6f6f6 url(assets/md5images/d72ec55bab540bc1b756281a7f28b4a0.gif) no-repeat left top;
}

#trace #navigation #tabs li#tabone a {
	padding-left: 34px;
}

#trace #navigation #tabs a {
	font: normal 14px Helvetica Neue, Helvetica, Arial, sans-serif;
	display: block;
	width: auto !important; /* fixes "my account" not fitting in container on page load */
	height: 42px;
	line-height: 42px;
	color: #104e7b;
	transition: 0.3s ease-in-out;
	background-color: transparent;
	padding: 0 11px; /* with arial bold, this fits */
	margin: 0;
	border: 0;
	border-right: 1px solid #f6f6f6;
	/* float: left; Not needed? Using flexbox now */
}

#trace #navigation #tabs a:hover,
#trace #navigation #tabs a:active,
#trace #navigation #tabs a:focus {
	color: #000000;
	background-color: #f6f6f6;
	text-decoration: underline;
}

#trace #navigation #tabs li:first-child a { padding-left: 15px; }

#trace #navigation #tabs li:last-child a {
    border-right: none;
}


/* ---------------- Sidebar ---------------- */
#trace #sidebar {
	padding-top: 0px;
}
#trace ul#side-notify,
#trace ul#side-notify li.notify {
	display: none;
}

#trace #sidebar #sb-custom-upper ul.sb-custom-ul {
	border-top: 1px solid #e3e3e3;
	width: 225px;
}

#trace #sidebar h2 {
	font: normal 16px Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #333333;
	background: transparent;
	padding: 0;
	margin: 0;
	border: none;
	text-transform: uppercase;
	width: 225px;
	border-top: 1px solid #e3e3e3;
	padding-top: 10px;
}

#trace #sidebar h2#side-search {
	border-top: none;
}

#trace #sidebar a {
	font: normal 14px Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #104e7b;
	text-decoration: none;
}

#trace #sidebar a:hover,
#trace #sidebar a:active,
#trace #sidebar a:focus {
	color: #000000;
	text-decoration: underline;
}

#trace #sidebar #sidebar-search label {
	font: normal 13px Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #333333;
}

#trace #sidebar #sidebar-search {
	margin-top: 8px;
	padding-left: 15px;
}

#trace #sidebar #sidebar-search span.border { background: transparent; }

.searchbutton { cursor: pointer; } /* best practice, should move to ir-layout.css */


/* ---------------- Main Content ---------------- */

#trace #wrapper { /* for full-length sidebar content background/elements */
	background: url(assets/md5images/4d46cef483554e1def0d447d036f13e3.gif) repeat-y left top;
}

#trace #content { padding-top: 16px; }

/* adding homepage content JBW 12-22 */

#trace #welcome {
	position: relative;
	width: 666px;
	height: 333px;
	background-image: url(assets/md5images/b59bbb5595230aee1371f8f09e48b2b2.gif);
	background-size: 100%;
}

#trace #welcome #welcome-buttons {
    position: absolute;
    top: 208px;
    left: 245px;
    display: flex;
    flex-wrap: wrap;
}

#trace #welcome .welcome-link {
	width: 180px;
	height: 45px;
	margin: 0 16px 10px 0;
	background: #fff;
	border-radius: 15px;
	text-align: center;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
}

#trace #main.text #welcome .welcome-link a:link,
#trace #main.text #welcome .welcome-link a:visited {
	color: #000;
	font: normal 14px 'Montserrat', sans-serif;
	text-decoration: none;
	padding: 0 6px;
}

#trace #main.text #welcome .welcome-link a:hover,
#trace #main.text #welcome .welcome-link a:active,
#trace #main.text #welcome .welcome-link a:focus {
	text-decoration: underline;
}

#trace #homepage-intro p {
	color: #58595b;
} 
	/* --- Breadcrumbs --- */

#trace #main.text div.crumbs a:link,
#trace #main.text div.crumbs a:visited {
	text-decoration: none;
	color: #104e7b;
}

#trace #main.text div.crumbs a:hover,
#trace #main.text div.crumbs a:active,
#trace #main.text div.crumbs a:focus {
	text-decoration: underline;
	color: #000000;
}

#trace #dcn-home > #homepage-intro { margin: 15px 0; }

 /* adds space under full-width main-content image */
#trace #home-page-banner { margin-bottom: 16px; }


	/* --- Headers --- */

#trace #dcn-home > h2 {
	font: normal 21px Arial, Helvetica Neue, Helvetica, sans-serif;
}

h3 {
	margin: 0;
	text-decoration: underline; }

/* FF 55 takes parent element's color a text-deoration-color (black, usually) */
#dcn-home #cover-browse h3 { color: #104e7b; }

#trace #dcn-home #cover-browse h3 a {
	font: 400 15px/1.6 Arial, Helvetica Neue, Helvetica, sans-serif;
	text-decoration: none;
}

#trace #dcn-home #cover-browse h3 a:hover,
#trace #dcn-home #cover-browse h3 a:focus,
#trace #dcn-home #cover-browse h3 a:active {
	text-decoration: underline;
}
	/* --- Links --- */

#trace #main.text a:link,
#trace #main.text a:visited {
	color: #104e7b; /* declared for #network-icon text */
}

#trace #main.text a:hover,
#trace #main.text a:active,
#trace #main.text a:focus {
	color: #000000;
	text-decoration: underline;
}

	/* PotD / Top DL widgets */

#trace #dcn-home .box.aag h2,
#trace #dcn-home .box.potd h2 {
	width: 267px;
	margin: 0;
	font: normal 16px Arial, Helvetica Neue, Helvetica, sans-serif;
	border-bottom: 1px solid #e3e3e3;
}
#trace #dcn-home .box.aag span,
#trace #dcn-home .box.potd span {
	padding-top: 3px;
}

#trace #main.text .box a:link,
#trace #main.text .box a:visited {
	font: bold 12px Arial, Helvetica Neue, Helvetica, sans-serif;
	text-decoration: none;
	border-bottom: 1px solid #e3e3e3;
	background: none;
}

#trace #main.text .box a:hover,
#trace #main.text .box a:active,
#trace #main.text .box a:focus {
	text-decoration: underline;
}

	/* article-level text // default values 12px/13px */

#alpha .element p, #custom-fields .element p { font-size: 12px; }

#alpha .element h4, #custom-fields .element h4 { font-size: 13px; }

#trace #series-home .pdf a, 
#trace #series-home .native a, 
#trace #series-home .external a {
	line-height: 1.9em;
}

#trace #series-home .pdf, 
#trace #series-home .native, 
#trace #series-home .metadata-only, 
#trace #series-home .external {
	line-height: 1.7em;
}
/* ---------------- Footer ---------------- */
#trace #footer {
	margin-top: 42px;
}

#trace #footer,
#trace #bepress a {
	height: 75px;
	background-color: #59595b; }

#trace #footer p,
#trace #footer p a {
	font: normal 12px/1.7 Arial, Helvetica Neue, Helvetica, sans-serif;
	color: #fff;
	text-decoration: none;
}
/* ---------------- Meta Elements ---------------- */
 
    /* --- Meta styles and background --- */
 
/* --- Full width footer --- */
 
/*Set this color to the same color as the footer, it will appear beneath the footer*/
html { background-color: #59595b; }
 
/*bg-low.gif is usually a solid color image about 5px wide and the same height of the footer. It flanks the footer and appears to extend it*/
#trace {
    background: url(assets/md5images/d3dd89a5e4dd4deb518fa2b1d84b48ff.gif) repeat-x left bottom;
}
 
#trace #content { min-height: 600px; }

#footer p:first-of-type { padding-top: 20px } 

#trace #footer p a:hover,
#trace #footer p a:active,
#trace #footer p a:focus {
	text-decoration: underline; }

/* ---------------- Miscellaneous fixes ---------------- */

/* Copied over from old ir-local.css during redesign- 10/31/2018  */ 
	/* Expert Gallery Suite SW Gallery */
	.egs-profile-gallery {
		display: block; /* removes descender space below inline element */
	 /* left aligned */
		margin: -16px 0 -16px -42px; /* #content .text padding: 16px 0; and #content .text (margin 32px) + #sidebar (margin 10px) */
	
	}

	#message ul.confirm ul li,
	#message ul.warning ul li {
	        background-image: url(assets/md5images/db0f210160877cc96c87a0db257c5079.gif); }
	.article-list .pdf {
	        background: url(assets/md5images/41451be6782cb3a9c459901e615a0791.gif) top left no-repeat; }

	#trace #submit .field .field { background:#181E37;}
	#submit #rtmp_streamer-h,
	#submit #multimedia_format-h {
		display:none;  }

	/* image gallery grid layout 2013.05.24 bnyikos */
	#trace #content #gallery ul li {
		height:160px
	}

	/*move community logos down 2014.03.03 */
	#trace #community-logo {
		margin-top: 70px;
	}
/* End of CSS copied over from old design- 10/31/2018 redesign */
	/* --- Advanced Search --- */

.legacy #trace #wrapper {	background-image: none; }


/* ---------------- Mobile ---------------- */

/*fixes bullet underline for Browse Research and Scholarship links*/
.mbl #main #cover-browse h3 { text-decoration: none; }

.mbl #dcn-home .box.aag span,
.mbl #dcn-home .box.potd span {
	display: block;
}

.mbl #trace #dcn-home .box.aag h2,
.mbl #trace #dcn-home .box.potd h2 {
  width: 100%;
}

header#mobile-nav {
    font-size: 0;
    line-height: 0; }

.mbl #trace #header,
.mbl #trace #header a img,
.mbl #trace #navigation {
	width: 100% !important;
}

.mbl #trace #header #logo_image {
	position: absolute !important; /* !important overrides mbl styling */
	top: 0;
	left: 0;  /* change to "right:" for right aligned logo */
	width: 24.4897959183% !important;  /* 240 / 980 */
	height: auto !important; /* Important avoides DC assigning incorrect height to logo image */
}

.mbl #trace #footer {
	margin-top: 0px;
}


/* orcid id icon next to field value ANK-21-09-07*/
#trace #orcid.element p a {
    background:transparent url(assets/md5images/2dddb203aa38ec94870d3ef2b43921c4.png) top left no-repeat;	
    padding-left:20px;
    padding-bottom:5px; }