.combo-input.placeholder {
	color: #999;	
}

.combo {
	position: relative;
}

b.combo-input-icon {
	position: absolute;
	right: 7px;
	top: 6px;
	cursor: pointer;
	display: block;
	height: 19px;
	width: 19px;
	line-height: 17px;
	overflow: hidden;
	text-align: center;
	background: #eee;
	-webkit-border-top-right-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius-topright: 3px;
	-moz-border-radius-bottomright: 3px;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}
	b.combo-input-icon:hover {
		background-color: #ddd;
	}
	b.combo-input-icon b {
		
		margin-left: 5px;
	}
	.lt-ie8 b.combo-input-icon {
		top: 7px;
	}
	
	.lt-ie8 b.combo-input-icon b {
		position: relative;
		top: 7px;
	}
	
	.lt-ie9 b.combo-input-icon b {
		position: relative;
		top: 3px;
	}

.combo input[readonly] {
	cursor: pointer;
}

.combo-menu {
	max-width: 500px;
	box-shadow: 0 0 10px 0 #222;
	padding: 5px;
	display: none;
	background: white;
}

.lt-ie9 .combo-menu {
	border: 1px solid #ccc;
}

.no-cssgradients .combo-menu {
	border: 1px solid #ccc;
}

.combo-menu > ul {
	max-height: 300px;
	overflow: auto;
	overflow-x: hidden;
	width: 100%;
}

.combo-menu .highlight {
	font-weight: bold;
}

#combo-menu-overlay {
	position: fixed;
	*position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 5000;
	opacity: 0.1; /* IE7 ? */
	background-color: rgba(255,255,255,0.1);
	display: none;
}

.combo-menu-close {
	display: block;
	text-align: center;
	font-weight: bold;
	color: #f1f1f1;
	padding: 8px 5px;
	margin: 5px -5px -5px;
	background-color: #6C5C53;
	cursor: pointer;
}

.combo-menu-close:hover {
	text-decoration: underline;
}

.combo-menu .tree-list {
	display: block;
	float: none;	
}

.combo-menu .tree-list-node {
	color: #333;
	text-decoration: none;
	display: block;
	padding: 5px;
	cursor: pointer;
}

.combo-menu .tree-list-node.hover {
	background: #ccc;
	color: #222;
}

.combo-menu .tree-list,.tree-list ul,.tree-list li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.combo-menu .tree-list ul .tree-list-node {
	padding-left: 20px;
}

.combo-menu .tree-list li {
	border-bottom: 1px solid #eee;
}

.combo-menu .tree-list li.has-children {
	
}

.combo-menu .tree-list ul li {
	border-bottom-style: dotted;
}

.combo-menu .tree-list li:last-child {
	border-bottom: 0;
}

.combo-menu .tree-list li.no-match {
	display: none;
}

.combo-menu .tree-list li.match
,.tree-list li.child-match > ul
,.tree-list li.match li.no-match {
	display: block;
}

.combo-menu .tree-list li.expanded>ul {
	display: block;
}

.combo-menu .tree-list li.collapsed ul {
	display: none;
}