/* DatePicker Container (Kalender im Formular)*/
.ui-datepicker {
    width: 216px;
    height: auto;
    margin: 5px auto 0;
    font: 9pt Arial, sans-serif;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
}
.ui-datepicker a {
    text-decoration: none;
}
/* DatePicker Table */

.ui-datepicker table {
    width: 100%;
}
.ui-datepicker-header {
    background: #000;
    color: #e0e0e0;
    font-weight: bold;
    -webkit-box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, 2);
    -moz-box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, .2);
    box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, .2);
    text-shadow: 1px -1px 0px #000;
    filter: dropshadow(color=#000, offx=1, offy=-1);
    line-height: 30px;
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: #111;
}
.ui-datepicker-title {
    text-align: center;
}
.ui-datepicker-prev, .ui-datepicker-next {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    cursor: pointer;
    background-image: url('../img/next_back.png');
    background-repeat: no-repeat;
    line-height: 600%;
    overflow: hidden;
    width: 5px;
}
.ui-datepicker-prev {
    background-position: left 8px;
    float: left;
    margin: 0 0 0 8px;
}
.ui-datepicker-next {
    float: right;
    background-position: right 8px;
    margin: 0 8px 0 0;
}
.ui-datepicker thead {
    background-color: #f7f7f7;
    background-image: -moz-linear-gradient(top, #f7f7f7 0%, #f1f1f1 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7f7f7), color-stop(100%, #f1f1f1));
    background-image: -webkit-linear-gradient(top, #f7f7f7 0%, #f1f1f1 100%);
    background-image: -o-linear-gradient(top, #f7f7f7 0%, #f1f1f1 100%);
    background-image: -ms-linear-gradient(top, #f7f7f7 0%, #f1f1f1 100%);
    background-image: linear-gradient(top, #f7f7f7 0%, #f1f1f1 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7', endColorstr='#f1f1f1', GradientType=0);
    border-bottom: 1px solid #bbb;
}
.ui-datepicker th {
    text-transform: uppercase;
    font-size: 6pt;
    padding: 5px 0;
    color: #666666;
    text-shadow: 1px 0px 0px #fff;
    filter: dropshadow(color=#fff, offx=1, offy=0);
}
.ui-datepicker tbody td {
    padding: 0;
    border-right: 1px solid #bbb;
}
.ui-datepicker tbody td:last-child {
    border-right: 0px;
}
.ui-datepicker tbody tr {
    border-bottom: 1px solid #bbb;
}
.ui-datepicker tbody tr:last-child {
    border-bottom: 0px;
}
.ui-datepicker td span, .ui-datepicker td a {
    display: inline-block;
    font-weight: bold;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #666666;
    text-shadow: 1px 1px 0px #fff;
    filter: dropshadow(color=#fff, offx=1, offy=1);
}
.ui-datepicker-calendar .ui-state-default {
    background: #ededed;
    background: -moz-linear-gradient(top, #ededed 0%, #dedede 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ededed), color-stop(100%, #dedede));
    background: -webkit-linear-gradient(top, #ededed 0%, #dedede 100%);
    background: -o-linear-gradient(top, #ededed 0%, #dedede 100%);
    background: -ms-linear-gradient(top, #ededed 0%, #dedede 100%);
    background: linear-gradient(top, #ededed 0%, #dedede 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dedede', GradientType=0);
    -webkit-box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, .5);
    -moz-box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, .5);
    box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, .5);
}
.ui-datepicker-calendar .ui-state-hover {
    background: #f7f7f7;
}
.ui-datepicker-calendar .ui-state-active {
    background: #6eafbf;
    -webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, .1);
    -moz-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, .1);
    box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, .1);
    color: #e0e0e0;
    text-shadow: 0px 1px 0px #4d7a85;
    filter: dropshadow(color=#4d7a85, offx=0, offy=1);
    border: 1px solid #55838f;
    position: relative;
    margin: -1px;
}
.ui-datepicker-unselectable .ui-state-default, .ui-datepicker tbody td {
    border-right: 1px solid #BBBBBB;
    padding: 0;
    background: #f4f4f4;
    color: #b4b3b3;
}
.ui-datepicker-calendar td:first-child .ui-state-active {
    width: 29px;
    margin-left: 0;
}
.ui-datepicker-calendar td:last-child .ui-state-active {
    width: 29px;
    margin-right: 0;
}
.ui-datepicker-calendar tr:last-child .ui-state-active {
    height: 29px;
    margin-bottom: 0;
}
/*Changed*/

#ui-datepicker-div {
    border-radius: 5px 5px 5px 5px;
    margin: 10px 0 0;
    width: 406px;
    transition: display 0.5s opacity 0.5s linear 0;
    -webkit-transition: display 0.5s, opacity 0.5s, linear 0;
}
.ui-datepicker {
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
    font: 9pt Arial, sans-serif;
    height: auto;
    margin: 5px auto 0 -6px;
    position: absolute;
    top: -20px;
}
.ui-datepicker table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}
.ui-datepicker td span, .ui-datepicker td a {
    color: #666666;
    display: inline-block;
    font-weight: bold;
    height: 23px;
    line-height: 23px;
    text-align: center;
    text-shadow: 1px 1px 0 #FFFFFF;
    width: 57px;
}
.ui-datepicker-calendar tr:last-child .ui-state-active {
    width: 56px !important;
}


/* TOKEN INPUT */

/************************************************************************************/

#stadt_label {
    color: #999999;
    float: left;
    font-size: 31px;
    left: 160px;
    position: relative;
    top: 104px;
}
#live_search {
    width: 400px;
    height: 60px;
    background: #fcfcfc;
    border: 1px solid #ccc;
    font-size: 24px;
    text-align: left;
    margin-left: 220px;
    cursor: pointer;
}
#live_search img {
    cursor: default!important;
}
#auswahl #token-input-stadt {
    height: 60px;
    cursor: pointer;
    font-size: 24px;
    text-align: left;
    padding-left: 10px;
    background: none;
    border: 0;
    float: left!important;
}
.tester {
    float: left!important;
    overflow: hidden;
    background: #fcfcfc;
    border: 1px solid #ccc;
}
.token-input-dropdown {
    color: #999999;
    cursor: pointer;
    font-size: 24px;
    max-height: 115px;
    width: 380px;
    overflow: hidden;
    /*padding: 10px !important;*/
    text-align: left;
    float: left!important;
    margin: 67px 0 0 42px;
    position: absolute;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
#auswahl .token-input-dropdown {
    margin: 67px 0 0 0!important;
}
.token-input-dropdown ul, .token-input-dropdown li {
    margin: 0 0 0 2px;
    padding: 0;
}
#auswahl .token-input-token {
    background: none repeat scroll 0 0 #FCFCFC;
    border: 1px solid #CCCCCC;
    font-size: 24px;
    height: 60px;
    left: 50%;
    margin: -1px 0 0 -1px !important;
    max-width: 390px;
    min-width: 390px;
    padding: 0 0 0 10px !important;
}
.token-input-token p {
    margin-top: 18px!important;
    float: left;
}
.token-input-dropdown ul {
    list-style: none;
}
.token-input-selected-dropdown-item {
    color: #000;
}
.token-input-delete-token {
    color: #999999;
    cursor: pointer;
    float: right;
    font-size: 42px;
    padding: 8px 24px 0 0;
    text-transform: uppercase;
}
.textbox {
    min-width: 407px;
    max-width: 407px;
    height: 60px;
    background: #fcfcfc;
    border: 1px solid #ccc;
    font-size: 24px;
    text-align: center;
    color: #999;
}
.textbox_active {
    color: #000!important;
    text-transform: none!important;
}
#token-input-stadt {
    color: #999;
}
#token-input-stadt:focus {
    color: #000!important;
}
.tester {
    color: #000;
}

