/*
Theme Name: OnRPG Theme
Theme URI: http://www.onrpg.com/
Author: Bowen Li, Adam McMasters, Tyler Wood (C) 2016
Author URI: http://www.onrpg.com/
Description: OnRPG Wordpress Theme
Version: 3.00000029
License: CPMStar, Game Show Network
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
body {
	line-height: 1;
	position: relative;
}
ol,
ul {
	list-style: none;
	display: block;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a:focus {
	outline: thin dotted;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin: 24px;
	margin-bottom: 1.714285714rem;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small {
	font-size: smaller;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
}

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
	clear: both;
}
.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
	display: table;
	content: "";
}


/* =Repeatable patterns
-------------------------------------------------------------- */

/* Small headers */
.archive-title,
.page-title,
.widget-title,
.entry-content th,
.comment-content th {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	text-transform: uppercase;
	color: #636363;
}

/* Shared Post Format styling */
article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}

/* Form fields, general styles first */
button,
input,
textarea {
	border: 1px solid #ccc;
	border-radius: 3px;
	font-family: inherit;
	padding: 6px;
	padding: 0.428571429rem;
}
button,
input {
    line-height: normal;
}
textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
}

/* Reset non-text input types */
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
	border: 0;
	border-radius: 0;
	padding: 0;
}

/* Buttons */
.menu-toggle,
input[type="submit"],
input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
li.bypostauthor cite span {
	padding: 6px 10px;
	padding: 0.428571429rem 0.714285714rem;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 1.428571429;
	font-weight: normal;
	color: #7c7c7c;
	background-color: #e6e6e6;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
	border: 1px solid #d2d2d2;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
}
.menu-toggle,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	cursor: pointer;
}
button[disabled],
input[disabled] {
    cursor: default;
}
.menu-toggle:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
	color: #5e5e5e;
	background-color: #ebebeb;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -ms-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -webkit-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -o-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: linear-gradient(top, #f9f9f9, #ebebeb);
}
.menu-toggle:active,
.menu-toggle.toggled-on,
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	color: #757575;
	background-color: #e1e1e1;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -o-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: linear-gradient(top, #ebebeb, #e1e1e1);
	box-shadow: inset 0 0 8px 2px #c6c6c6, 0 1px 0 0 #f4f4f4;
	border: none;
}
li.bypostauthor cite span {
	color: #fff;
	background-color: #21759b;
	background-image: none;
	border: 1px solid #1f6f93;
	border-radius: 2px;
	box-shadow: none;
	padding: 0;
}

/* Responsive images */
.entry-content img,
.comment-content img,
.widget img {
	max-width: 100%; /* Fluid images for posts, comments, and widgets */
}
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
	max-width: 100%;
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

/* Make sure videos and embeds fit their containers */
embed,
iframe,
object,
video {
	/*max-width: 100%;*/
}
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important; /* Override the Twitter embed fixed width */
}

/* Images */
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {
	/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #757575;
}
img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.entry-content dl.gallery-item {
	margin: 0;
}
.gallery-item a,
.gallery-caption {
	width: 90%;
}
.gallery-item a {
	display: block;
}
.gallery-caption a {
	display: inline;
}
.gallery-columns-1 .gallery-item a {
	max-width: 100%;
	width: auto;
}
.gallery .gallery-icon img {
	height: auto;
	max-width: 90%;
	padding: 5%;
}
.gallery-columns-1 .gallery-icon img {
	padding: 3%;
}

/* Navigation */
.site-content nav {
	clear: both;
	line-height: 2;
	overflow: hidden;
}
#nav-above {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous,
.previous-image {
	float: left;
	text-align: left;
	width: 50%;
}
.nav-next,
.next-image {
	float: right;
	text-align: right;
	width: 50%;
}
.nav-single + .comments-area,
#comment-nav-above {
	margin: 48px 0;
	margin: 3.428571429rem 0;
}

/* Author profiles */
.author .archive-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.author-info {
	border-top: 1px solid #ededed;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	overflow: hidden;
}
.author-description p {
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.author.archive .author-info {
	border-top: 0;
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
}
.author.archive .author-avatar {
	margin-top: 0;
}


/* =Basic structure
-------------------------------------------------------------- */

/* Body, links, basics */
html {
	font-size: 87.5%;
}
body {
	font-size: 14px;
	font-size: 1rem;
	font-family: Tahoma, Helvetica, Arial, sans-serif;
	text-rendering: optimizeLegibility;
	color: #444;
}
body.custom-font-enabled {
	font-family: Tahoma, "Open Sans", Helvetica, Arial, sans-serif;
}
a {
	outline: none;
	color: #21759b;
}
a:hover {
	color: #0f3647;
}

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}
.main-navigation .assistive-text:hover,
.main-navigation .assistive-text:active,
.main-navigation .assistive-text:focus {
	background: #fff;
	border: 2px solid #333;
	border-radius: 3px;
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 12px;
	padding: 12px;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 100000; /* Above WP toolbar */
}

/* Page structure */
.site {
	padding: 0 24px;
	padding: 0 1.714285714rem;
	background-color: #fff;
}
.site-content {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
}
.widget-area {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
}

