@charset "utf-8";
/* CSS Document */



/* GLOBALS ELEMENTS */
html, body {
	font-size: 16px;
	font-family: "Geek", Arial, sans-serif;
	background-color: #f2f4f7;
	color: #545454;
	cursor: default;
	overflow-x: hidden;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	display: block;
}
.jqplot-point-label {
	font-family: Geek, Arial, sans-serif;
	font-size: 10px;
}
::-webkit-input-placeholder {
   color: #6b6b6b;
}
:-moz-placeholder {
   color: #6b6b6b;  
}
::-moz-placeholder {
   color: #6b6b6b;  
}
:-ms-input-placeholder {  
   color: #6b6b6b;  
}



/* GLOBALS CLASSES */
/* Clearfix */
.clearfix:after {
	content: "";
	display: table;
	clear: both;
}
/* Containers */
.container {
	width: 1200px;
	margin: 0 auto;
	position: relative;
}
/* Panel */
.panel {
	overflow: hidden;
	background-color: #fff;
	/* Shadow */
	-moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	/* Border radius */
	-khtml-border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}
.scroll {
	overflow:scroll; 
	height:600px;
}
.latestScroll {
	overflow:scroll; 
	height:1490px;
}
.poll_Scroll {
	overflow:scroll; 
	height:235px;
}
/* Title */
.title {
	border-bottom: solid 1px #6b6b6b;
	margin: 15px 0 10px;
	/*position: relative;*/
}
.title > .title-name {
	display: inline-block;
	padding-left: 1px;/* Optical Correction */
	/* font-family: 'Fira Sans', sans-serif; */
	color: #000;
	font-size: 22px;
	font-weight: 300;
	padding-bottom: 10px;
	/* border-bottom: solid 2px #6b6b6b; */
	border-bottom: solid 3px #6b6b6b ;
	position: relative;
	/* Transition */
	-webkit-transition: color 100ms ease-out;
	-moz-transition: color 100ms ease-out;
	-o-transition: color 100ms ease-out;
	transition: color 100ms ease-out;
	cursor: pointer;
}
	.title > a.title-name:hover {
		color: #16520e;
		font-weight: bold;
	}
.title > a.title-name:after {
	content: " ›";
	display: inline;
	color: #6b6b6b;
}
.title.red {
	border-bottom: solid 1px #e54839;
}
.title.red > .title-name {
	border-bottom-color: #e54839;
}
.title .title-navigation {
	position: absolute;
	top: 0;
	right: 0;
}
.title .title-navigation a {
	width: 20px;
	height: 20px;
	border: solid 1px #6b6b6b;
	display: block;
	float: left;
	text-align: center;
	/* font-family: 'Fira Sans Extra Condensed', sans-serif;*/
	font-size: 18px;
	line-height: 18px;
	color: #999;
	/* Transition */
	-webkit-transition: background-color 200ms ease-out;
	-moz-transition: background-color 200ms ease-out;
	-o-transition: background-color 200ms ease-out;
	transition: background-color 200ms ease-out;
}
	.title .title-navigation a:hover {
		background-color: #fff;
	}
.title .title-navigation a:first-child {
	margin-right: 5px;
}
/* Text Links */
.link {
	/* Transition */
	-webkit-transition: color 100ms ease-out;
	-moz-transition: color 100ms ease-out;
	-o-transition: color 100ms ease-out;
	transition: color 100ms ease-out;
}
	.link:hover {
		color: #00b300;
	}
/* Hover elements */
.hover {
	position: relative;
}


.hover:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 100;
	background-color: rgba(0, 0, 0, 0);
	/* Transition */
	-webkit-transition: background-color 100ms ease-out;
	-moz-transition: background-color 100ms ease-out;
	-o-transition: background-color 100ms ease-out;
	transition: background-color 100ms ease-out;
}
	.hover:hover:before {
		background-color: rgba(0, 0, 0, 0.2);
	}
	
	
