/* CSS Document */

/* ============================= */
/* ======= Category Tree ======= */
/* ============================= */

.collapsed ul {
	display: none;
}

#category_tree {
	position: relative;
	z-index: 800;
	width: 220px;
	background: #383838;
	margin: 0 0 20px 0;
	display: block;
}

#category_tree li {
	list-style: none;
	margin: 0;
	padding: 0;
}

#category_tree li {
	line-height: 1.3em;
}

#category_tree a {
	display: block !important;
}
#category_tree a:hover {
	text-decoration: none;
}

/* =========================== */
/* ===== Top Level links ===== */
/* =========================== */

#category_tree li.depth_1 {
	padding: 0;
}
#category_tree li.depth_1:last-of-type {
	background: none;
}

#category_tree li.depth_1 > a {
	font-size: 13px;
	color: #fff;
	position: relative;
	border: none;
	text-decoration: none;
	height: 41px;
	line-height: 41px;
	text-transform: uppercase;
	padding: 0 0 0 15px;
	background: rgb(59,59,59); /* Old browsers */
	background: -moz-linear-gradient(top,  rgb(59,59,59) 0%, rgb(0,0,0) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(59,59,59)), color-stop(100%,rgb(0,0,0))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgb(59,59,59) 0%,rgb(0,0,0) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgb(59,59,59) 0%,rgb(0,0,0) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgb(59,59,59) 0%,rgb(0,0,0) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgb(59,59,59) 0%,rgb(0,0,0) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b3b3b', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
	transition: none;
	-webkit-transition: none;
	-moz-transition: none;
}

#category_tree li.depth_1:hover > a {
	color: #000;
}
#category_tree li.depth_1 > a:hover {
	background: rgb(216,255,0); /* Old browsers */
	background: -moz-linear-gradient(top,  rgb(216,255,0) 0%, rgb(145,205,13) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(216,255,0)), color-stop(100%,rgb(145,205,13))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgb(216,255,0) 0%,rgb(145,205,13) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgb(216,255,0) 0%,rgb(145,205,13) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgb(216,255,0) 0%,rgb(145,205,13) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgb(216,255,0) 0%,rgb(145,205,13) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d8ff00', endColorstr='#91cd0d',GradientType=0 ); /* IE6-9 */
}

#category_tree li.depth_1 > .sub_category_tree_wrapper {
	display: none;
	position: absolute;
	margin: -28px 0 0 220px;
	width: 606px;
	z-index: 20;
}

#category_tree li.depth_1 > .sub_category_tree_wrapper > .sub_category_tree {
	background: #111;
	border: 2px solid #222;
	float: left;
	margin: 0;
	padding: 0;
	top: -13px;
	position: relative;
}

#category_tree li.depth_1:hover > .sub_category_tree_wrapper {
	display: block;
}

/* ======================================== */
/* == Second Level links (flyout tabs) ==== */
/* ======================================== */

#category_tree li.depth_2 {
	background: #0f0f0f;
	width: 200px;
	float: left;
	display: block;
	position: relative;
}

#category_tree li.depth_2 a {
	border: 0;
	font: 12px/33px 'Open Sans', Sans-Serif;
	font-weight: normal;
	line-height: 33px;
	padding: 0 0 0 10px;
	height: 33px;
	text-transform: capitalize;
	color: #eee;
	transition: none;
	-webkit-transition: none;
	-moz-transition: none;
}

#category_tree li.depth_2 a:hover {
	color: #000;
	font-weight: normal;
	background: rgb(216,255,0); /* Old browsers */
	background: -moz-linear-gradient(top,  rgb(216,255,0) 0%, rgb(145,205,13) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(216,255,0)), color-stop(100%,rgb(145,205,13))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgb(216,255,0) 0%,rgb(145,205,13) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgb(216,255,0) 0%,rgb(145,205,13) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgb(216,255,0) 0%,rgb(145,205,13) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgb(216,255,0) 0%,rgb(145,205,13) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d8ff00', endColorstr='#91cd0d',GradientType=0 ); /* IE6-9 */
}

#category_tree li.depth_2.expanded a {
	color: #a8ff00;
}

#category_tree li.depth_2.expanded a:hover {
	-webkit-box-shadow: inset 0px 0px 0px 0px;
	-moz-box-shadow: inset 0px 0px 0px 0px;
	box-shadow: inset 0px 0px 0px 0px;
}

#category_tree li.depth_2 a:hover:after {
	display: none;
}

#category_tree li.depth_2 > .sub_category_tree {
	display: none;
}

/* ========================================= */
/* === Third Level links (tabs expanded )=== */
/* ========================================= */

#category_tree .placeholder {
	display: none;
	width: 606px;
	overflow: hidden;
	float: left;
	background: #444;
	-webkit-box-shadow: inset 0px 3px 4px 0px #111;
	-moz-box-shadow: inset 0px 3px 4px 0px #111;
	box-shadow: inset 0px 3px 4px 0px #111;
	border-bottom: 1px solid #333;
	padding-top: 5px;
	padding-bottom: 5px;
}

#category_tree .placeholder span {
	display: block;
	width: 690px;
}

#category_tree li.depth_3 {
	display: block;
	float: left;
	width: 200px;
}

#category_tree li.depth_3 a {
	background: none;
	border: 0;
	color: #ddd;
	font: 13px/33px 'Open Sans', Sans-Serif;
	padding-left: 15px;
	text-transform: capitalize;
	height: 28px;
	line-height: 28px;
	overflow: hidden;
	/*
	 text-shadow: 0 1px 1px #000;
	 */
}

#category_tree li.depth_3 a:hover {
	background: #5d5d5d;
}

#category_tree li.depth_3 a:hover:after {
	display: none;
}

/* ========================= */
/* ===== Toggle Arrows ===== */
/* ========================= */

#category_tree .toggle {
	float: right;
	position: absolute;
	right: 0;
	top: 5px;
	z-index: 45;
}

#category_tree li.depth_1 > a .toggle {
	border-top: 4px solid transparent;
	border-right: 0px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 5px solid #aaa;
	margin: 12px 11px 0 0;
}
#category_tree li.depth_1:hover > a .toggle {
	border-left: 5px solid #000;
}
#category_tree li.depth_1:hover > a {
	color: #000;
	background: rgb(216,255,0); /* Old browsers */
	background: -moz-linear-gradient(top,  rgb(216,255,0) 0%, rgb(145,205,13) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(216,255,0)), color-stop(100%,rgb(145,205,13))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgb(216,255,0) 0%,rgb(145,205,13) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgb(216,255,0) 0%,rgb(145,205,13) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgb(216,255,0) 0%,rgb(145,205,13) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgb(216,255,0) 0%,rgb(145,205,13) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d8ff00', endColorstr='#91cd0d',GradientType=0 ); /* IE6-9 */
}

#category_tree li.depth_2 > a .toggle {
	border-top: 7px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 6px solid #555;
	margin: 5px 0px 0 0;
	z-index: 55;
	height: 0;
	width: 0;
}

#category_tree li.depth_2 > a:hover .toggle {
	border-left: 5px solid #a8ff00;
	z-index: 105;
}

#category_tree li.depth_2.expanded > a .toggle {
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 5px solid transparent;
	border-top: 6px solid #a8ff00;
	margin: 10px 2px 0 0;
	z-index: 105;
}