/* Set style for html document body */


/*body{
	font-size:76%;
	padding:0;
	margin:0;
	background-color: #eee;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
*/

#pagination a {
    color: var(--c1-medium);
}

#pagination a.firstlast {}

#pagination a {
    color: var(--c1-medium);
    text-decoration: none;
}

#pagination a:hover {
    text-decoration: underline;
}

#pagination a.firstlast {
    font-size: 18px;
    text-decoration: none;
    top: 2px;
    position: relative;
    margin: 10px;
}

#header {
    position: fixed;
    top: 0;
    width: 100%;
    padding-bottom: 1em;
    /*background-color: #eee;*/
    /*border-bottom: 1px solid #000;*/
    /*height: 3.4em;*/
}

.headertoo {
    height: 7.5em;
}

div.listitem {
    width: 20%;
    /*margin: 2em 10em;*/
    margin: 10px;
    border: 1px solid #888;
    border-radius: 8px;
    padding-bottom: 1em;
    background-color: #fff;
    color: var(--c1-medium);
}

div.listpagination {
    /*border-top: 1px dotted #666;*/
    text-align: center;
    font-size: 1em;
    font-family: 'Prata', serif;
    position: relative;
    width: 100%;
}

div.listpagination:before {
    content: '';
    width: 42%;
    height: 1px;
    top: 10px;
    position: absolute;
    border-top: 1px dotted #666;
    transform: translateX(-105%);
}

div.listpagination:after {
    content: '';
    width: 42%;
    height: 1px;
    top: 10px;
    position: absolute;
    border-top: 1px dotted #666;
    transform: translateX(5%);
}

#scrollingcontent.v2 div.listpagination,
#scrollingcontent.v3 div.listpagination {
    max-width: 900px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 150px;
}

#pagination_container {
    position: fixed;
    bottom: 0;
    width: 100%;
    transition: transform .25s ease-in-out;
    will-change: transform;
    text-align: center;
    z-index: 111111111;
}

#pagination {
    position: relative;
    width: 100%;
    border-top: 2px solid #000;
    padding-bottom: 10px;
    padding-top: 10px;
    /*background-color: var(--c2-light);*/
    top: -2px;
    text-align: center;
}

#pagination a.active {
    color: black;
    pointer-events: none;
    font-weight: bold;
    text-decoration: none;
}

#pagination_container.headroom--pinned {
    transform: translate(0%, 0%);
}

#pagination_container.headroom--unpinned {
    transform: translate(0%, 105%);
}