/* Preloader */
.circle {
	width: 60px;
	height: 60px;
	border-radius: 40px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: solid 10px #ccc;
	border-top-color: #6b6b6b;
	-webkit-animation: spin 1s infinite linear;
	-moz-animation: spin 1s infinite linear;
	-o-animation: spin 1s infinite linear;
	animation: spin 1s infinite linear;
}
@-webkit-keyframes spin { 
	100% { 
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	} 
} 



/* Header */
#off-canvas {
	position: fixed;
	overflow: auto;
	z-index: 100;
    width: 200px;
	height: 100%;
	top: 0;
	left: -200px;
	background-color: #16520e;
	/* Transition */
	-webkit-transition: left 400ms ease-out;
	-moz-transition: left 400ms ease-out;
	-o-transition: left 400ms ease-out;
	transition: left 400ms ease-out;
}
#wrapper {
	position: relative;
	left: 0;
	top: 0;
	/* Transition */
	-webkit-transition: left 400ms ease-out;
	-moz-transition: left 400ms ease-out;
	-o-transition: left 400ms ease-out;
	transition: left 400ms ease-out;
}
#off-canvas.open {
	left: 0;
}
#wrapper.open {
	left: 200px;
}
#logo-sidemenu {
	display: block;
	width: 100%;
	height: 50px;
	border-bottom: solid 1px #53a653;
	padding: 15px 0 0 47px;
	/* Box Sizing */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#off-canvas ul {
	display: block;
	list-style: none;
}
#off-canvas ul li {
	border-bottom: solid 1px #53a653;
}
#off-canvas ul li a {
	display: block;
	padding: 15px 20px;
	color: #fff;
	/* font-family: 'Fira Sans Extra Condensed', sans-serif;*/
	font-size: 12px;
	/* Transition */
	-webkit-transition: background-color 200ms ease-out;
	-moz-transition: background-color 200ms ease-out;
	-o-transition: background-color 200ms ease-out;
	transition: background-color 200ms ease-out;
}
	#off-canvas ul li a:hover {
		background-color: #00b300;
	}



/* Header */
#header {}
/* Header - Primary Menu */
#menu-primary {
	height: 50px;
	background-color: #16520e;
	/* Shadow */
	-moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
#menu-button {
	display: none;
	width: 40px;
	height: 50px;
	position: relative;
}
#menu-button:after {
	content: "\e20e";
	display: block;
	position: absolute;
	left: 11px;
	top: 16px;
	font-family: "icomoon";
	font-size: 18px;
	color: #fff;
}
#logo {
	display: block;
	margin-top: 5px;
	float: left;
}
#logo img {
	height: 40px;
}
#archive {
	float: right;
	color: rgba(255, 255, 255, 0.8);
}
#archive-title {
	display: block;
	position: relative;
	float: left;
	/* font-family: 'Fira Sans Extra Condensed', sans-serif;*/
	font-size: 12px;
	line-height: 12px;
	color: rgba(255, 255, 255, 0.8);
	border-right: solid 1px rgba(0, 0, 0, 0.05);
	padding: 18px 15px 20px 40px;
	cursor: default;
	/* Box Sizing */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#archive-title:after {
	content: "\e29d";
	display: block;
	position: absolute;
	left: 17px;
	top: 18px;
	font-family: "icomoon";
	font-size: 16px;
}
#archive-list {
	float: left;
}
#archive-list a {
	display: block;
	float: left;
	border-right: solid 1px rgba(0, 0, 0, 0.05);
	padding: 10px 10px 12px;
	/* Box Sizing */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/* Transition */
	-webkit-transition: background-color 100ms ease-out, color 100ms ease-out;
	-moz-transition: background-color 100ms ease-out, color 100ms ease-out;
	-o-transition: background-color 100ms ease-out, color 100ms ease-out;
	transition: background-color 100ms ease-out, color 100ms ease-out;
}
	#archive-list a:hover {
		color: rgba(255, 255, 255, 0.8);
		background-color: #69bf69;
	}
	#archive-list a.active {
		color: rgba(255, 255, 255, 0.8);
		background-color: #69bf69;
	}
