@charset "utf-8";
/*
================================================================================
================================================================================
	CSS-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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  border: 0;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
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;
}
/*
================================================================================
================================================================================
	ALLGEMEINE SEITENSTRUKTUR
		=> auf allen Seiten benötigt, zum Grundgerüst der Seite gehörend
--------------------------------------------------------------------------------
*/
body {
  background-image: url('images/MM-Landscape_background.png');
  background-repeat: no-repeat;
  background-color: rgb(16, 14, 12);
  margin: 0 auto;
  padding: 0 25px 25px 25px;
  font-size: 14px;
  font-family: Verdana, Arial, sans serif;
  line-height: 17px;
  width: 1200px;
}
a {
  color: rgb(197, 68, 37);
  text-decoration: none;
  white-space: normal;
}
/* h1 und h2 nur für Strukturierung ohne Sichtbarkeit*/
h1,
h2 {
  visibility: hidden;
  line-height: 0;
  font-size: 0;
}
/*
================================================================================
================================================================================
	NAVIGATION (HEADER)
--------------------------------------------------------------------------------
*/
header.navi {
  border-top: 5px transparent solid;
}
ul.button {
  background-color: rgb(220, 220, 220);
  box-shadow: 2px 2px 2px rgb(160, 160, 160);
}
ul.button:after {
  content: '';
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  display: block;
  clear: both;
}
/* Hauptbuttons */
ul.button li {
  background-color: rgb(220, 220, 220);
  border-right: 1px solid rgb(160, 160, 160);
  min-width: 100px;
  float: left;
  list-style: none;
}
ul.button li a {
  padding: 10px 20px 10px 20px;
  text-align: left;
  display: block;
  transition: background 0.2s ease-out 0s;
}
ul.button li:hover a {
  color: rgb(240, 240, 240);
  background-color: rgb(197, 68, 37);
}
/*	Letzten Button rechtsbündig ausrichten: */
ul.button li.lastbutton {
  border-right: 0;
  float: right;
  position: relative;
  border-left: 1px solid rgb(160, 160, 160);
  min-width: 100px;
}
/* Subbuttons */
ul.subbutton {
  visibility: hidden;
  position: absolute;
  box-shadow: 2px 2px 2px rgb(160, 160, 160);
}
li:hover ul.subbutton {
  padding-top: 3px;
  visibility: visible;
  z-index: 999;
}
ul.subbutton li {
  border: 0px none transparent;
  float: none;
}
ul.subbutton li a {
  color: rgb(240, 240, 240);
}
ul.subbutton li a:hover {
  color: rgb(197, 68, 37);
  background-color: rgb(220, 220, 220);
}
/*
================================================================================
================================================================================
	MAIN
--------------------------------------------------------------------------------
*/
main {
  width: 1200px;
  float: left;
  border-bottom: 3px transparent solid;
}
main article {
  margin: 20px 0px 40px 0px;
  padding: 0px 0px 10px 0px;
  background-color: rgb(255, 255, 255);
  border-radius: 0px 0px 5px 5px;
}
main h3 {
  margin-top: -6px;
  padding: 0px 12px 6px 24px;
  font-weight: bold;
  font-size: 26px;
  line-height: 26px;
  max-width: 1000px;
}
main h4 {
  margin: 20px 12px 5px 12px;
  padding: 0;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  border-bottom: rgb(197, 68, 37) solid 2px;
}
main h5 {
  margin: 0px 12px 8px 12px;
  padding: 15px 0 0 0;
  font-weight: bold;
  text-decoration: underline double rgb(197, 68, 37);
}
main ul {
  margin: 0px 30px;
  list-style: disc;
}
main b {
  font-weight: bold;
}
main form {
  margin: 14px 0 14px 0;
}
main form fieldset {
  margin: 20px;
  padding: 10px;
  border: rgb(200, 200, 200) solid 2px;
  border-radius: 3px;
}
main form label {
  margin-top: 5px;
  line-height: 22px;
}
main form label.selected {
  font-weight: bold;
}
main form select {
  margin-right: 20px;
}
main form input {
  margin: 3px 0 3px 0;
}
main form input.checkbox {
  margin-right: 15px;
  float: left;
}
main p.innerform {
  margin: 5px 0 14px 0;
}
main p.datum {
  margin: 0;
  padding: 2px 12px 0 0;
  font-style: italic;
  text-align: right;
  /*	border-top:rgb(197,68,37) solid 3px;*/
}
main p.intro {
  margin: 5px 12px 0px 12px;
  font-weight: bold;
  text-align: left;
}
main p.text {
  margin: 14px 12px 14px 12px;
  text-align: justify;
}
main p.by {
  margin: 20px 12px 14px 12px;
  color: rgb(120, 120, 120);
  font-style: italic;
  font-weight: bold;
  font-family: Georgia, Times New Roman, serif;
  text-align: right;
}
main p.subheader {
  margin: 6px 12px 14px 24px;
  color: rgb(120, 120, 120);
  font-style: italic;
  font-weight: bold;
  font-family: Georgia, Times New Roman, serif;
  text-align: left;
}
main p.fazit {
  margin: 3px 12px 0px 12px;
  text-align: left;
}
main a.blocklink {
  padding: 10px 12px 0px 12px;
  display: block;
}
main a.inlinelink:active,
a.inlinelink:hover,
a.inlinelink:focus {
  text-decoration: underline;
}
main a.blocklink:active,
a.blocklink:hover,
a.blocklink:focus {
  text-decoration: underline;
}
main img.cover {
  width: 1100px;
  margin: 20px 50px 10px 50px;
}
/*
================================================================================
================================================================================
	Ausrüstungs-Vergleich (itemcomp)
--------------------------------------------------------------------------------
*/
.stats-wrapper {
  float: left;
}

