@charset "UTF-8";
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img, video {
  max-width: 100%;
  height: auto;
}

/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:
	
	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com
	
-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

article, aside, figure, footer, header, nav, section, details, summary {
  display: block;
}

/* Handle box-sizing while better addressing child elements: 
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -moz-box-sizing: inherit;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
   If this default setting for images is causing issues, you might want to replace it with a .responsive class instead. */
img,
object,
embed {
  max-width: 100%;
}

/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted. 
	don't forget to restore the bullets within content. */
ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}

input[type="radio"] {
  vertical-align: text-bottom;
}

input[type="checkbox"] {
  vertical-align: bottom;
}

.ie7 input[type="checkbox"] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select, input, textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td, td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover 
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:before, .clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

html {
  overflow: visible;
  height: 100%;
}

body {
  font-family: 'Proxima N W01 Reg', helvetica, arial, sans-serif;
  min-height: 100%;
  font-weight: 300;
  position: relative;
  padding-bottom: 3em;
  color: #5c5b5b;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.8em;
  }
}
body.nav-open {
  overflow: hidden;
}

h1 {
  font-size: 3.5em;
  font-weight: 400;
  margin: 1em 0 0.5em;
  font-family: 'Roboto', helvetica, arial, sans-serif;
  color: #0066cc;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 3em;
  }
}

h2 {
  font-size: 1.5em;
  font-weight: 400;
  margin: 1em 0 0.5em;
  font-family: 'Roboto', helvetica, arial, sans-serif;
  color: #0066cc;
}

h3 {
  font-size: 1.25em;
  font-weight: 400;
  margin: 0.5em 0;
  font-family: 'Roboto', helvetica, arial, sans-serif;
  color: #0066cc;
}

p {
  font-weight: 300;
  margin: 0.5em 0;
  line-height: 1.5em;
  font-size: 1.2em;
}

li {
  font-family: 'Proxima N W01 Reg', helvetica, arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
}

ul li {
  list-style: outside disc none;
  margin: 0.2em 0 0 2em;
}

ol {
  counter-reset: item;
}
ol li {
  list-style: none inside none;
}
ol li h3 {
  display: inline-block;
}
ol li:before {
  content: counter(item) ".";
  counter-increment: item;
  list-style: number inside none;
  display: inline-block;
  margin: 0.25em 0;
  width: 30px;
  text-align: right;
}

hr {
  margin-left: 0.5em;
}

textarea {
  padding: 1em;
  border: none;
  background-color: #efefef;
}
textarea:-moz-placeholder {
  font-style: italic;
  font-size: 0.8em;
}
textarea::-moz-placeholder {
  font-style: italic;
  font-size: 0.8em;
}
textarea:-ms-input-placeholder {
  font-style: italic;
  font-size: 0.8em;
}
textarea::-webkit-input-placeholder {
  font-style: italic;
  font-size: 0.8em;
}
textarea:focus {
  border: 1px solid #000055;
}

.button, button, .webform-submit {
  border: 2px solid #99cc66;
  color: #fff;
  background-color: #99cc66;
  font-size: 1em;
  padding: 0.5em 1em;
  margin-top: 0.5em;
  margin-bottom: 2.0em;
  display: inline-block;
  position: relative;
  -moz-transition: padding 0.2s ease-out;
  -o-transition: padding 0.2s ease-out;
  -webkit-transition: padding 0.2s ease-out;
  transition: padding 0.2s ease-out;
}
.button.next:after, button.next:after, .webform-submit.next:after {
  content: "";
  font-family: fontawesome;
  margin-left: 0.5em;
}
.button:hover, button:hover, .webform-submit:hover {
  padding: 0.5em 1.3em;
  border: 2px solid #4e7536;
  background-color: #4e7536;
  color: #fff;
}

a {
  margin: 0;
  font-size: 14px;
  vertical-align: baseline;
  text-decoration: none;
  color: #0066cc;
  background: transparent;
}

.embedded-video {
  max-width: 600px;
  margin-bottom: 2.5em;
}
.embedded-video .player {
  margin: 1em auto;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  width: 100%;
  overflow: hidden;
}
.embedded-video .player iframe, .embedded-video .player object, .embedded-video .player embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #ddd;
}

