/*
Title:      	Accidents Happen general styles for screen media
Author:     	Birks at WNSWT www.wnswt.com
Created:		October 2009
Version:    	0.1
Notes:    		

Colours
-------
#66b6da		For links
#ff7a3d		a:active
#0085c2		<h1> Main Blue
#000		<h2>
			<h3>
			For body text
			For the Menu
#7fc2e0		Very light blue

*/

html {
	font-size: 100.01% /* This compensates for several browser bugs.. */
}
body {
	margin-left: 1px; /* --[ margin-left 1px for IE to solve the mis-alignment ]-- */
	padding-bottom: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 62.5%;
	text-align: center;
	line-height: 1.5em;
	color: #545454;
	background-color: #fff;
	}

html>body {margin:0} /* Resets the margin for non IE browsers */

div {
	text-align: left;
}

/* --[ links ]------------------------------- */

a {
	text-decoration: none;
	}

a:link {
	color: #66b6da;
	}
div#contentPanel a:link,
div#contentPanel a:visited {
	border-bottom: 1px dotted #aaa;
	}
a:visited {
	color: #994925;
	}
a:hover {
	text-decoration: underline;
	color: #ff7a3d;
	}
div#contentPanel a:hover {
	text-decoration: none;
	border-bottom: 1px solid #ff7a3d;
	}
a:active {
	color: #b3562b;
	}

/* --[ common elements ]--------------------- */

p {
	margin-bottom: 1em;
	font-size: 1.3em;
	line-height: 1.6em;
	}

h1, h2, h3, h4, h5  {
	margin-bottom: 0.8em;
	text-align: left;
	line-height: 1.2em;
	}

h1 {
	font-size: 2em;
	margin-top: -0.2em;
	margin-bottom: 0.5em;
	padding-bottom: 0.25em;
	color: #0085c2;
	font-weight: normal;
}

h2 {
	font-size: 1.8em;
	color: #0085c2;
	font-weight: normal;
	}
h3 {
	margin-top: 1em;
	font-size: 170%;
	color: #0085c2;
	font-weight: bold;
	}

h4 {
	margin-top: 1.1em;
	font-size: 150%;
	color: #606060;
	}

h5 {
	margin-top: 1.2em;
	font-size: 150%;
	font-weight: normal;
	color: #0085c2;
	}

strong {
	font-weight: bold;
}	
em {
	font-style: italic;
}
.details {
	font-size: 0.8em;
	color: #999;
	font-style: normal;
}
.small {
	font-size: 0.85em;
	font-style: normal;
	color: #999;
}

img.right {
	float: right;
	margin: 0 0 10px 10px;
}
img.swift  {
	margin-top: -30px;
}

/* --[ elaborate lists ]------------------------------- */

ul {
	list-style-type: none;
	font-size: 1.3em;
	margin-bottom: 1.3em;
}
ol {
	list-style: decimal;
	font-size: 1.3em;
	margin-bottom: 1.3em;
}

ul li {
	margin-bottom: 1em;
	margin-left: 7px;
	padding-left: 23px;
	background-image: url(Images/bullet.gif);
	background-repeat: no-repeat;
	background-position: left 2px;
}
ol li {
	margin-bottom: 1em;
	margin-left: 30px;
}

/* sub lists */

ol ul,
ul ul {
	margin-top: 1em;
	margin-left: 35px;
	list-style-type: disc;
	font-size: 0.9em;
}
ol ul {
	margin-left: 12px;
}

ol ul li,
ul ul li,
ul ol li {
	padding-left: 0;
	background-image: none;
}

ol ol,
ul ol {
	margin-top: 1em;
	font-size: 0.9em;
	margin-left: 12px;
}

/* sub sub lists */

ol ul ul,
ul ul ul,
ol ol ul,
ul ol ul {
	list-style-type: circle;
	font-size: 1em;
}
ul ul ol,
ol ol ol {
	font-size: 1em;
}

ul.end,
ol.end {
	margin-bottom: 2.5em;
}

/* Phew! */


label {

}

img {
	border: 0;
}

img.print { /* This hides the logo at the top, which the print.css unhides for print */
	display: none;
}


select, input, textarea {
	border: 1px solid #bfbfbf;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	color: #7f7f7f;
	padding: 0.3em;
}
.radiobutton, .checkbox {
	width: auto;
	border: none;
}
/* IE6.. */ 
* html .radiobutton, * html .checkbox { /* Sigh. */
	width: 100;
	border: 0;
}
/**/

div.message {
	color: #02626E;
	margin-bottom:1em;
}

.hide,
.bHide {
	display: none;
}

hr {
	border: none;
	background-color: #ccc;
	height: 1px;
	margin-top: 2em;
	margin-bottom: 2.5em;
}

/* --[ rounded buttons ]------------------------------- */

a.rounded, .button {
  outline: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  vertical-align: middle; /* or top */
  display: -moz-inline-box;
  display: inline-block;
  overflow: visible; /* IE6 form button fix */ 
}
.button {
	text-transform: lowercase;
	font-family: inherit;
	font-size: 1.2em;
	background-color: #bfbfbf;
	color: #fff;
  padding: 5px 15px;
}
.button:hover {
  background-color: #0499cc;
	color: #fff;
} 
div#contentPanel a.rounded:link,
div#rightSidePanel a.rounded:link,
div#contentPanel a.rounded:visited,
div#rightSidePanel a.rounded:visited {
	border-bottom: none; /* To stop the a.rounded class from being broke */
	color: #fff;
	}
div#contentPanel a.rounded:hover,
div#rightSidePanel a.rounded:hover,
div#contentPanel .button:hover,
div#rightSidePanel .button:hover { /* This stops out the generic border-bottom affecting it */
  border: none;
}

/* --[ accessibility stuff ]------------------------------- */

.skip {
	left:-300em;
	position:absolute;
	top:-300em;
}

a#content {
	display:none;
}
