
/* /blueprint/reset.css */
/* -------------------------------------------------------------- 
  
   reset.css
   * Resets default browser CSS.
   
-------------------------------------------------------------- */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, 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;
}

body { 
  line-height: 1.5; 
}

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

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

/* Remove annoying border on linked images. */
a img { border: none; }
 
/* /blueprint/typography.css */
/* -------------------------------------------------------------- 
   
   typography.css
   * Sets up some sensible default typography.
   
-------------------------------------------------------------- */

/* Default font settings. 
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
body { 
  font-size: 75%;
  color: #222; 
  background: #fff;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}


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

h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }

h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
h2 { font-size: 2em; margin-bottom: 0.75em; }
h3 { font-size: 1.5em; 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; }

h1 img, h2 img, h3 img, 
h4 img, h5 img, h6 img {
  margin: 0;
}


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

p           { margin: 0 0 1.5em; }
p img.left  { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }

a:focus, 
a:hover     { color: #000; }
a           { color: #009; text-decoration: underline; }

blockquote  { margin: 1.5em; color: #666; font-style: italic; }
strong      { font-weight: bold; }
em,dfn      { font-style: italic; }
dfn         { font-weight: bold; }
sup, sub    { line-height: 0; }

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

pre 				{ margin: 1.5em 0; white-space: pre; }
pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; }


/* Lists
-------------------------------------------------------------- */

li ul, 
li ol       { margin:0 1.5em; }
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;}


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

table       { margin-bottom: 1.4em; width:100%; }
th          { font-weight: bold; }
thead th 		{ /*background: #c3d9ff;*/ }
th,td,caption { padding: 4px 10px 4px 5px; }
tr.even td  { background: #e5ecf9; }
tfoot       { font-style: italic; }
caption     { background: #eee; }


/* Misc 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; }
.hide       { display: none; }

.quiet      { color: #666; }
.loud       { color: #000; }
.highlight  { background:#ff0; }
.added      { background:#060; color: #fff; }
.removed    { background:#900; color: #fff; }

.first      { margin-left:0; padding-left:0; }
.last       { margin-right:0; padding-right:0; }
.top        { margin-top:0; padding-top:0; }
.bottom     { margin-bottom:0; padding-bottom:0; }
 
/* /blueprint/grid.css */
/* -------------------------------------------------------------- 
   
   BLUEPRINT CSS
    * Filename:        grid.css
    * Version:         0.7.1 (2008-02-25) YYYY-MM-DD
    * Website:         http://code.google.com/p/blueprintcss/

   Generated by:
    * Blueprint CSS Grid Generator (2009-06-11) [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:            940 px
    * Number of columns:     12
    * Column width:          60 px
    * Margin width:          20 px
   ======================================

   By default, the grid is 940px wide, with 12 columns 
   spanning 60px, and a 20px 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: 940px;
  margin: 0 auto;
}

/* Use this class on any div.span / container to see the grid. */
.showgrid { 
  background: url(blueprint/grid.png); 
}

/* Body margin for a sensile default look. */
body {
  margin:1.5em 0;	
}


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

/* Sets up basic grid floating and margin. */
div.span-1, div.span-2, div.span-3, div.span-4, div.span-5, div.span-6, div.span-7, div.span-8, div.span-9, div.span-10, div.span-11, div.span-12 {float:left;margin-right: 20px;}

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

/* Use these classes to set the width of a column. */
.span-1  { width: 60px;}
.span-2  { width: 140px;}
.span-3  { width: 220px;}
.span-4  { width: 300px;}
.span-5  { width: 380px;}
.span-6  { width: 460px;}
.span-7  { width: 540px;}
.span-8  { width: 620px;}
.span-9  { width: 700px;}
.span-10 { width: 780px;}
.span-11 { width: 860px;}
.span-12, div.span-12 { width: 940px; margin: 0; }


/* Add these to a column to append empty cols. */
.append-1  { padding-right: 80px;}
.append-2  { padding-right: 160px;}
.append-3  { padding-right: 240px;}
.append-4  { padding-right: 320px;}
.append-5  { padding-right: 400px;}
.append-6  { padding-right: 480px;}
.append-7  { padding-right: 560px;}
.append-8  { padding-right: 640px;}
.append-9  { padding-right: 720px;}
.append-10 { padding-right: 800px;}
.append-11 { padding-right: 880px;}


/* Add these to a column to prepend empty cols. */
.prepend-1  { padding-left: 80px;}
.prepend-2  { padding-left: 160px;}
.prepend-3  { padding-left: 240px;}
.prepend-4  { padding-left: 320px;}
.prepend-5  { padding-left: 400px;}
.prepend-6  { padding-left: 480px;}
.prepend-7  { padding-left: 560px;}
.prepend-8  { padding-left: 640px;}
.prepend-9  { padding-left: 720px;}
.prepend-10 { padding-left: 800px;}
.prepend-11 { padding-left: 880px;}



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

/* Border with more whitespace, spans one column. */
div.colborder {
 /* padding-right:53px;
  margin-right:50px;
  changed 18/06/09 as colborder divs were causing float drops
  */
  padding-right:50px;
  margin-right:49px;
  
  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: -80px;}
.pull-2 { margin-left: -160px;}
.pull-3 { margin-left: -240px;}
.pull-4 { margin-left: -320px;}
.pull-5 { margin-left: -400px;}
.pull-6 { margin-left: -480px;}
.pull-7 { margin-left: -560px;}
.pull-8 { margin-left: -640px;}
.pull-9 { margin-left: -720px;}
.pull-10 { margin-left: -800px;}
.pull-11 { margin-left: -880px;}
.pull-12 { margin-left: -960px;}

.pull-1, .pull-2, .pull-3, .pull-4, .pull-5, .pull-6, .pull-7, .pull-8, .pull-9, .pull-10, .pull-11, .pull-12 {float:left;position:relative;}


.push-1 { margin: 0 -80px 1.5em 80px;}
.push-2 { margin: 0 -160px 1.5em 160px;}
.push-3 { margin: 0 -240px 1.5em 240px;}
.push-4 { margin: 0 -320px 1.5em 320px;}
.push-5 { margin: 0 -400px 1.5em 400px;}
.push-6 { margin: 0 -480px 1.5em 480px;}
.push-7 { margin: 0 -560px 1.5em 560px;}
.push-8 { margin: 0 -640px 1.5em 640px;}
.push-9 { margin: 0 -720px 1.5em 720px;}
.push-10 { margin: 0 -800px 1.5em 800px;}
.push-11 { margin: 0 -880px 1.5em 880px;}
.push-12 { margin: 0 -960px 1.5em 960px;}

.push-1, .push-2, .push-3, .push-4, .push-5, .push-6, .push-7, .push-8, .push-9, .push-10, .push-11, .push-12 {float:right;position:relative;}



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

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

/* 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.45em;
  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] */

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

/* Regular clearing
   apply to column that should drop below previous ones. */

.clear { clear:both; } 
/* /ui/jquery-ui-1.7.2.custom.css */
/*
* jQuery UI CSS Framework
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
*/

/* Layout helpers
----------------------------------*/
.ui-helper-hidden { display: none; }
.ui-helper-hidden-accessible { position: absolute; left: -99999999px; }
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ui-helper-clearfix { display: inline-block; }
/* required comment for clearfix to work in Opera \*/
* html .ui-helper-clearfix { height:1%; }
.ui-helper-clearfix { display:block; }
/* end clearfix */
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }


/* Interaction Cues
----------------------------------*/
.ui-state-disabled { cursor: default !important; }


/* Icons
----------------------------------*/

/* states and images */
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }



