/*
document.css - bootstrap overrides
Used for fonts, font sizes and colors, paragraphs, UL, OL, etc.
*/
@font-face {
  font-family: 'NexusSan';
  src: url('../fonts/NexusSansWebPro.eot?') format('embedded-opentype'),
      url('../fonts/NexusSansWebPro.woff') format('woff'),
      url('../fonts/NexusSansOffcPro.ttf') format('truetype');
}

html,
body {
    font-family: NexusSan, Arial, Georgia, sans-serif, serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
/* 
    *   for pixel to rem coversion - here is a table to use (GO TO https://offroadcode.com/rem-calculator - if you do not see your pixel size listed) -
    *   8px = 0.5rem
    *   9px = 0.5625rem
    *   10px = 0.625rem
    *   11px = 0.6875rem
    *   12px = 0.75rem
    *   13px = 0.8125rem
    *   14px = 0.875rem
    *   15px = 0.9375rem
    *   16px = 1rem (base)
    *   18px = 1.125rem
    *   20px = 1.25rem
    *   22px = 1.375rem
    *   24px = 1.5rem
    *   26px = 1.625rem
    *   28px = 1.75rem
    *   30px = 1.875rem
    *   32px = 2rem
    *   34px = 2.125rem
    *   36px = 2.25rem
    *   38px = 2.375rem
    *   40px = 2.5rem
    *   42px = 2.625rem
    *   44px = 2.75rem
    *   46px = 2.875rem
    *   48px = 3rem
    *   basically you just take the pixel you have to use and divide it by your base font size set (in this case 16px) for example: 32px is 32/16 = 2 - 2rem = 32px
*/
    
}
body {
    color: #505050;
    line-height: 1.25rem;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/*  headers */
h1,
h2,
h3,
h4,
h5 {
    color: #323232;
    font-weight: normal;
    margin: 0 0 1rem 0;
}
h1 {
    font-size: 2.625rem;
    line-height: 3.5rem;
    
}
h2 {
    font-size: 1.875rem;
    line-height: 2.5rem;
}
h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin: 0 0 0.875rem;
}
h4, 
h5, 
h6 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin: 0 0 0.5rem 0;
}
p {
    clear: both;
    font-size: 1rem;
    line-height: 1.5rem;
    margin: 0 0 1rem 0;
}
.intro {
    font-size: 1.5rem;
    line-height: 2rem;
}
.display {
    font-size: 2.25rem;
    line-height: 3rem;
    color: #007398;
}
.smallText,
caption {
    clear: both;
    color: #505050;
    display: block;
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 0.5rem;
}
.metaText {
    font-size: 0.875rem;
    line-height: 1.375rem;
}
a,
a#resetFormLink {
    color: #007398;
}
/*  prevent link outlines since we are using color safe color to show focus and hover states for mouse and keyboard users    */
a:active,
a#resetFormLink:active,
a:focus,
a#resetFormLink:focus,
a:hover,
a#resetFormLink:hover {
    border-bottom: #E9711C 2px solid;
    color: #e9711c;
    text-decoration: none;
    outline: 0;
}
a[class^="ico-"]:active,
a[class^="ico-"]:focus,
a[class^="ico-"]:hover {
    border: none;
}
/*	document search reset form link	*/
a#resetFormLink {
	font-size: 1rem;
	margin-right: 1rem;
}
#contentContainer {
    background: #f5f5f5;
    margin: 0;
    padding: 0;
}
/*
 *	SKIP NAVIGATION
*/
.skipnav {
	background: #000;
	position: absolute;
	text-align: left;
	z-index: 2;
}
.skipnav a {
	height: 1px;
	left: -10000px; 
	overflow: hidden;
	position: absolute;
	width: 1px;
}
.skipnav a:focus, 
.skipnav a:active {
	background: #000;
	border-bottom: 2px solid #fff;;
	color: #fff;
	font-size: 1.25rem;
	height: auto;
	left: 1rem;
	overflow: visible;
	padding: 1rem;
	position: static;
	text-decoration: none;
	width: auto;
	z-index: 2;
}

