/* general layout */
*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: sans-serif;
    height: 100%;
    margin: 0;
    line-height:1.6;
    font-size:18px;
    color:#444;
    background: #FAFAFA;
}

div.content {
    margin: 10px;
    flex-grow: 1;
}

#slsup {
    display: flex;
    flex-flow: column nowrap;
    min-height: 100%;
}

.power {
    color: #1c1c1c;
    background-color: rgb(246, 246, 255);
    padding: 0 10px 0 10px;
}
.power a {
    color: #1c1c1c;
}
.power a:visited {
    color: #323232;
}

.foot {
    padding: 5px 10px 5px 10px;
    font-size: 75%;
}

h1 {
    font-style: italic;
}
h1 a {
    text-decoration: none;
}

h1,h2,h3 {
    font-variant: small-caps;
}

.head h1, .head h3 {
    display: inline;
}

.head {
    border-bottom: 2px solid black;
}

a {
    color: blue;
    text-decoration: underline;
}

.sidebar_flex {
    display: flex;
    flex-flow: row nowrap;
}

.sidebar_flex .sidebar {
    flex-basis: 200px;
    border-right: dotted 1px #AFAFAF;
}

.sidebar_flex .mainbar {
    flex-grow: 1;
    margin: 0 10px 0 10px;
}

.collapse {
    display: none;
}

.inline {
    display: inline;
}

ul.tag_list {
    padding: 0;
}

ul.tag_list li {
    display: inline;
    background: #DFDFDF;
    border-radius: 5px;
    padding: 0 5px 0 5px;
}

form.inline_form {
    display: inline;
}

.para {
    margin-block-start: 1em;
    margin-block-end: 1em;
}
