/**
 * Copyright 2010 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */


/*******************************************************************************
 * PRESENTATION STYLES
 ******************************************************************************/
body {
  font: 30px Arial;
  background: #000;
}

header {
  font: 44px Arial;
  letter-spacing: -.05em;
  color: #000;
  font-weight: normal;
  text-shadow: rgba(0, 0, 0, 0.2) 0 2px 5px;
}

section {
  font: 30px Arial;
  font-weight: normal;
  color: #3f3f3f;
  text-shadow: rgba(0, 0, 0, 0.2) 0 2px 5px;
}

.presentation {
  background: -webkit-gradient(linear, left top, left bottom, from(#444), to(black));
  background: -moz-linear-gradient(top, #444, black);
}

.presentationCounter {
  color: #666;
  font: 100px 'Yanone Kaffeesatz';
  letter-spacing: 1px;
}

.slide {
  border-radius: 10px;
  background: 
              #fff;
}

.slide:before {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font: 16px Arial;
  color: #333;
}


.two-column {
       -webkit-column-count: 2;
       -moz-column-count: 2;
       column-count: 2;
     }
     
.slide:nth-child(even) {
  border-top-left-radius: 20px;
  -moz-border-radius-topleft: 20px;
  border-bottom-right-radius: 20px;
  -moz-border-radius-bottomright: 20px;
}

.slide:nth-child(odd) {
  border-top-right-radius: 20px;
  -moz-border-radius-topright: 20px;
  border-bottom-left-radius: 20px;
  -moz-border-radius-bottomleft: 20px;
}

/*******************************************************************************
 * GENERIC STYLES
 ******************************************************************************/
h2 {
 margin: 5px 0 0 0;
 padding: 0;
 color: #000;
}

button {
  font: 20px Verdana;
}

a {
  color: #00d;
  text-decoration: none;
  text-shadow: rgba(0, 0, 0, 0.4) 1px 1px 2px;
  -webkit-text-stroke: 1px rgba(255,255,255, 0.5);
}
a strong {
  color: #00d;
  font-weight: bold;
}

p,
ul {
  margin: 10px 0;
  padding: 5px;
}

li {
  margin: 0 0 0 30px;
  padding: 5px;
}

strong {
  color: #000;
}

.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden !important;
}

.clickable {
  cursor: pointer;
}

img.clickable {
  border: 3px solid transparent;
  border-radius: 30px;
}

img.clickable:hover {
  border: 3px solid #36b;
  -webkit-transition-property: border-color;
  -webkit-transition-duration: 0.6s;
  -webkit-transition-timing-function: ease-in-out;

  -moz-transition-property: border-color;
  -moz-transition-duration: 0.6s;
  -moz-transition-timing-function: ease-in-out;
}

pre {
  font: 20px 'Inconsolata', InconsolataMedium, monospace;
  color: #000;
  text-align: left;
  padding: 10px 20px;
  border-radius: 10px;
  background: rgba(0, 255, 0, 0.05);
  border: 2px solid rgba(0, 255, 0, 0.2);
}

pre b {
  font-weight: normal;
  color: #c61800;
  text-shadow: #c61800 0 0 1px;
  letter-spacing: -1px;
}

pre em {
  font-weight: normal;
  font-style: normal;
  color: #18a600;
  text-shadow: #18a600 0 0 1px;
}

.css {
  background: #ff4;
}
.js {
  background: #4f4;
}
.html {
  background: #e88;
}
.html5 {
  
}
strong.html5 {
  font-size: 120%;
}

.key {
  font: 25px 'Molengo';
  line-height: 30px;
  color: #000;
  display: inline-block;
  padding: 6px 10px 3px 10px;
  text-shadow: none;
  letter-spacing: 0;
  bottom: 10px;
  position: relative;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 2px 5px;
  vertical-align: sub;
  padding: 1px 6px 1px;
  margin: 0px 7px;
  font-size: 13px;
}

.todo {
  background: #d00;
  border-radius: 10px;
  padding: 5px;
  color: #fff;
}

.callout {
  text-align: center;
  font: 70px 'Molengo';
  line-height: 65px;
  width: 80%;
  margin: 0 auto;
  padding: 10px 20px 20px;
}

.disclaimer {
  font: 13px Arial;
  color: #666;
}

@-webkit-keyframes pulse {
  0%   { -webkit-transform: scale(1) rotate(5deg); }
  50%  { -webkit-transform: scale(2.5) rotate(-15deg);  }
  100% { -webkit-transform: scale(1) rotate(5deg); }
}

.pulse {
  display: block;
  text-shadow: 1px 1px 1px #000;
  -webkit-animation-name: pulse;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-direction: alternate;
}
/*******************************************************************************
 * PREFLIGHT STYLES
 ******************************************************************************/
#slide-preflight .good {
  color: #0d0;
}
#slide-preflight .bad {
  color: #d00;
}
#slide-preflight .warning {
  color: #f93
}
#slide-preflight .notice {
  color: #06f;
}
#slide-preflight .explanation {
  font-size: 14px;
  color: #000;
}
#slide-preflight section {
  width: 60%;
  margin: 0 auto;
}
#slide-preflight .feature {
  padding-top: 15px;
}
/*******************************************************************************
 * LOGO STYLES
 ******************************************************************************/
