/*
. = CLASS
# = ID
Tag name = Tag name
Ex body it will affect EVERYTHING in the <body> tag

Last one read wins

*/

.background
{
	background-color: #0C361A;
}

.background_body
{
	background-image: url(images/background_center.gif);
	background-repeat: no-repeat;
}

.background_news
{
	background-image: url(images/background_news.gif);
}
/*.background2
{
	background-image: url(images/menu_bar.gif);
	background-repeat: no-repeat;
}
*/

img
{
border: 0px;
}

body
{
color: white;
}


/* 
This is what I used to set the graphic behind the menu text and it formats the text itself
*/
.menu
{
background-image: url(images/menu_bar.gif);
background-repeat: no-repeat;
padding-left: 65px; /*If the Font-weight is bold then this should be 50*/
padding-bottom: 3px;
/*font-weight: bold;*/
color: #0C361A;
}

/*
These are classes with subcalsses to use for formatting the menu links ONLY
*/

.MenuHover A:link
{
color: #0C361A;
text-decoration: none;
/*font-weight: bold;*/
}

.MenuHover A:visited
{
color: #0C361A;
text-decoration: none;
/*font-weight: bold;*/
}

.MenuHover A:hover
{
color: #FFFFFF;
text-decoration: none;
/*font-weight: bold;*/
}

.table_data /*This is for applying characteristics in table cells*/  
{

}

/*
Here is the HTML of how it works


<tr>
   <td class = "menu" width ="990" height="50">						
	    <p><span class="MenuHover"><a href="index.html">Home &nbsp;</a>&nbsp; | &nbsp;<a href=""></span></p>
   </td>
</tr>


*/