* { margin: 0; padding: 0; }

body {
	background-color: #eeeeee;
	font-family: 'Roboto Slab', serif;
}

.bg_gradient_blue {
	background: #073d8d; /* Old browsers */
	background: -moz-linear-gradient(top,  #073d8d 0%, #1456b4 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#073d8d), color-stop(100%,#1456b4)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #073d8d 0%,#1456b4 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #073d8d 0%,#1456b4 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #073d8d 0%,#1456b4 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #073d8d 0%,#1456b4 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#073d8d', endColorstr='#1456b4',GradientType=0 ); /* IE6-9 */
}

.bg_gradient_grey {
	background: #7f7b82; /* Old browsers */
	background: -moz-linear-gradient(top,  #7f7b82 0%, #58555a 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7f7b82), color-stop(100%,#58555a)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #7f7b82 0%,#58555a 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #7f7b82 0%,#58555a 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #7f7b82 0%,#58555a 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #7f7b82 0%,#58555a 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7f7b82', endColorstr='#58555a',GradientType=0 ); /* IE6-9 */
}

header {
	width: 100%;
	height: 140px;
	color: #fff;
}

header h1 {
	border-bottom: 1px solid #ff9c00;
	color: #ff9c00;
}

#content {
	position: relative;
	top: -20px;
	bottom: -20px; 
	width: 960px;
	padding: 20px;
	background-color: #ffffff;
	margin: 0 auto;
	z-index: 1;
	min-height: 700px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 15px #000;
    -moz-box-shadow: 0px 0px 15px #000;
    box-shadow: 0px 0px 15px #000;
}

footer {
	position: relative;
	top: -40px;
	width: 100%;
	min-height: 100px;
	border-top: 1px solid #555;
	font-weight:300;
	font-size: 12px;
	text-align: center;
}

.wrapper {
	margin: 0px auto;
	width: 960px;
	padding: 40px 40px;
}

h1 {
	text-align: center;
}

.small {
	text-align: center;
	font-weight: 300;
	font-size: 12px;
	color: #999;
	margin: 10px 0 0 0;
}

.pics {
	background-color: #f7f7f7;
	padding: 10px 0;
	border: 1px solid #ddd;
	margin: 0 0 20px 0;
}

.pics img {
	opacity: 1;
	-webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -ms-transition: all 0.2s ease-out; transition: all 0.2s ease-out;
}

.pics img:hover {
	opacity: 0.5;
}