table.em-calendar {
 }
table.fullcalendar td{ width:14.28%; }
table.em-calendar ul { list-style:none;}

#header > h2.page-title {
  display: none;
}

.entry table {
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px solid #ddd;
	margin: 1em 0;
	text-align: left;
	width: 90%;
}
table.em-calendar td.eventful>a,
table.em-calendar td.eventful-today>a,
table.em-calendar td.eventful-post>a
 {
    font-size: 600%;
    opacity: 0.2;
    float: left;
    color: grey;
    margin: 18px -14px 2px -3px;
    pointer-events: none;
    cursor: default;
    height: 0;
}
table.em-calendar ul {
  margin: 0;
  clear: both;
}

/* Tooltip container */
.wilevent {
    position: relative;
}

/* Tooltip text */
.wilevent > .tooltiptext {
    visibility: hidden;
    width: 440px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 6px;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 1s;
}

/* Tooltip arrow */
.wilevent .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.wilevent:hover > .tooltiptext {
    visibility: visible;
    opacity: 1;
}
