<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
@import url('bootstrap.min.css');
@import url('font-awesome.min.css');

*{
	margin:0;
	padding:0;
}

html {
    margin: 0;
    padding: 0;
    height: 100%;
}

body{
  background: #e7e7e7;
  font-family: 'Open Sans';
	margin:0;
	padding:0;
  height: 100%;
	min-height: 100%;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    color: inherit;
    text-align: center;
    margin-bottom: 20px;
}

#wrapper{
	margin: 0 auto;
	position: relative;
	height: auto;
	min-height: 55vh;
	width: 100%;
}


header{
  background:rgb(242,244,250,0.9);
  border-bottom: 2px solid #ccc;
  padding: 10px 5px 10px 5px;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.headeractive{
  top: 0 !important;
}

header .logo{
  display: table;
  float: left;
  margin:0;
  text-decoration: none;
  outline: none;
}

header .logo img{
  max-height: 70px;
}

header .logos{
  float: right;
  max-height: 92px;
}

header .logo .logoname{
  color: #000;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}

.homeSection{
  background: rgba(255,255,255,1);
  box-shadow: 0px 0 25px 0px #000;
  margin: 0 auto;
  margin-top: 0px;
  margin-top: -5%;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: 100vh;
  width: 95%;
  z-index: 99;
}

.simple-pagination{
  display: table;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;

}

.simple-pagination ul{
  margin: 0;
  padding: 0;
  list-style: none;
}

.simple-pagination li {
  color: #000;
  display: table;
  font-size: 14px;
  float: left;
  margin-right: 5px;
  outline: none;
}

.simple-pagination li a,
.simple-pagination li span {
	color: #666;
	padding: 5px 10px;
	text-decoration: none;
	border: 1px solid #EEE;
	background-color: #FFF;
	box-shadow: 0px 0px 10px 0px #EEE;
}

.simple-pagination .current {
	color: #FFF;
	background-color: #2b509f ;
	border-color: #2b509f ;
}

.simple-pagination .prev.current,
.simple-pagination .next.current {
	background: #293453;
}

.pagination{
  display: table;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

.pagination li a{
  color: #000;
  font-size: 14px;
  outline: none;
}

@media screen and (max-width: 977px){

	header{
		background-position: 95% 0%;
	}
  
}</pre></body></html>