/* Setting the base font size here to 100% will give us a default of 16 pixels, and allow us to make the fonts scalable.  */
/* The color defined here is that of the base font, not a background color of the body tag.  */
/* body { margin: 0; padding: 0; color: #000000; background-color: #c9cacf;} */
body { margin: 0; padding: 0; color: #000000; background-color: #ffffff;}


/* These next lines overirde the default bootstrap lines  */
/* The line numbers referenced are from the bootstrap.css file */

/* from line 4498 - 4501 navbar background color and border */
.navbar-default {
  background-color: #ffffff;  /* white */
  border-color: #cd0001; 
  /* border:5px solid #036031;  */
  font-size: 14px;  /* you can add this here to bump up the font size in the nav menu.  the default is 14 px. */
}


/* from line 4513 - 4515 the unselected nav menu link (text) color */
.navbar-default .navbar-nav > li > a {
  color: #000000;
}

/* from line 4516 - 4520 nav menu hover color text, and background color of the hover button */
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #ffffff;
/*  background-color: transparent;  */
  background-color: #cd0001;  
  /* I added this next line to prevent spagin introduced by the social media icon  */  
  padding: 16px;
}

/* from line 4521 - 4526 nav menu "Active" button's text and backgrond color  */
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #ffffff;
  background-color: #000000;
/* I added this next line to prevent spagin introduced by the social media icon  */  
  padding: 16px;
}


/* from lines 4297-4308 the unselected hamburger background color (red) */
.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
/* background-color: transparent; */
   background-color: #cd0001;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}


/* from line 4533 - 4535 update the hamburger border color (red) */
.navbar-default .navbar-toggle {
  border-color: #cd0001;
}


/* from line 4536 - 4539 update the hamburger background mouseover color (red) */
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #cd0001;
}


/* from line 4540 - 4542 update the hamburger color strips (white) */
.navbar-default .navbar-toggle .icon-bar {
  background-color: #ffffff;
}


/* from line 4547 - 4552 update the text of the top level of a selected drop down link */
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #ffffff;
  background-color: #036031;
}


/* from line 3536 update the background color of the unselected drop down options */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 16px;  /* the default size of the font in the drop down is 14px */
  text-align: left;
  list-style: none;
  background-color: #036031;  /* background color of the unselected drop down options */
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
          box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}



/* from line 3561 update the text color of the unselected drop down text */
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #ffffff;  /*  the text color of the unselected drop down text */
  white-space: nowrap;
}

/* I don't need this for Bestech, but in the interests of a thorough reference: */ 
/* In the dropdown menus, the background button hover color is indicated on line 3568: */ 
/* I.dropdown-menu > li > a:hover, */
/* I.dropdown-menu > li > a:focus { */
/* I  color: #262626; */
/* I  text-decoration: none; */
/* I  background-color: #ff0000; */
/* and the associated button text is indicated on line 3566 */


/* from line 4553 - 4574 update the text color of the unselected drop down text in mobile */
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #ffffff;  /* the text color of the unselected drop down text in mobile */
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;   
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;  
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}


/* from line 4334 - 4356 updating the unselected drop down background color in mobile */
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: #036031;  /*  the unselected drop down background color in mobile */
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}