/* Header */
.site-header {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
.site-header h1,
.site-header h2 {
	text-align: center;
}
.site-header h1 a,
.site-header h2 a {
	color: #515151;
	display: inline-block;
	text-decoration: none;
}
.site-header h1 a:hover,
.site-header h2 a:hover {
	color: #21759b;
}
.site-header h1 {
	font-size: 24px;
	font-size: 1.714285714rem;
	line-height: 1.285714286;
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.site-header h2 {
	font-weight: normal;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.header-image {
	margin-top: 24px;
	margin-top: 1.714285714rem;
}

/* Navigation Menu */
.main-navigation {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	text-align: center;
}
.main-navigation li {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.42857143;
}
.main-navigation a {
	color: #5e5e5e;
}
.main-navigation a:hover {
	color: #21759b;
}
.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
	display: none;
}
.main-navigation ul.nav-menu.toggled-on,
.menu-toggle {
	display: inline-block;
}

/* Banner */
section[role="banner"] {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
}

/* Sidebar */
.widget-area .widget {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	word-wrap: break-word;
}
.widget-area .widget h3 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .widget p,
.widget-area .widget li,
.widget-area .widget .textwidget {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget-area .widget p {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .textwidget ul {
	list-style: disc outside;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
.widget-area .textwidget li {
	margin-left: 36px;
	margin-left: 2.571428571rem;
}
.widget-area .widget a {
	color: #757575;
}
.widget-area .widget a:hover {
	color: #21759b;
}
.widget-area #s {
	width: 53.66666666666%; /* define a width to avoid dropping a wider submit button */
}

/* Footer */
footer[role="contentinfo"] {
	clear: both;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	max-width: 960px;
	max-width: 68.571428571rem;
	margin-top: 24px;
	margin-top: 1.714285714rem;
	margin-left: auto;
	margin-right: auto;
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
footer[role="contentinfo"] a {
	color: #686868;
}
footer[role="contentinfo"] a:hover {
	color: #21759b;
}


/* =Main content and comment content
-------------------------------------------------------------- */

.entry-meta {
	clear: both;
}
.entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header img.wp-post-image {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header .entry-title {
	font-size: 20px;
	font-size: 1.428571429rem;
	line-height: 1.2;
	font-weight: normal;
}
.entry-header .entry-title a {
	text-decoration: none;
}
.entry-header .entry-format {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-weight: normal;
}
.entry-header .comments-link {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.comments-link a,
.entry-meta a {
	color: #757575;
}
.comments-link a:hover,
.entry-meta a:hover {
	color: #21759b;
}
article.sticky .featured-post {
	border-top: 4px double #ededed;
	border-bottom: 4px double #ededed;
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 3.692307692;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	text-align: center;
}
.entry-content,
.entry-summary,
.mu_register {
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1,
.entry-content h2,
.comment-content h2,
.entry-content h3,
.comment-content h3,
.entry-content h4,
.comment-content h4,
.entry-content h5,
.comment-content h5,
.entry-content h6,
.comment-content h6 {
	margin: 24px 0;
	margin: 1.714285714rem 0;
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1 {
	font-size: 21px;
	font-size: 1.5rem;
	line-height: 1.5;
}
.entry-content h2,
.comment-content h2,
.mu_register h2 {
	font-size: 18px;
	font-size: 1.285714286rem;
	line-height: 1.6;
}
.entry-content h3,
.comment-content h3 {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.846153846;
}
.entry-content h4,
.comment-content h4 {
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.846153846;
}
.entry-content h5,
.comment-content h5 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.entry-content h6,
.comment-content h6 {
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.846153846;
}
.entry-content p,
.entry-summary p,
.comment-content p,
.mu_register p {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
}
.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
.mu_register ul {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
}
.entry-content ul ul,
.comment-content ul ul,
.entry-content ol ol,
.comment-content ol ol,
.entry-content ul ol,
.comment-content ul ol,
.entry-content ol ul,
.comment-content ol ul {
	margin-bottom: 0;
}
.entry-content ul,
.comment-content ul,
.mu_register ul {
	list-style: disc outside;
}
.entry-content ol,
.comment-content ol {
	list-style: decimal outside;
}
.entry-content li,
.comment-content li,
.mu_register li {
	margin: 0 0 0 36px;
	margin: 0 0 0 2.571428571rem;
}
.entry-content blockquote,
.comment-content blockquote {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	padding: 24px;
	padding: 1.714285714rem;
	font-style: italic;
}
.entry-content blockquote p:last-child,
.comment-content blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content code,
.comment-content code {
	font-family: Tahoma, Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
}
.entry-content pre,
.comment-content pre {
	border: 1px solid #ededed;
	color: #666;
	font-family: Tahoma, Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	overflow: auto;
	padding: 24px;
	padding: 1.714285714rem;
}
.entry-content pre code,
.comment-content pre code {
	display: block;
}
.entry-content abbr,
.comment-content abbr,
.entry-content dfn,
.comment-content dfn,
.entry-content acronym,
.comment-content acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
.entry-content address,
.comment-content address {
	display: block;
	line-height: 1.714285714;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
img.alignleft {
	margin: 12px 24px 12px 0;
	margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
}
img.alignright {
	margin: 12px 0 12px 24px;
	margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}
img.aligncenter {
	margin-top: 12px;
	margin-top: 0.857142857rem;
	margin-bottom: 12px;
	margin-bottom: 0.857142857rem;
}
.entry-content embed,
.entry-content iframe,
.entry-content object,
.entry-content video {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content dl,
.comment-content dl {
	margin: 0 24px;
	margin: 0 1.714285714rem;
}
.entry-content dt,
.comment-content dt {
	font-weight: bold;
	line-height: 1.714285714;
}
.entry-content dd,
.comment-content dd {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content table,
.comment-content table {
	border-bottom: 1px solid #ededed;
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	width: 100%;
}
.entry-content table caption,
.comment-content table caption {
	font-size: 16px;
	font-size: 1.142857143rem;
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.entry-content td,
.comment-content td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 0;
}
.site-content article {
	border-bottom: 4px double #ededed;
	margin-bottom: 72px;
	margin-bottom: 5.142857143rem;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}
.page-links {
	clear: both;
	line-height: 1.714285714;
}
footer.entry-meta {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.single-author .entry-meta .by-author {
	display: none;
}
.mu_register h2 {
	color: #757575;
	font-weight: normal;
}


/* =Archives
-------------------------------------------------------------- */

.archive-header,
.page-header {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	padding-bottom: 22px;
	padding-bottom: 1.571428571rem;
	border-bottom: 1px solid #ededed;
}
.archive-meta {
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin-top: 22px;
	margin-top: 1.571428571rem;
}


/* =Single image attachment view
-------------------------------------------------------------- */

.article.attachment {
	overflow: hidden;
}
.image-attachment div.attachment {
	text-align: center;
}
.image-attachment div.attachment p {
	text-align: center;
}
.image-attachment div.attachment img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}
.image-attachment .entry-caption {
	margin-top: 8px;
	margin-top: 0.571428571rem;
}


/* =Aside post format
-------------------------------------------------------------- */

article.format-aside h1 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
article.format-aside h1 a {
	text-decoration: none;
	color: #4d525a;
}
article.format-aside h1 a:hover {
	color: #2e3542;
}
article.format-aside .aside {
	padding: 24px 24px 0;
	padding: 1.714285714rem;
	background: #d2e0f9;
	border-left: 22px solid #a8bfe8;
}
article.format-aside p {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #4a5466;
}
article.format-aside blockquote:last-child,
article.format-aside p:last-child {
	margin-bottom: 0;
}


/* =Post formats
-------------------------------------------------------------- */

/* Image posts */
article.format-image footer h1 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	font-weight: normal;
}
article.format-image footer h2 {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}
article.format-image footer a h2 {
	font-weight: normal;
}

/* Link posts */
article.format-link header {
	padding: 0 10px;
	padding: 0 0.714285714rem;
	float: right;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	color: #848484;
	background-color: #ebebeb;
	border-radius: 3px;
}
article.format-link .entry-content {
	max-width: 80%;
	float: left;
}
article.format-link .entry-content a {
	font-size: 22px;
	font-size: 1.571428571rem;
	line-height: 1.090909091;
	text-decoration: none;
}

/* Quote posts */
article.format-quote .entry-content p {
	margin: 0;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
}
article.format-quote .entry-content blockquote {
	display: block;
	padding: 24px 24px 0;
	padding: 1.714285714rem 1.714285714rem 0;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.6;
	font-style: normal;
	color: #6a6a6a;
	background: #efefef;
}

/* Status posts */
.format-status .entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.format-status .entry-header header {
	display: inline-block;
}
.format-status .entry-header h1 {
	font-size: 15px;
	font-size: 1.071428571rem;
	font-weight: normal;
	line-height: 1.6;
	margin: 0;
}
.format-status .entry-header h2 {
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	line-height: 2;
	margin: 0;
}
.format-status .entry-header header a {
	color: #757575;
}
.format-status .entry-header header a:hover {
	color: #21759b;
}
.format-status .entry-header img {
	float: left;
	margin-right: 21px;
	margin-right: 1.5rem;
}


/* =Comments
-------------------------------------------------------------- */

.comments-title {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
	font-weight: normal;
}
.comments-area article {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.comments-area article header {
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
	overflow: hidden;
	position: relative;
}
.comments-area article header img {
	float: left;
	padding: 0;
	line-height: 0;
}
.comments-area article header cite,
.comments-area article header time {
	display: block;
	margin-left: 85px;
	margin-left: 6.071428571rem;
}
.comments-area article header cite {
	font-style: normal;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.42857143;
}
.comments-area article header time {
	line-height: 1.714285714;
	text-decoration: none;
	font-size: 12px;
	font-size: 0.857142857rem;
	color: #5e5e5e;
}
.comments-area article header a {
	text-decoration: none;
	color: #5e5e5e;
}
.comments-area article header a:hover {
	color: #21759b;
}
.comments-area article header cite a {
	color: #444;
}
.comments-area article header cite a:hover {
	text-decoration: underline;
}
.comments-area article header h4 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 6px 12px;
	padding: 0.428571429rem 0.857142857rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	color: #fff;
	background-color: #0088d0;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #009cee, #0088d0);
	background-image: -ms-linear-gradient(top, #009cee, #0088d0);
	background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
	background-image: -o-linear-gradient(top, #009cee, #0088d0);
	background-image: linear-gradient(top, #009cee, #0088d0);
	border-radius: 3px;
	border: 1px solid #007cbd;
}
.comments-area li.bypostauthor cite span {
	position: absolute;
	margin-left: 5px;
	margin-left: 0.357142857rem;
	padding: 2px 5px;
	padding: 0.142857143rem 0.357142857rem;
	font-size: 10px;
	font-size: 0.714285714rem;
}
a.comment-reply-link,
a.comment-edit-link {
	color: #686868;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
a.comment-reply-link:hover,
a.comment-edit-link:hover {
	color: #21759b;
}
.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

/* Comment form */
#respond {
	margin-top: 48px;
	margin-top: 3.428571429rem;
}
#respond h3#reply-title {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
}
#respond h3#reply-title #cancel-comment-reply-link {
	margin-left: 10px;
	margin-left: 0.714285714rem;
	font-weight: normal;
	font-size: 12px;
	font-size: 0.857142857rem;
}
#respond form {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
#respond form p {
	margin: 11px 0;
	margin: 0.785714286rem 0;
}
#respond form p.logged-in-as {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
#respond form label {
	display: block;
	line-height: 1.714285714;
}
#respond form input[type="text"],
#respond form textarea {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	padding: 10px;
	padding: 0.714285714rem;
	width: 100%;
}
#respond form p.form-allowed-tags {
	margin: 0;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #5e5e5e;
}
.required {
	color: red;
}


/* =Front page template
-------------------------------------------------------------- */

.entry-page-image {
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.template-front-page .site-content article {
	border: 0;
	margin-bottom: 0;
}
.template-front-page .widget-area {
	clear: both;
	float: none;
	width: auto;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	border-top: 1px solid #ededed;
}
.template-front-page .widget-area .widget li {
	margin: 8px 0 0;
	margin: 0.571428571rem 0 0;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.714285714;
	list-style-type: square;
	list-style-position: inside;
}
.template-front-page .widget-area .widget li a {
	color: #757575;
}
.template-front-page .widget-area .widget li a:hover {
	color: #21759b;
}
.template-front-page .widget-area .widget_text img {
	float: left;
	margin: 8px 24px 8px 0;
	margin: 0.571428571rem 1.714285714rem 0.571428571rem 0;
}


/* =Widgets
-------------------------------------------------------------- */

.widget-area .widget ul ul {
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
.widget_rss li {
	margin: 12px 0;
	margin: 0.857142857rem 0;
}
.widget_recent_entries .post-date,
.widget_rss .rss-date {
	color: #aaa;
	font-size: 11px;
	font-size: 0.785714286rem;
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
#wp-calendar {
	margin: 0;
	width: 100%;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #686868;
}
#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
	text-align: left;
}
#wp-calendar #next {
	padding-right: 24px;
	padding-right: 1.714285714rem;
	text-align: right;
}
.widget_search label {
	display: block;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget_twitter li {
	list-style-type: none;
}
.widget_twitter .timesince {
	display: block;
	text-align: right;
}


/* =Plugins
----------------------------------------------- */

img#wpstats {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.714285714rem;
}


/* =Media queries
-------------------------------------------------------------- */

/* Minimum width of 600 pixels. */
@media screen and (min-width: 600px) {
	.author-avatar {
		float: left;
		margin-top: 8px;
		margin-top: 0.571428571rem;
	}
	.author-description {
		float: right;
		width: 80%;
	}
	.site {
		margin: 0 auto;
		max-width: 960px;
		max-width: 68.571428571rem;
		overflow: hidden;
	}
	.site-content {
		float: left;
		width: 65.104166667%;
	}
	body.template-front-page .site-content,
	body.single-attachment .site-content,
	body.full-width .site-content {
		width: 100%;
	}
	.widget-area {
		float: right;
		width: 26.041666667%;
	}
	.site-header h1,
	.site-header h2 {
		text-align: left;
	}
	.site-header h1 {
		font-size: 26px;
		font-size: 1.857142857rem;
		line-height: 1.846153846;
		margin-bottom: 0;
	}
	.main-navigation ul.nav-menu,
	.main-navigation div.nav-menu > ul {
		border-bottom: 1px solid #ededed;
		border-top: 1px solid #ededed;
		display: inline-block !important;
		text-align: left;
		width: 100%;
	}
	.main-navigation ul {
		margin: 0;
		text-indent: 0;
	}
	.main-navigation li a,
	.main-navigation li {
		display: inline-block;
		text-decoration: none;
	}
	.main-navigation li a {
		border-bottom: 0;
		color: #6a6a6a;
		line-height: 3.692307692;
		text-transform: uppercase;
		white-space: nowrap;
	}
	.main-navigation li a:hover {
		color: #000;
	}
	.main-navigation li {
		margin: 0 40px 0 0;
		margin: 0 2.857142857rem 0 0;
		position: relative;
	}
	.main-navigation li ul {
		display: none;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 100%;
		z-index: 1;
	}
	.main-navigation li ul ul {
		top: 0;
		left: 100%;
	}
	.main-navigation ul li:hover > ul {
		border-left: 0;
		display: block;
	}
	.main-navigation li ul li a {
		background: #efefef;
		border-bottom: 1px solid #ededed;
		display: block;
		font-size: 11px;
		font-size: 0.785714286rem;
		line-height: 2.181818182;
		padding: 8px 10px;
		padding: 0.571428571rem 0.714285714rem;
		width: 180px;
		width: 12.85714286rem;
		white-space: normal;
	}
	.main-navigation li ul li a:hover {
		background: #e3e3e3;
		color: #09f;
	}
	.main-navigation .current-menu-item > a,
	.main-navigation .current-menu-ancestor > a,
	.main-navigation .current_page_item > a,
	.main-navigation .current_page_ancestor > a {
		color: #fff;
		font-weight: bold;
	}
	.menu-toggle {
		display: none;
	}
	.entry-header .entry-title {
		font-size: 22px;
		font-size: 1.571428571rem;
	}
	#respond form input[type="text"] {
		width: 46.333333333%;
	}
	#respond form textarea.blog-textarea {
		width: 79.666666667%;
	}
	.template-front-page .site-content,
	.template-front-page article {
		overflow: hidden;
	}
	.template-front-page.has-post-thumbnail article {
		float: left;
		width: 47.916666667%;
	}
	.entry-page-image {
		float: right;
		margin-bottom: 0;
		width: 47.916666667%;
	}
	.template-front-page .widget-area .widget,
	.template-front-page.two-sidebars .widget-area .front-widgets {
		float: left;
		width: 51.875%;
		margin-bottom: 24px;
		margin-bottom: 1.714285714rem;
	}
	.template-front-page .widget-area .widget:nth-child(odd) {
		clear: right;
	}
	.template-front-page .widget-area .widget:nth-child(even),
	.template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
		float: right;
		width: 39.0625%;
		margin: 0 0 24px;
		margin: 0 0 1.714285714rem;
	}
	.template-front-page.two-sidebars .widget,
	.template-front-page.two-sidebars .widget:nth-child(even) {
		float: none;
		width: auto;
	}
	.commentlist .children {
		margin-left: 48px;
		margin-left: 3.428571429rem;
	}
}
/* Minimum width of 960 pixels. */
@media screen and (min-width: 960px) {
	body {
		background-color: #e6e6e6;
	}
	body .site {
		padding: 0 40px;
		padding: 0 2.857142857rem;
		margin-top: 48px;
		margin-top: 3.428571429rem;
		margin-bottom: 48px;
		margin-bottom: 3.428571429rem;
		box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
	}
	body.custom-background-empty {
		background-color: #fff;
	}
	body.custom-background-empty .site,
	body.custom-background-white .site {
		padding: 0;
		margin-top: 0;
		margin-bottom: 0;
		box-shadow: none;
	}
}

/* =Print
----------------------------------------------- */

@media print {
	body {
		background: none !important;
		color: #000;
		font-size: 10pt;
	}
	footer a[rel=bookmark]:link:after,
	footer a[rel=bookmark]:visited:after {
		content: " [" attr(href) "] "; /* Show URLs */
	}
	a {
		text-decoration: none;
	}
	.entry-content img,
	.comment-content img,
	.author-avatar img,
	img.wp-post-image {
		border-radius: 0;
		box-shadow: none;
	}
	.site {
		clear: both !important;
		display: block !important;
		float: none !important;
		max-width: 100%;
		position: relative !important;
	}
	.site-header {
		margin-bottom: 72px;
		margin-bottom: 5.142857143rem;
		text-align: left;
	}
	.site-header h1 {
		font-size: 21pt;
		line-height: 1;
		text-align: left;
	}
	.site-header h2 {
		color: #000;
		font-size: 10pt;
		text-align: left;
	}
	.site-header h1 a,
	.site-header h2 a {
		color: #000;
	}
	.author-avatar,
	#colophon,
	#respond,
	.commentlist .comment-edit-link,
	.commentlist .reply,
	.entry-header .comments-link,
	.entry-meta .edit-link a,
	.page-link,
	.site-content nav,
	.widget-area,
	img.header-image,
	.main-navigation {
		display: none;
	}
	.wrapper {
		border-top: none;
		box-shadow: none;
	}
	.site-content {
		margin: 0;
		width: auto;
	}
	.singular .entry-header .entry-meta {
		position: static;
	}
	.singular .site-content,
	.singular .entry-header,
	.singular .entry-content,
	.singular footer.entry-meta,
	.singular .comments-title {
		margin: 0;
		width: 100%;
	}
	.entry-header .entry-title,
	.entry-title,
	.singular .entry-title {
		font-size: 21pt;
	}
	footer.entry-meta,
	footer.entry-meta a {
		color: #444;
		font-size: 10pt;
	}
	.author-description {
		float: none;
		width: auto;
	}

	/* Comments */
	.commentlist > li.comment {
		background: none;
		position: relative;
		width: auto;
	}
	.commentlist .avatar {
		height: 39px;
		left: 2.2em;
		top: 2.2em;
		width: 39px;
	}
	.comments-area article header cite,
	.comments-area article header time {
		margin-left: 50px;
		margin-left: 3.57142857rem;
	}
}
/* OnRPG Specific */
html, body {
	background-color: #000000;
	margin-top: 0px !important;
}
body .site {
	box-shadow: none;
}
body {
	margin: 0 auto !important;
	width: 1002px;
	color: white;
}
a {
	color: #0099ff;
}
footer {
	background-color: #323131;
	margin: 0px !important;
	padding: 20px !important;
}
.site-content article {
	background-color: #09161F;
}
.site-header {
	margin-bottom: 10px !important;
	padding-bottom: 0px !important;
}
div#page {
	/*
	width: 982px;
	max-width: 982px;
        margin: 0px 10px 0px 10px !important;
        padding: 0px !important;
	*/
	width: 1002px;
	max-width: 1002px;
	margin: 0px;
	padding: 0px 0px;
	background-color: black;
}
div#primary {
	margin-top: 0px !important;
}
div#secondary {
	width: 304px;
}
.site-content {
	width: 668px !important;
}
.entry-header {
	margin-bottom: 10px !important;
	min-height: 60px;
}
article.compact .entry-header  {
	min-height: auto;
}
article.compact div.date-info {
	margin-right: 20px;
}
article.compact div.post-ratings {
	float: left;
}
article.compact div.entry-content {
	margin-right: 140px;
}
article.compact div.post-info {
	padding-top: 0px;
}
.entry-header .entry-title {
	padding: 0px;
	font: Tahoma;
	font-weight: bold;
	font-size: 13px;
	line-height: 26px;
	color: #ffffff;
	background-color: #004361;
	box-shadow: 0px 0px 10px black;
	padding-left: 36px;
	background: url('/img/onrpg/BlueHeaderBarRunner_1x30.png') repeat-x 8px center #353637;
	margin-bottom: 3px;
	height: 30px;
	overflow: hidden;
	line-height: 30px;
}
.entry-header .entry-title a {
	color: white;
}
article.category-videos {
	padding-bottom: 10px;
}
.category-videos .video-compact p {
	margin-bottom: 0px;
}
.entry-content {
	padding: 0px 10px;
	font-size: 12px;
}
div#game-info {
	font-size: 14px;
	float: right;
	margin: 0px 20px 15px;
	width : 232px;
}
div#game-info ul {
	margin: 0px !important;
	list-style: none;
}
div#game-info ul li {
	clear: both;
	width: 232px;
	line-height: 13px !important;
	margin-left: 0px;
	margin-bottom: 4px;
}
div#game-info ul li img{
	vertical-align: middle;
}
div#game-info ul li.game-info-spacer {
	padding-top: 10px;
}
div#game-info li div.meta-label {
	float: left;
	width: 100px;
	color: #0099FF;
	line-height: 16px;
	clear: both;
	font-size: 14px;
}
div#game-info li div.meta-title {
	float: left;
	width: 100%;
	color: #0099FF;
	line-height: 18px;
	clear: both;
	font-size: 15px;
	text-align: center;
}
div#game-info li div.meta-info {
	width: 132px;
	line-height: 16px;
	margin: 0px;
	float: right;
	margin: 0px;
}
dt.game-info-spacer {
	min-height: 24px;
}
article {
	position: relative;
}
.site-content article {
	margin-bottom: 10px;
	border: solid 1px #333;
	border-bottom: solid 10px #333;
	border: none !important;
}
div.onrpg-widget {
	font-size: 12px;
}
aside.onrpg-widget, div.onrpg-widget {
	margin-bottom: 10px;
}
.onrpg-widget.featured-game-video,
.onrpg-widget.screenshot,
.onrpg-widget.game-videos,
.onrpg-widget.game-articles {
}
.featured-game-video div#featured-video img#video-screenshot {
	width: 640px;
	height: 360px;
}
.featured-game-video div#featured-video a#featured-video-playbtn {
	width: 640px;
	height: 360px;
	left: 15px;
}
aside.onrpg-widget ul, div.onrpg-widget ul {
	width: 100%;
}
aside.onrpg-widget ul li, div.onrpg-widget ul li {
	margin-bottom: 1px;
	background-color: #151515;
}
aside.onrpg-widget ul li.last, div.onrpg-widget ul li.last {
	margin-bottom: 0px;
}
aside.onrpg-widget h3, div.onrpg-widget h3 {
	background: url('/img/onrpg/GrayHeaderBarRunner_1x30.png') repeat-x 8px center #353637;
	padding: 0 0 0 36px;
	font: 12px Tahoma;
	color: #ffffff;
	font-weight: bold;
	height: 30px;
	overflow: hidden;
	position: relative;
	line-height: 30px;
	box-shadow: 0px 0px 10px black;
	margin-bottom: 3px;
}
aside.onrpg-widget.blue-runner h3, div.onrpg-widget.blue-runner h3 {
        background: url('/img/onrpg/BlueHeaderBarRunner_1x30.png') repeat-x 8px center #353637;
	margin-bottom: 3px;
}
aside.onrpg-widget.teal-runner h3, div.onrpg-widget.teal-runner h3 {
        background: url('/img/onrpg/TealHeaderBarRunner_1x30.png') repeat-x 8px center #353637;
	margin-bottom: 3px;
}
aside.onrpg-widget h3 span, div.onrpg-widget h3 span{
}
div.onrpg-widget h3 {
	line-height: 30px;
	background-color: #004361;
	position: relative;
	box-shadow: 0px 0px 10px black;
}
/* onrpg home page articles widget */
.onrpg-widget.homepage-newest-articles {
}
.onrpg-widget.homepage-newest-articles li {
	position: relative;
	padding: 1px;
	height: 36px;
	overflow: hidden;
	font-size: 11px;
	clear: both;
} 
.onrpg-widget.homepage-newest-articles li .article-meta {
	float: left;
	width: 100px;
}
.onrpg-widget.homepage-newest-articles li .article-info {
	float: left;
	width: 560px;
	padding-left: 4px;
	color: gray;
	line-height: 18px;
}
.onrpg-widget.homepage-newest-articles li .article-info a {
	color: white;
}
.onrpg-widget.homepage-newest-articles li h4 {
	margin-bottom: 0px;
}
.onrpg-widget.homepage-newest-articles li img.thumbnail {
	position: absolute;
	top: 2px;
	left: 2px;
	height: 60px;
	width: 80px;
}
.onrpg-widget.homepage-newest-articles li .post-ratings {
	float: none;
}
.onrpg-widget.homepage-newest-articles li .post-ratings img {
	height: 10px;
	width: 10px;
}
.onrpg-widget.homepage-newest-articles li .article-date {
	color: white;
	font-weight: bold;
	font-size: 11px;
	height: 18px;
	line-height: 18px;
	padding-left: 5px;
}
.onrpg-widget.homepage-newest-articles li .article-type {
	font-weight: bold;
	color: black;
	font-size: 10px;	
	height: 18px;
	line-height: 18px;
	padding-left: 5px;
}
#article-filter-form {
	background: url(/img/onrpg/topaccent_filterby_668x3.jpg) no-repeat 0px 0px #151515;
	padding-top: 3px;
	max-height: 33px;
}
#article-filter-form ul li {
	float: left;
	line-height: 30px;
	font-size: 12px;
	background-color: transparent;
	text-transform: uppercase;
}
#article-filter-form ul li a {
	text-decoration: none;
	text-align: center;
	display: block;
	font-weight: bold;
	color: #0079A8;
	margin: 0px 15px;
	outline: 0;
}
#article-filter-form ul li a:hover {
	color: #FFF;
}
li#filterby-label {
	padding-left: 10px;
	font-weight: bold;
	width: 120px;
}
.inline-article-type {
	font-weight: bold;
	float: left;
	margin-right: 5px;
}
.onrpg-widget.homepage-newest-articles li .article-date.feature {
	background-color: #AF1813;
}
.inline-article-type.feature {
	color: #AF1813;
}
.onrpg-widget.homepage-newest-articles li .article-type.feature, div.thumbnail span.article-type.feature {
	background-color: #D81108;
}
.onrpg-widget.homepage-newest-articles li .article-date.interview {
	background-color: #BDC663;
}
.inline-article-type.interview {
	color: #BDC663;
}
.onrpg-widget.homepage-newest-articles li .article-type.interview, div.thumbnail span.article-type.interview {
	background-color: #EAE96A;
}
.onrpg-widget.homepage-newest-articles li .article-date.news {
	background-color: #A2C3D1;
}
.inline-article-type.news, .inline-article-type.article {
	color: #A2C3D1;
}
.onrpg-widget.homepage-newest-articles li .article-type.news, div.thumbnail span.article-type.news {
	background-color: #C8E5F2;
}
.onrpg-widget.homepage-newest-articles li .article-type.article, div.thumbnail span.article-type.article {
	background-color: #C8E5F2;
}
.onrpg-widget.homepage-newest-articles li .article-date.review {
	background-color: #0192D8;
}
.inline-article-type.review {
	color:  #0192D8;
}
.onrpg-widget.homepage-newest-articles li .article-type.review, div.thumbnail span.article-type.review {
	background-color: #00A8FC;
}
.onrpg-widget.homepage-newest-articles li .article-type.cosplay, div.thumbnail span.article-type.cosplay {
	background-color: #8F5AFA;
	color: #FFFFFF;
}
.inline-article-type.cosplay {
	color: #8F5AFA;
}
.onrpg-widget.homepage-newest-articles li .article-date.cosplay {
	background-color: #6C45BA;
}
.onrpg-widget.homepage-newest-articles li .article-date {
	background-color: #A2C3D1;
}
.onrpg-widget.homepage-newest-articles li .article-type,
div.thumbnail span.article-type {
	background-color: #C8E5F2;
}
div.thumbnail span.article-type {
	display: block;
	width: 120px;
	text-align: center;
	color: black;
	font-weight: bold;
	font-size: 10px;
	line-height: 16px;
}
.date-info {
	display: inline;
}
.post-info {
	color: #E1E1E1;
	font-size: 12px;
	padding: 10px 10px 0px 10px;
	height: 10px;
}
.post-info .date-info {
	float: left;
}
.post-ratings {
	vertical-align: top;
	font-size: 12px;
	float: right;
	width: auto;
}
.post-ratings img {
	height: 20px;
	margin-top: -4px;
	line-height: 16px;
	vertical-align: middle;
}
/* forum sidebar widget */ 
.onrpg-widget.forum-widget ul li {
	padding: 2px 10px;
	font-size: 11px;
	height: 38px;
	overflow: hidden;
}
.onrpg-widget.forum-widget ul li h4 {
	white-space: nowrap;
	text-decoration: none;
	overflow: hidden;
	width: 250px;
	line-height: 14px;
	display: block;
	height: 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	-ms-text-overflow: ellipsis;
	color: #09f;
}
/* related games widget */
.related-games-widget ul {
	padding: 0px 0px;
	padding-bottom: 0px;
}
.related-games-widget li {
	padding: 2px 2px 2px 85px;
	position: relative;
	font-size: 11px;
	min-height: 60px;
}
.related-games-widget li.last {
	border: none;
	margin-bottom: 0px;
}
.related-games-widget img.thumbnail {
	position: absolute;
	left: 2px;
	height: 60px;
	width: 80px;
}
.related-games-widget h4 {
	color: #0099FF;
	font-weight: bold;
	margin-bottom: 2px;
}
.related-games-widget h4 a {
	text-decoration: none;
}
.related-games-widget .related-game-info {
	height: 10px;
	margin-bottom: 2px;
	font-size: 10px;
	color: gray;
}
.related-games-widget .related-game-views {
	float: left;
}
.related-games-widget .post-ratings {
	float: right;
}
.related-games-widget .post-ratings img {
	height: 10px;
}
.related-games-widget p {
	color: white;
}
.onrpg-widget.screenshot li {
	float:left;
}
header {
	margin-bottom: 10px !important;
}
header.entry-header .profile-img {
	width: 668px;
	max-height: 227px;
}
header#masthead {
	padding-top: 0px !important;
	overflow: hidden;
	/*
	width: 982px;
	*/
	width: 1002px;
}
div#main.wrapper {
	padding: 0px 10px;
}
#onrpg-header {
	height: 150px !important;
	z-index: 4;
}
#onrpg-logo {
	position: absolute;
	left: 6px;
	top: 62px;
	z-index: 9999;
}
div#header-ad-container {
        position: absolute;
        top: 0px;
        z-index: 3;
}
iframe#header-ad {
	position: absolute;
	top: 0px;
	z-index: 3;
}
.main-navigation {
	margin: 0px !important;
}
.nav-menu {
	background-color: #476C89;
	height: 33px;
}
.nav-menu ul, #menu-onrpg-menu {
	border-top: none !important;
	border-bottom: none !important;
	box-shadow: 0px 0px 10px black;
	background: url(/img/onrpg/MenuBarRunner_1x34.png);
}
.nav-menu ul li, #menu-onrpg-menu li {
	margin: 0px !important;
}
.current-menu-item {	
	/* background-color: black !important; */
}
.main-navigation li a {
	color: white;
	line-height: 33px;
	font-weight: bold;
	padding: 0px 12px;
	outline: 0;
}
#respond {
	margin-top: 0px !important;
}
#commentform {
	padding: 0px 10px;
}
.ad-728-90 {
	text-align: center;
	margin-bottom: 10px;
}
div.breadcrumbs {
	background-color: #000;
	padding-top: 10px;
	padding-left: 15px;
	font-size: 12px;
	height: 14px;
}
div.breadcrumbs a {
	color: #87CEEB !important; 
	font-weight: bold;
	text-decoration: none;
}
.widget-area {
        padding: 0px !important;
        margin: 0px !important;
}
.template-front-page .widget-area {
	clear: right;
	float: right;
	border: none;
}
.video-compact {
	margin-left: 130px;
	min-height: 95px;
	font-size: 13px;
}
.entry-content .thumbnail{
	position: absolute;
	left: 10px;
	max-height: 150px;
	overflow: hidden;
}
.entry-content .thumbnail img {
	width: 120px;
	max-width: 120px;
	height: 90px;
	max-height: 90px;
	position: relative;
	border-radius: none;
}
.entry-content .thumbnail-label {
	position: absolute;
	right: 0px;
	bottom: 10px;
	background-color: rgba(0, 0, 0, 0.8);
	line-height: 14px;
	font-size: 12px;
	padding: 0px 5px;
	vertical-align: bottom;
}
#site-navigation {
	position: relative;
}
#menu-onrpg-menu li.menu-item-search {
	position: absolute;
	right: 10px;
}
#menu-onrpg-menu li.menu-item-search {
	height: 33px;
}
.site-content article {
	padding-bottom: 10px !important;
}
article .buttons {
	position: absolute;
	right: 10px;
	bottom: 10px;
}
article .buttons a{
	text-decoration: none;
	color: white;
	font-weight: bold;
	font-size: 12px;
}
.menu-search-form input {
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -13px;
	background: url(/img/search.png) no-repeat 5px 4px #fff;
	-moz-border-radius: 2px;
	border-radius: 2px;
	font-size: 14px;
	height: 18px;
	line-height: 1.2em;
	padding: 4px 10px 4px 28px;
	color: #a2a2a2;
	border: none;
	box-shadow: inset 0px 0px 5px #476C89;
	margin-right: -16px;
	width: 143px;
	-webkit-transition:width 0.5s; /* For Safari 3.1 to 6.0 */
	transition:width 0.5s;
}
.menu-search-form:hover input {
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -13px;
	background: url(/img/search.png) no-repeat 5px 4px #fff;
	-moz-border-radius: 2px;
	border-radius: 2px;
	font-size: 14px;
	height: 18px;
	line-height: 1.2em;
	padding: 4px 10px 4px 28px;
	color: #a2a2a2;
	border: none;
	box-shadow: inset 0px 0px 5px #476C89;
	margin-right: -16px;
	width: 230px;
}
div.onrpg-widget #onrpg-comment {
	background-color: #151515;
}
div #disqus_thread {
	padding: 10px 20px; 
	background-color: #151515;
}
div .navigation {
	padding: 5px 0px;
	margin: 10px 0px;
	background-color: #151515;
}
div .navigation nav-previous, div .navigation nav-next {
}
.navigation a {
	text-transform: uppercase;
	color: white !important;
	text-decoration: none;
	font-weight: bold;
	padding: 0px 10px;
	line-height: 20px;
	font-size: 12px;
}
.clear {
	clear: both;
}
div#game-list div.wp-pagenavi {
	border-top: 1px solid black;
        padding-bottom: 3px;
        background: url(/img/onrpg/bottomaccent_prevnext_668x3.jpg) no-repeat #151515;
        background-position: left bottom;
}
div#game-list div.top {
	font-weight: bold;
}
div#game-list table thead tr th{
	margin: 0px;
	padding: 0px;
	padding-left: 6px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 11px;
}
div#game-list table tr td {
	padding-left: 10px;
}
div#game-list {
	padding: 0px;
	background-color: #151515;
}
div#game-list table {
	width: 100%;
}
div#game-list .top {
	text-align: center;
	padding: 7px 0;
	width: 668px;
}
div#game-list a {
	text-decoration: none;
}
div#game-list th a {
}
div#game-list th a:hover {
	cursor: pointer;
	background-color: #353637 !important;
}
div#game-list a.sort-desc {
	background: url('/img/arrows/DescendingArrow_5x6.png') no-repeat center right #353637;
}
div#game-list a.sort-asc {
	background: url('/img/arrows/AscendingArrow_5x6.png') no-repeat center right #353637;
}
div#game-list a.sort-inactive {
	background: url('/img/arrows/NonSelectedArrows_5x8.png') no-repeat center right;
}
.wp-pagenavi a, .wp-pagenavi span {
	padding: 0px 5px;
	line-height: 20px;
	border: none !important;
	font-size: 12px;
}
.wp-pagenavi {
	text-align: center;
	line-height: 30px;
	font-weight: bold;a
        background: url(/img/onrpg/bottomaccent_prevnext_668x3.jpg) no-repeat #151515;
        background-position: left bottom;
        background: url(http://beta.onrpg.com/img/onrpg/bottomaccent_prevnext_668x3.jpg) no-repeat #151515;
        background-position: left bottom;
	margin-bottom: 10px;
	line-height: 26px; 
	padding: 0 0 6px;
}
tr.row0 {
	background-color: #09161F;
}
tr.row1 {
	background-color: #0C1E27;
}
#game-list tr td {
	padding: 5px;
}
#game-list tr td a {
	text-decoration: none;
}
#game-list thead tr {
	background: black;
}
#game-list thead tr th a,
#game-list thead tr th span {
        padding-left: 4px;
        padding-right: 18px;
	color: white !important;
        line-height: 30px;
	max-height: 30px;
	overflow:hidden;
        display: inline-block;
        zoom: 1;
        *display: inline;
}
td.game-genre {
	font-size: 12px;
}


