@charset "utf-8";
/* CSS Document */

body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	background-color:#110a00;
	color:#ffffff;
}
.img1 {
	border:none;
}
.img2 {
	border:1px solid #000000;
}

/*--Main Container--*/
.main_view {
	float: left;
	position: relative;
}



/*--Window/Masking Styles--*/
.window {
	width: 345px;
	height:215px;	
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
}
.image_reel {
	position: absolute;
	top: 0; left: 0;
}
.image_reel img {float: left;}



/*--Paging Styles--*/
.paging {
	position: absolute;
	bottom: 15px; right: 5px;
	width: 345px; height:5px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
/* text paging */
.paging_bt {
	position:relative;
	float:right;
	height:15px;
}
.paging a {
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	color: #aaaaaa;
	text-decoration: none;
	padding:0 5px;
	background-image:url(../images/bt_cirle.png);
	background-repeat:no-repeat;
}
.paging a.active {
	color: #e5d9a0;
	background-position:0 -15px;
}
.paging a:hover {
	color: #e5d9a0;
	background-position:0 -15px;
}


