@charset "utf-8";
/*
Theme Name: CAPL Website
Theme URI: http://landman.ca
Author: Build Studio Inc.
Author URI: http://buildstudio.ca
Description: 
Version: 2.0
/*


/* Table of Content
==================================================
	#Reset & Basics
	#Basic Styles
	#Site Styles
	#Typography
	#Links
	#Lists
	#Images
	#Buttons
	#Forms
	#Main Navigation
	#Site Styles
	#Media Queries
	#Font-Face
	#Wordpress Core
	#Misc */


/* #Reset & Basics (Inspired by E. Meyers)
================================================== */

	html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit; }
	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block; }
	body {
		line-height: 1; }
	ol, ul {
		list-style: none; }
	blockquote, q {
		quotes: none; }
	blockquote:before, blockquote:after,
	q:before, q:after { 
		content: '';
		content: none; }
	table {
		border-collapse: collapse;
		border-spacing: 0;  }


/* #Basic Styles
================================================== */

body {
	background: #fff;
	font: 16px/24px 'Lato', Helvetica, Arial, sans-serif;
	color: #444;
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	-webkit-text-size-adjust: 100%;
	margin: 0;
	padding: 0;
 }

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


/* #Typography
================================================== */

h1, h2, h3, h4, h5, h6 {
	color: #181818;
	font-family: 'Lato', Helvetica, Arial, sans-serif;
	font-weight: bold; }
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; text-decoration: none; }
h1 { font-size: 46px; line-height: 50px; margin-bottom: 14px; font-weight: 900; text-transform: uppercase;}
h2 { font-size: 35px; line-height: 40px; margin-bottom: 10px; }
h3 { font-size: 28px; line-height: 30px; margin-bottom: 8px; }
h4 { font-size: 28px; line-height: 30px; margin-bottom: 4px; color: #005542; }
h5 { font-size: 17px; line-height: 24px; }
h6 { font-size: 14px; line-height: 21px; }
.subheader { color: #777; }

p { margin: 0 0 20px 0; }
p img { margin: 0; }
p.lead { font-size: 21px; line-height: 27px; color: #777;  }

em { font-style: italic; }
strong { font-weight: bold; }
small { font-size: 80%; }

/*	Blockquotes  */
blockquote, blockquote p { font-size: 17px; line-height: 24px; color: #777; font-style: italic; }
blockquote { margin: 0 0 20px; padding: 9px 20px 0 19px; border-left: 1px solid #ddd; }
blockquote cite { display: block; font-size: 12px; color: #555; }
blockquote cite:before { content: "\2014 \0020"; }
blockquote cite a, blockquote cite a:visited, blockquote cite a:visited { color: #555; }

hr { border: solid #ddd; border-width: 1px 0 0; clear: both; height: 0; }


/* #Links
================================================== */

a, a:visited { color: #005542; text-decoration: underline; outline: 0; }
a:hover, a:focus { color: #000; }
p a, p a:visited { line-height: inherit; }


/* #Lists
================================================== */

ul, ol { margin-left: 20px; margin-bottom: 20px; }
ul { list-style: disc; }
ol { list-style: decimal; }
ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
ul.square { list-style: square outside; }
ul.circle { list-style: circle outside; }
ul.disc { list-style: disc outside; }
ul ul, ul ol,
ol ol, ol ul { margin: 4px 0 5px 30px; font-size: 90%;  }
ul ul li, ul ol li,
ol ol li, ol ul li { margin-bottom: 6px; }
li { }
ul.large li { line-height: 21px; }
li p { line-height: 21px; }


/* #Images
================================================== */

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


/* #Buttons
================================================== */

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	background: #333; /* Old browsers */
	border: 1px solid #aaa;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	color: #fff;
	display: inline-block;
	text-decoration: none;
	cursor: pointer;
	margin-bottom: 20px;
	line-height: normal;
	padding: 5px 10px;
}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
	color: #f1f1f1;
	background: #000; /* Old browsers */
	border: 1px solid #888;
}
.button:active,
button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
	border: 1px solid #666;
	background: #ccc; /* Old browsers */
}
.button.full-width,
button.full-width,
input[type="submit"].full-width,
input[type="reset"].full-width,
input[type="button"].full-width {
	width: 100%;
	padding-left: 0 !important;
	padding-right: 0 !important;
	text-align: center;
}
/* Fix for odd Mozilla border & padding issues */
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
.wpcf7 input[type="submit"],
input[type="reset"],
input[type="button"] {
	background: #333; /* Old browsers */
	border: 1px solid #aaa;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	color: #fff;
	display: inline-block;
	text-decoration: none;
	cursor: pointer;
	margin-bottom: 20px;
	line-height: normal;
	padding: 10px 20px;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: normal;
}


/* #Forms
================================================== */

form {
	margin-bottom: 20px; }
fieldset {
	margin-bottom: 20px; }
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
	border: 1px solid #ccc;
	padding: 6px 10px;
	outline: none;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	color: #777;
	margin: 0;
	width: 100%;
	height: 40px;
	font-size: 16px;
	display: block;
	margin-bottom: 20px;
	background: #fff;
}
select {
padding: 0;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
textarea:focus {
	border: 1px solid #aaa;
 	color: #444;
 	-moz-box-shadow: 0 0 3px rgba(0,0,0,.2);
	-webkit-box-shadow: 0 0 3px rgba(0,0,0,.2);
	box-shadow:  0 0 3px rgba(0,0,0,.2);
}
textarea {
	min-height: 200px;
}
label,
legend {
	display: block;
	font-weight: bold;
	font-size: 13px;
}
select {
	width: 300px;
}
input[type="checkbox"] {
	display: inline;
}
label span,
legend span {
	font-weight: normal;
	font-size: 13px;
	color: #444;
}
td { padding: 5px 10px; }

.half-form {
	width: 45%;
	margin-right: 3%;
	float: left;
}
.full-form {
	width: 93%;
	display: block;
}

/* #Main Navigation
================================================== */

#navigation {
	border: none;
	border: 0px;
	margin: 0px;
	padding: 0px;
	text-transform: uppercase;
	position: relative;
    z-index: 9999;
}
#navigation ul {
	height: 60px;
	list-style: none;
	margin: 0;
	padding: 0;
  	position: relative;
    z-index: 9999;
}
#navigation li {
  float: left;
  padding: 0px;
  list-style: none;
}
#navigation li a {
  display: block;
  font-weight: 700;
  line-height: 60px;
  margin: 0px;
  font-size: 16px;
  padding: 0px 24px;
  text-align: center;
  text-decoration: none;
  color: #fff;
}
#navigation > ul > li > a {
  color: #c1c1c1;
}
#navigation ul ul a {
  color: #000000;
}
#navigation li > a:hover,
#navigation ul li:hover > a {
  color: #ffffff;
  background-color: #333333;
  text-decoration: none;
}
#navigation li ul {
  background: #444444;
  display: none;
  height: auto;
  padding: 0px;
  margin: 0px;
  border: 0px;
  position: absolute;
  width: 250px;
  z-index: 9999;
  /*top:1em;
	/*left:0;*/
}
#navigation li:hover ul {
  display: block;
}
#navigation li li {
  display: block;
  float: none;
  margin: 0px;
  padding-left: 20px;
}
#navigation li:hover li a {
  background: none;
}
#navigation li ul a {
  display: block;
  font-size: 12px;
  font-style: normal;
  margin: 0px;
  padding: 20px 10px 20px 15px;
  text-align: left;
  color: #ffffff;
  line-height: 18px;
}
#navigation li ul a:hover,
#navigation li ul li:hover > a {
	border: 0px;
	text-decoration: none;
	color: #c1c1c1;
}
#navigation li:hover ul{display:block}/* show first level*/
#navigation li:hover ul ul{display:none}/* hide nested level*/
#navigation li:hover ul ul{ }
#navigation li li:hover ul{/* show second nested level*/
display:block;
left: 100%;
margin-top: -58px;
}
/* make hopver persistent on chosen item */
#navigation li:hover > a,
#navigation li li:hover > a{ }
#navigation p {
  clear: left;
}
.menu-item-type-custom {
	background-image: url("images/icon-lock.png");
	background-repeat: no-repeat;
	background-position: 7px 17px;
}
.menu-item-type-custom:hover {
	background-image: url("images/icon-lock.png");
	background-repeat: no-repeat;
	background-position: 7px 17px;
}
.menu-item-4455 {
	background-image: none;
	background-repeat: no-repeat;
	background-position: 7px 17px;
}
.menu-item-4455:hover {
	background-image: none;
	background-repeat: no-repeat;
	background-position: 7px 17px;
}


