/*
##-------------------------------------------------------------------
##
## FILE: grabbinggordon.css
## CREATED: 01/03/09 by Kim Lawler, Common Agency Ltd.
##
## NOTES:
##
##-------------------------------------------------------------------
*/

/*
 SOME RULES FOR CONSISTENCY. NOT TO LIVE HERE FOREVER BUT JUST FOR NOW...
 
 1. Order CSS properties consistently for easier co-working. I think of it
 as structure followed by styling [often separated completely]. As a rule,
 you can't style something until you've built it! Therefore, working from the 'outside'
 of an element inwrads it should be something like...
 display, float, clear,  etc
 positioning, z-index, etc
 height, width, etc
 margin, border, padding [in that order - working out to in]
 border styling, rounded corners, etc [in css 3]
 background
 fonts
 text-alignment, text-decoration, etc.
 anything else
 
 2. Consistent code styling/layout. Agree preferred closing bracket position - indented or not?
 
 3. Stick to lowercase for properties where possible.
 
 4. Always use shorthand unless there is a good reason not to. Check out http://www.dustindiaz.com/css-shorthand/ if in doubt.
 
 5. Where suitable, indent/next related styles e.g. h3 span.bullet would be nested just after h3.
 
*/

/*-------------------------------------------------------------------
## CLIENT SPECIFIC NOTES

Main color:
Secondary color:
Preferred web font:

/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## HTML ELEMENTS START HERE */

body {
	padding: 0; /* Side-margins help with alignment at 800 x 600 */
	background: url(/x/img/static/body-bg.jpg) center top no-repeat;
	width: 100%;
	display: table;
	line-height: 0.7em;
	color: #333333;
}

hr {
	display:block;
	clear:both;
	visibility:hidden;
	height: 0;
	width: 100%;
	margin: 0px;
	padding: 0px;
	border: none;
}

dl {
	margin: 0px 22px;
}

dl dd {
	margin: 0 0 0 0;
}

dl dt {
	font-size: 1.3em;
	font-weight: bold;
}

h1 {
	display: block;
	float: left;
	width: 100%;
	margin: 5px 0;
	font: normal normal normal 2.4em/1.0em "Lucida Sans Unicode", "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
	text-indent: 10px;
	letter-spacing: 0.25em;
}

h2 {
	display: block;
	width: 100%;
	margin: 0 0 10px 0;
	font: normal normal normal 1.8em/1.0em "Lucida Sans Unicode", "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
}

h3 {
	display: block;
	width: 100%;
	margin: 0 0 3px 0;
	padding: 5px 0 5px 5px;
	font: normal normal normal 1.4em/1.0em "Lucida Sans Unicode", "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
}

h4 {
	display: block;
	margin: 0;
	padding: 5px 0 5px 5px;
	font: normal normal normal 1.4em/1.0em "Lucida Sans Unicode", "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
}

a {
	text-decoration: underline;
	color: #660000;
}

a:hover {
	color: #000000;
}

img {
	border: none 0px;
}

p {
	margin: 0 0 1em 0;
	font-size: 12px;
}

pre {
	font-size: 1.1em;
}

table,td,th {
	border: none 0;
}

td {
	text-align: left;
	vertical-align: top;
}

th {
	text-align: left;
	vertical-align: middle;
}

ul, dl, ol {
	display: block;
	margin: 0 12px 12px 6px;
	padding: 0;
}

	ul.linkList {
		padding: 0 0 0 0;
		}

		ul.linkList li {
			margin: 0 0 4px 0;
			list-style: none;
			}
			
			ul.linkList li a {
				padding: 3px;
				background: #333333;
				color: #ffffff;
				font: normal normal bold 0.8em/1.0em Verdana;
				text-decoration: none;
				text-transform: uppercase;
				}
			
			ul.linkList li a:hover {
				background: #ff0000;
				}

li, dt, dd {
	list-style:square inside;
	font: normal normal normal 1.2em/1.4em "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
}

/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## MAIN LAYOUT BLOCKS START HERE

REMEMBER... the crux of this layout is a columns based format, centrally aligned, which is optimised
for 1024 x 768 but degrades gracefully to support 800 x 600 as long as no more than 12-columns are
used. The ideal is 12-col + stacked 3-cols, where the 3-cols should contain supplementary content
or advertising that will wrap beneath the 12-col block on smaller screens.

*/

