	/*tabs */
	
	.localNav {
		padding: 0;
	}
	
	.tabSet {
	    display: table;
	    width: 100%;
	    border-bottom: none;
	}
	
	.tabSet span {
	    width: 25%;
	    -webkit-box-sizing: border-box;
	    -moz-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	    -o-box-sizing: border-box;
	    box-sizing: border-box;
	    display: table-cell;
	    vertical-align: top;
	    text-align:center;
	    font-size: 1.8rem;
	    font-family: 'garamond-premier-pro', arial, Georgia, serif;	
	    font-weight:normal;
	    padding: 1.3rem;
	    line-height: 1.25;
	    color: #AB7823;
	    border-bottom: 1px solid #d0d0d0;
	}
	
	.tabSet span.selected {
	    color: black;
	    border-left: 1px solid #d0d0d0;
	    border-right: 1px solid #d0d0d0;
	    border-bottom: none;
	}
	
	.tabSet span.selected:first-child {
		border-left: none;
	}
	
	.tabSet span.selected:last-child {
		border-right: none;
	}
	




	
	.rakePanel {
		color: #a0a0a0;
	}

	.rakePanel img {
		display: block;
	}
	
	#SLIDER {
		position: relative;
		width: 100%;
	}
	
	.sliderTrack {
		position: absolute;
		left: 10%;
		bottom: 25px;
		z-index: 100;
		background:white;
		border-radius: 2px;
		height: 4px;
		width: 80%;
	}
	.slider {
		height: 20px;
		width: 20px;
		border-radius: 10px;
		background: white;
		box-shadow: 1px 1px 8px rgba(0,0,0,1);
		margin-top: -9px;
	}
	
	#progressBar {
		border-radius: 3px;
		background: #c0c0c0;
		height: 7px;
		width: 60%;
		position: absolute;
		left: 20%;
		top: 50%;
	}
	
	#progressBar div {
		width: 0px;
		border-radius: 3px;
		background: black;
		-webkit-transition: width 1.5s ease-in;
		-moz-transition: width 1.5s ease-in;
		transition: width 1.5s ease-in;
	}
 