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

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

	body
	{
		background: #14191f;
		color: #979797;
		font-family: 'Open Sans', sans-serif;
		font-size: 10pt;
		font-weight: 400;
		line-height: 1.5em;
	}
	
	a
	{
		color: #fff;
		text-decoration: underline;
	}
	
	strong
	{
		font-weight: 700;
	}
	
	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a
	{
		text-decoration: none;
		color: #fff;
	}
	
	h1, h2, h3, h4, h5, h6
	{
		font-weight: 700;
		color: #fff;
		text-transform: uppercase;
	}
	
	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;
	}
	
	h3
	{
		font-size: 1em;
		margin: 0 0 1em 0;
	}
	
	a:hover
	{
		text-decoration: none;
	}

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

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

	.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;
		}
		
		
		.image-right
		{
			float: right;
			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 #35383d;
			padding-top: 0.725em;
			margin-top: 0.725em;
		}

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

			.box-style2 ul.style2 li
			{
				border-top-color: #637fa1;
			}
		
		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 #20242a;
			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: 24px;
				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 #20242a;
			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: 0.8em;
		display: block;
		opacity: 0.5;
		margin: 0.25em 0 0 0;
	}
	
	.button
	{
		position: relative;
		display: inline-block;
		background: #292d32;
		color: #fff;
		border-radius: 6px;
		box-shadow: inset 0px 0px 0px 1px #35383d;
		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: #2d3238;
			box-shadow: inset 0px 0px 0px 1px #383c42;
		}
	
		.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: #292d32;
		color: #fff;
		border-radius: 6px;
		box-shadow: inset 0px 0px 0px 1px #35383d;
		padding: 0.85em 1.75em 0.85em 60px;
		text-decoration: none;
		font-weight: 700;
		font-size: 1.5em;
		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: #2d3238;
		}
	
		.bigbutton:before
		{
			content: '';
			display: block;
			width: 32px;
			height: 32px;
			background: url('images/icon32.png');
			position: absolute;
			left: 16px;
			top: 50%;
			margin-top: -16px;
		}

		.bigbutton-style1
		{
			background: #e05433;
			background: rgba(224, 84, 64, 0.95);
			box-shadow: inset 0px 0px 0px 1px #e87f66;
		}
		
			.bigbutton-style1:hover
			{
				background: #e95544;
			}

		.bigbutton-style2
		{
			background: #416391;
			background: rgba(65, 99, 145, 0.95);
			box-shadow: inset 0px 0px 0px 1px #6f8aab;
		}
		
			.bigbutton-style2:hover
			{
				background: #456a9a;
			}

	.box
	{
		background: #1f2329;
		background: rgba(31, 35, 41, 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 #35383d;
			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: #e05433;
			background: rgba(224, 84, 64, 0.95);
			box-shadow: inset 0px 0px 0px 1px #e87f66;
			color: #fee8e3;
		}

		.box-style2
		{
			background: #416391;
			background: rgba(65, 99, 145, 0.95);
			box-shadow: inset 0px 0px 0px 1px #6f8aab;
			color: #cddaed;
		}

		.box-main
		{
		}

			.box-main h2
			{
			}

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

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

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

	#header-wrapper
	{
		background: #3e5f8b url('../images/banner.jpg') top center no-repeat;
	}
	
	#banner-wrapper
	{
	}
	
	#main-wrapper
	{
		background: #191d23;
	}
	
	#footer-wrapper
	{
	}

/*********************************************************************************/
/* 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
	{
		text-align: center;
		border-top: solid 1px #20242a;
		color: #32353a;
	}
	
/*********************************************************************************/
/* SWU-Edit                                                                     */
/*********************************************************************************/
	#swudisneylogo
	{
	position:absolute;
	left:20px; top:20px;
	margin-top:20px;
	margin-right:20px;
	width:272px;
	height:221px;
	z-index:2;
	background:url('../images/logo_swdisney.png') no-repeat;
	
	}

	#monatneu
	{
	position:absolute;
	right:20px; top:20px;
	margin-top:20px;
	margin-right:20px;
	width:263px;
	height:224px;
	z-index:2;
	background:url('../images/jedenmonatneu.png') no-repeat;
	
	}
	
	
	#goofybinks
	{
	position:absolute;
	right:0px;
	bottom:0px; 
	margin-bottom:0px;
	margin-right:0px;
	width:337px;
	height:435px;
	z-index:0;
	background:url('../images/goofybinks.png') no-repeat;
	
	}