/* 
	Theme Name: Music Hackspace 2017
	Theme URI: http://www.musichackspace.com/
	Description: New Music Hackspace theme for the Somerset age (modified from: Free Structure Theme by David Morgan and Jeff Milone of Organic Themes.)
	Author: Organic Themes / Daniel Lopez
	Author URI: http://www.musichackspace.com/
	Version: 1.0
	Tags: white, black, yellow, fixed-width, two-columns, three-columns, right-sidebar, left-sidebar, theme-options, custom-header, custom-background, custom-menu, threaded-comments
	
	The PHP and XHTML are released under the GPL:
	http://www.opensource.org/licenses/gpl-license.php
*/

body {
    background: #FFF;
    color: #333333;

    margin: 0;
    padding: 0;

    font-family: 'Roboto', sans-serif;
}

#wrap {
    /* Set central column width and centre it */
	max-width: 1100px;
	margin: auto;

    /* Top/bottom and (in retrospect unnecessary) side padding */
    box-sizing: border-box;
	padding: 1em;
}

/* + Header {{{ */

#title {
	margin: 0px;
}

#title a:focus, #title a:hover, #title a:active {
	background: none;
}

/* Contains the now hidden search box
.headerright {
	float: right;
	display: block;
	background: #000000;
	width: 200px;
	height: 30px;
	z-index: 8;
}
*/
	
/* + }}} */

/* + Main menu {{{ */

#navbar {
	margin: 0;
	padding: 20px 0px 0px 0px;

	height: 40px;
	font-size: 0.91em; /*11px;*/
	text-transform: uppercase;

    border-bottom: solid black 1px;
}

.menu {
	list-style:	none;
}
.menu ul {
	margin: 0px;
	padding: 0px;
}
.menu li {
	float: left;
	position: relative;
}
.menu a {
	display: block;
	position: relative;

	padding: 17px 10px 8px 10px;
	text-decoration: none;
	font-style: normal;
	font-weight: bold;
	line-height: 11px;
}

/* + + Cruft left over from the old theme {{{ */

.menu ul ul, ul.menu ul {
	position: absolute;
	top: -9999px;
	width: 180px; /* left offset of submenus need to match (see below) */
}
.menu ul li ul li, ul.menu ul li {
	width: 100%;
	border: none;
	margin: 0px 0px 0px 0px;
}
.menu li:hover {
	visibility:	inherit; /* fixes IE7 'sticky bug' */
}
.menu li:hover ul,
.menu li.sfHover ul {
	left: 0;
	top: 41px; /* match top ul list item height */
	z-index: 99;
}
ul.menu li:hover li ul,
ul.menu li.sfHover li ul {
	top: -9999px;
}
ul.menu li li:hover ul,
ul.menu li li.sfHover ul {
	left: 180px; /* match ul width */
	top: 0;
}
ul.menu li li:hover li ul,
ul.menu li li.sfHover li ul {
	top: -9999px;
}
ul.menu li li li:hover ul,
ul.menu li li li.sfHover ul {
	left: 180px; /* match ul width */
	top: 0;
}

.menu .current_page_item a {
	color: #000000 !important;
	border-bottom: 4px solid #000000;
}
.menu .current_page_item li a, 
.menu li .current_page_item a {
	color: #FFFFFF !important;
	background: #000000;
	border-bottom: none;
}
.menu li li a, .menu li li a:visited {
	color: #666666;
	padding: 8px 10px 6px 10px;
	text-decoration: none;
	text-transform: none;
	text-shadow: none;
	border: none;
}
.menu a, .menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color: #666666;
}
.menu a:focus, .menu a:hover, .menu a:active {
	background:	none;
	border-bottom: 4px solid #000000;
	color: #000000;
	outline: 0;
}
.menu li {
	background: none;
}
.menu li li {
	background:	#FFFFFF;
	border: none;
}
.menu li li li {
	background:	#FFFFFF;
	border: none;
}
.menu li:hover, .menu li.sfHover {
	background:	none;
	border-bottom: none;
	outline: 0;
}
.menu li li:hover, .menu li li.sfHover {
	background:	#000000;
	color: #FFFFFF;
	border: none;
	outline: 0;
	padding: 0px;
}
.menu li li a:focus, .menu li li a:hover, .menu li li a:active {
	background:	#000000;
	color: #FFFFFF;
	border-bottom: none;
	outline: 0;
}