#slide-logo {
  background: #fff;
}
.logoBigImage {
  width: 70%;
  padding-top: 230px;
}
.logoFooterImage {
  width: 100%;
  padding-top: 130px;
}

/*******************************************************************************
 * TITLE STYLES
 ******************************************************************************/
.titleContent {

  text-align: left;
  line-height: 100%;
  width: 772px;
}
.titleTitle {
  font-size: 44px;
  line-height: 120%;
  color: #000;
}
.titleText {
  font-size: 28px;
  margin: 50px 0px 0px 0px;
  line-height: 120%;
}

/*******************************************************************************
 * TIMELINE STYLES
 ******************************************************************************/
.timelineSlider {
  position: absolute;
  -webkit-transition-property: left top -webkit-transform;
  -webkit-transition-duration: 0.8s;
  -webkit-transition-timing-function: ease-in-out;
  -webkit-transform-origin: left center;
  left: 50%;
  top: 50%;
}
.timelineContent {
  position: absolute;
  border-radius: 20px;
  max-width: 200px;
  display: inline-block;
  padding: 20px;
  font: 25px 'Molengo';
  line-height: 22px;
  color: #000;
  border: 5px solid #000;
  -webkit-transition-property: -webkit-transform;
  -webkit-transition-duration: 0.6s;
  -webkit-transition-timing-function: ease-in-out;
  -webkit-box-shadow: 2px 2px 6px #000;
  z-index: 1;
  opacity: 0.9;
}
.timelineContent.selected {
  z-index: 2;
  -webkit-transform: scale(2.0);
  -webkit-transform-origin: center center;
}
.timelineYear {
  font: 42px Arial;
  color: #000;
}

/*******************************************************************************
 * PHYSICS STYLES
 ******************************************************************************/
.physicsText {
  font: 60px 'Molengo';
  line-height: 60px;
  color: #999;
  position: absolute;
}
.physicsText:nth-child(1) {
  left: 50px;
  top: 2%;
  -webkit-transform: rotate(-10deg);
}

.physicsText:nth-child(2) {
  left: 26%;
  top: 10%;
}
.physicsText:nth-child(3) {
  right: 25%;
  top: 14%;
}
.physicsText:nth-child(4) {
  right: 50px;
  top: 23%;
  -webkit-transform: rotate(10deg);
}

.physicsCanvas {
  position: absolute;
  top: 0;
  left: 0;
}
.physicsBox {
  position: absolute;
  font: 35px 'Molengo';
  line-height: 34px;
  vertical-align: super;
  -webkit-transform-origin: center center;
  border-radius: 10px;
  padding: 1px 5px 5px;
  border: 3px solid #000;
  color: #000;
  display: inline-block;
  -webkit-box-shadow: 1px 2px 4px #333;
}
.physicsBox.high { 
  background-color: hsla(178, 62%, 53%, 0.18);
}

.physicsBoxMask {
  display: inline-block;
  position: absolute;
  font: 80px 'OFL Sorts Mill Goudy TT';
  line-height: 70px;
  font-weight: bold;
  border-radius: 30px;
  padding: 20px 20px 10px 20px;

  color: #fff;
  background: #36b;
  -webkit-box-shadow: 2px 4px 8px #333;
  cursor: pointer;
}

/*******************************************************************************
 * DEMO STYLES
 ******************************************************************************/
