.select {
	background-color: #e48900;
	border-radius: 4px;
	border: 1px solid #d68000;
	border-top-color: #b96f00;
	border-bottom-color: #fab373;
	cursor: pointer;
	float: left;
	position: relative;
	z-index: 99999;
	width: 338px;
}

.select div {
	background: url("../img/seta-select.png") no-repeat right top;
	float: left;
	height: 38px;
	width: 100%;
}

.select div p {
	color: #fff;
	cursor: pointer;
	line-height: 40px;
	padding: 0 10px;
	overflow: hidden;
	white-space: nowrap;
}

.select ul {
	width: 100%;
	float: left;
	display: none;
	border-radius: 4px;
	
	position: absolute;
	left: 0;
	top: 36px;
	z-index: 100000;
	
	padding: 0;
	margin: 0 0 0 -1px;
	
	list-style: none;
	
	border: 1px solid #d68000;
	border-top: 0;
	border-bottom-color: #fab373;
	
	overflow-y: auto;
	overflow-x: hidden;
	max-height: 200px;

}

.select ul li {
	float: left;
	width: 100%;
	height: 33px;
	line-height: 33px;
	overflow: hidden;
	white-space: nowrap;
	cursor: pointer;
	border-top: 1px solid #d68000;
	background-color: #e48900;
}

.select ul li:first-child{
	display: none;
}

.select ul li:hover{
	background-color: #f57300;
}	

.select ul li span{		
	cursor: pointer;
	display: block;
	padding: 0 10px 0 10px !important;
}