/* Entire Document CSS */
html{
    height: 100%;
}
/* Header CSS */
.headers{
    color: #0000ff;
    text-align: center;
    padding: 10px;
}
.header_l{
    color: #0000ff;
    text-align: left;
    padding: 10px;
}
/* Body CSS */
.body{
    background-color: #fcfcfc;
/*    height: 50%; */
    color: #000000;
}
.container{
/*    margin: 0 auto;
    width: 50em; */
    text-align: left;
    padding-bottom: 5px;
/*    padding: 10px;
    height: 50%; */
}
/* Navigation CSS */
.sitenav {
    display: inline-block;
    background-color: #ccccff;
    border: 1px solid #ccccff;
    border-width: 1px 0px;
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 450px; 
}
.sitenav li {
    list-style-type: none;
    width: 14.28%;
    float: left;
}
.sitenav a {
    display: inline-block;
    padding: 10px 0;
    width: 100%;
    text-align: center;
}
.localnav {
    float: left;
    background-color: #ccccff;
    margin: 0;
    padding: 0;
    width: 15%;
    height:400px;
    min-width: 150px; 
}
/* Banner / Picture CSS / Text in Images */
.banner_l{
    float: left;
}
.banner_r{
    float: right;
}
.banner_h{
    display: block;
    width: 100%;
}
.banner_h img{
    border: 0;
}
/* Footer CSS */
#footer {
 clear: both;
 position: relative;
 z-index: 10;
/* height: 3em; */
 margin-top: -3em;
 text-align: center;
 background-color: #ccccff;
}
#content {
    padding-bottom: 3em;
}
/* Navigation Link CSS */
.sitenav a:link{
    color: #0000ff;
    text-decoration: none;
}
.sitenav a:visited{
    color: #0000ff;
    text-decoration: none;
}
.sitenav a:hover{
    background-color: #aaaaff;
    color: #000099;
    text-decoration: underline;
    font-weight: bold;
}
.sitenav a:active{
    background-color: #FCDC3B;
    color: #AA00FF;
    text-decoration: overline;
}
.Link A:hover{
    color: #028482;
    background-color: transparent;
    text-decoration: strong underline overline;
}

.wrap {
  overflow:hidden;
  width: 100%; /* Optional */
}

.left {
  float:left;
  width: 15%;
  min-width:150px;
}

.middle {
  float:left;
  max-width: 75%;
}

.right {
  float:left;
  width: 5%;
  min-width:100px;
}

/* here is material from http://www.mobilefish.com/popupwindow/div_example_vertical_menus_2.html

<html>
<head>
  <title>Div example</title>
</head>
<body>

<style type="text/css"> 
.menu {
  font-family: verdana, Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: bold;
  width: 12em;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu ul li {
  margin: 0; 
  border-top: 1px solid #000000;
}

.menu ul li a {
  display: block;
  padding: 2px 2px 2px 5px;
  border-left: 10px solid #336699;
  border-bottom: 1px solid #336699;
  border-right: 1px solid #336699;
  background-color: #000040;
  color: #ffffff; 
  text-decoration: none;
  width: 100%; 
}

/* "html>body" is a childselector command which means:
   select any body element that is a child of a html element.
   IE does not understand the childselector and will skip this rule.

   This is needed for Firefox. 
*/ /* 

html>body .menu ul li a {
  width: auto;
}

.menu ul li a:hover {
  border-left: 10px solid #002255;
  border-bottom: 1px solid #336699;
  border-right: 1px solid #669900;
  background-color: #c0c0ff;
  color: #ffffff;
}
</style>

<div class="menu">
<ul>
  <li><a href="#">Home</a></li>
  <li><a href="#">Tutorials</a></li>
  <li><a href="#">Developers</a></li>
  <li><a href="#">Emulators</a></li>
  <li><a href="#">Services</a></li>
  <li><a href="#">Contact</a></li>
</ul>
</div>  

</body>
</html>


*/