.bform, label {font-size: 14px;}
input, textarea {font-size: 12px;}
.bform.check-rad {
	display: inline-block;
	width: 16px;
	height: 16px;
}
.bform.check-rad,
.bform.sselect .arrow {
	background: url(../img/im.png);
}
.bform.input {
	width: auto;
	display: inline-block;
	padding: 1px;
}
.bform.input input {
	margin: 0 auto;
	width: 100%;
	cursor: pointer;
}
.bform.check-rad input{opacity: 0;}
.bform.radio {background-position: -32px 0;}
.bform.radio.checked  {background-position: -48px 0;}
.bform.radio:hover {background-position: -32px -16px;}
.bform.radio.checked:hover {background-position: -48px -16px;}
.bform.radio.disabled {background-position: -32px -32px;}
.bform.radio.checked.disabled {background-position: -48px -32px;}
.bform.checkbox {background-position: 0 0;}
.bform.checkbox.checked  {background-position: -16px 0;}
.bform.checkbox:hover {background-position: 0 -16px;}
.bform.checkbox.checked:hover {background-position: -16px -16px;}
.bform.checkbox.disabled {background-position: 0 -32px;}
.bform.checkbox.checked.disabled {background-position: -16px -32px;}

/* select styling */
.bform.select {display: inline-block;}
.bform.select,
.bform.sselect ul,
.bform.select li{border: 1px solid #aaa;}
.borderradius .bform.select,
.borderradius .bform.select ul {
	webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px; 
}
.boxshadow .bform.select,
.boxshadow .bform.select ul {
	-webkit-box-shadow: 0px 0px 2px 0px rgba(68, 68, 68, 0.4);
	-moz-box-shadow: 0px 0px 2px 0px rgba(68, 68, 68, 0.4);
	box-shadow: 0px 0px 2px 0px rgba(68, 68, 68, 0.4); 
}
.boxshadow .bform.select.enabled:hover,
.boxshadow .bform.select.enabled ul:hover {
	-webkit-box-shadow: 0px 0px 2px 0px rgba(68, 68, 68, 1);
	-moz-box-shadow: 0px 0px 2px 0px rgba(68, 68, 68, 1);
	box-shadow: 0px 0px 2px 0px rgba(68, 68, 68, 1); 
}
.bform.sselect {
	height: 26px;
	width: 180px;
	background: #fff;
}
.bform.select ul {
	display: block;
	max-height: 111px;
	overflow-y: scroll;
	overflow-x: hidden;
	z-index: 100;
}
.bform.select .focus ul {display: block;}
.bform.mselect {
	width: 180px;
	max-height: 111px;
	overflow: hidden;
}
.bform.select select {display: none;}
.bform.select .arrow {
	width: 24px;
	height: 24px;
	background-position: -64px 0;
	position: absolute;
	right: 1px;
	top: 1px;
}
.bform.select.disabled .arrow {
	background-position: -64px -24px;
}
.bform.select .value,
.bform.select li {
	position: relative;
	padding: 7px 27px 6px 7px;
	line-height: 14px;
	cursor: pointer;
	display: block;
}
.bform.select.disabled .value {
	
}
.bform.select .select-wrapper {
	position: relative;
}
.bform.select li {
	list-style-type: none;
	border-bottom: none;
	border-left: none;
	border-right: none;
}
.bform.select li:first-child {border-top: none;}

.bform.sselect ul {
	display: none;
	position: absolute;
}
.bform.select ul {
	top: -1px;
	left: -1px;
	background: #fff;
	min-width: 100%;
	margin: 0;
	padding: 0;
}
/* disabled options in enabled select boxes or all options in disabled select boxes */
.bform.select li.disabled,
.bform.select.disabled .value,
.bform.select.disabled li {
	color: #888;
}
/* hover state for enabled options in enabled select boxes */
.bform.select.enabled li.enabled:hover {
	background: #015DA3;
	color: #eee;
}
/* selected options in enabled select boxes */
.bform.select.enabled li.selected {
	background: #d8d8d8;
}
/* options in disabled select boxes and disabled options */
.bform.select.disabled li.selected, 
.bform.select li.disabled.selected {
	background: #e3e3e3;
}




/******************************
 * * * * * * *  * * * * * * * *
 * * * TEXT INPUT STYLING * * *
 * * * * * * *  * * * * * * * *
******************************/
 
.bform.text, .bform.textarea {
	border: 1px solid #bbb;
	padding: 8px;
	-webkit-box-shadow: 0 0 2px 0 rgba(170,170,170,0.4);
	-moz-box-shadow: 0 0 2px 0 rgba(170,170,170,0.4);
	box-shadow: 0 0 2px 0 rgba(170,170,170,0.4);
	line-height: 1.4em;
}
.bform.text:focus, .bform.textarea:focus, .bform.text.focus, .bform.textarea.focus {
	-webkit-box-shadow: 0 0 5px 0 rgba(84, 183, 255, 0.7);
	-moz-box-shadow: 0 0 5px 0 rgba(84, 183, 255, 0.7);
	box-shadow: 0 0 5px 0 rgba(84, 183, 255, 0.7);
}
.bform.text:disabled, .bform.textarea:disabled, .bform.text.disabled, .bform.textarea.disabled {
	background: #e3e3e3;
	color: #6d6d6d;
}

/****************************
 * * * * * * * * * * * * * *
 * * * BUTTON  STYLING * * *
 * * * * * * * * * * * * * *
 ****************************/
 
input[type="submit"], input[type="button"], input[type="reset"], button {
	cursor: pointer;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #000000;
	padding: 10px 20px;
	margin: 10px;
}
input[type="submit"]:focus, input[type="button"]:focus, input[type="reset"]:focus, button:focus {
	outline: none;
}

input[type="submit"].disabled, input[type="button"].disabled, input[type="reset"].disabled, button.disabled {
	opacity: 0.6;
}

input[type="submit"], input[type="button"], input[type="reset"], button, input[type="submit"].blue, input[type="button"].blue, input[type="reset"].blue, button.blue {
	background: #5ebfff;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5ebfff), to(#4f7bff));
	background: -webkit-linear-gradient(top,#5ebfff 0%,#4f7bff);
	background: -moz-linear-gradient(top,#5ebfff 0%,#4f7bff);
	background: -o-linear-gradient(top,#5ebfff 0%,#4f7bff);
	background: -ms-linear-gradient(top,#5ebfff 0%,#4f7bff);
	background: linear-gradient(top,#5ebfff 0%,#4f7bff);
	-webkit-border-radius: 20px;
	-khtml-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	border: 2px solid #000000;
	-webkit-box-shadow: 0px 1px 3px rgba(000,000,000,0.5),	inset 0px 0px 2px rgba(255,255,255,0.7);
	-moz-box-shadow: 0px 1px 3px rgba(000,000,000,0.5),	inset 0px 0px 2px rgba(255,255,255,0.7);
	box-shadow: 0px 1px 3px rgba(000,000,000,0.5),	inset 0px 0px 2px rgba(255,255,255,0.7);
	text-shadow: 0px 1px 1px rgba(127,161,219,1), 0px 1px 0px rgba(255,255,255,0.4);
}
input[type="submit"].black, input[type="button"].black, input[type="reset"].black, button.black {
	color: #eee;
	background: #474747;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #474747), to(#0f0f0f));
	background: -webkit-linear-gradient(top, #474747 0%, #0f0f0f);
	background: -moz-linear-gradient(top, #474747 0%, #0f0f0f);
	background: -o-linear-gradient(top, #474747 0%, #0f0f0f);
	background: -ms-linear-gradient(top, #474747 0%, #0f0f0f);
	background: linear-gradient(top, #474747 0%, #0f0f0f);
	-webkit-border-radius: 20px;
	-khtml-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	border: 2px solid #fff;
	-webkit-box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	-moz-box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	text-shadow: none;
}
input[type="submit"].green, input[type="button"].green, input[type="reset"].green, button.green {
	background: #8dd14d;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #8dd14d), to(#319112));
	background: -webkit-linear-gradient(top, #8dd14d 0%, #319112);
	background: -moz-linear-gradient(top, #8dd14d 0%, #319112);
	background: -o-linear-gradient(top, #8dd14d 0%, #319112);
	background: -ms-linear-gradient(top, #8dd14d 0%, #319112);
	background: linear-gradient(top, #8dd14d 0%, #319112);
	-webkit-border-radius: 20px;
	-khtml-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	border: 2px solid #000000;
	-webkit-box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	-moz-box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	text-shadow: 0px 1px 1px rgba(160,217,128,1), 0px 1px 0px rgba(255,255,255,0.4);
}
input[type="submit"].red, input[type="button"].red, input[type="reset"].red, button.red {
	background: #ff5e5e;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff5e5e), to(#d62b2b));
	background: -webkit-linear-gradient( top, #ff5e5e 0%, #d62b2b);
	background: -moz-linear-gradient( top, #ff5e5e 0%, #d62b2b);
	background: -o-linear-gradient( top, #ff5e5e 0%, #d62b2b);
	background: -ms-linear-gradient( top, #ff5e5e 0%, #d62b2b);
	background: linear-gradient( top, #ff5e5e 0%, #d62b2b);
	-webkit-border-radius: 20px;
	-khtml-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	border: 2px solid #000000;
	-webkit-box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	-moz-box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	text-shadow: 0px 1px 1px rgba(217,126,134,1), 0px 1px 0px rgba(255,255,255,0.4);
}
input[type="submit"].orange, input[type="button"].orange, input[type="reset"].orange, button.orange {
	background: #ffc95e;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffc95e), to(#d4702d));
	background: -webkit-linear-gradient( top, #ffc95e 0%, #d4702d);
	background: -moz-linear-gradient( top, #ffc95e 0%, #d4702d);
	background: -o-linear-gradient( top, #ffc95e 0%, #d4702d);
	background: -ms-linear-gradient( top, #ffc95e 0%, #d4702d);
	background: linear-gradient( top, #ffc95e 0%, #d4702d);
	-webkit-border-radius: 20px;
	-khtml-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	border: 2px solid #000000;
	-webkit-box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	-moz-box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	text-shadow: 0px 1px 1px rgba(217,174,128,1), 0px 1px 0px rgba(255,255,255,0.4);
}
input[type="submit"].yellow, input[type="button"].yellow, input[type="reset"].yellow, button.yellow {
	background: #f2fa7d;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f2fa7d), to(#d4b82f));
	background: -webkit-linear-gradient( top, #f2fa7d 0%, #d4b82f);
	background: -moz-linear-gradient( top, #f2fa7d 0%, #d4b82f);
	background: -o-linear-gradient( top, #f2fa7d 0%, #d4b82f);
	background: -ms-linear-gradient( top, #f2fa7d 0%, #d4b82f);
	background: linear-gradient( top, #f2fa7d 0%, #d4b82f);
	-webkit-border-radius: 20px;
	-khtml-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	border: 2px solid #000000;
	-webkit-box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	-moz-box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	text-shadow: 0px 1px 1px rgba(217,210,128,1), 0px 1px 0px rgba(255,255,255,0.4);
}
input[type="submit"].grey, input[type="button"].grey, input[type="reset"].grey, button.grey {
	background: #d6d6d6;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d6d6d6), to(#8a8a8a));
	background: -webkit-linear-gradient( top, #d6d6d6 0%, #8a8a8a);
	background: -moz-linear-gradient( top, #d6d6d6 0%, #8a8a8a);
	background: -o-linear-gradient( top, #d6d6d6 0%, #8a8a8a);
	background: -ms-linear-gradient( top, #d6d6d6 0%, #8a8a8a);
	background: linear-gradient( top, #d6d6d6 0%, #8a8a8a);
	-webkit-border-radius: 20px;
	-khtml-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	border: 2px solid #000000;
	-webkit-box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	-moz-box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	text-shadow: 0px 1px 1px rgba(204,199,194,1), 0px 1px 0px rgba(255,255,255,0.4);
}
input[type="submit"].white, input[type="button"].white, input[type="reset"].white, button.white {
	background: #fff;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), to(#bbb));
	background: -webkit-linear-gradient( top, #fff 0%, #bbb);
	background: -moz-linear-gradient( top, #fff 0%, #bbb);
	background: -o-linear-gradient( top, #fff 0%, #bbb);
	background: -ms-linear-gradient( top, #fff 0%, #bbb);
	background: linear-gradient( top, #fff 0%, #bbb);
	-webkit-border-radius: 20px;
	-khtml-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	border: 2px solid #000000;
	-webkit-box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	-moz-box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	text-shadow: 0px 1px 1px rgba(204,199,194,1), 0px 1px 0px rgba(255,255,255,0.4);
}
input[type="submit"].purple, input[type="button"].purple, input[type="reset"].purple, button.purple {
	background: #d977f2;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d977f2), to(#ab42c2));
	background: -webkit-linear-gradient( top, #d977f2 0%, #ab42c2);
	background: -moz-linear-gradient( top, #d977f2 0%, #ab42c2);
	background: -o-linear-gradient( top, #d977f2 0%, #ab42c2);
	background: -ms-linear-gradient( top, #d977f2 0%, #ab42c2);
	background: linear-gradient( top, #d977f2 0%, #ab42c2);
	-webkit-border-radius: 20px;
	-khtml-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	border: 2px solid #000000;
	-webkit-box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	-moz-box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,0.7);
	text-shadow: 0px 1px 1px rgba(217,126,134,1), 0px 1px 0px rgba(255,255,255,0.4);
}

/***** HOVER STATES *****/

input[type="submit"].enabled:hover, input[type="button"].enabled:hover, input[type="reset"].enabled:hover, button.enabled:hover,
input[type="submit"].enabled.blue:hover, input[type="button"].enabled.blue:hover, input[type="reset"].enabled.blue:hover, button.enabled.blue:hover {
	background: #4f7bff;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4f7bff), to(#5ebfff));
	background: -webkit-linear-gradient(top, #4f7bff 0%, #5ebfff);
	background: -moz-linear-gradient(top, #4f7bff 0%, #5ebfff);
	background: -o-linear-gradient(top, #4f7bff 0%, #5ebfff);
	background: -ms-linear-gradient(top, #4f7bff 0%, #5ebfff);
	background: linear-gradient(top, #4f7bff 0%, #5ebfff);
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
	-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
}
input[type="submit"].enabled.black:hover, 
input[type="button"].enabled.black:hover, 
input[type="reset"].enabled.black:hover, button.enabled.black:hover {
	background: #0f0f0f;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0f0f0f), to(#474747));
	background: -webkit-linear-gradient(top, #0f0f0f 0%, #474747);
	background: -moz-linear-gradient(top, #0f0f0f 0%, #474747);
	background: -o-linear-gradient(top, #0f0f0f 0%, #474747);
	background: -ms-linear-gradient(top, #0f0f0f 0%, #474747);
	background: linear-gradient(top, #0f0f0f 0%, #474747);
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
	-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
}
input[type="submit"].enabled.green:hover, 
input[type="button"].enabled.green:hover, 
input[type="reset"].enabled.green:hover, button.enabled.green:hover {
	background: #319112;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #319112), to(#8dd14d));
	background: -webkit-linear-gradient(top, #319112 0%, #8dd14d);
	background: -moz-linear-gradient(top, #319112 0%, #8dd14d);
	background: -o-linear-gradient(top, #319112 0%, #8dd14d);
	background: -ms-linear-gradient(top, #319112 0%, #8dd14d);
	background: linear-gradient(top, #319112 0%, #8dd14d);
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
	-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
}
input[type="submit"].enabled.red:hover, 
input[type="button"].enabled.red:hover, 
input[type="reset"].enabled.red:hover, button.enabled.red:hover {
	background: #d62b2b;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d62b2b), to(#ff5e5e));
	background: -webkit-linear-gradient(top, #d62b2b 0%, #ff5e5e);
	background: -moz-linear-gradient(top, #d62b2b 0%, #ff5e5e);
	background: -o-linear-gradient(top, #d62b2b 0%, #ff5e5e);
	background: -ms-linear-gradient(top, #d62b2b 0%, #ff5e5e);
	background: linear-gradient(top, #d62b2b 0%, #ff5e5e);
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
	-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
}
input[type="submit"].enabled.orange:hover, 
input[type="button"].enabled.orange:hover, 
input[type="reset"].enabled.orange:hover, button.enabled.orange:hover {
	background: #d4702d;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d4702d), to(#ffc95e));
	background: -webkit-linear-gradient(top, #d4702d 0%, #ffc95e);
	background: -moz-linear-gradient(top, #d4702d 0%, #ffc95e);
	background: -o-linear-gradient(top, #d4702d 0%, #ffc95e);
	background: -ms-linear-gradient(top, #d4702d 0%, #ffc95e);
	background: linear-gradient(top, #d4702d 0%, #ffc95e);
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
	-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
}
input[type="submit"].enabled.yellow:hover, 
input[type="button"].enabled.yellow:hover, 
input[type="reset"].enabled.yellow:hover, button.enabled.yellow:hover {
	background: #d4b82f;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d4b82f), to(#f2fa7d));
	background: -webkit-linear-gradient(top, #d4b82f 0%, #f2fa7d);
	background: -moz-linear-gradient(top, #d4b82f 0%, #f2fa7d);
	background: -o-linear-gradient(top, #d4b82f 0%, #f2fa7d);
	background: -ms-linear-gradient(top, #d4b82f 0%, #f2fa7d);
	background: linear-gradient(top, #d4b82f 0%, #f2fa7d);
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
	-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
}
input[type="submit"].enabled.grey:hover, 
input[type="button"].enabled.grey:hover, 
input[type="reset"].enabled.grey:hover, button.enabled.grey:hover {
	background: #8a8a8a;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #8a8a8a), to(#d6d6d6));
	background: -webkit-linear-gradient( top, #8a8a8a 0%, #d6d6d6);
	background: -moz-linear-gradient( top, #8a8a8a 0%, #d6d6d6);
	background: -o-linear-gradient( top, #8a8a8a 0%, #d6d6d6);
	background: -ms-linear-gradient( top, #8a8a8a 0%, #d6d6d6);
	background: linear-gradient( top, #8a8a8a 0%, #d6d6d6);
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
	-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
}
input[type="submit"].enabled.white:hover, 
input[type="button"].enabled.white:hover, 
input[type="reset"].enabled.white:hover, button.enabled.white:hover {
	background: #bbb;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #bbb), to(#fff));
	background: -webkit-linear-gradient( top, #bbb 0%, #fff);
	background: -moz-linear-gradient( top, #bbb 0%, #fff);
	background: -o-linear-gradient( top, #bbb 0%, #fff);
	background: -ms-linear-gradient( top, #bbb 0%, #fff);
	background: linear-gradient( top, #bbb 0%, #fff);
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
	-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
}
input[type="submit"].enabled.purple:hover, 
input[type="button"].enabled.purple:hover, 
input[type="reset"].enabled.purple:hover, button.enabled.purple:hover {
	background: #AB42C2;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #AB42C2), to(#D977F2) repeat scroll 0 0 transparen));
	background: -webkit-linear-gradient(center top , #AB42C2 0%, #D977F2) repeat scroll 0 0 transparent;
	background: -moz-linear-gradient(center top , #AB42C2 0%, #D977F2) repeat scroll 0 0 transparent;
	background: -o-linear-gradient(center top , #AB42C2 0%, #D977F2) repeat scroll 0 0 transparent;
	background: -ms-linear-gradient(center top , #AB42C2 0%, #D977F2) repeat scroll 0 0 transparent;
	background: linear-gradient(center top , #AB42C2 0%, #D977F2) repeat scroll 0 0 transparent;
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
	-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.7) inset;
}