﻿/* ============================================================================== 
   File: print.css
	- Stylesheet for Agent Provocateur 
	- created: 11.MAY.2007
	- 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;
	clear: both;
}

body {
	color: black;
	background: white;
	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;
}


h2 {
	font-size: 18pt;
}

a {
	color: black;
	text-decoration: none;
}

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;
}

label {
	width: 25%;
}

/* table layout							 */
/* ------------------------------------------------------------- */
table {
	color: black;
	background-color: white;
	font-size: 11pt;
}

th, 
td
 {
	padding-top: 2pt;
	padding-bottom: 2pt;
	padding-left: 5pt;
	padding-right: 5pt;
	vertical-align: middle,
}

th {
	text-align: center;			/* dft */
	border: 1pt solid black;
}

td {
	text-align: left;			/* dft */
	border: 1pt solid silver;
}

td.center {
	text-align: center;
}

th.right,
td.right {
	text-align: right;
}

th.left {
	text-align: left;
}

th.buffer,
td.buffer {
	padding-right: 15pt;
}

/* merge cells: erase border-color with table's background color */
/* ------------------------------------------------------------- */
td.merge_center,
td.merge_leftmost {
	border-right: 1pt solid white;
}
td.merge_center, 
td.merge_rightmost {
	border-left: 1pt solid white;
}
th.merge_center,
th.merge_leftmost {
	border-right: 2pt solid white;
}
th.merge_center, 
th.merge_rightmost {
	border-left: 2pt solid white;
}


/* --------------
   NAMED-ELEMENTS 
   -------------- */
#wrapper {
	background: transparent;
}

/* -------
   CLASSES
   ------- */
.buffer {
	margin: 10pt; 
}

.buffer_side {
	margin-right: 10pt;
	margin-left: 10pt;
}

/* don't print these ! */
iframe, 
.skiplink,
.hide,
#navi_main,
#navi_profile,
#navi_language,
#toolbar,
#user_toolbar,
#fullscreen_toolbar
 {
	display: none;
}

a.print_href {
	color: gray;
	background: transparent;
	font-weight: bold;
	text-decoration: underline;
}

/* print only external links' URL */
a.print_href[href]:after {
	content: " (URL: "attr(href)" ) ";
	font-size: 90%;
}

.icon {
	background: black;
	margin-top: 3pt;
}

.flag {
	height: 20px;
}

/* --------------
   PSEUDO-CLASSES 
   -------------- */
