/*---:[ Thesis CSS reset ]:---*/
* {
	margin: 0;
	padding: 0;
	word-wrap: break-word;
}
html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img, fieldset {
	border: 0;
}
abbr, acronym {
	text-decoration: none;
}
code {
	line-height: 1em;
}
pre {
	overflow: auto;
	word-wrap: normal;
	-moz-tab-size: 4;
	tab-size: 4;
}
sub, sup {
	line-height: 0.5em;
}
img, .wp-caption {
	max-width: 100%;
	height: auto;
}
iframe, video, embed, object {
	display: block;
	max-width: 100%;
}
img {
	display: block;
}
.left, .alignleft, img[align=left] {
	display: block;
	float: left;
}
.right, .alignright, img[align=right] {
	display: block;
	float: right;
}
.center, .aligncenter, img[align=middle] {
	display: block;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	float: none;
	clear: both;
}
.block, .alignnone {
	display: block;
	clear: both;
}
input[type=submit], button {
	cursor: pointer;
	overflow: visible;
	-webkit-appearance: none;
}
.wp-smiley {
	display: inline;
}
/* # Table of Contents
- HTML5 Reset
	- Baseline Normalize
	- Box Sizing
	- Float Clearing
- Defaults
	- Typographical Elements
	- Headings
	- Objects
	- Gallery
	- Forms
	- Tables
- Structure and Layout
	- Site Containers
	- Column Widths and Positions
	- Column Classes
- Common Classes
	- Avatar
	- Thesis
	- Search Form
	- Titles
	- WordPress
- Widgets
	- Featured Content
	- Flickr
- Plugins
	- Jetpack
- Site Header
	- Title Area
	- Widget Area
- Site Navigation
	- Header Navigation
	- Primary Navigation
	- Secondary Navigation
- Content Area
	- Entries
	- Entry Meta
	- Pagination
	- Comments
- Introduction Area
- Sidebars
- Footer Contact
- Site Footer
- Mobile Menu
- Page Templates
	- Home
	- Portfolio
	- Landing
- Media Queries
*/


/* # HTML5 Reset
---------------------------------------------------------------------------------------------------- */

/* ## Baseline Normalize
--------------------------------------------- */
/* normalize.css v3.0.1 | MIT License | git.io/normalize */

html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#333}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}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-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}

/* ## Box Sizing
--------------------------------------------- */

