/*!
 * Tab drop for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Jenna Schabdach
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.nav-tabs,
.nav-pills {
  position: relative;
}

/* adjust as needed so the tab text displays */
.tabdrop{
  width: 120px;
}

/* hide any icons found in tabs not on first line */
.nav-tabs li li i{
  visibility: hidden;
}
#ParentTab .dropdown-menu {
	width: 280px;
}
#ParentTab .dropdown {
	width: 70px;
}
#ParentTab .dropdown .display-tab {
	display: none;
}
#ParentTab a.dropdown-toggle {
	background: #309ff2;
	padding: 21px 5px 0px 5px;
	border-radius: 3px;
}

#ParentTab a.dropdown-toggle b {
  font-size: 36px;
  color: white;
}
#ParentTab a.dropdown-toggle::after {
	content: none !important;
	padding: 0;
	margin: 0;
}

#ParentTab .dropdown-menu a {
	width: 100%;
	border-radius: 5px;
}
#ParentTab .dropdown-menu a.active {
	border-bottom: 1px solid silver;
}
	
#ParentTab .dropdown-menu i {
	visibility: visible;
	text-align: right;
	float: right;
	position: absolute;
	right: 12px;
}
	

