@charset "UTF-8";
@import "reset.css";
@import "forms.css";

/* 
 
 Valid imports with media queries that IE6 and IE7 doesn't understand.
 
 */
@import "screen.css" screen, projection, tv;
@import "print.css" print;

/* 
 
 Invalid imports inside media queries for IE6 and IE7.
 http://www.w3.org/TR/CSS2/syndata.html#at-rules
 
 */
@media screen, projection, tv {
	@import "screen.css";
	@import "screen.ie.css";
}
@media print {
	@import "print.css";
}

/*
 
 Include any @font-face rules below and drop them in the css folder.
 
 */
/*
 
@font-face {
	font-family: "Font Name";
	src: url("filename.ttf") format("truetype");
}
@font-face {
	font-family: "Font Name IE";
	font-style: normal;
	font-weight: normal;
	src: url("filename.eot");
}
 
 */