html, body{
    height: 100%;
    font-family: arial, sans-serif;
}
a{
    text-decoration: none !important;
}

.bubblingG {
    display: none;
    text-align: center;
    width:80px;
    height:50px;
    position: fixed;
    bottom: 0;
    right: 0;
}

.bubblingG span {
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    margin: 25px auto;
    background: #000000;
    -moz-border-radius: 50px;
    -moz-animation: bubblingG 1.1s infinite alternate;
    -webkit-border-radius: 50px;
    -webkit-animation: bubblingG 1.1s infinite alternate;
    -ms-border-radius: 50px;
    -ms-animation: bubblingG 1.1s infinite alternate;
    -o-border-radius: 50px;
    -o-animation: bubblingG 1.1s infinite alternate;
    border-radius: 50px;
    animation: bubblingG 1.1s infinite alternate;
}

#bubblingG_1 {
    -moz-animation-delay: 0s;
    -webkit-animation-delay: 0s;
    -ms-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s;
}

#bubblingG_2 {
    -moz-animation-delay: 0.33s;
    -webkit-animation-delay: 0.33s;
    -ms-animation-delay: 0.33s;
    -o-animation-delay: 0.33s;
    animation-delay: 0.33s;
}

#bubblingG_3 {
    -moz-animation-delay: 0.66s;
    -webkit-animation-delay: 0.66s;
    -ms-animation-delay: 0.66s;
    -o-animation-delay: 0.66s;
    animation-delay: 0.66s;
}

@-moz-keyframes bubblingG {
    0% {
        width: 10px;
        height: 10px;
        background-color:#000000;
        -moz-transform: translateY(0);
    }

    100% {
        width: 24px;
        height: 24px;
        background-color:#FFFFFF;
        -moz-transform: translateY(-21px);
    }

}

@-webkit-keyframes bubblingG {
    0% {
        width: 10px;
        height: 10px;
        background-color:#000000;
        -webkit-transform: translateY(0);
    }

    100% {
        width: 24px;
        height: 24px;
        background-color:#FFFFFF;
        -webkit-transform: translateY(-21px);
    }

}

@-ms-keyframes bubblingG {
    0% {
        width: 10px;
        height: 10px;
        background-color:#000000;
        -ms-transform: translateY(0);
    }

    100% {
        width: 24px;
        height: 24px;
        background-color:#FFFFFF;
        -ms-transform: translateY(-21px);
    }

}

@-o-keyframes bubblingG {
    0% {
        width: 10px;
        height: 10px;
        background-color:#000000;
        -o-transform: translateY(0);
    }

    100% {
        width: 24px;
        height: 24px;
        background-color:#FFFFFF;
        -o-transform: translateY(-21px);
    }

}

@keyframes bubblingG {
    0% {
        width: 10px;
        height: 10px;
        background-color:#000000;
        transform: translateY(0);
    }

    100% {
        width: 24px;
        height: 24px;
        background-color:#FFFFFF;
        transform: translateY(-21px);
    }

}

/* treeview */
.reader
{
    top: 50px;
    position:relative;
    left: 0;
    width:100%
    border: none;
}

.treeview,
.fluxview {
    position: absolute;
    height:100%;
    float: left;
    overflow-y: auto;
    resize: horizontal;
}
.fluxview {
    left: 30%;
    width: 70%
}
.treeview{
    left: 0;
    width: 30%;
}
.treeview ul,
.treeview li
{
    padding: 0;
    margin: 0;
    list-style: none;
}

.treeview input
{
    position: absolute;
    opacity: 0;
}

.treeview
{
    //font: normal 11px "Segoe UI", Arial, Sans-serif;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.treeview a
{
    /*color: #00f;*/
    text-decoration: none;
}

.treeview a:hover
{
    text-decoration: underline;
}

.treeview input + label + ul
{
    margin: 0 0 0 22px;
}

.treeview input ~ ul
{
    display: none;
}

.treeview label,
.treeview label::before
{
    cursor: pointer;
}

.treeview input:disabled + label
{
    cursor: default;
    opacity: .6;
}

.treeview input:checked:not(:disabled) ~ ul
{
    display: block;
}

.treeview label,
.treeview label::before
{
    background: url("/static/img/treeview-icons.png") no-repeat;
}

.treeview label,
.treeview a,
.treeview label::before
{
    display: inline-block;
    height: 16px;
    line-height: 16px;,
    vertical-align: middle;
}


.post {
    border-bottom: 1px solid;
    border-color: #cccccc;
}

.post_bar {
    padding: 5px;
    cursor: pointer;
    background: #eeeeee;
}

.post_content {
    margin: 4px;
}

.date_publication {
    float: right;
}

.title {
    font-size: 1.4em;
    font-weight: bold;
}

.flux {
    color: #555555;
}
.titre {
    color: #000000;
}