/* + + }}} */

/* + }}} */

/* + Front page {{{ */

/* + + Video {{{ */

/* Trick to set video height from width according to a particular aspect ratio
   See https://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php */
/*
.video_aspect_16_9 {
	position: relative;
	padding-bottom: 56.25%;  /* 16:9 *\/
	padding-top: 0;
	height: 0;
}
.video_aspect_16_9 iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
*/

.video_aspect_16_9 {
	height: 50vh;
}
.video_aspect_16_9 iframe {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* + + + Overlaid preview image {{{ */

.video_aspect_16_9 {
    overflow: hidden;
    position: relative;
}

.video_embed_preview {
    background-image: url("images/video_preview.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;

    /* Center vertically */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    /**/
    cursor: pointer;
}

.video_embed_playButton {
    background-image: url("images/play_button.svg");
    background-size: cover;
    width: 74px;
    height: 74px;

    /* Center horizontally and vertically */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /**/
    cursor: pointer;
}
.video_embed_playButton:hover {
    background-image: url("images/play_button_inverted.svg");
}

/*
#mhs_video {
    z-index: -100;
}
.video_embed_preview {
    z-index: 100;
}
.video_embed_playButton {
    z-index: 101;
}
*/

/* + + + }}} */

/* + + }}} */


.home #sidebar_right {
    margin-top: 1.17em;
}



#homepage {
	clear: both;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
#homepage p {
	margin: 0px;
	padding: 0px 0px 10px 0px;
}
	

.homepagemid {
    margin: 1.17em 0 0 0;
	padding: 0px;
    overflow: hidden;  /* be in block formatting context */

	display: flex;
}

.homepagecolumn {
    /* Make columns equal width */
    flex-grow: 1;
    flex-basis: 0;

    /* Gap between columns */
    margin-right: 2em;
}
.homepagecolumn:last-child {
    /* For last column, deduct 1em left-margin of right sidebar */
    margin-right: 1em;
}

.homepagecolumn img {
    max-width: 100%;
    height: auto;
}

/* + }}} */

/* + General content as in eg. blog post {{{ */

#content {
	//float: left;
	display: block;
	//width: 960px;
	//width: 100%;
	margin: 0px auto 0px;
	padding: 18.4px 0px 0px 0px;
	//border-top: 1px solid #000000;
}
#contentleft {
	display: block;
	margin: 0;
    overflow: hidden;  /* be in block formatting context */
}

#content h4 {
    /*
	color: #000000;
	font-size: 12px;
	font-weight: bold;
	font-style: normal;
	font-family:'Roboto', sans-serif;
	margin: 0px 0px 5px 0px;
	padding: 0px 0px 0px 0px;
	line-height: 16px;
    */
}

#content .posttitle h3 {
	/*text-transform: uppercase;*/
    font-size: 2em;
    margin: 0;
}
.posttitle {
    margin: 0;
	border-bottom: 5px solid #000000;
	padding: 0px 0px 1em 0px;
	margin: 0px 0px 1em 0px;
}
/*
.postauthor {
	margin: -5px 0px 5px 0px;
	padding: 0px 0px 0px 0px;
}
*/
.postauthor p {
	color: #999999;
	padding: 0px 0px 0px 0px;
}
.postmeta {
	margin: 1.15em 0px 0 0px;
	padding: 1.15em 10px 0 10px;
	border-top: 5px solid #000000;
}
.postmeta p {
	margin: 0px;
	padding: 0px;
}

/* + }}} */

/* + Single post {{{ */

body.single-post .posttitle {
    margin: 0;
	padding: 0;
	margin: 0;
    float: left;
	border-bottom: none;
}
body.single-post .postauthorandmeta {
	color: #999999;
	padding: 0 0 1.5em 0.5em;
    text-align: right;
    float: right;
}

/* + }}} */

/* + Archive index {{{ */

.current-archive {
    font-weight: bold;
}

/* + }}} */

