
/* /Users/arthur/git/arthur-work/html5devconf/enyo/../lib/layout/fittable/source/FittableLayout.css */

.enyo-fittable-rows-layout {
	position: relative;
}

.enyo-fittable-rows-layout > * {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	/* float when not stretched */
	float: left;
	clear: both;
}

/* non-floating when stretched */
.enyo-fittable-rows-layout.enyo-stretch > * {
	float: none;
	clear: none;
}

/* setting to enforce margin collapsing */
/* NOTE: rows cannot have margin left/right */
.enyo-fittable-rows-layout.enyo-stretch.enyo-margin-expand > * {
	float: left;
	clear: both;
	width: 100%;
	/* note: harsh resets */
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.enyo-fittable-columns-layout {
	position: relative;
	text-align: left;
	white-space: nowrap;
}

.enyo-fittable-columns-layout.enyo-center {
	text-align: center;
}

.enyo-fittable-columns-layout > * {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	vertical-align: top;
	display: inline-block;
	white-space: normal;
}

.enyo-fittable-columns-layout.enyo-tool-decorator > * {
	vertical-align: middle;
}

/* repair clobbered white-space setting for pre, code */
.enyo-fittable-columns-layout > pre, .enyo-fittable-columns-layout > code {
	white-space: pre;
}

.enyo-fittable-columns-layout > .enyo-fittable-columns-layout, .enyo-fittable-columns-layout > .onyx-toolbar-inline {
	white-space: nowrap;
}

/* NOTE: columns cannot have margin top/bottom */
.enyo-fittable-columns-layout.enyo-stretch > * {
	height: 100%;
	/* note: harsh resets */
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

/* /Users/arthur/git/arthur-work/html5devconf/enyo/../lib/layout/list/source/List.css */

.enyo-list {
	position: relative;
}

.enyo-list-port {
	overflow: hidden;
	position: relative;
	height: 1000000px;
}

.enyo-list-page {
	position: absolute;
	left: 0;
	right: 0;
}

/* /Users/arthur/git/arthur-work/html5devconf/enyo/../lib/layout/list/source/PulldownList.css */

.enyo-list-pulldown {
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
}

.enyo-puller {
	position: relative;
	height: 50px;
	font-size: 22px;
	color: #444;
	padding: 20px 0 0px 34px;
}

.enyo-puller-text {
	position: absolute;
	left: 80px;
	top: 22px;
}

.enyo-puller-arrow {
	position: relative;
	background: #444;
	width: 7px;
	height: 28px;
	transition: transform 0.3s;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	-o-transition: -o-transform 0.3s;
	-ms-transition: -ms-transform 0.3s;
}

.enyo-puller-arrow:after {
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	border: 10px solid transparent;
	border-bottom-color: #444;
	bottom: 100%;
	left: 50%;
	margin-left: -10px;
}

.enyo-puller-arrow-up {
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
}

.enyo-puller-arrow-down {
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
}

/* /Users/arthur/git/arthur-work/html5devconf/enyo/../lib/layout/panels/source/arrangers/Arranger.css */

.enyo-arranger {
	position: relative;
	overflow: hidden;
}

.enyo-arranger.enyo-fit {
	position: absolute;
}

.enyo-arranger > * {
	position: absolute;
	left: 0;
	top: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.enyo-arranger-fit > * {
	/*
	override any width/height set on panels
	*/
	width: 100% !important;
	height: 100% !important;
	min-width: 0 !important;
	max-width: auto !important;
	min-height: 0 !important;
	max-height: auto !important;
}


/* /Users/arthur/git/arthur-work/html5devconf/enyo/../lib/layout/panels/source/Panels.css */

.enyo-panels {
}

.enyo-panels-fit-narrow {
}

@media all and (max-width: 800px) {
	.enyo-panels-fit-narrow > * {
		min-width: 100%;
		max-width: 100%;
	}
}

/* /Users/arthur/git/arthur-work/html5devconf/enyo/../lib/layout/tree/source/Node.css */

.enyo-node {
	cursor: default;
	padding: 4px;
}

.enyo-node img {
	vertical-align: middle;
	padding-right: 6px;
}

.enyo-node-box {
	overflow: hidden;
}

.enyo-node-client {
	position: relative;
}

.enyo-animate .enyo-node-box, .enyo-animate .enyo-node-client {
	transition-property: height, top;
	transition-duration: 0.2s, 0.2s;
	-moz-transition-property: height, top;
	-moz-transition-duration: 0.2s, 0.2s;
	-o-transition-property: height, top;
	-o-transition-duration: 0.2s, 0.2s;
	-webkit-transition-property: height, top;
	-webkit-transition-duration: 0.2s, 0.2s;
}


/* /Users/arthur/git/arthur-work/html5devconf/enyo/../lib/layout/imageview/source/ImageViewPin.css */


.pinDebug {
	background:yellow;
	border:1px solid yellow;
}

/* source/app.css */

/*
Apps World app
@author Arthur Thornton
*/
* {
	box-sizing: border-box;
	
	/* Prevent annoying gray flash on buttons and links on mobile safari */
	-webkit-tap-highlight-color: transparent;
}

body {
	font-family: 'Lato', 'Nimbus Sans L', 'Helvetica Neue', Prelude, Arial, sans-serif !important;
	background: #eee;
	font-weight: 300;
	line-height: 22px;
	min-width: 310px;
	margin: 8px 5px;
}

h2, h3 {
	color: #8298ae;
	font-weight: 300;
	margin: 15px 0px 5px;
}
h2 {
	font-size: 1.5em;
}
h2.raffle {
	text-shadow: 0px 1px rgba(51,51,51, 0.3);
	color: #f90;
}
h3 {
	margin: 10px 0px 2px;
	font-size: 1.3em;
}

a {
	color: #8298ae;
}

.app {
	width: auto;
	max-width: 962px;
	border-radius: 5px;
	background: #fff;
	box-shadow: 0px 0px 10px #d7d7d7;
	margin: 0 auto;
	padding: 8px 40px;
}

.logo {
	background: transparent;
	background-image: url(../assets/enyo-banner.png);
	background-repeat: no-repeat;
	background-position: center;
	height: 209px;
	border-radius: 5px;
	margin: 0px -32px;
}

.speaker {
	margin: 40px 0px;
	color: #8298ae;
	width: auto;
	height: auto;
}
.speaker .picture {
	width: 117px;
	height: 156px;
	margin-right: 20px;
	background-position: top left;
	background-repeat: no-repeat;
	background-color: transparent;
	border-radius: 8px;
}
.speaker .name {
	font-size: 1.5em;
	line-height: 25px;
}
.speaker .title {
	font-size: 1.2em;
}
.speaker .about {
	font-size: 1.08em;
	color: #666;
	margin: 20px 0px 5px;
	line-height: 25px;
	text-align: justify;
	transition: max-height 0.5s linear;
	/* Firefox */
	-moz-transition: max-height 0.5s linear;
	/* WebKit */
	-webkit-transition: max-height 0.5s linear;
	/* Opera */
	-o-transition: max-height 0.5s linear;
}
.speaker .about a {
	color: #666;
}
.speaker .more {
	display: none;
	font-size: 0.8em;
	color: #666;
	text-align: right;
	line-height: 16px;
}

.session {
	font-size: 1.2em;
	border-bottom: 1px solid #ccc;
	width: 100%;
	padding: 10px 0px;
}
.session.lastSession {
	border-bottom: none;
	padding-bottom: 0px;
}
.session > *,
.heightAuto > * {
	height: auto !important;
}
.session .time {
	color: #8298ae;
	width: 100px;
}
.session .title {
	color: #505f6e;
}
.session .summary {
	font-size: 0.9em;
	color: #666;
	margin: 5px 0px;
}
.session .summary a {
	color: #666;
}

.mapPopup {
	height: 85%;
	width: 85%;
	max-height: 500px;
	max-width: 500px;
}

@media (max-width: 640px) {
	.logo {
		background-size: 650px;
		height: 135px;
		margin: 0px -12px !important;
	}
	.app {
		padding: 8px 20px !important;
	}
}
@media (max-width: 520px) {
	.speaker .about {
		max-height: 125px;
		overflow: hidden;
	}
	.speaker .about {
		font-size: 1.0em;
	}
	.speaker .more {
		display: block;
	}
}
@media (min-width: 521px) {
	.speaker .about {
		max-height: 750px !important;
	}
}
@media (max-width: 400px) {
	.logo {
		background-size: 540px;
		height: 115px;
	}
}
