/** page structure **/
#w {
  display: block;
  max-width: 1200px;
  min-width: 300px;
  margin: 0 auto;
  padding: 10px 3px 30px;
}


/** posts slider widget **/
.crsl-items {
  display: block;
  padding: 5px;
}

.crsl-item {
  background: #fff;
  padding: 8px;
  word-break: break-all;
}

.crsl-item .thumbnail {
  display: block;
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
}
.crsl-item .thumbnail img { 
  display: block; /* fix 1px image space http://stackoverflow.com/q/5804256/477958 */
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.crsl-item .thumbnail:hover img {
  opacity: 0.8;
}

.crsl-item h3 {
  font-family: 'Oswald', 'Trebuchet MS', Helvetica, sans-serif;
  font-size: 1.95em;
  /*line-height: 1.25em;
  margin-bottom: 12px;*/
  line-height: 22px;
  margin-bottom: 20px;
  margin-top: 10px;
}
.crsl-item h3 a {
  text-decoration: none;
  color: #333;
}
.crsl-item h3 a:hover {
  text-decoration: underline;
}

.crsl-item .postdate {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 6px;
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
  font-size: 1.2em;
  font-weight: bold;
  background: #4e90da;
}

.crsl-item p {
  font-size: 1.2em;
  line-height: 1.55em;
  margin-bottom: 5px;
}

.crsl-item p.readmore a {
  display: block;
  float: right;
  color: #4e90da;
  padding: 3px 5px;
  text-decoration: none;
  font-weight: bold;
  -webkit-border-radius: 3px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.crsl-item p.readmore a:hover {
  background: #4b6caa;
  color: #fff;
}

/** posts slider nav **/
.slidernav {
  display: block;
  text-align: right;
  margin-bottom: 0px;
  margin-top: -60px;
}

.slidernav a {
  width: 36px;
  height: 36px;
  display: inline-block;
  padding: 0px;
  margin: 0px;
  background-size: cover;
}

.previous {
  background-image: url("images/black_left.png");
}

.next {
  background-image: url("images/black_right.png");
}

.previous:hover {
  background-image: url("images/red_left.png");
}

.next:hover {
  background-image: url("images/red_right.png");
}

/*ul li {
    list-style-image: url("images/arrow_icon2.png");
}*/

.navbar-default .navbar-nav li {
    list-style-type: none;
}

.mt15 {
  margin: 0 0 50px 0;
}

.crsl-item h3 a:hover {
    text-decoration: none;
    color: #23527c;
}

/*.post-desc {
    padding-bottom: 10px;
}*/

/** media queries **/
@media screen and (max-width: 660px) {
  h1 { font-size: 2.4em; line-height: 1.2em; }
  
  .crsl-item h3 { font-size: 1.65em; }
}

/** clearfix **/
.clearfix:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }
.clearfix { display: inline-block; }
 
html[xmlns] .clearfix { display: block; }
* html .clearfix { height: 1%; }
