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

body {
	background: #000;
	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 {
	font-family: 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 {
	font-size: 13px;
}

table {
	margin-left: auto;
	margin-right: auto;
}

td {
	font-size: 13px;
	background: #1B29AC;
	text-align: center;
	color: #fff;
	vertical-align: top;
}
td a {
	text-align: center;
}

h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #FF6147;
	text-align: center;
	margin: 0px;
}
h2 {
}

/* Creates the general link style for the site. This is not the main navigation.  */
a:link {
	color: #ff0;
	text-decoration: none;
}
a:visited {
	color: #ff0;
	text-decoration: none;
}
a:hover {
	text-decoration:underline;
	color:#F86343;
}
a:active {
	color: #ff0;
	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 {
}

/* Styles the table that serves as the container for the content and navigation.*/
table#container {
}

/* Aligns content in the tableContainer's td tags to the top. Same as <td valign="top">. */
table#container td {
	vertical-align: top;
}
/* Creates the div container for the footer. */
div#footer {
}
div#footer p {
}
div#footer a:link {
}
div#footer a:visited {
}
div#footer a:hover {
}
div#footer a:active {
}

div#copyright {
font-size: 9px;
}


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

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

/* ----------------- CUSTOM CLASSES ----------------- */

.divider {
	color: #339;
	font-size: 18px;
}
