/*
 *  Liquid Slider v2
 *  Copyright 2012 Kevin Batdorf
 *  http://liquidslider.com
 *  MIT license
 */

.no-js .liquid-slider {
	height:350px;
	overflow:scroll;
	z-index: 300;
	left: 0px;
}
.ls-preloader {
	background: url(../images/loading.gif) #f2f2f2 no-repeat center 50%;
	opacity:1;
	width:200%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	z-index:300;
}

/*** Containers ***/
.ls-wrapper {
	clear: both;
	overflow: hidden;
	position: relative;
	z-index: 300;
	top: 435px;
	left: 116px;
}
.liquid-slider {
	background: #000000;
	width: 842px;
	float: left;
	overflow: hidden;
	position: relative;
	z-index: 500;
	background-color: #FFFFFF;
	height: 500px;
	left: -30px;
}
.ls-responsive .liquid-slider {
	width: 900px;
	margin: 0;
	margin-left: 0px;
}
.panel-container {
	position: absolute;
	-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000;
	width: 842px;
	margin-left: 4%;
  /* from http://davidwalsh.name/translate3d */
}
.liquid-slider .panel-container .fade {
	width:842px;
	opacity: 0;
	position: absolute;
	top: 0px;
	left: 0px;
	display: block;
	margin-right: 0px;
}

/*** Panels ***/
.liquid-slider .panel {
	display: block;
	width: 842px;
	margin-top: 10px;
	float: left;
	margin-right: 0px;
}
.panel-wrapper {
	padding: 15px 40px;
	position:relative;
	width: 500px;
	text-align: left;
}

/*** Tabbed Navigation ***/
.ls-nav {
  overflow:hidden;
  clear:both;
}
.ls-nav a {
  background: #d8d8d8;
  color: #333333;
  margin-right: 1px;
  padding: 10px 15px;  
  outline:0;
}
.ls-nav a:hover {
  background: #f2f2f2;
  color: #333333;
  text-shadow: none;
}
.ls-nav .current a {
  background: #f2f2f2;
}
.currentCrossLink {
	font-weight: bold;
	font-family: futura;
}
.ls-nav ul {  
  padding:0;
  clear: both;
  display: block;
  margin: auto;
  overflow: hidden;
}
.ls-nav ul li {
  display: inline;
}
.ls-nav ul li a {
  display: block;
  float: left;
  text-decoration: none;
}

/*** Mobile Navigation ***/
.ls-select-box { 
  width: 100%;
  height: 35px;
  overflow: hidden;
  background: url(../images/menu.png) no-repeat right #ddd;
}
.ls-select-box select {
	width: 150%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance:none;
	background: transparent;
	padding: 5px;
	font-size: 210%;
	border: none;
	height: 35px;
	cursor:pointer;
	outline: 0;
}

/*** Arrow Navigation (non-graphical) ***/
.ls-nav-left, .ls-nav-right {
  float: left;
  clear:both;
}
.ls-nav-left a, .ls-nav-right a {
	background: #000;
	color: #333333;
	padding: 5px;
	width: 100px;
	display: block;
	text-align: center;
	text-decoration: none;
	font-family: futura;
}
.ls-responsive .ls-nav-left {
  position: absolute;
  left: 0;
  z-index: 2;
}
.ls-responsive .ls-nav-left a {
  background: #9A9A9A;
  width: 80px;
}
.ls-responsive .ls-nav-left a:hover {
  background: #747474;
}
.ls-responsive .ls-nav-right {
  position: absolute;
  right: 0;
  z-index: 2;
}
.ls-responsive .ls-nav-right a {
  background: #9A9A9A;
  width: 80px;
}
.ls-responsive .ls-nav-right a:hover {
  background: #747474;
}

/*** Arrow Navigation (graphical) ***/
.ls-nav-left-arrow, .ls-nav-right-arrow {
  cursor: pointer;
  float: left;
  clear: both;
}
.ls-nav-left-arrow a, .ls-nav-right-arrow a {
  display: block;
}
[class$="-arrow"] {
  width: 25px;
  height: 25px;
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  margin-top: 50px;
  position:relative;
}
.ls-nav-right-arrow {
  background-position: top right;  
  margin-right: 5px;
}
.ls-nav-left-arrow {
  background-position: top left;  
  margin-left: 5px;
}
.ls-nav-left-arrow:hover {
  background-position: bottom left;
}
.ls-nav-right-arrow:hover {
  background-position: bottom right;
}
.ls-responsive .ls-nav-left-arrow {
  position: absolute;
  left: 0;
  z-index: 2;
}
.ls-responsive .ls-nav-right-arrow {
  position: absolute;
  right: 0;
  z-index: 2;
}
