<?php
class Css extends HtmlFragment {
// currently class is completely unused
function Css() {
$s = "<style>";
$s .= "<!--\n\n";
$s .= ".master_title,.common_title,.common_body,.page_title,td {";
$s .= " font-family: Arial, Trebuchet MS, verdana, arial;";
$s .= "}";
$s .= ".master_title, .page_title, .common_title, .small_header {";
$s .= " font-weight: bold;";
$s .= "}";
$s .= "td,.common_title,.common_body {";
$s .= " font-size: 11px;";
$s .= " color: 444499;";
$s .= "}";
$s .= ".tiny_text {";
$s .= " font-size: 9px;";
$s .= "}";
$s .= ".master_title, a.page_title {";
$s .= " font-size: 16px;";
$s .= "}";
$s .= ".page_title {";
$s .= " font-size: 14px;";
$s .= "}";
$s .= ".page_title, .small_header {";
$s .= " color: 994444;";
$s .= "}";
$s .= "a {";
$s .= " color: 449944;";
$s .= " text-decoration: none;";
$s .= "}";
$s .= "a.hover, a.master_title:hover {";
$s .= " border-bottom: 1px dotted 4444aa;";
$s .= "}";
$s .= "td.box_title {";
$s .= " /*/*/";
$s .= " filter: progid:DXImageTransform.Microsoft.Gradient(gradi";
$s .= "entType=0,startColorStr=#ffeeeeff,endColorStr=#ffddddee);";
$s .= " /* hide the above from netscape 4.x */";
$s .= " background-color: #eeeeff;";
$s .= "}";
$s .= "td.box_body {";
$s .= " /*/*/";
$s .= " filter: progid:DXImageTransform.Microsoft.Gradient(gradi";
$s .= "entType=0,startColorStr=#fff8f8ff,endColorStr=#fff0f0ff);";
$s .= " /* hide the above from netscape 4.x */";
$s .= " background-color: #f6f6ff;";
$s .= "}";
$s .= "td.message {";
$s .= " background: #dd2222;";
$s .= " color: ffffff;";
$s .= " font-weight: bold;";
$s .= " font-size: 11px;";
$s .= " font-family: Verdana, Arial, Sans-serif;";
$s .= " border: black solid 1px;";
$s .= " /*/*/";
$s .= " filter: progid:DXImageTransform.Microsoft.Gradient(gradi";
$s .= "entType=0,startColorStr=#ffee6655,endColorStr=#ffaa4444);";
$s .= " /* hide the above from netscape 4.x */";
$s .= " }";
$s .= "-->";
$s .= "</style>";
$this->html = $s;
}
}
?>