/*
 This stylesheet contains generic classes
 that are used in multiple pages throughout the website

##
Changing anything in this file will affect multiple pages
Recommended to create a new stylesheet for the specific page you are working on
or only ADD generic classes to this stylesheet.
##
*/


/* 
    Created on : Feb 25, 2015
    Author     : Dakota Sonnentag
*/

html {
    height: 100%;
}

body {
    font-family: OpenSans, sans-serif, "Times New Roman", Times, serif;
    font: 10pt/1.3 Arial, Helvetica, sans-serif;
    height: 100%;
    overflow-y: scroll;
    background-image: url("/images/brickwall.png");
}

#mainWrapper {
    max-width: 1280px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0px 0px 10px #cccccc;
    display: flex;  /* use the flex model */
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
}

#content, #wide, #scriptContent {
    max-width: 1280px;
    margin-bottom: 30px;
    flex: 1;
}

a {
    text-decoration: none;
    transition: all .3s ease-in-out;
}

thead {
    background-color: #A2AECC;
}


#customWording {
    display: none;
}

.buttonHoverEffect:hover {
    -webkit-box-shadow: 0px 0px 10px 4px #e4e4e4;
    -moz-box-shadow: 0px 0px 10px 4px #e4e4e4;
    box-shadow: 0px 0px 10px 4px #e4e4e4;
    /*border-bottom: 2px solid #409F89;*/
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
    border-radius: 50%;
}

.tourTabWrapper {
    margin-right: -15px;
    font-size: 16px;
}
.tourTab {
    background-color: #E6E5E5;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    box-shadow: 1px 1px 2px 0px #737373, inset 0px 0px 0px #BBBBBB;
    padding: 8px;
    color: #8C8C8C;
    transition: .2s;
}
.tourTab:hover {
    text-decoration: none;
    color: #8C8C8C;
    box-shadow: 0px 0px 0px 0px #737373, inset 1px 1px 4px #BBBBBB;
    transition: .2s;
}
.tourTab:focus {
    text-decoration: none;
    color: #8C8C8C;
    box-shadow: 0px 0px 0px 0px #737373, inset 1px 1px 4px #BBBBBB;
    transition: .2s;
}

/* 
#####################
Commonly used classes
#####################
*/

.bold {
    font-weight: bold;
}
.italic {
    font-style: italic;
}

.mylead {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 200;
    line-height: 25px;
}
.textDecorNone {
    text-decoration: none;
}

.cursorPointer {
    cursor: pointer;
}

/*GRIT*/
.grit {
    -webkit-mask-image: url("/images/footer/grit.png");
    mask-image: url("/images/footer/grit.png");
}
.grit2 {
    background-image: url(/images/footer/grit2.png) !important;
}
/*END GRIT*/

