/*
	Title:  Master CSS for archive.vector.org.uk, media: projection, screen
	Author:	sjt@5jt.com
	Notes:  See "Handcrafted CSS" by Dan Cederholm, esp. Ch.5
*/


/* import stylesheets and hide from IE/Mac \*/

 @import url("reset.css");
 @import url("master.css");
 @import url("article.css");
 @import url("ie.css");

/************************************************
MUST be at the end of the CSS file - when IE fails
on a font-face statement, it sometimes (not always)
ignores the rest of the CSS file!
*/

/* Try IE first, see above: */

@font-face {
    font-family: 'APLFont1';
    src: url("http://vector.org.uk/apl385.eot");
}

/* Now try local but embed in the end */
/* IE will fail on this for two reasons: */
/* 1. It cannot handle TTF fonts */
/* 2. It does not understand "local" */

@font-face {
	font-family: 'APLFont2';
	src:
	local("APL385 Unicode"),
	local("APLX Upright"),
	local("Courier APL2 Unicode"),
	local("SImPL"),
	local("SiMPL medium"),
	url("http://archive.vector.org.uk/resource/apl385.ttf") format("truetype");
}

/* end import/hide */

