h1 { text-align: center; }


.yearMonthDiv { 
	background-color: #eee;
	border: 2px solid #bbb;
	overflow: hidden;
}

.yearMonthDiv > p { 
	padding: 5px; margin: 0px; 
}

.yearMonthDiv > p { overflow: hidden; }
.yearMonthDiv > p:first-child { 
	float: right;
}
.yearMonthDiv > p:last-child { 
	float: left;
}


.yearMonthDiv > P > span {
	/* border: 2px solid #000; */
	color: #000;
	background-color: #fff;
	display: inline-block;
	padding: 5px; margin: 1px; 
}

.yearMonthDiv > p > span:first-child ,  
.yearMonthDiv > p > span:last-child { 
	color: #00f;
	background-color: #fff;
	font-weight: bold;
}

.headerDaysOfWeek {
	box-sizing: border-box;
	overflow: hidden;
	background-color: #222; color: #fff;
	
}
.headerDaysOfWeek > div {
	box-sizing: border-box;
	float: left;
	/* 100 / 7 = 14.2857 */
	width: 14.28%; 
	padding: 5px;
	text-align: center;
}

.daysOfMonth   {
	background-color: #eee;
	box-sizing: border-box;
	overflow: hidden;
}
.daysOfMonth > div {
	border: 1px solid #ddd;
	box-sizing: border-box;
	float: left;
	/* 100 / 7 = 14.2857 */
	width: 14.28%; 
}
.daysOfMonth > div > p {
	margin: 0;
}
.today { color: #090; font-weight: bold; }
.filler { opacity: 0.5 }

.monthGOleft ,
.monthGOright ,
.yearGOleft ,
.yearGOright {
	cursor: pointer;
}

.calendar_container {} /* used in js */


#calendar_first ,
#calendar_second  {
	width: 270px;
	padding: 5px;
	box-sizing:border-box;
	margin: auto;
	text-align: center;
}
@media ( min-width: 520px ) {
	#calendar_first ,
	#calendar_second  {
		float: left;
		width: 50%;
	}
}
@media ( min-width: 1040px ) {
	#calendar_first ,
	#calendar_second  {
		width: 25%;
	}
}

#calendar_third {
	padding: 5px;
	text-align: right;
}

#calendar_third .daysOfMonth > div {
	padding: 7px 7px 50px 20px;
}

