body {
  margin: 0;
  padding: 0; }

.container {
  max-width: 920px;
  margin: 0 auto; }

.clear {
  clear: both; }

@font-face {
  font-family: 'Copse';
  font-style: normal;
  font-weight: 400;
  src: local("Copse"), url(http://themes.googleusercontent.com/static/fonts/copse/v3/GTNBLj58pwv6qyDO1RGnXaCWcynf_cDxXwCLxiixG1c.woff) format("woff"); }
body {
  font-family: 'Copse', Helvetica, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #373737;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased; }

hgroup {
  margin-bottom: 15px; }
  hgroup h2 {
    margin-bottom: 10px; }

h2 {
  font-size: 36px;
  font-style: italic; }

h3 {
  font-size: 30px;
  font-style: italic; }

a,
a:hover,
a:active,
a:visited,
input[type=submit] {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease; }

.italic {
  font-style: italic; }

.bold {
  font-weight: bold; }

.grey {
  color: #9b9b9b; }

.underline a,
a.underline {
  border-bottom: 2px solid;
  padding-bottom: 3px;
  position: relative; }
  .underline a span,
  a.underline span {
    position: absolute;
    right: -23px;
    font-size: 16px;
    bottom: -12px;
    padding: 0px 3px;
    background-color: #fff; }

.underline-yellow a,
a.underline-yellow {
  border-color: #f1e52f; }
  .underline-yellow a:hover,
  a.underline-yellow:hover {
    border-color: #f7f18f; }

.underline-green a,
a.underline-green {
  border-color: #63a544; }
  .underline-green a:hover,
  a.underline-green:hover {
    border-color: #9acc83; }

.underline-blue a,
a.underline-blue {
  border-color: #26acec; }
  .underline-blue a:hover,
  a.underline-blue:hover {
    border-color: #84d0f4; }

.underline-purple a,
a.underline-purple {
  border-color: #3b5998; }
  .underline-purple a:hover,
  a.underline-purple:hover {
    border-color: #718dc8; }

.underline-orange a,
a.underline-orange {
  border-color: #ff6600; }
  .underline-orange a:hover,
  a.underline-orange:hover {
    border-color: #ffa366; }

/*
	Images
*/
img {
  max-width: 100%; }

/*
	HR
*/
hr {
  border: none;
  color: #9b9b9b;
  background-color: #9b9b9b;
  height: 2px; }

/*
	Forms
*/
input[type=text], input[type=email], input[type=url] {
  background-color: #dedede;
  width: 205px;
  padding: 8px 5px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid #63a544;
  font-family: 'Copse';
  font-size: 12px; }

input {
  outline: none;
  margin-bottom: 20px;
  display: block;
  font-family: 'Copse'; }

input[type=text]:focus,
input[type=email]:focus {
  outline: none;
  border-bottom: 2px solid #f1e52f; }

input[type=submit] {
  background-color: #63a544;
  color: white;
  font-size: 12px;
  line-height: 20px;
  padding: 5px 17px;
  border: none;
  -webkit-appearance: none;
  border: 2px solid #63a544;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-clip: padding-box; }
  input[type=submit]:hover {
    background-color: transparent;
    color: #63a544; }

.button {
  display: inline-block;
  color: white;
  font-size: 12px;
  line-height: 20px;
  padding: 5px 17px;
  border: 2px solid #63a544;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-clip: padding-box; }
  .button:hover {
    background-color: transparent;
    color: #63a544; }
    .button:visited {
      color: white;
    }

.green-button {
  background-color: #63a544; }

#header {
  background: url("../img/header-background.png");
  width: 100%; }
  #header #topNav {
    background-color: #171717;
    -webkit-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.55);
    -moz-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.55);
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.55); }
  #header a {
    display: block; }
    #header a img {
      max-width: 90%;
      float: none;
      display: block;
      margin: 0 auto; }

.modalDialog {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  opacity: 0;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  pointer-events: none; }
  .modalDialog:target {
    opacity: 1;
    pointer-events: auto; }
  .modalDialog > div {
    max-width: 570px;
    position: relative;
    margin: 10% auto; }

.close {
  background: #606061;
  color: #FFFFFF;
  line-height: 25px;
  position: absolute;
  right: -12px;
  text-align: center;
  top: -10px;
  width: 24px;
  text-decoration: none;
  font-weight: bold;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  background-clip: padding-box;
  -moz-box-shadow: 1px 1px 3px #000;
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000; }
  .close:hover {
    background: #63a544; }

#openModal #newsletter form input[type=email] {
  margin-right: 0;
  text-align: center; }

footer {
  background-color: #171717; }
  footer .container {
    padding-top: 35px;
    padding-bottom: 35px;
    color: white; }
    footer .container h3 {
      margin-bottom: 30px; }
    footer .container .twitter .inner .twitterInfo {
      padding: 10px 0 15px;
      border-bottom: 1px solid #494949;
      margin-bottom: 15px; }
    footer .container .twitter .inner .twitterHandle {
      color: #63a544;
      display: inline-block;
      margin-right: 15px; }
    footer .container .twitter .inner ul li {
      margin-bottom: 20px; }
    footer .container #cats nav ul li {
      margin-bottom: 15px; }
      footer .container #cats nav ul li a {
        border-bottom: 1px solid #63a544; }
        footer .container #cats nav ul li a:hover {
          border-color: #f1e52f; }
    footer .container .copy {
      border-top: 1px solid #494949;
      padding: 30px 0;
      font-size: 12px; }
      footer .container .copy p span {
        padding: 0 5px; }
      footer .container .copy .twitter, footer .container .copy .rss, footer .container .copy .facebook {
        background: url("../img/sprite.png") no-repeat;
        display: inline-block; }
      footer .container .copy .twitter {
        background-position: 0px 0px;
        height: 22px;
        width: 23px;
        margin-right: 11px; }
      footer .container .copy .rss {
        background-position: 0px -64px;
        width: 26px;
        height: 22px; }
      footer .container .copy .facebook {
        background-position: 0px -32px;
        width: 17px;
        height: 22px;
        margin-right: 11px; }

/*
	About
*/
#about .container {
  border-top: 2px solid #9b9b9b;
  padding-top: 25px;
  padding-bottom: 25px; }
  #about .container h3 {
    margin-bottom: 15px; }
  #about .container p {
    margin-bottom: 10px; }

/*
	Single
*/
#archive {
  padding-top: 30px; }

.mainSection h1 {
  font-family: 'Copse';
  font-size: 36px;
  line-height: 1em;
  margin-bottom: 18px; }
.mainSection hr {
  border: none;
  color: #9b9b9b;
  margin: 30px 0;
  background-color: #9b9b9b;
  height: 1px; }
.mainSection h1 + p {
  font-size: 19px;
  line-height: 1.4em; }
.mainSection p, .mainSection ul, .mainSection blockquote {
  margin-bottom: 20px; }
.mainSection blockquote {
  font-family: 'Copse';
  font-size: 20px;
  line-height: 28px;
  color: #63a544;
  background: url("../img/blockquote.png") no-repeat top left;
  padding-left: 65px;
  min-height: 100px; }
  .mainSection blockquote p {
    margin: 0; }
.mainSection h2, .mainSection h3, .mainSection h4, .mainSection h5, .mainSection h6 {
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 18px; }
.mainSection img {
  margin: 10px 0; }
.mainSection pre {
  font: 13px "Courier 10 Pitch", Courier, monospace;
  line-height: 1.5;
  margin-bottom: 1.625em;
  overflow: auto;
  padding: 0.1em 1.625em 1.625em 1.625em;
  background: #DDDDDB;
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */ }
.mainSection code, .mainSection kbd, .mainSection samp, .mainSection var {
  font: 13px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  color: #666;
  background: #DDDDDB;
  display: block;
  padding: 5px; }
.mainSection code {
  display: inline; }

.excerptMore {
  border-top: 1px dashed #171717;
  padding-top: 20px;
  margin-bottom: 50px; }
  .excerptMore span {
    font: 13px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    display: block;
    margin-bottom: 20px; }

.author {
  background-color: #e7e7e7;
  padding: 20px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-clip: padding-box;
  margin-bottom: 20px; }
  .author .authorName {
    margin-left: 10px;
    margin-top: 0;
    padding-top: 0;
    font-size: 16px;
    color: #373737; }
    .author .authorName.noPic {
      margin-left: 0; }

.adverty {
  margin-bottom: 30px;
  text-align: center; }

/*
	Sidebar
*/
.sidebar {
  width: 23%;
  float: left; }
  .sidebar article {
    margin-bottom: 50px; }
  .sidebar h4 {
    font-size: 16px;
    line-height: 23px; }
  .sidebar p {
    font: 13px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    display: block;
    margin-bottom: 20px; }
  .sidebar img {
    margin: 10px 0; }
  .sidebar .author {
    background-color: #e7e7e7;
    padding: 0px 10px 10px 12px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-clip: padding-box;
    margin-bottom: 50px; }
    .sidebar .author .authorName {
      max-width: 150px;
      margin-left: 10px;
      margin-top: 20px;
      font-size: 16px;
      color: #373737; }
    .sidebar .author .authorName.noPic {
      margin-left: 0; }
      .sidebar .author .authorName.noPic span {
        display: block;
        padding-top: 10px;
        margin-bottom: 20px; }
    .sidebar .author a {
      font-size: 16px;
      color: #373737;
      word-break: break-all; }

iframe, ins {
  max-width: 100%;
  height: auto;
  display: block !important;
  margin: 0 auto;
}

/*
	Category / Archive
*/
.catTitle {
  border-bottom: 1px solid #9b9b9b; }

body.archive #archive .mainSection article h4 {
  font-size: 16px;
  line-height: 22px;
  color: #373737;
  font-weight: bold; }

.authorTitle {
  font-size: 26px;
  line-height: 30px; }

#todays-five {
  padding: 25px 0; }
  #todays-five article {
    padding: 25px 0;
    text-align: center; }
    #todays-five article h2, #todays-five article p {
      margin-left: 10%;
      margin-right: 10%; }
    #todays-five article h2 {
      margin-bottom: 22px; }
      #todays-five article h2 a {
        font-size: 36px;
        color: #373737; }
    #todays-five article p {
      margin-bottom: 12px; }

#newsletter-section.smaller-newsletter article,
#newsletter.smaller-newsletter article {
  padding: 20px; }
#newsletter-section article,
#newsletter article {
  background-color: #e7e7e7;
  padding: 35px 50px;
  max-width: 520px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background-clip: padding-box;
  margin: 0 auto 50px auto;
  text-align: center;
  display: block; }
  #newsletter-section article h2,
  #newsletter article h2 {
    line-height: 1em;
    margin-bottom: 8px;
    font-style: normal; }
  #newsletter-section article p,
  #newsletter article p {
    margin-bottom: 25px; }
  #newsletter-section article form,
  #newsletter article form {
    margin: 0 auto; }
    #newsletter-section article form input,
    #newsletter article form input {
      display: inline; }
      #newsletter-section article form input[type=email],
      #newsletter article form input[type=email] {
        margin-right: 20px;
        background-color: white; }

