/* Generic Selectors */ 
body { 
font-family: "Times New Roman"; 
font-size: 16px;
color: #000000; 
background-color: #cccccc; 
} 
p { 
width: 100%; 
} 
h1 { 
font-family: "Copperplate Gothic Bold"; 
font-size: 20px; 
font-weight: bold; 
color: #0000ff; 
} 
h2 { 
font-family: "Copperplate Gothic Bold"; 
font-size: 26px; 
color: #0000ff; 
} 
h3 { 
font-family: "Copperplate Gothic Light"; 
font-size: 14px; 
color: #000000;
} 
h4 { 
font-family: Georgia, "Times New Roman", Times, serif; 
font-size: 22px; 
font-weight: bold;
font-style: italic; 
color: #000000; 
} 
h5 { 
font-family: Georgia, "Times New Roman", Times, serif; 
font-size: 18px; 
font-weight: bold;
font-style: italic; 
color: #ffcc66; 
} 

 
/**************** Pseudo classes ****************/ 
a:link { 
color: #0000ff; 
text-decoration: underline; 
font-weight: bold; 
} 
li a:link { 
color: #0000ff; 
text-decoration: none; 
font-weight: bold; 
} 
a:visited { 
color: #0066ff; 
text-decoration: underline; 
font-weight: bold; 
} 
li a:visited { 
color: #0066ff; 
text-decoration: none; 
font-weight: bold; 
} 
a:hover { 
color: #cc00ff; 
padding-bottom: 5px; 
font-weight: bold; 
text-decoration: underline; 
} 
li a:hover { 
display: block; 
color: #cc00ff; 
padding-bottom: 5px; 
font-weight: bold; 
border-bottom-width: 1px; 
border-bottom-style: solid; 
border-bottom-color: #C6EC8C; 
} 
a:active {
color: #0066FF;
text-decoration: none; 
background-color: #ffffff;
}
li a:active {
color: #0066FF;
text-decoration: none; 
background-color: #ffffff;
}
a:focus {
color: #0066FF;
text-decoration: none; 
background-color: #ffffff;
}
li a:focus {
color: #0066FF;
text-decoration: none; 
background-color: #ffffff;
}
/************************* ID's *************************/ 
html,
#container {
   min-height:100%;
   position:relative;
}
#header {
   background:#cccccc;
   padding:1px;
}
#body {
   padding:8px;
   padding-bottom:60px;   /* Height of the footer */
}
#footer {
   position:absolute;
   bottom:0;
   width:100%;
   height:60px;   /* Height of the footer */
   background:#cccccc;
}
