/*
Tutorial Name: Sliding Navigation Menu
Description: Sliding Navigation using CSS3 and Jquery
Author: Samuel Dalusung
*/
/*= MAIN STYLING
--------------------------------------------------------*/
/*body {
    width: 100%;
    background: #fff;
}*/
#toggle {
    width: 198px;
    list-style: none;
    margin-left: -40px;
    /*margin: 170px auto;*/
}
#toggle div:hover {
    background: #FEDC52;
}
#toggle div.active {
    background: #BCBCBC;
}
#toggle div {
    background-color: #EE9800;
    cursor: pointer;
    display: block;
    margin: 1px;
}
#toggle h3 {
    font-size: 14px;
    margin: 0;
    padding: 0;
    color: #fff;
    line-height: 41px;
    font-weight: normal;
    text-shadow: 1px 1px 0px #adadad;
    filter: dropshadow(color=#adadad, offx=1, offy=1);
}
.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
}


/*= ICONS
--------------------------------------------------------*/
 span.menu-icons {
    font-size: 26px;
    height: 20px;
    width: 22px;
    float: left;
    margin: 6px 12px 10px 12px;
    color: #fff;
}
span.the-btn {
    float: right;
    font-size: 26px;
    height: 30px;
    width: 43px;
    margin-top: -34px;
	margin-right: -10px;
    padding:0;
    color: #fff;
}


/*= UNORDERED LIST STYLES
--------------------------------------------------------*/
 #toggle ul {
    list-style: none;
    display: none;
	background-color:#BCBCBC;
    color: #fff;
}
#toggle ul li {
    line-height: 41px;
    color: #fff;
    list-style: circle;
    width: 240px;
    padding: 0;
    margin: 0;
}
#toggle a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    text-shadow: 1px 1px 0px #adadad;
    filter: dropshadow(color=#adadad, offx=1, offy=1);
}
#toggle a:hover {
    color: #EE9800;
}