body {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#backgroundIntro{
	background:#222;
  	-webkit-transition: all 1.3s ease-in-out;
	-moz-transition: all 1.3s ease-in-out;
	-o-transition: all 1.3s ease-in-out;
	transition: all 1.3s ease-in-out;
	opacity:1;
	height:100%;
	width:100%;
}
#fade {
	-webkit-transition: all 1.3s ease-in-out;
	-moz-transition: all 1.3s ease-in-out;
	-o-transition: all 1.3s ease-in-out;
	transition: all 1.3s ease-in-out;
	opacity:1;
}
#fade:hover{
	opacity:0.1;
}

#portfolio
{
	position:fixed;left:480px;top:-5;height:40px;width:138px;z-index:100;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}


#profile
{
	position:fixed;left:320px;top:-5;height:40px;width:138px;z-index:100;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}


#triangle
{
	position:fixed;left:615px;top:-5;height:40px;width:138px;z-index:100;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	visibility:hidden;
}


#circle
{
	position:fixed;left:715px;top:-5;height:40px;width:138px;z-index:100;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	visibility:hidden;
}


#portfolio:hover
{
	top:0;
}


#profile:hover
{
	top:0;
}


#triangle:hover
{
	top:0;
}


#circle:hover
{
	top:0;
}

#viewPort
{
	width:99%;
	height:99%;
	overflow:hidden;
	position:absolute;
	left:3px;
	top:0;
	background-image:url('images/tunnel.png');
	background-size:100% 100%;
    background-repeat:no-repeat;
    border: 3px solid #fff000;
    border-radius:2px;
}

.modalDialog h2 {
	color: #01bcff;
	text-align: center;
	font-family: 'Press Start 2P', cursive;
	font-weight: normal;
}

.modalDialog {
	position: fixed;
	font-family: 'Play', sans-serif;
	font-size: 1.2em;
	font-weight: bold;
	color: #ccc;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.6);
	z-index: 200;
	opacity:0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
}

.modalDialog:target {
	opacity:1;
	pointer-events: auto;
}

.modalDialog > div {
	width: 40%;
	position: relative;
	margin: 3% auto;
	padding: 5px 20px 13px 20px;
	border: 3px solid #01bcff;
    border-radius:8px;
	background-image: url('images/texture.png');
}


.modalDialogOne {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.6);
	z-index: 200;
	opacity:0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
}

.modalDialogOne:target {
	opacity:1;
	pointer-events: auto;
}

.modalDialogOne > div {
	width: 40%;
	height: 92%;
	overflow-y:scroll;
	overflow-x:hidden;
	position: relative;
	margin: 1% auto;
	padding: 5px 30px 13px 20px;
	border: 3px solid #01bcff;
    border-radius:8px;
	background-image: url('images/texture.png');
}

.close {
	background: #606061;
	color: #FFF;
	line-height: 25px;
	position: absolute;
	right: -12px;
	text-align: center;
	top: -10px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}

.close:hover {
	background: #01bcff;
}

.closeOne {
	background: #777;
	color: #FFF;
	line-height: 25px;
	position: absolute;
	right: 10px;
	text-align: center;
	top: 0px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}

.closeOne:hover {
	background: #01bcff;
}


.profileBox {
	width: 70px;
	height:70px;
	position: relative;
	margin-left: 3%;
	margin-right: 3%;
	margin-top: 30px;
	margin-bottom: 30px;
	border: 5px solid #ccc;
    border-radius:8px;
	background: #ccc;
	float:left;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.profileBox:hover {
	border: 5px solid #01bcff;
}

#portWords {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#line{
  transform-origin: 0 100%;
  height: 3px; /* Line width of 3 */
  background: #f10; /* Black fill */
}

#line2{
  transform-origin: 0 100%;
  height: 3px; /* Line width of 3 */
  background: #01f; /* Black fill */
}


.modalDialogOne * { margin: 0; padding: 0; }
.bodyOne { font: 16px Helvetica, Sans-Serif; line-height: 24px; }
.clear { clear: both; }
#page-wrap { width: 800px; margin: 40px auto 60px; }
#pic { float: right; margin: -30px 0 0 0; }
.modalDialogOne h1 { margin: 0 0 16px 0; padding: 0 0 16px 0; font-size: 42px; font-weight: bold; letter-spacing: -2px; border-bottom: 1px solid #999; }
.modalDialogOne h2 { font-size: 20px; margin: 0 0 6px 0; position: relative; }
.modalDialogOne h2 span { position: absolute; bottom: 0; right: 0; font-style: italic; font-family: Georgia, Serif; font-size: 16px; color: #666; font-weight: normal; }
.modalDialogOne p { margin: 0 0 16px 0; }
.modalDialogOne a { color: #53868B; text-decoration: none; border-bottom: 1px dotted rgb(1, 188, 255); }
.modalDialogOne a:hover { border-bottom-style: solid; color: #000; }
.modalDialogOne ul { margin: 0 0 32px 17px; }
#objective { width: 500px; float: left; }
#objective p { font-family: Georgia, Serif; font-style: italic; color: #444; }
.modalDialogOne dt {font-size: 18px; text-align: right; margin-top: 10px; width: 30px; float: left; height: 30px; /*border-right: 1px solid #999;*/  }
.modalDialogOne dd { width: 740px; float: right; }
.modalDialogOne dd.clear { float: none; margin: 0; height: 15px; }
#page-wrap{ background:#FFF; margin-top: 15px; padding: 15px 10px 0px 10px; border-bottom:8px solid #111; border-top:8px solid rgb(1, 188, 255);}
line { width: 800px; float: right; border-top:1px solid #999; margin-bottom:10px; }
.top {text-align: center; position: absolute; top: 30px; left: 380px;}

.rotate {
	/* Safari */
	-webkit-transform: rotate(-90deg);
	/* Firefox */
	-moz-transform: rotate(-90deg);
	/* IE */
	-ms-transform: rotate(-90deg);
	/* Opera */
	-o-transform: rotate(-90deg);
	/* Internet Explorer */
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
