/* Minification failed. Returning unminified contents.
(770,46): run-time error CSS1019: Unexpected token, found '['
(770,46): run-time error CSS1042: Expected function, found '['
(770,46): run-time error CSS1062: Expected semicolon or closing curly-brace, found '['
 */
/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:
	
	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com
	
-------------------------------------------------------------------------------*/

/* Let's default this puppy out
-------------------------------------------------------------------------------*/

html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video, details, summary {
	margin: 0;
	padding: 0;
	border: 0;
	font-family: Arial, helvetica, sans-serif;
	color: #222;
	font-size: 11px; /* 12px 68.75%;  mod from 100% */
	vertical-align: baseline;
	background: transparent;
}									

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */

article, aside, figure, footer, header, hgroup, nav, section, details, summary {display: block;}

/* Responsive images and other embedded objects
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
   If this default setting for images is causing issues, you might want to replace it with a .responsive class instead. */
img,
object,
embed {max-width: 100%;}

/* force a vertical scrollbar to prevent a jumpy page */
html {overflow-y: scroll;}

/* we use a lot of ULs that aren't bulleted. 
	don't forget to restore the bullets within content. */
ul {list-style: none;}

blockquote, q {quotes: none;}

blockquote:before, 
blockquote:after, 
q:before, 
q:after {content: ''; content: none;}

a {margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent;}

del {text-decoration: line-through;}

abbr[title], dfn[title] {border-bottom: 1px dotted #000; cursor: help;}

/* tables still need cellspacing="0" in the markup */
table {border-collapse: collapse; border-spacing: 0;}
th {font-weight: bold; vertical-align: bottom;}
td {/*font-weight: normal;*/ vertical-align: top;}

hr {display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0;}

input, select {vertical-align: middle;}

pre {
	white-space: pre; /* CSS2 */
	white-space: pre-wrap; /* CSS 2.1 */
	white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
	word-wrap: break-word; /* IE */
}

input[type="radio"] {vertical-align: text-bottom;}
input[type="checkbox"] {vertical-align: bottom;}
.ie7 input[type="checkbox"] {vertical-align: baseline;}
.ie6 input {vertical-align: text-bottom;}

select, input, textarea {font: 99% sans-serif;}

table {font-size: inherit; font: 100%;}

small {font-size: 85%;}

strong {font-weight: bold;}

td, td img {vertical-align: top;} 

/* Make sure sup and sub don't screw with your line-heights
	gist.github.com/413930 */
sub, sup {font-size: 75%; line-height: 0; position: relative;}
sup {top: -0.5em;}
sub {bottom: -0.25em;}

/* standardize any monospaced elements */
pre, code, kbd, samp {font-family: monospace, sans-serif;}

/* hand cursor on clickable elements */
.clickable,
label, 
input[type=button], 
input[type=submit], 
input[type=file], 
button {cursor: pointer;}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {margin: 0;}

/* make buttons play nice in IE */
button {width: auto; overflow: visible;}
 
/* scale images in IE7 more attractively */
.ie7 img {-ms-interpolation-mode: bicubic;}

/* prevent BG image flicker upon hover */
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}

/* let's clear some floats */
.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; }  
.clearfix:after { clear: both; }  
.clearfix { zoom: 1; }  


/* custom */

* {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* *behavior: url(/Scripts/boxsizing.htc); */ /* Opera/IE 8+ */
}

/* Make clicks pass-through */
#loading-bar,
#loading-bar-spinner {
  pointer-events: none;
  -webkit-pointer-events: none;
  -webkit-transition: 0.5s linear all;
  -moz-transition: 0.5s linear all;
  -o-transition: 0.5s linear all;
  transition: 0.5s linear all;
}

#loading-bar.ng-enter,
#loading-bar.ng-leave.ng-leave-active,
#loading-bar-spinner.ng-enter,
#loading-bar-spinner.ng-leave.ng-leave-active {
  opacity: 0;
}

#loading-bar.ng-enter.ng-enter-active,
#loading-bar.ng-leave,
#loading-bar-spinner.ng-enter.ng-enter-active,
#loading-bar-spinner.ng-leave {
  opacity: 1;
}

#loading-bar .bar {
  -webkit-transition: width 500ms;
  -moz-transition: width 500ms;
  -o-transition: width 500ms;
  transition: width 500ms;

  background: #f33;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#loading-bar .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #f33, 0 0 5px #f33;
  opacity: 1.0;

  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -moz-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  -o-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
}
/*
#loading-bar-spinner {
  display: block;
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
}

#loading-bar-spinner .spinner-icon {
  width: 14px;
  height: 14px;

  border:  solid 2px transparent;
  border-top-color:  #f33;
  border-left-color: #f33;
  border-radius: 10px;

  -webkit-animation: loading-bar-spinner 400ms linear infinite;
  -moz-animation:    loading-bar-spinner 400ms linear infinite;
  -ms-animation:     loading-bar-spinner 400ms linear infinite;
  -o-animation:      loading-bar-spinner 400ms linear infinite;
  animation:         loading-bar-spinner 400ms linear infinite;
}

@-webkit-keyframes loading-bar-spinner {
  0%   { -webkit-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-moz-keyframes loading-bar-spinner {
  0%   { -moz-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
}
@-o-keyframes loading-bar-spinner {
  0%   { -o-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-ms-keyframes loading-bar-spinner {
  0%   { -ms-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -ms-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes loading-bar-spinner {
  0%   { transform: rotate(0deg);   transform: rotate(0deg); }
  100% { transform: rotate(360deg); transform: rotate(360deg); }
}
*/
.page-container {
    margin: 0 auto;
}

.bg-white {
    background-color: #fff;
}

* {
    margin: 0;
}


html, body, .ui-top {
    height: 100%;
}


header {
    margin-bottom: 30px;
}

body {
    background-color: #f6f6f6;
}


.main {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -205px;
}

footer, .bottom-push {
    height: 205px;
}

.bottom-push {
    margin-top: 2em;
}

h1 {
    font-size: 24px;
    margin: .67em 0
}

h2 {
    font-size: 20px;
    margin: .75em 0
}

h1, h2, h3, h4,
h5, h6 {
    color: #073c63;
    font-family: StagMedium,Georgia,sans-serif;
    font-weight: 400;
}

h3 {
    font-size: 18px;
}

button {
    background-color: #005fa5;
    border-radius: 2px;
    border: none;
    color: #fff;
    height: 28px;
    position: relative;
    padding-right: 2.5em;
}

    button:after {
        background-color: #005fa5;
        color: #fff;
        font-family: FontAwesome;
        font-size: 1.3em;
        position: absolute;
        top: 6px;
        right: 10px;
        content: "\f138";
    }

    button:hover, button:hover:after {
        background-color: #0074be;
        text-decoration: none
    }

/*
::-moz-selection { background: #fe57a1; color: #fff; text-shadow: none; }
::selection { background: #fe57a1; color: #fff; text-shadow: none; }
*/

/* header */

#logo {
    background-color: #f1f1f1;
    border-top: 3px solid #005fa5;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
}

.goto-ext a {
    color: #003b62 !important;
    display: inline-block;
    font-size: 14px;
    padding-top: 13px;
    margin-right: 10px;
}

.img_header {
    display: flex;
    align-items: center;
    margin-top: 13px;
}

    .img_header p, .img_header a.app-link {
        margin-top: auto;
        margin-bottom: auto;
        color: #005FA5;
        letter-spacing: -1px;
        font-size: 16px;
        font-weight: 500;
        margin-left: 10px;
    }

#logo a {
    text-decoration: none;
}

@media only screen and (max-width: 660px) {
    .img_header p, .img_header a {
        font-size: 24px;
        margin-left: auto;
        margin-right: auto;
        margin-top: auto;
        margin-bottom: auto;
    }
}


.flexible_row {
    /*max-height:60px;*/
}

nav li, nav li a {
    display: inline-block;
}
/*
.external-nav
{
    background-color: #fff;
    border-top: 1px solid #d4d4d4;
    height: 42px;
}

.external-nav li a, .external-nav li a:visited, .external-nav li a:active
{
    color: #222;
    font: normal 14px Helvetica,Arial,sans-serif;
    margin-right: 1em;
    padding: .85em 1.5em .8em 0;
}

.external-nav li:first-child a
{
    font-weight: 700;
}
*/

/* bledit, add back when exon is done .internal-nav, */ .subnav1 {
    background-color: #c4e2eb;
    border-bottom: 1px solid #b4d7e2;
    border-top: 1px solid #b4d7e2;
    margin: 0 auto 0 auto; /*  0 auto 2em auto; */
}

/*bledit remove exon*/
.internal-nav {
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
    border-top: 1px solid #d4d4d4;
    z-index: 1;
}


#page-content .subnav1 {
    border: none;
}

.internal-nav > .page-container {
    position: relative;
}

.subnav2 {
    background-color: #dfebef;
    margin-bottom: 30px;
}

    .subnav2 li {
        cursor: pointer;
    }

    .subnav2 a {
        color: #222;
        font-size: 1.25em;
        padding: .8em 1em;
    }

.a_b_dark_b a {
    background-color: #003b62;
    color: #fff !important;
}

.subnav1 a {
    border-right: 1px solid #fff;
}

    .subnav1 a:hover {
        background-color: #a5dbeb;
    }

.subnav1 .a_b_dark_b a:hover {
    background: #003b62;
}

.m-nav {
    border: none;
}

    .m-nav ul {
        display: table;
        padding: 0 10px;
        width: 100%;
    }

    .m-nav li {
        border-bottom: none !important;
        cursor: pointer;
        text-align: left;
        width: 33.3%;
    }

    .m-nav a {
        font-size: 12px;
        padding: 6.5px 0;
        vertical-align: bottom;
    }

    .m-nav li.visible a {
        font-weight: bold;
    }

