/* Basic Setup */
html, body {
	padding: 0;
	margin: 0;
	color: #4C5257;
	background-color: white;
}
.invisible {
	visibility: hidden;
}

/* Font Setup */
h3, h4, h5, h6, p, ul, ol, li {
	line-height: 1.5em !important;
}
h1, h2, h3, h4, h5, h6, strong, em, p, span, a, button, label, tr, td, ul, ol, li, input, textarea, select, option {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
p {
	font-size: 1.1em;
}
.uppercase {
	text-transform: uppercase;
}
.lowercase {
	text-transform: lowercase;
}
.capitalize {
	text-transform: capitalize;	
}
.bold {
	font-weight: bold;
}
.light {
	font-weight: lighter;
}
.no-hover-decoration:hover {
	text-decoration: none;
}
span.avoidwrap {
	display: inline-block;
}
.nav-container a {
	text-decoration: none;
}
.nav-container a:hover {
	text-decoration: none;
}
.jumbotron {
	margin: 0;
	padding: 0;
	padding-left: 0 !important;
	padding-right: 0 !important;
	background: transparent;
}

/* Color Scheme Setup */
.color-transparent {
	color: transparent;
}
.color-white {
	color: white;
}
.color-gray {
	color: #BFBFBF;
}
.color-black {
	color: #4C5257;
}
.bg-color-white {
	background-color: white;
	text-shadow: none;
}
.bg-color-transparent {
	background-color: transparent;
	text-shadow: none;
}
.bg-color-gray {
	background-color: #BFBFBF;
	text-shadow: none;
}
.bg-color-black {
	background-color: #4C5257;
	text-shadow: none;
}
.hover-bg-color-white:hover, .hover-bg-color-white:focus {
	background-color: white !important;
	text-shadow: none;
	transition: all 0.1s ease-out 0s;
	-webkit-transition: all 0.1s ease-out 0s;
	-moz-transition: all 0.1s ease-out 0s;
	-o-transition: all 0.1s ease-out 0s;
}
.hover-bg-color-transparent:hover, .hover-bg-color-transparent:focus {
	background-color: transparent !important;
	text-shadow: none;
	transition: all 0.1s ease-out 0s;
	-webkit-transition: all 0.1s ease-out 0s;
	-moz-transition: all 0.1s ease-out 0s;
	-o-transition: all 0.1s ease-out 0s;
}
.hover-bg-color-gray:hover, .hover-bg-color-gray:focus {
	background-color: #BFBFBF !important;
	text-shadow: none;
	transition: all 0.1s ease-out 0s;
	-webkit-transition: all 0.1s ease-out 0s;
	-moz-transition: all 0.1s ease-out 0s;
	-o-transition: all 0.1s ease-out 0s;
}
.hover-bg-color-black:hover, .hover-bg-color-black:focus {
	background-color: #4C5257 !important;
	text-shadow: none;
	transition: all 0.1s ease-out 0s;
	-webkit-transition: all 0.1s ease-out 0s;
	-moz-transition: all 0.1s ease-out 0s;
	-o-transition: all 0.1s ease-out 0s;
}
.hover-color-transparent:hover, .hover-color-transparent:focus {
	color: transparent !important;
	transition: all 0.1s ease-out 0s;
	-webkit-transition: all 0.1s ease-out 0s;
	-moz-transition: all 0.1s ease-out 0s;
	-o-transition: all 0.1s ease-out 0s;
}
.hover-color-white:hover, .hover-color-white:focus {
	color: white !important;
	transition: all 0.1s ease-out 0s;
	-webkit-transition: all 0.1s ease-out 0s;
	-moz-transition: all 0.1s ease-out 0s;
	-o-transition: all 0.1s ease-out 0s;
}
.hover-color-gray:hover, .hover-color-gray:focus {
	color: #BFBFBF !important;
	transition: all 0.1s ease-out 0s;
	-webkit-transition: all 0.1s ease-out 0s;
	-moz-transition: all 0.1s ease-out 0s;
	-o-transition: all 0.1s ease-out 0s;
}
.hover-color-black:hover, .hover-color-black:focus {
	color: #4C5257 !important;
	transition: all 0.1s ease-out 0s;
	-webkit-transition: all 0.1s ease-out 0s;
	-moz-transition: all 0.1s ease-out 0s;
	-o-transition: all 0.1s ease-out 0s;
}

/* Spacing settings */
.padding-sides-none {
	padding-left: 0;
	padding-right: 0;
}
.padding-sides-normal {
	padding-left: 15px;
	padding-right: 15px;
}
.padding-sides {
	padding-left: 30px;
	padding-right: 30px;
}
.margin-sides-none {
	margin-left: 0;
	margin-right: 0;
}
.margin-sides-normal {
	margin-left: 15px;
	margin-right: 15px;
}
.margin-sides {
	margin-left: 30px;
	margin-right: 30px;
}
.margin-big {
	margin: 60px;
}
.margin-mid {
	margin: 30px;
}
.margin-small {
	margin: 10px;
}
.margin-top-big {
	margin-top: 60px;
}
.margin-top-mid {
	margin-top: 30px;
}
.margin-top-small {
	margin-top: 10px;
}
.margin-bottom-big {
	margin-bottom: 60px;
}
.margin-bottom-mid {
	margin-bottom: 30px;
}
.margin-bottom-small {
	margin-bottom: 10px;
}
.margin-top-bottom-big {
	margin-bottom: 60px;
	margin-top: 60px;
}
.margin-top-bottom-mid {
	margin-bottom: 30px;
	margin-top: 30px;
}
.margin-top-bottom-small {
	margin-bottom: 10px;
	margin-top: 10px;
}
.padding-big {
	padding: 60px;
}
.padding-mid {
	padding: 30px;
}
.padding-small {
	padding: 10px;
}
.padding-top-big {
	padding-top: 60px;
}
.padding-top-mid {
	padding-top: 30px;
}
.padding-top-small {
	padding-top: 10px;
}
.padding-bottom-big {
	padding-bottom: 60px;
}
.padding-bottom-mid {
	padding-bottom: 30px;
}
.padding-bottom-small {
	padding-bottom: 10px;
}
.padding-top-bottom-big {
	padding-bottom: 60px;
	padding-top: 60px;
}
.padding-top-bottom-mid {
	padding-bottom: 30px;
	padding-top: 30px;
}
.padding-top-bottom-small {
	padding-bottom: 10px;
	padding-top: 10px;
}
.no-margin-no-padding {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 0;
	margin-right: 0;
	margin: 0;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 0;
	padding-right: 0;
	padding: 0;
}
.no-margin {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 0;
	margin-right: 0;
	margin: 0;
}
.no-padding {
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 0;
	padding-right: 0;
	padding: 0;
}
.no-border {
	border: none;
}
.no-box-shadow {
	box-shadow: none;
}

.fit-content {
	width: auto;
}
.container-full {
	width: 100%;
}

.rounded-border {
	border-radius: 5px;
}

/* Responsive media queries padding / margin styles */
@media (max-width: 767px) {
	.padding-sides-normal-xs {
		padding-left: 15px;
		padding-right: 15px;
	}
	.padding-sides-mid-xs {
		padding-left: 30px;
		padding-right: 30px;
	}
	.padding-sides-big-xs {
		padding-left: 60px;
		padding-right: 60px;
	}
	.padding-sides-none-xs {
		padding-left: 0;
		padding-right: 0;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.padding-sides-normal-sm {
		padding-left: 15px;
		padding-right: 15px;
	}
	.padding-sides-mid-sm {
		padding-left: 30px;
		padding-right: 30px;
	}
	.padding-sides-big-sm {
		padding-left: 60px;
		padding-right: 60px;
	}
	.padding-sides-none-sm {
		padding-left: 0;
		padding-right: 0;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.padding-sides-normal-md {
		padding-left: 15px;
		padding-right: 15px;
	}
	.padding-sides-mid-md {
		padding-left: 30px;
		padding-right: 30px;
	}
	.padding-sides-big-md {
		padding-left: 60px;
		padding-right: 60px;
	}
	.padding-sides-none-md {
		padding-left: 0;
		padding-right: 0;
	}
}
@media (min-width: 1200px) {
	.padding-sides-normal-lg {
		padding-left: 15px;
		padding-right: 15px;
	}
	.padding-sides-mid-lg {
		padding-left: 30px;
		padding-right: 30px;
	}
	.padding-sides-big-lg {
		padding-left: 60px;
		padding-right: 60px;
	}
	.padding-sides-none-lg {
		padding-left: 0;
		padding-right: 0;
	}
}

/* Positioning Settings */
.vertically-and-horizontally-center {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform:translate(-50%, -50%);
	-moz-transform:translate(-50%, -50%);
	-ms-transform:translate(-50%, -50%);
	-o-transform:translate(-50%, -50%);
	transform:translate(-50%, -50%);
}
.vertically-center {
	position: absolute;
	top: 50%;
	-webkit-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	-o-transform:translateY(-50%);
	transform:translateY(-50%);
}
.horizontally-center {
	position: absolute;
	left: 50%;
	-webkit-transform:translateX(-50%);
	-moz-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	-o-transform:translateX(-50%);
	transform:translateX(-50%);
}
.just-below-center {
	position: absolute;
	top: 80%;
	left: 50%;
	-webkit-transform:translate(-50%, -50%);
	-moz-transform:translate(-50%, -50%);
	-ms-transform:translate(-50%, -50%);
	-o-transform:translate(-50%, -50%);
	transform:translate(-50%, -50%);
}
.abs-bottom {
	position: absolute;
	bottom: 0;
}
.abs-left {
	position: absolute;
	left: 0;
}
.abs-top {
	position: absolute;
	top: 0;
}
.abs-right {
	position: absolute;
	right: 0;
}
.img-center {
	margin-left: auto;
	margin-right: auto;
}

/* Button styles */
.btn {
	border-size: 2px;
}
.btn-xl {
	font-size: 26px;
	border-radius: 10px;
	padding: 12px 26px;
}
.btn-white {
	color: #4C5257;
	border: 2px solid white;
	background-color: white;
	background-image: none;
	text-decoration: none;
	text-shadow: none;
	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	word-wrap: break-word;
	white-space: normal;
}
.btn-white:hover {
	color: #4C5257;
	border: 2px solid #BFBFBF;
	background-color: #BFBFBF;
}
.btn-gray {
	color: #4C5257;
	border: 2px solid #BFBFBF;
	background-color: #BFBFBF;
	background-image: none;
	text-decoration: none;
	text-shadow: none;
	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	word-wrap: break-word;
	white-space: normal;
}
.btn-gray:hover {
	color: #4C5257;
	border: 2px solid white;
	background-color: white;
}
.btn-black {
	color: white;
	border: 2px solid #4C5257;
	background-color: #4C5257;
	background-image: none;
	text-decoration: none;
	text-shadow: none;
	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	word-wrap: break-word;
	white-space: normal;
}
.btn-black:hover {
	color: white;
	border: 2px solid #BFBFBF;
	background-color: #BFBFBF;
}
.btn-white-outline {
	color: white;
	border: 2px solid white;
	background-color: transparent;
	background-image: none;
	text-decoration: none;
	text-shadow: none;
	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	word-wrap: break-word;
	white-space: normal;
}
.btn-white-outline:hover {
	color: #4C5257;
	border: 2px solid white;
	background-color: white;
}
.btn-gray-outline {
	color: #BFBFBF;
	border: 2px solid #BFBFBF;
	background-color: transparent;
	background-image: none;
	text-decoration: none;
	text-shadow: none;
	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	word-wrap: break-word;
	white-space: normal;
}
.btn-gray-outline:hover {
	color: white;
	border: 2px solid #BFBFBF;
	background-color: #BFBFBF;
}
.btn-black-outline {
	color: #4C5257;
	border: 2px solid #4C5257;
	background-color: transparent;
	background-image: none;
	text-decoration: none;
	text-shadow: none;
	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	word-wrap: break-word;
	white-space: normal;
}
.btn-black-outline:hover {
	color: white;
	border: 2px solid #4C5257;
	background-color: #4C5257;
}
.btn-pri {
	background-image: none;
	color: white;
	text-decoration: none;
	text-shadow: none;
	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	word-wrap: break-word;
	white-space: normal;
}
.btn-pri:hover {
	color: white;
}
.btn-sec {
	background-image: none;
	color: white;
	text-decoration: none;
	text-shadow: none;
	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	word-wrap: break-word;
	white-space: normal;
}
.btn-sec:hover {
	color: white;
}
.btn-ter {
	background-image: none;
	color: #4C5257;
	text-decoration: none;
	text-shadow: none;
	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	word-wrap: break-word;
	white-space: normal;
}
.btn-ter:hover {
	color: #4C5257;
}
.btn-pri-outline {
	background-image: none;
	background-color: transparent;
	text-decoration: none;
	text-shadow: none;
	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	word-wrap: break-word;
	white-space: normal;
}
.btn-pri-outline:hover {
	color: white;
}
.btn-sec-outline {
	background-image: none;
	background-color: transparent;
	text-decoration: none;
	text-shadow: none;
	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	word-wrap: break-word;
	white-space: normal;
}
.btn-sec-outline:hover {
	color: white;
}
.btn-ter-outline {
	background-image: none;
	background-color: transparent;
	text-decoration: none;
	text-shadow: none;
	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	word-wrap: break-word;
	white-space: normal;
}
.btn-ter-outline:hover {
	color: white;
}

/* Modal styling fix */
.modal-dialog {
	width: 100%;
	margin: 0;
}

.modal-content {
	border-radius: 0;
	border: 0;
	background-color: white;
	-webkit-box-shadow: 0 5px 15px rgba(0,0,0,0);
	-moz-box-shadow: 0 5px 15px rgba(0,0,0,0);
	-o-box-shadow: 0 5px 15px rgba(0,0,0,0);
	box-shadow: 0 5px 15px rgba(0,0,0,0);
}

/* Input styles */
.form-control {
	box-shadow: none;
	-webkit-box-shadow: none;
	border-width: 2px;
	padding: 10px 10px;
}
.form-control:focus {
	box-shadow: none;
	-webkit-box-shadow: none;
}
.input-group>.input-group-addon {
	border-width: 2px;
}

/* Cursor styles */
.cursor-pointer {
	cursor: pointer;
}

/* Text alignment styles */
.text-left-not-xs, .text-left-not-sm, .text-left-not-md, .text-left-not-lg {
	text-align: left;
}
.text-center-not-xs, .text-center-not-sm, .text-center-not-md, .text-center-not-lg {
	text-align: center;
}
.text-right-not-xs, .text-right-not-sm, .text-right-not-md, .text-right-not-lg {
	text-align: right;
}
.text-justify-not-xs, .text-justify-not-sm, .text-justify-not-md, .text-justify-not-lg {
	text-align: justify;
}

@media (max-width: 767px) {
	.text-left-not-xs, .text-center-not-xs, .text-right-not-xs, .text-justify-not-xs {
		text-align: inherit;
	}
	.text-left-xs {
		text-align: left;
	}
	.text-center-xs {
		text-align: center;
	}
	.text-right-xs {
		text-align: right;
	}
	.text-justify-xs {
		text-align: justify;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.text-left-not-sm, .text-center-not-sm, .text-right-not-sm, .text-justify-not-sm {
		text-align: inherit;
	}
	.text-left-sm {
		text-align: left;
	}
	.text-center-sm {
		text-align: center;
	}
	.text-right-sm {
		text-align: right;
	}
	.text-justify-sm {
		text-align: justify;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.text-left-not-md, .text-center-not-md, .text-right-not-md, .text-justify-not-md {
		text-align: inherit;
	}
	.text-left-md {
		text-align: left;
	}
	.text-center-md {
		text-align: center;
	}
	.text-right-md {
		text-align: right;
	}
	.text-justify-md {
		text-align: justify;
	}
}
@media (min-width: 1200px) {
	.text-left-not-lg, .text-center-not-lg, .text-right-not-lg, .text-justify-not-lg {
		text-align: inherit;
	}
	.text-left-lg {
		text-align: left;
	}
	.text-center-lg {
		text-align: center;
	}
	.text-right-lg {
		text-align: right;
	}
	.text-justify-lg {
		text-align: justify;
	}
}

/* Equal height columns */
.row-eq-height-all {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

@media (max-width: 767px) {
	.row-eq-height-xs {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.row-eq-height-sm {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.row-eq-height-md {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
}
@media (min-width: 1200px) {
	.row-eq-height-lg {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
}

/* Animations http://codepen.io/fabriceleven/pen/gaWMqm */
@-webkit-keyframes fadeIn { from { opacity:0; opacity: 1\9; /* IE9 only */ } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; opacity: 1\9; /* IE9 only */ } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; opacity: 1\9; /* IE9 only */ } to { opacity:1; } }

.fade-in {
	opacity:0;
	-webkit-animation:fadeIn ease-in 1;
	-moz-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;

	-webkit-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;

	-webkit-animation-duration: 0.5s;
	-moz-animation-duration: 0.5s;
	animation-duration: 0.5s;
}

.fade-in.one {
	-webkit-animation-delay: 0.1s;
	-moz-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

.fade-in.two {
	-webkit-animation-delay: 0.3s;
	-moz-animation-delay:0.3s;
	animation-delay: 0.3s;
}

.fade-in.three {
	-webkit-animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

/* Table borders */
tr.borderless > td {
	border: none !important;
}
tr.borderless > th {
	border: none !important;
}


/* Tooltip modifications */
.tooltip {
	font-size: 14px;
}
.tooltip-inner {
	text-align: left;
	max-width: 300px;
	width: 300px; 
	font-size: 
}
