*
{
	margin: 0px auto;
	padding: 0px;
	
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-touch-callout: none;
	
	-webkit-font-smoothing: antialiased;
	
	cursor: default;
	
	pointer-events: none;
}

html
{
	width: 100%;
	height: 100%;
	
	-webkit-user-select: none;
	
	background-color: #000000;
	
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	
	overflow: hidden;
}

body
{
	width: 100%;
	height: 100%;
	
	text-align: center;
	
	overflow: hidden;
}

p
{
	padding-bottom: 20px;
}

.App
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	
	width: 100%;
	height: 100%;
	
	overflow: hidden;
}

.Top
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 0px;
	
	width: 100%;
	height: 0px;
	
	overflow: visible;
	
	z-index: 1000;
}

.Bottom
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	bottom: 0px;
	
	width: 100%;
	height: 0px;
	
	overflow: visible;
}

.Header
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 0px;
	
	height: 44px;
	
	overflow: visible;
}

.SubHeader
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 44px;
	
	height: 30px;
	
	overflow: visible;
}

.Footer
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	bottom: 0px;
	
	height: 49px;
	
	overflow: visible;
}

.Shadow
{
	position: absolute;
	
	left: -10px;
	right: -10px;
	top: 0px;
	bottom: 0px;
	
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

.Glow
{
	position: absolute;
	
	bottom: -2px;
	
	width: 100%;
	height: 7px;
	
	background-image: url(glow_sprite.png);
	background-repeat: no-repeat;
	background-size: 320px 60px;
	background-position: center -10px;
	
	-webkit-animation-duration: 60s;
	-webkit-animation-name: ColorRotation;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
}

#AppHeader
{
	/*
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	*/
	
	background-color: #333333;
	
	background-image: -moz-linear-gradient(top, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.05) 100%); /* FF3.6+ */
	background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.05) 100%); /* Chrome10+,Safari5.1+ */
	background-image: -o-linear-gradient(top, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.05) 100%); /* Opera 11.10+ */
	background-image: -ms-linear-gradient(top, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.05) 100%); /* IE10+ */
	background-image: linear-gradient(to bottom, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.05) 100%); /* W3C */
	
	box-shadow: inset 0px 1px 0px rgba(255,255,255,0.05), inset 0px -1px 0px rgba(0,0,0,1), inset 0px -2px 0px rgba(255,255,255,0.05);
	
	pointer-events: auto;
}

#AppSubHeader
{
	background-color: #333333;
	
	box-shadow: inset 0px -1px 0px rgba(0, 0, 0, 1), inset 0px -2px 0px rgba(255, 255, 255, 0.05);
	
	pointer-events: auto;
}

#AppFooter
{
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	
	box-shadow: inset 0px 1px 0px rgba(0, 0, 0, 1), inset 0px 2px 0px rgba(255, 255, 255, 0.2);

	pointer-events: auto;
}

.TopButton
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	
	pointer-events: auto;
}

.NavigationBar
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 0px;
	
	width: 100%;
	height: 44px;
}

.HeaderButtons
{
	position: relative;
	
	width: 100%;
	height: 44px;
}

.BackButton
{
	position: absolute;
	
	left: 0px;
	
	width: 50px;
	height: 44px;
	
	background-image: url(backbutton_sprite_white@2x.png);
	background-size: 50px 88px;
	background-position: 0px 0px;
	
	pointer-events: none;
	
	opacity: 0;
	
	-webkit-transition-property: opacity;
	-webkit-transition-timing-function: linear;
	-webkit-transition-duration: 0.15s;
	
	-moz-transition-property: opacity;
	-moz-transition-timing-function: linear;
	-moz-transition-duration: 0.15s;
	
	-ms-transition-property: opacity;
	-ms-transition-timing-function: linear;
	-ms-transition-duration: 0.15s;
}

.BackButton.On
{
	opacity: 1;
	
	pointer-events: auto;
}

.BackButton.Disabled
{
	pointer-events: none;
}

.BackButton.Pressed
{
	background-position: 0px -44px;
}

.CloseButton
{
	position: absolute;
	
	left: 0px;
	
	width: 40px;
	height: 44px;
	
	background-image: url(closebutton_sprite_white@2x.png);
	background-size: 40px 132px;
	background-position: 0px 0px;
	
	pointer-events: auto;
	
	display: none;
}

.CloseButton.Pressed
{
	background-position: 0px -44px;
}

.Viewport
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	
	width: 100%;
	
	overflow: hidden;
}

.View
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	
	overflow: hidden;
	
	display: none;
}

.View.Selected
{
	display: block;
}

.SubViews
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	
	overflow: visible;
}

.SubView
{
	position: absolute;
	
	width: 100%;
	height: 100%;
	
	overflow: hidden;
	
	display: none;
}

.SubView.Selected
{
	display: block;
}

.Content
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 44px;
	bottom: 49px;
	
	background-color: transparent;
	
	overflow: hidden;
	overflow-y: scroll;
	
	-webkit-overflow-scrolling: touch;
	
	pointer-events: auto;
}

.Content.NoScroll
{
	overflow-x: hidden;
	overflow-y: hidden;
	
	-webkit-overflow-scrolling: auto;
}

.SubViewTitles
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
}

.SubViewMainTitle,
.SubViewTitle,
.SubViewSubTitle
{
	position: absolute;
	
	left: 60px;
	right: 60px;
	height: 44px;
	
	text-align: center;
	font-size: 20px;
	line-height: 42px;
	font-weight: bold;
	color: #FFFFFF;
	
	text-shadow: 0px 1px 2px rgba(0, 0, 0, 1), 0px 1px 2px rgba(0, 0, 0, 1);
	
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
}

.SubViewMainTitle
{
	display: none;
}

.ScrollView
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	
	background-color: #EEEEEE;
	
	overflow: hidden;
	overflow-y: scroll;
	
	-webkit-overflow-scrolling: touch;
	
	pointer-events: auto;
}

.ScrollContent
{
	position: static;
	
	min-height: 101%;
	
	pointer-events: auto;
	
	overflow-y: visible;
}

.OverflowScroll
{
	overflow: hidden;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	
	pointer-events: auto;
}

.Anchor
{
	position: relative;
	
	height: 0px;
}

.SwipeView
{
	position: relative;
	
	width: 100%;
	height: 100%;
	
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(224,224,224,0)), to(rgba(224,224,224,1)));
	box-shadow: inset 0px -1px 0px rgba(0,0,0,0.15), 0px 1px 0px #FFFFFF;
	
	overflow: hidden;
	
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
	-webkit-perspective: 1000;
	
	pointer-events: auto;
}

/*
.SwipeView *
{
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
	-webkit-perspective: 1000;
}
*/

/*
.SwipeView *
{
	pointer-events: auto;
}
*/

.Slides
{
	position: absolute;
	
	width: 100%;
	height: 100%;
	
	pointer-events: auto;
	
	overflow: hidden;
}

.Slide
{
	position: relative;
	float: left;
	
	width: 100%;
	height: 100%;
	
	overflow: hidden;
	
	-webkit-transform: translate3d(0,0,0);
}

.Sliding
{
	-webkit-transition-duration: 0.25s;
}

