#broadway-shadow{
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    background: none;
    background: rgba(0,0,0,0.1);
    z-index: 210;
}

div.jscalendar{
    width: 100%;
    float: left;
    font-family: Helvetica;
    box-shadow: inset 1px 1px 0px #ccc,inset -1px 1px 0px #ccc;
    border-radius: 5px;
    color: #666;
}
.jscalendar-header{
    /*box-shadow: inset 0px -1px 10px #ccc;*/
    display: block;
    float: left;
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-radius: 5px 5px 0px 0px;
    
    /*background: #F27F68;*/
    background: #069;
    /*background : linear-gradient( #F27F68, #F34B26);*/

    /*background: -webkit-linear-gradient(#eee, #ddd); 
    background: -moz-linear-gradient(#eee, #ddd); 
    background: -o-linear-gradient(#eee, #ddd); 
    background: linear-gradient(#eee, #ddd); */
}
.jscalendar-header h1{
    font-weight: normal;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    text-align: center;    
    margin: 0px;
    padding: 0px;
    color: #fff;
}
.jscalendar-header .jscalendar-header-next, 
.jscalendar-header .jscalendar-header-prev{
    display: block;
    padding: 0px 10px;
    height: 40px;
    line-height: 40px;

    font-weight: lighter;
    font-size: 12px;
    text-decoration: none;
    
    color: #fff;

    margin-top: -40px;

    /*box-shadow: inset 0px -1px 10px #ccc;*/
    -webkit-transition: all linear 0.5s;
    -moz-transition: all linear 0.5s;
    -ms-transition: all linear 0.5s;
    transition: all linear 0.5s;
}
.jscalendar-header .jscalendar-header-prev{
    float: left; 
    border-right: 1px solid #DD1D00;
    border-radius: 5px 0px 0px 5px;
}
.jscalendar-header .jscalendar-header-next{
    float: right;
    border-left: 1px solid #DD1D00;
    border-radius: 0px 5px 5px 0px;
}

.jscalendar-header .jscalendar-header-next:hover, 
.jscalendar-header .jscalendar-header-prev:hover{
    
}

.jscalendar-header-list-months{
    float: left;
    display: block;
    width: 100%;
    text-align: center;
    border-top: 1px solid #006699;
    border-bottom: 1px solid #006699;
    /*background: #f34b26;*/
    background: #006699;
    /*background : linear-gradient(#F34B26, #E0371D);*/

    /*background: -webkit-linear-gradient(#ddd, #ccc); 
    background: -moz-linear-gradient(#ddd, #ccc); 
    background: -o-linear-gradient(#ddd, #ccc); 
    background: linear-gradient(#ddd, #ccc); */
}
.jscalendar-header-list-months a{
    display: inline-block;
    padding: 6px 10px;
    margin: 0px 0px;

    font-weight: lighter;
    font-size: 11px;
    text-decoration: none;
    text-transform: uppercase;
    
    text-align: center;

    color: #fff;

    text-transform: uppercase;

    -webkit-transition: all linear 0.1s;
    -moz-transition: all linear 0.1s;
    -ms-transition: all linear 0.1s;
    transition: all linear 0.1s;
}
.jscalendar-header-list-months a:hover/*,
.jscalendar-header-list-months a.active*/{
    text-decoration: none;
    text-shadow: 0px 0px 10px #fff;
}
.jscalendar-header-list-months a.active{
    /*border-radius: 30px;*/
    color: #E0371D;
    color: #666;
    background: #fff;
    font-weight: bold;
    /*box-shadow: inset 0px 1px 2px rgba(0,0,0,0.5), inset 0px -1px 1px rgba(255,255,255,0.5);*/
    text-shadow: none;
}

.jscalendar-header-list-months a.disabled{
    /*color: #992614;
    color: #B32C17;*/
    /*color: #004567;*/
    /* text-shadow: none; */
    /* cursor: text;    */
}

div.week{
    float: left;
    font-weight: bold;
    font-size: 11px;
    display: block;
    width: 100%;
}
div.week-item{
    display: block;
    float: left;
    width: 14.28%;
    height: 20px;
    line-height: 20px;
    padding-top: 4px;
    text-align: center;
    text-transform: uppercase;
}

div.day-container{
    float: left;
    width: 100%;
    
    padding: 0px 0px 1px 1px; 
    box-shadow: inset 1px -1px 0px #ccc;
}
div.day{
    display: block;
    position: relative;
    float: left;
    width: 14.27%;
    height: 89px;
    /*background: #fff;*/
    background: #f5f5f5; 
    /*background: linear-gradient(#f5f5f5, #ccc);*/ 
    box-shadow: inset -1px 1px 1px #ccc;
    /*overflow: hidden;*/

    font-weight: bold;

    -webkit-transition: all linear 0.1s;
    -moz-transition: all linear 0.1s;
    -ms-transition: all linear 0.1s;
    transition: all linear 0.1s;
}
div.day.null{
    background: #fff;
}
div.day.disabled{
    /*background: linear-gradient(#fff, #f5f5f5); */
    background: #eee; 
    color: #d6d6d6;
    font-weight: normal;
}
div.day:hover{
    /*background: linear-gradient(#f5f5ff, #ccf); */
    /*background: linear-gradient(#fff, #ddd);*/ 
    overflow: visible;
}
div.day.null:hover{
    background: #fff;
}
div.day.disabled:hover{
    /*background: linear-gradient(#fff, #f5f5f5); */
    background: #eee; 
}

