@charset "utf-8";

.navigation-main{
	width: 900px;
    max-width: 99%;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    padding: 0px;
    clear: both;
    float: none;
    margin-bottom: 10px;
}

.toggle,
    [id^=drop] {
    display: none;
    }
    .navigation-main:after {
    content:"";
    display:table;
    clear:both;
    }
    /* Removing padding, margin and "list-style" from the "ul",
    * and adding "position:reltive" */
    .navigation-main ul {
    padding:0;
    margin:0;
    list-style: none;
    position: relative;
	text-align:center;
    }
	
	.navigation-main ul:after  {
		content:'';
		display:block;
		clear:both;
	}
    
    /* Positioning the .navigation-mainigation items inline */
    .navigation-main ul li {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    margin: 0px;
    display:inline-block;
    background-color: rgba(000,000,000,0.9);
    position: relative;
    border: thin solid #A88D68;
	width:19%;
    }
	
	.navigation-main ul li a{
    width:auto !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    }
    /* Styling the links */
    .navigation-main a {
    display:block;
    text-decoration:none;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 1em;
    color: #F00;
    text-decoration: none;
    text-align: center;
    max-width: 100%;
    clear: both;
    margin-right: auto;
    margin-left: auto;
    padding: 5px;
    line-height: 1.5em;
    position: relative;
    }
	
	
    .navigation-main ul li:hover > ul{display: block;}
    .navigation-main ul li:hover{background: rgba(0,0,0,.15);}
    .navigation-main ul li ul li:hover{background: rgba(0,0,0,.15);}
    /* Background color change on Hover */
    /* Hide Dropdowns by Default
    * and giving it a position of absolute */
    .navigation-main ul ul {
    display: none;
    position: absolute;
    top: 45px;
	width:100% !important;
	z-index:99;
	left:0;
    }
    
    /* Display Dropdowns on Hover */
    .navigation-main ul li:hover > ul {
    display:inherit;
    }
    
    /* Fisrt Tier Dropdown */
    .navigation-main ul ul li {
    width:170px;
    float:none;
    display:list-item;
    position: relative;
    }
    /* Second, Third and more Tiers
    * We move the 2nd and 3rd etc tier dropdowns to the left
    * by the amount of the width of the first tier.
    */
    .navigation-main ul ul ul li {
    position: relative;
    top:-60px;
    /* has to be the same number as the "width" of ".navigation-main ul ul li" */
    left:170px;
    }
    .navigation-main ul ul li{
        float: none !important; 
        position: relative !important;
        display:block;
        width:100% !important;
    }
    .navigation-main ul ul li a {
    border-bottom: 1px solid rgba(0,0,0,.05);
    }
    
    
    /* Change ' +' in order to change the Dropdown symbol */
    li > a:after { content:  ' +'; }
    li > a:only-child:after { content: ''; }
	
    /* Media Queries
    --------------------------------------------- */
	@media only screen and (max-width: 768px) {
    
	.navigation-main {
    margin: 0;
    }
    /* Hide the .navigation-mainigation menu by default */
    /* Also hide the  */
    .toggle + a,
    .menu {
    display: none;
    }
    /* Stylinf the toggle lable */
    .toggle {
    display: block;
    background-color: #000;
    padding:14px 20px;
    color:#F00;
    font-size:17px;
    text-decoration:none;
    border:none;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 1em;
    color: #F00;
	border:thin solid #A88D68;
    }
    .toggle:hover {
    background-color: #fff;
    }
    /* Display Dropdown when clicked on Parent Lable */
    [id^=drop]:checked + ul {
    display: block !important;
    }
    /* Change menu item's width to 100% */
    .navigation-main ul li {
    display: block;
    width: 100%;
    }
    .navigation-main ul ul .toggle,
    .navigation-main ul ul a {
    padding: 0 40px;
    }
    .navigation-main ul ul ul a {
    padding: 0 80px;
    }
    .navigation-main a:hover,
    .navigation-main ul ul ul a {
    background-color: #fff;
    }
    
    .navigation-main ul li ul li .toggle,
    .navigation-main ul ul a,
    .navigation-main ul ul ul a{
    padding:14px 20px;
    color:#FFF;
    font-size:17px;
    
    
    }
    
    
    .navigation-main ul li ul li .toggle,
    .navigation-main ul ul a {
    background-color: #212121;
    }
    /* Hide Dropdowns by Default */
    .navigation-main ul ul {
    float: none;
    position:static;
    color: #ffffff;
    /* has to be the same number as the "line-height" of ".navigation-main a" */
    }
    
    /* Hide menus on hover */
    .navigation-main ul ul li:hover > ul,
    .navigation-main ul li:hover > ul {
    display: none;
    }
    
    /* Fisrt Tier Dropdown */
    .navigation-main ul ul li {
    display: block;
    width: 100%;
    }
    .navigation-main ul ul ul li {
    position: static;
    /* has to be the same number as the "width" of ".navigation-main ul ul li" */
    }
    }
    @media all and (max-width : 330px) {
    .navigation-main ul li {
    display:block;
    width: 94%;
    }
    }
   