/*
 * Customer Overide CSS for button color and font and background colors
*/
@font-face {
    font-family: 'Museo Sans Rounded 300';
    font-style: normal;
    font-weight: normal;
    src: local('Museo Sans Rounded 300'), url('MuseoSansRounded300.woff') format('woff');
    }

body {font-family: "Museo Sans Rounded 300", Helvetica, Arial, sans-serif;}

h1 {color:#084885}
h2 {color:#084885}
a {color:#084885}

.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  border: none;
  border-radius: 0px;
  outline: none;
  background: #88c654;
  }
  
 .button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
color: #000;
    background-color: #88c654
 }


footer {padding:10px; background:#fff; color:#084885; height: 40px; margin-top:auto; border-top: 1px solid #084885}
footer p{padding-left:1em; color:#084885;}



