/*-------------------------------------------------------------------	
	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;

	background	  		   	: url("../backgrounds/stars_on_white.gif");

    color					: black;
    font-size				: 14px;
    font-weight				: bold; 
    font-family				: Tahoma, Helv, Arial, 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;
}

P
{
	margin-top    : 6px;
	margin-bottom : 6px;
}

#pageContainer
{
	width		: 600px;
	height		: 800px;
}

#pageTitle
{
	position	: absolute;
	left		: 250px;
	top			: 5px;
}
 
#closed
{
	position	: absolute;
	left		: 115px;
	top			: 250px;
}
 
/*	Most pages use the same "main menu"...	*/

@import url("main_menu.css");

#mainMenuContainer
{
    position		: absolute;
    left			: 20px;
    top				: 50px;
    z-index			: 1;
}

#austin_music
{
    position		: absolute;
    left			: 250px;
    top				: 70px;
	width			: 400px;
    z-index			: 1;
}

#colleagues
{
    position		: absolute;
    left			: 170px;
    top				: 350px;
	width			: 400px;
    z-index			: 1;
}

#resources
{
    position		: absolute;
    left			: 170px;
    top				: 350px;
	width			: 400px;
    z-index			: 1;
}

.errata
{
	text-align		: center;
    color			: black;
    font-size		: 8pt;
    font-weight		: bold; 
    font-family		: Tahoma, Arial, Helv, serif; 

	display : none;
}

/*	Copyright notice */

#djFooter
{
    position		: absolute;
    left			: 170px;
    top				: 850px;

	width			: 400px;

	text-align		: center;
    color			: black;
    font-size		: 8pt;
    font-weight		: bold; 
    font-family		: Tahoma, Arial, Helv, serif; 
}