.market-data {
    padding: 0 !important;
}

    .market-data img {
        display: inline;
    }

.market-nav ul {
    background-color: #f6f6f6;
    border-bottom: 1px solid #e2e2e2 !important;
    border-top: 1px solid #e2e2e2 !important;
    display: table;
    padding: 0 10px;
    width: 100%;
}

.market-nav li {
    display: table-cell;
    text-align: left;
    overflow: visible !important;
}

.market-nav a {
    font-size: 12px !important;
    padding: 6.5px 0;
}

.market-nav li.visible a {
    /*background: #efefef;*/
    font-weight: bold;
}

.market-data-content {
    padding: 6px;
}

.data-source {
    display: inline-block;
    margin-top: 3px;
}

.rec-change img {
    width: 14px;
}

.market-data-change .simple-table tr {
    text-align: left;
}

.market-data-change .simple-table td {
    /*font-size: 14px;*/
    height: 14px;
    padding: .2em .25em;
    width: 14px;
}

.rec-change-2 nav ul {
    display: block;
}
    .rec-change-2 nav ul li {
        display: initial;
        margin-right: 10px;
    }
    .rec-change-2 nav ul li.active {
        font-weight: 600;
    }

.rec-change-2 .market-data-content {
    padding: 0;
}

    .rec-change-2 .market-data-content .no-data {
        border-top: solid 1px #ddd;
        padding: 4px 10px;
    }

    .rec-change-2 .market-data-content .header {
        display: flex;
        justify-content: space-between;
        padding: 4px 10px;
    }

    .rec-change-2 .market-data-content .data {
        display: flex;
        justify-content: space-between;
        border-top: solid 1px #ddd;
        align-items: center;
        padding: 4px 10px;
    }
        .rec-change-2 .market-data-content .data.loading {
            align-items: stretch;
        }
            .rec-change-2 .market-data-content .data.loading p {
                background: #c4e2eb;
                background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
                border-radius: 5px;
                background-size: 200% 100%;
                animation: 1.5s shine linear infinite;
                height: 30px;
                width: 100%;
            }

.rec-change-2 .btn-more-area {
    border-top: solid 1px #ddd;
    padding: 10px;
}

.rec-change-2 .btn-more-area a {
    font-size: 12px;
}

@keyframes shine {
    to {
        background-position-x: -200%;
    }
}

.rec-change .simple-table td:nth-child(2), .rec-change .simple-table td:nth-child(4), .eps-change .simple-table td:nth-child(4), .eps-change .simple-table td:nth-child(6) {
    text-align: center;
}

.eps-change .simple-table td:nth-child(3), .eps-change .simple-table td:nth-child(5) {
    text-align: right;
}

.rec-change tr td:nth-child(4) {
    opacity: .3;
}

.eqcalendar.event-cal > div + div {
    padding: 0;
}
/*
.eqcalendar table
{
    margin: 10px;
}
*/
.eqcalendar .market-nav {
    margin-top: -1px;
}


.sortable {
    background: url(../Images/bg3.gif) 100% 50% no-repeat;
    cursor: pointer;
}

.sort-up {
    background: url(../Images/asc.gif) 100% 50% no-repeat;
    cursor: pointer;
}

.sort-down {
    background: url(../Images/desc.gif) 100% 50% no-repeat;
    cursor: pointer;
}

.sort-up, .sort-down {
    background-color: #f1f1f1;
}

table .sortable span, table .sort-up span, table .sort-down span {
    margin-right: 10px;
}


a:hover {
    cursor: pointer;
}

#intnav-ul ul {
    margin-left: -10px;
}

.subnav1 ul {
    margin-left: -10px;
    padding: 1px 0;
}

.internal-nav #intnav-ul > ul a, .internal-nav #intnav-ul > ul a:visited, .internal-nav #intnav-ul > ul a:active, .subnav1 a, .subnav a {
    color: #043b62;
    font: normal 14px Arial, Helvetica,sans-serif;
    padding: 11px 10px 11px 10px;
}

a, a:visited, a i {
    color: #005fa6;
    text-decoration: none;
}

nav a, nav a:visited {
    color: #222;
}

a:active, a:hover {
    /*color: #222;*/
    text-decoration: underline;
}

a.no-anchor {
    color: #222;
    cursor: default
}

    a.no-anchor:active, a.no-anchor:hover {
        text-decoration: none;
    }

.active-view {
    /*font-weight: bold;*/
    background: #f8f8f8;
}
/* end header */

/* column definitions */

.col1of1 {
    width: 100%;
    padding-left: 8.25px;
    padding-right: 8.25px;
}

.col1of3, .col2of3, .col3of3 {
    width: 33.33%;
    float: left;
    padding-left: 8.25px;
    padding-right: 8.25px;
    /*min-height: 400px;*/ /* For dev */
}

.col1of2, .col2of2 {
    float: left;
    padding-left: 8.25px;
    padding-right: 8.25px;
    width: 50%;
}

.chart-coll .chart-block {
    float: left;
    width: 32%;
    margin-right: 1.3%;
}

#tech-charts div, #tech-charts h2 {
    margin: 0;
    padding: 0;
}

.start1of3, .start2of3, .start3of3, .start66 {
    width: 33.33%;
    float: left;
    padding-left: 8.25px;
    padding-right: 8.25px;
}

.start2of3 {
    float: right;
}

.start66 {
    width: 66.66%;
}
/* End column definitions */
img {
    display: block;
    border: 0;
    max-width: 100%;
    height: auto;
}

.half-col {
    float: left;
    width: 50%;
    padding: .2em;
}

.tile-wrapper {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fill, [col] 50% );
    background-color: #fff;
    color: #444;
}

.tile-box {
    background-color: #0063A4;
    color: whitesmoke !important;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    font-family: StagMedium,Georgia,sans-serif;
    font-weight: lighter;
    font-size: 18px;
    overflow: hidden;
    display: flex;
    text-decoration: none !important;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.tile-left {
    grid-column: 1;
}

.tile-right {
    grid-column: 2;
}

.tile-100 {
    grid-column: 1 / 3;
}


footer {
    background: #e2e2e2;
}

.contact-information {
    padding: 3em 0;
}

    .contact-information > div {
        margin-bottom: 1em;
    }

    .contact-information i {
        color: #454545;
        font-size: 2.5em;
    }

    .contact-information h1 {
        color: #454545;
        display: inline;
        font-size: 1.7em;
        margin-left: .75em;
    }

    .contact-information p {
        font-size: 14px;
    }

.legal-information {
    background: #003B63;
    padding: 1em 2em;
    text-align: center;
}

    .legal-information a, .legal-information span, .legal-information i {
        color: #fff;
    }

/* company.html */
.company-list a {
    font-size: 1.25em;
}

.company-list img {
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
}

.shb-coverage a {
    display: inline-block;
    margin-left: 19px;
    vertical-align: middle;
}

.shb-coverage-ie9 a {
    margin-left: 3px;
    vertical-align: middle;
}

.hl-company {
    background-color: #eedd22;
}

.a-selected {
    font-weight: bold;
}

.company-list li {
    display: inline-block;
    margin: .8em;
    width: 15em;
}

.shb-coverage li {
    background-repeat: no-repeat;
    background-size: 15px 15px;
}

.rec-None {
    background: url(../Images/recommendations/None.svg);
}

.rec-Buy {
    background: url(../Images/recommendations/Buy.svg);
}

.rec-Sell {
    background: url(../Images/recommendations/Sell.svg);
}

.rec-Reduce {
    background: url(../Images/recommendations/Reduce.svg);
}

.rec-Accumulate {
    background: url(../Images/recommendations/Accumulate.svg);
}

.rec-Light {
    background: url(../Images/recommendations/Light.svg);
}

.rec-Neutral {
    background: url(../Images/recommendations/Neutral.svg);
}

.rec-Hold {
    background: url(../Images/recommendations/Hold.svg);
}

.rec-MarketPerform {
    background: url(../Images/recommendations/MarketPerform.svg);
}

.rec-Outperform {
    background: url(../Images/recommendations/Outperform.svg);
}

.rec-Underperform {
    background: url(../Images/recommendations/Underperform.svg);
}




.recunsec-MarketPerform {
    background: url(../Images/creditrecommendations/MarketPerform_Unsecured.svg);
}

.recsec-MarketPerform {
    background: url(../Images/creditrecommendations/MarketPerform_Secured.svg);
}

.recmain-MarketPerform {
    background: url(../Images/creditrecommendations/MarketPerform.svg);
}

.recunsec-Outperform {
    background: url(../Images/creditrecommendations/Outperform_Unsecured.svg);
}

.recsec-Outperform {
    background: url(../Images/creditrecommendations/Outperform_Secured.svg);
}

.recmain-Outperform {
    background: url(../Images/creditrecommendations/Outperform.svg);
}

.recunsec-Underperform {
    background: url(../Images/creditrecommendations/Underperform_Unsecured.svg);
}

.recsec-Underperform {
    background: url(../Images/creditrecommendations/Underperform_Secured.svg);
}

.recmain-Underperform {
    background: url(../Images/creditrecommendations/Underperform.svg);
}

.recunsec-NoRating {
    background: url(../Images/creditrecommendations/NoRating_Unsecured.svg);
}

.recunsec-NoRating {
    background: url(../Images/creditrecommendations/NoRating_Secured.svg);
}

.recmain-NoRating {
    background: url(../Images/creditrecommendations/NoRating.svg);
}

input[type=text], input[type=number], input[type=search], input[type=password] {
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    font-size: 14px;
    max-width: 100%;
    padding: 5px 5px 5px 5px;
    width: 200px;
}

input[type=number] {
    width: 125px;
}

input[type=search] {
    /*background-clip: padding-box; */
    background-image: url(../Images/sprites_small.png);
    background-position: 5px -234px;
    background-repeat: no-repeat;
    padding-left: 29px;
}

.page_search_results {
    position: absolute;
    border: 2px solid #d4d4d4;
    background: white;
    overflow-y: hidden;
    right: -5px;
    left: -5px;
    height: auto;
    max-height: 400px;
    z-index: 1000;
}

    .page_search_results li {
        display: block !important;
        padding: 5px;
    }

    .page_search_results a {
        font-size: 14px;
        line-height: 1.5;
    }

input[type=date] {
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    padding: 2px 5px 2px 5px;
}

select {
    border: 1px solid #d4d4d4;
    border-radius: 2px;
}

.filter-box {
    background-color: #dfebef;
    border: 1px solid #b4d7e2;
    min-height: 64px;
    padding: 10px;
}

    .filter-box select {
        font-size: 14px;
        margin: .7em .7em .7em 0;
        padding: 4px 5px 4px 5px;
        width: 250px;
    }

    .filter-box input {
        max-width: 25em;
    }

    .filter-box > button {
        margin-left: 5em;
    }

    .filter-box a {
        cursor: pointer;
        white-space: nowrap;
        font-size: 1.2em;
        vertical-align: middle;
        text-transform: capitalize
    }

.hs-cons {
    margin-bottom: 1em;
}

.filter-box li {
    line-height: 2em;
}

.filter-box i {
    color: #043b62;
    margin-left: 1em;
    padding-right: 1em;
}

.filter-box label {
    display: inline-block;
    font-size: 1.25em;
    font-weight: bold;
    margin: .7em .7em .7em 0;
}

    .filter-box label span {
        display: inline-block;
        width: 3em;
    }

    .filter-box label input {
        margin: 0;
    }

.s-h-filters {
    display: inline-block;
    margin: .5em 1em .5em 0;
    padding-left: .5em;
}

.sector-tree li li {
    margin-left: 5%;
}

.facet-box {
    float: left;
    margin-left: 1em;
    margin-right: 5em;
}
.facet-box-analyst {
    float: left;
    margin-left: 1em;
    margin-right: 5em;
    margin-bottom: 1em;
}

#reco-facet img {
    height: 16px;
    width: 16px;
}

