/*!
 *  Kwicks: Sexy Sliding Panels for jQuery - v2.1.0
 *  http://devsmash.com/projects/kwicks
 *
 *  Copyright 2013 Jeremy Martin (jmar777)
 *  Contributors: Duke Speer (Duke3D)
 *  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;
}
.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{
	width: 105px;
	height: 180px;
	display: block;
	overflow: hidden;
	padding: 0;  /* if you need padding, do so with an inner div (or implement your own box-model hack) */
}
.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: 5px; /*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: 5px; /*Set to same as spacing option. */	
}

#kwick_1 { 
	background: #53b388 url(../img/kwick1.jpg) no-repeat;
}
#kwick_2 {
	background: #5a69a9 url(../img/kwick2.jpg) no-repeat;
}
#kwick_3 {
	background: #c26468 url(../img/kwick3.jpg) no-repeat;
}
#kwick_4 { 
	background: #bf7cc7 url(../img/kwick4.jpg) no-repeat;
}
#kwick_5 {
	background: #f2d357 url(../img/kwick5.jpg) no-repeat;
}
#kwick_6 { 
	background: #4cd5c6 url(../img/kwick6.jpg) no-repeat;
}

.kwicks.horizontal #kwick_6 {
	margin-right: none; /* cancel margin on last kiwck (if you set a margin above) */
}
.kwicks.vertical #kwick_6 {
	margin-bottom: none; /* cancel margin on last kiwck (if you set a margin above) */
}