/*offical site button*/
td.game-category {
	text-align: center;
}
td.game-category a {
	position: relative;
	top: -2px;
	background: url(/img/onrpg/OfficialSite_120x96.png) 0 0;
	background-size: 60px 48px;
	width: 60px;
	height: 16px;
	text-align: center;
	line-height: 14px;
	display: inline-block;
	color: #fff;
	text-transform: uppercase;
	font-size: 7px;
	text-decoration: none;
}
td.game-category a:hover {
	background: url(/img/onrpg/OfficialSite_120x96.png) 0 -16px;
	background-size: 60px 48px;
	cursor: pointer;
}


#game-screenshots {
	width: 660px;
	overflow: hidden;
	padding: 5px 4px 10px 4px;
	background-color: #151515;
}
#game-screenshots li {
	width: 100px;
	height: 75px;
	background-color: #151515;
	margin: 5px;
	overflow: hidden;
}
#game-screenshots li img {
	margin-left: -10px;
	height: 75px;
}
.onrpg-widget.game-videos .post-info,
.onrpg-widget.game-articles .post-info{
	padding-bottom: 10px;	
	padding-top: 5px;
}
.onrpg-widget .post-info {
	padding-left: 0px;
	padding-right: 5px;
}
.onrpg-widget .more-link {
	text-transform: uppercase;
	padding: 0px 10px;
	text-align: right;
	background-color: #151515;
	margin-top: 1px;
	clear: both;
}
.onrpg-widget .more-link a {
	text-decoration: none;
	color: white;
	font-weight: bold;
	font-size: 10px;
	line-height: 18px;
}
.onrpg-widget.game-videos ul, 
.onrpg-widget.game-articles ul {
	width: 668px;
}
.onrpg-widget.game-videos ul li, 
.onrpg-widget.game-articles ul li {
	position: relative;
	min-height: 75px;
	font-size: 12px;
	line-height: 16px;
	padding-bottom: 10px;
	margin-bottom: 1px;
	padding: 2px 2px 2px 110px;
}
.onrpg-widget.game-videos ul li img.thumbnail, 
.onrpg-widget.game-articles ul li img.thumbnail {
	width: 100px;
	height: 75px;
	position: absolute;
	left: 2px;
	top: 2px;
}
.onrpg-widget #featured-video {
	text-align: center;
	position: relative;
}
.onrpg-widget #featured-video a#featured-video-playbtn {
	position: absolute;
	top: 0px;
	left: 0px;
	height: 218px;
	width: 329px;
	background: url('/img/PlayButton_72x72.png') no-repeat center center transparent;
}
.onrpg-widget #featured-video img#video-screenshot {	
	width: 329px;
	height: 218px;
}
.onrpg-widget #featured-video #featured-video-label {
	padding: 20px 0px;
	background-color: #0A3947;
	width: 185px;
	margin: auto;
}
/* homepage latest videos */
.onrpg-widget.homepage-latest ul{
	list-style: none;
	display: block;
}
.onrpg-widget.homepage-latest ul li{
	width: 129px;
	overflow: hidden;
	font-size: 11px;
	display: inline;
	float: left;
	position: relative;
	background-color: #151515;
	margin-right: 1px;
	padding: 2px;
}
.onrpg-widget.homepage-latest ul li.last{
	margin-right: 0px;
	width: 128px;
}
.onrpg-widget.homepage-latest ul li img.thumbnail {
	width: 129px;
	height: 73px;
}
.onrpg-widget.homepage-latest ul li .video-meta {
	position: absolute;
	top: 59px;
	right: 0px;
	width: 40px;
	height: 16px;
	background: -moz-linear-gradient(top,  rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.75) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.75)), color-stop(100%,rgba(0,0,0,0.75))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0.75) 0%,rgba(0,0,0,0.75) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(0,0,0,0.75) 0%,rgba(0,0,0,0.75) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(0,0,0,0.75) 0%,rgba(0,0,0,0.75) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(0,0,0,0.75) 0%,rgba(0,0,0,0.75) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bf000000', endColorstr='#bf000000',GradientType=0 ); /* IE6-9 */
}
.onrpg-widget.homepage-latest ul li.last img.thumbnail {
	width: 128px;
}
.onrpg-widget.homepage-latest ul li .post-ratings {
	float: left;
	line-height: 16px;
}
.onrpg-widget.homepage-latest ul li .post-ratings img {
	height: 10px;
	width: 10px;
}
.onrpg-widget.homepage-latest ul li span.video-duration{
	color: white;
	padding: 0px 10px;
	position: absolute;
	right: 0px;
	top: 0px;
	line-height: 16px;
}
.onrpg-widget.homepage-latest ul li a{
	font-weight: bold;
	text-decoration: none;
}
 .onrpg-widget.homepage-latest ul li p{
	margin-top: 5px;
}
.onrpg-widget.homepage-latest ul li div.info{
	padding: 2px;
	height: 85px;
}
.onrpg-widget.homepage-latest ul li.last{
	
}
.no-content {
	padding: 20px;
	text-align: center;
	background-color: #151515;
}
.fancybox-lock .fancybox-overlay {
	overflow: hidden !important;
}
/* split widget */
aside.onrpg-widget.split-widget h3 {
	background-color: #012A3E;
        width: 116px;
        box-shadow: none;
	float: left;
	clear: right;
}
.split-widget h3.active {
	background-color: #023F5C !important;
	box-shadow: 0px 0px 10px black !important;
	z-index: 10000;
}
.split-widget ul {
	clear: both;
	display: none;
}
.split-widget ul.active {
	display: inline-block;
}
.split-widget h3:hover {
	background-color: #023F5C;
	box-shadow: 0px 0px 10px black !important;
	cursor: pointer;
	z-index: 10002;
}
/* onrpg homepage featured article wiget */
.onrpg-widget.home-featured-articles div {
	float: left;
	padding: 5px;
}
/* play now button */
header div#play-now-button {
	position: absolute;
	top: 216px;
	padding: 0px 6px;
	right: 8px;
}
header div#play-now-button a{
        background: url(/img/onrpg/PlayNow_120x96.png) 0px 0px;
        width: 120px;
        height: 32px;
        text-align: center;
        line-height: 28px;
        display: block;
        font-weight: bold;
        color: #ffffff;
        text-transform: uppercase;
        font-size: 11px;
        text-decoration: none;
}
header div#play-now-button a:hover
{
        background: url(/img/onrpg/PlayNow_120x96.png) 0px -32px;
        cursor: pointer;
}
header div#play-now-button a.inactive{
        background: url(/img/onrpg/PlayNow_120x96.png) 0px -64px;
        color: gray;
        cursor: default;
}
header div#play-now-button a:hover {
}
/*offical site button*/
header div#game-profile-links li a#homelink_officialsite{
	background: url(/img/onrpg/OfficialSite_120x96.png) 0px 0px;
        width: 120px;
        height: 32px;
        text-align: center;
        line-height: 28px;
        display: block;
        font-weight: bold;
        color: #ffffff;
        text-transform: uppercase;
        font-size: 11px;
        margin-top: 10px;
        text-decoration: none;
}
header div#game-profile-links li a#homelink_officialsite:hover {
        background: url(/img/onrpg/OfficialSite_120x96.png) 0px -32px;
        cursor: pointer;
}
header div#game-profile-links li a#homelink_officialsite.inactive {
        background: url(/img/onrpg/OfficialSite_120x96.png) 0px -64px;
        color: gray;
        cursor: default;
}
#game-info #homelink_officialsite {
	background: url(/img/onrpg/OfficialSite_120x96.png) 0px 0px;
	width: 120px;
	height: 32px;
	text-align: center;
	line-height: 28px;
	display: block;
	font-weight: bold;
	color: #ffffff;
	text-transform: uppercase;
	font-size: 11px;
	margin-top: 20px;
	text-decoration: none;
	margin-left: 60px;
}
#game-info #homelink_officialsite:hover {
        background: url(/img/onrpg/OfficialSite_120x96.png) 0px -32px;
        cursor: pointer;
}
.game-profile-cancelled {
	text-align: center;
	color: #FFF;
	background-color: #EA0000;
	margin: 8px 10% 0 10%;
	width: 80%;
	border-radius: 3px;
	padding: 3px 3px 4px 3px;
}
/* game profile links */
header {
	position: relative;
}
header div#game-profile-links {
}
header div#game-profile-links ul {
	width: 668px;
	height: 43px;
}
header div#game-profile-links li {
	float: left;
	padding: 0px 6px;
}
header div#game-profile-links li a,
a.onrpg-btn,
article .buttons a {
	background: url(/img/onrpg/ButtonTripleState_120x96.png) 0px 0px;
	width: 120px;
	height: 32px;
	text-align: center;
	line-height: 28px;
	display: block;
	font-weight: bold;
	color: #ffffff;
	text-transform: uppercase;
	font-size: 11px;
	margin-top: 10px;
	text-decoration: none;
}
header div#game-profile-links li a:hover,
a.onrpg-btn:hover,
article .buttons a:hover {
	background: url(/img/onrpg/ButtonTripleState_120x96.png) 0px -32px;
	cursor: pointer;
}
header div#game-profile-links li a.inactive,
a.onrpg-btn.inactive,
article .buttons a.inactive {
        background: url(/img/onrpg/ButtonTripleState_120x96.png) 0px -64px;
	color: gray;
	cursor: default;
}
header div#game-profile-links li a:hover {
}
header div#game-profile-links li:hover {
}
header div#game-profile-links li a.officialsite,
a.onrpg-btn.officialsite,
article .buttons a.officialsite {
	background: url(/img/onrpg/OfficialSite_120x96.png) 0 0;
}
header div#game-profile-links li a.officialsite:hover,
a.officialsite.onrpg-btn:hover,
article .buttons a.officialsite:hover {
	background: url(/img/onrpg/OfficialSite_120x96.png) 0px -32px;
}
/* ie7 fix */
.ie7 h1.entry-title
{
        display: inline-block;
}
.breadcrumb-spacer {
	padding-top: 10px;
	padding-left: 5px;
	padding-right: 5px;
}
.homepage-content {
	background-color: black;
}
.onrpg-widget.homepage-categories {
	width: 329px;
	float:left;
	background-color: black;
}
.onrpg-widget.homepage-categories ul li {
	height: 67px;
	overflow: hidden;
	margin-bottom: 8px;
}
.onrpg-widget.homepage-categories ul li.last {
	margin-bottom: 0px;
}
.onrpg-widget.homepage-featured-articles {
	width: 329px;
	float:right;
	background-color: black;
	margin-bottom: 8px;
}
.onrpg-widget.homepage-featured-articles ul li{
	background-color: #151515;
	margin-bottom: 1px;
	padding: 10px;
	clear: both;
	height: 148px;
	overflow: hidden;
}
.onrpg-widget.homepage-featured-articles ul li .article-info{
	float: left;
	width: 239px;
	height: 60px;
	font-size: 12px;
}
.onrpg-widget.homepage-featured-articles ul li .article-info a{
	text-transform: uppercase;
	text-decoration: none;
	width: 239px;
	line-height: 14px;
	height: 14px;
}
.onrpg-widget.homepage-featured-articles ul li p{
	clear: both;
	font-size: 12px;
	line-height: 14px;
}
.onrpg-widget.homepage-featured-articles ul li p a{
	text-decoration: none;
}
.onrpg-widget.homepage-featured-articles ul li.last{
	margin-bottom: 0px;
}
.onrpg-widget.homepage-featured-video {
	width: 329px;
	overflow: hidden;
	float:right;
}
.onrpg-widget.homepage-newest-articles {
	clear: both;
}
span.double-arrow {
	background: url(/img/arrows/box_header.png) no-repeat;
	height: 18px;
	width: 22px;
	position: absolute;
	top: 7px;
	left: 7px;
}
.main-navigation li a:hover {
	color: #09f !important;
}
img.author-thumbnail {
	height: 60px;
	width: 60px;
	float: left;
	margin-right: 10px;
	margin-bottoM: 10px;
}
h4 a {
	text-decoration: none;
}
.article-meta-info {
	font-size: 12px;
	line-height: 14px;
	margin-top: 7px;
}
.article-meta-info .post-ratings {
	float: none;
}
.article-meta-info .post-ratings img {
	width: 10px;
	height: 10px;
	top: 3px;
	position: relative;
}
/* footer */
footer {
	background: url(/img/onrpg/FooterRunner_1x164.png) repeat-x;
        line-height: 14px !important;
	font-size: 11px;
}
footer a {
	text-decoration: none;
	color: #fff !important;
	font-weight: bold;
}
footer .friend-links {
	float: left;
	width: 200px;
}
footer .copyright {
	float: left;
	width: 300px;
}
footer .slogan {
	float: left;
}
/* 404 error */
article.error404 {
	width: 998px;
	
}
article.error404 .entry-content {
	text-align: center;
	padding-bottom: 50px;
}
article.error404 .entry-content input#s {
	width: 400px;
}
/* forum login box */
div#forum-box {
	background: url(/img/onrpg/SignInRunner_1x54.png) repeat-x;
	position: absolute;
	top: 0px;
	right: 10px;
	z-index: 999999;
	height: 54px;
	width: 314px;
	overflow: hidden;
}
div#forum-box {
	font-weight: bold;
	font-size: 11px;
	color: white;
}
div#forum-box a {
        color: white;
	text-decoration: none;
}
div#forum-box div.user-form {
	line-height: 20px;
}
div#forum-box div.user-form, 
div#forum-box div.login-form {
	padding: 7px;
}
div#forum-box input {
	width: 90px;
	height: 21px;
	color: #000000;
	float: left;
	margin-right: 4px;
	border: 0px;
	padding: 0px 10px;
	border-radius: 0px;
}
div#forum-box span {
	margin-left: 4px;
	margin-right: 4px;
}
div#forum-box input.button {
	width: 72px;
	margin-right: 0px;
}
div#forum-box div.forum-links {
	top: 6px;
	position: relative;
}
div#forum-box input[type=checkbox]{
	padding: 0px;
	margin: 0px;
	height: auto;
	width: auto;	
	margin-right: 5px;
}
p.error-message {
	color: red;
	background-color: pink;
	font-weight: bold;
	text-align: center;
	padding: 20px 10px;
	font-size: 20px;
	border-radius: 10px;
	box-shadow: inset 0px 0px 5px black;
}
p.success-message {
	background-color: lightgreen;
	padding: 20px;
	font-size: 20px;
	text-align: center;
	color: green;
	border-radius: 10px;
	box-shadow: inset 0px 0px 5px black;
}
#giveaway-form {	
	padding: 20px;
	font-size: 16px;
	border-top: 1px solid gray;
}
#giveaway-form p {
	margin-bottom: 2px;
}
#giveaway-form a {
	text-decoration: none;
	font-size: 12px;
}
.giveaway-recovery-table {
	width: 100%;
	border-collapse: collapse;
}
.giveaway-recovery-table th {
	height: 40px;
	color: white;
	background: #0085DE; 
	vertical-align: middle;
	text-align: center;
	font-weight: 600;
}
.giveaway-recovery-table td {
	text-align: left;
	padding: 5px 0 5px 10px;
}
.giveaway-recovery-table td {
	border: 1px solid #000000;
}
.giveaway-recovery-table tr:nth-child(even) {
    background-color: #242424;
}
.giveaway-recovery-table tr:nth-child(odd) {
    background-color: #787878;
}
div#giveaway-recovery-form {
	float:left;
	width:100%;
	height:auto;
	border-radius:4px;
}
#giveaway-recovery-form p.giveaway-form-leadin {
	background-color: #0085DE;
	border-bottom: 1px solid #414141;
	border-radius: 5px;
	padding: 15px 30px 15px 30px;
	font-size: 16px;
	line-height: 20px;
}
#giveaway-recovery-form p.giveaway-form-leadin a {
	text-decoration:underline;
	color:#1b8a32;
	font-weight:500;
}
p.giveaway-form-warning span {
	color:red;
	font-size:14px;
	width:100%;
	height:auto;
	text-align:center;
	float:left;
	margin-top:15px;
}
#giveaway-recovery-form form input[type="text"], #giveaway-recovery-form form input[type="password"] {
	border-radius:4px;
	height:44px;
	width:250px;
	color:#272525;
	padding-left:15px;
	font-size:16px;
	border:1px solid #cccccc;
	margin-right:20px;
}
#giveaway-recovery-form form input[type="submit"] {
	padding:12px 30px 12px 30px;
	border-radius:4px;
	color:#000;
	font-size:16px;
	margin-top:10px;
	cursor:pointer;
}
#giveaway-recovery-form form input[type="submit"]:hover {
	background-color:#217da6;
}
#giveaway-recovery-form form {
	width:100%;
	height:auto;
	float:left;
	padding:15px 0 15px 20px;
}

