@charset "UTF-8";
/* column view container */
.column-view-container {
	width: 900px;
	height: 102px;
	border: 1px solid #ccc;
	background: #FFF;
	display: block;

	/*overflow-x: auto;
	overflow-y: hidden;*/
	overflow: hidden;
}

/* the composition div for colums */
.column-view-composition {
	display: table;
	white-space: nowrap;
}

/**/
.column {
	display: table-cell;
	border-right: none;
}
/*
.column:last-child {
	border-right: 0;
}

.column:only-child {
	border-right: 1px solid #999;
}
*/

/* for error messages */
.column > p {
	margin: 1px 3px;
	min-width: 200px;
	font-size: 15px;
	color: #666;
}

/* for column listing */
.column ul {
	margin: 0;
	height: 100px;
	min-width: 200px;
	overflow-y: scroll;
	list-style: none;
}
.column:first-child ul {
	min-width: 100px;
}

.column ul li {
	margin: 0;
	padding: 1px 2px;
	/*font-size: 15px;*/
}

.column ul li:hover {
	cursor: pointer;
}

.column ul li.disabled:hover {
	cursor: default;
}

.column ul li i {
	float: right;
	margin-left: 5px;
	margin-top: 2px;
}

.column ul li:hover, .column ul li.active:hover {
	background: #999999;
	color: #000000;
}
.column ul li:hover i, .column ul li.active:hover i {
	background-image: url("img/glyphicons-halflings.png");
}

.column ul li.active {
	background: #DDDDDD;
	color: #000000;
}
.column ul li.active i {
	background-image: url("img/glyphicons-halflings.png");
}

.column ul li:hover a, .column ul li.active a {
	color: #000000;
}

.column .label {
	font-size: 85%;
	padding: 1px 2px;
	vertical-align: text-top;
	margin-top: 1px;
	margin-right: 2px;
}

/* icon type, could be replace with FontAwesome */
/*
[class^="icon-"],
[class*=" icon-"] {
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-top: 1px;
	*margin-right: .3em;
	line-height: 14px;
	vertical-align: text-top;
	background-image: url("img/glyphicons-halflings.png");
	background-position: 14px 14px;
	background-repeat: no-repeat;
}

.icon-chevron-right {
	background-position: -456px -72px;
}

.icon-globe {
	background-position: -336px -144px;
}
*/

/* icon css hack for firefox */
@-moz-document url-prefix() {
	.column ul li i[class^="icon-"] {
		margin-top: -17px;
	}
}
/*
@-moz-document url-prefix() {
	[class^="icon-"],
	[class*=" icon-"] {
		margin-top: -14px;
	}
}
*/


/* 
	STYLE SHEET FOR IHWY JQUERY LISTNAV PLUGIN V 2.0, 3/2/2009
	
	For more information, visit http://www.ihwy.com/Labs/jquery-listnav-plugin.aspx
*/


/* default styling example
----------------------------------------------------------------- */

.listNav { margin:0 0 10px; }

.ln-letters { overflow:hidden; }
.ln-letters a { font-size:0.9em; display:block; float:left; padding:2px 6px; border:1px solid silver; border-right:none; text-decoration:none; }
.ln-letters a.ln-last { border-right:1px solid silver; }
.ln-letters a:hover,
.ln-letters a.ln-selected { background-color:#eaeaea; }
.ln-letters a.ln-disabled { color:#ccc; }
.ln-letter-count { text-align:center; font-size:0.8em; line-height:1; margin-bottom:3px; color:#336699; }


/* demo-specific
----------------------------------------------------------------- */

#demoThree-nav .ln-letters a { border:none; border-top:2px solid pink; color:red; }
#demoThree-nav .ln-letters a.ln-last { border-right:none; }
#demoThree-nav .ln-letters a:hover,
#demoThree-nav .ln-letters a.ln-selected { border-top:2px solid red; background-color:pink; color:White !important; }
#demoThree-nav .ln-letters a.ln-disabled { color:pink; }
#demoThree-nav .ln-letters a.ln-disabled:hover { color:white; }
#demoThree-nav .ln-letter-count { color:red; }

#demoThree li { color:pink; }
#demoThree li a { color:red; text-decoration:none; }
#demoThree li a:hover { text-decoration:underline; }

#demo4 #listWrapper { width:650px }
#demoFour li { float:left; }
#demoFour a { display:block; text-align:center; width:85px; border:1px solid silver; padding:10px; margin:0 10px 10px 0; text-decoration:none }
#demoFour a:hover { background-color:#eee }


/* Example tokeninput style #1: Token vertical list*/
ul.token-input-list {
    overflow: hidden; 
    height: auto !important; 
    height: 1%;
    width: 400px;
    border: 1px solid #999;
    cursor: text;
    font-size: 12px;
    font-family: Verdana;
    z-index: 999;
    margin: 0;
    padding: 0;
    background-color: #fff;
    list-style-type: none;
    clear: left;
}

ul.token-input-list li {
    list-style-type: none;
}

ul.token-input-list li input {
    border: 0;
    width: 350px;
    padding: 3px 8px;
    background-color: white;
    -webkit-appearance: caret;
}

li.token-input-token {
    overflow: hidden; 
    height: auto !important; 
    height: 1%;
    margin: 3px;
    padding: 3px 5px;
    background-color: #d0efa0;
    color: #000;
    font-weight: bold;
    cursor: default;
    display: block;
}

li.token-input-token p {
    float: left;
    padding: 0;
    margin: 0;
}

li.token-input-token span {
    float: right;
    color: #777;
    cursor: pointer;
}

li.token-input-selected-token {
    background-color: #08844e;
    color: #fff;
}

li.token-input-selected-token span {
    color: #bbb;
}

div.token-input-dropdown {
    position: absolute;
    width: 400px;
    background-color: #fff;
    overflow: hidden;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    cursor: default;
    font-size: 12px;
    font-family: Verdana;
    z-index: 1;
}

div.token-input-dropdown p {
    margin: 0;
    padding: 5px;
    font-weight: bold;
    color: #777;
}

div.token-input-dropdown ul {
    margin: 0;
    padding: 0;
}

div.token-input-dropdown ul li {
    background-color: #fff;
    padding: 3px;
    list-style-type: none;
}

div.token-input-dropdown ul li.token-input-dropdown-item {
    background-color: #fafafa;
}

div.token-input-dropdown ul li.token-input-dropdown-item2 {
    background-color: #fff;
}

div.token-input-dropdown ul li em {
    font-weight: bold;
    font-style: normal;
}

div.token-input-dropdown ul li.token-input-selected-dropdown-item {
    background-color: #d0efa0;
}


/* Example tokeninput style #2: Facebook style */
ul.token-input-list-facebook {
	overflow: hidden;
	height: auto !important;
	height: 1%;
	/*width: 400px;*/
	border: 1px solid #cccccc;
	cursor: text;
	font-size: 12px;
	font-family: Verdana;
	min-height: 1px;
	z-index: 999;
	margin: 0;
	padding: 0;
	background-color: #fff;
	list-style-type: none;
	/*clear: left;*/
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

ul.token-input-list-facebook li input {
	border: 0;
	width: 100px;
	padding: 3px 8px;
	background-color: white;
	margin: 2px 0;
	-webkit-appearance: caret;
	box-shadow: none;
}
ul.token-input-list-facebook li input:focus {
	box-shadow: none;
}

li.token-input-token-facebook {
	overflow: hidden;
	height: auto !important;
	height: 15px;
	margin: 3px;
	padding: 1px 3px;
	background-color: #eff2f7;
	color: #000;
	cursor: default;
	border: 1px solid #ccd5e4;
	font-size: 11px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	float: left;
	white-space: nowrap;
}

li.token-input-token-facebook p {
	display: inline;
	padding: 0;
	margin: 0;
}

li.token-input-token-facebook span {
	color: #a6b3cf;
	margin-left: 5px;
	font-weight: bold;
	cursor: pointer;
}

li.token-input-selected-token-facebook {
	background-color: #5670a6;
	border: 1px solid #3b5998;
	color: #fff;
}

li.token-input-input-token-facebook {
	float: left;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

div.token-input-dropdown-facebook {
	position: absolute;
	width: 400px;
	background-color: #fff;
	overflow: hidden;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	cursor: default;
	font-size: 11px;
	font-family: Verdana;
	z-index: 1;
}

div.token-input-dropdown-facebook p {
	margin: 0;
	padding: 5px;
	font-weight: bold;
	color: #777;
}

div.token-input-dropdown-facebook ul {
	margin: 0;
	padding: 0;
}

div.token-input-dropdown-facebook ul li {
	background-color: #fff;
	padding: 3px;
	margin: 0;
	list-style-type: none;
}

div.token-input-dropdown-facebook ul li.token-input-dropdown-item-facebook {
	background-color: #fff;
}

div.token-input-dropdown-facebook ul li.token-input-dropdown-item2-facebook {
	background-color: #fff;
}

div.token-input-dropdown-facebook ul li em {
	font-weight: bold;
	font-style: normal;
}

div.token-input-dropdown-facebook ul li.token-input-selected-dropdown-item-facebook {
	background-color: #3b5998;
	color: #fff;
}

/* application.less */
/* application.css */

/* override some DataTables TableTools styling */
body.DTTT_Print {
  margin: 0;
  background-color: #eeeeee;
}
.DTTT_Print #content {
  margin: 0;
}
.DTTT_Print .DTTT_PrintMessage {
  padding: 10px 10px 0 10px;
}

.tooltip.active {
  opacity: 1;
}

body .qtip {
  font-size: 14px;
  line-height: 16px;
}

.contact-lines {
  margin: 0 0 2px 15px;
}
.contact-line {
  list-style: none;
}
.contact-line i {
  text-align: center;
  width: 12px;
}

.icon-fixed-width[class^='icon-'],
.icon-fixed-width[class*=' icon-'] {
  text-align: center;
}

.hideme {
  display: none;
}

.assess-questions thead th {
  font-weight: bold;
  text-decoration: underline;
  color: #666;
}

td.numeric,
td.numeric input[type='text'] {
  text-align: right;
}

tr.category-footer td {
  padding: 4px 8px 15px;
  font-weight: bold;
}

tr.category-footer td.total,
.totalWeight {
  color: red;
}
tr.category-footer td.total .weightOk,
.totalWeight.weightOk {
  color: green;
}

.question-row .noContent {
  background-color: #fffac3;
}

/*
.alertify-logs {
	top: 59px;
	bottom: auto;
	right: 13px;
}
*/
.alertify-log {
  cursor: pointer;
  padding: 10px;
}

.wizard-steps {
  width: 20%;
}

#user-nav {
  top: 10px;
  right: 10px;
}
#user-nav.navbar-inverse .nav > li > a {
  color: #ffffff;
}
#user-nav.ceo.navbar-inverse .nav > li > a {
  color: #333333;
}

#header #nav-back,
#header #nav-up {
  margin: 14px 10px 0 0;
  float: left;
  padding: 0 4px 0 2px;
}

