.eventbox {
	position: absolute;
	padding: 0px;
	left: 724px;
	top: 0;
	height: 187px;
	width: 193px;
}

/*
	.eventboxContainer {
		position: relative;
		width: 274px;
		height: 259px;
		padding: 0;
		margin: 0 auto;
		background: url(/images/layouts/eb_bg.png) no-repeat;
	}
*/

		.eventboxWindow {
			position: absolute;		/* keeping this ensures positioning doesn't get jacked up */
			z-index: 10;			/* keep this: it sets the position */
			overflow: hidden;		/* highly recommend that the overflow is hidden to prevent image bleeding on the website */
			width: 173px; 			/* must set the width of the image window here */
			height: 146px;			/* must set the height of the image window here */

			/* style below however you want */
			left: 12px;
			top: 5px;
		}
	
			.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;		/* keeping this absolute to make it easier to position within the eventbox */
			z-index: 35;			/* keep this: it sets the position */

			/* style below however you want */
			left: 12px;
			top: 154px;

			padding: 0px;
			margin: 0;
			list-style-type: none;
		}

			/* style below however you want */
			.eventboxNavigation li {
				width: 14px;
				height: 14px;
				line-height: 14px;		/* used for vertical centering; set as the same as the 'height' */
				text-align: center;
	
				margin: 0px 2px 0 0;
				padding: 0px;
				font-size: 9px;
				font-family: Verdana,Geneva,Arial,sans-serif;
				color:#fff;
				display: block;
				float: left;
				font-weight: bold;
				background-color: #2c292d;
			}
	
			/* style below however you want */
			.eventboxNavigation li.on {
				background-color: #b00000;
			}
	
	
		.eventboxDescriptions {
			position: absolute;		/* keeping this absolute to make it easier to position within the eventbox */
			z-index: 25;			/* keep this: it sets the position */
			overflow: hidden;		/* highly recommend that the overflow is hidden to prevent image bleeding on the website */

			/* style below however you want */
			width: 172px;
			height: 16px;

			top: 170px;
			left: 12px;

		}
	
			/* style below however you want */
			.eventboxDescriptions div {
				position: relative;		/* keep this relative to make it easier to position within the eventbox */
				height: 100%;			/* keep this as it ensures there is not a flicker on the text */

				padding: 0;
				color:#000000;
				font-size: 11px;
				text-align: left;
				font-family: Arial,Helvetica,sans-serif;
			}

        .eventboxAnchor {
            position: absolute;
            width: 195px;
			height: 178px;
            top: 0;
            left: 0;
            z-index: 30;
        }
    
        .eventboxOverlay {
            display: none;
        }