.site-width {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.v-center {
  word-spacing: 0;
}
.v-center:before {
  content: "";
  height: 100%;
  width: 0;
  display: inline-block;
  vertical-align: middle;
}
.v-center .v-wrapper {
  display: inline-block;
  vertical-align: middle;
  word-spacing: normal;
}

#main-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  background-color: #99cc66;
}
#main-nav.fixed {
  position: fixed;
  -moz-transform: translate(0, -90%);
  -ms-transform: translate(0, -90%);
  -webkit-transform: translate(0, -90%);
  transform: translate(0, -90%);
  -moz-transition: -moz-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
#main-nav.fixed.visible {
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -moz-transition: -moz-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}
.nav-open #main-nav {
  position: fixed;
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -moz-transition: -moz-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
#main-nav:hover {
  cursor: pointer;
  background-color: #99cc66;
}
#main-nav .content {
  position: relative;
  padding: 12px 0;
}
#main-nav .home-link {
  display: block;
  width: 204px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #main-nav .home-link {
    width: 150px;
  }
}
#main-nav .hot-dog {
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 30px;
  color: white;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  #main-nav .hot-dog {
    font-size: 0;
    margin-top: 20px;
  }
}
#main-nav .hot-dog:after {
  content: "\f0c9";
  font-family: 'FontAwesome';
  font-size: 32px;
  margin-left: 12px;
}
.nav-open #main-nav .hot-dog:after {
  content: "\f00d";
  margin-left: 14.5px;
}

body.navbar-fixed #navbar-administration.navbar-oriented,
#navbar-administration.navbar-oriented .navbar-bar,
#navbar-administration.navbar-oriented .navbar-tray {
  position: fixed;
}

#main-slide-nav {
  height: 100%;
  width: 103%;
  position: fixed;
  z-index: 80;
  padding-top: 50px;
  padding-right: 3%;
  background-color: #e7f2d8;
  overflow-y: scroll;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transform: translate(0, -120%);
  -ms-transform: translate(0, -120%);
  -webkit-transform: translate(0, -120%);
  transform: translate(0, -120%);
  -moz-transition: -moz-transform 0.5s, opacity 0.6s;
  -o-transition: -o-transform 0.5s, opacity 0.6s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.6s;
  transition: transform 0.5s, opacity 0.6s;
}
.nav-open #main-slide-nav {
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: -moz-transform 0.5s, opacity 0.6s;
  -o-transition: -o-transform 0.5s, opacity 0.6s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.6s;
  transition: transform 0.5s, opacity 0.6s;
}
#main-slide-nav .content {
  margin-top: 50px;
  text-align: center;
}
#main-slide-nav ul.menu {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
#main-slide-nav ul.menu li {
  list-style: none;
  padding: none;
}
#main-slide-nav ul.menu li.expanded {
  list-style: none;
}
#main-slide-nav .level-1 > a {
  font-size: 2.4em;
  color: #4e7536;
  text-decoration: none;
}
#main-slide-nav .level-1 > a:hover {
  color: #a4c663;
}
#main-slide-nav .level-2 {
  margin: 1em 0;
  text-decoration: none;
  font-family: 'Roboto', helvetica, arial, sans-serif;
  font-weight: 300;
}
#main-slide-nav .workshop .level-2 > a {
  font-size: 1.5em;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'Roboto', helvetica, arial, sans-serif;
  color: #5c8d3e;
}
#main-slide-nav .workshop .level-2 > a:hover {
  color: #4e7536;
}
#main-slide-nav .workshop .level-3 {
  margin: 0.8em 5px;
  display: inline-block;
}
#main-slide-nav .workshop .level-3 > a {
  font-size: 1.1em;
  text-decoration: none;
  text-transform: none;
  color: #5c7536;
  font-weight: 300;
}
#main-slide-nav .workshop .level-3 > a:hover {
  color: #a4c663;
}
#main-slide-nav .workshop .level-4 {
  display: none;
}
#main-slide-nav .home {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 5px solid #fff;
}
#main-slide-nav .home .level-2 {
  display: inline-block;
  margin-right: 1em;
}
#main-slide-nav .home .level-2 > a {
  color: #5c8d3e;
  text-decoration: none;
  font-size: 17px;
}
#main-slide-nav .home .level-2 > a:hover {
  font-weight: 600;
}
#main-slide-nav .home .level-2.last {
  margin-right: 0;
}

#main {
  padding-top: 110px;
  padding-bottom: 35px;
  min-height: 100%;
}
@media screen and (max-width: 767px) {
  #main {
    padding-top: 90px;
  }
}

