﻿/* ============================================================================== 
   File: print.css
	- Stylesheet for Agent Provocateur 
	- created: 11.MAY.2007
	- amended: 29.AUG.2007, cleanup
	- Author: Daniel Hugentobler
	
	The following blocks exist:
   	- HTML-ELEMENTS		(1 point +)
   	- CLASSES		(10 points +)
   	- PSEUDO-CLASSES 	(10 points +)
   	- NAMED-ELEMENTS	(100 points +)
   ============================================================================== */

@page { 
	size:29.7cm 21cm; 		/* Din A4 */
}

/* -------------
   HTML-ELEMENTS 
   ------------- */
/* initial calibration of all elements */
* { 
	padding: 0;
	border: none;
	margin: 0;
/*	float: none;*/ 			/* TO BE TESTED THOROUGHLY !!! */
}


body {
	color: black;
	background: white;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	orphans: 3; 			/* min. 3 lines BEFORE page-break */
	widow: 3; 			/* min. 3 lines AFTER page-break */
}

h1, 
h2 {
	font-family: verdana, Arial, Helvetica, sans-serif;
}

h1 {
	font-size: 24pt;
	border-bottom: 2pt solid black;
}


h2 {
	font-size: 18pt;
	border-bottom: 2pt solid gray;
	margin-top: 12pt;
}

a {
	color: black;
	text-decoration: none;
}

p {
	margin-top: 10pt;
	margin-bottom: 10pt;
}

ol li {
	list-style:decimal inside; 
	margin-bottom: 10pt;
}

ul li {
	list-style-type: none;
	margin-bottom: 5pt;
}

/* margin for nested lists */
ul ul,
ol ol,
ul ol,
ol ul {
	margin-left: 20pt;
}

strong {
	font-weight: bold;
}

/* --------------
   NAMED-ELEMENTS 
   -------------- */
#wrapper {
	background: transparent;
}

/* -------
   CLASSES
   ------- */
/* don't print these ! */
iframe, 
.skiplink,
.hide,
#navi_main,
#navi_profile,
#toolbar,
#user_toolbar,
#fullscreen_toolbar
 {
	display: none;
}

.icon {
	margin-top: 3pt;
	background: black;
}

a.print_href {
	color: gray;
	background: transparent;
	font-weight: bold;
	text-decoration: underline;
}

/* print only external links' URL (doesn't work for IEx) */
a.print_href[href]:after {
	content: " (URL: "attr(href)" ) "; 
}

/* --------------
   PSEUDO-CLASSES 
   -------------- */


