
/**		             
 *		D O W N L O A D S
 */

/**
 * Download-Liste: äußerer Container um den Block für einen Download herum
 * (für flexibles Layout und damit Gesamtbreite nicht mehr als 100%)
 */
div.download-list-item-outer-container {
	width: 100%;
}

/**
 * Download-Liste: Block für einen Download
 * (für Alternierung: gerade Nummer, ab 0 gezählt)
 */
div.download-list-item {
	margin: 0 0 25px 0;
}

/**
 * Download-Liste: Block für einen Download
 * (für Alternierung: ungerade Nummer, ab 0 gezählt) 
 * kann auch weggelassen werden, wenn nicht alterniert werden soll
 */
div.download-list-item2 {
	margin: 0 0 25px 0;
}

/**
 * Download-Liste: Download-Titel
 */
h2.download-list-title {
	margin: 0 0 5px 0;
}

/**
 * Download-Liste: Beschreibung des Downloads
 */
.download-list-description {
	margin: 5px 0 0 0;
}

/**
 * Download-Liste: Tabelle für Layout, geht vernünftig nicht anders, wenn man
 * Elemente vertikal zueinander ausrichten möchte
 */
.download-list-table {
	width: 100%;
}

/**
 * Download-Liste: linker Bereich der Tabelle für Titel und Beschreibung
 */
.download-list-td-left {
	vertical-align: top;
	text-align: left;
}

/**
 * Download-Liste: rechter Bereich der Tabelle für Download-Link
 */
.download-list-td-right {
	vertical-align: middle;
	text-align: right;
}

/**
 * Download-Liste: Download-Link
 */
a.download-list-download-link, a.download-list-download-link:link,
a.download-list-download-link:visited, a.download-list-download-link:hover,
a.download-list-download-link:active {
	white-space: nowrap;
}

/**
 * Download-Liste: Text für Dateigröße
 */
.download-list-file-size {
	white-space: nowrap;
	font-size: 11px;
}


