/* Minification failed. Returning unminified contents.
(44,17): run-time error CSS1030: Expected identifier, found 'a'
(44,18): run-time error CSS1031: Expected selector, found ')'
(44,18): run-time error CSS1025: Expected comma or open brace, found ')'
 */
/**
	This file is to be used only to override any default styling in bootstrap.css
*/


* {
	box-sizing: content-box;
}

hr {
	margin-top: 6px;
	margin-bottom: 6px;
	border-color: black;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-weight: bold;
	line-height: inherit;
}

input, textarea {
	color: black;
	font-size: 13px;
}

label {
	font-weight: normal;
	margin-bottom: 0;
}

legend {
	margin-bottom: 0;
}

.badge.badge-nav {
	background-color: #0065A4;
	padding: 5px;
	border-radius: 50%;
	font-weight: normal;
	font-size: 11px;
}

a.btn:not(table a) {
	padding: 6px 12px;
}

.btn {
	padding: 0;
	font-size: 12px;
}

.close {
	font-size: inherit;
}

.dropdown-menu {
	border-radius: 0;
}

.dropdown-menu > li > a:hover {
	background-color: #E6E6E6;
}

.label {
	display: inherit;
	padding: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
	text-align: inherit;
	white-space: inherit;
	vertical-align: inherit;
	border-radius: inherit;
}

.modal-footer .btn {
	padding: 6px 12px;
}

.row {
	margin-left: 0;
	margin-right: 0;
}

.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, 
.table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
	line-height: normal;
	border-top: none;
}

.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, 
.table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td

a.close {
	font-size: inherit;
	font-weight: normal;
	line-height: normal;
	color: #1C6EA6;
	text-shadow: none;
	opacity: 1;
}

.tooltip {
    display: inline;
    opacity: inherit;
    position: inherit;
}

/* 
	For some bizarre reason bootstrap adds the URL to all printed links, which seriously messes up the pages.
	This cancels that
*/
@media print {
	a[href]:after {
		content: none;
	}

	/* Bootstrap's continued printing inanity includes making the bg color transparent, which causes modals to not show correctly */
	*, *:before, *:after {
		background-color: #FFFFFF !important;
		background-color: rgba(255,255,255,255) !important;
	}
}
