﻿/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/
div.scrollable
{
	/* required settings */
	position: relative;
	overflow: hidden;
	width: 510px;
	height: 215px;
}
div.scrollableimages
{
	/* required settings */
	position: relative;
	overflow: hidden;
	width: 510px;
	height: 150px;
}

/* 
    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 width and height for the root element and 
    not for this element. 
*/
div.scrollable div#items
{
	/* this cannot be too large */
	width: 20000em;
	position: absolute;
}
div.scrollableimages div#itemsmall
{
	/* this cannot be too large */
	width: 20000em;
	position: absolute;
}


/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/
div.scrollable div#items div
{
	float: left;
}
div.scrollableimages div#itemsmall div
{
	float: left;
}

/* you may want to setup some decorations to active the item */
div#items div.active
{
	border: 1px inset #ccc;
	background-color: #fff;
}
div#itemsmall div.active
{
	border: 1px inset #ccc;
	background-color: #fff;
}
/* this makes it possible to add next button beside scrollable */
.scrollable
{
	float: left;
}
.scrollableimages
{
	float: left;
}


/* prev, next, prevPage and nextPage buttons */
a.browse
{
	background:url(/images2/overlay/arrows.jpg) no-repeat;
	display: block;
	float: left;
	cursor: pointer;
	font-size: 1px;
	width:40px;
	height: 200px;
}
a.browsesmall
{
	background:url(/images2/overlay/arrows4.jpg) no-repeat;
	display: block;
	float: left;
	cursor: pointer;
	font-size: 1px;
	width:40px;
	height: 150px;
}

/* right */
a.right
{
	background-position: -40px -200px;
	clear: right;
	margin-right: 0px;
}
a.right:hover
{
	background-position: 0px -200px;
}
a.right:active
{
	background-position: 0px -200px;
}
/* rightm */
a.rightm
{
	background-position: -40px -150px;
	clear: right;
	margin-right: 0px;
}
a.rightm:hover
{
	background-position: 0px -150px;
}
a.rightm:active
{
	background-position: 0px -150px;
}


/* left */
a.left
{
	margin-left: 0px;
}
a.left:hover
{
	background-position: -40px 0;
}
a.left:active
{
	background-position: -40px 0;
}
/* leftsmall */
a.leftsmall
{
	margin-left: 0px;
}
a.leftsmall:hover
{
	background-position: -40px 0;
}
a.leftsmall:active
{
	background-position: -40px 0;
}





/* disabled navigational button */
a.disabled
{
	visibility: hidden !important;
}

/* get rid of those system borders being generated for A tags */
a:active
{
	outline: none;
}

:focus
{
	-moz-outline-style: none;
}


#items
{
	margin-top: 0px;
}
#itemsmall
{
	margin-top: 0px;
}

#items img
{
	background-color: #fff;
	padding: 2px;
	border: 1px solid #ccc; 
	/*margin:2px 10px;*/
	cursor: pointer;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}
#itemsmall img
{
	background-color: #fff;
	padding: 2px;
	border: 1px solid #ccc; /*margin:2px 10px;*/
	cursor: pointer;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}
/* the large image. we use a gray border around it */
/*#img
{
	border: 1px solid #F2E6CB;
} */

/* the overlayed element */
.simple_overlay
{
	/* must be initially hidden */
	display: none; /* place overlay on top of other elements */
	z-index: 10000; /* styling */
	background-color: #572E1C;
	width: 675px;
	min-height: 150px;
	border: 1px solid #F2E6CB;
	padding-bottom: 46px;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow: 0 0 90px 5px #572E1C;
	-webkit-box-shadow: 0 0 90px #572E1C;
}

/* close button positioned on upper right corner */
.simple_overlay .close
{
	background-image: url(/images2/overlay/close.png);
	position: absolute;
	right: -15px;
	top: -15px;
	cursor: pointer;
	height: 35px;
	width: 35px;
}

/* "next image" and "prev image" links */
.next, .prev
{
	/* absolute positioning relative to the overlay */
	position: absolute;
	bottom: 6px;
	border: 1px solid #000;
	cursor: pointer;
	display: block;
	padding: 10px 20px;
	color: #572E1C;
	font-size: 11px; 
	background: #F9F5E9 !important;
	/* upcoming CSS3 features */
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	z-index: 9999;
}

.prev
{
	left: 0;
	border-left: 0;
	-moz-border-radius-topleft: 0;
	-moz-border-radius-bottomleft: 0;
	-webkit-border-bottom-left-radius: 0;
	-webkit-border-top-left-radius: 0;
}

.next
{
	right: 0;
	border-right: 0;
	-moz-border-radius-topright: 0;
	-moz-border-radius-bottomright: 0;
	-webkit-border-bottom-right-radius: 0;
	-webkit-border-top-right-radius: 0;
}

.next:hover, .prev:hover
{
	text-decoration: underline;
	background-color: #000;
}

/* when there is no next or previous link available this class is added */
.disabled
{
	visibility: hidden;
}

/* the "information box" */
.info
{
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 10px 15px;
	color: #F2E6CB;
	font-size: 11px;
	/*border-top: 1px solid #F2E6CB;*/
	text-align: center;
}

.info strong
{
	display: block;
}

/* progress indicator (animated gif). should be initially hidden */
.progress
{
	position: absolute;
	top: 45%;
	left: 50%;
	display: none;
}

/* everybody should know about RGBA colors. */
.info
{
	background: #572E1C !important; /*background:rgba(0, 0, 0, 0.6) url(/img/global/gradient/h80.png) repeat-x;		*/
}

