/* ---- Print style sheet for Chappelsons ---- */

/* Remove unwanted elements */

#primary-nav, #navigation {
	display: none;
}

/* Ensure the content spans the full width */
#wrapper {
	width: 100%; 
	margin: 0; 
}

/* Change text colour to black */


/* Improve colour contrast of links */
a:link, a:visited {
	color: #00F;
	text-decoration: none;
}

/* Add the URL after external links - supported by Firefox, Safari but not IE7*/

a:after { /*root relative links show nothing*/
content:""; 
}

a[href^="http"]:after { /*external links get printed*/
content:" ["attr(href)"]"; 
}
