
/* breadcrumb */

/**************************************************************************************
/* update the following classes to change the appearance of the breadcrumb designer control
/*************************************************************************************/

/* this is the class used on the outside container element for the breadcrumb */
/* html example: <div class="BreadCrumb_Wrapper"> */
/* this element is used to avoid the broken box model object in ie6 */
.BreadCrumb_Wrapper {padding-top: 10px;}

/* this is the class used on the inside container element for the breadcrumb */
/* html example: <div class="BreadCrumb_Wrapper"><div class="BreadCrumb"> */
.BreadCrumb {
	font: bold 12px Arial, Helvetica, sans-serif;
	margin-left: 0px;
	margin-top:10;
	margin-bottom:0px;
	margin-right: 2px;
}

/* this is the class used for the text that appears prior to the breadcrumb links */
/* html example: <span class="PreText">You are here: </span> */
.BreadCrumb .PreText {
	font: bold 12px Arial, Helvetica, sans-serif;
	margin-left: 0px;
	margin-top:10;
	margin-bottom:0px;
	margin-right: 2px;
	text-transform: lowercase;
}

/* this is the class used on the container element for all the breadcrumb links */
/* html example: <span class="Links"><a href="/default.htm" class="RootLink">Home</a> &gt; <a... */
.BreadCrumb .Links {
	font: bold 12px Arial, Helvetica, sans-serif;
	margin-left: 0px;
	margin-top:10;
	margin-bottom:0px;
	margin-right: 2px;
}

/* this is the class used on the root (home) page link */
/* html example: <a href="/default.htm" class="RootLink">Home</a> */
.BreadCrumb a.RootLink:link, .BreadCrumb a.RootLink:active, .BreadCrumb a.RootLink:visited {}
.BreadCrumb a.RootLink:hover {
	font: bold 12px Arial, Helvetica, sans-serif;
	margin-left: 0px;
	margin-top:10;
	margin-bottom:0px;
	margin-right: 2px;
}

/* this is the class used on all other links (after the root link) */
/* html example: <a href="/default.htm" class="RootLink">Home</a> &gt; <a href="/about.htm">About Us</a> */
.BreadCrumb a:link, .BreadCrumb a:active, .BreadCrumb a:visited {
	font: bold 12px Arial, Helvetica, sans-serif;
	margin-left: 0px;
	margin-top:10;
	margin-bottom:0px;
	margin-right: 2px;
}
.BreadCrumb a:hover {
	font: bold 12px Arial, Helvetica, sans-serif;
	margin-left: 0px;
	margin-top:10;
	margin-bottom:0px;
	margin-right: 2px;
}


