.error {
    color: red;
    font-weight: bold;
}

/********** For Input Field ******************/

input[type="text"],
input[type="password"],
input[type="file"] {
    border-width: 1px;
    border-style: solid;
    border-color: #ddd;
    padding: 6px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="file"]:focus {
   -webkit-backface-visibility: hidden;
    outline: none;
    -webkit-transition: 0.25s;
    transition: 0.25s;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-color: #168cbe
       
}

/********** For select Droplist ******************/

select {
    border-width: 1px;
    border-style: solid;
    border-color: #ddd;
    padding: 6px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}
select:focus {
   -webkit-backface-visibility: hidden;
    outline: none;
    -webkit-transition: 0.25s;
    transition: 0.25s;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-color: #168cbe
}

.navtext 
{
    width:300px;
    font-size:10pt;
    font-family:verdana;
    border-width:2px;
    border-style:outset;
    border-color:#006BAE;
    background-color:#FFF6D9;
    color:black;
}
.alt-text-help { display:none; }
