@charset "utf-8";

/* Technically Speaking */
/* Webpage Design and Computer Consulting */
/* www.myowntechsupport.com */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666699;
	margin: 0; /* 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 */
	color: #000000;
}

#container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome */
	background: #FFFFCC;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	color: #000066;
}
#container h1, h2, h3, h4 {
	color: #990000;
}
#container a {
	color: #000066;
	text-decoration: underline;
}

/* Begin Masthead Wrapper */

#mastheadwrapper {
	height: 150px;
	background: #666699;
	background-image: url(images/mainbanner.jpg);
}

	#header {
		margin: 0;
		visibility: hidden;
	}
	#header h1, h2 {
		margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse */
		text-indent: -9999px;
		overflow: hidden;
	}
	
	#mastheadwrapper ul#navigation {
		float: left;
		margin-top: 56px;
		margin-left: 0;
		padding-left: 0;
	}
	#mastheadwrapper ul#navigation li {
		float: left;
		background: white;
		text-align: center;
		list-style-type: none;
		font: bold 14px 'Trebuchet MS';
	}
	#mastheadwrapper ul#navigation li a {
		width: 85px;
		height: 19px;
		display: block;
		background: url('images/mainnav.gif') no-repeat top left;
		padding-top: 5px;
		color: black;
		text-decoration: none;
	}
	#mastheadwrapper ul#navigation li a:hover {
		background: url('images/mainnavhover.gif') no-repeat top left;
		color: black;
	}
	body.home #mastheadwrapper ul#navigation li.home a {
		background: url('images/mainnavcurrent.gif') no-repeat top left;
		color: black;
	}

/* Begin Sidebarwrapper */

#sidebarwrapper {
	float: right; /* since this element is floated, a width must be given */
	width: 250px; /* the actual width of this div will include the padding and border in addition to the width */
	margin-right: 25px;
	margin-top: 20px;
	margin-bottom: 20px;
	background: #FFFFCC;
	text-align: justify;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 15px;
	/* color: #666699; */
}

#sidebarwrapper h1, h2, h3, h4 {
	color: #990000;
	text-align: center;
}

#sidebarsub {
	/* padding: 0 20px; */
	background: #EBEBEB;
}
#sidebarsub h3.first {
	background: url('images/subcontentbgtop.gif') no-repeat top left;
}
#sidebarsub h3 a {
	color: #990000;
	text-decoration:none;
}
#sidebarsub h4 {
	margin-top: -15px;
}
#sidebarsub p {
	padding: 0 20px;
}
#sidebarsub p.last {
	background: url('images/subcontentbgbottom.gif') no-repeat bottom left;
	color: #ebebeb;
}
#sidebarsub ul li {
	list-style-image: url('images/listdot.gif');
	margin-left: 10px;
	line-height: 12px;
	padding-bottom: 12px;
	padding-left: 0px;
}
#sidebarsub ul li.link {
	list-style: none;
	list-style-image: none;
	margin-left: 0;
}


/* Begin Maincontent Wrapper */


#maincontentwrapper { 
	/* margin: 0 270px 0 0; */
	/* padding: 0 20px; */ /* padding is space inside the div and margin is the space outside the div */
	float: none;
	width: 450px;
	margin-left: 25px;
	margin-top: 20px;
	margin-bottom: 20px;
	background: #FFFFCC;
	text-align: justify;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 15px;
}

#maincontentsub {
	margin: 0 0 0 0;
	background: #EBEBEB;
}
#maincontentsub h1, h2, h3, h4 {
	color: #990000;
	text-align: center;
	text-indent: 0px;
}
#maincontentsub h1.first {
	background: url('images/maincontentbgtop.gif') no-repeat top left;
}
#maincontentsub p {
	padding: 0 20px;
}
#maincontentsub p.last {
	background: url('images/maincontentbgbottom.gif') no-repeat bottom left;
	color: #ebebeb;
}
#maincontentsub ul li {
	list-style-image: url('images/listdot.gif');
	margin-left: 35px;
	line-height: 12px;
	padding-bottom: 12px;
	padding-left: 0px;
}

/* Contact Form Styles */

form.contact {
	margin: -25px 0 0 0;
	width: 350px;
	padding-left: 50px;
}

form.contact fieldset {
	margin: 1.5em 0 0 0;
	padding: 0;
}

form.contact legend {
	margin-left: 1em;
	color: #000066;
	font-weight: bold;
}

form.contact fieldset ol {
	margin: 0 0 0 0;
	padding: 1em 1em 0 1em;
	list-style: none;
}

form.contact fieldset li {
	padding-bottom: 1em;
}

form.contact .buttonarea input {
	background: #ffffcc;
	color: #990000;
	/* text-align: center; */
	margin-left: 80px;
	border: 3px;
}

form.contact label {
	display: block;
}


/* Begin Footer */

#footer {
	clear: both;
	float: left; 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of elements in the divs appear above */
	background:#EBEBEB; 
}
#footer a {
	color: #990000;
}
#footer p {
	float: left;
	font-size:12px;
	color: #000000;
	margin: 0; /* zeroing the margins of the first element will avoid margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space without the margin collapse issue */
}
#footer p.ts {
	float: right;
}

.fltrt { /* this class can be used to float an element right in your page */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}