#archive-list a span {
	display: block;
	/* font-family: 'Fira Sans Extra Condensed', sans-serif;*/
	font-size: 10px;
	font-weight: 700;
	float: left;
}
#archive-list a span.day {
	font-family: "Geek Num", Arial, sans-serif;
	font-size: 28px;
	font-weight: 600;
	line-height: 28px;
	margin-right: 6px;
}
#archive-list a span.date {
	margin-top: 3px;
}
#archive-list a span.date time {
	display: block;
	margin-top: 2px;
}
#archive-list a.weekend span.date {
	color: rgba(255, 255, 255, 0.6);
}
#archive-list a.weekend span.date time {
	color: rgba(255, 255, 255, 0.4);
}
	#archive-list a.weekend:hover span.date {
		color: rgba(255, 255, 255, 1);
	}
	#archive-list a.weekend:hover span.date time {
		color: rgba(255, 255, 255, 0.8);
	}


#search {
	width: 50px;
	height: 50px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 200;
}
#search-button {
	display: block;
	width: 50px;
	height: 50px;
	position: absolute;
	right: 0;
	top: 50px;
}
#search-button:after {
	content: "\e2ca";
	display: block;
	position: absolute;
	left: 16px;
	top: 16px;
	font-family: "icomoon";
	font-size: 18px;
	color: #999;
	/* Transition */
	-webkit-transition: color 100ms ease-out;
	-moz-transition: color 100ms ease-out;
	-o-transition: color 100ms ease-out;
	transition: color 100ms ease-out;
}
	#search-button:hover:after {
		color: #16520e;
	}
#search-bar {
	display: none;
	width: 250px;
	height: 50px;
	position: absolute;
	right: 0;
	top: 100px;
	background-color: #fff;
	padding: 10px;
	/* Box Sizing */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#search-bar input {
	width: 160px;
	height: 30px;
	border: none;
	float: left;
	background-color: #f2f4f7;
	margin-right: 10px;
	font-family: Geek, Arial, sans-serif;
	font-size: 12px;
	color: #545454;
	padding: 5px 10px;
	/* Box Sizing */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#search-bar a {
	display: block;
	float: left;
	width: 60px;
	height: 30px;
	/* font-family: 'Fira Sans Extra Condensed', sans-serif;*/
	font-size: 12px;
	background-color: #f2f4f7;
	padding: 9px;
	text-align: center;
	color: #999;
	/* Box Sizing */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/* Transition */
	-webkit-transition: color 100ms ease-out, background-color 100ms ease-out;
	-moz-transition: color 100ms ease-out, background-color 100ms ease-out;
	-o-transition: color 100ms ease-out, background-color 100ms ease-out;
	transition: color 100ms ease-out, background-color 100ms ease-out;
}
	#search-bar a:hover {
		background-color: #ccc;
		color: #545454;
	}
/* Header - Secondary Menu */
#menu-secondary {
	background-color: #fff;
	height: 50px;
	/* Shadow */
	-moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 05);
	-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
#menu-secondary .container {
	z-index: 1;
}
#menu {
	float: left;
	font-family: "Montserrat", "Helvetica Neue", Helvetica, Tahoma, Arial, sans-serif;
}
#menu a {
	/* display: block; */
	font-family: "Montserrat", "Helvetica Neue", Helvetica, Tahoma, Arial, sans-serif;
	font-size: 14px;
	line-height: 12px;
	float: left;
	padding: 19px 16px;
	color: #384838;
	/* Transition */
	-webkit-transition: color 100ms ease-out;
	-moz-transition: color 100ms ease-out;
	-o-transition: color 100ms ease-out;
	transition: color 100ms ease-out;
}
	#menu a:hover {
		color: #16520e;
		font-weight: bold;
	}
#menu a:first-child {
	padding-left: 0;
}
#menu a:last-child {
	padding-right: 0;
}