.onrpg-widget.gamelist-widget ul#gamelist-list-filter li {
	float: left;
	line-height: 25px;
	width: 49px;
	text-align: center;
	margin-right: 1px;
	background-color: #C7C7C7;
	font-weight: bold;
	font-size: 11px;
}
.onrpg-widget.gamelist-widget ul#gamelist-list-filter li:hover {
	cursor: pointer;
	background-color: #151515;
}
.onrpg-widget.gamelist-widget ul#gamelist-list-filter li.active {
	background-color: #353637;
}
.onrpg-widget.gamelist-widget ul li#gamelist-filter-all {
	width: 53px;
}
.onrpg-widget.gamelist-widget div#gamelist-list-scroll {
	clear: both;
	height: 272px;
	overflow-y: scroll;
	overflow-x: hidden;
	font-size: 11px;
	font-weight: bold;
	margin-top: 1px;
}
.onrpg-widget.gamelist-widget div#gamelist-list-scroll ul li a {
	padding: 0px 7px;
	color: white;
	text-decoration: none;
	line-height: 20px;
	display: block;
}
.onrpg-widget.gamelist-widget div#gamelist-list-scroll ul li a:hover {
	background-color: #353637;
	cursor: pointer;
}
.onrpg-widget.gamelist-widget div#gamelist-list-scroll ul li.odd {
	background-color: #1E1E1E;
}
.onrpg-widget.gamelist-widget div#gamelist-list-scroll ul li.even {
	background-color: #141414;
}
img.profile-rating-star {
	height: 16px;
}
#gameprofile-entry-content h1,
#gameprofile-entry-content h2,
#gameprofile-entry-content h3 {
	clear: left;
	color: #09f;
}
#game-screenshot-header {
	min-height: auto;
}
#game-screenshot-list li {
	list-style: none;
	height: 90px;
	margin-bottom: 10px;
	overflow: hidden;
	padding: 0px 3px 10px 3px;
	margin: 0px;
	display: inline-block;
        zoom: 1;
        *display: inline;
}
#game-screenshot-list li img {
	height: 90px;
	width: 120px;
}
.onrpg-widget.rating-widget div.post-ratings {
	float: none;
	text-align: center;
	padding: 15px 0px;
	background-color: #151515;
}
.onrpg-widget.rating-widget div#rating-label {
	background-color: #151515;
	text-align: center;
	font-weight: bold;
	padding-bottom: 10px;
	font-size: 12px;
}
.onrpg-widget.rating-widget div.post-ratings span.rating-text {
	display: none;
}
.onrpg-widget.rating-widget div.post-ratings img {
	height: 56px;
	width: 57px;
}
div.entry-paging {
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	padding: 10px 0px;
	line-height: 20px;
}
div.entry-paging a {
	text-decoration: none;
	background-color: #151515;
	padding: 0px 10px;
	background-color: #09f;
	color: white;
}
section.search-results {
	margin-top: 0px;
}
section.search-results header.page-header {
	border-bottom: none;
	padding: 10px 10px;
	background-color: #151515;
}
span.post-ratings-text {
	display: none !important;
}
.onrpg-widget.onrpg-social {
	background-color: #151515;
	padding: 5px 10px;
}
.onrpg-widget.onrpg-social span#social-share-label {
	line-height: 20px;
	font-size: 18px;
	vertical-align: top;
	font-weight: bold;
	position: relative;
	top: -1px;
	padding-right: 20px;
}
div.fb-like {
	width: 150px;
}
iframe.twitter-share-button {
	width: 150px;
}
div#___plusone_0 {
	width: 150px;
}
.one-line-wrap {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	-ms-text-overflow: ellipsis;
}
.entry-content, 
.entry-content p {
	line-height: 16px;
}

