/* jQuery UI Import */
 @import url("css/ui-lightness/jquery-ui-1.8.18.custom.css");

/* Global site styles */

body, html
{
  margin: 0;
  padding: 0;
  font: 10pt  arial, helvetica, sans-serif;
  background: #ffffff url(images/banner_bg.png) top left repeat-x; /*2014: added bg frame color */
	color: #000;
}



/*New added button, drop down, and test landing page styles - 2014 redesign*/

.button {
  display: inline-block;
  *display: inline;
  padding: 5px 6px;
  margin-bottom: 5px;
  *margin-left: .3em;
  font-size: 14px;
  line-height: 20px;
  color: #60061c; /*button text color*/
  text-align: center;
  text-shadow: 0 1px 1px rgba(242, 104, 38, 0.75); /*button text shadow color R, G, B, transparency*/
  font-weight: 700;
  vertical-align: middle;
  cursor: pointer;
  background-color: #fdc978; /*button background color if gradient can't be read*/
  *background-color: #fdc978; /*button background color for IE (see explanation: http://www.ejeliot.com/blog/63)*/
  background-image: -moz-linear-gradient(top, #f5e998, #fdc978); /*button background color, light to dark (repeat on following rows for browser compatibility*/
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5e998), to(#fdc978));
  background-image: -webkit-linear-gradient(top, #f5e998, #fdc978);
  background-image: -o-linear-gradient(top, #f5e998, #fdc978);
  background-image: linear-gradient(to bottom, #f5e998, #fdc978);
  background-repeat: repeat-x;
  border: 1px solid #f5e998; /*button main border color*/
  *border: 0;
  border-color: #f5e998 #f5e998 #f5e998;  /*button top right left border colors*/ 
  border-bottom-color: #fab221; /*button bottom border color*/
  border-radius: 4px;  
}


.button:hover,
.button:focus,
.button:active,
.button.active {
  color: #9dbecf;
  background-color: #fac54b; /*button hover background color*/
  *background-color: #fdb613; /*button hover background color for IE (should have increased contrast) */
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
     -moz-transition: background-position 0.1s linear;
       -o-transition: background-position 0.1s linear;
          transition: background-position 0.1s linear;
}

.button:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.button.active,
.button:active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.login {padding: 12px 15px 7px 15px; font-size: 16px; vertical-align:middle;}

.box select {border: solid 2px #d4b189; border-radius: 2px; } /*dropdown menu border color - should be bright, to contrast w/ dark gray bg*/


table.testPage          {border-collapse: collapse; margin: 1em 0; width: 100%; }
.testPage th, 
.testPage td   
{
    border: 1px solid #D7D7D7; 
    border-collapse: collapse; 
    font-size: .95em; 
    line-height: 1.5em; 
    margin: 0; 
    padding: .35em .5em;
    }
/*.testPage .odd td
{
    background-color: #F7F7F7;
}    
*/    
.testPage th       
{
        background: #efefef; 
        color: #4F6B72; /*table header color = h1 or other program color*/
        font-weight: 700; 
        text-align: left; 
        width: 25%; 
        vertical-align: middle;
} 

table.topnav            {border:none; border-collapse: collapse; width: 250; padding: 0; text-align: right;}
table.topnav  th, td    {border: none; border-collapse: collapse;} /*topnav needs to have class="topnav" added, i.e. <table class="topnav" align="right">*/


.contact       {border-top: none; 
                border-bottom: none; 
                border-left: 2px solid #c0c0c0; 
                border-right: none; 
                border-collapse: collapse; 
                width: 100%; 
                margin-left: 2em;}
.contact th     {vertical-align:top; 
                 font-weight: bold; 
                 text-align: right; 
                 width: 15%; 
                 color: #840427; 
                 margin-right: 15px; 
                 padding-right: 15px; 
                 border:none; 
                 border-collapse: collapse;}
.contact td     {vertical-align:top; padding:0 5px 15px 0; border:none; border-collapse: collapse;}
.contact strong {color: #2d2d2d;}


table.default          {border-collapse: collapse; margin: 1em 0; width: 100%; }
.default th, 
.default td   
{
    border: 1px solid #D7D7D7; 
    border-collapse: collapse; 
    font-size: .95em; 
    line-height: 1.5em; 
    margin: 0; 
    padding: .35em .5em;
    }
/*.default .odd td
{
    background-color: #F7F7F7;
}    
*/    
.default th       
{
        background: #efefef; 
        color: #167692; /*table header color = h1 or other program color*/
        font-weight: 700; 
        text-align: left; 
        width: 25%; 
        vertical-align: middle;
} 


/*end added styles*/

#top 
{
    border-bottom: 5px solid #007579;
}
#wrapper 
{
    margin: 0 auto;
    width: 960px;
  
}

#headfull
{
    
}

#header 
{
    height: 98px;
    text-align: right;
    padding-right: 1em;
    margin-top:5px;
    margin-bottom:5px;
    
}
#header_navno
{
    height: 130px;
    text-align: right;
    padding-right: 1em;
    margin-top:5px;
    margin-bottom:5px;
    
}

/************************************************************************************
FAQ/CONTACT
*************************************************************************************/
a.sb,
.sb a {
	width: 14px;
	height: 14px;
	background-repeat: no-repeat;
	background-position: center center;
	text-decoration: none;
	line-height: 100%;
	white-space: nowrap;
	display: inline;
	position: relative;
	vertical-align: middle;
	margin: 0 2px 5px 0;
	
}
/* for IE */
*:first-child+html a.sb,
*:first-child+html .sb a {
	text-indent: 0;
	line-height: 0;
	font-size: 0;
	overflow: hidden;
}


/* icon with text style */
a.sb.text,
.sb.text a {
	text-indent: 0;
	width: auto;
	height: 20px;
	padding: 9px 5px 3px 22px;
	background-position: 2px center;
}


a.sb.phone,
.sb a.phone {
	background-image: url(images/phone_w.png);
}

a.sb.faq,
.sb a.faq {
	background-image: url(images/faq.png);
}

#faq_contacts
{
    float: right;
    padding-top:5px;
}
#faq_contacts a
{
    color: #FFFFFF;
    text-decoration:none; 
    font-size: medium; 
    font-style: normal;
    font-weight: 200;
    font-weight:700;
}
#faq_contacts a:hover
{
    text-decoration:none; 
}
/* --------------------------*/
#left 
{
    float: left;
    width: 180px;
    margin-top: 5px;
    padding-top: 5px;
    margin-right: 20px;
}

#content 
{
    float:left;
    margin: 5px 0 0 0;
    padding: 5px 10px 5px 10px; /*2014: changed padding*/
    width: 740px; /*2014: changed width*/
    background-color: #fff; /*2014: added bg color white*/
}


#formcontent 
{
    float: left;
    padding: 0;
    width: 750px;
}
#content a:link {font-weight: normal; text-decoration: underline; font-size: 10pt; font-family: arial, helvetica, sans-serif;  color: #2C47B7; }
#content a:visited {font-weight: normal; text-decoration: underline; font-size: 10pt; font-family: arial, helvetica, sans-serif; color: #2C47B7; }
#content a:hover {font-weight: normal; text-decoration: underline; font-size: 10pt; font-family: arial, helvetica, sans-serif; color: #8E001C; }

#footer 
{
    clear: both;
    width: 100%;
    padding-top: 1em;
    padding-bottom: 1em; /*added padding to footer*/
}
.copyright
{
    width: 100%;
    border-top: #8e001c 2px solid;
    font-size: 8pt;
    padding-top: 12px;
    text-align: center;
	font-family: arial, helvetica, sans-serif;
	color: black;
	padding-bottom: 1em; /*added padding to copyright*/
}

.copyright a 
{
    font-weight: normal; 
    text-decoration: underline; 
    font-size: 10pt; 
    font-family: arial, helvetica, sans-serif; 
    color: #2C47B7;
    } /*copy from content styles to standardized link colors*/

.image {
	list-style-type: disc;
}
li 
{
    padding: 0 0 3px;
}
.center
{
	text-align: center;
}
.bold {
    font-weight: bold;
}
dd 
{
    margin: 1em;
    text-align: justify;
}
span.nobr
{
    white-space: nowrap;
}
ol.faqs {font-weight: bold;}
span.q {font-size: 28pt; color: #8E001C; font-weight: bold;}
span.a {font-size: 28pt; color: #01415B; font-weight: bold;}

.PDF
{
        background: url(images/PDF_strap.png) top left no-repeat;
}

h3.fix
{
  margin: 1em 0 .3em 0;
}

.PDF ul
{
        margin-left:47px;
        padding-left:0px;
        padding-top:70px;
}

.PDFside
{
        background: url(images/PDF_s_strap.png) top left repeat-y;
}

.PDFside ul
{
        margin-left:47px;
        padding-left:0px;
        padding-top:70px;
}

/* Emergency Message Container */

#modal {
    visibility: visible;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 150px;
    z-index: 1000;
    background-image: url(images/transbg.gif);
}

.iyf_header 
{
    background: url(images/iyf_header_bg.gif) repeat-x;
    border: 1px solid #000;
    height: 25px;
    width: 500px;
    padding-top: 3px;
}

.iyf_header td 
{
    color: #fff;
    font-weight: bold;
}

#iyf 
{
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    width: 500px;
    text-align: left;
    padding: .5em;
    background: #F3EEFC;
}


#msgContainer 
{
  position: absolute;
  top: 200px;
  left: 235px;
  width: 300px;
  opacity: .95;
  filter: alpha(opacity=95);
  z-index: 999;
}

#messageHeader
{
	font-weight: bold; 
	text-align: center; 
	font-size: 18px; 
	width: 100%; 
	color: #ffffff; 
	
	background: url(images/message_bg.png) bottom left no-repeat;
}

#message
{
	width: 944px; 
	padding: 0px; 
	font: bold 12px arial,helvetica,sans-serif; 
	color: #98002E;
	margin-bottom: .3em;
	
}

#message1
{
	width: 100%; 
	padding: 4px 6px 2px 10px; 
	background-color: #ffffff;
	font: bold 12px arial,helvetica,sans-serif; 
	color: #98002E;
	background: url(images/message1_bg.png) top right repeat-x;
}

/* Styles for the sub menu */

#submenu
{
    margin: 0 0 2em 0;
    clear: both;
    padding: 3px;
    *padding: 0px; /* Fix top nav padding in IE */
    text-align: left;
    line-height: 30px;
        
}
#submenu a:link 
{
    text-decoration: none;
    font-weight: bold;
    color: #fff;
}
#submenu a:visited 
{
    text-decoration: none;
    font-weight: bold;
    color: #fff;
}
#submenu a:visited>a:hover 
{
    text-decoration: none;
    font-weight: bold;
    color: #840427;
}
#submenu a:hover 
{
    text-decoration: none;
    font-weight: bold;
    color: #ffd37c;
}
#submenu ul
{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#submenu li
{
    display: inline; 
    padding: 4px;
    margin: 0;
    color: White;
    font-weight: bold;
    font-size: 16px;
}

/************************/
/* Google search styles */
/************************/

label.search
{
	color: #fff;
	font: bold 11px arial, helvetica, sans-serif;
    text-align: right;
    vertical-align: middle;
}
.sBoxBox
{
	border: 1px solid #7B0F75; /*005984*/
	vertical-align: middle;
}
#google
{
    font-size: 10px;
	text-transform: uppercase;
    font-variant: small-caps;
    padding: 3px 0 0 78px;
    color: #fff;
}

/****************/
/* Table styles */
/****************/

table.icts
{
    border-collapse: collapse;
    border: 2px solid #3c71b6;
    padding: 0;
    margin: 0;
    width: 100%;
}

table.icts2
{
    border-collapse: collapse;
    border-left: 2px solid #3c71b6;
    border-right: 2px solid #3c71b6;
    border-bottom: 2px solid #3c71b6;
    padding: 0;
    margin: 0;
    width: 100%;
}
.icts td table, .icts td table td, .icts td table th, .icts2 td table, .icts2 td table td, .icts2 td table th
{
    border-collapse: separate;
    border: none;
}
.odd 
{
    background: #e6e1eb;
}
.icts th
{
    font-size: 10pt;
    background: #CEC8DE;
    color: #000;
    border: 2px solid #3c71b6;
    padding: 3px;
}
.ictsth
{
    font-size: 10pt;
    background: #CEC8DE;
    color: #000;
    border-top: 2px solid #3c71b6;
    border-left: 2px solid #3c71b6;
    border-right: 2px solid #3c71b6;
    padding: 3px;
}
.icts2 th
{
    font-size: 10pt;
    background: #CEC8DE;
    color: #000;
	border-left: 2px solid #3c71b6;
	border-right: 2px solid #3c71b6;
	border-bottom: 2px solid #3c71b6;
    padding: 3px;
}
.icts td
{
    font: 10pt arial, helvetica, sans-serif;
	color: #000000;
	padding: 5px;
	margin: 0;
	border: 2px solid #3c71b6;
	vertical-align: top;
}
.icts2 td
{
    font: 10pt arial, helvetica, sans-serif;
	color: #000000;
	padding: 5px;
	margin: 0;
	border-left: 2px solid #3c71b6;
	border-right: 2px solid #3c71b6;
	border-bottom: 2px solid #3c71b6;
	vertical-align: top;
}
table.contacts
{
    border-collapse: collapse;
    border: 2px solid #3c71b6;
    padding: 0;
    margin: 0;
    width: 100%;
}
.contacts td table, .contacts td table td, .contacts td table th
{
    border-collapse: separate;
    border: none;
}
.contacts th
{
    font-size: 10pt;
    background: #CEC8DE;
    color: #000;
    padding: 3px;
}
.contacts th.bL, .contacts2 th.bL {border-left: 2px solid #3c71b6;}
.contacts th.bR, .contacts2 th.bR {border-right: 2px solid #3c71b6;}
.contacts th.bT, .contacts2 th.bT  {border-top: 2px solid #3c71b6;}
.contacts th.bB, .contacts2 th.bB  {border-bottom: 2px solid #3c71b6;}
.contacts td, .contacts2 td
{
    font: 10pt arial, helvetica, sans-serif;
	color: #000000;
	padding: 0;
	margin: 0;
	border: 2px solid #3c71b6;
	vertical-align: middle;
}
table.testdates
{
    border-collapse: collapse;
    border: 2px solid #3c71b6;
    padding: 0;
    margin: 0;
    width: 100%;
}
.testdates td table, .testdates td table td, .testdates td table th
{
    border-collapse: separate;
    border: none;
}
.testdates th
{
    font-size: 10pt;
    background: #CEC8DE;
    color: #000;
    padding: 3px;
}
.testdates th.bL {border-left: 2px solid #3c71b6;}
.testdates th.bR {border-right: 2px solid #3c71b6;}
.testdates th.bT {border-top: 2px solid #3c71b6;}
.testdates th.bB {border-bottom: 2px solid #3c71b6;}
.testdates td
{
    font: 10pt arial, helvetica, sans-serif;
	color: #000000;
	padding: 5px;
	margin: 0;
	border: 2px solid #3c71b6;
	vertical-align: middle;
}
table.cbttestdates
{
    border-collapse: collapse;
    border: 2px solid #3c71b6;
    padding: 0;
    margin: 0;
    width: 100%;
}
.testdcbttestdatesates td table, .cbttestdates td table td, .cbttestdates td table th
{
    border-collapse: separate;
    border: none;
}
.cbttestdates th
{
    font-size: 10pt;
    background: #CEC8DE;
    color: #000;
    padding: 3px;
}
.cbttestdates th.bL {border-left: 2px solid #3c71b6;}
.cbttestdates th.bR {border-right: 2px solid #3c71b6;}
.cbttestdates th.bT {border-top: 2px solid #3c71b6;}
.cbttestdates th.bB {border-bottom: 2px solid #3c71b6;}
.cbttestdates td
{
    font: 10pt arial, helvetica, sans-serif;
	color: #000000;
	padding: 5px;
	margin: 0;
	border: 2px solid #3c71b6;
	vertical-align: middle;
	text-align: center;
}
table.testsites
{
    border-collapse: collapse;
    border: 2px solid #3c71b6;
    padding: 0;
    margin: 0;
    width: 100%;
}
.testsites td table, .testsites td table td, .testsites td table th
{
    border-collapse: separate;
    border: none;
}
.testsites th
{
  font-size: 10pt;
  background: #CEC8DE;
  color: #000;
  border-top: 2px solid #3c71b6;
	border-bottom: 2px solid #3c71b6;
  padding: 3px;
  /*text-align: left;*/
}
.testsites td
{
    font: 10pt arial, helvetica, sans-serif;
	color: #000000;
	padding: 5px;
	margin: 0;
	border-top: 2px solid #3c71b6;
	border-bottom: 2px solid #3c71b6;
}
.testsites th.bL, .testsites td.bL {border-left: 2px solid #3c71b6;}
.testsites th.bR, .testsites td.bR {border-right: 2px solid #3c71b6;}
.testsites th.bT, .testsites td.bT {border-top: 2px solid #3c71b6;}
.testsites th.bB, .testsites td.bB {border-bottom: 2px solid #3c71b6;}
table.instcodes
{
    border-collapse: collapse;
    border: 2px solid #3c71b6;
    padding: 0;
    margin: 0;
    width: 450px;
}

table.instcodes1
{
    border-collapse: collapse;
    border: 2px solid #3c71b6;
    padding: 0;
    margin: 0;
    width: 450px;
}

table.instcodes2
{
    border-collapse: collapse;
    border-left: 2px solid #3c71b6;
    border-right: 2px solid #3c71b6;
    border-bottom: 2px solid #3c71b6;
    padding: 0;
    margin: 0;
    width: 450px;
}
.instcodes td table, .instcodes td table td, .instcodes td table th
{
    border-collapse: separate;
    border: none;
}
.instcodes th, .instcodes1 th
{
    font-size: 10pt;
    background: #CEC8DE;
    color: #000;
    border-top: 2px solid #3c71b6;
	border-bottom: 2px solid #3c71b6;
    padding: 3px;
}
.instcodes td, .instcodes1 td
{
    font: 10pt arial, helvetica, sans-serif;
	color: #000000;
	padding: 5px;
	margin: 0;
	border-top: 2px solid #3c71b6;
	border-bottom: 2px solid #3c71b6;
}
.instcodes2 td
{
    font: 10pt arial, helvetica, sans-serif;
	color: #000000;
	padding: 5px;
	margin: 0;
	border-bottom: 2px solid #3c71b6;
}
td
{
    font: 10pt arial, helvetica, sans-serif;
	color: #000000;
	padding: 0;
	margin: 0;
}
table.fees
{
    border-collapse: collapse;
    border: 0;
    padding: 0;
    margin: 0;
    width: 100%;
}
.fees th
{
    font-size: 10pt;
    background: #c6cfd6;
    color: #000;
    border: 1px solid #ffffff;
    padding: 3px;
}
.fauxth
{
    font-size: 10pt;
    background: #CEC8DE;
    color: #000;
    font-weight: bold;
    border-top: 2px solid #3c71b6;
    border-left: 2px solid #3c71b6;
    border-right: 2px solid #3c71b6;
    padding: 3px;
}
.fees td
{
    font: 10pt arial, helvetica, sans-serif;
	color: #000000;
	padding: 5px;
	margin: 0;
	vertical-align: top;
}

/*************************************/
/* Heading styles (H1, H3, H4, etc.) */
/*************************************/

h1
{
    font: bold 16pt arial, helvetica, sans-serif;
    color: #0e475f;
	text-align: left;
	vertical-align: middle;
}

h1.TestSelection
{
    font: bold 11pt arial, helvetica, sans-serif;
    color: #0e475f;
	text-align: left;
	vertical-align: middle;
	margin-bottom: -1em;
}


h1.section
{
    font: bold 18pt arial, helvetica, sans-serif;
    float: left;
    color: #0e475f;
    border-bottom: 3px solid #7B0F75; /*005984*/
    width: 600px;
    margin: 1em 0;
    padding: 0;
    vertical-align: middle;
	text-transform: uppercase;
}

img.h1
{
    float: right;    
}

img.h1special 
{
    float: right;
    margin: 2em 0 0;
}

h3 
{
    font: bold 13pt arial, helvetica, sans-serif;
    color: #98022f; /*005984*/
    text-align: left;
	vertical-align: middle;
    /*line-height: 30px; */
    padding: 0 0 3px 0;
   
    width: 98%;
}

.heading3
{
    font-family: sans-serif;
    font-size: 12pt;
    font-weight: bold;
    color: #7B0F75; /*005984*/
}

span.h4
{
    color: #230E60;
    font-weight: bold;
    font-style: italic;
    font-size: 10pt;
}

h4
{
    color: #230E60;
    font-weight: bold;
    font-style: italic;
    font-size: 10pt;
}

.heading4
{
    font: bold italic 10pt sans-serif;
    color: #006666;
}

.BoldItalicRed
{
    FONT-WEIGHT: bold;
    FONT-STYLE: italic;
    COLOR: #840017;
}

span.h5 
{
    color: #095AA5;
    font-weight: bold;
    font-style: italic;
    padding: 0;
    margin: 0;
    line-height: 1em;
}
/***********************/
/* Begin Side Menu CSS */
/***********************/
#leftNav
{
	text-align: left;
	vertical-align: middle;
	width: 190px;
	float: left;
}

#leftNav h3             
{
    background: none; 
    color: #98022f;
   
	font-family: Verdana, Arial, Tahoma, Helvetica, sans-serif;
	text-decoration: none; 
    margin: .1em 0; 
    padding: 0; 
    font-size: 11pt; 
    text-align: left;}    

.toc
{
    background: none; 
    color: #98022f; /*use this color for ".accordNav li a" tags!*/
    text-decoration:none; 
	font-family: Verdana, Arial, Tahoma, Helvetica, sans-serif;
	text-decoration: none; 
    margin: .1em 0; 
    padding: 0; 
    font-size: 11pt; 
    text-align: left;
    text-decoration:none;
 } 

#accordion h3 
{
    font: bold 8pt arial, helvetica, sans-serif;
    text-align: left;
}
.accordNav {list-style: none; padding:0; margin:5px 0;}
.accordNav li {padding: 0 0 5px 0;}
.accordNav li a, a:visited  {text-decoration:none; color:#98022f;} /*add color from .toc class to this line, plus ", a:visited"*/
.accordNav li a:hover {text-decoration:underline; color:#98022f;}

#nav {
    text-align: right;
    padding: 0;
    margin: 0;
    list-style: none;
    float: left;
    width: 200px;
}
#nav a {
    font-weight: bold;
    padding: .25em 6px 0 0;
    text-decoration: none;
    display: block;
}
#nav li 
{
    position: relative;
    float: left;
    width: 200px;
    margin: 0;
    z-index: 999;
}

/* Unfold nav styles */

.header {
	
	width:200px;
	text-align:center;
	vertical-align:bottom;
	color: #264670; /*#7B0F75;*/
	font-size: 11pt;
	border: 0;
	line-width: 200px;
	font-family: Verdana, Arial, Tahoma, Helvetica, sans-serif;
	text-decoration: none;
	font-weight: bold;
}


.header a:hover {color: #7B0F75; /*#8E001C;*/ text-decoration: underline;}

.Group {
	display: block;
	height: 25px;
	width: 170px;
	background: url(images/button_h.png) bottom left no-repeat;
	line-height: 27px;
	padding-left: 20px;
	color: #264670; /*#7B0F75;*/
	text-decoration: none;
	font-family: Verdana, Arial, Tahoma, Helvetica, sans-serif;
	font-size: 8pt;
	vertical-align: middle;
}
.Group:hover {
	color: #264670; /*#7B0F75;*/
	text-decoration: underline;
}
.Option {
	display: block;
	height: 25px;
	width: 170px;
	background-image: url(images/Button_l.png);
	vertical-align: middle;
	line-height: 27px;
	padding-left: 10px;
	color: #264670; /*#7B0F75;*/
	font-family: Verdana, Arial,  Tahoma, Helvetica, sans-serif;
	font-size: 8pt;
	text-decoration: none;
}


.Option:hover {
	color: #264670; /*#7B0F75;*/
	text-decoration: underline;
}

.Option_dbl {
	display: block;
	height: 30px;
	width: 170px;
	background-image: url(images/Button_dbl.png);
	vertical-align: middle;
	padding-left: 10px;
	color: #264670; /*#7B0F75;*/
	font-family: Verdana, Arial,  Tahoma, Helvetica, sans-serif;
	font-size: 8pt;
	text-decoration: none;
}


.Option_dbl:hover {
	color: #264670; /*#7B0F75;*/
	text-decoration: underline;
}

.show {
	display:inline;
}
.hide {
	display:none;
}




#current {
	color: red;
}


/* Home page styles */



ul.news             
    {
    list-style: none; 
    margin: 0px 0px 0 0px; 
    padding: 0;
    }
ul.news li          
    {
    border-bottom: 1px solid #D0D0D0; 
    color: #fff;  /*changed to white for times when there is no annouc*/
    font-size: .9em; 
    float: right; 
    margin: .2em 1.1em .3em .1em;
    }
ul.news li.last     {border: none;}
ul.news li.noAnnounce   {margin-left:10px;}
ul.news div.date    
{
    /*background: url(images/icon_news.gif) 0 0 no-repeat; remove news icon*/
    display: inline; 
    float: left; 
    margin: 0 15px 0; 
    padding: 1px 0 0 ; 
    width: 28px; 
    height: 28px;
    }
ul.news span.m      
{
    color: #FFF; 
    display: block; 
    font-size: 1em; 
    line-height: 2px; 
    padding: 2px 0 0; 
    margin: .3em; 
    text-align: center;
    /*font-size: .8em; increase font size, make bold*/
    font-weight: bold;
    }
ul.news span.d      
{
    color: #FFF; 
    display: block; 
    font-size: 1em; 
    font-weight: 700; 
    line-height: 15px; 
    padding: 2px 0 2px; 
    margin: .3em; 
    text-align: center;
    }
ul.news div.content 
{
    display: inline; 
    float: right; 
    width: 170px;
    padding-right:20px;
    color: #FFF; /*change news color to white 2014*/ 
    }
    
ul.quicklinks       
{
    list-style: none; 
    margin: 0 0 0 15px; /*change left margin to 15px 2014*/
    padding: 0;
    }

    
.homeleft           
{
    float: left; 
    height: 100%; 
    margin: 0; 
    padding: 0; 
    width: 365px;
    }
.homeright          
{
    float: right; 
    height: 100%; 
    margin: 0; 
    padding: 0; 
    width: 365px;
    }
    




/* CBT styles--ADDED 12/07/11 */
#tabs
{
    width: 100%;
    float: left;
    background: url(images/tabs_bg.gif) repeat-x bottom;
    line-height: normal;
    margin: 0 0 1em 0;
}
#tabs ul 
{
    margin: 0;
    padding: 10px 10px 0;
    list-style: none;
}
#tabs li 
{
    float: left;
    background: url(images/ltab.gif) no-repeat left top;
    margin: 0 0 0 6px;
    padding: 0 0 0 9px;
    height: 42px;
}
#tabs a 
{
    float: left;
    display: block;
    background: url(images/rtab.gif) no-repeat right top;
    padding: 8px 18px 4px 6px;
    text-decoration: none;
    font-weight: bold;
    color: #888;
}
#tabs a img 
{
    vertical-align: middle;
}
#tabs #current 
{
    float: left;
    background: url(images/ltab_current.gif) no-repeat left top;
    margin: 0 0 0 6px;
    padding: 0 0 0 9px;
    height: 42px;
}
#tabs #current a 
{
    float: left;
    display: block;
    background: url(images/rtab_current.gif) no-repeat right top;
    padding: 14px 15px 12px 6px;
    text-decoration: none;
    font-weight: bold;
    color: #13354C;
}
h1.pbtcbt 
{
    background: url(images/pbtcbt.gif) left top no-repeat;
    clear: both; 
    color: #264670; 
    display: block; 
    font: bold 16pt arial, helvetica, sans-serif; 
    height: 37px; 
    line-height: 30px; 
    margin: .5em 0 1em 0; 
    padding-left: 4.2em;
    }

h1.cbt    
{
    background: url(images/cbt_big.gif) left top no-repeat;
    clear: both; 
    color: #0e475f; 
    display: block; 
    font: bold 16pt arial, helvetica, sans-serif; 
    height: 37px; 
    line-height: 30px; 
    margin: 0 0 1em; 
    padding-left: 2.1em;
    }
h1.pbt    
{
    background: url(images/pbt_big.gif) left top no-repeat;
    clear: both; 
    color: #0e475f; 
    display: block; 
    font: bold 16pt arial, helvetica, sans-serif; 
    height: 37px; 
    line-height: 30px; 
    margin: 0 0 1em; 
    padding-left: 2.1em;
    }

 h2.pbt 
{
  font: bold 16pt arial, helvetica, sans-serif;
  color: #840427; /*005984*/
	text-align: left;
	text-transform: uppercase;
	display: list-item;
	list-style-image: url(images/pbt_big.gif);
  margin: .5em 0 0 2em;
  line-height: 30px;    
}

h2.cbt 
{
    font: bold 16pt arial, helvetica, sans-serif;
    color: #840427; /*005984*/
	text-align: left;
	text-transform: uppercase;
	display: list-item;
	list-style-image: url(images/cbt_big.gif);
    margin: .5em 0 0 2em;
    line-height: 30px;      
}
h3.cbt    
{
    background: url(images/cbt.gif) left top no-repeat; 
    color: #98022f; /*005984*/ 
    display: block; 
    font-family: sans-serif; 
    font-size: 13pt; 
    font-weight: bold; 
    height: 30px; 
    line-height: 100%; 
    margin: 1em 0em 0; 
    padding: 4px 0; 
    text-align: left; 
    text-indent: 2.1em;
    }
h3.pbt    
{
    background: url(images/PBT.gif) left top no-repeat; 
    color: #98022f; /*005984*/ 
    display: block; 
    font-family: sans-serif; 
    font-size: 13pt; 
    font-weight: bold; 
    height: 30px; 
    line-height: 100%; 
    margin: 1em 0em 0; 
    padding: 4px 0;
    text-align: left; 
    text-indent: 2.1em;
}
.adjHdr
{
  padding-top: 8px;  
}
.pbtcbticons
{
  padding: 0 8px 8px 0; 
  float: left;
}
.warning {background: #e7e7ef; border: 1px solid #006666; margin: 1em 0; padding: 1em;}

/* Score Reporting Toggle Stuff */
    .expand1
{
	border: 0;
	padding: 0 8px 0 6px;
	vertical-align: middle;
}
.list_item
{ 
/*padding: 5px 10px;padding: 5px 5px 5px;margin:1px;*/
cursor: pointer;
position: relative;
background-color:#fff;
text-decoration: underline;
font: bold 13pt arial,helvetica,sans-serif; 
color:#264670;
}
.list_item_content 
{
/*padding: 5px 5px 5px;
background-color:#fff;*/
/*FCF4BF;*/
}


/*Home Page and Prep Materials Redesign Styles*/
#contentflutter
{
    
}

/*Use these to replace sub, homeleft, homeright, and homecenter*/ 

#WHITE {background-color: #fff;}

.sub                
{
    background-color: #fff;
    float: left;   
    margin: 0; 
    margin-top: -10px; 
    padding-top: 30px; 
    width: 960px; 
    color: #000000;
    text-decoration: none;
	font-family: Verdana, Arial, Tahoma, Helvetica, sans-serif;
	
	}
	
			   
.sub a:link, a:visited    {text-decoration: none; font-size: 10pt; font-family: arial, helvetica, sans-serif; color: #2C47B7;} /*standardized link colors*/
.sub a:hover {text-decoration: underline; font-size: 10pt; font-family: arial, helvetica, sans-serif; color: #8E001C;}   
   
  }
    
    
    .sub h3             
{
    color: #98022f; /*customize to match program h3*/
    font-family: Verdana, Arial, Tahoma, Helvetica, sans-serif;
	text-decoration: none; 
    margin: .1em 0; 
    padding: 0; 
    font-size: 11pt; 
    text-align: left;}    
    
    
 .grid_1  {width: 40px;}
.grid_2  {width: 120px;}
.grid_3  {width: 200px;}
.grid_4  {width: 255px;}
.grid_5  {width: 300px;}
.grid_6  {width: 440px;}
.grid_7  {width: 520px;}
.grid_8  {width: 600px;}
.grid_9  {width: 680px;}
.grid_10 {width: 760px;}
.grid_11 {width: 840px;}
.grid_12 {width: 920px;}
.column  {display: inline; float: left; margin: 0 10px; overflow: hidden;}



.callout { border: solid 1px #ffef9b; border-radius: 5px; background-color: #fff2af; padding: 10px 10px 0px 10px; }	   



.hometop            {float: left; height: 260px; margin: 0;  padding: 0; width: 960px;  }
.homebox            {float: left; margin: 0px 0px 0px 0px; padding: 0; width: 670px;}

    
    
    .homeright a:link {color: #1F358B;
	text-decoration: none;
	font-family: Verdana, Arial, Tahoma, Helvetica, sans-serif;
	font-size: 8pt;
	}
	.homeright a:hover {color: #1F358B;
	text-decoration: underline;
	font-family: Verdana, Arial, Tahoma, Helvetica, sans-serif;
	font-size: 8pt;
	}

    
       

    
  
    
    
.homeleft           {float: left; height: 100%; margin: 0px 15px 0px 10px; padding: 0; width: 200px;}
.homecenter         
{
     float:left; 
     height: 100%; 
     margin: 0px 40px; 
     padding: 0px; 
     width: 424px; 

     -moz-border-radius: 15px; 
     border-radius: 15px; 
     -webkit-border-radius:15px;
     -khtml-border-radius: 15px;
     background: url(images/pcurve_top.png) top left repeat-x; 
   
     }

    
.homecenter a:link {
        color: #1F358B;
	    text-decoration: none;
	    font-family: Verdana, Arial, Tahoma, Helvetica, sans-serif;
	    font-size: 8pt; }
.homecenter a:visited {
        color: #1F358B;
	    text-decoration: none;
	    font-family: Verdana, Arial, Tahoma, Helvetica, sans-serif;
	    font-size: 8pt; }
.homecenter a:hover {
        color: #1F358B;
	    text-decoration: underline;
	    font-family: Verdana, Arial, Tahoma, Helvetica, sans-serif;
	    font-size: 8pt; }	    
	    
.homecenter_r       {float:left;}
.homecenter_l       {float:right;}
.homeright          {float: right; height: 100%; margin: 0; padding: 0; width: 210px;}

.hometop            {float: left; height: 260px; margin: 0; padding: 0; width: 960px;  }
.homebox            {float: left; margin: 0px 0px 0px 0px; padding: 0; width: 670px;}

.announce           {float: right; margin: 0 0px 0 0px; padding: 0; width: 290px;   border: none;}
     
div.prep {
   
    background-position: 0 0;
    background-repeat: no-repeat;
    width: 90px;
    padding: 30px 0 0 0;
}

ul#testdev li#dev1 a:hover {
    background-position: 0 -454px;
    } 
    


    
    
/*Prep Pages*/

#contentprep
{
    padding: 0;
    color: #000000;
    text-decoration: none;
	font-family: Verdana, Arial, Tahoma, Helvetica, sans-serif;
	font-size: 8pt; 
	text-align:left;
	padding: 5px 10px 5px 10px; /*2014: changed padding*/
    }
#contentprep a 
{
    /*2014: removed fonts for consistent look    
	font-family: Verdana, Arial, Tahoma, Helvetica, sans-serif;	
    */
    color:#00788B; /*2014: changed link color*/
	font-size: 8pt;
	}
#contentprep td
{
    font: 8pt Verdana, Arial, Tahoma, Helvetica, sans-serif;
	color: #000000;
}
#contentprep h4
{
    font: 10pt Verdana, Arial, Tahoma, Helvetica, sans-serif;
	color: #1F358B; 
    margin: .1em 0 .3em 0;
    /*2014: removed small caps font-variant: small-caps;*/
    font-weight:bold;

}

div.prep 
{
    width: 90px;
    padding: 30 px 0 0 0; }
 
 
.productbox     {float:left; height: 100%; margin: 0; padding: 10px; width: 900px;}
.productdisplay {float:left; height: 100%; margin: 10; padding: 10px; width: 800px;}
.product_r      {float: left; height: 100%; margin: 0; padding: 0; width: 300px;}
.product_l      {float: left; height: 100%; margin: 0; padding: 0; width: 200px;} 
.break   {clear: both; height: 20px;}
img.right {display: inline; float: right; margin: 0 0 1em 1em;}   


/* Horizontal Table */
table.field_prep         {  border: solid 1px #c0c0c0; width: 100%; height:100%; table-layout:auto;}
table.field_prep th      {  background: url(images/prep_table_header.gif) top left repeat-x; 
                            font-weight: 700; 
                            text-align: left; 
                            width: 100%; 
                            padding: 3px;
                            font: 10pt Verdana, Arial, Tahoma, Helvetica, sans-serif;
	                        color: #1F358B; 
                            margin: .1em 0 .3em 0;
                            font-variant: small-caps;
                            font-weight:bold; 
                            border: none;
                            min-height:35px;}
table.field_prep tr      {height:30px; vertical-align: middle;}
                       
table.field_prep td      {vertical-align: middle; padding:5px 15px 5px 15px; border-top: solid 1px #c0c0c0;}
table.field_prep td.vtop {vertical-align: top; padding: 3px;}

/*Prep Landing Table*/

table.prep_landing         {  
                            border: none;}

table.prep_landing td      {vertical-align: top; padding-left: 5px; padding-right: 5px; padding-bottom: 20px;}


table.toc         {border: none; }

table.toc td      {vertical-align: top; padding-left: 73px; padding-right: 50px; padding-bottom: 5px; }

table.toc th a     {vertical-align: top; padding-left: 0px; padding-right: 0px; padding-bottom: 5px;  text-align:center; }


/* 2014 - removed these styles for link consistency
#toc a:link {color: #0e475f; font-variant: small-caps; font-weight:bold; text-decoration: none; font-size: 10pt; font-family: verdana, arial, helvetica, sans-serif; }
#toc a:visited {color: #0e475f; font-variant: small-caps; font-weight:bold; text-decoration: none; font-size: 10pt; font-family: verdana, arial, helvetica, sans-serif; }
#toc a:hover {color: #8E001C; font-variant: small-caps; font-weight:bold; text-decoration: underline; font-size: 10pt; font-family: verdana, arial, helvetica, sans-serif; }
*/


/* Photo panel w/ test selection drop down - This section clean to swap in to other CSS (no colors) - changes: deleted extraneous panels, changed padding  */

.panels                    {position: relative; z-index: 100;}
.panels .tests             {height: 250px; /*changed height*/ width: 670px;}
.panels .swoosh            {background: url(images/swooshless.png) bottom left no-repeat; bottom: 0; color: #FFF; display: block;  left: 0; padding: 30px 20px 0px; /*changed padding*/ position: absolute; width: 100%;}
.panels .swoosh span       {font: 700 75%/100% Arial, Sans-Serif;}
.panels .tests             {background: url(images/ed_window.png) 0 0 no-repeat;}

.panels .swoosh h1
{
    font-size: medium;
    font: 700  Arial, Sans-Serif;
    color: #FFF;
	text-align: left;
	vertical-align: bottom;
	padding-bottom: 0px;
	margin-bottom: 0px;
}

.panels .swoosh form
{
    vertical-align: bottom;
	padding-bottom: 5px;
	margin-bottom: -5px;
	margin-top: -10px; 
    padding-top: 10px; 
}


/*end sub changes*/

/*news changes 2014*/
.announce           {float: right; margin: 0 0px 0 0px; padding: 0; width: 290px;  height: 250px; border: none; background-color: #063a50
    ; color: #fff;} /*add bg color*/

.announce   a       {color: #9dbecf;} /*add contrasting link color*/

.announce   h3      {color: #9dbecf; margin: 5px 0 5px 10px;}

/*end news changes*/

/* MSG_Box */
#MSG_Box
{
font: normal 14px arial,helvetica,sans-serif; 
border: 1px solid;
margin: 10px 0px;
padding:15px 10px 15px 60px;
background-repeat: no-repeat;
background-position: 10px center;
}
#MSG_Box b
{
font: bold 16px arial,helvetica,sans-serif;
}
.error       {background: url(images/error.png) 10px 12px no-repeat #FCCAC1; border: 1px solid #EB5439; color: #565656; margin: 1em 0; min-height: 55px; padding: 0 10px 0 55px;}
.information {background: url(images/information.png) 12px 10px no-repeat #D1E4F3; border: 1px solid #4D8FCB; color: #565656; margin: 1em 0; min-height: 55px; padding: 0 10px 0 55px;}
.success     {background: url(images/success.png) 10px 12px no-repeat #EFFEB9; border: 1px solid #98C700; color: #565656; margin: 1em 0; min-height: 55px; padding: 0 10px 0 55px;}
.warning     {background: url(images/warning.png) 10px 12px no-repeat #FFE9AD; border: 1px solid #FAB418; color: #565656; margin: 1em 0; min-height: 55px; padding: 0 10px 0 55px;}

/* IE Min Height Hacks */
* html .error,
* html .information,
* html .success,
* html .warning      {height: expression(this.scrollHeight < 56 ? "55px" : "auto" );}

/* Buy Now Button */

#btnBuy {
	padding: 0;
	margin: 0;
	width: 72px;
	height: 30px;
	position: relative;
}

#btnBuy a {
	display: block;
	text-indent: -900%;
	position: absolute;
	outline: none;
	text-decoration:none;
}
#btnBuy a:hover {
	background-position: left bottom;
}
#btnBuy .buy{
	width: 72px;
	height: 30px;
	background: url(images/buyNow_btn.gif) no-repeat;
}

#btnBuy_sm {
	padding: 0;
	margin: 0;
	width: 59px;
	height: 23px;
	position: relative;
}

#btnBuy_sm a 
{
	display: block;
	text-indent: -900%;
	position: absolute;
	outline: none;
	text-decoration:none;
}
#btnBuy_sm a:hover {
	background-position: left bottom;
}
#btnBuy_sm .buy_sm{
	width: 59px;
	height: 23px;
	background: url(images/buyNow_btn_sm.gif) no-repeat;
}

.dINLINE {display:inline !important;}
.dIN_BLOCK {display:inline-block !important;;}

b.highlight{color:#680863;}


/*******/
/* FAQ */
/*******/

dl.faqs      {clear: both; margin: 1em 0;}
dl.faqs dt   {background: url(images/dt_faq.png) 0 0 no-repeat; color: #444; cursor: pointer; font-weight: 500; margin: 1em 0; padding: 0 0 0 24px;}
dl.faqs dt.e {background: url(images/dt_faq_expanded.png) 0 0 no-repeat; margin: 1em 0; padding: 0 0 0 24px;}
dl.faqs dd   {background: #F7F7F7; border-left: 5px solid #CCC; font: normal 13px/18px Arial, Sans-Serif; margin: 0 0 1em 24px; padding: 1em;}
.q-controls {font-size: 11px;}

/**************/
/*Internet Reg*/
/**************/
.column  {display: inline; float: left; margin: 0 20px; overflow: hidden;}
.row     {margin: 0 auto; overflow: hidden; width: 960px;}

/**************/
/*Popup boxes*/
/**************/
.modal-header {
  padding: 5px 15px 0 5px; 
  border-bottom: 1px solid #eee;
}
.modal-body {
  position: relative;
  max-height: 250px;
  padding: 30px;
  overflow-y: auto;
}
.modal-footer {
  padding: 5px 15px 5px;
  margin-bottom: 0;
 }
  body.popup      {background: #FFF; margin: 0 auto 1em; padding: 0 1em;}
  
 #hiddenPopUpMCQ     {display:none;}
#hiddenPopUpCRI     {display:none;}
#hiddenPopUpVUE     {display:none;}
#hiddenPopUpMCQ_scores     {display:none;}
#hiddenPopUpCRI_scores     {display:none;}
#hiddenPopUpVUE     {display:none;}
#hiddenPopUpPRE     {display:none;}
#hiddenPopUpLANG     {display:none;}
#hiddenPopUpMCQSRDATES   {display:none;}
#hiddenPopUpWindows   {display:none;}