/*
Theme Name: Agency
Theme URI: http://themify.me/themes/agency
Version: 1.0.5
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: © 2012 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>.

*/

/************************************************************************************
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;
}

/* set img max-width */
img {
	max-width: 100%;
	height: auto;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/* ie 8 img max-width */
@media \0screen {
	img { width: auto;}
}

/* set html5 elements to block */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

/************************************************************************************
GENERAL STYLING
*************************************************************************************/
body {
	font-family: 'Open Sans', sans-serif;
	word-wrap: break-word;
	color: #333;
	-webkit-font-smoothing: antialiased;
}
a {
	text-decoration: none !important;
	outline: none;
	color: #7f0631;
}
a:hover {
	text-decoration: underline;
	color: #7f0631;
}
p {
	margin: 0 ;
	padding: 0;
	word-wrap:break-word;
	white-space: pre-wrap;
}
p a {
	color: #7f0631;
}
p a:hover {
	color: #7f0631;
	text-decoration: underline;
}
small {
	font-size: 87%;
}
blockquote {
	font: italic 110%/130% "Times New Roman", Times, serif;
	padding: 8px 30px 15px;
}
ins {
	text-decoration: none;
}

/* LIST
================================================ */
ul, ol {
	margin: 1em 0 1.4em 24px;
	padding: 0;
	line-height: 140%;
}
li {
	margin: 0 0 .5em 0;
	padding: 0;
}

/* HEADINGS
================================================ */
h1, h2, h3, h4, h5, h6 {
	line-height: 1.4em;
	margin: 20px 0 .4em;
	/*font-family: 'Old Standard TT';*/
	font-weight: normal;
	color: #000;
}
h1 {
	font-size: 2em;
}
h2 {
	font-size: 1.5em;
}
#content h2 {
	text-align: left;
	font-size: 18px;
	font-style: normal;
	/*font-variant: small-caps;*/
	text-transform: uppercase;
	border-bottom: double 4px #eee;
	padding: 0 0 0px;
	margin: 16px 0 11px;
	letter-spacing: 1px;
	clear: both;
}
#content h2 em,
#content h2 i {
	font-style: italic;
	font-variant: normal;
	font-size: 80%;
	color: #aaa;
	letter-spacing: 0;
}
h3 {
	font-size: 1.4em;
}
h4 {
	font-size: 1.4em;
}
h5 {
	font-size: 1.2em;
}
h6 {
	font-size: 1em;
}

/* FORM
================================================ */
/* form input */
input, textarea, select, input[type=search], button {
	font-size: 100%;
	font-family: inherit;
}
input[type=text], input[type=password], textarea, input[type=search], input[type=email] {
	background: #fff;
	border: solid 1px #ddd;
	padding: 6px 10px;
	-webkit-appearance: none;
}
input[type=text], input[type=search], input[type=email] {
	width: 240px;
	max-width: 90%;
}

/* text area */
textarea {
	line-height: 150%;
	width: 94%;
}

/* form input:focus */
textarea:focus, input[type=password]:focus, input[type=text]:focus, input[type=search]:focus, input[type=email]:focus {
	outline: none;
	background: #fff;
}

/* form button */
input[type=reset], input[type=submit], button {
	background-color: #006874;
	color: #fff;
	border: none;
	padding: 7px 20px;
	cursor: pointer;
}

/* form input:hover */
input[type=reset]:hover, input[type=submit]:hover, button:hover {
	background-color: #004148;
	color: #fff;
}

/************************************************************************************
STRUCTURE
*************************************************************************************/
/* main page width */
.pagewidth {
	width: 978px;
	margin: 0 auto;
}

/* body (middle container) */
#body {
	margin: 0 auto;
	max-width: 100%;
	padding: 0 0 20px;
	min-height: 900px;
	padding-bottom: 0;
}

/* content */
#content {
	width: 676px;
	float: left;
	padding:10px 0 0 0;
}
.sidebar-none #content {
	width: 100%;
	float: none;
}

/* sidebar */
#sidebar {
	width: 252px;
	float: right;
	padding: 40px 0 60px;
}

/* sidebar left */
.sidebar-left #content {
	float: right;
}
.sidebar-left #sidebar {
	float: left;
}

/************************************************************************************
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
*************************************************************************************/
#headerwrap {

	width: 100%;
	background: #fff;
    border-bottom: solid 1px #bbb;
}
#site-logo {

	/*left: -11px !important;*/
}
#header {
    position: relative;
	/*padding-bottom: 5px;*/
    /*margin-top:16px;*/
}
.twitter-buttons{
	position: absolute;
	right: 17px;
	top: 11px;
	z-index: 5;


}

/* mail chimp form */
#ns_widget_mailchimp-2 {
    font-size: 12px;
    padding: 5px 0 5px 5px;
    position: absolute;
    width: 273px;
    right: 17px;
    top: 49px;
    background-color: #fff;
    z-index: 2;
}
#ns_widget_mailchimp-2 .widgettitle{
    text-indent: -6px;
    font-style: normal;
    font-size: 14px;
    color: #9f9999;

    padding-top: 13px;
    font-weight: bold;
    text-align: center;
}
#ns_widget_mailchimp-2  input[type="text"]{
    color: #9F9999;
    margin: 0 0 3px;
    text-align: left;
    width: 246px;
}

#ns_widget_mailchimp-2 input[type="submit"]{
    width: 267px;

}
#ns_widget_mailchimp-2 input[type="submit"]:hover{
    background-color: #22bcb7;

}
.twitter-hashtag-button{

}
.signup-btn {
    display: block;

    text-decoration: none;
    text-align: center;
    background-color: #709030;
    border-radius: 81px;
    color: white;
    height: 51px; width: 312px; line-height: 51px; font-size: 20px; z-index: 5;
}
@media screen and (max-width: 900px) {
.signup-btn{ display: none;}
}

.signup-btn:hover {
   background-color: #96ca5c;
display: block;

    text-decoration: none;
    text-align: center;

    border-radius: 81px;
    color: white;
    height: 51px; width: 312px; line-height: 51px; font-size: 20px; z-index: 5;
}
#header #header-sing-up {
    position: absolute;
    bottom: 12px;
    right: 17px;
    width: 280px;
    border-radius: 13px;
}

/*
SITE LOGO
================================================ */
#site-logo {
	margin: 20px 0;
	float: left;
}
#site-logo a {
	font-size: inherit !important;
}
#site-logo a img{
	margin: 0;
	padding: 0;
}