.error-content h1 {
  margin-left: 0;
  margin-right: 0;
}

#hideNavLabel {
  display: inline-block;
  color: #666666;
  font-size: 90%;
}
#autoHideNav {
  margin-top: -2px;
}

/* change default link colours */
a {
  color: #00578e;
}
a:hover {
  color: #003252;
}

dt {
  margin-top: 10px;
}
dt:first-child {
  margin-top: 0;
}

.column-fit {
  white-space: nowrap;
}
.column-tight {
  width: 1px;
  white-space: nowrap;
}
.column-tight.text-left {
  text-align: left !important;
}
.column-tight.text-center {
  text-align: center !important;
}
.column-tight.text-right {
  text-align: right !important;
}

#app-status-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  z-index: 90;
  -khtml-opacity: 0.9;
  -moz-opacity: 0.9;
  -ms-filter: ”alpha(opacity=90) ”;
  filter: alpha(opacity=90);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.9);
  opacity: 0.9;
  background-color: #f8e6ff;
  color: #777777;
}
#app-status-bar .status-bar-wrapper {
  text-align: center;
}
#app-status-bar .status-bar-wrapper .indicator {
  margin: 0 5px 5px 0;
  -khtml-opacity: 0.5;
  -moz-opacity: 0.5;
  -ms-filter: ”alpha(opacity=50) ”;
  filter: alpha(opacity=50);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.5);
  opacity: 0.5;
}
#app-status-bar .status-bar-wrapper .message {
  font-weight: bold;
  font-size: 18px;
  height: 20px;
  line-height: 20px;
  margin: 10px 0;
  display: inline-block;
}

#sidebar > ul {
  margin-top: 0;
  border-top: none;
}
#sidebar > ul > li:first-child {
  border-top: none;
}

#breadcrumb {
  margin-bottom: 10px;
  padding: 0 5px;
  border: 1px solid #d6d6d6;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
#breadcrumb a {
  padding: 4px 15px 4px 5px;
  line-height: 18px;
}

#content-nav {
  background-image: -webkit-gradient(
    linear,
    0 0%,
    0 100%,
    from(#ffffff),
    to(#eeeeee)
  );
  background-image: -webkit-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
  background-image: -moz-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
  background-image: -ms-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
  background-image: linear-gradient(top, #ffffff 0%, #eeeeee 100%);
  border-top-left-radius: 8px;
  display: inline-block;
  width: 100%;
}
#content-nav .navbar {
  margin: 0 0 8px 0;
}
#content-nav .navbar-static-top .navbar-inner {
  border-top-left-radius: 8px;
}
#content-nav .navbar-static-top .navbar-inner .container {
  width: auto;
}
#content-nav .navbar .navbar-inner {
  padding-left: 8px;
}
#content-nav .divider-vertical {
  margin: 0;
}
#content-header {
  background-image: none;
  border-top-left-radius: 0;
  height: auto;
  width: 100%;
  position: relative;
  margin-top: 0;
  z-index: 0;
}
#content-header h1,
#content-header .btn-group {
  margin-top: 15px;
}

#content.ceo-dash #content-nav {
  display: none;
}
#content.ceo-dash #content-header .btn-group {
  /*margin-top: 10px;*/
}
#content.ceo-dash #content-header .btn-group .btn {
  padding: 5px 4px 3px;
}
#content.ceo-dash #intro.row-fluid {
  margin-bottom: 13px;
}
#content.ceo-dash #intro.row-fluid.first {
  margin-top: 0px;
}
#content.ceo-dash #intro {
  background-color: #eeeeee;
}
#content.ceo-dash #intro h5 {
  margin-top: 5px;
  margin-bottom: 1px;
  color: #666666;
}

#graphs .row-fluid {
  margin: 0;
}

#content .widget-box {
  margin: 0 0 10px 0;
}

#util-monitor .org-label {
  cursor: default;
}

/* change form field focus colours */
textarea:focus,
input[type='text']:focus,
input[type='password']:focus,
input[type='datetime']:focus,
input[type='datetime-local']:focus,
input[type='date']:focus,
input[type='month']:focus,
input[type='time']:focus,
input[type='week']:focus,
input[type='number']:focus,
input[type='email']:focus,
input[type='url']:focus,
input[type='search']:focus,
input[type='tel']:focus,
input[type='color']:focus,
.uneditable-input:focus {
  border-color: rgba(59, 176, 255, 0.8);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset,
    0 0 8px rgba(59, 176, 255, 0.6);
}

#breadcrumb a.current i#reloadPage {
  cursor: pointer;
}

.form-actions {
  border-top-color: #eeeeee;
}
.form-horizontal .form-actions {
  padding-left: 200px;
}

/* scaffold styles */
.span12 .widget-box:first-child {
  margin-top: 0;
}

.DataTables_sort_icon.css_right {
  float: right;
}

.ui-datepicker.ui-widget {
  font-size: 0.9em;
}

#select-function-panel label,
#issue-edit-form label {
  margin-bottom: 0;
}
#select-function-panel input,
#select-function-panel select,
#select-function-panel textarea,
#select-function-panel ul,
#issue-edit-form input,
#issue-edit-form select,
#issue-edit-form textarea,
#issue-edit-form ul {
  margin-bottom: 4px;
}

.scaffold-list .project-assessment-list {
  margin-bottom: 0;
}
.scaffold-list .project-assessment-list li {
  margin-bottom: 2px;
}

.scaffold-list div.dataTables_wrapper .ui-widget-header {
  height: auto;
}

.lvl1,
.lvl2 {
  color: #888888;
  font-size: 85%;
}
.lvl1 {
  margin-left: 8px;
}
.lvl2 {
  margin-left: 16px;
}

.scaffold-show dl {
  margin: 10px 10px 20px;
  border-top: 1px solid #cdcdcd;
}
.scaffold-show dl:first-child {
  border-top: none;
}
.scaffold-show dd {
  margin-left: 35px;
  margin-top: 2px;
}
.scaffold-show dd.count-label {
  font-size: 90%;
  color: #ccc;
  font-style: italic;
}
.scaffold-show .sub-section {
  margin: 8px;
  display: block;
  font-size: 12px;
  line-height: 12px;
  font-weight: bold;
  text-shadow: 0 1px 0 #ffffff;
  color: #666666;
  text-decoration: underline;
}
.scaffold-show .sub-section .btn {
  font-weight: normal;
}
.scaffold-show dl .label,
.scaffold-show dl .badge {
  line-height: 11px;
  font-size: 11px;
}
.scaffold-show dl .badge {
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 5px;
  margin-right: 5px;
}

.scaffold-create .widget-box .form-actions {
  border-top: none;
}

