/*
Tutorial Name: Sliding Navigation Menu
Description: Sliding Navigation using CSS3 and Jquery
Author: Samuel Dalusung
*/


/*= MAIN STYLING
--------------------------------------------------------*/
 body {
    width: 100%;
}
#toggle {
    width: 290px;
    list-style: none;
    margin: 0px 10px auto;
}
#toggle div:hover {
    background: #c4c4c4;
}
#toggle div.active {
    background: #c4c4c4;
}
#toggle div {
    background-color: #f5f3f4;
    cursor: pointer;
    display: block;
    margin: 1px;
}
#toggle h3 {
    font-size: 13px;
    margin: 0;
    padding: 0;
    font-family: Nanum Barun Gothic;
    color: #000;
    line-height: 45px;
    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: #505050;
}
span.the-btn {
    float: right;
    font-size: 26px;
    height: 30px;
    width: 43px;
    margin-top: -34px;
	margin-right: -10px;
    padding:0;
    color: #505050;
}



/*= UNORDERED LIST STYLES
--------------------------------------------------------*/
 #toggle ul {
    list-style: none;
    display: none;
    color: #7e7e7e;
	background: #edebeb;
}
/*
#toggle ul li {
    line-height: 41px;
    color: #000;
    list-style: circle;
    width: 240px;
    padding: 0;
    margin: 0;
}
*/
/* ¼­ºê ÅØ½ºÆ® */
#toggle a {
    text-decoration: none;
    color: #000;
    font-family: Nanum Barun Gothic;
    font-size: 13px;
	line-height:28px;
    /* text-shadow: 1px 1px 0px #adadad; */
    /*filter: dropshadow(color=#7e7e7e, offx=1, offy=1);*/
}
#toggle a:hover {
    color: #7e7e7e;
}