.offence-list,
.defence-list {
  list-style-type: none;
}

.offence-list {
  column-count: 2;
}

.defence-list {
  column-count: 3;
}

fieldset.itemcomp h4,
fieldset.itemstats h4 {
  margin: 0px 0px 10px 0px;
  padding: 0px;
}
p.itemvergleichergebnis {
  margin: 10px 0px 0px 0px;
  padding-top: 3px;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  border-top: rgb(197, 68, 37) solid 2px;
}
fieldset.itemstats {
  float: left;
  margin-right: 20px;
  margin-left: 20px;
  width: 236px;
}
fieldset.itemstats input {
  width: 65px;
  text-align: right;
}
table.itemstats td {
  text-align: right;
  padding-right: 3px;
}
table.itemstats select {
  margin-right: 0px;
}
button.reset {
  font-size: 18px;
  margin-top: 10px;
  width: 100%;
  white-space: normal;
}
.essenceUncommon {
  background-image: url(images/essenceUncommon.png);
}
.essenceRare {
  background-image: url(images/essenceRare.png);
}
.essenceIncomparable {
  background-image: url(images/essenceIncomparable.png);
}
.essenceEpic {
  background-image: url(images/essenceEpic.png);
}
.essenceUncommon,
.essenceRare,
.essenceIncomparable,
.essenceEpic {
  background-repeat: no-repeat;
  background-size: 18px 18px;
  padding-left: 20px;
}
/*
================================================================================
================================================================================
	EXTERNE LINKS
--------------------------------------------------------------------------------
*/
article.link {
  margin: 0px;
  padding: 6px 0px;
}
article.link img {
  max-height: 32px;
  float: right;
}
article.link div {
  width: 238px;
  float: left;
}
article.link h4 {
  line-height: 32px;
  margin: 0;
  color: rgb(197, 68, 37);
  border: 0;
  margin-left: 250px;
  font-style: italic;
  font-weight: normal;
}
/*
================================================================================
================================================================================
	IMPRESSUM (FOOTER)
--------------------------------------------------------------------------------
*/
footer.impressum {
  position: fixed;
  bottom: 0px;
  padding: 0px;
  border-top: 3px transparent solid;
  border-bottom: 5px transparent solid;
  width: 1200px;
  text-align: center;
  background-color: transparent;
}
footer.impressum p {
  padding: 3px 0px 3px 0px;
  background-color: rgb(220, 220, 220);
  border-top: 3px rgb(197, 68, 37) solid;
  border-bottom: 3px rgb(197, 68, 37) solid;
}
/*
--------------------------------------------------------------------------------
ENDE ENDE ENDE ENDE ENDE ENDE ENDE ENDE ENDE ENDE 
================================================================================
================================================================================
*/
