html, 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,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, section, summary,
time, mark, audio, video {
   margin: 0;
   padding: 0;
   border: 0;
}

body {
   background: #fff;
   font-family: 'montserrat-regular', sans-serif;
   font-weight: normal;
   font-size: 3vw;
   line-height: 6vw;
	color: black;

   -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	-webkit-text-size-adjust: 100%;
}

input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
   display: block;
   padding: 0.75vw 0.6vw;
   margin: 0.5vw 0.5vw 0.5vw 0;
   border: 0;
   font-size: 100%;
   outline: none;
   min-width: 50px;
	max-width: 100%;
	color: #647373;
	background: #D3D9D9;
   border-radius: 0.5vw;
   height: 10vw;

}

.mandatory {
    background: #FFE0E0;
}

.button,
.button:visited,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	background: #2177b8;
    padding: 0.75vw 0.6vw;
    margin: 0.5vw 0.5vw 0.5vw 0;
    color: #fff;
   font-size: 100%;
    display: inline-block;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 0.5vw;
    height:10vw;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
   background: #0e5393;
   color: #fff;
}

.button:disabled,
button:disabled,
input[type="submit"]:disabled,
input[type="reset"]:disabled,
input[type="button"]:disabled {
   background: #505050;
   cursor: default;
}

div.toggle {
    font-weight:bold;
    float:left;
    padding: 0.75vw 0.6vw;
    margin: 0.5vw;
    line-height: 3.7vw;
    background:#D3D9D9;
    border-radius: 0.5vw;
    text-align:center;
    vertical-align: middle;
    cursor: pointer;
}

div.toggleSelect {
    background: #0E5393;
    color: white;
    cursor: default;
}


.jsgrid-header-row {
    background-color: #202020;
    color: white;
}

.jsgrid-header-column {
    background-color: #EAEAEA;
}

.jsgrid-header-sort {
    background-color: #A02020;
}

.myAltRowClass {
  background-color: #E8F0FE;
  background-image: none;
}

div#wodHeader {
  position:fixed;
  top: 0px;
  background-color:white;
  width: 100%;
}

div#wodBody {
    margin-top: 20vw;
    min-height: 100vh;
}

div.wodModuleTitle {
  line-height: 4vw;
  font-size: 4vw;
  padding-left: 2vw;
}

div.wodModuleContent {
  line-height: 6vw;
  font-size: 6vw;
  padding: 2vw 0vw 12vw 4vw;
}

div.highlightSection {
    background-color: lightgreen;
}