.MiddleMiddle
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	
	display: -webkit-box;
	-webkit-box-pack: center;
	-webkit-box-align: center;
	
	display: -moz-box;
	-moz-box-pack: center;
	-moz-box-align: center;

	display: box;
	box-pack: center;
	box-align: center;
	
	width: 100%;
	height: 100%;
	
	overflow: hidden;
}

.Spacer_5
{
	position: relative;
	height: 5px;
}

.Spacer_10
{
	position: relative;
	height: 10px;
}

.Spacer_20
{
	position: relative;
	height: 20px;
}

.Spacer_50
{
	position: relative;
	height: 50px;
}

.SwipeIndicatorsContainer
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	bottom: 0px;
	
	height: 20px;
}

.SwipeIndicators
{
	position: relative;
	
	display: inline-block;
	
	width: auto;
	height: 20px;
}

.SwipeIndicator,
.SwipeArrowLeft,
.SwipeArrowRight
{
	position: relative;
	
	float: left;
	
	top: 0px;
	
	width: 20px;
	height: 20px;
	
	background-image: url(swipe_sprite@2x.png);
	background-repeat: no-repeat;
	background-size: 90px 60px;
	background-position: -35px 0px;
	
	-webkit-backface-visibility: hidden;
	
	pointer-events: auto;
}

.SwipeIndicator
{
	width: 10px;
	height: 2px;
	
	border-radius: 1px;
	
	margin-top: 9px;
	margin-left: 5px;
	margin-right: 5px;
	
	background-image: none;
	background-color: rgba(0,0,0,0.1);
	box-shadow: 0px 0.5px 1px rgba(255,255,255,1), inset 0px 0.5px 1px rgba(0,0,0,0.35);
}

.SwipeIndicator:hover
{
	background-color: rgba(0,0,0,0.35);
	background-position: -35px -40px;
}

.SwipeIndicator.Selected,
.SwipeIndicator.Pressed
{
	background-color: rgba(0,0,0,0.5);
	background-position: -35px -20px;
}

.SwipeArrowLeft
{
	width: 30px;
	
	background-position: 0px 0px;
	
	display: none;
}

.SwipeArrowRight
{
	width: 30px;
	
	background-position: -60px 0px;
	
	display: none;
}

.SwipeArrowLeft:hover
{
	background-position: 0px -40px;
}

.SwipeArrowRight:hover
{
	background-position: -60px -40px;
}

.SwipeArrowLeft.Pressed
{
	background-position: 0px -20px;
}

.SwipeArrowRight.Pressed
{
	background-position: -60px -20px;
}

.Cover
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	
	background-color: #333333;
	
	box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.05), 0px 0px 10px rgba(0, 0, 0, 1);
	
	pointer-events: auto;
	
	z-index: 1000;
}

.Install
{
	position: relative;
	
	width: 320px;
	height: 100px;
	
	background-image: url(install.png);
	background-repeat: no-repeat;
	background-size: 320px 100px;
	background-position: center center;
	
	overflow: hidden;
	
	display: none;
}

.Update
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	bottom: 0px;
	
	width: 100%;
	height: 0px;
	
	display: none;
}

.UpdateLabel
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	bottom: 78px;
	
	width: 100%;
	
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	color: #FFFFFF;
	
	text-shadow: 0px 1px 2px rgba(0, 0, 0, 1), 0px 1px 2px rgba(0, 0, 0, 1);
	
	overflow: visible;
}

.AppMessage
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 50%;
	
	margin-top: 75px;
	
	width: 100%;
	
	text-align: center;
	font-size: 18px;
	line-height: 24px;
	font-weight: normal;
	
	color: rgba(0,0,0,0.5);
	
	text-shadow: 0px 1px 1px rgba(255,255,255,0.1);
	
	overflow: visible;
	
	display: none;
}

