/** Change the size and colour of the widget title */
.tribe-events-list-widget h2.widget-title {
	color: blue;
	font-size: 30px;
}

/** Make each event standout with a new background and border */
.tribe-events-list-widget li.tribe-events-list-widget-events {
	background: #e5e3d5;
	border: 1px solid #1f7984;
	padding: 10px;
}

/** Make each event title uppercase and underline them */
.tribe-events-list-widget h4.entry-title a {
	text-decoration: underline;
	text-transform: uppercase;
        color: #000;
}

/** Make the event date/time information a little more prominent */
.tribe-events-list-widget div.duration {
	color: #000;
	font-weight: bold;
	transform: rotate( -4deg );
}