*,
input[type="search"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

/* ## Float Clearing
--------------------------------------------- */

.author_description:before,
.clearfix:before,
.entry:before,
.entry-content:before,
.footer-widgets:before,
.nav-primary:before,
.nav-secondary:before,
.pagination:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.wrap:before {
	content: " ";
	display: table;
}

.author_description:after,
.clearfix:after,
.entry:after,
.entry-content:after,
.footer-widgets:after,
.nav-primary:after,
.nav-secondary:after,
.pagination:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.wrap:after {
	clear: both;
	content: " ";
	display: table;
}


/* # Defaults
---------------------------------------------------------------------------------------------------- */

/* ## Typographical Elements
--------------------------------------------- */

body {
	background-color: #fff;
	color: #494c4d;
	font-family: Raleway, sans-serif;
	font-size: 18px;
	font-weight: 200;
	line-height: 1.825;
	margin: 0;
}

a,
button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button,
.gallery img,
.flickr_badge_image img,
.portfolio-thumb img {
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition:    all 0.1s ease-in-out;
	-ms-transition:     all 0.1s ease-in-out;
	-o-transition:      all 0.1s ease-in-out;
	transition:         all 0.1s ease-in-out;
}

::-moz-selection {
	background-color: #333;
	color: #fff;
}

::selection {
	background-color: #333;
	color: #fff;
}

a,a:visited {
	color: #0091EA;
	text-decoration: none;
}

a:hover {
	color: #333;
}

p {
	margin: 0 0 28px;
	padding: 0;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

b,
strong {
	font-weight: 700;
}

em,
i {
	font-style: italic;
}

blockquote {
	font-style: normal;
	color: #838586;
	margin: 0 0 28px;
	font-weight: 300;
	font-size: 18px;
	line-height: 2;
}

.screen-reader-text {
	position: absolute;
	top: -9999px;
	left: -9999px;
}

.mobile-menu .screen-reader-text {
	top: 0;
}

a:hover img {
	opacity: .85;
}


/* ## Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6,
.comments_intro,
.comment_form_title {
	color: #323232;
	font-family: Raleway, sans-serif;
	font-weight: 500;
	line-height: 1.2;
	margin: 0 0 10px;
}

h1 {
	font-size: 36px;
}

h2 {
	font-size: 30px;
}

h3,
.comments_intro,
.comment_form_title {
	font-size: 24px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

/* ## Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
}

.featured-content img,
.gallery img {
	width: auto;
}

/* ## Gallery
--------------------------------------------- */

.gallery {
	overflow: hidden;
}

.gallery-item {
	float: left;
	margin: 0 0 28px;
	text-align: center;
}

.gallery-columns-2 .gallery-item {
	width: 50%;
}

.gallery-columns-3 .gallery-item {
	width: 33%;
}

.gallery-columns-4 .gallery-item {
	width: 25%;
}

.gallery-columns-5 .gallery-item {
	width: 20%;
}

.gallery-columns-6 .gallery-item {
	width: 16.6666%;
}

.gallery-columns-7 .gallery-item {
	width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
	width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	width: 11.1111%;
}

.gallery img {
	border: 1px solid #ddd;
	height: auto;
	padding: 4px;
}

.gallery img:hover {
	border: 1px solid #999;
}

/* ## Forms
--------------------------------------------- */

input,
select,
textarea {
	background-color: #fff;
	border: 1px solid #ddd;
	color: #555;
	font-size: 18px;
	font-weight: 400;
	padding: 16px 24px;
	width: 100%;
	border-radius: 4px;
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

.last-call input,
.last-call select,
.last-call textarea {
	border: none;	
}

input:focus,
textarea:focus {
	border-color: #bbb;
	outline: 0;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(100,100,100,.2);
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

::-moz-placeholder {
	color: #aaa;
	font-weight: 300;
	opacity: 1;
}

::-webkit-input-placeholder {
	color: #aaa;
	font-weight: 300;
}

.pagination a,
.comment-reply-link,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.cta-item a { 
	background-color: #0091EA;
	border: none;
	color: #fff;
	cursor: pointer;
}

.pagination a,
.comment-reply-link,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button {
	font-size: 18px;
	padding: 16px 28px;
	width: auto;
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-weight: 500;
	border-radius: 4px;
}

.pagination a,
.comment-reply-link,
#comment_form_submit #submit,
.button.btn-info,
.last-call button,
.last-call input[type="button"],
.last-call input[type="reset"],
.last-call input[type="submit"],
.last-call .button {
	background-color: #494c4d;
}

.button.btn-primary {
	background-color: #23bb73;
}

.button.btn-danger {
	background-color: #d0574e;
}

.mm-list .cta-item.menu-item a:hover,
button:hover,
input:hover[type="button"],
input:hover[type="reset"],
input:hover[type="submit"],
.button:hover,
.nav-primary .cta-item.menu-item a:hover {
	background-color: #44B0F2;
	color: #fff;
}

.button.btn-primary:hover {
	background-color: #2cd183;
}

.button.btn-danger:hover {
	background-color: #e56c63;
}

.pagination a:hover,
.comment-reply-link:hover,
#comment_form_submit #submit:hover,
.button.btn-info:hover,
.last-call button:hover,
.last-call input:hover[type="button"],
.last-call input:hover[type="reset"],
.last-call input:hover[type="submit"],
.last-call .button:hover {
	background-color: #454749;
	color: #fff;
}

.button {
	display: inline-block;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

.comment-reply-link {
	padding: 8px 16px;
	font-size: 13px;
}


/* ## Gravity Forms ----------- */

.entry-content div.gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.entry-content div.gform_wrapper select,
.entry-content div.gform_wrapper textarea,
.entry-content div.gform_wrapper .ginput_complex label {
	font-size: 18px;
	padding: 16px 24px;
	font-weight: 400;
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

.entry-content div.gform_wrapper input[type="submit"] {
	padding: 16px 28px !important;
	font-size: 18px !important;
}

.entry-content div.gform_wrapper .ginput_complex label {
	padding: 0;
}

div.gform_wrapper li,
div.gform_wrapper form li {
	margin: 16px 0 0;
	margin: 1rem 0 0;
}

.entry-content div.gform_wrapper input[type="file"],
.entry-content div.gform_wrapper select {
	padding: 0;
}

.entry-content .gform_wrapper select option {
	padding: 2px 10px;
}

.entry-content .gform_wrapper .gfield_checkbox li label,
.entry-content .gform_wrapper .gfield_radio li label {
	line-height: 1;
}

.entry-content .gform_wrapper ul.gfield_checkbox li input[type="checkbox"],
.entry-content .gform_wrapper ul.gfield_radio li input[type="radio"] {
	margin: 2px;
}

.entry-content .gform_wrapper .gfield_radio input[type="text"], .content .gform_wrapper  .gfield_checkbox input[type="text"] {
	width: auto;
	height: 36px !important;
	line-height: 32px !important;
	padding: 5px 10px !important;
}

.entry-content .gform_wrapper .gform_footer {
	padding: 0;
}

.entry-content .gform_wrapper .top_label .gfield_label {
	font-weight: 500;
}

.last-call .gform_wrapper .gfield_required {
	color: #fff;
}

.last-call .gform_wrapper .top_label .gfield_label {
	margin-top: 0;
}

.last-call  div.gform_wrapper li, .last-call  div.gform_wrapper form li {
	font-size: 14px;
	text-transform: uppercase;
}


/* ## Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	line-height: 2;
	margin-bottom: 40px;
	width: 100%;
}

tbody {
	border-bottom: 1px solid #ddd;
}

td,
th {
	text-align: left;
}

td {
	border-top: 1px solid #ddd;
	padding: 6px 0;
}

th {
	font-weight: 500;
}


/* # Structure and Layout
---------------------------------------------------------------------------------------------------- */

/* ## Site Containers
--------------------------------------------- */

.site-inner,
.wrap {
	margin: 0 auto;
	max-width: 1200px;
}

.site-inner {
	clear: both;
	padding-top: 40px;
}

/* ## Column Widths and Positions
--------------------------------------------- */

/* ### Wrapping div for .content and .sidebar-primary */

/* ### Content */

.content {
	float: left;
	width: 800px;
}

.full-width-content .content {
	width: 100%;
	float: none;
}

/* ### Primary Sidebar */

.sidebar-primary {
	float: right;
	width: 360px;
}

/* ## Column Classes
--------------------------------------------- */
/* Link: http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css */

.five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
	float: left;
	margin-left: 2.564102564102564%;
}

.one-half,
.three-sixths,
.two-fourths {
	width: 48.717948717948715%;
}

.one-third,
.two-sixths {
	width: 31.623931623931625%;
}

.four-sixths,
.two-thirds {
	width: 65.81196581196582%;
}

.one-fourth {
	width: 23.076923076923077%;
}

.three-fourths {
	width: 74.35897435897436%;
}

.one-sixth {
	width: 14.52991452991453%;
}

.five-sixths {
	width: 82.90598290598291%;
}

.first {
	clear: both;
	margin-left: 0;
}


/* # Common Classes
---------------------------------------------------------------------------------------------------- */

/* ## Avatar
--------------------------------------------- */

img.avatar {
	float: left;
	border-radius: 3px;
}

.alignleft img.avatar,
.author_description img.avatar {
	margin-right: 24px;
}

.alignright img.avatar {
	margin-left: 24px;
}

.comment img.avatar {
	margin: 0 16px 24px 0;
}

/* ## Thesis
--------------------------------------------- */

.archive-description  {
	background-color: #f0f0f0;
	font-size: 16px;
	margin-bottom: 40px;
	padding: 40px;
	border-radius: 3px;
}

.author_description {
	margin-bottom: 40px;
}

.author_description_intro {
	font-size: 16px;
	margin-bottom: 4px;
	display: block;
	font-weight: 500;
}

.archive_description p:last-child{
	margin-bottom: 0;
}

/* ## Search Form
--------------------------------------------- */

.search-form {
	overflow: hidden;
}

.entry-content .search-form {
	width: 50%;
}

.thesis-nav-menu .search input[type="submit"],
.widget_search input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* ## Titles
--------------------------------------------- */

.archive-title {
	font-size: 20px;
	margin: 0;
}

.entry-title {
	font-size: 36px;
	font-size: 34px; 
	
	color: #0091EA;
}

.entry-title a,
.sidebar .widget_title a {
	color: #333;
}

.entry-title a:hover {
	color: #0091EA;
}

.widget_title {
	font-size: 16px;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: 16px; 
	
}

.footer-widgets .widget_title {
	color: #fff;
}

/* ## WordPress
--------------------------------------------- */

a.aligncenter img {
	display: block;
	margin: 0 auto;
}

a.alignnone {
	display: inline-block;
}

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 24px;
}

img.alignnone,
.alignnone {
	margin-bottom: 12px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 24px 24px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 24px 24px;
}

.wp-caption-text {
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}

.sticky {
}


/* # Widgets
---------------------------------------------------------------------------------------------------- */

.widget {
	word-wrap: break-word;
}

.widget ol > li {
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 20px;
	text-indent: -20px;
}

.widget li li {
	border: none;
	margin: 0 0 0 30px;
	padding: 0;
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}

/* ## Featured Content
--------------------------------------------- */

.featured-content .entry {
	border-bottom: 2px solid #f5f5f5;
	margin-bottom: 20px;
	padding: 0 0 24px;
}

.footer-widgets .entry {
	border-bottom: 1px dotted #666;
}

.featured-content .entry-title {
	font-size: 20px;
}

/* ## Flickr
--------------------------------------------- */

.flickr_badge_image {
	float: left;
	margin: 4px 8px 4px;
	overflow: hidden;
}

.flickr_badge_image img {
	display: inline;
	width: auto;
}

.flickr_badge_image img:hover {
	opacity: .7;
}


/* # Plugins
---------------------------------------------------------------------------------------------------- */

/* ## Jetpack
--------------------------------------------- */

#wpstats {
	display: none;
}


/* # Site Header
---------------------------------------------------------------------------------------------------- */

.site-header {
	background-color: #fff;
}

.site-header .wrap {
	padding: 40px 0;
	display: table; 
	overflow: hidden; 
	width: 100%;	
	#position: relative; 
}

.site-header .nav-primary {
	display: table-cell; 
	vertical-align: middle;
	#position: absolute; 
	#top: 50%;
}

.site-header .nav-primary .menu {	
	text-align: right;
	#position: relative; 
	#top: -50%;
}

/* ## Title Area
--------------------------------------------- */

.title-area {
	float: left;
	padding: 10px 0;
	width: 360px;
}

#site_title {
	font-size: 32px;
	font-weight: 500;
	line-height: 1.2;
	font-size: 40px; 
	
	color: #0091EA;
}

#site_title a,
#site_title a:hover {
	color: #333;
}

#site_title img, 
#site_title span.site-title {
	vertical-align: middle;
	display: inline;
}

