/*Reseting the margin and padding is important for the body tag so the header and footer will hug the whole screen.*/
* {
	margin:0;
	padding:0;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-size: 100%;
	font-style: normal;
	line-height: normal;
	letter-spacing: normal;
	word-spacing: normal;
	white-space: normal;
}
h2, h3 {
	margin-left: 19px;
	margin-bottom:10px;
}
/*General Body Style*/
body {
	color:#000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	margin-top: -50px;
	background-color: #fff;
	background-image: url(../images/slice_pagebackground.gif);
	background-repeat: repeat-x;
}
a, a:active, a:visited {
	text-decoration: none;
	color: #09F;
}
a:hover {
	text-decoration: none;
	color: #666;
}
/*Our full length header. Align the text/image center so it shows up in the middle.*/	
#headerbg {
	background:#000;
	text-align:center;
	background-image: url(../images/slice_top.gif);
	background-repeat: repeat-x;
}
/*Center Content*/	
#container {
	position:relative;
	margin:0 auto;
	width:1000px;
}
/*Main Content Area*/	
.main_content_div {
	float:none;
	width:1000px;
	clear:both;
}
.left_content_div {
	float:left;
	margin: 0px 0px 20px 75px;
	width:585px;
	font-size: 1.2em;
}
.right_content_div {
	float:left;
	width:270px;
	clear:right;
	font-size: .95em;
}
.left_content_div p {
	padding: 0px 20px 10px 20px;
	text-align: justify;
	line-height: 1.9em;
}
.right_content_div p {
	padding: 0px 20px 10px 20px;
	line-height: 1.7em;
}
.webdesign_title {
	padding: 0px 0px 3px 35px;
}
/*Full Width Footer*/
#footer {
	background:#000;
	padding:20px 0px 20px 0px;
	height:130px;
}
#footer a, #footer a:active {
	text-decoration: none;
	color: #6CF;
}
#footer a:visited {
	text-decoration: none;
	color: #CCC;
}
#footer a:hover {
	text-decoration: none;
	color: #FFF;
}
#footer_content_container {
	position:relative;
	margin:0 auto;
	width:920px;
	color: #fff;
}
.left_footer_div {
	float:left;
	width:184px;
}
.mid_footer_div {
	float:left;
	width:184px;
}
.right_footer_div {
	float:left;
	width:184px;
	clear:right;
}
.bottom_footer_div {
	float:left;
	margin: 15px 0px 0px 0px;
	width:920px;
	clear:both;
}
.left_footer_div p, .mid_footer_div p, .right_footer_div p, .bottom_footer_div p {
	padding:10px;
	font-size: 0.95em;
	line-height: 14px;
}
/* Used on spans to align link list in footer. */
.center {
	text-align: center;
}
.right {
	text-align: right;
}
/*If you are going to use floats then you will NEED to clear the
footer so it doesn't bunch the content up*/
.clear {
	clear:both;
}