/*
Theme Name: 	MAKE
Theme URI: 		http://domowit.com
Description: 	Theme for Make Magazine
Version: 		1.0
Author: 		Johnathan Crawford / Domowit
Author URI: 	http://domowit.com
Tags: 			domowit, magazine
*/

/*
===========================
CONTENTS:

01 Sensible defaults
02 Typography
03 Media queries 
===========================
*/

/* ---------------------------------------------------------------------------------------------------------- 
01 Sensible defaults ----------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

@import "css/reset.css";
div, article, section, header, footer, nav, li {
	position:relative; /* For absolutely positioning elements within containers (add more to the list if need be) */
}
.group:after {
	display:block;
	height:0;
	clear:both;
	content:".";
	visibility:hidden; /* For clearing */
}
body {
	background:#fff; /* Don't forget to style your body to avoid user overrides */
	margin:0;
}
::-moz-selection {
background:#ff0;
color:#333;
}
::selection {
	background:#ff0;
	color:#333;
}
/* ---------------------------------------------------------------------------------------------------------- 
02 Typography -----------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */
/*

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)

*/

body, input, textarea { /* We strongly recommend you declare font-weight using numerical values, but check to see which weights you're exporting first */
}
h1, h2, h3, h4, h5, h6 {
	font-weight:normal; /* This helps to identify headings at the initial build stage, but you should write something more precise later on */
}
/* Forms--------------------------------------------------------------------- */
input[type=text], input[type=password]{
	color: #fff;
	background-color: #ECECEC;
	border-bottom-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color: #fff;
}
textarea {
	color: #fff;
	background-color: #BBB;
	border: 1px solid #CCC;
}
textarea input {
	color:#666;
}

input[type=text]:focus, textarea:focus {
	color: #666;
}
textarea {
	padding-left: 3px;
	width: 98%;
}
input[type=text] {
	padding: 3px;
}
input#s {
	background: url(images/search.png) no-repeat 5px 6px;
	color:#555;
	font-size: 12px;
	height: 25px;
	line-height: 1em;
	padding: 3px 10px 3px 28px;
}

.join input[type=text], .join input[type=password]{
	color:#888;
	font-family:inherit;
	width:90%;
	padding:10px;
	background-color:#FFF;
	border: 1px solid #666;	
}
.join textarea {
	
	
}
.join textarea input {
	
}

.join input[type=text]:focus, textarea:focus {
	
}
.join textarea {
	
}
.join input[type=text] {
	
}
.join input#s {
	
}
.join input#searchsubmit {
	
}
.search404 input[type=text], input[type=password]{
	color: #fff;
	background-color: #ECECEC;
	border-bottom-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color: #000;
}
.search404 textarea {
	color: #000;
	background-color: #BBB;
	border: 1px solid #CCC;
}
.search404 textarea input {
	color:#666;
}

.search404 input[type=text]:focus, textarea:focus {
	color: #666;
}
.search404 textarea {
	padding-left: 3px;
	width: 98%;
}
.search404 input[type=text] {
	padding: 3px;
}
.search404 input#s {
	background: url(images/search404.png) no-repeat 5px 6px;
	color:#000;
	font-size: 12px;
	height: 25px;
	line-height: 1em;
	padding: 3px 10px 3px 28px;
}
.search404 input#searchsubmit {
	display: none;
}

/* Search Form -------------------------------------------------------------- */
#searchBox {
	float:right;
}
#searchBox input[type=text], #searchBox input[type=password]{
	color: #000;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
	background-color: #F3F3F3;
}
#searchform {
	
	top: 3.8em;
	right: 7.6%;
	text-align: right;
}
#searchform div {
	margin: 0;
}
#s {
	float: right;
	-webkit-transition-duration: 400ms;
	-webkit-transition-property: width, background;
	-webkit-transition-timing-function: ease;
	-moz-transition-duration: 400ms;
	-moz-transition-property: width, background;
	-moz-transition-timing-function: ease;
	-o-transition-duration: 400ms;
	-o-transition-property: width, background;
	-o-transition-timing-function: ease;
	width: 80px;
	margin-right:35px;
}
.search404 #s {
	width: 200px;
	margin-right:35px;
}
#s:focus {
	background-color: #f9f9f9;
	width: 250px;
}
#searchsubmit {
	display: none;
}
.only-search #searchform {
	top: 5px;
	z-index: 1;
}
.only-search #s {
	background-color: #666;
	border-color: #000;
	color: #222;
}
.only-search #s, #branding .only-search #s:focus {
	width: 85%;
}
.only-search #s:focus {
	background-color: #bbb;
}
.with-image #searchform {
	top: auto;
	bottom: -27px;
	max-width: 195px;
}
.only-search + #access div {
	padding-right: 205px;
}