#site_tagline, 
#site_title span.site-title {
	font-size: 16px;
	font-weight: 200;
	line-height: 1.5;
}

#site_title span.site-title {
	margin-left: 14px;
}

#site_tagline,
#site_title {
	margin-bottom: 0;
}

/* ## Widget Area
--------------------------------------------- */

.site-header .widget-area {
	display: none;
}


/* # Site Navigation
---------------------------------------------------------------------------------------------------- */

.thesis-nav-menu {
	font-size: 13px;
	line-height: 1;
	width: 100%;
}

.thesis-nav-menu .menu-item {
	display: inline-block;
	text-align: left;
}

.thesis-nav-menu a {
	color: #838586;
	display: block;
	padding: 15px 18px 14px;
	text-transform: uppercase;
}

.thesis-nav-menu a:hover,
.thesis-nav-menu .current-menu-item > a,
.thesis-nav-menu .sub-menu .current-menu-item > a:hover {
	color: #000;
}

.thesis-nav-menu .sub-menu {
	left: -9999px;
	opacity: 0;
	position: absolute;
	-webkit-transition: opacity .4s ease-in-out;
	-moz-transition:    opacity .4s ease-in-out;
	-ms-transition:     opacity .4s ease-in-out;
	-o-transition:      opacity .4s ease-in-out;
	transition:         opacity .4s ease-in-out;
	width: 200px;
	z-index: 99;
}

