
#menu {
	position: absolute;
	top: 53px;
	z-index:100;
	line-height: 36px;
	margin: 0px;
	width: 100%;
    -webkit-transition: all 2s ease-out;
    -moz-transition: all 2s ease-out;
    -ms-transition: all 2s ease-out;
    -o-transition: all 2s ease-out;
    transition: all 2s ease-out;
}
.homepage {
	text-align: center;
}
.homepage:hover {
	background-color: #006ed5;
}
.homepage a {
	color: #FFF;
	font-size: 14px;
	margin: 0px 20px;
}
.innerpage {
	text-align: center;
	background: #f5f5f5;
	border-bottom: solid 1px #FFF;
}
.innerpage a {
	color: #666;
	font-size: 14px;
	margin: 0px 20px;
}


/* --------------------------
 * Responsive Styles
 * --------------------------
*/

@media (max-width: 80px) {


/* Add transition to containers so they can push in and out */
#layout,
#menu,
.pure-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;
}



/* --------------------------
 * Layout Styles
 * --------------------------
*/

#layout {
    padding-left: 150px; /* left col width "#menu" */
    left: 0;
}

/* --------------------------
 * Main Navigation Bar Styles
 * --------------------------
*/

#menu {
    margin-left: -150px; /* "#menu" width */
    width: 150px;
    position: fixed;
    top: 0;
    left: 150px;
    bottom: 0;
    z-index: 1000; /* so the menu or its navicon stays above all content */
    background: #191818;
    overflow-y: auto;
    -webkit-overflow-scroll: touch;
}

.innerpage a {
	color: #FFF;
}

.pure-menu-link {
	display: none; /* show this only on small screens */
	top: 0;
	left: 150px; /* "#menu width" */
/* 不显示黑色背景
	background: #000;
	background: rgba(0,0,0,0.7);
*/
	font-size: 10px; /* change this value to increase/decrease button size */
	z-index: 10;
	width: 2em;
	height: auto;
	padding: 2.1em 1.6em;
}

.pure-menu-link:hover,
.pure-menu-link:focus {
/* 不显示黑色背景
	background: #000;
*/
}

.pure-menu-link span {
	position: relative;
	display: block;
}

.pure-menu-link span,
.pure-menu-link span:before,
.pure-menu-link span:after {
	background-color: #fff;
	width: 100%;
	height: .2em;
	-webkit-transition: all 0.8s;
	   -moz-transition: all 0.8s;
		-ms-transition: all 0.8s;
		 -o-transition: all 0.8s;
			transition: all 0.8s;
}

.pure-menu-link span:before,
.pure-menu-link span:after {
	position: absolute;
	margin-top: -.6em;
	content: " ";
}

.pure-menu-link span:after {
	margin-top: .6em;
}

.pure-menu-link.active span {
	background: transparent;
}

.pure-menu-link.active span:before {
	-webkit-transform: rotate(45deg) translate(.5em, .4em);
	   -moz-transform: rotate(45deg) translate(.5em, .4em);
		-ms-transform: rotate(45deg) translate(.5em, .4em);
		 -o-transform: rotate(45deg) translate(.5em, .4em);
			transform: rotate(45deg) translate(.5em, .4em);
}

.pure-menu-link.active span:after {
	-webkit-transform: rotate(-45deg) translate(.45em, -.35em);
	   -moz-transform: rotate(-45deg) translate(.45em, -.35em);
		-ms-transform: rotate(-45deg) translate(.45em, -.35em);
		 -o-transform: rotate(-45deg) translate(.45em, -.35em);
			transform: rotate(-45deg) translate(.45em, -.35em);
}



    /* Navigation Push Styles */
    #layout {
        position: relative;
        padding-left: 0;
    }
        #layout.active {
            position: relative;
            left: 150px;
        }
            #layout.active #menu {
                left: 150px;
                width: 150px;
            }

    #menu {
        left: 0;
		padding: 0px;
    }
    #menu a {
        display: block;
		padding: 0px;
		margin: 0px;
		line-height: 63px;
		border-bottom: solid 1px #333;
		font-size: 20px;
    }

    .pure-menu-link {
        position: fixed;
        left: 0;
        display: block;
    }

    #layout.active .pure-menu-link {
        left: 150px;
    }
}
