/* Thumbnail Navigation
	----------------------------*/	
#nextthumb, #prevthumb {
z-index:2;
display:none;
position:fixed;
bottom:61px;
height:75px;
width:100px;
overflow:hidden;
background:#ddd;
border:1px solid #fff;
-webkit-box-shadow:0 0 5px #000;
}
#nextthumb {
	right:12px;
}
#prevthumb {
	left:12px;
}
#nextthumb img, #prevthumb img {
	width:150px;
	height:auto;
}
#nextthumb:active, #prevthumb:active {
	bottom:59px;
}
#nextthumb:hover, #prevthumb:hover {
	cursor:pointer;
}

#prevslide, #nextslide {
	position:absolute;
	height:43px;
	width:43px;
	top:28%;
	margin-top:0px;

}
#prevslide {
	right:48px;
	background: url("../images/prevImgBtn.png") no-repeat scroll center center rgba(0, 0, 0, 0.7);
	border-left:3px solid #C50423;
}
#nextslide {
	right:0px;
	background: url("../images/nextImgBtn.png") no-repeat scroll center center rgba(0, 0, 0, 0.7);
    border-right: 3px solid #C50423;	
}
#prevslide:hover{
border-left:3px solid #000;
}

#nextslide:hover{
 border-right:3px solid #000;
}
#prevslide:hover, #nextslide:hover {
	background-color:#C50423;
	cursor:pointer;
}
/* Thumbnail Tray
----------------------------*/			
#thumb-tray {
    left: 0;
    text-align: center;
    width: 100%;
    z-index: 3;
	position:relative;
	 background: none repeat scroll 0 0 rgba(0, 0, 0, 0.7);
}



#thumb-back, #thumb-forward {
    top: 0;
    height:100%;
    position: absolute;
    width: 40px;
    z-index: 555;
}

#thumb-back {
    background: url("../images/prevImgBtn.png") no-repeat scroll center center rgba(0, 0, 0, 0.7);
}

#thumb-forward {
    background: url("../images/nextImgBtn.png") no-repeat scroll center center rgba(0, 0, 0, 0.7);
    margin-left: 50px;
    position: absolute;
    right: 0;
    z-index: 999;
}

#thumb-back:hover,
#thumb-forward:hover  {
background-color:#C50423;
cursor:pointer;
}

ul#thumb-list {
    display: inline-block;
    left: 0;
    list-style: none outside none;
    margin:0px 40px 30px 40px;
    padding:20px 20px 15px 0px;
    position: relative;
	z-index:333;
}
ul#thumb-list li {
	list-style:none;
	display:inline;
	overflow:hidden;
	margin-left:20px;
	float:left;
	
}


ul#thumb-list li img {
	height:auto;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter:alpha(opacity=60);
	-webkit-transition: all 100ms ease-in-out;
	-moz-transition: all 100ms ease-in-out;
	-o-transition: all 100ms ease-in-out;
	-ms-transition: all 100ms ease-in-out;
	transition: all 100ms ease-in-out;
	border:5px solid #D1D1D1;
	width:190px;
	height:130px;
}
ul#thumb-list li.current-thumb img, ul#thumb-list li:hover img {
	opacity:1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter:alpha(opacity=100);
	border:5px solid #C50423;
}
ul#thumb-list li:hover {
	cursor:pointer;
}
