html, body {
	background-color: white;
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	color: black;

}


h1, h2, h3
 {
	margin: 10px 0px 10px 20px;
	letter-spacing: 0.02em;
	font-weight:lighter;
}

p {
	margin-left:20px;
	margin-right:20%;
}

.alert {
	color: red;
	font-weight: bolder;
	font-size: larger;
}

/*begin banner rules*/
#banner {

	margin:0;
	padding:0;
	background-color: #DEE4F2;
		width: 100%;
	/*make the leaf image appear as a background aligned right with no repeat*/
	 background-image: url(../images/snowleaf1.jpg); 
	background-position: right;
	background-repeat: no-repeat; 
	height:93px;
	
}

#banner h1 {
	color: #46479A;
	font-family: "Arial Narrow", Arial, sans-serif;
	font-size: 300%;
	margin:0;   /*top banner h1 needs its margins set to zero to get rid of that big space at the top in firefox*/
}

img.left {
	float: left;
	margin: 0 10px 0px 0px;
	background-color: white;
}
/*end banner rules*/



/*begin login form layout rules*/
#login 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;
  width: 560px; 
}

#login form fieldset {
	
	border-color: #000;
	border-width: 1px;
	border-style: solid;
	padding: 10px; /* padding in fieldset support spotty in IE */
	margin: 0 0 0 20px;
}

#login form fieldset legend {
	font-size:1.1em; /* bump up legend font size, not too large or it'll overwrite border on left */
                       
}

#login form label {
	display: block; /* block float the labels to left column, set a width */
	float: left;
	width: 150px;
	padding: 0;
	margin: 5px 0 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right;
}

#login form input {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

#login form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

#login form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}
/*end login form layout rules*/

table {
	font-size:70%;
	margin-left: 20px;
   
}

td {
	background-color: #D6D4E1;
	text-align: left;
	vertical-align: top;
}	
	
.badpass {
		color: red;
	font-weight: bolder;
	font-size: larger;
	position: absolute; 
	left: 110px; 
	top: 110px;
}