/*
* General calendar css
*/
div.datenav {
  text-align: center;
  font-size: 130%;
  font-weight: bold;
}
/**
* Div tag for Category select menu
**/
  #c_search_category {
    display: inline;
    font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #000000;

	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 3px;
  }

/**
* Div tag for Date select menus
*/
  #c_date_select {
    display: inline;
  }


/* Area where the different view are in the View Bar */
  #c_views {
    float: left;
    margin-top: 2px;
    width: 300px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #000000;
    font-weight: bold;
  }

  #c_views a {
    margin-left: 5px;
    /*color: #4169E1;*/
    color: #FFFFFF;
  }

/******** TEXT FORMATING **********/

/* Header text */
  .c_text_header {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #000000;
    font-weight: bold;
  }

/**
* Full sized calendar formating
*/

/* Calendar Date */
  .fullday_number {
    border: 1px solid #C4C0FA;
    background-color: #e0defc;
    font-weight: bold;
  }

/* Grid calendar view events */
  .event {

  }

/* Grid calendar view event time */
  .event_time {
    font-weight: bold;
  }


/* Table cells for calendar days */
  .full_day {
    height: 100px;
    color: #000000;
    margin: 1px;
    background-color: #FFFFFF;
    text-align: left;
    width: 14%;
  }
  .full_day a {
    display: block;
    margin: 0 0 0.8em 0;
  }
/* Table cells for empty calendar days */
  .full_day_empty {
    height: 100px;
    margin: 1px;
    background-color: #e0defc;
    width: 14%;
  }

/* Grid calendar weekdays */
  .full_day_name {
    color: #000000;
    font-weight: bold;
    margin: 1px;
    background-color: #FFFFFF;
    text-align: left;
    width: 14%;
  }

/* Holding table for grid calendar */
  .full_table {
    margin-top: 20px;
    width: 98%;
    border: 1px solid #C4C0FA;
    background-color: #e0defc;
  }
  .full_table td {
    vertical-align: top;
  }

/* Calendar Header */
  .full_header {
    display: block;
    margin: 12px 0px 5px 0;
    text-align: center;
    font: bold 16px Arial, Helvetica, sans-serif;
  }


  .full_header a {
    margin: 0px 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #000000;
    font-weight: bold;
    text-decoration: none;
  }

/* Calendar Header Current Month */
  .full_current_month {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    color: #000000;
    font-weight: bold;
  }

/** Header **/
  #header_layout {
    border: 1px solid #FFFFFF;
  }

  #header_clear {
    clear: both;
  }



/** Fix for clearing floats. Makes sure that the surrounding div tag will expand vertically for floats
    that overflow.  Provided by Position is Everything http://www.positioniseverything.net/easyclearing.html */
  .clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }

  .clearfix {display: inline-table;}

  /* Hides from IE-mac \*/
  * html .clearfix {height: 1%;}
  .clearfix {display: block;}
  /* End hide from IE-mac */

/** End of fix for clearing floats **/