/*
root element for the scrollable.
when scrolling occurs this element stays still.
*/
.scrollable {
	position:relative;
	width: 1000px;
	height:225px;
	
	margin: 0 auto;
	position: relative;
}

/*
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 {
/* this cannot be too large */
width:20000em;
/*padding-left:50px;*/
position:absolute;
clear:both;
}

.items .jslistdiv {float:left;}

.items .jslistdiv a,.items .jslistdiv a p {text-decoration:none;}

.items .jscategorybox {
    background: #FFFFFF;
    height: 190px;
    margin: 0 10px;
    padding: 15px 15px;
    width: 940px;
    
    behavior: url("/scripts/PIE.htc");
	box-shadow: 0 0 5px #c8c8c8;
	border-radius: 5px;
}

/* active item */
.scrollable .active {
	position:relative;
	cursor:default;
}
/* this makes it possible to add next button beside scrollable */

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:47px;
	height:207px;
	float:left;
	cursor:pointer;
	font-size:1px;
    top:10px;
    position:absolute;
}

/* right */
a.right {
	background-position: 0 0;
	clear:right;
	right:-6px;
	background:url("/img/btn_right.png") no-repeat;
	margin: 0px;
	padding: 0px;
}
a.right:hover { background-position:0px -208px; }


/* left */
a.left{ left:-15px;
background:url("/img/btn_left.png") no-repeat;
} 
a.left:hover  { background-position:0px -208px; }

/* up and down */
a.up, a.down{ 
background:url("/img/scrollable/arrow/vert_large.jpg") no-repeat; 
float: none;
margin: 10px 50px;
}

/* up */
a.up:hover  { background-position:-30px 0; }
a.up:active  { background-position:-60px 0; }

/* down */
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;
} 

/* position and dimensions of the navigator */
.navi {
margin-left: 470px;
width: 200px;
height: 20px;
top: 230px;
position: absolute;
}


/* items inside navigator */
.navi a {
width:9px;
height:8px;
float:left;
margin:3px;
background:url("/img/jslisticon.jpg") 0 0 no-repeat;
display:block;
font-size:1px;
}

/* mouseover state */
.navi a:hover {
background-position:0 -8px;      
}

/* active state (current page state) */
.navi a.active {
background-position:0 -16px;     
}

.jscontent{
	overflow:hidden;
	position:relative;
	width:608px;
}
.jscontent_in{
   margin:0px auto;
}

/*--------------------------------------------------------------
jscategorybox
---------------------------------------------------------------*/

.jsboxin{
	
	background: rgb(66,81,122); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(66,81,122,1) 1%, rgba(43,64,81,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,rgba(66,81,122,1)), color-stop(100%,rgba(43,64,81,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(66,81,122,1) 1%,rgba(43,64,81,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(66,81,122,1) 1%,rgba(43,64,81,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(66,81,122,1) 1%,rgba(43,64,81,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(66,81,122,1) 1%,rgba(43,64,81,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#42517a', endColorstr='#2b4051',GradientType=0 ); /* IE6-9 */
	
	height: 190px;
	overflow: hidden;
}

.jscategorybox .photobox{
	width: 341px;
	height: 190px;
	overflow: hidden;
	float: right;
	}

.jscategorybox .textbox {
	padding: 0 0 0 20px;
	width: 550px;
	height: 180px;
	display: table-cell !important;
	vertical-align: middle !important;
	color: #FFFFFF;
	margin: auto 0 auto 0;
}

.jscategorybox .textbox .catchcopy{
	font-family: georgia,"times new roman",times,serif;
	font-size: 14pt;
	line-height: 1.25;
	text-shadow: 1px 1px 1px #000;
}

.jscategorybox .textbox .by{
	margin-top: 10px;
	font-size: .9em;
	color: #798c9c;
	font-style: italic;
}
