﻿/**
	© JOEL’S PORTFOLIO DOT COM
	CODED BY JOEL @ JOEL'S PORTFOLIO DOT COM
	#CSS V.2 UPDATED: TUE DEC 2, 2014
*/

/**
* 0.0 Resets
* 1.0 Base Styles
* 2.0 Colors
* 3.0 Fonts
* 4.0 Page Styles
* 5.0 Navigation
* 6.0 Media Queries
* 7.0 Effects & Animations
*/

@charset "UTF-8";

/******************************************************************
* 0.0 Resets
*
* Eric Meyer's Reset v2.0.
*/

/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain) */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {margin:0; padding:0; border:0; font-size:100%; font:inherit; vertical-align:baseline;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block;}
body {line-height:1;}
ol, ul {list-style:none;}
blockquote, q {quotes:none;}
blockquote:before, blockquote:after, q:before, q:after {content:''; content:none;}
table {border-collapse:collapse; border-spacing:0;}
/* apply a natural box layout model to all elements http://paulirish.com/2012/box-sizing-border-box-ftw */
*, *:before, *:after { -moz-box-sizing:border-box; -webkit-box-sizing:border-box; box-sizing:border-box; }

/****************************************************************
* 1.0 Base Styles
*
* Basic Structure Styles
*/

html {}
body {}
header {}
nav {}
article {}
section {}
aside {}
blockquote {}
footer {}

/****************************************************************
* 2.0 Color
*
* Defines all color swatch styles using:
	
	blue:		#0095cd
	white:		#F6F6F6
	black:		#1C1C1C
	gray:		#6a6a6a
	dk gray:	#585858
	trans gray: rgba(44,44,44,0.44)

*/

/* 	blue:		#0095cd */
.content a,
.content figcaption a,
.content .subhead,
#get-in-touch .feedback { color:#0095cd; }