/*
SITE DESCRIPTION
================================================ */
#site-description {
	font: italic;
	color: #000;
	margin: -11px 0 0;
	padding: 0;
	display: inline-block;
	zoom:1;
	*display:inline;
	vertical-align: middle;
    width: 500px;
	font-size: 18px;
	font-weight: bold;
}

/*
FIXED HEADER
================================================ */
.fixed-header {
	position: fixed;
	z-index: 1001;
	top: 0;
	left: 0;
}
.admin-bar .fixed-header {
	top: 26px;
}
.header-on-scroll{
	height: 55px !important;
}
.fixed-header #header hgroup {
	bottom: 5px;
}
.fixed-header #site-logo {
	font-size: 26px;
	margin: 0 10px 0 0;
	padding: 0 0 14px;
	display: inline-block;
	zoom:1;
	*display:inline;
	vertical-align: middle;
}
.fixed-header #site-logo img {
	max-height: 50px;
	width: auto;
}
.fixed-header #site-description {
	padding: 0 0 8px;
	margin: 0;
}
.fixed-header #main-nav-wrap {
	bottom: 16px;
}

/* hide other header elements on fixed */
.fixed-header #social-wrap,
.fixed-header #searchform-wrap {
	display: none;
}

/*
SOCIAL WIDGET
================================================ */
.social-widget {
	position: absolute;
	top: 45px;
	right: 0;
}
.social-widget a {
	text-decoration: none;
}
.social-widget a:hover {
	text-decoration: none;
}
.social-widget .widget {
	display: inline-block;
	zoom:1;
	*display:inline;
	margin: 0 2px 0 0;
	padding: 0;
	background: none;
	border: none;

	border-radius: none;

	box-shadow: none;
}
.social-widget .widget div {
	display: inline;
}
.social-widget .widgettitle {
	width: auto;
	font-weight: bold;
	font-size: 100%;
	font-family: inherit;
	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;

	box-shadow: none;
}
.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: 100%;
}
.social-widget li img {
	vertical-align: middle;
	margin-top: -3px;
}

/* rss */
.social-widget .rss {
	display: inline;
}
.social-widget .rss a {
	background: url(images/rss.png) no-repeat left center;
	padding: 3px 0 2px 30px;
	display: inline-block;
	zoom:1;
	*display:inline;
}

/*
SEARCH FORM
================================================ */
#header #searchform {
	position: absolute;
	right: 0;
	top: 5px;
	width: 160px;
	z-index: 100;
}
#header #searchform #s {
	width: 60px;
	border: solid 1px #ddd;
	background: #fff url(images/search.png) no-repeat 8px center;
	padding: 4px 4px 4px 28px;
	float: right;


	-webkit-transition: width .7s;
	-moz-transition: width .7s;
	transition: width .7s;
}
#header #searchform #s:focus {
	width: 140px;
}

/*
MAIN NAVIGATION
================================================ */
#main-nav-wrap {
    position: relative;
    margin: 0px 0 0 0;
    padding: 0;
    left: -12px;
}
#main-nav {
	margin: 0;
	padding: 0;
}
#main-nav li {
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	position: relative;
}

/* main level link */
#main-nav a {
	color: #008291;
	font-weight: bold;
	font-size: 13px;
	display: block;
	padding: 6px 12px;
	margin: 0;
	text-decoration: none;
	cursor: default;
}
#main-nav a[href] {
	cursor: pointer;
}
/* main level link :hover */
#main-nav a:hover {
	color: #000;
}

/* current link */
#main-nav .current_page_item a, #main-nav .current-menu-item a {
	color: #000;
}
/* current link :hover */
#main-nav .current_page_item a:hover, #main-nav .current-menu-item a:hover {
	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, #main-nav li:hover > ul a  {
	color: #666;
	font-size: 95%;
	line-height: 140%;
	font-weight: normal;
	text-transform: none;
	padding: 6px 6px 6px 15px;
	margin: 0;
	display: block;
	width: 170px;
	background: none;
	border: none;
	text-shadow: none;

	border-radius: 0;

	box-shadow: none;
}
/* 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, #main-nav li:hover > ul a:hover {
	background: #ddd;
	color: #000;
	color: black;
}
/* dropdown ul */
#main-nav ul {
	margin: 0;
	padding: 5px 0;
	list-style: none;
	position: absolute;
	background: #eee;
	z-index: 100;
	display: none;
}
#main-nav ul li {
	background: none;
	padding: 0;
	margin: 0;
	float: none;
}
/* sub-levels dropdown */
#main-nav ul ul {
	left: 180px;
	top: -2px;
}
/* show dropdown ul */
#main-nav li:hover > ul {
	display: block;
}

/************************************************************************************
SLIDER
*************************************************************************************/
#sliderwrap {
	background: #eee url(images/fibre-bg.png);
	border-bottom: solid 1px #ccc;
	padding: 4% 0 2%;
	position: relative;
}
#slider {
	overflow: hidden;
	font-size: 115%;
}
#slider p {
	margin: 0 0 20px;
}
#slider h1,
#slider h2,
#slider h3,
#slider h4,
#slider h5,
#slider h6 {
	padding: 0;
	margin: 0 0 5px;
	border: none;
	font-variant: inherit;
}
.slide-post-title {
	margin: 0 0 5px;
	font-size: 200%;
	line-height: 110%;
	font-style: italic;
}
.slide-image img {
	vertical-align: bottom;
}

/* slider [gallery] */
#slider .gallery img {
	width: 50px;
	max-width: 50px;

	border-radius: 5px;
}

/* slides */
#slider .slides {
	margin: 0 0 5px;
	padding: 0;
	overflow: hidden;
	height: 0; /* hide slider and then expand by js */
}
#slider .slides li {
	position: relative;
	margin: 0;
	padding: 0;
	width: 100%;
	list-style: none;
	float: left;
	overflow: hidden;
}
/* default slide */
.slider-default .slide-image {
	float: left;
	margin: 0 30px 10px 0;
}
.slider-default .slide-content {
	overflow: hidden;
	min-width: 120px;
	padding: 30px 0 0 0;
}

/* video in slider */
.slides .post-video {
	margin-bottom: 0;
}
.slider-default .post-video {
	width: 600px;
}

/* image caption slide */
.slider-image-caption .slide-content {
	position: relative;
	font-size: 85%;
	line-height: 140%;

	position: absolute;
	bottom: 0;
	left: 0;
	padding: 15px 20px 10px;
	z-index: 5;
	background: #000;
	background: rgba(0,0,0,.7);
	color: #ccc;
}
.slider-image-caption .slide-post-title {
	color: #fff;
	margin: 0 0 5px;
	padding: 0;
	font-size: 130%;
}
.slider-image-caption .slide-image {
	float: none;
}
#slider .slider-image-caption p {
	margin: 0;
}
.slider-image-caption a {
	text-decoration: none;
	color: #fff;
}
.slider-image-caption a:hover {
	text-decoration: underline;
}


