Hi All,

I need a little bit of help placing some graphics on a screen.

My basic Markup is:

Code:
    <div class="right">
        First Name:<asp:TextBox ID="txtFirstName" runat="server" TabIndex="0"></asp:TextBox></div>
    <div class="right">
        Surname:<asp:TextBox ID="txtLastName" runat="server" TabIndex="1"></asp:TextBox></div>
    <div class="right">
        Phone Number:<asp:TextBox ID="txtPhone" runat="server" TabIndex="2"></asp:TextBox></div>
    <div class="right">
        Business Unit:<asp:DropDownList ID="lstBusinessUnit" runat="server" CssClass="dropdown" TabIndex="3"></asp:DropDownList></div>
    <div class="right">
        Department:<asp:DropDownList ID="lstDepartment" runat="server" CssClass="dropdown" TabIndex="4"></asp:DropDownList></div>
I've been given a gif consisting of a blue horizontal line, another of a vertical blue line and 4 gifs giving round corners. I need to use these gifs to make a box that the above code sits in. I assume I can use another DIV tag but how do I style it?