
/* preliminary generic settings - may be over-written by sitespecific  */

html, body {
    font-family: "Roboto", tahoma, arial, helvetica, avenir, sans-serif;
    color: #f2ede3;
    height:  100%;
    width: 100%;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

p,
h1, h2, h3, h4, h5, h6 {
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

a,
a:visited {
    color: #211f1f;
    font-family: "Roboto", tahoma, arial, helvetica, avenir, sans-serif;
    font-size: 19px;  /* used to be 20 */
    font-weight: normal;
    text-decoration: underline;
}

a:hover,
a:active {
    color:  #c94a00;
    text-decoration: none;
}

#main {
    height:  100%;
    width: 100%;
}

p {
    font-size: 12px;
}

/* text fixed by h settings */

h1 {
    line-height: 1em;
    font-family: "Roboto", tahoma, arial, helvetica, avenir, sans-serif;
    font-size: 38px;
    padding: 0;
    margin: 0;
    font-weight: normal;
    color: #555555;
}

h2 {
    font-size: 55px;
    font-weight: normal;
}

h3 {
    font-family: "Roboto", tahoma, arial, helvetica, avenir, sans-serif;
    font-size: 25px;
    line-height: 31px;
    font-weight: normal;
    color: #dddddd;
}
@media (max-width: 1025px) {
    h3 {
        font-family: "Roboto", tahoma, arial, helvetica, avenir, sans-serif;
        font-size: 25px;
        line-height: 31px;
        margin-top: 8px;
        margin-bottom: -8px;
        font-weight: bold;
        color: #dddddd;
    }
}

h4 {
    font-family: "Roboto", tahoma, arial, helvetica, avenir, sans-serif;
    font-size: 30px;
    font-weight: normal;
}

h5 {
    font-family: "Roboto", tahoma, arial, helvetica, avenir, sans-serif;
    font-size: 18px;  /* used to be 20 */
    line-height: 24px;
    font-weight: normal;
}
@media (max-width: 1025px) {
    h5 {
        font-family: "Roboto", tahoma, arial, helvetica, avenir, sans-serif;
        font-size: 19px;
        line-height: 24px;
        font-weight: bold;
        color: #dddddd;
    }
}

h6 {
    font-family: "Roboto", tahoma, arial, helvetica, avenir, sans-serif;
    font-size: 20px;
    font-weight: normal;
    margin-top: -2px;
    color: #dddddd;
}
@media (max-width: 1025px) {
    h6 {
        font-family: "Roboto", tahoma, arial, helvetica, avenir, sans-serif;
        font-size: 20px;
        line-height: 24px;
        font-weight: bold;
        color: #dddddd;
    }
}

h7 {
    font-family: "Anton", arial, helvetica, avenir, sans-serif;
    font-size: 38px;
    line-height: 36px;
    font-weight: normal;
    letter-spacing: 1px;
    margin-top: -2px;
    color: #dddddd;
}
@media (max-width: 1025px) {
    h7 {
        font-size: 38px;
    }
}

/* end */


/* general layout settings */

ul {
    list-style: none;
    padding: 0;
}

li {
    display: inline;
}

::-moz-selection {
    background: #F6861E; color: #fff; text-shadow: none;
}

::selection {
    background: #F6861E; color: #fff; text-shadow: none;
}

/* end */


/* navigation settings */

#nav {
    height: 100px;
    position: relative;
}

.darkNav {
    font-family: "Roboto", tahoma, arial, helvetica, avenir, sans-serif;
    font-size: 16px;
}

.darkNav li {
    margin-right: 20px;
}

.darkNav li:last-child {
    margin-right: 0;
}

.darkNav a,
.darkNav a:visited {
    color: #ffffff;
}

.darkNav a:hover,
.darkNav a:active {
    color: #999999;
}

.lightNav {
    font-family: "Roboto", tahoma, arial, helvetica, avenir, sans-serif;
    font-size: 12px;
}

.lightNav li {
    float: left;
    margin-right: 25px;
}

.lightNav li:last-child {
    margin-right: 0;
}

.lightNav li.animateArrowParent {
    margin-top: -5px;
}

.lightNav a:visited,
.lightNav a {
    color: #211f1f;
}

.lightNav a:hover,
.lightNav a:active {
    color: #c94a00;
}

.lightNav li.animateArrowParent a,
.lightNav li.animateArrowParent a:visited,
.lightNav li.animateArrowParent a:hover,
.lightNav li.animateArrowParent a:active {
    color: #c94a00;
}

.lightNav li.socialIcons {
    margin-top: -11px;
}

.inverted a:visited,
.inverted a {
    color: #f2ede3;
}

.inverted a:hover,
.inverted a:active {
    color: #c94a00;
}

.inverted li.animateArrowParent a,
.inverted li.animateArrowParent a:visited,
.inverted li.animateArrowParent a:hover,
.inverted li.animateArrowParent a:active {
    color: #c94a00;
}

#footerInfo a:visited,
#footerInfo a {
    color: #665C5C;
}

#footerInfo a:hover,
#footerInfo a:active {
    text-decoration: underline;
    color: #665C5C;
}

/* end */


