/*******************************Calendar Top Navigation*********************************/
div#calendar{
  margin:20px auto;
  padding:0px;
  width: 100%;
}
 
div#calendar div.box{
    position:relative;
    top:0px;
    left:0px;
    width:100%;
    height:40px; 
}
 
div#calendar div.header{
    vertical-align:middle;
    width:100%;
    text-align:center;
}
 
div#calendar div.header a.prev,div#calendar div.header a.next{ 
    position:absolute;
    top:0px;   
    height: 17px;
    display:block;
    cursor:pointer;
    text-decoration:none;
    color:#666666;
    padding: 5px;
}
 
div#calendar div.header span.title{
    color:#000000;
    font-weight: bold;
}
 
 
div#calendar div.header a.prev{
    left:0px;
}
 
div#calendar div.header a.next{
    right:0px;
}
 
 
 
 
/*******************************Calendar Content Cells*********************************/
div#calendar div.box-content{
    /* border:1px solid #787878 ; */
    border-top:none;
    clear: both;
}
 
 
 
div#calendar ul.label{
    float:left;
    margin: 0px;
    padding: 0px;
    width:100%;
    border-top: 2px solid #FFFFFF;  
    border-bottom: 2px solid #FFFFFF;
}
 
div#calendar ul.label li{
    margin:0px;
    padding:0px;
    float:left;
    list-style-type:none;
    width:14.28%;
    height:30px;
    vertical-align:middle;
    text-align:center;
    color:#000000;
    background-color: transparent;
}
 
 
div#calendar ul.dates{
    float:left;
    margin: 0;
    padding: 0;
    width:100%;
    border-left: 0.5% solid #CCCCCC;
}
 
/** overall width = width+padding-right**/
div#calendar ul.dates li{
    margin: 0.1%;
    padding: 1%;
    float:left;
    list-style-type:none;
    width:12.08%;
    height:80px;
    font-size:9px;
    line-height:11px;  
    background-color: #FFFFFF;
    color:#000;
    border-top: 0.5% solid #CCCCCC;
    border-right: 0.5% solid #CCCCCC;
    overflow-y: auto;
}
div#calendar ul.dates li.today {
    background-color: #bccddd;
    color: #FFFFFF;
}
div#calendar ul.dates li.today a {
    color: #FFFFFF;
}
div#calendar ul.dates li.mask{
    background-color: transparent;
}
 
:focus{
    outline:none;
}
 
div.clear{
    clear:both;
}      