.demoText {
  text-align: center;
  font-size: 80px;
}

.demoText .chromabrush {
  font-weight: bold;
}

.chromabrush {
  font-family: 'Josefin Sans Std Light';
}

/*******************************************************************************
 * CANVAS DEMO STYLES
 ******************************************************************************/
.drawingCanvas {
  border-radius: 10px;
  background: rgba(0, 128, 192, 0.05);
  border: 2px solid rgba(0, 128, 192, 0.2);
}

.canvasIcon {
  width: 130px;
  height: 130px;
}

.canvasCodeIcon {
  width: 90px;
  height: 90px;
  margin-left: 30px;
  margin-right: 30px;
}

#slide-webgl iframe {
  margin: 0 auto;
  display: block;
  border: 0;
  overflow: hidden;
}

/*******************************************************************************
 * STORAGE STYLES
 ******************************************************************************/
.localStorageText {
  -webkit-transform: rotate(-5deg);
}
.otherStorage {
  padding: 0 20px;
  text-align: center;
}
/*******************************************************************************
 * WORKER STYLES
 ******************************************************************************/
.workerCanvas,
.workerDiff {
  border: 3px solid #000;
}
.workerCanvas {
  background: #fff;
}
.workerDiff {
  background: #000;
}

/*******************************************************************************
 * DRAG AND DROP
 ******************************************************************************/
.dropTarget {
  text-align: center;
  background-color: #fcc;
  margin: 0px 20px 20px;
  width: 300px;
  border-radius: 20px;
  border: 3px solid rgba(0,0,0,0);
  position: relative;
}
.dragObject {
}
.dropTarget.hover {
  border: 3px solid #d00;
}

/*******************************************************************************
 * NOTIFICATION STYLES
 ******************************************************************************/
.notificationText {
  -webkit-transform: rotate(-1deg);
}

/*******************************************************************************
 * FONT STYLES
 ******************************************************************************/
#ransomLetter {
  text-align: center;
  font-size: 55px;
}
#ransomLetter div {
  display: inline-block;
  margin-right: 10px;
}
#ransomLetter span {
  padding: 2px 4px;
  margin: 4px;
  display: inline-block;
}
/*******************************************************************************
 * CSS STYLES
 ******************************************************************************/
#slide-flexbox input {
  width: 400px;
}
#flexibleBox {
  border: 6px solid #999;
  width: 300px;
  height: 300px;
  background: #fff;
  padding: 3px;
}
#flexibleBox>div {
  border: 3px solid #fff;
}
.boxA {
  background: #33d;
  width: 50px;
}
.boxB {
  background: #3d3;
}
.boxC {
  background: #d33;
  width: 50px;
}
.boxD {
  background: #ffff44;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  border: 6px solid #fff;
}
.transformTable {
  width: 100%;
}
.transformTable th {
  font: 14px Arial;
  color: #000;
  font-weight: bold;
  padding: 4px;
}
.transformTable td {
  text-align: center;
}
.transitionExample {
  -webkit-transition: -webkit-transform 2s ease-in-out;
}
.transitionExample:hover {
  -webkit-transform: rotate(-20deg);
}
.animationExample {
  display: block;
  font: 100px Arial;
  text-align: center;
  padding: 30px;
  color: #000;
}
.animationExample.pulse {
  font-size: 80px;
  color: #36b;
}
.rotate1 {
  -webkit-transform: rotate(-45deg);
}
.rotate2 {
  -webkit-transform: rotate(-15deg);
}
.rotate3 {
  -webkit-transform: rotate(15deg);
}
.rotate4 {
  -webkit-transform: rotate(45deg);
}
.rotate5 {
  -webkit-transform: rotate(75deg);
}
.scale1 {
  -webkit-transform: scale(0.2);
}
.scale2 {
  -webkit-transform: scale(0.5);
}
.scale3 {
  -webkit-transform: scaleX(0.5);
}
.scale4 {
  -webkit-transform: scaleX(2.0);
}
.scale5 {
  -webkit-transform: scaleY(1.5);
}
.skew1 {
  -webkit-transform: skewX(10deg);
}
.skew2 {
  -webkit-transform: skewX(20deg);
}
.skew3 {
  -webkit-transform: skewX(30deg);
}
.skew4 {
  -webkit-transform: skewX(40deg);
}
.skew5 {
  -webkit-transform: skewX(50deg);
}

