/* 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: #ffffff;
 	margin: 0;
  	padding: 0;
 	text-align: center;
} 
 
#header {
 	position: relative; 
	width: 1101px;
	height: 279px;
	text-align: center;
} 

#header_nav {
	position: absolute;
	text-align: center;
	color: #ffffff;
	top: 250px;
	left: 100px;
}

#header_logo {
	position: absolute;
	left: 0px;
	top: 75px;
	width: 381px;
	height: 144px;
}

#container {
	position: relative;
	width: 1000px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-decoration: none;
	text-align: left;
	color: #000000;
} 

#wrapper { /* Background image for left side should go here if needed - will resize to content - OR can put it in the body style */
 	text-align: left; 
 	/*border: 1px solid #0FF; */
	width: 100%;
} 
 


#nav {
	position: relative;
	float: left;
	width: 240px;
	padding: 2px 0px 0px 2px;
	margin-top: 20px;
}

#company_logos {
	position: relative;
	width: 230px;
	float: left;
	margin-top:  20px;
	text-align: center;
}

#content {
	position: relative;
	float: right;
	width: 740px;
	padding : 5px 5px 0px 5px;
	display: inline;
	min-height: 750px;
}

#content_home {
	position: relative;
	float: right;
	width: 740px;
	padding : 5px 5px 0px 5px;
	display: inline;
	min-height: 600px;
}


#footer{
	position: relative;
	text-align: center;
	font-size: 12px;
	width: 1101px;
	min-height: 279px;
}

#footer_graphic {
	position: relative;
	float: left;
	margin-left: -100px;
	width: 1101px;
	height: 279px;
}

#blog_icon {
	position: absolute;
	text-align: center;
	width: 173px;
	height: 106px;
	top: -106px;
	left: 10px;
	color: #fffffff;
}

#webmail {
	position: absolute;
	text-align: right;
	right: 150px;
	top: 5px;
	width: 140px;
	height: 35px;
}

#social_icons {
	position: absolute;
	text-align: right;
	right: 300px;
	top: 45px;
	width: 120px;
	height: 28px;
}

#footer_info {
	position: absolute;
	text-align: center;
	right: 100px;
	top: 60px;
	width: 200px;
}

/*Simple styles for clients to use sizes and colors etc.*/


.red_headers  {
	font-family: Candara, Arial, Helvetica, sans-serif;
	color: #d04949;
	font-size: 16px;
	font-weight: bold;
}

.blue_headers  {
	font-family: Candara, Arial, Helvetica, sans-serif;
	color: #4992d0;
	font-size: 16px;
	font-weight: bold;
}



a:hover { 
	color: #d04a49; 
	text-decoration: underline;
 }
 
.maintext {
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-decoration: none;
	text-align: left;
}

.sidebar {
	color: #1774b3;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 17px;
	text-decoration: none;
	text-align: left;
	font-weight: bold;
}

.toplinks {
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-decoration: none;
	text-align: left;
	font-weight: bold;
}

.footerinfo {
	color: #1774b3;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration: none;
	text-align: left;
	font-weight: bold;
}

.blogimagetext {
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
}
.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)

*/  

@media print{  /* printer styles */ 
	#nav { /* hide the left column when printing */ 
		display:none;
	} 

	#maincol {
		width:100%;
		float:none;
	}
}