/*
Theme Name: Mahlzeit!
Theme URI: http://www.dertagundich.de/
Description: Mahlzeit!
Author: Martin Schneider
Version: 1.0
Tags: 
*/

/* Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */

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, font, 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 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}


			
			
			/* Nun bringen wir den HTML5-Tags erst mal ordentliches Benehmen bei */
			article, aside, dialog, figure, footer, header, hgroup, menu, nav, section {
			    display: block;
			}
			
			body {
				font-family:  "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, Sans-Serif;
				color: #666;
				background: url("images/background.jpg") center 0 no-repeat #000;
				font-weight: 200;
				font-size: 0.8em;				
			}
		
			#header {
			}
			
			#article {
				height: 490px;
			}
			
			#content {
				position: absolute; 
				top: 50%;
				left: 50%;
				height: 500px;
				width: 400px;
				margin: -280px 0 0 -230px;
				background: #f0efe1;
				box-shadow: 0 0 60px #000;
				-webkit-box-shadow: 0 0 60px #000;
				-moz-box-shadow: 0 0 60px #000;
				padding: 30px;
				-webkit-transform: rotate(2deg);
				
				-webkit-transition: -webkit-transform 0.2s linear;
			  
			}
			
			#content:hover {
				-webkit-transform: rotate(0deg);
			}
			
			#content ul {
				margin: 10px 0 0 25px;
			}
			
			#content ul li {
				padding: 5px 0;
				line-height: 1.6em;
			}
			
			#footer {
					text-align: center;
					font-size: 0.75em;
					width: 100%;
			}
			
			h1 {
				background: url("images/mahlzeit.png") center center no-repeat transparent; 
				color: #000;
				font-weight: 200;
				height: 30px;
				padding: 35px 0; 
				width: 100px;
				float: right;
				text-align: center;
				font-size: 20px;
				letter-spacing: 2px;
				line-height: 30px;
				opacity: 0.5;
				-webkit-transition: opacity 1s linear;
			}
			
			h1:hover {
				opacity: 1;
			}
			
			h1 a, h1 a:hover { color: #444; }
			
			h2 {
				font-weight: 100;
				font-size: 2.8em;
				letter-spacing: 2px;
				width: 290px;
				margin: 5px 0 0 0;
				height: 100px;
				vertical-align: bottom;
			}
			
			h3 {
				font-weight: 100;
				font-size: 1.5em;
				letter-spacing: 2px;
				padding: 30px 0 0 0;
			}
			
			a {
				text-decoration: none;
				color: #ccc;				
				-webkit-transition: color 1s linear;
			}
			
			a:hover {
				color: #333;
			}
			
			a:active {
				position: relative;
				top: 1px;
			}
			
			h2 a {
				color: #666;
			}
			
			h2 a:hover {
				color: #333;
			}
			
			p {
				line-height: 1.8em;
				margin: 10px 0 0 0;
			}

			small {
				margin: 10px 0 0 0; 
				display: block;
				text-align: right;
				font-size: 0.8em;
				font-style: italic;
			}
