/* accordion */
.ui-accordion {
	background:#fff;
	border:1px solid #bdbdbd;
	border-radius:4px;
	box-shadow:0px 2px 0px #e0e0e0;
	padding:6px;
}
.ui-accordion-header {
	outline:none;
	margin:0px;
	font-size:16px;
	border:none;
	font-family:"PT Sans", Arial, Helvetica, sans-serif;
	border-bottom:1px solid #eee;
	padding-bottom:8px;
}
.ui-accordion-header.last,
.ui-accordion-header:last-child {
	border-bottom:none;
	padding-bottom:0px;
}
.ui-accordion-header a {
	border:none;
	font-size:16px;
	color:#444;
	outline:none;
	text-decoration:none;
	display:inline-block;
	padding:0px 6px;
	font-weight:bold;
}
.ui-accordion-header:hover {
	/*color:#fff;*/
	/*background:red;*/
        cursor: pointer;
        opacity: 0.8;
}

.ui-accordion-header:hover a, .ui-accordion-header:hover a:hover {
	color:#fff;
	background:red;
}

.ui-accordion-content {
	font-size:14px;
	margin-top:8px;
	padding: 24px;
}

.ui-accordion-content h4 {
    font-size: 16px;
    font-weight: bold;
}

.last.ui-accordion-content {
	border-top:1px solid #eee;
	padding-top:8px;
}

.ui-accordion-content p {
	display:inline-block;
}

