/*
Theme Name: CDS Theme
Description: Test
Author: Test
Version: 1.0
*/

@charset "UTF-8";
/*@import url('http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic,700,900');*/
@import url('font-awesome.min.css');

	body, input, textarea, select
	{
		font-family: 'source-sans-pro', sans-serif;
		font-weight: 400;
		color: #919499;
	}

		body.is-loading *
		{
			-moz-transition: none !important;
			-webkit-transition: none !important;
			-o-transition: none !important;
			-ms-transition: none !important;
			transition: none !important;
			-moz-animation: none !important;
			-webkit-animation: none !important;
			-o-animation: none !important;
			-ms-animation: none !important;
			animation: none !important;
		}

	h1,h2,h3,h4,h5,h6
	{
		font-weight: 700;
		color: #484d55;
	}
	
	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a
	{
		color: inherit;
		text-decoration: none;
	}

	a
	{
		text-decoration: underline;
		color: #be501d;
		-moz-transition: color .25s ease-in-out;
		-webkit-transition: color .25s ease-in-out;
		-o-transition: color .25s ease-in-out;
		-ms-transition: color .25s ease-in-out;
		transition: color .25s ease-in-out;
	}
	
		a:hover
		{
			text-decoration: none;
		}

	strong, b
	{
		font-weight: 700;
		color: #484d55;
	}
	
	blockquote
	{
		border-left: solid 0.5em #ddd;
		padding: 1em 0 1em 2em;
		font-style: italic;
	}
	
	em, i
	{
		font-style: italic;
	}
	
	hr
	{
		border: 0;
		border-top: solid 1px #ddd;
	}
	
	sub
	{
		position: relative;
		top: 0.5em;
		font-size: 0.8em;
	}
	
	sup
	{
		position: relative;
		top: -0.5em;
		font-size: 0.8em;
	}
	
	.nobr
	{
		white-space: nowrap;
	}

	br.clear
	{
		clear: both;
	}
	
	p, ul, ol, dl, table, blockquote, form
	{
		margin-bottom: 1em;
	}
	
	/* Table */

		table
		{
			width: 100%;
		}
		
			table.default
			{
				width: 100%;
			}
			
				table.default tbody tr:nth-child(2n+2)
				{
					background: #f4f4f4;
				}
				
				table.default td
				{
					padding: 0.5em 1em 0.5em 1em;
				}
				
				table.default th
				{
					text-align: left;
					font-weight: 400;
					padding: 0.5em 1em 0.5em 1em;
				}
			
				table.default thead
				{
					background: #484d55;
					color: #fff;
				}
				
				table.default tfoot
				{
					background: #eee;
				}
				
				table.default tbody
				{
				}

	/* Form */

		form
		{
		}
		
			form label
			{
				display: block;
				font-weight: 700;
				color: #484d55;
			}
		
			form input[type="text"],
			form input[type="email"],
			form input[type="password"],
			form select,
			form textarea
			{
				-webkit-appearance: none;
				display: block;
				border: 0;
				background: #eee;
				box-shadow: inset 0px 0px 1px 0px #a0a1a7;
				border-radius: 0.35em;
				width: 100%;
				padding: 0.75em 1em 0.75em 1em;
				-moz-transition: all .25s ease-in-out;
				-webkit-transition: all .25s ease-in-out;
				-o-transition: all .25s ease-in-out;
				-ms-transition: all .25s ease-in-out;
				transition: all .25s ease-in-out;
			}

			form input[type="text"],
			form input[type="email"],
			form input[type="password"],
			form select
			{
				line-height: 1em;
			}
			
			form textarea
			{
				min-height: 10em;
			}

				form input[type="text"]:focus,
				form input[type="email"]:focus,
				form input[type="password"]:focus,
				form select:focus,
				form textarea:focus
				{
					background: #f8f8f8;
				}
				
				form .formerize-placeholder
				{
					color: #555 !important;
					font-style: italic;
				}

				form ::-webkit-input-placeholder
				{
					color: #555 !important;
					font-style: italic;
					line-height: 1.35em;
				}

				form :-moz-placeholder
				{
					color: #555 !important;
					font-style: italic;
				}

				form ::-moz-placeholder
				{
					color: #555 !important;
					font-style: italic;
				}

				form :-ms-input-placeholder
				{
					color: #555 !important;
					font-style: italic;
				}

				form ::-moz-focus-inner
				{
					border: 0;
				}

	/* Section/Article */

		section,
		article
		{
			margin-bottom: 3em;
		}
		
			section > :last-child,
			article > :last-child
			{
				margin-bottom: 0;
			}

			section:last-child,
			article:last-child
			{
				margin-bottom: 0;
			}
		
		header.style1
		{
			text-align: center;
		}

			header.style1 h2
			{
				font-weight: 700;
			}
			
			header.style1 p
			{
				color: #b1b4b9;
			}

	/* Image */

		.image
		{
			display: inline-block;
		}
		
			.image img
			{
				display: block;
				width: 100%;
			}

			.image.fit
			{
				display: block;
				width: 100%;
			}

			.image.left
			{
				float: left;
				margin: 0 2em 2em 0;
			}
			
			.image.centered
			{
				display: block;
				margin: 0 0 2em 0;
			}

				.image.centered img
				{
					margin: 0 auto;
					width: auto;
				}
				
			.image.featured
			{
				display: block;
				width: 100%;
				margin: 0 0 2em 0;
			}

	/* Button */
	
		input[type="button"],
		input[type="submit"],
		input[type="reset"],
		.button
		{
			display: inline-block;
			background: #444;
			text-align: center;
			text-transform: uppercase;
			font-weight: 700;
			letter-spacing: 0.25em;
			text-decoration: none;
			border-radius: 0.35em;
			border: 0;
			outline: 0;
			cursor: pointer;
			-moz-transition: all .25s ease-in-out;
			-webkit-transition: all .25s ease-in-out;
			-o-transition: all .25s ease-in-out;
			-ms-transition: all .25s ease-in-out;
			transition: all .25s ease-in-out;
		}

			input[type="button"].style1,
			input[type="submit"].style1,
			input[type="reset"].style1,
			.button.style1
			{
				background: #be501d url('images/overlay.png');
				color: #fff;
			}

				input[type="button"].style1:hover,
				input[type="submit"].style1:hover,
				input[type="reset"].style1:hover,
				.button.style1:hover
				{
					background-color: #f98780;
				}
				
				input[type="button"].style1:active,
				input[type="submit"].style1:active,
				input[type="reset"].style1:active,
				.button.style1:active
				{
					background-color: #d96760;
				}

			input[type="button"].style2,
			input[type="submit"].style2,
			input[type="reset"].style2,
			.button.style2
			{
				background: none;
				color: #606167;
				box-shadow: inset 0px 0px 2px 0px #a0a1a7;
			}
			
				input[type="button"].style2:hover,
				input[type="submit"].style2:hover,
				input[type="reset"].style2:hover,
				.button.style2:hover
				{
					box-shadow: inset 0px 0px 2px 0px #606167;
				}
			
				input[type="button"].style2:active,
				input[type="submit"].style2:active,
				input[type="reset"].style2:active,
				.button.style2:active
				{
					box-shadow: inset 0px 0px 2px 0px #202127;
				}

			input[type="button"].style3,
			input[type="submit"].style3,
			input[type="reset"].style3,
			.button.style3
			{
				background: #2f333b url('images/overlay.png');
				color: #fff;
			}

				input[type="button"].style3:hover,
				input[type="submit"].style3:hover,
				input[type="reset"].style3:hover,
				.button.style3:hover
				{
					background-color: #3f434b;
				}
				
				input[type="button"].style3:active,
				input[type="submit"].style3:active,
				input[type="reset"].style3:active,
				.button.style3:active
				{
					background-color: #1f232b;
				}

	/* List */

		ul.default
		{
			list-style: disc;
			padding-left: 1em;
		}
		
			ul.default li
			{
				padding-left: 0.5em;
			}
			
		ul.style2
		{
		}
		
			ul.style2 li
			{
				border-top: solid 1px #eee;
				padding: 1.5em 0 0 0;
				margin: 1.5em 0 0 0;
			}
			
			ul.style2 li:first-child
			{
				border-top: 0;
				padding-top: 0;
				margin-top: 0;
			}
		
		ul.style3
		{
		}
		
			ul.style3 li
			{
				border-top: solid 1px #eee;
				padding: 0.5em 0 0 0;
				margin: 0.5em 0 0 0;
			}
			
			ul.style3 li:first-child
			{
				border-top: 0;
				padding-top: 0;
				margin-top: 0;
			}

		ol
		{
		}	

			ol.default
			{
				list-style: decimal;
				padding-left: 1.25em;
			}

				ol.default li
				{
					padding-left: 0.25em;
				}
				
	/* Feature List */

		.feature-list
		{
		}

			.feature-list h3
			{
				color: #be501d !important;
			}
			
				.feature-list h3:before
				{
					position: relative;
					display: inline-block;
					color: #fff;
					background: #2f333b url('images/overlay.png');
					border-radius: 1em;
					text-align: center;
				}

