/*==========================================================================

Basic CSS Style Sheet
---------------------

Supports Browsers = ie7 and above, firefox 2 and above, netscape v7 and above
(Browser support site:- http://centricle.com/ref/css/filters/)

Version:		1.0
Type:			screen
Author:			Andrew Bexx
Email:			info@a-bexx.co.uk
Website:		http://www.a-bexx.co.uk
Created Date:	2008/02/20
Updated Date:	2008/02/20

KEY - (For comments in this file)
---------------------------------
:BUG: 	 A CSS rule breaks in certain browser.
:TODO:	 I need to do something, e.g. remove this rule when site goes live.
:KLUDGE: A nasty workaround.

COLOUR REF:
-----------
#000066 = BLUE

===========================================================================*/

body{
	border-left:5px solid #000066;
	border-right:5px solid #000066;
 	border-color:#000066;
	background:white;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:small;
	margin:0 auto;
	padding:0;
	width:66em;
	}

#body_container{
	clear:both;
	border-left:1px solid #000066;
	border-right:1px solid #000066;
	font-size:95%;
	margin:0 1px;
	padding:0 0 50px 0;
	}

/* =DEBUGING
----------------------------------------------------------------------------*/
/*
	*{
		border:1px dotted black;
		}
*/
	
/* =Global Styles
----------------------------------------------------------------------------*/
* {
	margin:0;
	padding:0;
	}
	
u{
	text-decoration:none;
	}

acronym, abbr{
	color:red;
	cursor:help;	
	border-bottom:1px dotted red;
	}
	
.noListStyle{
	list-style:none;
	}

.floatLeft {
	float:left;
	}
.floatRight {
	float:right;
	}
.alignLeft {
	text-align:left;
	}
.alignRight {
	text-align:right;
	}

.clearFloat{
	clear:both;
	height:0px;
	}
	
a[href^="http:"] {
	background: url(images/external_icon_black.gif) no-repeat left 70%;
	padding-left:15px;
	}

a[href^="http://www.a-bexx.co.uk"],
a[href^="http://www.unbelievablemedia.co.uk"]
{
	background-image:none;
	padding-left:0;
	}
	
	
/* =Layout
----------------------------------------------------------------------------*/
h1, h2, h3, h4, h5, p, ul{
	padding:10px 20px;
	}

p {
	width:90%;
	padding:5px 20px 10px 20px;
	line-height:150%;
	}
	
ul#contactDetails{
  	border-left:3px solid #000066;
	float:right;
	list-style:none;
	margin:20px 20px;
	padding:0px 0 0 7px;
	}

ul {
	margin:0 0 0 35px;
	}

li {
	padding:2px;
	}
	
h1{
	color:#000066;
	float:left;
	font-weight:normal;
	font-size:150%;
	text-transform: uppercase;
	letter-spacing:0.2em;
	margin:10px 0 15% 0;
	padding-bottom:5px;
	}

h2 {
	color:#000066;
	margin:15px 0 0 0;
	font-size:120%;
	text-transform: uppercase;
	}
	
h2 span {	
	color:#000000;
	font-weight:normal;
	text-transform:capitalize;
	}
	
h3 {
	font-size:95%;
	font-weight:normal;
	padding:15px 20px 0px;
	text-decoration:underline;
	text-transform: uppercase;
	}
		
h4 {
	font-size:90%;
	font-weight:bold;
	margin:0px;
	padding:10px 20px 10px;
	text-transform: uppercase;
	}
	
h5 {
	font-size:92%;
	font-weight:bold;
	margin:10px 0 0 0;
	padding:10px 20px 0px;
	}
	

div.pagebreak {
		display:none;
}












