

/* -------------------------------------------------------------- 
  
   Reset.css
   * Resets default browser CSS styles.
   
   Original by Erik Meyer:
   * meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/
   
-------------------------------------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

html { height:100%; }
body { line-height: 1; color: #333; background: white; }

/* Tables still need 'cellspacing="0"' in the markup. */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.php] */

.clear { display: inline-block; }   
.clear:after, .container:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
* html .clear { height: 1%; }
.clear { display: block; }


/* -------------------------------------------------------------- 
   
   Typography.css
   * Sets some default typography.
  
-------------------------------------------------------------- */   

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5; /* Unitless for proper inheritance */
  color: #1a3383;
/*  letter-spacing: -0.4px;*/
}

/* This is where you set your desired font size. The line-height 
   and vertical margins are automatically calculated from this. 
   
   You have to add an extra calculation here because of IE, so that 
   all users may resize text manually in their browsers.
   
   The top one is for IE: The percentage is of 16px (default IE text size)
   10px is 62.5%, 12px is 75%, 13px is 81.25%, and so forth).
   The second value is what all other browsers see (the wanted font size). */
   
body          { font-size: 75%; line-height:1.2em; }   /* IE */
html > body   { font-size: 12px; line-height:1.2em; }  /* Other browsers */


/* Headings
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { font-weight: bold; }

h1 { font-size: 1.2em; line-height: 1; margin-bottom: 0.5em; }
h2 { font-size: 1.2em; margin-bottom: 0.75em; }
h3 { font-size: 1.2em; line-height: 1; margin-bottom: 1em; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6 { font-size: 1em; font-weight: bold; }


/* Text elements
-------------------------------------------------------------- */

p           { margin: 0 0 1em; }
p.last      { margin-bottom: 0; }
p img.top   { margin-top: 0; } /* Use this if the image is at the top of the <p>. */
img         { margin: 0; }

ul, ol      { margin:0 1.5em 1.5em 1.5em; }
ul          { list-style-type: disc; }
ol          { list-style-type: decimal; }
dl          { margin: 0 0 1.5em 0; }
dl dt       { font-weight: bold; }
dd          { margin-left: 1.5em;}

