/* ========================================================================
 * bootstrap-switch - v3.0.2
 * http://www.bootstrap-switch.org
 * ========================================================================
 * Copyright 2012-2013 Mattia Larentis
 *
 * ========================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ========================================================================
 */

.bootstrap-switch {
    line-height: 8px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    min-width: 100px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: left;
    vertical-align: middle;
    border: 1px solid;
    border-color: #ccc;
    border-radius: 4px;
}
.bootstrap-switch.bootstrap-switch-mini {
    min-width: 71px;
}
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {
    font-size: 10px;
    line-height: 9px;
    padding-top: 4px;
    padding-bottom: 4px;
}
.bootstrap-switch.bootstrap-switch-small {
    min-width: 79px;
}
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {
    font-size: 12px;
    line-height: 18px;
    padding-top: 3px;
    padding-bottom: 3px;
}
.bootstrap-switch.bootstrap-switch-large {
    min-width: 120px;
}
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {
    font-size: 14px;
    line-height: normal;
    padding-top: 9px;
    padding-bottom: 9px;
}
.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {
    -webkit-transition: margin-left .5s;
    transition: margin-left .5s;
}
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-container {
    margin-left: 0;
}
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-container {
    margin-left: -50%;
}
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-container {
    margin-left: -25%;
}
.bootstrap-switch.bootstrap-switch-disabled,
.bootstrap-switch.bootstrap-switch-readonly,
.bootstrap-switch.bootstrap-switch-indeterminate {
    cursor: default !important;
    opacity: .5;
    filter: alpha(opacity=50);
}
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label {
    cursor: default !important;
}
.bootstrap-switch.bootstrap-switch-focused {
    border-color: #ccc;
    outline: 0;
}
.bootstrap-switch .bootstrap-switch-container {
    top: 0;
    display: inline-block;
    width: 150%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    border-radius: 4px;
}
.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-handle-off,
.bootstrap-switch .bootstrap-switch-label {
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    display: inline-block !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
    padding-top: 4px;
    padding-bottom: 4px;
    cursor: pointer;
}
.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-handle-off {
    z-index: 1;
    width: 33.333333333%;
    text-align: center;
}
.bootstrap-switch .bootstrap-switch-label {
    z-index: 100;
    width: 33.333333333%;
    margin-top: -1px;
    margin-bottom: -1px;
    text-align: center;
    color: #333;
    background: #fff;
}
.bootstrap-switch input[type='radio'],
.bootstrap-switch input[type='checkbox'] {
    position: absolute !important;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
}
.bootstrap-switch input[type='radio'].form-control,
.bootstrap-switch input[type='checkbox'].form-control {
    height: auto;
}

/* Input switch alternate */

