#smart_menu {
	position: relative;
	width: auto;
}
#smart_menu ul {
	border: 1px solid #111;
	background: #1d1a21;
	-moz-border-radius: 0 0 4px 4px;
	-webkit-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;
	-moz-box-shadow: 0 5px 12px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0 5px 12px rgba(0,0,0,0.3);
	box-shadow: 0 5px 12px rgba(0,0,0,0.3);
}

#smart_menu ul li{
	border-top: 1px #474246 solid;
}

#smart_menu ul li:first-child{
	border-top: 0;
}
#smart_menu>li{
	height: 30px;
}

#smart_menu>li>a:hover .sub-arrow{
	bottom: -1px;
}

.sub-arrow {
	position: absolute;
	bottom: 0px;
	left: 50%;
	margin-left: -5px;
	width: 0;
	height: 0;
	overflow: hidden;
	border-width: 3px;
	border-style: solid dashed dashed dashed;
	border-color: #555 transparent transparent transparent;
}