a:focus, 
a:hover     { color: #000; }
a           { color: #929dc1; text-decoration: none; outline:none; }

abbr, 
acronym     { border-bottom: 1px dotted #666; }
address     { margin-top: 1.5em; font-style: italic; }
del         { color:#666; }

blockquote  { margin: 1.5em; color: #666; font-style: italic; }
strong      { font-weight: bold; }
em,dfn      { font-style: italic; background: #ffc; }
dfn         { font-weight: bold; }
pre,code    { margin: 1.5em 0; white-space: pre; }
pre,code,tt { font: 1em 'andale mono', 'monotype.com', 'lucida console', monospace; line-height: 1.5; } 
tt          { display: block; margin: 1.5em 0; line-height: 1.5; }


/* Tables
-------------------------------------------------------------- */

table   { margin-bottom: 1.4em; }
th      { border-bottom: 0px solid #ccc; font-weight: bold; }
td      { border-bottom: 0px solid #ddd; }
/*
th,td   { padding: 4px 10px 4px 0; }
*/
tfoot   { font-style: italic; }
caption { background: #ffc; }

/* Use this if you use span-x classes on th/td. */
table .last { padding-right: 0; } 


/* Some default classes
-------------------------------------------------------------- */

.small      { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large      { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
.quiet      { color: #666; }

.hide       { display: none; }
.highlight  { background:#ff0; }
.added      { color:#060; }
.removed    { color:#900; }

.top        { margin-top:0; padding-top:0; }
.bottom     { margin-bottom:0; padding-bottom:0; }

.strong,
.bold		{ font-weight:bold; }



/*
** keep the whitespace in front of the ^=, hides rule from konqueror
** this is css3, the validator doesn't like it when validating as css2
*/
/*
a.external,
a[href ^="http://"] {
	background: url(/css/icons/external.png) center right no-repeat;
	padding-right: 15px;
}
a[href ^="https://"],
.link-https {
	background: url(/css/icons/lock_icon.gif) center right no-repeat;
	padding-right: 15px;
}
a[href ^="mailto:"],
.link-mailto {
	background: url(/css/icons/mail_icon.gif) center right no-repeat;
	padding-right: 20px;
}
a[href ^="news://"] {
	background: url(/css/icons/news_icon.png) center right no-repeat;
	padding-right: 20px;
}
a[href ^="ftp://"],
.link-ftp {
	background: url(/css/icons/file_icon.gif) center right no-repeat;
	padding-right: 18px;
}

a.noicon { background: none; padding:0; }
*/


/* -------------------------------------------------------------- 
  
  BLUEPRINT CSS
   * Filename:        grid.css
   * Version:         0.6 (2007-09-21) YYYY-MM-DD
   * Website:         http://code.google.com/p/blueprintcss/
  
  Generated by:
   * Blueprint CSS Grid Generator (2008-01-31) [http://kematzy.com/blueprint-generator/]
  
  Based on work by:
   * Olav Bjorkoy      [bjorkoy.com]
   * Nathan Borror     [playgroundblues.com]
   * Jeff Croft        [jeffcroft.com]
   * Christian Metts   [mintchaos.com]
   * Khoi Vinh         [subtraction.com]
  
  == STRUCTURE: ========================
   * Page width:            830 px
   * Number of columns:     12
   * Column width:          60 px
   * Margin width:          10 px
  ======================================
   
  By default, the grid is 830px wide, with 12 columns 
  spanning 60px, and a 10px margin between columns.
  
  If you need fewer or more columns, use this formula to calculate
  the new total width: 
  
  Total width = (number_of_columns * column_width) - margin_width
  
  Read more about using a grid here:
  * subtraction.com/archives/2007/0318_oh_yeeaahh.php
  
  
-------------------------------------------------------------- */

/* A container should group all your columns. */
.container {
  width: 830px;
  margin: 0 auto;
}


/* Columns
-------------------------------------------------------------- */

/* Use this class together with the .span-x classes
   to create any composition of columns in a layout. */
   
.column {
  float: left;
  margin-right: 10px;
}


/* The last column in a row needs this class. */
.last { margin-right: 0; }

/* Use these classes to set the width of a column. */
.span-1  { width: 60px;}
.span-2  { width: 130px;}
.span-3  { width: 200px;}
.span-4  { width: 270px;}
.span-5  { width: 340px;}
.span-6  { width: 410px;}
.span-7  { width: 480px;}
.span-8  { width: 550px;}
.span-9  { width: 620px;}
.span-10 { width: 690px;}
.span-11 { width: 760px;}
.span-12 { width: 830px; margin: 0; }


/* Add these to a column to append empty cols. */
.append-1  { padding-right: 70px;}
.append-2  { padding-right: 140px;}
.append-3  { padding-right: 210px;}
.append-4  { padding-right: 280px;}
.append-5  { padding-right: 350px;}
.append-6  { padding-right: 420px;}
.append-7  { padding-right: 490px;}
.append-8  { padding-right: 560px;}
.append-9  { padding-right: 630px;}
.append-10 { padding-right: 700px;}
.append-11 { padding-right: 770px;}


/* Add these to a column to prepend empty cols. */
.prepend-1  { padding-left: 70px;}
.prepend-2  { padding-left: 140px;}
.prepend-3  { padding-left: 210px;}
.prepend-4  { padding-left: 280px;}
.prepend-5  { padding-left: 350px;}
.prepend-6  { padding-left: 420px;}
.prepend-7  { padding-left: 490px;}
.prepend-8  { padding-left: 560px;}
.prepend-9  { padding-left: 630px;}
.prepend-10 { padding-left: 700px;}
.prepend-11 { padding-left: 770px;}



/* Border on right hand side of a column. */
.border{
  padding-right:4px;
  margin-right:5px;
  border-right:1px solid #eee;
}

/* Border with more whitespace, spans one column. */
.colborder {
  padding-right:56px;
  margin-right:55px;
  border-right:1px solid #eee;
}


/* Use these classes on an element to push it into the 
   next column, or to pull it into the previous column. */
.pull-1 { margin-left: -70px;}
.pull-2 { margin-left: -140px;}
.pull-3 { margin-left: -210px;}
.pull-4 { margin-left: -280px;}


.push-0  { margin: 0 0 0 18px; float: right; } /* Right aligns the image. */
.push-1 { margin: 0 -70px 0 18px; float: right;}
.push-2 { margin: 0 -140px 0 18px; float: right;}
.push-3 { margin: 0 -210px 0 18px; float: right;}
.push-4 { margin: 0 -280px 0 18px; float: right;}

.push-0, .push-1, .push-2, .push-3, .push-4 { float: right; }


/* Misc classes and elements
-------------------------------------------------------------- */

/* Use a .box to create a padded box inside a column.  */ 
.box { 
  padding: 1.5em; 
  margin-bottom: 1.5em; 
  background: #eee; 
}

/* Use this to create a horizontal ruler across a column. */
hr {
  background: #ddd; 
  color: #ddd;
  clear: both; 
  float: none; 
  width: 100%; 
  height: .1em;
  margin: 0 0 1.4em;
  border: none; 
}
hr.space {
  background: #fff;
  color: #fff;
}

/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clear { display: inline-block; }   
.clear:after, .container:after {
  content: "."; 
  display: block; 
  height: 0; 
  clear: both; 
  visibility: hidden;
}
* html .clear { height: 1%; }
.clear { display: block; }


/* -------------------------------------------------------------- 
   
   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms
   
   Usage:
   * For text fields, use class .title or .text
   
-------------------------------------------------------------- */

label { font-weight: bold; cursor: pointer; }


/* Fieldsets */
fieldset    { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
legend      { font-weight: bold; font-size:1.2em; }

/* Text fields */
input.text, input.title   { width: 200px; margin:0.5em 0.5em 0.5em 0; }
input.text, input.title   { border:1px solid #bbb; background:#f6f6f6; padding:5px; }
input.text:focus,
input.title:focus         { border:1px solid #999; background:#fff; }
input.title               { font-size:1.5em; }

/* Textareas */
textarea            { width: 400px; height: 200px; margin:0; }
textarea            { border:1px solid #bbb; background:#eee; padding:5px; }
textarea:focus      { border:1px solid #999; background:#fff; }

/* Select fields */
select              { border:1px solid #ccc; background:#f6f6f6; width:200px; }
select:focus        { border:1px solid #999; background:#fff; }


/* Success, error & notice boxes for messages and errors. */
.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }
.error      { background: #FBE3E4; color: #D12F19; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; color: #817134; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #529214; border-color: #C6D880; }
.error a    { color: #D12F19; }
.notice a   { color: #817134; }
.success a  { color: #529214; }


/* -------------------------------------------------------------- 
  
   buttons.css
   * Gives you some great CSS-only buttons.
   
   Created by Kevin Hale [particletree.com]
   * particletree.com/features/rediscovering-the-button-element

   See Readme.txt in this folder for instructions.

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

a.button, button {
/*  display:block;
  float:left;*/
  margin:0 0.583em 0.667em 0;
  padding:5px 10px 5px 7px;   /* Links */
  
  border:1px solid #dedede;
  border-top:1px solid #eee;
  border-left:1px solid #eee;

  background-color:#f5f5f5;
  font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
  font-size:100%;
  line-height:130%;
  text-decoration:none;
  font-weight:bold;
  color:#565656;
  cursor:pointer;
}
button {
  width:auto;
  overflow:visible;
  padding:4px 10px 3px 7px;   /* IE6 */
}
button[type] {
  padding:4px 10px 4px 7px;   /* Firefox */
  line-height:17px;           /* Safari */
}
*:first-child+html button[type] {
  padding:4px 10px 3px 7px;   /* IE7 */
}
button img, a.button img{
  margin:0 3px -3px 0 !important;
  padding:0;
  border:none;
  width:16px;
  height:16px;
  float:none;
}


/* Button colors
-------------------------------------------------------------- */

/* Standard */
button:hover, a.button:hover{
  background-color:#dff4ff;
  border:1px solid #c2e1ef;
  color:#336699;
}
a.button:active{
  background-color:#6299c5;
  border:1px solid #6299c5;
  color:#fff;
}

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

/* Negative */
body .negative {
  color:#d12f19;
}
a.negative:hover, button.negative:hover {
  background:#fbe3e4;
  border:1px solid #fbc2c4;
  color:#d12f19;
}
a.negative:active {
  background-color:#d12f19;
  border:1px solid #d12f19;
  color:#fff;
}


/* -------------------------------------------------------------- 
  
   CSS Framework
   
   * Native site styles *
      
-------------------------------------------------------------- */


/* -------------------------------------------------------------- 
	Default classes
---------------------------------------------------------------*/
.left   { float:left; }
.right  { float:right; }

.hide   { display:none; }

.reset-margin   { margin:0; } 
.reset-padding  { padding:0; } 
.reset          { margin:0; padding:0; } 

.align-justify  { text-align:justify; } 
.align-left     { text-align:left; } 
.align-center   { text-align:center; } 
.align-right    { text-align:right; } 


/* -------------------------------------------------------------- 
	Body and Site wrapper
---------------------------------------------------------------*/
body { background: #bee2f9; }
.wrapper { width: 830px; margin:0px auto; background: #fff; padding:5px; position:relative; }


/* -------------------------------------------------------------- 
	Brand colours
---------------------------------------------------------------*/


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

.header { background: url('/images/header.bg.jpg') center center no-repeat; height:116px; }
.homepagelink { position:absolute; top:0; right:0; width:345px; height:110px; display:block; }

.tabs  { text-align:right; }
.tabs ul { float:right; list-style:none; margin:0; padding:0 }
.tabs ul li { float:left; margin:0 0 0 2px; }
.tabs ul li a { color: #fff; background: #eee; padding:5px 0px; display:block; width:100px; text-align:center; }
.tabs ul li a:hover { color: #fff; }
.tabs ul li a.project  { background: #21409a url('/images/tab.bg.project.png') top center no-repeat; }
.tabs ul li a.benefits { background: #4599c8 url('/images/tab.bg.benefit.png') top center no-repeat; }
.tabs ul li a.charity  { background: #45c8f6 url('/images/tab.bg.charity.png') top center no-repeat; }

.panel { width:830px; height:193px; overflow:hidden; }
.panel #project,
.panel #benefits,
.panel #charity  { width:830px; height:193px; position:absolute; }
.panel #project  { z-index:3; }
.panel #benefits { z-index:2; }
.panel #charity  { z-index:1; }
.panel #project  { background: url('/images/panel.project.jpg') center center no-repeat; }
.panel #benefits { background: url('/images/panel.benefits.jpg') center center no-repeat; }
.panel #charity  { background: url('/images/panel.charity.jpg') center center no-repeat; }

.panel-navigation { color: #fff; text-align:right; font-size:0.9em; padding:5px 10px 0px 0px; }
.panel-navigation a { color: #fff; text-decoration:none; text-transform:uppercase; }
.panel-navigation a:hover { color: #fff; text-decoration: underline; }

.panel-copy { display:; padding:70px 10px 10px 440px; color: #fff; }
.panel-copy h3 { font-size:12px; font-weight:bold; padding:0; margin:0 0 5px 0; letter-spacing:0.2em; }
.panel-copy p { line-height:1.4em; }

.sticker { width:100px; height:100px; position:absolute; margin:-50px 0 0 10px; cursor:move; z-index:999; }

.homepage-panel { width:220px; margin-top:35px; margin-left:55px; float:left; }
.homepage-panel.lastpanel { margin-left: 20px; }
.homepage-panel-title { text-align:right; text-transform:uppercase; font-size:1em; color: #fff; background: #bcbbb5 url('/images/smallpanel.title.bg.jpg') top left no-repeat; padding:3px 6px 3px 3px; font-size:0.9em; }
.homepage-panel-image { }
.homepage-panel p { padding:5px; font-size:0.8em;  }

.footer { margin:10px 0px 5px 0px; font-size:0.8em; }
.footer a { color: #636363; text-decoration:none; }
.footer a:hover { color: #2f5d81; text-decoration:underline; }

.subpage-panel { width:220px; margin:10px 0px 0px auto; }
.subpage-panel-title { text-align:right; text-transform:uppercase; font-size:1em; color: #fff; background: #bcbbb5 url('/images/smallpanel.title.bg.jpg') top left no-repeat; padding:3px 6px 3px 3px; font-size:0.9em; }
.subpage-panel-image { }
.subpage-panel p { padding:0px 5px; font-size:0.8em;  }

.subpage-panel-signup { background: url('/images/rhs.signup.jpg') center center no-repeat; width:220px; height:64px; }
.subpage-panel-signup div.signup_emailaddress_div { padding:35px 0px 0px 5px; }
.subpage-panel-signup input { font-size:10px; width:133px; color: #000; }
.subpage-panel-signup input.inactiveinput { color: #999; }

.maincopy { margin:60px 70px; }

.table-walkthrough { width:410px; }
.table-walkthrough td { text-align:center; }
.table-walkthrough div.mainimage { margin-top:25px; }

.table_contactform td { padding:5px; vertical-align:middle; }
td.labelCell { text-align:right; }

.sitemap { list-style:none; }
.sitemap li { margin:1em 0; padding:0; }
.sitemap li a { font-weight:bold; }
.sitemap li ul { margin:0 0 0 2em; padding:0; list-style:none; }
.sitemap li ul li { margin:1em 0; padding:0; }
.sitemap li ul li a { font-weight:normal; }

.creativecredit { width:830px; margin:0px auto; text-align:right; color: #000; font-size:10px; }
.creativecredit a { color: #000; border:0; }
.creativecredit a:hover { color: #000; border-bottom:1px dotted #000; }
