
/* This is the moving lens square underneath the mouse pointer. */
.cloud-zoom-lens {
	border: 4px solid #888;
	margin:-4px;	/* Set this to minus the border thickness. */
	background-color:#fff;	
	cursor:move;		
}

/* This is for the title text. */
.cloud-zoom-title {
	position:absolute !important;
	background-color:#000;
	color:#fff;
	padding:3px;
	width:100%;
	text-align:center;	
	font-size:10px;
	top:0px;
}

/* This is the zoom window. */
.cloud-zoom-big {
	border:4px solid #ccc;
	overflow:hidden;
	background-color:White;
}

/* This is the loading message. */
.cloud-zoom-loading {
	color:white;	
	background:#222;
	padding:3px;
	border:1px solid #000;
}


/******        Automatic Image Slider w/ CSS & jQuery                 ************/   

/*--Main Container--*/
.main_view {
	float: left;
	position: relative;
}
/*--Window/Masking Styles--*/
.window {
	height:286px;	width: 770px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
	background:#003399;
}
.window img
{
    width:770px;
    padding:0;
}

.image_reel {
	position: absolute;
	top: 0; left: 0;
	border-bottom:1px solid black;
}
.image_reel img {float: left; }

/*--Paging Styles--*/
.paging {
	position: absolute;
	bottom: -84px; right: 0px;
	width: 750px; height:97px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: center;
	line-height: 20px;
	background: url(../../images_site/paging_bg2.png) no-repeat;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
	padding:0px 10px 0px;
	background:black;
}
.paging a {
	margin: -11px 15px 5px;
	text-decoration: none;
	color: #fff;
	float:left;
	padding-top:18px;
	/* background:#2d2d2d;  */
	width:156px;
}
.paging a img 
{
    border:1px solid #151515;
}

.paging a.active img
{
    background:white;
}


.paging a.active {
	font-weight: bold;
	background: url(http://www.xbyte.com/images_site/blue_box_arrow_4.gif) no-repeat;
	background-color:#2d2d2d;
	border-left:1px solid #003399;
	border-right:1px solid #003399;
	border-bottom:1px solid #003399;
	/* border: 1px solid #003399; */
	/* -moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px; */
	/* color:Black; */
}
.paging a:hover {font-weight: bold;}
.paging a:hover img {background:#2d2d2d;}