/*********************************************************************************/
/* Icons                                                                         */
/*********************************************************************************/

	.icon {
		text-decoration: none;
	}

		.icon:before {
			display: inline-block;
			font-family: FontAwesome;
			font-size: 1.25em;
			text-decoration: none;
			font-style: normal;
			font-weight: normal;
			line-height: 1;
			-webkit-font-smoothing:antialiased;
			-moz-osx-font-smoothing:grayscale;
		}
		
		.icon > .label {
			display: none;
		}








	.icon {
		position: relative;
	}

		.icon:before {
			-moz-osx-font-smoothing: grayscale;
			-webkit-font-smoothing: antialiased;
			font-family: FontAwesome;
			font-style: normal;
			font-weight: normal;
			text-transform: none !important;
		}

		.icon.circle {
			-moz-transition: all 0.2s ease-in-out;
			-webkit-transition: all 0.2s ease-in-out;
			-o-transition: all 0.2s ease-in-out;
			-ms-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
			border: 0;
			border-radius: 100%;
			display: inline-block;
			font-size: 1.25em;
			height: 2.25em;
			left: 0;
			line-height: 2.25em;
			text-align: center;
			text-decoration: none;
			top: 0;
			width: 2.25em;
		}

			.icon.circle:hover {
				top: -0.2em;
			}

			.icon.circle.fa-twitter {
				background: #70aecd;
				color: white;
			}

				.icon.circle.fa-twitter:hover {
					background: #7fb7d2;
				}

			.icon.circle.fa-facebook {
				background: #7490c3;
				color: white;
			}

				.icon.circle.fa-facebook:hover {
					background: #829bc9;
				}

			.icon.circle.fa-google-plus {
				background: #db6b67;
				color: white;
			}

				.icon.circle.fa-google-plus:hover {
					background: #df7b77;
				}

			.icon.circle.fa-github {
				background: #dcad8b;
				color: white;
			}

				.icon.circle.fa-github:hover {
					background: #e1b89b;
				}

			.icon.circle.fa-dribbble {
				background: #da83ae;
				color: white;
			}

				.icon.circle.fa-dribbble:hover {
					background: #df93b8;
				}

		.icon.featured {
			cursor: default;
			display: block;
			margin: 0 0 1.5em 0;
			opacity: 0.35;
			text-align: center;
		}

			.icon.featured:before {
				font-size: 5em;
				line-height: 1em;
			}

		.icon > .label {
			display: none;
		}