.UpdateBar_Track
{
	position: absolute;
	
	left: 60px;
	right: 60px;
	bottom: 60px;
	
	height: 8px;
	
	background: -webkit-gradient(linear, left top, left bottom, from(#111111), to(#333333));
	box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 1), 0px 2px 0px rgba(255, 255, 255, 0.15);
	
	-webkit-border-radius: 4px;
	
	overflow: visible;
}

.UpdateBar
{
	position: absolute;
	
	-webkit-border-radius: 4px;
	
	width: 0%;
	height: 8px;
	
	background: -webkit-gradient(linear, left top, left bottom, from(#3F8CFF), to(#014DC0));
	box-shadow: inset 0px 1px 0px #79AEFF;
}

h1,
h2,
h3
{
	font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
	font-weight: normal;
	color: #333333;
	
	padding-bottom: 20px;
}

h1
{
	position: relative;
	
	margin-left: -2px;
	
	font-size: 40px;
}

h2
{
	font-size: 22px;
	padding-bottom: 10px;
}

h3
{
	font-size: 22px;
	padding-bottom: 0px;
}

i
{
	font-weight: lighter;
}

ul
{
	font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
	font-weight: normal;
	color: #333333;
	padding-bottom: 20px;
}

li
{
	display: block;
}

blockquote
{
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
}

em
{
	color: #111111;
	
	font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
	
	font-weight: 500;
}

#Home_PosterImage
{
	background-image: url(poster_home.jpg);
}

#About_PosterImage
{
	background-image: url(poster_about.jpg);
}

#Work_PosterImage
{
	background-image: url(poster_work.jpg);
}

#Thoughts_PosterImage
{
	background-image: url(poster_thoughts.jpg);
}

#Contact_PosterImage
{
	background-image: url(poster_contact.jpg);
}

.ScrollContentCenter
{
	position: relative;
	
	width: 600px;
	
	font-family: "GillSans-Light", "Gill Sans Light", "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
	
	color: #333333;
	font-size: 17px;
	
	line-height: 22px;

	text-shadow: 0px 1px 1px #FFFFFF;
	text-align: left;
	
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 50px;
	padding-bottom: 0px;
	
	overflow: visible;
}

.Me
{
	position: relative;
	
	margin-bottom: 50px;
	margin-left: -50px;
	
	width: 700px;
	height: 780px;
	
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url(me.jpg);
}

.Skills1,
.Skills2
{
	position: relative;
	
	float: left;
	
	margin-left: 0px;
	
	width: 290px;
}

.Skills2
{
	float: right;
}

.SubHeaderCenter
{
	position: relative;
	
	width: 640px;
	height: 30px;
	
	box-shadow: -1px 0px 0px 0px #151515, 1px 0px 0px 0px #151515, -2px 0px 0px 0px rgba(255,255,255,0.03), 2px 0px 0px 0px rgba(255,255,255,0.03), inset 1px 0px 0px 0px rgba(255,255,255,0.03), inset -1px 0px 0px 0px rgba(255,255,255,0.03);
	
	text-align: center;
	
	overflow: visible;
}

.SubHeaderTitle
{
	position: absolute;
	
	width: 100%;
	height: 30px;
	
	text-align: center;
	
	overflow: visible;
	
	color: #FFFFFF;
	text-shadow: 0px 1px 2px #000000;
	
	font-size: 15px;
	line-height: 30px;
	
	font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
	font-weight: normal;
	letter-spacing: 2px;
	
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	
	opacity: 0;
	
	-webkit-transition-property: opacity;
	-webkit-transition-timing-function: linear;
	-webkit-transition-duration: 0.35s;
	
	-moz-transition-property: opacity;
	-moz-transition-timing-function: linear;
	-moz-transition-duration: 0.35s;
	
	-ms-transition-property: opacity;
	-ms-transition-timing-function: linear;
	-ms-transition-duration: 0.35s;
}

.SubHeaderTitle.On
{
	opacity: 1;
}

.SubHeaderMenu
{
	position: absolute;
	
	width: 100%;
	height: 30px;
	
	text-align: center;
	
	overflow: visible;
	
	opacity: 0;
	
	-webkit-transition-property: opacity;
	-webkit-transition-timing-function: linear;
	-webkit-transition-duration: 0.35s;
	
	-moz-transition-property: opacity;
	-moz-transition-timing-function: linear;
	-moz-transition-duration: 0.35s;
	
	-ms-transition-property: opacity;
	-ms-transition-timing-function: linear;
	-ms-transition-duration: 0.35s;
}

.SubHeaderMenu.On
{
	opacity: 1;
}

.MenuItem
{
	display: inline-block;
	
	/*
	For 5
	width: 128px;
	*/
	
	width: 214px;
	height: 30px;
	
	text-align: center;
	
	/*
	color: #151515;
	text-shadow: 0px 1px 0px rgba(255,255,255,0.1);
	*/
	
	color: #777777;
	text-shadow: 0px 1px 2px #000000;
	
	/*
	box-shadow: -1px 0px 0px 0px #151515, inset 1px 0px 0px 0px rgba(255,255,255,0.05), inset -2px 0px 0px 0px rgba(255,255,255,0.05);
	*/
	
	font-size: 15px;
	line-height: 30px;
	
	font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
	font-weight: normal;
	letter-spacing: 2px;
	
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	
	overflow: hidden;
}

.SubHeaderMenu.On .MenuItem
{
	pointer-events: auto;
	
	cursor: pointer;
}

.MenuItem.Disabled
{
	pointer-events: none;
}

.MenuItem.Middle
{
	width: 212px;
	box-shadow: -1px 0px 0px 0px #151515, 1px 0px 0px 0px #151515, 2px 0px 0px 0px rgba(255,255,255,0.03), -2px 0px 0px 0px rgba(255,255,255,0.03), inset 1px 0px 0px 0px rgba(255,255,255,0.03), inset -1px 0px 0px 0px rgba(255,255,255,0.03);
}

.MenuItem.Selected
{
	color: #FFFFFF;
	text-shadow: 0px 1px 2px #000000;
}

.MenuItem.Pressed
{
	color: #FFFFFF;
	text-shadow: 0px 1px 2px #000000;
	background-color: rgba(255,255,255,0.05);
}

.ScrollView,
.SubViewMainTitle,
.SubViewTitle,
.SubViewSubTitle,
.ProjectDetails
{
	font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
	font-weight: normal;
	
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
}

.ScrollView
{
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	
	/*
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
	-webkit-perspective: 1000;
	*/
}

#About_ScrollView,
#Contact_ScrollView,
#SelectedProject_ScrollView
{
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
}

a
{
	position: relative;
	
	font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
	font-weight: normal;
	
	color: #0099FF;
	
	text-decoration: none;
	text-shadow: 0px 1px 1px #FFFFFF;
	text-align: left;
	
	pointer-events: auto;
	
	cursor: pointer;
	
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
}

a:active,
a:hover,
a.Pressed
{
	color: #990066;
}

a.Disabled
{
	color: #666666;
	pointer-events: none;
}

.SubViewMainTitle,
.SubViewTitle,
.SubViewSubTitle
{
	letter-spacing: 4px;
	font-size: 22px;
}

#SelectedProject_ScrollContent
{
	width: 640px;
}

.Dot
{
	position: absolute;
	
	left: 50%;
	top: 50%;
	
	margin-left: -8px;
	margin-top: -8px;
	
	width: 16px;
	height: 16px;
	
	border-radius: 8px;
	
	background-color: #0099FF;
	background-image: -webkit-linear-gradient(top, #00CCFF 0%, #0066FF 100%);
	
	box-shadow: inset 0px 0px 0px 2px #FFFFFF, 0px 1px 2px rgba(0,0,0,0.5);
}

.Ring
{
	position: absolute;
	
	left: 50%;
	top: 50%;
	
	margin-left: -25px;
	margin-top: -25px;
	
	width: 50px;
	height: 50px;
	
	border-radius: 25px;
	
	background-color: rgba(0,153,255,0.5);
	
	box-shadow: inset 0px 0px 0px 2px #0099FF;
	
	opacity:1;
	
	-webkit-transform: scale3d(0,0,1);
	-moz-transform: scale3d(0,0,1);
	-ms-transform: scale3d(0,0,1);
	
	-webkit-animation-duration: 3s;
	-webkit-animation-name: Ping;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease-out;
	-webkit-animation-play-state: paused;
}

.Ring.On
{
	-webkit-animation-play-state: running;
}

/*
#Ring_1
{
	-webkit-animation-delay: 0s;
}

#Ring_2
{
	-webkit-animation-delay: 0.25s;
}
*/

.TheEnd
{
	position: relative;
	
	height: 50px;
	
	background-size: 30px 30px;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url(theend.png);
	
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

#About_View .TheEnd
{
	height: 30px;
	background-position: center -10px;
}

.ContactLeft
{
	position: relative;
	
	float: left;
	
	margin-left: 0px;
	
	width: 200px;
}

.ContactRight
{
	position: relative;
	
	float: right;
}

.BusinessCards
{
	position: relative;
	
	width: 450px;
	height: 350px;
	
	margin-right: -80px;
	
	background-size: 450px 350px;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url(raven_businesscards@2x.png);
}

.Poster
{
	position: relative;
	
	top: -1px;
	
	width: 100%;
	height: 320px;
	
	background-color: #EEEEEE;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0.1)), to(rgba(0,0,0,0.1)));
	box-shadow: 0px 1px 0px #FFFFFF;
	
	overflow: hidden;
	
	background-size: cover;
	background-repeat: no-repeat;
	
	-webkit-perspective: 1000;
	-webkit-transform-style: preserve-3d;
	
	-moz-transform-style: preserve-3d;
	-moz-perspective: 1000;
	
	-ms-transform-style: preserve-3d;
	-ms-perspective: 1000;
}

.PosterSizer
{
	display: none;
}

.PosterContainer
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	
	-webkit-perspective: 1000;
	-webkit-transform-style: preserve-3d;
	
	
	-moz-transform-style: preserve-3d;
	-moz-backface-visibility: hidden;
	-moz-perspective: 1000;
	
	-ms-transform-style: preserve-3d;
	-ms-backface-visibility: hidden;
	-ms-perspective: 1000;
}

.PosterImage
{
	position: absolute;
	
	width: 112%;
	height: 112%;
	
	left: -6%;
	top: -6%;
	
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	
	-webkit-transition-property: opacity, -webkit-transform;
	-webkit-transition-timing-function: linear, ease-in-out;
	-webkit-transition-duration: 0.5s, 6s;
	-webkit-transform-origin: 50% 50%;
	/*
	-webkit-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	*/
	
	-moz-transition-property: opacity, -moz-transform;
	-moz-transition-timing-function: linear, ease-in-out;
	-moz-transition-duration: 0.5s, 6s;
	-moz-transform-origin: 50% 50%;
	-moz-transform-style: preserve-3d;
	-moz-backface-visibility: hidden;
	
	-ms-transition-property: opacity, -ms-transform;
	-ms-transition-timing-function: linear, ease-in-out;
	-ms-transition-duration: 0.5s, 6s;
	-ms-transform-origin: 50% 50%;
	-ms-transform-style: preserve-3d;
	-ms-backface-visibility: hidden;
	
	-webkit-perspective: 1000;
	-moz-perspective: 1000;
	-ms-perspective: 1000;
	
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
}

.PosterImage.Reset
{
	opacity: 0;
	
	-webkit-transition-duration: 0s;
	-moz-transition-duration: 0s;
	-ms-transition-duration: 0s;

	-webkit-transform: scale3d(0.9, 0.9, 1);
	-moz-transform: scale3d(0.9, 0.9, 1);
	-ms-transform: scale3d(0.9, 0.9, 1);
}

.BottomLine
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	bottom: 0px;
	
	height: 1px;
	
	background-color: rgba(0,0,0,0.25);
	
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
}

.TopLine
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 0px;
	
	height: 1px;
	
	background-color: rgba(0,0,0,0.25);
	
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
}

.OverlayView
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	
	z-index: 100;
	
	display: none;
}

.OverlayBackground
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	
	/*
	background-color: rgba(238, 238, 238, 0.85);
	*/
	background-color: #000000;
	
	opacity: 0;
	pointer-events: none;
	
	-webkit-transform: translate3d(0,0,0);
	-webkit-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	
	-webkit-transition-property: opacity;
	-webkit-transition-timing-function: linear;
	-webkit-transition-duration: 0.25s;
	
	-moz-transition-property: opacity;
	-moz-transition-timing-function: linear;
	-moz-transition-duration: 0.25s;
	
	-ms-transition-property: opacity;
	-ms-transition-timing-function: linear;
	-ms-transition-duration: 0.25s;
}