/*******************************************************************************
 * LOGO STYLES
 ******************************************************************************/
#logoOutput {
  font-size: 60px;
  text-align: center;
  font-family: 'Molengo';
  display: inline-block;
  margin: 20px auto 0 auto;
  padding: 10px;
}

#slide-logo .controls {
  position: absolute;
  right: 50px;
}

#slide-logo .controls input[type=range] {
  width: 80px;
}

/*******************************************************************************
 * MISC TITLE CARD SLIDES
 ******************************************************************************/
.partnerText p {
  margin: 40px;
}
.partnerText .pulse {
  color: #f60;
  font-size: 70px;
}
.transitionSlide .section, .transitionSlide .diagz {
  text-shadow: 2px 2px 4px #999;
  color: #fff;
  -webkit-text-stroke: 1px #000;
  -webkit-transform: rotate(-15deg);
  position: relative;
  left: -50px;
  font-weight: bold;
  display: inline-block;
}
.transitionSlide p {
  margin: 0;
  padding: 0;
}

/*******************************************************************************
 * Video
 ******************************************************************************/
.fancyVideo {
  border: 5px solid #d00;
  -webkit-box-shadow: 4px 4px 10px #000;
  -webkit-box-reflect: below 10px -webkit-gradient(
       linear, left top, left bottom,
       from(transparent), color-stop(0.8, transparent), to(#fff));
}
.videoControls {
  display: block;
  text-align: center;
}
.videoContent {
  margin-top: 20px;
  text-align: center;
}

/*******************************************************************************
 * Q&A
 ******************************************************************************/
#qaModFrame {
  border: 1px solid #000;
  margin: 0 auto;
  display: block;
}





body, .physicsBoxMask, section, .physicsBox, .physicsText { font-family:  'Stone Sans ITC TT', MentoneSemiBold, 'Trebuchet MS', sans-serif;}

h1,h2,h3,h4,h5,h6, header,
   .titleTitle { font-family:    "chunkfive", ChunkFiveRegular, 'Cooper Std', 'poplar std', serif; }


.hbox.boxcenter .vbox.boxcenter h2 { 
  font-size: 120px;
}


.hbox.boxcenter .vbox.boxcenter h2 + p { 
  font-size: 50px;
}


header { font-size: 56px; }


hgroup h4 ,  li h4 { font-size: 60px; margin: 25px 0; }
li h4 div { font-size: 40px; }

.workerdemo {
  -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
      -o-transform: scale(0.8);
        transform: scale(0.8);
  position: absolute;
  right: 0px;
  top: 0;
  
}



::-moz-selection{ background: #f0c; color:#fff; text-shadow: none; }
::selection {      background:#f0c; color:#fff; text-shadow: none; }




@font-face {
	font-family: 'InconsolataMedium';
	src: url('fonts/Inconsolata-webfont.eot');
	src: local('☺'), url('fonts/Inconsolata-webfont.woff') format('woff'), url('fonts/Inconsolata-webfont.ttf') format('truetype'), url('fonts/Inconsolata-webfont.svg#webfontAOsRw1AW') format('svg');
	font-weight: normal;
	font-style: normal;
}


@font-face {
	font-family: 'MentoneSemiBold';
	src: url('fonts/mentone-semibol-webfont.eot');
	src: local('☺'), url('fonts/mentone-semibol-webfont.woff') format('woff'), url('fonts/mentone-semibol-webfont.ttf') format('truetype'), url('fonts/mentone-semibol-webfont.svg#webfont') format('svg');
	font-weight: normal;
	font-style: normal;
}



@font-face {
	font-family: 'ChunkFiveRegular';
	src: url('fonts/Chunkfive-webfont.eot');
	src: local('☺'), url('fonts/Chunkfive-webfont.woff') format('woff'), url('fonts/Chunkfive-webfont.ttf') format('truetype'), url('fonts/Chunkfive-webfont.svg#webfontb5K2fJwj') format('svg');
	font-weight: normal;
	font-style: normal;
}

#googlebody {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 310px;
  overflow: hidden;
}

#googlebody iframe {
  -webkit-transform: none;
  border: 0;
  margin: -41px 0 0 -79px;

}

.titleContent {


pointer-events: none;
position: relative;

}