/* List */

	ol.default {
		list-style: decimal;
		padding-left: 1.25em;
	}

		ol.default li {
			padding-left: 0.25em;
		}

	ul.default {
		list-style: disc;
		padding-left: 1em;
	}

		ul.default li {
			padding-left: 0.5em;
		}

	ul.icons {
		cursor: default;
	}

		ul.icons li {
			display: inline-block;
			line-height: 1em;
			padding-left: 0.5em;
		}

			ul.icons li:first-child {
				padding-left: 0;
			}

	ul.featured-icons {
		cursor: default;
		margin: -0.75em 0 0 0;
		opacity: 0.35;
		overflow: hidden;
		position: relative;
	}

		ul.featured-icons li {
			display: block;
			float: left;
			text-align: center;
			width: 50%;
		}

			ul.featured-icons li .icon {
				display: inline-block;
				font-size: 6.25em;
				height: 1.25em;
				line-height: 1.25em;
				width: 1em;
			}

	ul.buttons {
		cursor: default;
	}

		ul.buttons:last-child {
			margin-bottom: 0;
		}

		ul.buttons li {
			display: inline-block;
			padding: 0 0 0 1.5em;
		}

			ul.buttons li:first-child {
				padding: 0;
			}

		ul.buttons.vertical li {
			display: block;
			padding: 1.5em 0 0 0;
		}

			ul.buttons.vertical li:first-child {
				padding: 0;
			}

