body {margin: 0; padding: 0; background: #000066}
* {margin: 0; padding: 0; border: 2; font-family:  Arial, sans-serif}

/*----------------------------------------------Basic styles------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {font-family: Arial, Arial, sans-serif; margin: 15px 0 0 5px; color: #000; font-weight: bold; text-decoration: none}

h1 em, h2 em, h3 em, h4 em, h5 em, h6 em {font-family: Arial, Arial, sans-serif; font-weight: normal}  /* italic words in titles */

h1 {position: absolute; right: 0px; top: 30px; font-size: 2.25em; letter-spacing: 0.1em; line-height: 1.00em; padding-right: 10px; border-right: 15px solid #000}

h1:first-letter {font-family: Arial, Arial, serif; font-size: 2.25em} /* styles the first letter of the main title to make it large */

h2 {font-size: .8em; }
p, ul, ol {margin: 10px 10px 0 7px; font-family: Tahoma, Arial; font-size: 0.75em; line-height: 1.60em; color: #000; }
p span {font-size: 1.50em; font-weight: bold} /* shouting words */
ul {list-style: inside square} /* general lists */
/*-----------------------------------------------Layout DIVS------------------------------------------------*/

#container {  /* keeps everything together */

position: relative; 

margin: 0 auto; 

width: 790px;

height: 1600px; 

background: #FFFFFF;  /* Important image, do not remove */

border-color: #92ce19;

border-style: solid;

overflow: hidden;

}



#hdr {  /* div containing h1, nav and grapes image */

float: left; 

width: 790px; 

height: 180px; 

background: #FFFFFF  /* Image of Grapes */

}



#lftcol {   /* left column */

position: absolute;

left: 0px;

top: 200px;

margin-left: 0px;  /* leave this so that background image lines up with edge of this div */

width: 160px;

height: 1401px; 

background: #000066;

overflow: hidden

}



#rgtcol {

	position: absolute;

	left:172px;

	width: 610px;

	top: 187px;

	padding-bottom: 30px;

	background: transparent;

	overflow: hidden;

	height: 1400px;

}  /* right column */


/*---------------------------------------------Main Navigation-----------------------------------------------*/



ul#nav {   /* navigation list */

	margin: 53px 0 20px 0; /* the 53px is where the nav begins (margin top) */

	padding: 0;

	list-style: none inside

}

	

ul#nav li {float: left; display: block}



ul#nav li a {

	width: 170px;

	margin: 3px 0 0 0;  /* a little top margin */

	border: 0;

	border-left: 10px solid #CCCC33;

	padding: 10px 5px;

	font-family: Georgia, Georgia, serif;

	font-weight: normal;

	text-decoration: none;

	display: block;

	color: #450F1F;

	background: #D9D93C

}



ul#nav li a#current {border-color: #fff}   /* current page, move id in the xhtml when creating a new page */



ul#nav li a:hover {background: #9EA219; color: #fff}





	
