/**
 *  YAHOO CSS RESET
 */ 
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
	margin:0;
	padding:0;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset,img { 
	border:0;
}
address,caption,cite,code,dfn,em,strong,th,var {
	font-style:normal;
	font-weight:normal;
}
ol,ul {
	list-style:none;
}
caption,th {
	text-align:left;
}
h1,h2,h3,h4,h5,h6 {
	font-size:100%;
	font-weight:normal;
}
q:before,q:after {
	content:'';
}
abbr,acronym { border:0;
}

/**
 *  CUSTOM HTML RULES
 */   
body{
    background: url( ../images/bg.jpg );
    font-family: Trebuchet MS, Verdana;
}

a{
    color: #09f;
}

h1{
    width: 900px;
    margin: auto;
    font-size: 36px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #999;
}

/**
 *  SITE RULES
 */
#main_site{
    width: 900px;
    height: 450px;
    margin: auto;
    overflow: hidden;
    background: #ccc;
    clear: left;
    position: relative;
}
    #wrapper{
        width: 950px;
        height: 450px;
        overflow: auto;
        position: relative;
    }
    .page{
        width: 900px;
        height: 450px;
        color: #fff;
        overflow: hidden;
        position: relative;
    }
        .page h3{
            font-size: 120px;
        }
#footer{
    width: 900px;
    margin: auto;
    text-align: center;
    font-size: 0.8em;
    color: #999;
    padding: 5px;
}

/**
 *  TABBED MENU
 */ 
ul#navigation{
    width: 900px;
    margin: auto;
}

    ul#navigation li{
        float: left;
    }

        ul#navigation li a{
           display: block;
           padding: 10px;
           color: #000;
           text-decoration: none;
           background: #eee;
           margin-right: 1px;
        }

        ul#navigation li a:hover{
           color: #333;
           background: #999;
        }

        ul#navigation li a:active{
           color: #fff;
           background: #f90;
        }
        
        ul#navigation li a:focus{
            background: #f90;        
        }

/**
 *  PAGES SETUP
 */

#home{
    background: url( ../images/page1.jpg );
} 

#portfolio{
    background: url( ../images/page2.jpg );
}

#links{
    background: url( ../images/page3.jpg );
}

#contact{
    background: url( ../images/page4.jpg );
}
    #contact h3{
        color: #CCFCFC;
    }
#credits{
    background: url( ../images/page5.jpg );
}
    #credits .content{
    
    }
    #credits .content a{
        font-weight: bold;
        font-size: 12px;
        display: block;
        color: #fff;
        background: #000;
        text-decoration: none;
        width: 40%;
        margin: 5px;
        padding: 2px;
        text-shadow: none;
    }
    #credits .content a:hover{
        background: #52D3D8;
        color: #333;
    }