#mcap-facet span {
    display: inline-block;
    width: 4em;
}

#mcap-facet li {
    margin: .5em;
}

/*end company.html*/

.p10px {
    padding: 10px;
}

nav .fa-sign-out, nav a .fa-envelope-o {
    color: #003b62;
    font-size: 1.6em;
    margin: 0;
}

.right_corner {
    float: right;
    padding: 10px;
    padding-bottom: 0px;
}

#mail-basket-link, #sign-out-link {
    color: #003b62;
    padding: .5em .7em;
}

    #mail-basket-link span, #sign-out-link span {
        color: #003b62;
        margin-left: .3em;
    }

#userprofile.in-hybrid {
    right: 0;
}

#userprofile i {
    color: #003b62;
}

#userprofile span, #mail-basket-link span {
    color: #003b62;
    font-size: 14px;
    font-weight: normal;
    padding-right: .5em;
}

#userprofile span {
    float: left;
}

#sign-out-link span {
    background-image: url(../Images/sprites_small.png);
    background-repeat: no-repeat;
    background-position: 0 -75px;
    font-size: 14px;
    display: -moz-inline-stack;
    display: inline-block;
    padding-left: 19px;
}

#sign-out-link::before {
    content: " ";
    margin-right: 9px;
    border-left: 1px solid #003b62;
}

/* Company search */

.company-search-box {
    max-width: 25%;
    position: absolute;
    right: 9px;
    top: -50px;
}

    .company-search-box .option:hover {
        background-color: #f3f7f8;
    }

    .company-search-box a, u {
        text-decoration: none;
    }

.combobox {
    margin-top: .75em;
}

    .combobox button {
        float: right;
    }

#search-tips {
    border: 1px solid #e4e4e4;
    position: absolute;
    left: 0;
    background: white;
    overflow-y: scroll;
    width: 100%;
    max-height: 300px;
    z-index: 1000;
}

nav #search-tips li {
    display: block !important;
}

#search-tips a {
    font-size: 14px;
    line-height: 1.5;
}

/* End Company search */

.reon-banner {
    margin-bottom: 20px;
    width: 100%;
}

.fa-refresh {
    position: absolute;
    left: 37%;
    top: 40%;
    font-size: 8em !important;
    color: #c4e2eb;
}

.reloading {
    color: #ccc;
    float: right;
    font-size: 2em;
    padding: .1em;
    position: static;
}

#menu-icon {
    display: none;
}

/* move to mobile.css later on*/




.show-nav #mail-basket-link, .show-nav #sign-out-link, .show-nav #userprofile {
    padding: 0;
    position: static;
}

.cursor-nav {
    cursor: wait;
}

/* end move */

.int-link {
    display: inline-block;
    position: relative;
    width: 100%;
}

    .int-link img {
        width: 100%;
    }

    .int-link span {
        position: absolute;
        bottom: 2px;
        right: 5px;
    }

.definitions li {
    display: inline-block;
}

    .definitions li a {
        display: inline-block;
        font-size: 1.5em;
        padding: 1em;
    }

.exe-l {
    display: inline-block;
    margin: 1em;
    width: 4em;
}

.exe-cb {
    margin: 1em 4em 1em 1em;
    vertical-align: middle !important;
}

.exe-desc h3 {
    margin: .5em 0;
}

.exe-desc p {
    margin: 0 .5em;
}


.reon-chart {
    position: relative;
}

.wr {
    position: absolute;
    top: 45%;
    text-align: center;
    width: 100%;
}

.nodata {
    margin: auto;
}

.arrow_box {
    position: relative;
    /*background: #c4e2eb;*/
    /*border: 1px solid #b4d7e2;*/
}

    .arrow_box:after, .arrow_box:before {
        bottom: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
    }

    .arrow_box:after {
        border-color: rgba(196, 226, 235, 0);
        border-bottom-color: #c4e2eb;
        border-width: 8px;
        margin-left: -8px;
    }

    .arrow_box:before {
        border-color: rgba(180, 215, 226, 0);
        border-bottom-color: #b4d7e2;
        border-width: 9px;
        margin-left: -9px;
    }

#eq-arrow {
    border-bottom: #b4d7e2;
    bottom: -2.5px;
    right: 15px;
}

li.active > a {
    font-weight: 700 !important;
}

.a_b_dark_b {
    position: relative;
    background: #003b62;
}

    .a_b_dark_b:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(0, 59, 98, 0);
        border-top-color: #003b62;
        border-width: 9px;
        margin-left: -9px;
        z-index: 100;
    }

.a_b_medium {
    position: relative;
    background: #dfebef;
}

    .a_b_medium a {
        font-weight: 700;
    }

.today-wraps img {
    margin-bottom: 20px;
}

.select-default {
    font-size: 14px;
    padding: 4px 5px 4px 5px;
    width: 100%;
}

.bad-input {
    border: 1px solid #dd4f3b;
    color: #dd4f3b;
}

.appSelectRow {
    display: flex;
    border: solid 1px #0260A6;
    width: 337px;
    height: 50px;
    padding: 4px;
    margin: 12px;
    border-radius: 4px
}

    .appSelectRow div {
        padding-left: 7px;
        padding-top: 13px;
        white-space: nowrap;
    }

        .appSelectRow div span {
            color: #003b62 !important;
            font-size: 14px !important;
        }

.plain-text p, .plain-text div {
    font-size: 14px;
}


.newsletter-span span {
    font-size: inherit !important
}

.newsletter-span .bodytext span, .newsletter-span .bodytext .p_t20, .newsletter-span .nomob, .newsletter-span b, .newsletter-span i {
    font-size: 18px !important
}

.newsletter-span .hb_wv_text a {
    display: none
}

.newsletter-span .stag-semi.hb_title {
    font-size: 38px !important;
    margin-top: 20px;
}
.highlow-table
{
    width: 100%;
}

.highlow-table th
{
    font-size: 14px;
    font-weight: normal;
    padding: .5em;
}

.highlow-table td
{
    min-width: 70px;
    padding: 0!important;
    text-align: center;
}

.highlow-table td span:hover
{
    font-weight: bold;
}

.highlow-table td span
{
    color: #666;
    font-size: 12px;
}

.vertline
{
    border-right: 2px solid #42b5d7;
    height: 200px;
    margin: 0 auto;
    position: relative;
    width: 0px;
}

.vertline:hover
{
    border-right: 3px solid #42b5d7;
}

.hl-tick
{
    border-bottom: 1px solid #42b5d7;
    height: 0px;
    position: absolute;
    width: 10px;
}

.hl-text
{
    position: absolute;
    right: 12px;
}

.hl-text-h
{
    top: -8px;
}

.hl-text-l
{
    bottom: -8px;
}

.hl-text-curr
{
   left: 3px;
   bottom: 50%; 
}

.hl-text-curr i
{
    color: #42b5d7;
    display: inline;
    padding-right: 3px;
}

.hl-curr-s
{
    vertical-align: middle;
}

.hl-high
{
    top: -1px;
    right: -5px;
}

.hl-low
{
    bottom: -1px;
    right: -5px;
}

.hl-median
{
    bottom: 50%;
    left: -5px;
}

.hl-text-med
{
    bottom: 50%;
}

.fo-bold {
    font-weight: bold;
}

    .fo-bold > td {
        font-weight: bold;
    }

.fo-italic {
    font-style: italic;
}

    .fo-italic > td {
        font-style: italic;
    }
/*
.fo-leftb, .sector-table th
{
    border-left: solid 1px #e4e4e4;
}
*/
.sector-table .pinned th:first-child {
    border-left: none;
}


