<?php
    require_once '../../classes/__clientInfo.php';  // required to get client information  
    $theme = isset($_GET['theme'])? $_GET['theme'] : 'magenta';  
    
    switch ($theme) {
        default:
        case 'red' :    $col = "#D25A0B"; break;
        case 'green':   $col = "#008F00"; break;
        case 'blue':    $col = "#728FE0"; break;
        case 'magenta': $col = "#D900B0"; break;
        case 'brown':   $col = "#AB5500"; break;
  
    }  
     
    $greetings = "Setting CSS properties for :";
   
    $nClient = new __clientInfo();
    $ie =  (substr_count($nClient -> browser,'MSIE')) ? true : false;  
    
    $tBrowser = $nClient -> browser;      
   
    ob_start();    // to help facilitate sending gz-encoded data to web browsers 
   
    header("Content-type: text/css; charset: utf-8");
    $_exp = "Expires: " .  gmdate("D, d M Y H:i:s", time() + 3600) . " GMT";
    header($_exp);
  
    header("Cache-Control: no-cache");                                   


?>
 /*---------- <?php echo $greetings . $tBrowser; ?> -----------*/  
 /*---------- <?php echo "Theme Selected: $theme"; ?> -----------*/    
.tip-tip {
    color: #000;
    width: 130px;
    z-index: 13000;
}
 
.tip-title {
    font-weight: bold;
    font-size: 11px;
    margin: 0;
    color: #3E4F14;
    padding: 8px 8px 4px;
    background: #C3DF7D;
    border-bottom: 1px solid #B5CF74;
}
 
.tip-text {
    font-size: 11px;
    padding: 4px 8px 8px;
    background: #CFDFA7;
}

.tooltip{
    width: 200px; color:#000;
    font:lighter 11px/1.3 Arial,sans-serif;
    text-decoration:none;
    text-align:center;
    
}

.tooltip span.top{padding: 30px 8px 0;
    background: url('/images/bt.gif') no-repeat top
}

.tooltip b.bottom{padding:3px 8px 15px;color: #548912;
    background: url('/images/bt.gif') no-repeat bottom
}
/*--------------------------------------------------------*/
<?php
    /* do not edit following code */ 
    $buffer = ob_get_contents();     //collect the output     
    
    ob_end_clean();  //end capture output
   
    echo $buffer;

?>       