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

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

/*** Containers ***/
.ls-wrapper {
	clear: both;
	overflow: auto;
	color:#696969;
	position: relative;
	box-shadow:none;
	text-shadow:none;
}
.liquid-slider {
	width: 600px;
	margin: 0 auto;
	float: left;
	overflow: hidden;
	position: relative;
}

.liquid-slider .panel{
	border:none !important;
	box-shadow:none !important;
}

.arrows .liquid-slider {
  /* Margin between slider and arrows */
  margin: 0 10px;
}
.ls-responsive .liquid-slider {
  width: 100%;
  margin: 0;
}
.panel-container {
  position: relative;
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;

  /* from http://davidwalsh.name/translate3d */
}
.liquid-slider .panel-container .fade {
  width:100%;
  opacity: 0;
  position: absolute;
  top: 0; 
  left: 0;
  display: block;
}

/*** Panels ***/
.liquid-slider .panel {
	display: block;
	float: left;
}
.panel-wrapper {
	overflow:hidden;
	padding: 18px;
	position:relative;
}

/*** Tabbed Navigation ***/
.ls-nav {
	overflow:hidden;
	clear:both;
}
.ls-nav a {
  color: #919191;
  border-right:1px solid #b6b6b6;
  font-size:16px;
  padding: 10px 15px;  
  outline:0;
  text-align:center;
  width:115px;
}
.ls-nav li:first-child a{
  border-left:1px solid #b6b6b6;
}
.ls-nav li:last-child a{
  width:150px;
}
.ls-nav a:hover {
	color: #000;
	text-shadow: none;
}
.ls-nav .current a {
	border-bottom:3px solid #c31700;
	padding-bottom:7px;
	color: #000;
}
.ls-nav ul {  
  padding:0;
  clear: both;
  display: table;
  margin: auto;
  overflow: hidden;
}
.ls-nav ul li {
  display: table-cell;
}
.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(../img/liquidmenu.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: 110%;
	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: #fff;
	padding: 5px;
	width: 100px;
	display: block;
	text-align: center;
	text-decoration: none;
}
.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: 35px;
	height: 35px;
	position:relative;
}
.ls-nav-right-arrow {
	background: url(../img/programakademik/liquidarrowright.jpg);
}
.ls-nav-left-arrow {
	background: url(../img/programakademik/liquidarrowleft.jpg);
}
.ls-responsive .ls-nav-left-arrow {
	position: absolute;
	top:7px !important;
	right: 30px;
	z-index: 2;
}
.ls-responsive .ls-nav-right-arrow {
	position: absolute;
	top:7px !important;
	right: 0;
	z-index: 2;
}