/**
 * @file    tem/PagliaTheme/jquery.toggles.css
 * @author  Simon Tabor (http://simontabor.com/labs/toggles)
 * @version 2.0.4
 *
 * @copyright Copyright(C) 2013 Simon Tabor (simontabor.com)
 *  - Licensed under the MIT License.
 *
 * @brief CSS Styles for JQuery Toggles Plugin.
 * 
 * @section DESCRIPTION
 *
 *  CSS Styles for JQuery Toggles Plugin to imitate iPhone toggle button.
 *  This is toggle-light theme and was modified to meet the system needs.
 * 
 * 		- https://github.com/simontabor/jquery-toggles
 * 		- http://simontabor.com/labs/toggles
 * 
 */

.toggle-slide {
  overflow: hidden;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  direction: ltr;
}
.toggle-slide .toggle-on,.toggle-slide .toggle-off,.toggle-slide .toggle-blob {
    float: left;
}
.toggle-slide .toggle-blob {
    position: relative;
    z-index: 99;
    cursor: hand;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

.toggle-light .toggle-slide {
  border-radius: 4px;
  box-shadow: 0 0 0 1px #999;
}

.toggle-light .toggle-slide .toggle-on,.toggle-light .toggle-slide .toggle-off,.toggle-light .toggle-slide .toggle-blob {
  font-size: 11px;
  font-weight: 500;
}

.toggle-light .toggle-slide .toggle-on, .toggle-light .toggle-select .toggle-inner .active {
  background: #8E8B8B url(images/ui-bg_highlight-soft_50_4670be_1x100.png) 50% 50% repeat-x;/* Paglia
  background: #9EFA9E url(images/ui-bg_highlight-soft_50_4670be_1x100.png) 50% 50% repeat-x;   Sig*/
  box-shadow: inset -2px 2px 6px rgba(0,0,0,0.2);
  color: #FFFFFF;
}

.toggle-light .toggle-slide .toggle-off, .toggle-light .toggle-select .toggle-on {
  background: #8E8B8B url(images/ui-bg_highlight-soft_50_4670be_1x100.png) 50% 50% repeat-x;                        /* Paglia */
  box-shadow: inset -2px 2px 6px rgba(0,0,0,0.2);                                                                   /* Paglia */
  color: #FFFFFF;                                                                                                   /* Paglia
  color: rgba(0,0,0,0.6);                                                                                              Sig
  text-shadow: 0 1px rgba(255,255,255,0.2);                                                                            Sig
  background: #cfcfcf;                                                                                                 Sig
  background: -moz-linear-gradient(top,  #cfcfcf 0%, #f5f5f5 100%);                                                    Sig
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cfcfcf), color-stop(100%,#f5f5f5));       Sig
  background: -webkit-linear-gradient(top,  #cfcfcf 0%,#f5f5f5 100%);                                                  Sig
  background: -o-linear-gradient(top,  #cfcfcf 0%,#f5f5f5 100%);                                                       Sig
  background: -ms-linear-gradient(top,  #cfcfcf 0%,#f5f5f5 100%);                                                      Sig
  background: linear-gradient(to bottom,  #cfcfcf 0%,#f5f5f5 100%);                                                    Sig
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cfcfcf', endColorstr='#f5f5f5',GradientType=0 ); Sig */
}

.toggle-light .toggle-slide .toggle-blob {
  border-radius: 4px;
  background: #cfcfcf;
  background: -moz-linear-gradient(bottom,  #cfcfcf 0%, #f5f5f5 100%);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0%,#cfcfcf), color-stop(100%,#f5f5f5));
  background: -webkit-linear-gradient(bottom,  #cfcfcf 0%,#f5f5f5 100%);
  background: -o-linear-gradient(bottom,  #cfcfcf 0%,#f5f5f5 100%);
  background: -ms-linear-gradient(bottom,  #cfcfcf 0%,#f5f5f5 100%);
  background: linear-gradient(to top,  #cfcfcf 0%,#f5f5f5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cfcfcf', endColorstr='#f5f5f5',GradientType=0 );

  box-shadow: 0px 1px 3px #888;
}

.toggle-light .toggle-slide .toggle-blob:hover {
  background: #e4e4e4;
  background: -moz-linear-gradient(top,  #e4e4e4 0%, #f9f9f9 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e4e4e4), color-stop(100%,#f9f9f9));
  background: -webkit-linear-gradient(top,  #e4e4e4 0%,#f9f9f9 100%);
  background: -o-linear-gradient(top,  #e4e4e4 0%,#f9f9f9 100%);
  background: -ms-linear-gradient(top,  #e4e4e4 0%,#f9f9f9 100%);
  background: linear-gradient(to bottom,  #e4e4e4 0%,#f9f9f9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e4e4e4', endColorstr='#f9f9f9',GradientType=0 );
}
