html, body {
	height: 100%;
	padding: 0;
}

.wrapper {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto -2em;
	padding: 0;
}

.sticky-footer, .push {
	height: 1em;
	font-size: 10px;
	text-align: center;
}

.hoverspan4:hover{
  background-color: #E8E8E8;
}

.green {
	background-color: #00ab26;
}
 
.red {
	background-color: #d90004;
}
 
.button {
 
	/*basic styles*/
	width: 100px;  height: 100px;  color: #fff; 
	text-align: center;  font-size: 30px;  line-height: 50px; float: left; margin-right: 20px;
 
 
	/*gradient styles*/
 
	/*border styles*/
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
 
	/*shadow styles*/
	-moz-box-shadow: 2px 3px 5px #bfbfbf;
	-webkit-box-shadow: 2px 3px 5px #bfbfbf;
	box-shadow: 2px 3px 5px #bfbfbf;
}
 
 
.button p {
	font-size: 50px;
	line-height: 100px;
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-weight: 300;
	text-shadow: 0px 0px 3px #888;
 
}
 
a {
	text-decoration: none;
	color: fff;
}
 
.button:hover {
	-moz-box-shadow:inset 0 0 30px #444;
	-webkit-box-shadow:inset 0 0 30px #444;
	box-shadow:inset 0 0 30px #444;
}
 
.button p:hover {
	text-shadow: 0px 0px 4px #fff;
}

/******* notification thing *******/

a#target {
    width: 30px;
    height: 30px;
    display: block;
    margin: 0 auto;
    margin-left: -35px;
    position: relative;
}
a#target #pulse {
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    top: -2px;
    left: -2px;
    border: 2px solid #30a3ec;
    border-radius: 50px;
    box-shadow: 0 0 5px #a0eaff;
    /* Animate */
    -webkit-animation-name: pulse;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-out;
    -moz-animation-name: pulse;
    -moz-animation-duration: 1s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-out;
    -o-animation-name: pulse;
    -o-animation-duration: 1s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: ease-out;
    animation-name: pulse;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
}
/* The animation */
/* WebKit/Safari and Chrome */
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
        opacity: 0.5;
    }
    
    80% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
    
    100% {
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
        opacity: 0;
    }    
}
/* Gecko/Firefox */
@-moz-keyframes pulse {
    0% {
        -moz-transform: scale(0.3);
        transform: scale(0.3);
        opacity: 0.5;
    }
    
    80% {
        -moz-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
    
    100% {
        -moz-transform: scale(2.5);
        transform: scale(2.5);
        opacity: 0;
    }    
}
/* Presto/Opera */
@-o-keyframes pulse {
    0% {
        -o-transform: scale(0.3);
        transform: scale(0.3);
        opacity: 0.5;
    }
    
    80% {
        -o-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
    
    100% {
        -o-transform: scale(2.5);
        transform: scale(2.5);
        opacity: 0;
    }    
}
/* Standard */
@keyframes pulse {
    0% {
        transform: scale(0.3);
        opacity: 0.5;
    }
    
    80% {
        transform: scale(1.5);
        opacity: 0;
    }
    
    100% {
        transform: scale(2.5);
        opacity: 0;
    }    
}