/************************************************************
//
//	SLIDE NAV
//
************************************************************/

/* SLIDE NAV VEIL */

#slideNavVeil {

	position: fixed;
	
	left: 0;
	top: 0;
	
	width: 100%;
	height: 120%;
	
	cursor: pointer;
	
	visibility: hidden;
	opacity: 0;
	
	background: rgba(0, 0, 0, .5);
	
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
	
}

	/* SLIDE NAV VEIL OPEN */

	body.navOpen #slideNavVeil {
	
		visibility: visible;
		opacity: 1;
		
	}

/* MAIN CONTAINER */

#slideNav {
	
	position: fixed;
	
	padding: 50px 10px 20%;
	
	right: -180px;
	top: 0;
	
	width: 180px;
	height: 120%;
	
	overflow-y: auto;
	
	color: white;
	background: black;
	
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
	
}

	/* MAIN CONTAINER OPEN */

	body.navOpen #slideNav {
		
		right: 0;
		
	}

/* TOP ITEM MENU */
	
#slideNav > ul {
	
	font-size: 20px;
	font-size: 2.0rem;
	
	list-style: none;
	
}

/* TOP ITEM */

.slideNavTopItem {
	
	cursor: pointer;
	
	line-height: 40px;
	line-height: 4.0rem;
	
}

/* TOP ITEM ICONS */

.slideNavTopItem:before {
	
	display: inline-block;
	
	font-family: "qis_icons";
	
	speak: none;
	
	width: 40px;
	width: 4.0rem;
	text-align: center;
	
}

.slideNavTopItem.ourshop:before {	content: '\e800';	}
.slideNavTopItem.services:before {	content: '\e804';	}
.slideNavTopItem.listings:before {	content: '\e808';	}

/* SUB ITEM MENU */

.slideNavTopItem ul {
	
	font-size: 16px;
	font-size: 1.6rem;
	
	overflow: hidden;
	
	max-height: 100px;
	max-height: 10.0rem;
	
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
	
}

	/* SUB ITEM MENU HIDDEN */

	.slideNavTopItem.hidden ul {
		
		max-height: 0;
		
		opacity: 0;
		
	}

/* SUB ITEM */

.slideNavSubItem {
	
	padding: 0 8px;
	
	line-height: 32px;
	line-height: 3.2rem;
	
}

/* SUB ITEM ICONS */

.slideNavSubItem:before {
	
	display: inline-block;
	
	font-family: "qis_icons";
	
	speak: none;
	
	width: 32px;
	width: 3.2rem;
	text-align: center;
	
}

.slideNavSubItem.information:before {	content: '\e801';	}
.slideNavSubItem.updates:before {	content: '\e802';	}
.slideNavSubItem.location:before {	content: '\e803';	}

.slideNavSubItem.maintenance:before {	content: '\e805';	}
.slideNavSubItem.repairs:before {	content: '\e806';	}
.slideNavSubItem.towinginfo:before {	content: '\e807';	}

.slideNavSubItem.cars:before {		content: '\e809';	}
.slideNavSubItem.parts:before {		content: '\e80A';	}
