@charset "UTF-8";

/* CSS Document */
body {
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #223f51;
  margin: 0;
  padding: 0;
}

* {
  margin: 0;
  padding: 0;
}

img {
  border: none
}

a {
  color: #0082bb;
}

a:hover {
  color: black;
}

p {
  font-size: 14px;
  line-height: 21px;
  padding: 2px 0 7px 0;
}

h1 {
  font-weight: normal;
  font-size: 36px;
  line-height: 38px;
  padding: 3px 0 8px 0;
}

h2 {
  font-weight: normal;
  font-size: 29px;
  line-height: 30px;
  padding: 3px 0 6px 0;
}

h3 {
  font-weight: normal;
  font-size: 25px;
  line-height: 28px;
  padding: 3px 0 6px 0;
}

h4 {
  font-weight: normal;
  font-size: 20px;
  line-height: 26px;
  padding: 3px 0 6px 0;
}

h5 {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  padding: 3px 0 6px 0;
}

h6 {
  font-weight: bold;
  font-size: 15px;
  line-height: 20px;
  padding: 3px 0 6px 0;
}

ul {
  list-style: outside;
  padding: 2px 0 6px 20px;
  margin: 0;
}

ol {
  padding: 0 0 6px 20px;
  margin: 0;
}

.clear {
  clear: both;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.center {
  margin: 0 auto;
  text-align: center;
}

.nomargin {
  margin: 0 !important;
}

hr {
  border: none;
  border-top: 2px solid #ebf0f1;
  margin: 20px 0;
}

.right10 {
  padding-right: 10px;
}

p.disclaimer {
  font-size: 11px;
  padding: 8px 0;
}

/* Container Styles
------------------------------------------------*/
#header {
  background: #fff;
  border-bottom: 2px solid #ebf0f1;
  padding-bottom: 5px;
}

#main {
  background: white;
  margin: 20px auto;
  padding: 20px 20px 30px 20px;
}

#partner-footer {
  background: #ebf0f1;
  padding-top: 22px;
  padding-bottom: 10px;
}

#footer {
  background: #223f51;
  padding: 20px 0;
}

#subfooter {
  background: #ebf0f1;
  padding: 7px 0 3px 0;
}

.container {
  margin: 0 auto;
  max-width: 1000px;
  width: 96%;
}

/* Header Styles 
------------------------------------------------*/
.logo {
  float: left;
}

.carticon a {
  background: #ebf0f1;
  border: 1px solid #bbc3c7;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  border-radius: 17px;
  padding: 5px 4px 2px 3px !important;
  margin: 9px 0 0 5px;
}

.carticon a:hover {
  background: #fff;
  border: 1px solid #009add !important;
}

/*navigation*/
#cssmenu {
  float: right;
  padding: 14px 0 0 0;
}

#cssmenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1;
}

#cssmenu>ul {
  position: relative;
  display: block;
  height: 32px;
  width: 100%;
  z-index: 500;
}

#cssmenu>ul>li {
  display: block;
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
}

#cssmenu>ul>#menu-button {
  display: none;
}

#cssmenu ul li a {
  display: block;
  text-decoration: none;
}

#cssmenu ul li a:hover {
  border-bottom: 2px solid #009add;
}

#cssmenu>ul>li>a {
  font-size: 13px;
  padding: 15px;
  color: #223f51;
  -webkit-transition: color 0.25s ease-out;
  -moz-transition: color 0.25s ease-out;
  -ms-transition: color 0.25s ease-out;
  -o-transition: color 0.25s ease-out;
  transition: color 0.25s ease-out;
}

#cssmenu>ul>li.has-sub>a {
  padding-right: 32px;
}

#cssmenu>ul>li:hover>a {
  color: #223f51;
}

#cssmenu li.has-sub::after {
  display: block;
  content: '';
  position: absolute;
  width: 0;
  height: 0;
}

#cssmenu>ul>li.has-sub::after {
  right: 10px;
  top: 20px;
  border: 5px solid transparent;
  border-top-color: #7a8189;
}

#cssmenu>ul>li:hover::after {
  border-top-color: #ffffff;
}

#indicatorContainer {
  position: absolute;
  height: 12px;
  width: 100%;
  bottom: 0px;
  overflow: hidden;
  z-index: -1;
}

