/* @group Formularelemente */

form div.row {
	overflow: hidden;
	margin-bottom: 10px;
	clear: both;
}

input, textarea, select, button {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

input[type="text"], input[type="password"], input[type="email"], textarea {
	font-family: 'Open Sans', sans-serif;
	border: 1px solid white;
	outline: none;
	padding: 8px 6px 7px;
	font-size: 14px;
	background-color: white;
	width: 75%;
}

input[type="checkbox"], input[type="radio"] {
	border-style: none;
	outline: none;
}

input:focus, select:focus, textarea:focus {
	border-color: #bbbbbb;
}

label {
	float: left;
	width: 20%;
	font-weight: 400;
	padding-top: 8px;
}

fieldset {
	margin-bottom: 15px;
	border-style: none;
}

legend {
	display: none;
	visibility: hidden;
}

input[type="submit"] {
	color: white;
	border-style: none;
	line-height: 18px;
	padding: 6px 6px 5px;
	cursor: pointer;
	background-color: #73797d;
	font-size: 100%;
	font-weight: 400;
}

input[type="submit"]:hover {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background-color: #de951b;
}

.required {
	color: #de951b;
	font-weight: 600;
	font-size: 18px;
}

div.alert {
	background-color: #de951b;
}

/* @end */

/* @group Select jquery-Plugin */

/* Dropdown control */
.selectBox-dropdown {
    min-width: 200px;
    position: relative;
	border-style: none;
	line-height: 1.5;
    text-decoration: none;
    text-align: left;
    color: #000;
    outline: none;
    vertical-align: middle;
    background: white;
    display: inline-block;
    cursor: default;
    border-radius: 0px;
	margin-top: 8px;
}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
    border-color: #dcddde;
}

.selectBox-dropdown.selectBox-menuShowing-bottom {
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-bottomright: 0;
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.selectBox-dropdown.selectBox-menuShowing-top {
    -moz-border-radius-topleft: 0;
    -moz-border-radius-topright: 0;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.selectBox-dropdown .selectBox-label {
    padding: 2px 2px 2px 8px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}

.selectBox-dropdown .selectBox-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 23px;
    height: 100%;
    background: url(/shared/jquery.selectBox-arrow.png) 50% center no-repeat;
	border-left: 1px solid #dcddde;
}

/* Dropdown menu */
.selectBox-dropdown-menu {
    position: absolute;
    z-index: 99999;
    max-height: 200px;
    min-height: 1em;
	border-style: none; /* should be the same border width as .selectBox-dropdown */
    background: #FFF;
    -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/* Inline control */
.selectBox-inline {
    min-width: 150px;
    outline: none;
    border: 1px solid #dcddde;
    background: #FFF;
    display: inline-block;
    overflow: auto;
}

.selectBox-inline:focus {
    border-color: #dcddde;
}

/* Options */
.selectBox-options,
.selectBox-options li,
.selectBox-options li a {
    list-style: none;
    display: block;
    cursor: default;
    padding: 0;
    margin: 0;
    background-image: none;
}

.selectBox-options.selectBox-options-top{
    border-bottom:none;
	margin-top:1px;
}
.selectBox-options.selectBox-options-bottom{
	border-top:none;
}

.selectBox-options li a {
    line-height: 1.5;
    padding: 0 .5em;
    white-space: nowrap;
    overflow: hidden;
    background: 6px center no-repeat;
}

.selectBox-options li.selectBox-hover a {
    background-color: #EEE;
}

.selectBox-options li.selectBox-disabled a {
    color: #888;
    background-color: transparent;
}

.selectBox-options li.selectBox-selected a {
    background-color: #C8DEF4;
}

.selectBox-options .selectBox-optgroup {
    color: #666;
    background: #EEE;
    font-weight: bold;
    line-height: 1.5;
    padding: 0 .3em;
    white-space: nowrap;
}

/* Disabled state */
.selectBox.selectBox-disabled {
    color: #888 !important;
}

.selectBox-dropdown.selectBox-disabled .selectBox-arrow {
    opacity: .5;
    filter: alpha(opacity=50);
    border-color: #666;
	border-left-color: #dcddde;
}

.selectBox-inline.selectBox-disabled {
    color: #888 !important;
}

.selectBox-inline.selectBox-disabled .selectBox-options A {
    background-color: transparent !important;
}

/* @end */