﻿
/* =body 
---------------------------------------------------------------------- */
body 
{
	background-color:#ABC;
	}
	
/* =mainbody defines the location on the screen for the body text
---------------------------------------------------------------------- */
#mainbody
{
	position: relative; 
	width: 80%; 
	}
    
/* =hr Orange horizontal rule, 1 character high
---------------------------------------------------------------------- */
hr
{
	background-color: #FF9900; 
	height :1em
	}
	
	
/* =a:hover Turn hyperlink background red when hovering above it 
---------------------------------------------------------------------- */
a:hover 
{
	background-color:Red;
	}

	
/* =a:hover Ignore the above a:hover when within a span element
---------------------------------------------------------------------- */
span a:hover 
{
	background-color:Transparent;
	outline-color:Yellow ;
	}
	

