/* Horizontal accordion styles */

.kwicks {
	/* recommended styles for kwicks ul container */
	list-style: none;
	position: relative;
	margin: 0;
	padding: 0;
}

.kwicks li {
	/* these are required, but the values are up to you (must be pixel) */
	width: 104px;
	height: 108px;
	float: left;
	/*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) */
}


/* Auto complete styles  */

.ac_results {
	padding: 0px;
	border:1px solid #888;
	background-color: white;
	overflow: hidden;
	z-index: 99999;
}

.ac_results ul {
	width: 100%;
	list-style-position: outside;
	list-style: none;
	padding: 0;
	margin: 0;
}

.ac_results li {
	margin: 0px;
	padding: 2px 5px;
	cursor:pointer;
	display: block;
	font-size: 9pt;
	color: black;
	font-family: Verdana, Helvetica, Arial, sans-serif;
	/* 
	if width will be 100% horizontal scrollbar will apear 
	when scroll mode will be used
	*/
	/*width: 100%;*/
	/* 
	it is very important, if line-height not setted or setted 
	in relative units scroll will be broken in firefox
	*/
	line-height: 16px;
	overflow: hidden;
}

.ac_loading {
	background: white url('/images/indicator.gif') right center no-repeat;
}

.ac_odd {
	background-color: #eee;
}

.ac_over {
	background-color: #ff9900;
	color: #fff;
}


/* Image zoom styles 

div.imgzoom {
	line-height: 0;
	font-size: 0;
	z-index: 100;
	border: 5px solid #fff;
	margin: -5px;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

div.imgzoom a {
	background: url('/images/imgzoom-close.png') no-repeat;
	display: block;
	width: 44px;
	height: 45px;
	position: absolute;
	left: -22px;
	top: -22px;
	*left: auto;
	*right: -22px;
	text-decoration: none;
	text-indent: -100000px;
	outline: 0;
	z-index: 101;
}

div.imgzoom a:hover {
	background-position: left -45px;
}

div.imgzoom img, 
div.imgzoom embed, 
div.imgzoom object, 
div.imgzoom div {
	width: 100%;
	height: 100%;
}

 */