/*
	Plugin:			jQuery Tools - Scrollable Image Gallery
	Website:		http://www.jquerytools.org/demos/scrollable/gallery.html
	 
	Modifier: 		Gregory Blain
	Project:		King’s Tile & Wood: (www.kingstile.com), an informative website to demonstrate tile and wood techniques to drive business.
	Client:			Russ King

	Document:		imageScrollable.css
	Updated:		4-17-2013
	Version:		1.2.2
	Purpose:		Cascade Style Sheet used to control the scrollable image gallery pages and override common elements. 
	Copyright:		© 2013 By Russ King. All Rights Reserved.
*/

/*
	Colors Used:
	rgb(0, 0, 0) 		- Normal Font Text			- Black				Hex: #000000	
	rgb(137, 183, 217)	- Nav Bar Dropdowns			- Light Blue 		Hex: #89B7D9
	rgb(112, 85, 81)	- Hover Nav Bar Dropdowns	- Medium Brown		Hex: #705551
	rgb(247, 231, 186) 	- Main Content Area			- Light Tan			Hex: #F7E7BA 
	rgb(252, 247, 232)	- Social Share Background	- light Cream		Hex: #FCF7E8

	Fonts Used:
	Calibri, Arial, Helvetica, san-serif		- Body 
	Cambria, "Times New Roman", Times, serif	- Nav Bar, Headers & Table Headers
*/


	/* Common Elements Override */
div.combinedArea {
	height: 745px;
	}
	
div.contentArea {
	height: 680px; 
	}
	
div.navBarArea {
	width: 978px;
	}

	/* Scrollable Image Galley Container */
div.scrollableCombinedArea {
	position: relative;
	width: 700px;
	height: 640px;
	margin-top: 5px;
	margin-left: auto;
	margin-right: auto;
	background-color: transparent;
	}
	
	/* Image Wrapper */
#imageWrap {    
	width: 600px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 20px;
	padding-right: 20px;    
	background-color: rgb(112, 85, 81);
	border-style: groove;
	border-width: 4px;
	border-color: rgb(137, 183, 217);
	}
	
div.buttonWrap {
	width: 642px; 
	height: 120px;
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
	}

	/*Root element for the scrollable image galley. When scrolling occurs this element stays still. */
div.scrollable {
	position: relative;			/* Required settings. */ 
    overflow: hidden;
    width: 550px;
    height: 120px;
	background-color: rgb(112, 85, 81);
	border-style: groove;
	border-width: 4px;
	border-color: rgb(137, 183, 217);
	}

	/*	Root element for scrollable items. Must be absolutely positioned and it should have a extremely large width to accomodate scrollable items.  
		It's enough that you set the width and height for the root element and not for this element. */
.scrollable .items {
    width: 20000em;				/* This cannot be too large. */
    position: absolute;
    clear: both;
	}

.items div {
    float: left;
    width: 680px;
	}

	/* Single Scrollable Item */
.scrollable img {
    float: left;
	width: 100px;
    height: 75px;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 21px;
	margin-right: 5px;
	padding: 2px;
    background-color: rgb(112, 85, 81);
	border-style: solid;
	border-width: 2px;
	border-color: rgb(247, 231, 186);
	-webkit-border-radius: 6px;
	-moz-border-radius-topright: 6px;
	border-radius: 6px;
	}

	/* Active Item */
.scrollable .active {
    position: relative;
    cursor: default;
	border-style: solid;
	border-width: 2px;
	border-color: rgb(137, 183, 217);
	-webkit-border-radius: 6px;
	-moz-border-radius-topright: 6px;
	border-radius: 6px;
	}
	
	/* Scrollable Buttons */
.scrollable {
    float: left;				/* This makes it possible to add next button beside scrollable. */
	}

	/* Prev, Next, RrevPage Buttons */
a.browse {
    background: url(../images/hori_large.png) no-repeat;
    display: block;
    width: 30px;
    height: 30px;
    float: left;
	margin-top: 40px;
	margin-bottom: 40px;
	margin-left: 10px;
	margin-right: 10px;
    cursor: pointer;
    font-size: 1px;
	}

	/* Right */
a.right {
	background-position: 0 -30px; 
	clear: right; 
	margin-right: 0px;
	}
	
a.right:hover {
	background-position:-30px -30px; 
	}
	
a.right:active {
	background-position: -60px -30px; 
	}

	/* Left */
a.left {
	margin-left: 0px;
	}
	
a.left:hover  {
	background-position: -30px 0;
	}
	
a.left:active {
	background-position: -60px 0;
	}

	/* Up & Down */ 			/*Not currently used. */
a.up, a.down  {
    background: url(../images/none) no-repeat;
    float: none;
    margin: 10px 50px;
	}

	/* Up */					/*Not currently used. */
a.up:hover {
	background-position: -30px 0;
	}
	
a.up:active {
	background-position: -60px 0;
	}

	/* Down */					/*Not currently used. */
a.down {
	background-position: 0 -30px;
	}
	
a.down:hover {
	background-position: -30px -30px; 
	}
	
a.down:active {
	background-position: -60px -30px;
	}

	/* Disabled Navigational Button */
a.disabled {
    visibility:hidden !important;
	}

