/*  
Theme Name: Metro
Theme URI: http://themify.me/themes/metro
Version: 1.0.9
Description: Created by <a href="http://www.themify.me">Themify</a>.
Author: Themify
Author URI: http://www.themify.me
License: GNU General Public License v2.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Copyright: (c) 2013 Themify.

---------

DO NOT EDIT THIS FILE.

If you need to overwrite the CSS styling, create a new custom_style.css 
in the theme folder and it will automatically load in the <head>.

*/

@font-face {
font-family: 'BYekan';
src: url('font/BYekan.eot');
src: local("?"),
url('font/BYekan.eot?#iefix') format('embedded-opentype'),
url('font/BYekan.woff') format('woff'),
url('font/BYekan.ttf') format('truetype'),
url('font/BYekan.svg#BYekan') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'BYekan';
src: url('font/BYekan.eot');
src: local("?"),
url('font/BYekan.eot?#iefix') format('embedded-opentype'),
url('font/BYekan.woff') format('woff'),
url('font/BYekan.ttf') format('truetype'),
url('font/BYekan.svg#BYekan') format('svg');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'BYekan';
src: url('font/BYekan.eot');
src: local("?"),
url('font/BYekan.eot?#iefix') format('embedded-opentype'),
url('font/BYekan.woff') format('woff'),
url('font/BYekan.ttf') format('truetype'),
url('font/BYekan.svg#BYekan') format('svg');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'BYekan';
src: url('font/BYekan.eot');
src: local("?"),
url('font/BYekan.eot?#iefix') format('embedded-opentype'),
url('font/BYekan.woff') format('woff'),
url('font/BYekan.ttf') format('truetype'),
url('font/BYekan.svg#BYekan') format('svg');
font-weight: bold;
font-style: italic;
}
/************************************************************************************
RESET
*************************************************************************************/
html, body, address, blockquote, div, dl, form, h1, h2, h3, h4, h5, h6, ol, p, pre, table, ul,
dd, dt, li, tbody, td, tfoot, th, thead, tr, button, del, ins, map, object,
a, abbr, acronym, b, bdo, big, br, cite, code, dfn, em, i, img, kbd, q, samp, small, span,
strong, sub, sup, tt, var, legend, fieldset, figure {
	margin: 0;
	padding: 0;
}

img, fieldset {
	border: 0;
}

iframe {
	border: none;
	max-width: 100%;
}

/* set img max-width */
img {
	max-width: 100%;
	height: auto;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* set html5 elements to block */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display: block;
}

/************************************************************************************
GENERAL STYLING
*************************************************************************************/
body {
	font: 400 .85em/1.5em 'Oxygen', sans-serif;
	background: url(images/bg1-body.png) top center no-repeat;
	background-color: #036536;
	color: #FFF;
	word-wrap: break-word;
}

a {
	text-decoration: underline;
	outline: none;
	color: #FFF;
}
a:hover {
	text-decoration: underline;
}
p {
	margin: 0 0 1.2em;
}
small {
	font-size: .87em;
}
blockquote {
	padding: 8px 30px 15px;
}

/* list */
ul, ol {
	margin: 1em 0 1.4em 24px;
	padding: 0;
	line-height: 1.4em;
}
li {
	margin: 0 0 .5em 0;
	padding: 0;
}

/* headings */
h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
	margin: 1em 0 .8em;
}
h1 {
	font-size: 2em;
}
h2 {
	font-size: 1.6em;
}
h3 {
	font-size: 1.4em;
}
h4 {
	font-size: 1.2em;
}
h5 {
	font-size: 1.1em;
}
h6 {
	font-size: 1em;
}

/* form elements */
input, textarea, select, input[type=search] {
	font-size: 1em;
	font-family: inherit;

	border-radius: 0;
}

/* form field style */
input[type=text], input[type=password], textarea, input[type=search] {
	background: #f5f5f5;
	padding: 6px 10px;
	border: none;
	-webkit-appearance: none;
}
input[type=text]:focus, input[type=password]:focus, textarea:focus, input[type=search]:focus {
	outline: none;
	background: #eee;
}

/* form field width */
input[type=text], input[type=search] {
	width: 240px;
	max-width: 96%;
}
textarea {
	line-height: 1.5em;
	width: 96%;
}

/* search input */
input[type="search"]::-webkit-search-decoration, 
input[type="search"]::-webkit-search-cancel-button {
	display: none;
}

/* form buttons */
button, input[type=reset], input[type=submit] {
	text-transform: uppercase;
	padding: 15px 30px;
	background-color: #000;
	color: #FFF;
	border: none;
	cursor: pointer;
}
button:hover, input[type=reset]:hover, input[type=submit]:hover {
	background-color: #222;
}

/* audio */
audio {
	max-width: 100%;
}

/************************************************************************************
STRUCTURE
*************************************************************************************/
/* main page width */
.pagewidth {
	width: 998px;
	margin: 0 auto;
}

/* body (middle container) */
#body {
	margin: 0 auto;
	padding: 54px 0;
	max-width: 100%;
}

/* content */
#content {
	width: 66.4%;
	float: left;
}

/* sidebar */
#sidebar {
	width: 32.6%;
	float: right;
}

/* sidebar left */
.sidebar-left #content {
	float: right;
}
.sidebar-left #sidebar {
	float: left;
}

/* sidebar none */
.sidebar-none #content {
	width: 100%;
	float: none;
}

/************************************************************************************
GRID
*************************************************************************************/
.col4-1,
.col4-2,
.col4-3,
.col3-1,
.col3-2,
.col2-1
{
	margin-left: 3.2%;
	float: left;
}
.col4-1 {
	width: 22.6%;
}
.col4-2, .col2-1 {
	width: 48.4%;
}
.col4-3 {
	width: 67.8%;
}
.col3-1 {
	width: 31.2%;
}
.col3-2 {
	width: 65.6%;
}
.col.first,
.col4-1.first,
.col4-2.first,
.col4-3.first,
.col3-1.first,
.col3-2.first,
.col2-1.first
{
	margin-left: 0;
	clear: left;
}

