/* Mobile Portrait View */




@media screen and (max-width: 991px) {
    * {
        box-sizing: border-box;
    }
	

    .toggle {
        display: block;
    }
    .toggle a {
        width: 100%;
        color: #ffffff;
        background: url(../images/mobile_nav_right.png) no-repeat right center rgba(255,255,255,0.1);
        padding: 10px 10px;
        margin-top: 20px;
        font-size: 16px;
		text-decoration: none;
		text-align:left;
    }
    .toggle a:hover {
        color: #ffffff !important;
    }
    .toggle a.active {
        color: #ffffff;
    }
    .sitenav {
        display: none;
        float:none;
    }
    #navigation{
        width:auto;
        background-color: transparent !important;
        position:relative !important;
    }
    .sitenav ul {
        background: rgba(255,255,255,0.07);
        
        width: 100%;
        float: none;
        margin: 0;
    }
    .sitenav ul li {
        border-top: 1px rgba(255,255,255,0.1) solid;
        display: block;
        float: none;
        text-align: left;
		margin-left:0;
    }


    .sitenav ul li a {
        padding: 10px 15px;
        display: block;
       
        text-align:left;
    }




}