/* Base */

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

body {
  font-family: "futura-pt-n3","futura-pt",sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 21px;
  color: #DEDEDE;
  background: #000;
}

.clear {
  display: block;
}

.clear:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* Sections */

body > header, body > section, body > footer {
  float: left;
  width: 100%;
  clear: both;
}

/* Header */

body > header h1, body > header nav {
  display: inline-block;
}

body > header h1 span {
  display: none;
}

@media (max-width: 768px){
  .main-nav ul {
    text-align: right;
  }
}
@media (max-width: 830px){
  .main-nav .show-on-mobiles {
    display: inline;
  }
  .main-nav .hide-on-mobiles {
    display: none;
  }
}

/* Footer */

body > footer {
  background: #222;
  font-size: 16px;
  padding-bottom: 5px;
  color: #888;
  margin-top: 40px;
}

body > footer a {
  color: #fff;
}

/* Article - Used for both docs and news */

article {
  background: #444;
  border-radius: 10px;
  padding: 20px;
  margin: 0 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,.1);
  font-size: 16px;
}

.summary {
  background: #21503D;
  border-radius: 8px;
  font-size: 18px;
  padding: 20px;
  margin: 0 10px;
  border: 2px solid #25917F;
}

.summary h3 {
  margin: 0;
  font-family: "futura-pt-n5","futura-pt",sans-serif;
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 480px){
  article ul {
    padding-left: 20px;
  }
}

@media (max-width: 568px){
  article {
    margin: 0;
  }
}

@media (min-width: 768px){
  article {
    padding: 40px 40px 30px;
    font-size: 24px;
  }
}

.ie8 article {
    padding: 40px 40px 30px;
    font-size: 24px;
}

/* Right-side nav */

aside {
  padding-top: 30px;
}

aside h4 {
  font-family: "futura-pt-n7","futura-pt",sans-serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
  padding: 0 0 10px 30px;
  margin-left: -30px;
  display: block;
  border-bottom: 6px double #25917F;
}

aside ul {
  padding-left: 0;
}

aside ul:first-child {
  margin-top: 0;
}

aside li {
  list-style-type: none;
  padding-left: 22px;
  text-indent: -22px;
  font-family: "futura-pt-n5","futura-pt",sans-serif;
  font-style: normal;
  font-weight: 500; 
}

aside li a {
  font-size: 18px;
  position: relative
}

aside li.current a:before {
  content: "";
  border-color: transparent transparent transparent #25917F;
  border-style: solid;
  border-width: 10px;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: -30px;
}

/* Documentation */

.docs .content {
  padding: 0;
}

.section-nav {
  text-align: center;
  padding-top: 40px;
  position: relative;
  background: url(/img/article-footer.png) top center no-repeat;
  margin: 40px -20px 10px;
}

.section-nav > div {
  width: 49.5%;
}

.section-nav a, .section-nav span {
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  padding: 8px 12px 10px;
  border-radius: 5px;
  /*border: 1px solid #333;*/
  box-shadow: 0 1px 3px rgba(0,0,0,.3), inset 0 1px 1px rgba(255,255,255,.5);
  background: #777;
  font-family: "futura-pt-n7","futura-pt",sans-serif;
  font-style: normal;
  font-weight: 700;
}

.section-nav a:hover {
  color: #fff;
  background: #888;
}

.section-nav .next, .section-nav .prev {
  position: relative;
}

.section-nav .next:after, .section-nav .prev:before {
  font-size: 36px;
  color: #222;
  text-shadow: 0 1px 0 rgba(255,255,255,.4);
  position: absolute;
  top: -7px;
  font-family: "futura-pt-n7","futura-pt",sans-serif;
  font-style: normal;
  font-weight: 700;
}

.section-nav .next:after {
  content: "›";
  right: 10px;
}

.section-nav .prev:before {
  content: "‹";
  left: 10px;
}

