/* CSS Document for basiclayout1.html */
/*  Credit for the code that fixes the issue of transparency in IE 5.5 and 6.0:
	IE5.5+ PNG Alpha Fix v1.0RC4
    (c) 2004-2005 Angus Turnbull http://www.twinhelix.com
    This is licensed under the CC-GNU LGPL, version 2.1 or later.*/


/* ===================
GENERAL
=================== */

html, body, ul, ol, li, p, h1, h2, h3, h4, h5, h6, form, fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}


body /* BODY is set with a horizontally repeating gold-to-peach
 gradient image. */
{
	font: 100.01% Arial, Helvetica, sans-serif;
	color: #3A2107;
	background: #FFF2AD url(images/basiclayout1/sunset_gradient_layers_c.jpg) repeat-x;
	text-align: center;
}



#wrapper 
{
	margin: 0 auto;
	width: 770px;
	text-align: left;
	background: url(images/basiclayout1/sunset_lg.jpg) no-repeat;  
	border-right: 4px double #805427;
	position: relative;
}



/* ===================
TOP BANNER
=================== */

#banner 
{
	height: 100px;
	color: inherit;
	background: #835320 url(images/835320.jpg) no-repeat;
}



/* ===================
NAVIGATION (across top)
=================== */

#nav {
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 0;
	margin-left: 5px;
}

#nav ul  /* Zeros out the NAV DIV unordered list's padding and margins; 
redundant but... */
{
	padding: 0;
	margin: 0;
}

#nav ul li  /* The NAV DIV unordered list items are changed from block 
to inline, and their browser-default padding and margins are zeroed out. */
{
	display: inline;
	padding: 0;
	margin: 0;
}

#nav ul li a {
	font-size: 80%;
	color: #3A2107;
	background-color: inherit;
	text-decoration: none;
	padding: 1px 7px 1px 7px;
	text-align: left;
	width: 9em;
	font-weight: bold;
	letter-spacing: 0.1em;
}

#nav ul li span {
	font-size: 80%;
	font-weight: bold;
	letter-spacing: 0.1em;
}

#nav ul li a:hover, #nav ul li a:focus {
	color: #FFD7AC;
	background-color: #835420;
}


/* ===================
LEFT COLUMN
=================== */

#leftcol  {
	margin: 0;
	padding-left: 10px;
	padding-top: 30px;
	padding-bottom: 30px;
	float: left;
	width: 250px;
	height: 430px;
}

#sidebar ul   /* Paragraphs in the LEFTCOL DIV are 90% of the body text 
size, and have a 10px bottom margin. */
{
	color: #3A2107;
	background-color: inherit;
	font-size: 1em;
	list-style-type: none;
	margin: 0;
}

#leftcol h1 {
	margin-bottom: 10px;
	color: #3A2107;
	background-color: inherit;
	font-size: 120%;
	font-weight: normal;
}

#sidebar ul li a:link{
	color: #FFF2AD;
	background-color: inherit;
	text-decoration: underline;
	
}

#sidebar ul li a:visited {
	color: #c6b6d9;
	background-color: inherit;
}

#sidebar ul li a:hover, #leftcol ul li a:active   
/* The links change to gold with 
a gold underline and a dark background on mouseover. */
{
	color: #FFF2AD;
	background-color: #835320;
	text-decoration: underline;
}

/* see top for IE opacity fix credits and link */
img, div { behavior: url(iepngfix.htc) }

#sidebar {
	width: 150px;
	color: inherit;
	background-image: url(images/basiclayout1/bg.png);
}

#sidebar a {
	display: block;
	padding: 5px 0;
	width: 150px; 
}

#sidebar li { /* this is necessary for IE to display properly*/
	display: inline;
}

/* ===================
RIGHT COLUMN
=================== */

#content /* The left margin allows space for the floated LEFTCOL DIV. */
{
	margin-left: 275px;
	padding-left: 10px;
}

#content p  /* CONTENT DIV paragraphs have 20px margins all around. 
Text is 80% the size of body text. */
{
	margin: 30px;
}

#content h1 {
	font-size: 130%;
	color: #3A2107;
	background-color: inherit;
	margin: 15px 0 25px 10px;
	padding: 0px;
}

#content h2 {
	font-size: 110%;
	color: #3A2107;
	background-color: inherit;
	margin: 20px;
	padding: 0px;
}

#content h3 {
	font-size: 110%;
	color: #3A2107;
	background-color: inherit;
	margin: 20px 10px;
	padding: 0px;
}

#content ol   /* Ordered lists have no padding, 
and margins of 20px top/bottom and 30px left/right. */
{
	margin: 20px 30px;
	padding: 0px;
}

#content ol li   /* Ordered list have a 
font size that is 95% of the body size. */
{
	font-size: 95%;
}

/* ===================
FOOTER
=================== */

#footer {
	clear: both;
	border-top: 1px solid #3A2107;
	background-color: #FFF2AD;
	color: #3A2107;
}

#footer p  /* The FOOTER DIV paragraph text is 70% of the body text 
size, right aligned, and has 3px padding on all sizes. */
{
	font-size: 70%;
	padding: 3px;
	text-align: right;
}

#footer a:link {
	color: #3A2107;
	background-color: inherit;
	text-decoration: none;
}

#footer a:visited {
	color: #999999;
	background-color: inherit;
	text-decoration: none;
}

#footer a:hover   /* The FOOTER DIV links change to gold with 
a gold underline and a dark background on mouseover. */
{
	color: #FFF2AD;
	background-color: #835320;
	text-decoration: underline;
}

#footer a:active {
	color: #3A2107;
	background-color: inherit;
	text-decoration: none;	
}