/************************************************************************************
HEADER
*************************************************************************************/
#header {
	position: relative;
	height: 114px;
	padding-top: 27px;
}

/* site logo */
#site-logo {
	font-size: 2.5em;
	line-height: 1em;
	float: right;
	padding: 5px 0 10px 0;
	margin: 0 0px 0 10px;
}
#site-logo a {
	text-decoration: none;

}

/* site description */
#site-description {
	font: 300 1em/1.4em 'Oxygen', sans-serif;
	margin: 0;
	padding: 15px 10px 15px 0px;
	float: right;
	border-right: 1px solid #FFF;
	border-color: rgba(255,255,255,.5);
	color: rgba(255,255,255,.7);
}

/* social widget */
.social-widget {
	position: absolute;
	left: 0;
	top: 15px;
}
.social-widget a {
	text-decoration: none;
}
.social-widget a:hover {
	text-decoration: none;
}
.social-widget .widget {
	background: none;
	display: inline-block;
	zoom:1;
	*display:inline;
	padding: 0;
}
.social-widget .widget div {
	display: inline;
}
.social-widget .widgettitle {
	width: auto;
	font-weight: bold;
	font-size: 1.4em;
	text-transform: none;
	border: none;
	letter-spacing: 0;
	position: static;
	display: inline-block;
	zoom:1;
	*display:inline;
	margin: 5px 8px 2px 0;
	padding: 0;
	background: transparent;
}
.social-widget ul {
	margin: 6px 0 0 !important;
	padding: 0;
	display: inline;
}
.social-widget ul li {
	padding: 0 2px 5px 0;
	margin: 0;
	display: inline-block;
	zoom:1;
	*display:inline;
	border: none !important;
	clear: none;
	line-height: 1em;
}
.social-widget li img {
	vertical-align: middle;
	margin-top: -5px;
}

/* RSS */
.social-widget .rss {
	display: inline;
}
.social-widget .rss a {
	background: url(images/rss.png) no-repeat left center;
	padding: 9px 0 8px 35px;
	display: inline-block;
	zoom:1;
	text-indent: -999em;
	*display:inline;
}

#searchform-wrap {
	position: absolute;
	left: 0;
	bottom: 0;
}
#header #searchform {
	width: 140px;
}
#header #searchform #s {
	font-size: 1.1em;
	width: 60px;
	color: #EEE;
	color: rgba(255, 255, 255, .7);
	background: url(images/search.png) no-repeat 8px center;
	padding: 8px 0 8px 40px;
	float: right;
	border: none;

	-webkit-transition: width .7s;
	-moz-transition: width .7s;
	transition: width .7s;
}
#header #searchform #s:focus {
	width: 130px;
	color: #666;
	background: #fff;
	padding-left: 10px;
}

/* main navigation */
#main-nav {
	position: absolute;
	bottom: 0;
	margin: 25px 0 0 0;
	padding: 0;
}
#main-nav li {
	margin: 0 2px 2px 0;
	padding: 0;
	list-style: none;
	float: left;
	position: relative;
}

/* main level link */
#main-nav a {
	background-color: #f26522;
	font-size: 1em;
	display: block;
	padding: 12px 20px;
	text-decoration: none;
}
/* main level link :hover */
#main-nav a:hover {
	background: #222;
}

/* current link */
#main-nav .current_page_item a, #main-nav .current-menu-item a {
	background-color: #000;
}

/* sub-levels link */
#main-nav ul a, #main-nav .current_page_item ul a, #main-nav ul .current_page_item a, #main-nav .current-menu-item ul a, #main-nav ul .current-menu-item a {
	background-color: #000;
	margin: 0;
	display: block;
	width: 180px;
	padding: 12px 15px;
}
/* sub-levels link :hover */
#main-nav ul a:hover, #main-nav .current_page_item ul a:hover, #main-nav ul .current_page_item a:hover, #main-nav .current-menu-item ul a:hover, #main-nav ul .current-menu-item a:hover {
	background-color: #222;
}
/* dropdown ul */
#main-nav ul {
	margin: 0;
	padding-top: 1px;
	list-style: none;
	position: absolute;
	z-index: 1000;
	display: none;
}
#main-nav ul li {
	padding: 0;
	margin: 0;
	float: none;
}
/* sub-levels dropdown */
#main-nav ul ul {
	left: 190px;
	top: -1px;
	padding-left: 21px;
}
/* show dropdown ul */
#main-nav li:hover > ul {
	display: block;
}

/************************************************************************************
PAGE
*************************************************************************************/
/* page title */
.page-title {
	font-size: 2.5em;
	margin: 0 0 25px;
}

/* author page */
.author-bio {
	margin: 0 0 30px;
}
.author-bio .author-avatar {
	float: left;
	margin: 0 15px 0 0;
}
.author-bio .author-avatar img {
	background: #fff;
	padding: 4px;
}
.author-bio .author-name {
	margin: 0 0 5px;
	padding: 0;
	font-size: 1.6em;
}
.author-posts-by {
	margin: 0 0 20px;
	padding: 10px 0 0;
	font-size: 1.4em;
	text-transform: uppercase;
}

/************************************************************************************
CATEGORY SECTIONS
*************************************************************************************/
.category-section {
	clear: both;
	margin-bottom: 30px;
}
.category-section-title {
	font-size: 120%;
	text-transform: uppercase;
	margin: 0 0 20px;
}

/* ***********************************************************************************
FILTER NAVIGATION
*************************************************************************************/	
.sorting-nav {
	margin: 0 0 8px;
}
.sorting-nav li {
	background-color: #f26522;
	margin: 0 2px 2px 0;
	padding: 0;
	list-style: none;
	float: left;
	position: relative;
}
.sorting-nav a {
	font-size: .9em;
	display: block;
	padding: 6px 10px;
	text-decoration: none;
}
.sorting-nav a:hover {
	background: #222;
}
.sorting-nav .active a, .sorting-nav .current-cat a {
	background-color: #000;
}

