/*
GENERAL
http://www.reeddesign.co.uk/test/points-pixels.html
http://css-discuss.incutio.com/?page=PrintStylesheets

REFERENCES
See screen.css
*/


/* Global White Space Reset (0) */
* {
	margin: 0;
	padding: 0;
}

body {
	background-color: #FFF;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #333;
}


/* LAYOUT */

#nav1, #nav2, #nav3, #nav4 {
	display: none;
}

#content {
	width: 460px;
}
#footer {
	width: 460px;
	margin-top: 10px;
}

/* HEADERS */

h1, h2, h3, h4 {
	font-family : "Times New Roman", Times, serif;
	font-weight: normal;
}
h1 {
	font-size: 19px;
	line-height: 24px;
	word-spacing: -2px;
	color: #444;
	margin-bottom: 6px;
}
h2, h3 {	
	font-size: 13px;
	line-height: 18px;
	color: #9DB61F; 	
	margin-bottom: 8px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: bold;
}
h3 {
	margin-top: 20px;
	color: #9E9E8A;
	font-size: 12px;
	line-height: 17px;
	margin-bottom: 7px;
}

#logo h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	text-transform: lowercase;
	font-size: 42px;
	font-weight: normal;
	letter-spacing: -1px;
}

/* PARAGRAPHS */

p {
	font-size: 8pt; 
	line-height: 12pt; 
	margin-bottom: 6px;
}
em {
	color: #9DB61F; 
}

hr {
	display: none;
}


/* LISTS */

ol, ul, li {
	list-style-type: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 8pt; 
	line-height: 12pt;
}

#content ul {
	margin-bottom: 20px;
}
#content li {
	list-style-type: disc;
	list-style-image: url(/img/bullet.gif);
	margin-left: 12px;
}
/* Star html Selector Bug (8) */
* html #content li {
	margin-left: 16px;
}

#footer li {
	color: #B2B2B2;
	display: inline;
}
/* Fat Erik 5s Simple Pipe List (5) */
#footer li:before { 
	content: "| "; 
}
#footer li:first-child:before { 
	content: ""; 
}


/* DEFINITION LISTS */
dl {
	font-size: 8pt; 
	line-height: 12pt; 
	margin-bottom: 20px;
}
dt {
	color: #9E9E8A;
	margin-top: 10px;
}
dd {
	margin-left: 20px;
}


/* LINKS */

a:link {color: #007297; text-decoration: underline;}
a:visited {color: #007297; text-decoration: none;}
a:hover {color: #FFF; text-decoration: none;background-color: #007297;}

/* Printed links (9) */
#content a:link:after, #content a:visited:after {
	content: " (" attr(href) ") ";

}
#content a[href^="/"]:after {
	content: " (http://icomos-uk.org" attr(href) ") ";
}
   
/* Could be a nice feature to visually differentiate links */
a[rel="external"]:after{}
a[rel="download"]:after{}

#footer a:link {color: #B2B2B2;	text-decoration: none;}
#footer a:visited {color: #B2B2B2; text-decoration: none;}
#footer a:hover {color: #B2B2B2; text-decoration: underline; background-color: #FFF;}

#banner {
	display: none;
}

/* TABLES */
table {
	margin-top: 20px;
	margin-bottom: 20px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 8pt;
	width: 100%;
}
th {
	font-weight: normal;
	color: #9E9E8A;
}
td {
	vertical-align: top;
	padding: 3px 10px 3px 0;
	border-top: 1px solid #E5E5E5;
}


/* FORMS */
form {
}
select {
	display: none;
}
input, textarea {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 8pt; 
	color: #333;
	border: none;
	border-left: 1px solid #F3F3F3;
	padding: 5px 0 5px 5px;
	width: 434px;  /* content width (460px) - dd margin (20px) - input,textarea border (1px) - input,textarea padding (5px) */
}	
textarea {
	overflow: auto;
}

/* input[type="submit"], input[type="file"] */
.submit, .file {
	width: 100px;
	padding: 0;
	border: 1px solid #F3F3F3;
}
/* input[type="checkbox"] */
.checkbox {
	width: auto;
	border: none;
}
.highlight {
	border: 1px solid #9DB61F;
	width: 50%;
}

/* IMAGES */
img {
	border: 0;
	vertical-align: middle;
}
.img {
	margin-bottom: 20px;
}
.img img {
	background-image: url(/img/bg.gif);
	border-top: 1px solid #9DB61F; 
	border-bottom: 1px solid #9DB61F; 
}

.caption {
	background-color: #9DB61F; 
}
.caption:before {
	content: "Caption: ";
}