/* Clearfix */
.clear:before, .clear:after {
    content: " ";
    display: table;
}

.clear:after {
    clear: both;
}

.clear {
    *zoom: 1;
}

a#pull {
    display: none;
}
nav {
    width: 100%;
    position: relative;

}

nav ul {
    padding: 0;
    margin: 0 auto;
    width: 100%;

}

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

nav a {
    color: #FFF;
    display: inline-block;
    width: 100%;
    text-align: center;
    line-height: 40px;
}

nav li a {
}

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

nav a:hover, nav a:active {

}
@media only screen and (max-width : 700px) {
    nav {
        border-bottom: 0;
        height: auto;
    }

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

    nav li {
        float: left;
        position: relative;
    }

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

    nav a#pull {
        display: block;
		color:#000;
        width: 100%;
        position: relative;
    }

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