/* -------------------------- <revisions> ---------------------------

Jason Rewald CSS Standard 

-------------------------- </revisions> --------------------------- */

body { 
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 11px;
	text-decoration: none;
	color: #71706f;
	/*background: url(images/tile_bg.gif) top center repeat-x;*/
	margin: 0px;
	padding: 0px, 0px, 0px, 0px;
	background:#000000;
	
	
	}
	
input, textarea, select { 
background: #FFFFFF; 
border: solid #000000 1px; 
font: 11px Arial, Helvetica, sans-serif; 
color:#000000; 
padding: 0px 0px 0px 0px;
}

input.submit { 
font-weight: bold; 
width: 20px; 
background: #8cb5dc; 
color:#FFFFFF
}

.body {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 11px;
	text-decoration: none;
	color: #000000;
	background:#000000;
	border: none;
	padding: 0px, 0px, 0px, 0px;
	margin: 0px, 0px, 0px, 0px;
	}
	
	
	A:link.footer {
	text-decoration: underline; 
	color: #a71a1a;
	padding-right: 20px;
	} 
	a:active.footer { 
	text-decoration: none; 
	color: #a71a1a;
	padding-right: 20px;
	} 
	A:visited.footer{ 
	text-decoration: underline; 
	color:  #a71a1a;
	padding-right: 20px;
	} 
	A:hover.footer{ 
	text-decoration: none; 
	color: #a71a1a;
	padding-right: 20px;
	}
	
	/* This gets rid of space in last footer element
	<a href="#" class="footer" style="padding-right: 0px;">*/
	
	
	
p, table, th, tr, td, h1, h2, h3, img, a:link, a:visited, a:hover, a:active {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 11px;
	text-decoration: none;
	color: #FFFFFF;
	border: none;
	line-height: 22px;
	
	}
	
h1 {
	font-weight: normal;
	font-size: 14px;
	color: #FFFFFF;
	padding: 0;
	margin: 0;
	text-transform: uppercase; /* Optional */
	}

h2 {
	font-weight: bold;
	font-size: 12px;
	color: #850808;
	padding: 0px;
	margin: 0px;
	line-height: 10px;
	text-transform: uppercase; /* Optional */
	}

h3 {
	font-weight: normal;
	font-size: 11px;
	color: #000;
	padding: 0;
	margin: 0;
	text-transform: uppercase; /* Optional */
	}

p {
	margin: 0;
	padding: 0;
	}
	
a:link, a:visited {
	text-decoration: underline;
	font-weight: bold;
	color: #FFFFFF; 
	}
	
a:hover, a:active {
	text-decoration: underline;
	font-weight: bold;
	color: #850808; 
	}

/* ----------------------- <genClasses> --------------------------- */


/* ----------------------- </genClasses> --------------------------- */

/* ----------------------- <imgRollOver> --------------------------- */
/* this is the super-duper "rollOver" technique for 
creating dynamic subnavs with the same background images */

/* <table cellpadding="0" cellspacing="0" border="0" class="imageSwap">
    <tr>
        <td><a href="#" ><span>Lorem Ipsum 1</span></a>
			<a href="#" ><span>Lorem Ipsum 2</span></a>
			<a href="#" ><span>Lorem Ipsum 3</span></a>
			<a href="#" ><span>Lorem Ipsum 4</span></a>
			<a href="#" ><span>Lorem Ipsum 5</span></a>
			<a href="#" ><span>Lorem Ipsum 6</span></a></td>
    </tr>
    </table> the HTML code to make this work */

.imageSwap a:link, .imageSwap a:visited {
	display: block;
	background: url(images/sample.jpg) no-repeat;
	font: bold 9px Verdana, Arial, Helvetica, sans-serif;
	color: #FFF;
	text-decoration: none;
	width: 190px;
	height: 30px;
	margin: 0;
	padding: 0;
	}

.imageSwap a:hover, .imageSwap a:active {
	background: url(images/sample.jpg) no-repeat;
	background-position: -190px 0; /* this shifts the image over to the left "x-pos y-pos" */
	font: bold 9px Verdana, Arial, Helvetica, sans-serif;
	color: #000;
	text-decoration: none;
	width: 190px;
	height: 30px;
	margin: 0;
	padding: 0;
	}

/* this positions the text within the cell. must use a p tag around the dynamic text */

.imageSwap span {
	display: block;
	font: bold 9px Verdana, Arial, Helvetica, sans-serif;
	color: #000;
	padding: 8px 3px 3px 30px;
	margin: 0;
	}
	
