﻿.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button
{
    font-size: 14px;
    font-family: inherit;
}

/*-----------------------------------------------------------------------------------------------------------------*/
/* ui Spinner Styles */

.ui-spinner
{
    height: 28px;
}

    .ui-spinner input
    {
        /*width: 225px;*/
        border: 0 none;
        box-shadow: none;
        padding: 0;
        transition: none;
        -moz-transition: none;
        -webkit-transition: none;
        -o-transition: none;
    }

        .ui-spinner input[type="number"]:focus, .ui-spinner input[type="text"]:focus
        {
            border: none;
            box-shadow: none;
        }

        .input-prepend .ui-spinner
        {
            width: 226px;
        }

/*-----------------------------------------------------------------------------------------------------------------*/
/* ui Autocomplete */

.ui-autocomplete
{
    max-height: 100px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
}
/* IE 6 doesn't support max-height
* we use height instead, but this forces the menu to always be this tall
*/
* html .ui-autocomplete
{
    height: 100px;
}

/* ui Datepicker */
.ui-datepicker-title select
{
    width: auto !important;
}