/************************************************************************

	GLOBAL CSS
	==========

	Provides all global styles for the site which more specific sections 
	can be built on using the layered css technique

	Author:		Tom Harman
				Nick Watson
				Tom Fletcher
				[www.optixsolutions.co.uk]

	Listing Order:
	==============

	Universal
	Forms
	General Structure / Layout
	Navigation Elements
	Header Elements
	Body Elements
	Footer Elements
	Messages

************************************************************************/

/***********************************************************************
	UNIVERSAL STYLES
************************************************************************/

body {
	font-size: .7em;
	background: #3C3F50;
}

html, body, form, fieldset, h1, h2, h3, h4, h5, h6, p, pre, blockquote, ul, ol, dl, address, abbr, input, select, textarea, table, td, th {
	font-family: Georgia;
}

/***********************************************************************
	FORMS
************************************************************************/

fieldset, legend {
	border: none;
}

legend {
	background: transparent;
	font-size: 1em;
	font-weight: bold;
	margin: 1em 0;
	padding: 0 .5em;
}

label {
	color: #fff;
	float: left;
	padding: 0 1em 0 0;
	text-align: right;
}

form fieldset div {
	clear: both;
	display: block;
	margin-bottom: .5em;
	padding: 0;
}

div.submit {
	clear: both;
	text-align: center;
	width: auto;
}

div.multi input {
	border: 0;
	width: auto;
}
 
form 									{ width: 100%; }

label		 							{ float: left;	height: 22px; width: 45%; }

fieldset div input,
fieldset div select,
fieldset div textarea  			{ width: 45%; }

fieldset div input.small,
fieldset div select.small,
fieldset div textarea.small 	{ width: 25%; }

div.req label, div.req p		{ font-weight: bold; }

div.multi label 					{ height: 22px; }

div.req label:before, 
div.req p:before {
	content: "* ";
}

input:focus, textarea:focus {
	background: #fafafa;
	color: #000;
}

fieldset div input, 
fieldset div select, 
fieldset div textarea  {
	border: 1px solid #aaa;
	color: #333;
	font-weight: normal;
	padding: 1px;
}

div.submit input {
	background: #777;
	border: 1px solid #333;
	color: #fff;
	font-weight: bold;
	padding: 1px .7em;
	width: auto;
}

/***********************************************************************
	GENERAL STRUCTURE/LAYOUT
************************************************************************/

div#container {
	margin: 0px auto;
	width: 750px;
}

/***********************************************************************
	HEADER ELEMENTS
************************************************************************/

div#header {
	background: url('../i/layout/header.jpg') no-repeat;
	width: 750px;
	height: 151px;
}

/***********************************************************************
	BODY ELEMENTS
************************************************************************/

div#leftbox {
	width: 324px;
	float: left;
	text-align: center;
	font-size: 1em;
	color: #D1D1D6;
	padding-left: 35px;
	padding-right: 35px;
	padding-top: 15px;
	background: url('../i/layout/leftbox.jpg') top no-repeat;
}

div#leftbox p {
	margin: 2em auto;
}

div#leftbox p.con {
	margin: 1em auto;
}

div#leftbox2 {
	width: 344px;
	float: left;
	text-align: center;
	font-size: 1em;
	color: #D1D1D6;
	padding-left: 35px;
	padding-right: 35px;
	padding-top: 15px;
	background: url('../i/layout/leftbox.jpg') top no-repeat;
}

* html div#leftbox2 {
	width: 324px;
}

div#leftbox2 p {
	margin: 2em auto;
}

div#leftbox2 p.con {
	margin: 1em auto;
}

div#rightbox {
	float: right;
	margin-top: -6px;
}

div.right-home {
	background: url('../i/layout/right-home.jpg') no-repeat;
	height: 300px;
	width: 356px;
}

div.right-service {
	background: url('../i/layout/right-service.jpg') no-repeat;
	height: 370px;
	width: 356px;
}

div.right-food {
	background: url('../i/layout/right-food.jpg') no-repeat;
	height: 356px;
	width: 290px;
}

div.right-contact {
	background: url('../i/layout/right-contact.jpg') no-repeat;
	height: 475px;
	width: 323px;
}

a {
	color: #FFF;
}

/***********************************************************************
	NAVIGATION
************************************************************************/

div#footer ul li {
	float: left;
	width: 100px;
	font-weight: bold;
	height: 37px;
	padding-left: 12px;
	padding-right: 12px;
	padding-top: 20px;
	display: block;
}

div#footer ul li a {
	display: block;
	width: 100px;
	height: 100%;
	text-align: center;
	color: #FFF;
	font-size: 1.3em;
}

div#footer ul li.active {
	background: #7B3A5B;
}

div#footer ul li a:hover {
	color: #D6DBED;
}

/***********************************************************************
	FOOTER ELEMENTS
************************************************************************/

div#footer {
	width: 750px;
	height: 57px;
	background: #494C5C;
}

/***********************************************************************
	MESSAGES
************************************************************************/

.error, .notice, .message { 
	color: #b22;
	font-weight: bold;
}

.error ol li {
	font-weight: normal;
	list-style-type: lower-roman;
	list-style-position: inside;
	margin-left: 0;
	padding-left: 1em;
	text-indent: 1em;
}

