@charset "utf-8";
/* CSS Document */
/* styles used in both admin panel and user websites */

/* Alignment CSS */
.ca {
	text-align: center;
}

.ra {
	text-align: right;
}

.la {
	text-align: left;
}

.it {
	font-style: italic;
}

.bt {
	font-weight: bold;
}

.nw {
	font-weight: normal;
}

.va-t {
	vertical-align: top;
}

.va-b {
	vertical-align: bottom;
}

.va-m {
	vertical-align: middle;
}

.nowrap {
	white-space: nowrap;
}

.nodisplay {
	display: none;
}

.float-r {
	float: right;
}

.float-l {
	float: left;
}

.ma {
	margin: auto;
}

.nolist {
	list-style: none;
}

ul.inlinelist li {
	display: inline;
}

.mt-10 {
	margin-top: 10px;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-15 {
	margin-bottom: 15px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-25 {
	margin-bottom: 25px;
}

.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

/* width classes */
.w-5 {
	width: 5%;
}

.w-10 {
	width: 10%;
}

.w-15 {
	width: 15%;
}

.w-20 {
	width: 20%;
}

.w-25 {
	width: 25%;
}

.w-30 {
	width: 30%;
}

.w-33 {
	width: 33%;
}

.w-35 {
	width: 35%;
}

.w-40 {
	width: 40%;
}

.w-45 {
	width: 45%;
}

.w-50 {
	width: 50%;
}

.w-55 {
	width: 55%;
}

.w-60 {
	width: 65%;
}

.w-65 {
	width: 65%;
}

.w-66 {
	width: 66%;
}

.w-70 {
	width: 70%;
}

.w-75 {
	width: 75%;
}

.w-80 {
	width: 80%;
}

.w-85 {
	width: 85%;
}

.w-90 {
	width: 90%;
}

.w-95 {
	width: 95%;
}

.w-99 {
	width: 99%;
}

.w-100 {
	width: 100%;
}

.success-box, .error-box, .info-box {
	border: 1px solid;
	margin: 10px 0px;
	padding: 15px 10px 15px 50px;
	background-repeat: no-repeat;
	background-position: 10px center;
	font-weight: bold;
}

.success-box {
	color: #4F8A10;
	background-color: #DFF2BF;
	background-image: url('/admin2/adminfiles/grfx/icon_success.png');
}

.error-box {
	color: #D8000C;
	background-color: #FFCECC;
	background-image: url('/admin2/adminfiles/grfx/icon_error.png');
}

.info-box {
	color: #00529B;
	background-color: #BDE5F8;
	background-image: url('/admin2/adminfiles/grfx/icon_info.png')
}

.img-border {
	padding: 1px;
	border: 1px solid #000;
}

.error-text {
	text-align: center;
	color: #F00;
	font-weight: bold;
}

/* form-table and data-table are used on all tables both on the websites and in the admin panel */
.center-table {
	border-collapse: separate;
	border-spacing: 0 !important;
	margin: 0 auto;
}

.right-table {
	border-collapse: separate;
	border-spacing: 0;
	margin-left: auto;
	margin-right: 0;
}

.form-table {
	border-collapse: separate;
	border-spacing: 0;
	margin: 0 auto;
}

.form-table td, .form-table th {
	padding: 5px;
}

.data-table {
	border-collapse: separate;
	border-spacing: 2px;
	margin: 0 auto;
}

.data-table td {
	padding: 3px;
}

.data-table th {
	font-weight: bold;
	padding: 4px;
}

.data-table th a {
	color: #000;
	text-decoration: none;
}

.data-table.light th a {
	color: #fff;
	text-decoration: none;
}

.data-table.dark th a {
	color: #000;
	text-decoration: none;
}

.data-table th a.sortable {
	background: url('/admin2/adminfiles/grfx/icon_sortable.png') no-repeat right;
	padding-right: 10px;
}

.data-table th a.sortable.asc {
	background: url('/admin2/adminfiles/grfx/icon_sort_asc.png') no-repeat right;
	padding-right: 10px;
}

.data-table th a.sortable.desc {
	background: url('/admin2/adminfiles/grfx/icon_sort_desc.png') no-repeat right;
	padding-right: 10px;
}

.data-table.table > tbody > tr > td {
	border-top: none;
}

.report-table {
	border-collapse: collapse;
	margin: 0 auto;
}

.report-table td {
	padding: 3px;
	border: solid 1px #000;
}

.report-table th {
	font-weight: bold;
	padding: 4px;
}

.report-table th a {
	color: #000;
	text-decoration: none;
}

.report-table.light th a {
	color: #FFF;
	text-decoration: none;
}

.report-table.dark th a {
	color: #000;
	text-decoration: none;
}

.report-table th a.sortable {
	background: url('/admin2/adminfiles/grfx/icon_sortable.png') no-repeat right;
	padding-right: 10px;
}

.report-table th a.sortable.asc {
	background: url('/admin2/adminfiles/grfx/icon_sort_asc.png') no-repeat right;
	padding-right: 10px;
}

.report-table th a.sortable.desc {
	background: url('/admin2/adminfiles/grfx/icon_sort_desc.png') no-repeat right;
	padding-right: 10px;
}

.report-table.table > tbody > tr > td {
	border-top: none;
}

/* form tool, validation stuff */
label {
	font-weight: bold;
}

label.rb-label {
	font-weight: normal;
}

input[type="file"] {
	display: inline-block;
}

img.required {
	position: relative;
	top: 2px;
	left: 2px;
}

/* web UI stuff */
#error {
	width: 570px;
	display: none;
}

#error .error-box {
	width: 85%;
	margin: 10px auto;
}

