/* -----------------------------------
 * Slidebars
 * Version 0.8.2
 * http://plugins.adchsm.me/slidebars/
 *
 * Written by Adam Smith
 * http://www.adchsm.me/
 *
 * Released under MIT License
 * http://plugins.adchsm.me/slidebars/license.txt
 *
 * -------------------
 * Slidebars CSS Index
 *
 * 001 - Box Model, Html & Body
 * 002 - Site
 * 003 - Slidebars
 * 004 - Animation
 *
 * ----------------------------
 * 001 - Box Model, Html & Body
 */

html, body, #wrap, .sb-slidebar {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

html, body {
	width: 100%;
	overflow-x: hidden; /* Stops horizontal scrolling. */
}

html {
	/*min-height: 100%;*/
}

body {
	height: 100%;
}

/* ---------------
 * 003 - Slidebars
 */

.sb-slidebar {
	height: 100%;
	overflow-y: none; /* Enable vertical scrolling on Slidebars when needed. */
	position: absolute;
	top: 0;
	z-index: 0; /* Slidebars sit behind wrap. */
	visibility: hidden; /* Initially hide the Slidebars. */
	background-color: #FFF; /* Default Slidebars background colour, overwrite this with your own css. */
	display:none;
}

.sb-static { /* Makes Slidebars scroll naturally with the site, and unfixes them for Android Browser 2.X. */
	position: absolute;
	height: auto;
	/* min-height set by slidebars.js */
}

.sb-left {
	left: 0; /* Sets Slidebar to the left. */
}

html.sb-active-left .sb-left {
	visibility: visible; /* Makes Slidebars visibile when open. */
}

/* Slidebar Widths */

.sb-slidebar {
	width: 264px; /* Browsers that don't support media queries. */
}

.sb-width-custom {
	/* To set a custom width, add this class to your Slidebar and pass a px or % value as a data attribute 'data-sb-width'. */
}

/* ---------------
 * 004 - Animation
 */

html.sb-anim-type-translate .sb-slide, html.sb-anim-type-side .sb-slide {
	-webkit-transition: -webkit-transform 400ms ease;
	   -moz-transition: -moz-transform 400ms ease;
	     -o-transition: -o-transform 400ms ease;
	        transition: transform 400ms ease;
	-webkit-transition-property: -webkit-transform, left; /* Add 'left' for Android < 4.4 */
	-webkit-backface-visibility: hidden; /* Prevents flickering. */
}