html {
	background-image: url(images/background.jpg);
	background-position: top;
	background-repeat: repeat-x repeat-y;
	background-color: #151719;
}

body {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	font-family: Arial;
	font-size: 14px;
	color: #FFFFFF;
	background-image: url(images/overlay.jpg);
	background-position: top;
	background-repeat: no-repeat;
	text-shadow: 0px 0px 5px #000000;
}

p {
	margin: 0px;
	padding: 0px;
}

img {
	border: 0px;
	margin: 0px;
	padding: 0px;
}

a {
	text-decoration: none;
	color: #AAAAAA;
	-webkit-transition: color 0.2s ease-in;
 	-o-transition: color 0.2s ease-in;
 	-moz-transition: color 0.2s ease-in;
 	-ms-transition: color 0.2s ease-in;
	border: 0px;
	margin: 0px;
	padding: 0px;
}

a:hover {
	text-decoration: none;
	color: #FFFFFF;
}

ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.clear {
	clear: both;
}

.content {
	width: 960px;
	margin: 0px auto;

}

.header {
	width: 100%;
	height: 75px;
	line-height: 75px;
	background-color: rgba(0,0,0,0.7);
	margin-bottom: 40px;
}

.header .logo {
	float: left;
}

.header .logo img {
	margin-left: -10px;
	margin-top: 6px;
}

.header .navigation {
	font-family: 'SertigLight';
	font-size: 20px;
	text-transform: uppercase;
	float: right;
	letter-spacing: 1px;
}

.header .navigation li {
	float: left;
	margin-left: 25px;
}

.header .navigation li a {
	color: #AAAAAA;
	text-decoration: none;
}

.header .navigation li a:hover, .header .navigation li.active a {
	color: #FFFFFF;
	text-decoration: none;
}



.portfolio {
	margin-bottom: 100px;
}

.portfolio li {
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
	background-color: rgba(0,0,0,0.5);
	border-radius: 5px;
	-moz-box-shadow: 0px 0px 5px #000000;
	-webkit-box-shadow: 0px 0px 5px #000000;
	box-shadow: 0px 0px 5px #000000;
	-webkit-transition: background-color 0.2s ease-in;
 	-o-transition: background-color 0.2s ease-in;
	-moz-transition: background-color 0.2s ease-in;
 	-ms-transition: background-color 0.2s ease-in;
	padding: 0px;
}

.portfolio li:hover {
	background-color: rgba(255,255,255,.2);
}

.portfolio li.last {
	margin-right: 0px;
}

.portfolio li img {
	width: 166px;
	height: 123px;
	padding: 5px;
	padding-bottom: 2px;
	opacity: .7;
	-webkit-transition: opacity 0.2s ease-in;
 	-o-transition: opacity 0.2s ease-in;
 	-moz-transition: opacity 0.2s ease-in;
 	-ms-transition: opacity 0.2s ease-in;
}

.portfolio li:hover img {
	opacity: 1;
}

.portfolio .tip {
    	color: #fff;
	background-color: rgba(0,0,0,0.9);
    	display:none;
    	padding:10px;
    	position: absolute;    
	z-index:1000;
    	-webkit-border-radius: 5px;
    	-moz-border-radius: 5px;
    	border-radius: 5px;
	font-size: 13px;
	-moz-box-shadow: 0px 0px 5px #000000;
	-webkit-box-shadow: 0px 0px 5px #000000;
	box-shadow: 0px 0px 5px #000000;
}


.about {
	font-size: 25px;
	font-family: 'SertigLight';
	letter-spacing: -1px;
	line-height: 30px;
	font-weight: bold;
	margin-bottom: 40px;
}

.about span {

}


.testimonials {
	margin-bottom: 100px;
}

.testimonials .testimony {
	min-height: 100px;
	width: 920px;
    	color: #fff;
	background-color: rgba(0,0,0,0.5);
	-webkit-transition: background-color 0.3s ease-in;
 	-o-transition: background-color 0.3s ease-in;
	-moz-transition: background-color 0.3s ease-in;
 	-ms-transition: background-color 0.3s ease-in;
	border-radius: 5px;
	margin-bottom: 20px;
	padding: 20px;
	font-size: 15px;
}

.testimonials .testimony:hover {
	background-color: rgba(0,0,0,0.7);
}

.testimonials .testimony.right img {
	float: right;
	margin-left: 15px;
	margin-right: 0px;
}

.testimonials .testimony img {
	float: left;
	margin-right: 15px;
	margin-bottom: 0px;
	opacity: .7;
	-webkit-transition: opacity 0.3s ease-in;
 	-o-transition: opacity 0.3s ease-in;
 	-moz-transition: opacity 0.3s ease-in;
 	-ms-transition: opacity 0.3s ease-in;
}

.testimonials .testimony:hover img {
	opacity: 100;

}

.testimonials .testimony blockquote {
	margin: 0px;
	padding: 0px;
	line-height: 22px;
	font-style: italic;
}

.testimonials .testimony .client {
	margin-top: 15px;
	float: right;
}

.testimonials .testimony.right .client {
	float: left;
}



.contact {
	padding-bottom: 600px;
}

.contact .left {
	width: 600px;
	min-height: 350px;
	float: left;
	margin-right: 40px;
	padding-right: 40px;
	border-right: 1px dashed #FFFFFF;
}

.contact .right p {
	font-family: 'SertigLight';
	font-size: 20px;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.contact .right li {
	margin-bottom: 5px;
}

.contact .right li img {
	position: relative;
	top: 11px;
	padding-right: 3px;
	opacity: .6;
	-webkit-transition: opacity 0.3s ease-in;
 	-o-transition: opacity 0.3s ease-in;
 	-moz-transition: opacity 0.3s ease-in;
 	-ms-transition: opacity 0.3s ease-in;
}

.contact .right li a:hover img {
	opacity: 100;
}

.contact .right li a {
	font-family: 'SertigLight';
	font-size: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
}