/* #Tables
================================================== */

.page-content table {
	margin: 0 auto;
}
tr:nth-child(even) {
    background-color: #f2f2f2;
}



/* #Site Styles
================================================== */
.full-width {
	width: 100%;
}
#banner-images {
	position: relative;
	z-index: 999;
	cursor: pointer; 
}
#login-links {
	text-align: right;
	line-height: 30px;
	height: 30px;
	background: #000;
	color: #fff;
	font-size: 12px;
}
#login-links a {
	color: #fff;
	text-decoration: none;
}
#login-links a:hover {
	color: #c1c1c1;
}
.divider {
	margin: 0 10px;
}

#top-bar-bg {
	background: #000;

}
#logo {
	background: #005542;
	text-align: center;
	padding: 11px 0 5px 0;
}
#contact-top {
	text-align: center;
	background: #cc142c;	
}
#contact-top a {
	color: #fff;
	display: block;
	font-weight: 700;
	line-height: 60px;
	margin: 0px;
	font-size: 18px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	background: #cc142c;
	margin-right: -20px;
}
#contact-top a:hover {
	background: #af1327;
}
#banner {
	margin-bottom: 35px;
	position: relative;
	max-height: 460px;
	max-width: 1260px;
	overflow: hidden;
}
#banner-image {
	position: absolute;
	top: 0;
	left: 0;
}
#page-title {
	background: #333;
	padding: 20px 40px;
}
#page-title h2 {
	margin: 0;
	padding: 0;
	color: #fff;
	font-weight: 400;
}
#page-title-full {
	background: #333;
	padding: 20px 40px;
}
#page-title-full h2 {
	margin: 0;
	padding: 0;
	color: #fff;
	line-height: 80px;
	font-weight: 400;
}
#chair-text {
	padding: 30px 30px 20px 0;
	font-size: 15px;
}
#chair-title {
	background: #005542;
	height: 80px;
	padding-left: 40px;
	margin-right: 20px;
}
#chair-title h2 {
	margin: 0;
	padding: 0;
	color: #fff;
	line-height: 80px;
	font-weight: 400;
}
.page-content {
	padding: 30px 20px 0 0;
}
.post-content {
}
.page-content ol li {
	list-style: decimal;
}
.post-single {
	padding: 10px 30px 30px 30px;
	margin-bottom: 20px;
	border-bottom: 1px solid #333;
}
.post-single h2 {
	font-size: 28px;
	line-height: 30px;
}
.post-single h4 {
	font-size: 20px;
	line-height: 24px;
	color: #333;
}
#update-image {
	height: 208px;
}
.update-type {
	position: absolute;
	z-index: 2;
	height: 210px;
}
.update-background {
	position: absolute;
	z-index: 1;
	width: 280px;
}
#update-text {
	padding: 30px 30px 0 10px;
	float: right;
}
#update-text a {
	font-size: 18px;
	text-transform: uppercase;
	text-decoration: none;
	color: #005542;
}
.read-all {
	margin: 30px 0;
	padding: 12px 20px 10px 20px;
	background: #AF1327;
	text-transform: uppercase;
	text-align: center;
	font-size: 20px;
}
.read-all a {
	color: #fff;
	text-decoration: none;
}
.sponsor-ad {
	margin-bottom: 35px;
	display: block;
}
#sidebar h4 {
	font-size: 20px;
}

