/* 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;
}
/* Thumbnail Tray
----------------------------*/			
#thumb-tray {
    bottom:0px !important;
    height: 188px;
    left: 0;
    position: fixed;
    text-align: center;
    width: 100%;
    z-index: 3;
}

#thumb-back, #thumb-forward {
    bottom: 217px;
    height: 40px;
	left:50%;
    position: absolute;
    width: 40px;
    z-index: 5;
}

#thumb-back {
    background: url("../images/prevImgBtn.png") no-repeat scroll center center rgba(0, 0, 0, 0.7);
	border-left:3px solid #C50423;
}
#thumb-forward {
	background:url('../images/nextImgBtn.png') no-repeat center center rgba(0, 0, 0, 0.7);
	border-right:3px solid #C50423;
	margin-left: 50px;
}
#thumb-back:hover{
border-left:3px solid #000;
}

 #thumb-forward:hover {
 border-right:3px solid #000;
}

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

ul#thumb-list {
   background: none repeat scroll 0 0 rgba(0, 0, 0, 0.7);
    display: inline-block;
    left: 0;
    list-style: none outside none;
    margin-bottom: 30px;
    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 #f3f3f3;
}
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;
}