/* + Category index {{{ */

.current-cat {
    font-weight: bold;
}

/* + }}} */

/* + What's on {{{ */

#whatson_left_sidebar {
    float: left;
    width: 25%;
    margin-right: 2em;
}

.whatson_selected_category {
    font-weight: bold;
    /*
    background-color: black;
    color: white;
    */
}
.whatson_deselect_category {
    font-weight: bold;
    /*
    background-color: black;
    color: white;
    */
    text-decoration: none;
    color: #777;
    padding: 0 4px;
}

#whatson_preset_queries {
    text-align: left;
    margin-right: 1em;
}

#whatson_main_content {
    overflow: hidden;  /* be in block formatting context */
}

.event_list {
    list-style-type: none;
    padding: 0;
}

.event_list a {
    text-decoration: none;
}
.event_list li {
    overflow: hidden;  /* contain floats */
    padding: 0.5em 0;
    border-bottom: 1px solid #ccc;
}
.event_list li:hover {
    background-color: #f8f8f8;
}

.event_list li div {
    float: left;
}

.event_list_time {
    width: 19%;
    font-weight: 300;
    padding-right: 1%;
}
.event_list_content {
    width: 56%;
    padding-right: 1%;
}
.event_list_venue {
    width: 12%;
    padding-right: 1%;
    font-weight: 300;
}
.event_list_tickets {
    width: 10%;
    font-weight: 300;
    text-align: right;
}

/* + }}} */

/* + Blog index {{{ */

#blog_left_sidebar {
    float: left;
    width: 25%;
    margin-right: 2em;
}

#blog_preset_queries {
    text-align: left;
    margin-right: 1em;
}

#blog_main_content {
    overflow: hidden;  /* be in block formatting context */
}

.entry-title {
    margin-bottom: 0.1em;
}

.entry-meta {
    //float: right;
    margin-bottom: 1em;
}

.post-thumbnail img {
    max-width: 100%;
    height: auto;
}

.navigation {
    background-color: #ddd;
    padding: 1em;
    text-align: left;
}

/* + }}} */

/* + Hidden things {{{ */

/* For screen readers */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* + }}} */

/* OLD */

/************************************************
*	Common									*
************************************************/

.hidden {
	display: none;
	}
.clear {
	clear: both;
	}

/************************************************
*	Hyperlinks									*
************************************************/

a, a:visited {
	color: #000000;
	text-decoration: underline;
	}
a:focus, a:hover, a:active {
	color: #000000;
	outline: none;
	text-decoration: none;
	background: #FFFF00;
	}
a img {
	border: none;	
	}

/*** ARROWS **/

.menu a.sf-with-ul {
	padding-right: 2.25em;
	min-width: 1px; /* trigger IE7 hasLayout so spans position accurately */
	}
.sf-sub-indicator {
	position: absolute;
	display: block;
	right: 10px;
	top: 16px; /* IE6 only */
	width: 10px;
	height:	10px;
	text-indent: -9999px;
	overflow: hidden;
	background:	url(images/arrows-ffffff.png) no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
	}
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top: 16px;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
	}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
	background-position: -10px -100px; /* arrow hovers for modern browsers*/
	}
/* point right for anchors in subs */
.menu ul ul .sf-sub-indicator, ul.menu ul .sf-sub-indicator { 
	background-position:  -10px 0; 
	}
.menu ul ul a > .sf-sub-indicator, ul.menu ul a > .sf-sub-indicator { 
	top: 7px;
	background-position:  0 0; 
	}
/* apply hovers to modern browsers */
.menu ul ul a:focus > .sf-sub-indicator,
.menu ul ul a:hover > .sf-sub-indicator,
.menu ul ul a:active > .sf-sub-indicator,
.menu ul ul li:hover > a > .sf-sub-indicator,
.menu ul ul li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
	}
/*** shadows for all but IE6 ***/
.sf-shadow ul ul {
	background:	none;
	padding: 0 8px 9px 0;
	-moz-border-radius-bottomleft: 17px;
	-moz-border-radius-topright: 17px;
	-webkit-border-top-right-radius: 17px;
	-webkit-border-bottom-left-radius: 17px;
	}
