body {
		background-color: #FFEEBD;
		margin: 0px;
	}

	td {
		font-size: 11px;
		color: #000000;
		font-family: Arial, Helvetica, sans-serif;
		line-height: 20px;
	}

	a:link {
		color:#000000;
		text-decoration:underline;
		font-size: 11px;
		font-family: Arial, Helvetica, sans-serif;
	}
	a:active {
		color:#000000;
		text-decoration:underline;
		font-size: 11px;
		font-family: Arial, Helvetica, sans-serif;
	}
	a:visited {
		color:#000000;
		text-decoration:underline;
		font-size: 11px;
		font-family: Arial, Helvetica, sans-serif;
	}
	a:hover {
		color:#000000;
		text-decoration:underline;
		font-size: 11px;
		font-family: Arial, Helvetica, sans-serif;
	}
	.headerbg {
		background: transparent url(../images/header_bg.jpg) repeat-x scroll top;
	}

	.menubg {
		background: transparent url(../images/menu_under_bg.jpg) repeat-x scroll top;
	}
	

	.menu:link {
		color:#FFEEBD;
		text-decoration:none;
		font-size: 10px;
		font-family: Arial, Helvetica, sans-serif;
	}
	.menu:active {
		color:#FFEEBD;
		text-decoration:none;
		font-size: 10px;
		font-family: Arial, Helvetica, sans-serif;
	}
	.menu:visited {
		color:#FFEEBD;
		text-decoration:none;
		font-size: 10px;
		font-family: Arial, Helvetica, sans-serif;
	}
	.menu:hover {
		color:#FFEEBD;
		text-decoration:none;
		font-size: 10px;
		font-family: Arial, Helvetica, sans-serif;
	}

	.title {
		color: #AB9555;
		font-size: 18px;
		text-transform: uppercase;
		font-weight: regular;
	}
	ul { /* all lists */
		padding: 0;
		margin: 0;
		list-style: none;
	}

	li { /* all list items */
		float: left;
		position: relative;
		color: #FFFFFF;
	}

	li ul { /* second-level lists */
		display: none;
		position: absolute;
		top: 1em;
		left: 0;
	}

	li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
		top: auto;
		left: auto;
	}

	li:hover ul, li.over ul { /* lists nested under hovered list items */
		display: block;
	}

