/* Remove the Home Link Text */
#wb-bc li:first-child {
	display:none;
}

/* Remove the default chevron that is set before the list item because it does not get removed by hiding the first list item. */
#wb-bc li:before {
	display:none;
}

/* Set the chevron to be after the list item. This will allow the cheveron that now comes after the first list item to be hidden. */
#wb-bc li:after {
    color: #333;
    content: ">";
    font-family: "Glyphicons Halflings";
    font-size: .7em;
	position: relative;
    top: -2px;
	padding-right: 10px;
}

/* Remove the last chevron at the end caused by the :after pseudo selectors change. */
#wb-bc li:last-child:after {
	 display:none;
}
