
body {
	background: #e5e5e5; 
	margin:0;
	padding:0;
	}

.footer {
	background: none;
	color: #000;
	cursor: default;
	font-family: 'Alegreya SC', serif;
	font-size: 12px;
	font-weight: 400;
	font-style: italic;
	height: 10px;
	margin: 0 auto;
	position: absolute;
		bottom: -15px;
		left: 60px;
	text-align: center;
	width: 1190px;
	}
	
.container {
	position: relative;
		top: -20px;
	background: url('bgrd-new.png') no-repeat;
	margin: 0 auto;
	height: 710px;
	width: 1190px;
	}
	
.screen {
	background: none;
    height: 420px;
    margin: 0 auto;
    position: relative;
		top: 70px;
		left: 62px;
    width: 600px;
	}

.none { display: none; }
	 
.title-bar {
	background: none;
	color: #000;
	cursor: default;
	display: block;
	font-family: 'Alegreya SC', serif;
	font-size: 36px;
	font-weight: 700;
	font-style: italic;
	height: 50px;
	margin: 0 auto;
	position: relative;
		top: 15px;
		left: -80px;
	width: 800px;
   }
   
.title-bar:before, .title-bar:after {
    content: attr(title);
    color: rgba(255,255,255,.2);
    position: absolute;
	}

.title-bar:before { top: 1px; left: 1px }
.title-bar:after { top: 2px; left: 2px }

/******************** START MENU ELEMENTS **************************/
/************  Core Design  ********************/
.menu div a {
	color: #000;
	display: block;
	font-family: 'Quantico', sans-serif;
	font-size: 28px;
	font-weight: 700;
	position: relative;
	text-decoration: none;
	}

