/* Default attributes of table container for entire calendar */
.jscalendar-FC-table-style {
    font-family: 'Merriweather', serif;
    font-size: 13px;
    line-height: 15px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(243, 85, 35);
	background-color: #ffffff;
	padding-top: 0;
}

.jscalendar-FC-table-style td{
	vertical-align: middle;
	border: 1px solid rgb(255, 213, 214);
}

.jscalendar-FC-table-style td span{
	display: inline-block;
	vertical-align: middle;
}

.jscalendar-FC-table-style a{
	color: rgb(243, 85, 35);
	/*text-decoration: underline;*/
}

/* Default attributes of DIV containing table container for entire calendar.
 * You probably don't want to alter this style.
 */
.jscalendar-FC-div-style {
	z-index: 9999999;
	position: absolute;
	visibility: hidden;
	font-family: 'Merriweather', serif;
}

.jscalendar-FC-div-style img {
	width: auto;
	height: auto;
}

/* Default attributes used in calendar title (month and year columns).*/
.jscalendar-FC-title-style {
    padding:2px;
    padding-top:0px;
    font-family: 'Merriweather', serif;
    font-size:13px;
    font-weight:bold;
    color:#FFFFFF;    
}

/* Default attributes used in calendar title background.*/
.jscalendar-FC-title-background-style {
	background-color: rgb(243, 85, 35);
}

.jscalendar-FC-title-background-style td{
	border: 0;
}

/* Normal appearance of controls in calendar title. */
/* Note: The right, left and down icons are images, jscalendar-FCich must be edited if you need to change them. */
.jscalendar-FC-title-control-normal-style {
	border-style: solid;
	border-width: 1px;
	border-color: #FFF;
	padding-top: 1px;
	margin-top: 0px;
	cursor: pointer;
}

/* Normal appearance of images in calendar title. */
/* Note: The right, left and down icons are images, jscalendar-FCich must be edited if you need to change them. */
.jscalendar-FC-title-img-normal-style {
	cursor: pointer;
}

/* Moused-over (selected) appearance of controls in calendar title. */
.jscalendar-FC-title-control-select-style {
	border-style: solid;
	border-width: 1px;
	border-color: #FFFFFF;
	padding-top: 1px;
	margin-top: 0px;
	cursor: pointer;
}

/* Moused-over (selected) appearance of controls in calendar title. */
.jscalendar-FC-title-img-select-style {
	cursor: pointer;
}

/* Default attributes of drop down lists (month and year). */
.jscalendar-FC-dropdown-style {
	font-family: 'Merriweather', serif;
	font-size: 13px;
	border-width: 1px;
	border-style: solid;
	border-color: rgb(243, 85, 35);
	background-color: #FFFFFF;
	cursor: pointer;
	padding-top: 0;
	margin-top: 0;
	line-height: 16px !important;
}

/* Default attributes selected (mouse-over) item in drop down lists (month and year). */
.jscalendar-FC-dropdown-select-style {
	background-color: #000;
	color: #FFFFFF;
}

/* Default attributes unselected (mouse-off) item in drop down lists (month and year). */
.jscalendar-FC-dropdown-normal-style {
	background-color:inherit;
}

td.jscalendar-FC-dropdown-normal-style {
	/*border-bottom: 1px solid rgb(255, 213, 214) !important;*/
}

.jscalendar-FC-dropdown-style td{
	border-bottom: 1px solid rgb(255, 213, 214) !important;
}

/* Default attributes of calendar body (weekday titles and numbers). */
.jscalendar-FC-body-style {
	background-color: #FFFFFF;
	font-family: 'Merriweather', serif;
	font-size: 12px;
}

.jscalendar-FC-body-style td{
	text-align: center !important;
}

/* Attributes of current day in calendar body. */
.jscalendar-FC-current-day-style {
	color: black !important;
	font-weight: 700;
	/*background-color: rgb(230, 230, 230);*/
	text-decoration: none;
}

/* Attributes of end-of-week days (Sundays) in calendar body. */
.jscalendar-FC-end-of-weekday-style {
	color: #909090;
	text-decoration: none;
}

/* Attributes of all other days in calendar body. */
.jscalendar-FC-normal-day-style {
	color: black;
	text-decoration: none;
}

.jscalendar-FC-would-be-selected-day-style {
	background-color: #000;
	color: #FFF !important;
}

/* Attributes of border around selected day in calendar body. */
.jscalendar-FC-selected-day-style {
	/*border-style: solid;
	border-width: 1px;
	border-color: rgb(243, 85, 35);*/
	background-color: rgb(243, 85, 35);
	color: #FFF !important;
}

/* Default attributes of designated holidays. */
.jscalendar-FC-holiday-style {
	background-color: #FFDDDD;
}

