	.combo_box {
		color: white;
		overflow: hidden;
		background-color: black;
		height: 18px;
		line-height: 18px;
		border: 1px solid #404040;
	}
	
	.drop_down_combo {
		border: 1px solid #404040;
		color: white;
		max-height: 200px;
		background-color: black;
		height: expression(this.offsetHeight >= 200 ? '200px' : 'auto');
		overflow: auto;
		margin-top: 1px;
	}
	
	.drop_down_combo ul {
		padding: 0;
		margin: 0;
		overflow: hidden;
		list-style-type: none;
	}
	
	.drop_down_combo ul li {
		cursor: default;
		min-height: 17px;
		text-indent: 4px;
	}
	
	.drop_down_combo ul .selected {
		background-color: white;
		color: black;
	}
