@charset "utf-8";
/* CSS Document */
/* Clearfix */
.clear:before, .clear:after {
    content: " ";
    display: table;
}

.clear:after {
    clear: both;
}

/*.clear {
    *zoom: 1;
}*/

a#pull {
    display: none;
}
nav {
	display: none;
	height: 100px;
    width: 100%;
    background: #666;
    position: relative;
    border-bottom: solid 1px #DDD;
}

nav ul {
    padding: 0;
    margin: 0 auto;
    width: 600px;
    height: 40px;
}

nav li {
    display: inline;
    float: left;
}

nav a {
	font-size:4em;
    color: #FFF;
    display: inline-block;
    width: 100px;
    text-align: center;
    line-height: 2em;
}

nav li a {
    border-right: 1px solid #576979;
}

nav li:last-child a {
    border-right: 0;
}

nav a:hover, nav a:active {
    background-color: #333;
}
@media only screen and (max-width : 620px) {
    nav {
		display:inline;
        border-bottom: 0;
        height: auto;
		width:1000px;
    }

    nav ul {
        display: none;
        height: auto;
        width: 100%;
    }

    nav li {
        width: 100%;
        float: left;
        position: relative;
    }

    nav a {
        text-align: left;
        width:1000px;
        text-indent: 25px;
    }

    nav a#pull {
        display: block;
        background-color: #666;
        width: 1000px;
        position: relative;
    }

    nav a#pull:after {
        content:"";
        background: url('nav-icon.png') no-repeat;
        width: 100px;
        height: 100px;
        display: inline-block;
        position: absolute;
        right: 15px;
        top: 10px;
    }
}
