* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box
}

html {
   / height: 100%
}

body {
    font: var(--text-size) fl;
    color: var(--color-black);
    background: var(--color-bg-gray);
    height: 100%;
    min-width: var(--min-width);
}

a {
    color: var(--color-blue);
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

h1, h2, h3, h4, h5, h6 {
    margin: 4px 0 12px;
    color: var(--color-black)
}

h1 {
    font: 28px flbold;
    text-transform: uppercase;
}

h2 {
    font: 22px flbold;
    color: #96121b;
    margin: 10px 0px 12px 0px;
}

img {
    border: none;
}

header, nav, section, article, aside, footer {
    display: block;
    position: relative
}

.clear {
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}
.displaynone {
    display: none;
}

#wina {
    position: absolute;
    width: 0px;
    height: 0px;
    display: none;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
    background: #ffffff;
}
