/**
 * @file
 *
 * Styling for the MS Women for Ag site.
 * Author: MSU Extension CTO
 * Author URI: http://techoutreach.msucares.com/
 */

/**
  * Import Bootstrap CSS
  * We have to do this, rather than using drupal_add_css(), to get the styles in CKEditor. Otherwise it won't look like the actual site with columns, etc.
  */
@import url("https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css");

/**
 * Border-Box Box Model Reset
 * see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

/**
 * Outdated Browser Message (for IE9 and below)
 * see http://browsehappy.com/
 */
.browsehappy {
  margin: 0 auto;
  font-size: 12px;
  text-align: center;
  background: #600;
  color: #fff;
  padding: 10px;
}
.browsehappy a {
  color: #fff;
}

/**
 * Responsive Media - Images, Video, Embeds, etc.
 * We want images and other fixed-width elements to always fit their container!
 */
img,
embed,
iframe,
object,
video,
svg {
	max-width: 100%;
}
img {
  height: auto;
}

/**
 * Most of the styles below are customized from Bootstrap's bootstrap.css, http://getbootstrap.com/
 * The typographic scale is from http://type-scale.com/ based on a base size of 14px and 1.200 - Minor Third scale
 */
body {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px; font-size: 0.875rem;
  line-height: 1.45;
  color: #222;
  background-color: #FFF;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  max-width: 100%;
}
a {
  color: #660000;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #660000;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all .2s ease-in-out;
       -o-transition: all .2s ease-in-out;
          transition: all .2s ease-in-out;
}
.img-circle { /* can be used to create an avatar with a rounded mask */
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}
.sr-only { /* hide for everyone except for screen readers with this class */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}

/**
 * Headings
 */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: inherit;
  font-weight: 300;
  line-height: 1.1;
  color: inherit;
}
h1 small, .h1 small, h1 .small, .h2 .small,
h2 small, .h2 small, h2 .small, .h3 .small,
h3 small, .h3 small, h3 .small, .h4 .small,
h4 small, .h4 small, h4 .small, .h5 .small,
h5 small, .h5 small, h5 .small, .h5 .small,
h6 small, .h6 small, h6 .small, .h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777;
}
h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 0;
  margin-bottom: 10px;
}
h1 small, .h1 small, h1 .small, .h1 .small,
h2 small, .h2 small, h2 .small, .h2 .small,
h3 small, .h3 small, h3 .small, .h3 .small {
  font-size: 65%;
}
h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small, .h4 small, h4 .small, .h4 .small,
h5 small, .h5 small, h5 .small, .h5 .small,
h6 small, .h6 small, h6 .small, .h6 .small {
  font-size: 75%;
}

h1, .h1 {
  font-size: 22.432px; font-size: 1.602rem;
  font-family: 'Lora', Georgia, serif;
  color: #3E4F15;
}
h2, .h2 {
  font-size: 19.936px; font-size: 1.424rem;
}
h3, .h3 {
  font-size: 17.712px; font-size: 1.266rem;
}
h3 a {
  line-height: 1.4;
}
h4, .h4 {
  font-size: 15.744px; font-size: 1.125rem;
}
h5, .h5 {
  font-size: 14px; font-size: 1rem;
}
h6, .h6 {
  font-size: 12.448px; font-size: 0.889rem;
}
.amp {
  font-style: italic;
}
@media only screen and (min-width: 992px) {
  h1, .h1 {
    font-size: 29.024px; font-size: 2.074rem;
  }
  h2, .h2 {
    font-size: 24.192px; font-size: 1.728rem;
  }
  h3, .h3 {
    font-size: 20.16px; font-size: 1.44rem;
  }
  h4, .h4 {
    font-size: 16.8px; font-size: 1.2rem;
  }
  h5, .h5 {
    font-size: 14px; font-size: 1rem;
  }
  h6, .h6 {
    font-size: 11.664px; font-size: 0.833rem;
  }
}
/* Remove margin-top on the first h2 inside a column */
.region-content div[class^='col-'] h2:first-child, .region-content div[class*=' col-'] h2:first-child {
  margin-top: 0;
}

/**
 * Lesser Text (Paragraphs, Mark, Small, etc.)
 */
p {
  margin: 0 0 18.2px; margin: 0 0 1.3rem;
}
.lead { /* make a paragraph stand out in the upper area of the page */
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}




