@charset "utf-8";
/* CSS Document */

/* expandable menu */

/* collapsed items - required to hide sub items */
.collapsed ul {display: none;}

/* remove list style from all category tree items */
#category_tree,
#category_tree li {list-style: none;}

#category_tree li {
	border-top: 1px solid #1A1A1C;
	line-height: 24px;
}
/* first item in list does not have border */
	#category_tree > li:first-child {
		border-top: none;
	}

/* the entire category tree */
#category_tree {
	width:260px;
}

/* all sub category trees */
.sub_category_tree {}

/* subcategory indentation */
.sub_category_tree li {
	padding: 0 0 0 10px;
}

/* global category tree link style */
#category_tree a {}

/* depth heirarchy styles */
#category_tree li.depth_1 {}
#category_tree li.depth_1 a {}
#category_tree li.depth_1 .sub_category_tree {}

#category_tree li.depth_2.expanded a.nonleaf_category {color:#FEF158 !important;}
#category_tree li.depth_2 a {color:#fff !important;}
#category_tree li.depth_2 a:hover {color:#FEF158 !important;}
#category_tree li.depth_2 .sub_category_tree {}

#category_tree li.depth_3 {}
#category_tree li.depth_3 a {color:#fff !important;}
#category_tree li.depth_3 a:hover {color:#FEF158 !important;}
#category_tree li.depth_3 .sub_category_tree {}

/* current item */
#category_tree li.current {
	background-color: #537786;
}

	#category_tree li.current a {
		color: #fff;
	}

/* leaf category item (has no sub categories) */
.leaf_category {
	margin: 0 0 0 13px;
}

/* toggle styles */
/* toggle item global style */
a.toggle {
	color: #fff;
	cursor: pointer;
	display: inline-block;
	height: 10px;
	width: 10px;
}
/* collapsed toggle image */
.collapsed > a.toggle {background: url(/files/assets/img/btn_off.png);}
/* expanded toggle image */
.expanded > a.toggle {background: url(/files/assets/img/btn_on.png);}
/* / */