/* sidebar left filter navigation */
.sidebar-left .sorting-nav {
	margin-left: 10px;
}

/************************************************************************************
LOOPS WRAPPER
*************************************************************************************/
.grid3 .loops-wrapper,
.grid2 .loops-wrapper {
	margin-left: -10px;
	overflow: visible !important;
}
.grid3.sidebar-left .loops-wrapper,
.grid2.sidebar-left .loops-wrapper {
	margin-left: 0;
	margin-right: -10px;
}

/************************************************************************************
POST
*************************************************************************************/
.post {
	background-color: #f26522; /* default color */
	position: relative;
	margin-bottom: 10px;
}

/* post content */
.post-content {
	min-width: 120px;
}

/* post inner */
.post-inner {
	position: relative;
	padding: 30px 4.5%;
}

/* post date */
.post-date,
.shortcode .post-date {
	color: rgba(255,255,255,.7);
}

/* post title */
.post-title {
	font-size: 2em;
	line-height: 1em;
	margin: 0 0 10px;
}
.post-title a {
	text-decoration: none;
}

/* post image */
.post-image {
	position: relative;
	max-width: 100%;
	margin: 0;
}
.post-image img {
	vertical-align: bottom;
}
.post-image.left {
	float: left;
	margin-right: 15px;
}
.post-image.right {
	float: right;
	margin-left: 15px;
}

/* lightbox zoom image */
.post-image .lightbox {
	position: relative;
	display: inline-block;
	zoom:1;
	*display:inline;
	max-width: 100%;
}
.post-image .lightbox .zoom {
	width: 40px;
	height: 40px;
	background: url(images/icon-zoom.png) no-repeat center center;
	margin: -20px 0 0 -20px;
	position: absolute;
	top: 50%;
	left: 50%;
}
.post-image .lightbox:hover .zoom {
	background-color: #000;
}

/* post meta */
.post-meta {
	font-size: .85em;
	font-weight: 300;
	margin-bottom: 8px;
	color: #eee;
	color: rgba(255, 255, 255, .4);
}
.post-meta a {
	color: #fff;
	color: rgba(255, 255, 255, .8);
	text-decoration: none;
}
.post-meta .separator {
	margin: 0 3px;
}


/* list post */
.list-post .loops-wrapper {
	margin-left: 0;
}
.list-post {
	position: relative;
}

/* more link */
.more-link {
	font-size: .95em;
	font-weight: 300;
	background: #FFF;
	color: #000;
	padding: 4px 20px;
	margin: 20px 0;
	text-decoration: none;
	display: table;
}
.more-link:hover {
	color: #FFF;
	text-decoration: none;
	background: #333;
}

/* grid3 post */
.grid3 .post {
	width: 326px;
	float: left;
	margin-left: 10px;
	position: relative;
}
.grid3.sidebar1 .post {
	width: 214px;
}

.grid3 .post-inner {
	padding: 15px 6.1% 8px;
}
.grid3 .post-title {
	font-size: 1.4em;
	line-height: 1.4em;
	margin: 0 0 10px;
	padding: 0;
}
.grid3 .post-meta {
	margin-top: -5px;
}

/* grid2 post */
.grid2 .post {
	width: 494px;
	float: left;
	margin-left: 10px;
	position: relative;
}
.grid2.sidebar1 .post {
	width: 326px;
}
.grid2 .post-inner {
	padding: 15px 6.1% 8px;
}
.grid2 .post-title {
	font-size: 1.5em;
	line-height: 1.3em;
	margin: 0 0 10px;
	padding: 0;
}
.grid2 .post-meta {
	margin-top: -5px;
}


/************************************************************************************
HOME TILES
*************************************************************************************/
.tile-wrapper {
	margin-left: -10px;
	overflow: visible !important;
}
.tile {
	font-size: .95em;
	position: relative;
	float: left;
	margin: 0 0 10px 10px;
	overflow: hidden;
}
.tile.default {
	background-color: #f26522; /* default color */
}
.tile .tile-title {
	font-size: 1.5em;
	margin: 0 0 10px;
	font-weight: 700;
}
.tile .tile-inner {
	padding: 15px 20px;
}

.tile.gallery {
	margin: 0 0 10px 10px !important;
	background: none !important;
}

/* single tile */
.tile-single {
	overflow: hidden;
}
.tile-single .tile-post:first-child {
	margin-left: 0;
}

/* tile sizes */
.tile.small {
	width: 158px;
	height: 158px;
}
.tile.medium {
	width: 326px;
	height: 158px;
}
.tile.large {
	width: 326px;
	height: 326px;
}

/* tile image */
.tile.image {
	overflow: visible; /* for flip animation */
}
.tile.image .tile-overlay a {
	display: block;
	width: 100%;
	height: 100%;
	margin-left: -20px;
	margin-top: -15px;
	padding: 15px 20px;
	text-decoration: none;
}
.tile.image .tile-overlay a:hover {
	text-decoration: none;
}
.tile.image .tile-inner {
	height: 100%;
}

/* tile button */
.tile.button a {
	display: block;
	height: 100%;
	width: 100%;
	text-decoration: none;
}
.tile.button .button-icon {
	text-align: center;
	line-height: 158px; /* same height as tile height to center image */
}
.tile.button.large .button-icon {
	text-align: center;
	line-height: 326px; /* same height as tile height to center image */
}
.tile.button .button-icon img {
	vertical-align: middle;
	padding-bottom: 10px;
}
.tile.button .button-title {
	position: absolute;
	bottom: 10px;
	left: 15px;
	line-height: 1.3em;
	font-size: 1.2em;
	padding-right: 5px;
}

