#surveyor  {
    display: none;
}
#surveyError  {
    font-family: Verdana, Helvetica, sans-serif;
    font-size: 16px;
    position: absolute;
    z-index: 30;
    padding: 5px 5px 5px 15px;
    background-color: #ffffff;
    border: thin solid red;
    border-radius: 5px;
    box-shadow: 0px 5px 15px #333333;
}

/* SurveyorForm Classes */
#surveyorFormset .show {
  display: block !important;
}
#surveyorFormset .visible {
  display: block !important;
}
#surveyorFormset .hidden {
  display: none !important;
}
#surveyorFormset .invisible {
  visibility: hidden;
}

.errorHide {
    visibility: hidden;
    opacity: 0;
    -webkit-transition:  visibility 0s 5s, opacity 2s 2s linear;
    -moz-transition:  visibility 0s 5s, opacity 2s 2s linear;
    -o-transition:  visibility 0s 5s, opacity 2s 2s linear;
    -ms-transition:  visibility 0s 5s, opacity 2s 2s linear;
    transition: visibility 0s 5s, opacity 2s 2s linear;
}
.surveyor-template {
    margin-bottom: 10px;
}
.survey-question {
    text-align: left;
    padding:0;
    font-weight: bold;
}
.survey-select  {
    width: 100%;
}
.option {
    position: relative;
    margin-bottom: 6px;
}
.option input {
    position: absolute;
    left: 0;
    top: -4px;
}
.option label {
    font-weight: normal;
    padding-left: 20px;
    line-height: 19px;
}
.questionWrapper {
    padding-top: 20px;
}
.sr-only { /* Copied from bootstrap.css */
  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;
}
div#surveyor > fieldset {
    background-color: transparent;
    border-style: none;
    padding-top: 0;
}