/* 
    Document   : layout
    Created on : 17.04.2008, 15:21:28
    Author     : jpherm
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

root { 
    display: block;
}
#container {
  margin:auto;
  width: 100%; 
  background: #ffffff;
}

#header {
  background: #DDDDDD;
}

#leftBar {
  float: left; 
  width: 15%; 
  background: #EBEBEB; 
}

#content {
  float:left;
  width:65%;
  background-color: #cdcde6;
}

#rightBar { 
  float:right; 
  width: 20%; 
  background: #EBEBEB; 
}

#footer { 
  clear:both;
  background:#DDDDDD;
}
a:hover {
  text-decoration: underline;
}