/* header */
.blockHeader {
	display: block;
	position: relative;
	width: 330px;
	margin: 0 0 11px 0;
	border: none;
	padding: 0;
}

	.blockHeader h1{
		text-indent: -10000px;
		background: url(/x/img/static/header-logo.jpg) top left no-repeat;
		width: 330px;
		height: 175px;
		margin: 0 0 10px 0;
	}

/* central wrapper */
.blockContent {
	display: block;
	width: 964px;
	margin: 0 auto;
	padding: 30px 30px 12px 30px;
	text-align: left;
}

/* footer */
.blockFooter {
	display: block;
	clear: both;
	width: 934px;
	margin: 0 auto;
	padding: 16px 110px 6px 30px;
	background: url(/x/img/static/footer-bg.gif) top center no-repeat;
}

/* Layout columns... based on 15 x 50px grid with 16 x 12px gutters + 9px extra each side of page */
/* NOT TRUE: Columns are now only content holders e.g. they include the far-right gutter and hence columns can be nested */
/* Columns are used to build the main layout parts of a page. They should contain components, not nested columns. */
.blockColumn15 { /* WARNING: THIS SHOULD RARELY IF EVER BE USED AS IT WILL BREAK THE ABILITY TO DEGRADE TO 800 X 600 */
	float: left;
	width: 930px; /* [15 x 50px] + [15 x 12] */
	margin: 0 0 12px 0;
}

.blockColumn12 {
	float: left;
	width: 744px; /* [12 x 50px] + [12 x 12] */
	margin: 0 0 12px 0;
}

.blockColumn10 {
	float: left;
	width: 620px; /* [10 x 50px] + [10 x 12] */
	margin: 0 0 12px 0;
}

.blockColumn9 {
	float: left;
	width: 558px; /* [9 x 50px] + [9 x 12] */
	margin: 0 0 12px 0;
}

.blockColumn8 {
	float: left;
	width: 496px; /* [8 x 50px] + [8 x 12px] */
	margin: 0 0 12px 0;
}

.blockColumn6 {
	float: left;
	width: 372px; /* [6 x 50px] + [6 x 12px] */
	margin: 0 0 12px 0;
}

.blockColumn5 {
	float: left;
	width: 310px; /* [5 x 50px] + [5 x 12px] */
	margin: 0 0 12px 0;
}

.blockColumn4 {
	float: left;
	width: 248px; /* [4 x 50px] + [4 x 12px] */
	margin: 0 0 12px 0;
}

.blockColumn3 {
	float: left;
	width: 186px; /* [3 x 50px] + [3 x 12px] */
	margin: 0 0 12px 0;
}

.blockColumn2 {
	float: left;
	width: 124px; /* [2 x 50px] + [2 x 12px] */
	margin: 0 0 12px 0;
}

.blockColumn1 {
	float: left;
	width: 62px; /* [1 x 50px] + [1 x 12px] */
	margin: 0 0 12px 0;
}

.blockColumnDebug {
	background: brown url('/x/img/bgGridCols.gif') no-repeat top left;
}

/* Components [grouped blocks of content within columns] */
.comp8 {
	float: left;
	width: 484px; /* [8 x 50px] + [8 x 12px] - 12px */
	margin: 0 12px 12px 0;
	/*background: yellow;*/
}

.comp4 {
	float: left;
	width: 236px; /* [4 x 50px] + [4 x 12px] - 12px */
	margin: 0 12px 12px 0;
}

.comp3 {
	float: left;
	width: 174px; /* [3 x 50px] + [3 x 12px] - 12px */
	margin: 0 12px 12px 0;
	background: #999999;
}

/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## NAVIGATION STYLES START HERE */

/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## FORM STYLES START HERE */

/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## ADMIN STYLES START HERE */

/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## BUTTON STYLES START HERE */

.buttonPanel a, .buttonPanel button, table td.buttons a {
	display:block;
	float:left;
	margin:0 7px 0 0;
	background-color:#f5f5f5;
	border:1px solid #999999; border-top:1px solid #cccccc; border-left:1px solid #cccccc;
	font: normal normal bold 1.1em/1.4em "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
	text-decoration:none;
	color:#565656;
	cursor:pointer;
	padding:5px 10px 6px 7px; /* Links */
}

	table td.buttons a {
		font-size: 0.9em;
		padding: 2px 5px 2px 5px;
	}

