/*
 * Naver Plugin [Formstone Library]
 * @author Ben Plum
 * @version 0.0.7
 *
 * Copyright © 2013 Ben Plum <mr@benplum.com>
 * Released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
 */
 
 	.naver .naver-handle {
		display: none;
 	}
 	.naver .naver-handle:before {
		content: '≡';
	}
 	.naver.open .naver-handle:before {
		content: '×';
	}
 	.naver .naver-wrapper { height: auto; }
 	.naver .naver-container:after { clear: both; content: "."; display: block; height: 0; line-height: 0; visibility: hidden; }
 	
 	@media screen and (min-width: 641px) {
 		.naver .naver-wrapper { height: auto !important; }
 	}
 	
	@media screen and (max-width: 640px) {		
		/* 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; }
		
		/* gnav */
		#gnav .naver-handle {
			display: inherit;
			position: absolute;
			cursor: pointer;
			top: 25px;
			right: 12px;
			margin: 0;
			background-color: #3366cc;
			color: #fff;
			font-size: 93%;
			font-weight: bold;
			border-radius: 5px;
			padding: 5px;
		}
		#gnav.open .naver-handle {
			background-color: #4E83EC;
		}
		
		/* snav */
		#snav .naver-handle {
			display: inline-block;
			position: absolute;
			top: 5px;
			right: 0;
			background-color: #e2e7f1;
			font-size: 120%;
			color: #3366cc;
			font-weight: bold;
			cursor: pointer;
			border: 2px solid #3366cc;
			border-radius: 3px;
			z-index: 999;
		}
		#snav .naver-handle:before {
			padding: 5px;
		}
		#snav.open .naver-handle {
			background-color: #fff;
			top: auto;
			bottom: -36px;
		}
	}
	