.newsletter-table {
    table-layout: auto;
    width: 100%;
    text-align: left;
}

    .newsletter-table table thead tr th {
        text-align: left;
        border-bottom: black;
        border-bottom-width: 1px;
    }

    .newsletter-table table tr td {
        text-align: left;
    }



    .simple-table {
        table-layout: auto;
        width: 100%;
        /**margin-left: -100px; ie7*/
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .simple-table tbody {
        display: table;
        width: 100%;
    }

    .simple-table td {
        vertical-align: top;
        white-space: nowrap;
    }

    #tradingdata .simple-table td {
        white-space: normal !important; 
    }

    .simple-table td span {
        font-size: inherit;
    }

    .simple-table th {
        vertical-align: middle;
        white-space: normal;
        text-align: center;
    }



/*formatting is moved to each xml /stg file*/
/*.simple-table tr:first-child
{
    border-bottom: 1px solid #000;
    font-weight: bold; 
}*/

.winners-losers td {
    max-width: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
}

    .winners-losers td:nth-child(1), .winners-losers td:nth-child(3) {
        text-align: left;
        width: 45%;
    }

    .winners-losers td:nth-child(2), .winners-losers td:nth-child(4) {
        width: 5%;
    }

.winners-losers > span {
    display: inline-block;
    font-size: 10px;
    margin-top: .3em;
}

.sector-table .simple-table tr:first-child {
    border-bottom: none;
}

.sector-t-header2 {
    border-bottom: 1px solid #222 !important;
    font-weight: bold;
}

    .sector-t-header2 td {
        padding-bottom: 5px !important;
    }

.simple-table td {
    padding-bottom: .1em;
    padding-top: .2em;
    padding-right: .5em;
    position: relative;
}

.pinned {
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    max-width: 30%;
    overflow: hidden;
    overflow-x: auto;
}

    .pinned table th, .pinned table td {
        white-space: nowrap;
        text-align: left;
    }

div.table-wrapper {
    padding-bottom: 10px;
    position: relative;
}

    div.table-wrapper div.scrollable {
        overflow-x: auto;
        overflow-y: visible;
    }

/*testing*/

.simple-table tr {
    text-align: right;
}

.simple-table td:first-child {
    text-align: left;
}

.scrollable .simple-table td:first-child {
    text-align: right;
}

/*end testing*/
.simple-table tr {
    border: none;
}

.no-box .reon-block {
    border: none;
}


    .no-box .reon-block > div + div {
        padding: 0;
    }

.simple-table table {
    margin-top: .5em;
}

.reon-block .simple-table {
    border: none;
}

/* end testing */

.dl-excel {
    float: right;
    height: 1em;
    margin: -20px .3em 0 0;
}

    .dl-excel span {
        color: #609B3E;
        font-size: 1.4em;
    }

.fa-table {
    color: #609B3E;
    font-size: 1.5em;
}

.reon-block-header .fa-table {
    float: right;
    font-size: 22px;
    padding: .42em .6em;
}

.simple-table img {
    height: 18px;
}

.marketcap img {
    display: inline;
    height: 16px;
    width: 16px;
}

.marketcap tr {
    height: 25px;
}

    .marketcap tr td > a {
        font-size: 12px;
    }

.table-footer {
    margin-top: 5px;
}

@media screen and (max-width: 800px) {

    .simple-table tr {
        background: white;
    }

    .simple-table td {
        border-right: 1px solid #e4e4e4;
    }

    #tradingdata .simple-table td {
        border: none;
    }

    .sector-table .pinned th:first-child {
    }

    .simple-table .reon-block > div + div {
        padding: 0;
    }

    .simple-table table {
        margin-top: .5em;
    }

    .simple-table .pinned table th, .pinned table td {
        padding-left: .4em;
    }
}

.reon-block {
    background-color: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 2px;
    margin-bottom: 20px;
}

    .reon-block > div + div {
        position: relative;
    }

.reon-block-header {
    border-bottom: 1px solid #e4e4e4;
}

.nohead .reon-block-header {
    display: none;
}

.chart-block .reon-block-header {
    border-bottom: none;
    background-color: #fff;
}

.doc-li {
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    padding: 5px 10px;
    overflow: hidden;
}

.show-more-link {
    padding-top: 15px;
}

.infocus > div:last-child, .most-read .doc-li:last-child, .event-cal .doc-li:last-child, .ext-pub .doc-li:last-child {
    border-bottom: none;
}

.bdbt.doc-li:last-child {
    border-bottom: 1px solid #ddd;
}

.pub-oneline .doc-li {
    padding: 10px 10px;
}

.doc-li div {
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    vertical-align: middle;
    white-space: nowrap;
}

.reon-block .pub-oneline li {
    border-bottom: none;
    padding: .4em 0;
}

.reon-block span, .reon-block a, .reon-block div {
    font-size: 12px;
}

.reon-block td a {
    font-size: inherit;
}
/*
.event-cal tr
{
    border-bottom: 1px solid #666;
}
*/
.event-cal td {
    font-size: 14px;
}

.pub-date {
    float: right;
    font-size: 14px;
    padding-left: .3em;
    z-index: 30;
}

.pub-desc {
    float: right;
    font-size: 14px;
    z-index: 30;
    /*width: 120px;*/
}

.pub-date-left {
    display: inline-block;
    /*float: left;*/
    font-size: 12px !important;
    padding-right: .3em;
    width: 4.5em;
}

.fc-pub .doc-li:hover {
    background-color: #f3f7f8;
}

.reon-block > div:first-child > h2 {
    margin: 0;
    padding: 7.5px 10px;
}

.fc-pub > div:first-child, .event-cal .reon-block-header {
    background-color: #c4e2eb;
}

.reon-block.most-read > .reon-block-header {
    background-color: #0081bb;
}

.most-read > div:first-child > h2, .in-focus > div:first-child > h2 {
    color: White;
}

.reon-block.in-focus > .reon-block-header {
    background-color: #e0638f;
}

.btn-more {
    float: left;
    padding: 10px 10px;
}

    .btn-more i {
        color: #005fa6;
    }

.ext-pub .reon-block-header i, .pw .reon-block-header i {
    color: #073c63;
    float: right;
    font-size: 2em;
    padding: .4em;
}

.right-header {
    float: right;
    padding-top: 16px;
    padding-right: 8px;
}

.event-cal td {
    padding-bottom: .5em;
}

.pub-list-header {
    color: #005fa6;
    font-family: Arial,sans-serif;
    font-size: 14px !important;
    padding-right: .3em;
    z-index: 10;
}

.ext-pub .reon-block-header, .r-t .reon-block-header, .dcfsim .reon-block-header, .profile-favs .reon-block-header, .pw .reon-block-header {
    background-color: #e5f0fa;
}

.market-nav {
}

.event-cal table {
    width: 100%;
}

.event-cal td {
    padding-right: .5em;
}

.event-cal tr > td:first-child {
    white-space: nowrap;
    width: 15%;
}

.event-cal td:nth-child(3) {
    padding-right: 0;
    width: 10em;
}

.reon-chart {
    padding: 0 !important;
}

.company-desc {
    line-height: 1.5em;
    padding: 10px !important;
}

/*
.company-desc-short
{
    max-height: 300px;
}
*/

.expandbox {
    overflow-y: scroll;
    position: relative;
}

    .expandbox .innergradient {
        position: absolute;
        bottom: 25px;
        left: 0;
        width: 100%;
        height: 40px;
        margin: 0 0 -10px 0;
        background-image: -webkit-linear-gradient(top, rgba(255,255,255,0), white);
        background-image: -moz-linear-gradient(top, rgba(255,255,255,0), white);
        background-image: -o-linear-gradient(top, rgba(255,255,255,0), white);
        background-image: linear-gradient(to bottom, rgba(255,255,255,0), white);
    }

    .expandbox .read-more {
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
        background-color: white;
    }

.read-more a {
    padding: 0 0 10px 0;
}

.company-ic {
    padding: 10px !important;
}

    .company-ic h3 {
        font-family: Arial;
        font-size: 14px;
    }

    .company-ic p {
        font-size: 12px;
        margin-bottom: 10px;
    }

.init-680 {
    height: 680px;
}

.init-200 {
    height: 200px;
}

.init-330 {
    height: 330px;
}

.init-82 {
    height: 82px;
}

.fa-refresh {
    text-align: center;
    vertical-align: middle;
}

.region-box {
    background-color: #3B9BC6;
}

    .region-box h2, .region-box a, .region-box i {
        color: white;
    }

.image_tile {
    position: relative;
    width: 90%;
}


.vcard
{
    float: left;
    margin: .5em;
    position: relative;
    height: 22em;
}

.a-prim
{
    font-weight: bold;    
}

.vcard-details h3, .vcard h3
{
    display: inline-block;
    margin: 0;   
}

.vcard h2 span
{
    font-size: 1.0em;
}

.vcard-details img
{
    float: left;
    margin-right: 1em;
}

.vcard-details > p
{
    /*white-space: nowrap;*/
    font-size: 1.5em;
    margin: .5em 0 .2em 0 !important;
    
}

.vcard-details > p a
{
    padding: .5em 0;
    white-space: nowrap;
}

.vcard-details i
{
    font-size: 1.1em;
}

/* new */

.vcard
{
    height: 150px;
    min-width: 290px;
    position: relative;
}

.vcard ul
{
    margin: -1em .5em .5em .5em;
}

.vcard li
{
    font-size: 1.2em;
    display: block;
    padding: .1em;
}

.vcard p
{
    font-size: 1.2em;
    margin: .5em .2em;
}

.vcard img 
{
    float: left;
    margin: .5em 2em .5em .5em;
}


#sector-select span
{
    font-size: 14px;
}

#sector-select i
{
    font-size: 1.3em;
    width: 10px;
}

#sector-select li > span
{
    border: 1px solid #e4e4e4;
    display: inline-block;
    width: 100%;
}

#sector-select a
{
    display: inline-block;
}

