@charset "utf-8";
/* CSS Document */
* {outline: none;}
body, div, ul, ol, li, h1, h2, h3, h4, h5, h6, p {margin: 0; padding: 0;}
h1, h2, h3, h4, h5, h6 {font-size: 100%;}
ol, ul {list-style: none;}
img {border: 0;}


html {
	background:url(../High/Glossary/images/bg_header.jpg) top left repeat-x #202027; /*dark gray color*/
}

div#hbg {
	position:relative;
	width:960px;
	background:#FFF;
    margin: 0 auto;
}

div#header {
	float:left;
	height:150px;
	width:960px;
	background:url(../images/header/CCHead_noNavApple960_150.png) no-repeat transparent;
}

a:link {
	text-decoration:none;
	color:#00AEEF;
}
a:visited {
	text-decoration:underline;
	color: #00AEEF;
}

a:hover{
text-decoration:underline;
	color: #999;}

a:active {
	text-decoration:underline;
	color: #999;
}



/*Styling for Menu Navigation*/

.mainNav {
  /*position: relative;  this gives weird white top border over header*/ 
  min-width: 960px;
  max-width: 960px;
  height: 45px; /* corresponds to 'line-height' of a.navbartitle below */
  margin: 0; border: 0; padding: 0;
  background-color: #fff; 
  font-size: 16px;
}


a.navbartitle {
  display: block; 
  float: left;
  color: white;
  background-color:  #00AEEF;
  font-family: Verdana, Arial, Geneva,  Helvetica, sans-serif;
  font-size: 1em;
  font-weight: bold;
  margin: 0; border: 0; padding: 0;
  line-height: 40px; /* corresponds to 'top' value of .submenu below */
  text-align: center;
  text-decoration:none;
}
a.navbartitle:hover {
  background-color: #0079a7;
}
/* menu title widths */
#t1 { width: 192px; background-color: #b30000;} /* home color */
#t2 { width: 192px; background-color: #ff6929;} /* elem color */
#t3 { width: 192px; background-color: #ffd119;} /* middle color */
#t4 { width: 192px; background-color: #008523;} /* high color */
#t5 { width: 192px; background-color: #1c39ad;} /* teachers color */
/* We just specify a fixed width for each menu title. Then, down below we specify
    a fixed left position for the corresponding submenus (e.g. #products_submenu, etc.)
    Using these fixed values isn't as elegant as just letting the text of each 
    menu title determine the width of the menu titles and position of the submenus,
    but we found this hardwired approach resulted in fewer cross-browser/cross-OS 
    formatting glitches -- and it's pretty easy to adjust these title widths and the
    corresponding submenu 'left' positions below, just by eyeballing them whenever
    we need to change the navbar menu titles (which isn't often). */

.submenu {
  position:absolute;
  z-index: 2;
  top: 45px; /* corresponds to line-height of a.navbartitle above */
  padding: 0; margin: 0; 
  /*width:250px; /* If adjust this, then adjust width of .submenu below a too */
  width:200px; /* If adjust this, then adjust width of .submenu below a too */
  color: white;
  background-color:  #00AEEF;
  border: 1px solid #00AEEF; /* box around entire sub-menu */
  font-family: Verdana, Arial, Geneva,  Helvetica, sans-serif;
  font-size: 1em;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  -moz-border-radius-bottomleft: 7px;
  -moz-border-radius-bottomright: 7px;
  -webkit-border-bottom-left-radius:7px;
  -webkit-border-bottom-right-radius: 7px;
}
/*submenu ul li {
  text-shadow:#666;	
}*/
#elemColor {
  /*background-color:#ff6929;*/
    border-left: 10px solid #ff6929;
	background-color: #fff;
}
#middleColor {
/*  background-color:#ffd119;*/
    border-left: 10px solid #ffd119;
	background-color: #fff;
}
#highColor {
  /*background-color:#008523;*/
    border-left: 10px solid #008523;
	background-color: #fff;
}
#teachersColor {
 /* background-color:#1c39ad;*/
    border-left: 10px solid #1c39ad;
	background-color: #fff;
}