/**/
#banner-top {
	width: 975px;
	height: 110px;
	margin: 10px auto;
	/*position: absolute;*/
}
#banner-top a {
	filter: contrast(1.3);
	display: block;
}
#banner-top a img {
	width: 100%;
	height: 100%;
}
#banner-top a video {
	width: 100%;
	height: 100%;
	/*position: absolute;*/
	/*object-fit: fill;*/
}

/* Container - Content */
#content {
	margin-bottom: 50px;
}

/* Container - Content - Secondary Sidebar */
#sidebar-secondary {
	display: block;
	width: 285px;
	margin-right: 40px;
	float: left;
}
/* Container - Content - Secondary Sidebar - Breaking */
#breaking {
	padding: 10px;
	/* Box Sizing */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#breaking h1 {
	margin: 6px;
}
#breaking h1 a {
	/*text-align: justify;*/
	display: block;
	font-family: 'Fira Sans Extra Condensed', sans-serif;
	font-size: 18px;
	font-weight: 300;
	line-height: 19px;
	/* Transition */
	-webkit-transition: background-color 100ms ease-out;
	-moz-transition: background-color 100ms ease-out;
	-o-transition: background-color 100ms ease-out;
	transition: background-color 100ms ease-out;
}
	#breaking h1 a:hover {
		color: #e74c3c;
	}
#breaking p {
	padding-left: 5px;
    font-size: 15px;
    line-height: 15px;
    max-height: 75px;
    color: inherit;
}
#breaking .meta {
	margin-top: 5px;
	border-top: solid 1px #ccc;
	padding-top: 5px;
}
#breaking .meta time {
	float: left;
	font-size: 10px;
	color: #6b6b6b;
	position: relative;
	padding-left: 15px;
}
#breaking .meta a {
	font-family: 'Fira Sans Extra Condensed', sans-serif;
	display: block;
	float: right;
	font-size: 12px;
	color: #e54839;
	margin-top: -2px;
	/* Transition */
	-webkit-transition: color 100ms ease-out;
	-moz-transition: color 100ms ease-out;
	-o-transition: color 100ms ease-out;
	transition: color 100ms ease-out;
}
	#breaking .meta a:hover {
		color: #16520e;
	}
/* Container - Content - Secondary Sidebar - Latest */
#latest  {
	/* padding: 20px; */
	/* Box Sizing */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#latest .post {
	min-height: 104px;
	margin-bottom: 1px;
	border-bottom: solid 1px #a4a4a4;
	position: relative;
}
#latest .post:last-child {
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0;
}
#latest .post .image {
	display: block;
	position: absolute;
	left: 0;
	top: 2px;
}
#latest .post.video .image:after, #latest .post.photo .image:after,#latest .post.timelines .image:after, #latest .post.breaking .image:after {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	font-family: "icomoon";
	font-size: 12px;
	color: #fff;
	padding: 7px 0 0 7px;
	/* Box Sizing */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/* Gradient */
	background: -moz-linear-gradient(-45deg,  rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(0,0,0,0.4)), color-stop(100%,rgba(0,0,0,0)));
	background: -webkit-linear-gradient(-45deg,  rgba(0,0,0,0.4) 0%,rgba(0,0,0,0) 100%);
	background: -o-linear-gradient(-45deg,  rgba(0,0,0,0.4) 0%,rgba(0,0,0,0) 100%);
	background: -ms-linear-gradient(-45deg,  rgba(0,0,0,0.4) 0%,rgba(0,0,0,0) 100%);
	background: linear-gradient(135deg,  rgba(0,0,0,0.4) 0%,rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66000000', endColorstr='#00000000',GradientType=1 );
}
#latest .post.video .image:after {
	background: #00000061;
	width: 24px;
	height: 24px;
	content: "\e611";
	font-size: 11px;
	color: white;
}
#latest .post.photo .image:after {
	background: #00000061;
	width: 24px;
	height: 24px;
	content: "\e603";
	color: white;
}
#latest .post.timelines .image:before {
	background: #00000061;
	width: 27px;
	height: 24px;
	background-image: url('../images/timeline.ico');
	background-repeat: no-repeat;
	background-position-x: 1px;
    background-position-y: 2px;
}
#latest .post.breaking .image:after {
	content: "\e610";
	font-size: 13px;
}
#latest .post .image img {
	filter: contrast(1.3);
	width: 100px;
	height: 100px;
}
#latest .post h1 {
	/*text-align: justify;*/
	padding-top: 2px;
	padding-left: 110px;
	margin-bottom: 10px;
}
#latest .post h1 a {
	display: block;
	margin-top: 5px;
	/* font-family: 'Fira Sans Extra Condensed', sans-serif;*/
	font-size: 13px;
	line-height: 14px;
	max-height: 84px; /* 6 lines */
	/* Transition */
	-webkit-transition: background-color 100ms ease-out;
	-moz-transition: background-color 100ms ease-out;
	-o-transition: background-color 100ms ease-out;
	transition: background-color 100ms ease-out;
}
#latest .post h1 a:hover {
	color: #00b300;
}
#latest .post .meta {
	display: block;
	list-style: none;
	/* font-family: 'Fira Sans Extra Condensed', sans-serif;*/
	font-size: 10px;
	color: #000000;
	/* padding-left: 110px; */
	position: absolute;
    bottom: 5px;
    right: 0;
}
#latest .post .meta li {
    display: block;
    float: left;
    position: relative;
    padding-left: 15px;
    margin-right: 10px;
}
#latest .post .meta .shares {
	padding-left: 16px;
}
#latest .post .meta li:after {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	color:#000000;
	font-weight: bold;
	font-family: "icomoon";
	font-size: 10px;
}