#footer-menu {
	background: #3d7c99;
	padding: 60px 0 40px 0;
	margin: 40px 0;
}
#footer-menu h5 {
	display: none;
}
#footer-menu ul {
	margin-left: 0;
}
#footer-menu li {
	font-size: 16px;
	line-height: 40px;
	list-style: none;
	font-weight: bold;
}
#footer-menu li li {
	text-decoration: none;
	list-style: none;
	font-size: 10px;
	line-height: 14px;
	margin-bottom: 8px;
}
#footer-menu a {
	color: #fff;
	text-decoration: none;
}
#footer-menu a:hover {
	color: #56b2dd;
}
#footer-menu h2:hover {
	color: #c1c1c1;
}
#footer-menu h3 {
	color: #fff;
	text-transform: uppercase;
	margin: 0;
	margin-bottom: 50px;
	line-height: inherit;
}
.sponsor-link {
	margin: 0 25px;
}
.sponsor-link:hover {
	opacity: 0.7;
}
.title-sponsor-image {
	width: 150px;
	margin-bottom: 40px;
}
.sponsor-image {
	margin-bottom: 40px;
}
#register-bar {
	text-align: center;
	padding: 35px 0 65px 0;
}
#register-bar a {
	background: #cc142c;
	padding: 20px 60px;
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	margin-bottom: 40px;
}
#register-bar a:hover {
	background: #af1327;
}
a.register-button-large {
	background: #cc142c;
	padding: 20px 60px;
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	margin: 80px 0;
}
a.register-button-large:hover {
	background: #af1327;
}
#footer{
	background: #333;
	color: #a2a2a2;
	height: 60px;
	padding: 20px 0;
	font-size: 14px;
	font-weight: 300;
}
#footer a {
	color: #a2a2a2;
	text-decoration: none;
}
#footer a:hover {
	color: #fff;
}
#right-footer {
	font-size: 14px;
	line-height: 18px;
	color: #77c6eb;
}
.divider {
	margin: 0 10px;
}
#build-studio {
	text-align: right;
}
.table-date {
	margin-left: 10px;
	background: #005542;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	height: 40px;
	line-height: 40px;
}
.table-header {
	color: #fff;
	background: #005542;
	font-size: 1.4em;
	padding: 10px;
}
.sponsors {
	text-align: center;
}
.sponsors a {
	margin: 30px;
}
.screen-reader-text {
	display: none;
}
.searchform input[type="text"] {
	width: 74%;
	margin-right: 3%;
	height: 40px;
	float: left;
}
.searchform input[type="submit"] {
	width: 23%;
	height: 40px;
	float: left;
	text-transform: uppercase;
}
.suggestion-box-button {
	padding: 20px 0;
	text-align: center;
}
.suggestion-box-button a {
	display: block;
	background: #CC142C;
	padding: 10px;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.suggestion-box-button a:hover {
	background: #333;	
}
#social-media-buttons {
	padding: 20px 0;
	text-align: center;
}
#social-media-buttons a {
	margin: 0 5px;
}
#social-media-buttons img:hover {
	opacity: 0.8;
}
#facebox {
	z-index: 10000 !important;
}

