@import "layout.css";
@import "forms.css";
@import "nav.css";

/* 
	Title:	Club Swans screen styles
	Author: chris.pearce@bluearcgroup.com
*/

/****************************************************************************************	
	[GENERAL SELECTORS]
*****************************************************************************************/

/* -------------Reset everything */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, tbody, tfoot, thead, tr {
	margin: 0;
	padding: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
}
table, th, td {
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
}
html, body, form, fieldset, a img {border: 0;}
ul, ol {list-style: none;}
blockquote:before, blockquote:after,
q:before, q:after {content: "";}
blockquote, q {quotes: "" "";}
/* Over-ride those pesky font tags */
font {
	font-family: "Trebuchet MS", Tahoma, Helvetica, Arial, sans-serif !important; 
	font-size: 100% !important;
	color: #000 !important;
}
/* -------------//Reset everything */
html {
	height: 100%; 
	margin-bottom: 1px;
}
body {
	color: #000;
	background: #7A0901 url("../images/css/body-bg.jpg") repeat-y fixed center center;
	font: 0.75em/1.4 "Trebuchet MS", Tahoma, Helvetica, Arial, sans-serif;
}
a:link, a:visited {
	color: #ef1c25;
	text-decoration: none;
}
a:focus, a:hover {text-decoration: underline;}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
table th {
	text-align: left;
	font-weight: normal;
}
table caption {
	font-weight: bold;
	font-size: 1.20em;
	padding-bottom: 0.40em;
	text-align: left;
}
strong {font-weight: bold;}
em {font-style: italic;}
blockquote {margin: 0 12px;} 
h1, h2, h3, h4, h5, h6 {
	font-size: 2em;
	font-weight: bold;
	color: #eb1c22;
	margin-bottom: 0.60em;
	text-transform: uppercase;
}
h2, h3, h4, h5, h6 {
	font-size: 1.1em;
	color: #ed1b24;
	margin-bottom: 0.40em;
}
h3, h4, h5, h6 {text-transform: none;}
h4, h5, h6 {color: #000;}

/* [MAIN CONTENT AREA]
-------------------------------------------------------*/
/* Spacing */
#main-content p, #main-content ul,
#main-content ol, #main-content dl,
#main-content table {margin-bottom: 1.5em;}
#main-content table table,
#main-content fieldset table {margin: 0;}
/* Lists */
#main-content ul li {
	margin-bottom: 0.25em;
	background: url("../images/css/bullet.gif") no-repeat 0 5px;
	padding-left: 10px;
}
#main-content ol {
	list-style: decimal;
	margin-left: 22px;
}
#main-content ol ol {list-style: lower-alpha;}
#main-content ol ol ol {list-style: lower-roman;}
#main-content ul ul, 
#main-content ol ol {margin: 0.60em 0 0.60em 10px;}
#main-content dl dt {font-weight: bold;}

/****************************************************************************************
	[COMMONLY USED CLASSES]
*****************************************************************************************/

/* [HIDE]
-------------------------------------------------------*/
.hide,
form legend span {
	position: absolute;
	left: -999em;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.hide-fully {display: none;}

/* [EASY CLEARING]
-------------------------------------------------------*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

/* [BACK LINK]
-------------------------------------------------------*/
#main-content a.back {
    background: url("../images/css/back-arrow.gif") no-repeat 0 45%;
    padding-left: 11px; 
}

/* [NOTIFICATIONS]
-------------------------------------------------------*/
#main-content div.errors,
#main-content div.success {
	padding: 11px 20px 11px 52px; 
	margin-bottom: 1.5em; 
	border-top: 2px solid #BF0000;
	border-bottom: 2px solid #BF0000;
	color: #AE0000;
}
	#main-content div.errors {
		background: #F7D9D9 url("../images/icons/error-lrge.png") no-repeat 9px 8px; 
		min-height: 25px; 
	}
	#main-content div.success {
		background: #F3F8E6 url("../images/icons/success-lrge2.gif") no-repeat 12px 10px; 
		color: #66840D; 
		border-color: #84AA0F;
		min-height: 24px;
	}
	#main-content div.errors p,
	#main-content div.success p {
		margin: 0;
		font-size: 1.1em;
	}
	#main-content div.errors ul,
	#main-content div.success ul {
		margin: 0.40em 0 0 30px;
		list-style: disc;
	}
		#main-content div.errors ul li,
		#main-content div.success ul li {
			padding: 0;
			background: none;
		}
	#main-content div.errors a {color: #AE0000;}
	#main-content div.success a {color: #66840D;}

/* Simple Error Msg */
#main-content .error {
	color: #C50707;
	background: #FFDFDD url("../images/icons/error3.gif") no-repeat 8px 50%;
	padding: 5px 10px 5px 30px; 
}

