/*
Welcome to Custom CSS!

CSS (Cascading Style Sheets) is a kind of code that tells the browser how
to render a web page. You may delete these comments and get started with
your customizations.

By default, your stylesheet will be loaded after the theme stylesheets,
which means that your rules can take precedence and override the theme CSS
rules. Just write here what you want to change, you don't need to copy all
your theme's stylesheet content.
*/
#primary a:link, #primary a, a {
	color: #1e73be;
}

#primary a:visited, a:visited {
	color: #1e73be;
}

#primary a:hover, a:hover {
	color: #9f967a;
	text-decoration: underline;
}

.post-navigation .assistive-text {
	display: none;
}

.post-navigation {
	display: table;
	width: 100%;
}

h1.assistive-text, .assistive-text {
	display: none;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
	display: table-cell;
	width: 50%;
	padding: 10px;
	font-family: 'Bitter', serif;
	font-size: 14px;
	line-height: 22px;
	vertical-align: middle;
}

.btn-danger {
	color: #473D21;
	border-color: #473D21;
}

.post-navigation .nav-previous a,
.post-navigation .nav-next a {
	display: block;
}

.post-navigation .nav-next {
	border-left: 1px solid #ddd;
	text-align: right;
}

.tag a {
	color: white;
}

/* causes link text in post categories to be white as opposed to primary directive to make all links blue */
#primary .post-categories  a {
	color: white;
}

/* causes visited link text in post categories to be white as opposed to primary directive to make all links blue */
#primary .post-categories  a:visited {
	color: white;
}

.post-categories  a:hover {
	color: green;
}

.cse .gsc-control-cse, .gsc-control-cse {
	padding: .2em !important;
}

#colophon.dark {
	color: #666;
}

@media(max-width: 767px) {
	.post-navigation {
		display: none;
	}
}

/* play/pause container */
.prefix-play-pause {
	position: absolute;
	bottom: 10px;
	left: 95%;
	margin-left: -10px;
	cursor: pointer;
	display: inline-block;
	z-index: 9999;
}

/* play/pause mouse-over state */
.prefix-play-pause:hover {
	opacity: .75;
}

/* play button */
.prefix-play {
	width: 32px;
	height: 32px;
	background: url(http://rbms.info/wp-content/uploads/2014/12/play.jpg) no-repeat;
	display: none;
	opacity: .65;
}

/* pause buttons */
.prefix-pause {
	width: 32px;
	height: 32px;
	background: url(http://rbms.info/wp-content/uploads/2014/12/pause.jpg) no-repeat;
	opacity: .65;
}