.scaffold-edit .widget-box {
  background-color: #ffffff;
}
.scaffold-edit .tabwrapper {
  padding: 10px;
}
.scaffold-edit .tabwrapper .nav-tabs > .active > a,
.scaffold-edit .tabwrapper .nav-tabs > .active > a:hover {
  font-weight: bold;
}
.scaffold-edit .tabwrapper .nav {
  margin-bottom: 0;
}
.scaffold-edit .tabwrapper .tab-content {
  padding: 2px 10px;
  border-left: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  border-top: none;
}
.scaffold-edit .tabwrapper .tab-content .heading {
  margin-top: 0;
  border-bottom: 1px solid #cccccc;
}

.scaffold-edit .span6 .form-horizontal .control-label {
  width: 140px;
}
.scaffold-edit .span6 .form-horizontal .controls {
  margin-left: 145px;
}

.position-number {
  font-weight: bold;
}

/*============================================================================*/
.scaffold-edit .tabwrapper .tab-content .placeholder {
  margin-bottom: 3px;
  border: 1px dashed #4183c4;
  /*-webkit-border-radius: 3px;
			-moz-border-radius: 3px;
			border-radius: 3px;
			margin: -1px;*/
}
.scaffold-edit .tabwrapper .tab-content .mjs-nestedSortable-error {
  background: #fbe3e4;
  border-color: transparent;
}

.scaffold-edit .tabwrapper .tab-content ol {
  margin: 0;
  padding: 0;
  padding-left: 30px;
}

.scaffold-edit .tabwrapper .tab-content ol.sortable,
.scaffold-edit .tabwrapper .tab-content ol.sortable ol {
  margin: 0 0 0 25px;
  padding: 0;
  list-style-type: none;
}

.scaffold-edit .tabwrapper .tab-content ol.sortable {
  margin: 0;
}

.scaffold-edit .tabwrapper .tab-content .sortable li {
  margin: 5px 0 0 0;
  padding: 0;
}
.scaffold-edit .tabwrapper .tab-content .sortable li .listitem,
.scaffold-edit .tabwrapper .tab-content .sortable li.selected li .listitem,
.scaffold-edit .tabwrapper .tab-content .sortable li li.selected li .listitem {
  border: 1px solid #d4d4d4;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border-color: #d4d4d4 #d4d4d4 #bcbcbc;
  padding: 6px;
  margin: 0;
  cursor: pointer;
  background: #f6f6f6;
  background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #ffffff),
    color-stop(47%, #f6f6f6),
    color-stop(100%, #ededed)
  );
  background: -webkit-linear-gradient(
    top,
    #ffffff 0%,
    #f6f6f6 47%,
    #ededed 100%
  );
  background: -o-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',
		endColorstr='#ededed', GradientType=0);
}
.scaffold-edit .tabwrapper .tab-content .sortable li.selected .listitem,
.benefits-container tr.selected td {
  background: -moz-linear-gradient(top, #d9edf7 0%, #83c5f0 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #d9edf7),
    color-stop(100%, #83c5f0)
  );
  background: -webkit-linear-gradient(top, #d9edf7 0%, #83c5f0 100%);
  background: -o-linear-gradient(top, #d9edf7 0%, #83c5f0 100%);
  background: -ms-linear-gradient(top, #d9edf7 0%, #83c5f0 100%);
  background: linear-gradient(to bottom, #d9edf7 0%, #83c5f0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D9EDF7', endColorstr='#83C5F0', GradientType=0);
}

.benefits-container .table {
  margin-bottom: 10px;
}

#file-edit-form dl {
  margin-top: 0;
}
#file-edit-form h5 {
  line-height: 28px;
}

#value-milestone-list {
  margin-bottom: 40px;
}
#value-milestone-list .listitem {
  cursor: default;
}

#value-milestone-list .listitem .function-title {
  font-weight: bold;
}

.scaffold-edit .tabwrapper .tab-content .sortable li.selected .listitem {
  border: 1px solid #43b6ff;
  /*color: #43B6FF;*/
}

.tabwrapper .controls {
  padding: 4px 0;
}

.controls .well {
  padding: 8px 0;
}

/*
.benefits-container tr.selected td {
	border-top: 1px solid #43B6FF;
	border-bottom: 1px solid #43B6FF;
}
.benefits-container tr.selected td:first-child {
	border-left: 1px solid #43B6FF;
}
.benefits-container tr.selected td:last-child {
	border-right: 1px solid #43B6FF;
}
*/

#benefits .heading {
  border: none;
}

.scaffold-edit .tabwrapper .tab-content .sortable li .listitem .handle {
  display: inline-block;
  cursor: move;
}
.scaffold-edit
  .tabwrapper
  .tab-content
  .sortable
  li
  .listitem
  .ui-icon-arrow-4-diag {
  background-position: -16px -78px;
}

.listitem > span {
  display: inline;
}

.listitem .badge {
  margin-left: 5px;
}

/*============================================================================*/

.scaffold-edit .tabwrapper .tab-content .well {
  padding: 8px;
  margin: 0;
  min-height: 300px;
}
/*
.scaffold-edit .tabwrapper .tab-content .nav-list li {
	padding-left: 30px;
}
.scaffold-edit .tabwrapper .tab-content .nav-list li.nav-header {
	padding-left: 15px;
}
*/

.scaffold-edit .tabwrapper .project-resource.tab-content {
  padding: 0;
  min-height: 400px;
  border: 1px solid #dddddd;
}

.btn-container,
.roles-container {
  margin: 10px;
}
.roles-container {
  margin-top: 0;
}
.no-content {
  margin: 10px;
  text-align: center;
}
.roles-container .table,
.benefits-container .table {
  border: 1px solid #dddddd;
}
.roles-container .table th,
.benefits-container .table th {
  text-align: left;
}
.roles-container .table td,
.benefits-container .table td {
  padding: 2px;
  vertical-align: middle;
}
.roles-container .table td select,
.benefits-container .table td select {
  width: 100%;
  margin-bottom: 0;
  height: auto;
  line-height: auto;
}
.roles-container .table td input[type='text'],
.benefits-container .table td input[type='text'] {
  width: 80%;
  margin-bottom: 0;
  /*height: auto;*/
  line-height: auto;
}

.span6 .form-horizontal .control-group {
  border: none;
}
.span6 .form-horizontal .control-label {
  width: 80px;
  padding-top: 7px;
}
.span6 .form-horizontal .controls {
  margin-left: 85px;
  padding-top: 2px;
  padding-bottom: 2px;
}
.span6 .form-horizontal .controls input,
.span6 .form-horizontal .controls textarea,
.span6 .form-horizontal .controls select,
.span6 .form-horizontal .controls .uneditable-input {
  width: 85%;
}

#project-tabs #issues .label {
  width: 75px;
  text-align: center;
}

#project-tabs #info .control-label {
  width: 80px;
}
#project-tabs #info .controls {
  margin-left: 100px;
}
#project-tabs #info textarea {
  width: 95%;
}

#project-tabs #files .plupload_container {
  padding: 0;
}
#project-tabs #files .plupload {
  border: 1px solid #ccc;
}
#project-tabs #files .plupload_header_content {
  display: none;
}

.label.enum {
  text-transform: uppercase;
}
.control-group .controls .label.enum {
  margin-top: 5px;
  text-transform: uppercase;
}

.update-function-btns {
  margin-top: 10px;
}

.widget-content .row-fluid.first {
  margin-top: 0;
}

.help-inline ul {
  margin: 0;
  padding: 0;
}
.help-inline ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.widget-box .form-actions {
  margin: 0;
}

.widget-box .table-bordered thead tr th:first-child,
.widget-box .table-bordered tbody tr td:first-child {
  /*border-left: none;*/
}
.widget-box .table-bordered thead:first-child tr:first-child th:first-child {
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -moz-border-radius-topleft: 0;
}
.widget-box .table-bordered tbody:last-child tr:last-child td:first-child {
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  -moz-border-radius-bottomleft: 0;
}

.widget-box .widget-content.nopadding div.dataTables_wrapper .ui-widget-header {
  border-bottom: none;
}

.dataTable tbody td {
  padding: 4px 6px;
}

.dataTable tbody td.center {
  text-align: center;
}

.dataTables_wrapper .filter {
  clear: both;
}
/*
.dataTables_wrapper .dataTables_filter {
	float: right;
	color: #878787;
}
.dataTables_wrapper .dataTables_length {
	margin: 4px 8px 2px 10px;
}
.dataTables_wrapper .dataTables_length label {
	margin-right: 5px;
	margin-top: 3px;
	color: #878787;
}
.dataTables_wrapper .dataTables_length select {
	width: 60px;
	margin-bottom: 0;
	margin-top: 0px;
}
*/
.dataTables_wrapper .dataTables_info {
  /*margin: 3px 0 0 0;*/
  padding: 3px;
  color: #878787;
  font-size: 12px;
  display: inline-block;
  height: 20px;
}
.dataTables_wrapper .dataTables_paginate {
  float: right;
  margin: 0;
  font-size: 12px;
}