/* #Executive Profiles
================================================== */

.executive-profile {
	width: 47%;
	float: left;
	margin-right: 3%;
	margin-bottom: 30px;
}
.executive-profile h3 {
	font-size: 1.2em;
	line-height: 1.1em;
}
.executive-photo {
	width: 150px;
	height: auto;
	margin-right: 20px;
	float: left;
}
.executive-message-link {
	margin: 0;
}
.executive-message { /* we set all of the properties for are overlay */
    width:80%;
    margin:0 auto;
    margin-top: 5%;
    background:white;
    color:black;
    padding:20px;
    position: absolute;
    top:5%;
    z-index:10000;
    display:none;
    /* CSS 3 */
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    -o-border-radius:10px;
    border-radius:10px;
}

#mask{ /* create are mask */
    position:fixed;
    top:0;
    left:0;
    background:rgba(0,0,0,0.6);
    z-index:500;
    width:100%;
    height:100%;
    display:none;
}
/* use :target to look for a link to the overlay then we find are mask */
.executive-message:target, .executive-message:target + #mask{
    display:block;
    opacity:1;
}
.close{ /* to make a nice looking pure CSS3 close button */
    display:block;
    position:absolute;
    top:-20px;
    right:-20px;
    background: #fff;
    color:#333;
    height:40px;
    width:40px;
    line-height:40px;
    text-decoration:none;
    text-align:center;
    font-weight:bold;
    -webkit-border-radius:40px;
    -moz-border-radius:40px;
    -o-border-radius:40px;
    border-radius:40px;
}

