﻿fieldset {
   width: 350px; 
   padding: 5px; 
   margin: 0px 10px 10px 0px; 
   float: left;
}

.blockLab {
   position: relative; 
   font-size: 12px; 
   display: block; 
   margin: 10px 0px;
}

.blockLab input {
   position: absolute; 
   left: 150px;
}

.blockLab select {
   position: absolute; 
   left: 150px; 
   width: 100px;
}

.blockLab span  {
   position: absolute; 
   left: 150px;
}

.blockLab span input {
   position: relative; 
   left: 0px; 
   top: 0px;
}


/* Validation styles */

input:focus, select:focus, textarea:focus {
   background-color: rgb(220, 255, 220);
}

input:focus:valid {
   background: rgb(220, 255, 220) url(go.png) bottom right no-repeat;

   -o-background-size: contain;
   -moz-background-size: contain;
   -webkit-background-size: contain;
   background-size: contain;
}

input:focus:invalid {
   background: rgb(255, 232, 233) url(stop.png) bottom right no-repeat;

   -o-background-size: contain;
   -moz-background-size: contain;
   -webkit-background-size: contain;
   background-size: contain;
}