/* BOOTSTRAP PATCHES
************************************************************************/
/* * */
*:focus{ outline: none !important; }

/* headers */
h1, h2, h3, h4, h5, h6{ margin: 0; padding: 0; clear: both; }
h1, h2 ,h3{ margin-top: 15px; margin-bottom: 15px; }
h4, h5, h6{ margin-top: 10px; margin-bottom: 10px; }

/* grids */
.row.row-narrow{ margin-left: -5px; margin-right: -5px; }
	.row.row-narrow > div[class*=col-]{ padding-left: 5px; padding-right: 5px; }

/* form */
.btn-default{ background-color: #264e9d; border-color: #264e9d !important; border-radius: 0px; color: #fff; font-weight: 500; }
.btn-default:hover, .btn-default:focus{ background-color: #0e55a7; border-color: #0e55a7 !important; color: #fff; }

.form-control, .form-control:focus{ border-color: #abb7b7; border-radius: 0px; -webkit-appearance: none; resize: none; }
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control{ background-color: #fff; cursor: pointer; }

label{ font-weight: normal; }

/* img */
.img-responsive{ display: inline-block !important; }


/*  MEDIA QUERIES (ENABLE WHEN RESPONSIVE)
================================================================= */
/* Mobile */
@media (max-width: 767px){
	.container{ padding-left: 0px !important; padding-right: 0px !important; }
	.row{ margin-left: 0px; margin-right: 0px; }
		.row > div[class*=col-]{ padding-left: 5px; padding-right: 5px; }
		.row .row{ margin-left: -5px; margin-right: -5px; }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
	.container{ width: 748px !important; padding-left: 10px !important; padding-right: 10px !important; }
	.row{ margin-left: -10px; margin-right: -10px; }
		.row > div[class*=col-]{ padding-left: 10px; padding-right: 10px; }
}

/* Desktop */
@media (min-width: 992px) {
	.container{ width: 970px !important; }
}

/* Retina */
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) {
}



/*  NON-RESPONSIVE (ENABLE WHEN NON-RESPONSIVE)
================================================================= * /
.container{ width: 970px !important; min-width: 970px !important; }
/**/



/* Helper alert classes */
.modal { z-index: 9050; }
.modal-backdrop { z-index: 9040; }
.modal-header{ border-top-left-radius: 4px; border-top-right-radius: 4px; }
	.modal-header.danger{ background-color: #d9534f; color: #fff; }
	.modal-header.warning{ background-color: #f0ad4e; color: #fff; }
	.modal-header.info{ background-color: #5bc0de; color: #fff; }
	.modal-header.success{ background-color: #5cb85c; color: #fff; }


/* Callout classes */
.bs-callout{ margin: 10px; padding: 10px 20px; border-left: 3px solid #eee; }
	.bs-callout h4{ margin-top: 0; margin-bottom: 5px }
.bs-callout-danger{ background-color: #fdf7f7; border-color: #d9534f; color: #d9534f; }
	.bs-callout-danger h4{ color: #d9534f; }
.bs-callout-warning{ background-color: #fcf8f2; border-color: #f0ad4e; color: #f0ad4e; }
	.bs-callout-warning h4{ color: #f0ad4e; }
.bs-callout-info{ background-color: #f4f8fa; border-color: #5bc0de; color: #5bc0de; }
	.bs-callout-info h4{ color: #5bc0de; }
.bs-callout-success{ background-color: #f4f8fa; border-color: #5cb85c; color: #5cb85c; }
	.bs-callout-success h4{ color: #5cb85c; }