/* Master stylesheet */
/*
With this method, no selectors can precede the @import statements
This method allows for mixing and matching stylesheets when using a styleswitcher function
@import method hides styles from very early browsers - NN4, IE3, IE4 (Mac and Win)
*/

/* Initialise default styling */
@import url("initial.css");

/* Now, call in via @import the font, colour and layout stylesheets */
@import url("fonts/fonts.css");
@import url("colour/colour.css");
@import url("layout/layout.css");

/* Next, call in the stylesheets to fix IE */
@import: url("fonts/ie-fonts.css");
@import: url("layout/ie-only.css");
/* Only IE/Mac sees this stylesheet */
/*\*//*/@import "layout/ieMac-layout.css";/**/

/* Only IE5.x Win sees this type of stylesheet import */
@media tty{i{content:"\";/*" "*/}} @import 'fonts/ie5-fonts.css'; /*";}}/* */

/* Finally, write out the print selectors */
@media print{
/* General ---------------------------- */
html{width:100%;}

body{
margin:0;
padding:0;
font-family:"Times New Roman", Times, serif;
font-size:12pt;
line-height:16pt;
background-color:#fff;
color:#000;
}

/* expand out abbreviations */
#content abbr[title]:after, acronym[title]:after 
{content:"(" attr(title) ")"; background-color:#fff; color:#000;}

/* Images ----------------------------- */
img{
display:block;
border:0;
}

/* Layout ----------------------------- */
#page{width:auto !important;}


/* Suppressed divs for printing ------- */
.skipLink,#breadcrumb,#globalNav,#categories,#secContent,
#siteInfo,#international{display:none !important;}

/* Headers ---------------------------- */
h1,h2,h3{
font-weight:bold;
background-color:#fff;
color:#000;
}

h2{font-size:16pt;}
h2{font-size:14pt;}
h3{font-size:12pt;}

/* Links ------------------------------ */
a:link, a:visited{
text-decoration:underline;
font-weight:bold;
background-color:#fff;
color:#000;
}

/* reveal link URLs - or use the neater http://alistapart.textdrive.com/articles/improvingprint */
#content a:link:after, #content a:visited:after
{content:" ("attr(href)")"; font-size:11pt; background-color:#fff; color:#000;}
a img{border-width:0;}
}/* end print styles */