.OverlayBackground.On
{
	opacity: 0.75;
	pointer-events: auto;
}

.OverlayBackground.Transparent
{
	pointer-events: none;
}

.OverlayPanelContainer
{
	position: absolute;
	
	top: 0px;
	left: 0px;
	
	overflow: visible;
	
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	
	-webkit-transition-property: -webkit-transform;
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition-duration: 0.35s;
	-webkit-transform-origin: 50% 50%;
	-webkit-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	
	-moz-transition-property: -moz-transform;
	-moz-transition-timing-function: ease-in-out;
	-moz-transition-duration: 0.35s;
	-moz-transform-origin: 50% 50%;
	-moz-transform-style: preserve-3d;
	-moz-backface-visibility: hidden;
	
	-ms-transition-property: -ms-transform;
	-ms-transition-timing-function: ease-in-out;
	-ms-transition-duration: 0.35s;
	-ms-transform-origin: 50% 50%;
	-ms-transform-style: preserve-3d;
	-ms-backface-visibility: hidden;
	
	transition-property: transform;
	transition-timing-function: ease-in-out;
	transition-duration: 0.35s;
	transform-origin: 50% 50%;
	transform-style: preserve-3d;
	backface-visibility: hidden;
	
	-webkit-perspective: 1000;
	-moz-perspective: 1000;
	-ms-perspective: 1000;
	perspective: 1000;
}

.OverlayPanel
{
	position: absolute;
	
	top: -210px;
	left: -160px;
	
	width: 320px;
	height: 420px;
	
	box-shadow: 0px 0px 2px rgba(0,0,0,0.5);
	
	-webkit-transition-property: -webkit-transform;
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition-duration: 0.35s;
	-webkit-transform-origin: 50% 50%;
	-webkit-transform-style: preserve-3d;
	-webkit-backface-visibility: visible;
	
	-moz-transition-property: -moz-transform;
	-moz-transition-timing-function: ease-in-out;
	-moz-transition-duration: 0.35s;
	-moz-transform-origin: 50% 50%;
	-moz-transform-style: preserve-3d;
	-moz-backface-visibility: visible;
	
	-ms-transition-property: -ms-transform;
	-ms-transition-timing-function: ease-in-out;
	-ms-transition-duration: 0.35s;
	-ms-transform-origin: 50% 50%;
	-ms-transform-style: preserve-3d;
	-ms-backface-visibility: visible;
	
	transition-property: transform;
	transition-timing-function: ease-in-out;
	transition-duration: 0.35s;
	transform-origin: 50% 50%;
	transform-style: preserve-3d;
	backface-visibility: visible;
}

.SelectedProject
{
	position: relative;
	
	width: 640px;
	height: 100%;
	
	box-shadow: inset 0px 0px 0px 1px #FFFFFF, 0px 0px 2px rgba(0,0,0,0.5);
	background-color: #EEEEEE;
	
	display: none;
}

.FaceFront,
.FaceBack
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	
	background-color: #EEEEEE;
	
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	
	-webkit-transition-property: background-color;
	-webkit-transition-timing-function: linear;
	-webkit-transition-duration: 0.25s;
	
	-moz-transition-property: background-color;
	-moz-transition-timing-function: linear;
	-moz-transition-duration: 0.25s;
	
	-ms-transition-property: background-color;
	-ms-transition-timing-function: linear;
	-ms-transition-duration: 0.25s;
}

.FaceBack
{
	background-color: #FAFAFA;
}

.FaceFront.Dark,
.FaceBack.Dark
{
	background-color: #CCCCCC;
}

.FlipVertical
{
	-webkit-transform: rotateX(180deg);
}

.FlipHorizontal
{
	-webkit-transform: rotateY(180deg);
}

.HeaderLogo
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	
	background-image: url(raven_logo_header@2x.png);
	background-repeat: no-repeat;
	background-size: 80px 44px;
	
	background-position: center center;
}

.Under
{
	position: relative;
	
	height: 1px;
}

.UnderLogo
{
	position: relative;
	
	left: 0px;
	right: 0px;
	top: -74px;
	
	height: 74px;
	
	background-image: url(raven_logo_inset_under@2x.png);
	background-repeat: no-repeat;
	background-size: 160px 74px;
	
	background-position: center center;
	
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	
	box-shadow: 0px 1px 0px #CCCCCC, inset 0px -1px 0px #FFFFFF;
}

#Work
{
	-webkit-user-select: none;
	user-select: none;
}

::selection
{
	background: rgba(0,0,0,0);
}

#Work_View .UnderLogo
{
	box-shadow: 0px 1px 0px #FFFFFF, inset 0px -1px 0px #CCCCCC;
}

.TopHR,
.BottomHR
{
	position: absolute;
	
	width: 100%;
	height: 0px;

	border-top-style: solid;
	border-top-color: #CCCCCC;
	border-top-width: 1px;
	
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	border-bottom-width: 1px;
}

.TopHR
{
	top: -1px;
}

.BottomHR
{
	bottom: -1px;
}

.Work
{
	position: relative;
	
	min-height: 100%;
}

.Content
{
	top: 74px;
	bottom: 0px;
}

.Clear
{
	clear: both;
}

.Project,
.OpenProject
{
	position: absolute;
	
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	
	overflow: visible;
}

.OpenProject
{
	position: relative;
}

.ProjectContainer
{
	position: relative;
	
	float: left;
	
	width: 320px;
	height: 420px;
	
	overflow: visible;
	
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	
	pointer-events: auto;
}

