/* Name:			Photo Gallery main styles
 * Author:			Josh Daniels
 * Last Modified:	August 3, 2009
 *-----------------------------------------------------*/

/* @group Reset */

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
	margin:0;
	padding:0;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset,img { border:0; outline: none; }
a { outline: none; }
address,caption,cite,code,dfn,em,strong,th,var {
	font-style:normal;
	font-weight:normal;
}
ol,ul { list-style:none; }
caption,th { text-align:left; }
h1,h2,h3,h4,h5,h6 {
	font-size:100%;
	font-weight:normal;
}
q:before,q:after { content:''; }
abbr,acronym { border:0; }

/* @end */

body {
	background: #000;
	color: #fff;
	position: relative;
}

#outer {
	width: 700px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}

#full {
	width: 700px;
	height: 400px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center;
	margin: 5px auto;
	text-align: center;
}

#fullcaption {
	text-align: center;
	height: 1.2em;
	margin-bottom: 10px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-variant: small-caps;
	letter-spacing: 1px;
}

#container {
	position: relative;
}

.imgLoading {
	background: url(../images/loadingAnimation.gif) no-repeat center;
}

div.thumbContainer {
	position: relative;
	overflow: hidden;
	width: 684px;
	display: block;
	margin: 0 auto;
	text-align: center;
}

div.thumbnails {
	position:relative;
	overflow:hidden;	 	
	width: 620px;
	height: 70px;
	margin: 0 5px;
	float: left;
	display: inline;
}
div.thumbnails .items {
	width:20000em;
	position:absolute;
	list-style: none;
	padding: 0;
}
div.thumbnails .items li {
	float:left;
	display: inline;
	width: 80px;
	overflow: hidden;
	margin: 0 10px 0 0;
	list-style: none;
	opacity: 0.6;
	-moz-opacity: 0.6;
	filter:alpha(opacity=60);
}

div.thumbnails .items li.active {
	opacity: 1;
	-moz-opacity: 1;
	filter:alpha(opacity=100);
}

a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:22px;
	height:22px;
	background:url(../images/left.png) no-repeat;
	cursor:pointer;
	float: left;
	position: relative;
	top: 8px;
	margin-right: 5px;
}

a.disabled {
	opacity: 0.3;
	-moz-opacity: 0.3;
	filter:alpha(opacity=30);		
}

a.next, a.nextPage {
	background-image:url(../images/right.png);
	clear:right;	
}
