@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:400,300,700&subset=latin-ext);
@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,300italic,700&subset=latin,latin-ext);
@import url(https://fonts.googleapis.com/css?family=Allura&subset=latin,latin-ext);
* {
    padding: 0;
    margin:0;
    font-family: 'Open Sans Condensed', sans-serif;
    box-sizing: border-box;
}
header *, h1 *, a {
    -moz-box-sizing: border-box;
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: ease;
    transition-delay: 0;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
    -webkit-transition-delay: 0;
}
a { color: #616161; text-decoration: none;}
a:hover { color: #ff6644;}
.menu li a:hover  { border-bottom: 1px dotted #ff6644; }
html {
    color: #000;
    font-size: 16px;
    min-height: 100%;
}
body {
    background-color: #f3f3f3;
    background: url('/static/site/img/bg.png');
    color: #545252;
}
h1 { 
    font-family: 'Roboto Slab', serif;
    color: #616161;
    font-weight: 400;
    padding: 30px 15px 10px 15px;
    text-align: center;
}
h1 * { font-family: 'Roboto Slab', serif;}
header {
    width: 100%;
}
header #logo {
    font-size: 70px;
    text-align: center;
    margin: 30px 0 20px 0;
}
header #logo a {
    font-family: 'Allura',Verdana, Geneva, sans-serif;
}
header #logo a:hover { border: 0; color: #d14a2b;}
header .menu {
    list-style: none;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    font-size: 20px;
}
header .menu li {
    display: inline-block;
    margin: 0 10px;
    line-height: 30px;
}
header .menu li.active a { color: #ff6644;}
section #content {
    width: 940px;
    margin: 0 auto;
}
section #content .box {
    background: white;
    -webkit-border-radius: 2px;
    box-shadow: 0 1px 3px rgba(34, 25, 25, 0.4);
    -moz-box-shadow: 0 1px 2px rgba(34,25,25,0.4);
    -webkit-box-shadow: 0 1px 3px rgba(34, 25, 25, 0.4);
    word-wrap: break-word;
    margin: 20px 0;
    padding: 0 0 20px 0;
}
section #content .box .line {
    border-top: 1px dotted #dadada;
    margin: 30px 45px;
} 
section #content .box .line .date {
    background: white;
    margin: -15px auto 0 auto;
    text-align: center;
    width: 200px;
}
section #content .box .title_img {
    width: 850px;
    margin: 0 45px 15px 45px;
}
section #content .box .text {
    padding: 15px 45px;
    line-height: 22px;
}
section #content .box .text p {
    margin: 0 0 20px 0;
}
section #content .box .text blockquote {
    border-left: 4px solid #ff6644 !important;
    padding: 0 35px !important;
    position: relative;
    margin-left: 0px;
    font-size: 22px;
    
}
.button, button {
    border: none;
    background: #ff6644;
    padding: 10px;
    color: #fff;
    font-weight: bold;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    font-size: 16px;
    width: 95px;
    text-align: center;
    position: relative;
    display: block;
    line-height: 25px;
    cursor: pointer;
    margin: 0 auto;
}
.button:hover, button:hover {
    background: #d14a2b
}
.button a, button a {
  color: #fff;
}
.comment {
  padding: 10px 0;
  border-bottom: dotted 1px #dadada;
}
.comment .author{
}
.comment .date {
  background: none !important;
  margin: 0 !important;
  text-align: left !important;
  width: auto !important;
  font-size: 12px;
  font-style: italic;
}
.auth label {
  display: none;
}
.auth li {
  list-style: none;
}
.auth textarea {
  width: 100%;
  height: 130px;
  margin: 10px 0;
}
footer {
    width: 100%;
    border-top: 4px solid #ff6644;
    background: url('/static/site/img/bg_footer.png');
    color: white;
    font-size: 14px;
    padding: 50px 0 20px 0;
    margin: 30px 0 0 0;
}
footer #copy {
    width: 940px;
    border-top: 1px solid #ff6644;
    margin: 10px auto 0 auto;
    padding: 10px;
    font-size: 12px;
}
footer a {
    color: white;
}