.thesis-nav-menu .sub-menu a {
	background-color: #fff;
	border: 1px solid #eee;
	border-top: none;
	font-size: 14px;
	padding: 20px;
	position: relative;
	width: 200px;
}

.thesis-nav-menu .sub-menu .sub-menu {
	margin: -55px 0 0 199px;
}

.thesis-nav-menu .menu-item:hover {
	position: static;
}

.thesis-nav-menu .menu-item:hover > .sub-menu {
	left: auto;
	opacity: 1;
}

.thesis-nav-menu > .first > a {
	padding-left: 0;
}

.thesis-nav-menu > .last > a {
	padding-right: 0;
}

.thesis-nav-menu > .right {
	color: #fff;
	float: right;
	list-style-type: none;
	padding: 30px 0;
}

.thesis-nav-menu > .right > a {
	display: inline;
	padding: 0;
}

.thesis-nav-menu > .rss > a {
	margin-left: 48px;
}

.thesis-nav-menu > .search {
	padding: 10px 0 0;
}

/* ## Primary Navigation
--------------------------------------------- */

.nav-primary .thesis-nav-menu .sub-menu a {
	color: #333;
}

.nav-primary .thesis-nav-menu a:hover,
.nav-primary .thesis-nav-menu .current-menu-item > a,
.nav-primary .thesis-nav-menu .sub-menu .current-menu-item > a:hover {
	color: #000;
}

.site-header .sub-menu {
	border-top: 1px solid #eee;
}

