/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scroll-wrapper{
  position:relative;
  box-shadow:0px 1px 7px #bbb;
  -webkit-box-shadow: 0px 1px 7px #bbb;
  -moz-box-shadow: 0px 1px 7px #bbb;
  margin-bottom:10px;
}
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 960px;
	height:449px;
}

/*
	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;
	position:absolute;
	clear:both;
}

.items .slider-items {
	float:left;
	width:960px;
  position:relative;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:0;
	padding:0;
	border:0;
	width:960px;
	height:449px;
}
.slider-desc{
  position:absolute;
  background:url(../images/green-bg.png);
  bottom:10px;
  left:0;
  padding:16px 28px;
  width:444px;
  color:#fff;
  font-size:16px;
  line-height:20px;
}
.slider-desc a{
  color:#fff;
  text-decoration:none;
  font-style:italic;
}
.slider-desc a:hover{
  text-decoration:underline;
}
.slider-desc h2{
  font-size:33px;
  line-height:35px;
  margin:0;
  padding:0;
}
/* active item */
.scrollable .active{
	cursor:default;
}


/* this makes it possible to add next button beside scrollable */
.scrollable {

}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../images/sprite.png) 0 -768px no-repeat;
	display:block;
	width:39px;
	height:39px;
	float:left;
	margin:auto;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right{
  position:absolute;
  top:34%;
  margin-right:-15px; 
  background-position: -39px -768px;
  right:0;
}
a.right:hover{ 
  background-position:-39px -807px; 
}
a.right:active{ 
  background-position:-39px -807px; 
} 


/* left */
a.left{  
  position:absolute;
  top:34%;
  margin-left:-15px;
} 
a.left:hover{
  background-position: 0 -807px;
}
a.left:active{ 
  background-position: 0 -807px; 
}


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	

/* position and dimensions of the navigator */
.navi {
  position:absolute;
  bottom:8px;
  right:5px;
	height:12px;
}


/* items inside navigator */
.navi a {
	width:12px;
	height:12px;
	float:left;
	margin:0;
  margin-left:2px;
	background:url(../images/sprite.png) -78px -768px no-repeat;
	display:block;
}

/* mouseover state */
.navi a:hover {
	background:url(../images/sprite.png) -90px -768px no-repeat;
}

/* active state (current page state) */
.navi a.active {
	background:url(../images/sprite.png) -90px -768px no-repeat;
}

.BonaSystemSliderContainer
{
    float: left;
    padding: 10px;
}

.BonaSystemSliderContainer .scrollable
{
    width: 725px;
	height: 340px;
}

.BonaSystemSliderContainer .slider-desc
{
    width: 300px;
    color: #477718;
	background:url('../images/bg-white-opacity.png') repeat;
}
.BonaSystemSliderContainer .slider-desc h2,
.BonaSystemSliderContainer .slider-desc a  {
  color: #477718;
}
.BonaSystemSliderContainer .items .slider-items
{
	width: 725px;
	height: 340px;
	cursor: pointer;
}

.BonaSystemSliderContainer .scrollable img 
{
	width: 100%;
	height: 340px;
}

.sliderPopup
{
    background-color: Fuchsia;
    width: 400px;
    cursor: default;
    position: relative;
}
.sliderPopup .popupContent
{
    margin: 6px;
    min-height: 500px;
}
#cboxTopCenter {
  display: none;
}