/* Standard Form Elements
**************************/

input[type="text"],
input[type="password"] {
	height: 36px;
	line-height: 24px;
	padding: 6px 8px;
	border: 1px solid #d5d5d5;
	vertical-align: bottom;
	border-radius: 3px;
	color: #4f4f4f;
	margin-bottom: 5px;

	background: rgb(255,255,255);
	background: -moz-linear-gradient(top,  rgba(243,243,243,1) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(243,243,243,1)), color-stop(100%,rgba(255,255,255,1)));
	background: -webkit-linear-gradient(top,  rgba(243,243,243,1) 0%,rgba(255,255,255,1) 100%);
	background: -o-linear-gradient(top,  rgba(243,243,243,1) 0%,rgba(255,255,255,1) 100%);
	background: -ms-linear-gradient(top,  rgba(243,243,243,1) 0%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom,  rgba(243,243,243,1) 0%,rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#ffffff',GradientType=0 );
}

input[type="submit"] {
	vertical-align: bottom;
	padding: 0 10px;
}

/* Dropdown Box
********************/

.dropdown {
	width: 182px;
}

.dropdown .selection {
	color: #717171;
	padding: 5px 35px 7px 14px;
	text-decoration: none;
	border: 1px solid #d5d5d5;
	line-height: 24px;
	font-size: 16px;
	font-family: 'Abel', sans-serif;
	display:inline-block;
	cursor: pointer;
	width: 100%;
	position: relative;
	border-radius: 3px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;

	background: rgb(245,245,245);
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(235,235,235,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(235,235,235,1)));
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(235,235,235,1) 100%);
	background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(235,235,235,1) 100%);
	background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(235,235,235,1) 100%);
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(235,235,235,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ebebeb',GradientType=0 );
}

.dropdown .selection:after {
	content: "";
	display: block;
	height: 6px;
	width: 9px;
	position: absolute;
	top: 16px;
	right: 15px;
	background: url(../img/dropdown_arrow.png) no-repeat center center;
}

.dropdown .selection:hover {
	border-color: #c5c5c5;
	color: #616161;
}

.dropdown .options {
	border: 1px solid #c5c5c5;
	margin-top: -2px;
	height: 0px;
	overflow: hidden;
	position: absolute;
	width: 100%;
	z-index: 100;
	opacity: 0;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;

	background: rgb(251,251,251);
	background: -moz-linear-gradient(top,  rgba(251,251,251,1) 0%, rgba(234,234,234,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(251,251,251,1)), color-stop(100%,rgba(234,234,234,1)));
	background: -webkit-linear-gradient(top,  rgba(251,251,251,1) 0%,rgba(234,234,234,1) 100%);
	background: -o-linear-gradient(top,  rgba(251,251,251,1) 0%,rgba(234,234,234,1) 100%);
	background: -ms-linear-gradient(top,  rgba(251,251,251,1) 0%,rgba(234,234,234,1) 100%);
	background: linear-gradient(to bottom,  rgba(251,251,251,1) 0%,rgba(234,234,234,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbfbfb', endColorstr='#eaeaea',GradientType=0 );
}

.dropdown .options .option {
	height: 30px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 4px 10px;
	font-size: 16px;
	color: #717171;
	cursor: pointer;
	font-family: 'Abel', sans-serif;

	transition: color 0.2s;
	-webkit-transition: color 0.2s;
}

.dropdown .options .option:hover {
	color: #0f7abc;
}

label {
	line-height: 36px;
	font-family: 'Abel', sans-serif;
	font-size: 16px;
}