.site_content, .global_footer {
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 55em) {
  .site_content, .global_footer {
    width: 51em;
  }
}
.oldie .site_content, .oldie .global_footer {
  width: 51em;
}

/* Synotac global.css - Version 1.1 - Last Updated 2/28/07 */
/***************************************************************************
  GLOBAL HTML TAG CSS
  This is to get rid of MOST browser quirks
  Note that this WILL cause problems with HTML editors
  if users try to put borders on tables, etc.
****************************************************************************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

header, nav, footer {
  display: block;
}

html {
  height: 100%;
  margin-bottom: 1px;
}

body {
  margin: 0;
  padding: 0;
  color: #000;
  background: #fff;
}

/* for browsers that don't properly implement inheritance */
/* NOTE: this includes IE 6 in many cases */
body, p, li, ul, ol, td, textarea, input, select, font {
  line-height: 1.5em;
}

p, li, ul, ol, td {
  text-align: left;
}

img {
  border: 0;
}

td {
  vertical-align: top;
  padding: 0;
  margin: 0;
}

form {
  margin: 0;
  padding: 0;
}

/* line-height: normal is necessary so that IE does not resize input submit buttons on forms */
input {
  margin: 0;
  line-height: normal;
}

p, h1, h2, h3, h4, h5, h6 {
  margin: 1em 0;
}

h1, h2, h3, h4, h5, h6 {
  color: #000;
}

h1 {
  font-size: 18px;
}

h2 {
  font-size: 16px;
}

h3 {
  font-size: 14px;
}

h4, h5, h6 {
  font-size: 12px;
}

a {
  color: #33c;
}

a:hover {
  color: #999;
}

a:active {
  color: #6db33f;
}

ul, ol, li {
  margin: 0;
  padding: 0;
}

li {
  margin-left: 15px;
}

/********************** End global HTML tag CSS *********************/
/***************************************************************************
  GLOBAL CSS CLASSES
  This is a library of basic classes that cover most
  of the core CSS functionality needed
****************************************************************************/
.float_left {
  float: left;
  margin: 0 10px 10px 0;
}

.float_right {
  float: right;
  margin: 0 0 10px 10px;
}

.text_left_align {
  text-align: left;
}

.text_center_align {
  text-align: center;
}

.text_right_align {
  text-align: right;
}

.text_justify {
  text-align: justify;
}

.alert {
  font-weight: bold;
  color: #f00;
}

.no_display {
  display: none;
}

.border {
  border: 1px solid #333;
}

/********************** End global CSS classes *********************/
/* Synotac global_print.css - Version 1.0 - Last Updated 2/28/07 */
/***************************************************************************
  GLOBAL PRINT CSS
  All this currently has is a class to allow you to hide items when a page is printed.
****************************************************************************/
.no_print {
  display: none;
}

/* NOTE: this includes IE 6 in many cases */
body {
  font-family: Century Gothic, Arial, Helvetica, sans-serif;
  font-size: 14px;
  padding-bottom: 2em;
}
@media (min-width: 55em) {
  body {
    background: #6db33f;
  }
}
.oldie body {
  background: #6db33f;
}

h1 {
  margin-top: 0;
  margin-bottom: 12px;
}

p {
  margin: 0;
}

ul {
  margin-bottom: 1em;
}

img {
  height: auto;
  max-width: 100%;
}

.site_content:after {
  content: "";
  display: table;
  clear: both;
}

@media (min-width: 55em) {
  .global_header {
    float: left;
    margin-top: 2em;
  }
}
.oldie .global_header {
  float: left;
  margin-top: 2em;
}

.mobile_nav--toggle, .mobile_nav a {
  padding: 1em;
}

.mobile_nav {
  background-color: #6db33f;
  color: white;
  padding: 0.5em 2em;
}
.mobile_nav:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 55em) {
  .mobile_nav {
    display: none;
  }
}
.oldie .mobile_nav {
  display: none;
}
.mobile_nav--toggle {
  cursor: pointer;
  float: left;
}
.mobile_nav--bonus_item {
  float: right;
}
.mobile_nav--bonus_item:after {
  content: "";
  display: table;
  clear: both;
}
.mobile_nav--bonus_item a {
  float: right;
}
.mobile_nav--content {
  clear: both;
  display: none;
}
.mobile_nav--content a {
  display: block;
  padding: 0.5em;
}
.mobile_nav a {
  color: white;
  text-decoration: none;
}

.desktop_logo {
  display: none;
}
@media (min-width: 55em) {
  .desktop_logo {
    display: inline;
  }
}
.oldie .desktop_logo {
  display: inline;
}

.mobile_logo {
  display: block;
  margin: 1em auto 0;
}
@media (min-width: 55em) {
  .mobile_logo {
    display: none;
  }
}
.oldie .mobile_logo {
  display: none;
}

.mobile_tagline {
  text-align: center;
  margin: 1em 0;
}
@media (min-width: 55em) {
  .mobile_tagline {
    display: none;
  }
}
.oldie .mobile_tagline {
  display: none;
}

