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

html { height: 100%; }

*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}


body {
    background: #ffffff;
    color: #333;
    overflow: scroll;
    overflow-x: hidden;
}

#mcontainer {
	margin: auto;
	margin-top: 40px;
	width: 1000px;
	height: 600px;
	/*background-color: orange;*/
}

.Container {
	margin: auto;
	width: 750px;
	height: 600px;
	/*background-color: green;*/
	float: right;
}

#filters {
	list-style-type: none;
	margin: 0;
	color: black;
	text-align: center;
	word-spacing: 15px;
}

h1 {
	margin: 17px;
	font-family: Roboto Condensed, Helvetica Neue, HelveticaNeue;
	-webkit-font-smoothing: antialiased;
	font-size: 20pt;
	text-align: left;
	color: black;
	line-height: 1.1em;
}

/*Photo sizes*/

#og-grid .mix{
    opacity: 0;
    display: none;
	/*background-color: green;*/
	width: 125px;
	height: 125px;
}

/*Photo Container*/

.og-grid {
	list-style: none;
	padding-top: 20px;
	text-align: center;
	width: 750px;
	height: 600px;
	/*background-color: red;*/
	position: relative;
	float: right;
}

.og-grid li {
	display: inline-block;
	margin: 10px 5px 0 5px;
	vertical-align: top;
	height: 250px;
}

.og-loading {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #ddd;
	box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ccc;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	-webkit-animation: loader 0.5s infinite ease-in-out both;
	-moz-animation: loader 0.5s infinite ease-in-out both;
	animation: loader 0.5s infinite ease-in-out both;
}

