.eventbox {
	position: relative;
	padding: 10px;
  }
 
	.eventboxContainer {
		position: relative;
		width: 223px;
		height: 226px;
		margin: 0 auto;
		padding: 0;
	}
 
		.eventboxWindow {
			position: absolute;
			height: 106px;
			width: 188px;
			top: 20px;
			left: 18px;
			overflow: hidden;
		}
 
			.eventboxWindow div { /* do not style the individual divs in the imageWindow */ }
				.eventboxWindow div img { /* do not style the individual images in the imageWindow */ }
 	
 
		.eventboxNavigation {
			position: absolute;
			z-index: 30;
			list-style-type: none;
 
			/* style below however you want */
			top: 130px;
			left: 22px;
			padding: 0px;
			margin: 0px;
		}
 
			/* style below however you want */
			.eventboxNavigation li {
				width: 16px;
				height: 16px;
				line-height: 15px;		/* used for vertical centering; set as the same as the 'height' */
				text-align: center;
				margin-right: 2px;
				padding: 0px;
				border: 1px solid none;
				font-size: 11px;
				font-family: Verdana,Geneva,Arial,Helvetica,sans-serif;
				background-color:  #b0a586;
				color:  #fff;
				float: left;
			}
 	
			/* style below however you want */
			.eventboxNavigation li.on {
				background-color: #46652e;
			}
 	
 	
		.eventboxDescriptions {
			position: absolute;
			overflow: hidden; /* highly recommend that the overflow is hidden to prevent image bleeding on the website */
			z-index: 20; /* keep this: it sets the position */
 
			/* style below however you want */
			width: 182px;
			height: 50px;
			top: 152px;
			left: 22px;
			color: #333;
			font-size: 11px;
			font-family: Verdana,Geneva,Arial,Helvetica,sans-serif;
			text-align: left;
			z-index: 23;
		}
 	
			/* style below however you want */
			.eventboxDescriptions div {
				position: relative;
				height: 100%;		/* keep this as it ensures there is not a flicker on the text */
				padding: 0; 
				margin: 0 auto; 
			}
 	
		.eventboxAnchor {
			position: absolute;
			width: 223px;
			height: 226px;
			top: 0;
			left: 0;
			z-index: 25;
		}
 	
		.eventboxOverlay {
			position: absolute;
			width: 223px;
			height: 226px;
			top: 0;
			left: 0;
			background: url('/images/layouts/eb_overlay.png') no-repeat center top;
			z-index: 22;
		}