/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.scrollable { 
 
    /* required settings */ 
    position: relative; 
    overflow:hidden; 
    width: 966px; 
    height: 376px; 
} 
 
/* 
    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; 
} 
 
/* 
    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; 
} 
 
/* you may want to setup some decorations to active the item */ 
div.items div.active { 
    border:1px inset #ccc; 
    background-color:#fff; 
}

.evoke_slider
{
position:relative;
}

.slide
{
width: 966px;
position:relative;
}

.slide_content
{
position: absolute;
left: 40px;
top: 35px;

width: 290px;

}

.slide_content h2
{
color: #70732d;
font-size: 120%;
text-transform:uppercase;
padding-bottom: 8px;
margin-bottom: 0px;
font-family: arial;
}

.slide_content p
{
color: #70732d;
font-family: Trebuchet MS;
padding-bottom: 0px;
margin-bottom: 0px;
font-weight: bold;
font-size: 90%;
}

.slide_link_to
{

}
.slide_link_to a
{
color: #9d3e4b;
text-decoration: underline;
font-weight: bold;
}

.slide_link_to a:hover
{
color: #9d3e4b;
text-decoration: none;
}

.slider_navigation
{


}

.slider_next
{
position: absolute;
right: 12px;
top: 180px;
opacity:0.6;filter:alpha(opacity=60)
}

.slider_prev
{
position: absolute;
left: 12px;
top: 180px;
opacity:0.6;filter:alpha(opacity=60)
}
.prevPage
{
float: left;
width: 30px;
height: 27px;
background:url(/fileadmin/slider/left_arrow.png) no-repeat;
cursor: pointer;
}

.nextPage
{
float: right;
width: 30px;
height: 27px;
background:url(/fileadmin/slider/right_arrow.png) no-repeat;
cursor: pointer;
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../img/scrollable/arrow/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:40px 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 and down */
a.up, a.down		{ 
	background:url(../img/scrollable/arrow/vert_large.png) 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;		
} 	