.w50{
    width: 50px;
}
.w80{
    width: 80px;
}
.w100{
    width: 100px;
}
.w120{
    width: 120px;
}
.w150{
    width: 150px;
}
.w180{
    width: 180px;
}
.w220{
    width: 220px;
}
.w240{
    width: 240px;
}
.w280{
    width: 280px;
}
.w300{
    width: 300px;
}
.w320{
    width: 320px;
}
.w360{
    width: 360px;
}
.w400{
    width: 400px;
}
.w480{
    width: 480px;
}
.w540{
    width: 540px;
}
input[type="text"], input[type="date"]{
    border: 1px solid #190000;
}
select {
    /*font-size:12px;*/
    color:#190000;
    height:22px;
    background-color: #fff;
    border:1px solid silver;
}
input[type="submit"], .btn{
    border: 1px solid #16679e;
    background-color: #1a477d;
    border-radius: 3px;
    background-image: -webkit-gradient(linear, center top, center bottom, from(#16679e 63%), to(#1a477d));
    background-image: -webkit-linear-gradient(top, #1275ba 33%, #1a477d 83%, #16679e);
    background-image: -moz-linear-gradient(top, #1275ba 33%, #1a477d 83%, #16679e);
    background-image: -o-linear-gradient(top, #1275ba 33%, #1a477d 83%, #16679e);
    background-image: -ms-linear-gradient(top, #1275ba 33%, #1a477d 83%, #16679e);
    background-image: linear-gradient(to bottom, #1275ba 33%, #1a477d 83%, #16679e);
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,0.14), inset 0 1px 0 rgba(255,255,255,0.21);
    -moz-box-shadow: 0 1px 0 rgba(255,255,255,0.14), inset 0 1px 0 rgba(255,255,255,0.21);
    box-shadow: 0 1px 0 rgba(255,255,255,0.14), inset 0 1px 0 rgba(255,255,255,0.21);
    color: #FFFFFF;
    font-weight: bold;
    padding: 5px;
    cursor: pointer;
    text-decoration: none;
}
input[type="submit"]:hover, .btn:hover{
    background-color: #16679e;
    color: #FFFFFF;
    background-image: -webkit-gradient(linear, center top, center bottom, from(#16679e 43%), to(#1a477d));
    background-image: -webkit-linear-gradient(top, #16679e 43%, #1a477d);
    background-image: -moz-linear-gradient(top, #16679e 43%, #1a477d);
    background-image: -o-linear-gradient(top, #16679e 43%, #1a477d);
    background-image: -ms-linear-gradient(top, #16679e 43%, #1a477d);
    background-image: linear-gradient(to bottom, #16679e 43%, #1a477d);
    /*background-image: none;*/
    /*background-image: -webkit-gradient(linear, center top, center bottom, from(#0ebbf3 43%), to(#04b0e9));
    background-image: -webkit-linear-gradient(top, #0ebbf3 43%, #04b0e9);
    background-image: -moz-linear-gradient(top, #0ebbf3 43%, #04b0e9);
    background-image: -o-linear-gradient(top, #0ebbf3 43%, #04b0e9);
    background-image: -ms-linear-gradient(top, #0ebbf3 43%, #04b0e9);
    background-image: linear-gradient(to bottom, #0ebbf3 43%, #04b0e9);*/
}

form .row{
    margin: 5px 0;
    clear: both;
}

form .errorSummary
{
    padding: 7px 7px 12px 7px;
    margin: 0 0 20px 0;
    font-size: 0.9em;
    border: 1px solid #EED3D7;
    background-color: #F2DEDE;
    color:#B94A48;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

form .errorSummary ul {
    list-style:none;
}

form .errorMessage
{
    color: #B94A48;
    font-size: 0.9em;
}

form .errorSummary p
{
    margin: 0;
    padding: 5px;
}

form .errorSummary ul
{
    margin: 0;
    padding: 0 0 0 20px;
}
form span.required{
    vertical-align: super;
    color: #d1d0d0;
}
.w-input{
    background-color: #FFFFFF;
    position: relative;
    display: inline-block;
    border: 2px solid #02AEE7;
    border-radius: 5px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15) inset, 0 1px 0 0 rgba(255, 255, 255, 0.65);
    font-size: 1.2em;
    -moz-user-select:-moz-none;
    -khtml-user-select:none;
    -webkit-user-select:none;
    -o-user-select:none;
    user-select:none
}
.w-input.w-file{
    border-width: 0;
    box-shadow: none;
}
.w-input label {
    color: #939598;
    cursor: text;
    font-size: 1.2em;
    line-height: 1.2em;

    -webkit-transition: color 0.15s linear;
    -moz-transition: color 0.15s linear;
    -o-transition: color 0.15s linear;
    transition: color 0.15s linear;
    position: absolute;
    /*z-index: -1;*/
    top: 0;
    left: 0;
    padding: 5px 10px;
    visibility: hidden;
    width: 100%;
}
.w50.w-input label, .w80.w-input label, .w100.w-input label
{
    padding: 5px 0;
}
.w-input.empty label {
    visibility: visible;
}
.w-input.focus label, .w-input:hover label {
    color: #E9E9E9;
}
.w-input input, .w-input textarea, .w-input select{
    color: #000000;
    font-size: 1.2em;
    background-color: transparent;
    padding: 5px;
    box-sizing: border-box;
    -moz-box-sizing: border-box; /*Firefox 1-3*/
    -webkit-box-sizing: border-box;
    width: 100%;
    border-width: 0px;
    height: auto;
}
.w-radio{
    display: inline-block;
}
.w-radio input{
    width: auto;
    cursor: pointer;
}
.w-radio div{
    padding: 5px;
}
.w-radio label{
    color: #000000;
    font-size: 1.2em;
    padding-right: 1em;
    cursor: pointer;
}
.w-input.error label, .w-label label.error {
    color: #B94A48;
}
.w-input.error input, .w-input.error textarea, .w-input.error select {
    color: #B94A48;
}
.w-input.focus, w-input:hover{
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25) inset, 0 1px 0 0 rgba(255, 255, 255, 0.65);
}
.w-label{
    float: left;
    padding: 7px 10px 0 0;
    font-size: 1.2em;
}
.w-remove{
    display: inline-block;
    background: url(../images/sprite.png) no-repeat -5px -82px;
    width: 15px;
    height: 15px;
    text-decoration: none;
    display: inline-block;

}
.w-remove:hover{
    background-position: -5px -104px;
}
.ui-datepicker{
    transition:opacity 0.2s linear;
    background-color: #F0F0F0;
    background-image: none;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    -moz-box-shadow:0 5px 10px 0 rgba(0, 0, 0, 0.35);
    -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.35);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.35);
}
.ui-datepicker .ui-datepicker-header{
    background-color: #d1d0d0;
    -moz-border-radius: 2px;
    -webkit-border-radius:2px;
    -khtml-border-radius: 2px;
    border-radius: 2px;
}
.ui-datepicker .ui-datepicker-title{
    font-weight: bold;
}
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next{
    width: 3.2em;
    cursor: pointer;
}
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span{
    left: auto;
    margin-left: 0;
    color: #000000;
}
.ui-datepicker td{
    border: 1px solid #d1d0d0;
}
.ui-datepicker td span, .ui-datepicker td a{
    color: #000;
}
.ui-datepicker td span, .ui-datepicker td a.ui-state-hover{
    background-color: #d1d0d0;
}