@charset "utf-8";
/* CSS Document */

body {
	background-image: url(images/mainbg.gif);
	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: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #3A2E1E;
	font-family: comic sans MS, Georgia, "Times New Roman", Times, serif;
	font-size: 100%;
	
}

a:hover, a:visited {
	color: #660000; 
}

a:link {
	text-decoration: underline;
	color: #333300;
}

a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	color: #330000;
}

#container {
width: 780px;
margin: 0 auto;
}

#header {
margin-top: 10px;
width: 770px;
height: 179px;
background-image:url(images/tan-stripe.gif);
border: #660000 thick solid;
}

#mainContent {
	float: right;
	width: 770px;
	background-image: url(images/tan-stripe.gif);
	border: #660000 thick solid;
	text-align: left; /* this overrides the text-align: center on the body element. */
	/*height: 1100px;*/
	margin: 0 auto;
	font-size: smaller;
	overflow: auto;
}

#navbar {
	float: left; /* since this element is floated, a width must be given  */
	width: 196px;
	height: 450px;
	background-image: url(images/nav2.jpg);
	background-repeat: no-repeat;
	padding-top: 15px;
	padding-right: 8px;
	padding-bottom: 10px;
	padding-left: 15px;
}


#content {
	float: right; /* since this element is floated, a width must be given  */
	width: 520px; 
	background-image: url(images/tan-stripe.gif);
	clear: none;
	padding-top: 1.5em;
	padding-right: 1.4em;
	padding-bottom: 0.5em;
	padding-left: 0.5em;
}


#footer {
	clear: both;
	padding: 10px 10px 0 10px;
	margin-top: 10px;
	background-image: url(images/checkers.gif);
	background-repeat: repeat-x;
} 

#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 */
}

img.image_frame {
	padding:4px; 
	margin:3px; 
/*	border:1px solid #600;*/
}