.site-header .sub-menu .sub-menu {
	margin-top: -56px;
}

.cta-item.menu-item a {
	color: #fff;
	padding-left: 22px;
	padding-right: 22px;
	border-radius: 30px;
}

/* ## Secondary Navigation
--------------------------------------------- */

.nav-secondary {
	background-color: #f5f5f5;
}

.nav-secondary a {
	color: #838586;
	display: block;
	padding: 24px 18px;
	text-transform: uppercase;
}

/* # Content Area
---------------------------------------------------------------------------------------------------- */

/* ## Entries
--------------------------------------------- */

.entry {
	margin-bottom: 60px;
}

.entry-content ol,
.entry-content ul {
	margin-bottom: 28px;
	margin-left: 40px;
}

.entry-content ol > li {
	list-style-type: decimal;
}

.entry-content ul > li {
	list-style-type: disc;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}

.entry-content code {
	background-color: #eee;
	padding: 2px 5px;
	font-size: 16px;
	font-family: Consolas, Menlo, Monaco, Courier, Verdana, sans-serif;
	color: #666;
}

.entry-content pre {
	background: #f3f3f3;
	border-radius: 3px;
	padding: 20px 30px;	
	margin-bottom: 40px;
	font-family: Consolas, Menlo, Monaco, Courier, Verdana, sans-serif;
	color: #666;
}

.entry-content dl, .entry-content address {
	margin-bottom: 40px;
}

.entry-content dt {
	font-weight: bold;
}

/* ## Entry Meta
--------------------------------------------- */

p.entry-meta {
	color: #494c4d;
	font-size: 16px;
	margin-bottom: 0;
}

.entry-header .entry-meta {
	margin-bottom: 24px;
}

.entry-footer .entry-meta {
	border-top: 2px solid #f5f5f5;
	padding-top: 24px;
}

.post_cats,
.post_tags {
	display: block;
}

.num_comments_link::before {
	content: "\2014";
	margin: 0 6px 0 2px;
}

/* ## Pagination
--------------------------------------------- */

.pagination {
	clear: both;
	margin: 40px 0;
}

.adjacent-entry-pagination {
	margin-bottom: 0;
}

.archive-pagination li {
	display: inline;
}

.entry-content .entry-pagination a,.archive-pagination li a {
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	padding: 4px 16px;
}

.archive-pagination li a:hover,
.archive-pagination .active a {
	background-color: #0091EA;
}

/* ## Comments
--------------------------------------------- */

#commentform,
.entry-comments
.entry-comments,
.entry-pings {
	margin-bottom: 40px;
}

#commentform, .single-updates {
	background: #f0f0f0;
	border-radius: 3px;
	padding: 40px 40px 16px 40px;
	position: relative;
}

.single-updates {
	text-align: center;
	padding: 60px 40px;
	margin-bottom: 40px;
}

#comments #commentform:before {
	border-style: solid;
	border-width: 0 25px 25px 0px;
	border-color: transparent transparent #f3f3f3 transparent;
	content: "";
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: -25px;
}	

#comments #commentform {
	margin-top: 60px;
}

.entry-pings > h3 {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #e4e4e4;
}

.says {
	font-weight: 200;	
}

.entry-pings .says {
	display: none;
}

.entry-comments {
	margin-bottom: 40px;
}

.comment-header {
	font-size: 16px;
}

li.comment {
	border-top: 1px solid #e4e4e4;
}

.comment_text {
	clear: both;
}

.comment_list > li.comment:first-child {
	margin-top: 20px;
}

.comment_list li.comment {
	margin-top: 40px;
	padding: 40px 0 0 40px;
}

.comment_list li.depth-1 {
	padding-left: 0;
	padding-right: 0;
}

.comment_list .comment_text ul, .comment_list .comment_text ol {
	margin-left: 20px;
}

.comment-form-comment {
	clear: both;
}

#commentform label {
	display: block;
	margin-right: 12px;
	text-transform: uppercase;
}

.entry-comments .comment-author {
	margin-bottom: 0;
	font-weight: 500;
	line-height: 23px;
}

.comment-meta, .comment-meta a {
	color: #494c4d;
    font-size: 13px;
    font-weight: 500;	
	text-transform: uppercase;
}

.entry-pings .reply {
	display: none;
}

#cancel-comment-reply-link, .comment_edit {
	float: right;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
}


/* # Introduction Area
---------------------------------------------------------------------------------------------------- */

.introduction .wrap:after {
	content: "";
	display: block;
	width: 220px;
	height: 8px;
	background: #eaeaea;
}

.introduction .page-title span, .introduction .headline span {
	font-weight: 700;
}

