/*
CSS for Dancing Light Medium site
*/

#navigation {
	width: 200px;
	height: 180px;
	background-color: #660000;
	margin: 0;
}

#navigation li {
	font-size: small;
	list-style-type: none;
	padding-top: 5px;
	padding-bottom: 5px;
	border-bottom: 1px solid #00e070;
}

#navigation a {
	font-weight: normal;
	text-decoration: none;
}

#navigation a:link {
	color: white
}

#navigation a:visited {
	color: #1fffff;
}

#navigation a:hover {
	color: #ee0000;
	background-color: #006666;
}

#navigation a:active {
	color: aqua;
	background-color: navy;
}

a {
	font-weight: normal;
}

a:link {
	color: white
}

a:visited {
	color: #1fffff;
}

a:hover {
	color: #ee0000;
	background-color: #006666;
}

a:active {
	color: aqua;
	background-color: navy;
}

h1, h2, h3 {
	font-family: Georgia, Times, serif;
	font-weight: normal;
	font-style: italic;
}

#header {
	border-top: 3px solid #00e070;
	border-bottom: 3px solid #00e070;
}

h1 {
	font-size: 300%;
	font style: normal;
	color: white;
	padding-top: 2em;
	padding-bottom: 1.5em;
	padding-left: .4em;
	margin: 0;
	background: #a30052 url(lotus1-1.jpg) repeat-y right;
}

h2 {
	color: #00e0e0;
	font-size: 130%;
	font-weight: normal;
	padding-top: 15px;
}

h3 {
	color: #00e0e0;
	font-size: 110%;
	font-weight: normal;
	padding-top: 10px;
}

body {
	font-family: Verdana, Helvetica, Arial, sans-serif;
	background-color: #003366;
	line-height: 125%;
}

h2, ul {
	margin-top: 15px;
}

p {
	font-size: small;
	color: white;
}

#footer p{
	clear: both;
	width: 771px;
	margin: 0px auto;
	border-top: 1px solid #00e070;
	font-size: xx-small;
	text-align: center;
	padding: 10px;
	color: white;
	background-color: #003366;
}

li {
	font-size: small;
	color: white;
}

.feature {
	float: right;
	margin: 8px;
	border: 1px solid #00e070;
}

/*
This section deals with the position of items on the screen. It uses absolute positioning - fixed x and y coordiantes measured from the top-left corner of the browser's content display.
*/

#navigation, #bodycontent, #header {
	position: absolute;
}

#navigation, #bodycontent {
	top: 204px;
}

#bodycontent, #footer {
	left: 215px;
	width: 800px;
}

#header {
	width: 100%;
}