My web app by default has a style sheet called Style.css

I added the following to this:
Code:
.CaptionStyle
{
	border-right: slateblue 1px solid;
	border-top: slateblue 1px solid;
	border-left: slateblue 1px solid;
	color: whitesmoke;
	border-bottom: slateblue 1px solid;
	font-family: 'Arial Black';
	background-color: darkslateblue;
	text-align: left;
}
Now the HTML for my ASP page is:
Code:
<body bgColor="#99ccff" MS_POSITIONING="GridLayout">
    <form id="Login" method="post" runat="server">
        <table height="100%" width="100%" border="0">
            <tr vAlign="middle" align="center">
                <td>
                    <table height="300" width="500">
                        <tr height="25">
                            <td>
                                WOKAWIDGET
                            </td>
                        </tr>
                        <tr>
                            <td>
                                <table width="100%" height="100">
                                    <tr>
                                        <td>
                                        </td>
                                    </tr>
                                </table>
                            </td>
                        </tr>
                    </table>
                </td>
            </tr>
        </table>
    </form>
</body>
yes, I know, very bare and empty
working from the bottom up.

Now say I wanted the cell with the word WOKAWIDGET in it to have my .CaptionStyle style, how would I do this?

Woof?