/* map tile */
.tile.map {
	overflow: visible; /* for flip animation */
}
.tile .map-container {
	margin: 0;
	border: none !important;
}

/* tile overlay */
.tile-overlay {
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: #f26522; /* default color */
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	/*opacity: 0;*/

	-webkit-transition: opacity .5s ease-in-out;
	-moz-transition: opacity .5s ease-in-out;
	transition: opacity .5s ease-in-out;
}
.portfolio-post .tile-overlay {
	/*opacity: 0;*/
}
.tile-overlay:hover {
	opacity: 1;
}

/* tile [list_posts] shortcode */
.tile .shortcode.list-posts .post {
	margin-bottom: 15px;
}
.tile .shortcode.list-posts .post-title {
	font-size: 120%;
}
.tile .shortcode.list-posts .post-image {
	margin: 2px 12px 0 0;
}

/* tile [twitter] shortcode */
.tile .shortcode.twitter-list .twitter-timestamp a {
	color: rgba(255,255,255,.7);
	text-decoration: none;
}
.tile .shortcode.twitter-list .follow-user a {
	text-decoration: none;
}

/* tile [flickr] shortcode */
.tile .shortcode.flickr .flickr_badge_image img {
	margin-right: 10px;
	margin-bottom: 10px;
	float: left;
}
.tile.medium .shortcode.flickr .flickr_badge_image img {
	margin-right: 8px;
	margin-bottom: 3px;
	width: 48px;
	height: 48px;
}
.tile.small .shortcode.flickr .flickr_badge_image img {
	margin-right: 3px;
	margin-bottom: 3px;
	width: 36px;
	height: 36px;
}

/* tile-overlay flip transition */
.tile-post.image .tile-flip-wrapper,
.tile-post.map .tile-flip-wrapper,
.portfolio-post .tile-flip-wrapper {	
	-webkit-perspective: 500;
	-webkit-transform-style: preserve-3d;
	perspective: 600px;
	transform-style: preserve-3d;
}
.tile-post.image .tile-flip,
.tile-post.map .tile-flip,
.portfolio-post .tile-flip {
	-webkit-transform-style: preserve-3d;
	-webkit-transition: -webkit-transform 1s;
	transform-style: preserve-3d;
	transition: -webkit-transform 1s;
	transition: transform 1s;
}
.tile-post.image .tile-flip,
.tile-post.map .tile-flip {
	position: absolute;
	height: 158px;
	width: 326px; /* tile large and medium */
}
.tile-post.small .tile-flip {
	width: 158px;
}
.tile-post.large .tile-flip {
	height: 326px;
}
.tile-post.image .side,
.tile-post.map .side,
.portfolio-post .side{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
}

.tile-post.image .front,
.tile-post.map .front,
.portfolio-post .front{
	position: relative;
	z-index: 50;
}
.tile-post.image .back,
.tile-post.map .back,
.portfolio-post .back{
	position: absolute;
	z-index: 10;
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
}
.tile-flipped {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
}
.tile-flipped .back {
	z-index: 999 !important;
}

/* Portfolio Flip Animation */
.portfolio-post {
	overflow: visible; /* for flip animation */
}

body.sidebar1 .grid3 .portfolio-post .tile-flip {
	height: 158px;
	width: 214px;
}

body.sidebar-none .grid3 .portfolio-post .tile-flip,
body.sidebar1 .grid2 .portfolio-post .tile-flip {
	height: 158px;
	width: 326px;
}

body.sidebar-none .grid3 .portfolio-post,
body.sidebar-none .grid3 .portfolio-post .slideshow-wrap,
body.sidebar1 .grid2 .portfolio-post,
body.sidebar1 .grid2 .portfolio-post .slideshow-wrap {
	width: 326px;
}

body.sidebar-none .grid2 .portfolio-post .slideshow-wrap,
body.sidebar-none .grid2 .portfolio-post,
body.sidebar-none .grid2 .portfolio-post .tile-flip {
	width: 494px;
}

body.sidebar1 .grid3 .portfolio-post,
body.sidebar1 .grid3 .portfolio-post .slideshow-wrap {
	width: 214px;
}

body.sidebar1.archive .list-post .portfolio-post,
body.sidebar1.archive .list-post .portfolio-post .slideshow-wrap {
	width: 662px;
}

/************************************************************************************
SLIDESHOW
*************************************************************************************/
.slideshow {
	margin: 0;
	padding: 0;
}
.slideshow li {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	float: left;
}
.slideshow img {
}
.slideshow-wrap {
	visibility: hidden;
	height: 0;
	overflow: hidden;
}

/* slideshow pager */
.slideshow-nav-wrapper {
	background: none;
}
.slideshow-nav-arrows, .carousel-prev, .carousel-next, .shortcode.portfolio .carousel-nav-wrap  {
	width: 100%;
	padding: 0;
	margin: 0;
}
.slideshow-nav-arrows .nav-arrow-prev, .slideshow-nav-arrows .nav-arrow-next,
.carousel-prev, .carousel-next, .shortcode.portfolio .carousel-prev, .shortcode.portfolio .carousel-next {
	position: absolute;
	width: 43px !important;
	height: 43px !important;
	display: block !important;
	text-indent: -999em;
	background-color: none;
	border: none;
	box-shadow: none;
	top: 50%;
	margin-top: -23px; 
}
.slideshow-nav-arrows .nav-arrow-prev, .carousel-prev, .shortcode.portfolio .carousel-prev {
	background: url(images/arrow-left.png) no-repeat;
	position: absolute !important;
	top: 50%;
	left: 10px;
	margin-top: -23px; 
}
.slideshow-nav-arrows .nav-arrow-next, .carousel-next, .shortcode.portfolio .carousel-next {
	background: url(images/arrow-right.png) no-repeat;
	position: absolute !important;
	top: 50%;
	right: 10px;
	margin-top: -23px; 
}
.carousel-nav-wrap {
	display: none;
}
.slideshow-pager, .carousel-pager, .shortcode.portfolio .carousel-pager {
	width: 100%;
	text-align: center;
	margin: 0 0 5px;
	padding: 0;
	clear: both;
	position: absolute;
	bottom: 0;
	height: 30px;
}
.slideshow-pager li, .carousel-pager li, .shortcode.portfolio .carousel-pager li {
	margin: 0;
	padding: 0;
	display: inline-block;
	zoom:1;
	*display:inline;
	position: relative;
}
.slideshow-pager a, .carousel-pager a, .shortcode.portfolio .carousel-pager a {
	text-indent: -900em;
	text-decoration: none;
	width: 11px;
	height: 11px;
	display: block;
	margin: 0 2px;
	cursor: pointer;
	background: #ccc;
	border: none;
	display: inline-block;
	vertical-align: middle;
	
	border-radius: 10em;
}
.slideshow-pager .active, .carousel-pager .selected, .shortcode.portfolio .carousel-pager .selected {
	background: #ebebeb;
}