/*=============================================================================
    header area
*/
.globalNavigation,
.footer {
    background: #fff;
    padding: 0;
}
.logo {
    color: #e9711c;
    font-size: 2rem;
    line-height: 2rem;
    margin: 2rem 2rem 0 0;
    min-height: 2rem;
    white-space: nowrap;
}
.logo a {
	color: #e9711c;
}
.logo a:focus,
.logo a:hover {
	border: none;
}
.globalNavigation header {
    margin: 0 2rem;
}
/*	preview logo	*/
.logo img[src $= ".svg"] {
	height: 1.63rem;
}
/*
	top navigation bar area
*/
.navbar,
.navbar > a,
.navbar > .dropdown button {
    font-size: 1.25rem;
}
.navbar-nav > li {
    padding: 0  0.9375rem;
}
.dropdown button {
    padding: 0;
}
.dropdown button span[class ^="ico-"] {
    padding: 0 0 0 .5rem;
}
.navbar-nav > li > a,
.navbar-nav > li > .dropdown > button {
    line-height: 3rem; 
}
.navbar-nav > li > a span[class ^="ico-"] {
    color: #007398;
    font-weight: bold;
}
.dropdown button#spineToggle span {
    color: #777;
}
/*  bootstrap override for global navigation links  */
/*  follow pseudo order of LOVE/HATE (link, visited, hover and active)  */
.navbar {
    background: transparent;
    border: none;
    margin: 0;
    min-height: 5rem;
    position: relative;
}
.nav li a:link,
.navbar-nav li a:link,
.navbar-nav li.active a:link,
.nav li a:visited,
.navbar-nav li a:visited,
.navbar-nav li.active a:visited,
.nav li a:hover,
.navbar-nav li a:hover,
.navbar-nav li.active a:hover,
.nav li a:active,
.navbar-nav li a:active,
.navbar-nav li.active a:active,
.nav li a:focus,
.navbar-nav li a:focus,
.navbar-nav li.active a:focus,
.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
    background: none;
    box-shadow: none;
    display: inline;
    padding: 0;
    text-shadow: none;
}
.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
    border: none;
}
.nav a:link,
.navbar-nav a:link,
.nav a:visited,
.navbar-nav a:visited,
.nav button,
.navbar-nav button {
    display: inline;
    color: #505050;
    margin: 0;
    padding: 0;
}
/*	help menu links	*/
.nav #helpMenuDropdown a:link,
.nav #helpMenuDropdown a:visited {
	color: #007398;
}
#helpMenuDropdown span:focus {
	outline: none;
}
.nav #helpMenuDropdown a:focus,
.nav #helpMenuDropdown a:hover {
	color: #e9711c;
}
.navbar-nav button span[class ^= "ico-"],
.navbar-nav #login_loginlink span[class ^= "ico-"],
.navbar-nav #login_loginlink span[class ^= "ico-"],
.navbar-nav #logout_username_link span[class ^= "ico-"] {
	color: #007398;
}
.navbar-nav button:focus span[class ^= "ico-"],
.navbar-nav button:hover span[class ^= "ico-"],
.navbar-nav #login_loginlink:focus span[class ^= "ico-"],
.navbar-nav #login_loginlink:hover span[class ^= "ico-"],
.navbar-nav #logout_username_link:focus span[class ^= "ico-"],
.navbar-nav #logout_username_link:hover span[class ^= "ico-"] {
	color: #e9711c;
}
/*	need to add a margin left to the icon font since CARS structures the link differently	*/
.navbar-nav #logout_username_link span[class ^= "ico-"] {
	margin-left: .5rem;
}
.navbar-nav a.emphasisLink:link,
.navbar-nav a.emphasisLink:visited {
    background-color: #007398;
    color: #fff;
    padding: .75rem;
}
.navbar-nav > li > a.emphasisLink span {
    color: #fff;
}
.navbar-nav > li > a.emphasisLink:focus span,
.navbar-nav > li > a.emphasisLink:hover span {
    color: #fff;
}
.navbar-nav a:hover .anchorText,
.navbar-nav a:active .anchorText,
.navbar-nav a:focus .anchorText,
.navbar-nav button:hover .anchorText,
.navbar-nav button:focus .anchorText,
.navbar-nav .active a:link .anchorText,
.navbar-nav .active a:hover .anchorText,
.navbar-nav .active a:active .anchorText,
.navbar-nav .active a:focus .anchorText,
.navbar-nav .active button .anchorText,
.navbar-nav .active button:focus .anchorText,
.navbar-nav li.active a .anchorText,
.nav .open > a:focus .anchorText,
.nav .open > a:hover .anchorText {
    border-bottom: 0.125rem solid #e9711c;
    color: #e9711c;
    display: inline;
}
.navbar-nav .active a:link .anchorText,
.navbar-nav li.active a .anchorText {
	color: #505050;
}
.navbar-nav a:hover .anchorText,
.navbar-nav button:hover .anchorText,
.navbar-nav .active a:hover .anchorText,
.nav .open > a:hover .anchorText 
.navbar-nav a:hover span[class ^= "ico-"] {
    color: #e9771c;
}
.navbar-nav button:focus,
.navbar-nav button:hover {
    text-decoration: none; /*   override the default text decoration underline set within the bootstrap core theme file */
}
.navbar-nav a.emphasisLink:hover,
.navbar-nav a.emphasisLink:focus {
    background: #e9711c;
    border: none;
}
.navbar-nav a .glyphicon {
    padding-left: 1rem;
    top: 0;
}
/*	disabled state for anchor links	*/
.navbar-nav a.disabledLink,
.navbar-nav a.disabledLink:focus,
.navbar-nav a.disabledLink:hover {
	border: none;
	color: #ccc !important;
    cursor: pointer;
    pointer-events: none;
}
.navbar-right {
    margin: 1rem 0 0 0;
}
/*	REGISTER AND LOGIN GLOBAL NAVIGATION LINKS -- CARS	*/
.globalNavigation .navbar-right #registerLogin #login-panel > a {	
   border: none;
}
/*=============================================================================
	body area
*/
.wrapper {
    background: #fff;
    padding: 2rem;
}
.wrapperFull {
    background: #fff;
    margin: 0;
    padding: 1rem 2rem;
}
/*  
*   For showing results lists within a search page (document author or affiliation searches etc. ) We need to switch background colors and paddings for rebranding
*/
.wrapper.resultsList {
    padding: 0;
}
/*  the results list content container needs to NOT have a default background color of white (see the .wrapper class) - so this will override the .wrapper class for background ONLY    */
.resultsList {
    background: none;
}
#documentHeaderArea {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;     /* You can set flex-wrap and flex-direction individually */
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;     /* Or do it all in one line with flex flow */
    -webkit-align-content: flex-end;
    align-content: flex-end;
    width: 100%;
}
#documentHeader {
    margin: 0;
    width: 100%;
}
.documentHeader {
    background-color: #007398;
    color: #fff;
    font-size: 2.5rem;
    line-height: 5rem;
    margin: 0;
    min-height: 5rem;
    padding: 0 2rem;
    text-overflow: ellipsis;
}
.documentHeader > ul {
    float: right;
    margin: 0;
    padding: 0;
    text-align: right;
}
/*	spine open 	*/
.fullHeightHack.col-md-10 .documentHeader > ul {
    margin-right: 1rem;
}
.documentHeader a {
	border-bottom: .125rem solid transparent;
    color: #fff;
    font-size: 1rem;
    padding: 0;
}
.documentHeader a span[class ^= "ico-"] {
	font-size: 1.5rem;
	margin-left: .25rem;
}
.documentHeader a:focus .anchorText,
.documentHeader a:hover .anchorText {
	color: #fff;
	border-bottom: 0.125rem solid #fff;
}
.documentHeader a:focus span[class ^= 'ico-'],
.documentHeader a:hover span[class ^= 'ico-']{
	color: #fff;
	border-bottom: none;
}
/*	
*	SEARCH HISTORY
*/
#searchHistorySection h2 {
    font-size: 1.25rem;
    line-height: inherit;
    margin: 0;
}
.table-responsive {
    border-top: 2px solid #265a88;
    border-bottom: 2px solid #dcdcdc; /* border bottom color changed according to requirement */
    margin: 1rem 0;
    padding: 1rem 0;
}
.table,
.table-hover {
	margin: 0;
}
/*	WE NEED TO LIMIT THE WIDTH OF THIS CELL SO IT DOES NOT AFFECT THE WIDTH OF OTHER CELLS BY MISTAKE	*/
td.searchTermsCell {
	width: 60%;
}
#searchHistoryHeader h2 {
	font-size: 1.25rem;
	line-height: inherit;
	margin: 0;
}
#combineQueryContainer {
	padding: 0;
}
#combineQueryContainer span[class ^= "ico-"] {
	font-size: 1.25rem;
}
.searchHistory .table-responsive {
    padding: 0;
    margin-top: 0.25rem;
}
.searchHistory .table-responsive table.table>tbody>tr>td {
    vertical-align: middle;
}
.searchHistory .table-responsive table.table>tbody>tr>td:first-child {
	width: 2rem;
}
.searchHistory .table-responsive table.table>tbody>tr>td.searchTermsCell {
	
}
.searchHistory .combinedQuery .formControls input[type="text"] {
    margin-top: 0;
}
#combineSearchesForm .btn-link {
	color: #23527c;
	padding-right: 0;
}
#combineSearchesForm .btn-link:focus,
#combineSearchesForm .btn-link:hover,
#combineSearchesForm input[type=text]:focus+.btn-link,
#combineSearchesForm input[type-=text]:hover+.btn-link {
	color: #e9711c;
}
td.shLinks {
	text-align: right;
	vertical-align: middle;
}
td.shLinks ul {
	margin: 0;
	padding: 0;
}
a.rssFeed {
	display: inline-block;
	height: 1rem; /* 15px	*/
	width: 1rem; /* 15px	*/
}
a.rssFeed {
    background-image: url(/static/proteus-images/Icon_RSS.svg);
    background-repeat: no-repeat;
    background-size: 1rem auto;
    vertical-align: middle;
}
a.rssFeed:focus,
a.rssFeed:hover {
	background-image: url(/static/proteus-images/Icon_RSS_hover.png);
	background-repeat: no-repeat;
}
a.rssFeed:active,
a.rssFeed:focus,
a.rssFeed:hover {
	border: none;
	color: transparent;
}
/*
*	END SEARCH HISTORY
*/
/*
	footer area
*/
footer {
    margin-top: 2rem;
    padding: 0;
}
footer header h3 {
	font-size: 1.25rem;
    font-weight: normal;
}
footer .list-group,
footer .list-group-item {
    border: none;
    box-shadow: none;
}
.footerLinks,
.footerCopyright {
    margin: 0;
    padding: 0 2rem;
}
.footerLinks > div {
	width: 33%;
}
.footerLinks li {
    margin: 0 0 .5rem 0;
}
.footerCopyright {	/*	creates the top orange border to visually separate the footer links from the footer copyright area	*/
	border-top: 2px solid #e9711c;
	padding-top: 2rem;
}
.footerCopyright > div {
    min-height: 8.5rem;
}
.footerCopyright ul li a {
	color: #505050;
}
.footerCopyright a:focus,
.footerCopyright a:hover {
    color: #e9711c;
}
/*  logos   */
#elsevierLogo,
#relexLogo {
	padding: 0 0 .5rem 0;
}
#relexLogo {
    position: absolute;
    right: 0;
    top: 3.5rem;   
}
/*	spine open	*/
.fullHeightHack.col-md-10 #relexLogo {
	right: 2rem;
}
#elsevierLogo img {
	height: 1rem;
    width: 6.25rem;
}
#relexLogo img {
	height: 1rem;
	width: 6.25rem;
}
/*=============================================================================
	end footer areaa
*/
/*=============================================================================
	search results area
	document main search
*/
.learnMore {
    background: url(/static/proteus-images/icon_improve.png);
    background-size: 3.5rem auto;
    background-repeat: no-repeat;
    display: inline-block;
    float: right;
    height: 2.5rem;
    margin: 2rem 2rem 2rem 0;
    padding: 0 0 0 4rem;
    text-align: right;
}
.learnMoreText,
.improveScopusText {
	display: block;
}
.improveScopusText {
	font-size: 1.25rem;
}
.learnMore:focus,
.learnMore:hover {
	border: none;
}
/*
*	author search
*/
.pngIcon img {
	height: 1.25rem;
	vertical-align: top;
	width: 1.25rem;
}
/*
*   The results list menu (search parameter used, edit, save, set alert and set feed options) is using flex grid for layout.  
*/
#resultsMenu {
    background: #fff;
    margin: 0;
    min-height: 1rem;
    padding: 1rem 2rem;
    width: 100%;
}
#resultsMenu h2 {
    font-size: 1.25rem;
    height: inherit;
    line-height: normal;
    margin: 0;
    padding: 0;
}
#resultsMenu .nav {
    flex: 2;
    font-size: 1rem;
    margin: 0;
}
#resultsMenu .nav > li {
    margin: 0 .5rem;
    padding: 0;
}
#resultsMenu [class^="ico-"] {
    color: #007398;
}
#resultsMenu .btn-link .btnText {
    padding: .1rem 0 0 .5rem;    
}
#resultsMenu .btn-link:focus [class^="ico-"],
#resultsMenu .btn-link:hover [class^="ico-"] {
    color: #e9711c;
}
#resultsMenu .btn-link:focus .btnText,/*  override the default border showing set in the forms.css  */
#resultsMenu .btn-link:hover .btnText {
    border-bottom: none;
}
/*
*   the search results (document, author, affiliation etc) is created with 2 separate panels.  The refine search panel and the results list panel
*/
/*  refine search results panel    */
#refinePanel {

}
#refinePanel .formControls > button {
    bottom: 0;
 }
