/*
 * Dropit v1.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;
    width: 200px;
    height: 30px;
}
.dropit img {
    padding: 0 12px 0 0;
    float: left;
}
.dropit img.dropdown {
    float: none;
    position: relative;
    top: 5px;
}
.dropit .dropit-trigger {
    position: relative;
}
.dropit .dropit-submenu {
    position: absolute;
    top: 100%;
    left: 30px;
    z-index: 1000;
    display: none;
    min-width: 170px;
    list-style: none;
	padding: 0;
	margin: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-top: none;
}
.dropit .dropit-submenu li {
    float: none !important;
}
.dropit .dropit-submenu li a {
    font-weight: normal !important;
    padding: 0px 12px !important;
    color: #666 !important;
}
.dropit .dropit-open .dropit-submenu {
    display: block;
}