/* tags */
root { 
    display: block;
}

html{

}

body{
    overflow-y:scroll;
    background-color: #dbdadb;
    color:#384142;
}

a{
    text-decoration: none;
    color:#384142;
}

/* main layout
#636D63
#384142
#DBDBDB

*/

#wrapper{
    width:800px;
    margin:0 auto;
    background-color: #e8e7e8;

    border:1px solid #cccbcc;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;

    -webkit-box-shadow: 2px 2px 7px #ccc;
    -moz-box-shadow: 2px 2px 7px #ccc;
    box-shadow: 2px 2px 7px #ccc;

    overflow: hidden;
}

#top{
    background-image: url('../img/top.png');
    height:120px;
    border-bottom: 1px solid #cccbcc;

    -webkit-border-top-right-radius: 8px;
    -webkit-border-top-left-radius: 8px;
    -moz-border-radius-topright:8px;
    -moz-border-radius-topleft:8px;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    font-family: 'League Script', arial, serif;
}

#titlew{
    height:60px;
    float:right;
    vertical-align: bottom;
    margin-top: 30px;
    margin-right: 20px;
    padding-right: 5px;
    cursor: default;
}

.title{
    margin:0;
    padding:0;
    font-weight: normal;
    display: inline-block;
    margin-left: 1px;
    font-size: 62px;

    /*
    -webkit-transform: translatey(0px);
    -moz-transform: translatey(0px);
    -o-transform: translatey(0px);
    transform: translatey(0px);

    -o-transition:all 0.5s ease-in;
    -moz-transition:all 0.5s ease-in;
    -webkit-transition:all 0.5s ease-in; */
}

.title:hover{
    /*
    -webkit-transform: translatey(-5px);
    -moz-transform: translatey(-5px);
    -o-transform: translatey(-5px);
    transform: translatey(-5px);

    -o-transition:all 0.1s ease-out;
    -moz-transition:all 0.1s ease-out;
    -webkit-transition:all 0.1s ease-out; */
}

#slogan{
    margin-top:-16px;
    margin-right: 45px;
    font-weight: normal;
    text-align: right;
}

#menu{
    float: right;
    margin-top: 72px;
    font-size: 1.8em;
    height:50px;
}

#menuul{
    list-style-type: none;
}

#main-outer{
    min-height:480px;
}

#main{
    font-family: Arial,Helvetica,sans-serif;
}

#footer{
    font-family: Arial,Helvetica,sans-serif;
    font-size: 0.9em;
    text-align: center;
    border-top: 1px solid #cccbcc;
    background-color: #e1e1e5;
    color: #566465;
}


#profile-image{
    opacity:0.88;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
}

#main-outer:hover #profile-image{
    opacity:1.0;
}