/* #Media Queries
================================================== */

/* Small Desktop size to standard 960 (devices and browsers) */
@media only screen and (min-width: 960px) and (max-width: 1279px) {

#navigation li a {
  font-size: 12px;
  padding: 0px 10px;
}
#conference-logos {
	height: 345px;
	padding-top: 40px;
	padding-left: 70px;
}
#conference-logos img {
	width: 250px;
}
#update-image {
	height: 172px;
}
.update-type {
	height: 172px;
}
.update-background {
	width: 230px;
}
#update-text {
	padding: 20px 20px 0 20px;
}
#update-text h3 {
	font-size: 22px;
	line-height: 30px;
}
#update-text p {
	font-size: 12px;
	line-height: 19px;
	margin-bottom: 15px;
}
#update-text a {
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none;
	color: #005542;
}
.sponsor-link {
	margin: 0 35px;
}
#sidebar h4 {
	font-size: 16px;
}
.title-sponsor-image {
	height: 40px;
}
.sponsor-image {
	height: 30px;
}
.executive-profile h3 {
	font-size: 1em;
	line-height: 1em;
}
.executive-profile p {
	font-size: .8em;
	line-height: 1em;
}
.executive-photo {
	width: 100px;
}
.searchform input[type="text"] {
	width: 67%;

}
.searchform input[type="submit"] {
	width: 30%;
	font-size: 9px;
}
.market-widget { display: none; }

}

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {

#logo {
	padding: 15px 0;
}
#navigation li a {
  font-size: 9px;
  padding: 0px 8px;
}
#contact-top a {
	font-size: 12px;
}
#banner {
	margin-bottom: 20px;
}
#conference-logos {
	height: 273px;
	padding-top: 30px;
	padding-left: 90px;
}
#conference-logos img {
	width: 200px;
}#page-title {
	margin-right: 0;
}
#chair-title {
	margin-right: 0;
}
#page-title h2 {
	font-size: 30px;
}
#sidebar h4 {
	display: none;
}

#update-image {
	height: 135px;
}
.update-type {
	height: 135px;
}
.update-background {
	width: 180px;
}
#update-text {
	padding: 10px 10px 0 10px;
}
#update-text p {
	font-size: 12px;
	line-height: 18px;
	margin-bottom: 5px;
}
#update-text a {
	font-size: 12px;
	text-transform: uppercase;
	text-decoration: none;
	color: #005542;
}
#update-text h3 {
	font-size: 14px;
	line-height: 18px;
	margin-bottom: 5px;
}
#sponsor-bar h3 {
	font-size: 24px;
}
#register-bar {
	padding: 15px 0 55px 0;
}
#register-bar a {
	padding: 15px 40px;
	font-size: 24px;
}
#footer {
	font-size: 12px;
}
.sponsor-link {
	margin: 0 25px;
}
.title-sponsor-image {
	height: 35px;
}
.sponsor-image {
	height: 25px;
}
.executive-profile {
	width: 100%;
	margin-left: none;
}
.searchform input[type="text"] {
	width: 67%;

}
.searchform input[type="submit"] {
	width: 30%;
	font-size: 6px;
}
.market-widget { display: none; }

}