.dataTables_wrapper .dataTables_paginate.pagination ul > li > a,
.dataTables_wrapper .dataTables_paginate.pagination ul > li > span {
  padding: 2px 8px;
}

.dataTables_wrapper .table-bordered {
  border-collapse: collapse;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}

.dataTables_wrapper .table th {
  padding: 3px 20px 3px 10px;
}
.dataTables_wrapper .table th:last-child {
  padding-right: 10px;
}

.dataTables_wrapper th:last-child,
.dataTables_wrapper td:last-child {
  width: 1px;
  white-space: nowrap;
}
.dataTables_wrapper
  .table-bordered
  thead:first-child
  tr:first-child
  > th:last-child {
  border-right: none;
}
.dataTables_wrapper .ui-toolbar {
  border-left: none;
  border-right: none;
  border-bottom: none;
}
.dataTables_paginate .ui-button {
  margin-right: -1px;
}

.dataTables_wrapper .filter,
.dataTables_wrapper .footer {
  color: #878787;
}
.dataTables_wrapper .filter label,
.dataTables_wrapper .filter input,
.dataTables_wrapper .filter button,
.dataTables_wrapper .filter select,
.dataTables_wrapper .filter textarea {
  font-size: 12px;
  margin: 0;
  padding: 2px 4px;
}

.dataTables_wrapper .filter .export-options {
  margin: 5px;
}

.dataTables_filter {
  margin: 1px 0;
}
.dataTables_filter input[type='text'] {
  width: 100px;
}
.dataTables_length {
  margin: 1px 0;
}
.dataTables_wrapper .filter .dataTables_length select {
  width: 60px;
  height: 26px;
  line-height: 26px;
  padding: 4px;
}
.dataTables_wrapper .filter .clearFilter {
  margin-top: 5px;
}
.dataTables_wrapper .filter .clearFilter i {
  margin: 0 5px 0 0;
  cursor: pointer;
}

.dataTables_wrapper .footer {
  padding: 3px;
}

.dataTable tbody tr.odd td {
  background-color: #f0f0f0;
}
.dataTable tbody tr.even td {
  background-color: #f9f9f9;
}

.widget-box
  .nopadding
  .table-bordered
  thead:first-child
  tr:first-child
  th:first-child,
.widget-box
  .nopadding
  .table-bordered
  tbody:first-child
  tr:first-child
  th:first-child {
  border-left: none;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
  border: 1px solid #43b6ff;
}

#content-header.empty {
  height: 20px;
}
#content-header .btn-toolbar {
  margin-top: 0;
  margin-bottom: 0;
}
#content-header .btn-toolbar:first-child {
  margin: 0;
}

table.score-summary {
  width: 100%;
}
.score-summary h3,
.score-summary ul {
  margin: 0;
}
.score-summary li {
  list-style: none;
}
.score-summary li h1 {
  margin-top: 0;
}
.score-summary li h5 {
  display: inline;
}

.total-row,
.total-row td,
.total-row input,
.total-row select,
.total-row textarea {
  font-weight: bold;
}
.total-row a.btn,
.total-row td a.btn {
  font-weight: normal;
}
.weighting input,
.weighting-total input,
.total-row td.total-row-label,
.previous input,
.previous-total input,
.score input,
.result span,
.score-total input,
.result-total span,
.total-row td.total-row-label2 {
  text-align: right;
}
.total-row td.total-row-label span,
.total-row td.total-row-label2 span {
  display: block;
  padding: 5px 0;
  font-size: 11px;
}
.total-row td {
  border-top: 3px double #dddddd;
}
td.score,
td.score-total {
  /*width: 10em;
	padding-left: 15px;
	padding-right: 17px;
	vertical-align: middle;*/
}
td.result,
td.result-total {
  padding-left: 12px;
}

.messages-row .alert {
  margin: 0 0 10px 0;
}

.widget-box .pair-tabs .table-bordered thead tr th:first-child,
.widget-box .pair-tabs .table-bordered tbody tr td:first-child {
  border-left: 1px solid #dddddd;
}
.widget-box
  .pair-tabs
  .table-bordered
  thead:first-child
  tr:first-child
  th:first-child {
  border-top-left-radius: 4px;
}
.widget-box
  .pair-tabs
  .table-bordered
  tbody:last-child
  tr:last-child
  td:first-child {
  border-bottom-left-radius: 4px;
}

.widget-box .widget-title .btn-mini .caret,
.widget-box .widget-title .btn-small .caret {
  margin-top: 8px;
}

.widget-box .widget-title .widget-title-actions {
  margin: 5px 10px 0 0;
}

.widget-box .widget-title .dropdown-menu {
  margin-top: 1px;
}
.widget-box .widget-title .dropdown-menu li > a {
  padding: 3px 10px;
}

.widget-box .accordion {
  padding: 10px;
  margin: 0;
}
.widget-box .accordion-group {
  margin-bottom: 10px;
}
.widget-box .accordion-heading .accordion-toggle {
  padding: 5px;
  display: inline-block;
}
.widget-box .accordion-heading .accordion-toggle h5 {
  margin: 0px;
}
.widget-box .accordion-inner {
  padding: 2px 10px;
}

.widget-box .accordion-inner .table-bordered th:first-child,
.widget-box .accordion-inner .table-bordered td:first-child {
  border-left: none;
}

.accordion-title-actions {
  margin: 3px 3px;
}

.widget-box .accordion .control-group,
.wizard-card .control-group {
  border-top: none;
}
.widget-box .accordion .controls,
.wizard-card .controls {
  padding: 4px 0;
}
.widget-box .accordion .controls label.checkbox,
.wizard-card .controls label.checkbox {
  display: inline-block;
}
.widget-box .accordion .controls .alert,
.wizard-card .controls .alert {
  margin: 0 0 3px 0;
  padding: 8px 30px 8px 10px;
  font-size: 90%;
}

.controls ul,
.controls ol {
  margin-top: 0px;
  margin-left: 0px;
}
.controls ul li,
.controls ol li {
  list-style: none;
}

#editStaffModal .control-label {
  width: 140px;
}
#editStaffModal .controls {
  margin-left: 150px;
}

.widget-box .control-label,
.wizard-card .control-label {
  font-weight: bold;
  padding-top: 9px;
  width: 185px;
}
.widget-box .control-label i,
.wizard-card .control-label i,
.modal-body .control-label i {
  opacity: 0;
  color: #ffa500;
  font-size: 60%;
  padding-top: 2px;
  vertical-align: top;
}
.widget-box .control-label i.required,
.wizard-card .control-label i.required,
.modal-body .control-label i.required {
  opacity: 1;
}
.widget-box .control-group.error .control-label i.required,
.wizard-card .control-group.error .control-label i.required,
#task-edit-form .error label {
  color: #b94a48;
}

.widget-box .form-horizontal .form-actions {
  padding-left: 225px;
}

.control-group.error,
#task-edit-form .error {
  background-color: #f2dede;
}

.control-group.error .help-block,
.control-group.error .help-inline {
  font-size: 90%;
  font-style: italic;
}

.gritter-item ol li {
  line-height: 12px;
}

