/* css reset - makes the layout looking good in all browsers */
/*

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, 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, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block; }
body {
	line-height: 1; 
	font:12px/20px Arial;
	background:url(pattern.png) repeat scroll 0 0;
	}
ol, ul {
	list-style: none; }
.center {
	margin:50px 0 0 190px;
	width:240px;
	
}
*/

body {
    font-family: 'Dosis', sans-serif;
    background-color:#EFEFEF;
}

h1 { font-size:30px; margin:130px 0 0 0; text-align:center;
    font-weight:bold;
    color:#777777;
    text-shadow: 1px 2px 0 #ffffff, 2px 4px 0 #d6d6d6;
}

table{
    width:100%;
    max-width:800px;
    margin-top:10px;
    border: 0px solid black;
}

a {
    color: #008000;
}

#content{
    background-color:#FFFFFF;
    max-width:800px;
    margin-left: auto ;
    margin-right: auto ;
    margin-top:15px;
    margin-bottom:15px;
    border: 1px solid #008000;
    
}

@media only screen and (max-device-width:667px) {
    body{
        background-color:#EFEFEF;
        width:100%;
    }
    table{
        width:100%;
        max-width:100%;
    }
}

.eingabe_button {
    border: 0px solid black;
    background-color:#008000;
    color:#FFFFFF;
    border: 1px solid #34495E;
    padding: 1px 4px;
    cursor : pointer;
    text-align : center;
    font-weight: bold;
}

.eingabe_roll {
    font-size : 12px;
    background: #FFFFFF;
    padding: 1px;
    border: 1px solid #34495E;
}

.eingabe_feld{
    height:20px;
    padding:6px 12px;
    font-size:13px;
    color:#555;
    background-color:#fff;
    background-image:none;
    border:1px solid #ccc;
    border-radius:4px;
    -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow:inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s
}
.eingabe_feld:focus{
    border-color:#008000;
    outline:0;
    -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
    box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)
}
.eingabe_feld::-moz-placeholder{
    color:#999;opacity:1
}

.eingabe_feld:-ms-input-placeholder{color:#999}
.eingabe_feld::-webkit-input-placeholder{color:#999}
.eingabe_feld[disabled],.eingabe_feld[readonly],fieldset[disabled] 
.eingabe_feld{background-color:#eee;opacity:1}
.eingabe_feld[disabled],fieldset[disabled] 
.eingabe_feld{cursor:not-allowed}textarea
.eingabe_feld{height:auto}input[type=search]{-webkit-appearance:none}

