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

/* Colors
-------------------------------------------------------------- */
.color-juicy 	{ color: #AAC805; }
.color-green 	{ color: #6B7C0F; }
.color-lavendel { color: #9C6855; }
.color-white 	{ color: #FFF; }
.color-dark 	{ color: #303030; }

.bg-juicy 		{ background-color: #AAC805; }
.bg-green 		{ background-color: #B6D93A; }
.bg-lavendel 	{ background-color: #9C6855; }
.bg-white 		{ background-color: #FFF; }
.bg-dark 		{ background-color: #303030; }


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

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

h1, .h1 { font-size: 3em; margin-bottom: 0.5em; }
h2, .h2 { font-size: 2em; margin-bottom: 0.5em; }
h3, .h3 { font-size: 1.7em; margin-bottom: 0.5em; }
h4, .h4 { font-size: 1.4em; margin-bottom: 0.75em; }
h5, .h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6, .h6 { font-size: 1em; font-weight: bold; }

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

.head-color h1, .head-color h2, .head-color h3, .head-color h4, .head-color h5,
.head-color .h1, .head-color .h2, .head-color .h3, .head-color .h4, .head-color .h5 { color: #6B7C0F; }


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

p           { margin: 0 0 1.3em; }
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; }

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


/* Additional Font Classes
-------------------------------------------------------------- */

.font-arial { font-family: Arial, Helvetica, sans-serif; }
.font-times { font-family: "Times New Roman", Times, serif; }
.font-verdana { font-family: Verdana, Arial, Helvetica, sans-serif; }
.font-helvetica { font-family: Helvetica, Arial, sans-serif; }
.font-cambria { font-family: Cambria, serif; }
.font-uppercase { text-transform: uppercase; letter-spacing: 1px; }
.font-italic { font-style: italic; }
.font-bold { font-weight: bold; }
.font-underline { text-decoration: underline; }
.font-size-10, .para-size-10 p { font-size: 10px; }
.font-size-13, .para-size-13 p { font-size: 13px; line-height: 1.6em; }
.font-size-15, .para-size-15 p { font-size: 15px; line-height: 1.5em; }
.font-size-18, .para-size-18 p { font-size: 18px; line-height: 1.4em; }
.font-size-22, .para-size-22 p { font-size: 22px; line-height: 1.6em; }
.font-size-3em { font-size: 3em; }
.font-size-2em { font-size: 2em; }
.font-size-15em { font-size: 1.5em; }
.font-height-14 { line-height: 1.4em; }
.font-para-16 { font-size: 16px; word-spacing: 5pt; line-height: 1.4; }

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

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

ul.itemize p, ul.listItemize p { margin: 0 0 5px 0; }

/* Misc classes
-------------------------------------------------------------- */

.small      { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large      { font-size: 2.1em; line-height: 1.7em; margin-bottom: 1.25em; }
.hide       { display: none; }
.marker 	{ background-color: #C8CEA5; font-weight: bold; padding: 0 5px; }

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