/* Slider plugin style
================================================ */
/* FlexSlider Necessary Styles */
#slider .slides > li {
	display: none;
}

/* slider pager */
.flex-control-nav {
	text-align: center;
	margin: 0;
	padding: 10px 0;
	clear: both;
	position: relative;
	display: inline-block;
	zoom:1;
	*display:inline;
	width: 100%;
}
.flex-control-nav li {
	margin: 0;
	padding: 0;
	display: inline-block;
	zoom:1;
	*display:inline;
	position: relative;
}
/* pager button */
.flex-control-nav a {
	text-indent: -900em;
	width: 11px;
	height: 11px;
	display: block;
	margin: 0 4px;
	cursor: pointer;
	background: #e1e1e1;
	display: inline-block;
	vertical-align: middle;

	border-radius: 10em;

	box-shadow: inset 0 1px 2px rgba(0,0,0,.3);
}
/* pager active */
.flex-control-nav .flex-active {
	background: #afafaf;
}

/* Next previous slide button
================================================ */
.flex-direction-nav {
	margin: 0;
	padding: 0;
}
.flex-direction-nav li {
	margin: 0;
	padding: 0;
	list-style: none;
}
.flex-direction-nav a {
	position: absolute;
	top: 50%;
	width: 37px;
	height: 38px;
	background: #fff;
	color: #333;
	text-decoration: none;
	text-align: center;
	font: 24px/100% "Times New Roman", Times, serif;
	padding-top: 9px; /* for center align text */

	box-shadow: 0 1px 1px rgba(0,0,0,.4);
}
.flex-direction-nav .flex-prev {
	left: 0;

	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
.flex-direction-nav .flex-next {
	right: 0;

	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}


/************************************************************************************
WELCOME MESSAGE
*************************************************************************************/
.welcome-message {
	text-align: center;
	font-size: 120%;
	margin: 40px 0 60px;
}
.welcome-message h1,
.welcome-message h2,
.welcome-message h3,
.welcome-message h4,
.welcome-message h5,
.welcome-message h6 {
	margin: 0 0 .2em;
}
a.shortcode.button {
	font: bold 12px/100% Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
	white-space: nowrap;
	color: #fff;
	background: #997551;
	padding: 10px 20px;
	margin-left: 5px;
	margin-right: 5px;
	border-color: transparent;

	text-shadow: none;

	box-shadow: none;
}
a.shortcode.button:hover {
	background: #000;
}

/************************************************************************************
PAGE
*************************************************************************************/
/* page title */
.page-title {
	border-bottom: 1px solid #ccc;
	padding-bottom: 5px;
	margin-bottom: 1em;
}

/*
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;
	border: solid 1px #ccc;
}
.author-bio .author-name {
	margin: 0 0 5px;
	padding: 0;
	font-size: 160%;
}
.author-posts-by {
	margin: 0 0 20px;
	padding: 10px 0 0;
	font-size: 140%;
	text-transform: uppercase;
	border-top: double 4px #ccc;
	border-color: rgba(118,118,118,.3);
}

/*
CATEGORY SECTIONS
================================================ */
.category-section {
	clear: both;
	margin-bottom: 30px;
}
.category-section-title {
	font-size: 120%;
	text-transform: uppercase;
	margin: 0 0 20px;
	padding: 10px 0 0;
	border-top: double 4px #ccc;
}

/************************************************************************************
PAGE NAVIGATION
*************************************************************************************/
.pagenav {
	clear: both;
	padding-bottom: 20px;
	text-align: right;
}
.pagenav a, .pagenav span {
	line-height: 100%;
	padding: 4px 0 3px;
	margin: 0 2px;
	vertical-align: middle;
	display: inline-block;
	zoom:1;
	*display:inline;
	min-width: 24px;
	min-height: 18px;
	text-align: center;

	border-radius: 5px;
}
.pagenav a {
	background: #997551;
	color: #fff;
	text-decoration: none;
}
.pagenav a:hover {
	background-color: #000;
}
.pagenav .current {
	text-decoration: none;
}

/************************************************************************************
POST
*************************************************************************************/
.post {
	margin-bottom: 40px;
}
.list-post .post {
	margin-bottom: 20px;
}
/* post content */
.post-content {
	min-width: 120px;
}
.post-content p {
	margin-bottom: 1em;
}
/* post title */
.post-title {
	margin: 0 0 5px;
	padding: 0;
	font-size: 190%;
}
.post-title a {
	color:#709030;
}

/* post image */
.post-image {
	max-width: 100%;
	margin: 0 0 5px;
}
.post-image img {
	border-radius: 5px;
}
.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%;
	z-index: 1000;

	border-radius: 10em;
}
.post-image .lightbox:hover .zoom {
	background-color: #000;
}

/* post meta */
.post-meta {
	margin: 0 0 10px;
	font: normal 85%/120% Arial, Helvetica, sans-serif;
	text-transform: uppercase;
}
.post-meta a {
	font-weight: bold;
}
.post-meta .separator {
	color: #ddd;
	margin: 0 5px;
}

/* post date */
.post-date {
	margin: 10px 0 5px;
	/*font: italic 100%/120% 'Old Standard TT';*/
	display: block;
}

/* more button */
.more-link {
	font: bold 12px/100% Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
	white-space: nowrap;
}

/* grid4 post */
.grid4 .post {
	width: 22.6%;
	float: left;
	margin-left: 3.2%;
}
.grid4 .post-title {
	font-size: 130%;
	margin: 0 0 3px;
	padding: 0;
}

/* grid3 post */
.grid3 .post {
	width: 31.2%;
	float: left;
	margin-left: 3.2%;
}
.grid3 .post-title {
	font-size: 150%;
	margin: 0 0 3px;
	padding: 0;
}

/* grid2 post */
.grid2 .post {
	width: 48.4%;
	float: left;
	margin-left: 3.2%;
}
.grid2 .post-title {
	font-size: 160%;
	margin: 0 0 3px;
	padding: 0;
}

/* grid2-thumb post */
.grid2-thumb .post {
	width: 48.4%;
	float: left;
	margin-left: 3.2%;
}
.grid2-thumb .post-title {
	margin: 0 0 5px;
	font-size: 160%;
}
.grid2-thumb .post-image {
	float: left;
	margin: 5px 14px 10px 0;
}
.grid2-thumb .post-content {
	overflow: hidden;
}

