/*
JAVASCRIPT IMAGE GALLERY W/ mootools
Description: STYLE SHEET FOR IMAGE GALLERY
Version: 1.0
Author: Devin Ross
Author URI: http://tutorialdog.com
*/

body{ }
#img_gallery{ margin:0px auto; width:100%;}/* 550px */
#img_gallery a{ outline:none; border:none; }
#img_gallery a img{border:none;}

/* --- IMAGE STAGE */
#fullimg{
	width:550px; /* 550px */
	overflow:hidden;
	height:50px;
}
#fullimg img{ width:550px; } /* 550px */
#fullimg p, #fullimg span{
	position:absolute;
	background:black;
	opacity:.5;
	color:white;
	margin:0px;
	width:100%; /* 550px */
	padding:6px;
	font-size:11px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}

/* --- SLIDER --- */
#img_gallery #wrapper{
	overflow:hidden;
	padding:4px 2px;
	width: 1060px; /* width of image gallary */
	float:left;
	height:135px;  /*58 height of image gallary */
	background-color:#000;
	position: relative;
	vertical-align:middle;
	margin: 0 auto;
}

#items{
	margin:0px 0px;
	padding:0px;
	list-style:none;
	width:1200px;
	position: relative;
	letter-spacing:0em;

}
#items li{
	float:left;
	list-style:none;
	margin-right:2px;
	padding: 0 0;
	background-color:#000; /* 181818 */
	/*width: 16%;   */
}
#items .thumb{
	width:100px; /* thumb  width and height */
	height:50px;
	cursor:pointer;
	margin:0px;
	padding:0px;

}
#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:0px;
	height:158px;
	color: white;
	width: 16px;
	text-indent: -2000em;
	text-decoration: none;
	z-index: 1000;
	display:block;
	cursor: pointer;
	float:left;
	position:relative;
}
#moveleft{background: url('images/left.gif');}
#moveright{background: url('images/right.gif');}
#moveleft:hover, #moveright:hover{ background-position:bottom; }

