/* 
	Title: Hungrybrowser - Basic style sheet
	Description: Contains all the basic styling for the mmk website
	Client: MMK
	Date: 05/12/2006
	Updated: 25/11/2008
	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: #0A612B 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;
}

h4, h4 a {
	font-size: 112.5%;
	color: #000000;
	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: #CC0000;
	font-weight: bold;
}

em {
	font-style: italic;
}

/* ------------------------------------------------------------
	Form elements
---------------------------------------------------------------- */

form, input, textarea, select, button, fieldset {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 100%;
	margin: 0px;
}

form, fieldset {
	padding: 0px;
}

input, textarea, select {
	border-top: 1px #999999 solid;
	border-right: 1px #FFFFFF solid;
	border-bottom: 1px #FFFFFF solid;
	border-left: 1px #999999 solid;
	padding : 1px;
	margin: 0px;
	background-color: #FFFFE6;
	color: #333333;
	font-size: 87.5%;
}

input:hover, input:focus, textarea:hover, textarea.focus, select:hover, select.focus {
	border-top: 1px #666666 solid;
	border-right: 1px #EEEEEE solid;
	border-bottom: 1px #EEEEEE solid;
	border-left: 1px #666666 solid;
	background-color: #FFFFCC;
	color: #000000;
}

button {
	color: #333333;
	border: none;
	padding: 5px 0px 7px 0px;
	cursor: pointer;
	background: url("../img/button_bg.gif") 0px 0px no-repeat;
	width: 80px;
	text-align: center;
	font-size: 90%;
}

#column2 button {
	padding: 5px 0px 6px 0px;
}

button:hover, button:focus {
	background-position: 0px -51px;
	color: #000000;	
}

fieldset {
	border: 1px #E5E0CA solid;
	padding: 5px 10px;
	background-color: #F8F7F2;	
	margin: 10px 0px 0px 0px;
}

#column2.dark fieldset {
	background-color: #FFFFFF;	
}

form fieldset p {
	margin: 0px 0px 5px 0px;
	padding: 0px;
	line-height: 16px;
}

form td {
	padding: 0px;
	margin: 0px;
	line-height: 18px;
	font-size: 95%;
}

label {
	font-size: 87.5%;
	display: block;
	line-height: 15px;
	margin-bottom: 3px;
}

label, strong {
	color: #333333;
	font-weight: bold;
}

label small {
	font-weight:  normal;
}

legend {
	border: 1px #CBC8B6 solid;
	padding: 0px 5px 0px 5px;
	font-weight: bold;
	background-color: #FFFFFF;
	color: #333333;
}

/* ------------------------------------------------------------
	Error messages
---------------------------------------------------------------- */

.error {
	color: #CC3300;
}

.success {
	color: #339900;
}

p.error, p.success {
	line-height: 14px;
	font-size: 90%;
	margin: 10px 0px 10px 0px;
	border-style: solid;
	border-width: 1px;
}

#column2 form p.error, #column2 form p.success { 
	font-size: 110%;
}

p.error {
	border-color:#CC0000;
	background: #FFEAEA url("../img/errorBullet.gif") 5px 1px no-repeat;
	padding: 2px 7px 3px 25px;
}

p.success {
	border-color: #339900;
	background: #DFFFDF url("../img/loadingBullet.gif") 5px 1px no-repeat;
	padding: 2px 7px 3px 25px;
}

/* ------------------------------------------------------------
	Custom styles
---------------------------------------------------------------- */

.show {
	visibility: visible;
	display:  block;
}

.hide {
	visibility: hidden;
}

#content .hidden {
	display: none;
}

a.button, a:visited.button {
	text-decoration: none;
	color: #EEEEEE;
}

a:hover.button, a:focus.button {
	color: #FFFFFF;
	text-decoration: none;
}

.highlight {
	color: #CC3300;
}

#webstat {
	display: none;
}