/*------------------- PAGE DEFAULTS -----------------*/

* {
	margin: 0;
	padding: 0;
}

html, body {
	height: 100%; /* needed! */
	background: black;
}
	
body {
	font-family: "Palatino", "Garamond", serif;
	font-size: 10pt;
}

img {
	/* IE */
	border: 0;
}

/*---------------- POSITIONING WRAPPERS --------------*/

div.wrapper1 {
	display: table;
	overflow: hidden;
	height: 100%;
	margin: 0 auto;
	#position: relative;
	z-index: 300;
}

div.wrapper2 {
	display: table-cell;
	vertical-align: middle;
	#position: absolute;
	#top: 50%;
	z-index: 200;
}

div.wrapper3 {
	display: block;
	position: relative;
	text-align: center;
	#top: -50%;;
	z-index: 100;
}

/*---------------- CONSOLE --------------*/

div.console {
	display: table;
	width: 955px;
	height: 600px; /* for IE5.x and IE6 */
	/* used to offset body::text-align: center */
	text-align: left;
	/* reset margins */
	border: 1px solid black;
	margin: 0 auto;
	z-index: 400;
}

/*---------------- DISPLAY --------------*/
div.navigation {
	display: block;
	float: left;
	width: 260px;
	height: 540px;
}

/*** navigation.css ***/
div.display_main {
	display: block;
	float: right;
	clear: right;
	text-align: left;
	margin-right: 40px;
	margin-top: 50px;
	width: 600px;
	height: 500px;
	overflow: hidden;
}

div.page {
	display: block;
	text-align: left;
}

/*** FLEXCROLL ***/
div.flexcroll {
	text-align: left;
	width: 360px;
	height: 480px;
}
	
/*** SPECIAL ***/
/* clearance div */
div.clear {
	clear: both;
}

/* achor-link div */
.alink * {
	color: white !important;
}
.alink:hover * {
	color: #D3AF76 !important;
	cursor: pointer;
}