nav#nav-below {
	position: relative;
	padding: 0px;
	padding-bottom: 3px;
	background: url(/img/onrpg/bottomaccent_prevnext_668x3.jpg) no-repeat #151515;
	background-position: left bottom;
	text-align: center;
}
nav#nav-below .nav-previous {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
}
nav#nav-below .nav-next {
	position: absolute;
	top: 0;
	right: 0;
	width: auto;
}
nav#nav-below a {
	line-height: 30px;
}

.onrpg-widget.featured-games-widget ul li {
	float: left;
	width: 478px;
	padding: 5px 5px 5px 185px;
	height: 120px;
	overflow: hidden;
	position: relative;
}
.onrpg-widget.featured-games-widget ul li.last {
	float: right;
	width: 478px;
}
.onrpg-widget.featured-games-widget ul li img.thumbnail {
	position: absolute;
	top: 5px;
	left: 5px;
	height: 120px;
	width: 170px;
}
.onrpg-widget.featured-games-widget ul li h4 {
        font-size:20px;
        margin-bottom:8px;
        margin-top:4px;
}
.onrpg-widget.featured-games-widget ul li span.post-ratings {
	display: block;
	width: 90px;
}
.onrpg-widget.featured-games-widget ul li p {
	clear: both;
	margin-top: 23px;
}
.onrpg-widget.featured-games-widget ul li div.related-game-info {
	margin-top: 5px;
}
.onrpg-widget.featured-games-widget ul li div.related-game-views {
	float: left;
	color: gray;
}
.onrpg-widget.featured-games-widget ul li p.official-site-link {
	margin-top: 5px;
}
.onrpg-widget.featured-games-widget ul li p.official-site-button {
        position:absolute;
        bottom:15px;
        right:10px;
        margin-top:5px;
}
.onrpg-widget.featured-games-widget ul li p.official-site-button a {
        color:#ffffff;
        text-decoration:none;
        font-weight:bold;
        padding:6px 14px;
        background-color:#0099FF;
}
article.compact div.entry-content p {
	margin-bottom: 0px;
}
img.giveaway-banner {
	margin-left: auto;
	margin-right: auto;
	display: block;
	margin-top: 10px;
}
div.banner-url-div {
	display: none;
}
p.related-games-widget {
	margin-bottom: 0px;
}

