/*  
JAVASCRIPT IMAGE GALLERY W/ mootools
Description: STYLE SHEET FOR IMAGE GALLERY
Version: 1.0
Author: Devin Ross
Author URI: http://tutorialdog.com
*/


#img_gallery{ margin:0px auto; width:640px; }
#img_gallery a{ outline:none; border:none; }
#img_gallery a img{border:none;}

/* --- IMAGE STAGE */
#fullimg{
	width:640px;
	overflow:hidden;
	height:480px;
	text-align:center;
	line-height:480px;
	background:#111111;
}
#fullimg img{ 
	margin:0px auto;
	max-width:640px;
	max-height:480px;
	vertical-align:middle;
}
#fullimg p, #fullimg span{
	position:absolute;
	background:black;
	opacity:.5;
	color:white;
	margin:0px;
	width:640px;
	padding:0px;
	font-size:11px;
	line-height:15px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}

/* --- SLIDER --- */
#img_gallery #wrapper{
	overflow:hidden;
	margin:19px auto;
	width: 520px;
	float:left;
	height:60px;
	position: relative;

}

#items{
	margin:0px 0px;
	padding:0px;
	list-style:none;
	width:50000px;
	position: relative;
	letter-spacing:0em;
}
#items li{
	float:left;
	list-style:none;
	margin-right:7px;
	width:80px;
	height:60px;
	background:#111111;
	line-height:56px;
}
#items .thumb{
  max-width:80px;
	max-height:60px;
	cursor:pointer;
	vertical-align:middle;
}
#items .large{
	display:none;
	position:absolute;
}
#fullimg .loading{
	width: 24px;
	height: 24px;
}
#fullimg .thumb{display:none;}

#items .item  p, #items .item  span{
	display:none;
	text-indent: -2000em;
}
#moveleft, #moveright{
	margin:20px 0 0 0;
	height:58px;
	color: white;
	width: 16px;
	text-indent: -2000em;
	text-decoration: none;
	z-index: 1000; 
	display:block;
	cursor: pointer;
	float:left;
}
#moveleft{
  background: url('images/left.gif');
  margin-right:1px;
}
#moveright{
  background: url('images/right.gif');
  margin-left:1px;
}
#moveleft:hover, #moveright:hover{ background-position:bottom; }

