/*  JavaScript 6th Edition
    Chapter 3
    Chapter case

    Tipton Turbines
    Large format style sheet

    Filename: turbines.css
*/

/* apply a natural box layout model to all elements */
* {
   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
}

/* reset rules */
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;
   width: 960px;
   background: -webkit-linear-gradient(rgb(235,93,52), white) no-repeat;
   background: -moz-linear-gradient(rgb(235,93,52), white) no-repeat;
   background: linear-gradient(rgb(235,93,52), white) no-repeat;
   margin: 0 auto;
   font-family: "Maven Pro", arial, helvetica, sans-serif;
   font-weight: 400;
   position: relative;
}

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;
}

a:link, a:visited {
   text-decoration: none;
   color: inherit;
}

a:hover {
   text-decoration: none;
   color: inherit;
}

a:active {
   text-decoration: none;
   color: inherit;
}

/* container */
#container {
   -webkit-box-shadow: 10px 0px 10px rgba(50, 50, 50, 1),
                       -10px 0px 10px rgba(50, 50, 50, 1);
   -moz-box-shadow:    10px 0px 10px rgba(50, 50, 50, 1),
                       -10px 0px 10px rgba(50, 50, 50, 1);
   box-shadow:         10px 0px 10px rgba(50, 50, 50, 1),
                       -10px 0px 10px rgba(50, 50, 50, 1);
}

/* page header */
header {
   font-size: 48px;
   border-bottom: 35px solid black;
   border-left: 35px solid #EFE0B9;
   height: 95px;
   background-color: #EFE0B9;
}

header img {
   position: relative;
   left: -35px;
   display: block;
}

/* navigation */
nav {
   font-size: 16px;
   font-weight: 900;
   position: absolute;
   top: 62px;
   width: 95%;
   margin-left: 5%;
   color: white;
}

nav ul {
   text-align: center;
}

nav ul li {
   display: inline-block;
   padding: 8px 15px;
   margin: 0 3px;
   z-index: 2;
}

nav ul li:hover {
   background: white;
   color: rgb(235,93,52);
}

/* main content */
article {
   background: white;
   border-top: 1px solid black;
}

article h2 {
   font-size: 1.2em;
   font-weight: bold;
   width: 182px;
   text-align: center;
   padding: 10px 5px 0;
}

article p {
   margin-bottom: 6px;
   line-height: 1.2em;
}

article table {
   width: 100%;
   text-align: center;
   table-layout: fixed;
}

article table caption {
   padding: 5px;
   width: 182px;
}

article tr td:first-child, article tr td:last-child {
   background: #DDDDDD;
}

article th, article td {
   border: 1px solid black;
   border-collapse: collapse;
   padding: 5px;
   width: 14.2857%;
}

article tr td:first-of-type, article tr th:first-of-type {
   border-left: 0;
}

article tr td:last-of-type, article tr th:last-of-type {
   border-right: 0;
}

article th {
   font-weight: 700;
   background: #EFE0B9;
}

article td p:first-of-type {
   font-weight: 900;
   text-align: right;
}

/* footer */
footer {
   width: 100%;
   font-size: 14px;
   padding: 10px;
   background: rgb(235,93,52);
   color: white;
}

footer p {
   text-align: center;
}