

#cal {
    -moz-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    position: absolute;
    /*top:35% !important;
    left:40% !important;*/
    font: 13px/1.5 "Helvetica Neue", Helvatica, Arial, san-serif;
    display: table;
}

    /*header bar---------------------*/
    #cal .header {
        cursor: default;
        background: #89C0C0;
        height: 34px;
        position: relative;
        color: #fff;
        -webkit-border-top-left-radius: 5px;
        -webkit-border-top-right-radius: 5px;
        -moz-border-radius-topleft: 5px;
        -moz-border-radius-topright: 5px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        font-weight: bold;
        text-shadow: 0px -1px 0 #87260C;
        text-transform: uppercase;
    }

        #cal .header span {
            display: inline-block;
            line-height: 34px;
            padding: 0 !important;
        }

        #cal .header .hook {
            width: 9px;
            height: 28px;
            position: absolute;
            bottom: 60%;
            border-radius: 10px;
            -moz-border-radius: 10px;
            -webkit-border-radius: 10px;
        }

.right.hook {
    right: 15%;
}

.left.hook {
    left: 15%;
}

/*month switch buttons*/
#cal .header .button {
    width: 24px;
    text-align: center;
    position: absolute;
}

#cal .header .left.button {
    left: 0;
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    border-top-left-radius: 5px;
    border-right: 1px solid #616161;
}

#cal .header .right.button {
    right: 0;
    top: 0;
    border-left: 1px solid #616161;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    border-top-right-radius: 5px;
}

#cal .header .button:hover {
    background: #888888;
}

/*month label*/
#cal .header .month-year {
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
}

/*day headers---------------------*/
.eformDayDisabled {
    background-color: lightgray;
}

#cal table {
    background: #fff;
    border-collapse: collapse;
}

#cal td {
    color: #2b2b2b;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #e6e6e6;
    cursor: default;
}

#cal #days td {
    height: 26px;
    line-height: 26px;
    font-size: 90%;
    color: #9e9e9e;
}

    #cal #days td:not(:last-child) {
        border-right: 1px solid #fff;
    }

#cal #cal-frame td.today {
    background: #ededed;
    color: #8c8c8c;
    box-shadow: 1px 1px 0px #fff inset;
    -moz-box-shadow: 1px 1px 0px #fff inset;
    -webkit-box-shadow: 1px 1px 0px #fff inset;
}

#cal #cal-frame td:not(.nil):hover {
    color: #fff;
    text-shadow: #6C1A07 0px -1px;
    background: #89C0C0;
    -moz-box-shadow: 0px 0px 0px;
    -webkit-box-shadow: 0px 0px 0px;
}

#cal #cal-frame td span {
    font-size: 80%;
    position: relative;
}

    #cal #cal-frame td span:first-child {
        bottom: 5px;
    }

    #cal #cal-frame td span:last-child {
        top: 5px;
    }

#cal #cal-frame table.curr {
    float: left;
}

#cal #cal-frame table.temp {
    position: absolute;
}