.ui-accordion-header span {
	width: 14px;
	height: 14px;
	display:inline-block;
	background: url(//kishonti.net/images/mainimages/form-sprite.png) -111px -86px no-repeat;
	margin: 9px 6px 0 12px;
        vertical-align: top;
}

.ui-accordion-header-active span {
    height: 4px;
    margin-top: 14px;
    background-position: -111px -91px;
}

.ui-accordion-header:hover span {
}

.ui-accordion-header-active:hover span {
}

/* end accordion */

/* tabs */

/* compare tabs */

.compare .ui-tabs-nav {
	display: block;
	margin-bottom: 0;
}

.compare .ui-tabs-nav li {
	display: inline-block;
	margin-bottom: 0;
}


.compare .ui-tabs-nav li.ui-tabs-active a {
	border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #fff;
	border-left: 1px solid #ccc;
	padding: 12px 12px 20px 12px;
	margin-bottom: -1px;
	border-radius: 5px 5px 0 0;
	position: relative;
	color: red;
}

.compare .ui-tabs-nav li a {
	padding: 12px 12px 20px 13px;
	display: block;
	text-decoration: none;
	font-size: 16px;
	color: #444;
}

.compare .ui-tabs-nav li a:hover {
	color: blue;
}

/* end compare tabs */

/* end tabs */

/* end jquery ui */

/* Div container holding the dropdown list */
.selectboxit-container {
	display: inline-block;
 	 /* Hack for IE 6 and 7 to allow inline-block to work */
	*display: inline;
	zoom: 1;
	background: #fff;
	border: 1px solid #bbb;
	border-radius: 5px;
	box-shadow: 0 2px 0 rgba(0,0,0,0.2);
	padding: 6px;
	position:relative;
}

.selectboxit-container:hover {
	border-color: red;
}

/* Dropdown List Box */
.selectboxit {
	height: 16px; /* Height of the select box */
	cursor: pointer;
	white-space: nowrap;
	padding: 0;
}

/* Dropdown List Box and Dropdown Options List  */
.selectboxit, 
.selectboxit-options {
	width: 100%; /* Width of the dropdown list box and dropdown list options*/
	outline:none;
}

.results .selectboxit, 
.results .selectboxit-options {
	width: 528px; /* Width of the dropdown list box and dropdown list options*/
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: -moz-none;
}

.filter .selectboxit, 
.filter .selectboxit-options {
	width: 266px; /* Width of the dropdown list box and dropdown list options*/
}

/* Dropdown list Default Icon Positioning */
.selectboxit-default-icon {
	float: left;
}

/* Dropdown List Box Text */
.selectboxit-text {
	font: normal 14px/16px "PT Sans", Arial, Helvetica, sans-serif;
	color: #666;
	margin: 0;
	text-indent: 5px;
	overflow:hidden;
	float:left;
	white-space:nowrap;
	/* Prevents text selection */
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: -moz-none;
	ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

/* Dropdown List Options List*/
ul.selectboxit-options { 
	/*max-height: 300px; A vertical scrollbar appears if your select box options are taller than this */
	font: normal 14px/16px "PT Sans", Arial, Helvetica, sans-serif;
	margin:0;
	padding: 6px;
	list-style:none;
	position:absolute;
	right: -1px;
	top: 26px;
	overflow:auto;
	cursor:pointer;
	display:none;
	z-index:99999;
	outline:none;
	min-width: auto;
	color: #666;
	background: #fff;
	border: 1px solid red;
	border-radius: 0 0 5px 5px;
	box-shadow: 0 2px 0 rgba(0,0,0,0.2);
}

.search.login ul.selectboxit-options {
   min-width: 600px;
   right: auto;
   left: -1px;
    
}


.search.login .selectboxit-btn {
    width: 170px!important;
    
}

ul.selectboxit-options a,
ul.selectboxit-options a:hover,
ul.selectboxit-options a:visited,
ul.selectboxit-options a:link {
	padding: 3px 15px;
	text-decoration :none;
	color: #666;
}

/* Dropdown List Individual Options */
.selectboxit-options li,
.selectboxit-options
.selectboxit-optgroup-header {
	line-height: 1em; /* Height of Individual Select Box Options */
	text-indent: 5px; /* Horizontal Positioning of the select box option text */
	overflow:hidden;
	white-space:nowrap;
	list-style:none;
	padding: 4px 0;
	margin: 0;
}


/* Dropdown List Optgroup Headers */
.selectboxit-options .selectboxit-optgroup-header {
	font-weight: bold;
}

/* Dropdown List Optgroup Options */
.selectboxit-options .selectboxit-optgroup-option {
	text-indent: 20px;
}

/* Dropdown List Optgroup Header hover psuedo class */
.selectboxit-options .selectboxit-optgroup-header[data-disabled='true']:hover {
	cursor: default;
}

.selectboxit-options :hover,
.selectboxit-options :hover a,
.selectboxit-options :hover a:hover  {
	background: red;
	color: white;
} 
 

/* Dropdown List Down Arrow Container (if an image is not used) */
.selectboxit-arrow-container {
	/* Positions the down arrow */
	float:right;
	position:relative;
	display:inline-block;
	width:19px;
	height:16px;
}

/* Dropdown List Down Arrow */
.selectboxit-arrow-container i.selectboxit-arrow {
	/* Horizontally centers the down arrow */
	margin:0 auto;
	display: block;
	background: url(//kishonti.net/images/mainimages/form-sprite.png) -25px 0 no-repeat /*#fc0*/;
	width: 19px;
	height: 18px;
	position: absolute;
	top: -9px;
	right: 0;
}

.selectboxit-container:hover .selectboxit-arrow-container i.selectboxit-arrow {
	background: url(//kishonti.net/images/mainimages/form-sprite.png) -25px -18px no-repeat /*#fc0*/;
}

/* Dropdown List Individual Option Icon Positioning */
.selectboxit-options li i {
	float:left;
}

/* Chosen */ 

/* @group Base */
.chzn-container {
	display: inline-block;
 	 /* Hack for IE 6 and 7 to allow inline-block to work */
	*display: inline;
	zoom: 1;
	position:relative;
}

.chzn-container-active {
}

.chzn-container:hover .chzn-single {
	border-color: red;
}

.chzn-container .chzn-drop {
  	position: absolute;
  	top: 26px !important;
  	left: 0 /*-!important*/;
  	z-index: 1010;
  	background: #fff;
	border-top: 0;
	border-right: 1px solid red;
	border-bottom: 1px solid red;
	border-left: 1px solid red;
	border-radius: 0 0 5px 5px;
	box-shadow: 0 2px 0 rgba(0,0,0,0.2);
	display: block;
}
/* @end */

/* @group Single Chosen */
.chzn-container-single .chzn-single {
	display:block;
	padding: 6px;
	width: 266px;
	height: 16px;
	font: normal 14px/16px "PT Sans", Arial, Helvetica, sans-serif;
	color:#666;
	text-decoration:none;
	text-indent: 5px;
	background: #fff;
	border: 1px solid #bbb;
	border-radius: 5px;
	box-shadow: 0 2px 0 rgba(0,0,0,0.2);
}

.compare .chzn-container-single .chzn-single {
	width: 446px;
}

.chzn-container-single .chzn-single:hover,
.chzn-container-single .chzn-single:visited,
.chzn-container-single .chzn-single:link
 {
	color:#666;
}

.chzn-container-single .chzn-default {
  /*color: #999;*/
}
.chzn-container-single .chzn-single span {
  margin-right: 26px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.chzn-container-single .chzn-single abbr {
}
.chzn-container-single .chzn-single abbr:hover {
}
.chzn-container-single.chzn-disabled .chzn-single abbr:hover {
}
.chzn-container-single .chzn-single div {
  	position: absolute;
  	right: 6px;
  	top: 6px;
  	display: block;
	width: 19px;
	height: 18px;
}
.chzn-container-single .chzn-single div b {
	background: url(//kishonti.net/images/mainimages/form-sprite.png) -25px 0 no-repeat /*#fc0*/;
	display: block;
  	width: 100%;
  	height: 100%;
}

.chzn-container:hover .chzn-single div b {
	background: url(//kishonti.net/images/mainimages/form-sprite.png) -25px -18px no-repeat;
}

.chzn-container-single .chzn-search {
  	padding: 4px;
  	position: relative;
  	margin: 0;
  	white-space: nowrap;
  	z-index: 1010;

}
.chzn-container-single .chzn-search input {
  	margin: 1px 0;
  	padding: 4px 20px 4px 5px;
  	outline: 0;
	font: normal 14px/16px "PT Sans", Arial, Helvetica, sans-serif;
	background: url(//kishonti.net/images/mainimages/form-sprite.png) 245px 0 no-repeat ;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.compare .chzn-container-single .chzn-search input {
	background-position: 424px 0;
}

.chzn-container-single .chzn-search input:focus {
	border-color: red;
	box-shadow: 0 0 3px rgba(90,175,38,0.2);
}
.chzn-container-single .chzn-drop {
}
/* @end */

.chzn-container-single-nosearch .chzn-search input {
  position: absolute;
  left: -9000px;
}

/* @group Results */
.chzn-container .chzn-results {
  margin: 0 4px 4px 0;
  max-height: 240px;
  padding: 0 0 0 4px;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.chzn-container-multi .chzn-results {
  margin: -1px 0 0;
  padding: 0;
}
.chzn-container .chzn-results li {
  	display: none;
  	line-height: 16px;
  	padding: 5px 6px;
  	margin: 0;
  	list-style: none;
	font: normal 14px/16px "PT Sans", Arial, Helvetica, sans-serif;
	color: #666;
	text-ident: 5px;
}
.chzn-container .chzn-results .active-result {
  cursor: pointer;
  display: list-item;
}
.chzn-container .chzn-results .highlighted {
  background-color: red;
  color: #fff;
}
.chzn-container .chzn-results li em {
  background: #f9f3c0;
  font-style: normal;
}
.chzn-container .chzn-results .highlighted em {
  background: transparent;
}
.chzn-container .chzn-results .no-results {
  background: #f4f4f4;
  display: list-item;
}
.chzn-container .chzn-results .group-result {
  cursor: default;
  color: #999;
  font-weight: bold;
}
.chzn-container .chzn-results .group-option {
  padding-left: 15px;
}
.chzn-container-multi .chzn-drop .result-selected {
  display: none;
}
.chzn-container .chzn-results-scroll {
  background: white;
  margin: 0 4px;
  position: absolute;
  text-align: center;
  width: 321px; /* This should by dynamic with js */
  z-index: 1;
}
.chzn-container .chzn-results-scroll span {
  display: inline-block;
  height: 17px;
  text-indent: -5000px;
  width: 9px;
}
.chzn-container .chzn-results-scroll-down {
  bottom: 0;
}
.chzn-container .chzn-results-scroll-down span {
}
.chzn-container .chzn-results-scroll-up span {
}
/* @end */

/* @group Active  */
.chzn-container-active .chzn-single {
	/*border-radius: 5px 5px 0 0;*/
}
.chzn-container-active .chzn-single-with-drop {
  	display:block;
	padding: 6px;
	width: 266px;
	height: 16px;
	font: normal 14px/16px "PT Sans", Arial, Helvetica, sans-serif;
	color:#666;
	text-decoration:none;
	text-indent: 5px;
	border-color: red;	
}
.chzn-container-active .chzn-single-with-drop div {
  background: transparent;
  border-left: none;
}
.chzn-container-active .chzn-single-with-drop div b {
  /*background-position: -18px 1px;*/
}
.chzn-container-active .chzn-choices {
  -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);
  -moz-box-shadow   : 0 0 5px rgba(0,0,0,.3);
  box-shadow        : 0 0 5px rgba(0,0,0,.3);
  border: 1px solid #5897fb;
}
.chzn-container-active .chzn-choices .search-field input {
  color: #111 !important;
}
/* @end */