.main-menu ul, .main-menu ul ul {
        margin: 0;
        padding: 0;
        list-style: none;
	
}

.main-menu ul {
        width: 500px;
		float: right;

}
.main-menu ul li ul{ width:150px;}
.main-menu ul:before,
.main-menu ul:after {
        content: "";
        display: table;
}

.main-menu ul:after {
        clear: both;
}

.main-menu ul {
        zoom:1;
}

.main-menu ul li {
        float: left;
        position: relative;
}

.main-menu ul a {
        float: left;
        padding: 40px 20px 30px;
        color: #000;
		font-weight: 700;
  font-size: 14px;
        text-transform: uppercase;
		 font-family: 'Quicksand', sans-serif;
}

.main-menu ul li:hover > a {
        color: #5da005;
}

*html .main-menu ul li a:hover { /* IE6 only */
        color: #000;
}

.main-menu ul ul {
        margin: 20px 0 0 0;
        _margin: 0; /*IE6 only*/
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 70px;
        left: 0;
        z-index: 9999;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -ms-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
}

.main-menu ul li:hover > ul {
        opacity: 1;
        visibility: visible;
        margin: 0;
}

.main-menu ul ul ul {
        top: 0;
        left: 150px;
        margin: 0 0 0 20px;
        _margin: 0; /*IE6 only*/
        -moz-box-shadow: -1px 0 0 rgba(255,255,255,.3);
        -webkit-box-shadow: -1px 0 0 rgba(255,255,255,.3);
        box-shadow: -1px 0 0 rgba(255,255,255,.3);
}

.main-menu ul ul li {
        float: none;
        display: block;
        border: 0;
        _line-height: 0; /*IE6 only*/
        -moz-box-shadow: 0 1px 0 #111, 0 2px 0 #666;
        -webkit-box-shadow: 0 1px 0 #111, 0 2px 0 #666;
       
}

.main-menu ul ul li:last-child {
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
}

.main-menu ul ul a {
        padding: 10px;
        width: 150px;
        _height: 10px; /*IE6 only*/
        display: block;
		background: #fff;
		border: 0;
        white-space: nowrap;
        float: none;
        text-transform: none;
}

.main-menu ul ul a:hover {
        background-color: fff;
}

.main-menu ul ul li:first-child > a {
        -moz-border-radius: 3px 3px 0 0;
        -webkit-border-radius: 3px 3px 0 0;
        border-radius: 3px 3px 0 0;
}

.main-menu ul ul li:first-child > a:after {
        content: '';
        position: absolute;
        left: 40px;
        top: -6px;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid #fff;
}

.main-menu ul ul ul li:first-child a:after {
        left: -6px;
        top: 50%;
        margin-top: -6px;
        border-left: 0;
        border-bottom: 6px solid transparent;
        border-top: 6px solid transparent;
        border-right: 6px solid #5da005;
}

.main-menu ul ul li:first-child a:hover:after {
        border-bottom-color: #FFF;
}

.main-menu ul ul ul li:first-child a:hover:after {
        border-right-color: #0299d3;
        border-bottom-color: transparent;
}

.main-menu ul ul li:last-child > a {
        -moz-border-radius: 0 0 3px 3px;
        -webkit-border-radius: 0 0 3px 3px;
        border-radius: 0 0 3px 3px;
}