@charset "utf-8";
/* CSS Document */
/* the overlayed element */ 
.apple_overlay { 
     
    /* initially overlay is hidden */ 
    display:none; 
     
    /* growing background image */ 
    background-image:url(../images/menu_content_bg.jpg); 
     
    /*  
        width after the growing animation finishes 
        height is automatically calculated 
    */ 
    width:740px;   
	height:475px;
	overflow:auto;
    text-align:left;
    /* 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 div.close {
	background-image:url(../images/close.png);
	position:absolute;
	right:5px;
	top:5px;
	cursor:pointer;
	height:42px;
	width:71px;
}
div.apple_overlay.black {
	background-image:url(http://static.flowplayer.org/tools/img/overlay/transparent.png);		
	color:#fff;
}
 
div.apple_overlay h2 {
	font-weight:bold;
	font-size:16px;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 3px;
	margin-left: 0;
	color: #900;
}
 
div.black h2 {
	color:#fff;
}
 
#triggers {
	margin-top:0px;
	text-align:center;
}
 
#triggers img {
	padding:2px;
	margin:2px 5px;
	cursor:pointer;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}
#divContentBG {
	background-image: url(../images/bg_menu.png) !important;
	background-repeat: no-repeat;
	height: 743px;
	width: 1000px;
}
#subContentMenu {
	background-image: url(../images/menu_content_bg.jpg);
	background-repeat: no-repeat;
	height: 457px;
	width: 703px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 25px;
	text-align: center;
	padding-top: 20px;
}