#pIndicator {
  position: absolute;
  height: 0;
  width: 100%;
  border: 12px solid transparent;
  border-top-color: #2b2f3a;
  z-index: -2;
  -webkit-transition: left .25s ease;
  -moz-transition: left .25s ease;
  -ms-transition: left .25s ease;
  -o-transition: left .25s ease;
  transition: left .25s ease;
}

#cIndicator {
  position: absolute;
  height: 0;
  width: 100%;
  border: 12px solid transparent;
  border-top-color: #2b2f3a;
  top: -12px;
  right: 100%;
  z-index: -2;
}

#cssmenu ul ul {
  position: absolute;
  left: -9999px;
  top: 70px;
  opacity: 0;
  -webkit-transition: opacity .3s ease, top .25s ease;
  -moz-transition: opacity .3s ease, top .25s ease;
  -ms-transition: opacity .3s ease, top .25s ease;
  -o-transition: opacity .3s ease, top .25s ease;
  transition: opacity .3s ease, top .25s ease;
  z-index: 1000;
}

#cssmenu ul ul li {
  position: relative;
}

#cssmenu>ul>li:hover>ul {
  left: auto;
  top: 46px;
  opacity: 1;
}

#cssmenu ul ul li:hover>ul {
  left: 170px;
  top: 0;
  opacity: 1;
}

#cssmenu ul ul li a {
  width: 120px;
  border-bottom: 1px solid #fff;
  padding: 10px 15px;
  font-size: 12px;
  color: #223f51;
  background: #ebf0f1;
  -webkit-transition: all .35s ease;
  -moz-transition: all .35s ease;
  -ms-transition: all .35s ease;
  -o-transition: all .35s ease;
  transition: all .35s ease;
}

#cssmenu ul ul li:hover>a {
  background: #fff;
  color: #223f51;
}

#cssmenu ul ul li:last-child>a,
#cssmenu ul ul li.last>a {
  border-bottom: 0;
}

.submenuArrow {
  border: 6px solid transparent;
  width: 0;
  height: 0;
  border-bottom-color: #fff;
  position: absolute;
  top: -12px;
}

#cssmenu ul ul li.has-sub::after {
  border: 4px solid transparent;
  border-left-color: #9ea2a5;
  right: 10px;
  top: 12px;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  -webkit-transition: -webkit-transform 0.2s ease, right 0.2s ease;
}

#cssmenu ul ul li.has-sub:hover::after {
  border-left-color: #fff;
  right: -5px;
  -webkit-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

#cssmenu ul ul ul li {
  top: 0;
  padding-left: 5px;
  left: -20px;
}

/*language dropdown*/
.dropdown {
  float: right;
  background: #ebf0f1;
  border: 1px solid #bbc3c7;
  font-size: 12px;
  margin: 23px 0 0 15px;
  padding: 2px 10px;
}

.dropdown span {
  font-size: 10px;
  line-height: 18px;
}

.dropdown li {
  list-style: none;
}

.dropdown li a {
  display: block;
  text-decoration: none;
  color: #223f51;
}

.dropdown li ul {
  display: none;
  z-index: 1000;
}

.dropdown li:hover ul {
  display: block;
  position: absolute;
  -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
  margin: 0;
  padding: 0;
}

.dropdown li:hover li {
  float: none;
}

.dropdown li:hover li a {
  background: #ebf0f1;
  font-size: 11px;
  line-height: 18px;
  padding: 1px 10px;
  margin: 0;
}

.dropdown li li a:hover {
  background-color: #fff;
}

/* Button Styles 
------------------------------------------------*/
/*site wide*/

/* Page Styles 
------------------------------------------------*/

.left-image {
  float: left;
  padding: 5px 10px 0 0;
}

.greybox {
  background: #ebf0f1;
  padding: 15px 15px 10px 15px;
  margin-bottom: 10px;
}

thead {
  background: #223f51;
  color: #fff;
  height: 30px;
}

/* sidebar on stand alone file analysis page */

.sidebar-list {
  counter-reset: li;
  /* Initiate a counter */
  list-style: none;
  /* Remove default numbering */
  *list-style: decimal;
  /* Keep using default numbering for IE6/7 */
  padding: 0;
  margin-bottom: 5px;
}

.sidebar-list span {
  position: relative;
  display: block;
  padding: 0px 5px 10px 40px;
  *padding: .4em;
  margin: .5em 0;
  color: #223f51;
  text-decoration: none;
  border-radius: .3em;
}

