var rColor = Math.round(Math.random()*20);
var gColor = Math.round(Math.random()*20);
var bColor = Math.round(Math.random()*20);
var theColors = new Array("a","b","c","d","a","b","c","d","a","b","c","d","a","b","c","d","a","b","c","d","a","b","c","d","a","b","c","d");

var darkColor = "#";
if (theColors[rColor] == "a") {darkColor+="00"}
if (theColors[rColor] == "b") {darkColor+="25"}
if (theColors[rColor] == "c") {darkColor+="40"}
if (theColors[rColor] == "d") {darkColor+="59"}
if (theColors[gColor] == "a") {darkColor+="00"}
if (theColors[gColor] == "b") {darkColor+="25"}
if (theColors[gColor] == "c") {darkColor+="40"}
if (theColors[gColor] == "d") {darkColor+="59"}
if (theColors[bColor] == "a") {darkColor+="00"}
if (theColors[bColor] == "b") {darkColor+="25"}
if (theColors[bColor] == "c") {darkColor+="40"}
if (theColors[bColor] == "d") {darkColor+="59"}
var midColor = "#";
if (theColors[rColor] == "a") {midColor+="40"}
if (theColors[rColor] == "b") {midColor+="5c"}
if (theColors[rColor] == "c") {midColor+="70"}
if (theColors[rColor] == "d") {midColor+="83"}
if (theColors[gColor] == "a") {midColor+="40"}
if (theColors[gColor] == "b") {midColor+="5c"}
if (theColors[gColor] == "c") {midColor+="70"}
if (theColors[gColor] == "d") {midColor+="83"}
if (theColors[bColor] == "a") {midColor+="40"}
if (theColors[bColor] == "b") {midColor+="5c"}
if (theColors[bColor] == "c") {midColor+="70"}
if (theColors[bColor] == "d") {midColor+="83"}
var lightColor = "#";
if (theColors[rColor] == "a") {lightColor+="80"}
if (theColors[rColor] == "b") {lightColor+="92"}
if (theColors[rColor] == "c") {lightColor+="a0"}
if (theColors[rColor] == "d") {lightColor+="ac"}
if (theColors[gColor] == "a") {lightColor+="80"}
if (theColors[gColor] == "b") {lightColor+="92"}
if (theColors[gColor] == "c") {lightColor+="a0"}
if (theColors[gColor] == "d") {lightColor+="ac"}
if (theColors[bColor] == "a") {lightColor+="80"}
if (theColors[bColor] == "b") {lightColor+="92"}
if (theColors[bColor] == "c") {lightColor+="a0"}
if (theColors[bColor] == "d") {lightColor+="ac"}

document.write("<style>");
document.write("body {margin:0 0 0 0;}");
document.write(".side1 {background-color:" + darkColor + "; width:30%; vertical-align:top; text-align:right;}");
document.write(".color1 {background-color:" + darkColor + ";}");
document.write(".side2 {background-color:" + midColor + "; width:70%; vertical-align:top; text-align:left;}");
document.write(".color2 {background-color:" + midColor + ";}");
document.write(".title1 {color:" + midColor + "; font-family:serif; font-size:18pt; font-weight:bold;}");
document.write(".title2 {color:#ffffff; font-family:serif; font-size:18pt; font-weight:bold;}");
document.write(".sub2 {color:#ffffff; font-family:sans-serif; font-size:10pt; font-weight:bold;}");
document.write("b {color:" + lightColor + "; font-weight:bold; font-style:normal;}");
document.write(".theText1 {color:#ffffff; font-family:sans-serif; font-size:10pt; font-weight:normal;}");
document.write(".theText2 {color:#ffffff; font-family:sans-serif; font-size:10pt; font-weight:normal; width:690; text-align:justify;}");
document.write("a.theLink1 {color:" + midColor + "; font-weight:bold; text-decoration:none; font-weight:bold;}");
document.write("a.theLink1:active {color:" + midColor + "; text-decoration:none; font-weight:bold;}");
document.write("a.theLink1:visited {color:" + midColor + "; text-decoration:none; font-weight:bold;}");
document.write("a.theLink1:hover {color:#ffffff; text-decoration:none; font-weight:bold;}");
document.write("a.theLink2 {color:" + lightColor + "; text-decoration:none; font-weight:bold;}");
document.write("a.theLink2:active {color:" + lightColor + "; text-decoration:none; font-weight:bold;}");
document.write("a.theLink2:visited {color:" + lightColor + "; text-decoration:none; font-weight:bold;}");
document.write("a.theLink2:hover {color:#ffffff; text-decoration:none; font-weight:bold;}");
document.write("</style>");