.bgblue,
a.action { background-color:#0095cd; }

/* 	white:		#F6F6F6 */
.overlay,
#menu,
#skills header h1, 
#skills header h2, 
#skills ul, 
#skills ul li,
#main-footer a:hover,
#get-in-touch h1 { color:#F6F6F6; }

body,
.bglite { background-color:#F6F6F6; }

/* 	black:		#1C1C1C */
html,
.bgdark,
#main-footer,
a.action:hover,
#contact #page { background-color:#1C1C1C; }

/* 	gray:	#6a6a6a */
hr,
.content h1, 
.content h2,
.content h3,
.content h4,
.content h5,
.content h6,
.content p, 
.content ul,
.content li,
.content figcaption,
.display .text-block,
#gallery .scroll-content-item .title-block { color:#6a6a6a; }

/* 	dk gray:		#585858 */
#main-footer, 
#main-footer a,
#get-in-touch p { color:#585858; }

/* 	transparent gray: rgba(44,44,44,0.44) */
.overlay .text-block,
.overlay .image-block { background-color:rgba(44,44,44,0.44); }


/* Gradients
---------------------------------------------- */
.gradient-1 {
  	background-color:#EBEBEB;
    background-image:linear-gradient(top, #A8A8A8 0%, #EBEBEB 62%);
	background-image: -moz-linear-gradient(top, #A8A8A8 0%, #EBEBEB 62%, #A8A8A8);	
    background-image:-webkit-linear-gradient(top, #A8A8A8 0%, #EBEBEB 62%);
    background-image:-ms-linear-gradient(top, #A8A8A8 0%, #EBEBEB 62%);
    background-image:-webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #A8A8A8),
        color-stop(0.62, #EBEBEB),
    );
    /*background-attachment:fixed;*/
}
.gradient-2 {
	background-color:#EBEBEB;
	background-image: linear-gradient(top, #A8A8A8 0%, #EBEBEB 62%, #BBBBBB 100%);
	background-image: -o-linear-gradient(top, #A8A8A8 0%, #EBEBEB 62%, #BBBBBB 100%);
	background-image: -moz-linear-gradient(top, #A8A8A8 0%, #EBEBEB 62%, #BBBBBB 100%);
	background-image: -webkit-linear-gradient(top, #A8A8A8 0%, #EBEBEB 62%, #BBBBBB 100%);
	background-image: -ms-linear-gradient(top, #A8A8A8 0%, #EBEBEB 62%, #BBBBBB 100%);
	
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0, #A8A8A8),
		color-stop(0.62, #EBEBEB),
		color-stop(1, #BBBBBB)
	);
	
	/*background-attachment:fixed;*/
}

.gradient-3 {
	background-color:#1C1C1C;
	background-image: linear-gradient(top, #1C1C1C 0%, #F6F6F6 100%);
	background-image: -o-linear-gradient(top, #1C1C1C 0%, #F6F6F6 100%);
	background-image: -moz-linear-gradient(top, #1C1C1C 0%, #F6F6F6 100%);
	background-image: -webkit-linear-gradient(top, #1C1C1C 0%, #F6F6F6 100%);
	background-image: -ms-linear-gradient(top, #1C1C1C 0%, #F6F6F6 100%);
	
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0, #1C1C1C),
		color-stop(1, #F6F6F6)
	);
	
	/*background-attachment:fixed;*/
}

.gradient-4 {
	background-color:#1C1C1C;
	background-image: linear-gradient(top, #0095CD 0%, #1C1C1C 100%);
	background-image: -o-linear-gradient(top, #0095CD 0%, #1C1C1C 100%);
	background-image: -moz-linear-gradient(top, #0095CD 0%, #1C1C1C 100%);
	background-image: -webkit-linear-gradient(top, #0095CD 0%, #1C1C1C 100%);
	background-image: -ms-linear-gradient(top, #0095CD 0%, #1C1C1C 100%);
	
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0, #0095CD),
		color-stop(1, #1C1C1C)
	);
	
	/*background-attachment:fixed;*/
}

/*	webkit-tap-highlight-color */
a:link {-webkit-tap-highlight-color: #0095cd;} 

/* Custom text-selection colors */
::-moz-selection{background: #0095cd; color: #F6F6F6; text-shadow: none;}
::selection {background: #0095cd; color: #F6F6F6; text-shadow: none;} 

/******************************************************************
* 3.0 Font Styles
*
* Load FontStack using google api links in <head>
	<link href='http://fonts.googleapis.com/css?family=Open+Sans:300,300italic,600' rel='stylesheet' type='text/css'>
	<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light+Two' rel='stylesheet' type='text/css'>
*/

/* Font Family Sets */

/* Open Sans Light */
h1, 
h2, 
h3, 
h4, 
h5, 
h6, 
p, 
ul, 
.body-copy, 
.body-copy a,
 /*dblcheck usage below*/
.content .text-block a,
#featured .nav-block a .title,
#joel-nav .title,
.portfolio-item-content,
#projects .portfolio-content .section-title,
#menu li a {
	font-family:'Open Sans', sans-serif;
	font-weight: 300;
}

/* Open Sans Light Italic */
p em,
figcaption,
figcaption a,
/*dblcheck usage below*/
.overlay .title em {
	font-family:'Open Sans', sans-serif;
	font-weight: 300;
	font-style: italic;
}

/* Open Sans Semi Bold */
a,
figcaption span {
	font-family:'Open Sans', sans-serif;
	font-weight: 600;
}

/* Shadows Into Light Two */
#action .button, 
.main-footer, 
.footer-credit, 
.footer-credit a, 
ul.footer-links li, 
ul.footer-links li a,
#gallery .scroll-content-item .title-block,
/*dblcheck usage below*/
.dialog {
	font-family: 'Shadows Into Light Two', sans-serif;
}

/* Font Sizes & Styles */

* { font-size: 12pt; }
h1 { font-size: 44px;}
h2 { font-size: 34px;}
h3 { font-size: 24px;}
h4 { font-size: 14px;}
p, ul { font-size:21px; line-height:42px; }

h1, h2, h3, h4, h5, h6 { text-transform:uppercase; }
a { text-transform:uppercase; text-decoration:none; }
em { font-style:oblique; }
strong { font-weight:bold; }

/****************************************************************
* 4.0 Page Styles
*
* Specific page styles.
*/

.page-content {}

/* Featured Ads Page
*/
/****************************************************************
* Gallery Styles
*/
#gallery {
	min-height: 0 !important;	
}
#gallery .title-block {
	font-size: 32px;
	line-height: 38px;
	letter-spacing: 6px;	
}

/* Ad Gallery Section
*/

#ads #gallery .scroll-content {
	width: 11440px; /* 300px + 10px margin + 10 margin x 32 boxes = 10240px + extra 1200 for snickers wide */
}
#ads #gallery .scroll-content-item {
	width: 300px; /* width of each content div container */
	height: 620px; /* height of each content div container */
	margin: 10px 0;
}
#ads #gallery .scroll-content-item img {
	display: inline-block;
	float: left;
	max-height: 300px;
}
#ads #gallery .scroll-content-item img.tall {
	top: 160px;
	position: relative;
}
/* Ad Logo Icons */
#ads #gallery .scroll-content-item .logo-block {
	min-height: 120px;
	width: 120px;
	margin: 90px;
	text-indent: -99999em;
	display: inline-block;
	padding: 0;
	background-image: url(../images/featured/ads-logos.png); /* ad logo sprite */
	top: 160px;
	position: relative;
	/*-webkit-transform: rotate(-7.5deg);
	   -moz-transform: rotate(-7.5deg);
		-ms-transform: rotate(-7.5deg);
		 -o-transform: rotate(-7.5deg);
			transform: rotate(-7.5deg);*/
}
 #absolut {background: -240px 0;}
 /*#absolut:hover {background: -120px 0;}*/
 /*#absolut.clicked, #absolut.clicked:hover,  {background: -240px 0;}*/ 
 #apple {background: -240px -120px;}
 #bn {background: -240px -360px;}
 #bic {background: -240px -240px;}
 #chivas {background: -240px -480px;}
 #embassy {background: -240px -600px;}
 #glenlivet {background: -240px -720px;}
 #godiva {background: -240px -840px;}
 #nivea {background: -240px -960px;}
 #orbitz {background: -240px -1080px;}
 #samsonite {background: -240px -1200px;}
 #snickers{background: -240px -1320px;}
 
 /* North Park Gallery Section
 */
#northpark #gallery .scroll-content {
	width: 11000px; /* the total width of all the scroll content boxes */
}
#northpark #gallery .scroll-content-item {
	float: left;
	width: 1200px; /* width of each content div container */
	height: 540px; /* height of each content div container */
	margin: 10px 0;
	padding: 30px 0;
}
#northpark #gallery .scroll-content-item.two-thirds {width: 960px;}
#northpark #gallery .scroll-content-item.single {width: 720px;}
#northpark #gallery .scroll-content-item img {float: left;}
#northpark #gallery .scroll-content-item .title-block {
	float: left;
	width: 240px;
	height: 540px;
	padding: 235px 70px 0 70px;
	background:url(img/arrow-drawn-right.png) right center no-repeat;
}

/* Contact Page Styles
*/
#contact #page {
	margin-top:0;	
}
#get-in-touch {
	display:block;
	clear:both;
	width:66.667%;
	min-height: 32em;
	padding:3em 0;
	background:#1c1c1c;
	margin: 0 auto;
}
#get-in-touch h1,
#get-in-touch p {
	width: 66.667%;
	margin: 0 auto;
	text-align: center;
}
#get-in-touch h1 {
	margin-bottom: 1em;	
}
#get-in-touch .feedback {
	padding: 9.625em 1em 0 1em;
}
#get-in-touch form,
#get-in-touch .feedback {	
	margin:5% auto 10% auto;
	min-height:22.5em;
	min-width:22.5em;
	width:66.667%;
	border:solid 1px black;
	background-color:#333;
	
	-webkit-border-radius: 0.75em;
	   -moz-border-radius: 0.75em;
		-ms-border-radius: 0.75em;
		 -o-border-radius: 0.75em;
			border-radius: 0.75em;

		-webkit-box-shadow: 0 0 2em rgba(0, 0, 0, 0.75);
		   -moz-box-shadow: 0 0 2em rgba(0, 0, 0, 0.75);
			-ms-box-shadow: 0 0 2em rgba(0, 0, 0, 0.75);
			 -o-box-shadow: 0 0 2em rgba(0, 0, 0, 0.75);
				box-shadow: 0 0 2em rgba(0, 0, 0, 0.75);	
}
#get-in-touch label,
#get-in-touch input,
#get-in-touch textarea { 
	display:block; 
	min-width:90%; 
	margin:1% auto; 
	padding: 0.5em 0 0 0.5em; 
	min-height: 2em; 
	background:none; 
	border:inset 1px rgb(44,44,44);
	color:#F6F6F6;
}
#get-in-touch input,
#get-in-touch textarea { 
	max-width:90%;
	-webkit-border-radius: 4px;
	   -mox-border-radius: 4px;
		 -o-border-radius: 4px;
			border-radius: 4px;
}
#get-in-touch input:focus,
#get-in-touch textarea:focus,
#get-in-touch .button:active {
	border:solid 1px #0095cd;
	-webkit-box-shadow: 0 0 14px #0095cd;
	   -moz-box-shadow: 0 0 14px #0095cd;
		 -o-box-shadow: 0 0 14px #0095cd;
			box-shadow: 0 0 14px #0095cd;
}
#get-in-touch label {
	color:rgb(106,106,106);
	text-transform:uppercase;
	font-size: 0.75em;
	font-family:sans-serif;
	letter-spacing:1px;
	margin:1em 0 0 3.75em;
	border:none;
}
#get-in-touch .button {
	background:#0095cd;
	color:#F6F6F6;
	margin: 2em auto;
	padding:1em 2em;
	cursor:pointer;
	text-transform:uppercase;
}
#get-in-touch .button:hover {
	background:#F6F6F6;
	color:#0095cd;
}

		
/****************************************************************
* 5.0 Navigation
*
* Menus, Buttons, Navigation, etc.
*/

/*
* Project Page Menu
* req: joels.menu.js
*/
/* ----------------------------------------------
  AKA: Joel's Menu JS Styles v.0.0.2
---------------------------------------------- */
#menu-button {
	position: fixed;
	display: block;
	left:4px;
	top: 4px;
	width: 38px;
	height: 38px;
	padding: 8px 0;
	overflow: hidden;
	margin-top: 1.125em;
	vertical-align: top;
	list-style-type: none;
	margin-bottom: 4px;
	z-index:10000;
	cursor: pointer;
	
	background: #222;
	color: #898989;	
	font-size: 13px;
	font-weight: 400;
	text-align: center;
	line-height: 8px;
	
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
	    -ms-border-radius: 5px;
	     -o-border-radius: 5px;
	        border-radius: 5px;
}

#menu-button li {
	width: 24px;
	margin: 2px;
	height: 3px;
	display: inline-block;
	background: #666;
	vertical-align: top;
	
	-webkit-transition: all 150ms ease-in-out;
	   -moz-transition: all 150ms ease-in-out;
	    -ms-transition: all 150ms ease-in-out;
	     -o-transition: all 150ms ease-in-out;
			transition: all 150ms ease-in-out;
}

