/*
Theme Name: Apexify
Theme URI: http://niklasdahlqvist.com
Description: An HTML5 version of the Apexify theme based on <a href="http://elliotjaystocks.com/starkers/">Starkers</a> by <a href="http://elliotjaystocks.com/">Elliot Jay Stocks</a>.
Version: 5.0
Author: Niklas Dahlqvist
Author URI: http://niklasdahlqvist.com
Tags: starkers, html5, dark, clean, awesome
*/

/* ############################################### */
/* #	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%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ############################################### */
/* #	END RESET								 # */
/* ############################################### */

/* ############################################### */
/* #	GENERAL STYLES							 # */
/* ############################################### */

body {
    background-color: #121417;
    color: #c3c3c3;
    font-family: "Droid Sans", "Helvetica Neue", 'Helvetica', 'Arial', 'sans-serif';
    font-size: 12px;
    line-height: 20px;
    margin: 0;
    padding: 0;
    text-align: left;
}

.wrapper {
	position:relative;
	width: 100%;
}

/* If Boxed Layout is chosen */
body.boxed .wrapper {
	margin: 0 auto;
	width: 960px;
}

.content-container {
	margin: 0 auto;
	padding: 0 10px;
	position:relative;
	width: 940px;
}

a {
	color:#C70A10;
	text-decoration:none;
	
	-webkit-transition-property: color;
	-webkit-transition-duration: 0.25s;
	-webkit-transition-timing-function: linear;
	/* CSS TRANSITION - Mozilla hack */
	-moz-transition-property: color;
	-moz-transition-duration: 0.25s;
	-moz-transition-timing-function: linear;
	
	transition-property: color;
	transition-duration: 0.25s;
	transition-timing-function: linear;
}

a:hover {
	color:#454545;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Droid Serif",Georgia,Times,serif;
	color: #C70A10;
	margin:0 0 10px 0;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: #454545;
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
	color: #C70A10;
}

h1 {
	font-size: 28px;
	font-style: italic;
    font-weight: bold;
    letter-spacing: 2px;
    line-height:32px;
}
h2 {
	font-size: 24px;
	font-style: italic;
    font-weight: bold;
    letter-spacing: 2px;
    line-height:26px;
}
h3 {
	font-size: 21px;
}
h4 {
	font-size: 17px;
}
h5 {
	font-size: 16px;
}
h6 {
	font-size: 15px;
}

p {
	margin: 15px 0;
}
ol {
	margin-left: 35px;
}

strong {
	font-weight: bold;
}
em {
	font-style: italic;
}

.clear {
	clear:both;
}

span.date, p.date {
    color: #AAAAAA;
    font-family: Georgia,"Times New Roman",Times,serif;
    font-size: 14px;
    font-style: italic;
    margin: 0 0 15px;
}

h1.page-header {
	margin-bottom:20px;
}

/* ############################################### */
/* #	END GENERAL STYLES						 # */
/* ############################################### */

/* ############################################### */
/* #	HEADER STYLES						     # */
/* ############################################### */

header#site-header {
    background-color: #0D0F11;
    border-bottom: 1px solid #000000;
    height:140px;
}

header#site-header a.logo {
	float:left;
}

header#site-header nav {
    float: left;
    margin: 55px 0 0px 175px;
    position: relative;
}

header#site-header nav ul {
	position:relative;
}

header#site-header nav > ul > li {
	display:inline-block;
    margin: 0 20px 0 0;
    width:90px;
    float: left;
    padding-bottom:26px;
    border-bottom: 4px solid #0D0F11;
    position:relative;
    
    /* CSS TRANSITION */
	-webkit-transition-property: border;
	-webkit-transition-duration: 0.25s;
	-webkit-transition-timing-function: linear;
	/* CSS TRANSITION - Mozilla hack */
	-moz-transition-property: border;
	-moz-transition-duration: 0.25s;
	-moz-transition-timing-function: linear;
	
	-o-transition-property: border;
	-o-transition-duration: 0.25s;
	-o-transition-timing-function: linear;
	
	transition-property: border;
	transition-duration: 0.25s;
	transition-timing-function: linear;
    
}

