/* White Rabbit Tech Support CSS
	by ke1v3y 
	Reset Credit to Eric Meyer
	CSS Structure Credit to Blueprint*/
/* Reset */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}

body {
  line-height: 1.25;
}

ol,ul {
  list-style: none;
}

blockquote,q {
  quotes: none;
}

blockquote:before,blockquote:after,q:before,q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* -------------------------------------------------------------------------------------------------------------------------- */

/* Site Specific CSS Code */
/* Site Structure */

@media all and (orientation:portrait) {
  body {
    background-image: url(../resources/banner.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
  }

  #content {
    width: 60%;
    position: static;
    float: right;
    top: 0;
  }
}

@media all and (orientation:landscape) {
  body {
    background-repeat: no-repeat;
    background-size: 100% auto;
  }

  #content {
    width: 70%;
    max-width: 1000px;
  }

  li {
    display: inline-block;
  }
}

@media all and (orientation:landscape) and (min-aspect-ratio: 16/9) {
  body {
    background-image: url(../resources/banner_ls2.png);
  }

  #content {
    position: relative;
    margin: 17% auto 17% auto;
  }
}

@media all and (orientation:landscape) and (min-aspect-ratio: 4/3) and (max-aspect-ratio: 16/9) {
  body {
    background-image: url(../resources/banner_ls.png);
  }

  #content {
    float: right;
    margin: 26% auto 300px auto !important;
  }
}

@media all and (orientation:landscape) and (max-aspect-ratio: 4/3) {
  body {
    background-image: url(../resources/banner_ls.png);
  }

  #content {
    float: right;
    margin: 30% auto 300px auto !important;
  }
}

@media all and (orientation:portrait) and (max-width: 650px) {
  #content {
    margin: 50% auto 150px auto !important;
  }

  li {
    display: block;
    margin-bottom: 4% !important;
    max-width: 45px !important;
  }
}

@media all and (orientation:portrait) and (min-width: 650px) and (max-width: 1050px) {
  #content {
    margin: 43% auto 200px auto !important;
    font-size: 1.15em;
  }

  #footer section {
    font-size: .95em !important;
  }

  li {
    display: inline-block;
  }
}

@media all and (orientation:portrait) and (min-width: 1050px) {
  #content {
    margin-top: 43%;
    font-size: 1.25em;
  }

  #footer section {
    font-size: 1.15em !important;
  }

  li {
    display: inline-block;
    max-width: 85px !important;
  }
}

/* Document Formatting */
#wrapper {
  position: absolute;
  top: 0;
  width: 100%;
}

a:link {
  text-decoration: none;
  color: #0066ff;
}

a:hover {
  color: #cc00cc;
}

a:active {
  color: #FFF;
}

h1,
h2,
h3,
h4,
p,
a {
  font-family: 'Josefin Sans', sans-serif;
}

table {
  width: 100%;
}

#nav {
  position: relative;
  display: inline-block;
  margin-bottom: 1%;
  width: 100%;
}

#badges {
  clear: none;
  display: block;
  float: right;
  max-height: 40px;
  width: 100%;
  background-color: #0099CC;
  color: #FFF;
  text-align: center;
  padding-top: 10px;
}

#badges img {
  padding-left: 10%;
  padding-right: 10%;
  max-width: 100%;
}

ul {
  list-style-type: none;
  margin: 0 auto -2% auto;
  text-align: center;
}

li {
  margin: 2% 4%;
  width: 10%;
  max-width: 65px;
}

#footer {
  position: fixed;
  bottom: 0;
  width: 100%;
}

#footer section {
  position: relative;
  background-color: #0099CC;
  color: #FFF;
  padding: 20px 20px 0 20px;
}

body {
  background-color: slategray;
}

#content {
  background-color: rgba(255, 255, 255, 0.35);
  padding: 25px;
  clear: both;
  height: 100%;
}

img.nav {
  width: 100%;
}