.related-articles {
  margin-bottom: 50px; }
  .related-articles h3 {
    margin-bottom: 30px;
    font-size: 20px;
    font-style: normal; }
  .related-articles ul {
    margin-left: 0;
    padding-left: 0; }
    .related-articles ul li {
      font-size: 0; }
      .related-articles ul li a {
        font-size: 13px;
        display: inline-block;
        color: #fff;
        line-height: 20px;
        padding: 5px 17px;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        background-clip: padding-box;
        background-color: #63a544;
        display: block;
        margin-bottom: 10px; }

@media (max-width: 480px) {
  #topNav nav ul li {
    padding: 5px; }
    #topNav nav ul li a {
      font-size: 13px; } }
@media (min-width: 481px) and (max-width: 764px) {
  #topNav nav ul li {
    padding: 5px 10px; } }
@media (max-width: 764px) {
  .container {
    text-align: center; }

  form input {
    margin-left: auto;
    margin-right: auto; }

  #topNav {
    padding: 20px 0; }
    #topNav nav ul {
      text-align: center; }
      #topNav nav ul.social {
        display: none; }
      #topNav nav ul li {
        display: inline-block;
        float: none;
        margin: 0;
        width: auto;
        text-align: center;
        font-size: 14px; }
        #topNav nav ul li a {
          color: #e7e7e7; }

  #archive .mainSection {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    float: none; }
    #archive .mainSection ul li, #archive .mainSection ol li {
      margin-bottom: 30px;
      float: none;
      width: 100%; }
  #archive .sidebar {
    display: none; }

  .container {
    padding: 0 10px; }
    .container .five-logo {
      background: url("../img/logo-five.png") no-repeat right;
      padding: 50px 0; }

  .submit {
    margin-bottom: 30px; }
    .submit form input {
      margin: 0 auto 20px auto; }
    .submit .gform_heading {
      margin-bottom: 10px; }

  .close {
    right: 5px;
    top: -4px; }

  #cats h3 {
    margin-bottom: 40px; }
  #cats nav ul li {
    width: 100%;
    list-style: none; } }
