﻿html { margin-bottom: 120px }

body{
   min-width:500px; /* suppose you want minimun width of 1000px */
   min-height: 500px;
   width: auto !important;  /* Firefox will set width as auto */
   width:500px;             /* As IE ignores !important it will set width as 1000px; */
}
.minWidth{
   min-width:800px; /* suppose you want minimun width of 1000px */
   width: auto !important;  /* Firefox will set width as auto */
   width:800px;             /* As IE ignores !important it will set width as 1000px; */
}

.title
{
    Font-family: ""Open Sans", "sans-serif"" !important;
	Font-Size: 22px;
	Line-Height: 18px;
	Color: #fff

}
.error{
     width: 600px;
   border: 1px solid #D8D8D8;
   padding: 5px;
   border-radius: 5px;
   font-family: Arial;
   font-size: 15px;
   font-weight:bold;   
   background-color: rgb(255, 249, 242);
   color: rgb(211, 0, 0);
   text-align: center;   

}

.success
{
   width: 400px;
   border: 1px solid #D8D8D8;
   padding: 10px;
   border-radius: 5px;
   font-family: Arial;
   font-size: 11px;   
   background-color: rgb(236, 255, 216);
   color: green;
   text-align: center;
}

.validation {
color: #D63301;
font-family: Arial;
font-size: 12px;  
font-weight: bold;

}

