/* undohtml.css */
/* (CC) 2004 Tantek Celik. Some Rights Reserved.             */
/*   http://creativecommons.org/licenses/by/2.0                   */
/* This style sheet is licensed under a Creative Commons License. */

/* Purpose: undo some of the default styling of common (X)HTML browsers */


/* link underlines tend to make hypertext less readable, 
   because underlines obscure the shapes of the lower halves of words */
:link,:visited { text-decoration:none }

/* no list-markers by default, since lists are used more often for semantics */
/*ul,ol { list-style:none }*/

/* avoid browser default inconsistent heading font-sizes */
/* and pre/code too */
h1,h2,h3,h4,h5,h6,pre,code { font-size:1em; }

/* remove the inconsistent (among browsers) default ul,ol padding or margin  */
/* the default spacing on headings does not match nor align with 
   normal interline spacing at all, so let's get rid of it. */
/* zero out the spacing around pre, form, body, html, p, blockquote as well */
/* form elements are oddly inconsistent, and not quite CSS emulatable. */
/*  nonetheless strip their margin and padding as well */
h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input
{ margin:0; padding:0; border: 0;}

li {
	margin: 0px;
	padding: 0px;
}
ul {
	margin: 0px;
	padding: 0px;
}

/* whoever thought blue linked image borders were a good idea? */
a img,:link img,:visited img { 
	border: none; 
}

/* de-italicize address */
address { font-style:normal }

/* more varnish stripping as necessary... */

img { display:block; }

/* default link style for HLI */
a {
	/* color:#3399FF; */
	color:#0066FF;
}
a:hover {
	text-decoration: underline;
}

/* Default page styles for HLI */
body {
	background-color: black;
	font-family: Arial, Helvetica, san-serif;
	color: white;
}
#footer_bottom {
	font-size:9px;
}
h5 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight:bold;
	font-size:11px;
	text-align:left;
	padding-left: 5px;	
	padding-top: 5px;
}
.normal, .normal li {
 font-family: Verdana, Arial, Helvetica, sans-serif; 
 font-size: 11px; 
 color: white;
 text-align:left;
 padding-left: 5px;
}
.topSpace, .topSpace li {
	padding-top: 5px;
}
.topSpaceLarge{
	padding-top: 20px;
}
.logoLayer {
	padding-top: 5px;
	height: 40px;
}
.logoLayer img {
	margin: 0 auto;
}

/* secondary navigation list */
#nav2 {
	font-size:12px;
	font-weight: bold;
}
#nav2 li {
	width: 150px;
	height: 20px;
	border: 1px solid white;
	padding-top: 5px;
	padding-left: 5px;
	margin-top: 5px;
	list-style-type: none;
}
#crossARC { 
	float:left;
	margin-top:5px;
}
#crossARC li {
	border:0px solid white;
	padding:0;
	margin:0;
	width:150px;
}
#crossARC li a { 
	font-weight:normal;
}
#crossARC li a:hover {
	color:yellow;
}
#nav2 li:hover, li.sfhover {
	background-color: #999999;
}
#nav2 a:hover {
	background-color: #999999;
	border: 0px;
	color: white;
}
#nav2 a {
	text-decoration: none;
	color: white;
}

input, textarea {
	border: 1px solid gray;
}

.alert {
	color: red; 
	font-weight: bold;
	display: inline;
}

.leftColumn {
	float: left;
	width: 120px;
	padding-top: 3px;
	text-align: right;
	font-weight: bold;
}
.rightColumn {
	width: 275px;
	float:left;
	padding-left: 5px;
}
.formRow {
	clear:both;
	width: 740px;
	margin-top: 2px;
	float: left;
}	
.error {
	color: red;
	font-weight: bold;
	display: inline;
	margin-left: 3px;
}