/*
* jQuery UI CSS Framework
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Helvetica,Arial,'Liberation%20Sans',FreeSans,sans-serif&fwDefault=normal&fsDefault=13px&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=03_highlight_soft.png&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=FF5800&bgColorContent=ffffff&bgTextureContent=01_flat.png&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=777777&bgColorDefault=e6e6e6&bgTextureDefault=02_glass.png&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=444444&iconColorDefault=777777&bgColorHover=dadada&bgTextureHover=02_glass.png&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=FF5800&bgColorActive=ffffff&bgTextureActive=02_glass.png&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=f9dfd2&bgTextureHighlight=02_glass.png&bgImgOpacityHighlight=55&borderColorHighlight=ff762e&fcHighlight=333333&iconColorHighlight=FF5800&bgColorError=fef1ec&bgTextureError=05_inset_soft.png&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=ffffff&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=0&opacityOverlay=80&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=0px&offsetTopShadow=2px&offsetLeftShadow=2px&cornerRadiusShadow=4px
*/


/* Component containers
----------------------------------*/
.ui-widget { font-family: Helvetica,Arial,\'Liberation Sans\',FreeSans,sans-serif; font-size: 13px; }
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Helvetica,Arial,\'Liberation Sans\',FreeSans,sans-serif; font-size: 1em; }
.ui-widget-content { border: 1px solid #aaaaaa; /* added by ak */ line-height: 18px; text-align: left; margin-top: 10px; /* */ background: #ffffff url(../images/jquery-ui/fundit/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x; color: #222222; }
.ui-widget-content a { color: #222222; }
.ui-widget-header { border: 1px solid #aaaaaa; background: #cccccc url(../images/jquery-ui/fundit/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x; color: #222222; font-weight: bold; }
.ui-widget-header a { color: #222222; }

/* Interaction states
----------------------------------*/
.ui-state-default, .ui-widget-content .ui-state-default { border: 1px solid #d3d3d3; background: #e6e6e6 url(../images/jquery-ui/fundit/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #444444; outline: none; }
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #444444; text-decoration: none; outline: none; }
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus { border: 1px solid #999999; background: #dadada url(../images/jquery-ui/fundit/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #212121; outline: none; }
.ui-state-hover a, .ui-state-hover a:hover { color: #212121; text-decoration: none; outline: none; }
.ui-state-active, .ui-widget-content .ui-state-active { border: 1px solid #aaaaaa; background: #ffffff url(../images/jquery-ui/fundit/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #212121; outline: none; }
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121; outline: none; text-decoration: none; }

/* Interaction Cues
----------------------------------*/
.ui-state-highlight, .ui-widget-content .ui-state-highlight {border: 1px solid #ff762e; background: #f9dfd2 url(../images/jquery-ui/fundit/ui-bg_glass_55_f9dfd2_1x400.png) 50% 50% repeat-x; color: #333333; }
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a { color: #333333; }
.ui-state-error, .ui-widget-content .ui-state-error {border: 1px solid #cd0a0a; background: #fef1ec url(../images/jquery-ui/fundit/ui-bg_inset-soft_95_fef1ec_1x100.png) 50% bottom repeat-x; color: #cd0a0a; }
.ui-state-error a, .ui-widget-content .ui-state-error a { color: #cd0a0a; }
.ui-state-error-text, .ui-widget-content .ui-state-error-text { color: #cd0a0a; }
.ui-state-disabled, .ui-widget-content .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
.ui-priority-primary, .ui-widget-content .ui-priority-primary { font-weight: bold; }
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }

/* Icons
----------------------------------*/

/* states and images */
.ui-icon { width: 16px; height: 16px; background-image: url(../images/jquery-ui/fundit/ui-icons_777777_256x240.png); }
.ui-widget-content .ui-icon {background-image: url(../images/jquery-ui/fundit/ui-icons_777777_256x240.png); }
.ui-widget-header .ui-icon {background-image: url(../images/jquery-ui/fundit/ui-icons_FF5800_256x240.png); }
.ui-state-default .ui-icon { background-image: url(../images/jquery-ui/fundit/ui-icons_777777_256x240.png); }
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(../images/jquery-ui/fundit/ui-icons_FF5800_256x240.png); }
.ui-state-active .ui-icon {background-image: url(../images/jquery-ui/fundit/ui-icons_454545_256x240.png); }
.ui-state-highlight .ui-icon {background-image: url(../images/jquery-ui/fundit/ui-icons_FF5800_256x240.png); }
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(../images/jquery-ui/fundit/ui-icons_cd0a0a_256x240.png); }

/* positioning */
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-off { background-position: -96px -144px; }
.ui-icon-radio-on { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; }
.ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; }
.ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; }
.ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; }
.ui-corner-top { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; }
.ui-corner-bottom { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; }
.ui-corner-right {  -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; }
.ui-corner-left { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; }
.ui-corner-all { -moz-border-radius: 4px; -webkit-border-radius: 4px; }

/* Overlays */
.ui-widget-overlay { background: #ffffff url(../images/jquery-ui/fundit/ui-bg_flat_0_ffffff_40x100.png) 50% 50% repeat-x; opacity: .80;filter:Alpha(Opacity=80); }
.ui-widget-shadow { margin: 2px 0 0 2px; padding: 0px; background: #aaaaaa url(../images/jquery-ui/fundit/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 4px; -webkit-border-radius: 4px; }/* Accordion
----------------------------------*/
.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
.ui-accordion .ui-accordion-li-fix { display: inline; }
.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em 2.2em; }
.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; }
.ui-accordion .ui-accordion-content-active { display: block; }/* Datepicker
----------------------------------*/
.ui-datepicker { width: 17em; padding: .2em .2em 0; }
.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
.ui-datepicker .ui-datepicker-prev { left:2px; }
.ui-datepicker .ui-datepicker-next { right:2px; }
.ui-datepicker .ui-datepicker-prev-hover { left:1px; }
.ui-datepicker .ui-datepicker-next-hover { right:1px; }
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px;  }
.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
.ui-datepicker .ui-datepicker-title select { float:left; font-size:1em; margin:1px 0; }
.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
.ui-datepicker select.ui-datepicker-month, 
.ui-datepicker select.ui-datepicker-year { width: 49%;}
.ui-datepicker .ui-datepicker-title select.ui-datepicker-year { float: right; }
.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0;  }
.ui-datepicker td { border: 0; padding: 1px; }
.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi { width:auto; }
.ui-datepicker-multi .ui-datepicker-group { float:left; }
.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
.ui-datepicker-row-break { clear:both; width:100%; }

/* RTL support */
.ui-datepicker-rtl { direction: rtl; }
.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
.ui-datepicker-rtl .ui-datepicker-group { float:right; }
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }

/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
.ui-datepicker-cover {
    display: none; /*sorry for IE5*/
    display/**/: block; /*sorry for IE5*/
    position: absolute; /*must have*/
    z-index: -1; /*must have*/
    filter: mask(); /*must have*/
    top: -4px; /*must have*/
    left: -4px; /*must have*/
    width: 200px; /*must have*/
    height: 200px; /*must have*/
}/* Dialog
----------------------------------*/
.ui-dialog { position: relative; padding: .2em; width: 300px; }
.ui-dialog .ui-dialog-titlebar { padding: .5em .3em .3em 1em; position: relative;  }
.ui-dialog .ui-dialog-title { float: left; margin: .1em 0 .2em; } 
.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
.ui-dialog .ui-dialog-content { border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
.ui-dialog .ui-dialog-buttonpane button { float: right; margin: .5em .4em .5em 0; cursor: pointer; padding: .2em .6em .3em .6em; line-height: 1.4em; width:auto; overflow:visible; }
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
.ui-draggable .ui-dialog-titlebar { cursor: move; }
/* Progressbar
----------------------------------*/
.ui-progressbar { height:2em; text-align: left; }
.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }/* Resizable
----------------------------------*/
.ui-resizable { position: relative;}
.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;}
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0px; }
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0px; }
.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0px; height: 100%; }
.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0px; height: 100%; }
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/* Slider
----------------------------------*/
.ui-slider { position: relative; text-align: left; }
.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; }