/*********************************************************************************/
/* Wrappers                                                                      */
/*********************************************************************************/

	.wrapper
	{
		position: relative;
	}

		.wrapper .title
		{
			position: absolute;
			top: 0;
			left: 50%;
			text-align: center;
			text-transform: uppercase;
			display: block;
			font-weight: 700;
			letter-spacing: 0.25em;
		}
		
		.wrapper .title:before
		{
			content: '';
			position: absolute;
			bottom: -38px;
			left: -35px;
			width: 35px;
			height: 38px;
			background: url('/wp-content/themes/cds/images/shadow.png');
		}
		
		.wrapper .title:after
		{
			content: '';
			position: absolute;
			bottom: -38px;
			right: -35px;
			width: 35px;
			height: 38px;
			background: url('/wp-content/themes/cds/images/shadow.png');
			-moz-transform: scaleX(-1);
			-webkit-transform: scaleX(-1);
			-o-transform: scaleX(-1);
			-ms-transform: scaleX(-1);
			transform: scaleX(-1);
    	}

		.wrapper.style1
		{
			background: #bd501d url('images/overlay.png');
			color: #eee;
			color: rgba(255,255,255,0.75);
		}
		
			.wrapper.style1 .title
			{
				background: #bd501d url('images/overlay.png');
				color: #fff;
			}
		
			.wrapper.style1 h1,
			.wrapper.style1 h2,
			.wrapper.style1 h3,
			.wrapper.style1 h4,
			.wrapper.style1 h5,
			.wrapper.style1 h6,
			.wrapper.style1 strong,
			.wrapper.style1 b,
			.wrapper.style1 a
			{
				color: #fff;
			}
		
		.wrapper.style2
		{
			background: #fff;
		}
		
			.wrapper.style2 .title
			{
				background: #fff;
				color: #484d55;
			}
		
		.wrapper.style3
		{
			background: #f3f3f3 url('images/overlay.png');
		}
		
			.wrapper.style3 .title
			{
				background: #f3f3f3 url('images/overlay.png');
				color: #484d55;
			}
			
			.wrapper.style3 .image
			{
				border: solid 10px #fff;
			}

	#header-wrapper
	{
		background:url("/wp-content/themes/cds/images/emerge6_bg_01.jpg") no-repeat scroll top center / 100% transparent
	}
	
		#header-wrapper:before
		{
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: url('images/overlay.png');
		}
	
	#footer-wrapper
	{
		margin-top: 40px;
		background: #282b34 url('images/overlay.png');
		color: #eee;
		color: rgba(255,255,255,0.5);
	}

		#footer-wrapper h1,
		#footer-wrapper h2,
		#footer-wrapper h3,
		#footer-wrapper h4,
		#footer-wrapper h5,
		#footer-wrapper h6,
		#footer-wrapper strong,
		#footer-wrapper b,
		#footer-wrapper a
		{
			color: #fff;
		}

		#footer-wrapper hr
		{
			border-top-color: #333;
			border-top-color: rgba(255,255,255,0.05);
		}

		#footer-wrapper form
		{
		}

			#footer-wrapper form input[type="text"],
			#footer-wrapper form input[type="email"],
			#footer-wrapper form input[type="password"],
			#footer-wrapper form select,
			#footer-wrapper form textarea
			{
				background: #ccc;
				box-shadow: none;
			}

			#footer-wrapper form input[type="text"]:focus,
			#footer-wrapper form input[type="email"]:focus,
			#footer-wrapper form input[type="password"]:focus,
			#footer-wrapper form select:focus,
			#footer-wrapper form textarea:focus
			{
				background: #fff;
			}

		#footer-wrapper input[type="button"].style2,
		#footer-wrapper input[type="submit"].style2,
		#footer-wrapper input[type="reset"].style2,
		#footer-wrapper .button.style2
		{
			color: #aaa;
			box-shadow: inset 0px 0px 2px 0px rgba(255,255,255,0.5);
		}

			#footer-wrapper input[type="button"].style2:hover,
			#footer-wrapper input[type="submit"].style2:hover,
			#footer-wrapper input[type="reset"].style2:hover,
			#footer-wrapper .button.style2:hover
			{
				color: #ccc;
				box-shadow: inset 0px 0px 2px 0px rgba(255,255,255,0.65);
			}

			#footer-wrapper input[type="button"].style2:active,
			#footer-wrapper input[type="submit"].style2:active,
			#footer-wrapper input[type="reset"].style2:active,
			#footer-wrapper .button.style2:active
			{
				box-shadow: inset 0px 0px 2px 0px rgba(255,255,255,0.75);
			}

		#footer-wrapper .title
		{
			background: #282b34 url('images/overlay.png');
			color: #eee;
		}
		
		#footer-wrapper header.style1
		{
		}
		
			#footer-wrapper header.style1 h2
			{
				color: #fff;
			}
	
			#footer-wrapper header.style1 .p
			{
				color: inherit;
			}

		#footer-wrapper .feature-list
		{
		}
		
			#footer-wrapper .feature-list section
			{
				border-top-color: #333;
				border-top-color: rgba(255,255,255,0.05);
			}

			#footer-wrapper .feature-list h3
			{
			}
			
				#footer-wrapper .feature-list h3:before
				{
					background: #3d4249 url('images/overlay.png');
				}
		