header#site-header nav ul li > a {
    color: #C3C3C3;
    font-size: 12px;
    text-transform:uppercase;
    font-weight: normal;
    padding-bottom:26px;
}

header#site-header nav ul > li:last-child {
    margin-right: 0;
}

header#site-header nav > ul > li:hover, header#site-header nav > ul > li.current-menu-item, header#site-header nav > ul > li.current-menu-parent {
    border-bottom: 4px solid #c70a10;
}

header#site-header nav ul > li span.gfont { 
	display: block;
    margin-bottom: 15px;
}

header#site-header nav > ul > li span.subline {
	display:block;
	clear:both;
	color:#0D0F11;
	font-size:11px;
	font-weight:normal;
	
	/* CSS TRANSITION */
	-webkit-transition-property: color;
	-webkit-transition-duration: 0.25s;
	-webkit-transition-timing-function: linear;
	/* CSS TRANSITION - Mozilla hack */
	-moz-transition-property: color;
	-moz-transition-duration: 0.25s;
	-moz-transition-timing-function: linear;
	
	-o-transition-property: color;
	-o-transition-duration: 0.25s;
	-o-transition-timing-function: linear;
	
	transition-property: color;
	transition-duration: 0.25s;
	transition-timing-function: linear;
}

header#site-header nav > ul > li:hover span.subline {
	color:#888888;
}

header#site-header nav ul ul {
	position: absolute;
	top: -9999em;
	width: 240px; /* left offset of submenus need to match (see below) */
	background:#0D0F11;
}

header#site-header nav ul ul li { 
	width: 100%;
	border-top: 1px solid #222222;
    display: block;
    height: auto;
    margin: 0;
    padding:5px 0;
    position: relative;
	
}

header#site-header nav ul ul li:first-child {
	border-top: none;
}
 
header#site-header nav ul ul li a {
	margin-left:10px;
}

header#site-header nav ul ul li a:hover {
	color:#C70A10;
}

/*  Make sub menus appear */
header#site-header nav ul li:hover ul,
header#site-header nav ul li.sfHover ul {
	left: 0px;
	top: 85px; /* match top ul list item height */
	z-index: 350;
}

/* Hide all subs subs (4 levels deep) */
header#site-header nav ul li:hover li ul,
header#site-header nav ul li.sfHover li ul,
header#site-header nav ul li li:hover li ul,
header#site-header nav ul li li.sfHover li ul,
header#site-header nav ul li li li:hover li ul,
header#site-header nav ul li li li.sfHover li ul { top: -9999em; }

/* Displays all subs subs (4 levels deep) */
header#site-header nav ul li li:hover ul,
header#site-header nav ul li li.sfHover ul,
header#site-header nav ul li li li:hover ul,
header#site-header nav ul li li li.sfHover ul,
header#site-header nav ul li li li li:hover ul,
header#site-header nav ul li li li li.sfHover ul {
	left: 240px; /* match .nav ul width */
	top: -1px;
}

/* ############################################### */
/* #	END HEADER STYLES					     # */
/* ############################################### */

/* ############################################### */
/* #	CONTENT STYLES						     # */
/* ############################################### */

section#content {
    border-bottom: 1px solid #08090A;
    border-top: 1px solid #1B1E23;
    clear:both;
    overflow:hidden;
    padding: 40px 0;
    position:relative;
}

section#content article {
    clear: both;
    overflow: hidden;
    padding: 0px 0 30px;
}

section#content article header div.post-thumb {
    float: left;
    margin-right: 25px;
    margin-top: 10px;
}

.dalk-pagination, .ngg-navigation {
	clear:both;
	padding:20px 0;
	position:relative;
	font-size:11px;
	line-height:13px;
}

.dalk-pagination span, .dalk-pagination a {
	display:block;
	float:left;
	margin: 2px 2px 2px 0;
	padding:6px 9px 5px 9px;
	text-decoration:none;
	width:auto;
	color:#fff;
	background: #454545;
}

