/*!
 *  Kwicks: Sliding Panels for jQuery - v2.0.0
 *  http://devsmash.com/projects/kwicks
 *
 *  Copyright 2012 Jeremy Martin (jmar777)
 *  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: right;
}
.kwicks-horizontal > :first-child {
	/*margin-right: 0; */
}
.kwicks-vertical > :first-child {
	margin-top: 0;
}
.kwicks {
	width: 490px;
	height: 100px;
}
.kwicks > li {
	width: 170px;
	height: 100px;
	/* overridden by kwicks but good for when JavaScript is disabled */
	margin-right: 5px;
	margin-left: 5px;
	padding: 0 10px;
	float: right;
	background-color: #6aace0;
	text-align:right;
	border: 1px solid #120940;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.kwicks > li.kwicks-expanded { background-color: #b3d5ee; }
.kwicks > li.kwicks-selected { background-color: #dbebf8; }