.pure-menu-heading {display: none;}

.pure-img-responsive {
    max-width: 100%;
    height: auto;
}

/*
Add transition to containers so they can push in and out.
*/
#layout,
#menuside,
.menu-link {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

/*
This is the parent `<div>` that contains the menu and the content area.
*/
#layout {
    position: relative;
    padding-left: 0;
}
    #layout.active {
        position: relative;
        left: 200px;
    }
        #layout.active #menuside {
            left: 150px;
            width: 255px;
        }

        #layout.active .menu-link {
            left: 255px;
        }
		
	#menuside li a {color: #fff !important;  color: #fff !important;
   font-family: 'Quicksand', sans-serif !important;
    font-size: 1em !important; text-transform:uppercase;}
	#menuside li li a {color: #0CF !important; padding-left: 5px !important; font-size: .8em !important}
	
/*
The content `<div>` is where all your content goes.
*/



/*
The `#menuside` `<div>` is the parent `<div>` that contains the `.pure-menu` that
appears on the left side of the page.
*/

#menuside {
    margin-left: -150px; /* "#menuside" width */
    width: 150px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1000; /* so the menu or its navicon stays above all content */
    background: #8e121c;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
    /*
    All anchors inside the menu should be styled like this.
    */
    #menuside a:link,#menuside a:visited {
        color: #ffff;
        border: none;
        padding: 0.6em 0 0.6em 0.6em;
		font-size:0.8em;
    }

    /*
    Remove all background/borders, since we are applying them to #menuside.
    */
     #menuside .pure-menu,
     #menuside .pure-menu ul {
        border: none;
        background: transparent;
    }

    /*
    Add that light border to separate items into groups.
    */
    #menuside .pure-menu ul,
    #menuside .pure-menu .menu-item-divided {
   list-style: none;
    }
        /*
        Change color of the anchor links on hover/focus.
        */
        #menuside .pure-menu li a:hover,
        #menuside .pure-menu li a:focus {
           
        }

    /*
    This styles the selected menu item `<li>`.
    */
    #menuside .pure-menu-selected,
    #menuside .pure-menu-heading {
        background: #1f8dd6;
    }
        /*
        This styles a link within a selected menu item `<li>`.
        */
        #menuside .pure-menu-selected a {
            color: #fff;
        }

    /*
    This styles the menu heading.
    */
    #menuside .pure-menu-heading {
        font-size: 110%;
        color: #fff;
        margin: 0;
    }

/* -- Dynamic Button For Responsive Menu -------------------------------------*/

/*
The button to open/close the Menu is custom-made and not part of Pure. Here's
how it works:
*/

/*
`.menu-link` represents the responsive menu toggle that shows/hides on
small screens.
*/
.menu-link {
    background: none repeat scroll 0 0 #8e121c;
    border-bottom-right-radius: 25px;
    border-top-right-radius: 25px;
    color: #fff !important;
    display: block;
    font-size: 1.5em;
    height: auto;
    left: 0;
    padding: 0px 25px 0px 15px;
    position: fixed;
    top: 10px;
    width: 210px;
    z-index: 1000;
}

    .menu-link:hover,
    .menu-link:focus {
        background: # FF0;
    }

    .menu-link span {
        position: relative;
        display: block;
    }

    .menu-link span,
    .menu-link span:before,
    .menu-link span:after {
       

        width: 100%;
        height: 0.2em;
    }

        .menu-link span:before,
        .menu-link span:after {
            position: absolute;
            margin-top: -0.6em;
            
        }

        .menu-link span:after {
            margin-top: 0.6em;
        }
		
		.sidenav li {list-style:none; padding-left: 5px;
    padding-right: 5px;
	
	padding: 6px;
	text-decoration:none;
	text-transform: uppercase;
	display:inline-block;	
	font-family: 'Quicksand', sans-serif !important;
	color:#673131;
	width: 100%;}
	
	.sidenav li a{color:#673131}
.sidenav li a:visited {color:#673131}
.sidenav li a:hover {background-color: #673131; color: #fff;}

/* -- Responsive Styles (Media Queries) ------------------------------------- */

/*
Hides the menu at `48em`, but modify this based on your app's needs.
*/
@media screen and (min-width:2000px) {

   
    #layout {
        padding-left: 200px; /* left col width "#menuside" */
        left: 0;
    }
    #menuside {
        left: 200px;
    }

    .menu-link {
        position: fixed;
        left: 200px;
        display: none;
    }

    #layout.active .menu-link {
        left: 200px;
    }
}