/* Main CSS */
/*
Palette:
Orange - ff9e1c
DarkBlue - 4fb2b7
MediumBlue - 8bdbde
LightBlue - d0feff
*/

.main_container {
	position: absolute;
	display: block;
	width: 800px;
	height: auto;
	left: 50%;
	margin-left: -400px;
	top: 0;
	background-color: #d0feff;
}

.header {
	position: relative;
	height: 427px;
	width: 100%;
	background-image: url('/images/header.gif');
	display: block;
	background-color: #fff;
}

.navbar {
	position: relative;
	width: 100%;
	height: 50px;
	background-color: #4fb2b7;/*#8bdbde;*/
	overflow: hidden;
	text-align: center;
	z-index: 10;
	margin-top: -2px;
}

.media_bar {
	position: relative;
	width: 100%;
	height: 150px;
	margin-top: -20px;
}

.media_fb {
	position: relative;
	display: block;
	margin-left: 5px;
	float: left;
	width: 73px;
	height: 117px;
	background-image: url(/images/buttons/SocialMedia/Facebook.png);
}
.media_twitter {
	position: relative;
	display: block;
	margin-left: 5px;
	float: left;
	width: 73px;
	height: 117px;
	background-image: url(/images/buttons/SocialMedia/Twitter.png);
}
.media_reddit {
	position: relative;
	display: block;
	margin-right: 5px;
	float: right;
	width: 73px;
	height: 117px;
	background-image: url(/images/buttons/SocialMedia/reddit.png);
}
.media_tumblr {
	position: relative;
	display: block;
	margin-right: 5px;
	float: right;
	width: 73px;
	height: 117px;
	background-image: url(/images/buttons/SocialMedia/tumblr.png);
}
.media_patreon {
	position: absolute;
	display: block;
	top: 30px;
	left: 50%;
	margin-left: -200px;
	width: 400px;
	height: 142px;
	background-image: url(/images/buttons/Patreon.png);
	z-index: 999;
}

.media_rss {
	position: absolute;
	width: 50px;
	height: 50px;
	display: block;
	top: 25px;
	left: 50%;
	margin-left: -240px;
	background-image: url(/images/buttons/RSSbutton.png);
}

.media_instagram {
	position: absolute;
	width: 50px;
	height: 50px;
	display: block;
	top: 25px;
	left: 50%;
	margin-left: 190px;
	background-image: url(/images/buttons/instagram.png);
}

/* Actual comic and navigation */
.comic_container {
	display: block;
	position: relative;
	width: 700px;
	height: auto;
	margin: 20px auto 0 auto;
}
.comic_navbar {
	width: 100%;
	height: 80px;
	text-align: center;
}

/* Buttonz */

.buy_button {
	display: block;
	position: relative;
	margin: 20px auto 0 auto;
	width: auto;
	height: auto;
}

.sharebutton_container {
	display: block;
	width: 375px;
	height: 100px;
	margin: 20px auto 0 auto;
	text-align: center;
}

.sharebutton {
	display: block;
	width: 75px;
	height: 75px;
	float: left;
}

.ad_container {
	display: block;
	width: 728px;
	height: 90px;
	margin: 50px auto 0 auto;
	overflow: hidden;
}

.comic_comments {
	width: 672px;/* Awkward to fit with padding & border */
	height: auto;
	min-height: 150px;
	margin: 50px auto 0 auto;
	padding: 0 10px 0 10px;
	background-color: #fff;
	color: #ff9e1c;
	
	border: 4px solid;
    border-radius: 4px;
    border-color: #4fb2b7;
	text-align: left;
}

.comment_bar {
	width: 700px;
	height: 50px;
	display: block;
	margin: 50px auto 0 auto;
	background-image: url(/images/buttons/showcomments.png);
}
.comment_bar:hover {
	/* background-color: #8bdbde; */
	cursor:pointer;
}

.comment_container {
	width: 690px;
	height: auto;
	display: block;
	background-color: #4fb2b7;
	margin: 0 auto 0 auto;
	padding: 5px;
	display: none;
}

.footer {
	width: 100%;
	height: auto;
	margin-top: 50px;
	color: #fff;
	background-color: #4fb2b7;
	display: block;
}

/* Mainly for comics */
.album_label {
	width: 500px;
	height: 126px;
	margin: 50px auto 0 auto;
	display: block;
}

.content {
	width: 100%;
	height: auto;
	margin: 50px auto 0 auto;
	display: block;
}

/* Standard Redefinitions */

body
{
	height: 100%;
    margin: 0;
	text-align: center;
}

html
{
	height: 100%;
	margin: 0;
	background-color: #fff;
	color: #4fb2b7;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

a, a:link, a:visited {
	color: #4fb2b7;
	text-decoration: none;
	outline: 0;
}
a:hover {
	color: #4fb2b7;
	text-decoration: underline;
	outline: 0;
}
a:active {
	color: #4fb2b7;
	text-decoration: none;
	outline: 0;
}

a img { outline : none; }
img { border : 0; }