#sector-select ul > li
{
    margin-top: -1px;
}

#sector-select li
{
    background-color: #fff;
}

#sector-select > li
{
    margin-top: 2em;
}

#sector-select .fa-caret-left /* used as placeholder*/
{
    color: #fff!important;
    cursor:default!important;
}


#sector-select a
{
    color: #0362aa;
    padding: .5em;
}

#sector-select a span
{
    color: #0362aa; /* #003b62; */
    cursor: pointer;
    width: 95%;
}


.sector-disabled a span
{
    cursor: default;
}

#sector-select i[class*='fa-caret-']
{
    color: #81a9bc;
    cursor: pointer;
    padding: 0 1em 0 1em;
}

.s-level-0 .fa-caret-up, .s-level-0 .fa-caret-down
{
    float: right;
    padding: .6em 1em .5em 1em !important;
}

.s-level-0
{
    background-color: #c4e2eb;
}

.s-level-0 a
{
    color: #003b62!important;
}

.s-level-0 a span
{
    color: #003b62!important;
    font-family: StagMedium, helvetica, Sans-Serif;
    font-size: 20px!important;
    font-weight: 400;
}

.s-level-2 i
{
    margin-left: 3%;
}

.s-level-3 i
{
    margin-left: 7%;
}

.sector-disabled, .sector-disabled > span
{
    cursor: default!important;
    color: Black!important;
}

.btn-group
{
    float: right;
}

.btn-group button
{
    margin: 2em 0 1em 1em;
}

.sector h1
{
    display: inline-block;
}

.sector-analysis h1
{
    background-color: #e2e2e2;
    margin-top: 1em;
    padding: 1em;
}

.s-head h1
{
    margin: 0;
}
     
.s-child li, .s-child a
{
   display: inline-block;
}

.s-child a
{
    padding: .5em 1em .5em 1em;
}

.s-child ul
{
    display: inline-block;
}

.s-parent
{
  
}

.s-parent h4
{
    display: inline-block;
    margin-left: 1em;
}

.s-parent a
{
    display: block;
    padding: .5em 0;
}

.rating-icon-box {
    background: #dfebef;
    padding: 20px 15px;
    overflow: hidden;
    width: 250px;
    margin-bottom: 10px;
    border-radius: 10px;
}
    .rating-icon-box .trend{
        margin-bottom: 5px;
        margin-top: 3px;
    } 

.icon-rating {
    margin-left: 10px;
}
    .icon-rating p {
        font-weight: bold;
        font-size: 12px;
        margin-bottom: 4px;
    }

.recommendation {
    font-size: 14px !important;
    font-weight: bold;
}

.mb-8 {
    margin-bottom: 8px;
}

.icon {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-bottom: 15px;
}
    .icon:last-child{
        margin-bottom: 0;
    }
    .icon img {
        width: 35px;
    }

.document h1
{
    display: inline-block;
    margin: 0 1em 0 0;
}

.pub-head
{
    display: inline-block;
    margin-bottom: 1em;
}

.pub-head p
{
    white-space: nowrap;
}

.doc
{
    background-color: #fff;
    margin: 0 1.5em 1em 0;
    text-align: justify;
    width: 100%;
    padding: 20px;
}

.doc h2 
{
    margin-top: 0;
}

.pub1, .pub1 p, .pub1 span, .pub1 div, .pub1 a, .pub1 strong
{
    font-size: 12px;
}

.pub2, .pub2 p, .pub2 span, .pub2 div, .pub2 a, .pub2 strong
{
    font-size: 14px;
}

.pub3, .pub3 p, .pub3 span, .pub3 div, .pub3 a, .pub3 strong
{
    font-size: 16px;
}

.pub1.doc, .doc-action-s1
{
    max-width: 625px;
}

.pub2.doc, .doc-action-s2
{
    max-width: 725px;
}

.pub3.doc, .doc-action-s3
{
    max-width: 825px;
}


@-webkit-keyframes locationHint {
    from, to {
        border-color: red;
    }

    50% {
        border-color: transparent;
    }
}
@keyframes locationHint {
    from, to {
        border-color: red;
    }

    50% {
        border-color: transparent;
    }
}

.locationHint {
    border: 1px solid #ddd;
    -webkit-animation: locationHint 5s ease-in-out;
    animation: locationHint 5s ease-in-out;
}

h1 > a
{
    font: inherit!important;
}

.doc
{
    /*border: 1px solid #ddd;*/
    float: left;
    border-radius: 7px;
}

.doc p
{
    margin-top: 1em;
    margin-bottom: 1em;
}

.doc-head
{
    font-size: 10px;
    display: inline;
}

.doc img
{
    display: inline;
    max-width: none;
}

.doc .doc-li
{
    border: 1px solid #ddd;
}

.doc-grow
{
    padding-top: 1em;
    padding-bottom: 1em;
}

#doc-disclosure
{
    margin-top: 2em;
    margin-bottom: 0;
    
}

.doc-disc
{
    text-align: left;
}

.smalltext
{
    font-size: .8em;
}

.infocus h1 
{
    font-family: Arial, helvetica, sans-serif;
    font-size: 14px;
}

.infocus > div
{
    border-bottom: 1px solid #ddd;
    padding: .0em 10px 1em 10px;
}

.infocus > div:hover
{
    background-color: #f3f7f8;
}

.infocus a:hover
{
    text-decoration: none;
}

.doc-actions
{
    background-color: #fff;
    /*border: 1px solid #ddd;*/
    width: 250px;
    overflow:hidden;
    border-radius: 7px;
}

.doc-actions span
{
    margin-left: .5em;
    vertical-align: middle;
}

.doc-actions i
{
    font-size: 1.5em;
    vertical-align: middle;
}

.doc-actions img
{
    display: inline;
    width: 15px;
    vertical-align: middle;
}

.doc-actions .doc-li:last-child
{
    border-bottom: none;
}

.doc-attachment-icon
{
    width: 15px;
    height: 20px;
}

/* email move out*/

.doc form label
{
    display: block;
    margin-top: .5em;
    
}

.doc form input
{
    width: 30em;
    max-width: 100%;
}

.doc form p
{
    color: #777;
    margin-top: 0;
}

.doc form textarea
{
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
}

.doc form .invalid-addr, .doc form .failed-addr
{
    color: #dd4f3b;
}

.doc form button
{
    float: right;
    margin: .5em;
}

#basket-items
{
    margin: 2em 0;
}

#basket-items table
{
    border-bottom: 1px solid #ccc;
    min-width: 70%;
}

#basket-items th
{
    border-bottom: 1px solid #ccc;
}

#basket-items td, #basket-items i, #basket-items a
{
    font-size: 1.2em;
}

#basket-items td, #basket-items th
{
    line-height: 1.5em;
}

#basket-items td:nth-child(2), #basket-items th:nth-child(2)
{
    text-align: center;
}

#basket-items a
{
    display: inline-block;
    padding: .8em 0;
}

.f-size
{
    float: right;
    padding: 1em 0 0 1em;
    margin: -9px 0 0 0;
}

.f-size span
{
    color: #073c63;
    cursor: pointer;
    font-family: StagMedium,Georgia,sans-serif;
}

.f-size .f-1x
{
    font-size: 1.2em;
}

.f-size .f-2x
{
    font-size: 1.5em;
}

.f-size .f-3x
{
    font-size: 2em;
}

.init-a-doc
{
    background-color: white;
    max-height: 2px;
}

.added-doc /*, .added-doc .pub-date, .added-doc .pub-list-header, .added-doc .pub-date-left*/
{
    background-color: #c4e2eb;
    /*max-height: 40px;*/
    transition: background-color 2s;
}

.had-doc  /*, .had-doc .pub-date, .had-doc .pub-list-header, .had-doc .pub-date-left */
{
    background-color: transparent;
    transition: background-color 2s;
}

a .pub-simple-head
{
    color: #005fa6;
    font-size: 14px!important;
}

.disclaimer 
{
    max-width: 600px;
    /*
       -moz-column-count: 2;
       -moz-column-gap: 20px;
       -webkit-column-count: 2;
       -webkit-column-gap: 20px;
    */
}

.dj-news
{
    max-width: 800px;
}

.docBuilder, .docBuilder p, .docBuilder span, .docBuilder div, .docBuilder a, .docBuilder strong, .docBuilder b, .docBuilder label,
.docBuilder .fa-caret-right, .docBuilder .fa-caret-down {
    font-size: 14px;
}
.docBuilder .fa-caret-right, .docBuilder .fa-caret-down {
    cursor: pointer;
}
.docBuilder li li {
    margin-left: 2em;
}

.facktbookPage {
    padding-bottom: 4px;
    margin-top: 8px;
    border: solid 1px lightgray;
}
.facktbookPage-header {
    background-color: #dfebef;
    padding: 4px;
    margin-bottom: 4px;
}

.facktbookPage i, .screening-filter i {
    width: 8px;
}

.right {
    float:right;
}

.disclaimers h {
    font-weight: bold;
}

@media only screen and (max-width: 926px) {
    .rating-icon-box{
        min-width: 250px;
        max-width: 625px;
        width: auto;
    }
    .doc-actions{
        min-width: 250px;
        max-width: 625px;
        width: auto;
    }
} 
.factbook img
{
    display: inline;
    height: 20px;
    margin: .3em 1em -5px 1em;
    width: 15px
}

.factbook a
{
    display: inline-block;
    padding: 0 10px;
}

.factbook a i
{
    padding-right: .5em;
}

.factbook li
{
    border-bottom: none;
}

.factbook button
{
    margin: 0 .7em .7em 0;
}

.factbook > div + div
{
    padding: 10px 0!important;
}

.factbook > div + div > a
{
    display: inline-block;
    margin-top: 1em;
}
.pocketoverview img {
    display: inline;
    height: 20px;
    margin: .3em 1em -5px 1em;
    width: 15px
}

