/* -------------------------------------------------------------- 
  
   reset.css
   * Resets default browser CSS.
   
   Based on work by Eric Meyer:
   * meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/
   
-------------------------------------------------------------- */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6,  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; background: #fff; margin:1.5em 0; font-family: "Helvetica Neue",Helvetica,"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, sans-serif; }

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

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

a img { border: none; }

/* -------------------------------------------------------------- 
   
   typography.css
   * Sets up some sensible default typography.
  
   Based on work by:
   * Nathan Borror     [playgroundblues.com]
   * Jeff Croft        [jeffcroft.com]
   * Christian Metts   [mintchaos.com]
   * Wilson Miner      [wilsonminer.com]
   * Richard Rutter    [clagnut.com]
   
   Read more about using a baseline here:
   * alistapart.com/articles/settingtypeontheweb
  
-------------------------------------------------------------- */

/* This is where you set your desired font size. The line-heights 
   and vertical margins are automatically calculated from this. 
   The percentage is of 16px (0.75 * 16px = 12px). */
   
body { font-size: 75%; }


/* Default fonts and colors. 
   If you prefer serif fonts, remove the font-family 
   on the headings, and apply this one to the body:
   font: 1em Georgia, "lucida bright", "times new roman", serif; */
   
body { 
  color: #333; 
  /*font: 1em Georgia, "lucida bright", "times new roman", serif; */
	font-family: "Helvetica Neue", Helvetica, "Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, sans-serif;
  /*font-family: Verdana, Arial, san-serif;*/
  /*font-family: "Helvetica Neue", "Lucida Grande", Helvetica, Arial, Verdana, sans-serif; */
}
h1,h2,h3,h4,h5,h6 { 
  font-family: Arial, sans-serif;
  color: #111; /* should be darker */
  /*font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; */
}

b,strong { color: #111; }  /* should be darker */


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

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

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: 1.1em; font-weight: bold; margin-bottom: 1.5em; }
h6 { font-size: 1em; font-weight: bold; }


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

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

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

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

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

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: 2px solid #ccc; font-weight: bold; }
td      { border-bottom: 1px 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; }


/* -------------------------------------------------------------- 
   
   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; }


/* 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: 300px; margin:0.5em 0.5em 0.5em 0; padding:5px;  }
input.text, input.title   { border:1px solid #bbb; background:#f6f6f6;  }
input.text:focus,
input.title:focus         { border:1px solid #999; background:#fff; }
input.title               { font-size:1.5em; }

/* Textareas */
textarea            { width: 400px; height: 250px; margin:0.5em 0.5em 0.5em 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; } */

.text-shadow { text-shadow: 0.1em 0.1em 0.2em black;  }

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

