/*** ESSENTIAL STYLES ***/
.cat_menu, .cat_menu * {
    margin:			0;
    padding:		0;
    list-style:		none;
}
.cat_menu {
    line-height:	1.0;
}
.cat_menu ul {
    border-top:1px solid #E3E3E3;
    position:		absolute;
    top:			-999em;
    width:			155px; /* left offset of submenus need to match (see below) */
}
.cat_menu ul li {
    width:			100%;
}
.cat_menu li:hover {
    visibility:		inherit; /* fixes IE7 'sticky bug' */
		background:#F89224;
		font-weight:bold;
}
.cat_menu li {

    position:		relative;
}
.cat_menu a {
    display:inline-block;
		font-size:12px;
    
}
.cat_menu li:hover ul,
.cat_menu li.sfHover ul {
    left:			180px;
    top:			0px; /* match top ul list item height */
    z-index:		1000;
}
ul.cat_menu li:hover li ul,
ul.cat_menu li.sfHover li ul {
    top:			-999em;
}
ul.cat_menu li li:hover ul,
ul.cat_menu li li.sfHover ul {
    left:			10em; /* match ul width */
    top:			0;
}
ul.cat_menu li li:hover li ul,
ul.cat_menu li li.sfHover li ul {
    top:			-999em;
}
ul.cat_menu li li li:hover ul,
ul.cat_menu li li li.sfHover ul {
    left:			10em; /* match ul width */
    top:			0;
}

/*** DEMO SKIN ***/
.cat_menu {
}
.cat_menu a {
    
    padding-left:3px;
    text-decoration:none;
}

.cat_menu a, .cat_menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
                                   color:#333333;
}
.cat_menu li {
    height:29px;
    line-height:29px;
    border-bottom: 1px solid #E3E3E3;
    border-right: 1px solid #E3E3E3;
    border-left: 1px solid #E3E3E3;
    background:#F3F3F3;
}
.cat_menu li li {
    background:		#F3F3F3;
    width: 160px;
}
.cat_menu li li li {
    background:		#F3F3F3;
}
.cat_menu li:hover, .cat_menu li.sfHover,
.cat_menu a:focus, .cat_menu a:hover, .cat_menu a:active {
    color:#333333;
    text-decoration: underline;
    outline:		0;
}

/*** arrows **/
.cat_menu a.sf-with-ul {
    padding-right: 	2.25em;
    min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.cat_menu .sf-sub-indicator {
    position:		absolute;
    display:		block;
    right:			5px;
    top:			8px; /* IE6 only */
    width:			10px;
    height:			10px;
    text-indent: 	-999em;
    overflow:		hidden;
    background:		url('../images/arrows-666666.png') no-repeat -10px 0px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
.cat_menu a > .sf-sub-indicator {  /* give all except IE6 the correct values */
                                   top:			.8em;
                                   background-position: -10px 0px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
.cat_menu a:focus > .sf-sub-indicator,
.cat_menu a:hover > .sf-sub-indicator,
.cat_menu a:active > .sf-sub-indicator,
.cat_menu li:hover > a > .sf-sub-indicator,
.cat_menu li.sfHover > a > .sf-sub-indicator {
    background-position: -10px 0px; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
.cat_menu ul .sf-sub-indicator { background-position:  -10px 0; }
.cat_menu ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
.cat_menu ul a:focus > .sf-sub-indicator,
.cat_menu ul a:hover > .sf-sub-indicator,
.cat_menu ul a:active > .sf-sub-indicator,
.cat_menu ul li:hover > a > .sf-sub-indicator,
.cat_menu ul li.sfHover > a > .sf-sub-indicator {
    background-position: -10px 0; /* arrow hovers for modern browsers*/
}

/*** shadows for all but IE6 ***/
.sf-shadow ul {
    background:	url('../images/shadow.png') no-repeat bottom right;
    padding: 0 8px 9px 0;
    -moz-border-radius-bottomleft: 17px;
    -moz-border-radius-topright: 17px;
    -webkit-border-top-right-radius: 17px;
    -webkit-border-bottom-left-radius: 17px;
}
.sf-shadow ul.sf-shadow-off {
    background: transparent;
}
