/*
 * Naver Plugin [Formstone Library]
 * @author Ben Plum
 * @version 0.0.7
 *
 * Copyright c 2013 Ben Plum <mr@benplum.com>
 * Released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
 */
 
 	.naver .naver-handle { color: #fff; cursor: pointer; display: none; font-size: 14px; height: 35px; line-height: 28px; text-transform: uppercase; 
	 	-webkit-user-select: none;
		   -moz-user-select: none;
		    -ms-user-select: none;
		     -o-user-select: none;
			    user-select: none;
		text-align:right;
		padding-right:10px;
		opacity: 0.6;
 	}
 	.naver .naver-handle:before { background: url(images/fs-naver-icon.png) no-repeat center; content: ''; display: block; float: right; height: 20px; margin: 3px 2% 0 8px; width: 30px; }
 	.naver .naver-wrapper { height: auto; }
 	.naver .naver-container:after { clear: both; content: "."; display: block; height: 0; line-height: 0; visibility: hidden; }
 	.naver-handle {
			padding-top:6px;
 	}

	#top-menu li a{
	display:block;
	width:100%;
	padding:5px 0 5px 15px;
	background-color:#FCF6EA;
	border-bottom:1px solid #C8DAA1;
	text-decoration:none;
	color:#624837;
	opacity: 0.88;
 	}

	#top-menu li a:hover{
	background-color:#C8DAA1;
	text-decoration:none;
 	}

	#menu{
	width:100%;
	position: absolute;
	margin-top:-27%;
 	}

 	@media screen and (min-width: 768px) {
 		.naver .naver-wrapper { height: auto !important; }
 	}
 	
	@media screen and (max-width: 767px) {
		/* Mobile Only */
		.naver.active .naver-handle { display: block; }
		.naver.active .naver-wrapper { height: 0px; overflow: hidden; }
		
		/* Animated - Experimental! Performs poorly on mobile */
		.naver.animated .naver-wrapper {
			-webkit-transition: height 0.2s ease-out;
			   -moz-transition: height 0.2s ease-out;
			    -ms-transition: height 0.2s ease-out;
			     -o-transition: height 0.2s ease-out;
			        transition: height 0.2s ease-out;
		}
		.naver.animated .naver-container { opacity: 0; 
			-webkit-transition: opacity 0.2s ease-out;
			   -moz-transition: opacity 0.2s ease-out;
			    -ms-transition: opacity 0.2s ease-out;
			     -o-transition: opacity 0.2s ease-out;
			        transition: opacity 0.2s ease-out;
		}
		.naver.animated.open .naver-container { opacity: 1; }
	}