<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";


.pagenationLink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -js-display: flex;

  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;

  padding: 10px 0;
}

.pagenationLink .current {
  min-width: 27px;
  height: 27px;
  border-radius: 50%;
  color: #fff;
  background-color: #333;
  text-align: center;
  line-height: 27px;
  margin: 0 6px;
}

.pagenationLink li a {
  text-decoration: none;
  display: inline-block;
  min-width: 27px;
  height: 27px;
  color: #333;
  margin: 0 6px;
  border-radius: 50%;
  transition: background-color .3s, color .3s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -js-display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.pagenationLink li a:hover {
  background-color: #891892;
  color: #fff;
}

.prev .fa-play {
  transform: rotate(180deg);
}

.pagenationLink .fa-play {
  font-size: 1.1rem;
}

.newsList {
  padding: 25px 0;
  border-top: 3px solid #000;
  border-bottom:3px solid #000;
}

.newsItemWrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -js-display: flex;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;

  max-width: 642px;
  margin: 0 auto;
}

.newsItemWrapper:after {
  content: '';
  width: 32.584269662921%;
  display: block;
}

.newsItem {
  width: 49%;
  border: 1px solid #999;
  margin: 0 0 6px;
  display: block;
  color: #000;
  text-decoration: none;
}

.newsItem:hover {
  color: #000;
  opacity: 0.7;
}

.newsItemPhoto {
  position: relative;
  padding-top: 68.18%;
  background-size: cover;
  background-position: center center;
  margin: 3px 3px 8px;
  background-color: #CFBFFF;
}
.newsItemNew {
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  border: 20px solid transparent;
  border-top: 20px solid red;
  border-left: 20px solid red;
}
.newsItemNew span {
  color: #fff;
  display: inline-block;
  transform: rotate(-45deg);
  font-size: 1rem;
  position: absolute;
  top: -12px;
  left: -18px;
  font-weight: bold;
}

.newsItemBody {
  padding: 0 6px 6px;
}

.newsItemCategory {
  display: inline-block;
  padding: 3px 16px;
  font-weight: bold;
  border-radius: 8px;
  border: 1px solid #888;
  font-size: 12px;
  background: linear-gradient(#fff, #eee 70%, #fff);
  margin: 0 0 5px 0
}

.newsItemDate {
  padding: 2px 0;
  border-bottom: 1px solid #999;
  margin: 0 0 2px 0;
}

.newsItemTitle {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.9;
}

@media print, screen and (min-width : 768px) {
.newsItem {
  width: 210px;
}

}

@media print, screen and (min-width : 960px) {

}

</pre></body></html>