/*-------------------------------------------------------------------	
	The spec sez (?) import statements must come first in a CSS file.
	Dumb rule, but Mozilla observes it will IE is more flexible.
-------------------------------------------------------------------*/	

@import url("main_menu.css");

BODY
{
	position				: absolute;
	left					: 0px;
	top						: 0px;

    color					: black;
    font-size				: 8pt;
    font-weight				: bold; 
    font-family				: Arial, Tahoma, Helv, serif; 

	scrollbar-face-color   	: #800000;
	scrollbar-track-color  	: white;
	scrollbar-arrow-color  	: red;
}

A:link 
{
	color: blue; 
	text-decoration: none;
}

A:visited {
	color: purple; 
	text-decoration: none;
}

A:hover {
	color: red; 
	text-decoration: underline;
}


#pageTitle
{
    position	: absolute;
    left		: 150px;
    top			: 0px;
}
 

/*	Most pages share the "main menu", but position it individually. */

@import url("main_menu.css");

#mainMenuContainer
{
    position		: absolute;
    left			: 20px;
    top				: 60px;
    z-index			: 1;
}


/*	Page text... */

#drewText
{
	position	: absolute;
	left		: 225px;
	top			: 60px;

	width 		: 225px;
	height		: 400 px;

	text-align	: left;
}

/*	Page graphics... */

#nixonElvis
{
    position		: absolute;
    left			: 470px;
    top				: 60px;
	width			: 225px;
    z-index			: 2;
	color			: red;
}

#drewLloydPaul
{
    position		: absolute;
    left			: 150px;
    top				: 470px;
	width			: 450px;
}

