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

@import url(http://fonts.googleapis.com/css?family=Oswald);
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
html, body {
	margin: 0;
	background: #e1e3e4;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	height: 100%;
	color: #404040;
}
a:link, a:visited, a:active {
	text-decoration: none;
	color: #404040;
}
a:hover {
	text-decoration: none;
	color: #0087f7;
}
a img {
	border: none;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	font-family: 'Oswald', sans-serif;
}
h1 {
	font-size: 22px;
}
h2 {
	font-size: 19px;
}
h3 {
	font-size: 15px;
}
h4 {
	font-size: 14px;
	font-weight: bold;
}
p {
	line-height: 23px;
	font-weight: normal;
	margin: 0;
	padding: 0;
	font-size: 14px;
}
.navbar-default {
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
	color: #404040;
}
#wrap {
	min-height: 100%;
	height: auto;
	margin: 0 auto -145px;
	padding: 0 0 145px;
	position: relative;
}
.logo {
	max-width: 100px;
	margin: -13px 0 0 0;
}

.container .row{margin-bottom:15px;}

.social-bar{background:#1D1D1D; height:45px; margin-bottom:10px;}

.main-footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 145px;
	background-color: #3c948b;
	border-top: 1px solid #000;
}
#search {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-webkit-transform: translate(0px, -100%) scale(0, 0);
	-moz-transform: translate(0px, -100%) scale(0, 0);
	-o-transform: translate(0px, -100%) scale(0, 0);
	-ms-transform: translate(0px, -100%) scale(0, 0);
	transform: translate(0px, -100%) scale(0, 0);
	opacity: 0;
	z-index: 2000;
}
#search.open {
	-webkit-transform: translate(0px, 0px) scale(1, 1);
	-moz-transform: translate(0px, 0px) scale(1, 1);
	-o-transform: translate(0px, 0px) scale(1, 1);
	-ms-transform: translate(0px, 0px) scale(1, 1);
	transform: translate(0px, 0px) scale(1, 1);
	opacity: 1;

}
#search input[type="text"] {
	position: absolute;
	top: 50%;
	width: 100%;
	color: rgb(255, 255, 255);
	background: rgba(0, 0, 0, 0);
	font-size: 60px;
	font-weight: 300;
	text-align: center;
	border: 0px;
	margin: 0px auto;
	margin-top: -51px;
	padding-left: 30px;
	padding-right: 30px;
	outline: none;
}
#search .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: 61px;
	margin-left: -45px;
}
#search .close {
	position: fixed;
	top: 15px;
	right: 15px;
	color: #fff;
	background-color: #3c948b;
	text-shadow: 1px 1px 1px rgba(237, 166, 23, 1);
	border-color: #17776d;
	opacity: 1;
	padding: 10px 17px;
	font-size: 27px;
}
figure {
	margin: 0;
	padding: 0;
	position: relative;
	display: block;
	cursor: pointer;
	overflow: hidden;
	border: 3px solid #fff;
}
figure img {
	width: 100%;
}
figure:hover figcaption {
 	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	filter: alpha(opacity=100);
	opacity: 1;
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-o-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
	top: 0;
}
figcaption {
 -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	filter: alpha(opacity=0);
	opacity: 0;
	position: absolute;
	height: 100%;
	width: 100%;
	top: 100px;
	background: rgba(60, 148, 139, 0.8);
	color: #fff;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	-o-transition-delay: 0.1s;
	-ms-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
figcaption h3 {
	font-weight: 400;
	color: #000;
	padding: 10px 20px;
	margin-bottom: 0;
	position: relative;
	left: 100%;
	margin-top: 17px;
	font-size: 18px;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	-ms-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
figcaption p {
	padding: 10px 20px;
	margin-bottom: 0;
	margin-top: 10px;
	position: relative;
	left: 100%;
	font-size: 13px;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;
	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	-o-transition-delay: 0.3s;
	-ms-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
figure:hover h3, figure:hover p {
	left: 0;
}
.grid {
	padding: 5px;
	border: 1px solid #dddddd;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	overflow: hidden;
}
.grid h2 {
	font-size: 12px;
	font-weight: bold;
	font-family: 'Open Sans', sans-serif;
}
.col-box {
	margin-bottom: 15px;
}
.date-info {
	font-size: 12px;
	color: #8f8d8d;
}
.btn-link {
	width: 40px;
    height: 40px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #4679BD;
	display:block;
	float:left;
	text-align:center;
	line-height:40px;
	margin-right:7px;
}
.btn-link:link, .btn-link:visited {
	color: #FFF;
	background: #363636;
	text-decoration: none;
	font-weight: bold;
}
.btn-link:hover {
	background: #606060;
}
.box-title {
	margin: 10px 0 15px 0;
}
.box-title-2 {
	margin-bottom: 15px;
}
.main {
	padding-top: 80px;
}
.home-box {
	padding: 10px;
	border-bottom:1px solid #d5d6d6; 
	overflow: hidden;
	margin-bottom:10px;
}
.col-md-8 {
	padding-left: 0;
}
.col-description {
	margin: 15px 0;
}
.count {
	font-size: 22px;
	font-weight: bold;
	font-family: 'Oswald', sans-serif;
}
.info-row {
	width: 100%;
	display: block;
	font-size: 15px;
	padding-top: 8px;
	color: #666;
	overflow:hidden;
}
.col-pull {
	margin-top: 45px;
}
.col-pull-home{
	margin-top: 35px;
}
.col-color {
	width: 30px;
	height: 30px;
	display: block;
	float: left;
}
.pull-info-row {
	margin-top: 30px;
}
.fa-external-link {
	font-size: 18px;
	color: #F30;
}
.social-icons {
	width: 48px;
	height: 48px;
	display: inline-block;
	text-align: center;
	line-height: 48px;
	font-size: 30px;
	margin-bottom: 5px;
	color: #FFF;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.social-icons:link, .social-icons:visited {
	color: #FFF;
}
.vote-icons {
	display: inline-block;
	text-align: center;
	line-height: 48px;
	font-size: 20px;
	color: #FFF;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #363636;
	cursor: pointer;
	margin: 0 5px 5px 0;
	padding: 0 15px;
}
.vote-icons:hover {
	color: #FFF;
	background: #606060;
}
.fb-button {
	background: #3468af;
}
.twitter-button {
	background: #4fc4f6;
}
.gpluf-button {
	background: #da4d2f;
}
.stumbleupon-button {
	background: #cb2028;
}
.rss-button {
	background: #fe9900;
}
.fb-button:hover {
	background: #235599;
	color: #FFF;
}
.twitter-button:hover {
	background: #2498ca;
	color: #FFF;
}
.gpluf-button:hover {
	background: #b13a21;
	color: #FFF;
}
.stumbleupon-button:hover {
	background: #9c151c;
	color: #FFF;
}
.rss-button:hover {
	background: #d88629;
}
.fa-thumbs-o-down {
	color: #F60;
}
.fa-thumbs-o-up {
	color: #09F;
}
#panel {
	width: 100%;
	overflow: hidden;
	display: none;
}
.col-bottom {
	overflow: hidden;
	width: 100%;
}
/*Rating System */

.rate-info {
	font-weight: bold;
}
.rating-bar {
	float: left;
	width: 100%;
	display: block;
	margin:7px 0;
}
.star-rate{float:left; display:inline-block;}

#rate-msg-1, #rate-msg-2, #rate-msg-3, #rate-msg-4{float:left; color:#999;}

.page-text {
	padding-bottom: 30px;
}
.btn-site {
	border: #17776d;
	background: #3c948b;
	color: #FFF;
	text-shadow: 1px 1px 1px rgba(237, 166, 23, 1);
}
.btn-site:hover {
	background: #17776d;
	color: #FFF;
	text-shadow: 1px 1px 1px rgba(237, 166, 23, 1);
}
.img-sh {
	position: relative;
	display: inline-block;
	text-align: center;
	width: 100%;
}
.img-sh:hover .btn-url{ 
	visibility:visible;
}

.btn-url {
	position: absolute;
	top: 45%;
	margin-top: -(half of image height)%;
	z-index: 500;
	font-size: 30px;
	width: 50px;
	height: 50px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #000;
	text-align: center;
	line-height: 50px;
	color: #FFF;
	visibility:hidden;
}
.btn-url:link, .btn-url:visited, .btn-url:hover {
	color: #FFF;
}

/* TAGS */

.bootstrap-tagsinput {
	display: block;
	width: 100%;
	height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.bootstrap-tagsinput input:focus {
	border-color: #66afe9;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6)
}
.bootstrap-tagsinput input {
  border: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  width: auto !important;
  max-width: inherit;
}
.bootstrap-tagsinput input:focus {
  border: none;
  box-shadow: none;
}
.bootstrap-tagsinput .tag {
  margin-right: 2px;
  color: white;
}
.bootstrap-tagsinput .tag [data-role="remove"] {
  margin-left: 8px;
  cursor: pointer;
}
.bootstrap-tagsinput .tag [data-role="remove"]:after {
  content: "x";
  padding: 0px 2px;
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.tags {
	margin: 15px 0;
	padding: 0;
	list-style: none;
}
.tags li {
	margin-bottom: 10px;
}
.tags li, .tags a {
	float: left;
	height: 24px;
	line-height: 24px;
	position: relative;
	font-size: 11px;
}
.tags a {
	margin: 0 7px 0 12px;
	padding: 0 10px 0 12px;
	background: #3c948b;
	color: #fff;
	text-decoration: none;
	-moz-border-radius-bottomright: 4px;
	-webkit-border-bottom-right-radius: 4px;
	border-bottom-right-radius: 4px;
	-moz-border-radius-topright: 4px;
	-webkit-border-top-right-radius: 4px;
	border-top-right-radius: 4px;
}
.tags a:before {
	content: "";
	float: left;
	position: absolute;
	top: 0;
	left: -12px;
	width: 0;
	height: 0;
	border-color: transparent #3c948b transparent transparent;
	border-style: solid;
	border-width: 12px 12px 12px 0;
}
.tags a:after {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	float: left;
	width: 4px;
	height: 4px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	background: #fff;
	-moz-box-shadow: -1px -1px 2px #17776d;
	-webkit-box-shadow: -1px -1px 2px #17776d;
	box-shadow: -1px -1px 2px #17776d;
}
.tags a:hover {
	background: #17776d;
}
.tags a:hover:before {
	border-color: transparent #17776d transparent transparent;
}

.font-color{color: #de5049;}

.ads-big{width:336px; max-width:100%; float:left; margin:0 0 10px 10px; text-align:center;}

.footer-bar{text-align:center;}

.btn-social{font-size:20px; padding:5px 15px; line-height:45px;}

.btn-social span{color:#FFF;}

.btn-social span:hover{color: #CCC;}

.the-form{ padding-bottom:25px; overflow:hidden;}

#display-posts{margin:35px 0;}

.search-again{margin-top:15px;}

.search-again> li{padding:5px 0;}

.footer-brand{font-weight:bold; color:#FFF;}

.footer-links{color:#FFF;}

.footer-links a:link, .footer-links a:visited {font-weight:bold; color:#FFF;}

.footer-links a:hover{color:#CCC;}

@media (max-width: 1000px) {

.col-md-8 {
	padding-left: 15px;
}

.ad-box{display: none;}

.col-pull{margin-top:10px; padding-top:0;}	 
	 
}
 
@media (max-width: 560px) {

.gpluf-button, .stumbleupon-button{display:none;}	 
	 
}

@media (max-width: 380px) {

.ad-box{display: block;}

.vote-icons {
	display: block;
	text-align: center;
	line-height: 38px;
	font-size: 16px;
	width:100%;
}	

.twitter-button, .fb-button{display:none;}

.btn-nav{width:48%;}

.btn-right{float:right;}
	
}