.nav{
	list-style: none outside none;
	padding: 0px;
	margin: 0em;
}
.nav:after{
    clear: both;
	content: "";
	display: table;
	font-size: 0em;
}
.nav li{
	display: inline-block;
	vertical-align: middle;
}
/*************/

.nav-tabs > li,
.nav-pills > li{
	float: left;
}

.nav-tabs > li a,
.nav-pills > li a{
	text-decoration: none;
	display: block;
}

.nav > li.disabled a,
.nav-tabs > li.disabled a,
.nav-pills > li.disabled a{
    color: #555555;
	cursor: default;
	text-decoration: none;
}

/*************/
.nav-tabs{
	border-bottom: 1px solid #bbbbbb;
}

.nav-tabs > li.active{
	border: 1px solid #bbbbbb;
	border-bottom: 0px;
	border-radius: 0.5em 0.5em 0em 0em;
	margin-bottom: -1px;
	background: #ffffff;
}
.nav-tabs a{
    padding: 0.5em 1em;
}
.nav-tabs > li.active a{
    color: #555555;
	border: 0px solid #5555ff;
}
/*************/
.nav-pills{
}
.nav-pills > li.active,
.nav-pills > li.active:hover{
	border-radius: 0.5em 0.5em;
	background: #0088CC;	
}
.nav-pills a{
    padding: 0.5em 1em;
}
.nav-pills > li.active a{
	color: #ffffff;
}
.nav-pills > li:hover{
	border-radius: 0.5em 0.5em;
	background: #eeeeee;	
}
/*************/

.nav-stacked > li,
.nav-stacked > li.active{
	display: block;
	float: none;
	margin-bottom: 0.2em;
}
.nav-stacked > li.active a{
	display: block;
}

/*************/
.nav-pages{
	border: 1px solid #cccccc;
	border-radius: 0.5em;
	background: linear-gradient(to bottom, #ffffff 0%,#dddddd 100%); /* W3C */
}
.nav-pages > li > a,
.nav-pages > li > span{
	line-height: 2em;
	display: block;
	padding: 0em 0.5em;
	text-decoration: none;
}
.nav-pages a:hover{
	text-decoration: underline;
}
.nav-pages li.active,
.nav-pages li.disable{
	font-weight: bold;
}
.nav-pages .divider{
	border-right: 1px solid #bbbbbb;
	height: 2em;
}

/*************/
.nav-breadcrumbs{
	border: 1px solid #cccccc;
	border-radius: 0.5em;
	background: linear-gradient(to bottom, #ffffff 0%,#dddddd 100%); /* W3C */
	line-height: 2em;
}
.nav-breadcrumbs li{
	padding: 0em 0.0em 0.0em 0.5em;
}
.nav-breadcrumbs li[class="title"]{
	font-weight: bold;
}
.nav-breadcrumbs li[class="title"]:after{
	content: ":";
}
.nav-breadcrumbs li:not([class="title"]):after{
	content: "/";
	padding: 0em 0.0em 0.0em 0.5em;
}
.nav-breadcrumbs li:not([class="title"]):last-child:after{
	content: "";
	font-size: 0em;
}