/*centering block element http://css-discuss.incutio.com/?page=CenteringBlockElement */
body {
	background: #fff;
	font-family: Comic Sans MS;
	text-align: center;
	min-width: 800px;
	margin-top: 0px;
}

#container {
	width: 800px;
	position: absolute;
	left: -400px;
	margin-left: 50%;
	background: "white";
	padding: 0;
	text-align: left;
	}

#header {
	text-align: center;
	margin-top: 15px;
	margin-left: auto;
	margin-right; auto;
	background: "white";
}


#menubox {
	background: "white";
	background-image:  url(v-bar.gif);
	background-repeat: no-repeat;
	background-position: 100% 0;
	width: 218px;   /*width is critical = width of contents plus padding*/
	height: 400px;  /*else the contents wrap and menu flashes*/
	position: relative;
	left:-179;
	top: 0px;
	padding: 15px;
}
#menubox a{                                         /* either visited or sitting, text shows */
	display:block;
	text-align:right;
	padding:4px; 
	}

#menubox a:link img {
	border-style:none;
	border-width:1px;
	border-bottom-style:dashed;
}

#menubox a:visited img {
	border-style:none;
}

#menubox a:visited span img, a span img{
	filter: alpha(opacity=99);        				  /* either visited or sitting, span-image shows */
	-moz-opacity: 0.99; 
	opacity:0.99;
}

#menubox a:visited img, a img{
	filter: alpha(opacity=0);                   			  /* either visited or sitting, image hidden */
	-moz-opacity:0.0;
	opacity:0.0;
}

#menubox a:hover span img {
	filter: alpha(opacity=0);                        /* when hovering, image shows */
 	-moz-opacity: 0.00; 
	opacity:0.0;
 }

#menubox a:hover img { 
	filter: alpha(opacity=99);                        /* when hovering, image shows */
	-moz-opacity: 0.99; 
	opacity:0.99;
}

#menubox a:hover img {
	position: relative;
	left: 89;
}

#menubox a:active {
	border-style:none;
	text-decoration:none;
	
}

.bodytext {
	overflow: auto;
	background: "white";
	position:absolute;
	top: 120px;
	right: 10%;
	width: 590px;
	padding: 20px;
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	font-weight:normal;
	font-size:small;
}

#column{
	float:left;
	background: "white";
	width: 49%;
	padding:2px;
	text-align:left;
}

#noscreen {display:none;}

#footer{
	clear:both;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	font-weight: normal;
	color: #000;
}
	