/*-------------------------------------------------------------------	
	The CSS spec sez import statements must come first in a CSS file.
	Dumb rule, but Mozilla observes it while IE is more flexible.
-------------------------------------------------------------------*/	

@import url("main_menu.css");
@import url("search_input.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		: 230px;
	top			: 10px;
    z-index		: 1;
}


/*	Most pages use the same "main menu"...	*/

#mainMenuContainer
{
    position		: absolute;
    left			: 30px;
    top				: 15px;
    z-index			: 1;
}


/*	Position the search container */

#searchContainerPosition
{
	position 	: absolute;
	left		: 310px;
	top			: 315px;
	z-index		: 1;
}

/*  Positioning info for the "Congress" mode */

#state_localFormContainer
{
	position		: absolute;
	left			: 290px;
	top				: 80;

	width			: 345px;
	height			: 140px;
}

#state_localFormInfo
{
	position		: absolute;
	left			: 0px;
	top				: 30;

	width			: 345px;
	text-align		: center;

    color			: red;
    font-size		: 8pt;
    font-weight		: bold; 
    font-family		: Arial, Helv, Tahoma, serif; 
}

#state_localStateList
{
	position		: absolute;
	left			: 100px;
	top				: 0px;
}

#searchButton
{
	position 	: absolute;
	left		: 125px;
	top			: 95px;
}

