

#demo {
 margin: 10px 0 0;
}


/* size the container and each pane inside it */
#demo, #demo .zing-pane {
	height: 333px;
	width: 470px;
	
}

/* caption-credit */
#demo div div.caption-credit {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2000;
	background-color:#000;
	padding: 3px 5px;
}

/* position the nav within the container */
#demo .zing-nav {
	/*
	position: absolute;
	bottom: 3px;
	left: 3px;
	z-index: 2000;
	*/
	display:none;
}


/* a tab (or button) */
.demo-tab {
	/* float: left;
	display: block;
	padding: 5px 10px;
	border: 1px solid black;
	cursor: pointer;
	margin-right: 1px; */
	display: none;
}

/* hover state for the tab */
.demo-tab:hover {
	/* background-color: #fff; */
}

/* current tab hilite */
.demo-tab.current {
	background-color: #ffe;
}

/* current tab hilite a more different way */
.demo-tab.alt-current {
	background-color: #000;
	color: #fff;
}

/* add some space between the groups of buttons, hackishly */
#demo .zing-prev,
#demo .zing-play,
#demo .zing-pause {
	margin-left: 15px;
}

