<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD &amp; MIT license | http://dbushell.com/
 */

.pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    margin-top: 6px;
    margin-left: -266px;
    color: #333;
    background: #fff;
    border: 1px solid #b3b3b3;
    border-bottom-color: #bbb;
    font-family: Arial,Helvetica,sans-serif;
    border-radius: 3px;
}

/*
clear child float (pika-lendar), using the famous micro clearfix hack
http://nicolasgallagher.com/micro-clearfix-hack/
*/
.pika-single:before,
.pika-single:after {
    content: " ";
    display: table;
}
.pika-single:after { clear: both }
.pika-single { *zoom: 1 }

.pika-single.is-hidden {
    display: none;
}

.pika-single.is-bound {
    position: absolute;
    box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
}

.pika-lendar {
    float: left;
    width: 263px;
    margin: 3px;
    border-radius: 3px;
}

.pika-title {
    position: relative;
    text-align: center;
    background-color: #00a45e;
    border-radius: 3px;
}

.pika-label {
    display: inline-block;
    *display: inline;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 16px;
    line-height: 25px;
    vertical-align: bottom;
    color: #ffffff;
}
.pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    opacity: 0;
}

.pika-prev,
.pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 28px;
    height: 34px;
    /* hide text using text-indent trick, using width value (it's enough) */
    text-indent: 28px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    /*background-size: 75% 75%;*/
    *position: absolute;
    *top: 0;
    opacity: .8;
}

.pika-prev:hover,
.pika-next:hover {
    opacity: 1;
}

.pika-prev,
.is-rtl .pika-next {
    float: left;
    background-image: url('/forum/images/common/calender_prev.png');
    *left: 0;
}

.pika-next,
.is-rtl .pika-prev {
    float: right;
    background-image: url('/forum/images/common/calender_next.png');
    *right: 0;
}

.pika-prev.is-disabled,
.pika-next.is-disabled {
    cursor: default;
    opacity: .2;
}

.pika-select {
    display: inline-block;
    *display: inline;
}

.pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
    margin-top: 18px;
}

.pika-table th,
.pika-table td {
    width: 14.285714285714286%;
    padding: 0;
}

.pika-table th {
    color: #000000;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
}

.pika-button {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    border: 0;
    margin: 0;
    padding: 5px;
    color: #000000;
    font-size: 13.5px;
    line-height: 18px;
    text-align: right;
    background: #ffffff;
    margin: 1px;
    width: 35px;
    border: 1px solid #b3b3b3;
}

.pika-week {
    font-size: 11px;
    color: #999;
}
/*
.is-today .pika-button {
    color: #33aaff;
    font-weight: bold;
}
*/
.is-selected .pika-button,
.has-event .pika-button {
    color: #00a45e;
    background: #ecf4d9;
    border: 1px solid #00a45e;
}
/*
.has-event .pika-button {
    background: #005da9;
    box-shadow: inset 0 1px 3px #0076c9;
}
*/
.is-disabled .pika-button,
.is-inrange .pika-button {
    background: #ddddde;
    border: 1px solid #b3b3b3;
    color: #000000;
}

.is-startrange .pika-button {
    color: #fff;
    background: #6cb31d;
    box-shadow: none;
    border-radius: 3px;
}

.is-endrange .pika-button {
    color: #fff;
    background: #33aaff;
    box-shadow: none;
    border-radius: 3px;
}

.is-disabled .pika-button,
.is-outside-current-month .pika-button {
    pointer-events: none;
    cursor: default;
    color: #000000;
    /*opacity: .3;*/
}

.pika-button:hover {
    /*background: #ecf4d9;*/
    border: 1px solid #00a45e;
}

/* styling for abbr */
.pika-table abbr {
    border-bottom: none;
}

</pre></body></html>