/*********************************************************************************/
/* Logo                                                                          */
/*********************************************************************************/

	#logo
	{
	}
	
		#logo h1
		{
			font-weight: 900;
			text-transform: uppercase;
			color: #fff;
		}
		
		#logo p
		{
			color: #eee;
			color: rgba(255,255,255,0.5);
			text-transform: uppercase;
		}

/*********************************************************************************/
/* Intro                                                                         */
/*********************************************************************************/

	#intro
	{
	}
	
		#intro > .style1
		{
		}	
		
		#intro > .style2
		{
			font-weight: 700;
			color: #fff;
			border-radius: 0.35em;
			box-shadow: inset 0px 0px 1px 1px rgba(255,255,255,0.25);
		}
		
			#intro > .style2 a
			{
				color: inherit;
				text-decoration: none;
			}
		
		#intro > .style3
		{
		}
		
/*********************************************************************************/
/* Highlights                                                                    */
/*********************************************************************************/

	#highlights
	{
	}

		#highlights .highlight
		{
			text-align: center;
		}
		
			#highlights .highlight h3
			{
				color: #be501d;
			}

/*********************************************************************************/
/* Copyright                                                                     */
/*********************************************************************************/
			
	#copyright
	{
		text-align: center;
	}
	
		#copyright ul
		{
			display: inline-block;
			border-radius: 0.35em;
			box-shadow: inset 0px 0px 1px 1px rgba(255,255,255,0.05);
			color: #aaa;
			color: rgba(255,255,255,0.25);
		}
		
		#copyright a
		{
			color: inherit;
		}
		
			#copyright a:hover
			{
				color: #fff;
			}

