<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*--------------------------------------------------------------
3.0 Buttons
--------------------------------------------------------------*/
.red-btn {
	background: #e96656;
}
.green-btn {
	background: #1e9e6b;
}
.blue-btn {
	background: #3ab0e2;
}
.yellow-btn {
	background: #E7AC44;
}
.red-btn,.green-btn,.blue-btn,.yellow-btn {
	color: #FFF !important;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.blue-btn:hover {
	color: #FFF;
	background: #1288b9;
}
.red-btn:hover {
	color: #FFF;
	background: #cb4332;
}
.green-btn:hover {
	color: #FFF;
	background: #069059;
}
.yellow-btn:hover {
	color: #FFF;
	background: #d8951e;
}
.btn:hover{
    box-shadow: none;
}
/*---------------------------------------
 **   COLORS                         -----
-----------------------------------------*/
/** BACKGROUNDS **/

.red-text {
	color: #006699;
}
.green-text {
	color: #34d293;
}
.blue-text {
	color: #3ab0e2;
}
.yellow-text {
	color: #f7d861;
}
.dark-text {
	color: #404040;
}
.white-text {
	color: #FFFFFF;
}
/*---------------------------------------
 **   BORDER BOTTOMS                 -----
-----------------------------------------*/
.white-border-bottom:before {
	position: absolute;
	margin: auto;
	z-index: 1;
	content: "";
	width: 50%;
	height: 2px;
	background: #F5F5F5;
	bottom: -9px;
	left: 25%;
}
.dark-border-bottom:before {
	position: absolute;
	margin: auto;
	z-index: 1;
	content: "";
	width: 50%;
	height: 2px;
	background: #404040;
	bottom: -9px;
	left: 25%;
}
.red-border-bottom:before {
	position: absolute;
	margin: auto;
	z-index: 1;
	content: "";
	width: 75%;
	height: 2px;
	background: #e96656;
	bottom: -9px;
	left: 12.5%;
}
.green-border-bottom:before {
	position: absolute;
	margin: auto;
	z-index: 1;
	content: "";
	width: 75%;
	height: 2px;
	background: #34d293;
	bottom: -9px;
	left: 12.5%;
}
.blue-border-bottom:before {
	position: absolute;
	margin: auto;
	z-index: 1;
	content: "";
	width: 75%;
	height: 2px;
	background: #3ab0e2;
	bottom: -9px;
	left: 12.5%;
}
.yellow-border-bottom:before {
	position: absolute;
	margin: auto;
	z-index: 1;
	content: "";
	width: 75%;
	height: 2px;
	background: #f7d861;
	bottom: -9px;
	left: 12.5%;
}