/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {

#contact-top a {
	margin-right: 0;
}
#conference-logos {
	position: relative;
	top: 0;
	left: 0;
	background-image: none;
	height: 400px;
	width: 420px;
	padding-top: 20px;
	padding-left: inherit;
	text-align: center;
}
#conference-logos img:hover {
	opacity: .8;
	cursor: pointer;
}
#banner-image {
	position: relative;
	top: 0;
	left: 0;
}
#banner {
	margin-bottom: 20px;
}
#page-title {
	margin-right: 0;
}
#page-title h2 {
	font-size: 24px;
}
#chair-title {
	margin-right: 0;
}
#chair-title h2 {
	font-size: 24px;
}
#update-image {
	height: 274px;
}
.update-type {
	height: 274px;
	position: relative;
}
.update-background {
	width: 365px;
}
#update-text {
	padding: auto;
	float: none;
	position: relative;
}
#update-text h3 {
	font-size: 26px;
	line-height: 24px;
	margin-bottom: 10px;
}
#update-text p {
	font-size: 15px;
	line-height: 20px;
	margin-bottom: 10px;
}
#update-text a {
	font-size: 15px;
	text-transform: uppercase;
	text-decoration: none;
	color: #005542;
}
#sidebar {
	text-align: center;
}
#sidebar h3 {
	font-size: 16px;
}
#sponsor-bar h3 {
	font-size: 24px;
	margin-bottom: 20px;
}
.sponsor-link img {
	height: 40px;
	margin-top: 15px;
	width: auto;
}
#register-bar {
	padding: 15px 0 55px 0;
}
#register-bar a {
	padding: 15px 40px;
	font-size: 24px;
}
#footer {
	height: auto;
	font-size: 10px;
}
div.two.columns.footer-menu-list {
	width: 44%;
	margin: 0 2% 20px 2%;
	float: left;
}
div.two.columns.footer-menu-list.footerclear {
	clear: both;
}
#build-studio {
	text-align: center;
}
table {
	margin: 0 auto;
}
td {
	font-size: 12px;
	line-height: 16px;
}
.executive-profile {
	width: 100%;
	margin-left: none;
}

#login-links { height: 87px; }

}


/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {

#contact-top a {
	margin-right: 0;
}
#conference-logos {
	position: relative;
	top: 0;
	left: 0;
	background-image: none;
	height: 400px;
	width: 300px;
	padding-top: 20px;
	padding-left: inherit;
	text-align: center;
}
#conference-logos img:hover {
	opacity: .8;
	cursor: pointer;
}
#banner-image {
	position: relative;
	top: 0;
	left: 0;
}
#banner {
	margin-bottom: 20px;
}
#main-content img {
	display: block;
}
#page-title {
	margin-right: 0;
}
#page-title h2 {
	font-size: 18px;
}
.page-content {
	padding: 30px 0 0 0;
}
#chair-text img {
	width: 50%;
	height: auto;
}
#chair-title {
	margin-right: 0;
}
#chair-title h2 {
	font-size: 18px;
}
#update-image {
	height: 195px;
	float: left;
}
.update-type {
	height: 210px;
	position: absolute;
}
.update-background {
	margin-bottom: 20px;
}
#update-text {
	position: relative;
	padding-top: 40px;
}
#update-text h3 {
	font-size: 26px;
	line-height: 24px;
	margin-bottom: 10px;
}
#update-text p {
	font-size: 15px;
	line-height: 20px;
	margin-bottom: 10px;
}
#update-text a {
	font-size: 15px;
	text-transform: uppercase;
	text-decoration: none;
	color: #005542;
}
#sidebar {
	text-align: center;
}

