/* CSS Document - positioning
contains top,  */
html, body{
	margin:9px; 
	padding:0px;
	background-color:#F1E5B5;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	}
#frame{
	background:#FFF;
	width:700px;		/* the main content width */
	border:solid 1px #FFF; 	/* sets the border width */
	}
#body {
	width:700px;
	background:#FFF;
	padding:0px;
	margin:0px;
	}
#top{
	width:100%;
	background:#ABC;
	height:174px; /* optional */
	}
#nav{
	z-index:2;
	width:100%;
	text-align:left;
	height:28px;
	padding-bottom:4px;
	border-bottom:solid 4px #ECB328;
	}
#c1{
	padding:0px;
	margin:0px;
	position:relative;
	width:470px;
	background:#FFF;
	border-left:230px solid #009FC6;
	border-top:4px solid #009FC6;	

/*border-right:solid #FFFFE8 200px; - set this to switch to right menu*/   /*set all four properties to affect the layout*/
	}
#c2{
	border-top:solid 4px #FFF;
	margin-left:-230px;
	clear:none;
	text-align:left;
	position:relative;
	width:700px;
	float:left;
/*float:right; - set this to switch to right menu*/
/*right-200px; - set this to switch to right menu */ 
	}
#left{
	width:210px;
	text-align:justify;
	float:left;
	background:#009FC6;
	color:#FFF;
	padding:10px;
	padding-top:5px;
	}
#right{
	width:430px;
	padding:20px;
	float:left;
	text-align:justify;
	background:#FFF;
	padding-top:00px;
	color:#3F90A3;
	/*if width=500+ this div will flow below the left div*/
	/*float:right; - set this to switch to right menu */
	}
#bottom{
	width:100%;
	background:#DDD;
	height:18px;
	clear:both;
	}