@media (min-width: 764px) {
  .container .five-logo {
    padding: 40px 0;
    background: url("../img/logo-five.png") no-repeat center; }

  body.home .container .five-logo {
    padding: 100px 0;
    background: url("../img/logo-five.png") no-repeat center; }

  body.archive #archive .mainSection li {
    display: inline;
    margin-bottom: 20px; }
    body.archive #archive .mainSection li:nth-child(3n) {
      clear: both; }
    body.archive #archive .mainSection li article {
      vertical-align: top;
      padding-right: 30px; }

  body.search #archive .mainSection li {
    display: inline;
    margin-bottom: 20px; }
    body.search #archive .mainSection li:nth-child(3n) {
      clear: both; }
    body.search #archive .mainSection li article {
      vertical-align: top;
      padding-right: 30px; }

  body.author #archive .mainSection li:nth-child(2n) {
    clear: both; }
  body.author #archive .mainSection li:nth-child(3n) {
    clear: none; }

  #topNav nav {
    max-width: 940px;
    margin: 0 auto; }
    #topNav nav ul {
      padding-left: 10px; }
      #topNav nav ul.social {
        padding: 0; }
        #topNav nav ul.social li {
          margin-right: 35px; }
          #topNav nav ul.social li a {
            font-size: 12px; }
      #topNav nav ul li {
        float: left;
        margin-right: 40px;
        padding: 25px 0; }
        #topNav nav ul li a {
          color: #e7e7e7; }

  .left {
    float: left; }

  .right {
    float: right; }

  .half {
    width: 50%; }

  .third {
    width: 33.33333333%; }

  .twitter .inner {
    border-left: 1px solid #494949;
    padding: 0 70px 20px 70px; }

  #gform_1 .gform_description {
    max-width: 280px;
    display: block;
    margin-bottom: 30px; }

  #cats {
    text-align: center; }
    #cats form {
      margin-bottom: 20px; }
      #cats form input {
        display: inline-block; }
        #cats form input[type=text] {
          margin-right: 10px; }
    #cats nav ul {
      padding-left: 0;
      margin-left: 0; }
      #cats nav ul li {
        float: left;
        width: 25%;
        list-style: none; }

  .social {
    text-align: right; } }


 .gplus
{
    width: 26px;
    height: 22px;
    background: url("../img/Google-plus-icon.png") no-repeat;
    display: inline-block;
background-size: contain;
}
.delicious
{
    width: 26px;
    height: 22px;
    background: url("../img/delicious.png") no-repeat;
    display: inline-block;
background-size: contain;
}




/*====Spots CSS====*/
.spot
{
    border:1px dashed grey;
    margin-top:10px !important;
}
.spot_centered
{
    margin:0 auto;
}
.spot_728x90
{
    width:728px;
    height:90px;
}
.spot_250x250
{
    width:300px;
    height:250px;
}
.spot_250x
{
    min-width:300px;
    min-height:250px;
}
.spot_main
{
    margin-top:10px;
}