/************************************************************************************
POST VIDEO (css for fluid video)
*************************************************************************************/
.post-video {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	font-size:.9em;
}
.post-video iframe,  
.post-video object,  
.post-video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/************************************************************************************
CUSTOM POST TYPE SHORTCODE STYLES
*************************************************************************************/
/*
PORTFOLIO POST TYPE
================================================ */
.grid3.portfolio-wrapper,
.grid2.portfolio-wrapper {
	margin-left: -10px;
	overflow: visible !important;
	clear: both;
}
.shortcode.portfolio .post {
	background-color: #f26522; /* default color */
	margin-bottom: 10px;
}
.shortcode.portfolio.grid2 .post {
	width: 494px;
}
.sidebar1 .shortcode.portfolio.grid2 .post {
	width: 326px;
}
.shortcode.portfolio.grid3 .post {
	width: 326px;
}
.sidebar1 .shortcode.portfolio.grid3 .post {
	width: 214px;
}
.shortcode.portfolio.full .post {
	margin-left: 0;
	width: 100%;
}
.shortcode.portfolio.grid3 .post,
.shortcode.portfolio.grid2 .post {
	margin-left: 10px;
}

.shortcode.portfolio .post-image {
	margin: 0;
}
.shortcode.portfolio .post-image img {
	vertical-align: bottom;
}
.shortcode.portfolio .post-inner {
	padding: 15px 20px;
}
.shortcode.portfolio .post-title {
	font-weight: 700;
	margin: 0 0 5px;
}
.shortcode.portfolio .post-image img {
}

/* cancel nth of type clear */
.shortcode.portfolio.grid4 .post:nth-of-type(4n+1),
.shortcode.portfolio.grid3 .post:nth-of-type(3n+1),
.shortcode.portfolio.grid2 .post:nth-of-type(2n+1),
.shortcode.portfolio.grid2-thumb .post:nth-of-type(2n+1) {
	margin-left: 10px;
	clear: none;
}

/* portfolio single */
.single-portfolio .post {
	margin-bottom: 0;
}
.single-portfolio .post-inner {
	min-width: 120px;
	padding: 30px 3%;
	overflow: hidden;
}
.portfolio-post .post-category-wrap {
	margin: 0 0 2px;
	font-size: .95em;
}
.portfolio.shortcode .post-meta {
	padding: 0;
	margin: 0 0 5px;
	line-height: 130%;
}
.portfolio.shortcode .post-category {
	background: none;
	padding: 0;
}
.portfolio-post .post-category a {
	text-transform: uppercase;
	color: rgba(255,255,255,.7);
	text-decoration: none;
}
.single-portfolio .post-image {
	float: left;
	margin: 0;
	max-width: 100%;
	padding: 0;
	position: relative;
	width: 662px;
}

/* single portfolio slideshow nav */
.single-portfolio .carousel-pager {
	text-align: left;
	position: absolute;
	top: 10px;
	left: 10px;
}
.single-portfolio .carousel-pager a {
	font-size: 1em;
	text-indent: 0;
	text-align: center;
	width: 26px;
	height: 24px;
	padding-top: 2px;
	background: #000;
	color: #FFF;
	
	border-radius: 0;
	
	box-shadow: none;
}
.single-portfolio .carousel-pager a:hover,
.single-portfolio .carousel-pager .active {
	background: #FFF;
	color: #000;
}

/* portfolio load more button */
.portfolio #load-more a {
	background-color: #f26522;
	color: #FFF;
}

/************************************************************************************
POST COLORS
*************************************************************************************/
/* purple */
.post.purple,
.tile.purple,
.purple.tile-overlay,
.purple .tile-overlay {
	background-color: #932091;
}

/* magenta */
.post.magenta,
.tile.magenta,
.magenta.tile-overlay,
.magenta .tile-overlay {
	background-color: #ff3097;
}

/* teal */
.post.teal,
.tile.teal,
.teal.tile-overlay,
.teal .tile-overlay {
	background-color: #00aaa9;
			opacity:0.75;
	filter:alpha(opacity=75);
}
.post.teal:hover,
.tile.teal:hover,
.teal.tile-overlay:hover,
.teal .tile-overlay:hover {
	background-color: #00aaa9;
			opacity:1;
	filter:alpha(opacity=100);
}

/* lime */
.post.lime,
.tile.lime,
.lime.tile-overlay,
.lime .tile-overlay {
	background-color: #8abb25;
}

/* brown */
.post.brown,
.tile.brown,
.brown.tile-overlay,
.brown .tile-overlay {
	background-color: #a15100;
}

/* pink */
.post.pink,
.tile.pink,
.pink.tile-overlay,
.pink .tile-overlay {
	background-color: #e878b8;
}

/* orange */
.post.orange,
.tile.orange,
.orange.tile-overlay,
.orange .tile-overlay {
	background-color: #f29603;
		opacity:0.75;
	filter:alpha(opacity=75);
}

