body{ 
background:#666;
margin-top: 0px; 
text-align: left;
font: normal 14px/14px Verdana, Arial, Helvetica, sans-serif;
}
#frame{
border: 0px solid #9f9; 
background:#eee;
width:650px;
margin-left: auto;
margin-right: auto; 
padding: 0px 0px 15px 0px;
}
#menu{
background:#aaa;
width:650px;
text-align: right;
border: 0px solid #f00; 
padding: 10px 0px 5px 0px;
}
.selected_menu_item{
color: #f50;
border: 0px solid #f00; 
}
.menu{
padding: 0px 20px 0px 0px;
border: 0px solid #f00; 
}
#footer{
text-align:right;
width:90%;
border:0px solid #0f0;
padding: 10px 20px 0px 0px;
margin: 15px 40px 5px 0px;
color:#111;
}
a {text-decoration: none} /* because of some browsers the element A must be defined */
a[name] {color: ... !important; background-color: transparent !important} /* CSS2-compliant browsers implement a:hover also for named anchors; in order to avoid a:hover to change properties of named anchors they must define as important; in this solution a:hover should not use the !important rule */
a:link {color: #3f3f3f; text-decoration: underline;} /* unvisited link */
a:visited {color: #f55; text-decoration: underline;} /* visited link */
a:hover {color: red; text-decoration: none} /* the mouse "hovers" over the link */
a:active {color: green; text-decoration: none; background-color: yellow;} /* according to CSS2-specification :active should work between on-mouse-down and on-mouse-up events but according to CSS1 the link stays marked until the user click with mouse to another place */
a:focus {color: green; text-decoration: none; background-color: yellow;} /* :active and :focus are different states; Only :focus should leave the link marked until the next click of the mouse (:focus is designed primary into keyboard navigation and form control elements; browsers are not obliged to support it with the A element) */

h1{
color:#33f; text-align:right; 
padding-right:20px;
margin: 0px 20px 5px 0px;
}
h2{
color:#666; 
margin: 15px 40px 10px 20px;
}
h3{
color:#444; 
margin: 20px 40px 10px 20px;
}
p{
color:#eee; 
margin: 1px 40px 10px 20px;
 }
ul{
color:#000;
margin: 10px 20px 10px 20px;
list-style: square outside;
 }
