@charset "UTF-8";

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | http://dbushell.com/
 */
.pika-single {
	z-index: 9999;
	display: block;
	position: relative;
	background: white;
	color: black;
	border: 2px solid #dbdbdb;
	border-radius: 8px;
	font-family: Verdana, Arial, sans-serif;
}

/*
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.is-hidden {
	display: none;
}

.pika-single.is-bound {
	position: absolute;
}

.pika-lendar {
	float: left;
	width: 240px;
	margin: 5px;
}

.pika-title {
	position: relative;
	text-align: center;
}

.pika-label {
	display: inline-block;
	position: relative;
	z-index: 9999;
	overflow: hidden;
	margin: 0;
	padding: 3px 3px;
	font-size: 0.9em;
	font-weight: bold;
	background-color: white;
}

.pika-title select {
	cursor: pointer;
	position: absolute;
	z-index: 9998;
	margin: 0;
	left: 0;
	top: 5px;
	opacity: 0;
}

.pika-prev,.pika-next {
	display: block;
	cursor: pointer;
	position: relative;
	outline: none;
	border: 0;
	padding: 0;
	/* hide text using text-indent trick, using width value (it's enough) */
	text-indent: 20px;
	white-space: nowrap;
	overflow: hidden;
}

.pika-prev:hover,.pika-next:hover {
	color: black;
}

.pika-prev,.is-rtl .pika-next {
	float: left;
	background: white;	
	border-style: solid;
	border-width: 4px 4px 0 0;
	content: '';
	display: inline-block;
	height: 12px;
	top: 6px;
	left: 14px;
	width: 12px;
	color: gray;
	position: relative;
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}

.pika-next,.is-rtl .pika-prev {
	float: right;
	background: white;	
	border-style: solid;
	border-width: 4px 4px 0 0;
	content: '';
	display: inline-block;
	height: 12px;
	top: 6px;
	left: -14px;
	width: 12px;
	color: gray;
	position: relative;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

.pika-prev.is-disabled,.pika-next.is-disabled {
	cursor: default;
	color: #D0D0D0;
}

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

.pika-table {
	width: 100%;
}

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

.pika-table th {
	color: gray;
	font-size: 0.8em;
	line-height: 25px;
	text-align: center;
}

.pika-table td {
	background: #F3F3F3;
}
	
.pika-button {
	cursor: pointer;
	display: block;
	border: 0px;
	margin: 0px;
	width: 100%;
	padding: 4px;
	color: gray;
	font-size: 0.9em;
	text-align: right;
	background: #F3F3F3;
	border: 2px solid;
	border-radius: 0px;
	border-color: #F3F3F3;
	font-family: Verdana, Arial, sans-serif;
}

.pika-week {
	font-size: 0.9em;
	color: gray;
}

.is-today .pika-button {
	color: black;
	font-weight: bold;
}

.is-selected .pika-button {
	color: black;
	font-weight: bold;
	background: white;
	border-color: gray;
	border-radius: 8px;
}

.is-disabled .pika-button {
	pointer-events: none;
	cursor: default;
	background: white;
	border-color: white;
}

.pika-button:hover {
	border-color: gray;
	color: black;
	font-weight: bold;
	border-radius: 8px;
}

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