/* prevent highlighting when double clicked text (useful for toggles) */
.highlightNone {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.overflowHidden {
    overflow: hidden;
}
.valignMid {
    vertical-align: middle !important;
}
.verticalAlignTop {
    vertical-align: top;
}

.form-control:focus {
    border-color: rgba(228, 184, 133, 0.82);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(99, 84, 67, 0.8)
}
/*
###############
END BOOTSTRAP STUFF
###############
*/

/*
###############
TABLE STUFF
###############
*/
.tableRow:nth-child(odd) {
    background-color: #F2F2F2;
}
/*
###############
END TABLE STUFF
###############
*/

/*
###############
BORDERS
###############
*/
.headerBotBorder {
    border-bottom: 1px solid rgba(149, 128, 105, 0.38);
}
.borderNone {
    border: none;
}
.borderTopNone {
    border-top: none;
}
.borderRadius20 {
    border-radius: 20px;
}
.borderAll {
    border: 1px solid #E6E6E6;
}
.borderLeftRight {
    border-left: 1px solid #E6E6E6;
    border-right: 1px solid #E6E6E6;
}
/*
###############
END BORDERS
###############
*/

/*
###############
FONT SIZE
###############
*/
.fontSize1em {
    font-size: 1em !important;
}
.fontSize16 {
    font-size: 16px;
}
.fontSize24 {
    font-size: 24px;
}
.fontSize36 {
    font-size: 36px;
}
/*
###############
END FONT SIZE
###############
*/

/*
###############
FONT WEIGHT
###############
*/
.fontWeight700 {
    font-weight: 700;
}
/*
###############
END FONT WEIGHT
###############
*/

.textPreWrap {
    white-space: pre-wrap;
}
.textPreWrapImportant {
    white-space: pre-wrap !important;
}
.wordBreak {
    word-wrap: break-word;
}
.displayNone{
    display: none;
}
.floatNone {
    float: none;
}

/*
###############
MAX WIDTH
###############
*/
.width100 {
    width: 100%;
}
.maxWidth320 {
    max-width: 320px;
}
.maxWidth480 {
    max-width: 480px;
}
.maxWidth900 {
    max-width: 900px;
}
.maxWidth1170 {
    max-width: 1170px;
}
/*
###############
END MAX WIDTH
###############
*/

/*
###############
MARGIN AND PADDING
###############
*/
.marginReset {
    margin: 0px;
}
.margin0 {
    margin: 0px;
}
.marginTop0{
    margin-top: 0px;
}
.marginTop5 {
    margin-top: 5px !important;
}
.marginTop10 {
    margin-top: 10px;
}
.marginTop15 {
    margin-top: 15px;
}
.marginTop20 {
    margin-top: 20px;
}
.marginTop30 {
    margin-top: 30px;
}
.marginTop50 {
    margin-top: 50px;
}
.marginBot0 {
    margin-bottom: 0px;
}
.marginBot5 {
    margin-bottom: 5px;
}
.marginBot10 {
    margin-bottom: 10px;
}
.marginBot20 {
    margin-bottom: 20px;
}
.marginBot30 {
    margin-bottom: 30px;
}
.marginBot40 {
    margin-bottom: 40px;
}
.marginBot50 {
    margin-bottom: 50px;
}
.marginleftN15 {
    margin-left: -15px;
}
.marginLeft0 {
    margin-left: 0px;
}
.marginLeft5 {
    margin-left: 5px;
}
.marginLeft10 {
    margin-left: 10px;
}
.marginLeft15 {
    margin-left: 15px;
}
.marginLeft20 {
    margin-left: 20px;
}
.marginLeft30 {
    margin-left: 30px;
}
.marginRight10 {
    margin-right: 10px;
}
.marginRight15 {
    margin-right: 15px;
}
.marginRight30 {
    margin-right: 30px;
}
.marginTopBot0 {
    margin-top: 0px;
    margin-bottom: 0px;
}
.marginTopBot5 {
    margin-top: 5px;
    margin-bottom: 5px;
}
.marginTopBot10 {
    margin-top: 10px;
    margin-bottom: 10px;
}
.marginTopBot20 {
    margin-top: 20px;
    margin-bottom: 20px;
}
.marginTopBot30 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.marginLeftRightN15 {
    margin-left: -15px;
    margin-right: -15px;
}
.marginLeftRight5 {
    margin-left: 5px;
    margin-right: 5px;
}
.marginLeftRight15 {
    margin-left: 15px;
    margin-right: 15px;
}

.removeRowMargin {
    margin-left: 0px;
    margin-right: 0px;
}

.pad0 {
    padding: 0px;
}
.padTop5 {
    padding-top: 5px;
}
.padTop10 {
    padding-top: 10px;
}
.padTop20 {
    padding-top: 20px;
}
.padBot10 {
    padding-bottom: 10px;
}
.padBot20 {
    padding-bottom: 20px;
}
.padLeft0 {
    padding-left: 0px; 
}
.padLeft5 {
    padding-left: 5px; 
}
.padLeft10 {
    padding-left: 10px;
}
.padLeft15 {
    padding-left: 15px;
}
.padLeft20 {
    padding-left: 20px;
}
.padLeftRight5 {
    padding-left: 5px;
    padding-right: 5px;
}
.padLeftRight15 {
    padding-left: 15px;
    padding-right: 15px;
}
.padRight0 {
    padding-right: 0px;
}
.padRight15 {
    padding-right: 15px;
}
.padRight30 {
    padding-right: 30px;
}
.padTopBot10 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.padTopBot15 {
    padding-top: 15px;
    padding-bottom: 15px;
}
.padTopBot20 {
    padding-top: 20px;
    padding-bottom: 20px;
}
/*
###############
END MARGIN AND PADDING
###############
*/

.removeHover:hover {
    color: #fff;
    text-decoration: none;
}
.removeHoverDecor:hover {
    text-decoration: none;
}

/*
###############
COLORS
###############
*/
.fgblack {
    color: black;
}
.fgyellow {
    color: yellow;
}
.fgwhite {
    color: #fff;
}
.fgblue {
    color: #000066;
}
.fgbsblue {
 color: #337AB7;
}
.fggreen {
    color: green !important;
}
.fgThemeGreen {
    color: rgb(64, 159, 137);
}
.fgred {
    color: red;
}
.fggrey {
    color: grey;
}
.fgorange {
    color: orange;
}

.swatch {
	width:10px;
	height:10px;
	display:inline-block;
	border:1px solid black;
	margin:0 0.2em;
}
.highlighted {
    background-color: #FF9;
}

.bgwhite {
    background-color: white;
}
.bgyellow {
    background-color: #FF9 !important;
}
.bgred {
    background-color: red;
}
.bggrey {
    background-color: #F0F0F0 !important;
}
.bgblue {
    background-color: blue;
}
.bgblueLocked {
    background-color: rgba(51, 122, 183, 0.16) !important;
}
.bgsalmon {
    background-color: rgba(250, 128, 114, 0.52) !important;
}
.bglightBlue {
    background-color: rgba(0, 127, 150, 0.35) !important;
}
.bgwheat {
    background-color: rgba(245, 222, 179, 0.37) !important;
}
.totalGreen{
    background-color: rgba(0, 148, 0, 0.51)
}

.error {
    display: none;
    color: red;
}
.text-error {
    color: #b94a48;
}
.text-info {
    color: #3a87ad;
}
.text-centerImportant {
    text-align: center !important;
}
/*
###############
END COLORS
###############
*/

.fancyEffectContent{
    width: 100%;
    padding-top: 20px;
    padding-bottom: 10px;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3);
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3);
            box-shadow:0 1px 4px rgba(0, 0, 0, 0.3);
}

