/* Reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
	margin:0;
	padding:0;
}
html,body {
	margin: 0;
	padding: 0;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset,img { 
	border:0;
}
input{
	border:1px solid #b0b0b0;
	padding:3px 5px 4px;
	color:#979797;
	width:190px;
}
address,caption,cite,code,dfn,th,var {
	font-style:normal;
	font-weight:normal;
}
ol,ul {
	list-style:none;
}
caption,th {
	text-align:left;
}
h1,h2,h3,h4,h5,h6 {
	font-size:100%;
	font-weight:normal;
}
q:before,q:after {
	content:'';
}
abbr,acronym { border:0;
}
a {
   outline: 0;
}
/* Style */

html, body {
	height:100%;
}
body {
	width: 100%;
	overflow-x: hidden;
	overflow-y: hidden;
	font-family: 'Michroma', "sans-serif;";
	font-weight: 400;
	font-size: 11px;
	color: #fff;
	line-height: 22px;
}
a{
	text-decoration: none;
}
.clr{
	clear: both;
}
p{
	opacity: 0.8;
	filter:alpha(opacity=80);
}
b{
	color: #000;
	display: inline-block;
	background: #fff;
	padding: 2px;
}
#header{
	position: absolute;
	z-index: 2000;
	width: 110px;
	top: 132px;
	opacity: 0.7;
	filter: alpha(opacity=70);
}
#header h1{
	font-family: 'Michroma', "sans-serif;";
	font-size: 15px;
	color: #FFF;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
	padding: 20px;
	background: #000;
}
#navigation {
	margin-top: 20px;
	width: 140px;
	display: block;
	list-style: none;
	z-index: 3;
}
#navigation a{
	font-family: font-family
: 'Michroma', "sans-serif;";
	color: #000;
	display: block;
	background: #fff;
	line-height: 50px;
	text-transform: uppercase;
	margin-bottom: 6px;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
	font-size: 12px;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 20px;
}
#navigation a:hover {
	opacity: 0.9;
	filter: alpha(opacity=90);
	color: #FFF;
	background-color: #000000;
	font-family: Michroma, "sans-serif;";
}
.panel h2{
	font-size: 18px;
	color: #fff;
	text-shadow: 0px 1px 1px rgba(0,0,0,0.3);
	padding-right: 10px;
	padding-bottom: 10px;
	margin-top: 5px;
	line-height: 25px;
	
	
}
.panel h3{
	font-size: 18px;
	color: #fff;
	text-shadow: 0px 1px 1px rgba(0,0,0,0.3);
	padding-right: 100px;
	padding-bottom: 10px;
	margin-top: 80px;
	line-height: 25px;
	padding-left: 200px;
}

.panel ul li {
	font-size: 12px;
	padding-left: 5px;
	padding-top: 2px;
}

.panel p{
	font-size: 13px;
	padding: 50px;
	line-height: 24px;
	color: #FFF;
	display: inline-block;
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 3px;
	margin-left: 5px;
	padding-top: 30px;
	padding-right: 50px;
	padding-bottom: 50px;
	background: rgb(255, 255, 255); /* Fall-back for browsers that don't
                                    support rgba */
	background: rgba(000, 000, 000, .3);
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
.panel ul li a {
	color: #FFF;
	display: inline-block;
	padding-right: 5px;
	padding-left: 5px;
	background-color: #000;
	opacity: 0.5;
	filter: alpha(opacity=50);
}
.panel ul li a:hover {
	color: #FFF;
	display: inline-block;
	padding-right: 5px;
	padding-left: 5px;
	background-color: #000;
	opacity: 0.9;
	filter:alpha(opacity=90);
	transition: all 0.7s ease-in-out;
	-moz-transition: all 0.7s ease-in-out;
	-webkit-transition: all 0.7s ease-in-out;
	-o-transition: all 0.7s ease-in-out;
}
.panel{
	width: 950px;
	min-height: 100%;
	position: fixed;
	background-color: #000;
	box-shadow: 4px -4px 4px rgba(0,0,0,0.2);
	margin-left: -102%;
	z-index: 2;
	-webkit-transition: all 1s ease-in-out 0s;
	-moz-transition: all 1s ease-in-out 0s;
	-o-transition: all 1s ease-in-out 0s;
	-ms-transition: all 1s ease-in-out 0s;
	transition: all 1s ease-in-out 0s;
}

.panel:target{
	margin-left: 0%;
	background-color: rgba(0,0,0,0.5);;
}
#home:target ~ #header #navigation #link-home,
#portfolio:target ~ #header #navigation #link-portfolio,
#about:target ~ #header #navigation #link-about,
#contact:target ~ #header #navigation #link-contact{
	background: #000;
	color: #fff;
}
#form p{
	background: #fff;
	color: #000;
}
#form input, #form textarea{
	background: #000;
	font-family: 'Michroma', "sans-serif;";
	font-size: 16px;
	color: #fff;
	border: none;
}
#form textarea{
	width: 493px;
	height: 100px;
}
#form label{
	padding-right: 10px;
	float: left;
	width: 90px;
}
#form input:hover{
	opacity: 0.9;
	filter:alpha(opacity=90);
	transition: all 0.7s ease-in-out;
	-moz-transition: all 0.7s ease-in-out;
	-webkit-transition: all 0.7s ease-in-out;
	-o-transition: all 0.7s ease-in-out;
}
.note a{
	color: #ddd;
}

