/* tabbed sub pages */

#sub-nav-container {


  padding:4px;
}

#sub-nav {
 clear:both;
 background-color:#333;

 height:34px;
 line-height:34px;
 font-family:Arial, Helvetica, sans-serif;
 font-size:12px;
 font-weight:bold;
 
}



#sub-navtabs li {
  float:left;
  list-style:none;
  color:#ccc;


}

#sub-navtabs li a {
   display:block;
 text-decoration:none;

 padding:0 14px 0 14px;
 color:#FFF;
 border-right:1px solid #555;
 }
 


#sub-navtabs li a:hover {
 background-color:#245593;
}


/* hide all the sube pages by default */
/* when the sub-navtab is clicked, javascript will hide all  sub pages then make the subpage_x that was clicked visible */

#subpage_1, #subpage_2, #subpage_3, #subpage_4, #subpage_5, #subpage_6, #subpage_6, #subpage_7, #subpage_8 {
 padding:12px 4px 12px 4px;
 clear:both;
 height:500px;
 overflow:auto;
 display:none;
 }
 
 #subpage_1 { display:block; } /* display #subpage_1 by default when page is loaded */
 
#tab_1 { background-color:#245593; }
