@charset "iso-8859-1";
/* CSS Document */

@import url(http://fonts.googleapis.com/css?family=Economica:400,700);

body{
    background-image: url("imagenes/fondo.png");
    background-repeat: repeat;
    position: fixed;
    width: 100%;
    
}

    #contenedor{
        width: 960px;
        margin: 0 auto;
        background-color:snow;
        color: black;
        position: relative;
        font-family: 'Economica', sans-serif;
        padding:15px;
        padding-bottom:5px;
        font-size: 17px;
    }

            nav ul{
                list-style: none;
                display: block;
            }

            nav li{
                float: left;
                width: 50%;
                margin: 0 auto;
                text-align: center;
            }

            nav li a{
                text-decoration: none;
                color: black;
                font-weight: 700;
                display: block;
                line-height: 30px;
            }

            nav li a:hover{
                text-decoration: none;
                color: hotpink;
                font-weight: 700;
                background-color: lightyellow;
            }

        main{
            clear:both;
            position: relative;
            height: 530px;
        }

        h1{
            position:absolute;
            top:10px;
            left:50px;
            background-color: snow;
            line-height: 30px;
            padding:5px;
            color:lightpink;
            font-size: 25px;
        }
            article{
                border: double lightpink 4px;
                padding: 0px 15px;
                position: absolute;
                top:50px;
                left:0;
                right:0;
                margin-left:auto;
                margin-right: auto;
                height: 150px;
                width: 900px;
                display:block;
            }
                
                article img{
                    float:left;
                    position:absolute;
                    top:25px;
                    left:25px;
                }
                
                article p {
                    padding-left: 160px;
                    font-size: smaller;
                    position: absolute;
                    top:20px;
                }

                article p span{
                    font-weight: 700;
                    padding-right: 5px;
                }

            #trabajos{
                clear: both;
                display: block;
                position: absolute;
                top:205px; 
                left: -30px;
            }
            
                #trabajos ul{
                    list-style: none;
                    display: block;
                }

                #trabajos ul li{
                    float: left;
                    margin: 5px;
                }
            

        footer{
            font-size: small;
            clear: both;
            color:darkgray;}