/* list thumb post */
.list-thumb-image .post-image {
	float: left;
	margin: 7px 16px 10px 0;
}
.list-thumb-image .post-content {
	overflow: hidden;
}

/* list large image */
.list-large-image .post-image {
	float: left;
	margin: 7px 22px 10px 0;
}
.list-large-image .post-title {
	font-size: 200%;
	margin: 0 0 5px;
	padding: 0;
}
.list-large-image .post-content {
	overflow: hidden;
}

/*
Clear grid layout posts
================================================ */
.grid4 .loops-wrapper,
.grid3 .loops-wrapper,
.grid2 .loops-wrapper,
.grid2-thumb .loops-wrapper {
	clear: both;
	overflow: hidden;
}

.grid4 .post:nth-of-type(4n+1),
.grid3 .post:nth-of-type(3n+1),
.grid2 .post:nth-of-type(2n+1),
.grid2-thumb .post:nth-of-type(2n+1) {
	margin-left: 0;
	clear: left;
}

/************************************************************************************
POST VIDEO (css for fluid video)
*************************************************************************************/
.post-video {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin-bottom: 15px;
}
.post-video iframe,
.post-video object,
.post-video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/************************************************************************************
POST NAVIGATION
*************************************************************************************/
.post-nav {
	clear: both;
	border-top: double 4px #eee;
	padding: 30px 0 0;
	margin: 30px 0 40px;
	overflow: hidden;
}
.post-nav span {
	width: 47%;
	position: relative;
}
.post-nav a {
	text-decoration: none;
	display: block;
	color: #787878;
	/*font: italic 120%/140% 'Old Standard TT';*/
}
.post-nav a:hover {
	text-decoration: none;
}
.post-nav .prev {
	float: left;
}
.post-nav .next {
	float: right;
	text-align: right;
}

/* post nav arrow */
.post-nav span span {
	color: #fff;
	background: #088888;
	font: normal 20px/100% "Times New Roman", Times, serif;
	display: block;
	width: auto;
	float: left;
	width: 32px;
	height: 28px;
	padding: 6px 0 0;
	text-align: center;
	margin: -8px 10px 17px 0;

	border-radius: 5px;
}
.post-nav .next span {
	float: right;
	margin-left: 10px;
	margin-right: 0;
}
.post-nav a:hover span {
	background: #22bcb7;
}

/************************************************************************************
CUSTOM POST TYPE SHORTCODE STYLES
*************************************************************************************/
/*
TESTIMONIAL POST TYPE
================================================ */
.shortcode.testimonial {
	margin-top: 20px;
	margin-bottom: 30px;
	overflow: hidden;
	clear: both;
}

/*
TEAM POST TYPE
================================================ */
.shortcode.team {
	margin-top: 20px;
	margin-bottom: 30px;
	overflow: hidden;
	clear: both;
}

/*
HIGHLIGHT POST TYPE
================================================ */
.shortcode.highlight {
	margin-top: 20px;
	margin-bottom: 30px;
	overflow: hidden;
	clear: both;
}
.shortcode.highlight .post {
	margin-bottom: 30px;
}
.shortcode.highlight .post-image {
	float: left;
	margin: 0 20px 5px 0;
}
.shortcode.highlight .post-image img {
	border-radius: 5px;
}
.shortcode.highlight .post-content {
	overflow: hidden;
}

/*
PORTFOLIO POST TYPE
================================================ */
.portfolio {
	text-align: center;
}
.shortcode.portfolio {
	margin-top: 20px;
	margin-bottom: 30px;
	overflow: hidden;
	clear: both;
}
.shortcode.portfolio .post {
	margin-bottom: 30px;
	text-align: center;
}
.shortcode.portfolio .post-image {
	margin: 0 0 5px 0;
}
.shortcode.portfolio .post-image img {
	border-radius: 5px;
}

/* more link wrap */
.more-link-wrap {
	text-align: right;
	clear: both;
	margin: 10px 0 20px;
}

/* portfolio post meta */
.portfolio .post-meta {
	margin: 0;
	text-align: inherit;
}
.portfolio .post-date {
	margin: 0 0 15px;
	text-align: inherit;
	font-size: 90%;
}
.shortcode.portfolio .post-meta .post-category {
	background: none;
	padding: inherit;
}

/* portfolio single */
.single .portfolio {
	text-align: left;
}
.single .portfolio .post-image {
	width: 640px;
	max-width: 100%;
	float: left;
	margin: 0 30px 20px 0;
	padding: 0;
	position: relative;
}

/* portfolio slideshow */
.portfolio .carousel-wrap {
	margin-bottom: 0 !important;
}
.slideshow-wrap {
	visibility: hidden;
	height: 0;
	overflow: hidden;
}
.portfolio .slideshow {
	margin: 0;
	padding: 0;
}
.portfolio .slideshow li {
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	width: 100%;
	text-align: center;
}
.portfolio .slideshow img {
	margin-bottom: 5px;
}

/* portfolio slideshow nav */
.portfolio .carousel-nav-wrap {
	margin: 0;
}
.portfolio .carousel-pager {
	text-align: center;
	margin: 0;
	padding: 0;
	clear: both;
	position: relative;
	display: inline-block;
	zoom:1;
	*display:inline;
	width: 100%;
}
.portfolio .carousel-pager a {
	text-indent: -900em;
	width: 11px;
	height: 11px;
	border: none;
	display: block;
	margin: 0 2px;
	cursor: pointer;
	background: #e1e1e1;
	display: inline-block;
	vertical-align: middle;

	border-radius: 10em;

	box-shadow: inset 0 1px 2px rgba(0,0,0,.3);
}
.portfolio .carousel-pager a.selected {
	background: #afafaf;
}

/* single portfolio slideshow nav */
.single-portfolio .carousel-pager {
	text-align: left;
	position: absolute;
	top: 10px;
	left: 10px;
}
.single-portfolio .carousel-pager a {
	text-indent: 0;
	text-align: center;
	width: 26px;
	height: 24px;
	padding-top: 2px;
	background: #fff;
	color: #999;
	font-size: 12px;
	border: none;
	border-radius: 5px;

	box-shadow: none;
}
.single-portfolio .carousel-pager a.selected {
	background: #997551;
	color: #fff;
}

/* portfolio details */
.single .portfolio .post-content {
	overflow: hidden;
}