/*---------------------------------------
 **   4.0 Forms                     -----
-----------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
	*vertical-align: middle; /* Improves appearance and consistency in IE6/IE7 */
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	text-align: center;
	text-transform: uppercase;
	padding: 13px 35px 13px 35px;
	border-radius: 4px;
	margin: 10px;
	border: none;
	background-color: #e96656;
	box-shadow: none;
	text-shadow: none;
	font-weight: 400;
	vertical-align: middle;
	cursor: pointer;
	white-space: nowrap;
	font-size: 14px;
	color: #FFF;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa #bbb;
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb #bbb;
}
input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}
input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing:    content-box;
	box-sizing:         content-box;
}
input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #555;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 0;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}
textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 98%;
}
.entry-content button,
.entry-content input[type="button"],
.entry-content input[type="reset"],
.entry-content input[type="submit"] {
	padding: 5px 20px 5px 20px;
}
.entry-content button:hover,
.entry-content input[type="button"]:hover,
.entry-content input[type="reset"]:hover,
.entry-content input[type="submit"]:hover {
	background: #14a168;
}
.input-box {
	border: 0 !important;
	width: 274px;
	text-align: left;
	text-transform: none;
	padding: 9px;
	min-height: 46px;
	padding-left: 15px !important;
	display: inline-block;
	border-radius: 4px;
	background: rgba(255,255,255, 0.95);
}
.textarea-box {
	border: 0;
	text-align: left;
	text-transform: none;
	padding: 9px;
	min-height: 250px;
	padding-left: 15px;
	display: inline-block;
	border-radius: 4px;
	background: rgba(255,255,255, 0.95);
}
textarea:hover,
input:hover,
textarea:active,
input:active,
textarea:focus,
input:focus {
    outline: 1 !important;
    outline-color: #e96656 !important;

  -webkit-box-shadow:none !important;
  box-shadow:none !important;
}
input:focus,
textarea:focus {
	border: 1px solid rgba(0, 0, 0, 0.3);
	outline: 0;
}
 /*---------------------------------------
 **   5.0 Navigation                 -----
-----------------------------------------*/
 /*---------------------------------------
 **   5.1 Links                 -----
-----------------------------------------*/
a {
	color: #808080;
}
a:visited {
	color: #808080;
}
a:hover,
a:focus,
a:active {
	color: #006699;
}
/*---------------------------------------
 **   5.2 Menus                  -----
-----------------------------------------*/
.navbar-inverse .navbar-nav&gt;li&gt;a:hover, 
.navbar-inverse .navbar-nav&gt;li&gt;a.link-focus {
	color: #006699;
	outline: none;
}
.navbar-toggle {
	border: 0;
	background-color: #808080;
	margin-top: 23px;
}
.navbar-toggle:focus {
	border:1px dotted black;
}
.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus {
	background-color: #006699;
	filter: alpha(opacity=100);
	opacity: 1;
	box-shadow: none;
}
.navbar-toggle.active{
    background-color: #006699 !important;
}
.nav-links a {
	color: #006699;
}
 /*---------------------------------------
 **   9.0 Widgets                   -----
-----------------------------------------*/
.widget .widget-title:before{
	position: absolute;
	margin: auto;
	z-index: 1;
	content: "";
	width: 35%;
	height: 2px;
	background: #006699;
	bottom: -9px;
	left: 0;
}
 /*---------------------------------------
 **   10.1 Posts and pages                   -----
-----------------------------------------*/
.entry-title:before {
	position: absolute;
	margin: auto;
	z-index: 1;
	content: "";
	width: 10%;
	height: 2px;
	background: #006699;
	bottom: -9px;
	left: 0;
}
/*---------------------------------------
 **   Section: Home                  -----
-----------------------------------------*/