.sf-shadow ul.sf-shadow-off {
	background: transparent;
	}

/************************************************
*	Content 					     		    * 
************************************************/

#contentwide {
	//float: left;
	display: block;
	background:#FFFFFF;
	//width: 960px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	}
#contentarchive {
	float: left;
	display: block;
	background: #none;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	}
#contentarchive .postarea {
	width: 440px;
	margin: 0px;
	padding: 0px;
	}
#contentarchive .postimg {
	display: block;
	background: #EEEEEE;
	padding: 0px;
	margin: 0px 0px 5px 0px;
	overflow: hidden;
	}
#content h1, #content h2 {
	color: #999999;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 36px;
	font-weight: normal;
	font-style: italic;
	line-height: 42px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	}
#content h1 a, #content h2 a {
	color: #999999;
	text-decoration: none;
	border: none;
	}
#content h1 a:hover, #content h2 a:hover {
	color: #000000;
	text-decoration: none;
	border: none;
	}
#content h3 a, #content h4 a {
	color: #000000;
	font-style: normal;
	text-decoration: none;
	border: none;
	}
#content h3 a:hover, #content h4 a:hover {
	color: #000000;
	text-decoration: none;
	border: none;
	}
#content h5 {
	color: #000000;
	font-size: 16px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	font-style: italic;
	text-transform: none;
	margin: 10px 0px 5px 0px;
	padding: 0px;
	line-height: 20px;
	}
#content h6 {
	color: #000000;
	font-size: 16px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	font-style: italic;
	text-transform: none;
	margin: 8px 0px 0px 0px;
	padding: 0px 0px 2px 0px;
	line-height: 20px;
	border-bottom: 1px solid #000000;
	}
#content h5 a, #content h6 a {
	color: #000000;
	text-decoration: none;
	border: none;
	}
#content h5 a:hover, #content h6 a:hover {
	color: #666666;
	text-decoration: none;
	border: none;
	}
#contentleft img.wp-smiley {
	float: none;
	border: none;
	padding: 0px;
	margin: 0px;
	}
#contentleft img.wp-wink {
	float: none;
	border: none;
	padding: 0px;
	margin: 0px;
	}
#postblock {
	float: left;
	width: 100%;
	border-bottom:1px solid #dddddd;
	padding: 0px 0px 5px 0px;
	margin: 0px 0px 5px 0px;
	}
.postarea p {
	padding: 5px 0px 5px 0px;
	margin: 0px;
	}
.postarea a img.nothumb {
	margin: 15px 0px 0px 0px;
	}
.postarea hr {
	border:0;
	width:100%;
	height:1px;
	color:#ddd;
	background-color:#ddd;
	margin:5px 0 8px 0;
	padding: 0;
	}
.postarea ol {
	margin: 0px 0px 0px 20px;
	padding: 0px 0px 10px 0px;
	}
.postarea ol li {
	margin: 0px 0px 0px 20px;
	padding: 0px 0px 5px 0px;
	}
.postarea ul {
	list-style-type: none;
	margin: 0px 0px 0px 0px;
	padding: 10px 0px 10px 0px;
	}
.postarea ul ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px 0px 0px 0px;
	}
.postarea ul li {
    list-style: inside;
    list-style-type: square;
	background: none;
	padding: 0px 0px 0px 15px;
	margin: 0px 0px 5px 0px;
	}
.postarea ul ul li {
	background: none;
	padding: 0px 0px 0px 15px;
	margin: 0px 0px 5px 0px;
	}
blockquote {
	font-size: 24px;
	font-style: italic;
	line-height: 28px;
	margin: 15px 25px 15px 25px;
	padding: 0px 25px 0px 10px;
	border-left: 2px solid #C0C0C0;
	}
#content blockquote p {
	margin: 0px;
	padding: 10px 0px 10px 0px;
	}
#prevLink {
	float: left;
	}
#nextLink {
	float: right;
	}
#prevLink p, #nextLink p {
	padding: 0px;
	}
code {
	color: #222222;
	background: #EAEAEA;
	font-size: 11px;
	margin: 0px;
	padding: 10px;
	display: block;
	font-family: Verdana, Tahoma, Verdana;
	}
