﻿/* You can alter this CSS in order to give SmoothDivScroll your own look'n'feel */

/* Invisible left hotspot */
div.scrollingHotSpotLeft
{
	/* The hotspots have a minimum width of 100 pixels and if there is room the will grow
    and occupy 15% of the scrollable area (30% combined). Adjust it to your own taste. */
	min-width: 75px;
	width: 10%;
	height: 100%;
	/* There is a big background image and it's used to solve some problems I experienced
    in Internet Explorer 6. */
	/*background-image: url(/images/smoothScroll/big_transparent.gif);*/
	background-repeat: repeat;
	background-position: center center;
	position: absolute;
	z-index: 27;
	left: 0;
	/*  When positioning the mouse over one of the hot spots, the cursor should change.
	I've noticed that this varies from browser to browser though. */
	cursor: url(/images/smoothScroll/cursor_arrow_left.cur), w-resize;
}

/* Visible left hotspot */
div.scrollingHotSpotLeftVisible
{
	background-image: url(/images/scroller/scroller_left.gif);				
	background-color: #fff;
	background-repeat: no-repeat;
	opacity: 0.35; /* Standard CSS3 opacity setting */
	-moz-opacity: 0.35; /* Opacity for really old versions of Mozilla Firefox (0.9 or older) */
	filter: alpha(opacity = 35); /* Opacity for Internet Explorer. */
	zoom: 1; /* Trigger "hasLayout" in Internet Explorer 6 or older versions */
}

/* Invisible right hotspot */
div.scrollingHotSpotRight
{
	min-width: 75px;
	width: 10%;
	height: 100%;
	/*background-image: url(/images/smoothScroll/big_transparent.gif);*/
	background-repeat: repeat;
	background-position: center center;
	position: absolute;
	z-index: 27;
	right: 0;
	cursor: url(/images/smoothScroll/cursor_arrow_right.cur), e-resize;
}

/* Visible right hotspot */
div.scrollingHotSpotRightVisible
{
	background-image: url(/images/scroller/scroller_right.gif);
	background-color: #fff;
	background-repeat: no-repeat;
	opacity: 0.35;
	filter: alpha(opacity = 35);
	-moz-opacity: 0.35;
	zoom: 1;
}

/* The scroll wrapper is always the same width and height as the containing element (div).
   Overflow is hidden because you don't want to show all of the scrollable area.
*/
div.scrollWrapper
{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

div.scrollableArea
{
	position: absolute;
	width: auto;
	height: 100%;
}



#scrollingHotSpotLeft,
#scrollingHotSpotRight {
	height: 184px;
	margin-top: 10px;
}



#makeMeScrollable
{
		position: relative;
		height: 236px;
}		

	
	
/* single scrollable item */
#makeMeScrollable .itemWrp {
	float:left;
	width: 192px;
}
#makeMeScrollable .item {
	margin:10px 10px 40px;
	background-color: #fff;
	padding:6px;
	border:1px solid #a6cf39;
	cursor:pointer;
	width:158px;
	height:170px;
	overflow: hidden;
}

/* active item */
#makeMeScrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}

#makeMeScrollable .item p {
	margin-bottom: 5px;
	font-size: 10px; 
}
#makeMeScrollable .item .itemText { overflow: hidden; height: 34px; }

#makeMeScrollable .item a,
#makeMeScrollable .item .more {
	font-style: italic;
	text-decoration: underline;
}

#makeMeScrollable .itemImg { overflow: hidden; width: 158px; height: 118px;  }

#scrollerWrapper { position: relative; height: 236px; margin-bottom: 25px; background: url(/images/bg_scroller.png) no-repeat bottom; }	
#makeMeScrollable .popups div { position: absolute; top: -25px; left: 300px; width: 249px; height: 245px/*287px*/; padding: 3px 15px 0; background: url(/images/scroller/scroller_active.png) no-repeat; z-index: 10000; display: none; }
#makeMeScrollable .popups div .popupImg { overflow: hidden; width: 249px; height: 187px; margin: 0; padding: 0; }
#makeMeScrollable .popups div .popupText { overflow: hidden; width: 237px; height: 28px; margin: 0; padding: 0 6px; }
#makeMeScrollable .popups div .popupImg img { display: block; margin: 0 auto; }
#makeMeScrollable .popups div p { margin-bottom: 0; padding: 0 6px; line-height: 14px; }
#makeMeScrollable .popups div h2 { display: none; /*padding: 3px 6px; font-size: 18px; color: #a6cf39;*/ }
#makeMeScrollable .popups div .close { position: absolute; top: 0; right: 0; width: 10px; height: 10px; background: url(/images/scroller/scroller_close.png) no-repeat; text-indent: -9999px; }	

