@charset "utf-8";
/* CSS Document */

div#window{
	width:inherit;
	height:inherit;
	overflow:hidden; /*--Hides anything outside of the set width/height--*/
	position:relative;
	float:left;}
	
	/*Important*/
	div#image_reel{
		position: absolute;
		/*top: 0;
		left: 0;*/}
		
		div#image_reel img{float: left;} /*Important*/


/*--Paging Styles--*/

div#paging{
	/*background-color:#fff;*/
	padding:5px;
	position:absolute;
	bottom:5px;
	right:5px;
	z-index:100; /*-- Assures the paging stays on the top layer --*/
	display: none; /*--Hidden by default, will be later shown with jQuery--*/}

	div#paging a{
		color:#999;
		text-decoration:none;
		padding:5px 7px;}
	
	div#paging a.active, div#paging a:hover{color:#00aeef;}
	