.pocketoverview a {
    display: inline-block;
    padding: 0 10px;
}

    .pocketoverview a i {
        padding-right: .5em;
    }

.pocketoverview li {
    border-bottom: none;
}

.pocketoverview button {
    margin: 0 .7em .7em 0;
}

.pocketoverview > div + div {
    padding: 10px 0 !important;
}

    .pocketoverview > div + div > a {
        display: inline-block;
        margin-top: 1em;
    }

.c-head i, .c-head h1, .c-head span, .c-head img, .c-head a
{
    line-height: 30px;
   
}

.c-head i
{
    font-size: 1.5em;
    margin-left: .5em;
}

.c-sector, .c-analysts
{
    margin-right: 2em;
}

.c-head span,  .c-head a
{
    font-size: 14px;
}

.c-head>div:first-child
{
    padding-top: 10px;
}

.c-bold
{
    font-weight: bold;
}

.c-align {
    display: flex;
    align-items: center;
}

.c-align img {
    margin-left: 10px
}

.c-shareprice img {
    margin-bottom: -2px;
}

.c-shareprice  {
    margin-right: 20px;
}

.c-head h1
{
    display: inline-block;
    margin: 0;
}


.c-head img
{
    display: inline;
    margin-left: .3em;
    height: 16px;
    width: 16px;
}

.c-sap div
{
    display: inline-block;
}

.not-covered h1
{
    color: #dd4f3b;
}

.not-covered .c-analysts span
{
    color: #dd4f3b;
}

#ShareHolderStructure td:first-child 
{
    white-space: normal;
}

#tradingdata > div + div
{
    padding: 1em 10px;
}

#tradingdata li
{
    border: none;
}

#tradingdata li > span
{
    font-size: 11px;
}

#tradingdata a
{
    font-size: 11px;
}

#tradingdata li > span + span
{
    float: right;
}

.inp-gray
{
    background-color: Gray;
}

.company-download p
{
    font-size: 1.2em;
    margin: 1em .5em;
}

.company-download li
{
    margin: .5em;
}

.company-download i
{
    width: 2em;
}

.company-download i, .company-download a
{
    font-size: 1.5em;
    padding: 0 .5em;
}

.company-download button
{
    margin: 3em 9em 1em .5em;
}

.dcfsim
{
    margin-top: 2em;
}

.dcfsim tr:first-child
{
    border-bottom: 1px solid #222;
    font-weight: bold;
}

.dcfsim td
{
    padding: .5em;
}

.dcfsim td:first-child
{
    width: 200px;
}

.dcfsim td input
{
    width: 70px;
}

.dcf-green
{
    background-color: #5d5;
}

.comp-msg 
{
    border-style: solid;
    border-width: 2px;
    float: none!important;
    margin: .5em 0;
}

.comp-msg p
{
    font-size: 1.2em;
    padding: .5em;
}

.tot-ret
{
    background-color: #fff;
    border: 1px solid #e4e4e4;
    margin-top: -21px;
    padding: 10px;
}

.company-item-container {
    display: grid;
    grid-template-columns: 14px 1fr;
    column-gap: 10px;
}
.company-item-container a {
    margin: 0;
}

a.disabledLink {
    color: #000000;
    cursor: default;
    pointer-events: none;
    text-decoration: none;
    user-select: all;
    -webkit-user-select: all;
    -moz-user-select: all;
    -ms-user-select: all;
}

.bond-doc-li {
    border-bottom: 1px solid #ddd;
    padding: 5px 10px;

}

.bond-doc-li p {
    font-size: 12px;
}


.bonds-table {
    table-layout: auto;
    width: 100%;
    /**margin-left: -100px; ie7*/
}

.bonds-table td {
    vertical-align: top;
    white-space: normal;
    padding: 2px;
}

.bonds-table td span {
    font-size: inherit;
}

.bonds-table th {
    vertical-align: middle;
    white-space: normal;
    text-align: center;
}

.share-bar {
    box-shadow: none;
    height: 0.25rem;
    border-radius: 0;
    background-color: #00c851 !important;
    width: 25%;
}

.share-breakline {
    border-top: 1px solid black;
    margin: 0.5em 0;

}

.share-table {

}

.share-table span {
    font-size: 11px;
}

.td-collapse td {
    white-space: normal !important;
    padding: 0.2rem !important;
    font-size: 11px !important;
}


.series-option {
    display: inline-block;
    cursor: pointer;
    margin: 0;
    padding: 7.5px 10px;
    width: 50%;
    border: none;
}

.select-textarea {
    color: #073c63;
    font-family: StagMedium,Georgia,sans-serif;
    font-weight: 400;
    font-size: 20px;
}

.multi-h2 {
    color: #d6d6d6;
    
}

    .multi-h2:hover {
        color: #073C63;
        cursor: pointer;
    }

@media screen and (max-width: 480px) {
    .hide-column-mobile {
        display: none;
    }

    .centerize-mobile {
        text-align: center;
    }

    .collapse-mobile {
        max-height: 10000px !important;
    }

    .bonds-table tr {
        white-space: normal !important;
    }

    .c-sap-mobile span {
        line-height: 20px !important;
        margin-right:0px !important;
        text-align: center;
    }

    .c-sap-mobile div {
        display: grid !important;
    }

}
.events .filter-box
{
    margin-bottom: 20px;
    min-height: 20px;
}

.events .filter-box select
{
    margin: 0 10px 0 0;
}

.events h1
{
    margin: 0 0 .67em 0;
}

.events .filter-box > div 
{
    margin-top: 0;
}

.events .applied-filters
{
    display: inline-block;
}

.eqc-block-head
{
    background-color: #f6f6f6;
    border-bottom: 1px solid #e2e2e2;
    padding: 6px 10px;
}

.eqc-block-head span
{
    font-weight: bold;
}

.corporate-access-team
{
    margin-top: 15px;
}

.evteam-block
{
    padding: 10px 10px 0;
}

.contact-person
{
    margin-bottom: 10px;
}

.contact-person div
{
   /* float: left;*/
    
}

.contact-person h3
{
    display: inline-block;
    padding: 3px 0;
}

.contact-person li
{
    margin-bottom: .4em;
}

.contact-person li a
{
    /*color: #073c63;*/
    /*white-space: nowrap;*/
}

.contact-person .phone-nb
{
    font-family: staglight;
    font-size: 18px;
}

.contact-person img
{
    float: left;
    height: 106px;
    margin-right: 15px;
}

.contact-person2 {
    margin-bottom: 10px;
}

.contact-person2 p {
    font-size: 14px;
}

.contact-person2 h3 {
    display: inline-block;
    padding: 3px 0;
}
.contact-person2 li {
    margin-bottom: .4em;
    margin-top: .4em;
}

.contact-person2 .phone-nb {
    font-family: staglight;
    font-size: 14px;
}

.contact-person2 img {
    float: left;
    height: 106px;
    margin-right: 15px;
}

.event-details p, .event-details span
{
    font-size: 14px;
}

.event-details .doc-li span
{
    margin-left: .5em;
    vertical-align: middle;
}

.event-details .doc-li img
{ 
    display: inline-block;
    vertical-align: middle;
    width: 15px;
}   

.event-details .doc-li i
{
    color: #0080bb;
    font-size: 1.5em;
    text-align: center;
    vertical-align: middle;
    width: 18px;
}
.fa-star
{
    font-size: 11px;
    font-weight: normal;
    color: #FFD700;
    border-color:#000000
}

.fa-star-o
{
    font-size: 11px;
    font-weight: normal;
    color: #A9A9A9;
    border-color:#000000
}

.fa-star-o:hover
{
    color: #FFD700;
}

.profile .fa-star, .profile .fa-star-o
{
    float: right;
    margin: .75em 0;
}

.fa-comment
{
    color: #FFD700;
    vertical-align: super;
    font-size: 1.1em;
    padding: .1em;
}

.profile-favs table
{
    width: 100%;
}

.profile-favs td, .profile-favs th
{
    padding: .5em .2em;
    width: 20%;
}

.profile-favs td
{
    text-align: center;
}
.profile-favs td:first-child
{
    text-align: left;
    width: 50%;
}

.profile-favs a, .profile-favs td
{
    font-size: 14px;
}

.profile-favs .fa-minus-circle
{
	color: #FF0000;
	font-size: 18px;
}

.profile audio
{
    max-width: 100%;
}

.pw label
{
    display: inline-block;
    font-weight: bold;
    width: 10em;
}

.pw label, .pw input
{
    margin: .5em 0;
}

.pw input
{
    width: 20em;
}

.pw button:disabled
{
    opacity: .3;
}

.pw .reon-block > div + div, .profile-favs > div + div
{
    padding: 1em;
}

.reco
{
    margin-top: 5em;
}

.reco > a
{
    font-size: 1.5em;
}

.max-scale
{
    padding: .5em;    
}

.max-scale i, .max-scale p
{
    padding: .5em;
}
.viewwindow
{
    position: relative;
}
i {
    position: relative;
}

.badge:after {
    content: "!";
    position: absolute;
    background: red;
    height: 1rem;
    width: 1rem;
    top: -0.5rem;
    right: -1rem;
    text-align: center;
    line-height: 1rem;
    font-size: 1rem;
    border-radius: 50%;
    color: white;
    border: 1px solid red;
}

/* only works in firefox..
select.markets-select option[value="2"]
{ 
    background-image:url(../Images/flags/Sweden.gif);
    background-repeat: no-repeat;
}

select.markets-select option[value="1"]
{ 
    background-image:url(../Images/flags/Denmark.gif);
    background-repeat: no-repeat;   
}

select.markets-select option[value="Iceland"]
{ 
    background-image:url(../Images/flags/Iceland.gif);
    background-repeat: no-repeat;  
}
*/