.dalk-pagination a:hover, .dalk-pagination span.current, section#content .ngg-navigation span.current, section#content .ngg-navigation a.next:hover {
	color:#fff;
	background: #0C0E10;
	border-bottom: 1px solid #C70A10;
}

.ngg-navigation {
    clear: both !important;
    display: block !important;
    font-size: 0.9em !important;
    padding-bottom: 2px;
    padding-top: 15px;
    text-align: center;
}
.ngg-navigation span {
    display:block;
	float:left;
	margin: 2px 2px 2px 0;
	padding:6px 9px 5px 9px;
	text-decoration:none;
	width:auto;
	color:#fff;
	background: #454545;
}
.dalk-pagination a, section#content .ngg-navigation a.page-numbers, section#content a.page-numbers.span, section#content .ngg-navigation a.next, section#content .ngg-navigation a.prev, section#content .ngg-navigation span.page-numbers, section#content .ngg-navigation span.next, section#content .ngg-navigation span.prev, section#content .ngg-navigation span, section#content .ngg-navigation a.page-numbers {
    display:block;
	float:left;
	margin: 2px 2px 2px 0;
	padding:6px 9px 5px 9px;
	text-decoration:none;
	width:auto;
	color:#fff;
	background: #454545;
	border:none;
	border-bottom: 1px solid #454545;
}

section#content .ngg-navigation a.page-numbers:hover, section#content .ngg-navigation a.prev:hover {
	 border-bottom: 1px solid #A0C62C;
	 color: #E09B4F;
	 background:#181B1F;
}

/* ############################################### */
/* #	END CONTENT STYLES					     # */
/* ############################################### */

/* ############################################### */
/* #	SIDEBAR STYLES						     # */
/* ############################################### */

aside .widget {
    clear: both;
    float: left;
    margin-bottom: 20px;
    width: 100%;
}

aside h3.widget-title {
	background: url('style/images/widgettitle-bg.png') no-repeat scroll top left;
	font-family: "Droid Sans", "Helvetica Neue", 'Helvetica', 'Arial', 'sans-serif';
	font-size:12px;
	line-height:20px;
	color:#C3C3C3;
	padding-top:10px;
	text-transform:uppercase;
	
}

aside .widget ul {
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
    margin-left: 0;
    margin-top: -12px;
}

aside .widget.widget_categories ul li a {
    color: #999;
    display: block;
    padding-bottom: 6px;
    padding-left: 17px;
    padding-right: 6px;
    padding-top: 6px; 
}

aside .widget ul li a:hover, aside .widget ul li.current_page_item a, aside .widget ul li.current_cat_item a {
	color:#C70A10;
}

aside .widget ul li a {
	color: #999;
    padding-bottom: 6px;
    padding-left: 17px;
    padding-right: 6px;
    padding-top: 6px; 
}



/* ############################################### */
/* #	END SIDEBAR STYLES					     # */
/* ############################################### */

/* ############################################### */
/* #	FOOTER STYLES						     # */
/* ############################################### */

footer#upper-footer {
    background-color: #0C0E10;
    border-bottom: 1px solid #08090A;
    border-top: 1px solid #181B1F;
    padding: 20px 0;
    overflow:hidden;
}

footer#lower-footer {
    background-color: #121417;
    border-top: 1px solid #1B1E23;
    height: 52px;
    overflow:hidden;
}

footer#upper-footer .widget {
    clear: both;
    float: left;
    width: 100%;
}

footer#upper-footer h3.widget-title {
	background: url('style/images/widgettitle-bg.png') no-repeat scroll top left;
	font-family: "Droid Sans", "Helvetica Neue", 'Helvetica', 'Arial', 'sans-serif';
	font-size:12px;
	line-height:20px;
	color:#C3C3C3;
	padding-top:10px;
	text-transform:uppercase;
	
}

footer#upper-footer .widget ul {
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
    margin-left: 0;
    margin-top: -12px;
}

