/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	background: #FFFFFF url(images/header-bg.jpg) repeat-x;
	margin: 0px; /* Always set margins to 0. Some browsers automatically apply them. */
	padding: 0px; /* Always apply padding if you apply margins */
	text-align: center; /* Equivalent to <center> tag for older IE browsers. Remove if you do not want to center page. */
}

/* This sets a default font for all of our tag selectors. We set the text align back to left so it won't center (based on the body tag to compensate for IE.) */

p, h1, h2, h3, h4, h5, a, ul, li, lo, td, div {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #000;
	text-align: left; /* Not necessary if not using text-align center in body tag for older IE browsers. */
}
/* Redefines the p tag */
p, td, div {
	font-size: 12px;
	line-height: 17px;
}
h1 {
	font-size: 17px;
	margin-bottom: -5px;
	padding-bottom: 8px;
	border-bottom: 1px dotted #A90000;
	width: 50%;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
h2 {
	font-size: 14px;
	margin-bottom: -5px;
}

/* Creates the general link style for the site. This is not the main navigation.  */
a:link {
	color: #BE7B7B;
	text-decoration: none;
}
a:visited {
	color: #AC6262;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:active {
	color: #BE7B7B;
	text-decoration: none;
}

/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */

/*Collapses borders that some browsers automatically apply to tables. */
table, td, th  {	
	border-collapse: collapse;
}

/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	margin-top: 0px;
	margin-left: 0px;
}

div#content {
	position: relative;
	top: 0px;
	padding: 0px 20px 0px 20px;
}

div#footer {
	position: relative;
	top: 20px;
	padding-top: 8px;
	padding-bottom: 8px;
	width: 100%;
	background: #790000;
}

div#copyright {
	font-size: 9px;
	line-height: 13px;
	text-align: center;
	color: #fff;
}


/* ----------------- IMAGE ELEMENTS ----------------- */

img.left {
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
}

img.leftmgnbot {
	float: left;
	margin-right: 20px;
	margin-bottom: 140px;
}

img.right {
	float: right;
}
clear {
	clear: both;
}

/* ----------------- CUSTOM CLASSES ----------------- */
.sidebar {
	float: right;
	margin-left: 20px;
	background-color: #CBA6A6;
	padding: 8px;
	width: 250px;
	font-size: 11px;
}

ul.homelist {
	list-style-type: none;
}

ul.homelist li {
	margin-bottom: 5px;
	padding: 0;
}

.clear {
	clear: both;
}