.wvcbox {
	position: relative;
	padding: 0px;
}

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

		.wvcboxWindow {
			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: 212px; 			/* must set the width of the image window here */
			height: 123px;			/* must set the height of the image window here */

			/* style below however you want */
			left: 32px;
			top: 31px;
		}
	
			.wvcboxWindow div { /* do not style the individual divs in the imageWindow */ }
			.wvcboxWindow div img { /* do not style the individual images in the imageWindow */ }
	

		.wvcboxNavigation {
			position: absolute;		/* keeping this absolute to make it easier to position within the eventbox */
			z-index: 30;			/* keep this: it sets the position */

			/* style below however you want */
			left: 31px;
			top: 164px;

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

			/* style below however you want */
			.wvcboxNavigation li {
				width: 17px;
				height: 17px;
				line-height: 17px;		/* used for vertical centering; set as the same as the 'height' */
				text-align: center;
	
				margin: 0px 2px 0 0;
				padding: 0px;
				font-size: 12px;
				font-family: Verdana,Geneva,Arial,sans-serif;
				color:#000;
				display: block;
				float: left;
				font-weight: bold;
				background-color: #696969;
			}
	
			/* style below however you want */
			.wvcboxNavigation li.on {
				background-color: #95be74;
			}
	
	
		.wvcboxDescriptions {
			position: absolute;		/* keeping this absolute to make it easier to position within the eventbox */
			z-index: 20;			/* 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: 215px;
			height: 50px;

			top: 190px;
			left: 30px;

		}
	
			/* style below however you want */
			.wvcboxDescriptions 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:#95be74;
				font-size: 11px;
				text-align: left;
				font-family: Arial,Helvetica,sans-serif;
			}