footer#upper-footer .widget ul li a {
    color: #999;
}

footer#upper-footer .widget ul li a:hover, footer#upper-footer .widget ul li.current_page_item a, footer#upper-footer .widget ul li.current_cat_item a {
	color:#C70A10;
}

/* ############################################### */
/* #	END FOOTER STYLES					     # */
/* ############################################### */

/* ############################################### */
/* #	BRAND STYLES						     # */
/* ############################################### */

ul.brand-list li {
	width:150px;
	float:left;
	margin-left:95px;
}

ul.brand-list li:first-child, ul.brand-list li.brand-1 {
	margin-left:0px;
	clear:left;
}

ul.brand-list li h2 {
	font-size:14px;
	text-align:center;
}

h1.brand-title {
	line-height:36px;
	float:left;
}

ul.brand-social {
	float:right;
}

ul.brand-social li {
	float:left;
	margin-left:25px;
	display:block;
	line-height:36px;
}

ul.brand-social li a.facebook {
	background: url('style/images/brand-social.png') no-repeat 0 0; 
	width: 37px; 
	height: 36px;
	text-indent:-9999px;
	display:block;
}

ul.brand-social li a.twitter {
	background: url('style/images/brand-social.png') no-repeat -44px 0; 
	width: 37px; 
	height: 36px;
	text-indent:-9999px;
	display:block;
}

ul.brand-social li a.facebook:hover {
	background: url('style/images/brand-social.png') no-repeat -1px -39px; 
	width: 37px; 
	height: 37px;
	text-indent:-9999px;
	display:block;
}

ul.brand-social li a.twitter:hover {
	background: url('style/images/brand-social.png') no-repeat -44px -39px;
	width: 37px; 
	height: 37px;
	text-indent:-9999px;
	display:block;
}

div.brand-content {
	clear:both;
}

section#content img {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

/* ############################################### */
/* #	GENERAL STRUCTURE STYLES				 # */
/* ############################################### */

body.layout-2cr section#main-content, body.layout-3cr section#main-content {
	float:left;
	width:640px;
	margin-right:20px;
}

body.layout-2cl section#main-content, body.layout-3cl section#main-content {
	float:right;
	width:640px;
	margin-left:20px;
}

body.layout-3cm section#main-content {
	margin-left:140px;
	width:640px;
}

/* ############################################### */
/* #	END GENERAL STRUCTURE STYLES			 # */
/* ############################################### */

/* ############################################### */
/* #	SIDEBAR STRUCTURE STYLES			 	 # */
/* ############################################### */

body.layout-2cr section#content aside#pirmary-sidebar {
	float:right;
	width:240px;
	margin-left:20px;
}

body.layout-2cl section#content aside#pirmary-sidebar {
	float:left;
	width:240px;
	margin-right:20px;
	
}

body.layout-3cm section#content aside#pirmary-sidebar {
	position: absolute;
	left:20px;
	top:0;
	width:120px;
	margin-right:20px;
}

body.layout-3cm section#content aside#secondary-sidebar {
	position: absolute;
	right:20px;
	top:0;
	width:120px;
	margin-left:20px;
}

body.layout-3cr section#content aside#pirmary-sidebar {
	float:right;
	width:120px;
	margin-left:20px;
}

body.layout-3cr section#content aside#secondary-sidebar {
	float:left;
	width:120px;
}

body.layout-3cl section#content aside#pirmary-sidebar {
	float:left;
	width:120px;
	margin-right:20px;
}

body.layout-3cl section#content aside#secondary-sidebar {
	float:right;
	width:120px;
}

/* ############################################### */
/* #	END SIDEBAR STRUCTURE STYLES		 	 # */
/* ############################################### */

/* ############################################### */
/* #	MEDIA QUERIES							 # */
/* ############################################### */

@media (max-width: 1200px) {

}

@media (max-width: 1024px) { 

}

@media (max-width: 860px) { 

}

/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {

}

/* Smartphones (landscape) ----------- */
@media only screen
and (min-width : 321px) {
	
}