.footer{
	font-family: 'Michroma', "sans-serif;";
	position: fixed;
	bottom: 0px;
	left: 0px;
	width: 100%;
	font-size: 11px;
	background: #000;
	opacity: 0.9;
	filter: alpha(opacity=95);
	color: #FFF;
	padding-bottom: 5px;
	text-decoration: none;
	height: 25px;
	box-shadow: 1px 0 2px #000000;
	z-index: 2000;
}
.footer a{
	padding: 5px 10px;
	letter-spacing: 1px;
	color: #FFF;
	float: right;
	text-decoration: none;
	opacity: 0.5;
	filter:alpha(opacity=50);
}
.footer a:hover{
	text-decoration: underline;
	opacity: 1.0;
	filter:alpha(opacity=100);
	transition: all 0.7s ease-in-out;
	-moz-transition: all 0.7s ease-in-out;
	-webkit-transition: all 0.7s ease-in-out;
	-o-transition: all 0.7s ease-in-out;
}


.footer a.left{
	float:left;
}
.footer p{
	padding: 5px 10px;
	letter-spacing: 1px;
	color: #FFF;
	float: right;
	text-decoration: none;
	opacity: 0.5;
	filter:alpha(opacity=50);
	float:left;
}

.footer a.right{
	opacity: 0.5;
	filter:alpha(opacity=50);

}
.footer a.right:hover {
	opacity: 1.0;
	filter:alpha(opacity=100);
	transition: all 0.7s ease-in-out;
	-moz-transition: all 0.7s ease-in-out;
	-webkit-transition: all 0.7s ease-in-out;
	-o-transition: all 0.7s ease-in-out;

}#pattern {
	background-image: url(../images/pattern.png);
	background-repeat: repeat;
	height: 100%;
	width: 100%;
	position: relative;
}
#cssawards{
    position:fixed;
	right:0px;
	margin-top:22px;
	margin-right:6px;
    z-index:555;
}
#cssawards a{
    width:83px;
    height:100px;
    text-indent:-8000px;
    display:block;
    background-image: url(../images/pixelawards.png);
	background-repeat: no-repeat;
}
#awards ul li {
	font-size: 12px;
	padding-left: 5px;
	padding-top: 5px;
	line-height: 22px;
}
#awards ul li a {
	color: #FFF;
	display: inline-block;
	padding-right: 5px;
	padding-left: 5px;
	background-color: #000;
	opacity: 0.5;
	filter: alpha(opacity=50);
}
#awards ul li a:hover {
	color: #FFF;
	display: inline-block;
	padding-right: 5px;
	padding-left: 5px;
	background-color: #000;
	opacity: 0.9;
	filter:alpha(opacity=90);
	transition: all 0.7s ease-in-out;
	-moz-transition: all 0.7s ease-in-out;
	-webkit-transition: all 0.7s ease-in-out;
	-o-transition: all 0.7s ease-in-out;
}
#contact {
	opacity: 0.9;
	filter:alpha(opacity=90);
	}
#contact p {
	width: 700px;
	}
#contact p a {
	color: #FFF;
	text-decoration: none;
	padding-left: 10px;
	}
#contact a:hover {
	opacity: 0.7;
	filter:alpha(opacity=70);
	transition: all 0.7s ease-in-out;
	-moz-transition: all 0.7s ease-in-out;
	-webkit-transition: all 0.7s ease-in-out;
	-o-transition: all 0.7s ease-in-out;
	text-decoration: underline;
	}
.close img {
	margin-left: 928px;
	margin-top: 10px;
	opacity: 0.5;
	border: 0;
	filter: alpha(opacity=50);
}
/*SCROLL*/

.scroll-pane{
	width: 100%;
	height: 200px;
	overflow: auto;
}
.scroll-pane2{
	width: 100%;
	height: 200px;
	overflow: auto;
}

.horizontal-only{
	height: auto;
	max-height: 200px;
}
#content{
	right: 40px;
	left: 150px;
	top: 112px;
	position: absolute;
	padding-bottom: 30px;
	width: 790px;
	height: 570px;
}
#content2 {
	right: 40px;
	left: 350px;
	top: 140px;
	position: absolute;
	padding-bottom: 30px;
	width: 790px;
	height: 610px;
}
#content3{
	right: 40px;
	left: 150px;
	top: 149px;
	position: absolute;
	padding-bottom: 0px;
	width: 790px;
	height: 540px;
}
font-family: 'Play', sans-serif;