/************************************************************************************
FILTER NAVIGATION
*************************************************************************************/
.sorting-nav {
	padding: 0;
	margin: 5px 0 20px;
}
.sorting-nav li {
	margin: 0 5px 5px 0;
	padding: 0;
	list-style: none;
	text-align: right;
	display: inline-block;
	zoom:1;
	*display:inline;
}
.sorting-nav a {
	padding: 4px 10px;
	color: #000;
	background: #fff;
	font-size: 95%;
	text-decoration: none;
	line-height: 100%;
	vertical-align: middle;
	text-transform: uppercase;

	border-radius: 5px;
}
.sorting-nav a:hover {
	text-decoration: underline;
}
.sorting-nav .active a, .sorting-nav .current-cat a {
	background: #997551;
	color: #fff;
}


/*
TESTIMONIAL POST TYPE
================================================ */
.shortcode.testimonial {
	margin-bottom: 30px;
	overflow: hidden;
	clear: both;
}
.shortcode.testimonial .post {
	margin-bottom: 30px;
}
.shortcode.testimonial .post-image {
	float: left;
	margin: 0 20px 5px 0;
}
.shortcode.testimonial .post-image img {
	border-radius: 20em;
}
.shortcode.testimonial .post-content {
	overflow: hidden;
	font: italic 125%/140% 'Old Standard TT';
}
.shortcode.testimonial .testimonial-author {
	clear: both;
	text-align: right;
}
.shortcode.testimonial .testimonial-author .dash {
	width: 20px;
	border-bottom: solid 1px #ddd;
	margin: -15px 6px 0 0;
	height: 10px;
	display: inline-block;
	vertical-align: middle;
	zoom:1;
	*display:inline;
}
.shortcode.testimonial .testimonial-author .testimonial-name {
	margin: 0 0 5px;
	font: bold 85%/100% Arial, Helvetica, sans-serif;
	color: #666;
	text-transform: uppercase;
	display: inline-block;
	vertical-align: middle;
	zoom:1;
	*display:inline;
}
.shortcode.testimonial .testimonial-author .testimonial-title {
	display: block;
	font: italic 80%/120% 'Old Standard TT';
}

/*
TEAM POST TYPE
================================================ */
.shortcode.team {
	margin-bottom: 30px;
	overflow: hidden;
	clear: both;
}
.shortcode.team .post {
	margin-bottom: 30px;
}
.shortcode.team .post-image {
	float: left;
	margin: 0 20px 5px 0;
}
.shortcode.team .post-image img {
	border-radius: 20em;
}
.shortcode.team .post-content {
	overflow: hidden;
	margin-top: 20px;
}
.shortcode.team .team-info {
	margin: 0 0 5px;
}
.shortcode.team .team-info .team-name {
	margin: 0 0 5px;
	font: bold 100%/120% Arial, Helvetica, sans-serif;
	color: #666;
	text-transform: uppercase;
	display: block;
}
.shortcode.team .team-info .team-title {
	display: block;
	font: italic 100%/120% 'Old Standard TT';
}

/************************************************************************************
COMMENTS
*************************************************************************************/
.commentwrap {
	margin: 10px 0 20px;
	position: relative;
	clear: both;
}

/* comment title */
.comment-title, #reply-title {
	font-size: 140%;
	margin: 0 0 10px;
	padding: 0;
}

/* comment pagenav */
.commentwrap .pagenav {
	margin: 10px 0;
	border: none;

	box-shadow: none;
}
.commentwrap .pagenav.top {
	margin: 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 10px;
	padding: 0;
}
.commentlist .avatar {
	float: left;
	margin: 0 15px 0 0;

	border-radius: 20em;
}
.commentlist cite {
	font-style: italic;
	font-size: 130%;
}
.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: 75%;
	text-transform: uppercase;
}
.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 7%;
	padding: 0;
}

/* reply link */
.commentlist .reply {
	position: absolute;
	right: 0;
	top: 8px;
}
.commentlist .comment-reply-link {
	font-size: 11px;
	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: 85%;
	line-height: 100%;
	text-decoration: none;
	padding: 5px 10px;
	display: block;
	color: #fff;
	border: solid 1px #9e0b0f;

	text-shadow: 0 -1px 0 rgba(0,0,0,.4);

	background: #e41d24;
	background: -moz-linear-gradient(top, #fb4e55 0%, #d7020a 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fb4e55), color-stop(100%,#d7020a));
	background: -webkit-linear-gradient(top, #fb4e55 0%,#d7020a 100%);
	background: -o-linear-gradient(top, #fb4e55 0%,#d7020a 100%);
	background: -ms-linear-gradient(top, #fb4e55 0%,#d7020a 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fb4e55', endColorstr='#d7020a',GradientType=0 );
	background: linear-gradient(top, #fb4e55 0%,#d7020a 100%);

	box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 1px rgba(0,0,0,.2);

	border-radius: 5px;
}
#respond #cancel-comment-reply-link:hover {
	background: #fb4e55;
}
#commentform {
	margin: 15px 0 0;
}
#commentform input[type=text] {
	width: 206px;
	margin-right: 5px;
}
#commentform label {
	font-weight: bold;
}
#commentform label small {
	font-weight: normal;
}
#commentform textarea {
	height: 140px;
}
#commentform input#submit {
	padding: 7px 20px;
}

/************************************************************************************
SIDEBAR
*************************************************************************************/
.widget {
	margin: 0 0 30px;
	word-wrap: break-word;
}
.widgettitle {
	margin: 0 0 10px;
	padding: 0;


}
.widget ul {
	margin: 0;
	padding: 0;
}
.widget li {
	margin: 0;
	padding: 6px 0;
	list-style: none;
	clear: both;
	border-top: solid 1px #ddd;
}
.widget ul ul {
	margin: 6px 0 -6px 0px;
	padding: 0;
	border-top: none;
}
.widget ul ul li {
	margin: 0;
	padding-left: 10px;
}

/************************************************************************************
WIDGET STYLES
*************************************************************************************/
/* calendar widget */
.widget #wp-calendar caption {
	font-weight: bold;
	padding-bottom: 10px;
}
.widget #wp-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-style: italic;
	font-size: 90%;
	display: block;
	margin: 0 0 3px;
}
.widget .feature-posts-list .feature-posts-title {
	margin: 4px 0 3px;
}
.widget .feature-posts-list .post-excerpt {
	display: block;
}

/* twitter widget */
.widget .twitter-list .twitter-timestamp a {
	font-style: italic;
	font-size: 90%;
}
.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;
}

/* widget shortcode post title */
#sidebar .shortcode .post-title {
	font-size: 120%;
}

/* Social Links Widget */
.widget .social-links {
	margin: 0 0 20px;
	padding: 0;
	line-height: 100%;
}
.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;
}

