I'm fiddling with the css to get this dialed in like I want it, but I cannot get it right.

This is at:
http://labsysgrp.com/it.php
It is the blue box at the top with the white border.

I am trying to remove the list decoration, make the text white and remove the underline. How might I do it so it only affects this island?

This is the php:
Code
<?php
if (!defined('UBB_MAIN_PROGRAM')) define('UBB_MAIN_PROGRAM',1);
$style_side="";$tbopen="";$tbclose="";
echo "<table width=\"100%\">";
include("/home/cust2/user1181001/html/ubbthreads/cache/post_island_11.php");
echo "</table>";
?>

This is the css related to it:
Code
.tdheader {
display:none;
}
.alt-1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: .7em;
	font-weight: bold;
	color: #FFFFFF;
	position: absolute;
	left: 252px;
	top: 25px;
	width: 255px;
	text-align: center;
	background-color:#3333CC;
	list-style-image: none;
	list-style-type: none;
	border: 1px solid #FFFFFF;
}

Thanks!