#sponsor-bar h3 {
	font-size: 24px;
	margin-bottom: 20px;
}
.sponsor-link img {
	height: 40px;
	margin-top: 15px;
	width: auto;
}
#register-bar {
	padding: 15px 0 55px 0;
}
#register-bar a {
	padding: 15px 40px;
	font-size: 24px;
}
#footer {
	height: auto;
	font-size: 7px;
}
div.two.columns.footer-menu-list {
	width: 44%;
	margin: 0 2% 20px 2%;
	float: left;
}
div.two.columns.footer-menu-list.footerclear {
	clear: both;
}
#build-studio {
	text-align: center;
}
table {
	margin-left: 0;
	margin-right: 0;
}
th {
	font-size: 10px;
	line-height: 14px;
}
td {
	font-size: 8px;
	line-height: 12px;
}
.sponsor-table td {
	padding: 10px;
}
a.register-button-large {
	font-size: 18px;
	margin-bottom: 100px;
}
a.register-button-large:hover {
	background: #af1327;
}
.executive-profile {
	width: 100%;
	margin-right: 0;
}
.executive-profile h3 {
	font-size: .9em;
	line-height: 1em;
}
.executive-profile p {
	font-size: .7em;
	line-height: 1.1em;
	margin-bottom: 10px;
}
.executive-photo {
	width: 70px;
	margin-right: 10px;
}

#city, #username, #password, #passwor_confirm, #address, #email_address {
	width: 100%;
}

#login-links { height: 87px; }

}


/* #Font-Face
================================================== */
/* 	This is the proper syntax for an @font-face file
		Just create a "fonts" folder at the root,
		copy your FontName into code below and remove
		comment brackets */

/*	@font-face {
	    font-family: 'FontName';
	    src: url('../fonts/FontName.eot');
	    src: url('../fonts/FontName.eot?iefix') format('eot'),
	         url('../fonts/FontName.woff') format('woff'),
	         url('../fonts/FontName.ttf') format('truetype'),
	         url('../fonts/FontName.svg#webfontZam02nTh') format('svg');
	    font-weight: normal;
	    font-style: normal; }
*/

/* #Wordpress Core
================================================== */

/* AUTHORS */

.gravatar {
	float: left;
	margin: 0 10px 0 0;
	display: block;
}
#author-description {
	display: block;
}

/* OLD & NEW POSTS */

.newer-older {
	clear: both;
}
.older {
	float: left;
}
.newer {
	float: right;
}


/* IMAGE ALIGNMENT */

.alignnone {
    margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}
.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
.aligncenter {
	display: block;
    margin: 5px auto 5px auto;
}
a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
a img.alignnone {
    margin: 5px 20px 20px 0;
}
a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

/* IMAGE CAPTIONS */

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}
.wp-caption p {
	margin: 0 0 0 0;
}
.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}
.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}
dd.wp-caption-text {
    font-size: 10px;
    line-height: 14px;
    margin: 0;
    padding: 0 4px 5px;
}


/* #Misc
================================================== */
	.remove-bottom { margin-bottom: 0 !important; }
	.half-bottom { margin-bottom: 10px !important; }
	.add-bottom { margin-bottom: 20px !important; }
	
/* #Canada Feed
================================================== */
	
ul.rss-items {
	margin-left: 0;
}
#wow-feed  li { list-style: none; margin-bottom: 20px;}
#wow-feed .rss-image img {
    width: 300px;
    display: block;
}
#wow-feed .rss-image { 
	height: 100px;
	overflow: hidden;
}
#wow-feed .item {

}
#wow-feed .data {
    display: inline-block;
    vertical-align: top;
}
#wow-feed .data h5 { margin-left: 0; color: #78461c; font-size: 14px}
#wow-feed .data h4:hover { font-weight: bold; margin-left: 0; color: #cc6666; }
#wow-feed .data small {
    color: #8F90CB;
    font-size: 0.9em;
}