#content .archive {
	float: left;
	width: 310px;
	margin: 0px 0px 0px 0px;
	padding: 10px 10px 10px 0px;
	}
.gallery-caption {
	margin: 0px;
	padding: 5px;
	}

/************************************************
*	Images  					     		    * 
************************************************/

img.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
	padding: 0px;
	}
img.alignnone {
	padding: 0px;
	margin: 5px 0px 5px 0px;
	display: block;
	}
img.alignright {
	padding: 0px;
	margin: 0px 0px 10px 10px;
	display: inline;
	}
img.alignleft {
	padding: 0px;
	margin: 0px 10px 10px 0px;
	display: inline;
	}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
	}
.alignright {
	float: right;
	margin: 10px 0px 10px 10px;
	}
.alignleft {
	float: left;
	margin: 10px 10px 10px 0px;
	}
.wp-caption {
	text-align: center;
	background-color: #EEEEEE;
	padding: 5px 0px 0px 0px;
	margin-bottom: 10px;
	}
.wp-caption img {
	margin: 0px 0px 0px 0px;
	padding: 0px;
	border: 0px;
	}
.wp-caption p.wp-caption-text {
	margin: 0px;
	padding: 5px;
	font-size: 11px;
	font-weight: normal;
	line-height: 12px;
	}
	
/************************************************
*	Sidebar Left 	        			     	* 
************************************************/

#sidebar_left {
	float: left;
	display: inline-block;
	width: 180px;
	margin: 0px 30px 0px 0px;
	padding: 0px;
	display: none;
	}
#sidebar_left ul {
	list-style-type: none;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	}
#sidebar_left .featuredtitle {
	border: none;
	padding: 0px;
	margin: 0px 0px 5px 0px;
	}
#sidebar_left .sidecontent {
	background: #eeeeee;
	margin: 0px 0px 15px 0px;
	padding: 0px;
	}
#sidebar_left .sidecontent h4 {
	border-bottom: none;
	padding: 10px 10px 0px 10px;
	margin: 0px;
	}
#sidebar_left .sidecontent p {
	padding: 0px 10px 10px 10px;
	}
#sidebar_left .sidecontent a img {
	display: block;
	margin: 0px;
	padding: 0px;
	}
#sidebar_left .sidecontent .morelink {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: 600;
	background: #000;
	color: #FFF;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none;
	margin: 0px auto 0px;
	padding: 5px 0px;
	width: 180px;
	float: left;
	}
#sidebar_left .sidecontent .morelink:hover {
	background: #FFFF00;
	color: #000;
	}

/************************************************
*	Sidebar Right 	        			     	* 
************************************************/

#homepage #sidebar_right {
	margin-top: 0;
}
#sidebar_right {
	float: right;
	display: inline-block;
	width: 280px;
	margin-top: 32px;  /* bring top of sidebar content perceptually down in line with top of main content */
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 1em;  /* space between sidebar and main content */
	padding: 0px;
	line-height: 18px;
	}
#sidebar_right ul {
	list-style-type: none;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	}
#sidebar_right h4, #sidebar_left h4 {
	margin: 0px 0px 10px 0px;
	padding: 0px 0px 4px 0px;
	border-bottom: 1px solid #000000;
	font-family:'Roboto', sans-serif;
	
	}
	
/************************************************
*	Sidebar Widgets								*
************************************************/
.widget_categories {
	padding: 0 0 40px 0;
	}
.widget {
	padding: 0 0 20px 0;
	}
.textwidget p {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 10px 0px;
	
	}