.menu div a:hover { color: #355917; }

.active { color: #b7d64c!important; }

/*********** Individual Positions ***********/
.resume {
	position: absolute;
		top: 15px;
		right: 37px;
	}

.about {
	position: absolute;
		top: 104px;
		right: 45px;
	}

.contact {
	position: absolute;
		top: 197px;
		right: 35px;
	}

.games {
	position: absolute;
		top: 282px;
		right: 40px;
	}

.interface {
	position: absolute;
		top: 362px;
		right: 13px;
	}
	
.script {
	position: absolute;
		top: 442px;
		right: 25px;
	}

/************ Inset shadow settings ******************/
.resume a:before, .resume a:after {
    content: "Resume";
    color: rgba(255,255,255,.3);
    position: absolute;
	}

.about a:before, .about a:after {
    content: "About";
    color: rgba(255,255,255,.3);
    position: absolute;
	}

.contact a:before, .contact a:after {
    content: "Contact";
    color: rgba(255,255,255,.3);
    position: absolute;
	}

.games a:before, .games a:after {
    content: "Games";
    color: rgba(255,255,255,.3);
    position: absolute;
	}

.interface a:before, .interface a:after {
    content: "Interfaces";
    color: rgba(255,255,255,.3);
    position: absolute;
	}

.script a:before, .script a:after {
    content: "Scripting";
    color: rgba(255,255,255,.3);
    position: absolute;
	}

.resume a:before,
.about a:before,
.contact a:before,
.interface a:before,
.games a:before,
.script a:before { top: 1px; left: 1px }

.resume a:after,
.about a:after,
.contact a:after,
.interface a:after,
.games a:after,
.script a:after { top: 2px; left: 2px }

/*** END MENU ELEMENTS ***/

/******************** START CLIPBOARD ELEMENTS ************************/
.clips {
	position: absolute;
	  bottom: 5px;
      left: 370px;
	}

.clip1 {
	position: absolute;
		left: 0;
		bottom: 0;
	}

.clip2 {
	position: absolute;
		left: 100px;
		bottom: 0px;
	}
	
.clip3 {
	position: absolute;
		left: 200px;
		bottom: 0px;
	}
	
.clip4 {
	position: absolute;
		left: 300px;
		bottom: 0px;
	}
	
.clip5 {
	position: absolute;
		left: 400px;
		bottom: 0px;
	}

.clip6 {
	position: absolute;
		left: 500px;
		bottom: 0px;
	}

.clip a { text-decoration: none!important; }
	
.clip a .clip-label {
	color: #000;
	display: block;
	font-family: 'Quantico', sans-serif;
	font-size: 12px;
	font-weight: 400;
	padding-top: 1px;
	text-align: center;
	}

.clip a .clip-label:hover {
	color: #355917;
	text-decoration: underline;
	}

/*********** clipboard animation *******/

.clip img {
	transform-origin: top;
	animation: sway1 .35s 1 ease-in-out;
	-webkit-animation: sway1 .35s 1 ease-in-out;
	}
	
.clip img:hover{
	transform-origin: top;
	animation: sway2 .35s 1 ease-in-out;
	-webkit-animation: sway2 .35s 1 ease-in-out;
	}

@keyframes sway1 {
      0%{left:2px;}
    20% {left: 2px;transform:rotate(2deg);-webkit-transform:rotate(2deg);}
    50% {left: 0px;transform:rotate(-2deg);-webkit-transform:rotate(-2deg);}
    75% {left: -2px;transform:rotate(-4deg);-webkit-transform:rotate(-4deg);}
   100% {left: 0px;transform:rotate(-1deg);-webkit-transform:rotate(-1deg);}
	}

/*
@-webkit-keyframes sway1 {
     0% {left:2px;}
    20% {left: 2px;transform:rotate(2deg);-webkit-transform:rotate(2deg);}
    50% {left: 0px;transform:rotate(-2deg);-webkit-transform:rotate(-2deg);}
    75% {left: -2px;transform:rotate(-4deg);-webkit-transform:rotate(-4deg);}
   100% {left: 0px;transform:rotate(-1deg);-webkit-transform:rotate(-1deg);}
	}
*/

@keyframes sway2 {
      0% {left:-2px;}
    20% {left: 1px;transform:rotate(1deg);-webkit-transform:rotate(1deg);}
    50% {left: 0px;transform:rotate(-1deg);-webkit-transform:rotate(-1deg);}
    75% {left: -2px;transform:rotate(-2deg);-webkit-transform:rotate(-2deg);}
   100% {left: 0px;}
	}
	
/*
@-webkit-keyframes sway2 {
     0% {left:-2px;}
    20% {left: 1px;transform:rotate(1deg);-webkit-transform:rotate(1deg);}
    50% {left: 0px;transform:rotate(-1deg);-webkit-transform:rotate(-1deg);}
    75% {left: -2px;transform:rotate(-2deg);-webkit-transform:rotate(-2deg);}
   100% {left: 0px;}
	}
*/

/******** INDEX PAGE INFO ***********/
.bordered { 

	border-radius: 3px;
	box-shadow: -3px 3px 6px rgba(0,0,0,0.5);
	}

.screen .logo {
	float: left;
	padding-right: 20px;
	padding-left: 20px;
	}

.screen p.info {
	color: #000;
	font-family: 'PT Sans', sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.3rem;
	padding: 10px;
	}

.screen  .thumbs {
	position: relative;
		bottom: -10px;
		left: 0px;
	}

.thumbs img {
	opacity: .8;
	padding: 0px;
	}

.thumbs img:hover { opacity: 1;	}
	
.screen .game-thumb {
	position: absolute;
		left: 10px;
	}

.screen .interface-thumb  {
	position: absolute;
		left: 210px;
	}
.screen .script-thumb  {
	position: absolute;
		left: 410px;
	}
	
.thumbs h3 { 
	color: #355917;
	font-family: 'PT Sans', sans-serif;
	font-size: 20px;
	font-weight: 700;
	padding-bottom: 0;
	margin-bottom: 5px;
	text-align: center;
	}

/******** CONTACT PAGE INFO **********/
.contact-info h2,
.contact-info h3,
.contact-info h4  { 
	color: #000;
	display: block;
	font-family: 'Quantico', sans-serif;
	font-weight: 700;
	position: relative;
	text-decoration: none;
	}
	
.contact-info h2  { font-size: 30px; }
.contact-info h3  { font-size: 24px; }
.contact-info h4 { font-size: 18px; }

.contact-info h3.email:hover { color: #355917; }

.qrcode {
    position: absolute;
		top: 20px;
		left: 20px;
	}

.social {
	position: absolute;
		top: 320px;
		left: 0px;
	}

.social a img { width: 10%; height: auto; padding-left: 20px; }

.contact-info {
	position: absolute;
		top: 0;
		left: 325px;
	}
	
/****************** PORTFOLIO SPECIFIC *******************/
.description {
	position: absolute;
		bottom: -2px;
		left: 33px;
	}
	
.description p {
	color: #000;
	display: block;
	font-family: 'PT Sans', sans-serif;
	font-weight: 700;
	padding: 5px;
	width: 223px;
	max-height: 185px;
	text-decoration: none;
	overflow: auto;
	}

.desc-title {
    border-bottom: 1px solid;
    color: #355917;
    font-family: 'Alegreya SC',sans-serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.2rem;
    margin-bottom: 4px;
    margin-top: 3px;
    padding-bottom: 8px;
    padding-left: 10px;
    text-shadow: -1px 1px 1px #FFFFFF;
}	
	
.live-example {
	background: #cdd4b6;
	border: solid 1px #acacac;
	border-radius: 3px;
	color: #000;
	display: block;
	font-family: 'Alegreya SC', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: .9rem;
	padding: 3px 8px;
	position: absolute;
		left: 470px;
		top: -25px;
	text-decoration: none;
	text-align: center;
	width: 110px;
	height: 15px;
	}

.live-example:hover {
	background: #98a95f;
	color: #fff;
	}
	
.port-main {
	position: absolute;
		top: 10px;
		left: 10px;	
	}

.port-main-h {
	max-width: 440px;
	position: absolute;
		top: 10px;
		left: 10px;	
	}
	
.port-logo-v {
    height: auto;
    left: 360px;
    max-width: 210px;
    position: absolute;
}
.port-logo-h {
    height: auto;
    left: 360px;
    max-width: 210px;
    position: absolute;
}
	
.port-title {
	color: #414f0f;
	display: block;
	font-family: 'Alegreya SC', sans-serif;
	font-weight: 700;
	font-size: 18px;
	font-style: italic;
	line-height: .9rem;
	position: absolute;
		left: 10px;
		top: -40px;
	text-align: center;
	width: 335px;
	height: auto;
		}
		
.port-t1 {
	cursor: pointer;
	position: absolute;
		top: 156px;
		left: 360px;	
	}
	
.port-t2 {
	cursor: pointer;
	position: absolute;
		top: 156px;
		left: 470px;	
	}
	
.port-t3 {
	cursor: pointer;
	position: absolute;
		top: 280px;
		left: 360px;	
	}
.port-t4 {
	cursor: pointer;
	position: absolute;
		top: 280px;
		left: 470px;	
	}

.port-t1-h {
	cursor: pointer;
	position: absolute;
		top: 305px;
		left: 10px;	
	}
	
.port-t2-h {
	cursor: pointer;
	position: absolute;
		top: 305px;
		left: 160px;	
	}
	
.port-t3-h {
	cursor: pointer;
	position: absolute;
		top: 305px;
		left: 310px;	
	}
.port-t4-h {
	cursor: pointer;
	position: absolute;
		top: 305px;
		left: 460px;	
	}
	