/* Homepage v2 */
.homepage-v2 .onrpg-widget.gamelist-widget {
	width: 329px;
	overflow: hidden;
	float: right;
}
.homepage-v2 .onrpg-widget.homepage-featured-articles {
	width: 100%;
	overflow: hidden;
	float: none;
}
.homepage-v2 .onrpg-widget.homepage-featured-articles ul li .article-info {
	width: 210px;
}

/* Games Page */

#game-title-thumbnail {
    display: none;
}

.bubble {
	position: relative;
	width: 433px;
	height: 156px;
	padding: 0px;
	background: #276280;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.bubble:after {
	content: '';
	position: absolute;
	border-style: solid;
	border-width: 15px 15px 15px 0;
	border-color: transparent #276280;
	display: block;
	width: 0;
	z-index: 1;
	left: -15px;
	top: 60px;
}

a.game-link:hover + #game-title-thumbnail {
	transition-delay:1s;
	display: block; 
	position: relative;
	bottom: 78px; 
	left: 55%; 
	height: 0px; 
	width: 0px; 
	border-width: 0;
	-webkit-animation: fadein 1.25s; /* Safari and Chrome */
       -moz-animation: fadein 1.25s; /* Firefox */
        -ms-animation: fadein 1.25s; /* Internet Explorer */
         -o-animation: fadein 1.25s; /* Opera */
            animation: fadein 1.25s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari and Chrome */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Category Pages Rework */