.noteTitle { 
	font-size:13pt;
	font-weight:bold;
	color: #006;

}
.noteBody { 
	font-size:12pt;
	font-weight:normal;
}
.noteAuthor { 
	font-size:9pt;
	font-style:italic;
	color: gray;
	border-bottom-style:dashed;
	border-bottom-color:#ccc;
	border-bottom-width: 1px;
}
.noteTimestamp { 
	font-size:9pt;
	font-style:italic;
	color: gray;
}
.batchNoteAuthor { 
	font-size:9pt;
	font-style:italic;
	color: gray;
	border-top-style:dashed;
	border-top-color:#ccc;
	border-top-width: 1px;
}


/* hide googles shitty iframe that usually appears below the footer */
iframe[name='google_conversion_frame'] { 
    height: 0 !important;
    width: 0 !important; 
    line-height: 0 !important; 
    font-size: 0 !important;
    margin-top: -13px;
    float: left;
}

/* begin bootstrap theme */
.btn-default,
.btn-primary,
.btn-success,
.btn-info,
.btn-warning,
.btn-danger {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-default:active,
.btn-primary:active,
.btn-success:active,
.btn-info:active,
.btn-warning:active,
.btn-danger:active,
.btn-default.active,
.btn-primary.active,
.btn-success.active,
.btn-info.active,
.btn-warning.active,
.btn-danger.active {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-default .badge,
.btn-primary .badge,
.btn-success .badge,
.btn-info .badge,
.btn-warning .badge,
.btn-danger .badge {
  text-shadow: none;
}
.btn:active,
.btn.active {
  background-image: none;
}
.btn-default {
  background-image: -webkit-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
  background-image: -o-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e0e0e0));
  background-image: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #dbdbdb;
  text-shadow: 0 1px 0 #fff;
  border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus {
  background-color: #e0e0e0;
  background-position: 0 -15px;
}
.btn-default:active,
.btn-default.active {
  background-color: #e0e0e0;
  border-color: #dbdbdb;
}
.btn-default.disabled,
.btn-default:disabled,
.btn-default[disabled] {
  background-color: #e0e0e0;
  background-image: none;
}
.btn-primary {
  background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);
  background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88));
  background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #245580;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #265a88;
  background-position: 0 -15px;
}
.btn-primary:active,
.btn-primary.active {
  background-color: #265a88;
  border-color: #245580;
}
.btn-primary.disabled,
.btn-primary:disabled,
.btn-primary[disabled] {
  background-color: #265a88;
  background-image: none;
}
.btn-success {
  background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
  background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641));
  background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #3e8f3e;
}
.btn-success:hover,
.btn-success:focus {
  background-color: #419641;
  background-position: 0 -15px;
}
.btn-success:active,
.btn-success.active {
  background-color: #419641;
  border-color: #3e8f3e;
}
.btn-success.disabled,
.btn-success:disabled,
.btn-success[disabled] {
  background-color: #419641;
  background-image: none;
}
.btn-info {
  background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
  background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2));
  background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #28a4c9;
}
.btn-info:hover,
.btn-info:focus {
  background-color: #2aabd2;
  background-position: 0 -15px;
}
.btn-info:active,
.btn-info.active {
  background-color: #2aabd2;
  border-color: #28a4c9;
}
.btn-info.disabled,
.btn-info:disabled,
.btn-info[disabled] {
  background-color: #2aabd2;
  background-image: none;
}
.btn-warning {
  background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
  background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316));
  background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #e38d13;
}
.btn-warning:hover,
.btn-warning:focus {
  background-color: #eb9316;
  background-position: 0 -15px;
}
.btn-warning:active,
.btn-warning.active {
  background-color: #eb9316;
  border-color: #e38d13;
}
.btn-warning.disabled,
.btn-warning:disabled,
.btn-warning[disabled] {
  background-color: #eb9316;
  background-image: none;
}
.btn-danger {
  background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
  background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a));
  background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #b92c28;
}
.btn-danger:hover,
.btn-danger:focus {
  background-color: #c12e2a;
  background-position: 0 -15px;
}
.btn-danger:active,
.btn-danger.active {
  background-color: #c12e2a;
  border-color: #b92c28;
}
.btn-danger.disabled,
.btn-danger:disabled,
.btn-danger[disabled] {
  background-color: #c12e2a;
  background-image: none;
}
/* end bootstrap theme */
.input_main {
    width:100%;
    margin-bottom:20px;
}
.input_main input[type='checkbox'] {
    border: #cccccc solid 1px;
    padding: 10px 0 10px 10px;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 14px;
    line-height: 24px;
    color: #777777;
}
.confirmation label {
    font-weight:normal;
}

