/* CSS Document */

.searchagain input{
	width:100%;
	font-size:36px;
}

#search{
	position:absolute;
	right:0px;
	height:50px;
}

.images{
	text-align:center;

}
.images img{
	border:#FFF thick solid;
	box-shadow: 5px 5px 10px #CCC;
	margin:12px;	
	display:inline-block;
	vertical-align:middle;
        max-width: 200px;
        max-height: 200px;
}

.images img:hover{
	box-shadow: 3px 3px 6px #999;
}

.images img:active{
	box-shadow: 0px 0px 3px #666;
}

/* loader */
#loader {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 400px;
  height: 400px;
  margin: -150px 0 0 -163px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #6cc4e2;
  width: 300px;
  height: 300px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loadingWindow{
	position:fixed;
	border:#FFF thick solid;
	box-shadow: 5px 5px 10px #CCC;
	width:400px;
	height:500px;
	left:50%;
	top:50%;
	margin: -200px 0 0 -200px;
	background-color:#FFF;
	display:none;
	z-index:9999;
}

.loadingImages{
	position:fixed;
	border:#FFF thick solid;
	box-shadow: 5px 5px 10px #CCC;
	width:400px;
	height:500px;
	left:50%;
	top:50%;
	margin: -200px 0 0 -200px;
	background-color:#FFF;
	z-index:9999;
}

.loadingWindow h2{
	text-align:center;
	width:100%;
	position:absolute;
	top:420px;
}

.loadingImages h2{
	text-align:center;
	width:100%;
	position:absolute;
	top:420px;
}

/***************/

@media screen and (max-width: 1200px) {
	.images img{margin:8px;}
}

@media screen and (max-width: 850px) {
	.images img{
            margin:15px;
            max-width: 150px;
            max-height: 150px;
        }
}