/*
contents

	1. Defaults
	2. Structure
	3. Links and navigation
	4. Fonts
	5. Images
	6. Hacks

Notes

*/


/* =Defaults
-----------------------------------------------------------------------------*/
		
/* link underlines tend to make hypertext less readable, 
   because underlines obscure the shapes of the lower halves of words */
a:link, a:visited {
	text-decoration:none;
}

/* no list-markers by default, since lists are used more often for semantics */
ul,ol {
	list-style:none;
}

/* avoid browser default inconsistent heading font-sizes */
/* and pre/code too */
h1,h2,h3,h4,h5,h6,pre,code {
	font-size:1em;
}

/* remove the inconsistent (among browsers) default margin and padding */
* {
	margin: 0;
	padding: 0;
	font-weight:normal;
}

/* whoever thought blue linked image borders were a good idea? */
a img,:link img,:visited img {
	border:none
}

/* de-italicize address */
address {
	font-style:normal
}

/* more varnish stripping as necessary... */
		
/* =Structure
-----------------------------------------------------------------------------*/

body {
}

#wrapper {
	width: 744px;
	margin:  0 auto;
	padding:0 8px;
	text-align: left;
	background: url(../images/oneColCentre.jpg) repeat-y;
}

#logo {
	background: url(../images/logo.jpg);
	width: 100%;
	height: 84px;
}
		
div#banner {
	background: url(../images/banner.jpg);
	width: 100%;
	height: 193px;
}

ul#navigation {
	float: left;
	width: 744px;
	background-color: #af4694;
}

ul#navigation li {
	float: left;
}

ul#navigation a {
	display: block;
	background-color: #af4694;
	text-align: center;
/*	width: 106px;*/
	padding: 10px 0px;
/*	padding: 10px 17px;*/
}

ul#navigation a:hover {
	background-color: #15acab;
}

div#content {
	padding: 20px 20px 20px 20px;
	background: url(../images/jigsaw.png) no-repeat bottom right;
}

div#primaryContent {
	float: left;
}

div#secondaryContent {
	float: left;
}

h1 {
	padding: 10px 0;
}

.bulletList {
	padding-left: 20px;
	padding-bottom: 10px;
	list-style: disc outside;
}

.subList {
	padding-left: 10px;
	list-style: disc outside;
}

p {
	margin-bottom: 10px;
}

div#footer {
	width: 744px;
	background-color: #af4694;
}

#copyright {
	float: left;
	padding: 10px;
}

#alternateLinks {
	float: right;
	padding: 10px;
}

.separator {
	clear: both;
	height: 0;
}

/* =Links and Navigation
-----------------------------------------------------------------------------*/

#home {
	width: 60px;
}

#services {
	width: 77px;
}

#assessment {
	width: 105px;
}

#case {
	width: 148px;
}

#expert {
	width: 125px;
}

#contact {
	width: 98px;
}

#about {
	width: 84px;
}

#faq {
	width: 47px;
}

a {
	color: #15acab;
}

#footer a {
	color: white;
}
		
a:hover {
}

ul#navigation {
}

ul#navigation a {
}

ul#navigation li {
}
		
/* =Fonts
-----------------------------------------------------------------------------*/

body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #6b6b6b;
}

ul#navigation a {
	font-size: 14px;
	color: white;
}

strong {
	color: #AF4694;
}

#alert {
	display: block;
	text-align: center;
	color: red;
	padding: 10px 0;
}

.bulletList {
	color: #AF4694;
}

h1, h2, h3, h4, p, ul {
}

h1 {
	font-size: 20px;
	color: #15acab;
}

h2, h2 a {
	font-weight: bold;
	padding: 10px 0;
}

h3 {
}
		
h4 {
}

p {
}

ul {
}

div#footer {
	font-size: 12px;
	color: white;
}

/* =Images
-----------------------------------------------------------------------------*/

img {
	float: left;
	padding: 10px;
}
		
/* =Hacks
-----------------------------------------------------------------------------*/

body { /* IE 5 centring bug fix */
	text-align: center;
}