/* multiple_select */
.multiple_select {
	border:0; 
	background-color:#E6E6E6; 
	color: #fff; 
	width: 300px; 
	height: 100px;}
	
ul.multiple_select_list {
	background-color: #f4f4f4; 
	margin: 0; 
	padding: 0; 
	overflow: auto; 
	list-style: none; 
	border: 0; 
	z-index: 500;}
	
ul.multiple_select_list li {
	background: url('./images/unchecked.png') no-repeat left; 
	color: #000; 
	padding: 0 0 0 50px; 
	border-bottom: 1px dotted #CCC; 
	line-height: 25px; 
	height: 25px; cursor: pointer; font-weight: normal; font-size: 12px;}
	
ul.multiple_select_list li.choice_selected {
	background: url('./images/checked.png') left no-repeat; background-color: #eef3f7; color: #000; font-weight:bold; font-size:13px;}
	
ul.multiple_select_list li.choice_hover {
	color: #444;}

.checked {
    background: #222 url("./images/unchecked.png") no-repeat left; 
	
}
.unchecked {
    background:  #121214 url("./images/checked.png") no-repeat left; 
}