/**
  * Rhinoslider 1.04
  * http://rhinoslider.com/
  *
  * Copyright 2012: Sebastian Pontow, Rene Maas (http://renemaas.de/)
  * Dual licensed under the MIT or GPL Version 2 licenses.
  * http://rhinoslider.com/license/
  */
  


#slider {
	width:625px;
	height:310px;
	/*background: #F3F1E7;*/
	overflow: hidden;  /* avoid flash of slider content */
	
	/*IE bugfix*/
	padding:0;
	margin: 15px 0 15px 0;
}

#slider li { 	
	list-style:none; 
	padding: 0;
	}

 
.rhino-btn {
	background: url(img/pause-play.gif) 0 0 no-repeat;
	z-index:10;
	width:26px;
	height:26px;
	display:block;
	text-indent:-999%;
	-webkit-user-select:none;
	-moz-user-select:none;
	user-select:none;
}

.content-container  a.rhino-btn:hover {
	border-bottom: none; /* apf */
}	
	
.rhino-prev, .rhino-next { bottom:-4px; }

.rhino-prev {
	left:-6px;
	background-position:-168px 0;
}

.rhino-next {
	right:-6px;
	background-position:-106px 0;
}

.rhino-prev:hover { background-position:-168px -53px; }

.rhino-next:hover { background-position:-106px -53px; }

.rhino-toggle {
	top:275px;  /* apf positioning of controls */
	left:10px;
}
 
.rhino-play { background-position:0 0; }

.rhino-play:hover { background-position:0 -26px; }

.rhino-pause { background-position:-26px 0; }

.rhino-pause:hover { background-position:-26px -26px; }

.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;
	top: 275px;
	left: 36px;  /* apf position of controls */
	/*margin:0 0 0 -50px;*/
	margin: 0;
	z-index: 10;
	background: #fff; /* apf bg of bullets */
	padding:0;
}

/*.rhino-bullets:before, .rhino-bullets:after {
	position:absolute;
	display:block;
	left:-16px;
	content:' ';
	width:16px;
	height:26px;
	background:url(../img/rhinoslider-sprite.png) -224px 0 no-repeat;
}

.rhino-bullets:after {
	left:auto;
	right:-16px;
	background-position: -240px 0;
}*/

.rhino-bullets li {
	float:left;
	display:inline;
	margin:0 2px;
	padding: 7px;
}

.rhino-bullets li a.rhino-bullet {
	display: block;
	width: 12px;
	height: 1px;
	border-radius: 50%;
	cursor: pointer;
	background: #DAE9EA; /* apf colour of off bullets */
	font-size: 10px;
	text-align: center;
	padding: 6px 0 5px 0;
	color: #333;
	text-decoration:none;
	-webkit-user-select:none;
	-moz-user-select:none;
	user-select:none;
}

.rhino-bullets li a.rhino-bullet:hover, .rhino-bullets li a.rhino-bullet:focus {
	color:#61BCC7;
	background:#A4C6CA; /* apf colour of hover bullets */
	border-bottom: none; /* needed to override style from main stylesheet */
}

.rhino-bullets li a.rhino-bullet.rhino-active-bullet {
	color:#000;
	background:#A4C6CA; /* apf colour of active bullets */
}