.ui-slider-horizontal { height: .8em; }
.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
.ui-slider-horizontal .ui-slider-range-min { left: 0; }
.ui-slider-horizontal .ui-slider-range-max { right: 0; }

.ui-slider-vertical { width: .8em; height: 100px; }
.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
.ui-slider-vertical .ui-slider-range-min { bottom: 0; }
.ui-slider-vertical .ui-slider-range-max { top: 0; }/* Tabs
----------------------------------*/
.ui-tabs { padding: .2em; zoom: 1; }
.ui-tabs .ui-tabs-nav { list-style: none; position: relative; padding: .2em .2em 0; }
.ui-tabs .ui-tabs-nav li { position: relative; float: left; border-bottom-width: 0 !important; margin: 0 .2em -1px 0; padding: 0; }
.ui-tabs .ui-tabs-nav li a { float: left; text-decoration: none; padding: .5em 1em; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected { padding-bottom: 1px; border-bottom-width: 0; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel { padding: 1em 1.4em; display: block; border-width: 0; background: none; }
.ui-tabs .ui-tabs-hide { display: none !important; }
 
/* /layout.css */
body{margin: 0; min-width: 960px; position:relative;}

#login_box_wrapper{
  position: relative; z-index: 200; width: 100%; left: 0;
}

#login_box_inner{
   position: relative;
}


#login_box{
  height: 85px; width: 589px; position:absolute; z-index:10;  border: #ccc 0px solid; right: 0px;
  
  background: url(../images/layout/white_80percent.png) repeat;
  
  -moz-border-radius: 3px; -webkit-border-radius: 3px;
}

  #login_box form{
    margin: 20px 20px;
  }
  
  #login_links{
    padding: 10px 0; float: left; clear:both; width: 400px;  
  }
  
  #login_tab{
    position: absolute; bottom: -20px; right: 0; width: 300px; text-align: right; z-index: 20;
  }

  #login_box input.text{
	width: 150px;
  }
  
  #close_login{
	position: absolute; right: 0px; bottom: 0px;  text-indent: -9999px;
  	width: 25px;  height:  25px; background: url(../images/layout2/window-close.png)  0 0 no-repeat;
  }


#header{
	height: 86px; position: relative; z-index: 100;
}

.flick{
   height: 18px; width: 81px; z-index: 500;
}


#head_flick{
  position: absolute; right: 0; top: 61px;
}



#site_mission{
  text-indent: -9999px; height: 0px; display: none;
}

#logo{
	background: url(../images/layout2/logo.png) no-repeat; position: relative; top: 10px; left: 0px;
}
#logo a{
	display: block; width: 282px; height: 60px; text-indent: -9999px;
}

#content_wrapper{
	min-width:960px;
}

#content{
	min-height: 380px; padding-bottom: 62px; padding-top: 3px; position: relative;
}



#banks{
	position: absolute; bottom: 10px; left: 0; width: 940px; height: 40px; margin: 0; padding: 0;
}

#banks img{
  padding: 0; margin: 0;
}

thead{
  font-weight: bold;
}

thead td:first-child, thead th:first-child{
  -moz-border-radius-topleft: 5px;
  -webkit-border-top-left-radius: 5px;
  border-radius-topleft: 5px;
}
thead td:last-child, thead th:last-child {
  -moz-border-radius-topright: 5px;
  -webkit-border-top-right-radius: 5px;
  border-radius-topright: 5px;
}

tbody tr:last-child td:first-child, tbody tr:last-child th:first-child{
  -moz-border-radius-bottomleft: 5px;
  -webkit-border-bottom-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
tbody tr:last-child td:last-child, tbody tr:last-child th:last-child{
  -moz-border-radius-bottomright: 5px;
  -webkit-border-bottom-right-radius: 5px;
  border-radius-bottomright: 5px;
}

td, th{
  padding: 5px 10px; 
}

thead td, thead th{
  background-color: #e1e1e1; border-bottom: #fff 1px solid;
}

tbody td, tfoot td, tbody th, tfoot th{
  background-color: #f5f5f5; border-bottom: #fff 1px solid;
}





/* --------------------- */
/*       Main Nav        */
/* --------------------- */

#navigation {
	background-color:transparent;
	
	position: absolute;
	bottom: 10px;
	right: 0;
	z-index: 50;
	padding: 0px; margin: 0;
  z-index: 1000;
}

#navigation *{
  z-index: 1000;
}


/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin:			0;
	padding:		0;
	list-style:		none;
}
.sf-menu {
	line-height:	1.0;
}
.sf-menu ul {
	position:		absolute;
	top:			-999em;
	width:			10em; /* left offset of submenus need to match (see below) */
}
.sf-menu ul li {
	width:			100%;
}
.sf-menu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.sf-menu li {
	float:			left;
	position:		relative;
}
.sf-menu a {
	display:		block;
	position:		relative;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
	left:			0;
	top:			2.5em; /* match top ul list item height */
	z-index:		99;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
	left:			10em; /* match ul width */
	top:			0;
}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
	left:			10em; /* match ul width */
	top:			0;
}

/*** DEMO SKIN ***/
.sf-menu {
	float:			left;
	margin-bottom:	1em;
}
.sf-menu a {
	border-left:	1px solid #ff5800;
	padding: 		.75em 1em;
	text-decoration:none;
}

.sf-menu  li ul a {
	border-left: none;
}

#navigation .first a{
	border-left: none;
}
.sf-menu a, .sf-menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color:			#888;
}
.sf-menu li {
	background:		transparent;
}
.sf-menu li li {
	background:		#454545;
}
.sf-menu li li li {
	background:		#454545;
}
.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {

  background: #454545;
	outline:		0;
}

.sf-menu li li:hover, .sf-menu li li.sfHover,
.sf-menu li li a:focus, .sf-menu li li a:hover, .sf-menu li li a:active {
	background:		#4c4c4c;
}