.introduction .tagline {
	font-size: 26px;
	font-weight: 200;
	margin: 0 0 36px 0;
}


/* # Sidebars
---------------------------------------------------------------------------------------------------- */

.sidebar {
	font-size: 16px;
	font-size: 16px; 
	
	color: #494c4d;
}

.sidebar li {
	border-bottom: 1px dotted #ddd;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.sidebar p:last-child,
.sidebar ul > li:last-child {
	margin-bottom: 0;
}

.sidebar .widget {
	margin-bottom: 40px;
}


/* # Footer Contact
---------------------------------------------------------------------------------------------------- */

.last-call {
	background-size: cover;
}

.last-call-overlay {
	background: #009fed;
	background: rgba( 0,145,234 ,.85);
	color: #fff;
	padding: 100px 0;	
}

.last-call h1, .last-call h2, .last-call h3, .last-call h4, .last-call h5, .last-call h6, .last-call a {
	color: #fff;
}

.last-call a:hover {
	color: #494c4d;
}

.last-call p {
	color: #eee;
	font-size: 20px;
}

.last-call p:last-child {
	margin: 0;
}

.lead-title, .page-title, .introduction .headline {
	font-size: 42px;
	margin-bottom: 40px;
	font-weight: 200;
}

.social-list {
	margin-top: 60px;
	margin-left: -15px;
}

.social-list a {
	margin: 3px 15px;
	font-size: 13px;
	text-transform: uppercase;
	display: inline-block;
}

.social-list a .fa {
	margin-right: 7px; 
}


/* # Site Footer
---------------------------------------------------------------------------------------------------- */

.site-footer {
	background-color: #fff;
	font-size: 16px;
	line-height: 1;
	text-align: center;
}

.site-footer p {
	margin-bottom: 0;
	padding: 40px 0;
}


/* # Mobile Menu
---------------------------------------------------------------------------------------------------- */

#mobile-menu  {
	font-weight: 500;	
}

.mm-list > li.current-menu-item > a, .mm-list > li.current-menu-item > span, .mm-list a:hover {
	color: #fff;
}

.menu-mobile {
	display: none;
}

.menu-mobile.thesis-nav-menu a {
	font-size: 24px;
	padding: 16px 8px;
	color: #353535;
	height: 32px;
	line-height: 32px;
	-webkit-box-sizing: content-box;
	-moz-box-sizing:    content-box;
	box-sizing:         content-box;
}

.menu-mobile.thesis-nav-menu a:hover {
	color: #888;
}

.menu-mobile.thesis-nav-menu > li:first-child a {
	margin-left: -10px;
}

.mm-list .cta-item.menu-item a {
	border-radius: 0;
	padding: 15px 10px 15px 20px;
	margin-top: 15px;
}

.close-menu {
	color: rgba(255, 255, 255, 0.6);
    display: block;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 40px;
}

.close-menu:hover {
	color: #fff;
}


/* # Page Templates
---------------------------------------------------------------------------------------------------- */

/* ## Homepage
--------------------------------------------- */


.action {
	background: #f0f0f0;
	padding: 100px 0;
}

.homepage-template .site-inner {
	padding-top: 0;
}

.homepage-template .introduction .tagline {
	font-size: 32px;
}

.homepage-template .section {
	padding: 100px 0;
}

.homepage-template .entry-content {
	font-size: 22px;
}

.homepage-template .grid {
	max-width: 1800px;
	margin: 0 auto;
	position: relative;
}

.homepage-template .grid img {
	width: 100%;
	height: auto;
}

.homepage-template .grid a:hover img {
	opacity: 1;
}

.grid-item {
	background-position: center bottom;
    background-size: cover;
	background: #efefef;
    display: inline-block;
    padding-bottom: 31%;
	height: 0;
	width: 50%;
    position: relative;
    text-decoration: none;
	margin: 0;
	float: left;
	overflow: hidden;
}

.grid-item:nth-child(even) {
	background: #e9e9e9;
}

.grid-item .thumb-overlay-wrap {
	background: rgba(0, 0, 0, 0.75);
    color: #fff;
    height: 100%;
    padding: 20px;
    position: absolute;
    text-align: center;
    width: 100%;
	z-index: 1;
	display: table;
	
	opacity: 0;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	visibility: hidden\9; /*ie*/
}

.grid-item:hover .thumb-overlay-wrap {
	width: 100%;
	opacity: 1;
}

.grid-item:hover .thumb-overlay-wrap {
	visibility: visible\9; /*ie*/
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4c000000', endColorstr='#4c000000')\9; /*ie*/
}