/* Fix IE formatting quirks. */
* html .submenu { width: 148px; } /* IE needs narrower than width of .submenu above */
/* End */

/* position of each sub menu */
/* We just eyeball the position of each submenu here -- can move left or right as needed. 
   If you adjust menu title text, you might want to adjust these too. */
#home_submenu {  left: 0; top:157px; visibility: hidden;  }
#elem_submenu {  left: 190px; top:157px; visibility: hidden;  }
#middle_submenu {  left: 380px; top:157px; visibility: hidden; }
#high_submenu {  left: 570px; top:157px; visibility: hidden; }
#teachers_submenu { left: 760px; top:157px; visibility: hidden; }
/* Note, each submenu is hidden when the page loads - then made visible when
    the mouse goes over the menu title. Using the 'visibility' property instead
    of using the 'display' property avoided a bug in some versions of Safari. 
    (The bug is pretty where esoteric: The browser ignored the 'hover' property 
    on 'li' objects inside an object whose display property was set to 'none' 
    when the page loaded...) Using the 'visibility' property instead of 'display'
    would normaly take up extra room on the page, but that's avoided here by putting
    the submenu on a second layer: see 'position: absolute' and 'z-index: 2'
    in .submenu definition, higher up this page. */

.submenu a
{
  display: block;
  color: #eee; 
  /*background-color: #0079A7;*/
  /*width: 192px;  This should be width of .submenu above minus right-side padding on next line */
  min-height: 25px;
  padding: 5px 0px 2px 20px;
  text-decoration: none;
  /*background-color: #00AEEF; */
  border-bottom: #0079A7 dotted 1px; 
  border-top: 0; border-left: 0; border-right: 0;
}
ul { position: relative; display: block; }
li { position: relative; display: block; }

.submenubox { 
  margin:0; 
  padding:0; 
  border:0;
}
.submenubox ul
{
  margin: 0; padding: 0; border: 0;
  list-style-type: none;
}

.submenubox ul li { 
  margin: 0; padding: 0; border: 0;
}

.submenubox ul li a:link { 
     color: #272720;
}
.submenubox ul li a:visited {  color: #202027; }
.submenubox ul li a:hover
{
  /*color: #c6e8e2; text color for submenu items */
  background-color: #00AEEF; /*color of submenu background*/
  border-bottom: #0079A7 dotted 1px; 
}
.submenlink{
	 color: #202027;
	 font-size: 1em;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-transform: uppercase;
	/*text-shadow: 1px 1px #666;*/
}

h1{
	margin: 165px 20px 50px 20px;
	font-size: 1.75em;
	font-family: Arial, Helvetica, sans-serif;
	/*font-weight: bold;*/
	text-transform: uppercase;
	letter-spacing:5px;
	color:#00AEEF;
}
h2{
	margin: 3% 2% 2% 2%;
	font-size: 1em;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-family: Arial, Helvetica, sans-serif;
	border-bottom:1px solid #0483BA;
}

h3{
	margin: 0% 2% 0% 2%;
	font-size: 1em;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-family: Arial, Helvetica, sans-serif;
}

h3.last{
	margin: 0% 2% 0% 2%;
	border-bottom:1px solid #0483BA;
	font-size: 1em;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-family: Arial, Helvetica, sans-serif;
}

h3.HOD-subhead {
  text-transform: none;
  margin-top: .76em;
  color: #213f99;
  padding-bottom: .33rem;
}

h2.HOD-header {
  font-size: 1.13em;
  text-transform: none;
  color: #213f99;
  
}

.HOD-segment {
  border: 1px solid #afbada;
}

body{
	/*color: auto; #15477A; blue font color*/
    font-family: Arial,Helvetica,sans-serif;
  /*font-size: .9em;*/
}

img#photo {
	float:left;
	margin: 13px 10px 5px 30px;
	-moz-box-shadow: 2px 2px 2px #272720;
    -webkit-box-shadow: 2px 2px 2px #272720;
    box-shadow: 2px 2px 2px #272720;
}