.global_footer {
  margin-top: 2em;
}

.footer_info {
  border-top: 1px solid #6db33f;
  display: block;
  margin: 2em;
  padding: 1em;
  text-align: center;
}
@media (min-width: 55em) {
  .footer_info {
    border-top: 1px solid #fff;
    color: white;
  }
}
.oldie .footer_info {
  border-color: white;
  color: white;
}
.footer_info a {
  color: black;
}
@media (min-width: 55em) {
  .footer_info a {
    color: white;
  }
}
.oldie .footer_info a {
  color: white;
}

.main_content {
  padding: 1em 1.5em;
}
@media (min-width: 55em) {
  .main_content {
    background-image: url(../images/content_background.gif);
    background-repeat: no-repeat;
    float: right;
    height: 260px;
    margin-top: 2em;
    width: 380px;
  }
}
.oldie .main_content {
  background-image: url(../images/content_background.gif);
  background-repeat: no-repeat;
  float: right;
  height: 260px;
  margin-top: 2em;
  width: 380px;
}
.main_content--nav {
  text-align: center;
}
.main_content--nav a {
  padding: 0 1em;
}

.sub_content {
  background-color: white;
  float: left;
  padding: 0 1.5em;
  position: relative;
  width: 100%;
}
@media (min-width: 55em) {
  .sub_content {
    margin-top: 2em;
    padding: 1em 1.5em;
  }
  .sub_content:before {
    content: url(../images/new_sub_content_top.gif);
    left: 0;
    position: absolute;
    top: 0;
    z-index: 0;
  }
  .sub_content:after {
    bottom: 0;
    content: url(../images/new_sub_content_bottom.gif);
    left: 0;
    position: absolute;
    z-index: 0;
  }
}
.oldie .sub_content {
  margin-top: 2em;
  padding: 1em 1.5em;
}
.oldie .sub_content:before {
  content: url(../images/new_sub_content_top.gif);
  left: 0;
  position: absolute;
  top: 0;
  z-index: 0;
}
.oldie .sub_content:after {
  bottom: 0;
  content: url(../images/new_sub_content_bottom.gif);
  left: 0;
  position: absolute;
  z-index: 0;
}

.secondary_sub_content {
  float: left;
  margin-top: 2em;
  padding: 1em;
  width: 100%;
}

.main_navigation {
  display: none;
  text-align: center;
}
@media (min-width: 55em) {
  .main_navigation {
    display: block;
  }
}
.oldie .main_navigation {
  display: block;
}
.main_navigation a {
  color: white;
  font-weight: 700;
  padding: 1.5em;
  text-decoration: none;
}
.main_navigation a:hover {
  color: black;
}

.pageName-why a[href="why.php"] {
  color: black;
}

.pageName-what a[href="what.php"] {
  color: black;
}

.pageName-products a[href="products.php"] {
  color: black;
}

.pageName-clients a[href="clients.php"] {
  color: black;
}

.pageName-about a[href="about.php"] {
  color: black;
}

.pageName-contact a[href="contact.php"] {
  color: black;
}

.pageName-home a[href="home.php"] {
  color: black;
}

.acorn_lore--title {
  float: left;
  font-size: 1em;
  margin: 0;
  width: 7em;
}
.acorn_lore--content {
  float: left;
  width: 100%;
}
@media (min-width: 55em) {
  .acorn_lore--content {
    width: 40em;
  }
}
.oldie .acorn_lore--content {
  width: 40em;
}

.contact_country {
  display: none;
}

.contact_required {
  color: red;
}

.contact_form_fields {
  list-style-type: none;
}

.contact_form_field {
  margin-left: 0;
  padding: 0.2em;
}
.contact_form_field:after {
  content: "";
  display: table;
  clear: both;
}

.contact_left_col {
  float: left;
  width: 30%;
}
@media (min-width: 34em) and (max-width: 55em) {
  .contact_left_col {
    width: 20%;
  }
}
@media (min-width: 55em) {
  .contact_left_col {
    width: 8em;
  }
}
.oldie .contact_left_col {
  width: 8em;
}

.contact_right_col {
  float: left;
  width: 70%;
}
@media (min-width: 34em) and (max-width: 55em) {
  .contact_right_col {
    width: 80%;
  }
}
@media (min-width: 55em) {
  .contact_right_col {
    width: auto;
  }
}
.oldie .contact_right_col {
  width: auto;
}
.contact_right_col textarea, .contact_right_col input {
  width: 100%;
}

.desktop_products {
  display: none;
  margin: 0 auto;
}
@media (min-width: 55em) {
  .desktop_products {
    display: block;
  }
}
.oldie .desktop_products {
  display: block;
}

.mobile_products {
  display: block;
  margin: 0 auto;
}
@media (min-width: 55em) {
  .mobile_products {
    display: none;
  }
}
.oldie .mobile_products {
  display: none;
}
