#calendar_container {
	width: 96%;
	display: block;
	padding: 2%;
	background: #fff;
}
#calendar_wrapper {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	overflow: hidden;
	padding: 10px 0;
	padding-top: 40px;
}
.title_bar {
	width: 100%;
	min-height: 60px;
	padding-bottom: 20px;
	position: relative;
}
	.title_bar h2{
		margin-top: 20px;
	}
	.title_bar h4 {
		margin-top: 0;
		margin-bottom: 0;
	}
.previous_month {
	position: absolute;
	left: 0;
	top: 0;
	width: 140px;
	text-align: left;
}
.next_month {
	position: absolute;
	right: 0;
	top: 0;
	width: 140px;
	text-align: right;
}
.show_month {
	float: left;
	width: 80%;
	padding: 0 10% 10px 10%;
	height: 90px;
	height: 9vw;
	max-height: 90px;
	text-align: center;
}
.cal_day, .non_cal_day {
	position: relative;
	float: left;
	margin: 2px .13% 2px .13%;
	width: 14%;
	background: #f4f4f4;
	overflow: hidden;
}
	.cal_day:hover {background: #fafafa;}
.events {
	float: left;
	width: 100%;
	height: 100px;
	height: 14vw;	
}
.event {
	width: 91%;
	margin: 0px 2% 2px 2%;
	padding: 5px 0 5px 5%;
	clear: left;
	text-align: left;
	font-size: .8em;
}
.clear{
	clear: both;
}
/* =============================================================================
   MONTH VIEW
   ========================================================================== */
.week_days{
	width: 100%;
}
.days_of_week {
	float: left;
	width: 14.25%;
	text-align: center;
}
.day_of_week_in_cell {
	display: none;
	margin-right: 20px;
	float: left;
	width: 60px;
	border-right: 1px solid #aaa;
}
.non_cal_day {	
	background: transparent;	
}
.day_heading {
	position: relative;
	float: left;
	padding: 10px 0 10px 3%;
	width: 97%;
	height: 26px;
	font-size: 1.25em;	
}
.month_arrow {
	width: 50%;
}
.event_subject{
	font-size: 1.25em;
}
/*----------/////////  MEDIA QUERRIES  /////////-------------*/
@media screen and (max-width: 979px) {	
	.week_days{
		display: none;
	}
	.cal_day, .non_cal_day {
		width: 100%;
	}
	.non_cal_day {
		display: none;
	}
	.events {
		height: auto;	
	}
	.day_of_week_in_cell {
		display: table-cell;
	}
}
@media screen and (max-width: 859px) {	

}
@media screen and (max-width: 767px) {	
	.title_bar h2{
		font-size: 2em;
		margin-top: 12px;
	}
}
@media screen and (max-width: 640px) {
	#calendar_wrapper {
		padding-top: 10px;
	}
	.title_bar {
		padding-bottom: 0px;
	}
		.title_bar h2{
			font-size: 1.75em;
		}
	.previous_month {
		width: 100px;
	}
	.next_month {
		width: 100px;
	}
}
@media screen and (max-width: 479px) {
	.title_bar h2{
		font-size: 1.5em;
	}
}