/* Attributes of today display at bottom on calendar */
.jscalendar-FC-today-style {
	padding: 0px;
	color: black;
	background-color: #f0f0f0;
	text-align: center;
	text-decoration: none;
}

/* Attributes of today display label at bottom on calendar */
.jscalendar-FC-today-lbl-style {
	padding: 5px;
	text-align: center;
}

/* Attributes of week number division (divider.gif) */
.jscalendar-FC-weeknumber-div-style {
	background-color: #d0d0d0;
	padding: 0px;
}

/* Attributes of week labels in calendar. */
.jscalendar-FC-normal-week-style {
	color: black;
	text-decoration: none;
}

.jscalendar-FC-would-be-selected-week-style {
	background-color: #EEEEEE;
}

@media only screen and (device-width: 480px), only screen and (min-width: 1px) and (max-width: 480px){
	.calendarDiv {
		/*position: absolute !important;*/
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 100% !important;
	}
	
	.jscalendar-FC-table-style{
		width: 100% !important;
		height: 100% !important;
	}
	
	.jscalendar-FC-title-background-style table{
		width: 100% !important;
	}
	
	.monthDropdown{
		width: 124px;
	}
	
	.yearDropdown{
		width: 70px;
	}
	
	.monthDropdown img, .yearDropdown img{
		float: right;
	}
	
	.selectMonthDiv {
		position: fixed !important;
		top: 26px !important;
		left: 60px !important;
	}
	
	.selectYearDiv {
		position: fixed !important;
		top: 26px !important;
		left: 190px !important;
	}
	
	.jscalendar-FC-title-background-style td{
		height: 30px;
		overflow: hidden;
		line-height: 18px !important;
	}
	
	.jscalendar-FC-title-background-style table td, .jscalendar-FC-title-background-style table td > a > span{
		height: 24px;
		overflow: hidden;
	}
	
	.jscalendar-FC-title-style{
		width: 265px !important;
	}
	
	.jscalendar-FC-title-style span{
		height: 22px;
	}
	
	.jscalendar-FC-normal-day-style, .jscalendar-FC-end-of-weekday-style,
	.jscalendar-FC-title-style, .jscalendar-FC-dropdown-style,
	.jscalendar-FC-selected-day-style, .jscalendar-FC-current-day-style{
		font-size: 16px;
		line-height: 18px !important;
	}
	
	.jscalendar-FC-dropdown-style{
		line-height: 24px !important;
	}
	
	.jscalendar-FC-title-background-style img{
		width: auto !important;
		height: 24px !important;
	}
	
	.jscalendar-FC-title-style img{
		width: auto !important;
		height: 16px !important;
	}
	
	.jscalendar-FC-body-style {
		width: 100%;
		/*height: 100%;*/
	}
	
	td.jscalendar-FC-body-style {
		vertical-align: top;
	}
	
	.jscalendar-FC-body-style td{
		text-align: center !important;
		height: 50px;
		vertical-align: middle !important;
		/*background-image:-webkit-gradient(linear, left top, left bottom, from(#DDDDDD), to(#FFFFFF));
		background-image:-webkit-linear-gradient(top, #DDDDDD, #FFFFFF);
		background-image:-moz-linear-gradient(top, #DDDDDD, #FFFFFF);
		background-image:-ms-linear-gradient(top, #DDDDDD, #FFFFFF);
		background-image:-o-linear-gradient(top, #DDDDDD, #FFFFFF);
		background-image:linear-gradient(top, #DDDDDD, #FFFFFF);
	    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#DDDDDD, endColorstr=#FFFFFF); */
	    background: #f6f8f9; /* Old browsers */
		background: -moz-linear-gradient(top,  #f6f8f9 0%, #e5ebee 50%, #d7dee3 51%, #f5f7f9 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f6f8f9), color-stop(50%,#e5ebee), color-stop(51%,#d7dee3), color-stop(100%,#f5f7f9)); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  #f6f8f9 0%,#e5ebee 50%,#d7dee3 51%,#f5f7f9 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  #f6f8f9 0%,#e5ebee 50%,#d7dee3 51%,#f5f7f9 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  #f6f8f9 0%,#e5ebee 50%,#d7dee3 51%,#f5f7f9 100%); /* IE10+ */
		background: linear-gradient(to bottom,  #f6f8f9 0%,#e5ebee 50%,#d7dee3 51%,#f5f7f9 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6f8f9', endColorstr='#f5f7f9',GradientType=0 ); /* IE6-9 */
	}
	
	.jscalendar-FC-body-style span, .jscalendar-FC-body-style a{
		/*display: block !important;*/
		width: 100%;
		/*height: 100%;*/
	}

	.jscalendar-FC-body-style td a, jscalendar-FC-body-style td span {
		/*vertical-align: middle !important;*/
	}

	.jscalendar-FC-today-lbl-style{
		height: 30px;
	}
}