.ProjectContainer.Pressed
{
	
}

.BigLeftButton,
.BigRightButton
{
	position: absolute;
	
	top: 0px;
	bottom: 0px;
	
	width: 25%;
	
	pointer-events: auto;
	
	-webkit-transition-property: opacity;
	-webkit-transition-duration: 0.25s;
	-webkit-transition-timing-function: linear;
	
	opacity: 0;
}

.BigLeftButton
{
	left: 0px;
}

.BigRightButton
{
	right: 0px;
}

.SwipeView:hover .BigLeftButton,
.SwipeView:hover .BigRightButton
{
	opacity: 1;
}

.BigLeftButton::after,
.BigRightButton::after
{
	content: "";
	
	position: absolute;
	
	top: 50%;
	
	margin-top: -30px;
	
	width: 60px;
	height: 60px;
	
	background-image: url(arrows_sprite@2x.png);
	background-size: 120px 180px;
	background-repeat: no-repeat;
}

.BigLeftButton::after
{
	left: 20px;
	
	background-position: left top;
}

.BigRightButton::after
{
	right: 20px;
	
	background-position: right top;
}

.BigLeftButton:hover::after
{
	background-position: left center;
}

.BigRightButton:hover::after
{
	background-position: right center;
}

.BigLeftButton:active::after
{
	background-position: left bottom;
}

.BigRightButton:active::after
{
	background-position: right bottom;
}

.ProjectDetails
{
	position: relative;
	
	height: 90px;
	
	margin-left: 10px;
	margin-right: 10px;
	
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
}

.OpenProject .ProjectDetails
{
	height: auto;
	
	margin-left: 20px;
	margin-right: 20px;
}

.More
{
	position: absolute;
	
	right: -10px;
	top: 13px;
	
	width: 44px;
	height: 44px;
	
	background-image: url(more_sprite@2x.png);
	background-size: 44px 88px;
	background-position: 0px 0px;
	
	/*
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	*/
}

.More.Pressed,
.More.Selected
{
	background-position: 0px -44px;
}

.ProjectContainer.Pressed .More
{
	background-position: 0px -44px;
}

.ProjectTitle,
.ProjectTags,
.ProjectDate
{
	position: absolute;
	
	left: 0px;
	right: 0px;

	text-shadow: 0px 1px 1px #FFFFFF;
	text-align: left;
}

.ProjectTitle
{
	top: -4px;
	
	height: 20px;
	
	color: #333333;
	font-size: 22px;
	
	line-height: 22px;
}

.ProjectTags
{
	top: 22px;
	
	height: 15px;
	
	color: #0099FF;
	font-size: 12px;
	
	line-height: 12px;
}

.ProjectDate
{
	top: 38px;
	
	height: 15px;
	
	color: #AAAAAA;
	font-size: 12px;
	
	line-height: 12px;
}

.ProjectDescription
{
	position: relative;
	
	padding-top: 65px;
	
	font-family: "GillSans-Light", "Gill Sans Light", "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
	
	color: #333333;
	font-size: 17px;
	
	line-height: 20px;

	text-shadow: 0px 1px 1px #FFFFFF;
	text-align: left;
}

.ProjectDescription ul
{
	font-family: inherit;
	font-weight: normal;
	color: #333333;
	padding-bottom: 0px;
}

.ProjectDescription li
{
	display: list-item;
	
	margin-left: 20px;
}

.ProjectLink,
.ProjectDownload
{
	position: relative;
	
	height: 30px;
	
	color: #0099FF;
	font-size: 17px;
	
	line-height: 30px;

	text-shadow: 0px 1px 1px #FFFFFF;
	text-align: left;
	
	cursor: pointer;
}

.ProjectLink a,
.ProjectDownload a
{
	position: relative;
	
	height: 30px;
	
	font-size: 17px;
	
	line-height: 30px;
	
	text-decoration: none;
	text-shadow: 0px 1px 1px #FFFFFF;
	text-align: left;
	
	pointer-events: auto;
	
	cursor: pointer;
}

.ProjectIcons
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 55px;
	
	height: 20px;
	
	text-align: left;
}

.ItemsIcon,
.DescriptionIcon,
.ExpandIcon,
.LinksIcon,
.IframeIcon,
.DownloadsIcon
{
	position: relative;
	
	display: inline-block;
	
	/*
	margin-right: 5px;
	*/
	
	width: 20px;
	height: 20px;
	
	background-image: url(projecticons_sprite@2x.png);
	background-position: 0px 0px;
	background-size: 40px 120px;
}

.LinksIcon.Disabled
{
	opacity: 0.5;
}

.DescriptionIcon
{
	background-position: 0px -20px;
}

.ExpandIcon
{
	background-position: 0px -40px;
}

.LinksIcon
{
	background-position: 0px -60px;
}

.DownloadsIcon
{
	background-position: 0px -80px;
}

.IframeIcon
{
	background-position: 0px -100px;
}

.OpenProject .LinksIcon
{
	top: 5px;
	background-position: -20px -60px;
}

.OpenProject .DownloadsIcon
{
	top: 4px;
	background-position: -20px -80px;
}

.ProjectImageContainer
{
	position: relative;
	
	width: 300px;
	height: 300px;
	
	margin-top: 10px;
	margin-bottom: 20px;
	
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	
	overflow: hidden;
}

.ProjectImage
{
	position: absolute;
	
	width: 100%;
	height: 100%;
	
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	
	overflow: hidden;
	
	opacity: 0;
	
	-webkit-transition-property: opacity;
	-webkit-transition-timing-function: linear;
	-webkit-transition-duration: 0.25s;
	
	-moz-transition-property: opacity;
	-moz-transition-timing-function: linear;
	-moz-transition-duration: 0.25s;
	
	-ms-transition-property: opacity;
	-ms-transition-timing-function: linear;
	-ms-transition-duration: 0.25s;
}

.ProjectIframe
{
	position: absolute;
	
	width: 100%;
	height: 100%;
	
	left: 0px;
	top: 0px;
	
	pointer-events: auto;
	
	border: none;
	
	opacity: 0;
	
	-webkit-transition-property: opacity;
	-webkit-transition-timing-function: linear;
	-webkit-transition-duration: 0.25s;
	
	-moz-transition-property: opacity;
	-moz-transition-timing-function: linear;
	-moz-transition-duration: 0.25s;
	
	-ms-transition-property: opacity;
	-ms-transition-timing-function: linear;
	-ms-transition-duration: 0.25s;
}

.ProjectImageContainer.Box .ProjectBorder
{
	position: absolute;
	
	width: 100%;
	height: 100%;
	
	left: 0px;
	top: 0px;
	
	box-shadow: inset 0px 0px 0px 3px #FFFFFF;
	
	pointer-events: none;
	
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
}

.ProjectImageContainer.Box .ProjectBorder.Blocking,
.ProjectBorder.Blocking
{
	pointer-events: auto;
}

.ProjectImage.Loaded,
.ProjectIframe.Loaded
{
	opacity: 1;
}

.ProjectImageContainer.Box .ProjectImage
{
	box-shadow: inset 0px 0px 0px 3px #FFFFFF;
}

