/*buttons*/

.gen-button {
    display: inline-block;
    border-radius: 4px;
    border: 1px solid #8a8a8a;
    height: 24px;
    padding: 0px 8px;
	background: #ededed; /* Old browsers */
  background: -moz-linear-gradient(top,  #ffffff 0%, #ededed 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  #ffffff 0%,#ededed 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  #ffffff 0%,#ededed 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  #ffffff 0%,#ededed 100%); /* IE10+ */
  background: linear-gradient(to bottom,  #ffffff 0%,#ededed 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */    font: 13px/24px 'Open Sans', Arial, sans-serif;
    text-decoration: none;
    color: #0079c2;
    text-shadow: 0px 1px 0px white;
    cursor: pointer;

}

.button-group .gen-button {border-radius: 0; border-left-width: 0; float: left;}
.button-group .gen-button.first {border-left-width: 1px; border-radius: 4px 0 0 4px; border-right: 1px solid #bfbfbf;}
.button-group .gen-button.last {border-radius: 0 4px 4px 0;}

.gen-button:hover {
    background: #ffffbf;
    color: #005589;
    text-shadow: none;
    text-decoration: none;
}
.gen-button:active, .gen-button.pressed {
    background: #c7c7c7;
    box-shadow: inset 0px 1px 5px 0px rgba(0,0,0,0.5);
    color: #005589;
    text-shadow: none;
}
.gen-button.disabled {
    background-color: #ededed;
    background-image: -o-linear-gradient(bottom , #ededed 0%, white 100%);
	background-image: -moz-linear-gradient(bottom , #ededed 0%, white 100%);
	background-image: -webkit-linear-gradient(bottom , #ededed 0%, white 100%);
	background-image: -ms-linear-gradient(bottom , #ededed 0%, white 100%);
	background-image: linear-gradient(bottom , #ededed 0%, white 100%);
    color: #b8b8b8;
    text-shadow: 0px 1px 0px white;
    cursor: not-allowed;
}

.gen-button.add-notification{
    float: right;
}

.big-button {
    display: inline-block;
    text-decoration: none;
    color: white;
    font: bold 15px/34px 'Open Sans', Arial, sans-serif;
    text-shadow: 0px 2px 2px #005589;
    padding: 0 8px;
    height: 34px;
    border: 1px solid #005589;
    border-radius: 4px;
    background-color: #0079c2;
    background-image: -o-linear-gradient(bottom , #0079c2 0%, #009dff 100%);
	background-image: -moz-linear-gradient(bottom , #0079c2 0%, #009dff 100%);
	background-image: -webkit-linear-gradient(bottom , #0079c2 0%, #009dff 100%);
	background-image: -ms-linear-gradient(bottom , #0079c2 0%, #009dff 100%);
	background-image: linear-gradient(bottom , #0079c2 0%, #009dff 100%);
    cursor: pointer;
	
}

.big-button:hover {
    background: #ffffbf;
    text-shadow: none;
    color: #005589;
    border-color: #8a8a8a;
    text-decoration: none;
}

.big-button:active, .big-button.pressed {
    background: #c7c7c7;
    border-color: #8a8a8a;
    box-shadow: inset 0 1px 5px 0 rgba(0,0,0,0.5);
    color: #005589;
    text-shadow: none;
}

.big-button.disabled {
    background-color: #ededed;
    background-image: -o-linear-gradient(bottom , #ededed 0%, white 100%);
	background-image: -moz-linear-gradient(bottom , #ededed 0%, white 100%);
	background-image: -webkit-linear-gradient(bottom , #ededed 0%, white 100%);
	background-image: -ms-linear-gradient(bottom , #ededed 0%, white 100%);
	background-image: linear-gradient(bottom , #ededed 0%, white 100%);
    border-color: #8a8a8a;
    color: #b8b8b8;
    text-shadow: 0px 1px 0px white;
    cursor: not-allowed;
}

.alt-button {
    display: inline-block;
    color: white !important;
    font: bold 13px/24px 'Open Sans', Arial, sans-serif;
    text-decoration: none !important;
    text-shadow: 0px 1px 0px #000;
    border-radius: 4px;
    background: #0079c2;
    height: 24px;
    padding: 0px 8px;
    border: 1px solid #333;
    box-shadow: inset 0px 1px 0px 0px rgba(255,255,255,0.5);
    cursor: pointer;
}

#restore.alt-button.blue, #cancel.alt-button.red, #clear.alt-button.blue{
    margin-right:5px;
}

.alt-button.red {background: #c20000;}
.alt-button.green {background: #81BC3D;}

.alt-button:hover {background: #005589; color: #fff !important;}
.alt-button.red:hover {background: #8f0003;}
.alt-button.green:hover {background: #518023;}


.alt-button:active, .alt-button.pressed {
    box-shadow: inset 0px 2px 5px 3px rgba(0,0,0,0.5);
    background: #00446d;
    color: #bfe7ff !important;
}
.alt-button.red:active, .alt-button.red.pressed {background: #720002; color: #ffb2b9  !important;}
.alt-button.green:active, .alt-button.green.pressed {background: #41661c; color: #dffeb1  !important;}

.alt-button.disabled, .alt-button.disabled:hover {
    box-shadow: inset 0px 1px 0px 0px rgba(255,255,255,0.5);
    background: #bababa;
    color: #ededed  !important;
    cursor: not-allowed;
}


.dynamicinput   .alt-button i{
	position: relative;
	top:1px;
	padding-right: 10px;
	float: left;
}



.switch{
	float:left;
	
}

.switch .slide-button {
    display: none;
    cursor: pointer;
}
.toggle {
    padding: 0;
    position: relative;
    z-index: 1;
}
.toggle, .switch {
    display: block;
    height: 24px;
}
.switch *, .toggle * {
    -moz-box-sizing: border-box;
}
.toggle label {
    display: block;
    position: relative;
    width: 100%;
    z-index: 1;
}
.toggle input {
    opacity: 0;
    position: absolute;
    z-index: 5;
}
.toggle .slide-button {
    display: block;
    height: 100%;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    z-index: 4;
}
.switch {
    padding: 0;
    position: relative;
    width:100px;
    border: 1px solid #333333;
    border-color:#333;
    border-radius: 4px;
    display:inline-block;
}
.switch input {
    opacity: 0;
    position: absolute;
}
.switch label {
    float: left;
    height: 100%;
    margin: 0;
    position: relative;
    text-align: center;
    width: 50%;
    z-index: 2;
    text-transform:uppercase;
    font: 12px/24px 'Open Sans', Arial, sans-serif;
    cursor:pointer;
    text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}
.switch label.on {
    background: rgb(99, 144, 46);
    background: -moz-linear-gradient(top, rgba(99, 144, 46, 1) 0%, rgba(109, 159, 51, 1) 9%, rgba(120, 176, 57, 1) 22%, rgba(129, 188, 61, 1) 43%, rgba(129, 188, 61, 1) 65%, rgba(126, 185, 60, 1) 74%, rgba(120, 176, 57, 1) 87%, rgba(109, 159, 51, 1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(99, 144, 46, 1)), color-stop(9%, rgba(109, 159, 51, 1)), color-stop(22%, rgba(120, 176, 57, 1)), color-stop(43%, rgba(129, 188, 61, 1)), color-stop(65%, rgba(129, 188, 61, 1)), color-stop(74%, rgba(126, 185, 60, 1)), color-stop(87%, rgba(120, 176, 57, 1)), color-stop(100%, rgba(109, 159, 51, 1)));
    background: -webkit-linear-gradient(top, rgba(99, 144, 46, 1) 0%, rgba(109, 159, 51, 1) 9%, rgba(120, 176, 57, 1) 22%, rgba(129, 188, 61, 1) 43%, rgba(129, 188, 61, 1) 65%, rgba(126, 185, 60, 1) 74%, rgba(120, 176, 57, 1) 87%, rgba(109, 159, 51, 1) 100%);
    background: -o-linear-gradient(top, rgba(99, 144, 46, 1) 0%, rgba(109, 159, 51, 1) 9%, rgba(120, 176, 57, 1) 22%, rgba(129, 188, 61, 1) 43%, rgba(129, 188, 61, 1) 65%, rgba(126, 185, 60, 1) 74%, rgba(120, 176, 57, 1) 87%, rgba(109, 159, 51, 1) 100%);
    background: -ms-linear-gradient(top, rgba(99, 144, 46, 1) 0%, rgba(109, 159, 51, 1) 9%, rgba(120, 176, 57, 1) 22%, rgba(129, 188, 61, 1) 43%, rgba(129, 188, 61, 1) 65%, rgba(126, 185, 60, 1) 74%, rgba(120, 176, 57, 1) 87%, rgba(109, 159, 51, 1) 100%);
    background: linear-gradient(to bottom, rgba(99, 144, 46, 1) 0%, rgba(109, 159, 51, 1) 9%, rgba(120, 176, 57, 1) 22%, rgba(129, 188, 61, 1) 43%, rgba(129, 188, 61, 1) 65%, rgba(126, 185, 60, 1) 74%, rgba(120, 176, 57, 1) 87%, rgba(109, 159, 51, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#63902e', endColorstr='#6d9f33', GradientType=0);
    box-shadow: inset 0px 1px 10px 0 rgba(0, 0, 0, 0.50);
    border-right:none;
    border-bottom-right-radius:0px;
    border-top-right-radius:0px;
    color:#fff;
}
.switch label.off {
    background: rgb(100, 100, 100);
    background: -moz-linear-gradient(top, rgba(100, 100, 100, 1) 0%, rgba(121, 121, 121, 1) 22%, rgba(127, 127, 127, 1) 35%, rgba(129, 129, 129, 1) 48%, rgba(127, 127, 127, 1) 74%, rgba(121, 121, 121, 1) 87%, rgba(109, 109, 109, 1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(100, 100, 100, 1)), color-stop(22%, rgba(121, 121, 121, 1)), color-stop(35%, rgba(127, 127, 127, 1)), color-stop(48%, rgba(129, 129, 129, 1)), color-stop(74%, rgba(127, 127, 127, 1)), color-stop(87%, rgba(121, 121, 121, 1)), color-stop(100%, rgba(109, 109, 109, 1)));
    background: -webkit-linear-gradient(top, rgba(100, 100, 100, 1) 0%, rgba(121, 121, 121, 1) 22%, rgba(127, 127, 127, 1) 35%, rgba(129, 129, 129, 1) 48%, rgba(127, 127, 127, 1) 74%, rgba(121, 121, 121, 1) 87%, rgba(109, 109, 109, 1) 100%);
    background: -o-linear-gradient(top, rgba(100, 100, 100, 1) 0%, rgba(121, 121, 121, 1) 22%, rgba(127, 127, 127, 1) 35%, rgba(129, 129, 129, 1) 48%, rgba(127, 127, 127, 1) 74%, rgba(121, 121, 121, 1) 87%, rgba(109, 109, 109, 1) 100%);
    background: -ms-linear-gradient(top, rgba(100, 100, 100, 1) 0%, rgba(121, 121, 121, 1) 22%, rgba(127, 127, 127, 1) 35%, rgba(129, 129, 129, 1) 48%, rgba(127, 127, 127, 1) 74%, rgba(121, 121, 121, 1) 87%, rgba(109, 109, 109, 1) 100%);
    background: linear-gradient(to bottom, rgba(100, 100, 100, 1) 0%, rgba(121, 121, 121, 1) 22%, rgba(127, 127, 127, 1) 35%, rgba(129, 129, 129, 1) 48%, rgba(127, 127, 127, 1) 74%, rgba(121, 121, 121, 1) 87%, rgba(109, 109, 109, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#646464', endColorstr='#6d6d6d', GradientType=0);
    box-shadow: inset 0px 1px 10px 0 rgba(0, 0, 0, 0.50);
    color:#bfbfbf !important;
}
.switch .slide-button {
    height: 100%;
    left: 0;
    padding: 0;
    position: absolute;
    top: 0;
    width: 50%;
    z-index: 1;
}

.switch input{
	width: 10px !important;
}

.switch .slide-button, .toggle .slide-button {
    display: block;
}
.toggle label, .switch label {
    line-height: 24px !important;
    vertical-align: middle;
}

.toggle input:checked ~ .slide-button {
}
.toggle input:focus ~ .slide-button, .switch input:focus + label {
    /*global checking in case we go this route*/
}
.switch {
    border: 1px solid #333333;
    border-color:#333;
    border-radius: 4px;
}
.switch input:checked + label {
    /*global checking in case we go this route*/
}
.switch input.on:checked ~ .slide-button {
    border-top-right-radius:3px;
    border-bottom-right-radius:3px;
    cursor: pointer;
}

.switch .slide-button.on{
	left:50%;
}
.switch input.off:checked ~ .slide-button {
    border-top-left-radius:3px;
    border-bottom-left-radius:3px;
    left:0%;
    cursor: pointer;
}



.switch .slide-button {
    background: rgb(240, 240, 240);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(240, 240, 240, 1)), color-stop(0.77, rgba(209, 209, 209, 1)), color-stop(0.91, rgba(206, 206, 206, 1)), color-stop(0.95, rgba(202, 202, 202, 1)), to(rgba(201, 201, 201, 1)));
    background: -webkit-linear-gradient(rgba(240, 240, 240, 1) 0%, rgba(209, 209, 209, 1) 77%, rgba(206, 206, 206, 1) 91%, rgba(202, 202, 202, 1) 95%, rgba(201, 201, 201, 1) 100%);
    background: -moz-linear-gradient(rgba(240, 240, 240, 1) 0%, rgba(209, 209, 209, 1) 77%, rgba(206, 206, 206, 1) 91%, rgba(202, 202, 202, 1) 95%, rgba(201, 201, 201, 1) 100%);
    background: -o-linear-gradient(rgba(240, 240, 240, 1) 0%, rgba(209, 209, 209, 1) 77%, rgba(206, 206, 206, 1) 91%, rgba(202, 202, 202, 1) 95%, rgba(201, 201, 201, 1) 100%);
    background: linear-gradient(rgba(240, 240, 240, 1) 0%, rgba(209, 209, 209, 1) 77%, rgba(206, 206, 206, 1) 91%, rgba(202, 202, 202, 1) 95%, rgba(201, 201, 201, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f0f0f0', endColorstr='#c9c9c9', GradientType=0);
    box-shadow:-1px 0px 0px 0 rgba(0, 0, 0, 0.50), inset 0px 1px 0px 0 #fff;
    z-index:1000;
    border-radius:2px;
}

.toggle.disabled, .toggle.disabled *{
	cursor: not-allowed !important;
	
}



