/*!
 * jQuery UI Progressbar 1.9.0
 * http://jqueryui.com
 *
 * Copyright 2012 jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Progressbar#theming
 */
.ui-progressbar {
    height: 16px;
    background-color: #a5a5a5;
    overflow: hidden;
    text-align: left;

    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

.ui-progressbar .ui-progressbar-value {
	height: 14px;
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.1);

    background: url(../images/progressbar/ui-progressbar-value.png) repeat-x;
    
    -webkit-box-shadow: inset  0 1px 0 rgba(255, 255, 255, 0.25);
    -moz-box-shadow: inset  0 1px 0 rgba(255, 255, 255, 0.25);
    box-shadow: inset  0 1px 0 rgba(255, 255, 255, 0.25);
}