.control-group.error .one-to-many input,
.control-group.error .one-to-many select,
.control-group.error .one-to-many textarea {
  border-color: #cccccc;
  color: #555555;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.control-group .one-to-many input,
.control-group .one-to-many select,
.control-group .one-to-many textarea {
  /*min-height: inherit;
	height: 26px;
	line-height: 26px;*/
}

#task-edit-form .error input,
#task-edit-form .error select,
#task-edit-form .error textarea,
.control-group .one-to-many input.error,
.control-group .one-to-many select.error,
.control-group .one-to-many textarea.error {
  border-color: #b94a48;
  color: #b94a48;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
#task-edit-form .error input:focus,
#task-edit-form .error select:focus,
#task-edit-form .error textarea:focus,
.control-group .one-to-many input.error:focus,
.control-group .one-to-many select.error:focus,
.control-group .one-to-many textarea.error:focus {
  border-color: #953b39;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
}

.controls .input-list {
  margin: 5px 0 0 0;
}
.controls .input-list li {
  list-style: none;
}
.controls .input-list li input[type='checkbox'] {
  margin-top: 3px;
}

.form-horizontal .one-to-many .controls {
  margin-left: 0;
  padding: 0 0 1px 0;
}

.wizard-card .one-to-many table {
  width: 100%;
}

.one-to-many table {
  margin: 5px 0 5px;
}
.one-to-many table .controls {
  padding: 0;
}

.one-to-many table th,
.files-list table th {
  font-size: 9px;
  font-weight: bold;
  line-height: 10px;
  padding-left: 5px;
  text-align: left;
  text-transform: uppercase;
}
.one-to-many table td,
.files-list table td {
  vertical-align: top;
}
.one-to-many table td.actions,
.files-list table td.actions {
  padding: 4px 0 0 6px;
}

.one-to-many table input,
.one-to-many table select {
  font-size: 12px;
  margin: 0;
  padding: 2px 4px;
}
.one-to-many table select {
  height: 26px;
  line-height: 26px;
  padding: 4px;
}
.one-to-many table .controls input {
  min-height: 26px;
}

.tooltip-inner {
  line-height: 16px;
}

.accordion-inner input[type='file'].attach-file-input {
  height: 26px;
  line-height: 26px;
  padding: 1px;
  border: 1px solid #cccccc;
}
.accordion-inner .files-table input[type='text'].error,
.accordion-inner .files-table input[type='file'].attach-file-input.error {
  background-color: #f2dede;
  border-color: #b94a48;
  color: #b94a48;
}
.accordion-inner .files-list {
  margin: 0;
}
.accordion-inner .files-list li {
  list-style: none;
}
.accordion-inner .files-table {
  width: 100%;
  margin: 0 0 3px;
}

#question-list table.table,
#govTmpl-question-list table.table,
#delTmpl-question-list table.table {
  /*width:auto;*/
}

#govTmpl-question-list input,
#delTmpl-question-list input,
#govTmpl-question-list .uneditable-input,
#delTmpl-question-list .uneditable-input {
  /*width: 60px;*/
}
#govTmpl-question-list .uneditable-input,
#delTmpl-question-list .uneditable-input {
  /*width: 60px;*/
  background-color: #eeeeee;
}
#question-list td,
#govTmpl-question-list td,
#delTmpl-question-list td {
  padding: 3px;
}
#question-list td.quText,
#govTmpl-question-list td.quText,
#delTmpl-question-list td.quText {
  width: 100%;
}
#question-list td.score .ui-slider,
#govTmpl-question-list td.score .ui-slider,
#delTmpl-question-list td.score .ui-slider {
  margin-top: 0.2em;
  background: #53a853;
}
#question-list td.result.error span,
#question-list td.result-total.error span,
#govTmpl-question-list td.result.error span,
#govTmpl-question-list td.result-total.error span,
#delTmpl-question-list td.result.error span,
#delTmpl-question-list td.result-total.error span {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #b94a48;
}
#question-list td.result.success span,
#question-list td.result-total.success span,
#govTmpl-question-list td.result.success span,
#govTmpl-question-list td.result-total.success span,
#delTmpl-question-list td.result.success span,
#delTmpl-question-list td.result-total.success span {
  color: #468847;
  background-color: #dff0d8;
  border-color: #468847;
}
#question-list td.actions .btn-mini,
#govTmpl-question-list td.actions .btn-mini,
#delTmpl-question-list td.actions .btn-mini {
  margin-top: 4px;
}
#question-list td.actions,
#govTmpl-question-list td.actions,
#delTmpl-question-list td.actions {
  /*white-space: nowrap;*/
}

#question-list .ui-slider .ui-slider-veto,
#govTmpl-question-list .ui-slider .ui-slider-veto,
#delTmpl-question-list .ui-slider .ui-slider-veto {
  background: #e55753;
  display: block;
  height: 100%;
}

.total-score-well h1,
.total-score-well h3 {
  text-align: center;
}
.total-score-well #pair-total-score {
  text-align: center;
}

#govTmpl-question-list .total-row .previous-total .success,
#govTmpl-question-list .total-row .result-total .success,
#delTmpl-question-list .total-row .previous-total .success,
#delTmpl-question-list .total-row .result-total .success,
.total-score-well .success {
  color: #008000;
}
#govTmpl-question-list .total-row .previous-total .partial-success,
#govTmpl-question-list .total-row .result-total .partial-success,
#delTmpl-question-list .total-row .previous-total .partial-success,
#delTmpl-question-list .total-row .result-total .partial-success,
.total-score-well .partial-success {
  color: #ffa500;
}
#govTmpl-question-list .total-row .previous-total .failure,
#govTmpl-question-list .total-row .result-total .failure,
#delTmpl-question-list .total-row .previous-total .failure,
#delTmpl-question-list .total-row .result-total .failure,
.total-score-well .failure {
  color: #ff0000;
}

.over-committed,
.under-committed,
.zero-committed {
  font-weight: bold;
  font-size: 150%;
}
.over-committed {
  color: #ff0000;
}
.under-committed {
  color: #006400;
}
.zero-committed {
  color: #000000;
}

.bu-summary h5 {
  margin: 0;
}
.bu-summary ul li {
  list-style: none;
  margin-right: 25px;
  display: inline;
}
.bu-summary-total {
  font-weight: bold;
}

.total-label-holder {
  display: block;
}
.total-label-holder > span {
  border-top: 2px solid #333333;
  padding-top: 2px;
}

.clear-left {
  clear: left;
}
.clear-right {
  clear: right;
}
.clear-both {
  clear: both;
}

.accordion-body .accordion-section {
  border-top: 1px dotted #cccccc;
  margin-bottom: 10px;
}
.accordion-body .accordion-section:first-child {
  border-top: none;
}
.accordion-body .accordion-section .title {
  text-decoration: underline;
  margin-top: 5px;
}
.accordion-body .accordion-section p {
  margin: 0;
}
.accordion-body .accordion-section ol,
.accordion-body .accordion-section ul {
  margin-bottom: 2px;
}

.ceo-dash #content-header {
  /*height: 60px;*/
  display: inline-block;
}
.ceo-dash #content-header h1 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.ceo-dash #content-header h1 span {
  font-weight: bold;
}
.ceo-dash .breadcrumb {
  padding: 5px 10px;
}
.ceo-dash #view-nav {
  padding: 0;
  margin: 9px 0 0 5px;
}
.ceo-dash #view-nav .now-viewing-title {
  margin: 0;
  padding: 0;
  display: inline;
}
.ceo-dash #view-nav #app-spinner {
  display: inline-block;
  margin: 0 0 0 2px;
}
.ceo-dash #view-nav .toggle.btn {
  margin: -10px 10px 0 0;
}

.ceo-dash #view-toggle {
  padding: 0;
  margin: 0 0 6px;
  position: initial;
  right: 0;
}

/*
#view-toggle a.toggler { width: 7em; }
#view-toggle button { width: 9em; }
*/
#view-toggle li.btn {
  border-right: none;
}

.ceo-dash .breadcrumb li,
.ceo-dash .breadcrumb select {
  font-size: 12px;
}
.ceo-dash .breadcrumb select {
  margin: 0;
}
.ceo-dash .breadcrumb > li > .divider {
  padding: 0 2px;
}
.ceo-dash .row-fluid {
  background-color: #f5f5f5;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  /*padding: 10px;*/
  /*margin-top: 20px;*/
}

.ceo-dash #dash-nav {
  height: 100px;
}
.ceo-dash #dash-nav .navLvl {
  background-color: #ffff00;
  display: inline-block;
  margin: 0;
  padding: 0;
  height: inherit;
  min-height: auto;
  width: 25%;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  border-left: none;
  overflow: auto;
}
.ceo-dash #dash-nav .navLvl:first-child {
  border-left: 1px solid #000000;
}
.ceo-dash #dash-nav .navLvl li {
  list-style: none;
}
.ceo-dash #dash-nav .navLvl li.selected {
  background-color: #0000ff;
  color: #ffffff;
}

.ceo-dash #operating-position-main-info,
.ceo-dash #alignment-info {
  padding: 0 20px 0px;
  margin-left: 0;
}

.about-box {
  padding: 10px 10px 10px 10px;
  border-bottom: 2px solid #bababa;
  min-height: 20px;
  background-color: #f2f2f2;
}
.about-box .about-title {
  margin: 0 0 0px 0;
  color: #00578e;
}
.about-box p {
  margin: 0 0 5px 0;
}
.about-box p.name {
  color: #00578e;
  font-size: 90%;
  text-transform: uppercase;
}
.about-box ul {
  margin: 0 0 5px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #d5d5d5;
}
.about-box li {
  border-bottom: 1px solid #fff;
  border-top: 1px solid #d5d5d5;
  list-style: none;
  padding: 1px 5px;
  font-size: 90%;
  font-weight: bold;
}
.about-box li .about-label {
  color: #555555;
  font-variant: small-caps;
  font-weight: normal;
}
.about-box li .about-norecord {
  color: #999999;
  font-style: italic;
  font-weight: normal;
}

.operating-position-info-title,
.alignment-info-title {
  font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, Arial, Helvetica,
    sans-serif;
  font-size: 12px;
  line-height: normal;
  padding: 8px 0 4px;
  color: #274b6d;
  text-align: center;
}

.info-item {
  /*padding: 4px 4px;*/
  border-bottom: 1px solid #dddddd;
}

