/* Reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 
{
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}

/* The body is the outermost layout component and contains the visible page content. */
body 
{
	background: #333333 url(images/header_images/background.jpg) repeat top;
	font-family: Arial, Helvetica, sans-serif;
    color: #00FF00;
	font-size: 12px;
	line-height: 14px;
	margin: 0 0 0 0;    /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0;   /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}

/* So we can edit text inside of a table */
table
{
    color: #00FF00;
	font-size: 16px;
	line-height: 18px;
}

/* Commonly used to style page titles */
h1 
{
	color: #00FF00;
    font-size: 18px;
	font-weight: bold;
	line-height: 14px;
}

h2 
{
	color: #00FF00;
	font-size: 12px;
	font-weight: bold;
	line-height: 14px;
}

/* Unvisited links */
a, a:link 
{
	color: #00FF00;
	font-weight: bold;
	text-decoration: none;
}

/* Visited links */
a:visited 
{
	/* color: #2d7336; */
	font-weight: bold;
	text-decoration: none;
}

/* Links on mouseover */
a:hover 
{

	color: #FFF;
	text-decoration: underline;
}

/* This is a container for the page content */
#outerWrapper 
{
	background-color: #000;
	margin: 0 auto 0 auto;  /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left;       /* Redefines the text alignment defined by the body element. */
	width: 960px;
}

#outerWrapper #header 
{
	background-color: #000;
    color: #00CC00;
    /* border-bottom: solid 1px #CCCCCC; /* Sets the bottom border properties for an element using shorthand notation */
	padding: 1px 1px 1px 1px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

/* Header Mini Menu Bar */
.headerlinks 
{
	color: #00FF00;
	font-weight:normal;
	font-size: 12px;
	line-height: 14px;
	float: right;
	text-align: right;
	margin-top: 10px;
	padding-right: 0px; 
}
.headerlinks a 
{
	color:#00FF00;
	text-decoration:underline;
}
.headerlinks a:hover 
{
	color: #FFF;
}


#outerWrapper #contentWrapper #leftColumn1 
{
	background-color: #000;
    color: #00FF00;
	font-size: 13px;
	line-height: 16px;
	float: left;
	padding: 3px 1px 1px 8px;       /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 180px;
}

/* Contains the main page content. When using a mutliple column layout the margins will be set to account for 
the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content 
{
	font-size: 16px;
	line-height: 18px;
    color: #FFF;
	margin: 0 0 0 210px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 1px 1px 1px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. 
If floated elements are used without being cleared the elements following will wrap around the floated element. 
This class should be applied to an element after the last floated element and before the close of the container 
with floated elements. */
#outerWrapper #contentWrapper .clearFloat 
{
	clear: left;
	display: block;
}

#outerWrapper #footer 
{
	background-color: #000;
    color: #00FF00;
	font-size: 12px;
	line-height: 14px;
	/* border-top: solid 1px #8ab573; /* Sets the top border properties for an element using shorthand notation */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}



