/**
  * Rhinoslider 1.05
  * http://rhinoslider.com/
  *
  * Copyright 2014: Sebastian Pontow, Rene Maas (http://renemaas.de/)
  * Dual licensed under the MIT or GPL Version 2 licenses.
  * http://rhinoslider.com/license/
  */
  
#featured-slider {
	width:960px;
	height:300px;
	
	/*IE bugfix*/
	padding:0;
	margin:0;
	overflow:hidden;
}

#featured-slider li { list-style:none; }

#page {
	width:600px;
	margin:50px auto;
}
			
.rhino-btn {
	background:url(/images/public/bfl/slider-controls.png) 0 0 no-repeat;
	z-index:10;
	width:58px;
	height:157px;
	display:block;
	text-indent:-999%;
	-webkit-user-select:none;
	-moz-user-select:none;
	user-select:none;
}

.rhino-prev, .rhino-next { top:70px; }

.rhino-prev {
	left:-110px;
	background-position:0px 0;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
}

.rhino-next {
	right:-110px;
	background-position:-58px 0;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
}

.rhino-prev:hover { 
	background-position:-116px 0; 
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
}

.rhino-next:hover { 
	background-position:-174px 0; 
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
}

.rhino-toggle {
	top:-4px;
	left:-6px;
}

.rhino-play { background-position:0 0; }

.rhino-play:hover { background-position:0 -53px; }

.rhino-pause { background-position:-56px 0; }

.rhino-pause:hover { background-position:-56px -53px; }

.rhino-container { position:relative; }

.rhino-caption {
	position:absolute;
	background: #000;
	display:none;
	left:0;
	right:0;
	top:0;
	color:#fff;
	padding:10px;
	text-align:right;
	-webkit-user-select:none;
	-moz-user-select:none;
	user-select:none;
}

.rhino-bullets {
	position: absolute;
	bottom: -24px;
	left: 50%;
	margin:0 0 0 -50px;
	z-index: 10;
	background: #fff;
	padding:0;
	padding:5px 7px;
	border:1px solid #eeeeee;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.rhino-bullets li {
	float:left;
	display:inline;
	margin:0 2px;
}

.rhino-bullets li a.rhino-bullet {
	display: block;
	width: 10px;
	height: 9px;
	cursor: pointer;
	font-size: 12px;
	text-align: center;
	background:url(/images/public/bfl/slider-bullets.png) no-repeat 0 0;
	text-decoration:none;
	-webkit-user-select:none;
	-moz-user-select:none;
	user-select:none;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
	text-indent:-9999px;
	
}

.rhino-bullets li a.rhino-bullet:hover, .rhino-bullets li a.rhino-bullet:focus {
	color:#999;
}

.rhino-bullets li a.rhino-bullet.rhino-active-bullet {
	color:#fff;
	background:url(/images/public/bfl/slider-bullets.png) no-repeat 0 -10px;
}