/*----  SECTION:  HOME &gt; TOP BAR   ----*/

 #site-navigation {
 	height: 1px;
	float: right;
	margin-right: 0;
	margin-left: 0;

}
.navbar {
	background: #FFF;
	border: 0;
	border-radius: 0 !important;
	text-align: left;
}
#main-nav {
	position: fixed;
	width: 100%;
	z-index: 1000;
	min-height: 75px;
	margin-bottom: 0;
}
#main-nav.fixed {
	position: fixed;
	top: 0;
}
.navbar-inverse .navbar-nav {
	margin-left: 0;
	margin-right: 0;
}
.navbar-inverse .navbar-nav &gt;li {
	display: inline;
	margin-right: 20px;
	margin-top: 20px;
}
.navbar-inverse .navbar-nav&gt;li:last-child {
	margin-right: 0 !important;
}
.navbar-inverse .navbar-nav&gt;li&gt;a {
	color: #404040;
	padding: 0;
	line-height: 35px;
}
.navbar-inverse .main-navigation ul &gt; li {
	display: inline;
	margin-right: 20px;
	margin-top: 20px;
}
.navbar-inverse .main-navigation &gt; ul &gt; li:last-child {
	margin-right: 0 !important;
}
.navbar-inverse .main-navigation &gt; ul &gt; li &gt; a {
	color: #404040;
	padding: 0;
	line-height: 35px;
}
.navbar-inverse .navbar-nav ul.sub-menu {
	left: -999em;
	position: absolute; top: 100%;
	background:#fff;
	width:200px;
	box-shadow: 3px 3px 2px rgba(50, 50, 50, 0.08);
	z-index: 9999;
}
.navbar-inverse .navbar-nav ul.sub-menu {
	margin:0;
}
.navbar-inverse .navbar-nav ul.sub-menu ul.sub-menu{
	position: absolute;
	top:0;
}
.navbar-inverse .navbar-nav ul.sub-menu li {
	float: none;
	position: relative;
	list-style:none;
	padding:10px;
}
.navbar-inverse .navbar-nav ul.sub-menu li a {
	color:#404040;
}
.navbar-inverse .navbar-nav ul.sub-menu li:hover &gt; a,
.navbar-inverse .navbar-nav ul.sub-menu li.link-focus &gt; a {
	color:#006699;
}
.navbar-inverse ul ul {
	left: -999em;
}
.navbar-inverse ul ul ul {
	left: -999em;
	top: 0;
}
.navbar-inverse ul li:hover &gt; ul.sub-menu,
.navbar-inverse ul li.link-focus &gt; ul.sub-menu {
	left: auto;
}
.navbar-inverse ul ul li:hover &gt; ul.sub-menu,
.navbar-inverse ul ul li.link-focus &gt; ul.sub-menu {
	left: 100%;
}

.navbar-brand {
	height: 76px;
	position: relative;
	line-height: 60px;
	padding: 7px 15px;
	display: inline-block;
}
.navbar-brand &gt; img {
	max-height: 100%;
}
.navbar-brand:focus {
	border:1px dotted black;
}
.navbar-inverse .navbar-nav&gt;li&gt;a:hover,
.navbar-inverse .navbar-nav&gt;li&gt;a.link-focus {
	color: #006699;
	outline: none;
}
.navbar-toggle {
	border: 0;
	background-color: #808080;
	margin-top: 23px;
}
.navbar-toggle:focus {
	border:1px dotted black;
}
.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus {
	background-color: #006699;
	filter: alpha(opacity=100);
	opacity: 1;
	box-shadow: none;
}
.navbar-toggle.active{
    background-color: #006699 !important;
}
.navbar-toggle.collapsed{
    background-color: #808080 !important;
}
.menu-align-center #site-navigation {
	width: 100%;
}
.menu-align-center #site-navigation &gt; ul {
	width: 100%;
	text-align: center;
}
.menu-align-center #site-navigation &gt; ul ul {
	text-align: left;
}
.menu-align-center #site-navigation &gt; ul &gt; li {
	float: none;
	display: inline-block;
}
.menu-align-center .responsive-logo {
	width: 100%;
	text-align: center;
}
.menu-align-center .zerif_header_title {
	width: 100%;
}
.menu-align-center .navbar-inverse .navbar-nav &gt; li {
	margin-top: 0;
	margin-bottom: 0;
}
.menu-align-center .responsive-logo &gt; a{
	float: none;
	display: inline-block;
}
.navbar-inverse .navbar-nav&gt;li&gt;a:hover,
.navbar-inverse .navbar-nav&gt;li&gt;a:focus {
	color: #006699;
}
.navbar-inverse .navbar-nav&gt;li.current&gt;a {
	color: #006699;
	position: relative;
	outline: none;
}
ul.nav &gt; li.menu-item-home &gt; a:before {
	content: "";
	display: none;
}
li.current&gt;a:before {
	position: absolute;
	margin: auto;
	z-index: 1;
	content: "";
	width: 75%;
	height: 2px;
	background: #006699;
	bottom: 0px;
	left: 12.5%;
}
ul.nav &gt; li.current &gt; a:before,
.page ul.nav &gt; li.current-menu-item &gt; a:before,
.single-post ul.nav &gt; li.current-menu-item &gt; a:before,
.archive ul.nav &gt; li.current-menu-item &gt; a:before {
	position: absolute;
	margin: auto;
	z-index: 1;
	content: "";
	width: 75%;
	height: 2px;
	background: #006699;
	bottom: 0px;
	left: 12.5%;
	display: block;
}
ul.nav &gt; li.current_page_item.menu-item-home &gt; a:before {
	content: "";
	display: none;
}
ul.nav &gt; li.current_page_item.current &gt; a:before {
	position: absolute;
	margin: auto;
	z-index: 1;
	content: "";
	width: 75%;
	height: 2px;
	background: #006699;
	bottom: 0px;
	left: 12.5%;
	display: block;
}

