/**
* THQ-CONNECT CALENDAR STYLE
* v2.1.17
*/

/* Calendar-Wrap */
div#thq-connect-calendar-wrap {
	margin: 0px auto;
	width: 100%;
	font-size: 1em;
	line-height: 1.33;
	font-weight: 400;
	color: #485a6a;
	/*font-family:'Open Sans', Helvetica, Sans-serif;*/
}

/* Title showing Month & Year */
div#thq-connect-calendar-wrap .calendar-title {
	position: relative;
	text-align: center;
}

div#thq-connect-calendar-wrap .calendar-title h2 {
    margin-top: 3px;
    font-size: 1.5em;
}

/* Left Nav showing link to Previous Month */
#thq-connect-calendar-wrap .calendar-left-nav {
	position: absolute;
	bottom: 0;
	left: 0;	
}
/* Right Nav showing link to Next Month */
#thq-connect-calendar-wrap .calendar-right-nav {
	position: absolute;
	bottom: 0;
	right: 0;
}

/* Nav links */
#thq-connect-calendar-wrap .calendar-nav a {
	top: -65px;
	color: #666;
	text-transform: uppercase;
	font-size: 12px;
	padding-bottom: 35px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	text-shadow: none;
	border: 0;
	height: 35px;
	padding: 6px 8px 7px 8px;
	margin-left: 2px;
	border-top-style: none;
	border-bottom-style: none;
	border-right-style: solid;
	border-left-style: solid;
	background: transparent;
	outline: none !important;
	font-family: "Courier New", Courier, monospace;
}

/* Whole Table */
table#thq-connect-calendar-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1em;
}

#thq-connect-calendar-table thead th, #thq-connect-calendar-table tbody td, #thq-connect-calendar-table tbody tr {
	border-color: #ddd;
	text-align: center;
}

#thq-connect-calendar-table thead th, #thq-connect-calendar-table tbody td {
    border-style: solid;
    border-width: 1px;
    padding: 0;
    vertical-align: top;
}

/* Header Row showing day labels */
#thq-connect-calendar-table thead th {
    background-image: none;
    filter: none;
    background-color: #eee;
    text-transform: uppercase;
    font-weight: 300;
}

/* Week rows */
#thq-connect-calendar-table tbody tr {
    border-style: solid;
    border-width: 0;
    height: 65px;
}


/* Day cells */
#thq-connect-calendar-table tbody td {
	text-align: right;
	padding-top: 2px;
	padding-bottom: 2px;

}
/* Today */
#thq-connect-calendar-table tbody td.active {
	background-color: #fcf8e3;
}
/* Prev Month/Next Month cells */
#thq-connect-calendar-table tbody td.inactive {
	color: #ddd;
}

/* Event/Task/Meeting/Session items */
a.calendar-event {
	border: 0px;
	color: #fff;
	display: block;
	width: 100%;
	font-size: 13px;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	z-index: 2;
}
/* Item Time */
a.calendar-event .calender-event-time {
    float: left;
    text-align: left;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    padding-right: 7px;
}
/* Item Title */
a.calendar-event .calender-event-title {
    text-align: left;
    float: left;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
}
/* Calendar Legend Box */
#thq-connect-calendar-legend {
	text-align: center;
}
/* Legend Box items */
#thq-connect-calendar-legend span {
	display: inline-block !important;
	padding: 4px !important;
	color: #fff !important;
}
/* Legend Box first item */
#thq-connect-calendar-legend span:first-child {
	border-top-left-radius: 4px !important;
	border-bottom-left-radius: 4px !important;
}
/* Legend Box last item */
#thq-connect-calendar-legend span:last-child {
	border-top-right-radius: 4px !important;
	border-bottom-right-radius: 4px !important;
}
