@charset "UTF-8";
/* CSS Document */

.toggle,.close{
  display: none;
}

@media only screen and (max-width: 850px) {
  .menu{
    display: none;
    width: 100%;
  }
	
	.menu .inmenu{
    display: block;
    padding: 12px 10px;
    background: #457B9D;
    color: #fff;
    text-decoration: none;
}

  .menu a:hover{
    background: #ccc;
  }

  .toggle{
    display: block;
    position: relative;
    width: 100%;
  }	
  
  .close{
  display: block;
  position: relative;
  width: 100%;
  background: #457B9D;
  }
  
  .toggle a{
	display: block;
    padding: 3px 5px;
	margin: 0px 0;
	padding: 3px 0 1px;
    color: #888;
    text-align: center;
    text-decoration: none;
	border-radius: 4px;
	color: #666666;
	background-color: #eee;
	font-size: 90%;
	font-weight: 500;
	text-decoration: none;
	box-shadow:2px 2px 3px 1px #C6C6C6;
-moz-box-shadow:2px 2px 3px 1px #C6C6C6;
-webkit-box-shadow:2px 2px 3px 1px #C6C6C6;
  }
  
  .toggle:before{
    position: absolute;
    content: "\f003";
    top: 50%;
    right: 10px;
    width: 20px;
    height: 20px;
    margin-top: 5px;
    color:#fff;
  }
}



@media only screen and (max-width: 479px) {
	
	.toggle a {
		margin: 3% 0;
	}
	
	
}