.textwidget {
	font-family:'Roboto', sans-serif;
}
/*
#sidebar_right .widget, #sidebar_left .widget {
	list-style:none;
	margin: 0px 0px 20px 0px;
	padding: 0px;
	}
#sidebar_right .widget ul, #sidebar_left .widget ul {
	color:#000000;
	margin: 0px 0px 0px 0px;
	}
#sidebar_right .widget ul li, #sidebar_left .widget ul li {
	color:#000000;
	display: inline;
	background: none;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
	}
#sidebar_right .widget ul li a, #sidebar_left .widget ul li a {
	display: block;
	color: #000000;
	font-size: 12px;
	font-family: Helvetica, Arial, Trebuchet MS, Verdana;
	font-weight: bold;
	font-style: normal;
	line-height: 16px;
	text-decoration: none;
	padding: 5px 0px 5px 0px;
	margin: 0px 0px 0px 0px;
	}
#sidebar_right .widget ul li a:hover, #sidebar_left .widget ul li a:hover {
	color:#000000;
	display: block;
	text-decoration: none;
	}
#sidebar_right .widget ul ul, #sidebar_left .widget ul ul {
	color:#000000;
	margin: 0px 0px 0px 10px;
	}
*/
	
/************************************************
*	Recent Comments Widget						*
************************************************/
#recentcomments {
	margin: 0px;
	padding: 0px;
	}
#content #recentcomments a {
	display: inline;
	background: none;
	color: #000000;
	padding: 0px;
	margin: 0px;
	font-weight: bold;
	text-transform: none;
	text-decoration: none;
	border: none;
	}
#footertop #recentcomments a {
	text-decoration: underline;
	}
#content #recentcomments a:hover {
	background: #FFFF00;
	}
#content #recentcomments li, #footertop #recentcomments li {
	display: block;
	line-height: 16px;
	padding: 4px 0px;
	margin: 0px;
	}

/************************************************
*	Calendar Widget							*
************************************************/
#calendar_wrap {
	margin: 0px auto 0px;
	padding: 5px 10px 5px 10px;
	}
#wp-calendar {
	width: 100%;
	text-align: center;
	}
#wp-calendar a {
	margin: 0px !important;
	}
#wp-calendar caption {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	margin: 5px 0px 5px 0px;
	}
#wp-calendar #prev a {
	float: left;
	margin: 10px 0px 0px 0px !important;
	text-align: left;
	}
#wp-calendar #next a {
	float: right;
	margin: 10px 0px 0px 0px !important;
	text-align: right;
	}
	
/************************************************
*	Search Form									*
************************************************/
.widget_search {
	float: left;
	display: block;
	width: 100%;
	}
#searchform {
	margin: 0px;
	padding: 0px;
	}
#searchform label {
	display: none;
	}
#s {
	background: #EEEEEE;
	width: 97%;
	color: #666666;
	font-size: 12px;
	font-family: Helvetica, Arial, Trebuchet MS, Verdana;
	margin: 10px 0px 0px 0px;
	padding: 6px 4px;
	display: inline;
	border: none;
	}
#searchsubmit {
	float: right;
	background: #EEEEEE;
	color: #333333;
	font-size: 11px;
	font-weight: bold;
	font-family: Helvetica, Arial, Trebuchet MS, Verdana;
	width: 80px;
	height: 24px;
	margin: 10px 0px 0px 0px;
	padding: 4px 3px 2px 3px;
	border: none;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	}
#searchsubmit:hover {
	background: #FFFF00;
	color: #000000;
	}
#searchformheader {
	float: left;
	display: block;
	width: 180px;
	height: 22px;
	margin: 4px 0px 0px 5px;
	padding: 0px;
	}
#searchbox {
	background: #000000;
	width: 180px;
	color: #999999;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	padding: 4px 0px 4px 5px;
	margin: 0px 0px 0px 0px;
	border: none;
	}

/************************************************
*	Footer Top									*
************************************************/

#footertopbg {
	display: inline-block;
	background: #000000;
	//width: 960px;
	margin: 48.4px auto 0px;
	padding: 0px 0px 0px 0px;
	}
#footertop {
	float: left;
	display: block;
	line-height: 16px;
	background: #000000;
	width: 920px;
	margin: 0px 0px 0px 0px;
	padding: 0px 20px 0px 20px;
	color: #999999;
	}
#footertop a {
	color: #999999;
	}
#footertop a:hover {
	color: #ffff00;
	}
#footertop h4 {
	color: #FFFFFF;
	font-size: 18px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	font-style: italic;
	line-height: 20px;
	text-transform: normal;
	margin: 0px 0px 10px 0px;
	padding: 20px 0px 5px 0px;
	text-decoration: none;
	}
#footertop li {
	text-decoration: none;
	list-style-type: none;
	}