.info-item .item-toggler {
  display: block;
  color: black;
  font-weight: bold;
  padding: 6px;
}
.info-item .item-toggler:hover {
  background-color: #eeeeee;
}
.info-item.success .item-toggler {
  color: #008000;
}
.info-item.partial-success .item-toggler {
  color: #ffa500;
}
.info-item.failure .item-toggler {
  color: #ff0000;
}
.info-item .item-toggler .score {
  float: right;
}

.info-item .item-body {
  display: none;
  padding: 0 15px 0 15px;
}

.info-item .item-body .details-hdr {
  margin: 0;
}

.info-item .item-body .details-grp {
  border-bottom: 1px dotted #ccc;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.info-item .item-body .details-grp:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.info-item .item-body .details-contact {
  margin-bottom: 8px;
}
.info-item .item-body .details-contact .details-hdr {
  font-weight: normal;
  font-variant: small-caps;
  color: #555555;
}

.info-item .team-btn {
  float: right;
}

.info-item .item-body .popover-title {
  font-size: 12px;
  font-variant: small-caps;
  font-weight: bold;
}
.info-item .item-body .popover-content {
  font-size: 12px;
}
.info-item .item-body .popover-content ol {
  margin: 0 0 10px 15px;
  padding: 0;
}

.licence-print-link {
  display: inline-block;
  float: right;
  margin-top: 15px;
}

.padder {
  padding: 10px;
}

.licenceTable {
}
.licenceTable th {
  text-align: right;
  font-weight: bold;
}
.licenceTable td {
  padding-left: 10px;
}

.ceo-dash #operating-position-main-info .widget-box,
.ceo-dash #alignment-info .widget-box {
  margin-top: 0;
  border: 3px solid #bababa;
  margin-bottom: 0px;
}
.ceo-dash #operating-position-main-info .widget-title,
.ceo-dash #alignment-info .widget-title {
  height: 28px;
}
.ceo-dash #operating-position-main-info .widget-title .icon,
.ceo-dash #alignment-info .widget-title .icon {
  padding: 4px 6px;
}
.ceo-dash #operating-position-main-info .widget-title h5,
.ceo-dash #alignment-info .widget-title h5 {
  padding: 8px;
}
.ceo-dash #operating-position-main-info .widget-title .buttons,
.ceo-dash #alignment-info .widget-title .buttons {
  margin: 3px 4px 0 0;
}
.ceo-dash #operating-position-main-info .widget-content,
.ceo-dash #alignment-info .widget-content {
  overflow-y: scroll;
  background-color: #ffffff;
}
.ceo-dash #operating-position-main-info .widget-content .new-update,
.ceo-dash #alignment-info .widget-content .new-update {
  background-color: #ffffff;
  padding: 5px 7px;
}
.ceo-dash #operating-position-main-info .widget-content .new-update.selected,
.ceo-dash #alignment-info .widget-content .new-update.selected {
  background-color: #fff1ad;
}
.ceo-dash #operating-position-main-info .widget-content .new-update:last-child,
.ceo-dash #alignment-info .widget-content .new-update:last-child {
  border-bottom: 1px solid #dddddd;
}
.ceo-dash #operating-position-main-info .widget-content .new-update i,
.ceo-dash #alignment-info .widget-content .new-update i {
  margin: 2px 5px 0 0;
}

.ceo-dash #operating-position-main-info .widget-content .new-update .details,
.ceo-dash #alignment-info .widget-content .new-update .details {
  font-size: 95%;
  line-height: 1.1em;
}

.success .info-link {
  color: #008000;
  text-decoration: none;
}
.partial-success .info-link {
  color: #ffa500;
  text-decoration: none;
}
.failure .info-link {
  color: #ff0000;
  text-decoration: none;
}
.incomplete .info-link {
  color: #454545;
  text-decoration: none;
}

.success .info-link:hover {
  text-decoration: underline;
}
.partial-success .info-link:hover {
  text-decoration: underline;
}
.failure .info-link:hover {
  text-decoration: underline;
}
.incomplete .info-link:hover {
  text-decoration: underline;
}

.info-link.disabled {
  cursor: default;
  text-decoration: none;
}
.info-link.disabled:hover {
  cursor: default;
  text-decoration: none;
}

.ceo-dash #operating-position-main-info .widget-content .update-done,
.ceo-dash #operating-position-main-info .widget-content .update-date,
.ceo-dash
  #operating-position-main-info
  .widget-content
  .update-date
  .update-day,
.ceo-dash #alignment-info .widget-content .update-done,
.ceo-dash #alignment-info .widget-content .update-date,
.ceo-dash #alignment-info .widget-content .update-date .update-day {
  font-size: 14px;
}
.ceo-dash #operating-position-main-info .widget-content .update-done,
.ceo-dash #alignment-info .widget-content .update-done {
  max-width: 75%;
}
.update-done .details-grp {
  /*border-top: 1px solid #cccccc;*/
  margin-top: 10px;
}
.update-done .details-grp:first-child {
  border-top: none;
  margin-top: 0;
}
.update-done .details-hdr {
  /*text-decoration: underline;*/
  margin: 0;
}
.update-done .details-hdr .btn {
  font-weight: normal;
}

#viewer {
  text-align: center;
}
#viewer img {
  width: 98%;
}

.ceo-dash #operating-position-main-info .widget-content .update-date,
.ceo-dash #alignment-info .widget-content .update-date {
  margin: 0;
  width: auto;
}

.ceo-dash
  #operating-position-main-info
  .widget-content
  .new-update.success
  .update-day,
.ceo-dash #alignment-info .widget-content .new-update.success .update-day {
  color: #008000;
}
.ceo-dash
  #operating-position-main-info
  .widget-content
  .new-update.partial-success
  .update-day,
.ceo-dash
  #alignment-info
  .widget-content
  .new-update.partial-success
  .update-day {
  color: #ffa500;
}
.ceo-dash
  #operating-position-main-info
  .widget-content
  .new-update.failure
  .update-day,
.ceo-dash #alignment-info .widget-content .new-update.failure .update-day {
  color: #ff0000;
}

#operating-position-main-info .toggle-list-details,
#alignment-info .toggle-list-details {
  cursor: pointer;
}

#columns .column ul {
  border-right: 1px solid #aaaaaa;
  /*overflow-y: auto;*/
}

.ceo-dash #columns .column ul li {
  font-weight: bold;
}
.ceo-dash #columns .column ul li.success {
  color: #008000;
}
.ceo-dash #columns .column ul li.partial-success {
  color: #ffa500;
}
.ceo-dash #columns .column ul li.failure {
  color: #ff0000;
}
.ceo-dash #columns .column ul li.success.active {
  color: #008000;
}
.ceo-dash #columns .column ul li.partial-success.active {
  color: #ffa500;
}
.ceo-dash #columns .column ul li.failure.active {
  color: #ff0000;
}
.ceo-dash #columns .column ul li:hover {
  color: #ffffff;
}
.ceo-dash #columns .column ul li.active:hover {
  color: #000000;
}

.column ul li:hover i,
.column ul li.active:hover i,
.ceo-dash #columns .column ul li:hover i,
.ceo-dash #columns .column ul li.active i,
.ceo-dash #columns .column ul li.active:hover i {
  background: none;
}
.ceo-dash #columns .column p {
  margin: 0;
  padding: 1px 2px;
  display: inline;
}

#columns .column ul li .node-label {
  display: inline;
}

#container-selectors {
  margin: 5px;
  display: inline-block;
}
#container-selectors span {
  display: inline-block;
  color: #878787;
  margin-right: 7px;
  font-size: 12px;
}
#container-selectors label.inline {
  padding: 0;
}
#container-selectors label.inline input[type='checkbox'] {
  margin: 2px 4px 0 0;
}

#app-spinner {
  display: inline-block;
  margin: 14px 0 0 8px;
}

.label-governance {
  background-color: #45003d;
}
.label-delivery {
  background-color: #0022ff;
}
.label-task {
  background-color: #4d4d4d;
}
.label-milestone {
  background-color: #7a2800;
}
.label-caravel {
  background-color: #006eb7;
}

.label-caravel.narrow {
  width: 1em;
  text-align: center;
}

.user-role-controls span input[type='radio'] {
  margin: 0 0 3px 10px;
}
.permissions-table label {
  margin-bottom: 0;
}
.permissions-table input[type='checkbox'] {
  /*margin: 0 0 3px 10px;*/
  margin: 3px 3px 0 0;
}
.permissions-table .select-functions {
  padding-left: 20px;
}

#userTabs,
#portfolioTabs,
#programmeTabs {
  margin-bottom: 0;
  padding: 0;
}
#userTabsContent .role-tab-content,
#portfolioTabsContent .contact-tab-content,
#programmeTabsContent .contact-tab-content {
  padding: 20px;
}
#userTabsContent .role-tab-content li,
#portfolioTabs .contact-tab-content li,
#programmeTabs .contact-tab-content li {
  list-style: none;
}
#userTabsContent .role-tab-content li input[type='checkbox'] {
  margin-bottom: 5px;
}