blockquote {
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
blockquote p {
  display: inline;
}



/* ---------------------------------------------------------------------------------------------------------- 
03 Media queries (using a mobile-first approach) ------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

/* 400 and up */
@media screen and (min-width:400px) { { /* Place your styles here for all widths greater than 400px */
}
}

/* Retina Display */
@media screen and (-webkit-min-device-pixel-ratio:2) { { /* Place your styles here for all 'Retina' screens */
}
}

/*header .container .nav a {
	float:right;
	color:#FFF;
	z-index:5000
}
header .container .nav {
	float:right;
	margin-top:137px;
	font-size:13px;
	margin-right:5px;
	z-index:5000
} */
/* START NEW MENU DROP DOWN */
header .nav {
	position:absolute;
	float:right;
	right:0;
	margin-top:137px;
	font-size:13px;
	margin-right:5px;
	z-index:5000;
	width:inherit;
	color:#F4F3E3;
	
}
header .nav #menu-boilerroom {
	border-left-width: 1px;
	border-left-style: dotted;
	border-left-color: #666;
}
header .nav ul {
	margin:0;
	padding:0 15px;
	display:inline-block;
	float:right;
	margin:0;
	
}
header .nav li {
	float: left;
	margin-left:0;
	padding:0 15px;
	position: relative;
	
}
header .nav a {
	color:#F4F3E3;
	-webkit-transition: color .35s ease;
-moz-transition: color .2s ease;
-ms-transition: color .2s ease;
-o-transition: color .2s ease;
transition: color .2s ease;
border:none;
	
	
}
header .nav ul li a:hover {
	color:#359bb4;
	border:none;
}
header .nav ul li.current-menu-item a {
	color:#FFF;
	background-color:#359bb4;
	padding:10px 25px;
	
}
header .nav ul li.current-menu-item a:hover {
	background-color:#2D5557;
		
}
header .nav ul li.current-menu-item.menu-item-18 a, header .nav ul li.current-menu-item.menu-item-18 a:visited {
	color:#FFF;
	background-color:inherit;
	padding:0;
	
	
}
header .nav ul li.current-menu-item.menu-item-18 a:hover {
	color:#359bb4;
		
}
header .nav ul li.current-post-parent.menu-item-8570 a  {
	color:#FFF;
	background-color:#359bb4;
	padding:10px 25px;
}

header .nav ul li ul {
	opacity: 0;
	visibility: hidden;
	padding: 16px 0 20px 0;
	background-color: #fafafa;
	text-align: left;
	position: absolute;
	top: 30px;
	left: 50%;
	margin-left: -90px;
	width: 188px;
	-webkit-transition: all .2s .2s;
	-moz-transition: all .2s .2s;
	-o-transition: all .2s .2s;
	transition: all .2s .2s;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
}
header .nav ul li:hover ul {
	opacity: 1;
	top: 40px;
	visibility: visible;
}
header .nav ul li ul li {
	margin:0;
	position: relative;
}
header .nav ul li ul li a  {
	color: #359bb4 !important;
	font-size: 13px;
	background-color: #fafafa !important;
	padding: 5px 8px 7px 16px !important;
	display:block;
	width:163px;
	-webkit-transition: background-color 0.1s;
	-moz-transition: background-color 0.1s;
	-o-transition: background-color 0.1s;
	transition: background-color 0.1s;
	margin-left:-14px; !important;
}
header .nav ul li ul li a:hover {
	background-color: #f0f0f0 !important;
	color: #1d2839 !important;
}
header .nav ul li ul li a:after {
	display:none;
}
#subnav {
	width:100%;
	background-color:#464646;
	padding:8px 0 0 0;
	font-size:13px;
	clear:both;
}
.subnav {
	width:1080px;
	margin:0 auto;	
}
.subnav p {
	float:left;
	display:inline-block;
	margin:0;
	color:#999;
}
.subnav ul {
	margin-left: 25px;
	display:block;
	float:left;
	
}
.subnav li {
	float: left;
	margin-left: 5px;
	
	
	
}
.subnav li a {
	display:block;
	background-color:#333;
	width:90px;
	text-align:center;
	padding:2px 0 6px 0;
		color: #999;

}
.subnav li a:hover {
		background-color:#359bb4;
		color:#fff;
}
.subnav li.current-menu-parent a {
	
	background-color:#359bb4;
	color:#FFF;
	
}

.subnav ul li.current-menu-item a {
	color:#FFF;
	background-color:#359bb4;
	
	
}
.subnav.home li a {
	display:block;
	background-color:#359bb4;
	width:90px;
	text-align:center;
	padding:2px 0 6px 0;
	color:#fff;
}
.subnav.home li a:hover {
		background-color:#333;
		color:#fff;
}
.wp-caption-text {
	display:block;
	background-color:#EFEFEF;
	font-size:0.8em;
	padding:10px 5px;
	line-height: 1em;
	width:554px;
	margin:0;
	text-align:center;
}

/*END MENU DROP DOWN */