@media (max-width: 1290px) {
    .marginTop0-1290 {
        margin-top: 0px;
    }
}

@media (max-width: 992px) {
    .marginRightNone992 {
        margin-right: 0px;
    }
}

@media (min-width: 768px){
    .container {
        width: inherit;
    }
}

@media (max-width: 767px) {
    .fancyEffectContent {
        margin-left: 0px;
    }
    .grit-767 {
        -webkit-mask-image: url("/images/footer/grit.png");
        mask-image: url("/images/footer/grit.png");
    }
    .displayNone767 {
        display: none !important;
    }
    .displayBlock767 {
        display: block !important;
    }
    .pad0-767 {
        padding: 0px;
    }
    .padRight0-767 {
        padding-right: 0px;
    }
    .padLeft0-767 {
        padding-left: 0px;
    }
    .text-right767 {
        text-align: right;
    }
    .text-center767 {
        text-align: center;
    }
    .marginTopBot10-767 {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .marginTopBot20-767 {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .marginTopBot30-767 {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .marginTop10-767 {
        margin-top: 10px;
    }
    .marginTop20-767 {
        margin-top:  20px;
    }
    .marginTop30-767 {
        margin-top: 30px;
    }
    .marginBot10-767 {
        margin-bottom: 10px;
    }
    .marginBot30-767 {
        margin-bottom: 30px;
    }
    .marginRightNone767 {
        margin-right: 0px;
    }
    .marginLeftNone767 {
        margin-left: 0px;
    }
    .padBot10-767 {
        padding-bottom: 10px;
    }
    .pull-right-none767 {
        float: none !important;
    }
    .pull-left-none767 {
        float: none !important;
    }
    .center-block767 {
        display: block;
        margin: 0 auto;
    }
    .font24-767 {
        font-size: 24px;
    }
    .font36-767 {
        font-size: 36px;
    }
    .borderRadius6-767 {
        border-radius: 6px;
    }
}

@media (max-width: 600px) {
    .center-block600 {
        display: block;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .width50-480 {
        width: 50%;
    }
}

/* for short pages, IE doesnt support flex box*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    #mainWrapper {
        display: block;
    }
    #infoWrapper {
        min-height: 600px;
    }
    html,body {
        height: auto;
    }
}
