/*
 * 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;
}
.dropit .dropit-trigger { position: relative; }

.dropit .dropit-submenu {
    position: absolute;
    top: 44px;
    left: 2px; /* dropdown left or right */
    z-index: 1000;
    display: none;
    width: 192px;
    list-style: none;
	padding: 0;
	margin: 0;
	background:#FFF;
	text-align:left;
	border:1px solid #BBB;
	font-size:11px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

.dropit .dropit-submenu a {
	color:#333;
	text-decoration:none;
	padding-left:8px;
}

.dropit .dropit-submenu li {
	height: 30px;
	line-height:30px;
}

.dropit .dropit-submenu a:hover {
	color:#C00;
}

.dropit .dropit-open .dropit-submenu { display: block; }


#egl_member ul li ul {
	width:100px;
    left: 0;
}