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

body {
	background: #BBBBBB;
	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.) */

h3, h4, h5, a, ul, li, lo, td {
	font-family: Arial, sans-serif;
	text-align: left;
	font-size: 12px;
	color: #000000;
}

/* Redefines the p tag */
p {
	font-family: Arial, sans-serif;
	text-align: left;
	font-size: 12px;
	color: #000000;
	margin: 0px;
	padding: 5px;
	padding-left: 10px;
	line-height: 16px;
}

h1 {
	font-family: Arial, sans-serif;
	font-size: 13px;
	color: #000000;
	font-weight: normal;
	text-decoration: underline;
	margin: 5px;
}

h2 {
	background: #000000;
	font-family: Arial, sans-serif;
	font-size: 13px;
	margin: 0px;
	clear: both;
	font-weight: normal;
}

ul {
	list-style-type: square
	font-family: Arial, sans-serif;
	color: #000000;
}


/* Creates the general link style for the site. This is not the main navigation.  */
a:link {
	font-size: 12px;
	color: #000000;
	font-family: Arial, sans-serif;
	text-decoration: none;
}
a:visited {
	color: #000000;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:active {	
	text-decoration: none;
}



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

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

/* Creates the div container for the footer. */

div#container {
	border: 1px solid #000000;
	width: 550px;
	margin-left: auto;
	margin-right: auto;
	padding: 0px;
}

.right {
	float: right;
	margin: 0px;
	margin-right: 100px;
}

.chair {
	border-top: 1px solid #000000;
	border-bottom: 1px solid #000000;
}

div#footer {
	background-color: #AEB64F;
	width: 550px;
	padding: 0px;
	margin:0px;
}

div#copyright {
	color: #000000;
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
}

