/* schandera.de
 * 
 * global language-independend primitive styles
 *
 * contains global re-definitions of default style rules 
 * of primitive html-elements, not reflecting any particular
 * layout.
 */





/* document background and margins
 */
body {
	background-color: rgb(255,255,255);
	margin: 0px;
	padding: 0px; }



/* non-underline anchor (link) element defintion 
 */
a {
	text-decoration: none; }



/* non-bordered images inside anchors
 */
img {
	border-style: none;
	border-width: 0px; }



/* re-define div to be displayed relative instead 
 * of static.
 */
div {
	position: relative; }