/* Smartphones (portrait) ----------- */
@media only screen
and (max-width : 320px) {

}

/* iPads (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px) {

}

/* iPads (landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {

}

/* iPads (portrait) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {

}

/* iPhone 4 ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {

}

/* ############################################### */
/* #	END MEDIA QUERIES						 # */
/* ############################################### */ 

/* ############################################### */
/* #	WORDPRESS CLASSES						 # */
/* ############################################### */

.aligncenter	{ display: block; margin: 0 auto; }
.alignleft		{ float: left; margin: 0 20px 20px 0; }
.alignright		{ float: right; margin: 0 0 20px 20px; }


img.alignleft {
    float: left;
    margin: 10px 25px 20px 0;
}
img.alignright {
    display: block;
    margin: 10px 0 25px 20px;
}
img.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
}
.wp-caption.alignleft {
    margin: 10px 20px 20px 0;
    text-align: left;
}
.wp-caption.alignleft .wp-caption-text {
    text-align: left;
}
.wp-caption-text {
    padding-bottom: 5px;
}
.wp-caption {
    color: #999999;
    font-size: 11px;
    font-style: italic;
    margin: 10px 0 20px 20px;
    text-align: right;
}
.wp-caption img, .wp-caption img a {
    border: 0 none;
    margin: 0;
    padding: 0;
}
.wp-caption-text {
    font-family: "Droid Serif",Georgia,Times,serif;
    margin: 0;
    text-align: right;
}

/* ############################################### */
/* #	END WORDPRESS CLASSES					 # */
/* ############################################### */

/* tabbed list */
ul.tabs_login {
	padding: 0; margin: 20px 0 0 0;
	position: relative;
	list-style: none;
	font-size: 14px;
	z-index: 1000;
	float: left;
	}
ul.tabs_login li {
	border: 1px solid #E7E9F6;
	 -webkit-border-top-right-radius: 10px;
	 -khtml-border-radius-topright: 10px;	
	 -moz-border-radius-topright: 10px;
	border-top-right-radius: 10px;
	 -webkit-border-top-left-radius: 10px;
	 -khtml-border-radius-topleft: 10px;	
	 -moz-border-radius-topleft: 10px;
	border-top-left-radius: 10px;
	line-height: 28px; /* = */ height: 28px;
	padding: 0; margin: 0 5px 0 0;
	position: relative;
	background: #fff;
	overflow: hidden;
	float: left;
	}
ul.tabs_login li a {
	text-decoration: none;
	padding: 0 10px;
	display: block;
	outline: none;
	}
html ul.tabs_login li.active_login {
	border-left: 1px solid #E7E9F6;
	border-bottom: 1px solid #fff;
	 -webkit-border-top-right-radius: 10px;
	 -khtml-border-radius-topright: 10px;	
	 -moz-border-radius-topright: 10px;
	border-top-right-radius: 10px;
	 -webkit-border-top-left-radius: 10px;
	 -khtml-border-radius-topleft: 10px;	
	 -moz-border-radius-topleft: 10px;
	border-top-left-radius: 10px;
	background: #fff;
	color: #333;
	}
html body ul.tabs_login li.active_login a { font-weight: bold; }
.tab_container_login {
	background: #fff;
	position: relative;
	margin: 0 0 20px 0;
	border: 1px solid #E7E9F6;
	 -webkit-border-bottom-left-radius: 10px;
	 -khtml-border-radius-bottomleft: 10px;	
	 -moz-border-radius-bottomleft: 10px;
	border-bottom-left-radius: 10px;
	 -webkit-border-bottom-right-radius: 10px;
	 -khtml-border-radius-bottomright: 10px;	
	 -moz-border-radius-bottomright: 10px;
	border-bottom-right-radius: 10px;
	 -webkit-border-top-right-radius: 10px;
	 -khtml-border-radius-topright: 10px;	
	 -moz-border-radius-topright: 10px;
	border-top-right-radius: 10px;
	z-index: 999;
	float: left;
	width: 100%;
	top: -1px;
	}