.videothumbnail-overlayed {
	position:absolute;
 	right: 5%;
 	top: 8.5%;
}
.videothumbnail-overlayed img {
 	width: 250px;
 	height: 160px;
}
.videoplaybutton {
 	position: absolute;
 	right: 18%;
 	top: 20%;
 	z-index: 5;
}
.category-filterbar {
 	list-style:none;
 	width:100%;
 	height:60px;
 	background-color: #0d0c13;
	margin-bottom:2%;
}
.category-filterbar img {
 	float: right;
 	padding-right: 2.5%;
 	padding-top: 2.2%;
}
.category-searchbar {
	width:60%;
 	float:left;
 	margin-left:2%;
}
.category-searchbar input {
 	margin-top:3.1%;
	border-radius: 0px !important;
	line-height:22px;
	font-size: 16px !important;
}
 .category-searchbar button {
 	float:left !important;
 	padding-top: 3% !important;
}
.new-category-entry {
 	padding-bottom: 5%;
	background-color: #000000 !important;
	border-bottom: 6px solid #111111;
}
.new-category-entry img {
 	margin-bottom: 2%;
}
h1.new-category-title {
 	font-family: Arial, Helvetica;
 	font-size: 24px;
 	font-style: italic;
 	font-weight: bold;
 	padding-left: 1%;
 	width:54%;
 	overflow:hidden;
 	text-overflow:ellipsis;
 	white-space:nowrap;
}
h1.new-category-title a {
 	color: #ffffff;
 	text-decoration: none;
}
.new-category-entry p {
 	width: 56%;
 	line-height: 1.5;
 	font-size: 14px;
 	margin-top: 1%;
 	padding-left: 1%;
}
.new-article-command article {
	background-color: #000000 !important;
}
.new-buttons {
	position:absolute;
	right:3%;
	bottom:10%;
}
.new-buttons a {
	display: block;
	margin-bottom:2%;
}
.new-buttons img {
 	margin-bottom: 2%;
}
#sortby {
 	font-style: italic;
}
ul#nav {
	float: right;
}
ul.drop a {
 	display:block; 
 	color: #fff; 
 	font-family: Arial, Helvetica; 
 	font-size: 16px; 
 	text-decoration: none;
}
ul.drop, ul.drop li, ul.drop ul {
 	list-style: none; 
 	margin: 0; 
 	padding: 0;  
 	color: #fff;
}
ul.drop {
 	position: relative;
 	z-index: 597; 
 	float: left;
}
ul.drop li {
 	float: left; 
 	line-height: 2em;
 	vertical-align: middle;
 	zoom: 1;
 	padding: 14px 16px;
}
ul.drop li:hover, ul.drop li:hover {
	position: relative; 
 	z-index: 599;
 	cursor: default;
 	background: #17171b;
}
.dropdown-button li:hover {
	background: #17171b !important;
}
ul.drop ul {
	visibility: hidden;
	position: absolute;
 	top: 100%;
 	right: 0;
 	z-index: 598;
 	width: 195px;
 	background: #17171b;
 	-moz-box-shadow: -5px 0px rgba(0,0,0,0.5);
 	-webkit-box-shadow: -5px 0px rgba(0,0,0,0.5);
 	box-shadow: -5px 0px rgba(0,0,0,0.5);
}
ul.drop ul li {
 	float: none;
}
ul.drop ul ul {
	top: -2px; 
 	left: 100%;
}
ul.drop li:hover > ul {
 	visibility: visible;
}
.sorry-nogames p {
 	font-size: 16px;
}
div.sorry-nogames {
 	text-align: center;
 	margin-top:20%;
}
.pagination {
 	width: 100%;
 	text-align: center;
 	height: auto;
 	margin: 5% 0 10% 0;
}
.pagination a:link {
	color: #ffffff;
 	text-decoration:none;
 	font-size: 22px;
 	font-weight:bold;
 	font-family: Arial, Helvetica;
 	font-style:italic;
 	display: block;
 	padding: 2.5% 0 2.5% 0;
 	width:60%;
 	background-color: #141414;
 	margin: 0 auto;
 	-moz-box-shadow:inset 0px 52px 0px 0px #202020;
 	-webkit-box-shadow:inset 0px 52px 0px 0px #202020;
 	box-shadow:inset 0px 52px 0px 0px #202020;
}
.pagination a:hover {
 	-moz-box-shadow:inset 0px 56px 0px 0px #202020;
 	-webkit-box-shadow:inset 0px 56px 0px 0px #202020;
 	box-shadow:inset 0px 56px 0px 0px #202020;
}
.onrpg-widget.new-featured-games-widget ul li {
 	float: left;
 	width: 31%;
 	overflow: hidden;
 	position: relative;
 	left:1%;
 	margin-top: 3%;
 	height:auto;
 	font-size: 14px;
 	line-height: 1.5;
 	padding-left: 2%;
	background-color: #000000 !important;
	margin-bottom:4%;
}
.featured-description {
	width: 180px;
}
/* New Additions */
p.featured-title {
 	width: 86%;
 	text-overflow: ellipsis;
 	overflow-x:hidden;
}
.featured-title a:link {
 	font-size: 24px;
 	color: #ffffff !important;
 	font-family: Arial, Helvetica, sans-serif;
 	font-style: italic;
 	font-weight: bold;
 	white-space:nowrap;
 	text-decoration: none;
}
.featured-title a:hover {
 	color: #efefef !important;
}
.featured-title a:visited {
 	color: #efefef !important;
}
/* End New Additions */
.onrpg-widget.new-featured-games-widget ul li.last {
 
}
.onrpg-widget.new-featured-games-widget ul li img.thumbnail {
 	float:left;
 	width: 180px;
 	height: 100px;
 	margin-bottom: 5%;
}
.onrpg-widget.new-featured-games-widget ul li h4 {
 	font-size: 24px;
 	color: #ffffff !important;
 	font-family: Arial;
 	font-style: italic;
 	width:85%;
 	text-overflow: ellipsis;
 	overflow-x:hidden;
}
.onrpg-widget.new-featured-games-widget ul li h4 a {
 	font-size: 24px;
 	color: #ffffff !important;
 	font-family: Arial;
 	font-style: italic;
 	white-space: nowrap;
}
.onrpg-widget.new-featured-games-widget ul li span.post-ratings {
 	display: block;
 	width: 90px;
}
.onrpg-widget.new-featured-games-widget ul li p {
 	clear: both;
}
.onrpg-widget.new-featured-games-widget ul li div.related-game-info {
 	margin-top: 5px;
}
.onrpg-widget.new-featured-games-widget ul li div.related-game-views {
 	float: left;
 	color: gray;
}
.onrpg-widget.new-featured-games-widget ul li p.official-site-link {
 	margin-top: 5px;
}
.onrpg-widget.new-featured-games-widget ul li p.official-site-button {
 	float: left;
 	margin-top: 6%;
}
.onrpg-widget.new-featured-games-widget ul li p.official-site-button a {
 
}
/* Games Index Featured Games */
.onrpg-widget.games-featured-games {
	width: 100%;
}
.onrpg-widget.games-featured-games-game {
	float: left;
	width: 33.3%;
	display: block;
}
.onrpg-widget.games-featured-games-game div h4 {
	width: 100%;
	white-space: nowrap; 
	overflow: hidden !important; 
	text-overflow: ellipsis !important;
}
.onrpg-widget.games-featured-games-game div h4 a {
	font-size: 20px;
	color: #FFF !important;
	font-family: Arial;
	font-style: italic;
	white-space: nowrap;
}
.onrpg-widget.games-featured-games-buttons {
	width: 100%;
	display: block;
	float: left;
}
.onrpg-widget.games-featured-games-buttons div {
	float: left;
	width: 33.3%;
	display: inline;
}
.onrpg-widget.games-featured-games-buttons div p {
	margin-top: 10px;
	margin-bottom: 10px
}
/* Author pages */
.nametitle-container {
	float:left;
	padding-left:3%;
	margin-bottom:2%;
}
#author-mini-profile {
	width:100%;
	float:left;
	height:auto;
}
#author-mini-profile .author-single {
	width:100%;
	height:auto;
	float:left;
	margin-bottom:3%;
}
#author-mini-profile .author-multiple {
	float:left;
	width:100%;
	height:auto;
	padding-bottom:6%;
	margin-bottom:3%;
	border-bottom:6px solid #111111;
}
.author-bio img {
	padding:4% 0 0 5%;
}
#author-mini-profile h1.author-name {
	color: #ffffff;
	font-size: 26px;
	font-weight:bold;
	font-style: italic;
	font-family: Arial, Helvetica;
	float:left;
}
#author-mini-profile .author-title {
	color: #ffffff;
	background-color: #111111;
	float:left;
	width:100%;
	padding:5% 0 5% 0;
	text-align:center;
}
#author-mini-profile .author-headshot .author-avatar {
	margin-top:0 !important;
}
#author-mini-profile .author-headshot {
	float: left;
	width: 29%;
}
#author-mini-profile .author-bio {
	color: #ffffff;
	float:left;
	width:65%;
}
#author-mini-profile .author-bio p {
	color: #ffffff;
	float:left;
	padding: 0 0 0 5%;
	line-height:1.3em;
}
#author-mini-profile .basement {
	margin-top: 1.3em;
	position: relative;
	width: 614px;
}
.author-articles {
	float:left;
	width:30%;
	height:350px;
	padding: 3% 0 0 3%;
	margin-bottom:13%;
	border-top: 6px solid #111111;
}
.author-articlethumbnail img {
	width:180px;
	height:100px;
}
.author-articletitle {
	width:80%;
	font-family: Arial, Helvetica;
	font-size:17px;
	font-weight:bold;
	padding:3% 0 3% 0;
}
.author-articletitle a {
	color: #ffffff;
	text-decoration:none;
	line-height:1.15em;
}
.author-namedate {
	width:80%;
	font-style:italic;
}
.author-articlecontent {
	width:80%;
	padding:3% 0 3% 0;
	line-height:1.3em;
}
.author-continue {
	width:80%;
	padding-top:5%;
}
.author-continue a {
	color: #006296;
	font-style: italic;
	font-family: Arial, Helvetica;
	text-decoration:none;
	font-size:16px;
}
.author-continue a:hover {
	text-decoration:underline;
}
.author-infotitle {
	margin:2% 0 3% 0;
	float:left;
	width:100%;
	text-align:center;
	font-size:16px;
	font-style:italic;
	font-family: Arial, Helvetica;
	color: #575757;
}
.author-forum p {
	float:right;
	padding-top:5%;
	width:63%;
	padding-left:3%;
}
.author-forum a img {
	width:23px;
	padding:3% 0 0 20%;
}
/* Games-List Sticky Sort Bar */
#games-sort-bar {
	background: #000000;
	height: 14px;
	margin-left: 0;
	z-index: 100;
}
#games-sort-bar-sticky-wrapper {
	background: #000000;
	height: 14px;
	margin-left: 0;
	z-index: 100;
}
/* Category Page Sticky Sort Bar */
#gamelist.stick {
	margin-top:80px;
}
#category-filterbar-container.stick {
    position: fixed;
    width: 668px;
    top: 0;
    z-index: 10000;
}