/*----  SECTION:  HOME &gt; LATEST NEWS   ----*/

.latest-news {
	padding-bottom: 66px;
	padding-top: 100px;
	background: #FFFFFF;
}
.carousel-inner {
/*	margin: 0 30px; */
}
#carousel-homepage-latestnews .item{
	height: auto;
}
.latesnews-content p,
.latesnews-content {
	font-size: 14px;
	line-height: 18px;
	color: #777777;
}
#carousel-homepage-latestnews .carousel-inner .item .latestnews-title {
	margin-bottom: 15px;
	color: #404040;
	position: relative;
	display: inline-block;
	text-transform: uppercase;
	margin-bottom: 30px;
	font-weight: bold;
	font-size: 17px;
	float: none;
	width: auto;
	margin-top: 15px;
}
#carousel-homepage-latestnews .carousel-inner .item .latestnews-title a {
	text-transform: uppercase;
	color: #404040;
	font-weight: 700;
	display: block;
}
#carousel-homepage-latestnews .item .latestnews-box .latestnews-title a:before {
	position: absolute;
	margin: auto;
	z-index: 1;
	content: "";
	width: 75%;
	height: 2px;
	background: #e96656;
	bottom: -9px;
	left: 12.5%;
}
#carousel-homepage-latestnews .item .latestnews-box:nth-child(4n+1) .latestnews-title a:before {
	background: #e96656;
}
#carousel-homepage-latestnews .item .latestnews-box:nth-child(4n+2) .latestnews-title a:before {
	background: #34d293;
}
#carousel-homepage-latestnews .item .latestnews-box:nth-child(4n+3) .latestnews-title a:before {
	background: #3ab0e2;
}
#carousel-homepage-latestnews .item .latestnews-box:nth-child(4n) .latestnews-title a:before {
	background: #f7d861;
}
#carousel-homepage-latestnews .item .latestnews-box .latestnews-img .latestnews-img-a {
	display:block;
}
#carousel-homepage-latestnews {
	margin: 0 30px;
}
#carousel-homepage-latestnews .carousel-control {
	width: 45px;
	background: none;
}
.carousel-control.left {
	margin-left: -45px;
}
.carousel-control.right {
	margin-right: -45px;
}
#carousel-homepage-latestnews .glyphicon-chevron-left:before{
	content: "";
	background: url(images/left-arrow.png) no-repeat center center;
	width: 30px;
	height: 30px;
	float: left;
}
#carousel-homepage-latestnews .glyphicon-chevron-right:before{
	content: "";
	background: url(images/right-arrow.png) no-repeat center center;	
	width: 30px;
	height: 30px;
	float: left;
}
#carousel-homepage-latestnews {
}

