/************************************************************************************************/
/* Universal Styles                                                                             */
/************************************************************************************************/
body{
    margin:0;
    padding:0;
    background-color:white;
    color:#363636;
    font-weight:400;
    font-family:'Raleway', sans-serif;
    font-size:16px;
}

p{
    line-height:190%;
}

a{
    text-decoration:none;
    color:teal;
}
/************************************************************************************************/
/* Menu                                                                             */
/************************************************************************************************/
#menu{
    background-color:#16a085;
    height:100px;
}
#menu ul{
    margin:0;
    padding:0;
    list-style-type:none;
    text-align:center;
}

#menu li{
    display: inline-block;  
}   

#menu a{
    letter-spacing:1px;
    text-align:center;
    text-transform:uppercase;
    line-height:100px;
    font-size:16px;
    color:white;
    
    padding:0 40px;
    border:none;
    display:block;
}

#menu a:hover{
    background-color:#1abc9c;
}
/************************************************************************************************/
/* HEADER                                                                                       */
/************************************************************************************************/

#header{
    padding:60px 0px 40px 0px;
    background-color:#333333;
    text-align:center;
}

#header h1{
    color:white;
    font-size:44px;
    letter-spacing:0.1em;
}

#header p{
    color:white;
    letter-spacing:0.1em;
}

/************************************************************************************************/
/* BANNER                                                                                       */
/************************************************************************************************/
#banner{
    height:300%;
}
#banner img{
    width:100%;
    height:300%;
}

/************************************************************************************************/
/* PAGE                                                                                         */
/************************************************************************************************/

#page{
    min-height:420px;
    padding:20px;
}

#page h2{
    color: #16a085;
    text-transform:uppercase;
    font-weight:400;
    font-size:18px;
    margin-bottom:12px;
}

/* Content */
#content{
    float:left;
    width:70%;
}

#sidebar{
    float:right;
    width:25%;
}

/* List */
ul.styled{
    margin:0;
    padding:0;
    list-style:none;
}

ul.styled li{
    border-top:1px solid #e5e5e5;
    padding: 14px 0;
}

/************************************************************************************************/
/* FOOTER                                                                                       */
/************************************************************************************************/

#footer{
    height:340px;
    background-color:#1e1b1a;
    padding-top:25px;
    padding-left:22px;
    clear:both;
}
#footer h2{
    font-size:18px;
    font-weight:400;
    text-transform:uppercase;
    color:white;
}
#footer p{
    color:#adadad;
}
#footer a{
    color:#adadad;
}

#box1{
    float:left;
    width:30%;
    padding-right:30px;
}

#box2{
    float:left;
    width:30%;
    padding-right:30px;
    
}
#box3{
    float:right;
    width:30%;
    padding-left:30px;
}


/************************************************************************************************/
/* COPYRIGHT                                                                                     */
/************************************************************************************************/


#copyright{
    width:100%;
    height:130px;
    text-align:center;
    background-color:#16a085;
    padding-top:55px;
    clear:both;
}

#copyright p{
    font-size:12px;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:white;
}

/************************************************************************************************/
/* GALLERY                                                                                      */
/************************************************************************************************/

#gallery img{
    width:120px;
    margin:12px;
    -moz-transition: -moz-transform 0.5s ease-in;
	-webkit-transition: -webkit-transform 0.5s ease-in;
	-o-transition: -o-transform 0.5s ease-in;
}

#gallery img:hover{
    -moz-transform: scale(3);
	-webkit-transform: scale(3);
	-o-transform: scale(3);
}






