/*
    Código tomado de:

    http://www.positioniseverything.net/articles/onetruelayout/example/anyorder
    http://www.positioniseverything.net/articles/onetruelayout/anyorder
*/

/*
    Tamaños:

    Anchos:
        pagina: 978px

        principal: 578px
        secundario: 200px
        terciario: 200px
*/
#principal{
    /*
        width=ancho
        margin-left=ancho del secundario
    */
    float: left;
    width: 578px;/*34%;*/
    margin-left: 200px; /*33%;*/
}

* html #principal
{
    display: inline;
}

#secundario
{
    /*
        width=ancho
        margin-left=(ancho propio + ancho del primario) * -1
    */
    float: left;
    width: 200px;/*33%;*/
    margin-left: -778px;/*-67%;*/
}

#terciario
{
    /*
        width=ancho
    */
    float: left;
    width: 200px;/*33%;*/
}

    /* we need this for IE 5.01 - otherwise the wrapper does not expand to the
    necessary height (unless fixed, this problem becomes even more acute
    weirdness as the method is enhanced */
    #contenedor{
        /* Normally a Holly-style hack height: 1% would suffice but that causes
        IE 5.01 to completely collapse the wrapper - instead we float it */
        float: left;

        /* NB. possibly only IE 5.01 needs to get this float value - otherwise 5.5 sometimes
        (I saw it happen many moons ago) makes the width of wrapper too small
        the float: none with the comment is ignored by 5.01,
        5.5 and above see it and carry on about their business
        It's probably fine to just remove it, but it's left here
        just in case that many moons ago problem rears its head again */
        float/**/: none;
    }

/* easy clearing */
#contenedor:after{
    content: '[DO NOT LEAVE IT IS NOT REAL]';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

#wrapper{
    display: inline-block;
}
/*\*/
#wrapper{
    display: block;
}
/* end easy clearing */

#footer{
    clear: both;
}
