/*
 * 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;
}
.dropit .dropit-trigger { position: relative; }
.dropit .dropit-submenu {
    position: absolute;
    top: 100%;
    left: 0; /* dropdown left or right */
    z-index: 1000;
    display: none;
    min-width: 150px;
    list-style: none;
	padding: 0;
	margin: 0;
}
.dropit .dropit-open .dropit-submenu { display: block; }

.topmenu ul { display: none; } /* Hide before plugin loads */
.topmenu li.menu {
    border: 1px solid #FF8000;
    color: #fff;
    padding: 3px 8px;
    margin: -3px 0px 0px 2px;
	float: left;
	text-align: center;
	position: relative;    
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    -webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.15);
       -moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.15);
            box-shadow: 0px 1px 3px rgba(0,0,0,0.15);
	background: -moz-linear-gradient(top, #FF9B35, #FF8000);  
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FF9B35), to(#FF8000));
	background: -ms-linear-gradient(top,  #FF9B35 0%,#d0d3e6 100%,#FF8000 100%); /* IE10+ */	
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FF9B35', endColorstr='#FF8000',GradientType=0 );!important /* IE6-9 */
}
.topmenu .drop {
	color: #fff;
	padding-right: 21px;
	background:url("../img/drop.png") no-repeat right 7px;
}
.topmenu li.menu:hover {
	filter: none;
	background: #fff;
	color: #FF8000;
    text-decoration: none;	
}
.topmenu li:hover .drop {
	color: #FF8000;
	background:url("../img/drop.png") no-repeat right 7px;	
}
.topmenu li.dropit-open {
	filter: none;
	background: #fff;
    color: #FF8000;
    text-decoration: none;	
}
.topmenu li.dropit-open .drop {
	color: #FF8000;;	
}

.topmenu a:hover {
    background: #fff;
    color: #FF8000;
    text-decoration: none;
}
.topmenu ul.dropit-submenu {
    background-color: #fff;
    border: 1px solid #FF8000;
    padding: 6px 0;
    margin: 0px 0 0 -1px;
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    -webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.15);
       -moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.15);
            box-shadow: 0px 1px 3px rgba(0,0,0,0.15);
}          
.topmenu ul.dropit-submenu a {
    display: block;
    font-size: 14px;
    line-height: 25px;
    color: #7a868e;
    padding: 0 18px;
}
.topmenu ul.dropit-submenu a:hover {
    background: #FF8000;
    color: #fff;
    text-decoration: none;
}
