/* 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;
	
} 
 
#container {
	position: relative;
	width: 890px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11pt;
	font-style: normal;
	color: #00788A;
	z-index: 0;
	
	}
 
#header {
	position: relative;
	height: 171px; 	/* IMPORTANT */
	z-index: 1;
	width: 890px;
	
}

.redbar {
	width: 870px;
	height: 50px;
	background-color: #B32018;
	padding: 10px 20px 10px 0px;
	text-align: right;
}

.logo  {
	position: absolute;
	left: -16px;
	top: 0px;
	z-index: 2;	
}
 
#nav {
	position: relative;
	padding: 2px 0px 0px 2px;
	color: #00788A;
	font-family: Arial;  
	text-align: right;
		
}

#nav a {
	color: #00788A;
	
}

#nav a:link {
	color: #00788A;

}

#nav a:visited {
	color: #00788A;
}

#nav a:hover {
	color: #00788A;
}


#small {
	font-size: 12px;
}

#line {
	background: url(/2009/images/structure/top_dots.gif) repeat-x;
	width: 890px;
	height: 4px;
	margin-top: 5px;
}

#large {
	font-size: 15px;
}


#maincol {
	width: 890px;
}

#image {
	padding: 14px;
	text-align: center;
	background: #733F95;
}

#imagestable {
	position: absolute;
	top: 422px;
	left: auto;
	text-align: center;
	width: 100%;

}

#imagestable td {
	padding-left: 6px;
	padding-right: 6px;
}

#imagestable img {
	border: 3px solid #00788A;
}


#content {
	position: relative;
	float: right;
	padding : 150px 5px 5px 5px;
	background-color: #CAEAF5;
	width: 741px;
}

.buttonheading img {
	border: 0;
}

.coloredbar {
	background : #F6DD7D url(/2009/images/structure/color_bar.gif) no-repeat top;
	width: 139px;
}


#footer{
	text-align: center;
	font-size: 8pt;
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
}

#footer a {
	color: #00788A;
}

#footer a:link {
	color: #00788A;
}

#footer a:visited {
	color: #00788A;
}

#footer a:hover {
	color: #00788A;
}

.contentpaneopen {
	padding: 0px;
	margin: 0px;
	width:100%;
}

.contentpaneopen a:link {
	color: #00788A;
}

.contentpaneopen a:visited {
	color: #00788A;
}

.contentpaneopen a:hover {
	color: #800040;
}

HR {
	background: url(/2009/images/structure/hr_dots.gif) ! important ;
	height: 22px ! important ;
	border: 0px ! important;
	padding: 0px ! important ;
}

/*Simple styles for clients to use sizes and colors etc.*/

h1 {
	font-size: 26px;
	margin: 2px 0px 0px 0px;
     color: #662E8E;
     font-family: Times New Roman;
     font-style: italic;
     font-weight: bolder;
}

h2 {
	font-size: 18px;
	margin: 0px;
     color: #662E8E;
     font-family: Times New Roman;
     font-style: italic;
}
	
h3 {
	font-size: 16px;
	margin: 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;
}


/* 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;
	}
	
	.logo {
		padding-left: 300px;
	}
	
	.redbar {
		display: none;
	}
	
	#image {
		display: none;
	}
	
	#imagestable {
		display: none;
	}
	
	.donate {
		display: none;
	}
	.content {
	padding : 5px 5px 5px 5px;
	}
}

img.logo_link {
     border-style: none;
}


.pagenav, .pagenavcounter, .pagenavbar {
     font-size: 8pt;
}

td.honorroll {
     width: 34%;
     font-size: 10pt;
     vertical-align: top;
     padding: 0px 3px 0px 3px;
}

table.honorroll {
     width: 100%;
}



