/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#333;
	
	width:900px;	
	min-height:200px;
	border:1px solid #666;
	
	/* CSS3 styling for latest browsers */
	-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(../img/overlay/close.html);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}

/* styling for elements inside overlay */
.details {
  position:absolute;
  top:15px;
  right:15px;
  font-size:11px;
  color:#fff;
  width:150px;
}

.details h3 {
  color:#aba;
  font-size:15px;
  margin:0 0 -10px 0;
}

#nav {
  /*background:#ddd url(http://static.flowplayer.org/img/global/gradient/h300_reverse.png);*/
  border-bottom:1px solid #CCCCCC;
  height:156px;	
  width:898px;
}

#nav ul {	
  width:380px;
  margin:0 auto;	
}

#nav li {	
  border-right:1px solid #ddd;
  float:left;
  padding-left:1px;
  width:175px;
  list-style-type:none;
  text-align:center;
  margin-top:0px;
}

#nav a {
  color:#333333;
  display:block;
  padding:17px;
  position:relative;
  word-spacing:-2px;
  font-size:11px;		
  height:122px;
  text-decoration:none;
}	

#nav a.current {
  background:url(http://static.flowplayer.org/tools/img/tabs/down_large.jpg);	
}

#nav img {
  background-color:#fff;
  border:1px solid #ccc;
  margin:3px 0 5px 27px;
  padding:4px;		
  display:block;
  width: 80px; 
}

#nav strong {
  display:block;		
  font-size:13px;
}

#panes {
  /*background:#fff url(http://static.flowplayer.org/img/global/gradient/h300_reverse.png) repeat scroll 0 0;*/
  border-color:#ccc;
  /*border-style:solid;
  border-width:1px 1px 0;*/
  width:898px;	
  height:255px;
  margin-bottom:-20px;
  padding-bottom:20px;
  
  /* must be relative so the individual panes can be absolutely positioned */
  position:relative;
}

/* crossfading effect needs absolute positioning from the elements */
#panes div {
  display:none;		
  position:absolute;
  top:20px;
  left:20px;
  font-size:13px;
  color:#444;	
  width:898px; 
}

#panes img {
  float:left;
  margin-right:20px;		
}

#panes p.more {
  color:#000;
  font-weight:bold;
  font-size:13px;
}

#panes h3 {
  margin:0 0 -5px 0;
  font-size:22px;
  font-weight:normal;
}

.overlay {
  display:none;
  width:898px;
  padding:20px;
  background-color:#ddd;
}