img#photor {
	float:right;
	margin: 13px 45px 5px 30px;
	-moz-box-shadow: 2px 2px 2px #272720;
    -webkit-box-shadow: 2px 2px 2px #272720;
    box-shadow: 2px 2px 2px #272720;
}

li{
	margin: 1% 4% 0% 4%;
}

p {
	/*color: auto; #15477A; blue font color*/
  font-family: Arial,Helvetica,sans-serif;
  font-size: .9em;
	margin: 1% 4% 0% 4%;
}

p.HOD-para {
  font-size: 1em;
  margin-bottom: .47rem;
  line-height: 1.23em;
}

p.notice{
	color:#C00;
	font-weight:bold;
	font-size:1.25em;
}

#searchArea{
	float:right;
	width:350px;
	height:103px;
	border:none;
	padding:0;
	background-image:url(cssImages/10QuickTabsHolder.png);
	background-repeat:no-repeat;
}
/* B E G I N  G S A  S E A R C H */

#searchArea form fieldset {
	display:block;
	float:right;
	margin:10px 10px 0 0;
	padding:0px;
	outline:none;
	border:none;
}
#searchArea form fieldset legend {
	display:block;
	font-family:'Oswald', sans-serif;
	font-size:11px;
	letter-spacing:.09em;
	color:#fff;
	float:right;
	clear:both;
	margin-bottom:10px;
}
#GSASearchField {
	float:right;
	margin:0 7px 0 0;
	height:25px;
	width:155px;
	max-height:21px;
	padding-left:6px;
	font-size:12px;
	border-radius:7px;
	-moz-border-radius:7px;
	-webkit-border-radius:7px;
	border: 1px #a6c9e2 solid;
	font-family:'Oswald',sans-serif;
	letter-spacing:.1em;
	color:#999999;	
}
#GSASearchField:focus {
	background-color: #fff;
	border-color: #448dae;
	color:#026890;
}
#GSASearchField:hover {
	background-color:#ffd119;	
}
#GSAButtonBox {
	display:block;
	float:right;
	clear:right;
	text-align:center;
}
input.ui-button {
	display:block;
	font-family:'Oswald', sans-serif;
	font-size:11px;
	padding: 0.3em 1em 0.3em 1em;
	margin-bottom:5px;
}
.helpText {
	display:block;
	margin:1px auto 0px auto;
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	color:#fff;
}
#searchArea #vgaHome {
	display:block;
	font-family:'Oswald', sans-serif;
	font-size:11px;
	letter-spacing:.09em;
	color:#fff;
	float:right;
	clear:both;
	margin: 3px 15px 0 0;
}
/* E N D  G S A  S E A R C H */

/* HOD app steps */
#HODAppSteps {
	display: none;	
}
#HODAppSteps a:link, #HODAppSteps a:visited {
    font-weight:bold;
	color:#00AEEF;
	text-decoration:underline;
}
#HODAppSteps a:hover, #HODAppSteps a:active {
    font-weight:bold;
	color:#999;
	text-decoration:underline;
}
/* /HOD app steps */
#AgeValidate {
	margin-bottom: 1.3em;	
	font-size: 11px;
}
#AgeValidate span a {
	text-decoration: none;	
}
#submitBttn {
	margin-top: 1.3em;	
	display: block;
}
#statusMessage {
	width: 30%;
	margin: 0 auto 0 auto;
	font-family: oswald,sans-serif;
	font-size: 1.4em;
	color: #213F99;	
}
.noteBlock {
    margin-bottom:.88em;
}
.subHeadCent {
    width: 30%;
	margin: 1.3em auto 0 auto;
	font-family: oswald,sans-serif;
	font-size: 1.4em;
	color: #213F99;
	text-align:center;
	text-transform:none;
	font-weight:normal;
}
/* floated containers to house imagery */
.contFL {
	float:left;
	margin:.94em .94em .94em 4%;
}
.contFR {
	float:right;
	margin:.94em 4% .94em .94em;
}
.contCent {
	width:40%;
	margin:.94em auto .94em auto;
}
/* /floated containers */
/* page imagery treatment */
.HODPageImage {
    box-shadow: 2px 2px 2px #272720;	
}
/* /page imagery treatment */