/* DEPRECATED -- The style for the combo box container */
.ComboBox{}
/* Defines the text box. */
.ComboBoxText{
	border-left:1px solid #999999;
	border-top:1px solid #999999;
	border-bottom:1px solid #999999;
	border-right:1px solid #999999;
	height:20;
	font:10pt Tahoma,Arial;
	vertical-align:text-bottom;
	padding-top: 0px;
	padding-left: 2px;
}
.ComboBoxTextDisabled
{
	border-left:1px solid #999999;
	border-top:1px solid #999999;
	border-bottom:1px solid #999999;
	border-right:1px solid #999999;
	height:20;
	font:10pt Tahoma,Arial;
	vertical-align:text-bottom;
	padding-top: 0px;
	padding-left: 2px;
}
.ComboBoxTextDynamic{
	background:#fff;
}
.ComboBoxTextDynamicOver{
	background:#ECECEC;
}
/* DEPRECATED -- Defines the container containing the textbox and button */
.ComboBoxTextAndButton{}
/* Defines the button */
.ComboBoxButton{
	cursor:pointer;
}
/* Defines the button's IMG tag */
.ComboBoxButtonImg{
	background:url(button.gif);
	vertical-align:text-bottom;
	/* underscore-css-hack necessary because below are only needed for IE */
	_position:relative;
	_top:-1;
	/* width/height necessary to size the transparent 1x1pixel gif to allow
		the above background to show */
	width:15;
	height:20;
}
/* The class used when the user mouses over the button. */
.ComboBoxButtonImgOver{
	background:url(button.gif);
	vertical-align:text-bottom;
	/* underscore-css-hack necessary because below are only needed for IE */
	_position:relative;
	_top:-1;
	/* width/height necessary to size the transparent 1x1pixel gif to allow
		the above background to show */
	width:15;
	height:20;
}
/* The class used when the combo is disabled. */
.ComboBoxButtonImgDisabled{
	background:url(button.gif);
	vertical-align:text-bottom;
	/* underscore-css-hack necessary because below are only needed for IE */
	_position:relative;
	_top:-1;
	/* width/height necessary to size the transparent 1x1pixel gif to allow
		the above background to show */
	width:15;
	height:20;
}
/* The class used when the user presses the button. */
.ComboBoxButtonImgPressed{
	background:url(button_pressed.gif);
	vertical-align:text-bottom;
	/* underscore-css-hack necessary because below are only needed for IE */
	_position:relative;
	_top:-1;
	/* width/height necessary to size the transparent 1x1pixel gif to allow
		the above background to show */
	width:15;
	height:20;
}
/* The list container; contains the list's header, body, footer. */
.ComboBoxList{
	float:left;
}
/* The list's body; the middle container in the list container. */
.ComboBoxListBody{
	/* workaround to scrolling issue */
	overflow:auto;
	_overflow:hidden;
	_overflow-y:auto;
	background:#FFFFFF;
	font:10pt Tahoma,Verdana,Arial;
	float:left;
}
/* The list's header; the topmost container in the list container. */
.ComboBoxListHeader{
	overflow:hidden;
	background-color: #F0F0E5;
	border-bottom:1px solid #D8D2BD;
	border-top:1px solid #FFFFFF;
	font:10pt Tahoma,Verdana,Arial;
	color:#000000;
	height:20;
	float:left;
	padding-top:-2px;
}
/* The table storing the actual list data */
.ComboBoxListBodyTable{
	font-size:10pt;
	margin:0px;
	border-collapse:collapse;
	background:#FFFFFF;
	float:left;
}
/* A row in the table. */
.ComboBoxListBodyTableRow{
	font:10pt Tahoma,Verdana;
	margin:0px;
	border-collapse:collapse;
	height:18px;
	padding-top: 0px;
	background:#FFFFFF;
	border:#F9F9F9 0px solid;
	cursor:pointer;	
	float:left;
}
/* The style used when the user selects or mouses over a row */
.ComboBoxListBodyTableRowHighlighted{
	font-size:10pt;
	margin:0px;
	padding-top: 0px;
	border-collapse:collapse;
	height:18px;	
	color:#000;
	background:#F6F6F6;
	border:#B8CCE4 0px solid;
	cursor:pointer;	
	float:left;
}
/* The column labels at the top of the columns. This style is applied to the whole row of labels. */
.ComboBoxColumnLabels{
	font:10pt Tahoma,Arial;
	color:#000;
	padding-top:0px;
	float:left;
}
/* The style applied to the individual label. */
.ComboBoxColumnLabel{
	font:10pt Tahoma,Arial;
	color:#000000;
	vertical-align:top;
	position:relative;
	padding-top:2px;
	padding-left: 3px;
	top:0px;
	float:left;
}
/* The footer that sits underneath the list. */
.ComboBoxListFooter{
	font:10pt Tahoma,Arial;
	background-color: #F0F0E5;
	border-bottom:1px solid #D8D2BD;
	border-top:1px solid #FFFFFF;
	vertical-align:middle;
	color: #000000;
	height:19px;
	padding:0px;
	float:left;
}
.ComboBoxListColumnDefinition{
	_height:18px;
	min-height:18px;
	float:left;
	cursor:pointer;	
	overflow:visible;
	padding-left: 1px;
}
.ComboBoxListFooterPageNextButton{
	border-top:1px solid #D8D2BD;
	background: url(paging.gif) no-repeat right top;
	padding-top: 2px;
	padding-left: 2px;
	height:19px;
	cursor:hand;
	float:left;
}
.ComboBoxListFooterPageNextButtonHighlight{
	background:#e9ebf4 url(paging.gif) no-repeat right top;
	color: #000000;
	border-top:1px solid #98AAB1;
	padding-top: 2px;
	padding-left: 2px;
	height:19px;
	cursor:hand;
	float:left;
}
/* affects the color of the list's outer border */
/* PLEASE DO NOT put anything else into this style */
/* this style is provided solely to change this one attribute */
.ComboBoxListOuterBorder{
      border-color:#999999;
}