.applied-filters div 
{
    background-color: #c4e2eb;
    border-radius: .5em;
    display: inline-block;
    margin: 5px 5px 5px 0;
    padding: 3px;
}

.applied-filters h3
{
    margin: 1em .7em 0 0;
}

.applied-filters div span
{
    margin: 0 .5em 0 .5em;
}

.applied-filters i
{
    float: right;
    font-size: 1.2em;
    padding-right: 0;
}

.library .filter-box
{
    margin-bottom: 20px;    
}

#clear-filters
{
    background-color: #10417b;
}

#clear-filters span 
{
    color: White;
}
/*
.library
{
    min-height: 680px;
    position: relative;
}*/
/*
.library .reon-block
{
    border: none;
}*/
/*
.content-box, .content-box *
{
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
*/
.pub-table
{
    width: 100%;
}

.pub-table tr
{
    border-bottom: 1px solid #ddd;
    height: 34px;
}

.pub-table th
{
    font-weight: normal;
    text-align: left;
}

.pub-table th
{
    font-size: 12px;
    vertical-align: middle;
}

.pub-table td
{
    font-size: 12px;
    vertical-align: middle;
    white-space: nowrap;
}

.pub-table th:first-child, .pub-table td:first-child
{
    padding: 0 10px;
}

.pub-table th:last-child, .pub-table td:last-child
{
    padding-right: 10px;
}

.pub-table td:nth-child(2)
{
    white-space: normal;
   /* overflow: hidden;
    text-overflow: ellipsis;
    max-width: 700px;*/
}

.center-pagination
{
    text-align: center
}

.pub-table tr:first-child
{
    background-color: #f6f6f6;
    border-bottom: 1px solid #e2e2e2!important; 
    height: 28px
}

.pub-table tr:last-child
{
    border: 0;
}
.screenings
{
    margin-top: 20px; /* TODO: What distance */
}

.screenings .fa-copy, .screenings .fa-times, .screenings .fa-edit, .screenings .fa-undo, .scr-rm-sel
{
    float: right;
    font-size: 1.5em;
    margin-left: 1em;
}

.scr-rm-sel i.fa
{
    float: none;
    font-size: 1em;
}

.screenings .fa-caret-right, .screenings .fa-caret-down, .fa-square-o, .fa-check-square-o
{
    font-size: 14px;
    margin-right: 5px;
}

.screenings .fa-chevron-left, .screenings .fa-chevron-right
{
    color: #005fa6;
    padding: .2em 1em;
}

.screenings a, .screenings label, .screenings span
{
    font-size: 14px;
}

.screening-filter a, .screening-filter label
{
    line-height: 20px;
}

.screenings li li
{
    margin-left: 2em;
}

.screenings > div > .r-t
{
    width: 100%;
}

.screenings input[type=text]
{
    padding: 5px 5px 5px 5px;
    margin-left: 10px;
    font-size: 14px;
    width: 400px;
}

.screenings select
{
    font-size: 14px;
    padding: 4px 5px 4px 5px;
}

.screenings #company-select
{
    min-width: 200px;
}

.copy-screening span
{
    display: inline-block;
    padding: 5px 0 5px 10px;
}

.screening-help
{
    background-color: #fff;
    border: 1px solid #e4e4e4;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 12px;
}


.kvselection
{
    width: 90%;
}

.time-series i
{
    margin-left: .5em;
}

.screening-grp-selected
{
    font-weight: bold;
}

.uf-selected
{
    background-color: #dd4f3b;
}

.kv-ordering td
{
    border-left: 1px solid #222;
    border-right: 1px solid #222;
    padding: .5em;
    text-align: right;
}

.kv-ordering tr:first-child
{
    background-color: #c4e2eb;    
    line-height: 2em;
}

.edit-steps
{
    position: relative;
}

.edit-steps > div
{
    position: absolute;
    bottom: 0;
    right: 10px;
}

.edit-steps span
{
    font-size: 14px;
}

.screening-filter
{
    float: left;
    margin: 10px;
    min-height: 180px;
}

.active-stage span
{
    color: white;
}

.error-txt
{
    color: #dd4f3b;
    padding: 0 1em 0 1em;
}

.filter-apply
{
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.filter-apply a i
{
    margin-left: 5px;
}

.screenings .market-cap
{
    display: inline-block;
    margin-top: 1em;
}

.screenings label span
{
    display: inline-block;
    width: 3em;
}

.show-advanced
{
    display: inline-block;
    margin-top: 1em;
}

.advanced-screening td
{
    padding: .2em;
    vertical-align: middle;
}

.save-screening
{
    margin: 10px 0;
}

.save-screening a
{
    margin: 0 10px;
}
.pagination {
  margin: 20px 0;
}

.pagination ul {
  display: inline-block;
  *display: inline;
  margin-bottom: 0;
  margin-left: 0;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  *zoom: 1;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pagination ul > li {
  display: inline;
}

.pagination ul > li > a,
.pagination ul > li > span {
  float: left;
  padding: 4px 12px;
  line-height: 20px;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-left-width: 0;
}

.pagination ul > li > a:hover,
.pagination ul > .active > a,
.pagination ul > .active > span {
  background-color: #f5f5f5;
}

.pagination ul > .active > a,
.pagination ul > .active > span {
  color: #999999;
  cursor: default;
}

.pagination ul > .disabled > span,
.pagination ul > .disabled > a,
.pagination ul > .disabled > a:hover {
  color: #999999;
  cursor: default;
  background-color: transparent;
}

.pagination ul > li:first-child > a,
.pagination ul > li:first-child > span {
  border-left-width: 1px;
  -webkit-border-bottom-left-radius: 4px;
          border-bottom-left-radius: 4px;
  -webkit-border-top-left-radius: 4px;
          border-top-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  -moz-border-radius-topleft: 4px;
}

.pagination ul > li:last-child > a,
.pagination ul > li:last-child > span {
  -webkit-border-top-right-radius: 4px;
          border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
          border-bottom-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 4px;
}

.pagination-centered {
  text-align: center;
}

.pagination-right {
  text-align: right;
}

.pagination-large ul > li > a,
.pagination-large ul > li > span {
  padding: 11px 19px;
  font-size: 17.5px;
}

.pagination-large ul > li:first-child > a,
.pagination-large ul > li:first-child > span {
  -webkit-border-bottom-left-radius: 6px;
          border-bottom-left-radius: 6px;
  -webkit-border-top-left-radius: 6px;
          border-top-left-radius: 6px;
  -moz-border-radius-bottomleft: 6px;
  -moz-border-radius-topleft: 6px;
}

.pagination-large ul > li:last-child > a,
.pagination-large ul > li:last-child > span {
  -webkit-border-top-right-radius: 6px;
          border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
          border-bottom-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  -moz-border-radius-bottomright: 6px;
}

.pagination-mini ul > li:first-child > a,
.pagination-small ul > li:first-child > a,
.pagination-mini ul > li:first-child > span,
.pagination-small ul > li:first-child > span {
  -webkit-border-bottom-left-radius: 3px;
          border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
          border-top-left-radius: 3px;
  -moz-border-radius-bottomleft: 3px;
  -moz-border-radius-topleft: 3px;
}

.pagination-mini ul > li:last-child > a,
.pagination-small ul > li:last-child > a,
.pagination-mini ul > li:last-child > span,
.pagination-small ul > li:last-child > span {
  -webkit-border-top-right-radius: 3px;
          border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
          border-bottom-right-radius: 3px;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomright: 3px;
}

.pagination-small ul > li > a,
.pagination-small ul > li > span {
  padding: 2px 10px;
  font-size: 11.9px;
}

.pagination-mini ul > li > a,
.pagination-mini ul > li > span {
  padding: 0 6px;
  font-size: 10.5px;
}

.pager {
  margin: 20px 0;
  text-align: center;
  list-style: none;
  *zoom: 1;
}

.pager:before,
.pager:after {
  display: table;
  line-height: 0;
  content: "";
}

.pager:after {
  clear: both;
}

.pager li {
  display: inline;
}

.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
          border-radius: 15px;
}

.pager li > a:hover {
  text-decoration: none;
  background-color: #f5f5f5;
}

.pager .next > a,
.pager .next > span {
  float: right;
}

.pager .previous > a,
.pager .previous > span {
  float: left;
}

.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > span {
  color: #999999;
  cursor: default;
  background-color: #fff;
}
@page {
    size: 21.0cm 29.7cm;
    margin: 1cm;
}

@media print {
    header, nav, footer, .doc-actions, .legal-information, .filter-box, .pagination, .factbook, .pocketoverview, .f-size {
        display: none;
    }

    body {
        font-family: Georgia, "Times New Roman", Times, serif;
    }

    #page-content:before {
        display: block;
        content: "Thank you for printing our content at www.researchonline.se. Please check back soon!\AIf you have any questions feel free to email us at research.on.demand@handelsbanken.se";
        margin-bottom: 10px;
        border: 1px solid #bbb;
        padding: 5px 5px 30px 5px;
        font-style: italic;
        white-space: pre;
    }
    /*
    a:after {
        content: " (" attr(href) ")";
        font-size: 10%;
    }
    */
    .doc {
        box-shadow: none;
        border: none;
        margin: 0;
    }

    /* two column layout: */
    .col1of3, .col2of3, .col3of3 {
        width: 50%;
    }

    .start1of3, .start2of3, .start3of3, .start66 {
        width: 50%;
    }

    /* .vcard { width: 46%; } */

    #login-img {
        width: 500px;
        height: 172px;
        background-image: url(../Images/login.png);
    }

    .chart-coll .chart-block {
        width: 48.6%;
    }

    /* end column layout */
}

