body {
  font-family: Arial, Helvetica, sans-serif;
}
#page-wrapper {
  margin-right: auto;
  margin-left: auto;
  padding: 10px 20px;
  width: 900px;
  min-height: 1000px;
  -moz-box-shadow: 3px 3px 5px 6px #DDE;
  -webkit-box-shadow: 3px 3px 5px 6px #DDE;
  box-shadow: 3px 3px 5px 6px #DDE;
}
#heading hr {
  height: 3px;
  background-color: #CCC;
}
nav ul {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}
nav ul li {
  display: inline;
  margin-right: 0.5em;
}
nav ul li a:link,
nav ul li a:visited {
  text-decoration: none;
  color: #333;
}
nav ul li a:focus,
nav ul li a:hover {
  text-decoration: underline;
}
nav ul li a:active {
  font-style: italic;
}
section {
  margin-top: 10px;
}
.app-item .app-icon {
  float: left;
  width: 57px;
  height: 57px;
  margin-top: 10px;
  border: 2px solid #AAA;
}
.app-item .app-item-gutter {
  float: left;
  width: 15px;
  height: 60px;
  margin-top: 10px;
}
.app-item .app-entry {
  float: left;
  width: 480px;
  margin-top: 10px;
}
.app-item .app-entry .app-title {
  padding-bottom: 5px;
  font-weight: bold;
}
.app-item .app-entry .app-description {
  padding-bottom: 5px;
}
.app-item .app-entry a:link,
.app-item .app-entry a:visited {
  text-decoration: none;
  color: #333;
}
.app-item .app-entry a:hover,
.app-item .app-entry a:active {
  text-decoration: none;
  color: #333;
}
.app-item .app-entry a:hover .app-title,
.app-item .app-entry a:active .app-title {
  text-decoration: underline;
}
.clearfix {
  clear: both;
}
.caption {
  font-style: italic;
  margin-bottom: 10px;
}
/* Wrapper for first, page list app page */
#page-list-wrapper {
  width: 600px;
  min-height: 250px;
}
/* Wrapper for animated app area */
#ui-view-container {
  /*position: relative;*/
  min-height: 280px;
  /*border: 1px solid black;*/
}
/* Wrapper for each app */
#app-wrapper {
  background-color: #FFF;
  max-width: 620px;
  margin: 20px;
}
/* The main canvas of each app */
#demo-canvas {
  border: 2px solid #555;
  background-color: #FFF;
  /* Set width and height as canvas element attributes in Javascript */
}
#controls {
  width: 600px;
  height: 30px;
  padding: 10px;
}
#controls .button-group {
  float: left;
  margin: 0;
  padding: 0;
}
#controls .button {
  width: 70px;
  float: left;
  border: 2px solid #BBB;
  color: #444;
  cursor: pointer;
  background-color: #DDD;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  margin: 10px;
  padding: 2px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
}
#controls .button:hover {
  background-color: #EEE;
}
#controls .button:active {
  background-color: #777;
}
article#documentation .heading {
  font-weight: bold;
}
article#documentation .to-top-link {
  float: right;
}
article#documentation .to-top-link a {
  font-size: smaller;
}
article#documentation .to-top-link a:link,
article#documentation .to-top-link a:visited {
  text-decoration: none;
  color: #333;
}
article#documentation .to-top-link a:focus,
article#documentation .to-top-link a:hover {
  text-decoration: underline;
}
article#documentation .to-top-link a:active {
  font-style: italic;
}
article#documentation section.section-position {
  float: left;
}
footer {
  clear: both;
}
footer .footer-notes {
  font-style: italic;
}
noscript {
  padding: 5px;
  text-align: center;
  font-style: italic;
  background-color: rgba(250, 167, 50, 0.5);
}
#load-error {
  /* background-color: rgba(218, 0, 0, 0.60); */
  width: 60%;
  padding: 3px;
}
#winsize {
  font-size: small;
  font-style: italic;
}
.breakpoint-label {
  font-size: small;
}
#breakpoint-over {
  display: block;
}
#breakpoint-tablet {
  display: none;
}
#breakpoint-phone {
  display: none;
}
@media only screen and (max-device-width: 850px) {
  #page-wrapper {
    width: 650px;
  }
  #breakpoint-over {
    display: none;
  }
  #breakpoint-tablet {
    display: block;
  }
  #breakpoint-phone {
    display: none;
  }
}
@media only screen and (max-device-width: 500px) {
  #page-wrapper {
    width: 450px;
  }
  .app-item .app-entry {
    width: 300px;
  }
  #controls {
    width: 450px;
  }
  #controls .button-group {
    float: none;
  }
  #breakpoint-over {
    display: none;
  }
  #breakpoint-tablet {
    display: none;
  }
  #breakpoint-phone {
    display: block;
  }
}
