/* CSS Document */

/* style for general background color and font */
body { 
	background-color: #FFFFFF;
	font: normal 11px verdana;
	color: #000000;
} 

body, td, div, p, th, select, input { 	
	font: normal 11px verdana;
	color: #000000; 
	}

/* style for links /*
a { 
	color: #943535;
	text-decoration: none; 
}

a:visited { 
	color: #943535;
	text-decoration: none;
} 

a:active { 
	color: #943535;
	text-decoration: none;
}

a:hover { 
	color: #777;
	text-decoration: none;
	}


/* style for welcome paragraph */
.welcome { 
	font: normal 12px verdana;
	color: #000000;
	line-height: 20px;
}

/* style for welcome title */
.title {
	font-family: book antiqua;
	font-size: 13pt;
	}

.copyright { 
	font: normal 9px verdana;
	}

/* style for navigation */
ul {  /* main menu */
	margin: 0;
	padding: 0;
	list-style: none;
	width: 201px; /* width of menu items */
	border-bottom: 1px solid #555555;
	text-align: right; 
}

ul li {
	position: relative;
}

li ul { /* submenu items */
	position: absolute;
	left: 201px;
	top: -1;
	display: none;
	border: 1px solid #555555;
	border-bottom: 0;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #943535;
	background: #fff;
	padding: 5px;
	border-bottom: 1px solid #555555;
}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

li:hover ul, li.over ul { display: block; }
	