/*** arrows **/
.sf-menu a.sf-with-ul {
	padding-right: 	2.25em;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
	position:		absolute;
	display:		block;
	right:			.75em;
	top:			1.05em; /* IE6 only */
	width:			10px;
	height:			10px;
	text-indent: 	-999em;
	overflow:		hidden;
	background:		url('../images/main_nav/arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top:			.8em;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
	background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
.sf-menu ul .sf-sub-indicator { background-position:  -10px 0; }
.sf-menu ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
.sf-menu ul a:focus > .sf-sub-indicator,
.sf-menu ul a:hover > .sf-sub-indicator,
.sf-menu ul a:active > .sf-sub-indicator,
.sf-menu ul li:hover > a > .sf-sub-indicator,
.sf-menu ul li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}

/*** shadows for all but IE6 ***/
.sf-shadow ul {
	background:	url('../images/main_nav/shadow.png') no-repeat bottom right;
	padding: 0 8px 9px 0;
	-moz-border-radius-bottomleft: 17px;
	-moz-border-radius-topright: 17px;
	-webkit-border-top-right-radius: 17px;
	-webkit-border-bottom-left-radius: 17px;
}
.sf-shadow ul.sf-shadow-off {
	background: transparent;
}


/* end of navigation functionality */
/* start navigation typography and colouring */



/* -------------------------- */
/*      Footer Section        */
/* -------------------------- */


#footer{
	 clear:both; padding: 10px 0 6px 0; float: left; width: 100%; margin: 0!important; overflow: hidden; position: relative;
}

#footer_flick{
  position: absolute; left: 0; top: 2px;
}

#footer_menu{
	margin: 10px 0 	14px 0; position: relative;
}

#footer_menu li{
	display:inline; padding: 0; margin: 0 11px;
}
#footer_menu .first{
	margin-left: 0;
}
#footer_menu #copyright{
	position: absolute; right: 0; margin-right: 0;
}

#verisign{
  float: right;
}

 
/* /color.css */
body {
	background: #4f4f4f url(../images/layout2/header_tile.gif) center top  repeat-x;
}


body{
	color: #444;
}

a { color: #888;}
a:active { color: #888;  }
a:visited { color: #888;  }
a:hover { color: #888; }

/*stop firefox outlining links when clicked*/
a:focus, .button:focus{
	outline: #000 0px solid;
}

#navigation *{
	color: #ccc;
}

#login_tab{
	color: #eee;
}

#login_box a{
	color: #ff5800;
}

#login_box #login_tab a{
  color: #eee;
}

.flick{
  background: url(../images/layout2/orange_flick.png) top right no-repeat;
}

.flick_down{
  background-position: bottom;
}

a, a:active, #breadcrumbs a:hover, form .rowName h3, .important, #center .important, .feedback {
color:#888;
}

#navigation a:hover{
color:#ddd; 
}


/*section specific links */
#auctions_bids .links a{color:#ff5800;}
.fundit-box a{color: #ff5800;}



h1,h2,h3,h4,h5,h6{
  color: #666;  color:#ff5800;
}

#content h2{
  color:#777;
}

#content_wrapper{ background-color: #fefefe; background: url(../images/layout/content_gradient.png) repeat-x #fdfdfd;}


.fundit_box{
	
}


#footer {
	background:  url(../images/layout2/footer_tile.gif) top center repeat-x; color: #fff;
}


#footer a{
	color:#fff;
}

/* --------------- */
/* Site Components */
/* --------------- */

#breadcrumbs{
	background: #e5e5e5 url(../images/breadcrumbs/breadcrumbs-sprite.gif) 0 -196px repeat;
	
	border: #ddd 1px solid;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	margin: 10px 15px 0 15px; padding: 0;
}
	#crumbs-img{
		background: url(../images/breadcrumbs/breadcrumbs-home.png) left top no-repeat;			
	}
	
	
	#breadcrumbs li a{
		background: url(../images/breadcrumbs/breadcrumbs-sprite.gif) right -168px no-repeat; text-decoration: none; text-shadow: 0 1px 0 #fff;
	}
	
	#breadcrumbs a {
		color:#454545;
	}
	
		#breadcrumbs .crumb-over{
			 background:  #ccc url(../images/breadcrumbs/breadcrumbs-sprite.gif) 0 -56px repeat;
		}	
		#breadcrumbs .crumb-over a{
			background:  url(../images/breadcrumbs/breadcrumbs-sprite.gif) right -28px no-repeat; color: #222; text-shadow: 0 1px 0 #ddd;
		}
		
		#breadcrumbs a:hover{
			color: #222;
		}	
				
		#breadcrumbs .crumb-prev a{
			background:  url(../images/breadcrumbs/breadcrumbs-sprite.gif) top right no-repeat;
		}
		
		#breadcrumbs .crumb-click{
			 background:  #ccc url(../images/breadcrumbs/breadcrumbs-sprite.gif) 0 -140px repeat;
		}
		
		#breadcrumbs .crumb-click a{
			background:  url(../images/breadcrumbs/breadcrumbs-sprite.gif) right -112px no-repeat;
		}
		
		#breadcrumbs .crumb-prev-click a{
			background:  url(../images/breadcrumbs/breadcrumbs-sprite.gif) right -84px no-repeat;
		}
		
		
	
	#breadcrumbs li.last{
		color: #666; background: none; padding-left: 10px;	
	}

/* --------------- */
/* Form Components */
/* --------------- */

form .rowName h3{color: #ff5800;}

input.text, input.page, select, textarea{
  border-color: #ccc;
}
input.text:focus, .button:focus, select:focus, textarea:focus, submit:focus{
 outline-color: #f8b16b; border-color: #ff5800; 
} 


input.text{ 
 background-color: #ffffff;
}

input.empty{
  color: #999999;
}

fieldset{
  border:#CCC 1px solid;
}

/* --------------- */
/* Custom Classes 
/* --------------- */

#tooltip{color: #ff5800; background-color: #fff; border: #ccc 1px solid;}
.button, .button:link, .button:visited, .button:hover { 
  border-color: #ccc; color: #464646; text-transform: uppercase; background: url(../images/buttons/button_bg.gif) repeat-x top left #a9a9a9; cursor:pointer;
}

.button:hover{
  color: #363636;
}
 
.button:active{
 border-color: #ff5800;
}

.important, #center .important{color: #ff5800;}
.feedback{color: #ff5800;}

.fundit-box h3{
  color: #666;
}

.orange{
  color: #ff5800;
}



 
/* /typography.css */
/* Webfonts*/
@font-face {
   font-family:"GeosansLight";
   src: local("GeosansLight"), url("../fonts/GeosansLight.ttf") format("truetype");
   font-style: all;
}



/* `Basic HTML
----------------------------------------------------------------------------------------------------*/

body {
	font: 13px/1.5 Helvetica, Arial, 'Liberation Sans', FreeSans, sans-serif; 
}

/* `Headings
----------------------------------------------------------------------------------------------------*/
.page_title{
	 font-size:24px; 
}

h1,h2,h3,h4,h5,h6{
  font-family:Verdana, Arial, 'Liberation Sans', FreeSans, sans-serif;
 /*font-family: GeosansLight, verdana, sans-serif;*/
  }
h1 {
	font-size: 25px; 
}

h2 {
	font-size: 24px;  padding-bottom: 4px; border-bottom: #ddd 1px solid;
}

h3 {
	font-size: 20px;  line-height: 1.3em; margin-bottom: 0.8em;
}

h4 {
	font-size: 16px;
}

h5 {
	font-size: 16px;
}

h6 {
	font-size: 16px;
}


/* --------------- */
/*  Generic Stuff  */
/* --------------- */

a {
	 text-decoration: none;text-decoration: underline;text-shadow: #ddd 0 1px 0;
}

a:hover {
  
}



#footer a{
	text-shadow: none;
}


select, input.text, textarea, label{
	font-size: 12px;
}


abbr, acronym{
  border: none;
}

/* -------------------------- */
/*	Specific Layout Sections  */
/* -------------------------- */

#auctions_bids, #auctions_bids td a{ font-size:12px; }
#footer *{ font-size:11px; font-weight: normal; }

#footer_menu{
	font-size: 11px;
}

