/* CSS Framework Import */
@import url("src/reset.css");
@import url("src/grid.css");
@import url("src/typography.css");
@import url("src/forms.css");
@import url("template.css");

/* 
CSS Site Outline and Definitions:

----------------
CSS FILES:
----------------
NOTE:  This template is using a form of the BluePrint CSS Framework.  Below is a general outline as to what the CSS files do.  Not all Blueprint CSS styles are present (it is a leaned down version of it).

reset.css:  Resets all standard browser outputs so the design can start with a clean slate.

grid.css:  Sets up the grid and dimensions for using fixed width parameters.

typography.css:  Sets the default typography.

forms.css:  Sets some standard form styling.

screen.css:  All CSS code related to the layout/structure of the site

ie.css:  Conditional stylesheet only for IE quirks.

print.css:  Print page styling.

*/


body {
	margin: 0;
	padding: 0;
	background: #b29666 url(../images/bodyBg.jpg) repeat-x;
}

#wrapper {
	margin-top: 30px;
	background-color: #d6bf96;
}

ul#nav {
	margin: 0;
	padding: 0;
	list-style: none;
	height: 30px;
	background: url(../images/menuBg.jpg) no-repeat;
	font-size: 14px;
}

ul#nav li {
	float: left;
	margin: 4px 23px;
}

ul#nav li a {
	color: #fff;
	text-decoration: none;
}

ul#nav li a:hover {
	color: #b49a69;
}

#contentArea {
	padding: 20px;
}

#sidebar {
	width: 410px;
	float: left;
}

#sidebar .sidebarImage {
	margin-bottom: 20px;
}

#content.half {
	width: 420px;
	margin-left: 440px;
}

#content h1 {
	color: #97161a;
	margin: 0;
}

#content h2 {
	color: #6496c7;
}

#content h4 {
	color: #97161a;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	margin: 0;
}

#content h5 {
	color: #6496c7;
	font-style: italic;
	margin: 0;
}

#content blockquote span {
	font: 50px Georgia, "Times New Roman", Times, serif;
	float: left;
	margin: 0 10px 0 0;
}

#footer {
	background: #000 url(../images/footerBg.jpg) repeat-x;
	padding: 20px;
	color: #fff;
}

#footer .module {
	width: 240px;
	float: left;
	margin-right: 50px;
}

#footer .module.last {
	margin-right: 0;
	width: 290px;
}

#footer h3 {
	color: #d6bf96;
	font-size: 22px;
	text-transform: uppercase;
}

#footerLeft span {
	float: right;
	font-size: 18px;
	color: #d6bf96;
}

#footerLeft a {
	float: right;
	clear: both;
	color: #46698c;
	text-decoration: none;
}

#footerMiddle ul {
	list-style: none;
	margin: 0;
}

#footerMiddle ul li {
	height: 19px;
	border-bottom: 1px solid #fff;
	padding: 10px 5px;
}

#footerMiddle ul li:hover {
	background: url(../images/footerNavBg.jpg) repeat-x;
}

#footerMiddle ul li a {
	text-decoration: none;
	color: #fff;
}

#footerRight h4 {
	color: #d6bf96;
	font-size: 18px;
	margin: 0;
}

#footerRight p.contact {
	color: #46698c;
}

#copyright {
	height: 46px;
	background: url(../images/copyrightBg.jpg) repeat-x;
	color: #fff;
}

#copyright p {
	margin: 0;
	padding: 13px;
	
}

