/*
 * 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: 0px auto;
}
.dropit .dropit-trigger { position: relative; }
.dropit .dropit-submenu {
    position: absolute;
    top: -146px;
    left: 0; /* dropdown left or right */
    z-index: 1000;
    display: none;
    min-width: 100%;
    list-style: none;
	padding: 0;
	margin: 0;
}
.dropit .dropit-open .dropit-submenu { display: block; }

.dropit ul { background: rgba(35,35,35,0.9); }
.dropit ul a { color: white }
.dropit ul li { width: 100%; margin: 5px 0 }
.dropit-submenu li:last-child { margin-bottom: 7px;}
.dropit-submenu a:hover { color: lightgray;}