#footertop li a, #footertop li a:link, #footertop li a:visited {
	font-weight: normal;
	text-decoration: none;
	}
#footertop ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	}
#footertop ul li {
	list-style-type: none;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	}
#footertop ul li ul li {
	text-indent: 10px;
	}
#footertop ul li ul li ul li {
	text-indent: 20px;
	}
#footertop ul li a {
	background: none;
	display: block;
	padding: 0px 0px 10px 0px;
	margin: 0px 0px 0px 0px;
	}
#footertop ul li a:hover {
	display: block;
	}
#footertop .widget {
	float: left;
	display: block;
	margin: 0px;
	padding: 0px 0px 10px 0px;
	}
#footertop .textwidget {
	color: #999999;
	line-height: 18px;
	}
#footertop .textwidget a, #footertop #wp-calendar a {
	color: #FFFFFF;
	display: inline;
	margin: 0px;
	padding: 0px;
	}
#footertop .textwidget a:hover, #footertop #wp-calendar a:hover {
	color: #000000;
	display: inline;
	margin: 0px;
	padding: 0px;
	}
.footertopleft {
	width: 170px;
	float: left;
	display: inline;
	margin: 0px 20px 0px 0px;
	padding: 0px 0px 0px 0px;
	}
.footertopmidleft {
	width: 170px;
	float: left;
	display: inline;
	margin: 0px 20px 0px 0px;
	padding: 0px 0px 0px 0px;
	}
.footertopmidright {
	width: 170px;
	float: left;
	display: inline;
	margin: 0px 20px 0px 0px;
	padding: 0px 0px 0px 0px;
	}
.footertopright {
	width: 350px;
	float: right;
	display: inline;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	}

/************************************************
*	Footer Background							*
************************************************/

#footerbg {
	display: inline-block;
	/*background: #000000;*/
	/*width: 960px;*/
	width: 100%;
	margin: 0 auto 0;
	padding: 0px 0px 0px 0px;
	border-top: 1px solid #222222;
	}

/************************************************
*	Footer  									*
************************************************/

#footer {
	//width: 960px;
	width: 100%;
	height: 60px;
	color: #666666;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	}
#footer p {
	margin: 0px;
	padding: 0px;
	font-style: italic;
	}
#footer a {
	color: #999999;
	text-decoration: none;
	}
#footer a:hover {
	color: #cccccc;
	text-decoration: none;
	background: none;
	}
.footerleft {
	float: left;
	display: block;
	}
.footertop {
	font-size: 12px;
	font-weight: normal;
	margin: 0px 0px 0px 0px;
	padding: 10px 20px 0px 10px;
	}
.footerbottom {
	font-size: 11px;
	color: #666666;
	font-weight: normal;
	line-height: 14px;
	margin: 0px;
	padding: 0px 20px 0px 20px;
	}
.footerright {
	float: right;
	display: block;
	margin: 15px 15px 0px 0px;
	}

/************************************************
*	Comments									*
************************************************/

#submit {
	background: #e5e5e5;
	color: #666666;
	font-family: Helvetica, Arial, Trebuchet MS, Verdana;
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
	margin: 0px;
	padding: 3px 5px 2px 5px;
	border: none;
	}
#author, #email, #url {
	background: #f5f5f5 !important;
	color: #666666;
	font-size: 12px;
	font-family: Helvetica, Arial, Trebuchet MS, Verdana;
	margin: 0px;
	padding: 5px;
	border: 1px solid #e5e5e5;
	}
#comment {
	background: #f5f5f5 !important;
	color: #666666;
	font-size: 12px;
	font-family: Helvetica, Arial, Trebuchet MS, Verdana;
	margin: 5px 0px 5px 0px;
	padding: 5px;
	border: 1px solid #e5e5e5;
	}
.commentlist li ul li {
	font-size: 12px;
	}
.commentlist li {
	font-weight: bold;
	}
.commentlist li .avatar {
	background: #FFFFFF;
	float: right;
	margin: 0px 0px 10px 10px;
	padding: 2px;
	border: 1px solid #e5e5e5;
	}
