html, body, div, p, table, td, form, img, input, select { font-family: Verdana,Tahoma,Segoe,sans-serif; font-size: 10pt;}body { background-color: #000000;}form { border: medium none; padding: 0px; margin: 0px;}img { border: none; }a:link, a:visited { color: #ffcc00; text-decoration: none; }a:hover { color: #ffffff; text-decoration: none; }a:active { color: #cccc00; text-decoration: none; }.MessageAuthorInfoCell1 { vertical-align: top }.StateBar { color: #ffffff; background-color: #000000; border: 1px solid #222222; text-align: center; padding: 5px;}.AltGridRow { color: #ffffff; background-color: #222222; border: 0px;}.NormGridRow { color: #ffffff; background-color: #000000; border: 0px;}.ContentBox { color: #ffffff; background-color: #000000; border: 0px; padding: 0px;}.ContentBoxTitle { color: #ffffff; font-weight: bold; text-align: center; border: 0px; margin: 0px; padding: 5px;}.ContentBoxBody { color: #ffffff; background-color: #000000; padding: 5px;}.ForumCategoryHeader { color: #ffffff; font-size: 120%; background-color: #000000; padding: 8px;}.ContentBoxTitleNoBackground { color: #ffffff; margin: 0px; padding: 0px;}
.killedBoss { color:#888888; text-decoration: line-through; }.toKillBoss { color: #dddddd; text-decoration: none; }.killed { color: #8f0000; }
// *************************************// Don't change anything below this line// *************************************function showKills (list,kills) {var i = 0;var tipstr = "<table>"; for (var j=0; j<list.length; j++) { if (kills[j] == 1) { var tmp = "<td class=killedBoss>" + list[j] + "</td><td class=killed>(Killed)"; i++ } else { var tmp = "<td class=toKillBoss>" + list [j] + "</td><td>"; } tipstr += "<tr>" + tmp + "</td></tr>"; } tipstr += "</table>"; return tipstr;}