@charset "utf-8";
/* CSS Document */

body {	
	background-color:#1f130e;
	background-image:url('../images/background_tapedeck.jpg');
	margin:0px;
}

/* reset most text to white */
H1,H2,H3,H4,H5,body,p,div {	
	color:#b8f8fa;	
	font-family: 'Segoe UI',Arial,Geneva,sans-serif;
}

/* link styles *//
a:link {color: #b7d9e0;}
a:visited {color: #b7d9e0;}
a:active {color: #b7d9e0;}
a:hover {color: #ef34a3;}
a {text-decoration: none;
	color: #b7d9e0;
	}

/* header styles */
H1 {	
	color: #b8f8fa;
}

UL {list-style-type: square;}

div.MainBox {	
	margin:20px;
	margin-top:40px;
	margin-bottom: 40px;
	padding: 10px;
	border: 1px solid #130616;
	min-height: 300px;
	width:900px;
	background-color: #1f130e;
	/* for IE */
	filter:alpha(opacity=90);
	/* CSS3 standard */
	opacity:0.9;
}

div.LargeRoundedCorners{	
	-moz-border-radius-topright: 25px;
	-webkit-border-top-right-radius: 25px;
	border-top-right-radius: 25px;
	-moz-border-radius-bottomright: 25px;
	-webkit-border-bottom-right-radius: 25px;
	border-bottom-right-radius: 25px;
	-moz-border-radius-bottomleft: 25px;
	-webkit-border-bottom-left-radius: 25px;
	border-bottom-right-left: 25px;
}

/* NAV BAR styles */	
#nav {	
	color: #333;
	font-size: 14px;
	background-color: #160318;
	/* for IE */
	filter:alpha(opacity=60);
	/* CSS3 standard */
	opacity:0.6;
	position:fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 22px;
	float: left;
	text-align:right; 
	padding-left:20px;
}	

#nav-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#nav-menu li {
	float: left;
	margin: 0 0.15em;
}
/* END NAV BAR styles */

/* header div */	
#header {	
	margin: 20px;
}	
	
/* footer div */	
#footer {	
	color: #333;
	font-size: 14px;
	background-color: #160318;
	text-align: right;
	position:fixed;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 22px;
	padding-right:10px;
	/* for IE */
	filter:alpha(opacity=60);
	/* CSS3 standard */
	opacity:0.6;
}	
	
/* ============================================================= */

/* sliding panel styles */

#wrapper {
	width:100%;
	height:100%;
	top:10;left:0;
	overflow:hidden;
}

#mask {
	width:500%;
	height:100%;
}

.item {
	width:20%;
	height:100%;
	float:left;
	/*background-color:red;*/
}

.content {
	width:100%;
	height:200px;
	top:2px;
	margin:0 auto;
	/*background-color:#aaa;*/
	position:relative;
}

.selected {
	background:#fff;
	font-weight:700;
}

.clear {
	clear:both;
}
	