@media screen and (max-width: 480px)
{
    .col1of1, .start1of3, .start2of3, .start3of3, .col1of3, .col2of3, .col3of3, .start66
    {
        padding: 0 1px 0 1px;
    }
    
    .vcard
    {
        height: auto;
        width: 97%;
    }
    
    .vcard img
    {
        float: left;
    }
    
    .modal-body
    {
        padding: 0;
    }
    
    #sign-out-link span
    {
        margin-left: 0;
    }
    
    .company-search-box {
        max-width: 80%;
    }
    
    .s-h-filters
    {
        margin-top: 1em;
        padding-left: 0;
    }
}

@media screen and (max-width: 660px)
{   
    .col1of3, .col2of3, .col3of3
    {
        width: 100%;
    }
    
    .start1of3, .start2of3, .start3of3, .start66
    {
        width: 100%;
    }
    
    .col1of2, .col2of2
    {
        width: 100%;
    }
    
    .main
    {
	    margin: 0 auto -240px;
	    padding-top: 45px;
    }

    footer, .bottom-push
    {
	    height: 240px!important;
    }
    
    .external-nav
    {
        display:none;
    }
    
    .contact-information
    {
        padding-bottom: 0;
    }
    
    #sign-out-link::before
    {
        content: none;
        border-left: none;
    }
    
    /* nav */
    #menu-icon
    {
        color: #005c9b;
        font-size: 2.8em;
        display: inline;
        float: right;
        margin-top: 8px;
    }
    
    #logo
    {
        border-top: 1px solid #e4e4e4;
    }
    
    .dcm
    {
        background-color: #f6f6f6;
        position: fixed;
        width: 100%;
        z-index: 999;
    }
    
    .dcmwrap
    {
        height: 45px;
        position: relative;
    }
    
    .dcmwrap img
    {
        display: inline;
        max-width: 90%;
        width: 90%; /*ff*/
        margin: auto 0;
        position: absolute;
        top: 0;
        bottom: 0;
    }
    
    .no-y-scroll
    {
        overflow-y: hidden;
    }
    
    .internal-nav #intnav-ul
    {
        vertical-align: middle;
    }
    
    .internal-nav #intnav-ul > ul a, .internal-nav #intnav-ul > ul a:active
    {
        display: block;
        padding: 18px 10px;
        vertical-align: middle;
    }

    .internal-nav.slide 
    {
        right: 0;
        z-index: 1000;
        display: block;
    }
    
    .main.slide
    {
        position: static;
        margin-left: 0px;
        width: 100%; 
        transition: all 0.3s ease; 
    }
    
    .main.hide 
    {
        border-right: 1px solid #e4e4e4;
        margin-left: -200px;
        width: 100%; 
        transition: all 0.3s ease;
    }
    
    body.hide
    {
        overflow-y: hidden;
    }
    
    footer.hide
    {
        display: none;
    }
    
     .internal-nav 
    {
        background-color: #f6f6f6;
        border: 0;
        position: absolute;
        overflow-y: scroll;
        right: -200px;
        top: 45px;
        transition: all 0.3s ease;
        width: 0;
    }
    
    .show-nav .internal-nav
    {
        background-image: none;
        background-color: #f1f1f1;
        display: block!important;
        right: 0;
        width: 190px;
    }
    
    .internal-nav > div, .internal-nav #intnav-ul, #intnav-ul ul
    {
        margin: 0;
        padding: 0;
    }
    
    .internal-nav #intnav-ul > ul li
    {
        border-bottom: 1px solid #fff;
        display: list-item;
    }
    
    .overlay
    {
        position:fixed;
        left:0;
        bottom:0;
        background-color:rgba(0, 0, 0, 0.0);
        right:0;
        /*top:80px;*/
        transition: all 0.3s ease;
        z-index:-9999;
    }
    
    .overlay.show
    {
        position:fixed;
        right:200px;
        left:0;
        bottom:0;
        background-color:rgba(0, 0, 0, 0.2);
        z-index:9999;
        transition: all 0.3s ease;
    }
    
    .company-search-box
    {
        margin: -15px 1px 15px;
        max-width: 100%;
        position: static;
    }

    .combobox input
    {
        background-position: 5px -230px;
        font-size: 1.8em;
        width: 100%;
    }

    #logo
    {
        height: auto;
    }
    #logo img
    {
        height: 25px;
        margin: 5px auto;
        max-width: 80%!important;
        position: static;
    }
    
    #userprofile
    {
        position: static;
    }
    
    .internal-nav a, .internal-nav a:visited, .internal-nav a:active, .subnav1 a, .subnav2 a {
        padding-left: 0.25em;
    }
    
    .pub-table tr
    {
        line-height: 2em;
    }
    
    .fc-pub
    {
        border: none !important;
    } 
    
    .chart-coll .chart-block
    {
        width: 100%;
        margin-right: 0;
    }
    
    .c-analysts, .c-shareprice, .c-head > div:first-child, .c-sector, .c-head > a
    {
        display: block;
        float: none;        
    }
    
    
    .m-nav a
    {
        margin: 0px;
    }
    
    .subnav2 li
    {
        margin: .499%!important;
        width: 49%!important;
    }
    
    .subnav1 ul 
    {
        margin-left: -5px;
    }
    
    
    #search-tips 
    {
        border: 5px solid #e4e4e4;
    }
    
    #search-tips a
    {
        font-size: 18px;
        line-height: 2;
    }
    
    .goto-ext
    {
        display: none!important;
    }
    
    .doc
    {
        padding: 5px
    }
    
    .market-nav a
    {
        font-size: 14px!important;
        line-height: 25px;
        padding: 6.5px 0;
    }
}

@media screen and (min-width: 661px) and (max-width: 1000px) 
{
    body { font-size:100%; }
    
    .col1of3, .col2of3, .col3of3
    {
        width: 50%;
    }
    
    .start1of3, .start2of3, .start3of3, .start66
    {
        width: 50%;
    }
    
    .chart-coll .chart-block
    {
        width: 48.65%;
    }
    
    
}

@media screen and (max-width: 1000px) 
{
    #logo img 
    {
        max-width: 80%;
    }
    
    .subnav2
    {
        /*background-color: #fff;*/
        border-bottom: none;
        margin-bottom: 2em;
    }
           
    .subnav2 ul
    {
        /*padding: .1%;*/
    }
    
    .subnav2 li
    {
        background: #dfebef;
        margin: .31666%;
        text-align: center;
        width: 32.7%;
    }
    
    .a_b_dark_b:after
    {
        border-top-color: transparent;
    }
    
    .subnav2 li a
    {
        border: none;
        width: 100%;
    }
    
    .a_b_sn2 {
	    position: relative;
	    background: #fff;
	    border: 4px solid #c4e2eb;
	    border-top: 0;
	    z-index: 100;
    }
    .a_b_sn2:after, .a_b_sn2:before {
	    top: 100%;
	    left: 50%;
	    border: solid transparent;
	    content: " ";
	    height: 0;
	    width: 0;
	    position: absolute;
	    pointer-events: none;
	    z-index: 100;
    }

    .a_b_sn2:after {
	    border-color: rgba(255, 255, 255, 0);
	    border-top-color: #fff;
	    border-width: 20px;
	    margin-left: -20px;
	    z-index: 100;
    }
    .a_b_sn2:before {
	    border-color: rgba(223, 235, 239, 0);
	    border-top-color: #c4e2eb;
	    border-width: 26px;
	    margin-left: -26px;
	    z-index: 100;
    }
}

@media screen and (min-width: 1001px) and (max-width: 1200px)
{
    body { font-size:100%;} 
}

@media screen and (min-width: 1201px)  /* */
{
    body { font-size:120%; }
    .page-container { max-width:1540px; }
}
@font-face{
    font-family:StagLight;
    src:url(fonts/Stag-Light.eot);
    src:url(fonts/Stag-Light.eot?#iefix) format('embedded-opentype'),
	url(fonts/Stag-Light.woff) format('woff'),
	url(fonts/Stag-Light.ttf) format('truetype'),
	url(fonts/Stag-Light.svg#StagLight) format('svg');
    font-weight:300;
    font-style:normal;
    font-stretch:normal
}

@font-face{
    font-family:StagLightItalic;
    src:url(fonts/Stag-Light-Italic.eot);
    src:url(fonts/Stag-Light-Italic.eot?#iefix) format('embedded-opentype'),
	url(fonts/Stag-Light-Italic.woff) format('woff'),
	url(fonts/Stag-Light-Italic.ttf) format('truetype'),
	url(fonts/Stag-Light-Italic.svg#StagLightItalic) format('svg');
    font-weight:300;
    font-style:italic;
    font-stretch:normal
}

@font-face{
    font-family:StagMedium;
    src:url(fonts/Stag-Medium.eot);
    src:url(fonts/Stag-Medium.eot?#iefix) format('embedded-opentype'),
	url(fonts/Stag-Medium.woff) format('woff'),
	url(fonts/Stag-Medium.ttf) format('truetype'),
	url(fonts/Stag-Medium.svg#StagMedium) format('svg');
    font-weight:400;
    font-style:normal;
    font-stretch:normal
}

@font-face{
    font-family:StagBold;
    src:url(fonts/Stag-Bold.eot);
    src:url(fonts/Stag-Bold.eot?#iefix) format('embedded-opentype'),
	url(fonts/Stag-Bold.woff) format('woff'),
	url(fonts/Stag-Bold.ttf) format('truetype'),
	url(fonts/Stag-Bold.svg#StagBold) format('svg');
    font-weight:700;
    font-style:normal;
    font-stretch:normal
}

@font-face{
    font-family:StagBook;
    src:url(fonts/Stag-Book.eot);
    src:url(fonts/Stag-Book.eot?#iefix) format('embedded-opentype'),
	url(fonts/Stag-Book.woff) format('woff'),
	url(fonts/Stag-Book.ttf) format('truetype'),
	url(fonts/Stag-Book.svg#StagBook) format('svg');
    font-weight:400;
    font-style:normal;
    font-stretch:normal
}
