/*
@author Mohammed Ameenuddin Atif (http://www.ace-media.in)
@package ColorPixels
*/


.main_view {
	float: left;
	position: relative;
}

.window {
	height:320px;	width: 465px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
}
.image_reel {
	position: absolute;
	top: 0; left: 0;
}
.image_reel li {
    width: 465px;
    float: left;
}


/*--Paging Styles--*/
.paging {
	position: absolute;
	top: 340px; left: 140px;
	width: 150px; height:27px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	line-height: 20px;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
.paging a {
    font-size: 11px;
    font-family: Verdana, Arial;
	padding: 0;
	text-decoration: none;
	color: #fff;
    width: 24px; height: 24px;
    text-align: center;
    display: inline-block;
    line-height: 2;
    margin-right: 1px;
    background: url(images/fbtn.gif) no-repeat 0 0 ;
}
.paging a.active {
	font-weight: bold; background-position: 100% 0; 
}
.paging a:hover {font-weight: bold;}

