@charset "UTF-8"; 

/* GLOBAL CSS (must be the first CSS) */ 
/* ================================ */ 
/* Do not change the position of the top line !!! */ 

/* INFO: POSSIBLE COLORS */ 
/* ======================== */ 
/* Colors (RGB) = black, gray, silver, white; blue, lime, aqua, red, maroon,fuchsia/magenta, yellow */ 
/* Colors (RGB) # = bcb3ac; c9ac80; ccaa80; db8; ec9; fda; fdc; feb; fec; */ 

@media all { /* All Media */ 
/* ========================== */ 
.blind {position:absolute; top:-10000px; left:-10000px; font-size:0px; } 

/* STANDARD LINK DEFINITIONS */ 
/* ============================== */ 
a:link {text-decoration:underline; color:blue; } 
a:visited {text-decoration:underline; color:blue; } 
a:focus {text-decoration:underline; color:red; } 
a:hover {text-decoration:underline; color:red; } 
a:active {text-decoration:underline; color:red; } 
} 

@media handheld, tty, tv, braille, embossed, aural { /* PDA, Teleprinter/Textbrowser, Television, Braille-Line, Braille-Printer, Speech */ 
/* ========================================================================================================================================== */ 
} 

@media print { /* Printer */ 
/* ========================== */ 
body {margin-left:0.5cm; margin-right:0.5cm; } 
.noprint {position:absolute; top:-10000px; left:-10000px; font-size:0px; } 
.break {page-break-before:always; }
} 

@media screen, projection { /* Screen, Beamer */ 
/* =================================================== */ 
.noshow {position:absolute; top:-10000px; left:-10000px; font-size:0px; } 
} 

