@import url(http://fonts.googleapis.com/css?family=Parisienne);

@charset "utf-8";
/* CSS Document */

/* make keyframes that tell the start state and the end state of our object */

@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
 
.fade-in {
    opacity:0;  /* make things invisible upon start */
    -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;
 
    -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
 
    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
}
 
.fade-in.one {
-webkit-animation-delay: 0.7s;
-moz-animation-delay: 0.7s;
animation-delay: 0.7s;
}
 
.fade-in.two {
-webkit-animation-delay: 1.2s;
-moz-animation-delay:1.2s;
animation-delay: 1.2s;
}
 
.fade-in.three {
-webkit-animation-delay: 1.6s;
-moz-animation-delay: 1.6s;
animation-delay: 1.6s;
}

 
/*---make a basic box ---*/
.box{
	width: 200px;
	height: 200px;
	position: relative;
	margin: 10px;
	float: left;
	border: 1px solid #333;
	background: #33333;
 
}












.copyright{font-size:10px;font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;text-align:center;margin:0 auto;margin-top:5%;}

.associazioni{text-align:center;margin:0 auto;margin-top:5%;min-height:300px;max-height:300px;height:79px;}

.ulule {
float: right;
position: fixed;
right: -120px;
width: 400px;
opacity:0.9;
}

.ulule:hover{
	width:410px;
	}
.social-links {
	clear: both;
	overflow: hidden;
	margin-bottom: 30px;
}

.social-links .span9 {
	padding-left: 29%;
}

.social-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.social-links ul li {
	float: left;
	padding: 0 28px 10px 0;
}

.social-links ul li a{
	display: block;
	text-indent: -999em;
	width: 66px;
	height: 66px;
	cursor: pointer;
}

.social-links ul li.facebook a {
	background: url(../img/icon-facebook.png) no-repeat 0 0;
}

.social-links ul li.twitter a {
	background: url(../img/icon-twitter.png) no-repeat 0 0;
}

.social-links ul li.flickr a {
	background: url(../img/icon-flickr.png) no-repeat 0 0;
}

.social-links ul li.pinterest a {
	background: url(../img/icon-pinterest.png) no-repeat 0 0;
}

.social-links ul li.dribble a {
	background: url(../img/icon-dribble.png) no-repeat 0 0;
}

.social-links ul li.gplus a {
	background: url(../img/icon-gplus.png) no-repeat 0 0;
}

.social-links ul li.instagram a {
	background: url(../img/icon-instagram.png) no-repeat 0 0;
}

.clock {
	position: relative;
}

.clock .span6{
	margin: 16px auto 0;
	float: none;
	position: relative;
}

.img-clock {
	display: block;
    margin: 0 auto;
    max-height: 146px;
}

#countdown {
  bottom: 18%;
  left: 22%;
  position: absolute;
}

#countdown div {
	float: left;
	font-family: 'Parisienne', cursive, Arial, sans-serif;
	font-size: 38px;
	line-height: 38px;	
}

#countdown em {
	display: block;
	font-size: 34px;
	text-align: right;
	padding: 0 10px 0 0;
}

#countdown ins {
	color: #ffbd38;
	text-decoration: none;
}

#countdown div.days span {
  display: inline-block;
  text-align: right;
  width: 80px;
}

#countdown div.hours span {
	padding: 0 14px;
}

#countdown div.hours em {
	text-align: left;
}

#countdown div.minutes span {
	padding: 0 0 0 7px;
}

#countdown div.minutes em {
	text-align: left;
	margin-left: -10px;
}

#countdown div.seconds span {
	padding-left: 10px;
}

#countdown div.seconds em {
	text-align: left;
	margin-left: -10px;
}

.form-container {
	padding: 0 50px;
}

.form-container h2 {
	color: #fff;
	text-transform: uppercase;
	font-size: 36px;
	font-weight: bold;
	width: 80%;
	border: none;
}

.form-container input {
	width: 97%;
	line-height:30px !important;
}

.form-container .btn {
	float: right;
}

.addthis {
	padding: 10px 10px 0px 10px;
	background: #ffffff;
	position: fixed;
	right: 0;
	bottom: 0;
}