.post.orange:hover,
.tile.orange:hover,
.orange.tile-overlay:hover,
.orange .tile-overlay:hover {
	background-color: #f29603;
		opacity:1;
	filter:alpha(opacity=100);
}

/* blue */
.post.blue,
.tile.blue,
.blue.tile-overlay,
.blue .tile-overlay {
	background-color: #09a3e2;
		opacity:0.75;
	filter:alpha(opacity=75);
}
.post.blue:hover,
.tile.blue:hover,
.blue.tile-overlay:hover,
.blue .tile-overlay:hover {
	background-color: #09a3e2;
		opacity:1;
	filter:alpha(opacity=100);
}

/* red */
.post.red,
.tile.red,
.red.tile-overlay,
.red .tile-overlay {
	background-color: #e82900;
}

/* green */
.post.green,
.tile.green,
.green.tile-overlay,
.green .tile-overlay {
	background-color: #2c9633;
}

/* white */
.post.white,
.tile.white,
.white.tile-overlay,
.white .tile-overlay {
	background-color: #FFF;
}

/* black */
.post.black,
.tile.black,
.black.tile-overlay,
.black .tile-overlay {
	background-color: #000;
}


/************************************************************************************
POST FORMATS
*************************************************************************************/
/* post icon */
.post-icon {
	background: url(images/icon-article.png) no-repeat center center;
	width: 26px;
	height: 20px;
	float: left;
	margin: 5px 10px 0 0;
}

.format-audio .post-icon  {
	background-image: url(images/icon-audio.png);
	margin-top: 2px;
}
.format-audio .audio-player { margin: 8px 0 10px; overflow: hidden; } /* for flash fallback */
.format-gallery .post-icon {
	background-image: url(images/icon-gallery.png);
}
.format-link .post-icon {
	background-image: url(images/icon-link.png);
}
.format-quote .post-icon {
	background-image: url(images/icon-quote.png);
}
.format-status .post-icon {
	background-image: url(images/icon-status.png);
}
.format-aside .post-icon {
	background-image: url(images/icon-text.png);
}
.format-video .post-icon {
	background-image: url(images/icon-video.png);
}
.format-image .post-icon {
	background-image: url(images/icon-image.png);
}
.format-chat .post-icon {
	background-image: url(images/icon-chat.png);
}

/* quote */
.format-quote .quote-author {
	font-weight: 300;
	padding: 1em 0 0;
	clear: both;
	text-align: right;
}

/* quote and status containers */
.format-quote .post-inner,
.format-status .post-inner {
	padding: 20px;
}
.format-quote .quote-content,
.format-status .status-content {
	margin-left: 30px;
}
.format-quote .quote-content p,
.format-status .status-content p {
	margin: 0;
}

/*
WHITE STYLE
================================================ */
/* post icons */
.white .post-icon {
	background-image: url(images/dark-icons/icon-article.png);
}
.white.format-audio .post-icon  {
	background-image: url(images/dark-icons/icon-audio.png);
}
.white.format-gallery .post-icon {
	background-image: url(images/dark-icons/icon-gallery.png);
}
.white.format-link .post-icon {
	background-image: url(images/dark-icons/icon-link.png);
}
.white.format-quote .post-icon {
	background-image: url(images/dark-icons/icon-quote.png);
}
.white.format-status .post-icon {
	background-image: url(images/dark-icons/icon-status.png);
}
.white.format-aside .post-icon {
	background-image: url(images/dark-icons/icon-text.png);
}
.white.format-video .post-icon {
	background-image: url(images/dark-icons/icon-video.png);
}
.white.format-image .post-icon {
	background-image: url(images/dark-icons/icon-image.png);
}
.white.format-chat .post-icon {
	background-image: url(images/dark-icons/icon-chat.png);
}

/* reset colors */
.post.white,
.tile.white,
.white.tile-overlay,
.post.white .tile-overlay,
.shortcode.portfolio.white .post{
	color: #666;
}
.post.white a,
.tile.white a,
.white .post-title a,
.white.tile-overlay a,
.white .post-meta,
.white .post-meta a,
.white .post-date, 
.white .shortcode .post-date,
.white .portfolio-post .post-category a,
.tile.white .shortcode.twitter-list .twitter-timestamp a,
.white .commentlist .comment-time {
	color: #000;
	color: rgba(0, 0, 0, .8);
}
.single-portfolio .carousel-pager a {
	color: #FFF;
}

/* form elements */
.white input[type="text"],
.white input[type="password"],
.white textarea,
.white input[type="search"] {
	background-color: #000;
	color: #FFF;
}
.white input[type=text]:focus,
.white input[type=password]:focus,
.white textarea:focus,
.white input[type=search]:focus {
	background-color: #222;
}

/************************************************************************************
PAGE NAVIGATION
*************************************************************************************/
.pagenav {
	clear: both;
	padding: 20px 0;
	text-align: right;
	
}
.pagenav a, .pagenav span {
	font-size: .9em;
	font-weight: 300;
	color: #FFF;
	background-color: #000;
	padding: 2px;
	margin: 0 2px;
	vertical-align: middle;
	display: inline-block;
	zoom:1;
	*display:inline;
	min-width: 24px;
	min-height: 18px;
	text-align: center;
}
.pagenav a {
	text-decoration: none;
}
.pagenav a:hover,
.pagenav .current {
	background-color: #FFF;
	color: #000;
}

