<?php
    require_once '../../../classes/__clientInfo.php';  // required to get client information  
    $theme = isset($_GET['theme'])? $_GET['theme'] : 'magenta';     
    $greetings = "Setting CSS properties for :";
   
    $nClient = new __clientInfo();
   
    $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"; ?> -----------*/    
.tool-tip {
    color: #fff;
    width: 139px;
    z-index: 13000;
}
 
.tool-title {
    font-weight: bold;
    font-size: 11px;
    margin: 0;
    color: #9FD4FF;
    padding: 8px 8px 4px;
    background: url(/images/bubble.png) top left;
}
 
.tool-text {
    font-size: 11px;
    padding: 4px 8px 8px;
    background: url(/images/bubble.png) bottom right;
}
 
.custom-tip {
    color: #000;
    width: 130px;
    z-index: 13000;
}
 
.custom-title {
    font-weight: bold;
    font-size: 11px;
    margin: 0;
    color: #3E4F14;
    padding: 8px 8px 4px;
    background: #C3DF7D;
    border-bottom: 1px solid #B5CF74;
}
 
.custom-text {
    font-size: 11px;
    padding: 4px 8px 8px;
    background: #CFDFA7;
}

.tip-tip {
    color:#000000;
    width:130px;
    z-index:13000;
}
.tip-title {
    background:#C3DF7D none repeat scroll 0 0;
    border-bottom:1px solid #B5CF74;
    color:#3E4F14;
    font-size:11px;
    font-weight:bold;
    margin:0;
    padding:8px 8px 4px;
}
.tip-text {
    background:#CFDFA7 none repeat scroll 0 0;
    font-size:11px;
    padding:4px 8px 8px;
}
.tooltip {
    -x-system-font:none;
    color:#000000;
    font-family:Arial,sans-serif;
    font-size:11px;
    font-size-adjust:none;
    font-stretch:normal;
    font-style:normal;
    font-variant:normal;
    font-weight:lighter;
    line-height:1.3;
    text-align:center;
    text-decoration:none;
    width:200px;
}
.tooltip span.top {
    background:transparent url(/images/bt.gif) no-repeat scroll center top;
    padding:30px 8px 0;
}
.tooltip b.bottom {
    background:transparent url(/images/bt.gif) no-repeat scroll center bottom;
    color:#548912;
    padding:3px 8px 15px;
}

/*--------------------------------------------------------*/
<?php
    /* do not edit following code */ 
    $buffer = ob_get_contents();     //collect the output     
    
    ob_end_clean();  //end capture output
   
    echo $buffer;

?> 

