/***********************************************/
/* HTML tag styles                             */
/***********************************************/ 

body {
	font-family: helvetica,arial,sans-serif;
	color: #333333;
	line-height: 1.166;	
	margin: 0px;
	padding: 0px;
	background: url(images/navbackgrd.png);
}

a:link, a:visited, a:hover {
	color: #006699;
	text-decoration: none;
}

/* overrides decoration from previous rule for hovered links */
a:hover {
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
	font-family: helvetica,arial,sans-serif;
	margin: 0px;
	padding: 0px;
}

h1 {
	font-size: 120%;
	color: #334d55;
}

h2 {
	font-size: 114%;
	color: #006699;
}

h3 {
	font-size: 100%;
	color: #334d55;
}

h4 {
	font-size: 100%;
	font-weight: normal;
	color: #333333;
}

h5 {
	font-size: 95%;
	color: #334d55;
	margin-bottom: -10px;
}

h6.alert {
	font-size: 90%;
	color: maroon;
	margin-bottom: -10px;
}

p.alert {
	margin-left: 10px;
	font-size: 90%;
	color: maroon;
}

h6.okay {
	font-size: 90%;
	color: #00ad63;
	margin-bottom: -10px;
}

p.okay {
	margin-left: 10px;
	font-size: 90%;
	color: #00ad63;
}

ul {
	list-style-type: none;
}

ul ul {
	list-style-type: disc;
}

ul ul ul {
	list-style-type: none;
}

img.logo {
	padding: 10px;
}

/***********************************************/
/* Styles for the use in forms                 */
/***********************************************/
legend {
	font-weight: bold;
	font-size: 90%;
	padding-right: 10px;
	padding-left: 10px
}

label {
	float: left;
	width: 200px;
	text-align: right;
	margin-right: 5px;
	margin-top: -2px;
}

.formField {
	margin-left: 25px ;
	margin-bottom: -10px;
}

.button {
	text-align: right;
	margin-top: -5px;
	margin-right: 10px;
}

/***********************************************/
/* Layout Divs and supporting elements         */
/***********************************************/
#masthead {
	margin: 0px;
	padding: 5px 0 0 10px;
	background-color: #eeeeee;
	border: 1px solid #cccccc;
}

#navSite {
	font-size: 90%;
	color: #333333;
	padding-bottom: 5px;
	padding-left: 10px;
	white-space: nowrap;
}

#navSite a {
	padding-left:  4px;
	padding-right: 4px;
}

#navFuncs {
	float: left;
	margin:0;
	width:200px;
}

#content {
	position:absolute;
	top:50px;
	left:199px;
	width:550px;
	padding: 10px;
}

#content li {
	padding-bottom: 5px;
}

/************** .feature styles ***************/
.feature{
	padding: 10px;
}

.feature h3{
	padding: 0px;
	text-align: left;
}

.feature img{
	float: right;
	padding:  0px 0px;		/* Clear the padding */
	padding-right: 10px;	/* Add in right padding */
	margin: 0px 5px 5px 0;
}

/************** .story styles *****************/
.story{
	clear: both;
	padding: 10px 0px 0px 10px;
	font-size: 80%;
}

.story p{
	padding: 0px 0px 10px 0px;
}

p.details {
	font-size: 90%;
}

p.news {
	margin: 5px 0 10px 10px;
}

p.indent {
	margin: 5px 0;
	padding-left: 20px;
}

/*************.picture Styles******************/
.picture {
	position:absolute;
	top:63px;
	left:205px;
}

/**********Left Navigation Menu***********/
ul.leftNav {
  width: 155px;                /* sets the size of the menu blocks */
  padding-left: 15px;
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
}

ul.leftNav ul {
  width: 160px;                /* sets the size of the menu blocks */
  padding-left: 5px;
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
  background-color: #eee;      /* makes the menu blocks gray - a bg-color MUST be included for IE to work properly! */
  bg-color: #eeeeee;
  border: 1px solid #444;      /* puts a dark gray border around the menu blocks */
  z-index: 5;
}

ul.leftNav li {
  list-style-type: none;       /* removes the bullet points */
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */
  padding: 5px 0 5px 5px;
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                  the lack of offset makes these appear normal, but it will make a difference
                                  to the absolutely positioned child blocks */
}

ul.leftNav li:hover {
  background-color: #ddd;      /* gives the active menu items a gray background */
  color: #000;                 /* makes the active menu item text black */ 
}

/* and some link styles */
ul.leftNav li a { display: block; width: 100%; text-decoration: none; }
ul.leftNav li a:hover, ul.makeMenu li a.CSStoHighLink { color: #000; }
ul.leftNav li:hover > a { color: #000; } /* supports links in branch headings - must not be display: block; */
