/*
	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: 1;
}
.xbreadcrumbs li ul { 
	position: absolute;
	float: left;
}
.xbreadcrumbs, .xbreadcrumbs li, .xbreadcrumbs ul, .xbreadcrumbs ul li {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom:3px;
}
.xbreadcrumbs { clear: both; }
.xbreadcrumbs, .xbreadcrumbs li {
	float: left;
}
.xbreadcrumbs ul {
	display: none;
}

/*  Base style of xBreadcrumbs  */
/*  Top Level  */
.xbreadcrumbs {
	/*background:#fff; */
	width: 100%;	
	margin-top:-15px;
	margin-bottom:5px;
	padding-top:5px;
	padding-bottom:3px;
	border-bottom: 0px #990000 solid;
}
.xbreadcrumbs li {
	border-right: none;
        background: url(arrow-1.gif) no-repeat right center;
        padding-right: 15px;
        padding-left: 10px;
}
.xbreadcrumbs li.current {
	border-right: none;
	background:none;

}
.xbreadcrumbs li a {
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #666666;;
	font-weight:bold;
	text-decoration: none;
}

.xbreadcrumbs li a.home {
    background: url(home.gif) no-repeat left center;
    padding-left: 25px;
	padding-right: 0px;
	
}

.xbreadcrumbs li a:hover, .xbreadcrumbs li a.hover {
		color: #f58220;
		background-color: #ffffff;
}
/*  Top Level - Current Page  */
.xbreadcrumbs li.current a {
	color:#666666;
	font-weight:bold;
	text-decoration:none;
}

.xbreadcrumbs li.current a.hover, .xbreadcrumbs li.current a:hover {
		color: #f58220;
		background:none;
}
/*  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;
}