/*!
 *  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
 */
.kwicks {
	/* recommended styles for kwicks ul container */
	list-style: none;
	position: relative;
	margin: 0;
	padding: 0;
	background-color: transparent;
	height: 320px;
}
.dark .kwicks {
	background-color: #FFFFFF;
}
.kwicks li{
	/* these are required, but the values are up to you (must be pixel) */
	width: 225px;
	height: 320px;
	/*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) */
	position: absolute;
}
.kwicks.horizontal li {
	/* This is optional and will be disregarded by the script.  However, it should be provided for non-JS enabled browsers. */
	margin-right: 0px;
	/*Set to same as spacing option. */
	float: left;
}
.kwicks.vertical  li{
	/* This is optional and will be disregarded by the script.  However, it should be provided for non-JS enabled browsers. */
	margin-bottom: 0px;
	/*Set to same as spacing option. */
}
.kwicks-caption {
	width: 225px;
}
.kwicks li .kwicks-shadow {
	background: transparent url('kwicks-s.png') top right no-repeat;
	height: 370px;
	position: absolute;
	right: 0px;
	top: 0px;
	width: 27px;
}
.kwicks-caption {
	position: absolute;
	right: 12.5px;
	bottom: 20px;
	padding: 10px 15px;
	width: 250px;
	min-height: 100px;
	background: rgba(255, 255, 255, 0.85);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.kwicks-caption h2 {
	color: #555;
	font-size: 13px;
	font-weight: bold;
	padding: 3px;
	margin: 0px;
	text-align: center;
	text-transform: uppercase;
}
.dark .kwicks-caption h2 {
	color: #555;
}
.kwicks-caption p {
	color: #555;
	font-size: 13px;
	line-height: 1.2;
	padding: 5px 0px 0px 0px;
	margin: 0px;
	text-align: center;
}