﻿* {
    box-sizing: border-box
}

.newsDoc  {
    display: none
}



/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    padding: 5px;
    box-shadow: 0px 0px 3px 3px #aaaaaa8a;
}
  .newsDoc img {
    vertical-align: middle;
    width:100%;
}
/* Next & previous buttons */
.previtem, .nextitem {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background:#d7e8e4
}

/* Position the "next button" to the right */
.nextitem {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.previtem {
    left: 0;
    border-radius: 3px 0 0 3px;
}
    /* On hover, add a grey background color */
    .previtem:hover, .nextitem:hover {
        background-color: #f1f1f1;
        color: black;
    }

 