#latest .post .meta .comments:after {
	color:#000000;
	content: "\e609";
}
#latest .post .meta .shares:after {
	color:#000000;
	top: -1px;
	content: "\e60a";
}
#latest-navigation {
	display: none;
	margin-top: 10px;
	padding: 15px;
	text-align: center;
	/* font-family: 'Fira Sans Extra Condensed', sans-serif;*/
	font-size: 12px;
	color: #999;
	/* Box Sizing */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/* Transition */
	-webkit-transition: color 100ms ease-out;
	-moz-transition: color 100ms ease-out;
	-o-transition: color 100ms ease-out;
	transition: color 100ms ease-out;
}
	#latest-navigation:hover {
		color: #00b300;
	}
#latest-navigation:before {
	content: "\e06c";
	display: inline-block;
	margin: -3px 5px 0 0;
	vertical-align: middle;
	font-family: "icomoon";
	font-size: 14px;
}
/* Container - Content - Secondary Sidebar - Social */
#social-side {
	padding: 20px;
	/* Box Sizing */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#social-side li {
	margin-bottom: 10px;
	border-bottom: solid 1px #ccc;
	padding-bottom: 10px;
}
#social-side li:last-child {
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0;
}
#social-side li a {
	display: block;
}
#social-side li a img {
	float: left;
	width: 30px;
	height: 30px;
	margin-right: 15px;
}
#social-side li a h1 {
	float: left;
	/* font-family: 'Fira Sans Extra Condensed', sans-serif;*/
	font-size: 14px;
	margin-top: 1px;
}
#social-side li a h1 span {
	display: block;
	/* font-family: 'Fira Sans Extra Condensed', sans-serif;*/
	font-size: 12px;
	color: #999;
	margin-top: 2px;
}
#social-side li a .follow {
	float: right;
	/* font-family: 'Fira Sans Extra Condensed', sans-serif;*/
	font-size: 12px;
	margin-top: 9px;
	color: #999;
}



/* Container - Content - Main */
#main {
	display: block;
	width: 600px;
	margin-right: 40px;
	float: left;
}



/* Container - Content - Primary Sidebar */
#sidebar-primary {
	display: block;
	width: 235px;
	float: right;
}
#banner-side-top {
	filter: contrast(1.3);
	display: block;
	margin: 5px 0;
}
#banner-side-bottom {
	filter: contrast(1.3);
	display: block;
	margin: 5px 0;
}