#other_sites.apple, #other_sites.apple *{
	font-family:  "Lucida Grande", Helvetica, sans-serif; font-size: 12px; font-weight: 500;
}


#navigation a {
  	text-shadow: none;
	letter-spacing:normal;
}

#breadcrumbs, #breadcrumbs a:hover{
	text-shadow: #fff 0px 1px 1px;
}

#navigation{
  font-size: 13px;

}


#login_box a{
  text-shadow: none;
}

#navigation li li a{
  text-shadow: none;
}

#navigation a:hover {
	text-decoration: none;
}

h2#formHead {
  font-size: 16px;  
}

/* -------------- */
/*     Reports    */
/* -------------- */

.report h3{
	font-size: 16px; text-shadow: #fff 0px 1px 1px;
}
.report h4{
	font-size: 14px;
}

.report table{
	font-size: 13px;
}

/* ---------------- */
/*  Custom Classes  */
/* ---------------- */
.feedback{font-size: 22px; line-height: 15px;}
.rowName h3{ font-size: 16px; line-height: 20px; margin-top: 0; /*font-weight: bold; text-transform:uppercase;*/}

/* hide all clic content for flash only, should no longer  be needed by release */
.FLASHrender{display: none;}
.button, .button:link, .button:visited, .button:hover {text-transform: uppercase;font-size: 11px;text-align:center; font-weight: bold; text-shadow: #fff 0px 1px 0px; text-decoration: none;}
#tooltip, #tooltip h3{
	font-size: 12px;
}


 
/* /forms.css */
 
fieldset{padding: 15px 20px 20px 20px; margin: 10px 0; clear:both; -moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6åpx;}


legend{padding: 0 5px; margin-left: -6px; color: #666;}
/*.inputs{margin:10px 0;width: 100%;}
.inputs li{list-style: none;float:left;display:inline; width: 50%;}
.inputs .full{width: 100%;}*/

/*Disabled Inputs */
input.disabled, select.disabled{background-color: #f4f4f4; border:#ccc 1px solid!important;}
input.disabled:hover{cursor:default;}
input[disabled]{
	background-color: #f4f4f4;	
}
input.text, input.page, select, textarea{
	border-width: 1px;
}

/* some fancy stuff for good browsers */
input.text, select{
	-moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; border-style:solid; border-color: #bababa;
}

input.text{
	padding: 1px 0; height: 16px;
}

	

select{
	padding: 0 0 0 0; height: 20px; 
}


.button, .button:link, .button:visited, .button:hover { 
	border-width: 1px; border-style: outset; padding: 2px 5px 2px 5px;
} 

.button:active{
	border-style:inset;
}

form ul.inputs li{
  margin-left: 0; padding-left: 0; list-style: none;
}


/* ---------------------------------------------- */
/*	              	Form Inputs  				  */
/* ---------------------------------------------- */


/* all single inputs are wrapped in an .input div */
	.input_container{
		position: relative; float: left; width: 50%;
		margin: 5px 0; 
	}
	

	
	.input_container label{
		display: block; float:left; width: 32%;
	}
	
	div.text label, div.select label, div.liability label, div.phone label, div.percentage label, div.percentage span{
		margin-top: 1px;
	}
	
	
	.input_container input.text, .input_container select{
		width: 50%;
	}
	.input_container .feedback{
		display:block; float: left; width: 10%; height: 10px; padding-top:6px;
	}
	
	
	/*stretch input_containers with class full out to full width */
	div.full{width: 100%;  /*clear:both;*/}
	div.full input.text, div.full select{width: 43%;}
	div.full label{width: 50%;}
	
	
	/* shorten .short inputs for full containers */ 
	div.full input.short, div.full select.short{
		width: 18%;
	}
	
	div.clear{clear:left;}
	
	
	/*stretch input_containers with radio buttons out to full width */
	div.radio{width: 100%;}
	
	
	/* ------------------- */
	/*  Plain Text Inputs  */
	/* ------------------- */
		
	
	/* ------------------- */
	/*  Select Text Inputs  */
	/* ------------------- */
		div.select{
			 /*clear:both;*/
		}
		
		div.single_select{
			width: 100%;
		}
		select.single_select{
			width: 280px;
		}
		
	
	/* ------------------- */
	/*     Percentages     */
	/* ------------------- */
		div.percentage input.percentage{
			width: 40px;
		}
		
	/* ------------------- */
	/*  Radio Buttons      */
	/* ------------------- */
		/*.input_container.radio li{ float: left;}	
		.input_container.radio label{width: auto;padding-right: 10px;}
		
		.radio.full ul{float: left; width: 95%;}
		.radio.full li{width: 100%; clear: both; padding:6px 0;}
		.radio.full label{width: 92%;}
		.radio.full .feedback{float: left; width: auto;}*/
	
	

	div.radio_group{
		float: left; position: relative;  width: 100%;
	}
	.radio_group span.feedback{
	  position: relative; float: left; top: 0px;
	}	
	
	table.radiogroup{
		float: left; width: 90%; margin: 0;
	}
	
	table.widthauto{
		width:auto;
	}
	table.radiogroup td{
		padding: 0 0 4px 0; position:relative; background-color: transparent; border: none; vertical-align: top;
	}
	
	table.widthauto td{
		padding-right: 10px;
	}
	
	.radio_container{
		height: 100%; position:relative; float: left;
	}
	
	.radio_container label{
		display:block; padding-left: 8px; width: auto; max-width: 90%;  margin: -1px 0 0 0;
	} 
	
	.radio_input{ margin: 0; padding: 0;
		/*display: block;width: 20px; height: 20px; position: absolute; left: 0; top: 0; background-color:#0066FF;*/ display: inline;
	}
	.radio_input input{
	 margin: 0;
	}
  
	
	
	/* ------------------- */
	/*    Check boxes      */
	/* ------------------- */
		div.checkbox{width: auto;}	
		input.checkbox{float: left;}
		.checkbox.label{float: left; width: auto;}	
	
		
	/* ------------------- */
	/*      Textareas      */
	/* ------------------- */
		div.textarea{width: 100%;}	
		div.textarea label{padding: 10px 0 5px 0; width: auto;}
		div.textarea .feedback{float: left; width: auto;}
		.input_container textarea{float: left; resize: none;}
	
	
	/* ------------------ */
	/*  Date Inputs	      */
	/* ------------------ */
	
		div.date{width: auto; width: 60%;}
		div.date label{width: auto; padding-top: 1px;}
	
		
		.input_container select.day, .input_container select.month{width: 14%;}
		.input_container select.year{width: 19%;}
		
	/* --------------------- */
	/*  Phone Number Inputs	 */
	/* --------------------- */
		div.input_container input.area{width: 11%;}
		div.input_container input.phone{width: 36%;}
		
		
	/* --------------------- */
	/*    Address Inputs	 */
	/* --------------------- */
	
		.address{ position: relative; z-index: 100; }
		.address label{width: 28%;}
		div.address_details .input_container input, div.address_details .input_container select{
			width: 55%;
		}
		
		
		
		
		.address_search_cont{
			border: #efefef 1px solid; padding: 10px;  margin: 10px 0 15px 0; width: 90%; background-color: #fcfcfc;float: left;
		}
		
			.address_search_cont .address_search{
				float: left; padding: 10px 0 0 0; overflow: hidden; margin-bottom: 8px;
			}
			
				.address_search div.text{
					width: 210px;
				}
				.address_search div.street_add{
					width: 380px;
				}
				.address_search div.text input{
					width: 140px;
				}
				.address_search div.street_add input{
					width: 300px;
				}
				
				.address_search .button{
					display: block; float: left; margin-top: 3px;
				}
		
				.address_search_cont .address_search p{
					position: relative; padding:0; margin: -4px 0  12px 0;
				}
			
				.address_search_cont .address_search label{
					width: 50px;
				}
		
    
    
      .address_search .progress{
      	display: block; float: left; width: 20px; height: 20px;
      }
      
      .address_search_cont .use_addresing{
      	clear: both;
      }
      
      .address_search .button{
      	float: left; margin-right: 10px;
      }
      
      

    			
		.address .use_addressing{
			float: left; padding: 0; margin: 0;
		}
    
    
		
		
		.address div.flat{width: 22%;}
		.address div.number{width: 28%; position: relative; right: 3px;}
		
		.address_details div.flat label{width: 64%;}
		.address_details div.number label{width: 46%;}
		
		.address_details div.flat input{width: 15%;}
		.address_details div.number input{width: 25%;}
		

	
		.input_container.fulladdress label{width: 16%;}
		.input_container.fulladdress input.autoComplete{width: 76%;}
	
	.address{  }

.results{
	position: absolute; top: 90px; left: 0; width: 550px;
	border:#ccc 1px solid; z-index:1000; background-color:#fff;
}

#addresses{
  margin: 0; padding: 0;
}

#addresses li{
	background-image: none; margin: 0; padding: 0; list-style:none;
}

