* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 14px;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: -webkit-text-size-adjust;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #404040;
	font-family: 'Merriweather Sans',Helvetica,Roboto,Arial,sans-serif;
  font-size: 100%;
  font-weight: 400;
  height: 100%;
  min-height: 100%;
	margin: 0;
	padding: 0;
	position: relative;
}

img {
  border: none;
  outline: none;
  vertical-align: top;
}

p {
  margin: 0;
  padding: 0 0 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

ul,
ol {
  margin: 0;
  padding: 0 0 15px 20px;
}

ul li,
ol li {
  margin-bottom: 5px;
}

img {
  max-width: 100%;
}

input {
  font-family: inherit;
  color: inherit;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

a {
  color: #0065a4;
	text-decoration: none;
}

/* Page Structure */
.body-wrapper {
  min-height: 100%;
  position: relative;
}

.wrapper {
  max-width: 1086px;
  margin: auto;
}

.content-padding {
  overflow: hidden;
  padding: 0 10px;
}
/* END Page Structure */

/* Header */
.header-wrap {
	position: relative;
}

.header-wrap .header-wrap__top {
  background: #fff;
	border-bottom: 1px solid #eff1f2;
  height: 45px;
  position: relative;
  z-index: 10001;
}

.header-wrap .header-wrap__top .wrapper {
  height: 100%;
  padding-left: 55px;
}

.header-wrap .header-wrap__top.header-nosearch .wrapper {
  padding-left: 0;
}

.header-wrap .logo {
  padding-top: 11px;
	text-align: center;
}

.header-wrap .logo img {
	height: 19px;
}

.header-wrap .search-trigger {
	background: transparent;
	border: none;
  border-bottom: 1px solid #eff1f2;
  color: #333;
  cursor: pointer;
  display: block;
  height: 45px;
	float: right;
  font-size: 1.3rem;
  line-height: 45px;
	outline: none;
  padding-top: 1px;
  text-align: center;
  width: 40px;
}

.header-wrap .search-trigger .search-icon {
  background: url(search.svg) 50% 50% no-repeat;
  background-size: 100%;
  display: inline-block;
  height: 18px;
  width: 18px;
}

.header-wrap.search-open .search-trigger {
  border-left: 1px solid #eff1f2;
  border-right: 1px solid #eff1f2;
  border-bottom-color: #fff;
}

.header-ads {
	margin: 0 auto;
  padding: 10px 0;
	width: 100%;
	text-align: center;
	white-space: nowrap;
	background-color: #fff;
	overflow: hidden;
}

@media (max-width:728px) {
	.header-ads {
		display:none;
	}
}

.box-ad {
	display:inline-block;
	margin: 10px auto 0px;
	width: 100%;
	text-align: center;
	white-space: nowrap;
	background-color: #fff;
	overflow: hidden;
}

@media (min-width:728px) {
	.box-ad {
		display:none;
	}
}
/* END Header */

/* Search Bar */
.search-bar {
  background: #fff;
	border-bottom: 1px solid #eff1f2;
  height: 45px;
  margin-top: -45px;
  transition: all 0.4s ease-in-out;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 1000;
}

.header-wrap.search-open .search-bar {
  margin-top: 0;
}

.search-bar .wrapper {
  height: 100%;
  padding: .4rem 40px;
}

.search-bar .search-bar__archives {
  display: none;
  float: right;
  margin: 0 0 0 20px;
  padding: .25rem 0;
}

.search-bar .search-bar__archives a {
  border-left: 2px solid #eff1f2;
  font-size: .8rem;
  padding: .25rem 0 .2rem 1.1rem;
  text-decoration: underline;
}

.search-bar form {
  display: block;
  height: 100%;
  overflow: hidden;
}

.search-bar button {
	background: #0065a4;
	border: none;
  color: #959595;
  cursor: pointer;
  float: right;
  font-size: 1.2rem;
  height: 100%;
  padding: .1rem .6rem 0;
}

.search-bar button:hover {
  color: #333;
}

.search-bar .search-bar__input-hold {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.search-bar .search-bar__input-hold .search-bar__clear {
  color: #ccc;
  cursor: pointer;
  display: none;
  font-size: 1.5rem;
  height: 100%;
  padding: 0 .3rem;
  position: absolute;
  right: 0;
  top: 0;
}

.search-bar .search-bar__input-hold.show-clear .search-bar__clear {
  display: block;
}

.search-bar .search-bar__input-hold .staricon-close-circle {
  padding-top: 4px;
}

.search-bar input {
  background: #f3f3f3;
  border: 1px solid #0065a4;
  font-size: 1rem;
  font-weight: bold;
  height: 100%;
  outline: none;
  padding: 0 2.5rem 0 .75rem;
  width: 100%;
}

.search-bar input::-webkit-input-placeholder {
  color: #666;
}

.search-bar input::-moz-placeholder {
  color: #666;
}

.search-bar input:-ms-input-placeholder {
  color: #666;
}

.search-bar input:placeholder {
  color: #666;
}
/* END Search Bar */

/* Section Header */
.section-header {
  border-bottom: 1px solid #eff1f2;
  color: #0065a4;
  height: 45px;
}

.section-header .section-header__gutter {
  background: #f15658;
  height: 100%;
  float: left;
  margin-right: 15px;
  position: relative;
  width: 40px;
}

.section-header .section-header__gutter:before {
    position: absolute;
    top: 50%;
    left: 100%;
    width: 0;
    height: 0;
    margin-top: -8px;
    content: '';
    pointer-events: none;
    border: solid transparent;
    border-width: 8px;
    color: #f15658;
    border-left-color: currentColor;
}

.section-header .section-header__title {
  font-size: 13px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: -.01em;
  overflow: hidden;
}

.section-header .section-header__title h1 {
  display: inline;
  font-size: 13px;
}

.section-header .section-header__title .section-header__sep {
  border: 2px solid #737373;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  vertical-align: middle;
}

/* END Section Header */

/* Main Content */
section .heading {
	font-size: 18px;
  line-height: 25px;
  height: 25px;
  color: #0072bc;
  margin: 15px 0;
  text-align:left
}

section .heading a {
	font-size: 18px;
  line-height: 25px;
  height: 25px;
  text-align:left;
	text-decoration: none;
}

.article-content {
  padding-top: 10px;
}

.divide {
  display: block;
  clear: both;
  margin: 10px 0px;
  border-bottom: 1px dotted #7f7f7f;
}
/* END Main Content */

/* Comics */
.comics {
	height: 75px;
	float: left;
	padding: 0 5px 5px 0;
	border: 0;
}

@media (max-width:780px) {
	.comics {
		height: 50px;
		float: left;
		padding: 0 5px 5px 0;
		border: 0;
	}
}

@media (max-width:420px) {
	.comics {
		height: 40px;
		float: left;
		padding: 0 5px 5px 0;
		border: 0;
	}
}
/* END Comics */

/* Sudoku */
.sudoku {
	height: 105px;
	float: left;
	padding: 0 5px 5px 0;
	border: 0
}

@media (max-width:780px) {
	.sudoku {
		height: 90px;
		float: left;
		padding: 0 5px 5px 0;
		border: 0
	}
}

@media (max-width:420px) {
	.sudoku {
		height: 65px;
		float: left;
		padding: 0 5px 5px 0;
		border: 0
	}
}
/* END Sudoku */

/* Horoscopes */
.horoscope {
	height: 75px;
	float: left;
	padding: 0 5px 5px 0;
	border: 0;
}

@media (max-width:780px) {
	.horoscope {
		height: 50px;
		float: left;
		padding: 0 5px 5px 0;
		border: 0;
	}
}

@media (max-width:420px) {
	.horoscope {
		height: 40px;
		float: left;
		padding: 0 5px 5px 0;
		border: 0;
	}
}

.divlink {color:#000; text-decoration:none;}
/* END Horoscopes */

/* Footer */
footer {
  background: #666;
  color: #e5e5e5;
  font-size: .715rem;
  margin-top: 1.5rem;
  padding: 1rem 0;
  text-align: center;
}

footer a {
  color: #e5e5e5;
}

footer a:hover {
  color: #fff;
}

footer .footer-nav {
  list-style: none;
  margin: 0;
  padding: .5rem 0 0 0;
}

footer .footer-nav li {
  display: inline;
  margin: 0 1.8rem 0 0;
}

footer .footer-nav li:last-child {
  margin-right: 0;
}
/* END Footer */


@media only screen and (min-width: 728px) {
  html {
    font-size: 18px;
  }

  .body-wrapper {
    padding-bottom: 90px;
  }

  .content-padding {
    padding: 0 15px;
  }

  section {
    font-size: .8rem;
  }

  /* Header */
  .header-wrap {
  	border-top: 34px solid #0065a4;
  }

  .header-wrap .header-wrap__top .wrapper {
    padding-left: 50px;
  }

  .header-wrap .logo {
    padding-top: 12px;
  }

  .header-wrap .logo img {
    height: 22px;
  }

  .header-wrap .header-wrap__top {
    height: 52px;
  }

  .header-wrap .search-trigger {
    color: #757575;
    font-size: 26px;
    height: 52px;
    line-height: 52px;
    padding-top: 3px;
    width: 50px;
  }

  .header-wrap .search-trigger:hover {
  	color: #333;
  }

  .header-wrap .search-trigger .search-icon {
    height: 26px;
    width: 26px;
  }

  /* END Header */

  /* Search Bar */
  .search-bar {
    height: 52px;
    margin-top: -52px;
  }

  .search-bar button {
    font-size: 1.2rem;
  }

  .search-bar .search-bar__archives {
    display: block;
  }

  .search-bar .wrapper {
    padding: .4rem 50px;
  }
  /* END Search Bar */


  /* Section Header */
  .section-header {
    height: 52px;
  }

  .section-header .section-header__gutter {
    margin-right: 15px;
    width: 50px;
  }

  .section-header .section-header__title {
    font-size: 18px;
    line-height: 52px;
    letter-spacing: -.018em;
  }

  .section-header .section-header__title h1 {
    font-size: 18px;
  }

  /* END Section Header */

  /* Footer */
  footer {
    bottom: 0;
    font-size: .61rem;
    left: 0;
    position: absolute;
    text-align: left;
    width: 100%;
  }

  footer .copyright {
    float: left;
    width: 50%;
  }

  footer .footer-nav {
    float: right;
    padding: 0;
    text-align: right;
    width: 50%;
  }

  footer .footer-nav li {
    margin: 0 0 0 1.8rem;
  }
  /* END Footer */
}


@media only screen and (min-width: 1086px) {
  html {
    font-size: 20px;
  }

  .content-padding {
    padding: 0;
  }

  /* Header */
  .header-wrap .header-wrap__top .wrapper {
    padding-left: 62px;
  }

  .header-wrap .logo {
    padding-top: 14px;
  }

  .header-wrap .logo img {
    height: 31px;
  }

  .header-wrap .header-wrap__top {
    height: 62px;
  }

  .header-wrap .search-trigger {
    height: 62px;
    line-height: 62px;
    width: 62px;
  }
  /* END Header */

  /* Search Bar */
  .search-bar {
    height: 62px;
    margin-top: -62px;
    position: static;
  }

  .search-bar .wrapper {
    padding: .4rem 62px;
  }

  .search-bar .search-bar__archives a {
    padding: .35rem 0 .35rem 1rem;
    line-height: 35px;
  }

  .search-bar .search-bar__input-hold .staricon-close-circle {
    padding-top: 6px;
  }
  /* END Search Bar */

  /* Section Header */
  .section-header {
    height: 62px;
  }

  .section-header .section-header__gutter {
    margin-right: 23px;
    width: 62px;
  }

  .section-header .section-header__title {
    font-size: 20px;
    line-height: 62px;
    letter-spacing: -.02em;
  }

  .section-header .section-header__title h1 {
    font-size: 20px;
  }
  /* END Section Header */
}