.error a,.minierror a    { color: #D12F19 !important; }
.notice a,.mininotice a  { color: #817134 !important; }
.success a,.minisuccess a  { color: #529214 !important; }

.error .err { margin-top: 8px; display:block;  }

.error h3,.minierror h3    { color: #D12F19 !important; font-family: arial;  }
.notice h3,.mininotice h3   { color: #817134 !important; font-family: arial;  }
.success h3,.minisuccess h3  { color: #529214 !important; font-family: arial; }


.mininotice,
.minisuccess,
.minierror      { padding: 0.5em; margin-bottom: 0.2em; border: 2px solid #ddd; font-size:1.0em; }

.error,.notice,.success,.minierror,.minisuccess,.mininotice { cursor: pointer; }

.rounded-big { -moz-border-radius: 8px; -webkit-border-radius: 8px;  }
.rounded {  -moz-border-radius: 4px; -webkit-border-radius: 4px;  }

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

   css-classes.css
   * Classes for CSS development
   
   See the Readme file in this directory
   for further instructions.
   
-------------------------------------------------------------- */

.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; } 

.inline { display: inline; }

.block { display:block; }


.showcase
{
	padding:15px;
}

.showcase img
{
	float:left;
	margin-bottom:10px;
	margin-left:15px;
	padding:3px;
	border:#ABABAB solid 1px;
}
/* -------------------------------------------------------------- 
  
   fancy-type.css
   * Lots of pretty advanced classes for manipulating text.
   
   See the Readme file in this folder for additional instructions.

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

/* Indentation instead of line shifts for sibling paragraphs. */
/*   p + p { text-indent:2em; margin-top:-1.5em; } */

/* Ornaments on first paragraph.
   Commented out by default. Use with care.
   p:before { content: "\2767"; padding-right: 0.4em; }
   p + p:before { content: ""; padding:0; } */

/* For great looking type, use this code instead of asdf: 
   <span class="alt">asdf</span>  
   Best used on prepositions and ampersands. */
  
.alt { 
  color: #666; 
  font-family: "Warnock Pro", "Goudy Old Style","Palatino","Book Antiqua", Georgia, serif; 
  font-style: italic;
  font-weight: normal;
}


/* For great looking quote marks in titles, replace "asdf" with:
   <span class="dquo">&#8220;</span>asdf&#8221;
   (That is, when the title starts with a quote mark). 
   (You may have to change this value depending on your font size). */  
   
.dquo { margin-left: -.5em; } 


/* Reduced size type with incremental leading
   (http://www.markboulton.co.uk/journal/comments/incremental_leading/)

   This could be used for side notes. For smaller type, you don't necessarily want to 
   follow the 1.5x vertical rhythm -- the line-height is too much. 
   
   Using this class, it reduces your font size and line-height so that for 
   every four lines of normal sized type, there is five lines of the sidenote. eg:

   New type size in em's:
     10px (wanted side note size) / 12px (existing base size) = 0.8333 (new type size in ems)

   New line-height value:
     12px x 1.5 = 18px (old line-height)
     18px x 4 = 72px 
     72px / 5 = 14.4px (new line height)
     14.4px / 10px = 1.44 (new line height in em's) */

p.incr, .incr p {
	font-size: 10px;
	line-height: 1.44em;  
	margin-bottom: 1.5em;
}


/* Surround uppercase words and abbreviations with this class.
   Based on work by J??rgen Arnor G??rds?? Lom [http://twistedintellect.com/] */
   
.caps { 
  font-variant: small-caps; 
  letter-spacing: 1px; 
  text-transform: lowercase; 
  font-size:1.2em;
  line-height:1%;
  font-weight:bold;
  padding:0 2px;
}
.formRow
{
	padding:5px;
	width:100%;
	clear:both;
	font-size:1em;
}

.formLabel
{
	text-indent: 5px;
	padding-bottom:1em;
	float:left;
	clear:both;
	text-align:left;
	width:120px;
}

label {
	font-size: 1.0em;
}

.formElement
{
	margin-left:120px;
	padding:0 0 1em 10px;
}

div.focused {
    background-color:#FFF7C0;
}

.red {
	color: #ff0000;
}

.greytext {
	color: #858585;
}

.clear {
	clear: both;
}

.textlabel {
	padding-top: 8px;
}

.clickfield {
		color: #828282;
}

span.alt {
	color: #858585;
	font-family: Georgia;
}

 .feedback ul { padding:0; margin:0; border-top: 1px #858585 solid; border-bottom: 1px #858585 solid; }
 .invalid { background: #FBE3E4 !important; border:1px #fb464a solid !important; }

.feedbackPanelERROR,error {
	list-style-type: none;
	background: #FBE3E4; color: #D12F19; border-color: #FBC2C4;
	padding:5px;
}

li.feedbackPanelINFO {
	list-style-type: none;
	background: #FFF6BF;  color: #333;  border-color:#FFD324;
	padding:5px;
}

h3.info  {
	 background: #FFF6BF; 
	 color: #333; 
	 padding: 10px;
	 font-size: 1.8em;
	 border-top: 1px #FFD324 solid;
	 border-bottom:1px #FFD324 solid;
}

div.info  {
	 background: #FFF6BF; 
	 color: #333; 
	 padding: 10px;
	 border-top: 1px #FFD324 solid;
	 border-bottom:1px #FFD324 solid;
}

.container {width: 950px;margin: 0 auto;}
.column {float: left;margin-right: 10px;}
.last { margin-right: 0; }
.span-1 { width: 30px; }
.span-2  { width: 70px;}
.span-3  { width: 110px;}
.span-4  { width: 150px;}
.span-5  { width: 190px;}
.span-6  { width: 230px;}
.span-7  { width: 270px;}
.span-8  { width: 310px;}
.span-9  { width: 350px;}
.span-10  { width: 390px;}
.span-11  { width: 430px;}
.span-12  { width: 470px;}
.span-13  { width: 510px;}
.span-14  { width: 550px;}
.span-15  { width: 590px;}
.span-16  { width: 630px;}
.span-17  { width: 670px;}
.span-18  { width: 710px;}
.span-19  { width: 750px;}
.span-20  { width: 790px;}
.span-21  { width: 830px;}
.span-22  { width: 870px;}
.span-23  { width: 910px;}
.span-24 { width: 950px; margin: 0; }
.append-1 { padding-right: 40px; }
.append-2 { padding-right: 80px; }
.append-3 { padding-right: 120px; }
.append-4 { padding-right: 160px; }
.append-5 { padding-right: 200px; }
.append-6 { padding-right: 240px; }
.append-7 { padding-right: 280px; }
.append-8 { padding-right: 320px; }
.append-9 { padding-right: 360px; }
.append-10 { padding-right: 400px; }
.append-11 { padding-right: 440px; }
.append-12 { padding-right: 480px; }
.append-13 { padding-right: 520px; }
.append-14 { padding-right: 560px; }
.append-15 { padding-right: 600px; }
.append-16 { padding-right: 640px; }
.append-17 { padding-right: 680px; }
.append-18 { padding-right: 720px; }
.append-19 { padding-right: 760px; }
.append-20 { padding-right: 800px; }
.append-21 { padding-right: 840px; }
.append-22 { padding-right: 880px; }
.append-23 { padding-right: 920px; }
.prepend-1 { padding-left: 40px; }
.prepend-2 { padding-left: 80px; }
.prepend-3 { padding-left: 120px; }
.prepend-4 { padding-left: 160px; }
.prepend-5 { padding-left: 200px; }
.prepend-6 { padding-left: 240px; }
.prepend-7 { padding-left: 280px; }
.prepend-8 { padding-left: 320px; }
.prepend-9 { padding-left: 360px; }
.prepend-10 { padding-left: 400px; }
.prepend-11 { padding-left: 440px; }
.prepend-12 { padding-left: 480px; }
.prepend-13 { padding-left: 520px; }
.prepend-14 { padding-left: 560px; }
.prepend-15 { padding-left: 600px; }
.prepend-16 { padding-left: 640px; }
.prepend-17 { padding-left: 680px; }
.prepend-18 { padding-left: 720px; }
.prepend-19 { padding-left: 760px; }
.prepend-20 { padding-left: 800px; }
.prepend-21 { padding-left: 840px; }
.prepend-22 { padding-left: 880px; }
.prepend-23 { padding-left: 920px; }
.colborder { padding-right: 24px; margin-right:23px; border-right:1px solid #eee; }
.pull-1 { margin-left: -40px;}
.pull-2 { margin-left: -80px;}
.pull-3 { margin-left: -120px;}
.pull-4 { margin-left: -160px;}
.push-0  { margin: 0 0 0 18px; float: right; }
.pull-1 { margin:  0 -40px 0 18px; float:right;}
.pull-2 { margin:  0 -80px 0 18px; float:right;}
.pull-3 { margin:  0 -120px 0 18px; float:right;}
.pull-4 { margin:  0 -160px 0 18px; float:right;}
.push-0, .push-1, .push-2, .push-3, .push-4 { float: right; }
.border { padding-right: 4px; margin-right: 5px; border-right: 1px solid #eee; }

.box { 
  padding: 1.5em; 
  margin-bottom: 1.5em; 
  background: #eee; 
}

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;
}

table.midalign td,th { vertical-align: middle; }
table.topalign td,th { vertical-align: top; }
table.borderless td { border-bottom:0; }


br.c { clear:both; }

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

h3.notice { cursor: pointer; }
h3.error { cursor: pointer; }
ul.notype li { list-style-type:none; }
.center { text-align:center; }

