﻿table button, table input { *overflow: auto; }
button, input[type="button"], input[type="reset"], input[type="submit"] {
	cursor: pointer;
	-webkit-appearance: button;
}

a, 
input[type="text"], 
input[type="submit"], 
textarea, img, select, tr {
-webkit-transition: all 0.3s ease; 
-moz-transition: all 0.3s ease; 
-o-transition: all 0.3s ease; 
-ms-transition: all 0.3s ease; 
transition: all 0.3s ease; 
}

.NoEfect {
-webkit-transition: none !important; 
-moz-transition: none !important; 
-o-transition: none !important; 
-ms-transition: none !important; 
transition: none !important; 
}

input[type="text"], input[type="password"], input[type="email"], .input-text, textarea, select {
	border: 1px solid #ddd;
	padding: 3px;
	outline: none;
	margin: 0;
	background: #fff;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, textarea:focus, .input-text:focus, select:focus {
	border: 1px solid #aaa;
	-moz-box-shadow: 0 0 3px rgba(0,0,0,.2);
	-webkit-box-shadow: 0 0 3px rgba(0,0,0,.2);
	box-shadow:  0 0 3px rgba(0,0,0,.2);
outline: none;
background:#FFC
}
textarea {
	display: block;
	width: 94%;
	min-height: 60px;
}
input[type="checkbox"] { display: inline; }
input[type="submit"]:hover { cursor: pointer }