<?php 
 
require_once("config.php");
 
header("Content-Type: text/css"); 
 
?>
 
.banner{
 
    background-color:<?php echo BACKGROUND_COLOR; ?>;
 
    color:<?php echo FONT_COLOR; ?>;
 
    font-family:<?php echo FONT_FAMILY; ?>;
 
    font-size:<?php echo FONT_SIZE; ?>;
 
    border: thin solid <?php echo BORDER_COLOR; ?>;
 
    position:relative;    
 
    top:0px;
 
    height:75px;
 
}
 
#bannerbody{
 
    width:600px;
 
    height:75px;
 
    position:absolute;
 
    top:0px;
 
    left:0px;
 
    overflow:hidden;
 
    visibility:hidden;
 
}
 
 |