/*-------------------------------------------------------------------	
	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_horizontal.css");
@import url("search_input.css");
@import url("main_menu.css");
@import url("show_lib.css");

BODY
{
	position				: absolute;
	left					: 0px;
	top						: 0px;

	background	  		   	: url("../backgrounds/stars_on_white.gif");

    color					: black;
    font-size				: 10pt;
    font-weight				: normal; 
    font-family				: Tahoma, Arial, Helv, serif; 

	scrollbar-face-color   	: #800000;
	scrollbar-track-color  	: white;
	scrollbar-arrow-color  	: red;
}

A:link 
{
	color: blue; 
	text-decoration: none;
}

A:visited {
	color: blue; 
	text-decoration: none;
}

A:hover {
	color: red; 
	text-decoration: underline;
}

#pageTitle
{
	position 	: absolute;
	left		: 200px;
	top			: 0px;
    z-index		: 1;
}

#searchContainerPosition
{
	position 	: absolute;
	left		: 270px;
	top			: 50px;
	z-index		: 3;
}

#mainMenuContainer
{
    position		: absolute;
    left			: 30px;
    top				: 50px;
    z-index			: 1;
}

