body {
	padding: 30px 50px;
}

h3 a {
	color: #333;
	cursor: pointer;
}
h3 a:hover,
h3 a:focus {
	text-decoration: none;
}

code {
	background-color: #f5f5f5;
	border-radius: 0;
	-webkit-box-decoration-break: clone;
	-ms-box-decoration-break: clone;
	box-decoration-break: clone;
	color: #5b5b5b;
}
code:hover {
	color: #337ab7;
}

.label {
	border-radius: 0;
	font-weight: normal !important;
	margin-right: 1px;
	padding-top: 0.4em;
}

.count {
	font-size: 12px;
}

.input-wrapper,
.last-wrapper {
	position: absolute;
	right: 50px;
	text-align: right;
}
.last {
	font-size: 10px;
}

.clear {
	clear: both;
}

.table-bordered {
	border-radius: 0;
}

th {
    outline: none;
	white-space: nowrap;
}
th.collapsed > div {
	color: #ccc;
}

table.dataTable {
	margin-bottom: 10px !important;
}
table.dataTable thead .sorting {
	background-image: url("../img/unsorted.png");
	background-position: 8px center;
	background-repeat: no-repeat;
	background-size: 10px;
	padding-left: 25px !important;
}
table.dataTable thead .sorting_asc {
	background-image: url("../img/sortUp.png");
	background-position: 8px center;
	background-repeat: no-repeat;
	background-size: 10px;
	padding-left: 25px !important;
}
table.dataTable thead .sorting_desc {
	background-image: url("../img/sortDown.png");
	background-position: 8px center;
	background-repeat: no-repeat;
	background-size: 10px;
	padding-left: 25px !important;
}


table.tablesorter th,
table.tablesorter td {
	padding-left: 22px !important;
}
table.tablesorter th.tablesorter-header {
	background-image: url("../img/unsorted.png");
	background-position: 5px center;
	background-repeat: no-repeat;
	background-size: 10px;
	cursor: pointer;
}
table.tablesorter th.tablesorter-header.tablesorter-headerAsc {
	background-image: url("../img/sortUp.png");
}
table.tablesorter th.tablesorter-header.tablesorter-headerDesc {
	background-image: url("../img/sortDown.png");
}
table.tablesorter th.sorter-false {
	background-image: none;
}
table.tablesorter th.sorter-false,
table.tablesorter td.sorter-false,
table.tablesorter td.sorter-false td {
	padding-left: 0 !important;
}


.loading {
	display: inline-block;
	position: relative;
	top: -2px;
}
.circle {
	background-color: #ccc;
	float: left;
	margin-right: 3px;
	opacity: 0.3;
	width: 5px;
	height: 5px;
	-webkit-animation-name:            loader;
	-moz-animation-name:               loader;
	animation-name:                    loader;
	-webkit-border-radius:             10px;
	-moz-border-radius:                10px;
	-ms-border-radius:                 10px;
	border-radius:                     10px;
 	-webkit-animation-duration:        1.5s;
 	-moz-animation-duration:           1.5s;
 	animation-duration:                1.5s;
 	-webkit-animation-iteration-count: infinite;
 	-moz-animation-iteration-count:    infinite;
 	animation-iteration-count:         infinite;
 	-webkit-animation-direction:       normal;
 	-moz-animation-direction:          normal;
 	animation-direction:               normal;
}
.circle-1 {
 	-webkit-animation-delay: .3s;
 	-moz-animation-delay:    .3s;
 	animation-delay:         .3s;
}
.circle-2 {
	-webkit-animation-delay: .6s;
	-moz-animation-delay:    .6s;
	animation-delay:         .6s;
}
.circle-3 {
	-webkit-animation-delay: .9s;
	-moz-animation-delay:    .9s;
	animation-delay:         .9s;
}
@-webkit-keyframes loader {
	0% {
		opacity: 0.3;
	}
	50% {
		background-color: #111;
		opacity: 1;
	}
	100% {
		opacity: 0.3;
	}
}
@-moz-keyframes loader {
	0% {
		opacity: 0.3;
	}
	50% {
		background-color: #111;
		opacity: 1;
	}
	100% {
		opacity: 0.3;
	}
}
@-ms-keyframes loader {
	0% {
		opacity: 0.3;
	}
	50% {
		background-color: #111;
		opacity: 1;
	}
	100% {
		opacity: 0.3;
	}
}
@keyframes loader {
	0% {
		opacity: 0.3;
	}
	50% {
		background-color: #111;
		opacity: 1;
	}
	100% {
		opacity: 0.3;
	}
}
