/* seiten layouts */

/* 2 spaltig: links + normal (layout 1) */
body.layout1 {
}

body.layout1 #col1 {
}
body.layout1 #col2 {
	width: 74.5%;
	border-right-width: 0;
}
body.layout1 #col3 {
	display: none;
}

/* 2 spaltig: normal + rechts (layout 2) */
body.layout2 {
}

body.layout2 #col1 {
	display: none;
}
body.layout2 #col2 {
	width: 74.5%;
	border-left-width: 0;
}
body.layout2 #col3 {
}

/* 1 spaltig (layout 3) */
body.layout3 {
}

body.layout3 #col1 {
	display: none;
}
body.layout3 #col2 {
	width: 100%;
	border-width: 0;
}
body.layout3 #col3 {
	display: none;
}

