body {
margin : 4px;
color : #000;
background: #afe6c6;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
}

a:link {text-decoration: underline;}
a:visited {text-decoration: none;}
a:active {text-decoration: none;}
a:hover {text-decoration: none; color: green;}

.bodybold {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
}
.box {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	float:left;
	padding: 8px 7px 8px 8px;
	width: 350px;
	margin: 4px 0px 25px 0px;
	border: 2px solid #037BC1;
}

.msg_list {
	margin: 0px;
	padding: 0px;
	width: 340px;
}
.msg_head {
	padding: 5px 10px;
	cursor: pointer;
	position: relative;
	font-color: #0000CC;
	text-decoration: underline;
	margin:1px;
	color: #0000CC;
}
.msg_body {
	padding: 6px 10px 12px;
	background-color:#F4F4F8;
	color: #333333;
}

.foot {
	font-size: 10pt;
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: normal;
	color: #FFFFFF;
	text-decoration: none;
}

a.foot:link {color: white; text-decoration: underline;}
a.foot:visited {color: white; text-decoration: none;}
a.foot:active {text-decoration: none;}
a.foot:hover {color: blue; text-decoration: none;}

.title {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 22px;
	font-style: normal;
	font-weight: bold;
	color: #333333;
	text-decoration: none;
}
.small {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: normal;
	color: #666666;
	text-decoration: none;
}

/* remove the list style */
	#nav {
		margin:0; 
		padding:0; 
		list-style:none;
	}	
	
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
		#nav li {
			float:left; 
			display:block; 
			width:100px; 
			background:#007AC3; 
			position:relative;
			z-index:500; 
			margin:0 1px;
		}
		
		/* this is the parent menu */
		#nav li a {
			display:block; 
			padding:8px 5px 0 5px; 
			font-weight:700;  
			height:28px; 
			text-decoration:none; 
			color:#fff; 
			text-align:center; 
			color:#fff;
		}

		#nav li a:hover {
			color:#333;
		}
	
		/* you can make a different style for default selected value */
		#nav a.selected {
			color:#333;
		}
	
		/* submenu, is hidden by default */
		#nav ul {
			position:absolute; 
			left:0; 
			display:none; 
			margin:0 0 0 -1px; 
			padding:0; 
			list-style:none;
		}
		
		#nav ul li {
			width:100px; 
			float:left; 
			border-top:1px solid #fff;
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display:block;  
			height:15px;
			padding: 8px 5px; 
			color:#ddd;
		}
		
		#nav ul a:hover {
			text-decoration:underline;
			background-color:#fff;
			border-right: 1px solid #037BC1;
			border-bottom: 1px solid #037BC1;
			border-left: 1px solid #037BC1;	
		}

		/* fix ie6 small issue */
		/* we should always avoid using hack like this */
		/* should put it into separate file : ) */
		*html #nav ul {
			margin:0 0 0 -2px;
		}
