.events-tab-widget {
    height: 300px;
    padding: 0;
    position: relative;
    width: 100%;
    display: block;
    clear: both;
    margin: 0 0 30px;
}

.events-tab-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.events-tab-widget .loading{
  /*background: url(../img/spinner.gif) no-repeat center;*/
  display:block;
  height:50px;
  margin:0 auto;
  padding:20px 0;
  width:100%;
}

/* tab links */
.events-tab-widget .tabContainer {
  display:block;
}

.events-tab-widget .tab {
    color: #000;
    display: inline-block;
    font-weight:bold;
    font-size: .8em;
    line-height:30px;
    height: 30px;
    text-align: center;
    padding: 0 10px;
    border: 1px solid #ccc;
    border-bottom: none;

    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;

    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

.events-tab-widget .tab:hover{
    background: #5a5a5a;
    color: #fff;
}

.events-tab-widget .tab.active {
	background: #333;
    color: #fff;
    border-color: #333;
}

/* tab content */
.events-tab-widget .tabContentContainer {
  border: 1px solid #ccc;
  height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  width:100%;
}

.events-tab-widget .tabContent {
	display: none;
	margin: 0;
	padding: 0;
}

.events-tab-widget .tabContent.active {
	display: block;
}

/* individual days of events within a tab */
.events-tab-widget .day{
  font-size: .9em;
}

.events-tab-widget .dayTitle{
  background: #F0F0F0;
  color: #373737;
  display: block;
  font-weight:bold;
  font-size:.9em;
  line-height:25px;
  padding: 0 15px;
  text-transform: uppercase;
}

.events-tab-widget .day>ul{
}

.events-tab-widget .day>ul>li{
  padding: 5px;
}

.events-tab-widget .day>ul>li:hover{
    background: #e1e1e1;
}

.events-tab-widget .event .title{
  color: #1d2458;
  display:block;
  font-weight:bold;
  text-transform: uppercase;
}

.events-tab-widget .event .startDate,
.events-tab-widget .event .location{
}

.events-tab-widget .event .description{
  background: #fff;
  -webkit-border-radius: 3px;
  border-radius: 3px;
    border: 1px solid #ccc;
  display: none;
  margin: 28px 0 0 0;
  opacity:0;
  padding: 8px;
  position:absolute;
  transition: opacity .25s ease-in-out;
 -moz-transition: opacity .25s ease-in-out;
 -webkit-transition: opacity .25s ease-in-out;
  width:300px;
}

/* popup description box with arrow */
.events-tab-widget .event .description.active{
  display: block;
  opacity: 1;
  z-index:100;
}

.events-tab-widget .event .description.active:after,
.events-tab-widget .event .description.active:before {
	content: " ";
	height: 0;
	pointer-events: none;
	position: absolute;
	right: 100%;
	width: 0;
}

.events-tab-widget .event .description.active:after {
	border-color: rgba(203, 203, 203, 0);
	border-right-color: #ffffff;
	border-width: 10px;
  top:5px;
}

.events-tab-widget .event .description.active:before {
	border-color: rgba(203, 203, 203, 0);
	border-right-color: #cbcbcb;
	border-width: 12px;
  top:3px;
}
