h1, h2, h3, h4, h5, h6 {
	color: black;
}

#side-carousel img {
	margin: 0 auto;
}

.footer-blurb {
  padding: 30px 0;
  margin-top: 20px;
  background-color: #eee;
  color: black;
}

.footer-blurb-item {
  padding: 20px;
}

.small-print {
	background-color: #fff;
	padding: 30px 0;
}

.feature,
.page-intro,
.article-intro,
.small-print {
	text-align: center;
}

/*image hover*/

.thumbnail:hover {
	z-index: 1;
  position: relative;
  transform: scale(1.5);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/*radio button style*/
/* HIDE RADIO */
/* [type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  border: black;
} */

/* IMAGE STYLES */
[type=radio] + img {
  cursor: pointer;
}

/* CHECKED STYLES */
[type=radio]:checked + img {
  outline: 2px solid #ff8000;
}


/*custom button*/
.btn-grey
{
  background-color: #3F51B5;
  color:#FFF;
  border-color: #001588;
}
.btn-gery:hover, .btn-gery:focus, .btn-gery:active, .btn-grey.active, .open .dropdown-toggle.btn-grey {

  background-color: #808080;
  color:#FFF;
  border-color: #888888;
}


/*custom switch*/
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
