/*
 *
 * File		: main.css
 * Purpose	: Primary CSS file
 * Created	: 01/05/07
 * Author	: Brian Ashe
 * Company	: Dee-Web Software Services, LLC.
 * Copyright 2007 Dee-Web Software Services, LLC.
 *
 */

* {
	margin: 0;
	padding: 0;
}

div {
/*	border: #000 1px solid; */
}

img {
	border-style: none;
}

body {
	color: #000000;
	font-family: Helvetica, Arial, Sans;
	font-size: 100%;
	background-color: #E8E8E8;
	background-image: url('../images/bg_01.png');
	background-repeat: repeat;
	margin: 10px;
}

#pagewidth {
	width: 850px;
	text-align:left;
	margin-left:auto;
	margin-right:auto;
	background-color:#FFFFFF;
	border: #000 1px solid;
}

#header {
	position:relative;
	height:95px;
	background-color:#FFFFFF;
	background-image: url('../images/bg_02.png');
	background-repeat: repeat-x;
	width:100%;
}

#navMain {
	position:relative;
	height: 23px;
/* 	background-color: #4A8797; */
	background-color: #FFFFFF;
	background-image: url('../images/bg_03.png');
	background-repeat: repeat-x;
	display: block;
	float: left;
	width: 100%;
	text-align: right;
}

#navMain ul {
	margin: 0;
	padding: 0;
	list-style: none;
	float: right;
}

#navMain li {
/* 	height: 40%; */
	float: left;
	margin: 0;
	padding: 1px 15px 0 15px;
/*	border-right-style: solid;
	border-right-width: 1px;
	border-right-color: #FFFFFF;*/
}

#navMain a {
	padding: 2px 0;
	display:block;
}

#banner {
	position:relative;
	height:240px;
	background-color: transparent;
	width:100%;
/* 	background-color: #E4E3D2; */
}

#leftcol {
	width: 18%;
	float:left;
	position:relative;
	background-color:#FFFFFF;
	text-align: center;
}

#leftcol ul {
	margin: 5px 6px;
	padding: 0 6px;
	list-style: none;
}

#leftcol a {
	padding: 2px 0;
	display:block;
}

#twocols {
	width:82%;
	float:right;
	position:relative;
	background-color:#FFFFFF;
}

#rightcol {
/* 	width:29%; */
	width:190px;
	float:right;
	position:relative;
}

#maincol {
	background-color: #FFFFFF;
	float: left;
	display:inline;
	position: relative;
	width:70%;
}

#mainalt {
	background-color: #FFFFFF;
	float: left;
	display:inline;
	position: relative;
	width:100%;
}

#footer{
	height:80px;
	background-color:#CFC4A3;
	clear:both;
}



#header h1 {
	color: #FFFFFF;
	font-weight: bold;
	font-family: "Courier";
	font-size: 200%;
}

#header img {
	margin: 0 10px 0 10px;
}

#infoMain {
	float: center;
/* 	clear: both; */
	width: 95%;
	padding: 4px 0;
/* 	height: 240px; */
/*	border-style: solid;
	border-width: 1px 0 1px 0;
	border-color: #47221D;*/
	text-align: center;
	margin: 2px auto;
}

#infoBoxW {
	color: #000000;
/* 	background-color: #E4E3D2; */
	float: left;
	width: 512px;
/* 	height: 100%; */
	margin: 6px 6px;
	text-align: center;
	padding: 10px 0 16px 0;
	overflow: auto;
}

.infoBox {
	color: #000000;
/* 	background-color: #E4E3D2; */
	float: left;
	width: 256px;
/* 	height: 100%; */
	margin: 6px 6px;
	text-align: center;
	padding: 0 0 16px 0;
	overflow: auto;
}

.infoHead {
	width: 80%;
	color: #000000;
	padding: 2px 0;
	margin: 0 auto;
/*	border-style: solid;
	border-width: 1px 0 1px 0;
	border-color: #47221D;*/
	font-weight: bold;
	font-size: 100%;
	text-align: center;
	background-image: url('../images/bg_04.png');
	background-repeat: repeat-x;
}

.infoBox p {
	font-size: 70%;
	text-align: center;
	padding: 0 5px;
}

#copyNotice {
/* 	position: absolute; */
	color: #FFFFFF;
	left: 0;
	bottom: 0;
	width: 45%;
	float: left;
}

#DeeWeb {
/* 	position: absolute; */
/* 	left: -0; */
	right: 0;
	bottom: 0;
	text-align: right;
	width: 45%;
	float: right;
}

#DeeWeb a {
	font-size: 60%;
}

#content {
	background-color: transparent;
	padding: 3px;
}

#content li {
	margin-left: 35px;
}

/* *** Float containers fix:
http://www.csscreator.com/attributes/containedfloat.php *** */
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix{display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix{height: 1%;}
.clearfix{display: block;}
/* End hide from IE-mac */



/*printer styles*/
@media print {
/*hide the left column when printing*/
#leftcol {
	display:none;
}

/*hide the right column when printing*/
#rightcol {
	display:none;
}

#twocols, #maincol {
	width:100%;
	float:none;
}

}


