html, body {
    margin: 0;
}

body {
    padding-top: 83px;    /* navbar offset; also makes #anchors work */
}

* {
    outline: medium none;
    -webkit-font-smoothing: subpixel-antialiased;
}

div {
    background-repeat: repeat-x;
    background-attachment: scroll;
    background-position: center top; 
}

body {
    min-width: 800px;
    font: 15px/20px "PT Sans",Arial,Helvetica,sans-serif;
}

h2 {
    margin: 20px 0px 15px;
    font: 400 38px/1 "Segoe UI","Trebuchet MS",Arial,sans-serif;    
}

h3 {
    margin: 20px 0px 15px;
    font: 400 26px/1 "Segoe UI","Trebuchet MS",Arial,sans-serif;    
}

.sectionLight {
    background: #ffffff;
    height: 360px;
    color: #2D4447;    
    position: relative;
    z-index: 1;
}

.sectionDark {
    background: #f9f9f9;
    height: 360px;
    color: #2D4447;
    box-shadow: 0px 0px 3px #888888;
    position: relative;
    z-index: 2;
}

.innerWrapper {    
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 4px 20px 20px;
    height: auto;
    overflow: hidden;
}

.noOverflow {
    overflow: hidden;
}

.fillContainer {
    position: relative;
    width: 100%;
    height: 100%;
}

.absolute {
    position: absolute;
    left: 0px;
    top: 0px;
}

.centerVer {
    position: relative;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* Elements that need to be centered, even if wider than the screen. */
/* Also specify "width" and "height" for the element, and make sure common.js is loaded. */
.center {  
    position:relative;
    left:50%;
}

.centerIn {
    margin-left: auto;
    margin-right: auto;
}

.centerText {
    text-align: center;
}

.floatLeft {
    float:left;
}

.floatRight {
    float:right;
}

.clearBoth { 
    clear: both; 
}

.localFrame {
    position: relative;
}

.inlineBlock {
    display: inline-block;
}

/* Fades elements in and out as the user scrolls */
/* Also specify "width", "height" and "background(-image)" for the element. */
.fade {  
}

/* Elements that rotate with the scrollbar */
/* Also specify "width", "height" and "background(-image)" for the element */
.rot {  
}

.button {
    display: inline-block;
    padding: 9px 25px;
    margin: 7px 10px 22px;
    font: 14px/18px "Segoe UI","Trebuchet MS",Arial,sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    color: #333;
    text-shadow: 0px 1px 0px #ffffff;
    text-align: center;
    font-weight: 600;
    border: 1px solid #9DBA60;
    border-radius: 2px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    box-sizing: border-box;
    border-radius: 4px;
    /*background: linear-gradient(to bottom, #C6F997 0%, #72A529 100%) repeat scroll 0% 0% transparent;*/
    background: linear-gradient(to bottom, #D1E990 0%, #AAD75D 100%) repeat scroll 0% 0% transparent;    
}

.button:hover {
    background: linear-gradient(to bottom, #D9F288 0%, #77B025 100%) repeat scroll 0% 0% transparent;
    text-shadow: 0px 0px 3px #ffffff;
}

/* Slide-div on mouse hover (container of 'card' + 'content') */

.sliderRight-container {  
    position: fixed;
    z-index: 200;
    top: 20%;
    right: -600px;   /* The = content.width */
    width: 640px;
    transition: all 0.4s ease-out;
}

.sliderRight-card {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 40px;
    height: 100px; 
}

.sliderRight-content {
    position: absolute;
    top: 0px;
    left: 40px;
    width: 600px;
    height: 500px; 
}

.sliderRight-container:hover {
    right: 0px;
}

.messageFormContainer {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.input-label {
    margin-top: 16px;
    margin-bottom: 4px;
}

input, textarea, .inputTextArea {
    float: none;
    padding: 2px 4px;
    margin: 0px;
    width: 100%;
    max-width: 100%;
    min-width: 200px;    
    outline: medium none;
    font-weight: normal;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(0,0,0,0.3);
    box-sizing: border-box !important;
    border-radius: 3px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2) inset;
}

.inputTextArea {
    min-height: 100px;
}

.inputTextBox {
    width: 80%;
    max-width: 400px;
}

.padTop {
    margin-top: 55px;
}

#navbarTop {
    margin-top:0px;
    margin-left:0px;
    top: 0;
    width:100%;
    position:fixed;
    z-index:500;
    background-image: url(../img/Header.png); 
    /* opacity: 0.98; */
    height: 91px;
}

#navbarTop .innerWrapper {
    min-width: 800px;
    max-width: 88%;
    margin-left: 6%;
    margin-right: 6%;
    height: auto;
    position: relative;
    padding: 0;
    overflow: visible;
}

#navbarTop ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    float: left;
}

