.specs_overlay {
	
	/* initially overlay is hidden */
	display:none;
	
	/* growing background image */
	background-image:url(/images/specs.png);
	
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	margin:20px;	
	width:1000px;		
	height:426px;	
	
	/* some padding to layout nested elements nicely  */
	padding:35px;

	/* a little styling */	
	font-size:11px;
}

/* default close button positioned on upper right corner */
.specs_overlay .close {
	background-image:url(/images/close.png);
	position:absolute; right:5px; top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
	}
	

.form_overlay {
	
	/* initially overlay is hidden */
	display:none;
	
	/* growing background image */
	background-image:url(/images/white.png);
	
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:485px;		
	
	/* some padding to layout nested elements nicely  */
	padding:5px 25px;

	/* a little styling */	
	font-size:11px;
}

/* default close button positioned on upper right corner */
.form_overlay .close {
	background-image:url(/images/close.png);
	position:absolute; right:5px; top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
	}

.tooltip {
	background-color:#000;
	border:1px solid #fff;
	padding:10px 15px;
	width:200px;
	display:none;
	color:#fff;
	text-align:left;
	font-size:11px;
	z-index:10500;

	/* outline radius for mozilla/firefox only */
	-moz-box-shadow:0 0 10px #000;
	-webkit-box-shadow:0 0 10px #000;
}	

	#myform {
		border:1px outset #ccc;
		background:#fff url(http://static.flowplayer.org/img/global/gradient/h600.png) repeat-x;
		padding:20px;
		margin:20px 0;
		width:445px;
		-moz-border-radius:4px;
	}


	#myform h3 {
		font-size:18px;
		text-align:center;
		margin:0 0 10px 0;
	}
	
	/* http://www.quirksmode.org/css/forms.html */
	#inputs label, #inputs input, #inputs textarea, #inputs select {
		display: block;
		width: 280px;
		float: left;
		margin-bottom: 20px;
	}
	
	#inputs textarea {
		height: 108px;
	}
	
	#inputs label {
		text-align: right;
		width: 75px;
		padding-right: 20px;
	}
	
	#inputs br {
		clear: left;
	}

	

.apple_overlay {
	
	/* initially overlay is hidden */
	display:none;
	
	/* growing background image */
	background-image:url(/images/white.png);
	
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:640px;		
	
	/* some padding to layout nested elements nicely  */
	padding:35px;

	/* a little styling */	
	font-size:11px;
}

/* default close button positioned on upper right corner */
.apple_overlay .close {
	background-image:url(/images/close.png);
	position:absolute; right:5px; top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
	}
	
	/* use a semi-transparent image for the overlay */
	#overlay {
		color:black;
		height:450px;
	}
	
	/* container for external content. uses vertical scrollbar, if needed */
	div.contentWrap {
		height:500px;
		overflow-y:auto;
	}
	
	/* container for slides */
.images {
	background:#fff;
	position:relative;
	height:380px;
	width:762px;
	float:left;	
	cursor:pointer;
	
	/* CSS3 tweaks for modern browsers */
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}

/* single slide */
.images div {
	display:none;
	position:absolute;
	top:0;
	left:0;		
	margin:7px;
	padding:15px 30px 15px 15px;
	height:256px;
	font-size:11px;
}


/* tabs (those little circles below slides) */
.slidetabs {
	clear:both;
	margin-left:auto !important;
	margin-right:auto !important;
	text-align:center !important;
	align:center !important;
}

/* single tab */
.slidetabs a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(/images/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;		
}

/* mouseover state */
.slidetabs a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.slidetabs a.current {
	background-position:0 -16px;     
} 		


/* prev and next buttons */
.backward {
	background:url(/images/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
}
.forward {
	background:url(/images/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
}
.play {
	background:url(/images/controls.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
}
.stop {
	background:url(/images/controls.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
}

/* next */
.forward 				{ background-position: 0 -30px; clear:right; }
.forward:hover 		{ background-position:-30px -30px; }
.forward:active 	 	{ background-position:-60px -30px; } 


/* prev */
.backward:hover  		{ background-position:-30px 0; }
.backward:active  	{ background-position:-60px 0; }

/* stop */
.stop 				{ background-position: 0 -30px; clear:right; }
.stop:hover 		{ background-position:-30px -30px; }
.stop:active 	 	{ background-position:-60px -30px; } 


/* play */
.play:hover  		{ background-position:-30px 0; }
.play:active  	{ background-position:-60px 0; }

/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}

	
	
	
	
	/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background:#333 url(/images/specs.png);

	margin:20px;	
	width:762px;	
	min-height:300px;
	border:1px solid #666;
	
	/* CSS3 styling for latest browsers */
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(/images/close.png);
	position:absolute;
	z-index:10001;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}
