@charset "utf-8";
body {
	background: #4c738c url(../img/bg.jpg) top center repeat-x;
	color: #43403e;
}
#container {
	width: 950px;
	background: #fff;
	margin: 25px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #222;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	background: #fff; 
	padding: 0;
	height: 55px;
}
#header h3 {
	margin: 0;
	padding: 0;
	display: block;
	height: 55px;
	width: 400px;
	background: url(../img/header.jpg) left top no-repeat;
	text-indent: -9009px;
	float: left;
}
#top-nav {
	padding: 0 25px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	float: right;
	margin-top: 25px;
}
#top-nav a {
	color: #b78e55;
	font-weight: bold;
	text-decoration: none;
}
#top-nav a:hover {
	color: #15547c;
	text-decoration: underline;
}
#nav {
	padding: 0 25px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	height: 45px;
	background: url(../img/navBG.jpg) top center no-repeat;
}


#clear {
	clear: both;
}
#spacer {
	float: right;
	width: 1px;
	height: 600px;
}

#mainContent {
	padding: 12px 324px 0 25px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #fff url(../img/contentBG.jpg) top right no-repeat;
	border-bottom: 2px solid #43403e;
}
#mainContent li {
	margin-left:25px;
}

#mainContent a {
	text-decoration: none;
	font-weight: bold;
	color: #b78e55;
}
#mainContent a:hover {
	text-decoration: underline;
	color: #15547c;
}

h1, h2, h3 {
	color: #15547c;
}

h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	/* border-bottom: solid 2px #222; */
}

#footer {
	padding: 0 25px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	color: #43403e;
	clear: both;
	font-size:12px;
}
#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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#footer a {
	text-decoration: none;
	font-weight: bold;
	color: #43403e;
	font-size:12px;
}
#footer a:hover {
	text-decoration: underline;
	color: #15547c;
}

.imgR {
	float: right;
	margin: 0 0 0 20px;
}
.imgL {
	float: left;
	margin: 0 20px 0 0;
}

#inputArea
{
    background-color: #ddd;
	border: solid 1px #43403e;
    padding: 20px;
	margin: 1.5em;
}

#inputArea input[type="text"], #inputArea textarea, #inputArea select
{    
    margin-bottom: 5px;
    display: block;
    padding: 4px;
    border: solid 1px #43403e;
    width: 300px;
}

#inputArea input.my-url {
	display:none;
}