/* 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: 10px 0px 0px 0px;
  	padding: 0;
 	text-align: center;
} 
 
#container {
	position: relative;
	width: 725px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	color: #000;
} 
 
#header {
 	position: relative; 
	width: 100%;
} 

#content {
	width: 725px;
	position: relative;
}

HR {
	height: 1px;
	color : #5888D8;
	background-color : #5888D8;
}

.wheat {
	background: url(/images/structure/wheat_back.jpg) no-repeat top right;
}

#green .wheat H1 {
	font-size: 26px;
	margin-top: 3px;
}

.wheat H2{
	font-size: 14px;
	margin-top: 2px;
	margin-bottom: 2px;
	color: #FFF;
}

.news {
	background: #246229;
}

.news H2 {
	margin: 0px;
	font-size: 14px;
	color: #FFF;
}

.news HR {
	height: 1px;
	color: #387838;
	background-color: #387838;
}

#green {
	width: 715px;
	postion: relative;
	background: #307635;
	padding: 5px;
	color: #FFF;
}

#green H1 {
	color: #F8D558;
	font-size: 20px;
	margin: 0px;
}

#footer{
	width: 725px;
	text-align: center;
	font-size: 11px;
	width: 100%;
	background : url(/images/structure/cfc_distributors_footer_back.gif) no-repeat bottom;
	color: #FFF;
}

#footer A:link, #green A:link {
	color: #FFF;
}

#footer A:visited, #green A:visited {
	color: #FFF;
}

#footer A:hover, #green A:hover {
	color: #F8D558;
}

#footer .links A {
	font-size: 12px;
	font-weight: bold;
	margin-right:10px;
}

#block1 {
	position: absolute;
	top: 200px;
	left: 10px;
	width: 221px;
	height: 105px;
	padding: 0px 5px 0px 5px;
}

#block2 {
	position: absolute;
	top: 200px;
	left: 246px;
	width: 221px;
	height: 105px;
	padding: 0px 5px 0px 5px;
}

#block3 {
	position: absolute;
	top: 200px;
	left: 482px;
	width: 221px;
	height: 105px;
	padding: 0px 5px 0px 5px;
}

#block1 H2, #block2 H2, #block3 H2 {
	color: #FFF;
	margin-top: 4px;
	margin-bottom: 7px;
	font-size: 14px;
}

#block1 H3, #block2 H3, #block3 H3 {
	color: #4888f8;
	margin: 2px;
	font-size: 12px;
}

#block1 HR, #block2 HR, #block3 HR {
	color: #d7a969;
	background-color: #d7a969;
	height: 1px;
}

A:link {
	color: #4888f8;
}

A:visited {
	color: #4888f8;
}

A:hover {
	color: #d7a969;
}

H2 {
	color: #5888D8;
	font-size: 16px;
	margin-top: 2px;
	margin-bottom: 2px;
}

/*Simple styles for clients to use sizes and colors etc.*/

.smaller {
	font-size: 8px;
}

.small {
	font-size: 10px;
}

.big {
	font-size: 16px;
}

.bigger {
	font-size: 18px;
}

.blue {
	color: #0000a0;
}

.red {
	color: #ff0000;
}

.green {
	color: #246229;
}

.yellow {
	color: #F8D558;
}


/* 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)

*/ 