﻿/* aus http://www.ohne-css.gehts-gar.net/0071.php */
/*--Formatierung der Box--*/
#bgalerie {
width: 700px;
height: 600px;
/*background: #eee url(attachments/Galerie/Hus%20MALE/X-HusMALE-aussen-01.jpg) 0 40px no-repeat;*/
border: 0px solid #aaa;
margin: 10px auto;
margin-left: 26px;
}

/*--Formatierung der Linkleiste--*/
.bg_husmale {
padding: 0;
margin: 10px 0 0 0;
list-style-type: none;
position: relative;
width: 330px;
} 

/*--Horizontale Anordnung der Listeneinträge--*/
.bg_husmale li {
float: left;
}

/*--Formatierung der Link-Buttons--*/
.bg_husmale li a, .bg_husmale li a:visited {
/*
font-size: 11px;
display: block;
text-decoration: none;
color: #000;
background: #fff;
text-align: center;
height: 26px;
line-height: 24px;
border: 1px solid #444;
*/
margin: 1px;
}

/*--Hover-Formatierung der Link-Buttons--*/
.bg_husmale li a:hover {
background: #ddd;
}

/*active und focus-Formatierung der Link-Buttons*/
.bg_husmale li a:active, .bg_husmale li a:focus {
background: #444;
color: #fff;
} 

/*-- Blendet die Bilder aus--*/
.bg_husmale li a img {
visibility: hidden;
border: 0;
} 

.bg_husmale li img.small_hoch {
border:1px solid #000;
width: 80px;
visibility: visible;
} 

.bg_husmale li img.small_quer {
border:1px solid #000;
height: 80px;
visibility: visible;
} 

/*--Positionierung der Querformat-Bilder--*/
.bg_husmale li a img.quer {
position: absolute;
top: -260px;
left: 0;
width: 300px;
border-left: 10px solid #eee;
} 

/*--Positionierung der Hochformat-Bilder*/
.bg_husmale li a img.hoch {
position: absolute;
top: -310px;
left: 0;
height: 300px;
border-left: 60px solid #eee;
border-right: 60px solid #eee;
} 

/*--Einblenden der Bilder im active/focus-Zustand--*/
.bg_husmale li a:active img, .bg_husmale li a:focus img {
visibility: visible;
} 