h3{font-weight: 600;font-size: 1.2em;letter-spacing: 0.3px;font-family: "source-sans-pro",sans-serif !important;}
.thenews{font-family: 'museo-sans',sans-serif !important; color:#666666 !important; font-weight: 100 !important;font-size: 0.9em !important;letter-spacing: -0.03em !important;line-height: 1.6em !important;}
.newsitem{padding-bottom: 1.2em;}
.newsitem>.date{float:left; width:50px; border-right:1px solid #bababa;color:#bd501d; font-weight:500; text-transform:uppercase;}
.newsitem>.date>.day{ border-bottom:1px solid #bababa;font-size: 1.3em;}
.newitems>.date>.month{font-size: 0.9em;}
.newsitem>.news{float:left; margin-left:0.5em;width: 80%;text-align: left;letter-spacing: -0.03em;line-height: 1.4em;}
.canvasgraph{height:10em}
.tpublications>div{font-family: 'museo-sans',sans-serif !important; color:#000000; font-weight: 100;font-size: 0.9em;letter-spacing: -0.03em;line-height: 1.6em;}
.mbox *{color: #000000 !important;}
.mboxw{background:url(/wp-content/themes/cds/images/_bg_metric_03.png);}
.mdesc{bkackground-color:#000;font-weight:500;
    color:rgba(255,255,255,0);
    text-shadow: 0 0 5px #FFFFFF, 0 0 10px #FFFFFF;}
#recentpublications div{font-size: 0.8em;font-weight: 100;letter-spacing: -0.03em;line-height: 1.5em;padding-top: 1em;}
.esubtitles{text-transform: uppercase !important; font-size:0.8em; font-weight: 700 !important; color:#bd501d !important;letter-spacing: 0.2em !important;}
.esubtitles>span{font-size:0.7em; color:#000000;}

.wraptop{/*padding: 6em 0px 9em;*/padding-top: 1em;/*padding-bottom: 1em;*/}
.wraptopnav{position:fixed; z-ijndex:1; top:0; background-color:#ffffff;}
.hwtop{padding-top: 0px;pamdding-bottom: 2em;}
.htop{padding:1em}
.logorow{margin-bottom: -22px;}
.contentrow{padding-bottom: 4em;}
.theboxes{margin-top: 0em;}
.theboxes>.boxescol{margin-top:-2em;}
.tbox{margin-left: 0px !important;}
.faicon{font-size: 2em;}
.tboxcontent{color:#939292; letter-spacing:-0.03em; font-size:14px;font-weight: 100;line-height: 20px;padding: 1em;}
.publicationscol{background-color: rgba(255,255,255,0.9);border: 1px solid #e0f1fe;margin-top: -8em;padding-left: 2em;padding-right: 1em;padding-top: 1em;}
.pubname{padding-top: 1.2em;}
.pubname>a{font-weight:600;}
.actions{text-align:center;margin-top: 0.7em;}
.news{padding-top: 0px;padding-bottom: 1.5em;}
.highlights{text-align: left;}
.thenewstitle{font-size: 1.2em;}
.thenewstitle>span{color:#bd501d; font-weight:500; text-transform:uppercase;}
.thenewsspacer{width:20%; height:5px; background-color:#bd501d; margin-bottom:1em;}
.highlight p{font-size:0.5em;font-size: 0.8em;line-height: 1.3em;}
.highlight .actions{font-size: 0.7em;}
.highlight .actions>li>a{background-color:#bd501d;}
.fwb{padding-bottom: 0.1em;padding-top: 1em;}
.logorow>.6u{padding-top:0;}
.seccont p{margin-bottom:0px;}
.seccontti{padding-top: 1.3em;text-align: left;padding-left: 6em; text-transform: uppercase;letter-spacing: 0.3em;} 
.pubname:nth-child(3n+1){display:inline;}


.thead>p#ttagline{text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);font-family: 'proxima-nova' !important;font-weight: 100;font-size: 1.5em;color:#ffffff;position: relative;top: 50%;-webkit-transform: translateY(-50%);-ms-transform: translateY(-50%);transform: translateY(-50%);letter-spacing:-0.03em}
.thead>p#ttagline>span{font-weight:700}
.thead{padding-top:0px}
.carea{background-color: #ffffff;}
.tbody{margin-top: 0px;}
.tbody ul{list-style: outside none disc;}

.tbody *{color:#000; /*font-size: 1.1em;*/ font-family: "museo-sans",sans-serif !important; letter-spacing: -0.02em;}
.tbody li{font-size:0.9em; padding-bottom:0.5em;}
.tbody li ul{padding-left:2em; margin-bottom:-0.1em;}
.tbody ul{padding-top:1em;}
.tbody a{color:#bd501d; font-weight: 300}
h1{padding-bottom:1em;color:#bd501d !important; font-size:1.4em !important;font-weight: 500 !important;letter-spacing: -0.03em !important;}

.fa {font-family: 'FontAwesome' !important;}

.tsearch .tlabel{font-family:'proxima-nova' !important; font-size:13px; font-weight:700; text-transform:uppercase; color:#000000; letter-spacing:0.1em}
.tsearch input{border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; font-family:'proxima-nova' !important; font-size:13px; font-weight:700; text-transform:uppercase; color:#000000; letter-spacing:0.1em;color:#24afb2; border:2px solid #24afb2;padding: 0.6em;padding-left: 1em;}


.checkbox{font-size: 19px;}
.checkbox label{font-family:'proxima-nova' !important; font-size:13px;   color:#000000; letter-spacing:0em}
@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);
input[type=checkbox] { display:none; } /* to hide the checkbox itself */
input[type=checkbox] + label:before {font-family: FontAwesome;display: inline-block;}


input[type=checkbox] + label:before { content: "\f096"; color: #000; font-weight: 100} /* unchecked icon */
input[type=checkbox] + label{color: #000; font-weight: 700; font-size: 16px; cursor: pointer; cursor: hand;}
input[type=checkbox] + label:before { letter-spacing: 10px; } /* space between checkbox and label */



input[type=checkbox]:checked + label{color: #24AFB2; font-weight: 700}
input[type=checkbox]:checked + label:before { content: "\f0c8";color: #24AFB2; font-size: 16px; cursor: pointer; cursor: hand; } /* checked icon */
input[type=checkbox]:checked + label:before { letter-spacing: 9px;font-weight: 100 } /* allow space for check mark */

.loginbutton{ position: relative;top: 20px;left: 0px;text-align: left;margin: auto;display: block;margin-top: 0em !important; padding-left:2em;}

.li_login{display:none;}

.wp-video{
	width: 100% !important;
	text-align: center;
}

.wp-video video{
	width: 100%;
	max-width:600px;
	height: auto;
}

table#presentations th{
	font-weight: bold;
}

table#presentations th,
table#presentations td{
	border: 1px solid #e2e2e2;
	padding: 5px;
}

#header-wrapper{
	margin-bottom: 20px;
}

h1{
	margin-top: 30px;
}

.row>*{
	padding-top: 0px;
	float: none;
}

body.page-id-4 .row>*,
body.page-id-17 .row>*{
	float: left;
}