div.day-see-more{
    display: block;
    position: absolute;
    background: #f5f5f5;
    /*background: linear-gradient(#fff, #ddd);*/ 
    border: 1px solid #eee;
    z-index: 10000;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.5);
}

div.day span.day-number{
    float: right;
    margin: 10px;
}

div.day div.day-content{
    padding: 0px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    overflow: hidden;
    box-shadow: inset 0px 0px 0px #ccc;

    -webkit-transition: all linear 0.2s;
    -moz-transition: all linear 0.2s;
    -ms-transition: all linear 0.2s;
    transition: all linear 0.2s;
}
div.day:hover div.day-content, 
div.day div.day-content:hover{
    /*background: #eef;
    box-shadow: inset -1px 1px 1px #ccc;
    z-index: 10000;*/
}

/*div.day:hover div.day-content a.see-more{
    display: none;
}
div.day:hover div.day-content a.hidden{
    margin: 5px;
    padding: 3px 8px;
    height: auto;
}*/

div.day div.day-content a{
    display: block;
    height: 18px;
    /*width: 70%;*/
    line-height: 18px;
    
    margin: 5px;
    padding: 0px 5px;
    
    text-decoration: none;
    text-align: left;
    font-size: 11px;
    font-weight: normal;
    white-space: nowrap;
    
    background: #6fa715;
    color: #fff;
    
    overflow: hidden;
   /* -webkit-transition: all linear 0.2s;
    -moz-transition: all linear 0.2s;
    -ms-transition: all linear 0.2s;
    transition: all linear 0.2s;*/
}

div.day div.day-content a.item{
    -webkit-transition: background linear 0.1s;
    -moz-transition: background linear 0.1s;
    -ms-transition: background linear 0.1s;
    transition: background linear 0.1s;   
}
div.day div.day-content a span.text.small{
    font-size: 8px;
}
div.day div.day-content a span.text.hidden{
    display: none;
}
div.day .day-see-more div.day-content a span.text.hidden{
    display: block;
}
div.day .day-see-more div.day-content a span.text.small{
    font-size: 11px;
}
div.day div.day-content a, 
div.day div.day-content a.default{
    background: #6fa715;
}
div.day div.day-content a.see-more{
    /*background:  none;*/
    /*color: #666;*/
}
/*div.day div.day-content a.see-more span.plus{
    font-size: 18px;
    font-weight: bold;
    float: left;
    margin: -2px 5px 0px 0px;
}*/
div.day div.day-content a.selected{
    background: #069; 
    color: #fff;
}
div.day div.day-content a.disabled{
    background: #bbb;
    color: #999;
}
div.day div.day-content a.disabled.selected{
    background: #a00;
    color: #fff;
}
div.day div.day-content a.green{
    background: #0a0; 
    color: #fff;
}
div.day div.day-content a.blue{
    background: #0af;
}
div.day div.day-content a:hover,
div.day div.day-content a.default:hover{
    background: #87BB34;
    text-shadow: 0px 0px 15px #fff;
}
div.day div.day-content a.see-more:hover{
    /*background:  none;*/
}
div.day div.day-content a.selected:hover{
    background: #069; 
    color: #fff;
    box-shadow: 0px 0px 5px rgba(0,69,103,0.5);
}
div.day div.day-content a.disabled:hover{
    background: #bbb;
}
div.day div.day-content a.disabled.selected:hover{
    background: #f00;
    color: #fff;
}
div.day div.day-content a.green:hover{
    background: #0f0; 
    color: #fff;
}
div.day div.day-content a.blue:hover{
    background: #0df;
}
div.day div.day-content a.hidden{
    display: none;
}

div.day-see-more div.day-content a.see-more{
    display: none;
}
div.day-see-more div.day-content a,
div.day-see-more div.day-content a.hidden {
    height: auto;
    display: block;
    border-radius: 0px;
}

span.mini{
    font-size: 11px;
}


div.day div.day-content a.see-more span.plus{
    display: none;
}

@media screen and (max-width : 500px){
    .see-more .text .text-plus{
        display: none;
    }
    div.day div.day-content a.see-more span.plus{
        display: inline;
    }
}
@media screen and (max-width : 400px){
    
    div.day div.day-content a, div.day div.day-content a.default{
        padding: 0px;
        text-align: center;
    }
    
    .day-see-more div.day-content a{
        text-align: left!important;
    }
}