/* Container - Content - Primary Sidebar - List */
#list {}
#list-comments li span
{
	line-height: 25px; /*title ognoo 2iin hoorond zai oruulahiin tuld*/
	font-size: 10px;
    color: #ccc;
}
#list-read li span{
	line-height: 25px;/*title ognoo 2iin hoorond zai oruulahiin tuld*/
    font-size: 10px;
    color: #ccc;
}
#list-tabs {
	display: block;
	list-style: none;
}
#list-tabs li {
	float: left;
}
#list-tabs li a {
	border-bottom: solid 1px #16520e;
	display: block;
	width: 100px;
	height: 40px;
	/* font-family: 'Fira Sans Extra Condensed', sans-serif;*/
	font-size: 12px;
	text-align: center;
	padding-top: 14px;
	color: #6b6b6b;
	background-color: #fcfcfc;
	/* Box Sizing */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/* Transition */
	-webkit-transition: color 100ms ease-out;
	-moz-transition: color 100ms ease-out;
	-o-transition: color 100ms ease-out;
	transition: color 100ms ease-out;
}
	#list-tabs li a:hover {
		color: #16520e;
		font-weight: bold;
	}
#list-tabs li.read a {
	width: 100px;
}
#list-tabs li.comments a {
	width: 135px;
}
#list-tabs li.active a {
	color: #545454;
	background-color: #fff;
	cursor: default;
}
#list-image {
	display: block;
}
#list-image img {
	width: 100%;
}
#list-content {
	padding: 10px 10px 10px 15px;
	overflow:scroll;
	height:570px;
	/* Box Sizing */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#list-content ol {
	display: block;
	list-style: none;
	counter-reset: list-counter;
}
#list-content ol li {
	padding-left: 20px;
	margin-bottom: 0px;
	border-bottom: solid 1px #ccc;
	padding-top: 5px;
	padding-bottom: 5px;
	position: relative;
}
#list-content ol li:before {
	content: counter(list-counter);
    counter-increment: list-counter;
    position: absolute;
    top: 10px;/* Optical Correction */
    left: 3px;
    font-size: 18px;
    color: #ccc;
}
#list-content ol li:nth-child(10):before {
	left: 0;
}
#list-content ol li:last-child {
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0;
}
#list-content ol li a {
	/* font-family: 'Fira Sans Extra Condensed', sans-serif;*/
	/*text-align: justify;*/
	font-size: 13px;
	line-height: 13px;
	max-height: 112px;
	/* Transition */
	-webkit-transition: color 100ms ease-out;
	-moz-transition: color 100ms ease-out;
	-o-transition: color 100ms ease-out;
	transition: color 100ms ease-out;
}
	#list-content ol li a:hover {
		color: #00b300;
	}
/* Container - Content - Primary Sidebar - Social */
#currency-side, #twitter-widget {
	margin-bottom: 0px;
	padding: 20px 25px 25px;
	/* Box Sizing */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#currency-side .clearfix {
	margin-bottom: 20px;
}
#currency-side h1 {
	float: left;
	/* font-family: 'Fira Sans Extra Condensed', sans-serif;*/
	font-size: 14px;
	font-weight: 300;
}
#currency-side time {
	/* font-family: 'Fira Sans Extra Condensed', sans-serif;*/
	font-size: 10px;
	float: right;
	margin-top: 3px;
	color: #ccc;
}
#currency-bank {
	width: 100%;
	border: none;
	background-color: #f2f2f2;
	padding: 7px;
	font-family: "Geek", Arial, sans-serif;
	font-size: 12px;
	color: #666;
	/* Box Sizing */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#currency-graph-wrapper {
	margin-bottom: 10px;
	border-bottom: solid 1px #e5e5e5;
	padding-bottom: 20px;
}
#currency-side table {
	margin-top:20px;
	/* font-family: 'Fira Sans Extra Condensed', sans-serif;*/
	font-size: 0.625em;
	width: 100%;
}
#currency-side table tr {
	border-bottom: dashed 1px #e5e5e5;
}
#currency-side table tr:last-child {
	border-bottom: none;
}
#currency-side table tr:last-child td, #currency-side table tr:last-child th {
	padding-bottom: 0;
}
#currency-side table th {
	text-align: left;
	/* font-family: 'Fira Sans Extra Condensed', sans-serif;*/
	font-size: 1.2em;
	color: #999;
}
#currency-side table th, #currency-side table td {
	padding: 10px 0 10px 15px;
}
#currency-side table .currency {
	/* font-family: 'Fira Sans Extra Condensed', sans-serif;*/
	font-size: 1.2em;
	padding-left: 2px;
	padding-right: 10px;
}