#menu-button:hover li {
	background: #CCC;
}

#menu {
	display:block;
	opacity:0;
	
	position:fixed;
	left:-360px;
	top:44px;
	width:auto;
	z-index:10001;
	background-color:#1c1c1c;
	border-right:1px solid #000;
	
	-webkit-box-shadow: 0px 0px 50px #000;
	   -moz-box-shadow: 0px 0px 50px #000;
	    -ms-box-shadow: 0px 0px 50px #000;
		 -o-box-shadow: 0px 0px 50px #000;
		 	box-shadow: 0px 0px 50px #000;
	
	-webkit-transition: all 300ms ease-in-out;
	   -moz-transition: all 300ms ease-in-out;
	    -ms-transition: all 300ms ease-in-out;
	     -o-transition: all 300ms ease-in-out;
			transition: all 300ms ease-in-out;
			
	
}
#menu.open {
	opacity:0.88;
	left:0px;
	
	-webkit-transition: all 300ms ease-in-out;
	   -moz-transition: all 300ms ease-in-out;
	    -ms-transition: all 300ms ease-in-out;
	     -o-transition: all 300ms ease-in-out;
			transition: all 300ms ease-in-out;
	
}

#menu li {
	border-bottom:1px solid #000;
	border-top:1px solid #000;
	/*padding:8px 0;*/
	padding:0;
}
#menu li a {
	text-transform:uppercase; 
	font-weight:100; 
	letter-spacing:2pt; 
	text-shadow:#000 1px 0px 1px; 
	color:#f6f6f6; 
	font-size:24px; 
	margin:0 50px;
	display:block;	
}
#menu li:hover {
	background:url(img/arrow-right-white.png) 98% 0.5em no-repeat #0095cd;	
}
#menu li:hover a {
	background-color:#0095cd;
	color:#fff;
	text-shadow:none;

}