.section-nav .prev, .section-nav .prev:hover {
  /*float: left;*/
  padding-left: 30px;
}

.section-nav .next, .section-nav .next:hover {
  /*float: right;*/
  padding-right: 30px;
}

.section-nav .disabled {
  opacity: .5;
  /*filter: alpha*/
  cursor: default;
}

.docs-nav-mobile select {
  width: 100%;
}

/* HTML Elements */

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "futura-pt-n7","futura-pt",sans-serif;
  font-style: normal;
  font-weight: 700;
}

a {
  color: #9BCCC0;
  text-decoration: none;
  transition: all .25s;
   -moz-transition: all .25s;
   -webkit-transition: all .25s;
}

a:hover {
  color: #CCE4DD;
}

strong {
  font-family: "futura-pt-n5","futura-pt",sans-serif;
  font-style: normal;
  font-weight: 500;
}

em {
  font-family: "futura-pt-i3","futura-pt",sans-serif;
  font-style: italic;
  font-weight: 300;
}

p {
  line-height: 1.5em;
}

.left { float: left; }
.right { float: right; }
.align-right { text-align: right; }
.align-left { text-align: left; }
.align-center { text-align: center; }

/* Article HTML */

article h2,
article h3,
article h4,
article h5,
article h6 {
  margin: 1em 0;
}

article h4 {
  color: #fff;
}

h5, h6 {
  font-size: 1em;
  font-family: "futura-pt-i3","futura-pt",sans-serif;
  font-style: italic;
  font-weight: 300;
}

article ul li p {
  margin: 0;
}

article ul li, article ol li {
  line-height: 1.5em;
  margin-bottom: 0.5em;
}

article ul li blockquote {
  margin: 10px 0;
}

blockquote {
  border-left: 2px solid #777;
  padding-left: 20px;
  font-family: "utopia-std-i6","utopia-std",serif;
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
}

header h2 {
  text-align: center;
  display: block;
  margin: 0 10px;
  padding: 10px;
  border-radius: 8px;
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  border: 2px solid black;
}
header h2 a {
  color: black;
  display: block;
  background-color: #EEE; 
  background-color: rgba(255,255,255,.9);
  border-radius: 8px;
  padding: 10px;
}
header h2 a:hover {
  color: #777;
}
header h2.highlight {
  border-color: #25917F;
}
header h2.highlight a {
  color: #DEDEDE;
  background-color: #21503D;
  background-color: rgba(33,80,61,.9);
}
header h2.highlight a:hover {
  color: #FFF;
}
.logo {
    background:url(/img/logo_v4-500x193.png) no-repeat;
    width:500px;
    height:193px;
}
.svg .logo {
    background:url(/img/logo_v4.svg) no-repeat;
    background-size:500px 193px;
}
.headerphoto_music {
    background:url(/img/music_photo.jpg) no-repeat;
    width: 193px;
    height: 193px;
    float: right;
}
.headerphoto_computing {
    background:url(/img/computing_photo.png) no-repeat;
    width: 193px;
    height: 193px;
    float: right;
}
.svg .headerphoto_computing {
    background:url(/img/computing_photo.svg) no-repeat;
    background-size:193px 193px;
}
.first { 
  text-transform: lowercase; 
  font-family: "futura-pt-n3","futura-pt",sans-serif;
  font-style: normal;
  font-weight: 300;
}
.last {
  text-transform: uppercase; 
  font-family: "futura-pt-n8","futura-pt",sans-serif;
  font-style: normal;
  font-weight: 800;
}
header div.product {
  font-size: 21px;
  background: #333;
  border-radius: 4px;
  padding: 10px 0px;
  border: 2px solid #DEDEDE;
  text-align: center;
  font-family: "futura-pt-n5","futura-pt",sans-serif;
  font-style: normal;
  font-weight: 500;
}
header div.highlight {
  background: #21503D;
  border-color: #25917F;
}