/* These classes only appear in desk-top envrionments  They work in concert with the items below, max-width 489, where they dissappear.*/
@media only screen and (min-device-width: 490px) {
/* table.zombieLimitedWidth { margin-left:auto; margin-right:auto; border-spacing: 0px; border-collapse: separate; max-width: 989px; } */
table.zombieLimitedWidth { margin-left:auto; margin-right:auto; border-spacing: 0px; border-collapse: separate; max-width: 989px; }
table.zombie { margin-left:auto; margin-right:auto; border-spacing: 0px; border-collapse: separate; }
table.CenterTenWidthLimit2 { margin-left:auto; margin-right:auto; border-spacing: 0px; border-collapse: separate; border:10px solid #1a6f38; border-radius:10px;}
table.CenterSixWidthLimit { margin-left:auto; margin-right:auto; border-spacing: 6px; border-collapse: separate; max-width: 600px; border:6px solid #1a6f38; border-radius:10px; background-color: #1a6f38;}
td.ZeroWithColorWhiteZombie {padding: 4px; background-color: #ffffff; border:6px solid #ffffff; border-radius:10px;}
img.MiniMeZombie { display: block; margin-left: auto; margin-right: auto; width:100%; height:auto; max-width: 192px; max-height: 192px; } 
.Switch { display: block;  } 
img.RightZombie { position: absolute; right: 0px; width: 250px;}
td.PaddedFrameZombie {border: 0.2em solid #ffffff; padding: 10px; }
td.PaddedFrame95Zombie {border: 0.2em solid #ffffff; padding: 10px; width: 95px;}
td.PaddedFrame90Zombie {border: 0.2em solid #ffffff; padding: 10px; width: 90px;}
td.PaddedFrame75Zombie {border: 0.2em solid #ffffff; padding: 10px; width: 75px;}
td.PaddedFrame100Zombie {border: 0.2em solid #ffffff; padding: 10px; width: 100px;}
td.PaddedFrame140Zombie {border: 0.2em solid #ffffff; padding: 10px; width: 140px;}
}

@media only screen and (max-device-width: 489px) {
table.zombie {display: none !important;}
/* table.CenterSixWidthLimit {display: none !important;} */
table.CenterTenWidthLimit2 {display: none !important;}
td.ZeroWithColorWhiteZombie {display: none !important;}
img.MiniMeZombie {display: none !important;} 
img.RightZombie {display: none !important;} 
.Switch {display: none !important;}
td.PaddedFrameZombie   {border: 0.2em solid #ffffff; padding: 10px; display: none !important;}
td.PaddedFrame95Zombie {border: 0.2em solid #ffffff; padding: 10px; width: 95px; display: none !important;}
td.PaddedFrame90Zombie {border: 0.2em solid #ffffff; padding: 10px; width: 90px; display: none !important;}
td.PaddedFrame100Zombie {border: 0.2em solid #ffffff; padding: 10px; width: 100px; display: none !important;}
td.PaddedFrame140Zombie {border: 0.2em solid #ffffff; padding: 10px; width: 140px; display: none !important;}
td.PaddedFrame75Zombie {border: 0.2em solid #ffffff; padding: 10px; width: 75px; display: none !important;}
}


img.center { display: block; margin-left: auto; margin-right: auto; } 
img.logo { display: block; width:100%; height:auto; max-width: 300px; max-height: 47px; }
img.FlexRight330 { display: block; width:100%; max-width: 330px; height:auto; float:right; margin: 10px 0px 10px 10px;}


img.Watermark1 { position: absolute; left: 965px; top: 180px; z-index: 10; }
img.Watermark2 { position: absolute; left: 700px; top: 390px; z-index: -1; }

/*  As of June 8th, this is not working,and is not being used.  Not sure why yet, as it has worked well in other sites.  */  
/* I'm using the switcher and Houdinis to swap one image for another from desktop to mobile  */
@media only screen and (max-device-width: 489px) {
    span[id=Switcher1] {
      display:block;
	  /* use the next line only if you want to center the mobile image  */
	  margin-left: auto; margin-right: auto;
      background-image: url(BodaciousLogo160x25.png) !important;
      background-repeat: no-repeat !important;
      background-position: center !important;
      width: 160px !important;
      height: 25px !important;
    }
    img[id=Houdini1] {display: none !important;}
  }



/* the SeeYa class is what we will use to make things dissappear on screesn less than 489 pixels  */

@media only screen and (max-device-width: 489px) {
img.SeeYa {display: none !important;}
td.SeeYa {display: none !important;}
td.ZeroCenterSeeYa {padding: 0px; text-align: center; display: none !important;}
#SeeYa {display: none !important;}
#SeeYa2 {display: none !important;}
#SeeYa3 {display: none !important;}
#SeeYa4 {display: none !important;}
table.SeeYa {display: none !important;}
br.SeeYa {display: none !important;}
}


/* Or you can use the class mobilehide, and this:  */
   .mobileHide { display: inline;}
   /* Smartphone Portrait and Landscape */
   @media only screen
   and (min-device-width : 320px)
   and (max-device-width : 489px){  .mobileHide { display: none;}}
   

/* I have used this CLASS in a div, td, or a span, to make elements only appear in mobile  */
   .mobileShow { display: none;}
   #mobileShow { display: none;}
   /* Smartphone Portrait and Landscape */
   @media only screen
   and (min-device-width : 320px)
   and (max-device-width : 489px){ .mobileShow { display: inline;}}
   

span.masthead  {color: #e8662c; font-family:"Impact"; font-size:200%;}
span.mastheadsub  {color: #ffffff; font-family:"Arial"; font-size:120%;}
span.white  {color: #ffffff; font-family:Arial; font-size:100%;}
p.blue  {color: #103b63; font-family:Arial; font-size:100%;}
p.center  {color: #103b63; font-family:Arial; font-size:100%; text-align: center;}

span.whiteXL  {color: #ffffff; font-family:Arial; font-size:150%;}
span.WhiteCenter  { display: block; color: #ffffff; font-family:Arial; font-size:100%; text-align: center;}
span.black  {color: #000000; font-family:Arial; font-size:120%;}
span.headerV2  {color: #ffffff; font-family:Alice,'Open Sans',Arial; font-size:200%;}
span.ContentWhiteSmall  {color: #ffffff; font-family:Arial; font-size:80%; text-align: left;}


span.headerblue  {color: #103b63; font-family: Arial; font-size:200%; margin: 0px}
span.headergreen  {color: #3a5f2c; font-family: Arial; font-size:200%; margin: 0px}
span.headerorange  {color: #e8662c; font-family: Arial; font-size:200%; margin: 0px}
span.headerblack  {color: #000000; font-family: Arial; font-size:200%; margin: 0px}
span.green  {color: #3a5f2c; font-family: Arial; font-size:120%; margin: 0px}
span.headerblack  {color: #000000; font-family: Arial; font-size:200%; margin: 0px}

span.whiteXL  {color: #ffffff; font-family:Arial; font-size:150%;}
span.WhiteCenter  { display: block; color: #ffffff; font-family:Arial; font-size:100%; text-align: center;}

hr { border: 0;color: #e8662c; background-color: #e8662c; height: 3px; width: 100%; padding: 0px; margin: 0px;}
hr.white { border: 0;color: #ffffff; background-color: #ffffff; height: 3px; width: 100%; padding: 0px; margin: 0px;}

table.center { margin-left:auto; margin-right:auto; border-spacing: 0px; border-collapse: separate; max-width: 989px; height: 100%; }
table.CenterTenWidthLimit1 { margin-left:auto; margin-right:auto; border-spacing: 10px; border-collapse: separate; max-width: 700px;}
table.CenterTenWidthLimit3 { margin-left:auto; margin-right:auto; border-spacing: 10px; border-collapse: separate; max-width: 960px;}
table.CenterTenNoWidthLimit { margin-left:auto; margin-right:auto; border-spacing: 10px; border-collapse: separate;}
table.ten { border-spacing: 10px; border-collapse: separate; }
td.ZeroLeft {padding: 0px; text-align: left;}
td.PaddedFrame {border: 0.2em solid #ffffff; padding: 10px; }
td.PaddedFrameBlue {border: 0.2em solid #121246; padding: 10px; }
td.PaddedFrame95 {border: 0.2em solid #ffffff; padding: 10px; width: 95px;}
td.PaddedFrame140 {border: 0.2em solid #ffffff; padding: 10px; width: 140px;}
td.PaddedFrame75 {border: 0.2em solid #ffffff; padding: 10px; width: 75px;}

iframe.Tube {
    display: block;
    width: 800px;
    height: 600px;
    margin: 0 auto;
    border: 0;
}

div.underline
{border-bottom:solid #121246 3px;}

div.WhiteDots
li { color: #ffffff; } 

div.lighterblue
{background-color: #c0cee9; padding: 5px 20px 5px 20px;}


div.brown
{background-color: #3f301b;}


div.center4
{margin-left:auto; margin-right:auto; max-width: 1000px;}

div.BlockQuote1
{margin: 0px 50px 10px 50px;}

div.BlockQuote2
{width: 200px; margin: 0px 50px 50px 50px;}

table.Right { float:right; margin: 0px 0px 10px 20px; }

div.SmallRightCarousel
{max-width: 350px; float: right; margin: 10px 0px 10px 10px;}

div.SmallRightCarouselTwo
{max-width: 300px; float: right; margin: 10px 0px 10px 10px;}