@import "layout.css";
@import "nav.css";
@import "licence_form.css";
@import "forms.css";

/* 
	Title:	PPCA screen styles
	Author: craig.henneberry@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: Arial, Helvetica, sans-serif !important; 
	font-size: 100% !important;
	color: #222b32 !important;
}
/* -------------//Reset everything */

body {
	color: #666;
	background-color: #fff;
	margin-bottom: 30px;
	font: 0.75em/1.2 Arial, Helvetica, sans-serif;
	background: url("../images/css/body-bg.gif") repeat-x 0 0;
}
a:link, a:visited {
	color: #690;
	text-decoration: none;
}
a:active, a:focus, a:hover {
	text-decoration: underline;
	color: #9c3;
}
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;
}
abbr {
	cursor: help;
	border-bottom: 1px dotted #000;
}
code {
	font-family: "Andale Mono", "Courier New", Courier, monospace;
	color: #CC9900;
}
dfn {font-weight: bold;}
del {color: #666;}
strong {font-weight: bold;}
em {font-style: italic;}
blockquote {margin: 0 12px;} 
h1, h2, h3, h4, h5, h6 {
	font-size: 1.1em;
	font-weight: bold;
	color: #000;
	margin-bottom: 1.2em;
	line-height: 1.2;
}
h1 {text-transform: uppercase;}
h2 {font-size: 1.05em;}
body.home h2 {font-size: 0.95em;}
h3 {font-size: 0.95em;}
	body.home h3 {color: #669900;}
h4, h5, h6 {
	font-size: 0.94em;
	color: #666;
	margin-bottom: 0.30em;
}

/* [MAIN CONTENT AREA]
-------------------------------------------------------*/
/* Set font size to 11px if required */
.main-content {font-size: 0.95em;}
/* Spacing */
.main-content p, .main-content ul,
.main-content ol, .main-content dl,
.main-content table {margin-bottom: 1.2em;}
.main-content table table,
.main-content fieldset table {margin: 0;}
/* Lists */
.main-content ul {
	list-style: disc;
	margin-left: 32px;
}
.main-content ul ul {list-style: circle;}
.main-content ol {
	list-style: decimal;
	margin-left: 42px;
}
.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.40em 0 0.40em 10px;}
.main-content dl dt {font-weight: bold;}

/****************************************************************************************
	[COMMONLY USED CLASSES]
*****************************************************************************************/

/* [HIDE]
-------------------------------------------------------*/
.hide,
table caption span,
form legend span {
	position: absolute;
	left: -999em;
}
.hide-fully {display: none;}
/* hide .NET junk */
div.hide-dotnet {
	height: 0;
	font-size: 0;
}

/* [EASY CLEARING]
-------------------------------------------------------*/
.clearfix:after {
      content: ".";
      display: block;
      height: 0;
      clear: both;
      visibility: hidden;
}
.clearfix {display: inline-block;}    
/* Hides from IE-mac \*/  
* html .clearfix {height: 1%;}  
.clearfix {display: block;}  
/* End hide from IE-mac */

/* [FEEDBACK]
-------------------------------------------------------*/

/* Large */
div.errors,
div.success {
	padding: 1.3em 20px 1.3em 62px; 
	margin-bottom: 1.83em; 
	border-top: 2px solid #BF0000;
	border-bottom: 2px solid #BF0000;
	color: #AE0000;
	min-height: 24px;
}
	div.errors {background: #F7D9D9 url("../images/icons/error-lrge.gif") no-repeat 16px 12px;}
	div.success {
		background: #F3F8E6 url("../images/icons/success-lrge.gif") no-repeat 16px 12px; 
		color: #66840D; 
		border-color: #84AA0F;
		font-weight: bold;
	}
	.main-content div.errors p,
	.main-content div.success p {margin: 0;}
	.main-content div.errors p {font-weight: bold;}
	.main-content div.errors ul,
	.main-content div.success ul {
		margin: 0.60em 0 0 2.6em;
		list-style: disc;
	}
	.main-content div.errors a:link,
	.main-content div.errors a:visited {
		color: #AE0000;
		text-decoration: underline;
	}
	.main-content div.errors a:hover,
	.main-content div.errors a:focus {text-decoration: none;}
	.main-content div.success a:link,
	.main-content div.success a:visited {color: #66840D;}

