html, body {
    min-height: 100%; /*Sets the min height to the
                        height of the viewport.*/
    height: 100%; /*Effectively, this is min height
                    for IE5+/Win, since IE wrongly expands
                    a sized element to enclose its content.*/
    margin: 0;
    padding: 0;
    }

html>body {
    height: auto; /*this undoes the IE hack, hiding it
                    from IE using the child selector*/
    } 
input {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	border: 1px solid #999999;
}
select {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: xx-small;
	border: 1px solid #999999;
}
.nolineb {
	text-decoration: none;
	color: #6F4B1C;

}
a:hover {
	text-decoration: underline;
}
.nolinebb {
	color: #732D3F;
	text-decoration: none;
}
.nolineby {
	color: #92610C;
	text-decoration: none;
}
.searchresults a:link {
	color:blue;
}
.searchresults a:visited {
	color:blue;
}