/*!
 * FullCalendar v1.6.4 Stylesheet
 * Docs & License: http://arshaw.com/fullcalendar/
 * (c) 2013 Adam Shaw
 */

#calendar {
    background-color: #fff;
    padding: 10px;
    box-shadow: 5px 5px #ddd;
}

.fc {
    direction: ltr !important;
    text-align: left !important;
}

.fc table {
    border-collapse: collapse !important;
    border-spacing: 0 !important;
}

html .fc, .fc table {
    font-size: 1em !important;
    font-family: "Helvetica Neue",Helvetica !important;

}
.fc td,
.fc th {
    padding: 0 !important;
    vertical-align: top !important;
}



/* Header
------------------------------------------------------------------------*/

.fc-header td {
    white-space: nowrap !important;
    padding: 15px 10px 0px !important;
}

.fc-header-left {
    width: 25% !important;
    text-align: left !important;
}

.fc-header-center {
    text-align: center !important;
}

.fc-header-right {
    width: 25% !important;
    text-align: right !important;
}

.fc-header-title {
    display: inline-block !important;
    vertical-align: top !important;
    margin-top: -5px !important;
}

.fc-header-title h2 {
    margin-top: 0 !important;
    white-space: nowrap !important;
    font-size: 32px !important;
    font-weight: 100 !important;
    margin-bottom: 10px !important;
}

.fc .fc-header-space {
    padding-left: 10px !important;
}

.fc-header .fc-button {
    margin-bottom: 1em !important;
    vertical-align: top !important;
}

/* buttons edges butting together */

.fc-header .fc-button {
    margin-right: -1px !important;
}

.fc-header .fc-corner-right,  /* non-theme */
.fc-header .ui-corner-right { /* theme */
    margin-right: 0 !important; /* back to normal */
}

/* button layering (for border precedence) */

.fc-header .fc-state-hover,
.fc-header .ui-state-hover {
    z-index: 2 !important;
}

.fc-header .fc-state-down {
    z-index: 3 !important;
}

.fc-header .fc-state-active,
.fc-header .ui-state-active {
    z-index: 4 !important;
}



/* Content
------------------------------------------------------------------------*/

.fc-content {
    clear: both !important;
    zoom: 1 !important; /* for IE7, gives accurate coordinates for [un]freezeContentHeight */
}

.fc-view {
    width: 100% !important;
    overflow: hidden !important;
}



/* Cell Styles
------------------------------------------------------------------------*/

/* <th>, usually */
.fc-widget-content {  /* <td>, usually */
    border: 1px solid #e5e5e5 !important;
}
.fc-widget-header{
    border-bottom: 1px solid #EEE !important;
    color: #097fab;
}
.fc-state-highlight { /* <td> today cell */ /* TODO: add .fc-today to <th> */
    /* background: #fcf8e3 !important; */
}

.fc-state-highlight > div > div.fc-day-number{
    background-color: #00aeef !important;
    color: #FFFFFF !important;
    border-radius: 50% !important;
    margin: 4px !important;
}

.fc-cell-overlay { /* semi-transparent rectangle while dragging */
    background: #bce8f1 !important;
    opacity: .3 !important;
    filter: alpha(opacity=30) !important; /* for IE */
}



/* Buttons
------------------------------------------------------------------------*/

.fc-button {
    position: relative !important;
    display: inline-block !important;
    padding: 0 .6em !important;
    overflow: hidden !important;
    height: 1.9em !important;
    line-height: 1.9em !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
}

.fc-state-default { /* non-theme */
    border: 1px solid !important;
}

.fc-state-default.fc-corner-left { /* non-theme */
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
}

.fc-state-default.fc-corner-right { /* non-theme */
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
}

/*
	Our default prev/next buttons use HTML entities like &lsaquo !important; &rsaquo !important; &laquo !important; &raquo !important;
	and we'll try to make them look good cross-browser.
*/

