/*
	File: cssLoader.css
	Created: 04/12/07
	Created by: Mike '1312' Byrne
	Version: 1.00
	
	This loads in the other CSS documents required for the site. The order of some of these *IS* important.
	
	10/32
*/

/* core */
@import url("/stylesheets/reset.css");
@import url("/stylesheets/application.css");
/* modules */
@import url("/stylesheets/modules/listings.css");
@import url("/stylesheets/modules/pagination.css");
@import url("/stylesheets/modules/article.css");
@import url("/stylesheets/modules/forms.css");
/* pages */
@import url("/stylesheets/pages/loginPasswords.css");
@import url("/stylesheets/pages/home.css");
@import url("/stylesheets/pages/contact.css");
@import url("/stylesheets/pages/about.css");
@import url("/stylesheets/pages/discussions.css");


/* ie6 !ftw */

body {
	_padding-top: 21px;
}
div#ie6 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	background-color: #ffc;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	padding: 5px 0;
}
	div#ie6 p {
		display: block;
		color: #333;
		font-size: 11px;
		margin: 0;
	}
		div#ie6 p strong {
			color: #000;
			font-weight: normal;
		}
		div#ie6 p a {
			color: #000;
			text-decoration: underline;
		}
			div#ie6 p a:hover {
				color: #666;
			}
