/* CSS Template for [Company/Organization] */

/* all sytles should be structured as follows:
******************************************
call (descriptive element names are required) { / comments for what the call is used for if the call doesnt explain enough (eg. .nav p { \* paragraph style for copy in the nav area *\) /
	position: value;
	flaot: value; / if aplicable /
	width: value; / plese use px if possible only use % if under 100%/
	height: value; / please use px if possible and if height is absolutely neccisary please comment behind with IMPORTANT, otherwise omit /
	background: color image repat position;
	color: value;
	font-family: value;
	font-size: value; / please use pt or em if possible or size types like "small", "larger", "x-small", etc. /
	font-whatever: value; / all other font styles /
	margin: top-value right-value bottom-value left-value;
	padding: top-value right-value bottom-value left-value;
	text-whatever: value;
	display: value;
	border: width style color;
	any other styles...
}	
******************************************
if possible please use #hhh; for colors */

html, body {
	background-color: #FFF;
	margin: 0;
	padding: 0;
	text-align: center;
	background : #00213C url(/images/structure/back.gif) repeat-x top;
} 
 
#container {
	width: 712px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	font-style: normal;
	color: #000;
	background: #FFF;
	border : 2px solid White;
	margin-top: 20px;
} 
 
#nav {
	width: 712px;
	height: 30px;
	background : #D0D9BA;
	text-align: center;
	font-size: 12px;
	border-top : 2px solid White;
	border-bottom : 2px solid White;
}

#nav a {
	font-weight: bold;
	text-decoration: none;
}

#nav a:link {
	color: #000;
}

#nav a:visited {
	color: #000;
}

#nav a:hover {
	color: #682F10;
}

#leftcol {
	width: 152px;
	background: #DAE2F0;
	vertical-align: top;
}
#leftside {
	margin-top: 5px;
	margin-left: 10px;
	font-size: 11px;
	font-weight: bold;
	
}

#maincol_new {
	background-image : url(/images/structure/nav_top_corner.gif);
	background-position : top left;
	background-repeat : no-repeat;
}

#content {
	margin-top: 10px;
	margin-left: 10px;
}

.pipe {
	padding: 0px 0px 0px 5px;
}

#footer_new {
	width: 712px;
	background : #D0D9BA;
	text-align: center;
	font-size: 10px;
	border-top : 2px solid White;
}

/*Simple styles for clients to use sizes and colors etc.*/

H1{
	font-size: 16px;
	color: #000066;
	font-weight: bold;
	margin: 0px;
}

H2{
	font-size: 15px;
	font-weight: bold;
}

H3{
	font-size: 14px;
	font-weight: bold;
}

H4{
	font-size: 13px;
	font-weight: bold;
}

H5{
	font-size: 12px;
	font-weight: bold;
}

H6{
	font-size: 11px;
	font-weight: bold;
}


.left_blue{
	text-align: center;
	margin: 20px 0px 0px 0px;
	font-weight: bold;
	color: #000066;
	width: 150px;
	font-size: 12px;
}

.left{
	margin-left: 10px;
	font-size: 11px;
	width: 130px;
	text-align: center;
	margin-top: 10px;
}

.left_new {
	font-size: 11px;
	width: 138px;
	text-align: center;
}

.front_article {
	border: 1px solid #ff0000;
	background: #ffffff;
	width: 250px;
	padding: 5px;
	text-align: center;
}

.right p{
	margin: 0px 0px 4px 0px;
}

.smaller {
	font-size: 8px;
}

.small {
	font-size: 10px;
}

.big {
	font-size: 16px;
}

.bigger {
	font-size: 18px;
}

.blue {
	color: #0000a0;
}

.red {
	color: #ff0000;
}

.green {
	color: #008000;
}

.yellow {
	color: #ffff00;
}

.personnel_table_header {
	background : #302b7f;
	font : bold 14px Arial, Helvetica, sans-serif;
	color : White;
}

.personnel_table_row {
	font : 12px Arial, Helvetica, sans-serif;
	border-bottom : 1px dotted Black;
}

/* Other style names that may be used include:

1) horiz-nav - if nav needs to be a horizontile navigation
2) base-nav - if nav needs to be text links near the copyright
3) copyright - if the style needs to be different from other elements in the footer - usually used in a span within the footer div
4) something_something where there would be additional styles for sectioned layouts where the peacies fit togeather but are in seperate divs (eg. nav_top, nav_bottom or header_left, header_right etc.)
5) something_something where there would be user defined changes through either navigation or selection (eg. header_0, header_1, header_2)

*/ 

 
/* Float containers fix:
   http://www.csscreator.com/attributes/containedfloat.php */ 
.clearfix:after {
 	content: "."; 
 	display: block; 
	height: 0; 
 	clear: both; 
 	visibility: hidden;
 }
 
.clearfix {
	display: inline-block;
}

/* Hides from IE-mac */
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* End hide from IE-mac */  

@media print{  /* printer styles */ 
	#nav { /* hide the left column when printing */ 
		display:none;
	} 

	#maincol {
		width:100%;
		float:none;
	}
}



