/*
* Flowplayer Styles
* The following classes control the rendering of the video player widget
* Chris Whatley - 20th April 2010
*/

/* each video player instance is wrapped in this class */
div.myPlayer {
	font-family:"Lucida Grande","bitstream vera sans","trebuchet ms",verdana,arial;
	display:block;
	width: 320px;
	height:240px; 
	text-align:center;
	margin:0 15px 15px 0;
	cursor: pointer;
}

/* play button */
div.myPlayer img {
	margin-top:70px;
	border: 0px;
}

/* the text across the bottom of the video 'poster' - NB not all video must/will have a caption */
div.caption {
	height:42px;
	background-color: rgba(0, 0, 0, 0.6);
	color: #fff;
	text-align:left;
	padding:4px 15px;	
	font-family: bold 12px/150% "bitstream vera sans","trebuchet ms";
	border-top:2px solid #ccc;
	margin-top:36px;
}

/* a header for the caption, renders in a bright orange */
div.caption span {
	display: block;
	font-weight: bold;
	color: #FF6B26;
	margin-top: 6px;
}
