/*body, html{
	width:100%;
	height:100%;
	padding:0;
	margin:0;
	background-color:lightgrey;
}*/
.combo{
	position:relative;
	display:inline-block;
	white-space:nowrap;
}
.combo table {
	border: 1px solid rgba(0,0,0,0.5);
	border-radius: 3px;
}
.combo-vis{
	display:inline-block;
	position:relative;
	background-color:white;
}
.combo-inp{
	margin:0;
	border:none;
	padding-top:1px;
	padding-bottom:1px;
	padding-left:0;
	padding-right:0;
	outline:0px;
	height:15px;
	font:12px Verdana;
	/*rtical-align:top;*/
}
.combo-left{
	width:3px;
	background-repeat:no-repeat;
	border-radius: 3px 0 0 3px;
	background: -webkit-gradient(
	    linear,
	    left bottom,
	    left top,
	    color-stop(0, rgb(207,207,207)),
	    color-stop(1, rgb(254,254,254))
	);
	background: -moz-linear-gradient(
	    center bottom,
	    rgb(207,207,207) 0%,
	    rgb(254,254,254) 100%
	);
	height: 20px;
}
.combo-center{
	height:20px;
	background: -webkit-gradient(
	    linear,
	    left bottom,
	    left top,
	    color-stop(0, rgb(207,207,207)),
	    color-stop(1, rgb(254,254,254))
	);
	background: -moz-linear-gradient(
	    center bottom,
	    rgb(207,207,207) 0%,
	    rgb(254,254,254) 100%
	);
}
.combo-arrow{
	border-left: 1px solid rgba(0,0,0,0.5);
	position:relative;
	height:20px;
	width:18px;
	border-radius: 0 2px 2px 0;
	background: url(../img/arrow_down_8x8.png) no-repeat center center, -webkit-gradient(
	    linear,
	    left bottom,
	    left top,
	    color-stop(0, rgb(54,54,54)),
	    color-stop(1, rgb(69,69,69))
	);
	background: url(../img/arrow_down_8x8.png) no-repeat center center, -moz-linear-gradient(
	    center bottom,
	    rgb(54,54,54) 0%,
	    rgb(69,69,69) 100%
	);
}
.combo-wrapper{
	position:relative;
}
.combo-list{
	position:absolute;
	border:1px solid #707070;
	background-color:white;
}

.combo-list ul{
	list-style-type:none;
	margin:0;
	padding:0;
}

.combo-list li{
	height:19px;
	font-size:12px;
	font-family:Verdana;
	cursor:pointer;
}

.combo-node{
	vertical-align:middle;
}

.combo-selected{
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
	font-weight: bold;
	/*background: -webkit-gradient(
	    linear,
	    left bottom,
	    left top,
	    color-stop(1, rgb(104, 139, 158)),
	    color-stop(0, rgb(133,186,213))
	);
	background: -moz-linear-gradient(
	    center bottom,
	    rgb(133,186,213) 0%,
	    rgb(104,139,158) 100%
	);*/
	background: #ECECEC url('../img/css3buttons_backgrounds.png') 0 0 no-repeat;
	background-position: 0 -40px;
	color:white;
}

.combo-selected .combo-node{
	/*border:1px solid grey;*/
	/*text-decoration:underline;*/
}

.combo-expcol{
	vertical-align:middle;
	padding-left:2px;
}

.combo-spacer{
	display:inline-block;
}