/** BASIC PATTERN **/

@font-face {
    font-family: 'source_sans_probold';
    src: url('fonts/sourcesanspro-bold-webfont.woff2') format('woff2'),
         url('fonts/sourcesanspro-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'source_sans_proregular';
    src: url('fonts/sourcesanspro-regular-webfont.woff2') format('woff2'),
         url('fonts/sourcesanspro-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'vollkornbold';
    src: url('fonts/vollkorn-bold-webfont.woff2') format('woff2'),
         url('fonts/vollkorn-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'vollkornitalic';
    src: url('fonts/vollkorn-italic-webfont.woff2') format('woff2'),
         url('fonts/vollkorn-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'vollkornregular';
    src: url('fonts/vollkorn-regular-webfont.woff2') format('woff2'),
         url('fonts/vollkorn-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
	margin:0;
	padding:0;
	border:0;
}

html {
	font-size:16px;
	font-family: 'vollkornregular';
	color:#020303;
}

body {
	font-size:1rem;
}

a:visited, a:link {
	color:inherit;
	text-decoration:underline;
	font-size:inherit;
}

a:hover, a:active {
	color:inherit;
	text-decoration:none;
	font-size:inherit;
}

b, strong {
	color:inherit;
	font-weight:normal;
	font-size:inherit;
	font-family: 'source_sans_probold';
}

blockquote {
	display:block;
	background: #F4EEE8;
	padding: 0.9375rem 1.25rem 0.1875rem 2.8125rem;
	margin: 1.25rem 0;
	position: relative;
  
	/*Font*/
	font-family: 'vollkornregular';
	font-size: 1rem;
	line-height: 1.4rem;
	color: #666;
	text-align: left;

}

blockquote::before{
  content: "\201C"; /*Unicode for Left Double Quote*/
  
  /*Font*/
  font-family: Georgia, serif;
  font-size: 3.75rem;
  font-weight: bold;
  color: #999;
  
  /*Positioning*/
  position: absolute;
  left: 0.625rem;
  top:0.3125rem;
}

blockquote::after{
  /*Reset to make sure*/
  content: "";
}

blockquote a{
  text-decoration: none;
  background: #eee;
  cursor: pointer;
  padding: 0 3px;
  color: #c76c0c;
}

blockquote a:hover{
 color: #666;
}

blockquote em{
  font-style: italic;
}

button {
	width:15rem;
	display:block;
	border:1px solid #ccc;
	padding:0.3rem 0.5rem;
	margin-bottom:1rem;
	text-align:center;
}

button:hover {
	background:#cecece;
}

em, i {
	color:inherit;
	font-weight:inherit;
	font-size:inherit;
}

h1 {
	font-size:2rem;
	font-weight:normal;
	color:inherit;
	font-family: 'vollkornbold';
}

h2 {
	font-size:1.6rem;
	font-weight:normal;
	color:inherit;
	font-family: 'vollkornbold';

}

h3 {
	font-size:1.5rem;
	font-weight:normal;
	color:inherit;
	font-family: 'vollkornbold';

}

h4 {
	font-size:1.4rem;
	font-weight:normal;
	color:inherit;
	font-family: 'vollkornbold';

}

h5 {
	font-size:1.2rem;
	font-weight:normal;
	color:inherit;
	font-family: 'vollkornbold';

}

h6 {
	font-size:1.2rem;
	font-weight:normal;
	color:inherit;
}

hr {
	display:block;
	background:#ccc;
	height:1px;
	margin:1rem 0;
}

input {
	width:15rem;
	display:block;
	border:1px solid #ccc;
	padding:0.3rem 0.5rem;
	margin-bottom:1rem;
	box-sizing: border-box;
}

input[type="submit"] {
	width:15rem;
	display:block;
	border:1px solid #ccc;
	padding:0.3rem 0.5rem;
	margin-bottom:1rem;
	text-align:center;
	cursor:pointer;
	box-sizing: border-box;
}

input[type="submit"]:hover {
	background:#cecece;
}

label {
	display:block;
	color:inherit;
	font-weight:inherit;
	margin-bottom:0.3rem;
}

li {
	font-size:inherit;
}

ol {
    counter-reset: foo;
    display: table;
	margin:1rem;
}

ol > li {
    counter-increment: foo;
    display: table-row;
	
}

ol > li::before {
    content: counter(foo) ".";
    display: table-cell; 
    text-align: right;
}

ol li {
	display:table;
	margin-bottom:0.5em;
}

ol li:last-child {
	margin-bottom:0;
}

option {
	padding:0.3rem 0.5rem;
}

p {
	margin-bottom:0.75em;
	line-height:1.75em;
}

select {
	width:15rem;
	display:block;
	border:1px solid #ccc;
	margin-bottom:1rem;
	box-sizing: border-box;
}

span {
	font-size:inherit;
	font-weight:inherit;
	color:inherit;
}

table {
	border:1px solid #ccc;
}

table tr:first-child {
	background:#ccc;
}

table tr:nth-child(2n+3) {
	background:#eee;
}

td {
	padding:0.3rem 1rem;
	text-align:left;
}

th {
	padding:0.3rem 1rem;
	text-align:left;
	font-size:1rem;
}

ul {
	
}

ul li {
	list-style:none;
	background:url(bilder/icon_liste.png) 0 0.1rem no-repeat;
	padding-left:1.5rem;
}

.clear {
	clear: both;
}

@media print {
	
}
/** BASIC PATTERN ENDE **/