/*********************************************************************************/
/* Basic                                                                         */
/*********************************************************************************/

	*
	{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	}

	body
	{
	background: #0d0d0d;
	font-family: 'Open Sans', sans-serif;
	font-size: 12pt;
	font-weight: normal;
	line-height: 1.5em;
	}
	
	a
	{
		color: #fff;
		text-decoration: underline;
	}
	
	strong
	{
	font-weight: 700;
	color: #0CF;
	}
	
	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a
	{
		text-decoration: none;
		color: #fff;
	}
	
	h1, h2, h3, h4, h5, 
	{
	font-weight: 700;
	color: #000;
	text-transform: uppercase;
	}
	
		h6
		{font-size:18px;
		color: #0CF;
		font-weight: 700;
		}
		
		h7
		{font-size:18px;
		color: #fce702;
		font-weight: 700;
		}
	h1 span, h2 span, h3 span, h4 span, h5 span, h6 span
	{
		font-weight: 400;
	}
	
	h2
	{
	font-size: 1.5em;
	margin: 0 0 1.5em 0;
	color: #FFF;
	text-align: center;
	}
	
	h3
	{
	font-size: 1em;
	margin: 0 0 1em 0;
	color: #FFF;
	}
	
	a:hover
	{
	text-decoration: none;
	font-size: 1em;
	}

	form
	{
	}
	
		form input,
		form select,
		form textarea
		{
			-webkit-appearance: none;
		}
			
	br.clear
	{
		clear: both;
	}
	
	p, ul, ol, dl, table
	{
	margin-bottom: 2em;
	color: #FFFFFF;
	}
	
	section,
	article
	{
		margin-bottom: 2em;
	}
	
	section > :last-child,
	article > :last-child
	{
		margin-bottom: 0;
	}

	section:last-child,
	article:last-child
	{
	margin-bottom: 0;
	color: #FFFFFF;
	}

	.image
	{
		display: inline-block;
	}
	
		.image img
		{
			display: block;
			width: 100%;
			border-radius: 6px;
		}

		.image-full
		{
			display: block;
			width: 100%;
			margin: 0 0 2em 0;
		}
		
		.image-left
		{
			float: left;
			margin: 0em 2.5em 2.5em 0;
		}

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

		ul.style2 p
		{
			margin-bottom: 0;
		}

		ul.style2 li
		{
			border-top: solid 1px #363636;
			padding-top: 0.725em;
			margin-top: 0.725em;
		}

			.box-style1 ul.style2 li
			{
				border-top-color: #5abfda;
			}

			.box-style2 ul.style2 li
			{
				border-top-color: #808d6c;
			}
		
		ul.style2 li:first-child
		{
			border-top: 0;
			padding-top: 0;
			margin-top: 0;
		}

	ul.style3
	{
	}

		ul.style3 p
		{
			margin-bottom: 0;
		}

		ul.style3 li
		{
			position: relative;
			border-top: solid 1px #191919;
			padding: 1.5em 0 0 32px;
			margin-top: 1.5em;
		}

			ul.style3 li:before
			{
				content: '';
				position: absolute;
				background: url('images/icon24.png') -72px 0px no-repeat;
				width: 24px;
				height: 14px;
				left: -2px;
				top: 50%;
			}

		ul.style3 li:first-child
		{
			border-top: 0;
			padding-top: 0;
			margin-top: 0;
		}

			ul.style3 li:first-child:before
			{
				top: 0;
			}

	ul.contact
	{
	}

		ul.contact p
		{
			margin-bottom: 0;
		}

		ul.contact li
		{
			position: relative;
			border-top: solid 1px #191919;
			padding: 1.25em 0 0 44px;
			margin-top: 1.25em;
		}

			ul.contact li:before
			{
				content: '';
				position: absolute;
				background: url('images/icon32.png') 0px 0px no-repeat;
				width: 32px;
				height: 32px;
				top: 50%;
				left: 0;
				margin-top: -0.5em;
			}

				ul.contact li.home:before
				{
					background-position: -32px 0px;
				}

				ul.contact li.phone:before
				{
					background-position: -64px 0px;
				}

				ul.contact li.mail:before
				{
					background-position: -96px 0px;
				}

				ul.contact li.speech:before
				{
					background-position: -128px 0px;
				}

		ul.contact li:first-child
		{
			border-top: 0;
			padding-top: 0;
			margin-top: 0;
		}

			ul.contact li:first-child:before
			{
				top: 0;
			}
	
	.timestamp
	{
	font-size: 16px;
	display: block;
	margin-top: 0.25em;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 10;
	}
	
	.button
	{
		position: relative;
		display: inline-block;
		background: #232323;
		color: #fff;
		border-radius: 6px;
		box-shadow: inset 0px 0px 0px 1px #303030;
		padding: 1em 2em 1em 50px;
		text-decoration: none;
		font-weight: 700;
		font-size: 1.05em;
		text-transform: uppercase;
		letter-spacing: -0.05em;
		transition: background-color .25s ease-in-out;
		-moz-transition: background-color .25s ease-in-out;
		-webkit-transition: background-color .25s ease-in-out;
	}
	
		.button:hover
		{
			background: #2e2e2e;
			box-shadow: inset 0px 0px 0px 1px #343434;
		}
	
		.button:before
		{
			content: '';
			display: block;
			width: 24px;
			height: 24px;
			background: url('images/icon24.png');
			position: absolute;
			left: 16px;
			top: 50%;
			margin-top: -12px;
		}

		.button-folder
		{
		}
		
			.button-speech:before
			{
				background-position: 0px 0px;
			}

		.button-folder
		{
		}
		
			.button-folder:before
			{
				background-position: -24px 0px;
			}

	.bigbutton
	{
	position: relative;
	display: inline-block;
	background: #232323;
	color: #fff;
	border-radius: 6px;
	box-shadow: inset 0px 0px 0px 1px #303030;
	padding: 0.85em 1.75em 0.85em 20px;
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: -0.05em;
		transition: background-color .25s ease-in-out;
		-moz-transition: background-color .25s ease-in-out;
		-webkit-transition: background-color .25s ease-in-out;
	}
	
		.bigbutton:hover
		{
			background: #2e2e2e;
		}
	
		.bigbutton:before
		{
	content: '';
	display: block;
	width: 45px;
	height: 14px;
	position: absolute;
	left: 14px;
	top: 50%;
	margin-top: -14px;
		}

		.bigbutton-style1
		{
			background: #505d6f;
			background: rgba(80, 93, 111);
			box-shadow: inset 0px 0px 0px 1px #505d6f;
		}
		
			.bigbutton-style1:hover
			{
	background-color: #505d6f;
			}

		.bigbutton-style2
		{
			background: #915e41;
			background: rgba(145, 94, 65);
			box-shadow: inset 0px 0px 0px 1px #915e41;
		}
		
			.bigbutton-style2:hover
			{
	background-color: #915e41;
			}

	.box
	{
		background: #191919;
		background: rgba(25, 25, 25, 0.95);
		border-radius: 6px;
		padding: 3em 2em 3em 2em;
		overflow: hidden;
	}
	
		.box header
		{
			margin-bottom: 2em;
		}
		
			.box header h2
			{
				margin-bottom: 0.5em;
			}

		.box footer
		{
			clear: both;
		}

		.box section,
		.box article
		{
			border-bottom: solid 1px #303030;
			padding-bottom: 2em;
			margin-bottom: 2em;
		}

		.box section:last-of-type,
		.box article:last-of-type
		{
			border-bottom: 0;
			margin-bottom: 0;
			padding-bottom: 0;
		}

		.box-style1
		{
			background: #505d6f;
			background: rgba(80, 93, 111);
			box-shadow: inset 0px 0px 0px 1px #505d6f;
			color: #505d6f;
		}

		.box-style2
		{
			background: #915e41;
			background: rgba(145, 94, 65);
			box-shadow: inset 0px 0px 0px 1px #915e41;
			color: #cad5c1;
		}

		.box-main
		{
		}

			.box-main h2
			{
			}

		.box-cta
		{
		}
		
			.box-cta p
			{
				color: #c9c9c9;
			}
			
		.box-features
		{
		}

			.box-features .button
			{
				margin-top: 2em;
			}

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

	#header-wrapper
	{
	background-image: url(../images/banner2.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	}
	
	#banner-wrapper
	{
	}
	
	#main-wrapper
	{
		background: #121212;
	}
	
	#footer-wrapper
	{
		background: #5d6062;
	}

/*********************************************************************************/
/* Banner                                                                        */
/*********************************************************************************/

	#banner
	{
	}

		#banner .caption
		{
		}
	
			#banner .caption h2
			{
	font-weight: 700;
	text-transform: uppercase;
	color: #FFF;
			}
			
			#banner .caption p
			{
				color: #ddd;
				color: rgba(255,255,255,0.65);
			}
	
/*********************************************************************************/
/* Copyright                                                                     */
/*********************************************************************************/

	#copyright
	{
		text-align: center;
		border-top: solid 1px #191919;
		color: #313131;
	}