.grid-item img {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);

	-moz-transition: transform 1s ease-in-out;
	-webkit-transition: -webkit-transform 1s ease-in-out;
	transition: transform 1s ease-in-out;
}

.grid-item:hover img {
	-moz-transition: transform 1s linear;
	-webkit-transition: -webkit-transform 1s linear;
	transition: transform 1s linear;

	-webkit-filter: grayscale(100%);
  	-moz-filter: grayscale(100%);
  	-ms-filter: grayscale(100%);
  	-o-filter: grayscale(100%);
  	filter: grayscale(100%);
  	filter: gray; /* IE 6-9 */

	-webkit-transform: scale(1.3) rotate(5deg);
    -moz-transform: scale(1.3) rotate(5deg);
    -ms-transform: scale(1.3) rotate(5deg);
    -o-transform: scale(1.3) rotate(5deg);
	transform: scale(1.3) rotate(5deg);
}

.thumb-overlay {
	display: table-cell;
    vertical-align: middle;
	text-align: center;
}

.thumb-overlay h3 {
	color: #fff;
	font-size: 34px;
	font-weight: 200;
	display: inline-block;
	margin: 0 auto;
	padding: 20px 35px;
}

.portfolio-link {
	width: 140px;
	height: 140px;
	border-radius: 100%;
	color: #fff !important;
	background: rgba(0, 135, 234, 1);
	text-align: center;
	display: inline-block;
	font-size: 24px;
	line-height: 34px;
	font-weight: 200;
	padding: 38px 15px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -70px;
	margin-left: -70px;
	opacity: .95;
	font-family: Raleway, sans-serif;
	z-index: 3;
}

.feature-image {
	float: left;
	width: 48px;
	margin-right: 16px;
}

.feature-content {
	overflow: hidden;
}

.feature .widget_title {
	color: #0091EA;
}

.action .wrap {
	display: table;
    overflow: hidden;
    width: 100%;
}

.action .updates {
	display: table-cell;
    vertical-align: middle;
	width: 585px;
}

.action .featured-content {
	width: 585px;
}

.updates input {
	margin: 5px 0;
	border: 0;
}

.subscribe_form {
	position: relative;
}

.subscribe_form .email {
	padding-right: 200px;
}

.subscribe_form .subscribe {
	position: absolute;
	right: 0;
	top: 0;
	width: 180px;
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
}

.action .lead-content *:last-child {
	margin-bottom: 0;
}

blockquote.testimonial {
	font-size: 16px;
	color: #747779;
}

blockquote.testimonial.featured {
	font-size: 30px;
	padding-bottom: 70px;
	margin-bottom: 70px;
	border-bottom: 1px solid #dfdfdf;
}

.featured .feature-image {
	width: 64px;
}

.testimonial .wp-post-image {
	border-radius: 100%;
}

.testimonial-cite {
	font-style: normal;
	overflow: hidden;
	line-height: 1.6;
	font-size: 15px;
}

.testimonial cite {
	color: #535556;
	font-style: normal;
	text-transform: uppercase;
}

.testimonial.featured .testimonial-cite {
	font-size: 20px;
	padding-top: 2px;	
}


/* ## Portfolio
--------------------------------------------- */

.portfolio-teaser {
	margin-bottom: 32px;
}

.portfolio-thumb {
	background: url(images/graphic-portfolio_link.png) no-repeat center;
	display: inline-block;
	margin: 0 auto;
	margin-bottom: 32px;
	max-width: 352px;
	text-align: center;
	line-height: 0;
}

.portfolio-thumb img {
	display: inline-block;
	margin: 0;
}

.portfolio-teaser:hover img {
	opacity: .25;
}

.portfolio-teaser h2.portfolio-title,
.portfolio-teaser h2.portfolio-title a {
	font-size: 24px;
}


/* ## Landing Page Template
--------------------------------------------------------------------- */