.fc-text-arrow {
    margin: 0 .4em !important;
    font-size: 2em !important;
    line-height: 23px !important;
    vertical-align: baseline !important; /* for IE7 */
}

.fc-button-prev .fc-text-arrow,
.fc-button-next .fc-text-arrow { /* for &lsaquo !important; &rsaquo !important; */
    font-weight: bold !important;
}

/* icon (for jquery ui) */

.fc-button .fc-icon-wrap {
    position: relative !important;
    float: left !important;
    top: 50% !important;
}

.fc-button .ui-icon {
    position: relative !important;
    float: left !important;
    margin-top: -50% !important;
    *margin-top: 0 !important;
    *top: -50% !important;
}


.fc-state-default {
    border-color: #00aeef !important;
    color: #00aeef !important;
}
.fc-button-month.fc-state-default, .fc-button-agendaWeek.fc-state-default, .fc-button-agendaDay.fc-state-default{
    min-width: 67px !important;
    text-align: center !important;
    transition: all 0.2s !important;
    -webkit-transition: all 0.2s !important;
}
.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
    color: #333333 !important;
    background-color: #FFE3E3 !important;
}

.fc-state-hover {
    color: #00aeef !important;
    text-decoration: none !important;
    background-position: 0 -15px !important;
    -webkit-transition: background-position 0.1s linear !important;
    -moz-transition: background-position 0.1s linear !important;
    -o-transition: background-position 0.1s linear !important;
    transition: background-position 0.1s linear !important;
}

.fc-state-down,
.fc-state-active {
    background-color: #00aeef !important;
    background-image: none !important;
    outline: 0 !important;
    color: #FFFFFF !important;
}

.fc-state-disabled {
    cursor: default !important;
    background-image: none !important;
    background-color: #00aff0 !important;
    filter: alpha(opacity=65) !important;
    box-shadow: none !important;
    border: 1px solid #00aff0 !important;
    color: #ffffff !important;
}



/* Global Event Styles
------------------------------------------------------------------------*/

.fc-event-container > * {
    z-index: 8 !important;
}

.fc-event-container > .ui-draggable-dragging,
.fc-event-container > .ui-resizable-resizing {
    z-index: 9 !important;
}

.fc-event {
    border: 1px solid #FFF !important; /* default BORDER color */
    background-color: #00aeef !important; /* default BACKGROUND color */
    color: #ffffff !important;               /* default TEXT color */
    font-size: 12px !important;
    cursor: default !important;
    padding: 2px;
}
.fc-event.chill{
    background-color: #f3dcf8 !important;
}
.fc-event.info{
    background-color: #c6ebfe !important;
}
.fc-event.important{
    background-color: #FFBEBE !important;
}
.fc-event.success{
    background-color: #BEFFBF !important;
}
.fc-event:hover{
    opacity: 0.7 !important;
}
a.fc-event {
    text-decoration: none !important;
}

a.fc-event,
.fc-event-draggable {
    cursor: pointer !important;
}

.fc-rtl .fc-event {
    text-align: right !important;
}

.fc-event-inner {
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    line-height: 15px !important;
}

.fc-event-time,
.fc-event-title {
    padding: 0 1px !important;
}

.fc .ui-resizable-handle {
    display: block !important;
    position: absolute !important;
    z-index: 99999 !important;
    overflow: hidden !important; /* hacky spaces (IE6/7) */
    font-size: 300% !important;  /* */
    line-height: 50% !important; /* */
}



/* Horizontal Events
------------------------------------------------------------------------*/

.fc-event-hori {
    border-width: 1px 0 !important;
    margin-bottom: 1px !important;
}

.fc-ltr .fc-event-hori.fc-event-start,
.fc-rtl .fc-event-hori.fc-event-end {
    border-left-width: 1px !important;
    /*
border-top-left-radius: 3px !important;
    border-bottom-left-radius: 3px !important;
*/
}

