body {
    color: Black;
    font-family: Arial;
    font-size: 12px;
}

td {
    vertical-align: top;
}

h5 {
    margin: 3px;
    margin-top: 6px;
}

input[type=button], input[type=submit], input[type=reset] {
    border-color: #c9c9c9;
    color: #767676;
    background-color: #e3e3e3;
    background-image: linear-gradient(#fefefe 0,#e3e3e3 100%);
    height: 26px;
    border-width: 1px;
    border-style: solid;
    background-position: 0 0;
    background-repeat: repeat-x;
    border-radius: 4px;
}

    input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
        border-color: #939393;
        color: #444;
        background-color: #939393;
        background-image: linear-gradient(#d6d6d6 0,#939393 100%);
    }

input[type=text], input[type=number], input[type=email], input[type=phone], textarea, select {
    padding-right: 5px;
    padding-left: 5px;
    margin: 0;
    width: 100%;
    height: 28px;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 13px;
    background: white;
    color: #555;
    border-color: #d7d7d7;
    font-weight: normal;
    line-height: 20px;
    border-width: 1px;
    border-style: solid;
    padding: 2px 2px 1px;
    vertical-align: middle;
}

input[type=number]{
    height:24px;

}

 input[type=text]:hover, input[type=number]:hover, input[type=email]:hover, input[type=phone]:hover, textarea:hover 
{
    border-color: #36b4cb;
    color: #444;
}

select {
    border-color: #c9c9c9;
    color: #767676;
    background-color: #e3e3e3;
    background-image: linear-gradient(#fefefe 0,#e3e3e3 100%);
}

    select:focus {
        border-color: #2292a8;
        color: white;
        background-color: #2dabc1;
        background-image: linear-gradient(#2dabc1 0,#2dabc1 100%);
    }

    select:hover {
        border-color: #007d93;
        color: white;
        background-color: #007d93;
        background-image: linear-gradient(#00a9c7 0,#007d93 100%);
    }

    select option {
        background: white;
        color: #444;
        padding:10px;

    }
    select option:hover{
        color: #555;
        background: #bbeaf3;
    }
