body{
	height: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
}

#logo{
	margin: 0;
	padding: 0px;
	margin-bottom: 30px;
}

.exposant {
	position: relative;
	bottom: 1px;
	font-size: .8em;
	line-height: .8em;
	vertical-align:super;
	text-decoration:none;
}

.squares {
	width: 800px;
}

.thumbnail{
	height: 150px;
}

h2{
	margin-top:10;
}


.thumbnail{
	border-radius:15px;
	/*background: rgba(200, 200, 200, 0.6);*/
}

.thumbnail:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: inherit;
  width: inherit;
  /*background: rgba(200, 200, 200, 0.6);*/
  transition: all 0.4s;
}

.thumbnail:hover {
  /*.background: rgba(200, 400, 200, 0);*/
}


#cube1 {
	position: relative;
	background:white;
	overflow: hidden;    
}
#cube1::before{
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
    background-image: url("../images/cube_frenchtech.jpg");
    background-size: cover;
    background-position: 0px -30px;
}

#cube2 {
	position: relative;	overflow: hidden;    
}
#cube2::before{
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
    background-image: url("../images/cube_saintelyon.jpg");
    background-size: cover;
    background-position: 0px -30px;
}

#cube3 {
	position: relative;	overflow: hidden;    
}
#cube3::before{
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
    background-image: url("../images/buy.png");
    background-size: contain;
    background-position: 40px 0px;
    background-repeat: no-repeat;
}
#cube4 {
	position: relative;	overflow: hidden;    
}
#cube4::before{
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
    background-image: url("../images/montblanc.jpg");
    background-position: 0px 0px;
    background-repeat: no-repeat;
}

/* your custom CSS \*/
	@-moz-keyframes pulsate {
		from {
			-moz-transform: scale(0.7);
			opacity: 1.0;
		}
		95% {
			-moz-transform: scale(1.3);
			opacity: 0;
		}
		to {
			-moz-transform: scale(0.3);
			opacity: 0;
		}
	}
	@-webkit-keyframes pulsate {
		from {
			-webkit-transform: scale(0.7);
			opacity: 1.0;
		}
		95% {
			-webkit-transform: scale(1.3);
			opacity: 0;
		}
		to {
			-webkit-transform: scale(0.3);
			opacity: 0;
		}
	}
	/* get the container that's just outside the marker image, 
		which just happens to have our Marker title in it */
	/*#map div.gmnoprint[title="highlighted"] {*/
	#map div.gmnoprint[title="highlighted___"] {
		-moz-animation: pulsate 1.5s ease-in-out infinite;
		-webkit-animation: pulsate 1.5s ease-in-out infinite;
		border:2pt solid #1942ca;
		/* make a circle */
		-moz-border-radius:70px;
		-webkit-border-radius:70px;
		border-radius:70px;
	    /* multiply the shadows, inside and outside the circle */
	    -moz-box-shadow:inset 0 0 5px #06f, inset 0 0 5px #06f, inset 0 0 5px #06f, 0 0 5px #06f, 0 0 5px #06f, 0 0 5px #06f;
	    -webkit-box-shadow:inset 0 0 5px #06f, inset 0 0 5px #06f, inset 0 0 5px #06f, 0 0 5px #06f, 0 0 5px #06f, 0 0 5px #06f;
	    box-shadow:inset 0 0 5px #06f, inset 0 0 5px #06f, inset 0 0 5px #06f, 0 0 5px #06f, 0 0 5px #06f, 0 0 5px #06f;
	    /* set the ring's new dimension and re-center it */
	    height:60px!important;
	    margin:-30px 0 0 -30px;
	    width:60px!important;
	}
	}*/
	
/* --------- ng repeat animations ----------*/

.my-repeat-animation.ng-enter,
.my-repeat-animation.ng-leave,
.my-repeat-animation.ng-move {
  position:relative;
}


.my-repeat-animation.ng-enter {
  -webkit-animation: 1s repeat-animation-enter;
  animation: 1s repeat-animation-enter;
}

.my-repeat-animation.ng-leave {
  -webkit-animation: 1s repeat-animation-leave;
  animation: 1s repeat-animation-leave;
}

.my-repeat-animation.ng-move {
  -webkit-animation:1s repeat-animation-move;
  animation: 1s repeat-animation-move;
}

@keyframes repeat-animation-enter {
  from {
    left:-10px;
    opacity:0;
  }
  to {
    left:0;
    opacity:1;
  }
}

@-webkit-keyframes repeat-animation-enter {
  from {
    left:-10px;
    opacity:0;
  }
  to {
    left:0;
    opacity:1;
  }
}

@keyframes repeat-animation-leave {
  from {
    left:0;
    opacity:1;
  }
  to {
    left:-10px;
    opacity:0;
  }
}

@-webkit-keyframes repeat-animation-leave {
  from {
    left:0;
    opacity:1;
  }
  to {
    left:-10px;
    opacity:0;
  }
}

@keyframes repeat-animation-move {
  from {
  	background-color: grey;
  }
  to {
  
  }
}

@-webkit-keyframes repeat-animation-move {
  from { opacity:0.5; }
  to { opacity:1; }
}
