/***********************************
*frame - needed to keep all columns
*	 in the proper places.
*	 AKA - Supercontainer
***********************************/
body {
	background-color:rgb(251,251,255);
}

#frame {
	width:650px;
	margin-right:auto;
	margin-left:auto;
	margin-top:10px;
	padding:0px;
	text-align:left;
}

/**********************************
*top - stylization, prettiness
**********************************/

#header {
	padding-left: 10px;
	font: 18px arial;
	background-color:LightCyan;
	border: solid 1px #000;
}

/**********************************
*left - content
*********************************/

#content {
	width:491px; /* 500 - padding - this.border * 2 - nav.border*2 */
	padding-left:5px;
	text-align:left;
	background-color:Lavender;
	float:left;
	border: solid 1px #999;
}

/**********************************
*right - nav || other
*********************************/

#right {
	width:auto;
	padding:0px;
	text-align:left;
	float:Left;
}	

/*********************************
*blog
*********************************/

#blog { 	
	width:145px;
	padding-left: 5px;
	margin: -1px;
	font: normal 10px verdana;
	background-color:#FBFBFF;
	float:Left;
	border: solid 1px #999;
	/*border-bottom: solid 1px #999;
	border-right: solid 1px #999;
	border-top: solid 1px #999;
	*/
}

/********************************
* Navigation Menu
*******************************/
body {
	font: normal 12px verdana;
}



 ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 151px; /* Width of Menu Items */
	border-bottom: 1px solid #ccc;
}

 ul li{
	position: relative;
}

 li ul{
	position: absolute;
	left: -150px; /* Set 1px less than menu width */
	top: 0;
	display: none;
}

/* Styles for Menu Items */
 ul li a{
	display: block;
	text-decoration: none;
	color: #777;
	background: #fff; /* IE6 Bug */
	padding: 5px;
	border: 1px solid #ccc;
	border-bottom: 0;
}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

ul li a:hover { color: #E2144A; background: #f9f9f9; } /* Hover Styles */
		
li ul li a { padding: 2px 5px; } /* Sub Menu Styles */

li:hover ul, li.over ul { display: block; } /* The magic */

