@CHARSET "UTF-8";
/* overlay.css -- css for the jquery-tools overlay */

/* the overlayed element */
.clean_overlay {
/* initially overlay is hidden */
display:none;
/* growing background image */
background-image:url(http://static.flowplayer.org/img/overlay/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 */
.clean_overlay div.close {
background-image:url(http://static.flowplayer.org/img/overlay/close.png);
position:absolute; right:5px; top:5px;
cursor:pointer;
height:35px;
width:35px;
}

/* use a semi-transparent image for the overlay */
#overlay {
/*background-image:url(http://static.flowplayer.org/img/overlay/transparent.png);*/
color:#efefef;
height:450px;
}

/* container for external content. uses vertical scrollbar, if needed */
.contentWrap {
height:498px;
overflow-y:auto;
}

/* TEXT styles */
div#terms h2 {
color: #0066CB;
font-size: 1.4em;
}
div#terms p {
color: #999999;
font-size: 1.2em;
line-height: 1.1em;
margin-top: 0;
text-align: justify;
width: 600px;
}
div#terms ol.terms-list,
div#terms ol.terms-list ol.terms-list,
div#terms ul.terms-list,
div#terms ul.terms-list ul.terms-list {
margin-left: 0;
padding-left: 0;
margin-bottom: 4px;
text-indent: 0;
width:580px;
font-size: 1.2em;
font-weight: normal;
text-align: justify;
}
div#terms ol.terms-list li,
div#terms ol.terms-list li ol.terms-list li,
div#terms ul.terms-list li,
div#terms ul.terms-list li ul.terms-list li { 
color: #999999;
padding-left: 0;
padding-bottom:10px;
line-height: 16px;
}

div#terms ol.terms-list ol.terms-list,
div#terms ul.terms-list ul.terms-list {
font-size: 1.0em;
width: 520px;
}

/* apply outline-numbering style */
div#terms ol.terms-list { 
counter-reset: section;
list-style-type: none;
}
div#terms ol.terms-list li { counter-increment: section; }
div#terms ol.terms-list li:before { content: counters(section, ".") ". ";  color: #0066cc; }

/* format list links */
div#terms ol.terms-list li a,
div#terms ol.terms-list li a:link,
div#terms ol.terms-list li a:visited ,
div#terms ul.terms-list li a,
div#terms ul.terms-list li a:link,
div#terms ul.terms-list li a:visited {
text-decoration: none;
}
div#terms ol.terms-list li a:hover,
div#terms ul.terms-list li a:hover {
text-decoration: underline;
}
div#terms ol.terms-list li span.leadin,
div#terms ul.terms-list li span.leadin {
font-weight: bold;
}
