﻿.item-btn {
    margin: 0;
    padding: 2px 8px;
    background: #FFF;
    border-color: #666;
    color: #000;
    border-width: 2px;
    border-style: solid;
    border-radius: 6px;
    outline: none;
    font-size: 12pt;
    font-family: Georgia, serif;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    display: inline-block;
    cursor: pointer;

    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
.item-btn:hover {
    background: #999;
    color: #FFF;
    text-shadow: 1px 1px 2px #000;
}
.aspNetDisabled.item-btn {
    background: #CCC;
    border-color: #999;
    color: #666;
    cursor: default;
}

select,
.txt {
    padding: 0 4px;
    font-size: 14pt;
    font-family: "Times New Roman", Times, serif;
    background-color: #F0F0F0;
    border: 1px solid #666;
    border-radius: 4px;
    outline: none;
    color: #000;

    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
select:hover,
.txt:hover {
    background-color: #FAFAFA;
    border-color: #00F;
}
select:focus,
.txt:focus {
    background-color: #FFF;
    box-shadow: rgba(0,40,160,1) 0px 0px 6px;
}
select.readonly,
.txt.readonly {
    background-color: #FFF;
    border: 1px dashed #AAA;
    border-radius: 4px;
    box-shadow: none;
    color: #111;
}
select.aspNetDisabled,
.aspNetDisabled.txt {
    background-color: #CCC;
    border-color: #999;
    text-shadow: none;
    color: #111;
}