/*-------------------------
    Simple reset
--------------------------*/


*{
    margin:0;
    padding:0;
}


/*-------------------------
    General Styles
--------------------------*/


html{
    background: url('../img/bg_tile.jpg') #383839;
    background-attachment:fixed;
}

body{
    color:#fcfcfc;
    font:14px/1.3 'Segoe UI Light',Arial, sans-serif;
    min-height: 800px;
    padding-top:10px;
    background:url('../img/bg_center.jpg') center center no-repeat;
}

section{
    display:block;
}

a, a:visited {
    text-decoration:none;
    outline:none;
    color:#54a6de;
}

a:hover{
    text-decoration:underline;
}

ul.vcard{
    display:none;
}


/*----------------------------
        Headers
-----------------------------*/


header{
    display: block;
    margin-bottom: 12px;
}

h1{
    font-size:64px;
    font-weight:normal;
    margin-bottom: 12px;    
    line-height:1;
    text-shadow:2px 2px 0 rgba(22,22,22,0.5);
}

h2{
    color: #faa0a0;
    font-size: 18px;
    font-weight: normal;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}


/*----------------------------
        Content Area
-----------------------------*/


#infoPage img{
    float:left;
    margin-left:-200px;
    
    -moz-box-shadow: 2px 2px 0 #303030;
    -webkit-box-shadow: 2px 2px 0 #303030;  
    box-shadow: 2px 2px 0 #303030;
}

#infoPage{
    width:455px;
    margin:200px auto 0;
    padding: 0 0 100px 200px;
    border-bottom:1px solid #333;
}

p.description{
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    text-shadow: 1px 1px 0 #c77904;
    margin-bottom: 35px;

    -webkit-box-shadow: 2px 2px 0 rgba(22, 22, 22, 0.1);    
    -moz-box-shadow: 2px 2px 0 rgba(22, 22, 22, 0.1);
    box-shadow: 2px 2px 0 rgba(22, 22, 22, 0.1);
}

a.grayButton{
    padding:6px 12px 6px 30px;
    position:relative;

    background-color:#fcfcfc;
    background:-moz-linear-gradient(left top -90deg, #fff, #ccc);
    background:-webkit-linear-gradient(left top -90deg, #fff, #ccc);
    background:linear-gradient(left top -90deg, #fff, #ccc);
    
    -moz-box-shadow: 1px 1px 1px #333;
    -webkit-box-shadow: 1px 1px 1px #333;
    box-shadow: 1px 1px 1px #333;
    
    -moz-border-radius:18px;
    -webkit-border-radius:18px;
    border-radius:18px;
    
    font-size:11px;
    color:#444;
    text-shadow:1px 1px 0 #fff;
    display:inline-block;
    margin-right:10px;
    
    -moz-transition:0.25s;
    -webkit-transition:0.25s;
    transition:0.25s;
}

a.grayButton:hover{
    text-decoration:none !important;
    box-shadow:0 0 5px #2b99ff;
}

a.grayButton:before{
    background:url('../img/icons.png') no-repeat;
    height: 18px;
    left: 4px;
    position: absolute;
    top: 6px;
    width: 20px;
    content: '';
}

a.grayButton.twitter:before{
    background-position:0 -20px;
}


/*----------------------------
        Links Area
-----------------------------*/


#links{
    text-align:center;
    padding-top: 20px;
    border-top:1px solid #4a4a4a;
    text-shadow: 1px 1px 0 #333333;
    width:655px;
    margin:0 auto;
}

#links a{
    color: #ccc;
    position:relative;
}

#links > a{
    display: inline-block;
    font-size: 11px;
    margin: 0 10px;
    padding-left:15px;
}

#links > a:before{
    background: url("../img/icons.png") no-repeat -10px -60px;
    position:absolute;
    content:'';
    width:16px;
    height:16px;
    top:2px;
    left:-4px;
}

#links > a.vcard:before{
    background-position: -10px -40px;
    top: 0;
    left: -8px;
}


#links p{
    color: #f5efe6;
    font-size: 10px;
    font-style: normal;
    padding: 30px;
}


/*----------------------------
    The Footer
-----------------------------*/


footer{
    display:block;
    background-color:#212121;
    box-shadow: 0 -1px 2px #111;
    position:fixed;
    width:100%;
    height:70px;
    bottom:0;
    left:0;
    z-index: 100000;
}

footer h2{
    font-size:20px;
    font-weight:normal;
    left:50%;
    margin-left:-400px;
    padding:22px 0;
    position:absolute;
    width:400px;
    color:#eee;
}

footer a.logo,a.logo:visited{
    background:url("../img/logo.png") no-repeat right top;
    border:none;
    text-decoration:none;
    color:#FCFCFC;
    font-size:12px;
    height:70px;
    left:50%;
    line-height:31px;
    margin:23px 0 0 110px;
    position:absolute;
    top:0;
    width:290px;
}