/*
	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: #F8F7EF;
    width: 100%;
}
.xbreadcrumbs LI
{
    padding: 5px 10px 5px 10px;
    border-right: 1px solid #CECECE;
    height: 16px;
    border-right-color: #DDDDDD;
}
.xbreadcrumbs LI.current {
	border-right: none;
}
.xbreadcrumbs LI A
{
    font-size: 12px;
    color: #171C1E;
    text-decoration: none;
}
.xbreadcrumbs LI A:HOVER, .xbreadcrumbs LI.hover A {
	color: red;
}
/*  Top Level - Current Page  */
.xbreadcrumbs LI.current A {
	color: #333333;
	font-weight: bold;
}
/*  Sub-level  */
.xbreadcrumbs LI UL
{
    border-style: solid;
    border-width: 0px 1px 1px 1px;
    border-color: #004167;
    padding: 3px;
    background: #2D2D2D; 
    font-size: 12px;
    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 solid #3B3B3B;
}
.xbreadcrumbs LI UL LI:last-child A {
	border-bottom: none;
}
.xbreadcrumbs LI UL LI A:HOVER
{
    background: #444444;
    border-right-style: solid;
    border-right-width: 2px;
    border-right-color: #0070B3;
}