.display-field {
  display: block;
  padding-top: 5px;
}

.highcharts-contextmenu hr {
  margin: 5px 0;
}

.orgchart-container {
  overflow: auto;
}

#projChart {
  min-height: 500px;
}
#projChart .google-visualization-orgchart-node {
  cursor: pointer;
}

#orgchartInternal,
#orgchartExternal {
  padding: 10px;
  min-height: 250px;
}
.scaffold-structure .google-visualization-orgchart-table {
  border-collapse: separate;
}
.scaffold-structure .google-visualization-orgchart-node {
  white-space: nowrap;
  vertical-align: top;
  text-align: center;
}
.scaffold-structure .google-visualization-orgchart-node .title {
  font-weight: bold;
  display: inline-block;
  text-align: center;
  color: #00578e;
}

.scaffold-structure .google-visualization-orgchart-node.Portfolio .title {
  color: #ffffff;
}

.google-visualization-orgchart-node.Portfolio {
  background-color: #006eb7;
}
.google-visualization-orgchart-node.Programme {
  background-color: #b5d9ea;
}
.google-visualization-orgchart-node.Project {
  background-color: #edf7ff;
}

.scaffold-structure .google-visualization-orgchart-node .employee-list {
  margin: 0;
  padding: 0;
  /*display: none;*/
  text-align: left;
}
.scaffold-structure .google-visualization-orgchart-node .employee-list li {
  list-style: none;
  line-height: 10px;
  margin: 0;
  padding: 0;
}
.scaffold-structure
  .google-visualization-orgchart-node
  .employee-list
  li
  .employee {
  display: inline-block;
  margin: 0;
  padding: 2px;
}
.scaffold-structure
  .google-visualization-orgchart-node.Portfolio
  .employee-list
  li
  .employee
  a {
  color: #ffffff;
}
.scaffold-structure
  .google-visualization-orgchart-node.Portfolio
  .employee-list
  li
  .employee
  a:hover {
  color: #f3f3f3;
}

.scaffold-structure .accordion-body {
  overflow-x: auto;
}

#buUtilDialogTabNav {
  margin-bottom: 10px;
}

#ppp-hierarchy {
  margin: 0;
  min-height: 500px;
}
#ppp-hierarchy .w {
  width: 8em;
  padding: 4px 20px 4px 4px;
  position: absolute;
  border: 1px solid black;
  z-index: 4;
  border-radius: 1em;
  border: 1px solid #2e6f9a;
  box-shadow: 2px 2px 19px #e0e0e0;
  -o-box-shadow: 2px 2px 19px #e0e0e0;
  -webkit-box-shadow: 2px 2px 19px #e0e0e0;
  -moz-box-shadow: 2px 2px 19px #e0e0e0;
  -moz-border-radius: 0.5em;
  border-radius: 0.5em;
  opacity: 0.8;
  filter: alpha(opacity=80);

  background-color: white;
  font-size: 11px;
  -webkit-transition: background-color 0.25s ease-in;
  -moz-transition: background-color 0.25s ease-in;
  transition: background-color 0.25s ease-in;
}
#ppp-hierarchy .w .dh {
  cursor: move;
  display: inline;
}
#ppp-hierarchy .w.portfolio {
  background-color: #999999;
}
#ppp-hierarchy .w.programme {
  background-color: #cccccc;
}
#ppp-hierarchy .w.project {
  background-color: #ffffff;
}

#ppp-hierarchy .aLabel {
  -webkit-transition: background-color 0.25s ease-in;
  -moz-transition: background-color 0.25s ease-in;
  transition: background-color 0.25s ease-in;
}

#ppp-hierarchy .aLabel._jsPlumb_hover,
#ppp-hierarchy .w.portfolio._jsPlumb_hover,
#ppp-hierarchy .w.programme._jsPlumb_hover,
#ppp-hierarchy .w.project._jsPlumb_hover,
#ppp-hierarchy .w.portfolio._jsPlumb_source_hover,
#ppp-hierarchy .w.portfolio._jsPlumb_target_hover,
#ppp-hierarchy .w.programme._jsPlumb_source_hover,
#ppp-hierarchy .w.programme._jsPlumb_target_hover,
#ppp-hierarchy .w.project._jsPlumb_source_hover,
#ppp-hierarchy .w.project._jsPlumb_target_hover {
  background-color: #5bb75b;
  color: white;
}

#ppp-hierarchy .aLabel {
  background-color: white;
  opacity: 0.8;
  padding: 0.3em;
  border-radius: 0.5em;
  border: 1px solid #346789;
  cursor: pointer;
}

#ppp-hierarchy .ep {
  position: absolute;
  bottom: 37%;
  right: 5px;
  width: 1em;
  height: 1em;
  background-color: orange;
  cursor: pointer;
  box-shadow: 0px 0px 2px black;
  -webkit-transition: -webkit-box-shadow 0.25s ease-in;
  -moz-transition: -moz-box-shadow 0.25s ease-in;
  transition: box-shadow 0.25s ease-in;
}
#ppp-hierarchy .ep:hover {
  box-shadow: 0px 0px 6px black;
}
#ppp-hierarchy ._jsPlumb_endpoint {
  z-index: 3;
}
#ppp-hierarchy .dragHover {
  border: 2px solid orange;
}
#ppp-hierarchy path {
  cursor: pointer;
}

.issuesTable input,
.issuesTable select {
  width: auto;
  margin-bottom: 0;
}

.eftuDefaults .last td {
  border-top: 1px solid #333;
  padding-top: 8px;
  margin-top: 10px;
}
.eftuDefaults label {
  margin: 0;
  padding: 0;
  font-size: 80%;
  font-weight: bold;
  text-align: center;
}
.eftuDefaults input,
.eftuDefaults .total {
  text-align: right;
}
.eftuDefaults .operator {
  padding: 0 10px 0 10px;
  font-weight: bold;
}

.widget-title > .icon {
  display: none;
}
.widget-title > h5 {
  font-size: 18px;
}

ul.one-to-many {
  margin: 0 0 10px 0;
}
ul.one-to-many li {
  list-style: none;
}
ul.one-to-many li.add {
  margin: 0 0 0 2px;
}

#dirtyFormModal {
  width: 400px;
  margin-left: -200px;
}
#dirtyFormModal .modal-body > ul {
  margin: 0;
}
#dirtyFormModal .modal-body li {
  vertical-align: top;
  display: table-cell;
  list-style: none;
}
#dirtyFormModal .modal-body p {
  margin: 0 0 12px 10px;
}
#dirtyFormModal .modal-body p:last-child {
  margin-bottom: 0;
}

.modal-body .control-group .control-label {
  width: 125px;
  font-weight: bold;
  text-align: right;
  float: left;
  margin-top: 6px;
}
.modal-body .control-group .controls {
  margin-left: 135px;
}

.control-group.no-b-border {
  border-bottom: none;
}

.sysInfoTable td label {
  font-weight: bold;
}

.sysInfoTable td label:after {
  content: ': ';
}

/* Sticky footer styles -------------------------------------------------- */
html,
body {
}

/* Wrapper for page content to push down footer */
#wrap {
  min-height: 100%;
  height: auto !important;
  height: 100%;
  /* Negative indent footer by it's height */
  margin: 0 auto -60px;
  overflow: auto;
}
#wrap #wrap-1st-child {
  margin-top: 40px;
}

/* Set the fixed height of the footer here */
#push,
#footer {
  height: 60px;
}

#footer {
  background-color: #f5f5f5;
}

/* Lastly, apply responsive CSS fixes as necessary */
@media (max-width: 767px) {
  #footer {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Fixes by KR (BlitzM - 28/2/2022) */
.graph-container {
  display: flex;
  flex-direction: column;
  flex: 2;
  min-height: 300px;
}

.info-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-height: 100vh;
  min-height: 300px;
}

.section-container {
  display: flex;
  flex: 1;
  flex-direction: row;
  background-color: rgb(245, 245, 245);
  padding: 20px 0px;
  margin-top: 10px;
  max-width: 1280px;
  min-height: 80vh;
  overflow-y: auto;
}

#body-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #eeeeee;
  min-height: 100vh;
}

#content {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  margin-top: 10px;
  max-width: 1280px;
}

#content-main {
  display: flex;
  flex-direction: column;
}

#header {
  display: flex;
  align-items: center;
  justify-content: center;
}

#header-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  padding: 0px 10px;
}

#tenant-logo {
  height: 31px; /* Bootstrap is fighting us */
}

#header-buttons {
}