#landingpage {
    width: 710px;
    font-size: 14px;
    line-height: 25px;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #555;
    background-color: #fff;
	border: 5px solid #ddd;
	margin: 25px auto;
	padding: 20px;
}
body.template_landing-page, body.template_landing-page.custom-background {
    background: #eee;
	-webkit-box-shadow: none; 
	-moz-box-shadow: none; 
	box-shadow: none;
}
#landingpage h1 {
    font-size: 2.8em;
    margin-bottom: 0.5em;
}
#landingpage h2 {
    font-size: 1.8em;
    margin-bottom: 0.75em;
}
#landingpage h3 {
    font-size: 1.4em;
    margin-bottom: 1em;
}
#landingpage h4 {
    font-size: 1.2em;
    margin-bottom: 1.25em;
}
#landingpage h5 {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 1.5em;
}
#landingpage h6 {
    font-size: 1em;
    font-weight: bold;
}
#landingpage h1, #landingpage h2, #landingpage h3, #landingpage h4, #landingpage h5, #landingpage h6 {
    color: #111
}
#landingpage h1.headline {
    text-align: center;
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 0.5em;
    line-height: 1.8em;
}
#landingpage ul {
    margin: 0 1.5em 1.5em 0;
    padding-left: 1.5em;
}
#landingpage ul li {
    margin: 10px 0;
    line-height: 1.5em;
}
#landingpage p {
    margin-bottom: 1.5em
}
#landingpage #mobile_menu_area {
    display: none
}
@media only screen and (max-width: 768px) {
    #landingpage {
        margin: 0;
        border-width: 10px 0;
        width: auto;
    }    #landingpage img {
        max-width: 100%;
        height: auto;
    }
}


/* # Media Queries
---------------------------------------------------------------------------------------------------- */

@media only screen and (max-width: 1200px) {

	.site-inner,
	.wrap {
		max-width: 960px;
	}

	.content {
		width: 620px;
	}

	.sidebar-primary,
	.title-area {
		width: 300px;
	}
	
	.action .featured-content {
		width: 460px;	
	}
	
	.action .updates { 
		width: 460px;
	}

}

@media only screen and (max-width: 960px) {

	.site-inner,
	.wrap {
		max-width: 800px;
	}

	.content,
	.sidebar-primary,
	.title-area {
		width: 100%;
	}
	
	.mobile-enabled .menu-primary, .mobile-enabled .header-extras, .mobile-enabled .nav-secondary, .mobile-enabled .thesis-nav-menu.menu-social, .mobile-enabled .shop-menu  { display: none; opacity: 0; }
	.mobile-enabled .menu-mobile { display: block; opacity: 0; }
	.mobile-on .menu-mobile { display: block; opacity: 1; }
	
	.menu-mobile { text-align: left; }
	
	.action .featured-content, 
	.action .updates { 
		width: 100%;
		float: none;
		display: block;
	}
	
	.action .updates {
		margin-top: 30px;
	}

}

@media only screen and (max-width: 810px) {

	body {
		font-size: 16px;
	}

	.site-header .wrap,
	.wrap {
		padding-left: 20px;
		padding-right: 20px;
	}

	.archive-description,
	.author_description,
	.entry,
	.entry-comments,
	.entry-pings,
	.sidebar .widget,
	.site-header {
		padding: 0;
	}
	
	#commentform, .single-updates {
		padding: 20px;
		margin-left: -20px;
		margin-right: -20px;
		border-radius: 0;
	}

	.archive-pagination li a {
		margin-bottom: 4px;
	}

	.five-sixths,
	.four-sixths,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fourths,
	.three-sixths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		margin: 0;
		width: 100%;
	}
	
	.social-list, .last-call .contact-form {
		margin-top: 20px;
	}
	
	.last-call-overlay {
		padding: 50px 0;
	}
	
	.portfolio-link {
		height: 100px;
		width: 100px;
		font-size: 18px;
		margin-left: -50px;
		margin-top: -50px;
		padding: 28px 10px 0;
		line-height: 24px;
	}
	
	.thumb-overlay h3 {
		font-size: 18px;
	}
	
	.homepage-template .section {
		padding: 50px 0;
	}
	
	blockquote.testimonial.featured {
		font-size: 22px;
		line-height: 36px;
	}
	
	blockquote.testimonial {
		margin-bottom: 50px;
	}
	
	blockquote.testimonial:last-child {
		margin-bottom: 0;
	}

}

@media only screen and (max-width: 600px) { 

	.homepage-template .introduction .tagline, .introduction .tagline {
		font-size: 22px;
		line-height: 36px;
	}

	#site_title span.site-title {
		display: none;
	}
	
	.subscribe_form .subscribe {
		width: 100%;
		position: static;
		margin-top: 10px;	
		border-radius: 3px;
	}
	
	.subscribe_form .email {
		padding-right: 24px;
	}
	
	.grid-item {
		width: 100%;	
		padding-bottom: 40%;
	}
	
}

@media only screen and (max-width: 400px) { 
	.grid-item {
		width: 100%;	
		padding-bottom: 50%;
	}
}
/*---:[ custom CSS ]:---*/
.post_content a {
    text-decoration: underline;
}

.wpcf7
{
    background-color: #FBDFDF;
}

.wpcf7-form input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], select, textarea {width:80% !important;}