/**
 * @file
 * Tabs Styling
 *
 * Adds styles for the primary and secondary tabs.
 *
 * Compare this with default CSS found in the system module's stylesheet (a copy
 * of which is in drupal7-reference.css.)
 */
/*
 * Primary tabs
 */
/* =============================================================================
   NODE EDIT TABS
   ========================================================================== */
/*
* Basic positioning styles shared by primary and secondary tabs.
*/
/* line 72, ../sass/tabs.scss */
ul.primary,
ul.secondary {
  overflow: hidden;
  list-style: none;
  margin: 1em 0 2.5em;
  padding: 0 2px;
  white-space: nowrap;
}
/* line 79, ../sass/tabs.scss */
ul.primary li,
ul.secondary li {
  float: left;
  /* LTR */
  margin: 0.5em 3px 0;
}
/* line 84, ../sass/tabs.scss */
ul.primary a, ul.primary a:link,
ul.secondary a,
ul.secondary a:link {
  display: block;
  text-decoration: none;
}

/* line 91, ../sass/tabs.scss */
ul.primary {
  -webkit-box-shadow: #e2e7e9 0 0 5px inset;
  -moz-box-shadow: #e2e7e9 0 0 5px inset;
  box-shadow: #e2e7e9 0 0 5px inset;
  padding: 12px 20px 0;
}
/* line 94, ../sass/tabs.scss */
ul.primary li {
  border: 1px solid #F1F1F1;
  border-bottom: 0;
  margin: 0.5em 0 0 3px;
  /* LTR */
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  text-shadow: 1px 1px 0 white;
}
/* line 100, ../sass/tabs.scss */
ul.primary li.active {
  border-bottom: 1px solid white;
  margin-bottom: -1px;
  /* Overlap the uls border. */
}
/* line 103, ../sass/tabs.scss */
ul.primary li.active a {
  background-color: #ffffff;
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f1f1f1), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top center, #f1f1f1, #ffffff);
  background: -moz-linear-gradient(top center, #f1f1f1, #ffffff);
  background: -o-linear-gradient(top center, #f1f1f1, #ffffff);
  background: linear-gradient(top center, #f1f1f1, #ffffff);
  -webkit-box-shadow: #d1d1d1 0 0 2px;
  -moz-box-shadow: #d1d1d1 0 0 2px;
  box-shadow: #d1d1d1 0 0 2px;
  color: #494949;
  text-shadow: none;
  border: 1px solid #FFFFFF;
  border-bottom: 0;
  text-shadow: none;
}
/* line 114, ../sass/tabs.scss */
ul.primary li a {
  font-weight: bold;
  font-size: 85.7%;
  text-transform: uppercase;
  background: none repeat scroll 0 0 #28a9e1;
  border: 1px solid #28a9e1;
  border-bottom: 0;
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-box-shadow: white 0 0 2px inset;
  -moz-box-shadow: white 0 0 2px inset;
  box-shadow: white 0 0 2px inset;
  color: #ffffff;
  text-shadow: 0 1px 1px #077B9B;
  line-height: 26px;
  margin: 0;
  padding: 0 20px;
}
/* line 128, ../sass/tabs.scss */
ul.primary li a:hover {
  text-decoration: none;
}
/* line 131, ../sass/tabs.scss */
ul.primary li a.active {
  background: none repeat scroll 0 0 #ffffff;
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f1f1f1), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top center, #f1f1f1, #ffffff);
  background: -moz-linear-gradient(top center, #f1f1f1, #ffffff);
  background: -o-linear-gradient(top center, #f1f1f1, #ffffff);
  background: linear-gradient(top center, #f1f1f1, #ffffff);
  -webkit-box-shadow: #d1d1d1 0 0 2px;
  -moz-box-shadow: #d1d1d1 0 0 2px;
  box-shadow: #d1d1d1 0 0 2px;
  color: #494949;
  text-shadow: none;
  border: 1px solid #FFFFFF;
  border-bottom: 0;
  text-shadow: none;
}

/* FUTURE RAPID TABS 

ul.secondary {
  li {
    &.active {
        a {
          &:hover, &:link, &:visited, {
          	background: none repeat scroll 0 0 #28a9e1;
          	@include box-shadow(#ffffff 0 0 2px inset);
            color: #FFFFFF;
            text-shadow: none;
            border: 1px solid #28a9e1;
          	text-shadow: 0 0 2px #253e8d;
          } 
        }       
    }
    a {
      background: none repeat scroll 0 0 #28a9e1;
    	@include box-shadow(#ffffff 0 0 2px inset);
      color: #FFFFFF;
      text-shadow: none;
      border: 1px solid #28a9e1;
    	text-shadow: 0 0 2px #253e8d;
        &:hover {
          color: #FFFFFF;
          text-decoration: none;
        }
    }
  }
} */
/*
 * Secondary tabs STOCK 
 */
/* line 180, ../sass/tabs.scss */
ul.secondary {
  font-size: .9em;
  margin-top: -1.5em;
  /* Collapse bottom margin of ul.primary. */
  padding-bottom: .5em;
}
/* line 186, ../sass/tabs.scss */
ul.secondary a:link,
ul.secondary a:visited {
  -webkit-border-radius: 0.75em;
  -moz-border-radius: 0.75em;
  -ms-border-radius: 0.75em;
  -o-border-radius: 0.75em;
  border-radius: 0.75em;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-shadow: 1px 1px 0 white;
  background-color: #f2f2f2;
  color: #666;
  padding: 0 .5em;
}
/* line 195, ../sass/tabs.scss */
ul.secondary a:hover,
ul.secondary a:focus {
  background-color: #dedede;
  border-color: #999;
  color: #333;
}
/* line 201, ../sass/tabs.scss */
ul.secondary a.active,
ul.secondary a:active {
  text-shadow: 1px 1px 0 #333333;
  background-color: #666;
  border-color: #000;
  color: #fff;
}
