/*Main Layout*/
* {
	margin:0 auto;
}

body {
	background:url(images/bg.png) repeat;
	margin:20px 0px;
}


/*Start Header Div*/
#header {
	background:url(images/headerBg.png) no-repeat;
	width:976px;
	height:269px;
}

#header #search {
	background:url(images/searchBox.png) no-repeat;
	width:208px;
	height:50px;
	position:relative;
	left:350px;
	top:10px;
}

#header #search input.searchTerm {
	background:url(images/textBox.png) no-repeat;
	border:none;
	width:150px;
	height:37px;
	color:#732323;
	font-weight:bold;
	font-size:0.7em;
	text-transform:lowercase;
	position:relative;
	top:5px;
	padding:10px 0px 0px 7px;
}

#header #search input.searchSubmit {
	background:url(images/searchSubmit.png) no-repeat;
	width:40px;
	height:33px;
	border:none;
	position:relative;
	top:8px;
}
/*End Header Div*/


/*Start Content Div*/
#content {
	background:url(images/contentBg.png) repeat-y;
	width:976px;
	height:auto;
}

#content #sideMenu {
	float:left;
	margin-left:15px;
	width:200px;
	min-height:400px;
	padding:3px 0px;
	background:url(images/menuBg.png) no-repeat right center;
}

#content #bodyContent {
	float:right;
	width:710px;
	color:#012956;
	background:url(images/http://www.carmona-associates.com/images/gavel.jpg) center no-repeat;
	min-height:500px;
	padding:20px 30px 20px 0px;
}

#content #bodyContent p, #content #bodyContent ul, #content #bodyContent ol, #content #bodyContent blockquote {
	padding-top:5px;
	padding-bottom:5px;
}

#content #bodyContent blockquote {
	margin:10px 20px;
	padding:10px;
	border-left:4px solid #c9d7dc;
	background:#f6f6f6;
	font-style:italic;
	font-size:0.9em;
	width:80%;
}
/*End Content Div*/


/*Start Footer Div*/
#footer {
	background:url(images/footerBg.png) no-repeat;
	width:976px;
	height:113px;
}
/*End Footer Div*/


/*Miscellaneous Items*/
div.clearing {
	clear:both;
}