.g_formularios{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.g_form_tr{
	float: left;
	width: calc(100% - 10px);
    padding: 5px;
    margin-bottom_: 5px;
}
.g_form_tr_h{
    border-bottom: 1px solid #999999;
}

.g_form_td{
	float: left;
	margin: 5px 8px;
	font-family: Arial;
	font-size: 14px;
	color: #444444;
}
.g_form_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;
}


.g_form_td input[type="text"], .g_form_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;
}
.g_form_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%;
}

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