/*************************************************
*  CSS for Two-level combobox                    *
*             Copyright 2009 INTERLINK co.,ltd.  *
*             Written by Mao Morimoto            *
*************************************************/

/* styles for initial text */
input.cbinit {
	color: #909090;
}
/* style for drop-down list box */
div.dropbox {
	background-color: white;
	border: 1px solid black;
	overflow: auto;
	position: absolute;
	cursor: pointer;
}
/* style for sub list box */
div.dropbox-sub {
	width: 250px;
}
/* style for each items */
div.dropitem {
	background-color: inherit;
	margin: 2px 0 2px 0;
	padding: 2px 0 2px 5px;
	clear: both;
}
/* style for item with mouse hovering */
div.dropitem-hover {
	background-color: #ddddff;
}
/* style for items with sub list */
div.drophaschild {
	background-image: url(../images/subarrow.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
/* style for icons */
img.cbitemicon {
	margin-right: 5px;
}

/** NO NEED TO CUSTOMIZE **/
img.dropbutton {
	vertical-align: bottom;
}
div.dropitem table {  /* Bug-proof for IE6 */
	display: inline;
}
