﻿.focusTextBox{
        border:1px solid #c0c0c0;
        font-size:14px;
        color:#000000;
        background-color:#ffffff;
        }

    /* This is the CSS class to use when the control has focus */
    .focusTextBox:focus, input.focusTextBox_focus
    {
        border-color:#646464;
        background-color:#ffffc0;
    }
    

/*This code is only for texboxes that need to be centered */    
 .focusTextBoxCenter{
        border:1px solid #c0c0c0;
        font-size:14px;
        color:#000000;
        background-color:#ffffff;
        text-align:center;
        }

    /* This is the CSS class to use when the control has focus */
    .focusTextBoxCenter:focus, input.focusTextBoxCenter_focus
    {
        border-color:#646464;
        background-color:#ffffc0;
        text-align:center;
    }