/*
** Adapted from http://www.cssplay.co.uk/layouts/body4.html
*/
html
{
   height: 100%; /* for IE */
   max-height: 100%; /* for other browsers */
   padding: 0;
   margin: 0;
   border: 0;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   background: #fff; /* only in IE */
   background-image: url(images/green.png);
   background-repeat: repeat;
   background-attachment: fixed;
/* hide overflow:hidden from IE5/Mac */ 
/* \*/ 
overflow: hidden; 
/* */ 
}
body
{
   height: 100%; /* for IE */
   max-height: 100%; /* for other browsers */
   overflow: hidden;
   padding: 0;
   margin: 0;
   border: 0;
}
#head
{
   z-index: 5;
   display: block;
   background: url(images/bghdr.gif) repeat-x fixed;
   margin: 0px;
   width: 100%;
   color: #000;
   border-bottom: 0px solid black;
   position: absolute;
   top: 0px;
   height: 56px;
   min-width: 600px;
   right: 0px;
   padding:0px 0px;
}

@media screen and (max-width: 700px)
{
   #head
   {
      min-width: 300px;
   }
   .logo
   {
      display:none;
   }
   .trail
   {
      display:none;
   }
}

#content
{
   z-index: 3;
   overflow: auto;
   position: absolute;
   top: 56px;
   bottom:0px;
   left:0px;
   right: 0px;
   /*margin-left:1ex; mv*/
}
* html #content
{
   z-index:3;
   top:0px;
   left:0px;
   right:0px;
   bottom:0px;
   height:100%;
   max-height:100%;
   width: 100%;
   overflow:auto;
   position:absolute;
   border-top:56px solid #fff;
   border-bottom:0px solid #fff;
   border-right:0px solid #fff;
}