#addresses li a{
	display: block; border: none; padding: 5px 10px; color: #444; text-shadow:none;
}
#addresses a:hover{
	cursor:pointer; background-color: #999; color: #fff;
}

#addresses .odd{
	background-color: #f9f9f9;
}
	
	
	
	.input_container label .dollar{
		position: absolute; right: 0; top: 0;
	}



/*debug backgrounds*/
/*.row{background-color: #cff ;} .rowName{background-color: #f9f9f9;} .rowContent{background-color: #f1f1f1;}*/	




.input_group{
	float: left; width: 100%; clear: both; position: relative;
}

.question{
	position: relative; float: left; width: 100%; clear:right; padding: 0px 0 5px 0; font-weight: bold;  margin: 15px 0 10px 0;  border-bottom: #f5f5f5 1px solid;
}

.firstquestion{
  margin-top:2px;
}

/*IE6 needs this to clear questions. hide in all other browsers*/
.ie_clear{display: none;}


/* ----------------------------------- */
/*  Form Elements and Custom Elements  */
/* ----------------------------------- */

	/* All inputs floated so parent containers know their height */
	label, input, select, textarea{ display: block;position: relative;float:left;margin: 0 8px 0 0; }
	
	textarea{ width: 90%; }
	
	.rowContent input.textSmall{
	width: 33px;
}

#progress{
	display: none;
}



label.monetary{
	padding-right: 8px;
}

label.long{
	width: 200px;
}

label.monetary span, label.total span{
	position: absolute;
	right: -6px;
	top: 1px;
}




.rowContent select.short{
	width: 48px;
}

.rowContent select.period{
	width: 120px;
}


.rowContent input.percentage{
	width: 40px;
	text-align: right;
	padding: 1px 2px 1px 0;
}

.rowContent .total{
	float: left;
}


.feedback-display{
  border: #ccc 1px solid; padding: 10px 20px; -moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6px;
}

.ok{
  background-color: #ddffdd; border-color: #99cc99;
}
.error{
  background-color: #fff1f1; border-color: #dd7777;
}

.highlight{
  background-color: #ffefe6; border-color: #ff5800;
}


 
/* /additional_styles/jquery.lightbox.css */
/*
 * jQuery Lightbox Plugin (balupton edition) - Lightboxes for jQuery
 * Copyright (C) 2008 Benjamin Arthur Lupton
 * http://jquery.com/plugins/project/jquerylightbox_bal
 *
 * This file is part of jQuery Lightbox (balupton edition).
 * 
 * jQuery Lightbox (balupton edition) is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 * 
 * jQuery Lightbox (balupton edition) is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 * 
 * You should have received a copy of the GNU Affero General Public License
 * along with jQuery Lightbox (balupton edition).  If not, see <http://www.gnu.org/licenses/>.
 *
 * @name jquery_lightbox: jquery.lightbox.css
 * @package jQuery Lightbox Plugin (balupton edition)
 * @version 1.3.0-rc1
 * @date August 24, 2008
 * @category jQuery plugin
 * @author Benjamin "balupton" Lupton {@link http://www.balupton.com}
 * @copyright (c) 2008 Benjamin Arthur Lupton {@link http://www.balupton.com}
 * @license GNU Affero General Public License - {@link http://www.gnu.org/licenses/agpl.html}
 * @example Visit {@link http://jquery.com/plugins/project/jquerylightbox_bal} for more information.
 */

html, body { margin: 0; padding: 0; height: 100%;}

#lightbox, #lightbox-overlay {
	position: absolute;
	top: 0px;
	left: 0px;
	bottom:auto;
	right:auto;
	
	z-index:100;
	width:100%;
	height:auto;
	
	text-align:center;
	color:#333333;
	
	/* stop stupid conflicts */
	margin:0px;
	padding:0px;
	border:none;
	outline:none;
	line-height:0;
	
	/* general conflict stopper */
	text-decoration:none;
	background:none;
	word-spacing:normal;
	letter-spacing:normal;
	float:none;
	clear:none;
	display:block;
}

#lightbox a, #lightbox a:link, #lightbox a:visited, #lightbox a:hover {
	text-decoration:underline;
	color:#999999;
}

#lightbox-overlay {
	z-index: 90;
	background-color:#000000;
	height: 100%;
	position:fixed;
}
#lightbox-overlay-text {
	text-align: right;
	margin-right: 20px;
	margin-top: 20px;
	color: white;
	font-size: 12px;
	cursor: default;
	line-height:normal;
}
#lightbox-overlay-text a, #lightbox-overlay-text a:hover, #lightbox-overlay-text a:visited, #lightbox-overlay-text a:link {
	color:white;
}
#lightbox-overlay-text span {
	padding-left:5px;
	padding-right:5px;
}

#lightbox img, #lightbox a img, #lightbox a { border:none; outline:none; }

#lightbox-imageBox {
	position:relative;
	border:1px solid black;
	background-color:white;
	width:400px;
	height:400px;
	margin:0 auto;
}

#lightbox-imageContainer {
	padding:1px;
}

#lightbox-loading {
	position:absolute;
	top:40%;
	left:0%;
	height:25%;
	width:100%;
	text-align:center;
	line-height:0;
}

#lightbox-nav {
	position:absolute;
	top:0;
	left:0;
	height:100%;
	width:100%;
	z-index:10;
}
/* #lightbox-imageBox > #lightbox-nav { left: 0; } 
#lightbox-nav a { outline: none; }*/


