/* GERGMAN_Fliud.css */

/* With a font-size of 100%, all the elements in our page are sized relative to the browser’s default type size, which in most cases is 16px. */


/* target ÷ context = result */
/* Fonts: divide the target value (24px) by the font-size of its container (16px) */
/* This grid design is 960px total */
/* 940px is the width of the context. 10px margin on left and right. */

nav ul {
	width : 80% /* 896 */; 
}

nav li {
	margin-right : 2.67% /* 24 / 896 = .0267 */; 
}


.content > .col {
	float : left;
	width : 28.12% /* 252 / 896 = .2625 */;
	margin-right : 7.81% /* 70 / 896 = .0781 */; 
}


/* within the content class the last col class flowts right with no right margin */
.content > .col:last-of-type {
	float : right;
	margin-right : 0; 
}


.blockquote img {
	float : left;
	width : 48px;
	margin-right : 12px;
	/* border : 6px solid rgb(0,0,0); */
	/* border : 6px solid rgb(255,255,255); */ 
}

.blockquote blockquote {
	margin-left : 72px;
}



/* IE-6 fix for resize freez if needed : http://www.cameronmoll.com/archives/000892.html */
/* #container, #footer { width: expression(document.body.clientWidth < 742? "740px" : document.body.clientWidth > 1202? "1200px" : "auto"); } */