/* ==================================================================
Stylesheet fuer die Textformatierungen
Datei: text.css
Media: all

Datum: 17.12.2012
Autor:	grintsch communications (mf)
Internet: www.grintsch.com

Inhalt:
CSS-Anweisungen für Ideal Standard
==================================================================== */
	
/* ======================================================

	=1. Inline-Elemente

========================================================= */
span.more { 
	color: #000 !important; 
	font-weight: 300;
	font-family: "museo-sans-n3","museo-sans",sans-serif;
	}

span.more:hover { text-decoration: underline; }

span.title {
	color: #000;
	text-transform: uppercase;
}

/* ======================================================
	=1.1 Links / Buttons
========================================================= */

	
a.simple { text-decoration: none; }

a.simple:hover,
a.simple:active,
a.simple:focus { text-decoration: underline; }

#logout .btn {
	width: 190px;
	margin-top: 100px;
}

	
/* ======================================================

	=2. Block-Elemente

========================================================= */
p {
    font-size: 1em; /* 14px */
    line-height: 1.5em; /* our baseline */ 
    margin: 0 0 1em 0;
}

	/*p*/.small {
		font-size: 0.857em; /* 12px, 12px / 14px = 0.857 */ 
		line-height: 0.857em;
		margin-bottom: 0.857em;
	}
	
	/*p*/.wrap-button {
		padding: 20px 0 0;
		margin: 0 20px;
	}


/* Base list styles */
ul {
    list-style-type: square;
	
	margin: 0 0 1em 0;
}

	li {
		padding-left: 0;
		margin: 0 0 0.5em 15px;
	}

/* Annul on lists with class `.listing` */
.listing li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ======================================================

	=2.1 Überschriften

========================================================= */
h1, h2, h3, h4 {
	font-family: "museo-sans-n3", "museo-sans", Arial, Helvetica, sans-serif;
	font-weight: 300;
	font-style: normal;
	/* v1.2 color: #000;*/
}

h1 {
	font-size: 2.142em; /* 30px, 24px / 14px = 1.7143em */
	color: #009de4;
	
	line-height: 1.143em; /* 1.5 / 1.7413 */
	text-transform: uppercase;
	
	margin-bottom: 0.714em;
}

h2 {
	font-size: 1.286em; /* 18px, 18px / 14px = 1.286 */ 
	line-height: 1.1664em; /* 1.5 / 1.286 */
	margin-bottom: 1.1664em;
}

h3, h4 {
	font-size: 1em; /* 14px, 14px / 14px = 1 */ 
	line-height: 1.5em; /* 1.5 / 1 */
	margin-bottom: 1em;
}

/* ======================================================

	=7.0 Tabellen

========================================================= */
table {
	width: 100%;
}	

	table caption {
		font-family: "museo-sans-n3","museo-sans",Arial,Helvetica,sans-serif;
		font-weight: 300;
		
		color: #009de4;
		text-align: left;
		text-transform: uppercase;
		
		background:#E6E7E7;
		padding: 15px;
	}		

	table thead th {
		font-family: "museo-sans-n3","museo-sans",Arial,Helvetica,sans-serif;
		font-weight: 300;
		
		text-align: left;
		text-transform: uppercase;
		
		padding: 10px 15px;
	}

	table tbody td {
		padding: 10px 15px;
		border-top: 1px solid #c0c1c2;
	}


	