#refinePanel .inputTextLabel,
#refinePanel label.checkbox-label,
#refinePanel label.radio-label {
    font-size: 0.875rem;
}
#refinePanel label.checkbox-label:before,
#refinePanel label.radio-label:before {
    height: 15px;
    width: 15px;
}
#refinePanel label.checkbox-label:after,
#refinePanel label.radio-label:after {
    height: 9px;
    left: 3px;
    top: 3px;
    width: 9px;
}
/*  checks inside the panel groups - slightly larger than the other checkes and radios  */
#refinePanel .panel-body .inputTextLabel,
#refinePanel .panel-body label.checkbox-label,
#refinePanel .panel-body label.radio-label {
    font-size: 1rem;
}
#refinePanel .panel-body label.checkbox-label,
#refinePanel .panel-body label.radio-label {
    margin: 0;
    width: 100%;
}
#refinePanel .panel-body label.checkbox-label:before,
#refinePanel .panel-body label.radio-label:before,
#resultsPanel label.checkbox-label:before,
#resultsPanel label.radio-label:before {
    height: 15px;;
    width: 15px;
}
#refinePanel .panel-body label.checkbox-label:after,
#refinePanel .panel-body label.radio-label:after,
#resultsPanel label.checkbox-label:after,
#resultsPanel label.radio-label:after {
    height: 9px;
    left: 3px;
    top: 3px;
    width: 9px;
}
#refinePanel .panel-body label.checkbox-label .btnText,
#refinePanel .panel-body label.radio-label .btnText {
    width: 77%;
    word-wrap: normal;
}
#refinePanel .panel-body label.checkbox-label button[data-toggle='modal'],
#refinePanel .panel-body label.radio-label button[data-toggle='modal'] {
    padding-right: 0;
    position: absolute;
    right: 0;
    top: -10px;
}
/*  label badges    */
#refinePanel .panel-body label.checkbox-label .badge,
#refinePanel .panel-body label.radio-label .badge {
    background: transparent;
    border: 1px solid #007398;
    color: #007398;
    margin-right: .5rem;
    padding: 4px 8px;
}
#refinePanel .panel-body label.checkbox-label button[data-toggle='modal']:focus [class ^="ico-"],
#refinePanel .panel-body label.checkbox-label button[data-toggle='modal']:hover [class ^="ico-"] {
    color: #e9711c;
    cursor: pointer;
}
#refinePanel .panel-body label.checkbox-label button[data-toggle='modal']:focus .badge,
#refinePanel .panel-body label.checkbox-label button[data-toggle='modal']:hover .badge {
    background: #e9711c;
    border-color: #e9711c;
    color: #fff;
    cursor: pointer;
}
#refinePanel h2 {
    font-size: 1.25rem;
    margin: 1rem 0;
}
#refinePanel .panel-group {
    margin: .5rem 1rem .5rem 0;
}
#refinePanel .panel-heading {
    padding: 0 0 .3rem 0;
}
#refinePanel .panel-title {
    font-size: 1rem;
    padding: 0 .5rem 0 0;
}
#refinePanel .panel-title [class ^= "ico-"] {
    right: 2rem;
    position: absolute;
}
#refinePanel [class^="ico-"],
#refinePanel .panel-title .icon-after {
    color: #007398;
}
/*  results panel   */
#resultsPanel {
    background: #fff;
    padding: 2rem 1rem; /* changes styles as per ui */
}
#sortByPanel {
    margin: 0;
    padding: 0;
}
#sortByPanel li:last-child {
    text-align: right;
    width: 80%;
}
#resultsListMenu {
    font-size: .85rem;
    height: auto;
    margin: 1rem 0;
    min-height: inherit;
}
#resultsListMenu .dropdown,
#resultsListMenu .checkbox {
    margin: 0;
    padding: 0;
}
#resultsListMenu .checkbox button[data-toggle="dropdown"] {
    left: 1rem;
    position: absolute;
    top: -5px;
}
#resultsListMenu .navbar-nav li {
    margin: 0 1rem 0 0;
    padding: 0;
}
#resultsListMenu .navbar-right,
#resultsListMenu .navbar-nav li:last-child {
    margin: 0;
}
#resultsPanel .table>thead>tr>th,
#resultsPanel .table>tbody>tr>th,
#resultsPanel .table>tfoot>tr>th,
#resultsPanel .table>thead>tr>td,
#resultsPanel .table>tbody>tr>td,
#resultsPanel .table>tfoot>tr>td {
    border: none;
    line-height: inherit;
    padding: .5rem;
    vertical-align: top;
}
#resultsPanel .table>thead>tr>th {
    border-bottom: 1px solid #265a88; /* changes color as per requirement */
}

