@charset "utf-8";
/* CSS Document */

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	background: #FFFFFF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	color: #000000;
}
.homeMenu #container {
	position: absolute;
	top: 0;
	left: 0;
	width: 250px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 25px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}
.homeMenu #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

.homeMenu #menuContent {
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

#container a:link {text-decoration:none; color:#333333; padding:1px 3px 1px 3px;}
#container a:visited {text-decoration:none; color:#333333; padding:1px 3px 1px 3px;}
#container a:hover {text-decoration:none; color:#333333; background-color:#CCCCCC; padding:1px 3px 1px 3px;}
#container a:active {text-decoration:none; color:#333333; padding:1px 3px 1px 3px;}

