/*!
 * jquery.offcanvas.css v2.1a7- 2015-01-21
 * Copyright 2014 Christoph Heich | http://cheich.github.io/Offcanvas/
 * Released under the MIT license | http://opensource.org/licenses/MIT
 */

.offcanvas-viewport {
	overflow: hidden;
	position: relative;
}
.offcanvas-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.offcanvas-top, .offcanvas-right, 
.offcanvas-bottom, .offcanvas-left {
	position: absolute;
	top: auto;
	right: auto;
	bottom: auto;
	left: auto;
}
.offcanvas-main {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: relative;
	z-index: 9901;
}
.offcanvas-main-overlay {
	position: absolute;
	cursor: pointer;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9903;
	display: block;
	opacity: 0;
	visibility: hidden;
	transition-delay: 0;
}
.offcanvas-main.offcanvas-main-inactive .offcanvas-main-overlay {
	visibility: visible;
}

/**
 * Mode: overlay
 */
.offcanvas-overlay {
	z-index: 9902;
}

/**
 * Mode: shrink
 */
.offcanvas-shrink.offcanvas-top,
.offcanvas-shrink.offcanvas-bottom {
	height: 0;
}
.offcanvas-shrink.offcanvas-left,
.offcanvas-shrink.offcanvas-right {
	height: 0;
}

/**
 * Mode: underlay
 */
.offcanvas-underlay {
	z-index: 9900;
}
.offcanvas-underlay.offcanvas-top,
.offcanvas-underlay.offcanvas-left {
	top: 0;
	left: 0;
}
.offcanvas-underlay.offcanvas-right {
	top: 0;
	right: 0;
}
.offcanvas-underlay.offcanvas-bottom {
	bottom: 0;
	left: 0;
}

/**
 * Webkit fixes
 */
.offcanvas-wrapper,
.offcanvas-main,
.offcanvas-main-overlay
.offcanvas-top,
.offcanvas-right,
.offcanvas-bottom,
.offcanvas-left {
	-webkit-transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
}

/**
 * Inactive off-canvas elements -> hide for screen-readers
 */
.offcanvas-inactive.offcanvas-top,
.offcanvas-inactive.offcanvas-right,
.offcanvas-inactive.offcanvas-bottom,
.offcanvas-inactive.offcanvas-left {
	display: none !important; /* Overwrite user styles */
	visibility: hidden !important; /* Overwrite user styles */
}