#resultsPanel .table>tbody>tr th,
#resultsPanel .table>tbody>tr td {
    padding-top: 2rem;
}
#resultsPanel .table>tbody>tr.noPad,
#resultsPanel .table>tbody>tr.noPad td {
    padding: 0;
}
#resultsPanel .table>thead>tr>th .checkbox,
#resultsPanel .table>tbody>tr>td .checkbox {
    margin: 0;
}
#resultsPanel .table>tbody>tr>td button[data-toggle="collapse"] {
    text-align: left;
    width: 100%;
}
/*=============================================================================
	end search results area area
*/
/*=============================================================================
	spine area
*/
.spine {
	background: #404040;
    padding-right: 0;
    padding-left: 0;
    position: fixed;
    right: 0;
    top: 0;
}
.spine.col-md-0 {
    display: none;
}
.spine.col-md-2 {
    min-width: 16rem; /*   256px this is to set a min-width on the spine so the position fixed functionality works in smaller screen sizes WITHOUT shrinking the width of the spine (bootstrap automatically adjusts the width of the col-md classes - this overrides that)*/
    z-index: 2000;
}
.spine:focus, 
.spine header:focus {
    outline: 0;
}
#spineToggle,
#spineToggleDeux,
#spineToggle .btnText,
#spineToggleDeux .btnText {
    outline: none;
}
#spineToggle,
#spineToggle .btnText {
    width: 40px;
}
#spineToggleDeux,
#spineToggleDeux .btnText {
    width: 30px;
}
#spineToggleDeux {
    float: right; /* due to the button being within the heading level element need to float it to the right per design requirements  */
    margin-right: 1rem /*   aligns the toggle button with the rest of the content right margin  */
}
#spineToggleDeux,
#spineToggleDeux .btnText {
    height: 5rem; /*    the height needs to match the line-height set for the button to get the background to center vertically */
    line-height: 5rem; 
}
#spineToggle .btnText,
#spineToggleDeux .btnText {
    background-repeat: no-repeat;
    background-position: center center;
    display: block; /*  need this since possible using an inline element for the container and can only have background image applied to a block element    */
    height: 40px; /* need to specify the height as well along with the block element    */
    -webkit-transition: width 0.3s ease, margin-right 0.3s ease, margin-left 0.3s ease !important;
    transition: width 0.3s ease, margin-right 0.3s ease, margin-left 0.3s ease !important;
}
#spineToggle .btnText {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2740px%27%20height%3D%2718px%27%20viewBox%3D%270%200%2040%2018%27%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20xmlns%3Asketch%3D%27http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%27%3E%3Ctitle%3ERectangle%201858%20%2B%20Rectangle%201858%20Copy%20%2B%20Rectangle%201858%20Copy%202%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%3C%2Ftitle%3E%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%3Cdefs%3E%3C%2Fdefs%3E%3Cg%20id%3D%27page-1---skins%27%20stroke%3D%27none%27%20stroke-width%3D%271%27%20fill%3D%27none%27%20fill-rule%3D%27evenodd%27%20sketch%3Atype%3D%27MSPage%27%3E%3Cg%20id%3D%27hamburger-new%27%20sketch%3Atype%3D%27MSArtboardGroup%27%20transform%3D%27translate(-1212.000000%2C%20-29.000000)%27%20fill%3D%27%234A4A4A%27%3E%3Cg%20id%3D%27Rectangle-1858-%2B-Rectangle-1858-Copy-%2B-Rectangle-1858-Copy-2-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy%27%20sketch%3Atype%3D%27MSLayerGroup%27%20transform%3D%27translate(1212.000000%2C%2029.000000)%27%3E%3Crect%20id%3D%27Rectangle-1858%27%20sketch%3Atype%3D%27MSShapeGroup%27%20x%3D%270%27%20y%3D%270%27%20width%3D%2740%27%20height%3D%272%27%3E%3C%2Frect%3E%3Crect%20id%3D%27Rectangle-1858-Copy%27%20sketch%3Atype%3D%27MSShapeGroup%27%20x%3D%270%27%20y%3D%278%27%20width%3D%2740%27%20height%3D%272%27%3E%3C%2Frect%3E%3Crect%20id%3D%27Rectangle-1858-Copy-2%27%20sketch%3Atype%3D%27MSShapeGroup%27%20x%3D%270%27%20y%3D%2716%27%20width%3D%2740%27%20height%3D%272%27%3E%3C%2Frect%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
#spineToggleDeux .btnText {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2740px%27%20height%3D%2718px%27%20viewBox%3D%270%200%2040%2018%27%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20xmlns%3Asketch%3D%27http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%27%3E%3Ctitle%3ERectangle%201858%20%2B%20Rectangle%201858%20Copy%20%2B%20Rectangle%201858%20Copy%202%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%3C%2Ftitle%3E%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%3Cdefs%3E%3C%2Fdefs%3E%3Cg%20id%3D%27page-1---skins%27%20stroke%3D%27none%27%20stroke-width%3D%271%27%20fill%3D%27none%27%20fill-rule%3D%27evenodd%27%20sketch%3Atype%3D%27MSPage%27%3E%3Cg%20id%3D%27hamburger-new%27%20sketch%3Atype%3D%27MSArtboardGroup%27%20transform%3D%27translate(-1212.000000%2C%20-29.000000)%27%20fill%3D%27%23ffffff%27%3E%3Cg%20id%3D%27Rectangle-1858-%2B-Rectangle-1858-Copy-%2B-Rectangle-1858-Copy-2-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy%27%20sketch%3Atype%3D%27MSLayerGroup%27%20transform%3D%27translate(1212.000000%2C%2029.000000)%27%3E%3Crect%20id%3D%27Rectangle-1858%27%20sketch%3Atype%3D%27MSShapeGroup%27%20x%3D%270%27%20y%3D%270%27%20width%3D%2740%27%20height%3D%272%27%3E%3C%2Frect%3E%3Crect%20id%3D%27Rectangle-1858-Copy%27%20sketch%3Atype%3D%27MSShapeGroup%27%20x%3D%270%27%20y%3D%278%27%20width%3D%2740%27%20height%3D%272%27%3E%3C%2Frect%3E%3Crect%20id%3D%27Rectangle-1858-Copy-2%27%20sketch%3Atype%3D%27MSShapeGroup%27%20x%3D%270%27%20y%3D%2716%27%20width%3D%2740%27%20height%3D%272%27%3E%3C%2Frect%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); 
}
#spineToggle:focus .btnText,
#spineToggle:hover .btnText,
#spineToggleDeux:focus .btnText,
#spineToggleDeux:hover .btnText {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2740px%27%20height%3D%2718px%27%20viewBox%3D%270%200%2040%2018%27%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20xmlns%3Asketch%3D%27http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%27%3E%3Ctitle%3ERectangle%201858%20%2B%20Rectangle%201858%20Copy%20%2B%20Rectangle%201858%20Copy%202%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%20Copy%3C%2Ftitle%3E%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%3Cdefs%3E%3C%2Fdefs%3E%3Cg%20id%3D%27page-1---skins%27%20stroke%3D%27none%27%20stroke-width%3D%271%27%20fill%3D%27none%27%20fill-rule%3D%27evenodd%27%20sketch%3Atype%3D%27MSPage%27%3E%3Cg%20id%3D%27hamburger-new%27%20sketch%3Atype%3D%27MSArtboardGroup%27%20transform%3D%27translate(-1212.000000%2C%20-29.000000)%27%20fill%3D%27%23e9711c%27%3E%3Cg%20id%3D%27Rectangle-1858-%2B-Rectangle-1858-Copy-%2B-Rectangle-1858-Copy-2-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy-Copy%27%20sketch%3Atype%3D%27MSLayerGroup%27%20transform%3D%27translate(1212.000000%2C%2029.000000)%27%3E%3Crect%20id%3D%27Rectangle-1858%27%20sketch%3Atype%3D%27MSShapeGroup%27%20x%3D%270%27%20y%3D%270%27%20width%3D%2740%27%20height%3D%272%27%3E%3C%2Frect%3E%3Crect%20id%3D%27Rectangle-1858-Copy%27%20sketch%3Atype%3D%27MSShapeGroup%27%20x%3D%270%27%20y%3D%278%27%20width%3D%2740%27%20height%3D%272%27%3E%3C%2Frect%3E%3Crect%20id%3D%27Rectangle-1858-Copy-2%27%20sketch%3Atype%3D%27MSShapeGroup%27%20x%3D%270%27%20y%3D%2716%27%20width%3D%2740%27%20height%3D%272%27%3E%3C%2Frect%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    
}
.spine h1,
.spine h2,
.spine h3,
.spine h4 {
    font-size: 1rem;
    line-height: 2rem;
    margin: 0;
    padding: 0;
    position: relative;
}
.spine #spineHeading .headerText,
.spine #spineHeading .btnText {
	color: #fff;
    line-height: 5rem; /*   top header area of the spine ONLY   */
}
.spine #spineHeading a {
	line-height: 5rem;
}
.spine #carsLogout a {
	line-height: normal;
}
.spine #spineHeading a:focus .headerText,
.spine #spineHeading a:hover .headerText,
.spine #spineHeading a:focus .btnText,
.spine #spineHeading a:hover .btnText {
	color: #e9711c
}
.spine header,
.spine .list-group,
.spine .panel-group {
    margin: 0;
    padding: 0 1rem;
}
.spine header {
    background: #000;
    min-height: 5rem;
}
.loggedInUserOpt {
    background: #323232;
    padding: 1rem 0;
}
.spine .list-group,
.spine .list-group-item {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    margin: .5rem 0 1rem 0;
}
.spine .list-group-item,
.spine .list-group a,
.spine .list-group form /*	this is for the personal profile	*/ {
    color: #fff;
    margin: .5rem 0;
    padding: 0 0 .5rem 0;
}
.spine .list-group li {
	margin: 0 0 1rem 0;
}
.spine .list-group a {
	border-bottom: 0.125rem solid transparent;
	padding: 0;
}
.spine a:focus,
.spine a:hover,
/* .spine .list-group-item:focus,
.spine .list-group-item:hover, */
.spine .list-group a:focus, 
.spine .list-group a:hover,
.spine .well a:focus,
.spine .well a:hover {
    background: none;
    border-bottom: 0.125rem solid #e9711c;
    color: #e9711c;
}
/* spine panels */
.spine .panel > .panel-heading {
    background: none;
    color: #fff;
    font-size: 1rem;
    padding: 0;
}
.spine .panel-title {
    border: none;
}
.spine .panel-title .btn-link {
    color: #fff;
    font-size: 1rem;
    padding: 0;
}
.spine .panel-title [class^="ico-"] {
	font-size: 1.5rem;
}
.spine .panel-title .btn-link .anchorText {
	border-bottom: 2px solid transparent;
	padding: 0;
}
.spine .panel-title .btn-link:focus,
.spine .panel-title .btn-link:hover,
.spine .panel-title .btn-link[aria-expanded="true"] {
	border: none;
    color: #e9711c;             
}
.spine .panel-title .btn-link:focus .anchorText,
.spine .panel-title .btn-link:hover .anchorText {
	border-bottom: 2px solid #e9711c;
	text-decoration: none;
}
/*  the below switches the font icon from down to up chevron based on whether or not the aria-expanded attribute is true or false   */
.spine .panel-title .btn-link[aria-expanded="true"] .ico-navigate-down:before {
    content: "\ef80";
}
.spine .panel > .active,
.spine .panel-collapse {
    background: none;
    margin: 0;
    padding: 0;
}
.spine .panel-group .panel-heading + .panel-collapse > .list-group, 
.spine .panel-group .panel-heading + .panel-collapse > .panel-body {
    background: none;
    border: none;
    list-style: none;
    padding: 0 1rem;
}
.spine .well,
.spine .list-group.well,
.spine .panel-group .panel-heading + .panel-collapse > .list-group.well {
    background: #ccc;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: #505050;
    font-size: 0.875rem;
    -webkit-box-shadow: none;
    margin: 1rem;
    min-height: 20px;
    padding: .5rem;
    text-align: center;
}
.spine .well{ /*added to make the spine well look like the production version*/
	width : 12.5rem; 
	margin-left : 0;
}
.spine .well a {
    color: #007398;
    text-decoration: none;
}
.spine #miscLinks li {
	margin: .75rem 0 0 0;
}
/*=============================================================================
	show hide spine area
*/
.mainRow {
	overflow: hidden; /* necessary to hide collapsed sidebar/spine	*/
}
/*=============================================================================
	Miscellaneous i.e. general classes that can be use anywhere within the document
*/
.collapsed {
	display: none;
}
.displayNone {
    display: none;
}
.alignRight {
    text-align: right;
}
.alignLeft {
    text-align: left;
}
/*  CARS Login  */
.dropdown-menu[aria-labelledby="login_loginlink"] {
    min-width: 660px;
}
.verticalAlign {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    align-items: center;
}
.flexLeft {
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
}
.flexRight {
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
}
/*
*   Table bootstrap overrides
*/
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    border: none;
    line-height: inherit;
    padding: 10px;
}
/*  search results page tables  */
.table-hover > tbody > tr:hover,
.table-hover > tbody > tr:hover + tr.noPad {
    background-color: #f5f5f5;
}
.table-hover > tbody > tr.noPad:hover {
    background: none;
}
/*  miscellaneous icons that are NOT part of the font icon set  */
.historyRSSIcon {
    height: 15px;
    width: 15px;
}
/*
*   added terms
*/
.addedTerms .ui-selectmenu-button {
    margin: 1rem 0 2rem 0;
}
/*
*   advance search
*/
#operators,
#fieldCodes {
    background: #f5f5f5;
    font-size: 1rem;
    margin: 0 0 1rem 0;
    padding: 1rem 2rem 2rem 2rem;
}
#operators h2,
#fieldCodes h2 {
    font-size: 1.25rem;
    margin: 0;
}
#operators h2 span[class ^= 'ico-'],
#fieldCodes h2 span[class ^= 'ico-'] {
    margin-left: 1rem;
}
#operators ul,
#fieldCodes ul {
    background: #fff;

}
#operators ul li,
#fieldCodes ul li {
    border-bottom: 2px solid #fff;
    padding: 0 1rem;
    position: relative;
}
#operators ul li:last-child,
#fieldCodes ul li:last-child {
    padding-bottom: .5rem;
}
#operators ul li:first-child,
#fieldCodes ul li:first-child {
    padding-top: .5rem;
}
#operators ul li:focus,
#operators ul li:hover,
#operators ul > li.open,
#fieldCodes ul li:focus,
#fieldCodes ul li:hover,
#fieldCodes ul > li.open {
    border-bottom: 2px solid #e9711c;
}
/*
*	add item icon color - focus and hover
*/
.addItemField span[class ^= 'ico-'],
.addItemField span[class ^= 'ico-'] {
    color: #007398;
}
.addItemField:focus span[class ^= 'ico-'],
.addItemField:hover span[class ^= 'ico-'] {
    color: #e9711c;
}
#operators .dropdown-menu,
#fieldCodes .dropdown-menu {
    left: -29.63rem; /*    must match the total width of the container to place OUTSIDE the parent */
    top: 97%;
    width: 29.63rem;
}
#operators .dropdown-menu ul li,
#fieldCodes ul li {
    padding: 0 1rem;
}
/*
*   end advance search 
*/
/*
*	TEMPORARY RULES DUE TO OLD SCOPUS
*/
.ariaHidden,
.hidden-label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