.ProjectImageContainer.Box
{
	background-image: url(box_default@2x.png);
	background-size: contain;
	
	box-shadow: inset 0px 0px 0px 3px #FFFFFF, 0px 1px 2px rgba(0,0,0,0.5);
}

.ProjectImageContainer.iPhone4
{
	background-image: url(iphone4_default@2x.png);
	background-size: contain;
}

.ProjectImageContainer.iPhone5
{
	background-image: url(iphone5_default@2x.png);
	background-size: contain;
}

.OpenProject .ProjectImageContainer
{
	width: 600px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.OpenProject .ProjectImageContainer.Box
{
	height: 600px;
}

.OpenProject .ProjectImageContainer.iPhone4
{
	height: 760px;
}

.OpenProject .ProjectImageContainer.iPhone5
{
	height: 820px;
}

.SwipeView.Box,
.SwipeView.Iframe
{
	height: 640px;
}

.SwipeView.Iframe
{
	-webkit-backface-visibility: visible;
	-webkit-transform-style: flat;
	-webkit-perspective: none;
}

.SwipeView.iPhone4
{
	height: 800px;
}

.SwipeView.iPhone5
{
	height: 860px;
}

.Logo
{
	position: absolute;
	
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	
	background-image: url(raven_logo_inset@2x.png);
	background-position: center center;
	background-size: 150px 150px;
	background-repeat: no-repeat;
}

@-webkit-keyframes Ping
{
	0%
	{
		-webkit-transform: scale3d(0,0,1);
		opacity: 1;
	}
	50%
	{
		-webkit-transform: scale3d(2,2,1);
		opacity: 0;
	}
	100%
	{
		-webkit-transform: scale3d(2,2,1);
		opacity: 0;
	}
}

@-webkit-keyframes ColorRotation
{
	0%
	{
		-webkit-filter: hue-rotate(0deg);
	}
	10%
	{
		-webkit-filter: hue-rotate(-54deg);
	}
	20%
	{
		-webkit-filter: hue-rotate(-108deg);
	}
	30%
	{
		-webkit-filter: hue-rotate(-162deg);
	}
	40%
	{
		-webkit-filter: hue-rotate(-216deg);
	}
	50%
	{
		-webkit-filter: hue-rotate(-270deg);
	}
	60%
	{
		-webkit-filter: hue-rotate(-216deg);
	}
	70%
	{
		-webkit-filter: hue-rotate(-162deg);
	}
	80%
	{
		-webkit-filter: hue-rotate(-108deg);
	}
	90%
	{
		-webkit-filter: hue-rotate(-54deg);
	}
	100%
	{
		-webkit-filter: hue-rotate(0deg);
	}
}

/* Mobile Phone? */
@media only screen 
and (max-device-width : 720px)
and (max-device-height : 1280px)
{
	#Home_PosterImage
	{
		background-image: url("poster_home_iphone.jpg");
	}
	
	#About_PosterImage
	{
		background-image: url("poster_about_iphone.jpg");
	}
	
	#Work_PosterImage
	{
		background-image: url("poster_work_iphone.jpg");
	}
	
	#Thoughts_PosterImage
	{
		background-image: url("poster_thoughts_iphone.jpg");
	}
	
	#Contact_PosterImage
	{
		background-image: url("poster_contact_iphone.jpg");
	}
	
	.App.WebView,
	.App.WebView #AppHeader,
	.App.WebView #AppFooter,
	.App.WebView .Cover,
	.App.MobileSafari,
	.App.MobileSafari #AppHeader,
	.App.MobileSafari #AppFooter,
	.App.MobileSafari .Cover
	{
		border-radius: 0px;
	}
	
	.MenuItem
	{
		width: 107px;
	}
		
	.MenuItem.Middle
	{
		width: 106px;
	}
	
	.MenuItem:first-child.Pressed
	{
		background-color: transparent;
		background-image: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 33%);
	}
	
	.MenuItem:last-child.Pressed
	{
		background-color: transparent;
		background-image: -webkit-linear-gradient(left, rgba(255,255,255,0.05) 67%, rgba(255,255,255,0) 100%);
	}
	
	.SubHeaderCenter
	{
		width: 100%;
		box-shadow: none;
	}
	
	#AppSubHeader
	{
		background-color: transparent;
		box-shadow: none;
	}
	
	.HeaderButtons
	{
		display: none;
	}
	
	.SubHeaderMenu,
	.SubView .SubHeaderTitle
	{
		background-color: #333333;
	
		box-shadow: inset 0px -1px 0px rgba(0, 0, 0, 1), inset 0px -2px 0px rgba(255, 255, 255, 0.1);
	}
	
	.ScrollContent
	{
		overflow-x: visible;
	}
	
	.ScrollContentCenter
	{
		width: auto;
		
		padding-left: 10px;
		padding-right: 10px;
		padding-top: 20px;
		padding-bottom: 0px;
		
		overflow: hidden;
	}
	
	.Me
	{
		margin-bottom: 20px;
		left: 50%;
		margin-left: -160px;
		
		width: 320px;
		height: 356px;
	}
	
	.Skills1,
	.Skills2
	{
		float: none;
		
		width: 300px;
	}
	
	.ContactLeft,
	.ContactRight
	{
		width: 270px;
	}
	
	.SelectedProject,
	.ScrollContent
	{
		width: 100%;
	}
	
	.ProjectContainer
	{
		height: 430px;
	}
	
	.ProjectImageContainer
	{
		margin-top: 20px;
		margin-bottom: 20px;
	}
	
	.OpenProject .ProjectImageContainer
	{
		width: 300px;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	
	.OpenProject .ProjectImageContainer.Box
	{
		height: 300px;
	}
	
	.OpenProject .ProjectImageContainer.iPhone4
	{
		height: 380px;
	}
	
	.OpenProject .ProjectImageContainer.iPhone5
	{
		height: 410px;
	}
	
	.SwipeView.Box,
	.SwipeView.Iframe
	{
		height: 340px;
	}
	
	.SwipeView.iPhone4
	{
		height: 420px;
	}
	
	.SwipeView.iPhone5
	{
		height: 450px;
	}
	
	.ProjectDetails,
	.OpenProject .ProjectDetails
	{
		height: auto;
		
		width: auto;
		
		margin-left: 10px;
		margin-right: 10px;
	}
	
	.ProjectContainer
	{
		/*
		overflow: visible;
		*/
		width: 100%;
		-webkit-transform: none;
	}
	
	.ProjectContainer.Pressed
	{
		border-radius: 0px;
		box-shadow: none;
		background-color: transparent;
	}
	
	.Poster
	{
		display: inline-block;
		position: relative;
		width: 100%;
		height: auto;
	}
	
	.PosterSizer
	{
		display: block;
		
		padding-top: 50%; /* 1:2 aspect ratio */
	}
	
	.WhiteTop
	{
		box-shadow: inset 0px 1px 0px #FFFFFF;
	}
	
	.Work
	{
		width: 100%;
	}
}

/* Mobile Phone Landscape */
@media only screen 
and (max-device-width : 720px)
and (max-device-height : 1280px)
and (orientation : landscape)
{
	/*
	.Cover
	{
		display: block;
		-webkit-transform: none;
		opacity: 1;
	}
	*/
}

/* iPhone */
@media only screen 
and (device-width : 320px)
and (device-height : 480px)
{
	
}

/* iPhone Portrait */
@media only screen 
and (device-width : 320px)
and (device-height : 480px)
and (orientation : portrait)
{
	.App.MobileSafari 
	{
		/*
		height: 416px;
		bottom: auto;
		*/
	}
	
	/*
	.App.MobileSafari .Install
	{
		display: block;
	}
	
	.App.MobileSafari .TheEnd
	{
		display: none;
	}
	*/
}

/* iPhone Landscape */
@media only screen 
and (device-width : 320px)
and (device-height : 480px)
and (orientation : landscape)
{
	
}

/* 4" iPhone */
@media only screen 
and (device-width : 320px)
and (device-height : 568px)
{
	
}

/* 4" iPhone Portrait */
@media only screen 
and (device-width : 320px)
and (device-height : 568px)
and (orientation : portrait)
{
	.App.MobileSafari
	{
		/*
		height: 504px;
		bottom: auto;
		*/
	}
	
	/*
	.App.MobileSafari .Install
	{
		display: block;
	}
	
	.App.MobileSafari .TheEnd
	{
		display: none;
	}
	*/
}

/* 4" iPhone Landscape */
@media only screen 
and (device-width : 320px)
and (device-height : 568px)
and (orientation : landscape)
{
	
}

/* 4.7" iPhone */
@media only screen 
and (device-width : 375px)
and (device-height : 667px)
{
	.ScrollContentCenter
	{
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.ProjectDetails,
	.OpenProject .ProjectDetails
	{
		margin-left: 20px;
		margin-right: 20px;
	}
}

/* 4.7" iPhone Portrait */
@media only screen 
and (device-width : 375px)
and (device-height : 667px)
and (orientation : portrait)
{
	
}

/* 4.7" iPhone Landscape */
@media only screen 
and (device-width : 375px)
and (device-height : 667px)
and (orientation : landscape)
{
	
}

/* 5.5" iPhone */
@media only screen 
and (device-width : 414px)
and (device-height : 736px)
{
	.ScrollContentCenter
	{
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.ProjectDetails,
	.OpenProject .ProjectDetails
	{
		margin-left: 20px;
		margin-right: 20px;
	}
}

/* 5.5" iPhone Portrait */
@media only screen 
and (device-width : 414px)
and (device-height : 736px)
and (orientation : portrait)
{
	
}

/* 5.5" iPhone Landscape */
@media only screen 
and (device-width : 414px)
and (device-height : 736px)
and (orientation : landscape)
{
	
}

/* iPad */
@media only screen 
and (device-width : 768px)
and (device-height : 1024px)
{
	.App.WebView,
	.App.WebView #AppHeader,
	.App.WebView .Cover,
	.App.MobileSafari,
	.App.MobileSafari #AppHeader,
	.App.MobileSafari .Cover
	{
		border-radius: 0px;
	}
	
	.CloseButton
	{
		display: block;	
	}
	
	.OverlayBackground
	{
		/*
		-webkit-transition-duration: 0s;
		-webkit-transform: none;
		*/
	}
	
	.ProjectBackground
	{
		position: absolute;
		
		left: 0px;
		right: 0px;
		top: 0px;
		bottom: 0px;
		
		border-radius: 3px;
		box-shadow: inset 0px 0px 0px 1px #FFFFFF, 0px 1px 2px rgba(0,0,0,0.5);
		background-color: #FAFAFA;
		
		opacity: 0;
		
		-webkit-transition-property: opacity;
		-webkit-transition-duration: 0.1s;
		-webkit-transition-timing-function: ease-in;
	}
	
	.ProjectContainer.Pressed .ProjectBackground
	{
		opacity: 1;
		
		-webkit-transition-timing-function: ease-out;
	}
}

/* iPad Portrait */
@media only screen 
and (device-width : 768px)
and (device-height : 1024px)
and (orientation : portrait)
{
	.Work
	{
		width: 640px;
	}
}

/* iPad Landscape */
@media only screen 
and (device-width : 768px)
and (device-height : 1024px)
and (orientation : landscape)
{
	.Work
	{
		width: 960px;
	}
}

/* Retina Devices */
@media only screen
and (-webkit-min-device-pixel-ratio: 2),
only screen
and (min-device-pixel-ratio: 2)
{

}

/* Desktop */
@media only screen
and (min-device-width : 1025px)
{
	html
	{
		width: auto;
		min-width: 960px;
		
		overflow-x: auto;
	}
	
	body
	{
		overflow-x: auto;
	}
	
	a:hover
	{
		color: #990066;
	}
	
	.MenuItem:hover
	{
		color: #FFFFFF;
		text-shadow: 0px 1px 2px #000000;
		background-color: rgba(255,255,255,0.05);
	}
	
	.CloseButton
	{
		display: none;
	}
	
	.BackButton
	{
		display: none;
	}

	.ScrollView,
	{
		overflow-y: auto;
	}
	
	.ScrollContent
	{
		min-height: 100%;
		
		-webkit-user-select: auto;
	}
	
	.ProjectBackground
	{
		position: absolute;
		
		left: 0px;
		right: 0px;
		top: 0px;
		bottom: 0px;
		
		border-radius: 3px;
		box-shadow: inset 0px 0px 0px 1px #FFFFFF, 0px 1px 2px rgba(0,0,0,0.5);
		background-color: #FAFAFA;
		
		opacity: 0;
		
		-webkit-transition-property: opacity;
		-webkit-transition-duration: 0.1s;
		-webkit-transition-timing-function: ease-in;
	}
	
	.ProjectContainer:hover .ProjectBackground
	{
		opacity: 1;
		
		-webkit-transition-timing-function: ease-out;
	}
	
	.App
	{
		position: relative;
	}
	
	.Poster
	{
		display: inline-block;
		position: relative;
		width: 100%;
	}
	
	.PosterSizer
	{
		display: block;
		
		padding-top: 25%; /* 1:4 aspect ratio */
	}
	
	.Content
	{
		overflow: hidden;
	
		-webkit-overflow-scrolling: auto;
	}
	
	.OverflowScroll
	{
		overflow: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: auto;
	}
	
	.OverlayBackground
	{
		/*
		-webkit-transform: translate3d(0,0,0);
		-webkit-transform-style: preserve-3d;
		-webkit-backface-visibility: hidden;
		
		-webkit-transition-property: opacity;
		-webkit-transition-timing-function: linear;
		-webkit-transition-duration: 0.25s;
		
		-moz-transition-property: opacity;
		-moz-transition-timing-function: linear;
		-moz-transition-duration: 0.25s;
		
		-ms-transition-property: opacity;
		-ms-transition-timing-function: linear;
		-ms-transition-duration: 0.25s;
		*/
	}
	
	.SwipeArrowLeft
	{
		/*
		display: block;
		*/
	}
	
	.SwipeArrowRight
	{
		/*
		display: block;
		*/
	}
	
	#AppHeader,
	#AppFooter,
	.App,
	.Cover
	{
		border-radius: 0px;
	}
	
	.Poster
	{
		height: auto;
	}
}

/* 2560 Desktop */
@media only screen
and (min-device-width : 1025px)
and (min-width : 2020px)
{
	.Work
	{
		width: 1600px;
	}
}

/* 1600 Desktop */
@media only screen
and (min-device-width : 1025px)
and (min-width : 1700px)
and (max-width : 2019px)
{
	.Work
	{
		width: 1600px;
	}
}

/* 1280 Desktop */
@media only screen
and (min-device-width : 1025px)
and (min-width : 1360px)
and (max-width : 1699px)
{
	.Work
	{
		width: 1280px;
	}
}

/* 960 Desktop */
@media only screen
and (min-device-width : 1025px)
and (min-width : 1060px)
and (max-width : 1379px)
{
	.Work
	{
		width: 960px;
	}
}

/* 960 Desktop */
@media only screen
and (min-device-width : 1025px)
and (max-width : 1059px)
{
	.Work
	{
		width: 640px;
	}
}

.Standalone .Header
{
	height: 64px;
}

.Standalone .SubHeader
{
	top: 64px;
}

.Standalone .HeaderLogo
{
	top: 20px;
}

.Standalone .BackButton
{
	top: 20px;
}

.Standalone .Content
{
	top: 94px;
}

.Selectable
{
	pointer-events: auto;
}

.Visible
{
	display: block;
}

.Hidden
{
	display: none;
}

.Invisible
{
	visibility: hidden;
}

.accelerate
{
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

.down
{
	display: block;
	top: 100%;
}

.up
{
	display: block;
	top: 0%;
}

.right
{
	display: block;
	left: 100%;
	
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

.left
{
	display: block;
	left: -100%;
	
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

.static,
.Static
{
	-webkit-animation-play-state: paused;
}

.Transparent
{
	opacity: 0;
}

.opaque
{
	opacity: 1;
}

.fadeIn
{
	-webkit-transition-property: opacity;
	-webkit-transition-timing-function: linear;
	-webkit-transition-duration: 0.25s;
	
	-moz-transition-property: opacity;
	-moz-transition-timing-function: linear;
	-moz-transition-duration: 0.25s;
	
	-ms-transition-property: opacity;
	-ms-transition-timing-function: linear;
	-ms-transition-duration: 0.25s;
	
	opacity: 1;
}

.fadeOut
{
	-webkit-transition-property: opacity;
	-webkit-transition-timing-function: linear;
	-webkit-transition-duration: 0.25s;
	
	-moz-transition-property: opacity;
	-moz-transition-timing-function: linear;
	-moz-transition-duration: 0.25s;
	
	-ms-transition-property: opacity;
	-ms-transition-timing-function: linear;
	-ms-transition-duration: 0.25s;
	
	opacity: 0;
}

.slideLeft
{
	-webkit-transition-property: -webkit-transform;
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transform: translate3d(-100%, 0%, 0);
	-webkit-transition-duration: 0.25s;
	
	-moz-transition-property: -moz-transform;
	-moz-transition-timing-function: ease-in-out;
	-moz-transform: translate3d(-100%, 0%, 0);
	-moz-transition-duration: 0.25s;
	
	-ms-transition-property: -ms-transform;
	-ms-transition-timing-function: ease-in-out;
	-ms-transform: translate3d(-100%, 0%, 0);
	-ms-transition-duration: 0.25s;
}

.slideRight
{
	-webkit-transition-property: -webkit-transform;
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transform: translate3d(100%, 0%, 0);
	-webkit-transition-duration: 0.25s;
	
	-moz-transition-property: -moz-transform;
	-moz-transition-timing-function: ease-in-out;
	-moz-transform: translate3d(100%, 0%, 0);
	-moz-transition-duration: 0.25s;
	
	-ms-transition-property: -ms-transform;
	-ms-transition-timing-function: ease-in-out;
	-ms-transform: translate3d(100%, 0%, 0);
	-ms-transition-duration: 0.25s;
}

.slideUp
{
	-webkit-transition-property: -webkit-transform;
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transform: translate3d(0%, -100%, 0);
	-webkit-transition-duration: 0.25s;
	
	-moz-transition-property: -moz-transform;
	-moz-transition-timing-function: ease-in-out;
	-moz-transform: translate3d(0%, -100%, 0);
	-moz-transition-duration: 0.25s;
	
	-ms-transition-property: -ms-transform;
	-ms-transition-timing-function: ease-in-out;
	-ms-transform: translate3d(0%, -100%, 0);
	-ms-transition-duration: 0.25s;
}

.slideDown
{
	-webkit-transition-property: -webkit-transform;
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transform: translate3d(0%, 100%, 0);
	-webkit-transition-duration: 0.25s;
	
	-moz-transition-property: -moz-transform;
	-moz-transition-timing-function: ease-in-out;
	-moz-transform: translate3d(0%, 100%, 0);
	-moz-transition-duration: 0.25s;
	
	-ms-transition-property: -ms-transform;
	-ms-transition-timing-function: ease-in-out;
	-ms-transform: translate3d(0%, 100%, 0);
	-ms-transition-duration: 0.25s;
}

.scroll
{
	-webkit-transition-property: -webkit-transform;
	-webkit-transition-timing-function: ease-out;
	-webkit-transition-duration: 0.25s;
	
	-moz-transition-property: -moz-transform;
	-moz-transition-timing-function: ease-out;
	-moz-transition-duration: 0.25s;
	
	-ms-transition-property: -ms-transform;
	-ms-transition-timing-function: ease-out;
	-ms-transition-duration: 0.25s;
}

.grow
{
	-webkit-transition-property: -webkit-transform, opacity;
	-webkit-transition-timing-function: ease-in;
	-webkit-transform: scale3d(1.25, 1.25, 0);
	-webkit-transition-duration: 0.25s;
	
	-moz-transition-property: -moz-transform, opacity;
	-moz-transition-timing-function: ease-in;
	-moz-transform: scale3d(1.25, 1.25, 0);
	-moz-transition-duration: 0.25s;
	
	-ms-transition-property: -ms-transform, opacity;
	-ms-transition-timing-function: ease-in;
	-ms-transform: scale3d(1.25, 1.25, 0);
	-ms-transition-duration: 0.25s;
	
	opacity: 0;
}

.shrink
{
	-webkit-transition-property: -webkit-transform, opacity;
	-webkit-transition-timing-function: ease-in;
	-webkit-transform: scale3d(0.75, 0.75, 0);
	-webkit-transition-duration: 0.25s;
	
	-moz-transition-property: -moz-transform, opacity;
	-moz-transition-timing-function: ease-in;
	-moz-transform: scale3d(0.75, 0.75, 0);
	-moz-transition-duration: 0.25s;
	
	-ms-transition-property: -ms-transform, opacity;
	-ms-transition-timing-function: ease-in;
	-ms-transform: scale3d(0.75, 0.75, 0);
	-ms-transition-duration: 0.25s;
	
	opacity: 0;
}

.faster
{
	-webkit-transition-duration: 0.15s;
	-moz-transition-duration: 0.15s;
	-ms-transition-duration: 0.15s;
}

.fast,
.Fast
{
	-webkit-transition-duration: 0.10s;
	-moz-transition-duration: 0.10s;
	-ms-transition-duration: 0.10s;
}

.SlowMo
{
	-webkit-transition-duration: 2s;
	-moz-transition-duration: 2s;
	-ms-transition-duration: 2s;
}

/* Mobile Phone Landscape */
@media only screen 
and (max-device-width : 720px)
and (max-device-height : 1280px)
and (orientation : landscape)
{
	.Cover
	{
		display: block;
		-webkit-transform: none;
		opacity: 1;
	}
}