.buttonPanel button {
	overflow: visible;
	width: auto;
	padding: 4px 10px 3px 7px; /* IE6 */
}
.buttonPanel button[type] {
	padding: 5px 10px 5px 7px; /* Firefox */
	line-height: 17px; /* Safari */
}
*:first-child+html button[type] {
	padding: 4px 10px 3px 7px; /* IE7 */
}
.buttonPanel button img, .buttonPanel a img, table td.buttons a img {
	margin: 0 3px -3px 0 !important;
	padding: 0;
	border: none;
	width: 16px;
	height: 16px;
}

/* Standard actions */
.buttonPanel button:hover, .buttonPanel a:hover, table td.buttons a:hover {
	background-color: #dff4ff;
	border: 1px solid #c2e1ef;
	color: #336699;
}
.buttonPanel a:active, table td.buttons a:active {
	background-color: #6299c5;
	border: 1px solid #6299c5;
	color: #ffffff;
}

/* Positive actions */
button.positive, .buttonPanel a.positive, table td.buttons a.positive {
	color: #529214;
}
.buttonPanel a.positive:hover, button.positive:hover, table td.buttons a.positive:hover {
	background-color: #E6EFC2;
	border: 1px solid #C6D880;
	color: #529214;
}
.buttonPanel a.positive:active, table td.buttons a.positive:active {
	background-color: #529214;
	border: 1px solid #529214;
	color: #fff;
}

/* Negative actions */
.buttonPanel a.negative, button.negative, table td.buttons a.negative {
	color: #d12f19;
}
.buttonPanel a.negative:hover, button.negative:hover, table td.buttons a.negative:hover {
	background: #fbe3e4;
	border: 1px solid #fbc2c4;
	color: #d12f19;
}
.buttonPanel a.negative:active, table td.buttons a.negative:active {
	background-color: #d12f19;
	border: 1px solid #d12f19;
	color: #ffffff;
}


/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## TABLE STYLES START HERE */

table {
	width: 100%;
	margin: 5px 0 0 0;
}

	table tr td, table tr th {
		border-bottom: 1px solid #cccccc;
	    padding: 3px;
	    font: normal normal normal 1.2em/1.0em Helvetica, Arial, sans-serif;
	    vertical-align: middle;
	}
	
	table tr th {
		border-bottom: 1px solid #333333;
		font-weight: bold;
	}

/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## MESSAGE DISPLAY STYLES START HERE */

/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## FUNCTIONAL STYLES START HERE */

/* float clearer */
.fc, .s{
	clear: both;
	visibility: hidden;
	overflow: hidden;
	width: 0;
	height: 0;
	margin: 0;
	padding: 0;
	line-height: 0;
}

.fLeft{
	float: left;
}

.fRight{
	float: right;
}

/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## FOOTER STYLES START HERE */

.blockFooter a {
	color: #5F532F;
}

.blockFooter p{
	color: #7F665E;
	font: normal normal normal 12px/2em Arial, Helvetica, sans-serif;
	margin: 0 5px 0 0;
}

/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## DEBUG STYLES START HERE */

.blockDebug {
	width: 760px;
	margin: 0 auto;
	border: 1px dashed #999999;
	padding: 0px;
	background-color: #ffffff;
	text-align: left;
}

.blockDebug {
	margin-top: 15px;
}

.blockDebug li strong {
	font-size: 12px;
}

.blockDebug pre {
	color: blue;
	font-size: 11px;
}

/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## REMAINING MISC STYLES START HERE */

.lSidebar{
	width: 330px;
	padding: 0 0 0 20px;
}

	.lSidebar p{
		font: normal normal normal 16px/1.1em Arial, Helvetica, sans-serif;
		color: #392D26;
		margin-bottom: 10px;
	}

	.lSidebar .textOne{
		background: url(/x/img/static/text-box-330x230.jpg) top left no-repeat;
		height: 180px;
		width: 275px;
		padding: 25px 30px 25px 25px;
	}
	
	.lSidebar .textTwo{
		background: url(/x/img/static/text-box-330x115.jpg) top left no-repeat;
		height: 65px;
		width: 275px;
		padding: 25px 30px 25px 25px;
	}

.flashWrap{
	width: 560px;
	padding: 29px 0 0 54px;
}

#noJavaScript {
	background-image:url(/x/img/nojavascript.png);
	border-bottom:2px solid #392D26;
	width:500px;
	height:500px;
}


/*-------------------------------------------------------------------*/
