@charset "utf-8";
/* CSS Document */

#nav, #nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#nav a {
	display: block;
	width: 100px;
}

#nav li {
	float: left;
	width: 100px;
}


#nav li ul {
	position: absolute;
	width: 10em;
	left: -999em;
}

#nav li:hover ul {
	left: auto;
	background-image: url(images/nav_bg.png);
	background-repeat: repeat;
	width: 115px;
}

#nav li:hover ul, #nav li.sfhover ul {
	left: auto;
}

sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);


body {
	background-color: #221700;
}

#master {

}
#cont {
	position:absolute;
	left: 131px;
	top: 199px;
	width: 768px;
	height: 1226px;
	border-top-width: thick;
	border-right-width: thick;
	border-bottom-width: thick;
	border-left-width: thick;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding: 0px;
	text-align: justify;
}
.text {
	width: 350px;
	position: relative;
	padding: 10px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: dashed;
	border-bottom-style: none;
	border-left-style: none;
	border-right-color: #999999;
}
.txt {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #FFFFFF;
	position: relative;
	width: 750px;
	top: 0px;
	height: 500px;
	padding: 10px;
	background-color: #000000;
}
.link-bar {
	background-image: url(images/page1_02.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	height: 54px;
	width: 1000px;
	color: #FFFFFF;
	font-size: 18px;
	font-family: "Times New Roman", Times, serif;
}
