@charset "utf-8";
/* CSS Document */
/****************************** Main Css ******************************/
*/
html, body {border: 0; margin: 0; padding: 0; height: auto;}
body {	
	font: 11px arial, helvetica, sans-serif;
	color: #000000; /*Font color*/
	background: #1b3601 url(../images/bg.jpg) repeat-x;

	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
}
	p {}
	p, ul, ol { margin: 0; padding: 0; }
	img, img a { border: none; }
	form { margin: 0; padding: 0; }
	
/************************* Global linking *************************/	
a:link {
	color: #FF0000;
	text-decoration: none;
}
a:visited {
	color: #FF0000;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:active {
	color: #0099FF;
}
/************************* Wrapper Css *************************/	
#Wrapper {
	width: 1000px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	position:relative;
}

/****************************** Header Css ******************************/
.col-topbottom{
	width: 1000px;
	float:left;
}

/****************************** side Nav Css ******************************/
.col-side {
	width: 150px;
	float:left;
}

/****************************** Content area Css ******************************/
#col-flash {
	width: 700px;
	height:444px;
	float:left;
}

/****************************** bottom panel Css ******************************/
#col-bottom {
	width: 1000px;
	height: 300px;/**you don't need to define height here for actual work**/
	float:left
}

/****************************** Clear float Css ******************************/	
#clear{
	clear:both;
}



