@charset "utf-8";
/*global reset*/

body,div,dl,dt,dd,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,p,blockquote,th,td
{margin:0;padding:0;}

table
{border-collapse:collapse;border-spacing:0;}YYYY

fieldset,img
{border:0;}

address,caption,cite,code,dfn,th,var
{font-style:normal;font-weight:normal;}

caption,th 
{text-align:left;}

h1,h2,h3,h4,h5,h6
{font-size:100%;}

q:before,q:after
{content:'';}

/*global reset*/

html	{
	background-image:url(basil.gif);
	background-position:bottom right;
	background-repeat:no-repeat;
	background-color:#FFFFFF;
}
body  {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.85em;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: cemter; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-image:url(basil2.gif);
	background-position:bottom left;
	background-repeat:no-repeat;
	overflow:auto;
}
#container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	overflow:auto;
} 
#header { 
	background: #FFFFFF;
	background-image: url(header.gif);
	background-position:left;
	height: 134px;
	padding: 0 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	text-indent: -9999px;
} 
h1{
	font: Arial, Helvetica, sans-serif;
	margin: 10px;
	padding: 1em;
	font-size: 130%;
}
h2{
	font: Arial, Helvetica, sans-serif;
	margin: 10px;
	padding: 0 1em;
	font-size: 100%;
	font-style:normal;
}

p {
	font: Arial, Helvetica, sans-serif;
	margin: 10px;
	padding: .5em 1em;
	line-height:150%;
	font:100%;
}
#navcontainer{
	padding: 0;
	margin: 0 0 20px 0;
	background-image:url(header.b.gif);
}
#navlist{
	margin: 0;
	padding: 0 0 20px 10px;
	border-bottom: 1px solid #000;
}

#navlist ul, #navlist li{
	margin: 0;
	padding: 0;
	float: right;
	display: inline;
	list-style-type: none;
}

#navlist a:link, #navlist a:visited{
	float: left;
	line-height: 14px;
	margin: 0 10px 4px 10px;
	text-decoration: none;
	color: #999;
}

#navlist a:link#current, #navlist a:visited#current, #navlist a:hover {
	border-bottom: 4px solid #000;
	padding-bottom: 2px;
	background: transparent;
	color: #000;
}

#navlist a:hover { color: #000; }

#mainimage {
	width: 780px;
	height: 381px;
	overflow: auto;
	margin:0;
	padding:0;
}
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 240px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #37350E; /* the background color will be displayed for the length of the content in the column, but no further */
	margin: 20px 0 0 0;
	padding: 0 10px;
	font: Arial, Helvetica, sans-serif;
	color:#FFFFFF;
	word-spacing:normal;
	background-image:url(side.bkrnd.gif);
	background-repeat:no-repeat;
}
#sidebar1 img	{
	position : relative;
		padding: 210px 0 0 0;

}
#sidebar1 p	{
	margin: 0;
	padding: 15px 10px;
	font: 90% Arial, Helvetica, sans-serif;
}
#sidebar1 h3	{
	margin: 0;
	padding: 15px 10px;
	font: 100% Arial, Helvetica, sans-serif;
}
#mainContent { 
	float: left;
	padding: 0 20px;
	margin: 20px 0px;
	width: 460px;
	background-image: url(main.bkgrd.gif);
	background-position: top left;
	background-repeat: no-repeat;
	background-color:#FFFFFF;
	overflow:auto;
} 
#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	text-align:center;
	background-color:#FFFFFF;
	filter:alpha(opacity=70);
	-moz-opacity:0.7;
	-khtml-opacity: 0.7;
	opacity: 0.7;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size:80%;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}