/************************************************************************************
FOOTER
*************************************************************************************/
#footerwrap {

	border-top: solid 1px #ccc;
	padding: 30px 0;
	position: relative;
}
#footer {
	clear: both;
}
#footer_text_top {
    text-align: center;
    font-weight: bold;
    padding-bottom: 26px;
}
#footer_logos img {
    padding: 16px 16px 48px 16px;
    border: none;
}
#footer_logos a {
	border: none;
	text-decoration: none;
}
#footer_logos  {
        margin: 0 auto;

        width: 1020px;
    }

@media screen and (max-width: 900px)  {
    #footer_logos  {
        margin: 0 auto;
        width: 320px;
    }
}

/* footer nav */
.footer-nav {
	margin: 5px 0 10px;
	padding: 0;
	text-align: center;
}
.footer-nav li {
	padding: 0;
	margin: 0 8px;
	display: inline;
	list-style: none;
}
.footer-nav a {
	text-decoration: none;
	line-height: 100%;
	vertical-align: middle;
	text-transform: uppercase;
}

/* back to top */
.back-top {
	clear: both;
	margin: 30px 0 5px;
}
.back-top a {
	background: #997551 url(images/arrow-up.png) no-repeat center center;
	display: block;
	width: 34px;
	height: 34px;
	margin: 15px auto 10px;
	text-indent: -900em;

	border-radius: 10em;
}
.back-top a:hover {
	background-color: #000;
}

/* footer text */
.footer-text {
	clear: left;
	font-size: 85%;
	text-align: center;
}

/************************************************************************************
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;
}
.wp-caption {
	text-align: center;
	margin-bottom: 15px;
	max-width: 100%;
}
.wp-caption-text {
	font-style: italic;
	font-size: 95%;
	line-height: 120%;
	margin: 6px 0;
}

/************************************************************************************
GALLERY
*************************************************************************************/
#body .gallery {
	margin: 0 0 20px 0;
}
#body .gallery img {
	border: none;
}

/* 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; }



/*  Table styles */
 table,
.comment-content table {
	border-bottom: 1px solid #ededed;
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	width: 100%;
}
table caption,
.comment-content table caption {
	font-size: 16px;
	font-size: 1.142857143rem;
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
td,
.comment-content td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 0;
}
.page-content{
    clear: both;
    max-width: 700px;
    padding-top: 20px;
}
/* speakers single page */

.speakers-image {
    float: left;
    padding: 0 48px 24px 0;
}
.speakers-meta {
    padding: 0 30px 0 0;
}

@media (max-width:500px) {
    .speakers-meta {
        float: left;
        padding: 16px;
    }
}

.speakers-meta .speakers-name {
    padding-top: 2px;
}
.speakers-meta ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.speakers-meta .speakers-meta-name {
    font-weight: bold;
    display: inline-block;
    width: 140px;
    font-size: 12px;
    vertical-align: top;
}
.speakers-meta .speakers-meta-value{
    color: #709030;
    max-width: 300px;
    display: inline-block;
    font-size: 13px;
}
.speakers-content {
    max-width: 900px;

}

/* Schedule Single Page */

#sched-container {
    max-width: 960px;
    margin: 0 auto;
    border: #999 1px solid;
    padding: 0;
}
/*
.sched-wrap-breakout{
	float: left;
	width: 50%;
}
*/
#sched-container .sched-module{
    padding: 10px 16px 35px;
    margin: 0;
    border-bottom: #999 1px solid;;
}
#sched-container .sched-title-div:before,
#sched-container .sched-title-div:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

#sched-container .sched-title-div:after {
    clear: both;
}
#sched-container .sched-title-div {
    font-size: 13px;
    *zoom: 1;
}
#sched-container .sched-module-keynote{
    background-color: #fbf2ee;
}
#sched-container .sched-module-break{
    background-color: #f1f5ec;
}
#sched-container .sched-module-breakout{
    background-color: #f2f2f2;
}
#sched-container .sched-title {
	padding: 8px 16px 6px;
	margin: 0;
	text-align: left;
	border-bottom: none;
	display: inline-block;
	float: left;

	font-size: 20px;
	text-transform: none;
}
#sched-container .sched-time {
	padding: 16px 12px 0 36px;
	display: inline-block;
    float: right;
    font-weight: bold;

    margin: 0;
}
#sched-container .sched-presenter{
    float: left;
    display: block;
    margin: 0;
    padding: 0 0 24px 0;
    font-weight: normal;
    color: #709030;

    font-style: normal;
    font-size: 18px;
}
#sched-container .sched-presenter-a{
    float: left;
    display: block;
    margin: 0;
    padding: 0 0 6px 0;
    font-weight: normal;
    color: #709030;
	text-decoration: underline;
    font-style: normal;
    font-size: 18px;
}
#sched-container .sched-loc {
    clear: both;
    font-size: 12px;
    font-style: italic;
    padding: 0;
    margin: 0;
}
#sched-container .sched-content {
    clear: both;
    margin: 0;
    padding: 0;
}
#sched-container .sched-content p{

    margin: 0;
    color: #787878;
}
/*  Home Page Intro */
#intro-content {


    margin: 0;
}
#intro-content:before,
#intro-content:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

#intro-content:after {
    clear: both;
}
#intro-content {
    position: relative;
    *zoom: 1;
    top: 7px;
    padding: 0 30px 0px;
    border-bottom: 1px #bbb solid;
    margin-bottom: 10px;
}
#intro-content h1 {
    position: relative;
    font-size: 26px;
}
#intro-content h1 .title {

    font-size: 28px;
    color: #709030;
}
#intro-content blockquote{
    font-size: 24px;
    margin-bottom:  61px;
}
#intro-content time{
    color: #709030;
    float: left;
    font-size: 26px;
    font-weight: bold;
    word-spacing: 4px;
    letter-spacing: 3px;
    margin-top: 6px;
}
#intro-content h4{
    float: right;
    margin: 0;
    font-size: 28px;
}
@media screen and (max-width: 400px) {
    #intro-content {


        margin: 26px 0;
    }
    #intro-content h1 {
        font-size: 23px;
    }
    #intro-content h1 .title {

        font-size: 25px;

    }
    #intro-content blockquote{
        font-size: 16px;
        margin-bottom:  30px;
    }
    #intro-content time{

        float: none;
        font-size: 16px;


    }
    #intro-content h4{

       float: none;
        font-size: 16px;
    }

}

/*  Home Page Speakers  */

#keynote-slider-container  {
    width: 964px;
    margin: 31px auto 28px 0;
	padding-bottom: 37px;
    border-bottom: 1px #bbb solid;
}
#keynote-slider-container:before,
#keynote-slider-container:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