#footer {
  background-color: #99cc66;
  position: absolute;
  bottom: 0;
  width: 100%;
}
#footer .content p {
  margin: 0;
  color: #5c8d2b;
  padding: 0.7em 0;
  font-size: 14px;
}

.breadcrumb {
  text-transform: uppercase;
  font-size: 14px;
  color: #00bfda;
}
.breadcrumb .active-trail {
  color: #0066cc;
}

.node-type-page article ol > li {
  margin-left: 0;
}
.node-type-page article ol > li:before {
  text-align: center;
  padding-right: 15px;
}
.node-type-page article li {
  font-weight: normal;
  margin-left: 1em;
  line-height: 1.2;
  margin-bottom: 0.5em;
}
.node-type-page article img {
  float: right;
}
@media screen and (max-width: 767px) {
  .node-type-page article img {
    float: none;
    margin-bottom: 2em;
  }
}

.node-type-module li:before {
  text-align: left;
}

.front article li {
  color: #0066cc;
  font-size: 1.2em;
  font-family: 'Roboto', helvetica, arial, sans-serif;
}

.node-type-activity .scenario {
  margin: 1em 0;
}
.node-type-activity textarea {
  width: 100%;
  margin: 2em 0;
}
.node-type-activity .outcome {
  display: none;
}
.node-type-activity .outcome.show-result {
  display: block;
}
.node-type-activity .field-type-true-false, .node-type-activity .field-name-field-how-often-questions {
  margin: 2em 0;
}
.node-type-activity .field-name-field-how-often-questions .question {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .node-type-activity .field-name-field-how-often-questions .question {
    width: 90%;
  }
}
.node-type-activity .field-name-field-how-often-questions h3.question {
  margin-left: 25px;
}
.node-type-activity .question {
  display: inline-block;
  width: 75%;
  vertical-align: middle;
  padding: 0.5em 1em;
  margin-left: -0.25em;
}
@media screen and (max-width: 767px) {
  .node-type-activity .question {
    width: 66%;
  }
}
.node-type-activity h3.question {
  margin-left: 25px;
}
.node-type-activity .true, .node-type-activity .false {
  display: inline-block;
  width: 10%;
  text-align: center;
  vertical-align: middle;
  margin-left: -0.25em;
}
.node-type-activity .finished .true, .node-type-activity .finished .false {
  width: 8%;
}
.node-type-activity .finished .answer {
  width: 4%;
  text-align: center;
}
.node-type-activity .how-often li:before, .node-type-activity .true-false li:before {
  vertical-align: middle;
}
.node-type-activity .never, .node-type-activity .once, .node-type-activity .more {
  display: inline-block;
  width: 8%;
  text-align: center;
  vertical-align: middle;
  margin-left: -0.25em;
  font-size: 0.8em;
}
@media screen and (max-width: 767px) {
  .node-type-activity .never, .node-type-activity .once, .node-type-activity .more {
    width: 33%;
    margin: 1.5em 0 1.5em -0.25em;
  }
}
.node-type-activity input[type="radio"] {
  vertical-align: middle;
}
.node-type-activity .odd {
  background-color: #F3F3F3;
}
.node-type-activity .answer {
  display: none;
  margin-left: -0.25em;
}
.node-type-activity .check, .node-type-activity .progress {
  margin-top: 1.5em;
}
.node-type-activity .file .file-icon {
  vertical-align: middle;
}
.node-type-activity .file > a {
  color: #99cc66;
  font-size: 1.2em;
  font-family: 'Proxima N W01 Reg It';
  vertical-align: middle;
}

#webform-client-form-24 .form-item {
  margin: 1.5em 0;
}
#webform-client-form-24 .form-text {
  margin-left: 20px;
  width: 50px;
}
#webform-client-form-24 label {
  display: inline-block;
  font-size: 1.3em;
}
#webform-client-form-24 .form-radios {
  margin-top: 1.5em;
}
#webform-client-form-24 .form-radios .form-item {
  display: inline-block;
  width: 20%;
  margin-left: -0.25em;
  padding: 0px 30px;
  text-indent: -22px;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  #webform-client-form-24 .form-radios .form-item {
    display: block;
    width: 100%;
    margin: 1.2em;
  }
}
#webform-client-form-24 .description {
  font-size: 1.2em;
}
#webform-client-form-24 label.option {
  margin-left: 5px;
  display: inline;
  font-size: 0.85em;
}
