/* Grapes, web template for business or for fun */
/* By Dave Reeder, www.davereederdesign.com */

body {
	margin: 0;
	padding: 0;
	background-color: #333333;
}

* {margin: 0; padding: 0; border: 0; font-family:  Arial, Helvetica, sans-serif}


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

h1{font-family: "Times New Roman", Times, serif; margin: 15px 0 0 5px; color: #ffffcc; font-weight: bold; text-decoration: none}
h2, h3, h4 {font-family: "Times New Roman", Times, serif; margin: 15px 0 0 5px; color: #000066; font-weight: bold; text-decoration: none}
h1 em, h2 em, h3 em, h4 em {font-family: "Times New Roman", Times, serif; font-weight: bold}  /* italic words in titles */

h1 {
	position: absolute;
	right: 8px;
	top: 11px;
	font-size: 5em;
	letter-spacing: 0.1em;
	line-height: 1em;
	padding-right: 10px;
}
/*h1:first-letter {font-family: "Times New Roman", Times, serif; font-size: 2.25em} /* styles the first letter of the main title to make it large */
 

p#tagline {
	position: absolute;
	right: 1px;
	top: 97px;
	font-style: normal;
	color: #FFFFCC;
	font-size: .9em;
	width: 312px;
	height: 26px;
}  /* sits under main title */

h2 {font-size: 1.30em; letter-spacing: 0.05em}

p, ul, ol {margin: 10px 10px 0 7px; font-size: 0.8em; line-height: 1.6em; color: #000; letter-spacing: 0.05em}

code {font-family: monospace; font-size: 1.20em; color: #E20000}

p span {font-size: 1.50em; font-weight: bold} /* shouting words */

a:link, a:visited {color: #792533; font-weight: bold; text-decoration: none; border-bottom: 1px solid #792533}
a:hover, a:active {color: #fff; border-color: #FFFFFF}

ul {list-style: inside square} /* general lists */

acronym {font-weight: bold; border-bottom: 1px dashed #000; cursor: help}


/*-----------------------------------------------Layout DIVS------------------------------------------------*/

#container {  /* keeps everything together */
	position: relative;
	margin: 0 auto;
	width: 800px;
	background: url(images/bkgrnd.gif) 0 0 repeat-y #CCCC33;  /* Important image, do not remove */
	overflow: hidden;
	background-color: #FFFFCC;
}

#hdr {  /* div containing h1, nav and grapes image */
	float: left;
	width: 800px;
	height: 250px;
	background-color: #000066;
	background-image: url(images/curve-hdr-770.png);
	background-repeat: no-repeat;
	background-position: right 0;
}

#lftcol {   /* left column */
position: absolute;
left: -21px;
top: 250px;
margin-left: 50px;  /* leave this so that background image lines up with edge of this div */
width: 200px; 
background: transparent;
overflow: hidden
}

#rgtcol {float: right; width: 550px; padding-bottom: 30px; background: transparent; overflow: hidden}  /* right column */

#bttmbar {
	float: right;
	text-align: center;
	font-size: 0.7em;
	height: 4em;
	line-height: 4em;
	width: 770px;
	background-color: #FFFFCC;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #000066;
}

#quote {    /* Quote box in left column */
	float: left;
	margin: 10px 0 20px 10px;
	padding: 10px 0;
	width: 170px;
	text-align: center;
	background: url(images/quote.gif) no-repeat 0 0	
}

#quote p {color: #444; font-size: 0.80em; font-weight: bold; line-height: 2.00em}  /* Quote box text */


/*---------------------------------------------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;
	border: thin none #000066;
}

ul#nav li a {
	width: 170px;
	margin: 3px 0 0 0;
	padding: 10px 5px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-decoration: none;
	display: block;
	color: #000066;
	border-top-width: 0;
	border-right-width: 0;
	border-bottom-width: 0;
	border-left-width: 10px;
	border-left-style: solid;
	border-left-color: #FFFFCC;
	background-color: #FFFF99;
}

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

ul#nav li a:hover {
	color: #fff;
	background-color: #000066;
}


	
