body {
    background: -webkit-gradient(linear, left top, right top,
                                 from(#202020),
                                 color-stop(0.1, #303030),
                                 color-stop(0.16, #202020),
                                 color-stop(0.3, #404040),
                                 color-stop(0.8, #202020),
                                 to(#404040));
    background: -moz-linear-gradient(left,
                                     #202020,
                                     #303030 10%,
                                     #202020 16%,
                                     #404040 30%,
                                     #202020 80%,
                                     #404040);
    background-color: #404040;
    color: #f0f0f0;
}

h1 {
    font-size: 3em;
    margin: 0px;
    padding-top: 32px;
    padding-bottom: 32px;
}

h1:first-letter {
    font-size: 1.5em;
    color: red;
    -webkit-text-stroke-width: 0.05em;
    -webkit-text-stroke-color: red;
    -webkit-text-fill-color: #404040;
}
h2:first-letter,h3:first-letter,h4:first-letter {
    font-size: 1.5em;
    color: orange;
}

#menu {
    position: fixed;
    width: 16%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1000;
}
#menu #menu_main {
    position: absolute;
    top: 10px;
}
.menu_item {
    background: -webkit-gradient(linear, left top, right bottom,
                                 from(#101010),
                                 to(#202020));
    background: -moz-linear-gradient(left top,#101010,#202020);
    background-color: #101010;

    margin-top: 5px;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border: 2px solid gray;
    border-left: none;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomright: 10px;
}
.menu_item:hover {
    background: -webkit-gradient(linear, left top, right bottom,
                                 from(#404040),
                                 to(#505050));
    background: -moz-linear-gradient(left top,#404040,#505050);
    background-color: #404040;
}
.menu_item > * {
    margin: 5px;
}

#contents {
    padding-top: 10px;
    padding-bottom: 3%;
    width: 92%;
    margin-left: 4%;
    border: 5px solid silver;
    border-top-width: 0px;
    -webkit-border-bottom-left-radius: 30px;
    -webkit-border-bottom-right-radius: 30px;
    -moz-border-radius-bottomleft: 30px;
    -moz-border-radius-bottomright: 30px;
}
.content {
    margin-left: 16%;
    width: 80%;
    clear: left;
}

.product {
    border: 3px dotted gray;
    width: 91%;
    margin: 1%;
    padding: 2%;
    float: left;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    background: -webkit-gradient(linear, left top, right bottom,
                                 from(#101010),
                                 to(#202020));
    background: -moz-linear-gradient(left top,#101010,#202020);
    background-color: #101010;
}
.half-size {
    width: 42.5%;
}
.product h3 + p:first-line {
    text-transform: uppercase;
}
/*
.product h2 + h3 + p:first-letter {
    font-size: 3em;
    float: left;
    margin-left: 0em;
}
*/
.product h3 + p:first-letter {
    font-size: 1.5em;
    margin-left: 0em;
}
.product > * {
    margin-left: 1em;
}
.product h2 {
    margin-left: 0em;
}
.product h3 {
    margin-left: 1em;
}
.product hr {
    border-color: #404040;
}
.product p {
    margin-left: 1.5em;
}
.product p:first-letter {
    margin-left: 1em;
}
/*
h2 + p:first-line {
    text-transform: uppercase;
}
h2 + p:first-letter {
    font-size: 1.5em;
}
*/

table {
    border: 1px solid #d0d0d0;
    width: 95%;
}
table th {
    background-color: #808080;
}
table tr td:first-child {
    text-align: center;
}
table tr td {
    padding-left: 1em;
    padding-right: 1em;
    background-color: #404040;
}

.badge {
    background-color: red;
    float: right;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    color: white;
    padding: 3px;
}

#footer {
    clear: left;
    text-align: right;
}

a:link {
    color: white;
}
a:visited {
    color: silver;
}
