﻿/*
' Title				: JaredLeeLLC.com Gallery Stylesheet
' Description		: Styles for gallery sections of site.
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
' 06/20/2009		: Tony Groves - Created document.
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

/*
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
' Gallery Styles
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/

.overlay div.close 				{background:url(imgs/closebox.png) no-repeat; position:absolute; top:15px; right:10px; width:25px; height:25px; cursor:pointer;}

/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;		
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:42px;
	height:42px;
	background:url(/imgs/arrowleft.jpg) no-repeat;
	float:left;
	margin:200px 30px 43px 30px;
	cursor:pointer;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -42px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(/imgs/arrowright.jpg);
	clear:right;	
}

/*********** navigator ***********/

/* position and dimensions of the navigator */
div.navi {
	width:200px;
	height:20px;
	margin:15px 0 15px 370px;
}

/* items inside navigator */
div.navi a {
	width:13px;
	height:13px;
	float:left;
	margin:3px;
	background:url(/imgs/gallerynavigator.jpg) 0 0 no-repeat;     
	cursor:pointer;	
	display:none;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -13px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -26px;     
} 

/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	width:616px;	 
	height:300px;
	background:transparent;
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	background:transparent;
}

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:118px;	
}

/* single item */
#thumbs div {
	float:left;
	width:550px;
	height:300px;
	text-align:center;
	padding:10px 66px 0 38px;
	background:transparent;
}

#thumbs div img	{border:2px solid #666; margin:10px 5px;}

#sbg {background-image:url('/imgs/gallerybg.jpg'); width:820px; height:350px;}

/*
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
' End Styles
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/

