/* style.css */


/* Layout 
--------------------------------------------------------------------*/
#gallery {
	position: relative;
	width: 920px;
	background-color: #fff;
	padding-left:25px;
}
#gallerynav {
	position: absolute;
	top: 0;
	left: 580px;
	width: 300px;
	padding: 0;
	margin: 0;
	z-index: 500;
}
#middiv {
	width: 900px;
	height: 310px;
	margin-bottom: 10px;
	padding-left: 70px;
}
#bigPic {
	float: left;
	width: 400px;
	height: 300px;
	border: 1px solid #ccc;
	text-align: center;
	/* Don't put padding or margins in here, use #bigPic img below (IE jumps!) */
}
#bigPic img { /* IE6 fix - prevents space below image 
DON'T THINK WE NEED THIS NOW
	display: block;
	margin: 0;*/
}
#description {
	position: absolute;
	top: 0;
	left: 580px;
	width: 360px;
	padding: 40px 0 30px 30px;
	border-left: 1px solid #bbb;
}
#caption {
	color: #666;
	width: 560px;
	text-align: center;
	padding-bottom: 8px;
	line-height: 24px;
	height: 24px;
	text-decoration: none;
}
#caption h3 {
	display: inline;
	color: #f60;
	padding-right: 10px;
}

.sitelink { margin-top: 20px; }

#picdiv {
	position: relative; /* For IE */
	width: 540px;
	height:120px;
	clear: both;
	margin: 0 0 100px 0;
	background: #fff;		
}

#gallerynav ul { width: 350px; margin: 0; padding-left: 30px;}

#gallerynav ul li {
	display: inline;
	line-height: 30px;
	height: 30px;
	float: left;
	padding: 0 25px 0 0;
	margin: 0;
}

#gallerynav a:link, #gallerynav a:visited {
	color: #666;
	padding-bottom: 10px;
	text-decoration: none;
	background: url(../styles/gl_images/dotrule.gif) 0 12px repeat-x;
}
#gallerynav a:hover {
	color: #f90;
	text-decoration: none;
	background-position: 0 -8px;
}
#gallerynav a.tabon, #gallerynav a:visited.tabon {
	color: #f90;
	text-decoration: none;	
}



/* Admin
--------------------------------------------------------------------*/
#admin {
	height: 130px;
	line-height:40px;
	padding: 10px 0 10px 30px;
	background: #ccc;
}
#admin h1 {
	font-size: 14px;
	float: left;
	padding-right: 15px;
}
#deleteimg {
	float:left;
	height: 20px;
	width: 20px;
	padding-top: 15px;
}
#messagediv {
	position: absolute;
	top: 90px;
	left: 0;
	width: 400px;
	height: 30px;
	background: #fff;
	z-index: 500;       
}



/* Gallery function
--------------------------------------------------------------------*/
.noshow {
	visibility: hidden;
	position: absolute;
	top: 0px;
	left: 0px;
	height: 0px;
	width: 0px;
}
.imghover {
	border: 2px solid #f90;
}	
.imgoff {
	border: none;
	border: 2px solid #ccc;
}	
.fimghover {
	border: 2px solid #f90;
}	
.fimghoveryellow {
	border: 2px solid #ccc;
}	
.fimgoff {
	border: none;
	border: 2px solid #ccc;
}
.loading {
	position: relative;
	top: 100px;
	left: 100px;
	font-weight: bold;
	text-align: center;
	line-height: 30px;
	width: 200px;
	/*Don't use margins or padding to prevent jumping in IE6 */
	border: 1px solid #666;
	background: #fff;
}


/* Scrolling image strip function
--------------------------------------------------------------------*/
#picdiv #picstripWrapper {
	position: relative;
	left: 28px; /* For IE see hack below for other browsers */
	height: 80px;
	width: 400px;
}
/* Hack excluding all versions of IE */
html:not([dummy]) #picdiv #picstripWrapper {
	left: 70px; /* All browsers other than IE */
}
ul#picstrip, ul#picstrip li {	margin: 0;	padding: 0;}
ul#picstrip {
	position: absolute;			 	/* this is necessary for the clip attribute to work */
	width: 400px; 			  		/* Width of image panel (below) X number of visible images */
	height: 80px;					 		/* Height of image holder */
	overflow: hidden;				 /* clip values are set by js, overflow hides other images */
	list-style-type: none;
}
ul#picstrip li {						/* IMAGE PANEL */
	float: left;
  width: 100px; 						/* IMAGE PANEL WIDTH - must be in tens eg 100, 110, 120 -  copy to js*/
  height: 80px; 						/* IMAGE PANEL HEIGHT copy to js */
	text-align: center;				/* Centres the image horizontally in its panel */
	list-style-image: none;
}
.selectedpic { background: url(nav/selected.gif) 0 70px no-repeat; }





/* Arrows
--------------------------------------------------------------------------------*/

/* Copy vertical scroll positions to scroll.js */
#picdiv #leftArrow {
	float: left;
	background: url(nav/leftarrow.gif) 0 15px no-repeat;
}
#picdiv #rightArrow {
	float: right;
	background: url(nav/rightarrow.gif) 0 15px no-repeat;
}

/* NOTE: HOVER state - the rollovers are handled by 'scroll.js' functions which move the background image */

#picdiv #leftArrow, #picdiv #rightArrow {
	width:40px;
	height:80px;
	text-indent: -5000px;
}
#picdiv #leftArrow a, #picdiv #rightArrow a {
	width:40px;
	height:80px;	
}
