/***** Controls all the initial colors of Navigation and body text *****/
a:link
{
	color: rgb(255,204,0); 
}
a:visited
{
	color: rgb(255,204,0); 
} 
a:active 
{
	color: rgb(255,204,0);
}

/***** Initially controls all text (Navigation & Body) to white. *****/
/***** Change the (255,255,255) below to (255,204,0) changes ALL text to gold *****/
body
{
	font-family: Verdana, Arial, Helvetica;
	background-color: rgb(0,0,0);
	color: rgb(255,255,255);
}

/***** Controls tabel colors *****/
table
{
	table-border-color-light: rgb(255,255,102);
	table-border-color-dark: rgb(0,0,0); 
}

/***** Controls header font and color *****/
h1, h2, h3, h4, h5, h6
{
	font-family: Verdana, Arial, Helvetica;
}
h1
{
	color: rgb(255,204,0);
}
h2
{
	color: rgb(255,255,255);
	font-size: 18px;
	border-bottom: 1px solid #0033FF; 
}
h3
{
	color: rgb(204,51,0); 
}
h4
{
	color: rgb(255,255,153);
}
h5
{
	color: rgb(255,255,0);
}
h6
{
	color: rgb(255,255,255);
}


/*************************  Pseudo classes *************************/

:link {
	color: rgb(255,204,0);
}
li :link {
	color: rgb(255,204,0);
}

:visited { 
    color: rgb(255,204,0);
}

li :visited { 
    color: rgb(255,204,0);
}

:hover {
color: rgb(255,51,0);
}

li :hover {
	color: rgb(255,51,0);	
}
  
:active { 
color: rgb(255,51,0);
}