@charset "utf-8";
/* CSS Document */
a.setTitle {
    font-size: 14px;
    font-weight: 700;
    padding: 2px;
    line-height: 16px;
    padding: 5px;
    border: aliceblue 1px solid;
    min-height: 60px;
}
h1 {
  color : white;
  background-color: #428bca;
  padding : 5px 15px;
  margin:0 0;
}
.container{
	width:1000px;
	margin: 0 auto;
	margin-top: 50px;
}
.panels {
    display: inline-grid;
    min-height: 155px;
	width:20%;
    /* background-color: ivory; */
}
.tab-pane{
	margin-left:0;
}
.nav {
    margin-left: 0;
    margin-bottom: 0; 
} 
.nav-tabs>li>a { font-weight: 600; }
.nav-tabs>li { margin-bottom: -1px;}
.nav-tabs>li, .nav-pills>li {float: left;}
.nav-tabs>.active>a, .nav-tabs>.active>a:hover {
    color: #ffffff;
    background-color: #428bca;
    border: 2px solid #428bca;
    border-bottom-color: transparent;
    cursor: default;
    font-weight: 700;
}
.nav-pills>li.active>a, .nav-pills>li.active>a:hover, .nav-pills>li.active>a:focus {
    color: #fff;
    background-color: #428bca;
    border-top: 4px solid #428bca;
}

/* remove border radius for the tab */

.nav-pills > li > a {
  border-radius: 0;
}

/* change border radius for the tab , apply corners on top*/

.nav-pills > li > a {
  border-radius: 4px 4px 0 0 ;
}
.tab-content {
    color: white; 
    min-height: 160px; 
} 
.tab-content>.active, .pill-content>.active {
    display: block;
    color: black;
}
/* Hover tooltips */
.field-tip {
    position:relative;
    cursor:help;
}
.field-tip .tip-content {
	position:absolute;
	top: -80px; /* - top padding */
	right:9999px;
	width:auto;
	margin-right:20px; /* width + left/right padding */
	padding:10px;
	color:#fff;
	background:#333;
	-webkit-box-shadow:2px 2px 5px #aaa;
	   -moz-box-shadow:2px 2px 5px #aaa;
			box-shadow:2px 2px 5px #aaa;
	opacity:0;
	-webkit-transition:opacity 250ms ease-out;
	   -moz-transition:opacity 250ms ease-out;
		-ms-transition:opacity 250ms ease-out;
		 -o-transition:opacity 250ms ease-out;
			transition:opacity 250ms ease-out;
} 
.field-tip .tip-content:before {
	/* content:' ';  Must have content to display */
	position:absolute;
	top:50%;
	width:0;
	height:0;
	margin-top:5px; /* - border width */
	/* border:8px solid transparent; */
	border-right-color:#333;
}
.field-tip:hover .tip-content {
	right:-20px;
	opacity:1;
}
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
	cursor:pointer;
}
.tooltip .tooltiptext {
    visibility: hidden;
    width: 300px;
    height: 160px;
    background-color: #e5e5e5;
	border: 2px solid black;
    color: #000;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    left: 60px;
	top: 20px;
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}
.tooltip:hover .tooltiptext {
    visibility: visible;
}