/*
	MainMenu.css file.	072710hd
	
*/

#MainMenu {	/*	contained inside the MenuWrapper	*/
	color: red;	/* Selections text color	*/
	font-size: 20px;	/* Selections text size	*/
	width: 100%;
	height: 100%;
	}

th {	/*	Menu Selection defaults (table headers)	*/
	border: 5px;	/*	recess depth of the selections into the menu	*/
	border-style: inset;	/* causes selections to appear recessed.	*/
	
}
.Selection {
	/*color: blue;*/
}



/*--------------------------------------------------------------------------------------------------------------------------------------------
	Define some utility classes
-------------------------------------------------------------------------------------------------------------------------------------------- */

p.small {line-height: 50%}
p.big {line-height: 200%}


a:link		{color: blue;}	/*the basic unvisited link in a table (for this visit only)*/
a:visited	{color: blue;}	/*the basic at-the-bottom-of-the-page link to other pages OR the visited link in a table (this visit only) */
a:hover		{color: green;}
a:active		{color: orange;}

/*	This is the current page color displayed on the main menu.	*/
a.one:link		{color: #ff8000;} /*	this is the 'while loading' link color displayed on the main menu.	*/
a.one:visited	{color: #ff00ff;}	/*	this is the current page selection displayed on the main menu. (currently pink)	*/
a.one:hover		{color: black;}

a.two:link		{color: blue;}
a.two:visited	{color: #0000ff;}
a.two:hover		{color: green; font-size: 150%;}

a.three:link {color: yellow;}
a.three:visited {color: #0000ff;}
a.three:hover {background: #66ff66; font-size: 200%;}
a.three:active	{color: yellow;}

/*	This is the main menu selection colors if not currently visiting	*/
a.four:link 	{color: blue;}
a.four:visited {color: gray;}
a.four:hover 	{color: green; text-decoration: none;}
a.four:active	{color: red;}

a.five:link {color: green; text-decoration: none;}
a.five:visited {color: #0000ff; text-decoration: none;}
a.five:hover {text-decoration: underline;}

/* END link characteristics.*/


			 
/* Define a Dropped Capital Letter capability */
	.DroppedCapital {
			position: relative;
			color: blue;
			font-size: 2em;
			top: -.5%;
			padding-left: 2px;
			padding-right: 2em;
			float: left;
		  }
		  