/* Colored <h1>, <h2>, <b>, and <strong> tags for post content. */
.entry-content h1, h2, b, strong{
	color: #0099FF;
}
/* Colored <a> tags for post content. */
.entry-content a{
	color: #4AB7FF;
}

/* Featured Article Sidebar Widget */
.featured-article-sidebar-title {
	font-weight: bold;
	text-align: left;
	max-width: 95%;

}

.featured-article-sidebar-title span {
	overflow: visible;
	word-wrap: normal;
	max-width: 100%;
}

/* Kicktracker */
.kicktracker-leadin {
	font-size: 23px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	width: 100%;
	float: left;
	height: auto;
	margin: 8% 0 1% 0;
	color: #efefef;
	text-align: center;
}
#kickstarter-game-single {
	width: 28%;
	height: auto;
	float: left;
	padding: 2.65%;
	line-height: 1.5;
}
#kickstarter-game-single-embed {
	float: left;
	width: 32%;
	display: inline;
	margin-left: 1%;
}
#kickstarter-game-single-embed iframe {
	width: 215px !important;
}
#kickstarter-game-single ul li {
	width:100%;
	height:auto;
	float:left;
}
#kickstarter-profile-button {
	margin-top: 6%;
}
#kicktracker-article-thumbnail {
	width:195px;
	height:130px;
	float:left;
	margin-right:4%;
	background-color: #111111;
}
#kicktracker-article-thumbnail img {
	width:195px;
	height:130px;
}
#kicktracker-article-title {
	float:left;
	font-size: 20px;
	font-family: Arial, Helvetica, sans-serif !important;
	font-style: italic;
	font-weight: bold;
	width:50%;
	height:auto;
	text-overflow: ellipsis !important;
	overflow-x: hidden !important;
	white-space: nowrap !important;
}
#kicktracker-article-title a {
	color: #ffffff !important;
	text-decoration:none !important;
}
#kicktracker-article-desc {
	width:65%;
	height:auto;
	float:left;
	margin-bottom:3%;
}
.kicktracker-article-date-info {
	width:13%;
	height:auto;
	float:left;
	color: #5c5c5c;
	font-size:13px;
	text-align:right;
	padding-top:1%;
}
.kicktracker-article-buttons {
	float:left;
}
#kicktracker-article {
	width: 100%;
	height: auto;
	float: left;
	margin: 3% 0 3% 0;
	line-height: 1.5;
}
div#kicktracker-video {
	width: 100%;
	height: auto;
	float: left;
	margin: 40px 0 10px 0;
	line-height: 1.5;
}
div.kicktracker-featured-video-thumbnail {
	width:360px;
	height:auto;
	float:left;
	margin-right:25px;
}
.kicktracker-featured-video-thumbnail img{
	width:360px;
	height:202px;
}
.kicktracker-featured-video-playbutton {
	position:absolute;
	margin:65px 0 0 144px;
}
.kicktracker-featured-video-playbutton img {
	opacity:1;
	-moz-transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.kicktracker-featured-video-playbutton img:hover {
	opacity:.8;
}
div.kicktracker-featured-video-title {
	float:left;
	width:280px;
	height:auto;
	font-size:24px;
	line-height:25px;
	font-weight:bold;
	font-style:italic;
	font-family:Arial, Helvetica, sans-serif;
}
div.kicktracker-featured-video-title a {
	color:#ffffff;
	text-decoration:none;
}
div.kicktracker-featured-video-title a:hover {
	color:#efefef;
	text-decoration:underline;
}
div.kicktracker-featured-video-title a:visited {
	color:#ffffff;
}
div.kicktracker-featured-video-excerpt {
	width:280px;
	height:auto;
	float:left;
	font-size:14px;
	margin-top:10px;
}
.isa_info {
	display: block;
	margin-top: 3px;
	margin-bottom: 3px;
	margin-left: auto;
	margin-right: auto;
	padding: 12px;
	color:#fff;
	background-color:#5bc0de;
    border-radius: .5em;
    text-align: center;
    width: 55%;
}
.isa_info i {
    font-size: 2em;
    vertical-align: middle;
    text-align: center;
}
.notice-icon {
	display: inline;
	vertical-align: middle;
	margin-top: -4px;
	margin-bottom: -2px;
	margin-right: 7px;
	top: 16px;
}