@charset "utf-8";
body {
	background: #939598;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	
	ondragstart="return false" 
	onselectstart="return false"
	oncontextmenu="return false"
	
	}
	a:link {
	color:#e6eacd;
	text-decoration: none;
	}
	a:visited {
	color:#e6eacd;
		text-decoration: none;
	}
	a:hover {
	color:#898d7e;
		text-decoration: none;
	}
	a:active {
		text-decoration: none;
	}

p {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 100%;
	font-style: normal;
	line-height: 125%;
	font-weight: normal;
	color: #000000;
	margin-top:0em;
	margin-bottom:0em;
}
h1 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 160%;
	line-height: 140%;
	font-weight: bold;
	color: #989c8b;
	margin-top:-0.2em;
	margin-bottom:0em;
}
h2 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 160%;
	line-height: 230%;
	font-weight: bold;
	color: #989c8b;
	margin-top:0em;
	margin-bottom:0em;
}
h3 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 110%;
	line-height: 100%;
	font-weight: bold;
	color:#989c8b;
	margin-top:0.2em;
	margin-bottom:0.1em;
}
h4 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:120%;
	line-height: 100%;
	font-weight:bold;
	color:#e6eacd;
	margin-top:0em;
	margin-bottom:0em;
}
h5 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:93%;
	font-weight:normal;
	margin-top:0em;
	margin-bottom:0em;
}
h6 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:100%;
	line-height: 110%;
	font-weight:normal;
	color:#e6eacd;
	margin-top:0.5em;
	margin-bottom:0.5em;
}

#footer a {color:#898d7e}
#footer a:hover {color:#d8dec8}

#header1 a {color:#898d7e}
#header1 a:hover {color:#d8dec8}

.ccom #container {
	width: 760px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	margin-top:3px;
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.ccom #header1 {
	background: #4e5448; 
	padding: 0 0 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
.ccom #header1 h3 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 5px 0 10px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.ccom #header2 {
	margin:0;
	padding:0;
}
.ccom #horBar {
	background-color:#4e5448;
	height:7px;
}
.ccom #mainContent {
	margin:0;
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.ccom #footer {
	padding: 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#4e5448;
}
.ccom #footer h3 {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 8px 0 8px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
