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

body {
	background-color: #262626;
	background:url(../images/bg.gif);
	font-family: Tahoma, Geneva, sans-serif;
	margin-top: 25px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	color: #FFF;
	font-size: 14px;
}

p {
        font-weight: normal;
		color: #fff;
}

a {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
        text-decoration: none;
        color: #fff;
}

a:hover {
        color: #e2b890;
		border-bottom: 20px solid #fff;
}

a img{
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.clear {
	clear: both;
}

#wrapper {
	width: 960px;
	margin-right: auto;
	margin-left: auto;
}
#header {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	display: block;
}
#header #nav {
	width: 650px;
	margin-top: 68px;
	display: block;
	float: left;
	height: 25px;
	margin-left: 0px;
	padding: 0px;
	margin-bottom: 12px;
	text-transform:uppercase;
}
#header #nav ul {
	color: #e9dac8;
	text-decoration: none;
	list-style-type: none;
	font-size: 14px;
	margin: 0px;
	padding: 0px;
}
#header #nav ul li  {
	float: left;
	margin-right: 25px;
	margin-left: 0px;
	padding-bottom: 5px;
	margin-bottom: 0px;
}

#header #logo {
	float: right;
	margin-top: 10px;
}

#content {
	display: block;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #fff;
	border-bottom-color: #fff;
	margin-bottom: 15px;
	height: 529px;
	width: 960px;
	padding-top: 15px;
	padding-bottom: 15px;
	overflow: hidden;
	position: relative;
}

#content h1 {
	font-size: 20px;
	letter-spacing: 2px;
	color: #e2b890;
}

#content h2 {
	font-size: 16px;
	color: #e2b890;
}

#content h3 {
	letter-spacing: 1px;
	font-size: 16px;
	color: #e2b890;
}

#footer .left {
	width: 550px;
	display: block;
	float: left;
}

#container { 
	width: 760px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* 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 */
	border-left: solid 1px #FFF;
	padding: 15px 10px;
}
#mainContent { 
	margin: 0 250px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#footer { 
	padding: 0 0px 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */ 
} 
#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: 15px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#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;
}
#fltlft { /* this class can be used to float an element left in your page */
	float: left;
}
#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;
}