/*
**TEST CSS2 FOR using DIV tags instead of TABLE tags to do layout
**Mark Anderson: 2004/July/18
*/
<html>
<head>
<meta http-equiv="Cache-control"  content=" no-cache, must-revalidate" />
<style type="text/css">
/* #topbanner is the DIV id for the scotclimb logo */
#topbanner {
        position: relative;
        width: 100%;
        height: 145px;
        top: 0;
        right: 0;
        bottom: auto;
        left: 0;	   
}

/* The main content of the page */
#maincontent
 {
        position: relative;
        /* width: 72.5%; */
	/* width: 575px; */
	width: 90%;
	top: auto; /*10px;*/
	/* top: 5 */
	/* left: 5px; */
}


#stdbottom {

	position: relative;
	/* width: 100%; */
	top: 5;
	/*left: 0; */
}

</style>
</head>
</html>
