.stfrm{
	/*clase para el contenedor de los formularios*/
	--stfrm_campos_h: 28px;
	
	height: 100%;
	width: 100%;
	background-color: beige;
}

.stfrm_thead{
	border-bottom: 1px solid #CCCCCC;
	padding: 5px;
	margin-bottom: 15px;
	float: left;
	width: calc(100% - 10px);
}

.stfrm_tr{
	float: left;
	width: 100%;
}

.stfrm_td{
	float: left;
	margin: 5px;
	font-family: Arial;
	font-size: 14px;
	color: #666666;
}

.stfrm_campoid{
	/*INPUT que se usa para los ID's que van a ser readonly */
	height: calc(var(--stfrm_campos_h) - 0px);
	border: 1px solid #999999;
	background-color: #DDDDDD;
	padding: 4px;
	text-align: right;
	-webkit-border-radius: 0px!important;
	-moz-border-radius: 0px!important;
	border-radius: 0px!important;
}

.stfrm_td input[type="text"], .stfrm_td select{
	height: var(--stfrm_campos_h);
	border: 1px solid #999999;
	padding: 4px;
	font-family: Arial;
	font-size: 14px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.stfrm_td textarea{
	border: 1px solid #999999;
	padding: 4px;
	font-family: Arial;
	font-size: 14px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	resize: none;
    width: 100%;
}

.stfrm_100{
    width: calc(100% - 10px);
}