/* Generic Selectors */ 
body { 
font-family: Courier; 
font-size: 16px; 
color: #333333;  
} 
p { 
width: 80%; 
} 
li { 
list-style-type: disc; 
line-height: 120%; 
} 
h1 { 
font-family: Courier; 
font-size: 18px; 
font-weight: bold;
color: #000000; 
} 
h2 { 
font-family: Courier; 
font-size: 18px; 
font-weight: bold; 
color: #000000; 
border-bottom: 1px solid #C6EC8C; 
} 
 
/**************** Pseudo classes ****************/ 
:link { 
color: #000066; 
text-decoration: underline; 
font-weight: bold; 
} 
li :link { 
color: #000066; 
text-decoration: none;
font-weight: bold; 
} 
:visited { 
color: #119977; 
text-decoration: underline; 
font-weight: bold; 
} 
li :visited { 
color: #119977; 
text-decoration: none; 
font-weight: bold; 
} 
:hover { 
color: #663366; 
padding-bottom: 5px; 
font-weight: bold; 
text-decoration: underline; 
} 
li :hover { 
display: block; 
color: #663366; 
padding-bottom: 5px; 
font-weight: bold; 
border-bottom-width: 1px; 
border-bottom-style: solid; 
border-bottom-color: #000066; 
} 
:active { 
color: rgb(255, 0, 102); 
font-weight: bold; 
} 
/************************* ID's *************************/ 
#navigation { 
position: absolute; 
z-index: 10; 
width: 200px; 
height: 950px;  
margin-top: -15px;
margin-left: 20px;
border-right: 2px solid #000066; 
font-weight: normal; 
} 
#main { 
position: absolute; 
z-index: 20; 
padding: 0 0 20px 240px; /*top right bottom left*/
margin-top: 50px;
margin-left: 30px;
} 