/* arrow animations

.no-touch .animateArrow {
    -webkit-transition: -webkit-transform 0.2s ease-in;
    -moz-transition: -moz-transform 0.2s ease-in;
    -ms-transition: -ms-transform 0.2s ease-in;

    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
}
.no-touch .animateArrowParent:hover .animateArrow {
    -webkit-transform: translate(5px, 0);
    -moz-transform: translate(5px, 0);
    -ms-transform: translate(5px, 0);
    transform: translate(5px, 0);
}

*/


/* colours */

.white {
    color: #FFFFFF;
}

.yellow {
    color: #F6A71E;
}

.blue {
    color: #557B7F;
}

.red {
    color: #C94A00;
}

.brown {
    color: #B08358;
}

.tan {
    color: #6e6558;
}

.orange {
    color: #d87d25;
}

.green {
    color: #91A072;
}

.purple {
    color: #BF93B0;
}

.grey {
    color: #ffffff;
    font-family: "Roboto", tahoma, arial, helvetica, avenir, sans-serif;
}

.whiteOut {
    background-color: #ffffff;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.warning {
    color: #EEEEEE;
    font-size: 15px;
    font-weight: normal;
}

/* end */


/* miscellaneous text settings */

.disabled {
    visibility: hidden;
}

.relative {
    position: relative;
}

.noBold {
    font-family: "Roboto", tahoma, arial, helvetica, avenir, sans-serif;
}

.bold {
    font-family: "Roboto", tahoma, arial, helvetica, avenir, sans-serif;
}

.demi {
    font-family: "Roboto", tahoma, arial, helvetica, avenir, sans-serif;
    font-weight:normal;
}

.toUpper {
    text-transform: uppercase;
}

.clear_fix {
    overflow: hidden;
    display: inline-block;
    display: block;
}

.noSelect {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.twentyOne {
    font-size: 21px;
}

a.isLocation,
a.isLocation:visited,
a.isLocation:hover,
a.isLocation:active {
    text-decoration: underline;
}

#navLinks {
    position: absolute;
    top: 33px;
    right: 0;
}

/* end */


/* size width of all pages */

.sized {
    overflow: visible;
    position: relative;
    height: 100%;
    width: 64%;
    margin: 0 auto;
}
@media (max-width: 1025px) {
    .sized {
        overflow: visible;
        position: relative;
        height: 100%;
        width: 90%;
        margin: 0 auto;
    }
}

/* end */


/* section dimensioning */

.section {
    min-height: 723px;
}

.section2 {
    min-height: 230px;
}

.sectionHead {
    position: relative;
    height: 63px;
    width: 890px;
    margin: 0 auto;
    border-bottom: 2px solid #fcfcfc;
}

.sectionLeft {
    float: left;
    width: 40%;
    height: 50%;
}

.sectionRight {
    float: left;
    width: 40%;
    height: 50%;
}

/* end */

/* video placement */

.sectionVideo {
    float: left;
    height: 100%;
    width: auto;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    clear: both;
}


/* dark pages */

.darkBody a,
.darkBody a:visited {
    color: #f2ede3;
    text-decoration: underline;
}

.darkBody a:hover,
.darkBody a:active {
    color:  #f2ede3;
    text-decoration: none;
}

.darkFooterBlue {
    width: 100%;
    height: 375px;
    background-color: #19346e;
    color: #f2f2f2;
}

.darkFooterGrey {
    width: 100%;
    height: 375px;
    background-color: #575757;
    color: #f2f2f2;
}

.darkFooterBrown {
    width: 100%;
    height: 375px;
    background-color: #4d3d2d;
    color: #f2f2f2;
}

.darkFooterTan {
    width: 100%;
    height: 375px;
    background-color: #60554a;
    color: #f2f2f2;
}

.darkFooterRed {
    width: 100%;
    height: 375px;
    background-color: #301717;
    color: #f2f2f2;
}

.darkFooterPurple {
    width: 100%;
    height: 375px;
    background-color: #252544;
    color: #f2f2f2;
}

.darkFooterGreen {
    width: 100%;
    height: 375px;
    background-color: #263431;
    color: #f2f2f2;
}

.darkFooterAqua {
    width: 100%;
    height: 375px;
    background-color: #1e3f43;
    color: #f2f2f2;
}

.darkFooterOrange {
    width: 100%;
    height: 375px;
    background-color: #573824;
    color: #f2f2f2;
}

.upperFooter {
    margin-bottom: 20px;
    border-bottom: 2px solid #F2EDE3;
    height: 50%;
}

.lowerFooter {
    height: 50%;
}

.darkNav {
    margin-top: 148px;
}

/* end */


/* footer settings */

.upperFooter .sectionLeft {
    width: auto;
}

.upperFooter .sectionRight {
    float: right;
    width: auto;
}

.lowerFooter .sectionLeft {
    width: auto;
}

.lowerFooter .sectionRight {
    float: right;
    width: 915px;
}

.footerNav ul {
    width: 445px;
}

.footerNav li {
    font-family: "Roboto", tahoma, arial, helvetica, avenir, sans-serif;
    margin-right: 17px;
}

.footerNav li:last-child {
    margin-right: 0;
}

.footerNav li:hover,
.footerNav li:active {
    color: #c94a00;
}

#footerInfo {
    color: #ffffff;
    width: 100%;
    float: left;
}

#footerInfo p {
    width: 100%;
    font-size: 15px;
    margin: 0;
    text-align: left;
}

#footerInfo p span.links {
    margin-left: 3em;
}

#footerInfo p:after {
  content: "";
  display: inline-block;
  width: 100%;
}

/* end */

