/* ========================================================================== */
/*	  																		  */
/* (NNNNNN)(NNNNNN)                                                           */
/*      NN)(NN       stiweb.it                                                */
/*      NN)(NN       (c)2009 Stive Barison                                    */
/*      NN)(NN       http://www.stiweb.it 									  */
/*																			  */
/* ========================================================================== */

/******************************************************************************/
/* File               : frm_val.js                                            */
/* -------------------------------------------------------------------------- */
/* Autore             : Steve Barison                                         */
/* -------------------------------------------------------------------------- */
/* Versione originale : 20/07/2009                                            */
/* Revisione          : 23/07/2009                                            */
/*          																  */
/* ========================================================================== */
/*                                                                            */
/* Descrizione        :  CSS validazione delle form                           */
/*                                                                            */
/* -------------------------------------------------------------------------- */
/* Note: uso:                                                                 */
/*                                                                            */
/*		  																	  */
/*                                                                            */
/******************************************************************************/
/*----------------------------------------------------------------------------*/
/* Div contenitore campo input							    			      */
/*----------------------------------------------------------------------------
.box_lab_inp 
{
    float:left;
    left:0;
    margin:5px 0 0 0;
    padding:5px 5px 0 0;
    right:0;
    width:180px;
}
*/
/*----------------------------------------------------------------------------*/
/* Div contenitore campo label											      */
/*----------------------------------------------------------------------------*/
.box_cmp_inp 
{
    float:left;
    left:0;
    margin:0 5px 2px 0;
    padding:5px 5px 0 0;
    right:0;
    text-align:left;
}

/*----------------------------------------------------------------------------*/
/* Nuova linea rompe il concatenamento div								      */
/*----------------------------------------------------------------------------*/
.new_lin 
{
    clear:both;
}

/*----------------------------------------------------------------------------*/
/* Elementi form        												      */
/*----------------------------------------------------------------------------input, 
textarea, 
select 
{
    background:#FFFFFF url(../img/sfo_cam.gif) no-repeat scroll left top;
    border:1px solid #AAAAAA;
    margin-top:2px;
    padding:2px;
}
*/


/*----------------------------------------------------------------------------*/
/* Elementi form in mouse hover										          */
/*----------------------------------------------------------------------------
input:hover, 
textarea:hover, 
select:hover 
{
	border:1px solid #00CC00;
}*/

/*----------------------------------------------------------------------------*/
/* Campo in fuoco        												      */
/*----------------------------------------------------------------------------*/
.foc_hov
{
    border: 1px solid #00cc00;/
}

/*----------------------------------------------------------------------------*/
/* Campo input in errore   												      */
/*----------------------------------------------------------------------------*/
.val_err 
{
	border: 1px solid #CC0000;
}

/*----------------------------------------------------------------------------*/
/* Css label in errore   												      */
/*----------------------------------------------------------------------------*/ 
.lab_err 
{
    color:#CC0000;
    font-weight:bold;
    padding-left: 15px;
}


