@import "layout.css";
@import "forms.css";
@import "navigation.css";
@import "components.css";
@import "thickbox.css";

/* 
	Title:	David Lawrence screen styles
	Author: bluearcgroup.com
*/

/****************************************************************************************	
	[RESET]
*****************************************************************************************/

/* Eric Meyer's Reset Rules */
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,
table, caption, tbody, tfoot, thead, tr {
	margin: 0;
	padding: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
}
th, td {
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
}
html, body, fieldset, a img {border: 0;}
ul, ol {list-style: none;}
blockquote:before, blockquote:after,
q:before, q:after {content: "";}
blockquote, q {quotes: "" "";}

/****************************************************************************************	
	[GENERAL SELECTORS]
*****************************************************************************************/
body {
	color: #fff;
	background-color: #000;
	font: 0.75em/1.4 Helvetica, Arial, Verdana, sans-serif;
	padding: 40px 0;
}
a:link, a:visited {color: #fff; text-decoration: none;}
a:hover {text-decoration: none; color: #b2b4b6;} /* used to be #6d6f71 */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
table caption {
	text-align: left;
	font-weight: bold;
	font-size: 1.2em;
	padding-bottom: 0.40em;
}
strong {font-weight: bold;}
em {font-style: italic;}
blockquote {margin: 0 12px;} 
h1 {
	color: #000;
	font-size: 19px;
	margin: 24px 0 1em;	
	text-transform: uppercase;
}
h1.list {
	margin-left: 16px;	
}
h2 {
	font-size: 15px;
	color: #000;
	margin-bottom: 0.60em;
	text-transform: uppercase;
}
body.item-detail h2 {margin-bottom: 15px;}
h3, h4, h5, h6 {
	font-size:1.3em;
	font-weight: bold;
	color: #000;
	margin-bottom: 0.40em;
	text-transform: uppercase;
}
h4, h5, h6 {
	font-size: 12px;
	color: #000; 
	text-transform: none;
}
/* Over-ride dodgy font tag rules for CMS */
font {
	font-family: Helvetica, Arial, Verdana, sans-serif !important; 
	font-size: 100% !important;
	color: #000 !important;
}

/* [CONTENT AREA]
-------------------------------------------------------*/
/* Set font size to 11px if required */
div.main-content {font-size: 11px;}
/* Spacing */
div.main-content p, div.main-content ul,
div.main-content ol, div.main-content dl,
div.main-content table {margin-bottom: 1.5em;}
div.main-content .feedback p {margin-bottom: .7em;}
.wide div.main-content table {margin-bottom: 0;}
div.main-content table table {margin: 0;}
div.main-content p + ul,
div.main-content p + ol {margin-top: -1em;}
/* Lists */
div.main-content ul,
div.main-content ol {margin-left: 2px;}
div.main-content ul li {
	padding-left: 11px;
	background: url("../images/template/bullet.gif") no-repeat 0 7px;
}
div.main-content ol {list-style: lower-alpha;}
div.main-content ol li {margin-left: 22px;}
div.main-content ul ul, 
div.main-content ol ol {margin: 0.4em 0;}
div.main-content .steps ol {
	background: #E4E4E4;
	list-style: none;	
	margin: 0;
	overflow: hidden;
	width: 950px;
}
	div.main-content .steps ol li {
		background: #E4E4E4;
		display: block;
		font-size: 1.25em;
		font-weight: bold;
		float: left;
		margin: 0;	
		padding: 7px 10px;
		text-transform: uppercase;
		width: 296px;
	}
		div.main-content .steps ol li.active {background-color: #BBB;}

/****************************************************************************************
	[COMMONLY USED CLASSES]
*****************************************************************************************/

/* [HIDE]
-------------------------------------------------------*/
.hide {
	position: absolute !important;
	left: -9999em;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.hide-fully {display: none;}
/* hide .NET junk */
div.hide-dotnet {
	height: 0;
	font-size: 0;
}

/* [EASY CLEARING]
-------------------------------------------------------*/
.clearfix:after, #header:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

/* [DOWNLOADS]
-------------------------------------------------------*/
/* Single downloads */
div.main-content a.dnld {
	padding: 2px 0 2px 19px;
	background-repeat: no-repeat;
	background-position: 0 50%;
}
	/* BG Images (icons) */
	div.main-content a.dnld.pdf {background-image: url("../images/icons/pdf.gif");}

/* [NOTIFICATIONS]
-------------------------------------------------------*/
div#errors,
div.errors,
div#success,
div.success {
	padding: 0.6em 0.8em 0.6em 3em; 
	margin-bottom: 1.5em; 
}
	div#errors,
	div.errors {
		background: #e8e6e4 url("../images/icons/error2.gif") no-repeat 10px 9px; 
		min-height: 20px;
	}
	div#success,
	div.success {
		background: #e8e6e4 url("../images/icons/success.gif") no-repeat 10px 10px; 
		min-height: 20px;
	}
	div#errors p,
	div.errors p,
	div#success p,
	div.success p {margin: 0; color: #666;padding-top: 3px;}
	div#errors ul,
	div.errors ul,
	div#success ul,
	div.success ul {
		margin-top: 0.40em !important;
		margin-bottom: 0;
		color: #666;
		font-size: 11px;
		margin-left: 15px;
	}
	div#errors li,
	div.errors li,
	div#success li,
	div.success li {padding: 3px 0;}
	div#errors a,
	div.errors a,
	div#success a,
	div.success a { font-weight: bold; margin: 0 5px; color: #666; }

/* Simple Error Msg */
.error {
	background: url("../images/icons/error2.gif") no-repeat 0 40%;
	padding-left: 20px; 
}
	
		/* Date Picker */
		.datepicker .ajax__calendar_container {
			border: 3px solid #333;
			background-color: #5a4839;
			color: #fff;
			z-index: 600;
		}
		.datepicker .ajax__calendar_hover .ajax__calendar_day,
		.datepicker .ajax__calendar_hover .ajax__calendar_month,
		.datepicker .ajax__calendar_hover .ajax__calendar_year {color: #333;}
		.datepicker .ajax__calendar_active .ajax__calendar_day,
		.datepicker .ajax__calendar_active .ajax__calendar_month,
		.datepicker .ajax__calendar_active .ajax__calendar_year {
			color: black;
			font-weight: bold;
		}