/* Forms */
.form-required {
  color: #660000;
}
.form-item .description {
  font-size: .875rem; /* 14px */
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
}
.asterisk {
  color: #600;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 34px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 30px;
  line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-lg {
  height: 46px;
  line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}
.has-success .form-control-feedback {
  color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.333333px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}
/* Overwrite Drupal's styling on these elements. */

.btn-maroon {
  color: #FFF;
  background-color: #600;
  border-color: #600;
  text-decoration: none;
  border-radius: 0;
  -moz-transition: all .1s linear;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}
.btn-maroon:focus,
.btn-maroon.focus,
.btn-maroon:hover,
.btn-maroon:active,
.btn-maroon.active {
  background: #500;
  color: #fff;
}
.btn-secondary {
  color: #462c00;
  background-color: #F5A623;
  border-color: #F5A623;
  text-decoration: none;
  -moz-transition: all .1s linear;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary.active {
  background: #600;
  color: #fff;
  border-color: #600;
}
.btn-primary {
  color: #fff;
  background-color: #f5a623;
  border-color: #f5a623;
}
.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #e0911e;
  border-color: #e0911e;
}
.btn-primary:hover {
  color: #fff;
  background-color: #e0911e;
  border-color: #e0911e;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #e0911e;
  border-color: #e0911e;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #e0911e;
  border-color: #e0911e;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}

.btn-xl, .btn-group-xl > .btn {
  border-radius: 5px;
}
@media only screen and (min-width: 768px) {
  .btn-xl,
  .btn-group-xl > .btn {
    padding: 15px 20px;
    font-size: 21px;
    line-height: 1.5;
    border-radius: 10px;
  }
}

.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

/* Breadcrumbs */
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}
.breadcrumb > .active {
  color: #777;
}

/**
 * Header Area
 * All styles that are used in the Header Area go here, including media queries.
 */

.site-header {
  background: #444A28 url('images/hero-image.jpg') 60% 0% no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 698px) {
  .site-header {
    background-position: center center;
  }
}

/* Extension Logo Header */
.msues-logo-header {
  padding-top: 3px; padding-top: 0.1875rem;
  padding-bottom: 3px; padding-bottom: 0.1875rem;
}
.msues-logo-header p {
  margin: 0;
}
.msues-logo-header img {
  min-height: 50px;
}

/* MS Women for Ag Logo Header */
.mswomenforag-logo-header p {
  margin: 0;
}

/* Primary Menu */
.menu-link {
  display: block; color: #FFF; text-decoration: none; padding: 21px 15px; padding: 1.3125rem 0.9375rem; width: 70px; float: right;
}
.menu-link:hover, .menu-link:active, .menu-link:focus {
  background: #FFF; color: #600; text-decoration: none;
}
.main-menu {
  background-color: #660000;
  background-color: rgba(102, 0, 0, 0.9);
  position: relative;
}
.main-menu ul.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.main-menu ul.menu li, .main-menu ul.menu li.leaf {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-menu {
  position: static;
}
.header-menu .menu a {
  color: #FFFFFF;
  text-decoration: none;
  padding: 12px; padding: 0.75rem;
  display: block;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}
.header-menu .menu a:hover, .header-menu .menu a:active, .header-menu .menu a:focus {
  background-color: #550000;
  background-color: rgba(85,0,0,0.9);
  color: #FFF;
}
.header-menu .menu a.active, .header-menu .menu a.active-trail {
  background-color: #FFF;
  color: #600;
}

@media only screen and (max-width: 991px) {
  #block-menu-block-1 > ul, #block-menu-block-1 ul li ul {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    /* background-color: #f4f4f4; */
  }
  #block-menu-block-1 > ul.menu { padding: 0px; border: none; position: absolute; top: 62px; z-index: 1000; background-color: #660000; background-color: rgba(102, 0, 0, 0.9); right: 0; }
  #block-menu-block-1.active > ul {
    max-height: 55em;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

@media only screen and (min-width: 992px) {
  .menu-link {
    display: none;
  }
  .main-menu .row {
    max-width: 1170px;
    margin: 0 auto;
  }
  .header-menu .menu a {
    padding: 21px 12px; padding: 1.3125rem 0.75rem;
  }
  .main-menu ul.menu {

  }
  .main-menu ul.menu li, .main-menu ul.menu li.leaf {
/*     float: left; */
    display: table-cell;
  }
}

/* Header Background */
.region-header .row {
  padding-top: 16px; padding-top: 1rem;
  padding-bottom: 16px; padding-top: 1rem;
}
@media only screen and (min-width: 992px) {
  .region-header .row {
    max-width: 1170px;
    margin: 0 auto;
  }
}

/**
 * Content Area
 * All styles that are used in the Main Content area go here, including media queries.
 */
/*
 .region-content {
   padding: 0 20px; padding: 0 1.25rem;
 }
*/
.site-content {
  padding-top: 24px; padding-top: 1.5rem;
  padding-bottom: 32px; padding-bottom: 2rem;
}
.site-content a {
  border-bottom: 1px dotted #BBB;
}
.site-content a:hover, .site-content a:active, .site-content a:focus {
  text-decoration: none;
  border-bottom-color: #600;
}
.site-content a img, .site-content a:hover img {
  border: none;
}
.image-link {
  border: none !important;
}
@media only screen and (min-width: 992px) {

}

/* Front Page */
.front .site-main h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: 24px;
  line-height: 26px;
  text-align: center;
  color: #444A28;
}
.org-purpose {
  text-align: center;
}
.org-join {
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .front .site-main h2 {
    font-size: 28px;
    line-height: 32px;
  }
  .front .node-page {
    padding: 0 4em;
    background: url('images/wheat-ico-svg.svg') center left no-repeat, url('images/wheat-ico-svg.svg') center right no-repeat;
  }
  .org-purpose {
    padding: 0 12%;
  }
}

@media only screen and (min-width: 992px) {
  .org-purpose {
    font-size: 18px;
    line-height: 24px;
  }
}

@media only screen and (min-width: 1170px) {
  .front .site-main h2 {
    font-size: 42px;
    line-height: 46px;
  }
}

/* Board of Directors */

.staff-card {
  margin-bottom: 16px; margin-bottom: 1rem;
  overflow: hidden;
}
.staff-headshot {
  float: left;
  margin-right: 16px;
}
.staff-bio {
  clear: both;
}
.staff-bio h2 {
  padding-bottom: 8px; padding-bottom: 0.5rem;
  border-bottom: 1px solid #CCC;
  margin-bottom: 32px; margin-bottom: 2rem;
}
@media only screen and (min-width: 767px) {
  .staff-card:nth-child(2n+1) {
    clear: left;
  }
  .staff-headshot {
    float: left;
  }
  .staff-info {
    float: left;
    max-width: 50%;
  }
}
@media only screen and (min-width: 1200px) {
  .staff-card:nth-child(2n+1) {
    clear: none;
  }
  .staff-card:nth-child(3n+1) {
    clear: left;
  }
}
.staff-headshot {
  float: left;
/*   margin: 0 16px 0 0; margin: 0 1rem 0 0; */
}
.staff-info {

}
.staff-name {
  margin: 0;
}
.staff-position {
  margin: 5px 0; margin: 0.3125rem 0;
/*   font-size: 24.88px; font-size: 1.555rem; */
  font-style: italic;
/*   font-family: 'Open Sans Condensed', sans-serif; */
}
.staff-phone {
  margin: 5px 0; margin: 0.3125rem 0;
}
.staff-email {
  margin: 5px 0; margin: 0.3125rem 0;
/*
  word-break: break-all;
  word-wrap: break-word;
*/
}
.staff-email a {
  white-space: pre;           /* CSS 2.0 */
	white-space: pre-wrap;      /* CSS 2.1 */
	white-space: pre-line;      /* CSS 3.0 */
	white-space: -pre-wrap;     /* Opera 4-6 */
	white-space: -o-pre-wrap;   /* Opera 7 */
	white-space: -moz-pre-wrap; /* Mozilla */
	white-space: -hp-pre-wrap;  /* HP Printers */
	word-wrap: break-word;      /* IE 5+ */
}

/* Events */
.site-events {
  padding-top: 32px; padding-top: 2rem;
  padding-top: 32px; padding-bottom: 2rem;
}
.site-event {
  margin-bottom: 16px; margin-bottom: 1rem;
}
.site-event:last-child {
  margin-bottom: 0;
}
.view .date-nav-wrapper .date-prev {
  left: 0 !important;
  right: auto !important;
  margin: 0;
}
.view .date-nav-wrapper .date-prev a {
  margin-right: 10px;
}
.view .date-nav-wrapper .date-next a {
  margin-left: 10px;
}

/* News */
.site-news {
  padding-top: 32px; padding-top: 2rem;
  padding-top: 32px; padding-bottom: 2rem;
}
.site-news .views-row {
  margin-bottom: 16px; margin-bottom: 1rem;
}
.site-news .view-filters {
  padding-bottom: 10px;
  border-bottom: 1px solid #EEE;
  margin-bottom: 16px;
}

/* Webform CAPTCHAs */
.captcha.form-wrapper .fieldset-wrapper {
  margin-left: 0; margin-right: 0;
}

/**
 * Footer Area
 * All styles that are used in the Footer Area go here, including media queries.
 */
.site-footer {
  background: #4e611b url('images/green-fields-background.jpg') center center no-repeat;
  background-size: cover;
  padding-top: 24px;
  padding-bottom: 24px;
}
.site-footer h2 {
  font-size: 18px; font-size: 1.125rem;
  color: #FFF;
}
.site-footer a {
  color: #FFF;
}

/* Footer Logo */
.womenforag-logo-footer img {
  display: block;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .womenforag-logo-footer img {
    margin: 0;
  }
}

/* Footer Menu */
.footer-nav {
  margin-bottom: 12px; margin-bottom: 0.75rem;
}
.footer-nav h2 {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-nav h2 {
    display: block;
    font-size: 24.192px; font-size: 1.725rem;
  }
}
.footer-nav .menu {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-nav .menu li {
	list-style: none;
	margin: 0;
	text-align: center;
}
.footer-nav .menu li a {
  color: #FFF;
  font-size: 120%;
}
@media only screen and (min-width: 768px) {
  .footer-nav .menu li {
    text-align: left;
  }
}
@media only screen and (min-width: 992px) {
  .footer-nav .menu li {
    display: inline-block;
    margin-right: 5%;
  }
  .footer-nav .menu li:last-child {
    margin-right: 0;
  }
  .footer-nav .menu li a {
    font-size: 100%;
  }
}

/* MailChimp Subscribe Block */
.block-mailchimp-signup {
  color: #FFF;
}
.block-mailchimp-signup label {
  font-weight: normal;
}
.block-mailchimp-signup .form-actions {
  margin: 0;
}
.webform-component--newsletter-name {
  margin: -8px 0 8px 0; margin: -0.5rem 0 0.5rem 0;
}
.newsletter-fname, .newsletter-lname {
  margin-top: 0;
}

@media only screen and (max-width: 991px) {
  .block-mailchimp-signup {
    clear: both;
  }
}
@media only screen and (min-width: 992px) {
  .block-mailchimp-signup h2 {
    margin-top: 16px;
    margin-bottom: 0;
  }
}

/* Footer Extension Logo */
.msues-logo-footer {
  margin-top: 20px; margin-top: 1.25rem;
}
.msues-logo-footer img {
  display: block;
  margin: 0 auto;
}

/* Copyright & Legal */
.copyright {
  color: #FFF;
  text-align: center;
}
.copyright a {
  color: #FFF;
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .copyright {
    padding-top: 32px; padding-top: 2rem;
  }
}

/* Social Networking Block */
.social-networking-links {
  text-align: center;
}
.view-social-networking-links ul {
  padding: 0;
  margin: 12px 0;
  text-align: center;
}
.view-social-networking-links ul li {
  list-style: none;
  display: inline-block;
  margin: 0 0 0 5px;
}
.view-social-networking-links ul li a {
  display: block;
}

/*
==========================================================================
 3. Component Rules ("Modules" in SMACSS)
 This section contains CSS that is related to components, often reusable,
 that can be used anywhere in a layout. This should be the bulk of the CSS.
 Components may be prepended with .component-name, e.g., .button--primary.
==========================================================================
*/

/**
 * MWA Conference Registration Image
 */
.registration-form {
  max-width: 250px;
  box-shadow: 0 0 10px black;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .registration-form {
    position: absolute;
    top: 10px;
    right: 0;
  }
}

/**
 * Draggable Views Styles
 */
.draggable a.tabledrag-handle {
  margin-left: 0;
  border: none;
  height: auto;
}
.draggable a.tabledrag-handle .handle {
  background-position: 0px 3px;
}
.draggable a.tabledrag-handle-hover .handle {
  background-position: 0px -17px;
}
.draggable td, .draggable th {
  vertical-align: middle;
  padding: 8px 10px;
  border: 0;
  color: #000;
}
.draggable .even, .draggable .odd {
/*
  border-style: solid;
  border-color: #ddd;
*/
  background: #f3f4ee;
  transition: all, 0.15s;
}
.draggable .odd {
  background: #FFF;
}
a.tabledrag-handle .handle {
/*   background: url(../../misc/draggable.png) no-repeat 6px 9px; */
  height: 21px;
  margin: 0;
  padding: 0;
  width: 21px;
}

.webform-component label {
  /* display: block; */
}

/* Continue reading for long-winded bios... */
.js .continued {
  overflow: hidden;
  max-height: 0;
  transition: all 0.25s ease-in-out;
}
.js .continued.active {
  max-height: 150em;
  overflow: none;
}

@media print {
  .main-menu, .site-footer, .site-main .links {
    display: none;
  }
  .site-header {
    background: none;
  }
  .mswomenforag-logo-header img {
    width: 200px;
  }
}