div.switch-toggle {
    display: block;
    height: 24px;
    width: 48px;
    position: relative;
    cursor: pointer;
    background: #fff;
    box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.2);
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    border-radius: 50px;
}
div.switch-toggle:after {
    content: '';
    display: block;
    height: 18px;
    width: 18px;
    background: #fff;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 50px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
div.switch-toggle:before {
    content: '';
    position: absolute;
    right: 1px;
    top: 12px;
    color: #fff;
}
div.switch-toggle:hover:after {
    left: 5px;
}
div.switch-toggle.switch-on:before {
    content: '';
    right: 40px;
}
.switch-toggle.switch-on {
    background: #0c0;
}
div.switch-toggle.switch-on:after {
    left: 26px;
}
div.switch-toggle.switch-on:hover:after {
    left: 24px;
}
<pre class="cake-error"><a href="javascript:void(0);" onclick="document.getElementById('cakeErr6aabdc91ba7c1-trace').style.display = (document.getElementById('cakeErr6aabdc91ba7c1-trace').style.display == 'none' ? '' : 'none');"><b>Warning</b> (512)</a>: _cake_core_ cache was unable to write 'cake_dev_eng' to File cache [<b>CORE/Cake/Cache/Cache.php</b>, line <b>328</b>]<div id="cakeErr6aabdc91ba7c1-trace" class="cake-stack-trace" style="display: none;"><a href="javascript:void(0);" onclick="document.getElementById('cakeErr6aabdc91ba7c1-code').style.display = (document.getElementById('cakeErr6aabdc91ba7c1-code').style.display == 'none' ? '' : 'none')">Code</a> <a href="javascript:void(0);" onclick="document.getElementById('cakeErr6aabdc91ba7c1-context').style.display = (document.getElementById('cakeErr6aabdc91ba7c1-context').style.display == 'none' ? '' : 'none')">Context</a><pre id="cakeErr6aabdc91ba7c1-code" class="cake-code-dump" style="display: none;"><code><span style="color: #000000"><span style="color: #0000BB">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">),</span></span></code>
<code><span style="color: #000000"><span style="color: #0000BB">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;E_USER_WARNING</span></span></code>
<span class="code-highlight"><code><span style="color: #000000"><span style="color: #0000BB">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">);</span></span></code></span></pre><pre id="cakeErr6aabdc91ba7c1-context" class="cake-context" style="display: none;">$key = &#039;cake_dev_eng&#039;
$value = array(
	&#039;LC_MESSAGES&#039; =&gt; array()
)
$config = &#039;_cake_core_&#039;
$settings = array(
	&#039;prefix&#039; =&gt; &#039;*****&#039;,
	&#039;engine&#039; =&gt; &#039;File&#039;,
	&#039;path&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/app/tmp/cache/persistent/&#039;,
	&#039;serialize&#039; =&gt; true,
	&#039;duration&#039; =&gt; (int) 10,
	&#039;lock&#039; =&gt; true,
	&#039;isWindows&#039; =&gt; false,
	&#039;mask&#039; =&gt; (int) 436,
	&#039;probability&#039; =&gt; (int) 100,
	&#039;groups&#039; =&gt; array()
)
$success = false</pre><pre class="stack-trace">Cache::write() - CORE/Cake/Cache/Cache.php, line 328
I18n::translate() - CORE/Cake/I18n/I18n.php, line 240
__d - CORE/Cake/basics.php, line 636
Cache::write() - CORE/Cake/Cache/Cache.php, line 326
App::shutdown() - CORE/Cake/Core/App.php, line 901
[main] - [internal], line ??</pre></div></pre><pre class="cake-error"><a href="javascript:void(0);" onclick="document.getElementById('cakeErr6aabdc91baa9e-trace').style.display = (document.getElementById('cakeErr6aabdc91baa9e-trace').style.display == 'none' ? '' : 'none');"><b>Warning</b> (512)</a>: _cake_core_ cache was unable to write 'file_map' to File cache [<b>CORE/Cake/Cache/Cache.php</b>, line <b>328</b>]<div id="cakeErr6aabdc91baa9e-trace" class="cake-stack-trace" style="display: none;"><a href="javascript:void(0);" onclick="document.getElementById('cakeErr6aabdc91baa9e-code').style.display = (document.getElementById('cakeErr6aabdc91baa9e-code').style.display == 'none' ? '' : 'none')">Code</a> <a href="javascript:void(0);" onclick="document.getElementById('cakeErr6aabdc91baa9e-context').style.display = (document.getElementById('cakeErr6aabdc91baa9e-context').style.display == 'none' ? '' : 'none')">Context</a><pre id="cakeErr6aabdc91baa9e-code" class="cake-code-dump" style="display: none;"><code><span style="color: #000000"><span style="color: #0000BB">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">),</span></span></code>
<code><span style="color: #000000"><span style="color: #0000BB">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;E_USER_WARNING</span></span></code>
<span class="code-highlight"><code><span style="color: #000000"><span style="color: #0000BB">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">);</span></span></code></span></pre><pre id="cakeErr6aabdc91baa9e-context" class="cake-context" style="display: none;">$key = &#039;file_map&#039;
$value = array(
	&#039;Configure&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Core/Configure.php&#039;,
	&#039;Hash&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Utility/Hash.php&#039;,
	&#039;Cache&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Cache/Cache.php&#039;,
	&#039;FileEngine&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Cache/Engine/FileEngine.php&#039;,
	&#039;CacheEngine&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Cache/CacheEngine.php&#039;,
	&#039;Inflector&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Utility/Inflector.php&#039;,
	&#039;ErrorHandler&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Error/ErrorHandler.php&#039;,
	&#039;CakePlugin&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Core/CakePlugin.php&#039;,
	&#039;CakeLog&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Log/CakeLog.php&#039;,
	&#039;LogEngineCollection&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Log/LogEngineCollection.php&#039;,
	&#039;ObjectCollection&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Utility/ObjectCollection.php&#039;,
	&#039;FileLog&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Log/Engine/FileLog.php&#039;,
	&#039;BaseLog&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Log/Engine/BaseLog.php&#039;,
	&#039;CakeLogInterface&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Log/CakeLogInterface.php&#039;,
	&#039;Debugger&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Utility/Debugger.php&#039;,
	&#039;CakeText&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Utility/CakeText.php&#039;,
	&#039;Dispatcher&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Routing/Dispatcher.php&#039;,
	&#039;CakeEventListener&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Event/CakeEventListener.php&#039;,
	&#039;CakeRequest&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Network/CakeRequest.php&#039;,
	&#039;CakeResponse&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Network/CakeResponse.php&#039;,
	&#039;CakeEvent&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Event/CakeEvent.php&#039;,
	&#039;CakeEventManager&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Event/CakeEventManager.php&#039;,
	&#039;AssetDispatcher&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Routing/Filter/AssetDispatcher.php&#039;,
	&#039;DispatcherFilter&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Routing/DispatcherFilter.php&#039;,
	&#039;CacheDispatcher&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/lib/Cake/Routing/Filter/CacheDispatcher.php&#039;
)
$config = &#039;_cake_core_&#039;
$settings = array(
	&#039;prefix&#039; =&gt; &#039;*****&#039;,
	&#039;engine&#039; =&gt; &#039;File&#039;,
	&#039;path&#039; =&gt; &#039;/var/www/dev.behaviorzone.net/beaba/Source/app/tmp/cache/persistent/&#039;,
	&#039;serialize&#039; =&gt; true,
	&#039;duration&#039; =&gt; (int) 10,
	&#039;lock&#039; =&gt; true,
	&#039;isWindows&#039; =&gt; false,
	&#039;mask&#039; =&gt; (int) 436,
	&#039;probability&#039; =&gt; (int) 100,
	&#039;groups&#039; =&gt; array()
)
$success = false</pre><pre class="stack-trace">Cache::write() - CORE/Cake/Cache/Cache.php, line 328
App::shutdown() - CORE/Cake/Core/App.php, line 901
[main] - [internal], line ??</pre></div></pre>