.body {
	background-color: #e6e6e6;
}

.body .form {
    background-color: #FFFFFF;
    margin-left: 2em;
    margin-right: 2em;
}

.body h4 {
	font-size: 150%;
}

/* Intended to change background color of a bootsfaces column*/
.body .gray {
	background-color: #e6e6e6;
}

/* Intended to change background color of a bootsfaces column*/
.body .red {
	background-color: #ffcccc;
}

/* Intended to change text color of h4 tag inside a bootsfaces column*/
.body .red h4 {
	color : #cc0000;	
}

/* Intended to change background color and border of a bootsfaces well*/
.body .blue {
	background-color: #ceebfd;
	border-color: #087cc4;
	border-style: solid;
	border-width: 1px
}

/* Intended to change background color and border of a bootsfaces well*/
.body .yellow {
	background-color: #ffffcc;
	border-color: #333300;
	border-style: solid;
	border-width: 1px
}

/* Intended to change background color and border of a bootsfaces well*/
.body .green {
	background-color: #cefdce;
	border-color: #047b04;
	border-style: solid;
	border-width: 1px
}

/* Intended to hide header of bootsfaces dataTable */
.body .transparent {
	background-color: #FFFFFF;
	border-style: none;
}

/* Intended to change spacing of jsf selectOneRadio */
.body .radioGroup {
	margin-top: .5em;
}

/* Intended to change spacing of jsf selectOneRadio */
.body .radioGroup label {
	padding-left: .5em;
	padding-right: 2em;
	font-weight: normal;
}

/* Intended to change spacing of jsf selectOneRadio with layout of page direction*/
.body .radioGroupPage label {
	padding-left: .5em;
	padding-right: 2em;
	font-weight: normal;
}

/* Intended to change spacing of jsf selectOneRadio */
.body .radioGroupTight label {
	padding-left: .5em;
	padding-right: 1em;
	font-weight: normal;
}

.titleWithNote {
    font-weight: normal;
    font-size: 13px;
    display:inline-block;
}

/* Intended to not have a background for a bootsfaces well */
.clear {
	background-color: #FFFFFF;
}

/* Intended to change spacing of a empty bootsfaces row*/
.row .empty{
	margin-bottom: 1em;
}

/* Intended to change css for file input so it looks like a bootsfaces button*/
.btn-file {
    position: relative;
    overflow: hidden;
}
/* Intended to change css for file input so it looks like a bootsfaces button*/
.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}

/* Update spacing between buttons of bootsfaces vertical button group*/
.btn-group-vertical .btn {
	margin-bottom: 3px;
}

/* Update label field used when bootsfaces validation fails */
.has-error {
	color: #ac2b37;
}

/* Used to indicate when upload/update has a warning */
.has-warning {
	color: #f2a900;
}

/* Used to indicate when upload/update is successful */
.is-success {
	color: #5cb85c;
}

/* Update height of bootsfaces progress bar */
.progress {
	height: 20px; 
}

/* Update width of bootsfaces horizontal slider */
.slider-horizontal {
	margin-left: 20px;
	margin-right: 20px;
}

.italic {
    font-style: italic;
}

/* Update image and location of bootsfaces scroll up link */
#scrollTop {
	background-image: url("../resources/images/top.png");
	background-size: 100%;
	opacity: 0.5;
    bottom: 75px;
    right: 50px;
    width: 50px; /* width of the background image */
    height: 50px; /* height of the background image */
}

/* Removed double drop down arrows on select drop downs in IE11 that was introduced with Bootsfaces 1.4.2 version */
/* https://github.com/tailwindcss/tailwindcss/issues/591 */
select::-ms-expand {
       display: none;
}

/* Removed the solid black line at the base of the datatables that was introduced with Bootsfaces 1.4.2 version */
table.dataTable.no-footer {
	border-bottom:1px solid #e9eaeb;
}

/* Removed the solid black line at the base of the datatables with scroll bars that was introduced with Bootsfaces 1.4.2 version */
.dataTables_wrapper.no-footer .dataTables_scrollBody {
	border-bottom:1px solid #e9eaeb;
}

/* Update to get the numbers in the "Show" page of data tables to be centered (CCUBS-8369) */
select.input-sm {
	line-height: 18px;
}