#footer {
	padding: 30px 0;
	background-color: #333;
}
#footer-logo {
	width: 11.66666666666667%; /* 140 - 1200 */
	float: left;
}
#footer-logo img {
	width: 130px;
	height: 40px;
}
#footer-note {
	float: left;
	width: 15%; /* 180 - 1200 */
	/* font-family: 'Fira Sans Extra Condensed', sans-serif;*/
	font-size: 12px;
}
#footer-menu {
	float: left;
	width: 73.33333333333333%; /* 880 - 1200 */
}
#footer-menu-main {
	margin-bottom: 10px;
}
#footer-menu-main a {
	display: block;
	float: left;
	margin-right: 15px;
	/* font-family: 'Fira Sans Extra Condensed', sans-serif;*/
	font-size: 11px;
	color: #999;
	/* Transition */
	-webkit-transition: color 100ms ease-out;
	-moz-transition: color 100ms ease-out;
	-o-transition: color 100ms ease-out;
	transition: color 100ms ease-out;
}
	#footer-menu-main a:hover {
		color: #fff;
		font-weight: bold;
	}
#footer-menu-main a:last-child {
	margin-right: 0;
}
#footer-menu-side {
	/* font-family: 'Fira Sans Extra Condensed', sans-serif;*/
	font-size: 10px;
	color: #545454;
}
#footer-menu-side a {
	margin-right: 10px;
	/* Transition */
	-webkit-transition: color 100ms ease-out;
	-moz-transition: color 100ms ease-out;
	-o-transition: color 100ms ease-out;
	transition: color 100ms ease-out;
}
	#footer-menu-side a:hover {
		color: #999;
	}
#footer-menu-side a:last-child {
	margin-right: 0;
}
#copyright {
	padding: 10px 0;
	color: #c1c1c1;
	background-color: #262626;
	/* font-family: 'Fira Sans Extra Condensed', sans-serif;*/
	font-size: 10px;
	text-align: center;
}
#copyright a {
	color: #ffffff;
	font-weight: bold;
	/* Transition */
	-webkit-transition: color 100ms ease-out;
	-moz-transition: color 100ms ease-out;
	-o-transition: color 100ms ease-out;
	transition: color 100ms ease-out;
}
	#copyright a:hover {
		color: #999;
		font-weight: bold;
	}
	#mobileTabs { display: none; }
/* Narrower columns */
@media only screen and (max-width: 1280px) {
	
	.container {
		width: 1040px;
	}
	
	#menu a {
		font-size: 13px;
		padding-right: 13px;
	}
	
	#footer-menu-main a {
		font-size: 10px;
		margin-right: 8px;
	}
	#mobileTabs { display: none; }
}

