﻿@import url("layout.css");

body {
	font-family: Arial, sans-serif;
	font-size: medium;
	color: #000;
}
#container {
	width: 100%;
	height: 100%;
	background-color: #cb8;
}
#masthead {
	width: 100%;
	overflow: auto;
	background-color: #c5d5e5;
}

#sidebar {
	/* position: relative; */
	float: left;
	width: 140px;
	background-color: #cb8;
}
#content {
	margin-left: 140px;
	padding: 10px;
	background-color: #fff;
}
#footer {
	clear: both;
	overflow: hidden;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	background-color: #cdf;
}

/* Styles for Navigation */

#sidebar ul {
	list-style-type: none;
	/* width: 100%; */
	/* display: block; */
	margin: 0;
	padding: 0;
}
#sidebar li {
	display: block;
	border: 1px solid #cb8;
}
#sidebar a {
	font-weight: bold;
	text-decoration: none;
	color: #393939;
	padding: 5%;
	display: block;
	border-bottom: 1px solid #f5f5f5;
}
#sidebar a:hover {
	font-weight: bold;
	text-decoration: none;
	color: #393939;
	border-bottom: 1px solid #f5f5f5;
	background-color: #dc9;
}

/* Styles for Links */
a:link { color: blue; text-decoration: underline; }
a:hover, a:active, a:focus {color: blue; text-decoration: none;}
a:visited {color: blue;}
