/*
Implementations Skeletor v3 - 5/10/2014

oustyles.css

Add styles to overwrite customer CSS, USE WITH CAUTION.

Contributors: cwilson
Last Updated: 1/2017
*/

/* This corrects the program page H1 strong nesting of an H1 ADA error. */
p.h1red {
	margin-top: 0;
	margin: 0.5em 0;
	font-family: "Gotham Narrow", "Futura", sans-serif;
	margin: 0.5em auto;
	text-align: left;
	font-size: 2.5em;
	font-weight: normal;
	color: #8A8177;
	border-bottom: 3px dotted #8A8177;
	text-transform: uppercase;
	font-weight: bold;
	color: #9C3442;
}

/* forms */

.form-group {
	padding-bottom: 10px !important;
}
fieldset {
	margin-bottom: 10px !important;					
}
fieldset > .form-group {
	padding-bottom: 0px !important;
}				
.radio {
	float: left !important;
	padding-right: 5px !important;
}
.checkbox {
	float: left !important;
	padding-right: 5px !important;
}
div.chosen-container {
	padding-left: 5px !important;
	padding-bottom: 5px !important;
}
div.chosen-container-single {
	padding-left: 5px !important;
	padding-bottom: 5px !important;
}
span.required {
	color: red;
}
/* added because of customer default text for 'Select Some Options` on multi-select element. */
ul.chosen-choices {
	width: 180px !important;
}
.form-group { 
	padding-top: 5px !important;
}
textarea.form-control {
	margin-left: 10px !important;
	width: 92%;
}
button.right{
	float: right !important;
}
/* customer request upon form review */
label.control-label {
    padding-bottom: 10px;
}

/* added for ou mashup filters (red box buttons)  */
div.button-group a button {
	text-decoration: none !important;
	text-transform: capitalize;
}
a.iso-active button {
	background: #64232B !important;
	color: white !important;
	outline-color: none !important; 
	top: 0;
	color: #fff;
	border-color: #64232B;
	background: #64232B;
	text-decoration: none;
	box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
	-webkit-transition-duration: 0s;
	-moz-transition-duration: 0s;
	transition-duration: 0s;
	cursor: default;
}

.input-group label {width: 100%;}






/* updates 2017-08 Jeanine Schoessler */
ul.social-nav .envelope a:before, #footer ul.social-nav .envelope a:before {
	content: '\f003';
}
ul.social-nav .user a:before, #footer ul.social-nav .user a:before {
	content: '\f007';
}
ul.social-nav .icon-webadvisor a:before, #footer ul.social-nav .icon-webadvisor a:before {
	content: '';
	display: none;
}
#top-bar ul.social-nav li {
	float: left;
}
ul.social-nav .user a, #footer ul.social-nav .user a {
	background-color: transparent;
	background-image: -webkit-linear-gradient(#4bbee4, #4bbee4);
	background-image: linear-gradient(#4bbee4, #4bbee4);
}
ul.social-nav .envelope a, #footer ul.social-nav .envelope a {
	background-color: transparent;
	background-image: -webkit-linear-gradient(#a8d645, #a8d645);
	background-image: linear-gradient(#a8d645, #a8d645);
}
ul.social-nav .icon-webadvisor a, #footer ul.social-nav .icon-webadvisor a {
	background-color: transparent;
	background-image: -webkit-linear-gradient(#ff9f19, #ff9f19);
	background-image: linear-gradient(#ff9f19, #ff9f19);
}
#top-bar ul.social-nav .call-details a {
	margin: 0;
}
#top-bar ul.social-nav .icon-webadvisor a:hover, #top-bar ul.social-nav .icon-webadvisor .sm:hover {
	position: relative;
	background-position: center center;
	display: block;
	z-index: 30;
}
.sm {
	position: relative;
}
.svg-icon {
	width: 80%;
	margin: 0 auto;
}
.svg-container {
	padding: 0;
	display: inline-block;
	position: relative;
	width: 100%;
	vertical-align: middle;
	text-align: center;
	height: 0;
	padding-bottom: 100%;
}
.svg-container svg {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}
.svg-container path, .svg-container polygon {
	display: table-cell
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	img[src*=".svg"] {
		width: 100%;
	}
}
@supports (-ms-accelerator:true) {
	img[src*=".svg"] {
		width: 100%
	}
}
/* search button */
@media only screen and (max-width: 750px) {
	#header form.search button.button-icon {
		z-index: 3;
		top: 2px;
	}
}
@media (max-width: 750px) {
	.svg-container {
		padding: 0;
		display: inline-block;
		position: relative;
		width: 100%;
		vertical-align: bottom;
		text-align: center;
		height: 0;
		padding-bottom: 100%;
		bottom: .1em;
	}
}
/* end updates 2017-08 Jeanine Schoessler */

/* Added for ticket #46989 to word-wrap the content */
.search-results {
    word-wrap: break-word;
}

/* Accordion Codepen Snippet #62522 */
.accordion-container{
  position: relative;
  width: 100%;
  height: auto;
  margin: 10px auto;
}
.set{
  position: relative;
  width: 100%;
  height: auto;
  background-color: #f5f5f5;
}
.set > a{
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #9C3442;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  -webkit-transition:all 0.2s linear;
  -moz-transition:all 0.2s linear;
  transition:all 0.2s linear;
}
.set > a i{
  float: right;
  margin-top: 2px;
}
.set > a.active{
  background-color:#9C3442;
  color: #fff;
}
.set-content{
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  display:none;
  padding: 10px 15px;
  margin: 0;
  color: #333;
}
