/* CSS Document */

/* vertical and horizontal centering without tables */

html, body {
	width: 100%;
	height: 100%;

	padding: 0px;
	border: none;
	margin: 0px;

	font: 12px Verdana, Geneva, Arial, sans-serif;
	background-color: #ffffff;
	}

#content {
	visibility: visible;
	padding: 0px;
	border: none;

	background-color: transparent;
	text-align: left;

	/* total centering solution */
	width: 760px;
	height: 410px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -205px;
	margin-left: -380px;
	}
	
div.menuline {
	color: #888888;
	letter-spacing: 0px;
	font-size: 11px;
	cursor: default;

	position: absolute;
	width: 500px; height: 17px;
	left: 50%; top: 50%;
	margin-top: 220px;
	margin-left: -250px;
   	background-color: transparent;

	text-align: right;
}

div.menuline a {
	color: #888888;
	text-decoration: none;
	cursor: hand;
	}

div.menuline a.shown {
	color: #000000;
	cursor: default;
	}

div.menuline a.shown:hover {
	cursor: default;
	border-bottom: 0px;
	}

div.menuline a:hover {
	border-bottom: 2px dotted #ff0099;
	padding-bottom: 2px;
}