/*---------------------------------------
 **   Section blog            -----
-----------------------------------------*/
article .posted-on a:hover{
	color: #006699;
}
.entry-footer a:hover{
	color: #006699;
}
.entry-title a:hover{
	color: #006699;
}
.entry-title:after {
	position: absolute;
	margin: auto;
	z-index: 1;
	content: "";
	width: 10%;
	height: 2px;
	background: #006699;
	bottom: -9px;
	left: 0;
}
.listpost-content-wrap .entry-title a:after {
	position: absolute;
	margin: auto;
	z-index: 1;
	content: "";
	width: 35%;
	height: 2px;
	background: #006699;
	bottom: -9px;
	left: 0;
	width: 50px;
	display: none;
}
.entry-footer-large a:hover{
	color: #006699;
}
.widget_calendar a {
	display: block;
	background: #f9f9f9;
	color: #006699;
}
.widget_calendar a:hover {
	background-color: #006699;
	color: #FFF;
  .bbp-body a.bbp-topic-permalink:hover {
	color: #006699;
}
.bbp-body .bbp-topic-permalink:after {
    position: absolute;
    margin: auto;
    z-index: 1;
    content: "";
    width: 50px;
    height: 2px;
    background: #006699;
    bottom: -4px;
    left: 0;
}
.bbp-topic-tags a {
    color: #949494;
    font-style: italic
}

.bbp-topic-tags a:hover {
	color: #006699;
}
    
#bbpress-forums div.bbp-topic-author a.bbp-author-name, 
#bbpress-forums div.bbp-reply-author a.bbp-author-name {
    clear: left;
    display: inline-block;
    color: #006699;
}

span.bbp-admin-links a:hover {
	color: #006699 !important;
}
    
#favorite-toggle a:hover,
#subscription-toggle a:hover {
	color: #006699;
}
/*---------------------------------------
 **   Responsive            -----
-----------------------------------------*/
    /* HEADER */
    .dropdownmenu {
		display: block;
		position: absolute;
		z-index: 9;
		right: 0;
		top: 5px;
		width: 25px;
		height: 25px;
		margin: 0;
		padding: 0;
		border-radius: 3px;
		background: url(images/menu-icon.png) center center no-repeat #006699;
	}
    .this-open &gt; a {
		color: #006699 !important;
	}
    
    /*---------------------------------------
 **   Footer           -----
-----------------------------------------*/

    #footer {
	background: #272727;
	line-height: 20px;
}
.company-details {
	color: #939393;
	padding-top: 67px;
	padding-bottom: 30px;
}
.company-details a {
	color:#939393;
	text-decoration:none;
}

.company-details a:hover {
	color: #e96656;
}
.company-details .icon-top {
	font-size: 30px;
	margin-bottom: 10px;
}
.copyright {
	padding-top: 68px;
	padding-bottom: 68px;
	background: #171717;
}
.social {
	margin: 0 0 1.5em 0 !important;
}
.social li {
	display: inline-block;
	margin: 5px;
}
.social li a {
	color: #939393;
	font-size: 18px;
}
.social li a:hover {
	color: #006699;
}
.copyright p {
	margin-bottom: 0;
	color: #939393;
}
.footer-widget-wrap &gt; .container {
	text-align: center;
}
.footer-widget {
	float: none;
	display: inline-block;
	vertical-align: top;
}
.footer-widget ul {
	margin-left: 0;
	padding-left: 0;
}
.footer-widget li {
	list-style: none;
	margin-left: 0;
}
.footer-widget-wrap {
	background: rgba(255,255,255,0.05);
}
.footer-widget-wrap .widget .widget-title {
	color: #FFF;
}
.footer-widget-wrap .widget li a {
	color: #CCC;
}
.footer-widget-wrap .widget li a:hover {
	color: #FFF;
}
.footer-widget-wrap .widget {
	color: #CCC;
	padding-bottom: 30px;
}
.footer-widget-wrap .widget_calendar tbody td {
    background-color: rgba(249, 249, 249, 0.75);
}
.footer-widget-wrap .tagcloud a {
	background: none;
	padding: 2px 5px;
	color: #CCC;
}
.footer-widget-wrap .tagcloud a:hover {
	color: #FFF;
}
.footer-widget-wrap .widget #wp-calendar {
	color: #333;
}</pre></body></html>