#navbarTop ul.right {
    float:right;
}

#navbarTop ul li {
    display: inline;
}

#navbarTop ul li a {
    text-decoration: none;
    padding: 0.2em 1em;
    color:#000000;
    font-size: 12px;
}

#navbarTop ul li a:hover {
    color:#666666;
}

#navbarTop-links {
    width: 100%;
    position: absolute;
    margin: 0;
    top: 0px;    
}

#navbarTop-links .innerWrapper ul {
    margin-left: 10px;
}

#navbarTop-contactLinks {
    height: 28px;
    padding-top: 9px;
    padding-left: 132px;
}

#navbarTop-siteLinks {
    height: 32px;
    padding-top: 14px;
    padding-left: 132px;
}

#navbarTop-contactLinks ul.icons{
    margin-top: -2px;
    margin-left: 4px;
}

#navbarTop-contactLinks ul li a {
    color:#ffffff;
}

#navbarTop-contactLinks ul li a:hover {
    color:#dddddd;    
}

#navbarTop-contactLinks ul li img {
    width: 24px;
    height 24px;
}

#navbarTop-contactLinks ul li img:hover {
    opacity: 0.867;
}

#navbarTop-siteLinks ul li a {
    color:#000000;
}

#navbarTop-siteLinks ul li a:hover {
    color:#81C000;
}

#navbarTop-siteLinks ul li a.currentLink {
    color:#81C000;
}

#logo {
    position: absolute;
    margin-left: -9px;
    margin-top: -79px;
    width: 148px;
    height: 202px;
    background: url(../img/SoftLabLogo.png);
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

#content {
    height: auto;
    width: auto;
    /*background: rgba(0, 255, 255, 1);*/
    /*margin-top: 83px;*/
}


#section-contactUs h3.prompt{
    position: relative;
    top: 0px;
    left: 7px;
}

#section-contactUs img.prompt{
    position: relative;
    top: 5px;
    left: 2px;
}

#section-contactUs p.prompt{
    position: relative;
    top: 0px;
    left: 3px;
}

#section-contactUs p.prompt img.prompt{
    position: relative;
    top: 2px;
    left: 2px;
}

.viewerGuide {
  font-size: 80%;
}

.viewerGuide a {
    font-size: 120%;
    text-decoration: none;
    color: #4C9300;
}

.viewerGuide a:hover {
    text-decoration: underline;
    opacity: 0.76;
}

/* The Footer  section ===================================================== */
#section-footer {
    /*position:absolute;
    bottom: 0;
    left: 0;*/
    height: auto;
    color: #DBDBDB;
    background-color: #2D4447;
    border-top: 4px solid #74757E;
    box-shadow: none;
}

#section-footer .innerWrapper {
    padding: 22px 20px 18px;
}

#section-footer .innerWrapper * {
    margin: 0px;
}

#copyright {
    font-size: 12px;
    text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.5);
}

#copyright * {
    display: inline-block;
}



/* Sweet alert style modifications ==================== */ 
.sweet-alert {
  
}

.sweet-alert button {
  background: linear-gradient(to bottom, #D1E990 0%, #AAD75D 100%) repeat scroll 0% 0% transparent;
  color: #333;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0px 1px 0px #ffffff;
  text-align: center;
  font-weight: 600;
  border: 1px solid #9DBA60;
  border-radius: 4px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
  font: 14px/18px "Segoe UI","Trebuchet MS",Arial,sans-serif;
  padding: 9px 34px;
  margin: 26px 5px 10px 5px;
  cursor: pointer;  
}

.sweet-alert button:hover {
  background: linear-gradient(to bottom, #D9F288 0%, #77B025 100%) repeat scroll 0% 0% transparent;
  text-shadow: 0px 0px 3px #ffffff;
}