/* DESKTOP */
@media only screen and (min-width: 768px) {
  .section-container {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .graph-container {
    min-width: 50%;
    max-width: 66vw;
  }
}

/* MOBILE */
@media only screen and (max-width: 767px) {
  .section-container {
    flex-direction: column;
    width: 100vw;
  }

  .graph-container {
    min-height: 100vw;
  }
}

/* qTip2 v2.2.1 | Plugins: viewport imagemap svg | Styles: core basic css3 | qtip2.com | Licensed MIT | Wed Nov 26 2014 20:38:33 */

.qtip{position:absolute;left:-28000px;top:-28000px;display:none;max-width:280px;min-width:50px;font-size:10.5px;line-height:12px;direction:ltr;box-shadow:none;padding:0}.qtip-content{position:relative;padding:5px 9px;overflow:hidden;text-align:left;word-wrap:break-word}.qtip-titlebar{position:relative;padding:5px 35px 5px 10px;overflow:hidden;border-width:0 0 1px;font-weight:700}.qtip-titlebar+.qtip-content{border-top-width:0!important}.qtip-close{position:absolute;right:-9px;top:-9px;z-index:11;cursor:pointer;outline:0;border:1px solid transparent}.qtip-titlebar .qtip-close{right:4px;top:50%;margin-top:-9px}* html .qtip-titlebar .qtip-close{top:16px}.qtip-icon .ui-icon,.qtip-titlebar .ui-icon{display:block;text-indent:-1000em;direction:ltr}.qtip-icon,.qtip-icon .ui-icon{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;text-decoration:none}.qtip-icon .ui-icon{width:18px;height:14px;line-height:14px;text-align:center;text-indent:0;font:400 bold 10px/13px Tahoma,sans-serif;color:inherit;background:-100em -100em no-repeat}.qtip-default{border:1px solid #F1D031;background-color:#FFFFA3;color:#555}.qtip-default .qtip-titlebar{background-color:#FFEF93}.qtip-default .qtip-icon{border-color:#CCC;background:#F1F1F1;color:#777}.qtip-default .qtip-titlebar .qtip-close{border-color:#AAA;color:#111}.qtip-light{background-color:#fff;border-color:#E2E2E2;color:#454545}.qtip-light .qtip-titlebar{background-color:#f1f1f1}.qtip-dark{background-color:#505050;border-color:#303030;color:#f3f3f3}.qtip-dark .qtip-titlebar{background-color:#404040}.qtip-dark .qtip-icon{border-color:#444}.qtip-dark .qtip-titlebar .ui-state-hover{border-color:#303030}.qtip-cream{background-color:#FBF7AA;border-color:#F9E98E;color:#A27D35}.qtip-cream .qtip-titlebar{background-color:#F0DE7D}.qtip-cream .qtip-close .qtip-icon{background-position:-82px 0}.qtip-red{background-color:#F78B83;border-color:#D95252;color:#912323}.qtip-red .qtip-titlebar{background-color:#F06D65}.qtip-red .qtip-close .qtip-icon{background-position:-102px 0}.qtip-red .qtip-icon,.qtip-red .qtip-titlebar .ui-state-hover{border-color:#D95252}.qtip-green{background-color:#CAED9E;border-color:#90D93F;color:#3F6219}.qtip-green .qtip-titlebar{background-color:#B0DE78}.qtip-green .qtip-close .qtip-icon{background-position:-42px 0}.qtip-blue{background-color:#E5F6FE;border-color:#ADD9ED;color:#5E99BD}.qtip-blue .qtip-titlebar{background-color:#D0E9F5}.qtip-blue .qtip-close .qtip-icon{background-position:-2px 0}.qtip-shadow{-webkit-box-shadow:1px 1px 3px 1px rgba(0,0,0,.15);-moz-box-shadow:1px 1px 3px 1px rgba(0,0,0,.15);box-shadow:1px 1px 3px 1px rgba(0,0,0,.15)}.qtip-bootstrap,.qtip-rounded,.qtip-tipsy{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.qtip-rounded .qtip-titlebar{-moz-border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.qtip-youtube{-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 0 3px #333;-moz-box-shadow:0 0 3px #333;box-shadow:0 0 3px #333;color:#fff;border:0 solid transparent;background:#4A4A4A;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0,#4A4A4A),color-stop(100%,#000));background-image:-webkit-linear-gradient(top,#4A4A4A 0,#000 100%);background-image:-moz-linear-gradient(top,#4A4A4A 0,#000 100%);background-image:-ms-linear-gradient(top,#4A4A4A 0,#000 100%);background-image:-o-linear-gradient(top,#4A4A4A 0,#000 100%)}.qtip-youtube .qtip-titlebar{background-color:transparent}.qtip-youtube .qtip-content{padding:.75em;font:12px arial,sans-serif;filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr=#4a4a4a, EndColorStr=#000000);-ms-filter:"progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#4a4a4a,EndColorStr=#000000);"}.qtip-youtube .qtip-icon{border-color:#222}.qtip-youtube .qtip-titlebar .ui-state-hover{border-color:#303030}.qtip-jtools{background:#232323;background:rgba(0,0,0,.7);background-image:-webkit-gradient(linear,left top,left bottom,from(#717171),to(#232323));background-image:-moz-linear-gradient(top,#717171,#232323);background-image:-webkit-linear-gradient(top,#717171,#232323);background-image:-ms-linear-gradient(top,#717171,#232323);background-image:-o-linear-gradient(top,#717171,#232323);border:2px solid #ddd;border:2px solid rgba(241,241,241,1);-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 0 12px #333;-moz-box-shadow:0 0 12px #333;box-shadow:0 0 12px #333}.qtip-jtools .qtip-titlebar{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171, endColorstr=#4A4A4A);-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171,endColorstr=#4A4A4A)"}.qtip-jtools .qtip-content{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A, endColorstr=#232323);-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A,endColorstr=#232323)"}.qtip-jtools .qtip-content,.qtip-jtools .qtip-titlebar{background:0 0;color:#fff;border:0 dashed transparent}.qtip-jtools .qtip-icon{border-color:#555}.qtip-jtools .qtip-titlebar .ui-state-hover{border-color:#333}.qtip-cluetip{-webkit-box-shadow:4px 4px 5px rgba(0,0,0,.4);-moz-box-shadow:4px 4px 5px rgba(0,0,0,.4);box-shadow:4px 4px 5px rgba(0,0,0,.4);background-color:#D9D9C2;color:#111;border:0 dashed transparent}.qtip-cluetip .qtip-titlebar{background-color:#87876A;color:#fff;border:0 dashed transparent}.qtip-cluetip .qtip-icon{border-color:#808064}.qtip-cluetip .qtip-titlebar .ui-state-hover{border-color:#696952;color:#696952}.qtip-tipsy{background:#000;background:rgba(0,0,0,.87);color:#fff;border:0 solid transparent;font-size:11px;font-family:'Lucida Grande',sans-serif;font-weight:700;line-height:16px;text-shadow:0 1px #000}.qtip-tipsy .qtip-titlebar{padding:6px 35px 0 10px;background-color:transparent}.qtip-tipsy .qtip-content{padding:6px 10px}.qtip-tipsy .qtip-icon{border-color:#222;text-shadow:none}.qtip-tipsy .qtip-titlebar .ui-state-hover{border-color:#303030}.qtip-tipped{border:3px solid #959FA9;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-color:#F9F9F9;color:#454545;font-weight:400;font-family:serif}.qtip-tipped .qtip-titlebar{border-bottom-width:0;color:#fff;background:#3A79B8;background-image:-webkit-gradient(linear,left top,left bottom,from(#3A79B8),to(#2E629D));background-image:-webkit-linear-gradient(top,#3A79B8,#2E629D);background-image:-moz-linear-gradient(top,#3A79B8,#2E629D);background-image:-ms-linear-gradient(top,#3A79B8,#2E629D);background-image:-o-linear-gradient(top,#3A79B8,#2E629D);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8, endColorstr=#2E629D);-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8,endColorstr=#2E629D)"}.qtip-tipped .qtip-icon{border:2px solid #285589;background:#285589}.qtip-tipped .qtip-icon .ui-icon{background-color:#FBFBFB;color:#555}.qtip-bootstrap{font-size:14px;line-height:20px;color:#333;padding:1px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.qtip-bootstrap .qtip-titlebar{padding:8px 14px;margin:0;font-size:14px;font-weight:400;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.qtip-bootstrap .qtip-titlebar .qtip-close{right:11px;top:45%;border-style:none}.qtip-bootstrap .qtip-content{padding:9px 14px}.qtip-bootstrap .qtip-icon{background:0 0}.qtip-bootstrap .qtip-icon .ui-icon{width:auto;height:auto;float:right;font-size:20px;font-weight:700;line-height:18px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.qtip-bootstrap .qtip-icon .ui-icon:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.4;filter:alpha(opacity=40)}.qtip:not(.ie9haxors) div.qtip-content,.qtip:not(.ie9haxors) div.qtip-titlebar{filter:none;-ms-filter:none}

