﻿.inner {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0px 0px;
	position: relative;
	color: #5d5d5d;
}

nav > div
{
    display: none;    
}

nav > ul 
{
    font: bold 13px Sans-Serif;
    list-style-type: none;
    text-decoration: none;
    text-transform: uppercase;
    color: #5d5d5d;
  	float: right;
}

nav > ul > li {
    text-align: center;
	line-height: 30px;
	margin-left: 15px;
	width: 90px;
}
nav > ul > li.last {
    text-align: right;
	line-height: 30px;
	margin-left: 0px;
	margin-right: 0px;
	width: 90px;
}

nav > ul li ul li {
	width: 100%;
  	text-align: left;
}

nav ul li:hover {
	  cursor: pointer;
	  position: relative;
}
nav ul li:hover > ul {
  	display: block;
}
nav ul li > a {
	  color: #5d5d5d;
}
nav ul li:hover > a {
	  color: #3e97cd;
}
nav > ul > li > a {
	cursor: pointer;
	display: block;
  	outline: none;
  	width: 100%;
	text-decoration: none;
}

nav > ul > li {
  	float: left;
}
nav a {
	  color: white;
}
nav > ul li ul {
  	display: none;
  	position: absolute;
  	left: 0;
	top: 100%;
  	width: 100%;
	z-index: 2000;
}
nav > ul li ul li > a {
	  text-decoration: none;
}

[type="checkbox"], label {
	  display: none;
}

@media screen and (max-width: 1300px) 
{   
    nav div
    {
        display: block;
    }

    nav ul {
		display: none;
    }
    label {
  	    display: block;
  	    background: #FFF;
  	    border: 1px solid #3e97cd;
		width: 30px;
  	    height: 30px;
  	    cursor: pointer;
		position: absolute;
		right: 0px;
  	    top: 0px;
    }
  
    label:after{
      content:'';
      display: block;
      width: 24px;
      height: 5px;
      background: #3e97cd;
      margin: 5px 3px;
      box-shadow: 0px 7px 0px #3e97cd, 0px 14px 0px #3e97cd;
    }

    [type="checkbox"]:checked ~ ul {
  	    display: block;
  	    z-index: 9999;
  	    position: absolute;
  	    top: 19px;
		right: 0px;
		left: 568px;
    }

    nav a {
		    color: #FFF;
    }

    nav ul li {
		display: block;
  	    float: none;
  	    width: 150px;
  	    text-align: left;
  	    background: #faf9f4;
  	    color: #5d5d5d;
		text-indent: 10px;
		text-transform: capitalize;
		font-weight: 100;
    }
    
    nav ul li.last {
		display: block;
  	    float: none;
  	    width: 150px;
  	    text-align: left;
  	    background: #faf9f4;
  	    color: #5d5d5d;
		text-indent: 10px;
		text-transform: capitalize;
		font-weight: 100;
    }
    
    nav ul li > a {
	  color: #5d5d5d;
    }
    
    nav ul li:hover > a {
	  color: #3e97cd;
    }

    nav > ul > li {
  	    margin-left: 0px;
    }

    nav > ul li ul li {
  	    display: block;
		float: none;
    }
  
    nav > ul li ul {
		display: block;
  	    position: relative;
  	    width: 100%;
		z-index: 9999;
		float: none;
    }
}