/* ======= BROWSER RESET & HTML5 PREP ===== */
html, body, blockquote, div, img, h1, h2, h3, h4, h5, h6, dl, form, input, li, ol, p, ul {
	margin:0;
	padding:0;
}

a { cursor:pointer; }
a:hover, a:focus, a:active, input:focus { outline:none; }
a img {
	color:transparent; /* Only FF requires this */
	text-decoration:none;
	outline:none;
}

abbr {
	border-bottom:1px dotted gray;
	cursor:help;
}

form p, form div, form section, form span {
	margin:0;
	padding:0;
}

ol li { margin-left:20px; }
ul li { list-style:none; }

article, aside, audio, canvas, details, figure, figcaption, footer, header, nav, section, summary, video {
	display:block;
	position:relative;
	margin:0;
	padding:0;
}

/* ======== GLOBAL SELECTORS ======== */
a:link { color:#741; }
a:visited { color:#777; }
a:hover, a:focus, a:active {
	color:#666;
	text-decoration:none;
}

body {
	margin:0 auto;
	padding:0;
	background:#f9fbfb;
	color:#0d1010;
	font:normal normal 16px/22px "Helvetica Neue",Arial,sans-serif;
}

/* @media-queries */
@media screen and (max-device-width:480px) and (orientation:portrait) {
	body { width:300px; background:#f3f5f5; color:#000; }
}
@media screen and (max-device-width:480px) and (orientation:landscape) {
	body { width:460px; background:#f3f5f5; color:#000; }
}

@media screen and (max-device-width:1024px) and (orientation:portrait) {
	body { width:742px; background:#f3f5f5; color:#000; }
}
@media screen and (max-device-width:1024px) and (orientation:landscape) {
	body { width:998px; background:#f3f5f5; color:#000; }
}

@media screen and (max-device-width:2560px) {
	body {
		width:auto;
		background: -webkit-gradient(linear, left top, left bottom, from(#e3e3d9), color-stop(0.45, #fffef9), to(#f3f0e9)) no-repeat;
		background: -moz-linear-gradient(-90deg, #e3e3d9, #eae9e0, #fffef9, #f3f0e9) no-repeat;
		background: -ms-linear-gradient(-90deg, #e3dfd9, #eae7e0, #fffbf9, #f3efe9) no-repeat;
		background: -o-linear-gradient(-90deg, #e3dfd9, #eae7e0, #fffbf9, #f3efe9) no-repeat;
		/*background: linear-gradient(-90deg, #e3dfd9, #eae7e0, #fffbf9, #f3efe9) no-repeat;*/
		background-repeat: no-repeat;
		background-color:#f3f0e9;
		color:#121212;
		border-top:10px solid #962;
	}
}

h1, h2 {
	font-weight:300;
	margin:0 0 .25em 0;
	line-height:1.1em;
}

h3, h4, h5, h6 {
	font-weight:bold;
	font-size:1.1em;
	line-height:1.1em;
	margin:1em 0 .2em;
}

blockquote {margin:.8em 0; padding:0;}
blockquote p {font-family:Georgia,serif !important; font-style:italic;}
mark {background:#fcdf49; padding:1px 0 1px 2px;}

p {
	font-size:.9em;
	line-height:1.5em;
	margin:.1em 0 1em;
}

form p { margin:0; padding:0; }

input {
	font-size:14px;
	line-height:24px;
	border:1px solid #cfcfcf;
	background:#fff;
	-webkit-background-clip:padding-box;
	color:#222;
	padding:3px 5px;
}

input[type="submit"], input[type="reset"], input[type="button"], button {
	display:block;
	padding:4px 12px;
	margin:20px 0;
	border-color:#bfbfbf;
	background: -webkit-gradient(linear, left top, left bottom, from(#eee), color-stop(0.5, #bbb), to(#ddd)) no-repeat;
	background: -webkit-linear-gradient(-90deg, #eee, #bbb, #ddd) no-repeat;
	background: -moz-linear-gradient(-90deg, #eee, #bbb, #ddd) no-repeat;
	background: -ms-gradient-linear(-90deg, #eee, #bbb, #ddd) no-repeat;
	background: -o-gradient-linear(-90deg, #eee, #bbb, #ddd) no-repeat;
	-webkit-border-radius:7px;
	-moz-border-radius:7px;
	border-radius:7px;
	cursor:pointer;
	opacity:1.0;
}

input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover, button:hover,
input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus, button:focus {
	opacity:0.75;
	-webkit-transition:opacity linear 500ms;
	-moz-transition:opacity linear 500ms;
	-ms-transition:opacity linear 500ms;
	-o-transition:opacity linear 500ms;
}

input[type="radio"], input[type="checkbox"] {margin:1em 0;}

input[type="file"] {
	font-size:12px;
	line-height:14px;
	border:0 none;
	color:inherit;
	padding:0;
	margin:12px 0 0 3px;
}

figure {padding:9px; border:1px solid #e9ebeb; margin:.3em 0 1em;}
figcaption {font-family:Georgia,serif; font-style:italic; font-size:11px; line-height:1.5em; margin:.2em 0;}

q {quotes:none; quotes:‘,’,“,”;}

label {
	margin:.75em .25em .1em 0;
	display:inline-block;
	color:#454;
	font-size:.78em;
	line-height:1.5em;
}

#search_engine input[type="submit"] {
	display:inline-block;
	margin:0 0 0 5px;
	padding:3px 9px;
	background:#862;
	background: -webkit-gradient(linear, left top, left bottom, from(#862), to(#741)) no-repeat;
	background: -webkit-linear-gradient(-90deg, #862, #741) no-repeat;
	background: -moz-linear-gradient(-90deg, #862, #741) no-repeat;
	background: -ms-gradient-linear(-90deg, #862, #741) no-repeat;
	background: -o-gradient-linear(-90deg, #862, #741) no-repeat;
	color:#eca;
	border:0 none;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
	opacity:1;
}

#search_engine input[type="submit"]:hover, #search_engine input[type="submit"]:focus {
	background:#531;
	background: -webkit-gradient(linear, left top, left bottom, from(#531), to(#862)) no-repeat;
	background: -webkit-linear-gradient(-90deg, #531, #862) no-repeat;
	background: -moz-linear-gradient(-90deg, #531, #862) no-repeat;
	background: -ms-gradient-linear(-90deg, #531, #862) no-repeat;
	background: -o-gradient-linear(-90deg, #531, #862) no-repeat;
	color:#fdc;
	opacity:1;
	-webkit-transition:all linear 250ms;
	-moz-transition:all linear 250ms;
	-ms-transition:all linear 250ms;
	-o-transition:all linear 250ms;
}

#search_engine {
	display:inline-block;
	background:#f3f1f2;
	-webkit-background-clip:padding-box;
	border:1px solid #c9cfc0;
	color:#645;
	margin:11px auto 4px;
	padding:6px;
	text-align:left;
	-webkit-border-radius:7px;
	-moz-border-radius:7px;
	border-radius:7px;
	-webkit-box-shadow:inset 0 1px 2px #afbfb3;
	-moz-box-shadow:inset 0 1px 2px #afbfb3;
	box-shadow:inset 0 1px 2px #afbfb3;
}

#search_engine input[id="keywords"] {
	width:210px;
	border:0 none;
	background:#f3f1f2;
	color:#867;
	margin:0;
	padding:0;
	-webkit-border-radius:0px;
	-moz-border-radius:0px;
	border-radius:0px;
}

#search_engine input[id="keywords"]:focus {color:#312;}

form#post p input[type="submit"], form#post p input[type="button"] {display:inline-block; margin:5px 3px 0 0;}

input[type="button"] {display:inline-block; margin:0 3px 0 0; padding:3px 9px; min-width:32px; font-size:12px; line-height:18px; -webkit-border-radius:6px; -moz-border-radius:6px; border-radius:6px;}

textarea {
	display:block;
	width:66%;
	margin:.2em 0 1.2em;
	padding:8px 12px;
	border:1px solid #dfdfdf;
	color:#222;
	font-size:13px;
	line-height:1.45em;
	min-height:100px;
}

textarea #sutxt { min-height:30px; }
textarea #txt { min-height:200px; }
video, iframe, object {width:100%; margin:1em auto; border:0 none; padding:0;}


/* ======= GLOBAL CLASSES ======= */
.left { float:left; }
.right { float:right; }
.clearer { clear:both; }
.centered { text-align:center; }
.justified { text-align:justify; }
.rightaligned  { text-align:right; }

.inline li { display:inline; }
.inline-block li { display:inline-block; }
.block li {display:block;}

div.inline-block, section.inline-block {
	display:inline-block;
	vertical-align:top;
}

.block { display:block; }
.inline-block {display:inline-block;}
.inline {display:inline;}

img.full {
	width:100%;
	height:auto;
}

.inner {
	width:85%;
	margin:0 auto;
	position:relative;
}

.archive a, .archive a:visited {display:block; width:180px; margin:1em auto; padding:10px; font-size:16px; background:transparent; color:#569; text-decoration:none; text-shadow:0 1px 0 #dadcdc, 0 -1px 0 #fafcfc; -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px;}
.archive a:hover, .archive a:focus, .archive a:active {font-size:18px; background:#dfe1e1; color:#233;}

.symbol {font-family:"Guifxv2Transports" !important; font-weight:normal !important; font-style:normal !important;}

header nav, footer { font-size:11px; }
header[role="banner"] .inner {padding:4px 0 0;}
header[role="banner"] h1 { font-weight:normal; font-size:44px; font-family:"SteelfishRg-Bold",sans-serif; color:#696b6b; text-transform:none; text-shadow:0 -1px 3px #f9fbfb; letter-spacing:normal; line-height:56px; margin:-5px 0 0 0; }
header[role="banner"] h1 img {margin:12px 0 -5px; height:48px; width:auto;}
header[role="banner"] h1 a img {color:transparent; text-decoration:none; opacity:1.0;}
header[role="banner"] h1 a:hover img, header[role="banner"] h1 a:focus img, header[role="banner"] h1 a:active img {color:transparent; text-decoration:none; opacity:0.7;}
header[role="banner"] .social {padding:15px 0 0 0; margin:0 0 0 32px; font-size:12px; line-height:1.5em; display:inline-block;}
header[role="banner"] .social a img {width:33px; height:auto; opacity:1.0; text-decoration:none !important;}
header[role="banner"] .social a:hover img, header[role="banner"] .social a:focus img, header[role="banner"] .social a:active img {opacity:0.7; text-decoration:none !important; outline:0 none !important;}
nav#crumbs {font-size:11px; padding:3px; border-top:1px solid #c8caca;}
.catlist img {width:27px; height:auto; margin:-3px 3px 6px 0;}
.catlist p {margin:0; font-size:15px; font-weight:300; color:#343; text-shadow:0 -1px 1px #faf8f9;}
section[role="main"] {padding:12px 0px 24px; position:relative;}
article {padding:16px 8px; background:#fdfffe; -webkit-box-shadow:0 3px 9px #c9cbcb; -moz-box-shadow:0 3px 9px #c9cbcb; -ms-box-shadow:0 3px 9px #c9cbcb;}
article.wide {padding:24px 28px; width:64%; margin-right:16px; border:none;}
article h1 { font-size:44px; font-family:"SteelfishRg-Regular","Arial Narrow",sans-serif; font-weight:normal; text-transform:uppercase; }
article h1 .artdate {color:#7d7f7a !important;}
article h1 img {height:30px; width:auto; margin:0 5px -5px 0; padding:5px 0 6px; display:inline-block;}
article h2 { font-size:26px; }
article h1 a, article h2 a { text-decoration:none; }
article .date { margin:.2em 0 1.8em; font-size:.72em; }
article section.inline-block, #admin section.inline-block { display:inline-block; width:29%; margin:0 16px 12px; }
article section.inline-block h2, #admin section.inline-block h2 {margin:0 0 .4em 0; font-weight:normal; font-size:20px; font-family:Georgia,serif; border-bottom:2px solid #bcb; padding-bottom:3px;}
article section.inline-block p, article section.inline-block li { font-size:12px; line-height:1.5em; }
#admin section.inline-block p, #admin section.inline-block li { font-size:12px; line-height:1.5em; }
section.inline-block p.date { font-size:11px; }
section.post p, section.post li { font-family:"Latinia",Georgia,serif !important; color:#000; margin:.3em 0 .9em;}
section.post ol li {margin-left:22px; list-style-position:outside;}
section.post strong {font-weight:bold !important;}
section.post em {font-family:Georgia,serif !important; font-style:italic;}
section.post blockquote {font-family:Georgia,serif !important; font-style:italic; line-height:1.6em; margin:1.3em auto; width:72%;}
section.post code {display:block; font-family:"Anonymous Pro",Monaco,Courier,monospace; font-size:11px; line-height:1.6em !important; color:#ef6; margin:9px 0; padding:5px; background:#344;}
section.post blockquote p {font-family:Georgia,serif !important; line-height:1.75em !important; margin:1em 2.5em;}
section.post .onecol, section.post .twocol {font-size:.9em; line-height:1.5em !important;}
section.post details {font-weight:600; font-style:normal; font-size:.9em; line-height:1.4em; margin:.5em 0 .25em; color:#485252;}
section.post details mark {color:#2f3131 !important; text-shadow:0 0 1px #efbf09;}
section.inline-block details {font-size:.82em; color:#232; margin:.25em 0 .4em;}
.related h3 {font-size:.9em; line-height:1.1em; margin:1.5em 0 0 0; color:#565;}
.related li {display:inline; margin:0; font-size:.8em; line-height:1.3em !important;}
.related li:after {content:', ';}
.related li:last-child:after {content:'';}
article section.related {margin:20px 0 32px 0; padding:5px 9px; background:#ecefe9; border:1px solid #dcdfd9;}
article section.related h4 {font-size:14px; color:#566; margin:3p 0; padding:0;}
article section.related p {margin:0 0 4px 0; padding:3px 0; border-bottom:1px solid #cbcec8; font-size:.8em;}
article section.related h4:before {content:url(related-small.png); margin-right:3px; vertical-align:baseline;}
article section.related li {margin:0;}
article section.related li a {text-decoration:none; margin:0; padding:0;}
.divider {clear:both; margin:0 auto; padding:0 0 12px 0; height:28px; background:url(../../images/art-div.png) no-repeat center; display:block;}
aside {color:#444; display:block;}
aside.above {margin:0 auto; padding:8px 0; border-top:1px solid #c9cbcb;}
aside.above section.inline-block {margin:6px 16px; width:16%; vertical-align:top;}
aside.above h3 {font-size:14px !important; color:#677;}
aside.above ul li {display:block; font-size:.76em;}
aside.above li a.current {font-weight:bold; text-decoration:none;}
aside.below {background:#e9ebeb; margin:1px auto 24px; padding:24px 28px;}
aside.below ul {display:inline-block; margin:6px 16px; width:16%; vertical-align:top;}
aside.below ul li {display:block; font-size:.72em;}
aside.left {width:24%; padding:11px 14px; font-size:.8em;}
aside.left h3 {font-size:20px; line-height:20px; padding:3px 0 6px; color:#433; text-shadow:0 1px 0 #eff2eb; font-weight:normal; text-transform:lowercase; letter-spacing:normal; border-bottom:2px groove #edefed;}
aside.left blockquote p {margin:.3em auto; font-style:normal; line-height:1.48em !important;}
aside.left li, aside.left p, aside.left blockquote {font-size:12px; line-height:1.6em;}
aside.left h3 img {width:auto; height:18px; margin-right:3px; vertical-align:baseline;}
aside.left li {padding:3px 0;}
aside.left a {text-decoration:none;}
aside h3 {margin:0;}
aside ul {margin:9px 0 18px 0;}
aside #twitter_update_list li {padding:5px 0; margin:1px 0; border-bottom:1px dotted #acafa9;}

footer[role="contentinfo"] {margin:0 auto 1em; padding:10px 24px; font-size:12px; line-height:16px; display:block; color:#655;}
footer[role="contentinfo"] a {text-decoration:none;}

/* ======= IDs and ASSOCIATED CLASSES ======= */
#feature {position:relative; padding:0; margin:0 auto; min-height:400px; max-height:512px; height:auto; overflow:hidden; border:12px solid white; background:#fff; -webkit-box-shadow:0 -2px 9px #c9cbcb; -moz-box-shadow:0 -2px 9px #c9cbcb; -ms-box-shadow:0 -2px 9px #c9cbcb; -o-box-shadow:0 -2px 9px #c9cbcb;}
#feature article {background:transparent; padding:0; -webkit-box-shadow:none; -moz-box-shadow:none; -ms-box-shadow:none; border:none;}
#feature article mark, article .post code mark {background:rgba(10,10,0,0.8); color:#f9faf8 !important;}
#feature article.left, #feature article.right {width:33%; margin:0 16px;}
#feature article.absolute {position:absolute; left:auto; right:auto; bottom:0; width:370px; height:100%; background:rgba(12,24,24,0.88); color:silver; text-shadow:none; z-index:999;}
#feature article.absolute section.inline-block {vertical-align:bottom; padding:3px;}
#feature figure {max-height:512px; overflow:hidden; border:none !important; margin:0 auto; padding:0 !important;}
#feature figure img.full {display:block; width:100%; height:auto; vertical-align:middle;}
#feature h1 {font-family:"SteelfishRg-Bold",sans-serif; font-weight:normal; font-style:normal; font-size:64px; line-height:66px; margin:0;}
#feature header h1 em {font-family:"SteelfishRg-BoldItalic",sans-serif; font-weight:normal; font-style:normal;}
#feature header h1 strong {font-weight:normal; font-style:normal; text-transform:uppercase;}
#feature h1 a {color:#c73;}
#feature details {font-weight:normal; color:#9b9d9a;}
#feature section.links {margin:4px 16px;}
#feature section.links details {display:block; vertical-align:bottom; padding:3px 8px; margin:10px 10px 10px 0; background:rgba(32,48,48,0.9); color:#899; -webkit-border-radius:3px;}
#feature section.links ul {padding:3px 0;}
#feature section.links li {font-size:12px;}
#feature h3, #feature summary {font-weight:bold; font-size:12px; font-family:"Helvetica Neue",Arial,sans-serif; text-transform:uppercase; line-height:1.3em; margin:.3em 0 .1em; color:#aca;}
#feature .artsum {font:normal normal 17px/20px "Helvetica Neue",Arial,sans-serif; margin:160px auto 16px; padding:3px 0 !important; width:89%;}
#feature .artsum details {font-size:14px; line-height:1.7em; color:#bbb; text-shadow:0 0 1px #333; margin:10px auto; text-align:left;}
#feature p {font-family:"Latinia",serif; font-weight:normal; font-style:normal; font-size:11px !important; margin:12px 0 0 0;}
#feature p em, #feature p strong {font-weight:bold; font-style:normal;}
#feature a {color:#c83;}
#feature a:hover, #feature a:focus, #feature a:active {color:#efe;}
#feature p a, #feature li a {text-decoration:none;}
#feature p a:hover, #feature li a:hover, #feature p a:focus, #feature li a:focus, #feature p a:active, #feature li a:active {background:transparent; color:#efe;}

#latest-block {margin:0 auto; padding:9px 16px; background:white; -webkit-box-shadow:0 3px 9px #c9cbcb; -moz-box-shadow:0 3px 9px #c9cbcb; -ms-box-shadow:0 3px 9px #c9cbcb; -o-box-shadow:0 3px 9px #c9cbcb;}
#latest-block section.inline-block {width:30%; padding:0; min-height:60px; margin:13px 11px;}
article section.inline-block h2, #latest-block h3, #admin section.inline-block h2, #admin section.inline-block h3 {margin:0 0 .4em 0; font-weight:bold; font-size:18px; line-height:16px;  font-family:"Helvetica Neue",Arial,sans-serif; border-bottom:none;}
#latest-block h3 a, #admin section.inline-block h3 a {text-decoration:none; color:#641;}
#latest-block h3 a:hover, #admin section.inline-block h3 a:hover, #latest-block h3 a:focus, #admin section.inline-block h3 a:focus {text-decoration:none; color:#666;}
article section.inline-block h2 img {float:left; margin:-4px 3px 0 -30px; width:27px; height:auto;}
#latest-block h3 img {float:left; margin:-4px 3px 0 -5px; width:20px; height:auto;}
article section.inline-block details, article section.inline-block details p {font:normal normal 12px/1.4em "Latinia",Georgia,serif; margin:.3em 0 .5em;}
#latest-block details {font:normal normal 12px/1.5em "Latinia",Georgia,serif; margin:.3em 0 .5em; color:#000 !important;}
article section.inline-block details strong, article section.inline-block details p strong {font-weight:bold;}
#latest-block details strong, #latest-block p strong {font-weight:bold;}
#latest-block img.full {margin:0 auto;}
#latest-block p.archive {padding:6px 0; border-top:1px solid #dcdede;}
article section.inline-block .rm-link, #latest-block .rm-link {display:inline-block; font-size:13px; line-height:12px !important; text-align:center; margin:.75em 0; color:#741; text-decoration:none; -webkit-transition:background linear 750ms; -moz-transition:background linear 750ms; -ms-transition:background linear 750ms; -o-transition:background linear 750ms;}
#feature .artsum .rm-link {margin:0;}
article section.inline-block .rm-link:hover, article section.inline-block .rm-link:focus, article section.inline-block .rm-link:active {color:#666;}
#latest-block .rm-link:hover, #latest-block .rm-link:focus, #latest-block .rm-link:active {color:#666 !important;}
#feature .artsum .rm-link:hover, #feature .artsum .rm-link:focus, #feature .artsum .rm-link:active {background:transparent; color:#efe !important;}

#latest {margin:0 auto;}
#latest ul.tabs li {font-size:13px; line-height:24px; font-weight:300; font-style:normal; font-family:"Helvetica Neue",Arial,sans-serif; text-transform:uppercase;}
#latest ul.tabs li a {text-decoration:none; display:block; color:#454; text-shadow:0 1px 0 #fcfff9; letter-spacing:normal; padding:5px 12px 3px; margin:2px 12px 0 0;}
#latest ul.tabs li a:hover, #latest ul.tabs li a:focus {color:#343; text-shadow:0 1px 0 #dcdfd9;}
#latest ul.tabs li.active a {color:#232; font-weight:normal; text-shadow:0 -1px 0 #e2e8df;}
#latest span {display:block;}
#latest span #archive {display:block; margin:6px 10px 6px 0; padding:1px 8px; font-size:11px; font-weight:normal !important; line-height:24px; background:#e3e6e0; color:#4f524c; text-decoration:none; text-shadow:0 1px 0 #f3f7f0; -webkit-border-radius:10px; -moz-border-radius:10px; border-radius:10px; -webkit-transition:background linear 250ms; -moz-transition:background linear 250ms; -ms-transition:background linear 250ms; -o-transition:background linear 250ms;}
#latest span #archive:hover, #latest span #archive:focus, #latest span #archive:active {background:#cbcec8; color:#232620;}
#latest .rm-link span {display:inline-block !important; margin:-2px 0 1px 4px;}

#below_fold {margin:.5em 0 0 0; padding:10px 12px; border-bottom:1px solid #c9cbcb; line-height:1.5em;}
#below_fold .inline-block {vertical-align:middle;}
#below_fold h3 {font-size:1.15em;}
#below_fold h3.inline-block {font-family:"SteelfishRg-Regular",sans-serif; font-weight:normal; text-transform:uppercase; color:#444; margin:0 .5em 0 0;}
#below_fold ul.inline-block {margin:.2em .3em .4em 0;}
#below_fold ul.inline-block li a {margin:0 .5em 0 0; padding:2px 9px; display:block; background:#f9fbfb; text-decoration:none; font-size:12px; -webkit-border-radius:4px; -moz-border-radius:4px; border-radius:4px;}
#below_fold ul.inline-block li a:hover, #below_fold ul.inline-block li a:focus {background:#dadcdc;}
#below_fold ul.inline-block li a.current {background:#951; color:white;}

.commentsbox {margin:0 auto; width:512px;}
.commentsbox h2 {font-family:"SteelfishRg-Regular","Arial Narrow",sans-serif; font-size:21px; line-height:21px; text-transform:uppercase; margin:1em 0 0 0;}
.commentsbox p.info {font-size:11px; line-height:12px; color:#566; padding:2px 0 8px; border-bottom:1px dotted #abb; margin-bottom:1em;}
.commentsbox p {margin:0 0 .6em; width:480px;}
.commentsbox label {display:inline-block; width:80px; margin-right:0;}
.commentsbox input[type="text"], .commentsbox input[type="url"], .commentsbox input[type="email"] {width:392px; padding:3px; margin:.5em 0; color:#878;}
.commentsbox input[type="text"]:focus, .commentsbox input[type="url"]:focus, .commentsbox input[type="email"]:focus {color:#101;}
.commentsbox textarea {width:460px; padding:10px;}
#comments .avatar {width:56px; height:56px; background:#dfdfdf; font-size:36px; line-height:56px; font-family:"SteelfishRg-Bold","Arial Narrow",sans-serif; text-align:center; color:#fff; margin:0 12px 3px 0; display:block; float:left; border:0 none;}
#comments .admintar {width:56px; height:56px; background:#7f2f0f !important; font-size:44px; line-height:56px; text-align:left !important; color:#ef9f3f; margin:0 12px 3px 0; padding:0; display:block; float:left; border:0 none;}
#posted .talk {width:514px; padding:0; display:block; float:left; font-size:14px; margin:0 0 1.2em 0;}
p.meta, p.comment {margin:0; font-size:13px; font-family:Georgia,serif; line-height:1.75em;}
p.meta {color:#545; background:url(commentarrow.png) no-repeat 185px -1px; padding:1px 10px 6px;}
p.comment {border-bottom:1px solid #dfdfdf; color:#101; padding:5px 10px 3px;}
p.comment.admin {color:#545;}
#chatter h3 {font-family:"SteelfishRg-Regular","Arial Narrow",sans-serif; font-weight:normal; color:#644; text-transform:uppercase; margin-bottom:.6em;}
section#absolute {display:block; min-height:520px; margin:0 auto;}
.mailbox {width:76%; margin:8px 0 24px; padding:18px 24px;}
.mailbox .info {font-size:11px; color:#555; margin:0 0 16px;}
.mailbox label {width:62px; display:inline-block; font-size:13px;}
.mailbox input[type="text"], .mailbox input[type="url"], .mailbox input[type="email"] {width:80%; margin:0 0 12px 0;}
.mailbox textarea {width:87%; min-height:130px; display:block;}
#admin {margin:0 auto;}
#admintabs {padding:24px; background:white; margin:12px auto;}
#admintabs {vertical-align:top;}
#admintabs ul.tabs {display:inline-block !important; width:25%; padding:21px 0; margin:0 -5px 0 0; vertical-align:top;}
#admintabs ul.tabs li {display:block; text-align:right;}
#admintabs ul.tabs li a {display:block; padding:5px 10px 5px 0; background:white; margin:0; text-decoration:none; border-bottom:1px solid #e3e6e0;}
#admintabs ul.tabs li:last-child a {border-bottom:none;}
#admintabs ul.tabs li.active a {background:#ecefe9; font-weight:bold; color:#010;}
#admintabs .adminpanel {display:inline-block; width:69%; min-height:200px; padding:21px 21px 21px 30px; margin:0; background:#ecefe9; vertical-align:top;}
#admin input[type="text"], #admin input[type="email"], #admin input[type="url"], #admin input[type="password"], #admin input[type="submit"] {display:block;}
#approval {font-size:14px;}
.adminpanel .innerpanel {margin:8px auto; padding:9px 12px !important; background:white; display:block;}
.adminpanel label {display:block;}
.adminpanel input[type="checkbox"] {margin:0; padding:0; display:inline-block;}
.adminpanel input[type="checkbox"]+label {display:inline-block;}
.adminpanel .info {font-size:.75em; line-height:1.33em; color:#455; padding:2px 0 4px; border-bottom:1px solid #c6c9c3; margin-bottom:1em;}
.adminpanel h3 a:after {content:" ▾";}
.adminpanel h4 {font-size:16px; line-height:1.1em; color:#344; padding-bottom:.1em; border-bottom:1px solid #c9ccc6;}
.adminpanel ul {margin:9px 0; padding:1px 0 4px;}
.adminpanel li {padding:3px 0;}
.adminpanel p {margin:9px 0;}
.adminpanel .innerpanel input[type="submit"] {margin:9px 0 !important;}
.adminpanel .innerpanel h3 {margin:0 0 .5em 0;}
.adminpanel .innerpanel h4, .adminpanel .innerpanel h5 {font-weight:normal; margin:.5em 0 .2em 0; font-size:16px; line-height:20px;}
input[type="text"].short {width:25px; margin-left:9px; text-align:center !important;}
.subcat {margin-left:10px; font-size:.8em; line-height:1.3em; border-left:1px solid #dfdfdf;}
.thumb {width:80px; height:auto; margin:0 5px; border:4px solid #666; vertical-align:middle;}
#sitemap section.inline-block ul, #sitemap section.inline-block li {display:block;}
#sitemap section.inline-block ul.subcat {padding:3px 0; margin-left:1px;}
#sitemap section.inline-block ul.subcat li {margin-left:0; padding-left:9px;}
#archive {padding:24px 28px;}
#archive h1, #archive h2 {font-weight:bold;}
#archive ul {line-height:1.7em;}
#archive ul li {padding:3px 0;}

/* ====== VIP ! ====== */
.station, #title, .hidden {display:none !important;}
#mourning {padding:48px 28px; font-size:24px; line-height:32px; font-family:Georgia,serif; color:#888; text-align:center;}
