/*
	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.
	
	21/32
*/

/* core */
@import url("../stylesheets/common.css");
@import url("../stylesheets/application.css");


/* site wide */
@import url("../stylesheets/modules/lists.css");
@import url("../stylesheets/modules/comments.css");
@import url("../stylesheets/modules/detail.css");
@import url("../stylesheets/modules/listing.css");
@import url("../stylesheets/modules/paginator.css");
@import url("../stylesheets/modules/poll.css");
@import url("../stylesheets/modules/uniform.css");
@import url("../stylesheets/modules/mediaelementplayer.css");
@import url("../stylesheets/modules/forms.css");
/* pages */
@import url("../stylesheets/pages/home.css");
@import url("../stylesheets/pages/resources.css");
@import url("../stylesheets/pages/about.css");
@import url("../stylesheets/pages/event.css");
@import url("../stylesheets/pages/conferences.css");
@import url("../stylesheets/pages/membership.css");
@import url("../stylesheets/pages/join.css");
@import url("../stylesheets/pages/programs.css");
@import url("../stylesheets/pages/membersonly.css");
@import url("../stylesheets/pages/feeds.css");
@import url("../stylesheets/pages/fm-series.css");

/* device specific styles */
@import url("../stylesheets/mobile.css");


/* ie6 !ftw */

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;
	text-align: left;
}
	div#ie6 p {
		display: block;
		color: #333;
		font-size: 11px;
		margin: 0;
		padding: 0 10px;
	}
		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;
			}