/*  
JAVASCRIPT IMAGE GALLERY W/ mootools
Description: STYLE SHEET FOR IMAGE GALLERY
Version: 1.0
Author: Devin Ross
Author URI: http://tutorialdog.com
*/

/*body{ background:black; color:white; }*/
#img_gallery{ float:left; margin:auto; width:650px; }
#img_gallery a{ outline:none; border:none; }
#img_gallery a img{border:none;}

/* --- IMAGE STAGE */
#fullimg{
	position: relative;
	width:640px;
	overflow:hidden;
	height:390px;
	margin-bottom:10px;
	cursor:pointer;
	border:solid 1px #e4e4e4;
}
#fullimg img{ }
#fullimg p, #fullimg span{
	position:absolute;
	bottom:0px;
	background:black;
	filter:alpha(opacity=80);
	-moz-opacity:0.6;
	-khtml-opacity: 0.6;
	opacity: 0.6;
	color:white;
	margin:0px;
	width:310px;
	padding: 6px 6px 15px 6px;
	font-size:11px;
	line-height:1.375em;
	font-family:Arial, Verdana, Helvetica, sans-serif;

}

/* --- SLIDER --- */
#img_gallery #wrapper{
	overflow:hidden;
	padding:4px 2px;
	width: 600px;
	float:left;
	height:70px;
	background-color:white;
	position: relative;
	background-image:none;

}

#items{
	margin:0px 0px;
	padding:0px;
	list-style:none;
	width:60000px;
	position: relative;
	letter-spacing:0em;
	height:65px;


}
#items li{
	float:left;
	list-style:none;
	margin-right:5px;
	height:40px;
}
#items .thumb{
	height:60px;
	cursor:pointer;
	margin:0px;
	padding:0px;
	border: solid 1px #dddddd;
}
#items .large{
	display:none;
	position:absolute;
}
#fullimg .loading{
	width: 32px;
	height: 32px;
	display: block;
	margin: 180px auto 0 auto;
}
#fullimg .thumb{display:none;}

#items .item  p, #items .item  span{
	display:none;
	text-indent: -2000em;
}
#moveright{
	margin:0px;
	height:58px;
	color: white;
	width: 20px;
	text-indent: -2000em;
	text-decoration: none;
	z-index: 1000; 
	display:block;
	cursor: pointer;
	float:left;
	background: url(  "../images/right.gif" ) 0 0 no-repeat;
}

#moveright:hover
{
	background-position: 0 -20px;
}


#moveleft{
margin:0px;
	height:58px;
	color: white;
	width: 20px;
	text-indent: -2000em;
	text-decoration: none;
	z-index: 1000; 
	display:block;
	cursor: pointer;
	float:left;
	background: url(  "../images/left.gif" ) 0 0 no-repeat;
}

#moveright:hover
{
	background-position: 0 -20px;
}

#moveleft{background: url('../images/left.gif');}
#moveright{background: url('../images/right.gif');}
#moveleft:hover, #moveright:hover{ background-position:bottom; }

