/* 	CSS Document */
/* 	General Site Style */
/* 	This file contains style attributes for elements that are mostly common
	accross the site. */
/*	Written by: Cristofer Atiencia (atiencia@hotmail.com) */
	
/* 	Items are categorized into TAGS, IDs and CLASSES and are oredered	*/
/*	alphabetically withing these categories.							*/

/******************************** TAGS ***********************************/
body  		{	
			background: #000B78 url(bk.png);
			font-family: Arial, Helvetica, sans-serif;
			}
/****************************** END TAGS *********************************/




/********************************* IDs ***********************************/

/*	The mainBox is a layer (in the HTML code it is <DIV id="mainBox"> )
	implemented accross the site. Visually it is a dark blue box standing 
	out on top of the background. Its size is set to the below dimensions
	so that it is viewable on any resolution screen as small as 800X600.
	The box gets centered depending on the resolution according by simple
	javascript code which can be found in the file: mainScript.js*/	 
#mainBox	{
			background: #000060;
			position: absolute;
			top: 25px;			/* should be 25px  */
			left: 130px;		/* should be 130px */
			width: 535;
			height: 400;
			border: thin solid #494F7D;
			visibility: hidden;
			}
			
#menuBox	{
			background: #000080;
			position: absolute;
			top: 0;
			right: 0;
			height: 18;
			width: automatic;
			padding-left: 5;
			padding-right: 3;
			color: white;
			font-size: 12px;
			border: 1px solid #65697E;
			}
/******************************* END IDs *********************************/




/****************************** CLASSES **********************************/
.menuLink	{
			color: #cccccc;
			font-size: 11px;
			}
						
/**************************** END CLASSES ********************************/
