		.btn-primary, .btn-primary:active, .btn-primary:visited {
			background-color: #F58634 !important;
			border-color: #BD6700 !important;
		}

		.btn-primary:hover {
			background-color: #BD6700 !important;
			border-color: #BD6700 !important;
		}

		.pagination > li > a
		{
			background-color: white;
			color: #F58634 !important;
		}

		.pagination > li > a:focus,
		.pagination > li > a:hover,
		.pagination > li > span:focus,
		.pagination > li > span:hover
		{
			color: #5a5a5a  !Important;
			background-color: #eee !Important;
			border-color: #ddd  !Important;
		}

		.pagination > .active > a
		{
			color: white !Important;

			background-color: #F58634 !Important;
			border: solid 1px #BD6700 !Important;
		}

		.pagination > .active > a:hover
		{
			background-color: #F58634 !important;
			border: solid 1px #BD6700 !important;
		}

		.modal-header
		{
			/*color: #F58634 !important;*/
			padding:9px 15px;
			border-bottom:1px solid #eee;
			background-color: #F58634 !important;
		}

		.jumbotron{
			/*background-color:#2E2D88;*/
			background-color:#F58634 !important;
			color:white;
		}
		/* Add borders for tabs */
		.tab-content {
			border-left: 1px solid #ddd;
			border-right: 1px solid #ddd;
			border-bottom: 1px solid #ddd;
			padding: 10px;
		}
		.nav-tabs {
			margin-bottom: 0;
		}

		.flex-container {
			display: flex;
			flex-wrap: wrap;
		}

		.flex-container > div {
			width: 300px;
			margin: 20px;
			text-align: center;
			line-height: 75px;
			font-size: 30px;
		}


		.zoom {
			/*padding: 5px;*/
			/*background-color: green;*/
			transition: transform .2s; /* Animation */
			/*width: 30px;*/
			/*height: 30px;*/
			/*margin: 0 auto;*/
		}

		.zoom:hover {
			transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
		}