@theme(sc-jumbo-size) {
  
  $theme.button {
    // set these here because SC.AutoResize looks here...
    font-size: 16px;
    font-weight: bold;
    
    .sc-button-label {
      color: #777;
      margin-top: 12px;
      top: 0px;
      height: 24px;
    }
    
    @include slices("normal_button.png", $left: 3, $right: 3);
    
    &.sc-static-layout .sc-button-label {
      margin-left: 3px;
      margin-right: 3px;
    }
    
    &.active {
      @include slices("active_button.png", $left: 3, $right: 3);    
    }
  
    &.sel, &.def {
      .sc-button-label {
        color:white;
        text-shadow: 0px -1px 1px black;
      }
      
      @include slices("selected_button.png", $left: 3, $right: 3);    
  
      &.sel.active, &.def.active {
        @include slices("selected_active_button.png", $left: 3, $right: 3);
      }
    }
  }
  
}
