/*
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.
*/
/* cvet zagolovka */
.entry-title {
	clear: both;
	color: #8ee6fc;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.5em;
	padding-bottom: .3em;
	padding-top: 15px;
}

.entry-title,
.entry-title a {
	color: #8ee6fc;
	text-decoration: none;
}

/* ramka u kartinki i tekst */
.wp-caption {
	background: #000;
	margin-bottom: .2em;
	margin-right: .6em;
	max-width: 96%;
	padding: 9px;
}

.wp-caption img {
	display: block;
	margin: -2px 0 0 -2px;
	max-width: 98%;
}

.wp-caption .wp-caption-text,
.gallery-caption {
	color: #fff;
	font-family: Arial, serif;
	font-size: 12px;
}

.wp-caption .wp-caption-text {
	margin-bottom: .4em;
	padding: 30px 0 5px 10px;
	position: relative;
}

.wp-caption .wp-caption-text:before {
	color: #fff;
	content: '\2014';
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	margin-right: 5px;
	position: absolute;
	left: 10px;
	top: 7px;
}

/* Image borders */
img[class*="align"],
img[class*="wp-image-"],
#content .gallery .gallery-icon img {
/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
	border: 1px solid #000;
	padding: 6px;
	max-width: 97.5%;
}

.wp-caption img {
	border-color: #222;
}

a:focus img[class*="align"],
a:hover img[class*="align"],
a:active img[class*="align"],
a:focus img[class*="wp-image-"],
a:hover img[class*="wp-image-"],
a:active img[class*="wp-image-"],
#content .gallery .gallery-icon a:focus img,
#content .gallery .gallery-icon a:hover img,
#content .gallery .gallery-icon a:active img {
/* Add some useful style to those fancy borders for linked images ... */
	background: #363636;
	border-color: #222;
}

.wp-caption a:focus img,
.wp-caption a:active img,
.wp-caption a:hover img {
/* ... including captioned images! */
	background: #363636;
	border-color: #222;
}