@charset "UTF-8";
/* Formstyler CSS */

.jq-selectbox {
	cursor: pointer;
	width:100%;
}

.jq-selectbox__select {
	padding: 0 36px 0 10px;
	height: 28px;
	font-size: 1.3em;
	line-height: 28px;
	background: #fff;
	color: #666;
	width:100%;

	-webkit-box-shadow: 0px 1px 0px rgba(0,0,0,.1);
	-moz-box-shadow: 0px 1px 0px rgba(0,0,0,.1);
	box-shadow: 0px 1px 0px rgba(0,0,0,.1);
}

.jq-selectbox__select:hover {}
.jq-selectbox__select:active {}

.jq-selectbox.focused .jq-selectbox__select {
	outline: solid 1px #c8dbea;
}

.jq-selectbox.disabled .jq-selectbox__select {
	opacity: .5;
}

.jq-selectbox__select-text {
	display: block;
	overflow: hidden;
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.jq-selectbox__trigger {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 26px;
}

.jq-selectbox__trigger-arrow {
	position: absolute;
	top: 0;
	left: 0;
	width: 26px;
	height: 28px;
	background: url('../images/select-arrow.png');
}

.jq-selectbox:hover .jq-selectbox__trigger-arrow {
	background-position: bottom;
}

.jq-selectbox.disabled:hover .jq-selectbox__trigger-arrow {
	background-position: top;
}

.jq-selectbox__dropdown {
	top: 29px;
	//padding: 3px 0;
	width: 100%;
	outline: solid 1px #c8dbea;
	font-size: 1.3em;
	background: #fff;
}



.jq-selectbox__search input {
	margin-bottom: 0;
	width: 100%;
	border-bottom: solid 1px #c8dbea;
	outline: none;
	font-size: inherit;

	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.jq-selectbox__not-found,
.jq-selectbox li {
	padding: 0 10px;
	height: 22px;
	line-height: 22px;
	color: #666;
}

.jq-selectbox li.selected {}

.jq-selectbox li:hover {
	background: #f8f8f8;
}

.jq-selectbox li[data-style="first"] {
	color: #aaa;
}



/* */

#image + div .jq-selectbox,
#image + form .jq-selectbox {
	margin-bottom: 6px;
}

#image + div .jq-selectbox__select,
#image + form .jq-selectbox__select {
	width: 374px;
}

/* */



/* */

#quote .jq-selectbox {
	margin-bottom: 6px;
}

#quote .jq-selectbox__select {
	width: 368px;
}

/* */



/* */

.jq-file {
	margin-bottom: 6px;
	height: 28px;
	background: #fff;
	color: #666;

	-webkit-box-shadow: 0px 1px 0px rgba(0,0,0,.1);
	-moz-box-shadow: 0px 1px 0px rgba(0,0,0,.1);
	box-shadow: 0px 1px 0px rgba(0,0,0,.1);
}

#middle-cpanel .jq-file {
	width: 640px;
}

.jq-file input {
	cursor: pointer;
}

.jq-file__name {
	padding: 0 90px 0 10px;
	height: 28px;
	font-size: 1.3em;
	line-height: 28px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.focused .jq-file__name {
}

.jq-file__browse {
	position: absolute;
	top: 0;
	right: 0;
	width: 80px;
	height: 28px;
	font-size: 1.3em;
	line-height: 28px;
	border-left: solid 1px #e2e2e2;
	text-align: center;
	background: #fff;
}

.jq-file:hover .jq-file__browse {
	color: #04a8f8;
}

.jq-file:active .jq-file__browse {
}

.jq-file.disabled .jq-file__name {
}

.jq-file.disabled,
.jq-file.disabled .jq-file__browse {
	opacity: 0.7;
}