* {
    box-sizing: border-box;
}
body{
    margin: 0px;
    background-color: #262626; 
}
header, footer {
    padding-top: 5px;
    text-align: center;
    display: inline;
}
.container {
    background: #363636;
}
.menu {
    width: 100%; 
    background: #ff9900; 
}
.content { 
    margin: 0px;
    background: rgba(0,0,0,0);
}
h1 {
    color: lightgrey;
    text-align: center;
    font-family: verdana;
    margin-top: 0px;
}
.content h1 {
    font: verdana;
}
h6, h5, h4, h3, h2 {
    color: darkgrey;
    font-family: verdana;
    margin-top: 0px;
}
.menu ul {
    list-style-type: none;
    background-color: #ff9900;
    padding-left: 30px;
    margin: 0px;
    overflow: hidden;
}
li {
    color: darkgrey;
    font-family: verdana;
}
.menu li {
    list-style-type: none;
    float: left;
    margin-bottom: 0px;
    background-color: #ff9900;
    color: #ffffff;
    -webkit-transition-duration: 0.6s; /* Safari */
    transition-duration: 0.6s;
}
.menu li:hover {
    background-color: #e68a00;
}
.patch-list {
    list-style-type: none;
    padding-left: 10px;
}
.patch-list li:before {
    content: '-';
}
li a {
    display: block;
    text-decoration: none;
    padding: 8px;
}
a.nav-button { 
    color: #ffffff; 
    font: inherit; 
    font-size: 25px;
}
a.links {
    color: darkgrey;
    font-family: verdana;
    font-size: 20px;
}
a.button {
    text-decoration: none;
    font-family: verdana;
    vertical-align:middle;
}
p {
    color: darkgrey;
    font-family: verdana;
}
hr.style-one {
    margin-left: 0;
    border: 0;
    height: 1px;
    background: darkgrey;
}
hr.style-two {
    border: 0;
    height: 1px;
    background: #333333;
    background-image: linear-gradient(to right, #262626, #333333, #262626);
}
.button {
    background-color: #ff9900;
    border: 2px solid #ff9900;
    color: #363636;
    padding: 2px 4px;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
}
.button:hover {
    background-color: #363636;
    color: #ff9900;
}
.button .icon {
    /*content: url('../Pictures/download-icon-invert.png');*/
    margin-left: 4px;
    vertical-align: middle;
    width: 32px; 
    height: 32px;
    font-size: 32px;
}
article.textbox {
    background-color: #363636;
    margin: 10px;
    padding: 15px;
}