/*
 * Dropit v1.1.0
 * http://dev7studios.com/dropit
 *
 * Copyright 2012, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

/* These styles assume you are using ul and li */
.dropit {
	list-style: none;
	padding: 0;
	margin: 0;
		z-index:3000!important;
}
.smenul {
	font-size: 13px;
	color: #333;
	text-decoration: none;
	display: block;
	padding-top: 6px;
	padding-bottom: 6px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCC;
	padding-left: 10px;
	padding-right: 10px;
	z-index:3000!important;
}
.smenul:hover {
	color: #FFF;
	text-decoration: none;
	background-color: #00A8E9;

}
.dropit .dropit-trigger { position: relative; }
.dropit .dropit-submenu {
	position: absolute;
	top: 100%;
	left: 0; /* dropdown left or right */
	z-index: 3000!important;
	display: none;
	min-width: 230px;
	list-style: none;
	background-color: #FFF;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(50, 50, 50, 0.33);
	-moz-box-shadow: 0px 0px 15px 0px rgba(50, 50, 50, 0.33);
	box-shadow: 0px 0px 15px 0px rgba(50, 50, 50, 0.33);
	margin-top: 28px;
	padding-top: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
}
.dropit .dropit-open .dropit-submenu {
	display: block;
	text-decoration: none;
		z-index:3000!important;
}