#lightbox-nav-btnPrev, #lightbox-nav-btnNext {
	display:block;
	width:49%;
	height: 100%;
	background:transparent url("../images/blank.gif") no-repeat; /* Trick IE into showing hover */
	/* cursor:pointer; */
	zoom:1; /* who knows why? */
	
	padding:0px;
	margin:0px;
}
#lightbox-nav-btnPrev { 
	left:0;
	right:auto;
	float:left;
}
#lightbox-nav-btnNext { 
	left:auto;
	right:0;
	float:right;
}
/*
.preload_largeLink, #prevLink:hover, #prevLink:visited:hover {
	background:url("../images/prev.gif") left 45% no-repeat;
}
.preload_nextLink, #nextLink:hover, #nextLink:visited:hover {
	background:url("../images/next.gif") right 45% no-repeat;
}
*/

#lightbox-infoBox {
	font:10px Verdana, Helvetica, sans-serif;
	background-color:#FFFFFF;
	margin:0 auto;
	padding:0px;
	
	/* width: 100%;
	padding: 0 10px 0; */
}

#lightbox-infoContainer {
	padding-left:10px;
	padding-right:10px;
	padding-top:5px;
	padding-bottom:5px;
	color:#666;
	
	line-height:normal;
	/* height:30px; */
}
#lightbox-infoHeader {
	width:100%;
	text-align:center; 
}
#lightbox-caption {
	text-align:justify;
}
#lightbox-caption-title {
	font-weight:bold;
}
#lightbox-caption-description {
	font-weight:normal;
}

#lightbox-infoFooter {
	margin-top:3px;
	color:#999999;
}
#lightbox-currentNumber {
	display:block;
	width:49%;
	float:left;
	text-align:left;
}
#lightbox-close {
	display:block;
	width:45%;
	float:right;
	text-align:right;
}
#lightbox-close-button{
	padding-left:30%;
}
#lightbox-close-button:hover {
	color:#666666;
}

#lightbox-infoContainer-clear {
	clear:both; 
	visibility:hidden;
} 
/* /additional_styles/sitewide_components.css */
/* -------------------- */
/*     Breadcrumbs      */
/* -------------------- */

#breadcrumbs{
				position: relative; padding: 0 15px; height: 25px;
				
				margin:5px 0 19px 0; 
  z-index: 10;
				
			}
				#crumbs-img{
					display: block; position: absolute; left: 5px; top: -9px;
					width: 58px; height: 50px; 
				}
			
				#breadcrumbs ul{
					position: absolute; top: -9px; left: 2px; height: 50px;
					margin: 0; padding: 0px;
				}
			
				#breadcrumbs li{
					position: relative; display: block; float: left;
					height: 25px; line-height: 25px; top: 9px;
					margin: 0; list-style: none; padding: 0;
				}
				
				#breadcrumbs li.first{
					margin-left: -3px; -moz-border-radius: 8px; -webkit-border-radius: 8px;
				}
				
					#breadcrumbs li a{
						position: relative; display: inline-block;  padding: 0 25px 0 10px; 
					}
					
					#breadcrumbs li.first a{
						padding-left: 68px;
					}


#login_details{
	position: absolute; right: 0; bottom: -50px;
}



#content_details{
  z-index: 1;
}


#ad{
	background-color: #f1f1f1; border: #ccc 1px solid; height: 300px; margin: 0 0 10px 0;
}


.fundit-box{
	border: #ccc 1px solid;
	 margin: 0 0 15px 0; padding-bottom: 10px;
  -moz-border-radius-bottomleft 	: 8px;
  -webkit-border-bottom-left-radius: 8px;
  
}

.fundit-box h3{
	border: #ccc 1px solid; border-width: 0 0 1px 0;
	padding: 8px 2px; margin: 0 10px;
}

.fundit-box ul{
	margin: 12px;
}
.fundit-box li{
	margin: 3px 0px; list-style: none;
}


/* ---------------------------- */
/*       Fundit Reports         */
/* ---------------------------- */

/**
 * The report layout is used for pages such as the application and bid details
 */

.report{
  position: relative;
}

.report table{
  border-collapse: collapse; width: 620px;
}

.report td, .report th{
  padding: 2px 15px 2px 0; background-color: transparent;
}

.report th{
  width: 280px;
}
.report thead th{
  width: auto;
}

.report .sections ul{
  padding: 0; margin: 0;
}


  .report .section{
   border: #ccc 1px solid; margin-bottom: 10px; clear: both; position:relative; display: block; background-color: #fff;
   
  /* some nice extra stuff for "good" browsers */
  -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; -o-border-radius : 6px; 
  }
  
  .report .sections li{
    background-image: none; display:inline; padding: 8px 0; margin: 0 10px 0 0;
  } 


  .report .section h3{
    background: #ccc; margin: 0; padding: 5px 10px; background:url(../images/buttons/gradient_button.gif) left 0px repeat-x; border-bottom: #ccc 1px solid; color: #555;
    
    /* some nice extra stuff for "good" browsers */
    -webkit-border-top-left-radius: 6px;
    -webkit-border-top-right-radius: 6px;
    -moz-border-radius: 6px 6px 0  0;

  }
  
  

    .report .section .section_content{
      padding: 10px 20px; background-attachment: #fff;
    }

      .report .section .subsection{
        position: relative; padding: 10px 0; border-bottom: #f5f5f5 1px solid;
      }
  
      .report .section .subsection .subsection_content{
        margin-left: 250px;
      }

      .report .section .subsection h4{
        position: absolute; padding: 0; margin: 0; left: 0; font-size: 16px;
      }


      .report .section .subsection h5{
        padding: 7px 0 3px 0; font-size: 14px; font-weight: normal;
      }

  .report .section .to-top{
     margin: 10px 0;  text-align: right;
  }

  
/* ------------------------ */
/*        Ad spaces         */
/* ------------------------ */

.ad-medium-rectangle{
  margin-bottom: 10px; padding: 0;
}

.ad-medium-rectangle img{
  margin: 0; padding: 0; 
}

/* ------------------------ */
/*        MoneyMates        */
/* ------------------------ */

.moneyMate{
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  text-indent: -2000px;
  background:url(../images/icons/moneymate_v2.gif) top center no-repeat;border: 0;
}
.moneyMate:hover{
  background-position: bottom center;
}


.moneyMatePopup .ui-widget-content{
	margin-top: 10px;
}

/* ------------------------ */
/*    form components       */
/* ------------------------ */

.button{
   -webkit-border-radius: 2px;
   -moz-border-radius: 2px;
   border-radius: 2px;

} 

.loading_small{
  display: block; float: left; width: 20px; height: 20px; background:url(../images/branding/loading_small.gif) top left no-repeat; text-indent: -9999px;
}

#tooltip {
  position: absolute;
  z-index: 3000;
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 5px;
  opacity: 0.85;
}

#tooltip h3, #tooltip div { margin: 0; }

/* ------------------------ */
/*       Screen Logs        */
/* ------------------------ */

pre{
  overflow:auto; background-color: #f5f5f5; width: 100%;
}






   
   
/* /additional_styles/minor_page_specific_styles.css */
/* ------------------- */
/*    Landing Pages    */
/* ------------------- */