.tab_content_login {
	padding: 7px 15px 15px 15px;
	padding-top: 10px;
	}
	.tab_content_login ul {
		padding: 0; margin: 0 0 0 15px;
		}
		.tab_content_login li { margin: 5px 0; }
/* global styles */
#login-register-password {}
	#login-register-password h3 {
		border: 0 none;
		margin: 10px 0;
		padding: 0;
		}
	#login-register-password p {
		margin: 0 0 15px 0;
		padding: 0;
		}
/* form elements */
.wp-user-form {}
	.username, .password, .login_fields {
		margin: 7px 0 0 0;
		overflow: hidden;
		width: 100%;
		}
		.username label, .password label { float: left; clear: none; width: 25%; }
		.username input, .password input { 
			font: 12px/1.5 "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
			float: left; clear: none; width: 200px; padding: 2px 3px; color: #777;
			}
.rememberme { overflow: hidden; width: 100%; margin-bottom: 7px; }
#rememberme { float: left; clear: none; margin: 4px 4px -4px 0; }
.user-submit { padding: 5px 10px; margin: 5px 0; }
.userinfo { float: left; clear: none; width: 75%; margin-bottom: 10px; }
	.userinfo p { 
		margin-left: 10px; 
		}
.usericon { float: left; clear: none; width: 15%; margin: 0 0 10px 22px; }
	.usericon img {
		border: 1px solid #F4950E;
		padding: 1px;
		}
		
/* Calander Widget ----------------------*/
.widget_calendar caption { margin-bottom: 5px; }

.widget_calendar table { width: 100% }

/* Twitter Widget -----------------------*/

#twitter-holder {
	background: url(images/ajax-loader.gif) no-repeat center;
	min-height: 20px;
}

aside .widget.zilla_tweet_widget ul {
	margin: 0;
	list-style-type: none;
}

aside .widget.zilla_tweet_widget ul.twitter li { padding: 0 0 18px 0; }

aside .widget.zilla_tweet_widget ul.twitter li > span { display: block; }

aside .widget.zilla_tweet_widget a { 
border-bottom: none;
font-size: 11px !important;
color:#999;
}

aside .widget.zilla_tweet_widget span a {
font-size: 12px!important;
}



.nd_widget_recent_entries_with_thumbs ul li {
	float:left;
	width:280px;
	margin-left:25px;
	margin-top:10px;	
}

.nd_widget_recent_entries_with_thumbs ul li:first-child {
	margin-left:0px;
}

