.drop-down {
	display: inline-block;
	position: relative;
	text-align: left;
}
.drop-down .drop-down-button {
	position: relative;
	cursor: pointer;
}
	.drop-down .drop-down-button-text {
		display: inline-block;
	}
.drop-down a.drop-down-button {
	top: 0;
	/* border: 1px solid transparent; */
}
.drop-down.expanded > .drop-down-button {
	z-index: 300;
	border: 1px solid #999;
	border-bottom: 0;
	margin-bottom: 1px;
	-moz-border-radius: 2px 2px 0 0;
	border-radius: 2px 2px 0 0;
	background-color: #eee;
}
.drop-down.expanded > .drop-down-button.button {
	background: #eee;
}
.drop-down .drop-down-button .i-toggle,
.drop-down .drop-down-button .img-toggle,
.drop-down .drop-down-button .i-toggle-r {
	background-position: 0 50%;
	background-repeat: no-repeat;
	background-image: url("../images/icons/expand-16.png");
	padding-left: 20px;
	display: inline-block;
}
	.drop-down .drop-down-button .i-toggle-r {
		padding-left: 0;
		padding-right: 20px;
		background-position: 100% 50%;
	}
	.drop-down.expanded .drop-down-button .i-toggle,
	.drop-down.expanded .drop-down-button .img-toggle,
	.drop-down.expanded .drop-down-button .i-toggle-r {
		background-image: url("../images/icons/collapse-16.png");
	}
.drop-down-menu {
	background: #eee;
	background: -moz-linear-gradient( top, #eee 50%, #ddd 100% );
	background: -webkit-linear-gradient( top, #eee 50%, #ddd 100% );
	background: -ms-linear-gradient( top, #eee 50%, #ddd 100% );
	background: -o-linear-gradient( top, #eee 50%, #ddd 100% );
	background: linear-gradient( top, #eee 50%, #ddd 100% );
	border: 1px solid #999;
	-moz-border-radius: 0 0 2px 2px;
	border-radius: 0 0 2px 2px;
	display: none;
	list-style-type: none;
	position: absolute;
	z-index: 2001;
	box-shadow: 0 1px 2px #ccc;
	padding: 2px 0;
	
	max-height: 430px;
}
	.drop-down-menu ul {
		margin-bottom: 0;
	}
.drop-down-menu li {
	display: block;
	margin: 0;
	position: relative;
}
.drop-down-menu li .quick-select {
	text-decoration: underline;
	font-weight: bold;
}
.drop-down-menu a.close {
	position: absolute;
	right: 2px;
	top: 2px;
	opacity: .3;
}
	.drop-down-menu a.item:focus + a.close,
	.drop-down-menu li:hover a.close,
	.drop-down-menu a.close:focus {
		opacity: 1;
	}
.drop-down-menu a.activate, .drop-down-menu .item {
	background: none;
	-moz-border-radius: 0;
	border-radius: 0;
	display: block;
	border: 0;
	white-space: nowrap;
	font-size: 14px;
	line-height: 130%;
	text-decoration: none;
	padding: 2px 20px 2px 5px;
	border-bottom: 1px solid #ddd;
	color: #333;
}
	.drop-down-menu li li a.activate, .drop-down-menu li li .item {
		padding-left: 20px;
	}
.drop-down-menu li.last a.activate, .drop-down-menu li.last .item {
	border-bottom: 0;
}
.drop-down-menu a.activate:hover, .drop-down-menu a.activate:active,
.drop-down-menu a.item:hover, .drop-down-menu a.item:active,
.drop-down-menu .item.active {
	background-color: #fff;
}
.drop-down-menu a.activate.disabled, .drop-down-menu .item.disabled,
.drop-down-menu a.activate.disabled:hover, .drop-down-menu .item.disabled:hover {
	background-color: transparent;
	color: #999;
	text-shadow: 0 1px 1px #fff;
}
.drop-down-menu .group-label {
	font-weight: bold;
	display: block;
	padding: 5px;
	/*
		TRANSPARENT GRADIENT MASK
		../images/button-mask.png
	*/
	background: #ddd url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABkCAYAAABHLFpgAAAAQUlEQVQY0+WPQQoAIAzDwv7/Qb+ic/U2UBx49xJSBqNFUjMAA6YBkea7uQFjtxI9ccT+eL19KXFU88uEQBI59WMsKqozwtx0fZsAAAAASUVORK5CYII=') repeat-x 0 0;
	background-image: -moz-linear-gradient( bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100% );
	background-image: -webkit-linear-gradient( bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100% );
	background-image: -ms-linear-gradient( bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100% );
	background-image: -o-linear-gradient( bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100% );
	background-image: linear-gradient( bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100% );
	border-top: 1px solid #aaa;
	border-bottom: 1px solid #aaa;
	font-size: 12px;
	text-shadow: 0 1px 1px #fff;
}

.drop-down.reverse {
	
}
	.drop-down.expanded > .drop-down-button.reverse {
		border: 1px solid #999;
		border-top: 0;
		margin-top: 1px;
		margin-bottom: 0;
		-moz-border-radius: 0 0 2px 2px;
		border-radius: 0 0 2px 2px;
	}
	.drop-down-menu.reverse {
		background: -moz-linear-gradient( bottom, #eee 50%, #ddd 100% );
		background: -webkit-linear-gradient( bottom, #eee 50%, #ddd 100% );
		background: -ms-linear-gradient( bottom, #eee 50%, #ddd 100% );
		background: -o-linear-gradient( bottom, #eee 50%, #ddd 100% );
		background: linear-gradient( bottom, #eee 50%, #ddd 100% );
		box-shadow: 0 -1px 2px #ccc;
		-moz-border-radius: 2px 2px 0 0;
		border-radius: 2px 2px 0 0;
	}