/************************************************************************************
POST NAVIGATION
*************************************************************************************/
.post-nav {
	margin: 40px 0;
	padding: 0;
	clear: both;
}
.post-nav span {
	width: 48%;
	position: relative;
}
.post-nav a {
	color: #fff;
	line-height: 1.2em;
	font-size: 1.2em;
	text-decoration: none;
	display: inline-block;
	zoom:1;
	*display:inline;
	vertical-align: middle;
}
.post-nav a:hover {
	text-decoration: none;
}
.post-nav .prev {
	float: left;
}
.post-nav .next {
	float: right;
	text-align: right;
}
.post-nav .arrow {
	background: url(images/arrow-left.png) no-repeat left top;
	width: 43px;
	height: 43px;
	display: inline-block;
	zoom:1;
	*display:inline;
	text-indent: -9000em;
	vertical-align: middle;
	margin-right: 5px;
	font-size: 0;
}
.post-nav .next .arrow {
	background-image: url(images/arrow-right.png);
	margin-left: 5px;
	margin-right: 0;
}

/* white post-format navigation */
.white .post-nav .arrow {
	background: url(images/dark-icons/arrow-left.png) 
}
.white .post-nav .next .arrow {
	background-image: url(images/dark-icons/arrow-right.png);
}

/************************************************************************************
COMMENTS
*************************************************************************************/
.commentwrap {
	margin: 0 0 20px;
	position: relative;
	clear: both;
}

/* comment title */
.comment-title, #reply-title {
	font-size: 1.6em;
	margin: 0 0 10px;
	padding: 0;
}

/* comment pagenav */
.commentwrap .pagenav {
	margin: 10px 0;
	border: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.commentwrap .pagenav.top {
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	right: 0;
}

/* commentlist */
.commentlist {
	margin: 0 0 30px;
	padding: 5px 0 0;
	border-top: solid 1px #ddd;
}
.commentlist li {
	margin: 0;
	padding: 15px 0 0;
	list-style: none;
	position: relative;
}
.commentlist .comment-author {
	margin: 2px 0 5px;
	padding: 0;
}
.commentlist .avatar {
	float: left;
	margin: 0 15px 0 0;
}
.commentlist cite {
	font-style: normal;
	font-size: 1.3em;
}
.commentlist cite a {
	text-decoration: none;
}
.commentlist .bypostauthor > .comment-author cite {
	background: url(images/icon-author-comment.png) no-repeat 0 2px;
	padding-left: 18px;
}
.commentlist .comment-time {
	font-size: .85em;
	font-variant: small-caps;
	color: #EEE;
	color: rgba(255, 255, 255, .8);
}
.commentlist .commententry {
	border-bottom: solid 1px #ddd;
	position: relative;
	min-height: 40px;
	overflow: hidden;
	padding-bottom: 5px;
	word-wrap: break-word;
}
.commentlist ul, .commentlist ol {
	margin: 0 0 0 8%;
	padding: 0;
}

/* reply link */
.commentlist .reply {
	position: absolute;
	right: 0;
	top: 8px;
}
.commentlist .comment-reply-link {
	font-size: .85em;
	text-transform: uppercase;
	text-decoration: none;
}
.commentlist .comment-reply-link:hover {
	text-decoration: none;
}

/* comment form */
#respond {
	margin: 0;
	padding: 10px 0 0;
	position: relative;
	clear: both;
}
#respond #cancel-comment-reply-link {
	position: absolute;
	top: 20px;
	right: 0;
	font-size: .85em;
	line-height: 1em;
	text-decoration: none;
	padding: 5px 10px;
	display: block;
	color: #fff;
	background: #000;
}
#respond #cancel-comment-reply-link:hover {
	background: #222;
}
#commentform {
	margin: 15px 0 0;
}
#commentform input[type=text] {
	width: 206px;
	margin-right: 5px;
}
#commentform label {
	font-size: 1.05em;
	font-variant: small-caps;
	
}
#commentform label small {
	font-variant: normal;
}
#commentform textarea {
	height: 140px;
}
#commentform input#submit {
	padding: 15px 30px;
}

/************************************************************************************
SIDEBAR
*************************************************************************************/
.widget {
	background: #f26522;
	padding: 20px 15px;
	margin-bottom: 3%;
}
.widgettitle {
	font-size: 1.3em;
	line-height: 1em;
	margin: 0 0 20px;
}
.widgettitle a {
	text-decoration: none;
}
.widget ul {
	margin: 0;
	padding: 0;
}
.widget li {
	list-style: none;
	margin-bottom: 10px;
}
.widget li a {
	text-decoration: none;
}
.widget li a:hover {
	text-decoration: underline;
}
.widget li:last-child {
	margin-bottom: 0;
}
.widget ul ul {
	margin: 6px 0 -6px 0px;
	padding: 0;
	border-top: none;
}
.widget ul ul li {
	margin: 0;
	padding-left: 10px;
}

/* sidebar secondary */
#sidebar .secondary {
	width: 48.46%;
	float: left;
}
#sidebar .secondary.last {
	float: right;
}

/************************************************************************************
WIDGET STYLES
*************************************************************************************/
/* calendar widget */
.widget #pb-calendar caption {
	font-weight: bold;
	padding-bottom: 10px;
}
.widget #pb-calendar td {
	width: 31px;
	padding: 4px 2px;
	text-align: center;
}

/* feature posts widget */
.widget .feature-posts-list br {
	display: none;
}
.widget .feature-posts-list .post-img {
	margin: -4px 12px 10px 0;
	float: left;
}
.widget .feature-posts-list small {
	font-size: .9em;
	color: #EEE;
	color: rgba(255, 255, 255, .6);
	display: block;
	margin: 6px 0 3px;
}
.widget .feature-posts-list .feature-posts-title {
	margin: 7px 0 3px;
}
.widget .feature-posts-list .post-excerpt {
	display: block;
}

/* twitter widget */
.widget .twitter-list .twitter-timestamp {
	font-size: .9em;
}
.widget .follow-user {
	margin: 0;
	padding: 5px 0;
}

/* links widget */
.widget .links-list img, .widget_links img {
	vertical-align: middle;
}

/* recent comments widget */
.recent-comments-list .avatar {
	margin-right: 12px;
	float: left;
}

