html, body, #wrapper {
   min-height: 100%; /*Sets the min height to the
                       height of the viewport.*/
   width: 100%;
   height: 100%; /*Effectively, this is min height
                   for IE5+/Win, since IE wrongly expands
                   an element to enclose its content.
                   This mis-behavior screws up modern
                   browsers*/
   }

html>body, html>body #wrapper {
   height: auto; /*this undoes the IE hack, hiding it
                   from IE using the child selector*/
   }


body {
    margin: 0;
	font-family: Verdana, sans-serif;
	background-color: #E0F1EA;
	font-size:14px;
	background-image:url(/media/top.png);
	background-position:top left;
	background-repeat:repeat-x;   
}
#wrapper {
   position: absolute;
   top: 0;
   left: 0;
   }

#footer {
    font-family: Verdana, Geneva, Arial, sans-serif;
	background-image:url(/media/bottom.png);
	background-position:bottom left;
	background-repeat:repeat-x;
    text-align: center;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 120px;
   }

#main {
   margin-bottom: 85px; /*Modify value as needed for
                         footer height.*/
   height: auto;
   padding: .5em;
   }
   
a		{
	color: #0000CC;
	text-decoration: none;
}
a:hover{
	color: #0000CC;
	text-decoration: none;
}
#container{
	width:700px;
	margin-left: auto;
	margin-right: auto;
	text-align:left;
}
#logo{
 float:left;
 }
#nav{
	text-align:left;
	font-size:20px;
	font-weight:bold;
	margin-top:120px;
	float:left;
	letter-spacing:3px;
	border:1px dashed #999;
	padding:5px 20px 5px 20px;
}
#nav a{
	color:#000;
}
#nav a:hover{
	color:#678F2D;
}
#content{
	width: 500px;
	padding: 15px 10px 20px 10px;
	color:#000;
	text-align:justify;
	margin-left: auto;
	margin-right: auto;
	clear:both;

	}
#content img{
	border:0px;
}
h1{
	font-size: 22px;
	margin: 0 0 5px 0;
	color:#678F2D;
	border-bottom:1px dashed #000;
}
h2{
	font-size:16px;
	margin: 0;
}
.smallText{
	font-size:10px;
}
#footerOLD 
{
    font-family: Verdana, Geneva, Arial, sans-serif;
	background-image:url(/media/bottom.png);
	background-position:top left;
	background-repeat:repeat-x;
    text-align: center;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 120px
     }
