/*
  root element for the scrollable.
  when scrolling occurs this element stays still.
*/
.scrollable {
 
	/* required settings */
	position:relative;
  /*  overflow:hidden;*/
	width: 940px;
	height:320px;
   
	/* custom decorations */
	border:hidden;
  }
   
   
   
   
   
   
  /*
	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;
	height:320px;
  }
   
  .items .slide {
	float:left;
	width:940px;
  }
   
  .items .slide .left {
	position:relative;
	top:0px;
	left:0px;
	width:460px;
	height:320px;
	background-color:#f3f5f2;
	overflow:hidden;
  }
   
  .items .slide .right {
	position:relative;
	top:-320px;
	left:480px;
	width:460px;
	height:320px;
	overflow:hidden;
  }
   
  .items .slide {
	overflow:hidden;
  }
   
  .items .slide h2 {
	padding: 0px 20px 0px 10px;
	font-size:32px;
	font-weight:normal;
	color:#0096af;
	font-family:Myriad Pro,Tahoma,Arial,Helvetica,sans-sarif;
	line-height:28px;
  }
  .items .slide p{
	/*padding:10px 20px 20px 10px;*/
	padding:10px 20px 0px 10px;
	color:#888;
	font-size:16px;
	font-family:Myriad Pro,Tahoma,Arial,Helvetica,sans-sarif;
	line-height:20px;
  }
   
   
  /* single scrollable item */
  .scrollable > img {
	float:left;
	margin:20px 5px 20px 21px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	width:100px;
	height:75px;
   
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
  }
   
  /* active item */
  .scrollable .active {
	border:hidden;
	position:relative;
	cursor:default;
  }
   
  /* this makes it possible to add next button beside scrollable */
  .scrollable {
	float:left;  
  }
   
  /* prev, next, prevPage and nextPage buttons */
  div.browse {
	background:url(images/bt_rect_hori_large.png) no-repeat;
	display:block;
	width:40px;
	height:40px;
	float:left;
	margin:40px 10px;
	cursor:pointer;
	font-size:1px;
	position:absolute;
	top:100px;
  }
   
  /* right */
  div.right {
	background-position: 0 -40px;
	clear:right;
	margin-right: 0px;
	/*left:925px;*/
	left:440px;
  }
  div.right:hover   { background-position:-40px -40px; }
  div.right:active   { background-position:-80px -40px; }
   
   
  /* left */
  div.left{
	margin-left: 0px;
	left:-35px;
	}
  div.left:hover    { background-position:-40px 0; }
  div.left:active    { background-position:-80px 0; }
   
  /* up */
  div.up:hover      { background-position:-40px 0; }
  div.up:active      { background-position:-80px 0; }
   
  /* down */
  div.down     { background-position: 0 -40px; }
  div.down:hover    { background-position:-40px -40px; }
  div.down:active    { background-position:-80px -40px; }
   
   
  /* disabled navigational button */
  div.disabled {
	visibility:hidden !important;    
  }   
   
  /* position and dimensions of the navigator */
  .navi {
	margin-left:0px;
	width:600px;
	height:20px;
	border:none;
	position:absolute;
	top: 295px;
	left:10px;
  }
   
   
  /* items inside navigator */
  .navi div {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(images/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
	border:none;
  }
   
  /* mouseover state */
  .navi div:hover {
	background-position:0 -8px;      
  }
   
  /* active state (current page state) */
  .navi div.active {
	background-position:0 -16px;
	border:none;
  }
  .owl-wrapper-outer{
	height:320px;
  }
  .owl-wrapper{
	height:320px;
  }
   
  /*
  *   Owl Carousel Owl Demo Theme
  *  v1.3.2
  */
  .scrollable .owl-controls {
	margin-top: -25px;
	text-align: left;
  }
   
  /* Styling Pagination*/
  .scrollable .owl-controls .owl-page {
	display: inline-block;
	zoom: 1;
	*display: inline; /*IE7 life-saver */
  }
   
  .scrollable .owl-controls .owl-page span {
	display: block;
	width: 14px;
	height: 14px;
	margin: 5px 7px;
	filter: Alpha(Opacity = 50); /*IE7 fix*/
	opacity: 0.5;
	/*-webkit-border-radius: 20px;
	-moz-border-radius: 20px;*/
	border-radius: 50%;
	background: #869791;
  }
   
  .scrollable .owl-controls .owl-page.active span,.scrollable .owl-controls.clickable .owl-page:hover span
	{
	filter: Alpha(Opacity = 100); /*IE7 fix*/
	opacity: 0.5;
	background: rgb(78, 78, 78) !important;
  }
   
  /* If PaginationNumbers is true */
  .scrollable .owl-controls .owl-page span.owl-numbers {
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
  }
   
  /* preloading images */
  .owl-item.loading {
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
  }
  .scrollable .owl-controls.clickable  .owl-prev, .scrollable .owl-controls.clickable .owl-next{
	  visibility: initial !important;
	  display: inline-block!important;
	  width: 20px !important;
	  height: 20px !important;
	  border-top: 3px solid #869791 !important;
	  border-right: 3px solid #869791 !important;
	  transition: 0.2s;
	  background: none !important;
	  border-radius: 0 !important;
	  opacity: 1 !important;
	  margin: 0 !important;
	  padding: 0 0 !important;
	  font-size: 0px !important;
	  position: absolute;
	  top: calc(50% - 20px) !important;
  }
  .scrollable .owl-controls.clickable .owl-prev {
	  left: -10px;
	  transform: rotate(-135deg);
	}
  .scrollable .owl-controls.clickable .owl-next {
	  left: calc(100% - 10px);
	  transform: rotate(45deg);
	}
	.owl-prev:hover {
	  box-shadow: 2px -2px 0 2px #c8d0cd;
	-webkit-box-shadow: 3px -3px #c8d0cd;
  }
	.owl-next:hover {
			box-shadow: 2px -2px 0 2px #c8d0cd;
	-webkit-box-shadow: 3px -3px #c8d0cd;
  }