A wiec:
- Mam css:
Kod
@charset "utf-8";
* {
    padding: 0;
    margin: 0;
}
body {
    font-family: "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Grande", Verdana, Helvetica, sans-serif;
    font-size: 13px;
    color:#ffffff;
}
.clear {
    clear: both;
}

.center {
    text-align: center;
}
a {
    color: #ffffff;
    text-decoration: none;
    /*border-bottom: 1px #D0EB6A solid;*/
}
a:hover {
    color: #ffffff;
    text-decoration: none;
    /*border-bottom: 1px #D0EB6A dashed;*/
}
div.psd {
    position:absolute;
    left:0px;
    top:0px;
    width:1000px;
    height:900px;
}

div.lordofwars-logo_ {
    position:absolute;
    left:0px;
    top:0px;
    width:1000px;
    height:138px;
    background: url(images/lordofwars_01.jpg) no-repeat bottom;
}

div.lordofwars-content_ {
    position:absolute;
    left:0px;
    top:138px;
    width:1000px;
    height:682px;
    background: url(images/lordofwars_02.jpg) no-repeat bottom;
}

div.lordofwars-03_ {
    position:absolute;
    left:0px;
    top:820px;
    width:1000px;
    height:7px;
    background: url(images/lordofwars_03.jpg) no-repeat bottom;
}

div.lordofwars-stopka_ {
    position:absolute;
    left:0px;
    top:827px;
    width:1000px;
    height:73px;
    background: url(images/lordofwars_04.jpg) no-repeat bottom;
}
div.margines_ {
    margin:150px;
}
div.lordofwars-contect_ {
    margin:150px;
    top:338px;
    background: url(images/lordofwars_04.jpg) no-repeat bottom;

}
div.lordofwars-login_ {
    margin:150px;
}
/** highlited box **/

.h2 {
    font-size: 12px;
    color: #fff;
    padding: 10px 15px;
    background: #a0744a;
    border-bottom: 1px solid #bf966d;
}

#boxe {
    margin: 100px 0 15px 0;
    background: #eaa766 url('http://www.khanwars.pl/img/reborn/c_box_bknd_h.jpg') 0 bottom repeat-x;
    border-top: 4px solid #d99b60;
    border-left: 1px solid #edc39b;
    border-right: 1px solid #edc39b;
    border-bottom: 1px solid #edc39b;
    padding: 5px 15px 15px 15px;
}

I mam kod html:
Kod
{include_header}

    <center>Witaj w grze Lord of Wars!</center>

         <div class="lordofwars-login_">

         <form name="loginForm" action='index.php' method="POST" >

            <label for="world_select">Świat:</label><br />

            <select name="world_select" id="world_select">

            <option value="s1">Świat 1</option>

            <option value="s2">Świat 2</option>

            </select><br />

            <label for="user">Login:</label><br/>

            <input name="login" id="user" type="text" value="" tabindex="1" size="15" />

            <br />

            <label for="pass">Hasło:</label><br/>

            <input name="password" id="password" type="password" tabindex="2" size="15" /><br />

            <input type="submit" value="Wchodzę" /><br /><br />

            <a href="lostpassword.php" title="">Zapomniałeś hasła?</a><br />

            Logując się, akceptuję <a style="color:#DF5843; margin-left:0px;" target="_blank" class="footerlink" href="http://terrificgames.boo.pl/owu/poland/">OWU</a>.

            </div>

     <div class="lordofwars-contect_">

     <h2>O grze</h2>

    <div id="boxe">

     <p>Zmień historię kierując jedną z dziewięciu nacji. Wytrenuj potężną armię, mogącą składać się z 16 różnych jednostek bojowych i oblężniczych oraz 9 unikalnych. Rozbuduj zamek, podnoś umiejętności i poznaj inne elementy gry. A to wszystko aby rywalizować z tysiącami innych graczy.     </p>

     <br />

     <p>Pokaż innym, że znasz najlepszą taktykę prowadzącą do zwycięstwa. Zarejestruj się teraz, aby dołączyć do świata pełnego walki, dyplomacji, afer, nowych przyjaciół i wrogów.     </p>

    </div>

    </div>

            </div>
    <div class="lordofwars-03_">
    </div>
    <div class="lordofwars-stopka_">
    </div>
</div>
</body>
</html>

Adres dema: http://terrificgames.boo.pl/lordofwars/
Jak widać odowłuje się do podstawoywach klas div i je wyświeta, ale te od marginesów, które są wewnątrz innych już nie.(Teskt ma być w innym miejscu - 150px od lewej)
Co jest źle?