/* © Dick van Dongen 2012 
 * Socialmedia icons from  Folsnetdesktop  http://folksnetdesktop.com/ */

/* Import normalize */
@import url("normalize.css");

/* Style Algemeen*/

html {
	height: 100%;
}
body {
  font-family: "Helvetica", "Arial", sans-serif;
	line-height: 180%;
  width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
  color: #666;
  display: table;
}

.container {
  display: table-cell;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
}
/* Logo sprite*/
.left {
  display: inline-block;
  border-right: 1px solid #ddd;
  margin-right: 40px;
  padding-right: 30px;
  line-height: 60px;
  vertical-align: middle;
}
a.logo {
  display: inline-block;
  height: 80px;
  width: 59px;
  text-align: center;
  vertical-align: middle;
  background: #fff url("../img/logo2.png") top left;
 }
 
a.logo {
    background-position: 0 0; 
  }
    a.logo:hover {
      background-position: 0 -80px; 
    }

/* Social sprites*/
ul {
  display: inline-block;
}
  li {
    display: inline-block;
  }
    li span {
      position: absolute;
      opacity: 0;
      margin-top: 80px;
      margin-left: -100px;
      text-transform: uppercase;
      font-size: 10px;
      display: inline-block;
      text-align: center;
      width: 100px;
      -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; 
    }
      li:hover span {   
        margin-top: 60px;
        opacity: 1;
      }
a.social {
  display: inline-block;
  height: 40px;
  width: 40px;
  margin-right: 30px;
  text-align: center;
  vertical-align: middle;
  background: #fff url("../img/sprite.png") top left;
  background-color: rgba(255,255,255,1);
  -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%;
  -webkit-transition: background-color 0.3s; -moz-transition: background-color 0.3s; -o-transition: background-color 0.3s; transition: background-color 0.3s; 
}
  a.social:hover {
  background-color: none;
  }
  a.social.email {
    background-position: 0 0; 
  }
    a.social.email:hover {
      background-position: 0 -40px; 
    }
  a.social.themeforest {
    background-position: -40px 0; 
  }
    a.social.themeforest:hover {
      background-position: -40px -40px; 
    }
  a.social.twitter {
    background-position: -80px 0; 
  }
    a.social.twitter:hover {
      background-position: -80px -40px; 
    }
