@charset "utf-8";

/*Animation Prefs*/
/*Chrome and Safari 4+*/
@-webkit-keyframes pulse {
      0% {background-color: #45CEEF;}
     25% {background-color: #FFF5A5;}
     50% {background-color: #FFD4DA;}
     75% {background-color: #99D2E4;}
     100% {background-color: #D8CAB4;}
}

/*Firefox 5+*/
@-moz-keyframes pulse {
      0% {background-color: #45CEEF;}
     25% {background-color: #FFF5A5;}
     50% {background-color: #FFD4DA;}
     75% {background-color: #99D2E4;}
     100% {background-color: #D8CAB4;}
}

/*Opera 12+*/
@-o-keyframes pulse {
      0% {background-color: #45CEEF;}
     25% {background-color: #FFF5A5;}
     50% {background-color: #FFD4DA;}
     75% {background-color: #99D2E4;}
     100% {background-color: #D8CAB4;}
}

/*IE 10+*/
@keyframes pulse {
      0% {background-color: #45CEEF;}
     25% {background-color: #FFF5A5;}
     50% {background-color: #FFD4DA;}
     75% {background-color: #99D2E4;}
     100% {background-color: #D8CAB4;}
}

/*Body Styles*/
body {
    -webkit-animation: pulse 80s infinite alternate;	/*Chrome and Safari 4+*/
	-moz-animation: pulse 80s infinite alternate;		/*Firefox 5+*/
	-o-animation: pulse 80s infinite alternate;			/*Opera 12+*/
	animation: pulse 80s infinite alternate;			/*IE 10+*/
    background-color: #45CEEF;
}

#body {
	/*background: #EFEFEF url(images/fond_footer.png) repeat-x;*/
	min-height: 350px;
	background-color: #FFF;
}

@font-face {
    font-family: 'gazebold';
    src: url('fonts/gaze_bold-webfont.eot');
    src: url('fonts/gaze_bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/gaze_bold-webfont.woff') format('woff'),
         url('fonts/gaze_bold-webfont.ttf') format('truetype'),
         url('fonts/gaze_bold-webfont.svg#gazebold') format('svg');
    font-weight: normal;
    font-style: normal;
}