/*!
 *  Kwicks: Sexy Sliding Panels for jQuery - v2.2.1
 *  http://devsmash.com/projects/kwicks
 *
 *  Copyright 2013 Jeremy Martin (jmar777)
 *  Contributors: Duke Speer (Duke3D), Guillermo Guerrero (gguerrero)
 *  Released under the MIT license
 *  http://www.opensource.org/licenses/mit-license.php
 */
/*
 *  This file contains styles that are common to all kwicks instances.  Note that each kwicks instance requires
 *  additional styling - please see the examples for more info.
 */
.kwicks {
	display: block;
	list-style-type: none;
	list-style: none;
	position: relative;
	margin: 0;
	padding: 0;
        width:960px;
	height:292px;
}
.kwicks > li{
      /* these are required, but the values are up to you (must be pixel) */
      width: 692px;
      height: 292px;
      /*do not change these */
      display: block;
      overflow: hidden;
      padding: 0;  /* if you need padding, do so with an inner div (or implement your own box-model hack) */
}
        
.kwicks > * {
	display: block;
	overflow: hidden;
	padding: 0;
	margin: 0;
}
.kwicks.kwicks-processed > * {
	margin: 0;
	position: absolute;
}
.kwicks-horizontal > * {
	float: left;
}
.kwicks-horizontal > :first-child {
	margin-left: 0;
}
.kwicks-vertical > :first-child {
	margin-top: 0;
}

.kwicks li span {
   position:absolute; 
   bottom:0px; 
   left:0px; 
   color:#fff; 
   width:148px; 
   padding:0 20px; 
   font-size:24px; 
   line-height:25px; 
   text-transform:uppercase; 
   font-weight:normal; 
   font-family: 'yanone_kaffeesatzregular', sans-serif;
   text-shadow: 2px 4px 3px rgba(0,0,0,0.3);
}

.kwicks li ul {
   position:absolute; 
   width:500px; 
   top:5px; 
   left:192px; 
   color:#fff; 
   line-height: 20px;
   font-size:20px; 
   font-weight:normal; 
   font-family: 'yanone_kaffeesatzregular', sans-serif;
}

.kwicks li ul li{
   width:146px; 
   height: 40px;
   padding: 10px;
   display:inline-block;
}

.kwicks li ul li a{
   line-height: 20px;
   font-size:20px; 
   font-weight:normal; 
   font-family: 'yanone_kaffeesatzregular', sans-serif;
   color:#fff;
   text-shadow: 2px 4px 3px rgba(0,0,0,0.3);
}