/* 
    Document   : bluish
    Created on : 22-nov-2011, 11:11:02
    Author     : bernardoraulcases
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

root { 
    display: block;
}

body{
    position: relative;
    margin: 0;
    padding: 0;
    background: #ebebeb;
    text-align: center;
    font-family: Tahoma;
}
.backgroundLeft{
    position: absolute;
    width: 50%;
    height: 300px;
    left: 0;
    top: 0;
    background: url(../images/fondo_izquierda.png) repeat-x;
}
.backgroundRight{
    position: absolute;
    width: 50%;
    height: 300px;
    right: 0;
    top: 0;
    background: url(../images/fondo_derecha.png) repeat-x;
}
.backgroundFooterLeft{
    position: absolute;
    width: 50%;
    height: 125px;
    left: 0;
    top: 0;
    background: url(../images/fondo_footer_izquierda.png) repeat-x bottom;
}
.backgroundFooterRight{
    position: absolute;
    width: 50%;
    height: 125px;
    right: 0;
    top: 0;
    background: url(../images/fondo_footer_derecha.png) repeat-x bottom;
}
.footer{
    height: 125px;
    position: relative;
}
.footerIn{
    width: 990px;
    position: relative;
    margin: 0 auto;
    background: url(../images/fondo_footer.png) no-repeat;
    height: 125px;  
}
.wrapperOut{
    position: relative;
    background: url(../images/fondo_cuerpo.png) repeat-y center;
}
.wrapperIn{
    width: 990px;
    position: relative;
    margin: 0 auto;
    background: url(../images/contenido.png) no-repeat;
    height: 883px;
}
.formContacto{
    position: absolute;
    left: 500px;
    top: 300px;
    color: #343434;
}
.formContacto input{
    width: 300px;
    height: 25px;
}
.formContacto button{
    width: 150px;
    height: 25px;
}
.formContacto textarea{
    width: 300px;
    height: 200px;
    resize:none;
}