﻿a:link
{
	color: rgb(0, 128, 128);
}
a:visited
{
	color: rgb(0,153,102); 
} 
a:active 
{
	color: rgb(0,102,102);
}
body
{
	font-family: "Comic Sans MS";
	background-color: rgb(255, 255, 255);
	color: rgb(0, 102, 102);
}
h1, h2, h3, h4, h5, h6
{
	font-family: "Comic Sans MS";
}
h1
{
	color: rgb(0,153,153);
}
h2
{
	color: rgb(102,102,102); 
}
h3
{
	color: rgb(153,153,102); 
}
h4
{
	color: rgb(0,153,153);
}
h5
{
	color: rgb(102,102,102);
}
h6
{
	color: rgb(153,153,102);
}

ul
{
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px;
	border-bottom: 1px solid #ccc;
}

ul li {
	margin: 10;
	position: relative;
}


li ul {
	position: absolute;
	left: 149px;
	top: 0;
	display: none;
}
li:hover > ul {
    display: block;
}
ul li a {
	display: block;
	text-decoration: none;
	color: #777;
	background: #fff;
	padding: 5px;
	border: 0px solid #ccc;
	border-bottom: 0;
	}

