/* Main content */
body{
	margin:10px;
	line-height:1.6;
	color: #333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
}
td p {
	font:11px Verdana, Arial, Helvetica, sans-serif;
	color:#333;
	line-height:1.6;
}

ul{
	margin:0;
	padding:0;
	list-style-type: disc;
}
/* Main Link Properties */
A:link {
	color: #333;
	text-decoration: none;
}
A:visited {
	color: #333;
	text-decoration: none;
}
A:active {
	color: #333;
	text-decoration: none;
}
A:hover {
	color: #6c7e58;
	text-decoration: underline;
}

/* Table Link Properties */

/*div#header 	a {
	font-size: 12px;
	font-family : Verdana,Arial,sans-serif;
	font-weight : bold;
	padding: 5px;
	background-color: #01427a;
	border-bottom: 1px dotted #CCC;
	color : #FFF;
	margin-top:0px;
}

div#header a:hover {
background-color: #6c7e58;
color: white;
}
*/

/* Top navbar */
div#topnav
{
background-color: #01427a;
border-top: solid 1px #FFFFFF;
border-bottom: solid 1px #FFFFFF;
}
div#topnav ul
{
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
color: white;
text-align: center;
margin: 0;
padding-bottom: 5px;
padding-top: 5px;
padding-left: 0px;
line-height:1.3;
}
div#topnav ul li
{
display: inline;
}
div#topnav ul li a
{
padding: 5px 10px 5px 10px;
color: white;
text-decoration: none;
border-left: 1px solid #fff;
border-right: 1px solid #fff;
margin-right: -1px;
}
div#topnav ul li a:hover
{
background-color: #6c7e58;
color: white;
}

/* Left properties */
.leftSide ul li{list-style:none;line-height:18px;}

/* Titles */
h1 {
	font-size: 12px;
	font-family : Verdana,Arial,sans-serif;
	font-weight : bold;
	padding-top: 5px;
	border-bottom: 1px dotted #999;
	color : #333;
	margin-left: 14px;
	margin-right: 4px;
	text-align:right;
}

h2 {
	font-size: 12px;
	font-family : Verdana,Arial,sans-serif;
	font-weight : bold;
	padding: 5px;
	background-color: #01427a;
	border-bottom: 1px dotted #CCC;
	color : #FFF;
	margin-top:0px;

}

h3 {
	font-size: 12px;
	font-family : Verdana,Arial,sans-serif;
	font-weight : bold;
	padding: 5px;
	background-color: #e2e5de;
	border-bottom: 1px dotted #CCC;
	color : #01427a;
	margin-top:0px;
	margin-bottom:0px;
}

h4 {
	font-family : Verdana, Arial, sans-serif;
	color : #333;
	border-bottom: 1px dotted #999;
	margin-left: 0px;
	margin-right: 4px;
	text-align:left;
	font-weight: bold;
	font-size: 18px;
}

/* Gray cell backgrounds */
td.gray{
background-color:#CCC;
}

/* Horizontal rule */
hr {
height: 0;
border-width: 1px 0 0 0;
border-style: solid;
border-color: #e69d01;
}
.featured {
	color: #FFF;
	background-color: #F0F0F0;
}
.ItemTitle {
	font-size: 18px;
	font-weight: bold;
}
.ItemTitle_sub {
	border-bottom: 1px dotted #999;
	margin-right: 4px;
}
body table tr td table tr td table tr td h4 {
	font-size: 12px;
	font-weight: normal;
}

/* Forms */
form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font:100% verdana,arial,sans-serif;
  margin: 0;
  padding: 0;
  min-width: 300px;
  max-width: 600px;
  width: 362px; 
}

form fieldset {
  / * clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border-color: #000;
  border-width: 1px;
  border-style: solid;
  padding: 10px;        /* padding in fieldset support spotty in IE */
  margin: 0;
}

form fieldset legend {
	font-size:1.1em; /* bump up legend font size, not too large or it'll overwrite border on left */
                       /* be careful with padding, it'll shift the nice offset on top of border  */
}

form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 80px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
}

form input{
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 10px;
}
form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:250px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 10px;
}

form input#reset {
	width:auto
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}
form input#submit {
	width:auto; /* set margin-left back to zero on reset button (set above) */
}
textarea { overflow: auto; }

form small {
	display: block;
	margin: 0 0 5px 100px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 80%;
}


form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}

