/* Override some defaults */
html, body {
  background-color: #eee;
}
.navbar {
  margin-bottom: 0;
}
.container > footer {
  margin-top: 20px;
}
.container > footer p {
  text-align: center; /* center align it with the container */
}

footer a img {
  float: left;
  margin-right: 12px;
}

/* The white background content wrapper */
.content {
  font-family: 'Droid Sans', sans-serif;
  background-color: #fff;
  padding: 20px;
  margin: 0 -20px; /* negative indent the amount of the padding to maintain the grid system */
  -webkit-border-radius: 0 0 6px 6px;
     -moz-border-radius: 0 0 6px 6px;
          border-radius: 0 0 6px 6px;
  -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.15);
     -moz-box-shadow: 0 1px 2px rgba(0,0,0,.15);
          box-shadow: 0 1px 2px rgba(0,0,0,.15);
}

.content h1,
.content h2,
.content h3,
.content h4 {
  font-family: 'Merriweather', Georgia, serif;
}

.content p {
  font-family: 'Droid Sans', sans-serif;
}

/* Page header tweaks */
.page-header {
  color: #ffffff;
  background: #0080c0; /* Old browsers */
  background: -moz-linear-gradient(left, #005580 0%, #0080c0 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%,#005580), color-stop(100%,#0080c0)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, #005580 0%,#0080c0 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, #005580 0%,#0080c0 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(left, #005580 0%,#0080c0 100%); /* IE10+ */
  background: linear-gradient(to right, #005580 0%,#0080c0 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(
  startColorstr='#005580', endColorstr='#0080c0',GradientType=1 ); /* IE6-9 */

  padding: 18px 20px 12px 20px;
  margin: -20px -20px 20px;
}
.page-header h1 {
  color: #ffffff;
}

.topbar .btn {
  border: 0;
}

table {
  margin-bottom: 9px;
}

/* Sidebar tweaks */
div.date,
div.category_box {
  margin-bottom: 9px;
}


/* tag_box ======================================================== */

.tag_box {
	list-style:none;
	margin:0;
	padding:5px 0 ;
	overflow:hidden;
}
.tag_box li {
	line-height:28px;
}
.tag_box.inline li {
	float:left;
}
.tag_box a {
	padding: 3px 6px;
	margin: 2px;
	background: #eee;
	color:#005F6B;
	border-radius: 3px;
	text-decoration:none;
}
.tag_box a span{
	vertical-align:super;
	font-size:0.8em;
}
.tag_box a.active {
	background:#57A957;
	border:1px solid #4C964D;
	color:#FFF;
}
	