Scratch that....I'll go ahead and post what I have so far in terms of CSS and the template....
Template:
HTML Code:
{vb:stylevar htmldoctype}
<html xmlns="http://www.w3.org/1999/xhtml" dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}" id="vbulletin_html">
<head>
<title>{vb:raw pagetitle} - {vb:raw vboptions.bbtitle}</title>
{vb:cssfile staff_app.css}
{vb:raw headinclude}
{vb:raw headinclude_bottom}
</head>
<body>
{vb:raw header}
{vb:raw navbar}
<div id="pagetitle">
<h1>{vb:raw pagetitle}</h1>
</div>
<div class="block usmlsa_block usmlsa_shadow">
<h2 class="blockhead">{vb:rawphrase usml_staffapp_application}</h2>
<div class="blockbody">
<table id="memberlist_table" width="100%">
<tr valign="top">
<td colspan="2">
<div class="blockrow restore usmlsa_welcome">
<p>Welcome {vb:raw bbuserinfo.musername}!</p>
<p>{vb:raw vboptions.usml_staffapp_welcome}</p>
<p>Thank you!<br />{vb:raw vboptions.bbtitle}</p>
</div>
</td>
</tr>
<tr valign="top">
<td nowrap="nowrap" width="50%">
<div class="blockrow restore usmlsa_posradio">
{vb:phrase usml_staffapp_position}
</div>
</td>
<td nowrap="nowrap" width="50%">
<div class="blockrow restore usmlsa_posradio">
<vb:if condition="$vboptions['usml_postitionapplying_mod_onoff'] == '1'">
<input type="radio" name="position_applying" value="Moderator" /> {vb:phrase usml_staffapp_mod}<br />
</vb:if>
<vb:if condition="$vboptions['usml_postitionapplying_smod_onoff'] == '1'">
<input type="radio" name="position_applying" value="Super Moderator" /> {vb:phrase usml_staffapp_smod}<br />
</vb:if>
<vb:if condition="$vboptions['usml_postitionapplying_admin_onoff'] == '1'">
<input type="radio" name="position_applying" value="Administrator" /> {vb:phrase usml_staffapp_admin}
</vb:if>
</div>
</td>
</tr>
<tr valign="top">
<td class="blocksubhead" colspan="2">
<b>Personal Information</b>
</td>
</tr>
<tr valign="top">
<td nowrap="nowrap" width="50%">
<div class="blockrow restore usmlsa_singletext">
{vb:phrase usml_staffapp_username}
</div>
</td>
<td nowrap="nowrap" width="50%">
<div class="blockrow restore usmlsa_singletext">
<input type="text" class="primary textbox" name="username" maxlength="256" value="{vb:raw bbuserinfo.username}" readonly />
</div>
</td>
</tr>
</table>
</div>
</div>
{vb:raw footer}
</body>
</html>
CSS:
Code:
@charset "UTF-8";
/* CSS Document */
.usmlsa_block {
margin-bottom:1em;
}
.usmlsa_welcome {
border-bottom:solid 1px {vb:stylevar light_border.borderColor};
height:105px;
}
.usmlsa_posradio {
border-bottom:solid 1px {vb:stylevar light_border.borderColor};
height:50px;
}
.usmlsa_otherradio {
border-bottom:solid 1px {vb:stylevar light_border.borderColor};
height:50px;
}
.usmlsa_singletext {
border-bottom:solid 1px {vb:stylevar light_border.borderColor};
height:25px;
}
.usmlsa_multitext {
border-bottom:solid 1px {vb:stylevar light_border.borderColor};
height:50px;
}
.usmlsa_block .blockbody {
border-left:{vb:stylevar tabslight_border};
border-right:{vb:stylevar tabslight_border};
border-bottom:{vb:stylevar tabslight_border};
}
.usmlsa_shadow {
-moz-box-shadow: -2px 2px 2px {vb:stylevar forumbits_shadow_color};
-webkit-box-shadow: -2px 2px 2px {vb:stylevar forumbits_shadow_color};
}
Still a lot of work to be done