/* ----------------------------------------------------------------------------------
	RESPONSIVE LAYOUTS
---------------------------------------------------------------------------------- */

/* Desktop / Laptop */
@media only screen and (max-width: 960px) {
}
	
/* iPad & Tablet */
@media only screen and (max-width: 768px) {

	#site-header {
		margin-bottom: 0!important;
	}
	#header-sticky-wrapper {
		height: auto !important;
	}
	#pre-header,
	#header {
		position: static !important;
	}

	/* Header */
	#header {
		padding: 10px 10px 20px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		-o-box-sizing: border-box;
		box-sizing: border-box;
	}
	#logo {
		float: none;
		position: static;
		text-align: center;	
		margin: 0 10px 10px;
	}
	#logo img {
		max-height: 40px;
	}
	#header-links,
	#pre-header-search {
		display: none;
	}
	#header-responsive {
		display: block;
		width: 100%;
	}
	#header-responsive ul {
		margin: 0;
	}
	#header-responsive li {
		position: relative;
		list-style: none;
	}
	#header-responsive .sub-menu li,
	#header-responsive .sub-menu li:hover {
		padding: 0;
	}
	#header-responsive li a {
		color: inherit;
		display: block;
		padding: 0 50px 0 25px;
		height: 50px;
		line-height: 50px;
		border-bottom: 1px solid #F0F0F0;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		-o-box-sizing: border-box;
		box-sizing: border-box;

	}
	#header-responsive li a:hover,
	#header-responsive li.current_page_item > a {
		color: #F33F3F;
	}
	#header-responsive-inner {
		background: #fff;
		border-left: 1px solid #F0F0F0;
		border-right: 1px solid #F0F0F0;
	}	
	.nav-collapse {
		visibility: hidden;
		overflow: hidden;
		height: 0;
	}
	.nav-collapse.in {
		visibility: visible;
	}
	.btn-navbar {
		display: block;
		padding: 10px 10px;
		background-color: #333;
		border: 1px solid #222;
	}
	.btn-navbar .icon-bar {
		display: block;
		width: 20px;
		height: 3px;
		margin: 0 auto;
		background-color: #FFF;
	}
	.btn-navbar .icon-bar + .icon-bar {
		margin-top: 3px;
	}
	.nav-collapse.collapse {
		-webkit-transition: height 0.35s ease;
		-moz-transition: height 0.35s ease;
		-ms-transition: height 0.35s ease;
		-o-transition: height 0.35s ease;
		transition: height 0.35s ease;