#keynote-slider-container:after {
    clear: both;
}
#keynote-slider-container {
    *zoom: 1;
}

#keynote-slider-container .keynote-slider {
    position: relative;
    width: 252px;
    float: left;

    padding: 0 100px 0 0px;
    height: 572px;
    overflow: hidden;
    margin-bottom: 50px;
}
#keynote-slider-container.new-version {
	font-size: 14px;
}
#keynote-slider-container.new-version .keynote-slider {
	width: 200px;
	padding-right: 50px;
}
#keynote-slider-container.new-version .keynote-slider-4 {
	padding-right: 0;
}
#keynote-slider-container .keynote-slider-3 {
	padding: 0;
}
#keynote-slider-container .keynote-slider-image {
    margin: 0 auto;

}
#keynote-slider-container .keynote-slider-name  {
    text-align: left;
    text-align: left;
    padding: 0;
    border: none;
    margin: 4px 0 12px;
    text-decoration: none;

}
#keynote-slider-container .keynote-slider-excerpt {
    height: 195px;
    overflow: hidden;

}
#keynote-slider-container .keynote-slider-link {
    width: 100%;
	display: block;
	/*position: absolute;*/
	/*bottom: -4px;*/
	background-color: #fff;
}

@media screen and (max-width: 850px) {
    #keynote-slider-container {
        width: 100%;
    }
    #keynote-slider-container .keynote-slider{
        width: 100%;
    }
    #keynote-slider-container .keynote-slider-image {
        margin-left: 32px;

    }
    #keynote-slider-container .keynote-slider-excerpt {
        height: auto;
        overflow: visible ;
        padding-right: 0;
    }
    #keynote-slider-container .keynote-slider-link{
        padding-top: 0;
        padding-bottom: 48px;
    }
}

/* rest of the speakers list */
#speakers-rest-container {
    padding-top: 36px;
    clear: both;
}
#speakers-rest-container:before,
#speakers-rest-container:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

#speakers-rest-container:after {
    clear: both;
}
#speakers-rest-container {
    *zoom: 1;
}
#speakers-rest-container .speakers-rest{
    min-height: 200px;
    float: left;
    width: 418px;

    padding-right: 70px;
    margin-bottom: 35px;
    position: relative;
    height: 226px;
    overflow: hidden;
}
#speakers-rest-container .speakers-rest-img{
    float: left;
    padding: 0 22px 22px 0;
    width: 100px;
    height: 100px;
    overflow: hidden;
}



#speakers-rest-container .speakers-rest-info-cont{
    float: left;
}
#speakers-rest-container .speakers-rest-name{

    text-align: left;
    padding: 0;
    border: none;
    margin: 0 0 2px;
   	text-decoration: none;
}
#speakers-rest-container .speakers-rest-name h5{
	margin: 0;
}
#speakers-rest-container .speakers-info{

    font-weight: bold;
    font-style: italic;
    margin-bottom: 2px;
}
#speakers-rest-container .speakers-rest-link{
    position: absolute;

    bottom: 4px;
    display: block;
    background-color: #fff;
    width: 100%;
}
@media screen and (max-width: 400px) {
    #speakers-rest-container .speakers-rest-info-cont{
        padding-top: 0;
    }
    #speakers-rest-container .speakers-rest-img{
        float: left;
        width: 64px;
        height: 64px;
        padding-right: 16px;
    }
    #speakers-rest-container .speakers-rest{
        min-height: 110px;
        width: 100%;
    }


}
#content-home {
	margin: 0;
}
#home-content {
    width: 650px;
    float: left;
}
#fp-sing-up {
    position: relative;
    margin: 25px auto;
}
@media screen and (max-width: 650px) {
    #home-content {
        width: 100%;
        float: left;
    }
}

input[type="submit"]:hover {
	background-color: background-color: #22bcb7 !important;
}
/* end media screen*/

@media print {

#sched-container {
    max-width: 960px;
    margin: 0 auto;
    border: #999 1px solid;
    padding: 0;
    color: black;
    background-color: white;
}

#sched-container .sched-module{
	background-color: white;
	color: black;
    padding: 24px 36px 58px;
    margin: 0;
    border-bottom: #999 1px solid;
    color: black;
}
#sched-container .sched-module h3,#sched-container .sched-module h4,#sched-container .sched-module h5{
	color: black;
}

#sched-container .sched-title-div:before,
#sched-container .sched-title-div:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

#sched-container .sched-title-div:after {
    clear: both;
}
#sched-container .sched-title-div {
    *zoom: 1;
}

#sched-container .sched-module-keynote{
    background-color: white;
	color: black;
}
#sched-container .sched-module-break{
    background-color: white;
	color: black;
    }
#sched-container .sched-module-breakout{
    background-color: white;
	color: black;
    }
#sched-container .sched-title {
	padding: 8px 36px 12px;
	margin: 0;
	text-align: left;
	border-bottom: none;
	display: inline-block;
	float: left;
	color: black;
	background-color: white;
	color: black;

}
#sched-container .sched-time {
	padding: 16px 12px 0 36px;
	display: inline-block;
    float: right;
    font-weight: bold;

    margin: 0;
    color: black;
    background-color: white;
	color: black;
}
#sched-container .sched-presenter{
    float: left;
    display: block;
    margin: 0;
    padding: 0 0 24px 0;
    font-weight: normal;
    color:black;

    font-style: normal;
    font-size: 18px;
}
#sched-container .sched-presenter-a{
    float: left;
    display: block;
    margin: 0;
    padding: 0 0 24px 0;
    font-weight: normal;
    color: black;
	text-decoration: underline;
    font-style: normal;
    font-size: 18px;
    background-color: white;
	color: black;
}
#sched-container .sched-loc {
    clear: both;
    font-size: 12px;
    font-style: italic;
    padding: 0;
    color: black;
    background-color: white;
	color: black;
}
#sched-container .sched-content {
    clear: both;
    background-color: white;
	color: black;
}
#sched-container .sched-content p{

    margin: 0;
    color: black;
    background-color: white;
	color: black;
}
footer {
	display: none;
}

}