/*
* 	Horizontal Scroll Box Nav
* 	req: joels.horz.scrollbox.js
*/
/* ----------------------------------------------
	AKA: Joel's HorzScrollBox JS Styles v.0.0.2
---------------------------------------------- */
div.horz-scroll-box {
	width: 100%;
	height: 360px;
	margin: 2.5em 0;
}

div.scrollWrapper {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

div.scrollableArea {
	position: relative;
	width: auto;
	height: 100%;
}

div.scrollingHotSpotLeft,
div.scrollingHotSpotRight {
	display:none; /* hidden at start, then switched on when needed using JS */
	min-width: 75px;
	width: 6%;
	height: 90px;
	margin-top: 135px;
	position: absolute;
	z-index: 200;
	cursor:pointer;

	background-image:url(img/big_transparent.gif); /* transparent bkgd fix for Internet Explorer 6. */
	background-repeat: repeat;
	background-position: center center;

}

/* Invisible left hotspot */
div.scrollingHotSpotLeft {
	left: 0;	
	-webkit-box-shadow: 10px 0px 50px #000;
	   -moz-box-shadow: 10px 0px 50px #000;
	    -ms-box-shadow: 10px 0px 50px #000;
		 -o-box-shadow: 10px 0px 50px #000;
		 	box-shadow: 10px 0px 50px #000;
			
	-webkit-border-radius: 0 2em 2em 0;
	   -moz-border-radius: 0 2em 2em 0;
		-ms-border-radius: 0 2em 2em 0;
		 -o-border-radius: 0 2em 2em 0;
			border-radius: 0 2em 2em 0;
}

/* Visible left hotspot */
div.scrollingHotSpotLeftVisible {
	background-image: url(img/arrow_left.png);				
	background-repeat: no-repeat;
	opacity: 0.88;
	filter: alpha(opacity = 88); /* Opacity for Internet Explorer. */
	-moz-opacity: 0.88; /* Opacity for really old versions of Mozilla Firefox (0.9 or older) */	
	zoom: 1; /* Trigger "hasLayout" in Internet Explorer 6 or older versions */
}

/* Invisible right hotspot */
div.scrollingHotSpotRight {
	right: 0;	
	-webkit-box-shadow: -10px 0px 50px #000;
	   -moz-box-shadow: -10px 0px 50px #000;
	    -ms-box-shadow: -10px 0px 50px #000;
		 -o-box-shadow: -10px 0px 50px #000;
		 	box-shadow: -10px 0px 50px #000;
			
	-webkit-border-radius: 2em 0 0 2em;
	   -moz-border-radius: 2em 0 0 2em;
		-ms-border-radius: 2em 0 0 2em;
		 -o-border-radius: 2em 0 0 2em;
			border-radius: 2em 0 0 2em;
}

/* Visible right hotspot */
div.scrollingHotSpotRightVisible {
	background-image:url(img/arrow_right.png);
	background-repeat: no-repeat;
	opacity: 0.88;
	filter: alpha(opacity = 88);
	-moz-opacity: 0.88;
	zoom: 1;
}
/****************************************************************
* 6.0 Media Queries
*
* Responsive Design.
*/

/* Mobile */

@media only screen 
and (min-width : 320px) 
and (max-width : 480px) {
	
	

}

/* Tablets */

@media only screen 
and (min-width : 481px) 
and (max-width : 767px) {
	
	
			
}


@media only screen 
and (min-width : 768px) 
and (max-width : 1024px) {


}

/* Vertical Media Queries */

@media only screen 
and (min-width:1040px) 
and (max-height:1024px) {
	

	
}

@media only screen 
and (min-width:768px) 
and (max-height:750px) {
	

		
}

@media only screen  
and (max-height:480px) {
			

}

@media only screen  
and (max-height:360px) {
			

}

/****************************************************************
* 7.0 Effects & Animations
*
* CSS Hooks, Effects, and Animations.
*/
/*ajax loading spinner*/
#loading {
	position:relative;
}
#loading img {
	position:fixed;
	top:50%;
	left:50%;
	margin: -8px 0 0 -8px;
}
/* blink animation */

.blink {
	display:block;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:-1;
	background-color:#D33426;
	opacity:0;
    animation:fade 3333ms infinite;
    -webkit-animation:fade 3333ms infinite;
}
@keyframes fade {
    from { opacity: 0.0; }
    50% { opacity: 0.5; }
    to { opacity: 0.0; }
}
 
@-webkit-keyframes fade {
    from { opacity: 0.0; }
    50% { opacity: 0.5; }
    to { opacity: 0.0; }
}

/****************************************************************