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

body {
background-color:#CD9B9B;
color:#000000;
font-family:Verdana,Arial,Helvetica,sans-serif,"Trebuchet MS";
font-size: 1.0em;
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 */
}

a:link {
color:#CC6666;
}

a:hover {
color:#CDB7B5;
}

h1 {
color:#8B6969;
font-size:16px;
}

h2 {
color:#8B6969;
font-size:13px;
}

h3 {
color:#8B6969;
font-size:12px;
margin-bottom:0;
}

p, ul, ol {
        margin-top: 0;
        line-height: 130%;
}

/* Content */

#container {
        width: 760px;
        background: #FFFFFF;
        margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
        border-left: 1px solid #000000;
        border-right: 1px solid #000000;
        border-bottom: 1px solid #000000;
        text-align: left; /* this overrides the text-align: center on the body element. */
}

#masthead {
	margin: 0px;
        padding: 0px;
	height: 90px;
}
	

#menu {
	width: 740px;
        margin: 0 auto;
        padding: 5px 0 5px 20px;
	background-color:#8B6969;
	color: #FFFFFF;
        font-weight: bold;
        font-size: 0.8em;
	position:absolute;
	white-space:normal;
}

#menu a {
	color:#FFFFFF;
	font-weight: bold;
	margin-right: 5px;
	text-decoration: none;
	text-indent: 5px;
}

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

#mainContent {
        padding: 15px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

#mainContent img {
	margin: 0 0 0 5px;
	padding:20px;
	background-color:#8B6969;
	border:1px;
}

#footer {
	border-top:1px solid #CD9B9B;
	font-size: 0.7em;
	padding: 10px 0 10px 0;
	text-align: center;
}