.fc-ltr .fc-event-hori.fc-event-end,
.fc-rtl .fc-event-hori.fc-event-start {
    border-right-width: 1px !important;
    /*
border-top-right-radius: 3px !important;
    border-bottom-right-radius: 3px !important;
*/
}

/* resizable */

.fc-event-hori .ui-resizable-e {
    top: 0           !important; /* importants override pre jquery ui 1.7 styles */
    right: -3px      !important;
    width: 7px       !important;
    height: 100%     !important;
    cursor: e-resize !important;
}

.fc-event-hori .ui-resizable-w {
    top: 0           !important;
    left: -3px       !important;
    width: 7px       !important;
    height: 100%     !important;
    cursor: w-resize !important;
}

.fc-event-hori .ui-resizable-handle {
    _padding-bottom: 14px !important; /* IE6 had 0 height */
}



/* Reusable Separate-border Table
------------------------------------------------------------*/

table.fc-border-separate {
    border-collapse: separate !important;
}

.fc-border-separate th,
.fc-border-separate td {
    border-width: 1px 0 0 1px !important;
}

.fc-border-separate th.fc-last,
.fc-border-separate td.fc-last {
    border-right-width: 1px !important;
}


.fc-border-separate tr.fc-last td {

}
.fc-border-separate .fc-week .fc-first{
    border-left: 0 !important;
}
.fc-border-separate .fc-week .fc-last{
    border-right: 0 !important;
}
.fc-border-separate tr.fc-last th{
    border-bottom-width: 1px !important;
    border-color: #cdcdcd !important;
    font-size: 16px !important;
    font-weight: 300 !important;
    line-height: 30px !important;
}
.fc-border-separate tbody tr.fc-first td,
.fc-border-separate tbody tr.fc-first th {
    border-top-width: 0 !important;
}



/* Month View, Basic Week View, Basic Day View
------------------------------------------------------------------------*/

.fc-grid th {
    text-align: center !important;
}

.fc .fc-week-number {
    width: 22px !important;
    text-align: center !important;
}

.fc .fc-week-number div {
    padding: 0 2px !important;
}

.fc-grid .fc-day-number {
    float: right !important;
    padding: 0 2px !important;
}

.fc-grid .fc-other-month .fc-day-number {
    opacity: 0.3 !important;
    filter: alpha(opacity=30) !important; /* for IE */
    /* opacity with small font can sometimes look too faded
       might want to set the 'color' property instead
       making day-numbers bold also fixes the problem */
}

.fc-grid .fc-day-content {
    clear: both !important;
    padding: 2px 2px 1px !important; /* distance between events and day edges */
}

/* event styles */

.fc-grid .fc-event-time {
    font-weight: bold !important;
}

/* right-to-left */

.fc-rtl .fc-grid .fc-day-number {
    float: left !important;
}

.fc-rtl .fc-grid .fc-event-time {
    float: right !important;
}



/* Agenda Week View, Agenda Day View
------------------------------------------------------------------------*/

.fc-agenda table {
    border-collapse: separate !important;
}

.fc-agenda-days th {
    text-align: center !important;
}

.fc-agenda .fc-agenda-axis {
    width: 50px !important;
    padding: 0 4px !important;
    vertical-align: middle !important;
    text-align: right !important;
    white-space: nowrap !important;
    font-weight: normal !important;
}

.fc-agenda .fc-week-number {
    font-weight: bold !important;
}

.fc-agenda .fc-day-content {
    padding: 2px 2px 1px !important;
}

/* make axis border take precedence */

.fc-agenda-days .fc-agenda-axis {
    border-right-width: 1px !important;
}

.fc-agenda-days .fc-col0 {
    border-left-width: 0 !important;
}

/* all-day area */

.fc-agenda-allday th {
    border-width: 0 1px !important;
}

.fc-agenda-allday .fc-day-content {
    min-height: 34px !important; /* TODO: doesnt work well in quirksmode */
    _height: 34px !important;
}

