/* CSS Document */

/* ============================= */
/* ======= Category Tree ======= */
/* ============================= */


.collapsed ul {
    display: none;
}

#category_tree{
    position:relative;
    z-index:800;
    width:100%;
	padding:8px 0;
}

#category_tree li {
    list-style: none;
    margin:0;
    padding:0;
    margin: 2px 0;
    background: #111215;
    
    background: #111111; /* Old browsers */
background: -moz-linear-gradient(top, #17181c 0%, #111215 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#111215)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #17181c 0%,#111215 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #17181c 0%,#111215 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #17181c 0%,#111215 100%); /* IE10+ */
background: linear-gradient(to bottom, #17181c 0%,#111215 100%); /* W3C */
border-top:1px solid rgba(202,202,202,0.2);
border-right:1px solid rgba(202,202,202,0.05);
border-bottom:1px solid rgba(65,62,62,0.2);
border-left:1px solid rgba(65,62,62,0.2);
}


#category_tree li {
    line-height: 34px;
}

#category_tree a {
    display: block !important;
    font-family: 'Titillium Web',sans-serif;
}
#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 {
}

#category_tree li.depth_1 > a {
    font-size:15px;
	color:#fff;
    padding: 0 0 0 15px;
    margin:0 5px;
    position: relative;
    text-decoration:none;
    font-family: 'Titillium Web',sans-serif;
    color: #fb03b8;
    font-weight: 200;
}

#category_tree li.depth_1:hover > a {
 
}

/* orange "arrow" */
#category_tree li.depth_1.nonleaf_category>a:hover:after {
    /* using an image
    content: url(/themes/clients/channelfireball/newhotness/assets/img/ui/cat_tree_arrow.png);
    display: block;
    width:20px;
    height:37px;
    margin:-2px -20px 0 0;
    position:absolute;
    right:0;
    top:0;
    z-index:110;
    */

    /* using css3
    content: ' ';
    height: 23px;
    margin:-1px -23px 0 0;
    position: absolute;
    right: 0;
    width: 23px;
    top: 0;
    z-index:110;

    -webkit-transform: rotate(45deg);
    -webkit-transform-origin: 0 0;
    -moz-transform: rotate(45deg);
    -moz-transform-origin: 0 0;
    -o-transform: rotate(45deg);
    -o-transform-origin: 0 0;
    -ms-transform: rotate(45deg);
    -ms-transform-origin: 0 0;
    transform: rotate(45deg);
    transform-origin: 0 0;

    background: #ef962b;
    background: -moz-linear-gradient(left top, #ef962b 0%, #b1480e 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #ef962b), color-stop(100%, #b1480e));
    background: -webkit-linear-gradient(left top, #ef962b 0%, #b1480e 100%);
    background: -o-linear-gradient(left top, #ef962b 0%, #b1480e 100%);
    background: -ms-linear-gradient(left top, #ef962b 0%, #b1480e 100%);
    background: linear-gradient(top, #ef962b 0%, #b1480e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ef962b', endColorstr = '#b1480e', GradientType = 0);

    -webkit-box-shadow: 0px 3px 3px 0px #222222;
    -moz-box-shadow: 0px 3px 3px 0px #222222;
    box-shadow: 2px -1px 0px 0px #222;
    */
}

#category_tree li.depth_1>.sub_category_tree_wrapper {
    display: none;
    position: absolute;
    margin: -35px 0 0 275px;
    width: 675px;
    z-index: 20;
}

#category_tree li.depth_1>.sub_category_tree_wrapper>.sub_category_tree {
    background:#111;
    border: none;
    float: left;
    margin: 0;
    padding: 0;
}

#category_tree li.depth_1:hover>.sub_category_tree_wrapper {
    display: block;
}

/* ======================================== */
/* == Second Level links (flyout tabs) ==== */
/* ======================================== */

#category_tree li.depth_2 {
    background: #3b3b3b;
    width: 220px;
    float: left;
    display: block;
    position:relative;
}

#category_tree li.depth_2 a {
    background:#111;
    border: 0;
    border-bottom: 1px solid #2A2A2A;
    font-family: 'Titillium Web',sans-serif;
	font-weight:normal;
    line-height: 33px;
	overflow: hidden;
    padding: 0 10px;
	height:33px;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-transform:capitalize;
    color:#0ece67;
}

#category_tree li.depth_2 a:hover {
	display: block;
	color: #fefefe;
	background: #0ece67;
	font-weight:normal;
}

#category_tree li.depth_2.expanded a {
	color: #fefefe;
}

#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: 690px;
    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: 230px;
}

#category_tree li.depth_3 a {
    background: none;
    border: 0;
    color: #ddd;
    font: 13px/33px 'HelveticaMedium', 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: 6px solid transparent;
border-right: 0px solid transparent;
border-bottom: 6px solid transparent;
border-left: 7px solid #767474;
margin: 3px 6px 0 0;
}


#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 #757373;
    margin: 5px 0px 0 0;
    z-index: 55;
	height: 0;
	width: 0;
}

#category_tree li.depth_2>a:hover .toggle {
	border-left: 6px solid #767474;
    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 #767474;
	margin: 10px 2px 0 0;
    z-index: 105;
}