/* 
	Title: Hungrybrowser - Basic style sheet
	Description: Contains all the basic styling for the mmk website
	Client: mckinlaykidd.co.uk
	Date: 05/12/2006
	Updated: 01/10/2009
	Version 1.01
	Author: Ben Ellis
*/

/* ------------------------------------------------------------
	Default HTML elements
---------------------------------------------------------------- */

/* 
Font size reference 

10px = 62.5%
11px = 70%
12px = 75%
13px = 80%
14px = 87.5%
15px = 95%
16px = 100%
17px = 105%
18px = 112.5%
19px = 120%
20px = 125%
21px = 130%
22px = 140%
23px = 145%
24px = 150%

*/

body {
	margin: 0px 0px 30px 0px;
	padding: 0px;
	background: #2A174E url("../img/body_bg.png") center top no-repeat;
	color: #333333;
	font-size: 80%;
	font-family: "Trebuchet MS", Arial, Helvetica, Verdana, sans-serif;
	line-height: 20px;
	text-align: center;
}

body.short {
	background: #0A612B url("../img/body_short_bg.png") center top no-repeat;
}

/* Links */

a {
	font-weight: normal;
	color: #402570;
	text-decoration: underline;
	outline: none;
	cursor: pointer;
}

a:visited {
	color: #000000;
	text-decoration: underline;
}

a:active {
	color: #CC3300;
}

a:hover {
	color: #5D539D;
	text-decoration: none;
}

/* Headings */

h1, h2, h3, h4, h1 a, h2 a, h3 a, h4 a, h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited {
	font-weight: normal;
	letter-spacing: 1px;
	text-decoration: none;
}

h1, h1 a {
	font-size: 125%;
	color: #000000;
	margin: 0px 0px 10px 0px;
}

h2 {
	font-size: 125%;
	color: #333333;
	margin: 0px 0px 10px 0px;
}

h3, h3 a {
	font-size: 112.5%;
	color: #402570;
	margin: 0px 0px 10px 0px;
	font-weight: bold;
}

/* Paras */

p {
	margin: 0px 0px 10px 0px;
}

/* Ordered lists */

ol {
	list-style-type:lower-alpha;
	padding-left: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
}

/* Tables */

td {
	vertical-align: top;
}

/* Iframes */

iframe {
	border: none;
	overflow: hidden;
	height: 730px;
	width: 350px;
}

/* Bold */

strong {
	color: #000000;
	font-weight: bold;
}

em {
	font-style: italic;
}