body.landing #content{
  /*background: url(../images/layout/text_bg_grad.jpg) left top no-repeat;*/
}
  
  body.landing #content #summary{
    padding: 0 0 10px 10px; border-bottom: #ccc 1px solid; margin-bottom: 15px ;
  }
  
  body.landing #content .directory{
    position: relative; margin: 0; margin-top: -10px;
  }
  
    body.landing #content .directory li{
      position: relative; padding: 10px 0 10px 30px; margin: 0; list-style:none;
      border-bottom: #ccc 1px solid;  background: url(../images/icons/cross.gif) 5px 14px no-repeat; 
    }
      body.landing #content strong{
        display:block;margin-bottom: 5px;
      }
        body.landing #content strong a{
          font-size: 15px; 
        }
      
      body.landing #content .view{
        display:block; position: absolute; right: 0; top: 26px; height: 20px; width: 80px; border: none;
        background:url(../images/icons/moneymate_v2_orange.gif) right top no-repeat;
      }
        
          body.landing #content .view span{
            display: block;  float: left; padding: 0; position: relative; top: 4px;
          }
					

/* ------------------- */
/*    Glossary page    */
/* ------------------- */          
 #glossary_terms ul{
   list-style:none; margin-left: 0; padding-left: 0;
 }
 
 #glossary_terms li{
   list-style:none; margin-left: 0; padding-left: 0;
 }
 
/* --------------------- */
/*    Calculator page    */
/* --------------------- */    
  
#finanztools{
  margin: 20px 10px 0 10px; float: right;
}

#calculator_container{
  background-color: #eee; margin: 20px 0; padding: 20px 0;
}
#calculator_container object{
 margin-left: 145px; border: #ccc 1px solid;
}


/* ------------------------------ */
/*    Challenge your bank page    */
/* ------------------------------ */

 #thechallenge{
   font-size: 19px;
 }
 
 #thechallenge .first{
   position: relative; left: -5px;
 }

 #challenge_form th{
   width: 72px; padding-right: 0;
 }

 #challenge_form #banks_checkboxes{
   margin: 0; padding: 0;
 }

 #challenge_form #banks_checkboxes li{
   position: relative; float: left; width:95px; margin: 0; padding: 0;
   list-style: none;
 }
 
 
 #challenge_form #banks_checkboxes label{
   display: block; float: left; width: 50px;
 }

#change-password .input_container{
  clear:both;
}


 
/* /additional_styles/frontpage.css */

#feature{
  margin: 5px 0 14px 0; height: 425px; 
  background:url("../images/layout2/feature_bg.jpg") 0 0  repeat-x; position: relative;
}

#feature h2{
  color: #f25800;border: none; padding-bottom: 10px;
}

#feature .image{
 /*background: url(../images/homepage/featusre_mac_fundit.jpg) 0 0 no-repeat;*/ height: 295px; margin-left: 1px; padding-right: 30px; margin-right: -30px;
}

#feature img{
  margin-top: 5px; z-index: 0; position: relative; left: 1px; 
}

#feature #feature-text{
  position: relative; z-index: 3; color: #ccc; margin-top: 30px; width: 440px; height: 200px; font-size: 14px; text-indent: -9999px;
  background:url("../images/layout2/feature_text.gif") 10px 0 no-repeat;  
}

#sign_up{
  position: absolute; right: 24px; top: 248px;
}

#steps{
  margin-top: 10px; 
}
#steps h3{
  margin: 3px 0 10px 35px; color: #ccc; text-indent: -9999px; background:url("../images/layout2/just_four_easy_steps.gif") 0 0 no-repeat;  height: 29px;
}

#steps .first h4, #steps .first p{
  margin-left:12px;
}

#steps h4{
  margin: 0; background:  url(../images/layout2/4_steps.gif) no-repeat; height: 35px; 
}


#steps h4 a{
  display: block; text-shadow:none; color: #ccc; text-indent: -9999px; padding: 0; height: 100%;
}

#auction h4{
	background-position: -238px;
}

#choose h4{
	background-position: -487px;
}
#finalize h4{
	background-position: -727px;
}

#steps p{
  margin: 5px 0 13px 0; color: #ccc; font-size: 12px;
}

#steps div{
  background:url(../images/layout2/arrow.gif) right 18px no-repeat; position: relative; left: 15px; margin-top: 5px;
}

#steps div.last{
  background: none;
}
#steps #apply{
  width: 205px;
}
#steps #auction{
  width: 210px;
}
#steps #choose{
  width: 190px;
}
#steps #finalize{
  width: 250px;
}


#get-started{
  margin-top: 15px;
}

#get-started .span-8{
 text-align:center;
}
#get-started a{
  margin: 0 40px;  
}


#refer_a_friend, #challenge{
  background-color: #ccc; -moz-border-radius: 8px;
}

#refer_a_friend *{
	text-indent: -9999px;
}

#refer_a_friend img{
	text-indent: none; position: absolute; top: 0; left: 0;
}	

#refer_a_friend a{
 display: block; height: 30px; width: 100px; overflow: hidden; background-image: url(../images/fixes/blank.gif);
}

#refer_a_friend #refer_link{
	position: absolute; right: 10px; top: 100px; width: 160px;
}

#refer_a_friend #register_link{
	position: absolute; right: 10px; top: 135px; width: 100px;
}


#refer_a_friend {
	position: relative; display: block; margin-top: 1px; margin-left: -9px; padding-right: 9px; height: 210px; overflow: hidden;
}



#you-get{
  background-color: #ccc; min-height: 210px;  background:url("../images/layout2/you_get_accordian.gif") bottom left no-repeat;  
}

#you-get h3{
  margin: 0; height: 55px; text-indent: -9999px; background:url("../images/layout2/you_get_accordian.gif") top left no-repeat;  
}

#you-get .accordian{
  margin-top: 0px; padding-bottom: 12px;
}

#you-get .acc_item{
  background:url("../images/layout2/you_get_accordian.gif") top left no-repeat;
}

#you-get .acc_button{
  height: 47px; margin: 0; padding: 0;
}

#you-get .acc_button *{
  text-indent: -9999px; height: 0; overflow: hidden;
}

#you-get .acc_content{
	background-color: #fefefe; padding: 15px 30px 0 30px;
  
}

#you-get h4{
  border: none;
}

#you-get #control{
  background-position: 0 -54px;
}

#you-get #transparency{
  background-position: 0 -100px;
}

#you-get #convenience{
  background-position: 0 -145px;
}


#blog-links h3{
  color: #666; margin: 10px 0;
}

#blog-links h4{
  font-size: 13px; font-weight: normal;
}



.accordian{
	margin: 0; padding: 0; position:relative; 
}

.accordian .acc_item{
	background-image: none; margin: 0; padding: 0; position:relative; list-style:none; 
}

.accordian .acc_button{
	  padding: 13px 0 10px 10px; position:relative; 
}

.accordian .acc_button:hover, .accordian .acc_button *:hover{
	cursor:pointer;
}

.accordian .acc_content{
	background-color: #f9f9f9; border:#ccc 1px solid; padding: 10px; margin-bottom: 2px;
}

.accordian .how{
	position: absolute;  top: 12px; right: 40px; color: #f25b29; text-decoration: underline;
}

.accordian h4{
	float: left; display:block; width: 110px; margin: 0 15px 0 0; border-right: #ccc 1px solid; font-size: 16px;
} 