.nd_widget_recent_entries_with_thumbs ul li a img {
	display:block;
	margin:0 auto;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.nd_widget_recent_entries_with_thumbs ul li a {
	padding:0;
}

.nd_widget_recent_entries_with_thumbs ul li h3 {
	font-size: 16px;
    font-style: italic;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 24px;
    text-align:center;
}

.nd_widget_recent_entries_with_thumbs ul li p.date {
	text-align:center;
}

table.location_search {
	width:100%;
}

table.location_search td {
	padding:10px;
	width:300px;
}

/* Common Form Elements ----------------------------*/

input,
textarea, select,
button {
	background: #fff;
	border: 1px solid #bfc2c4;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0 1px 4px rgba(0,0,0,.15) inset;
	-moz-box-shadow: 0 1px 4px rgba(0,0,0,.15) inset;
	box-shadow: 0 1px 4px rgba(0,0,0,.15) inset;
	color: #8d8f8f;
	font: 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
}

input,
textarea { 
    padding: 5px 10px; 
    width: 215px;
    font-family: 'PT Serif', Serif;
}

.ie input { 
    height: 22px;
    padding: 3px 10px;
}

input:focus,
textarea:focus,
button:hover {
	background: #fff;
	border-color: #a5a7a8;
	color: #43474c;
}

.contactform { margin-left: 0; }

.contactform li { list-style-type: none; }

.contactform li label {
	display: block;
	margin-bottom: 10px;
}

.contactform li input[type="text"] {
	width: 300px;
	margin-bottom: 15px;
}

.contactform li textarea {
	width: 676px;
	height: 200px;
	margin-bottom:15px;
}

input[type=submit], button[type=submit], .btn, #slideshow a.prev, #slideshow a.next  {
	background-color: #D14836;
	background-image: -moz-linear-gradient(top, #DD4B39, #D14836);
	background-image: -ms-linear-gradient(top, #DD4B39, #D14836);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#DD4B39), to(#D14836));
	background-image: -webkit-linear-gradient(top, #DD4B39, #D14836);
	background-image: -o-linear-gradient(top, #DD4B39, #D14836);
	background-image: linear-gradient(top, #DD4B39, #D14836);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#DD4B39', endColorstr='#D14836', GradientType=0);
	border-color: #C53727;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);

	-webkit-box-shadow:	0 1px 2px rgba(0,0,0,.15);
	-moz-box-shadow:	0 1px 2px rgba(0,0,0,.15);
	box-shadow:			0 1px 2px rgba(0,0,0,.15);
	
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
	padding: 3px 9px;
	
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	
	color: #ffffff;
	text-transform: uppercase;
	font-weight:bold;
	font-size:11px;
	
	cursor:pointer;
}

input[type=submit]:hover, button[type=submit]:hover, .btn:hover, #slideshow a.prev:hover, #slideshow a.next:hover {
	background-color: #C53727;
	background-image: -moz-linear-gradient(top, #dd4b39, #c53727);
	background-image: -ms-linear-gradient(top, #dd4b39, #c53727);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#dd4b39), to(#c53727));
	background-image: -webkit-linear-gradient(top, #dd4b39, #c53727);
	background-image: -o-linear-gradient(top, #dd4b39, #c53727);
	background-image: linear-gradient(top, #dd4b39, #c53727);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dd4b39', endColorstr='#c53727', GradientType=0);
	border-color: #B0281A;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);

	-webkit-box-shadow:	0 1px 3px rgba(0,0,0,.27);
	-moz-box-shadow:	0 1px 3px rgba(0,0,0,.27);
	box-shadow:			0 1px 3px rgba(0,0,0,.27);
	
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
	color:#FFF;
	
}
input[type=submit]:active, button[type=submit]:active, .btn:active, #slideshow a.prev:active, #slideshow a.next:active {
	-webkit-box-shadow:	inset 0 1px 4px rgba(0,0,0,.3);
	-moz-box-shadow:	inset 0 1px 4px rgba(0,0,0,.3);
	box-shadow:			inset 0 1px 4px rgba(0,0,0,.3);
}





.contactform li button { float: right; }

span.error { color: red; }

.slide a img {
	width:640px;
	height:320px;
	float:left;
}

.slide .slider-desc {
	float:right;
	width:260px;
	padding:5px 20px;
	height:310px;
}

#slideshow, .slides_container {
	background:#121417;
	width:940px;
	height:320px;
	position:relative;
}

#slideshow a.prev {
	position:absolute;
	right:80px;
	top:300px;
	z-index:15;
	font-size:10px;
	padding: 2px 5px;
}

#slideshow a.next {
	position:absolute;
	right:20px;
	top:300px;
	z-index:15;
	font-size:10px;
	padding: 2px 5px;
}

.random-brands {
	width:940px;
	padding:50px 0 25px 0;
	overflow:hidden;
}

.random-brands ul {
	float: right;
    margin-top: 50px;
    width: 640px;
}

.random-brands ul li {
	float:left;
	margin-left:95px;
	width:150px;
}

.random-brands ul li:first-child {
	margin-left:0px;
}

.random-brands ul li h3 {
	font-size: 16px;
    font-style: italic;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 24px;
    text-align: center;
}

.side-content {
    float: left;
    line-height: 20px;
    margin: 0 20px 0 0;
    width: 220px;
}

section#content section#main-content .ngg-gallery-thumbnail img {
	background-color: none;
    border: none;
    display: block;
    margin: 4px 0 4px 5px;
    padding: 0px;
    position: relative;
}