/* divider (between all-day and slots) */

.fc-agenda-divider-inner {
    height: 2px !important;
    overflow: hidden !important;
}

.fc-widget-header .fc-agenda-divider-inner {
    background: #eee !important;
}

/* slot rows */

.fc-agenda-slots th {
    border-width: 1px 1px 0 !important;
}

.fc-agenda-slots td {
    border-width: 1px 0 0 !important;
    background: none !important;
}

.fc-agenda-slots td div {
    height: 20px !important;
}

.fc-agenda-slots tr.fc-slot0 th,
.fc-agenda-slots tr.fc-slot0 td {
    border-top-width: 0 !important;
}

.fc-agenda-slots tr.fc-minor th.ui-widget-header {
    *border-top-style: solid !important; /* doesn't work with background in IE6/7 */
}



/* Vertical Events
------------------------------------------------------------------------*/

.fc-event-vert {
    border-width: 0 1px !important;
}

.fc-event-vert.fc-event-start {
    border-top-width: 1px !important;
    border-top-left-radius: 3px !important;
    border-top-right-radius: 3px !important;
}

.fc-event-vert.fc-event-end {
    border-bottom-width: 1px !important;
    border-bottom-left-radius: 3px !important;
    border-bottom-right-radius: 3px !important;
}

.fc-event-vert .fc-event-time {
    white-space: nowrap !important;
    font-size: 10px !important;
}

.fc-event-vert .fc-event-inner {
    position: relative !important;
    z-index: 2 !important;
}

.fc-event-vert .fc-event-bg { /* makes the event lighter w/ a semi-transparent overlay  */
    position: absolute !important;
    z-index: 1 !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #fff !important;
    opacity: .25 !important;
    filter: alpha(opacity=25) !important;
}

.fc .ui-draggable-dragging .fc-event-bg, /* TODO: something nicer like .fc-opacity */
.fc-select-helper .fc-event-bg {
    display: none\9 !important; /* for IE6/7/8. nested opacity filters while dragging don't work */
}

/* resizable */

.fc-event-vert .ui-resizable-s {
    bottom: 0        !important; /* importants override pre jquery ui 1.7 styles */
    width: 100%      !important;
    height: 8px      !important;
    overflow: hidden !important;
    line-height: 8px !important;
    font-size: 11px  !important;
    font-family: monospace !important;
    text-align: center !important;
    cursor: s-resize !important;
}

.fc-agenda .ui-resizable-resizing { /* TODO: better selector */
    _overflow: hidden !important;
}

thead tr.fc-first{
    background-color: #f7f7f7 !important;
}
table.fc-header{
    background-color: #FFFFFF !important;
    border-radius: 6px 6px 0 0 !important;
}

.fc-week .fc-day > div .fc-day-number{
    font-size: 15px !important;
    margin: 2px !important;
    min-width: 19px !important;
    padding: 6px !important;
    text-align: center !important;
}
.fc-sun, .fc-sat{
    color: #58cbf5 !important;
}

.fc-week .fc-day:hover .fc-day-number{
    background-color: #B8B8B8 !important;
    border-radius: 50% !important;
    color: #FFFFFF !important;
    transition: background-color 0.2s !important;
}
.fc-week .fc-day.fc-state-highlight:hover .fc-day-number{
    background-color:  #00aeef !important;
}
.fc-button-today{
    border: 1px solid rgba(255,255,255,.0) !important;
}
.fc-view-agendaDay thead tr.fc-first .fc-widget-header{
    text-align: right !important;
    padding-right: 10px !important;
}

.fc-toolbar > .fc-left > h2 {
    margin: 0;
    font-family: inherit;
    font-size: 27px;
    text-shadow: none;
    line-height: normal;
}

.fc-event-dot {
    margin-top: 50%;
}

.fc-list-item > td {
    padding: 7px !important;}