.sidebar-list span:before {
  background: #fff;
  border-radius: 2em;
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: 0em;
  top: 20%;
  color: #0c4263;
  line-height: 2em;
  text-align: center;
  font-weight: bold;
  margin-top: -1.3em;
  height: 1.9em;
  width: 1.9em;
}

.emphasis {
  background: url("../png/emphasis.png") no-repeat left top;
  padding: 0 0 0 50px;
}

/* Language Detection Popup 
------------------------------------------------*/

#language_shadow {
  display: block;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1005;

}

#language_popup {
  background: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.18);

  position: absolute;
  z-index: 1006;
  top: 50%;
  left: 50%;
  margin-left: -440px;
  margin-top: -330px;
  width: 880px;
  height: 700px;
  padding: 20px;
}

#language_popup h1 {
  font-size: 38px;
  font-weight: normal;
}

#language_popup span {
  border-left: 3px solid #00af5e;
  font-size: 28px;
  padding-left: 18px;
  margin-left: 6px;
}

#language_popup .button {
  font-weight: normal !important;
}

.language-column {
  float: left;
  text-align: center;
  width: 20%;
}

.language-column img {
  width: 100%;
}

.language-column h2 {
  font-size: 21px;
  font-weight: normal;
}

.language-column ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: 90%;
}

.language-column li {
  font-size: 15px;
  margin-bottom: 3px;
  width: 100%;
}

.language-column a {
  display: block;
  border: 1px solid #b0bbc0;
  color: #223f51;
  text-decoration: none;
  padding: 6px 0;
  width: 100%;
}

.language-column li.active a {
  border: 1px solid #223f51;
  background: #223f51;
  color: #fff;
}

.language-column a:hover {
  background: #e2e7e9;
}

/* Microsoft Popup
------------------------------------------------*/
#microsoft_popup {
  background: #fff;
  border: 1px solid #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.18);
  position: absolute;
  z-index: 2001;
  margin: 0 auto;
  padding: 20px;
  width: 875px;
}

#microsoft_popup_shadow {
  background: rgba(0, 0, 0, 0.75);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2000;
}

#microsoft_popup img {
  margin-top: 8.25rem;
}

.microsoft_popup_pdfcontainer {
  display: flex;
  flex-direction: row-reverse;
}

.pdf_wrapper {
  height: 580px;
  padding-right: 2rem;
}

.pdf_wrapper object {
  margin-top: 2rem;
  height: 100%;
}

.verify_link {
  margin-top: 3rem;
}

/* Footer Styles 
------------------------------------------------*/
#partner-footer a {
  float: left;
  display: block;
  opacity: 0.4;
  text-align: center;
  width: 20%;
}

#partner-footer img {
  margin: 0 10px;
}

#partner-footer a:hover {
  opacity: 1;
}

.footer-column {
  float: left;
  list-style: none;
  color: #4b6f8e;
  margin: 0 10px 0 0;
  padding: 0;
  width: 100%;
}

.footer-column li {
  padding-bottom: 3px;
  line-height: 12px;
  padding: 2px 0 8px 0;
}

.footer-column h4 {
  color: #fff;
  padding-bottom: 6px;
}

.footer-column a {
  font-size: 12px;
  text-decoration: none;
  color: #bbc3c7;
}

.footer-column a:hover {
  color: #0082bb;
}

#subfooter p {
  font-size: 12px;
}

#subfooter a {
  text-decoration: none;
  color: #223f51;
  padding-right: 8px;
}

#subfooter a:hover {
  color: #0082bb;
}

#subfooter p.float-right {
  text-align: right;
}

/* .fb_iframe_widget iframe {
  width: 110px !important
} */

iframe#twitter-widget-0 {
  margin-left: 50px
}

/* Medium */
@media screen and (max-width: 64em) {

  #footer .container_12 .grid_3,
  #footer .container_12 .grid_2 {
    width: 45%;
  }

  .footer-column {
    width: 100%;
  }
}

/* Small */
@media screen and (max-width: 40em) {
  #partner-footer a {
    width: 30%;
  }
}

#cookies {
  position: fixed;
  bottom: 0;
  background: #fff;
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  padding: 8px 0 4px 0;
  width: 100%;
}

#cookies p {
  text-align: center;
  font-size: 13px;
}

#cookies button {
  background: #bbc3c7;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  color: #000;
  padding: 3px 8px;
}

#cookies button:hover {
  background: #223f51;
  color: #fff;
}