/********************************************************
* Title    : McNally Driving School Global Style Sheet
* Author   : Dan Tarrant
* Contact  : dt@dantarrant.co.uk
* Created  : 01st Nov 2006
* Modified : 11th Oct 2007
********************************************************/

* {
	margin: 0;
	padding: 0;
	border: 0px solid #000;
}

body {
	background-color: #DFD9EC;
	font : 12px/18px Lucida Grande, Verdana, sans-serif;
	color: #222;
}

/********************************************************
* Layout
********************************************************/

.wrap {
	width: 700px;
	margin: 0 auto;
	padding: 0 20px;
	overflow: hidden;
}

#banner {
	position: relative;
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
	background: url(../images/layout/header.jpg) no-repeat top;
	height: 150px;
}

#header {
	position: relative;
	padding: 20px;
	background-color: #FFF;
}

#intro {
	position: relative;
	padding: 20px 20px 5px 20px;
	background-color: #DFD9EC;
	border-bottom: 1px dotted #324059;
}

#content {
	position: relative;
	padding: 20px;
	border-bottom: 1px dotted #324059;
	background-color: #FFF;
}

#footer {
	padding: 10px 20px 10px 20px;
	font-size: 10px;
	line-height: 16px;
}

.left {
	position: relative;
	float: left;
	width: 365px;
	padding-right: 40px;
}

.right {
	position: relative;
	float: right;
	width: 275px;
}

/********************************************************
* Links
********************************************************/

a, a:visited {
	color: #000;
	text-decoration: none;
	font-weight: bold;
	border-bottom: 1px dotted #000;
}
	
a:hover {
	color: #000;
	text-decoration: none;
	font-weight: bold;
	border-bottom: 0px;
}

#footer a, #footer a:visited {
	color: #000;
	text-decoration: none;
	font-weight: bold;
	border-bottom: 0px;
}
	
#footer a:hover {
	color: #000;
	text-decoration: none;
	font-weight: bold;
	border-bottom: 1px dotted #000;
}

/********************************************************
* Content
********************************************************/

p {
	margin-bottom: 15px;
	text-align: justify;
}

h1 {
	font-size: 11pt;
	font-weight: bold;
	color: #000;
	margin: 0 0 10px 0;
}

hr {
	display: none;
}

#content img {
	padding: 1px;
	border: 1px solid #000;
}

.em {
	color: #FF0000;
}

/********************************************************
* Lists
********************************************************/

ul {
	margin: 0;
	padding: 0 0 0 30px;
	list-style: square;
}

li {
	margin: 0;
	padding: 0 0 5px 0;
	line-height: 18px;
}

/********************************************************
* Form Elements
********************************************************/

.post input {
	padding: 2px;
	width: 250px;
	font-size: 12px;
	color: #333;
	border: 1px solid #324059;
}
.post input#submit {
	cursor: pointer;
	font-weight: bold;
	width: 250px;
	font-size: 12px;
	color: #333;
	background-color: #D5D5D5;
	border: 1px solid #324059;
}
.post input#amend {
	cursor: pointer;
	font-weight: bold;
	width: 200px;
	font-size: 12px;
	color: #333;
	background-color: #D5D5D5;
	border: 1px solid #324059;
}

.post textarea {
	padding: 2px;
	width: 450px;
	font-size: 12px;
	color: #333;
	border: 1px solid #324059;
}

label {
	font-weight: normal;
}

/********************************************************
* Misc
********************************************************/

/* Self-clearing floats */

.wrap:after, #intro:after, #content:after {
    content: "."; 
    display: block;
    height: 0; 
    clear: both; 
    visibility: hidden;
}
    
/* Fixes for IE/win */
/* Self-clearing floats */

* html .wrap, * html #intro, * html #content {
    height: 1%;
}