/*
Theme Name: David Choi Music
Theme URI: http://davidchoimusic.com/
Author: Keebs
Author URI: http://keebs.com/
Version: 1.0
*/
/*
===========================
CONTENTS:
01 Sensible defaults
02 Typography
03 Helpers
04 Block styling
05 Media queries
===========================
*/

/* ----------------------------------------------------------------------------------------------------------
01 Sensible defaults
---------------------------------------------------------------------------------------------------------- */
/* Reset */
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}[hidden]{display:none}html{font-size:100%;overflow-y:scroll;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}h1,h2,h3,h4,h5,h6{font-weight:400}a{color:blue}a:focus{outline:thin dotted}li{list-style:none}abbr[title]{border-bottom:0}b,strong{font-weight:700}i,em,dfn{font-style:italic}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}ins{background:#ff9;color:#000;text-decoration:none}mark{background:#ff0;color:#000;font-style:italic;font-weight:700}pre,code,kbd,samp{font-family:monospace,monospace;_font-family:'courier new',monospace}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:none}q:before,q:after{content:"";content:none}small{font-size:85%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0;-ms-interpolation-mode:bicubic;vertical-align:middle}label{cursor:pointer}input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal;*overflow:visible}button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button}input[type="checkbox"],input[type="radio"]{box-sizing:border-box}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top;resize:vertical}table{border-collapse:collapse;border-spacing:0}td{vertical-align:top}
.group:after 		{ display:block; height:0; clear:both; content:"."; visibility:hidden; }
::-moz-selection 	{ background:#892e2e; color:#f8dfdf; }
::selection 		{ background:#892e2e; color:#f8dfdf; }

/* ----------------------------------------------------------------------------------------------------------
02 Typography
---------------------------------------------------------------------------------------------------------- */
/*
10 / 16	= 		0.625em  		(10px equivalent)
12 / 16	= 		0.75em  		(12px equivalent)
14 / 16	= 		0.875em 		(14px equivalent)
16 / 16	= 		1em 			(16px equivalent)
18 / 16 = 		1.125em 		(18px equivalent)
21 / 16 = 		1.3125em 		(21px equivalent)
24 / 16 = 		1.5em 			(24px equivalent)
30 / 16 = 		1.875em 		(30px equivalent)
*/

@font-face {
    font-family: 'ModernMono';
    src: url('fonts/lmmono10-regular-webfont.eot');
    src: url('fonts/lmmono10-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/lmmono10-regular-webfont.woff') format('woff'),
         url('fonts/lmmono10-regular-webfont.ttf') format('truetype'),
         url('fonts/lmmono10-regular-webfont.svg#LatinModernMono10Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}
body {
	font-family: 'Open Sans', Arial, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
.menu,
.copyright,
.contact-send input,
tr.gigpress-header th,
.news-item,
.module-news .pull-right,
.date {
	font-family: 'ModernMono', serif;
}
a {
	text-decoration: none;
	color: #574317;
}
a:hover {
	color: #953311;
}
.label-title {
	position: relative;
	text-transform: lowercase;
	display: inline-block;
	text-align: center;
	min-width: 100px;
	background: #fff;
	padding: 0 17px;
	margin: 0 0 15px;
	font-size: 1.2em;
	color: #333;
	line-height: 34px;
	border: 1px solid #dfdcd6;
	box-shadow: 1px 0px 1px #9e9c95;
}
	.label-title i {
		position: absolute;
		width: 20px;
		height: 20px;
		top: 0;
		left: 0;
		margin: -5px 0 0 -7px;
		background: url(img/icon-title-tape.png);
	}
.blue-title, .red-title {
	background: url(img/bg-blue-title.png);
	line-height: 62px;
	text-transform: lowercase;
	color: #fff;
	text-align: center;
	font-size: 1.2em;
}
.red-title {
	background: url(img/bg-red-title.png);
}

/* ----------------------------------------------------------------------------------------------------------
03 Helpers
---------------------------------------------------------------------------------------------------------- */
.pull-left {
	clear: left;
	float: left;
}
.pull-right {
	clear: right;
	float: right;
}
.pull-center {
	display: block;
	margin: 0 auto;
	text-align: center;
}
.module-social iframe {
	margin: 0 auto 20px;
	display: block;
}
.align-left {
	text-align: left;
}
.align-right {
	text-align: right;
}
.half {
	width: 48%;
}
.third {
	width: 31%;
}

/* ----------------------------------------------------------------------------------------------------------
04 Block styling
---------------------------------------------------------------------------------------------------------- */
/* -----------------------
   Wrap
-----------------------	*/
body {
	background: url('img/bg.jpg') repeat #dbcdb9;
}
.site-wrapper,
.inner {
	width: 1000px;
	margin: 0 auto;
}
.site-header .inner {
	background: url('img/bg-header.png') no-repeat center bottom;
}
body.page-id-3 .site-header .inner, body.page-id-1998 .site-header .inner, body.page-id-26 .site-header .inner {
	background: url('img/bg-header-alt.png') no-repeat center bottom;
}
/* -----------------------
   Forms
-----------------------	*/
input, textarea {
	background: #ffffff;
	border: 1px solid #d0c5b9;
	padding: 6px 8px;
	color: #444;
	font-family:  'Open Sans', Arial, sans-serif;
}
.red-button {
	background: #953311;
	border: 1px solid #401405;
	color: #fff;
}
	.red-button:hover {
		background: #832909;
	}
.page-content input, .page-content textarea {
	width: 97%;
	padding: 1.5%;
}
	.page-content .wpcf7-captchar {
		width: 100px;
	}
	form .pull-left {
		min-width: 40%;
	}
	form .half {
		margin-bottom: 20px;
	}
	.wpcf7-captchac {
		margin-top: -2px;
		border: 1px solid #d0c5b9;
	}
	.contact-send input {
		font-size: 1.4em;
		background-color: #6d2f19;
		text-transform: lowercase;
		line-height: 40px;
		padding: 0 50px;
		color: #fff;
		display: inline-block;
		border-radius: 3px;
		background-image: linear-gradient(top,#8e3e22,#6d2f19);
		background-image: -webkit-linear-gradient(top,#8e3e22,#6d2f19);
		background-image: -moz-linear-gradient(top,#8e3e22,#6d2f19);
		border-color: #421b0d;
		box-shadow: inset 0 1px 0 #b94e28;
		height:42px;
	}
	.contact-send input:hover {
		background-image: linear-gradient(top,#9f4627,#82391f);
		background-image: -webkit-linear-gradient(top,#9f4627,#82391f);
		background-image: -moz-linear-gradient(top,#9f4627,#82391f);
	}
	.contact-send input:active {
		margin-top: 1px;
	}
	.div.wpcf7 img.ajax-loader {
		float: left;
	}

/* -----------------------
   Header
-----------------------	*/
.site-header .branding {
	float: left;
	margin-bottom: 25px;
}
.site-header .menu {
	margin-top: 20px;
}
	.site-header .menu li {
		font-size: 1.2em;
		text-transform: lowercase;
		letter-spacing: -1px;
		margin-left: 45px;
		display: inline-block;
	}
	.site-header .menu a:hover {
		color: #953311;
	}
	.site-header .current-menu-item a,
	.site-header .current-menu-item a:hover {
		color: #fff;
	}
.newsletter {
	margin-top: 25px;
	font-size: 0.8em;
}
	.newsletter img {
		margin: -2px 4px 0 0;
	}
	.newsletter p {
		margin: 0 0 7px;
	}
	.newsletter input {
		max-width: 130px;
	}
	.newsletter .red-button {
		margin-left: -4px;
	}

/* -----------------------
   Modules
-----------------------	*/
.row {
	position: relative;
}
.module {
	margin: 0 0 20px;
	border: 1px solid #000000;
	background: rgb(82,71,48); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(82,71,48,1) 0%, rgba(134,103,77,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(82,71,48,1)), color-stop(100%,rgba(134,103,77,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(82,71,48,1) 0%,rgba(134,103,77,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(82,71,48,1) 0%,rgba(134,103,77,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(82,71,48,1) 0%,rgba(134,103,77,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(82,71,48,1) 0%,rgba(134,103,77,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#524730', endColorstr='#86674d',GradientType=0 ); /* IE6-9 */
}
	.module-texture {
		background: url(img/bg-module-texture.png);
		padding: 9px;
	}
	.module-inner {
		background: #f7f4ec url(img/bg-module.png);
		padding: 14px 11px 11px;
		overflow: hidden;
		position: relative;
	}
		.no-padding {
			padding: 0;
			height: 100%;
		}
	.module.highlight {
		box-shadow: 0 0 25px #fff;
		border-color: #fff;
	}
	.module-twothird {
		width: 658px;
	}
	.module-third {
		width: 318px;
	}
	#store {
		-webkit-transition: all .8s;
		-moz-transition: all .8s;
	}

/* -----------------------
   Pages
-----------------------	*/
.page-content {
	padding: 10px;
	background: #fff;
	box-shadow: 1px 1px 3px #a29c89;
	clear: both;
	color: #333;
	font-size: 0.8em;
	line-height: 1.75em;
}
	.page-content h3 {
		color: #222;
		font-size: 1.6em;
		text-transform: lowercase;
		margin: 12px 0 12px;
	}
	.page-content h4 {
		font-family: 'Open Sans', sans-serif;
		text-transform: uppercase;
		font-weight: 700;
		color: #444;
		margin: 5px 0 5px;
	}
	.page-content h3 img {
		margin-top: -12px;
	}
	.page-content p {
		margin: 0 0 12px;
	}
		p.pull-left,
		p.pull-right {
			margin-bottom: 0;
			position: relative;
		}
	body div.page-texture {
		padding: 12px;
		border-radius: 2px;
		background: #e5dfcb url(img/bg-page.png);
		border: 0;
	}
	.module-twothird .page-texture {
		overflow: auto;
		height: 482px;
	}

/* -----------------------
   Tour Dates
-----------------------	*/
body tr.gigpress-header th {
    color:#832809;
	font-size: 1.45em;
	font-weight: normal;
}
body .gigpress-table td,
body .gigpress-table th {
	text-align: center;
}
body .gigpress-table {
	border: 0;
	margin: 0;
	text-transform: lowercase;
}
body tr.gigpress-info td,
body .gigpress-row td,
body .gigpress-table th {
	border: 0;
	border-bottom: 0;
}
body .gigpress-row td {
	padding: 20px 0 0;
}
body .gigpress-table th {
	padding: 15px 0;
}
body tr.gigpress-info td {
	padding: 0 0 20px;
}
body tr.gigpress-info, body tr.gigpress-row {
	border: 0;
	padding: 0;
	font-size: 1.1em;
}
body .vevent {
	border-top: 1px solid #fff;
}

.vip-link {
	background: url(http://davidchoimusic.com/wp-content/themes/dcm/img/buy-vip.png);
	height: 50px;
	display: block;
	text-indent: -9999px;
	width: 50px;
	background-size: 50px;
	margin-left: 10px;
	margin-top: 4px;
}

.gigpress-calendar-add,
.gigpress-info-item .gigpress-tickets-link {
	display: none;
}
tr.gigpress-info td.description {
	float: left;
}
.gigpress-info-item {
	font-size: 11px;
	margin-left: 5px;
}
.gigpress-info-item:empty {
	margin-left: 0;
}
.vevent .description {
}
.gigpress-address {
	width: 250px;
	text-align: center;
	display: inline-block;
}
.gigpress-info-label {
	display: none;
}
body td.gigpress-date {
	padding-left: 12px;
}
.gigpress-links-cell {
	padding-left: 12px;
}

/* -----------------------
   NextGen
-----------------------	*/
.ngg-gallery-thumbnail { margin-right:0 !important }
.ngg-gallery-thumbnail img { margin:10px !important;height:164px;width:164px }
.ngg-galleryoverview .ngg-gallery-thumbnail-box:nth-child(5n+0) img { margin-right:0 !important }
.ngg-gallery-thumbnail-box { float: left }

/* -----------------------
   Carousel
-----------------------	*/
.horizontal-slider {
	width: 9999px;
}
	.slider-item {
		float: left;
		padding: 0 15px 0 0;
	}
.horizontal-slider-options {
	position: absolute;
	top: 15px;
	right: 0;
	padding: 2px 0px 5px 15px;
}
	.horizontal-slider-options a {
		margin-right: 15px;
	}
	.horizontal-slider-options a:hover,
	.horizontal-slider-options .inactive {
		opacity: 0.4;
	}
	.module-slider .horizontal-slider-options {
		background: #000;
	}
	.module-slider .slider-item {
		padding: 0;
	}
.module-slider .slider-item h4 {
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	position: absolute;
	margin-top: 320px;
	display: inline-block;
	background: #000;
	text-transform: uppercase;
	color: #fff;
	font-size: 2.5em;
	padding: 5px 20px;
	opacity: 0;
}
.module-slider .slider-item h4:empty {
	display: none;
}
.module-slider .slider-item h4 em {
	font-style: normal;
	color: #b74518;
}
.module-video {
	line-height: 0;
}
	.module-video iframe {
		width: 100%;
	}
	.text-featured-video {
		position: absolute;
		top: 0;
		left: 0;
		margin: -20px 0 0 -90px;
	}

/* -----------------------
   Social
-----------------------	*/
.module-social .social-icons {
	text-align: center;
	margin: 16px 0;
	padding: 0 0 16px;
	border-bottom: 1px dashed #cdb0a6;
}
	.module-social .pull-center {
		margin-bottom: 20px;
	}
	.social-icons a {
		margin: 0 3px;
		opacity: .9;
	}
	.social-icons a:hover {
		opacity: 1;
	}

/* -----------------------
   # Facebook
-----------------------	*/
.module-facebook .module-inner {
	background: #fff;
}

/* -----------------------
   News
-----------------------	*/
.news-block {
	width: 105%;
	overflow: hidden;
}
.news-item {
	font-size: 0.85em;
	width: 145px;
	height: 145px;
	margin-right: 10px;
	float: left;
	text-align: center;
	background: url(img/asset-thumbnail-test.png);
}
	.news-item a {
		display: block;
	}
	.news-item-content {
		width: 145px;
		height: 125px;
		padding: 20px 0 0;
		background-color: rgba(255, 255, 255, 0.75);
		background: rgba(255, 255, 255, 0.75);
		color: rgba(255, 255, 255, 0.75);
		opacity: 0;
		-webkit-transition: opacity .3s;
		-moz-transition: opacity .3s;
	}
	.module-news .pull-right {
		font-size: 0.8em;
		margin-top: 8px;
	}
	.news-item:hover .news-item-content {
		opacity: 1;
	}
	.news-item h5 {
		margin: 5px 0 0;
		font-size: 1.2em;
		color: #333;
	}
	.link-viewpost {
		border-top: 1px solid #fff;
		padding: 10px 0 0;
		margin: 10px 0 0;
		color: #b55806;
		display: block;
	}
	.news-item .date {
		color: #b55806;
		font-size: 0.85em;
	}
.archive .page-content h2 {
	font-size: 1.75em;
        margin-bottom:5px;
        line-height:1.3;
}
.archive .page-content article {
	padding:20px;
	margin: 0 0 15px;
	border:1px solid #d0c5b9;
        background:#fff;
}
.archive .page-content article time {
        border-bottom: 1px solid #ddd;
        display:block;
        margin-bottom:10px;
        padding-bottom: 10px;
}
.single .page-content article {
        background:#fff;
        border:1px solid #d0c5b9;
        padding:40px;
        word-wrap:break-word;
}
.single .page-content time {
        border-bottom:1px solid #ddd;
        display:block;
        font-size:1.2em;
        margin-bottom:20px;
        padding-bottom:10px;
}
.single .sharedaddy {
        border-bottom: 1px solid #ddd;
        margin: 40px 0;
}
.single .sharedaddy h3 {
        margin: 5px 15px 0 0;
        width: auto;
}
.single .sharedaddy .sd-content {
        float: none;
        width: auto;
}

/* -----------------------
   Music
-----------------------	*/
body.page-template-music-php {
	background-color: #0C0401 !important;
}
body div.albums {
	background: #403838;
	color: #e7e6e6;
}
.discography {
	float: right;
	width: 167px;
}
article.album {
	float: left;
	width: 740px;
	background: transparent;
	overflow: hidden;
}
	body ul.ui-tabs-nav {
		overflow: auto;
		background: #f5f2e6;
		height: 444px;
		border: 3px solid #d9c29d;
		border-radius: 3px;
		color: #333;
		line-height: 0.95em;
	}
	body ul.ui-tabs-nav li.ui-state-active {
		background: transparent;
		border: 0;
	}
	body ul.ui-tabs-nav li a {
		color: #333;
		text-shadow: none;
	}
	body ul.ui-tabs-nav li {
		background: transparent;
	}
	body ul li.album-link {
		display: block;
		width: 100%;
		float: none;
		text-align: center;
	}
	body ul li.album-link a {
		display: block;
		float: none;
	}
	.album-link img {
		max-width: 110px;
	}
	.album-link h3 {
		font-size: 1.05em;
		margin: 5px 0 5px;
	}
	body .album {
		padding: 0;
	}
	.album .info {
		float: left;
		width: 228px;
	}
	.album .album-image {
		max-height: 211px;
		max-width: 211px;
	}
	.discography p {
		margin-bottom: 0px;
	}
	.album-image,
	body .ui-state-active .album-image {
		border: 3px solid #d9c29d;
		border-radius: 3px;
	}
	.discography .album-image {
		border-color: #fff;
	}
	.album .info h3 {
		font-size: 1.4em;
		margin-bottom: 0px;
		color: #ec754c;
		text-transform: capitalize;
	}
	.album .info p.date {
		margin-left:9px;
	}
	.album .song-list {
		overflow-y: auto;
		color: #373737;
		float: left;
		width: 510px;
		height: 450px;
		background: url(img/bg-album-texture.png);
	}
	.buy-links {
		padding-top: 10px;
	}
	.buy-links a {
		margin-right: 15px;
	}
	.song {
		position: relative;
		padding: 9px 15px 9px 100px;
		font-size: 1.1em;
		margin: 0 0 -3px;
		border-bottom: 1px dotted #b4b1a4;
	}

	.playing {
		background: #f7f5ee;
	}
	.T_mp3j {
		font-weight:normal;
	}
	.indi_mp3j {
		position: absolute;
		right: 75px;
		font-size: 0.8em;
		font-weight: normal;
	}
	.haiku-stop {
		display: none;
	}
	.haiku-container {
		width: 100%;
	}
	.lyrics {
		display: none;
		width: 600px;
		background: #fff;
		padding: 80px 60px;
		box-shadow: 2px 2px 15px #555;
		font-size: 0.75em;
		line-height: 1.8em;
	}
	.lyrics p {
		margin-bottom: 15px;
	}
	.lyrics h4 {
		font-size: 18px;
		margin-bottom: 24px;
	}
	.lyrics .close-modal {
		background: #953311;
		border-radius: 20px;
		position: absolute;
		top: 10px;
		right: 20px;
		color: #fff;
		padding: 4px 11px;
	}

	.lyrics .close-modal:hover {
		background: #574317;
	}
	#simplemodal-container {
		max-height: 800px;
	}

	.simplemodal-wrap {
		overflow-x: hidden !important;
	}
	.buttons_mp3j, .buttons_mp3jpause, .lyrics-link {
		background: url(img/icon-play.png) no-repeat;
		width: 28px;
		height: 28px;
		display: block;
		position: absolute;
		top: 7px;
		right: 40px;
		text-indent: -9999px;
		cursor: pointer;
	}
	.album-facebook {
		position: absolute;
		top: 11px;
		left: 8px;
	}

	body.page-template-music-php .fb_iframe_widget span, body.page-template-music-php .fb_iframe_widget span iframe {
		height: 20px !important;
		width: 78px !important;
	}
	.lyrics-link {
		background: url(img/icon-lyrics.png) no-repeat;
		right: 5px;
	}
	.buttons_mp3jpause {
		background: url(img/icon-pause.png) no-repeat;
	}

	.single-song {
		position: relative;
		background: url(img/bg-album-texture.png);
		border: 1px dotted #b4b1a4;
		padding: 9px 15px 9px 90px;
	}

/* -----------------------
   Gallery
-----------------------	*/
.ngg-navigation {
	position: absolute;
	top: 0;
	right: 15px;
}
body .ngg-navigation  a.prev,
body .ngg-navigation  a.next {
	border: 0;
	display: inline-block;
	width: 10px;
	padding: 0;
	margin: 0 10px;
	height: 25px;
	text-indent: -9999px;
	background: url(img/icon-arrow-left.png) 0 6px no-repeat;
}
body .ngg-navigation  a.next {
	margin: 0 0 0 10px;
	background: url(img/icon-arrow-right.png) 0 6px no-repeat;
}
body .ngg-navigation a.prev:hover {
	background: url(img/icon-arrow-left.png) 0 6px no-repeat;
	opacity: 0.5;
}
body .ngg-navigation  a.next:hover {
	background: url(img/icon-arrow-right.png) 0 6px no-repeat;
	opacity: 0.5;
}
body .ngg-navigation a.page-numbers:hover {
	background: transparent;
	color: #000;
}

/* -----------------------
   Footer
-----------------------	*/
.link-backtotop {
	display: block;
	text-align: center;
	margin: 44px 0 -8px;
	-webkit-transition: all .1s;
}
	.link-backtotop:hover {
		margin: 41px 0 -5px;
	}
.site-footer {
	position: relative;
	background: url('img/bg-footer.jpg') top center #1f1504;
	text-align: center;
	height: 330px;
	margin-bottom: -45px;
	min-width: 1000px;
}
	.site-footer a {
		color: #867f6e;
		-webkit-transition: color .4s;
		-moz-transition: color .4s;
	}
	.site-footer a:hover {
		color: #ca951b;
		-webkit-transition: color .2s;
		-moz-transition: color .2s;
	}
	.site-footer .current-menu-item a,
	.site-footer .current-menu-item a {
		color: #fff;
	}
	.site-footer .menu {
		padding-top: 50px;
	}
	.site-footer .menu li {
		display: inline-block;
		text-transform: lowercase;
		margin: 0 16px;
		font-size: 1em;
	}
	.site-footer .branding {
		border: 1px dashed #3a2d10;
		border-left: 0;
		border-right: 0;
		padding: 10px 0 15px;
		max-width: 700px;
		margin: 20px auto 10px;
	}
	.copyright {
		font-size: 0.78em;
		color: #4e3e19;
		margin-bottom: 4px;
	}
	.keebs-logo {
		display: block;
		width: 17px;
		height: 17px;
		margin: 7px auto 0;
		background: url('img/icon-keebs.png');
 		text-indent: -9999px;
	}
	.keebs-logo:hover {
		background-position: 0 17px;
	}
	.footer-logo {
		display: block;
		width: 30px;
		height: 123px;
		margin: 0 auto;
		background: url('img/logo-dcm-footer.png');
 		text-indent: -9999px;
	}
	.footer-logo:hover {
		background-position: 0 123px;
	}

/* -----------------------
   WordPress Classes
-----------------------	*/
.alignleft, .alignright {
	float: left;
	margin: 0 20px 5px 0;
	padding: 3px;
	border: 1px dashed #c9c9c9;
}
.alignright {
	float: right;
	margin: 0 0 20px 5px;
}
.error404 .site-wrapper h2 {
	font-size: 38px;
	text-align: center;
	padding: 40px 0;
}
.next-post {
	float: right;
}
.previous-post {
	float: left;
}

/* ----------------------------------------------------------------------------------------------------------
05 Media queries
---------------------------------------------------------------------------------------------------------- */
/* 400 and down */
@media screen and (max-width:400px) {
}

/* -----------------------
   Scroll
-----------------------	*/
body ::-webkit-scrollbar {
    width: 12px;
}

body ::-webkit-scrollbar-track {
    background: #eee;
}

body ::-webkit-scrollbar-thumb {
    background: #cdcdcd;
    border: 1px solid #eee;
}

/* -----------------------
   IE
-----------------------	*/
.ie7 .site-footer .menu li.menu-item,
.ie7 .site-header .menu li.menu-item,
 {
	display: inline;
}
.ie7 .site-header {
	margin-bottom: 20px;
}
.ie7 .row {
	overflow: hidden;
	background: none;
}
.ie7 .label-title {
	display: inline;
}
.ie7 .page-texture {
	overflow: hidden;
}

/* -----------------------
   Validation
-----------------------	*/
body span.wpcf7-not-valid-tip {
position: absolute;
top: -3px;
left: 5px !important;
width: 220px;
background:transparent;
border:0;
color:#bbb;
font-size:.9em;
}
body div.wpcf7-response-output {
margin: 2em 0.5em 0;
padding: 0.2em 1em 0;
}
body div.wpcf7-response-output {
border: 0;
bottom: 30px;
position: absolute;
right: 20px;
}
div.wpcf7 img.ajax-loader {
position: absolute;
left: -25px;
top: 13px;
}