/*
	xBreadcrumbs (Extended Breadcrumbs) jQuery Plugin
	© 2009 ajaxBlender.com
	For any questions please visit www.ajaxblender.com
	or email us at support@ajaxblender.com
*/

.xbreadcrumbs {
    position: relative;
    z-index: 1000;
}
.xbreadcrumbs li ul {
    position: absolute;
    float: left;
}
.xbreadcrumbs, .xbreadcrumbs li, .xbreadcrumbs ul, .xbreadcrumbs ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.xbreadcrumbs { clear: both; }
.xbreadcrumbs, .xbreadcrumbs li {
    float: left;
}
.xbreadcrumbs ul {
    display: none;
}

/*  Base style of xBreadcrumbs  */
/*  Top Level  */
.xbreadcrumbs {
    background: #F0F0F0;
    width: 100%;
}
.xbreadcrumbs li {
    padding: 5px 8px 5px 5px;
    border-right: medium none;
    height: 16px;
    background: url("./separator.gif") no-repeat scroll right center transparent
}
.xbreadcrumbs li:last-child {
    border-right: 1px solid #CECECE;
    background: none;
}
.xbreadcrumbs li a, .xbreadcrumbs li span {
    font-size: 11px;
    color: #666666;
    text-decoration: none;
}
.xbreadcrumbs li a:hover, .xbreadcrumbs li span:hover, .xbreadcrumbs li.hover a {
    color: #0A8ECC;
}
/*  Top Level - Current Page  */
.xbreadcrumbs li.current a, .xbreadcrumbs li.current span {
    color: #333333;
    font-weight: bold;
}
/*  Sub-level  */
.xbreadcrumbs LI UL {
    padding: 3px;
    background: #333333;
    font-size: 11px;
    width: 180px;
    top: 25px;
}
.xbreadcrumbs LI UL LI {
    float: left;
    width: 100%;
    border-right: none;
    height: auto;
}
.xbreadcrumbs LI UL LI A {
    text-decoration: none;
    color: #CCCCCC !important;
    display: block;
    padding: 4px;
    border-bottom: 1px dotted #666666;
}
.xbreadcrumbs LI UL LI:last-child A {
    border-bottom: none;
}
.xbreadcrumbs LI UL LI A:HOVER {
    background: #444444;
}
