/* here you can style the box itself */
.poly_listbox {
	border-width: 1px;
	border-style:solid;
	border-color: #000000;
	width: 100px;
	height:50px;
}

/* these styles are for the listbox items */
.poly_listbox_item/*, .poly_listbox>div*/, .poly_listbox_body{
	background-color: #FFFFFF;
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height: 18px;
}

/* these styles are applied when the mouse moves over a listbox item */
.poly_listbox_item_over {
	background-color: #EEEEEE;
	color: #000000;	
}

/* these styles are applied when the a listbox item is selected */
.poly_listbox_item_selected {
	background-color: #000066;	
	color: #FFFFFF;
}

/* this is for the content of the listbox box */
.poly_listbox_body {
	margin: 0px;
	padding: 0px;
	background-color:#FFFFFF;
	overflow-x: hidden; /* do not remove this line */
}

/* do not remove this line */
.poly_listbox_html {
	overflow-x: hidden; 
	overflow-y: scroll;
}
