/*----------------------------------------------------------------------------*/
.formtheme{
	display: inline-block;
	font-size: 12px;
}
.formtheme input {
	z-index:10;
	background:rgba(245, 245, 255, 0.9);
	border: solid 2px SteelBlue;
	width:100%;
}
.formtheme input[disabled]{
	opacity:0.5;
	filter:alpha(opacity=50);
}
.formtheme input[type="text"]{
	padding: 5px;
	outline: none;
	-moz-border-radius: 8px;  -webkit-border-radius: 8px; border-radius: 8px;
	-moz-box-shadow: inset 3px 3px 3px rgba(0,0,0,.2);
	-webkit-box-shadow: inset 3px 3px 3px rgba(0,0,0,.2);
	box-shadow: inset 3px 3px 3px rgba(0,0,0,.2);
}
.formtheme input[type="password"]{
	padding: 5px;
	outline: none;
	-moz-border-radius: 8px;  -webkit-border-radius: 8px; border-radius: 8px;
	-moz-box-shadow: inset 3px 3px 3px rgba(0,0,0,.2);
	-webkit-box-shadow: inset 3px 3px 3px rgba(0,0,0,.2);
	box-shadow: inset 3px 3px 3px rgba(0,0,0,.2);
}
.formtheme input:hover {
	border: solid 2px DarkSlateBlue;
}

.formtheme input[type="submit"]{
	background:SteelBlue;
	padding: 6px;
	border: solid 2px SteelBlue;
	font-weight:bold;
	font-size:12px;
	color:rgba(245, 245, 255, 0.9);
	-moz-border-radius: 8px;  -webkit-border-radius: 8px; border-radius: 8px;
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.5);
	-webkit-box-shadow:  0 1px 2px rgba(0,0,0,.5);
	box-shadow: 0 1px 2px rgba(0,0,0,.5);
}
.formtheme input[type="button"]{
	background:SteelBlue;
	padding: 6px;
	border: solid 2px SteelBlue;
	font-weight:bold;
	font-size:12px;
	color:rgba(245, 245, 255, 0.9);
	-moz-border-radius: 8px;  -webkit-border-radius: 8px; border-radius: 8px;
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.5);
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.5);
	box-shadow: 0 1px 2px rgba(0,0,0,.5);
}
.formtheme input[type="button"]:hover{
	-moz-box-shadow: inset 0 1px 6px rgba(0,0,0,.5);
	-webkit-box-shadow: inset 0 1px 6px rgba(0,0,0,.5);
	box-shadow: inset 0 1px 6px rgba(0,0,0,.5);

}
.formtheme input[type="submit"]:hover{
	-moz-box-shadow: inset 0 1px 6px rgba(0,0,0,.5);
	-webkit-box-shadow: inset 0 1px 6px rgba(0,0,0,.5);
	box-shadow: inset 0 1px 6px rgba(0,0,0,.5);
}
.formtheme select {
	width:100%;
	background:rgba(245, 245, 255, 0.9);
	padding: 5px;
	border: solid 2px SteelBlue;
	color:SteelBlue;
	-moz-border-radius: 8px;  -webkit-border-radius: 8px; border-radius: 8px;
	-moz-box-shadow: inset 0 1px 6px rgba(0,0,0,.5);
	-webkit-box-shadow: inset 0 1px 6px rgba(0,0,0,.5);
	box-shadow: inset 0 1px 6px rgba(0,0,0,.5);
}
.formtheme select:hover {
	border: solid 2px DarkSlateBlue;
	color:DarkSlateBlue;
}
.formtheme select[disabled]{
	opacity:0.5;
	filter:alpha(opacity=50);
}
.formtheme textarea{
	z-index:10;
	background:rgba(245, 245, 255, 0.9);
	border: solid 2px SteelBlue;
	width:100%;
	padding: 5px;
	outline: none;
	-moz-border-radius: 8px;  -webkit-border-radius: 8px; border-radius: 8px;
	-moz-box-shadow: inset 3px 3px 3px rgba(0,0,0,.2);
	-webkit-box-shadow: inset 3px 3px 3px rgba(0,0,0,.2);
	box-shadow: inset 3px 3px 3px rgba(0,0,0,.2);
}

.formtheme textarea:hover {
	border: solid 2px DarkSlateBlue;

}
/*----------------------------------------------------------------------------*/
.deleteform input {
	z-index:10;
	background:rgba(245, 245, 255, 0.9);
	border: solid 2px SteelBlue;
	width:100%;
}
.deleteform input[disabled]{
	opacity:0.5;
	filter:alpha(opacity=50);
}
.deleteform input[type="submit"]{
	background:DeepPink;
	padding: 4px;
	border: solid 2px DeepPink;
	color: white;
	-moz-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px;

}
.deleteform input[type="submit"]:hover{
	background: crimson;
	border: solid 2px crimson;
	color: white;
}
.deleteform input[type="button"]{
	background:DeepPink;
	padding: 2px;
	border: solid 0px DeepPink;
	color: white;
	-moz-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px;

}
.deleteform input[type="button"]:hover{
	background: crimson;
	border: solid 0px crimson;
	color: white;
}