/* For Index */
#index .token-input-list{
    margin: 0;
}
#index  #token-input-stadt{
    width: 265px !important;
    background-color: #fff;
    height: 31px;
}
#index .token-input-dropdown {
    background: #fff!important;
    margin: 50px 0 0 55px;
    width: 273px!important;
    padding: 10px 5px;
    max-height: 105px!important;
}
#index .token-input-dropdown li{
    padding: 3px 0;
}
#auswahl .token-input-dropdown {
    background: #fff!important;
    margin: 50px 0 0 55px;
    width: 390px!important;
    padding: 10px 5px;
    max-height: 140px!important;
}
#auswahl .token-input-dropdown li{
    padding: 3px 0;
}
#index .token-input-list li{
    list-style: none;
}
#index .token-input-token p{
    margin: 0!important;
    font-weight: normal;
    font-family: 'Open Sans';
}
#index .token-input-token {
    color: #000;
    width: 275px !important;
    background-color: #fff;
    overflow: hidden;
    padding: 10px 0 12px 10px;
}
#index .token-input-delete-token{
    padding: 0 13px 0 0 !important;
}
#index input[type="text"]{
    padding: 7px 10px 9px 10px!important;
    font-family: 'Open Sans';
}

/* Carousel Slider */

/************************************************************************************/

.jcarousel-skin-tango {
    margin: 25px 68px;
    height: 15px;
}
.jcarousel-skin-tango li {
    width: 145px;
    height: 105px;
    border: 1px solid #f0f0f0;
}
.jcarousel-skin-tango li img {
    display: block;
    margin: auto;
    vertical-align: middle;
}
.jcarousel-skin-tango .jcarousel-container-horizontal {
    width: 830px;
}
.jcarousel-skin-tango .jcarousel-clip {
    overflow: hidden;
}
.jcarousel-skin-tango .jcarousel-clip-horizontal {
    width: 830px;
    height: 200px;
}
.jcarousel-skin-tango .jcarousel-item {
    width: 145px;
    height: 105px;
}
.jcarousel-skin-tango .jcarousel-item-horizontal {
    margin-left: 0;
    margin-right: 20px;
}
.jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-item-horizontal {
    margin-left: 20px;
    margin-right: 0;
}
.jcarousel-skin-tango .jcarousel-item-placeholder {
    background: #fff;
    color: #000;
}
/**
 *  Horizontal Buttons
 */

.jcarousel-skin-tango .jcarousel-next-horizontal {
    position: absolute;
    top: 43px;
    right: -35px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: transparent url(../img/arrow_slide.png) no-repeat 0 0;
    background-position: -30px;
}
.jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-next-horizontal {
    left: 5px;
    right: auto;
    background-image: url(../img/arrow_slide.png);
}
.jcarousel-skin-tango .jcarousel-prev-horizontal {
    position: absolute;
    top: 43px;
    left: -50px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: transparent url(../img/arrow_slide.png) no-repeat 0 0;
}
.jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-prev-horizontal {
    left: auto;
    right: 5px;
    background-image: url(../img/arrow_slide.png);
}