﻿/* General styles for all menus */
.menu {
	background: #fff;
	position: fixed;
	border-left: 1px solid #d1d2d4;
	height:100%;
	padding-top:0px;
}

	.menu h3 {
		color: #afdefa;
		padding: 20px;
		margin: 0;
		font-weight: 300;
		background: #0d77b6;
		color: #fff;
	}

	.menu a {
		display: block;
		color: #444 !important;
		text-decoration: none;
	}

		.menu a:hover {
			text-decoration: none;
		}

		.menu a:active {
			color: #47a3da;
		}

		.menu .tagline {
			text-align:right;
			font-size:12px;
			right:15px !important;
		}

.menu-content {
	padding-top: 50px;
}

.menu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

		/*.menu ul li:nth-child(odd) {
			background: #f1f1f1;
		}*/

/* Orientation-dependent styles for the content of the menu */

/*.search-width {
	width:100% !important;
}*/

/*@media only screen and (max-width : 480px) {
	.search-width {
		width:100% !important;
	}
}

@media only screen and (max-width : 768px) {
	.search-width {
		width:350px !important;
	}
}*/

.menu-vertical {
	width: 100%;
	height: 100%;
	top: 0;
	z-index: 1000;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}

	.menu-vertical a {
		padding: 0px;
		vertical-align: middle;
	}

/* Vertical menu that slides from the left or right */

.menu-right {
	right: -100%;
}

/*.search-right {
	right: -900px;
}*/

.menu-right.menu-open {
	right: 0px;
}

/*.search-right.menu-open {
	right: 0px;
}*/

/* Horizontal menu that slides from the top or bottom */

.menu-top {
	top: -150px;
}

.menu-bottom {
	bottom: -150px;
}

.menu-top.menu-open {
	top: 0px;
}

.menu-bottom.menu-open {
	bottom: 0px;
}

*
/* Transitions */
.menu,
.menu-push {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/* Example media queries */

@media screen and (max-height: 26.375em) {

	.menu-vertical {
		font-size: 90%;
		width: 100%;
	}

	.menu-right {
		right: -100%;
	}

	/*.search-right {
		right: -900px;
	}*/
}