/* ****************************************************** */
/* import my embedded font
http://www.onextrapixel.com/2011/05/03/understanding-and-using-embedded-fonts-what-why-and-how/
http://www.fontsquirrel.com/tools/webfont-generator */
/* ****************************************************** */
@font-face {
    font-family: 'yanone_kaffeesatzthin';
    src: url('../fonts/yanonekaffeesatz-thin-webfont.eot');
    src: url('../fonts/yanonekaffeesatz-thin-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/yanonekaffeesatz-thin-webfont.woff') format('woff'),
         url('../fonts/yanonekaffeesatz-thin-webfont.ttf') format('truetype'),
         url('../fonts/yanonekaffeesatz-thin-webfont.svg#yanone_kaffeesatzthin') format('svg');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'yanone_kaffeesatzlight';
    src: url('../fonts/yanonekaffeesatz-light-webfont.eot');
    src: url('../fonts/yanonekaffeesatz-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/yanonekaffeesatz-light-webfont.woff') format('woff'),
         url('../fonts/yanonekaffeesatz-light-webfont.ttf') format('truetype'),
         url('../fonts/yanonekaffeesatz-light-webfont.svg#yanone_kaffeesatzlight') format('svg');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'yanone_kaffeesatzregular';
    src: url('../fonts/yanonekaffeesatz-regular-webfont.eot');
    src: url('../fonts/yanonekaffeesatz-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/yanonekaffeesatz-regular-webfont.woff') format('woff'),
         url('../fonts/yanonekaffeesatz-regular-webfont.ttf') format('truetype'),
         url('../fonts/yanonekaffeesatz-regular-webfont.svg#yanone_kaffeesatzregular') format('svg');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'yanone_kaffeesatzbold';
    src: url('../fonts/yanonekaffeesatz-bold-webfont.eot');
    src: url('../fonts/yanonekaffeesatz-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/yanonekaffeesatz-bold-webfont.woff') format('woff'),
         url('../fonts/yanonekaffeesatz-bold-webfont.ttf') format('truetype'),
         url('../fonts/yanonekaffeesatz-bold-webfont.svg#yanone_kaffeesatzbold') format('svg');
    font-weight: normal;
    font-style: normal;

}

/* ****************************************************** */
/* the document body */
/* ****************************************************** */
body {
	background-color: #fff;
}



/* ****************************************************** */
/* main container for content */
/* ****************************************************** */
div#main_container {
	/* background-color: #ddd; */
	width: 600px;
	min-height: 200px;
	margin: 100px auto 0;
	padding: -10px 0 0 0;
}

/* inner container block that can be stacked */
div.inner_container {
	/*background-color: #bbb;*/
	position: relative;
}

/* this clears the floats after an inner container; leads to stacking */
div.inner_container:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

/* headline in inner container */
div.inner_container h1 {
	font-family: 'yanone_kaffeesatzlight', Arial, sans-sarif;
	font-size: 3.6em;
	text-align: left;
}

/* horizontal line in inner container */
/* golden ratio is roughly 38,2% to 61,8% */
div.inner_container hr {
	background-color: #000;
	color: #000;
	border: 0;
	height: 4px;
	width: 56.8%; /* golden ration minus some percent */
	/* relative positioning sometimes results in line shifted entirely to the right */
	/* margin: -2.1em 0 0 auto; */
	position: absolute;
	top: 3.65em;
	left: 0;
}

/* big photo in inner container, position to the top left/right */
div.inner_container img {
	float: right;
	max-width: 38.2%;
	height: auto;
	/*margin: 1.1em 0 0 0; /* difference between img upper line and headline upper line */
}

/* text container inside inner container, position to the bottom right/left */
div.inner_container div {
	/*background-color: #999;*/
	position: absolute;
	bottom: -1.1em; /* text aligned at bottom */
	left: 0;
	width: 51.8%;  /* golden ration minus some percent */
	font-family: 'yanone_kaffeesatzthin';
	font-size: 1.3em;
	text-align: left;
}

/* small title */
div.inner_container h4 {
	/*font-family: 'yanone_kaffeesatzlight', Arial, sans-sarif;
	font-size: 3.6em;
	text-align: right;*/
	margin-bottom: 0;
}



/* ****************************************************** */
/* link colors */
/* ****************************************************** */
a {
	color: #000;
	text-decoration: underline;
	font-family: 'yanone_kaffeesatzlight';
}

a:hover {
	color: #000;
	/*background-color: #6699FF;*/
	/*background-color: #83ACFF;
	background-color: #A0D0FA;*/
	background-color: #A0E3FA;
	text-decoration: underline;
}



/* ****************************************************** */
/* bottom icons */
/* ****************************************************** */
div#navigation ul {
	padding: 0;
	margin: 2em 0 0 0;
	list-style: none; /* no bullet points */
}

div#navigation ul:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

div#navigation ul li {
	float: left; /* float left to each other */
	width: 25%; /* enough space for 4 icons */
	text-align: center;
	font-size: 1.3em;
}

div#navigation ul img {
	display: block;
	margin: 0 auto 0.4em;
	max-width: 48px;
}