I want to have the text "Skip - I cant decide" Aprear in the black rectangle centered on the bottom. Ive struggled with the Css to get this done right. Can you point out how to fix my css?

defaultpage
<div id="pictures">
<div id="MainPics">
<div id="RightPic">
<p>
<asp:Label ID="FirstPicMemberNameLabel" runat="server" Text="" Font-Bold="True" ForeColor="White"></asp:Label>
</p>
<asp:ImageButton ID="FirstPicLink" Width="90%" runat="server" />
</div>
<div id="LeftPic">
<p>
<asp:Label ID="SecondPicMemberNameLabel" runat="server" Text="" ForeColor="White"
Font-Bold="True"></asp:Label>
</p>
<asp:ImageButton ID="SecondPicLink" Width="90%" runat="server" />
</div>
</div>
<div id="skip">
<a href="default.aspx">SKIP - I Cant Choose.</a></div>
</div>
Css
div#pictures
{
}
div#MainPics
{
height: 650px;
width: 60%;
-moz-border-radius: 35px;
border-radius: 35px;
background-color: Black;
margin-left: auto;
margin-right: auto;
}
#RightPic
{
position: relative;
float: left;
width: 45%;
text-align: center;
}
#LeftPic
{
position: relative;
float: left;
width: 45%;
text-align: center;
}
div#skip
{
position: relative;
width: 50%;
margin-left: auto;
margin-right: auto;
text-align: center;
}
