*{margin:0;padding:0;} 

/* must declare 0 margins on everything, also for main layout components use padding, not 
vertical margins (top and bottom) to add spacing, else those margins get added to total height 
and your footer gets pushed down a bit more, creating vertical scroll bars in the browser */

html, body {
	min-height: 100%;
	height: 100%;	
}

body {font-family: Trebuchet, Arial, sans-serif;}

/* CONTAINER AND DEFAULTS
---------------------------- */

#wrapper {
	min-height: 100%;
	height: auto;
	width: 1020px;
	margin-left: auto;
	margin-right: auto;	
	background-image:url(/images/general/main_gradient.png);
	background-repeat:repeat-y;
	overflow: auto;
}

#header {
	font-weight: bold;
	font-size: 1.5em;
	padding: 5px;
	margin: 0;
	background: #43E217;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1d8c00', endColorstr='#5feb3b' gradientType='1'); /* for IE */
	background: -webkit-gradient(linear, left, right, from(#66ff00), to(#00aa44)); /* for webkit browsers */
	background: -moz-linear-gradient(left,  #66ff00,  #00aa44); /* for firefox 3.6+ */
}

h3 {
	color: #ff3366;
	padding: 20px 0 20px 0;
}

h4, h5, .green_font {
	color: #005000;
}


/* MAIN CONTENT
------------------------------ */

#three_col_container {
	min-height: 100%;
	height: auto;
	width: 1020px;
	margin: 0px;
	padding: 0px;
	
}

#gradient_wrapper {
	width: 820px;
	min-height: 100%;
	height: auto;
	margin: 0px;
	padding: 0px;
		
	overflow: auto;

}

.gradient_child {
	min-height: 100%;
	height: auto;
	float: left;
	display: inline;
	position: relative;
}



#main_col { 
	float: left;
	display: inline;
	position: relative;
	min-height: 100%;
	height: auto;
	width: 580px;
	padding-bottom: 22px;  /* must be same height as the footer */
	padding-left: 10px;
	padding-right: 10px;
	height: 100%;
	overflow: hidden;
	
}
#main_col p {
	text-align: justify;

}
.white_font {
	color: #ffffff; 
	padding-bottom: 15px;
}

.imgtext {
	font-size: 10px;
}

li {	list-style-position: inside;
	margin-left: 2em;
	padding-bottom: 6px;
	padding-top: 6px;
}

li.sprout {
	list-style-image: url(/images/uploads/sprout_sm.gif);
	list-style-position: inside;
	margin-left: 2em;
	padding-bottom: 10px;
	

}

p.image_justify {
	text-align: justify;

}
table.center {
	margin-left:auto; 
	margin-right:auto;
}

td.network, 
td.network p {
	font-size: .9em;
	text-align: left;

}

#footer {
	position: relative;
	margin-top: -22px; /* negative value of footer height */
	height: 22px;
	clear:both;
	text-align: center;
	font-weight: bold;
	font-size: .8em;
	padding-top: 5px;
	width: 1020px;
	margin-left: auto;
	margin-right: auto;
	background: #43e217;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#66ff00', endColorstr='#00aa44', gradientType='1'); /* for IE */
	-ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#66ff00', endColorstr='#00aa44', gradientType='1'); /* for IE 8*/
	background: -webkit-gradient(linear, left, right, from(#66ff00), to(#00aa44)); /* for webkit browsers */
	background: -moz-linear-gradient(left,  #66ff00,  #00aa44); /* for firefox 3.6+ */
} 

/*Opera Fix*/
body:before {/* thanks to Maleika (Kohoutec)*/
height:100%;
float:left;
width:0;
margin-top:-32767px;/* thank you Erik J - negate effect of float*/
}


/* NAVIGATION MENUS LEFT AND RIGHT 
----------------------------------*/

#left_sidebar {
	float: left;
	display: inline;
	position: relative;
	width: 175px;
	padding: 20px 10px 10px 0;
	overflow: auto;	
}

#right_sidebar {
	width: 185px;
	overflow: auto;
}

#logo {
	width: 175px;
	padding-top: 10px;
	padding-left: 10px;
		
}

#right_menu {	
	width: 185px;
	position:absolute;
	bottom: 24px;
	position: fixed;
}

ul.sub {
	list-style-type: none;
	text-decoration: none;	
}

li.sub {
	list-style-type: none;
	text-decoration: none;
	padding-top: 5px;
	padding-bottom: 5px;
	border-bottom: 1px solid #ff3366;
	
}



/* PSUEDOCLASSES
----------------------------*/

a:link {
	color:#000; /* unvisited link, black */
	text-decoration: none;
	font-size: 15px;
}      
	
a:visited {
	color:#9e3186;
	text-decoration: none;  /* visited link, purple */
	font-size: 15px;
} 
	
a:hover {
	color:#0000FF; /* mouse over link, blue */
}  
	
a:active {
	color:#0000FF; /* selected link, blue */
}  

  
