/**
 * style.css
 *
 * @author Martin Ludvik <matolud@gmail.com>
 * @copyright Copyright &copy; 2013 by Martin Ludvik
 * @license http://opensource.org/licenses/MIT MIT license
 */

table.e-calendar-view {
    table-layout:fixed;    
}

table.e-calendar-view thead th{
  padding: 4px 5px;
  text-align: center;
}

table.e-calendar-view tbody td {
  padding: 1px 1px;
  text-align: center;
  min-height: 200px;
  overflow:hidden;
  border: 1px solid black;
  vertical-align: top;
}

table.e-calendar-view td.current {
  font-weight: bold;
  color: red;
}

table.e-calendar-view td.not-relevant {
  color: rgb(151, 151, 151);
}

table.e-calendar-view td.relevant {
  color: rgb(0, 0, 0);
}

.calendar-day{
	background-color:rgb(210,210,210);
}

.calendar-cell-row{
	padding: 5px 3px;
	font-size:11px;
	text-align:left;
	background-color:rgb(230,230,230);
}

.calendar-cell-empty-row{
	padding: 5px 3px;
	height:50px;
}