/* flickr widget */
.widget .flickr_badge_image {
	margin-top: 10px;
}
.widget .flickr_badge_image img {
	width: 50px;
	height: 50px;
	margin-right: 12px;
	margin-bottom: 12px;
	float: left;
}

/* search widget */
#sidebar #searchform {
	position: static;
}
#sidebar #searchform #s {
	width: 93%;
}

/* reset twitter embed max-width to 100% */
#content .twitter-tweet-rendered {
	max-width: 100% !important;
}
#content .twt-border {
	max-width: 100% !important;
	min-width: 180px !important;
}

/* Social Links Widget */
.widget .social-links {
	margin: 0 0 20px;
	padding: 0;
	line-height: 1em;
}
.widget .social-links li {
	margin: 0 5px 5px 0;
	padding: 0;
	list-style: none;
	border: none;
	display: inline-block;
	zoom:1;
	*display:inline;
}
.widget .social-links img {
	vertical-align: middle;
}


/************************************************************************************
LOAD MORE BUTTON
*************************************************************************************/
#load-more {
	clear: both;
	margin: 50px 0;
	right: 44%;
	text-align: center;
}
#load-more a {
	font-size: 1.3em;
	font-weight: 300;
	color: #000;
	background-color: #FFF;
	padding: 14px 28px;
	text-decoration: none;
	display: inline-block;
	zoom:1;
	*display:inline;
}
#load-more a:hover {
	color: #FFF;
	background-color: #333;
}


/************************************************************************************
FOOTER
*************************************************************************************/
#footer {
	padding-bottom: 50px;
}

/* footer text */
.footer-text {
	font-size: .85em;
	font-weight: 300;
}
.footer-text,
.footer-text a {
	color: #EEE;
	color: rgba(255, 255, 255, .7);
}

/* footer grid */
#footer .col4-1,
#footer .col4-2,
#footer .col3-1 {
	margin-left: 1.2%;
	float: left;
}
#footer .col4-1 {
	width: 24.1%;
}
#footer .col4-2 {
	width: 49.4%;
}
#footer .col3-1 {
	width: 32.5%;
}
#footer .col4-1.first,
#footer .col4-2.first,
#footer .col3-1.first {
	margin-left: 0;
	clear: left;
}

/* footer navigation */
#footer-nav {
	margin: 20px 0;
}
#footer-nav a {
	text-decoration: none;
}
#footer-nav a:hover {
	text-decoration: underline;
}
#footer-nav li {
	margin-right: 10px;
	list-style: none;
	display: inline-block;
}

/************************************************************************************
WORDPRESS POST FORMATTING
*************************************************************************************/
img.alignleft, img.aligncenter, img.alignright, img.alignnone {
	margin-bottom: 15px;
}
.alignleft {
	float: left;
	margin-right: 30px;
}
.alignright {
	float: right;
	margin-left: 30px;
}
.aligncenter {
	text-align: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.pb-caption {
	text-align: center;
	margin-bottom: 15px;
	max-width: 100%;
}
.pb-caption-text {
	font-style: italic;
	font-size: 95%;
	line-height: 120%;
	margin: 6px 0;
}

/************************************************************************************
GALLERY
*************************************************************************************/
#body .gallery {
	margin: 5px 0 20px 0;
}
#body .gallery img {
	border: none;
	width: auto\9; /* ie8 */
	max-width: 100%;
	height: auto;
}
.grid3 #body .gallery img,
.grid2 #body .gallery img {
	max-width: 60px;
}

/* gallery item */
#body .gallery dl {
	margin: 0 8px 8px 0;
	display: inline-block;
	vertical-align: top;
	zoom:1;
	*display:inline;
	width: auto;
	float: none;
	text-align: center;
}

/* gallery caption */
#body .gallery dd {
	width: 140px;
	line-height: 120%;
	font-size: 90%;
	text-align: center;
	margin: 5px 0 0;
}

/* get rid of br tag */
.gallery br {
	display:none;
}

/************************************************************************************
CLEAR & ALIGNMENT
*************************************************************************************/
.clear {
	clear: both;
}
.left {
	float: left;
}
.right {
	float: right;
}
.textleft {
	text-align: left;
}
.textright {
	text-align: right;
}
.textcenter {
	text-align: center;
}

/* clearfix */
.clearfix:after, .widget li:after, #body:after, #footer:after, footer:after, .pagenav:after, #main-nav:after, .menu:after, .gallery:after, #content:after
{ visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
.clearfix, .widget li, #body, #footer, footer, .pagenav, #main-nav, .menu, .gallery, #content
{ display: inline-block; }
/* clearfix for ie7 */
.clearfix, .widget li, #body, #footer, footer, .pagenav, #main-nav, .menu, .gallery, #content
{ display: block; zoom: 1; }

/************************************************************************************
ISOTOPE
*************************************************************************************/
/* required for containers to inherit vertical size from window */
html,
body {
  height: 100%;
}

/* Start: Recommended Isotope styles */

/**** Isotope Filtering ****/

.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/

.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
      -ms-transition-duration: 0.8s;
       -o-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
     -moz-transition-property: height, width;
      -ms-transition-property: height, width;
       -o-transition-property: height, width;
          transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
     -moz-transition-property:    -moz-transform, opacity;
      -ms-transition-property:     -ms-transform, opacity;
       -o-transition-property:         top, left, opacity;
          transition-property:         transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
     -moz-transition-duration: 0s;
      -ms-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
}
/* End: Recommended Isotope styles */

/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
     -moz-transition: none;
      -ms-transition: none;
       -o-transition: none;
          transition: none;
}

/************************************************************************************
INFINITE SCROLL
*************************************************************************************/
#infscr-loading {
	position: fixed;
	text-align: center;
	bottom: 30px;
	left: 50%;
	width: 50px;
	height: 41px;
	padding-top: 9px;
	margin-left: -25px;
	z-index: 100;
	background: white;
	background: hsla( 0, 0%, 100%, 0.9 );
	overflow: hidden;

}