/* style.css - a simple style sheet */
body { padding-left: 11em;
  color: #000099; background: #999999; 
  :link { color: rgb(0, 0, 153); }  /* for unvisited links */
  :visited { color: rgb(153, 0, 153); } /* for visited links */
  a:active { color: rgb(255, 0, 102); } /* when link is clicked */
  a:hover { color: rgb(0, 96, 255); } /* when mouse is over link */
   }
  div.box { border: solid; border-width: thin; width: 100%; }
  ul.navbar {
       list-style-type: none;
       padding: 0;
       margin: 0;
       position: absolute;
       top: 3.5em;   right: 1em;   width: 12em }
  ul.navbar li {
       background: white;
       margin: 0.5em 0;   padding: 0.6em; border-left: 0.3em solid grey }
  ul.navbar a { text-decoration: none }
  a:link {  color: blue }
  a:visited {  color: purple }
  address {   margin-top: 1em;   padding-top: 1em;  }

#framecontentLeft{
position: absolute; 
top: 3.5em; 
left: 0; 
width: 15em; /*Width of left frame div*/
height: 100%;
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background-color: white;
color: navy;
border-right: 0.25em solid grey
}

#framecontentTop{ position: absolute;
right: 15em; /*Set left value to WidthOfLeftFrameDiv*/
width: auto;
height: 4em; /*Height of top frame div*/
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background-color: white;
}


#maincontent{
position: absolute; 
left: 15.5em;
top: 0; /*Set top value to HeightOfTopFrameDiv*/
bottom: 0;
height: 100%;
width: auto;
overflow: visible; 
background-color: white;
}


.innertube{
margin: 1em; /*Margins for inner DIV inside each DIV (to provide padding)*/
}

* html body{ /*IE6 hack*/
padding: 3.5em 0 0 15.5em; /*Set value to (0 0 0 WidthOfFrameDiv)*/
}

* html #maincontent{ /*IE6 hack*/
height: 100%; 
width: 100%;
}