.commentlist cite, .commentlist cite a {
	font-weight: bold;
	font-style: normal;
	font-size: 12px;
	}
.commentlist p {
	font-weight: normal;
	text-transform: none;
	}
.commentmetadata {
	font-weight: normal;
	}
#commentform input {
	width: 140px;
	padding: 6px 0px 4px 0px;
	margin: 5px 5px 0px 0px;
	}
#commentform {
	margin: 5px 10px 0px 0px;
	}
#commentform textarea {
	width: 100%;
	padding: 4px;
	}
#respond:after {
	content: ".";
	display: block;
	height: 0px;
	clear: both;
	visibility: hidden;
	}
#commentform p {
	margin: 5px 0px 5px 0px;
	}
#commentform #submit {
	margin: 0px;
	float: left;
	display: block;
	cursor: pointer;
	}
#commentform #submit:hover {
	color: #000000;
	background: #FFFF00;
	}
.alt {
	margin: 0px;
	padding: 10px;
	}
.commentlist {
	margin: 0px;
	padding: 0px;
	}
.commentlist ol {
	margin: 0px;
	padding: 10px;
	}
.commentlist li {
	margin: 15px 0px 5px 0px;
	padding: 10px 10px 10px 10px;
	list-style: none;
	}
.commentlist li ul li {
	margin-right: 5px;
	margin-left: 5px;
	}
.commentlist p {
	margin: 10px 0px 10px 0px;
	padding: 0px;
	}
.children {
	margin: 0px;
	padding: 0px;
	}
.nocomments {
	text-align: center;
	margin: 0px;
	padding: 0px;
	display: none;
	}
.reply {
	padding: 5px 0px 0px 0px;
	}
.reply a, .reply a:visited {
	background: #e5e5e5;
	color: #666666;
	font-family: Helvetica, Arial, Trebuchet MS, Verdana;
	font-size: 11px;
	text-decoration: none;
	margin: 0px;
	padding: 6px 8px 6px 8px;
	border: none;
	}
.reply a:hover {
	background: #000000;
	color: #FFFFFF;
	text-decoration: none;
	border: none;
	}
.commentmetadata {
	font-size: 10px;
	line-height: 14px;
	margin: 0px;
	display: block;
	}
.navigation {
	display: block;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 30px;
	}
.alignright {
	float: right;
	}
.alignleft {
	float: left;
	}
.thread-alt {
	background: #FFFFFF;
	margin: 0px;
	padding: 0px;
	}
.thread-even {
	background: #EEEEEE;
	margin: 0px;
	padding: 0px;
	}
.depth-1 {
	border: 1px solid #e5e5e5;
	margin: 0px;
	padding: 0px;
	}
.even, .alt {
	border: 1px solid #e5e5e5;
	margin: 0px;
	padding: 0px;
	}

/************************************************
*	CUSTOM STUFF EHSAN									*
************************************************/
#specialHeader {
    font-family:'Roboto', sans-serif;
    font-weight: 300;
    font-size: 25px;
    text-align: center;
}
#donate {
    background-color: black;
    max-width: 120px;
    color: white;
    text-align: center;
    margin: auto;
    font-family:'Roboto', sans-serif;
    font-weight: 300;
    font-size: 15px;
    padding: 20px;
    padding-left: 30px;
    padding-right: 30px;
}
#donate:hover {
    cursor: pointer;
    text-decoration: none;
    background-color: grey;
}
#donate:link {
    margin:auto;
    text-decoration: none;
}
/*
#customWrapper{
    margin:auto;
    text-align: left;
}


#content{
   border-top: 0px;
}

.headerright{
   display: none;
}
*/

/* Disabled over-specializations */

/*
p {
    font-family:'Roboto', sans-serif;
    font-weight: 300;
}

li {
    font-family:'Roboto', sans-serif;
    font-weight: 300;
}
*/

/* Mini-month calendar */

.miniMonthCalendar {
    margin-top: 12px;
    margin-bottom: 12px;
}

#home-top {
    /* Set central column width and centre it */
	max-width: 1100px;
	margin: auto;

    /* Top/bottom and (in retrospect unnecessary) side padding */
    box-sizing: border-box;
	padding: 1em;
}
