@charset "utf-8";
* {
	margin: 0;
	padding: 0;
}
body {
	font-size: 15px;
	line-height: 22px;
	font-family: Arial, Helvetica, sans-serif;
	color: #4a4a4a;
	background: #fff;
}
header, nav, article, aside, section, footer {
	display: block;
}
h1, h2 {
	font-size: 20px;
	line-height: 24px;
}
h3 {
	font-size: 18px;
}
h1, h2, h3, h4, p {
	margin-bottom: 15px;
}
a {
	color: #d14f4f;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
img {
	border: 0
}
.clearfix:after {
	visibility: hidden;
	display: block;
	content: ".";
	clear: both;
	height: 0;
}
.clearfix {
	zoom: 1;
}
.left {
	float: left;
	margin: 2px 10px 15px 0;
	border: 4px solid #D9D9D9;
    border-radius: 5px
}
.shell {
	width: 1030px;
	margin: 0 auto;
}
#header {
	border-bottom: 5px solid #d14f4f;
	padding: 13px 0;
}
#logo {
	float: left;
	padding: 12px 0;
}
#navigation {
	float: right;
	margin-top: 18px;
}
#navigation ul, .post ul {
	list-style: none;
}
#navigation ul li {
	float: left;
	padding: 2px;
}
#navigation ul li a {
	display: inline-block;
	color: #d14f4f;
	font-size: 13px;
	padding: 8px 16px;
	border: 2px solid #d14f4f;
	border-radius: 5px;
}
#navigation ul li a:hover, #navigation ul li a.active {
	background: #FFFFFF;
	text-decoration: none;
}
#main {
	padding-top: 20px;
}
#content {
	float: left;
	width: 700px;
}
.post {
	margin-bottom: 20px;
	border-bottom: 5px solid #d14f4f;
}
#sidebar {
	float: right;
	width: 270px;
}
.link ul, .page ul {
	margin: 0 0 15px 20px;
}
li {
	padding: 0 0 5px;
}
.link, .page {
	margin-bottom: 15px;
}
.page h2 {
	font-size: 16px;
}
.button {
	float: right;
	margin: -39px 0 0 0;
}
.button a {
	display: inline-block;
	width: 100px;
	height: 33px;
	border-radius: 5px;
	background: rgba(189, 154, 13, 0.81);
	color: #fff;
	line-height: 30px;
	text-align: center;
}
.button a:hover {
	background-position: 0 bottom;
	text-decoration: none;
}
.inner {
	margin: 0;
}
#footer {
	padding: 10px 5px;
	font-size: 14px;
	color: #7f7f7f;
	text-align: center;
}
#footer p {
	line-height: 26px;
	margin: 0;
}
#footer a {
	color: #7f7f7f;
}
.button a.mobile {
	display: none;
}
@media screen and (max-width:767px) {
.shell {
	width: auto;
	padding: 0 15px;
}
#logo, #navigation {
	float: none;
}
#navigation {
	margin-top: 10px;
}
#navigation ul {
	margin: 0;
}
#navigation ul li a {
	padding: 8px 12px;
}
#content, #sidebar {
	width: 100%;
	float: none;
}
.button {
	float: none;
	margin: 20px 0;
}
.left {
	margin: 0 0 10px 0;
	display: block;
	float: none;
}
.button a.mobile {
	display: inline-block;
	margin-left: 5px;
}
img {
	max-width: 100%;
}
}
#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #555555; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 5px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
}

#myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}

