/* normal row */
.ntext {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	width: 580; 
}

/* title row */
.ttext {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #666633;
	width:  580
	
}

hr {color: CCCCCC}
/* horizontal navigation */
/* A narrow horizontal container that centers its content */
#navigationblock {
background: #eeeeee;
padding: 2px;
text-align: center;
}

/* "navigation ul" styles turn an UL into a horizontal navigational bar */
#navigationblock ul {
display: inline;
font-size: 12px;
margin: 0; /* removes indent IE and Opera */
padding: 0; /* removes indent Mozilla and NN7 */
} 

/* border-left adds a "|" seperator between links */
#navigationblock ul li {
border-left: 1px solid #999999;
display: inline; /* sets orientation across the containing element */
list-style: none; /* turns off display of bullet */
}

/* border-left removes the "|" seperator for the first link */
#navigationblock ul li.first {
border-left: none;
}

/* Adds padding and link color */
#navigationblock a {
color: #666666;
padding: 0.2em 0.5em;
}

/* Changes the background color when the link is hovered */
#navigationblock li a:hover {
background: #dddddd;
text-decoration: none;
}

/* vertical navigation */
ul#navigation { width: 12em; } 

ul#navigation li { 
  list-style: none; 
  background-color: #eeeeee;
  border-top: solid 1px #666666; 
  text-align: left; 
  margin: 0; 
} 


ul#navigation li a { 
  display: block; 
  text-decoration: none;
  border-left: solid 1px #666666; 
  color: #666666;
  padding: .25em; 
} 

a:link, a:visited { color: #c93; } 

a:hover, a:active { color: LightGreen; } 

a:hover { background-color: #fff; }


