.primary-container {
	background-color: #fafafa;
}

.development-window {
	background-image: url(../images/stock/LABuilding.jpg);
	background-position: center 40px;
}

.main-container {
	width: 800px;
	margin: 0 auto;
	padding: 0 0 100px 0;
	background-color: #fff;
}

.main-heading-container {
	border-bottom: 2px solid #f0f0f0;
	margin: 0 0 25px 0;
}

.main-heading {
	margin: 0;
	padding: 50px 0 25px 0;
	font-weight: normal;
	font-size: 3em;
	color: #e0e0e0;
	text-shadow: -1px -1px 0 #c8c8c8;
	text-align: center;
}

.no-dev-container {
	display: none;
}

.no-dev {
	text-align: center;
	padding: 50px 0;
	color: #e0e0e0;
}

/***** item Container Styles *****/

.items-catalog {
	/*width: 610px;
	margin-left: 10px;*/
	width: 710px;
	margin: 0 auto;
	display: block;/*inline-block;*/
}

.item-type {
	color: #e0e0e0;
	text-align: left;
	padding: 0;
	margin: 0 0 20px 10px;
	transition: margin .25s;
}

.item-container {
	vertical-align: top;
	width: 240px;
	padding: 15px;
	margin: 15px 40px;
	box-shadow: 0 3px 5px #e0e0e0;
	display: inline-block;
	opacity: .75;
	transition: opacity .25s, padding .25s, margin .25s, box-shadow .25s;
}

.item-backdrop {
	background-size: 100%;
	width: 220px;
	margin: 10px;
	height: 100px;
	position: relative;
	transition: width .25s, height .25s, margin .25s;
}

.item-icon-container {
	position: relative;
	bottom: 35px;
	height: 100px;
	text-align: center;
	margin-bottom: -30px;/*Difference between margin and 25px = space between icon and title*/
}

.item-icon {
	width: 80px;
	padding: 10px;
	transition: padding .25s, width .25s;
}

.item-title {
	margin: 0;
	padding: 0;
	text-align: center;
	font-weight: normal;
	color: #777;
	letter-spacing: 0;
	transition: letter-spacing .25s;
}

.item-highlights {
	text-align: center;
	color: #aaa;
}

.progress-block {
	text-align: center;
	margin: 10px 0 0 0;
}

.progress {
	
}

.progress-date {
	font-weight: normal;
	font-style: italic;
}


/***** Hover Styles *****/
.item-container:hover {
	opacity: 1;
	transition: opacity .25s;
	padding: 30px;
	margin: 0px  25px;
	box-shadow: 0 10px 10px #e0e0e0;
	transition: opacity .25s, padding .25s, margin .25s, box-shadow .25s;
}
/*
.item-container:hover .item-title {
	letter-spacing: 2px;
	transition: letter-spacing .25s;
}*/

.item-container:hover .item-type {
	margin: 0 0 20px 0;
	transition: margin .25s;
}

.item-container:hover .item-backdrop {
	width: 240px;
	margin: 10px 0;
	height: 100px;
	transition: width .25s, height .25s, margin .25s;
}

.item-container:hover .item-icon {
	width: 100px;
	padding: 0;
	transition: padding .25s, width .25s;
}

.item-container:hover .item-link {
	background-color: #09093a;
	transition: background-color .25s;
}

.item-container:hover .item-link:hover {
	background-color: #27279a;
	transition: background-color .25s;
}

@media only screen and (max-width: 800px){
	.main-container {
		width: 100%;
	}
	
	.items-catalog {
		width: 95%;
		text-align: center;
	}
	
	.item-container {
		margin: 15px 15px;
		font-size: 14px;
	}
	
	.item-container:hover {
		margin: 0 0;
	}
}