/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	background: #ffffff;
	margin: 0px;
	padding: 0px;
	text-align: center;
}

p, h1, h2, a, ul, li, address, label {
	color: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

p {
	margin: 10px 0px 0px 0px;
	font-size: 11px;
	line-height: 1.5;
}

address {
	margin: 0px;
	padding: 20px 5px 20px 5px;
	font-size: 10px;
	font-style: normal;
	color: #ffffff;
}

h1 { 
	margin: 0px;
	padding: 0px;
	font-size: 11px;
	font-weight: bold;
	color: #ffffff;
	text-align: right;
	
}

h2 { 
	font-size: 11px;
	font-weight: bold;
	color: #C10808;
	text-align: left;
	margin: 0px;
	padding: 10px 0px 2px 2px;
	border-bottom: 1px solid #cccccc;
}

h3 { 
	font-family: times, serif;
	font-size: 20px;
	font-weight: bold;
	color: #C10808;
	text-align: center;
	margin: 0px;
	padding: 20px 0px 5px 0px;
}

/* ----------------- LIST ITEMS ----------------- */

ul {
	margin-top: 8px;
	list-style-type: square;
}

ul.left {
	margin: 0px;
	padding: 5px 10px 5px 20px;
	list-style-type: square;
	float: left;
}

li {
	font-size: 11px;
	line-height: 1.5;
}

/* ----------------- FORM ELEMENTS ----------------- */

form {
	margin-top: 15px;
	float: left;
}

label {
	font-size: 10px;
	font-weight: bold;
	width: 130px;
	float: left;
	text-align: left;
	padding: 3px 10px 3px 0px;
}

input {
	height: 12px;
	font-size: 11px;
	padding: 2px;
	margin: 2px;
}

input.button {
	height: auto;
	font-size: 11px;
}

textarea {
	font-size: 11px;
	padding: 2px;
	margin: 2px;
}

/* ----------------- GENERAL LINKS ----------------- */

a:link, a:visited, a:active { 
	color: #A46B08; 
	text-decoration: underline; 
	font-weight: normal; 
	}
	
a:hover { 
	color: #2D02CE; 
	}

/* ----------------- MAIN NAVIGATION ----------------- */

/* Sets a background color and width for our navigation box. Removes all default margins and padding. */
ul#mainnav {
	background: #494848;
	margin: 0px;
	padding: 0px;
	width: 192px;
}

/* Removes the default bullets. */
ul#mainnav li {
	display: inline; /* Redefined here only to remove stray padding. */
	list-style: none;
}

/* Styles our links. Setting the display to block ensures our links will stack back on top of one another as block level elements. The width sets the "hit" area of the links.  */
ul#mainnav li a:link, ul#mainnav li a:visited, ul#mainnav li a:active {
	font-size: 11px;
	font-weight: bold;
	color: #ffffff;
	text-decoration: none;
	display: block;
	width: 182px;
	border-bottom: 1px solid #000000;
	padding: 5px;
	margin: 0px;
}
/* Creates our hover status and our current custom class. Be sure to apply .current to each applicable a tag on individual pages. */
ul#mainnav li a:hover {
	background: #cccccc;
	color: #000000;
}

ul#mainnav li a.current:link, ul#mainnav a.current:visited {
	background: #ffffff;
	color: #000000;
}

ul#mainnav .bullet {
	color: #C10808;
	font-weight: bolder;
}

/* ----------------- MAIN CONTAINER ----------------- */

/* Creates DIV container for the layout container. */
div#container{
	width: 760px;
	margin: 0px auto;
	padding: 0px;
	border: 1px solid #000000;
	border-bottom: 5px solid #000000;
}

/* ----------------- HEADER ----------------- */

/* Creates DIV container for header. */
div#header {
	width: 760px;
	margin: auto;
	padding: 0px;
}

/* ----------------- BODY ----------------- */

div#pagetitle {
	background-image: url(images/layout_03.jpg);
	height: 15px;
	padding: 5px;
}

/* Creates DIV containers for main body content with multiple columns. */
div#bodyleft {
	background: #000000;
	width: 193px;
	margin: 0px;
	padding: 0px;
	text-align: left;
	float: left;
}

div#bodyright {
	width: 547px;
	margin: 0px;
	padding: 0px 10px 10px 10px;
	text-align: left;
	float: right;
}

div#bodyleft p {
	margin: 5px 5px 0px 5px;
	padding: 0px;
	text-align: left;
	color: #B26A6A;
}

/* ----------------- FOOTER ----------------- */

/* Creates DIV container for the footer. */
div#footer {
	width: 762px;
	margin: 0px auto;
	padding: 5px 0px 10px 0px;
	clear: both;
}

div#footer p {
	margin: 0px;
	font-size: 10px;
	color: #333333;
}

/* Set link style for footnav. */
div#footer a:link, div#footer a:visited, div#footer a:active {
	text-decoration: none;
	font-weight: normal;
	color: #666666;
}

div#footer a:hover {
	color: #333333;
}

/* ----------------- COPYRIGHT ----------------- */

/* Creates DIV container for the copyright. */
div#copyright {
	width: 762px;
	margin: 0px auto;
	padding: 10px 0px 5px 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #666666;	
}

/* Set link style for copyright. */
div#copyright a:link, div#copyright a:visited, div#copyright a:active {
	text-decoration: none;
	font-weight: bold;
	color: #666666;
}

div#copyright a:hover {
	color: #333333;
}

/* ----------------- PRIVACY STATEMENT ----------------- */

div#privacy {
	width: 195px;
	margin: 20px 0px 0px 0px;
	padding: 5px 0px 5px 5px;
	border-left: 1px solid #cccccc;
	float: right;
}

div#privacy p {
	margin: 0px;
	padding: 0px;
	font-size: 10px;
	color: #333333;
}

/* ----------------- IMAGE ELEMENTS ----------------- */

div#clear {
	clear: both;
	line-height: 0px;
}

div#bodyright img {
	margin: 5px;
	border: 1px solid #000000;
}

div#bodyright img.right {
	margin: 0px 0px 5px 10px;
	float: right;
}

div#bodyright img.left {
	margin: 0px 10px 5px 0px;
	float: left;
}

/* ----------------- CUSTOM CLASSES ----------------- */

.center {
	text-align: center;
}

.companyname {
	font-weight: bold;
}