#error .errorimg {
	width: 150px;
	height: 115px;
	margin: auto;
}

#progressUpdate {
	width: 300px;
	margin: auto;
}

#alert {
	font-size: 16px;
}

#alertmsg {
	padding: 5px 20px;
}

#alert h3 {
	background-color: #eee;
	color: #666;
	position: relative;
	top: -5px;
}

.input-auto {
	width: auto;
}

.imgborder img, .doubleImgBorder {
	border: 1px solid #000000;
}

.form-note {
	font-style: italic;
	font-size: 11px;
}

/* form field styles */
input[type="submit"], input[type="button"], button {
	display: inline-block;
	margin-bottom: 0;
	font-weight: 400;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	background-image: none;
	white-space: nowrap;
	padding: 5px 10px;
	line-height: 1.42857143;
	border-radius: 4px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

input[type="text"], input[type="password"], textarea, select {
	padding: 3px 3px;
	line-height: 1.428571429;
	color: #000;
	vertical-align: middle;
	background-color: #ffffff;
	border: 1px solid #818181;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

input[type="text"], input[type="password"] {
	background: #eeeeee; /* Old browsers */
	background: -moz-linear-gradient(top, #eeeeee 0%, #ffffff 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee), color-stop(100%, #ffffff)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #eeeeee 0%, #ffffff 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #eeeeee 0%, #ffffff 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #eeeeee 0%, #ffffff 100%); /* IE10+ */
	background: linear-gradient(to bottom, #eeeeee 0%, #ffffff 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0); /* IE6-9 */

}

input[type="text"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder {
	color: #b7abb2;
}

input[type="text"].nograd {
	background-image: none;
}

input[type=radio], input[type=checkbox] {
	margin: 4px 0 0;
	margin-top: 1px;
	line-height: normal;
}

input[type="text"]:focus, input[type="password"]:focus, select:focus, textarea:focus {
	border-color: #66afe9;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

input:disabled, textarea:disabled, select:disabled, button:disabled {
	background: #aaa;
	border-color: #2b2b2b;
}

.viewprofiletable {
	border-collapse: collapse;
	background-color: #003366;
}

.viewprofiletable tr:nth-child(even) {
	background-color: #fff;
}

.viewprofiletable tr:nth-child(odd) {
	background-color: #E4E4E4;
}

.invoicetable > thead > tr > th {
	padding: 0 8px;
}

.invoicetable > tbody > tr > td {
	padding: 8px;
	vertical-align: top;
	border-bottom: 1px solid #ddd;
}

.invoicetable > tfoot > tr > td {
	padding: 8px;
	vertical-align: top;
}

.invoicetable > thead > tr > th {
	vertical-align: bottom;
	border-bottom: 2px solid #ddd;
	border-top: 0;
}

.relatedchild {
	background: url('/admin2/adminfiles/grfx/submenu1.gif') no-repeat;
	padding-left: 26px;
	margin-top: 3px;
}

.modal-dialog {
	width: 800px;
}

.bootbox .modal-dialog {
	width: 600px;
}

.pagingcontainer {
	margin: 15px 0;
}

.upper {
	text-transform: uppercase;
}

/* line break for login/logout */
.loginLinBreak::after {
	content: "\A";
	white-space: pre;
}

.table-content {
	border-collapse: collapse;
}

.table-content td {
	padding: 3px 3px 3px 0;
}

label {
	margin-bottom: 0;
}

#pnlChildList ul {
	list-style: none;
	padding-left: 0;
}

#pnlChildList ul > li {
	padding-left: 10px;
}

#pnlChildList ul ul {
	padding-left: 10px;
}

#pnlChildList ul ul li:before {
	content: "--- ";
}

@media print {
	a[href]:after {
		content: none !important;
	}
}