/* Single wide main column */
@media only screen and (max-width: 1120px) {
	
	#mobileTabs { display: none; }
	.container {
		width: 940px;
	}
	
	#logo-sidemenu {
		background-color: #4d994c;
	}
	
	#menu-secondary {
		display: none;
	}
	#menu-button {
		display: block;
	}
	#logo {
		float: none;
		position: absolute;
		top: 3px;
		margin-top: 0;
		left: 40%;
		margin-left: -52px;
	}
	#search-button {
		top: 0;
	}
	#search-button:after {
		color: #fff;
	}
		#search-button:hover:after {
			color: #fff;
		}
	#search-bar {
		top: 50px;
	}
	#archive-title {
		float: none;
		padding: 0;
		width: 40px;
		height: 50px;
		/* font-family: 'Fira Sans Extra Condensed', sans-serif;*/
		font-size: 0;
		color: #fff;
		cursor: pointer;
		border-right: none;
		position: absolute;
		top: 0;
		right: 50px;
	}
	#archive-list {
		display: none;
		float: none;
		position: absolute;
		right: 50px;
		top: 50px;
		z-index: 200;
	}
	#archive-list a {
		float: none;
		width: 130px;
		height: 40px;
		margin-right: 0;
		padding: 5px 10px 6px;
		background-color: #16520e;
		border-right: none;
		border-bottom: solid 1px #ccc;
	}
		#archive-list a:hover {
		color: rgba(255, 255, 255, 0.8);
		background-color: #69bf69;
		}
	#archive-list a span.day {
		margin-right: 10px;
	}
	
	#banner-top {
		width: 100%;
		height: 100%;
	}
	
	#content {
		margin-bottom: 10px;
	}
	
	#footer {
		padding: 25px 0;
	}
	#footer-logo {
		width: 110px;
		float: none;
		display: block;
		margin: 0 auto 20px auto;
	}
	#footer-note {
		width: 410px;
		float: none;
		display: block;
		margin: 0 auto 5px auto;
		text-align: center;
	}
	#footer-menu  {
		width: 300px;
		float: none;
		display: block;
		margin: 0 auto;
		text-align: center;
	}
	#footer-menu-main {
		display: none;
	}
	#list-tabs li.comments a {
		width: 123px;
	}
}

/* Single narrow main column */
@media only screen and (max-width: 1000px) {
	
	.container {
		width: 675px;
	}
	
	#banner-top {
		margin: 10px 0px 10px 0px;
	}
	
	#sidebar-primary {
		display: none;
	}
	#mobileTabs { display: none; }
	
}

/* Mobile fluid layout */
@media only screen and (max-width: 735px) {
	
	#header {
		margin-bottom: 0;
	}
	
	#logo img {
		height: 40px;
	}
	
	#latest-navigation {
		display: block;
	}
	
	#container {
		width: 98%;
		margin: 1%;
	}
	
	.container {
		width: 100%;
	}
	
	#banner-top {
		display: none;
	}
	
	/* #featured {
		display: none;
	} */

	/* #content #main { display: none; } */
	
}

@media only screen and (max-width: 450px) {
	
	#footer-note {
		width: 300px;
	}
	#footer-note span {
		display: none;
	}
	#archive-title{ display: none; }
	/* #featured {display: none;} */
	/* #mobileTabs { display: block;  } */
	#list-content { overflow: hidden; height: 1100px;}
	#content #latestNewsTitle { display: none; visibility:hidden; height:0 auto; }

	/* #latest .post .image img {
		width: 100px;
		height: 100px;
	} */
	#latest .post {
		display: block;
	} 
}

#list div.visited-pane ol li span.icon-view, #list div.commented-pane ol li span.icon-comment{
	padding-left:130px;
 	font-size: 10px;
}

#list div.visited-pane ol li span.icon-view:before, #list div.commented-pane ol li span.icon-comment:before{
	color:#000000;
	font-weight: bold;
	margin: 5px;
}

#twitter-widget {
	height: 646px;
	overflow-y: scroll;
}

.pagination{
	display:inline-block; 
	margin-top: 20px;
	}
.pagination li{
	font-size: 13px;
    color: #333333;
	float:left;
	padding:6px 10px;
	text-decoration:none;
	background-color: white;
	transition:background-color .3s;
	border:1px solid #ddd;
	margin:0 3px;
	}
.pagination li.active{
	background-color:#4CAF50;
	font-size: 13px;
    font-weight: bold;
	color:white;
	border:1px solid #4CAF50;
	padding: 6px 10px;
	}
.pagination li:hover:not(.active){
	background-color:#ddd;
	}