#attn-page {
	clear: both;
}
.attn-page {
	clear: both;
}
#tix-attendees {
	width: 100% !important;
	top: 20px !important;
}
.tix-attendee-list {
	width: 100% !important;
}
.tix-columns-1 {
	position: relative;
	left: -44px;
}
.tix-attendee-list li {
	width: 175px !important;
	float: left !important;
	display: block !important;
	padding: 0 10px ;
	min-height: 205px;
}
#tix-attendees .atix_link_class {
	text-decoration: none;
}
#tix-attendees .avatar {
float: none !important;
padding: 0 0 10px 0 !important;
margin: 0 0 0 36px!important;
}
#tix-attendees .tix-field {
	margin: 0 !important;
	text-indent: 0 !important;
	font-weight: normal !important;
	text-align: center !important;
}
.attn_details {
text-align: center;
font-size: 10px;
}
.tix-column-remaining {
	color: #ffffff;

}



#layout + #layout {
	margin-top: 50px;
	border-top: 1px solid #ccc;
}


body a:hover {
	color: #7f0631 !important;
	text-decoration: underline;
}

#content.list article {
	border-bottom: 1px solid #ededed;
}
#content.list .post-title {
	font-size: 1.5em;
}
#content.list .post-image.left img {
	width: 150px;
	height: auto;
}

#content.single {
	padding-top: 25px;
}
#content {
	margin-bottom: 30px;
}

/* Business Directory */

.directory-info {
	margin: 3em 0;
}
.directory-info table {
	width: auto;
	line-height: 1.4;
}
table {
	border-spacing: 0;
}
th {
	border-top: 1px solid #ededed;
	padding: 6px 50px 6px 0;
	text-align: left;
}

.social-icon {
	background: url(images/social-icons.png) no-repeat;
	display: block;
	width: 18px;
	height: 18px;
	float: left;
	margin-right: 20px;
}
.social-icon:hover {
	opacity: 0.7;
}
.social-icon.facebook {
	background-position: -20px 0;
}
.social-icon.twitter {
	background-position: -40px 0;
}





/* ==== NEW HOMEPAGE ==== */
#hero {
	background: #008291 url(images/hero-bg.jpg) no-repeat 50% 50%;
	height: 390px;
	margin-top: -1px;
}
#hero .pagewidth {
	padding-top: 40px;
}
#hero h2 {
	font-style: normal;
	font-size: 32px;
	line-height: 1.1;
	font-weight: 200;
	margin: 0;
	color: #fff;
	max-width: 700px;
}
#hero .btn {
	padding: 0.5em 1.3em;
	font-size: 16px;
}

.btn {
	display: inline-block;
	border: 1px solid #fff;
	color: #fff;
	background: rgba(0,41,46,0.5);
	font-weight: bold;
	padding: 0.3em 0.8em;
	margin: 1em 0;
}
.btn:hover {
	color: #fff !important;
	background: rgba(0,41,46,0.8);
}



#above-footer {
	background: #008291;
	color: #fff;
	padding: 20px 0;
}
.twitter-wrapper a {
	color: #fff !important;
}
.ktweets-title {
	position: absolute;
	width: 46px;
	height: 38px;
	background: url(images/twitter.png) no-repeat;
}
.kebo-tweets {
	padding-left: 60px !important;
	overflow: visible !important;
	width: auto !important;
}
.kfooter {
	display: none;
}
.twitter-wrapper .kmeta {
	position: absolute;
	bottom: -18px;
	font-size: 12px;
	font-weight: bold;
}
.kaccount {
	float: left;
	margin-right: 15px !important;
}
.ktweet {
	position: relative;
}

#above-footer .widgettitle {
	margin-top: 1em;
	color: #fff;
	font-size: 16px;
	font-style: normal;
	font-weight: bold;
}

.signup-wrapper form {
	position: relative;
}
.signup-wrapper input {
	border: none !important;
	margin: 0 !important;
}
.signup-wrapper .submit {
	position: absolute;
	bottom: -1px;
	background-image: url(images/arrow-r.png);
	background-position: 50% 50%;
	background-repeat: no-repeat;
}

.credit {
	float: left;
	line-height: 73px;
	font-weight: bold;
}
.credit a {
	font-weight: normal;
	color: #7f0631;
}

.brought-by {
	float: right;
}
.brought-by h6 {
	display: inline-block;
	font-size: 14px;
	color: #008291;
	margin: 0;
	font-style: normal;
	vertical-align: middle;
}
.brought-by a {
	display: inline-block;
	vertical-align: middle;
}
.brought-by a {
	margin-left: 15px;
}


.right-col {
}
.right-col img {
	max-width: 100%;
}
.right-col .tile {
	max-width: 300px;
	margin: 30px 0;
}

.past-conf {
	background: #008291;
}
.past-conf h4 {
	color: #fff;
	font-style: normal;
	font-weight: bold;
	text-align: center;
	font-size: 16px;
	padding: 10px 0;
	margin: 0;
}
.past-conf .button-wrapper {
	background: #006874;
}
.past-conf .button-wrapper a {
	width: 33.333%;
	float: left;
	text-align: center;
	padding-bottom: 15px;
	color: #fff;
}
.past-conf .button-wrapper a:hover {
	color: #fff !important;
	background: #008291;
}
.button-wrapper a i {
	background: no-repeat 50% 50%;
	display: block;
	height: 72px;
}
.button-wrapper .speaker i {
	background-image: url(images/i-speaker.png);
}
.button-wrapper .video i {
	background-image: url(images/i-video.png);
}
.button-wrapper .keynote i {
	background-image: url(images/i-keynote.png);
}


#latest-blogs {
	background: #eee url(images/bg-grey.jpg) no-repeat;
	background-size: cover;
	margin: 0;
}
#latest-blogs article {
	width: 30%;
	float: left;
	padding: 20px 3.333% 20px 0;
}
#latest-blogs article h3 {
	margin: 10px 0 16px;
}
#latest-blogs article h3 a {
	color: #11383d;
	font-weight: bold;
}
.post-date {
	font-size: 12px;
	font-weight: bold;
	color: #008291;
	text-transform: uppercase;
	margin-bottom: 0;
}

@media screen and (max-width: 600px) {

    #latest-blogs .excerpt {
    	display: none;
    }
    #latest-blogs article {
    	width: auto;
    	float: none;
    	padding: 0;
    }
    #latest-blogs article h3 {
    	margin-top: 0;
    }

    .signup-wrapper {
    	border-top: 1px solid #00a7ba;
    	margin-top: 40px;
    }

    .credit, .brought-by {
    	float: none;
    }
    .brought-by h6 {
    	display: block;
    }
}

@media screen and (max-width: 920px) {

	.credit,
	.brought-by {
		text-align: center;
		float: none;
		clear: both;
	}
}

@media screen and (max-width: 480px) {

	.brought-by img {
		margin: 20px auto 10px auto;
	}

	.credit {
		line-height: 30px;
		margin-bottom: 10px;
	}

	.credit span {
		display: block;
	}
}