/*  This file is part of Mura CMS (www.getmura.com).

    Mura CMS is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, Version 2 of the License.

    Mura CMS 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 General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with Mura CMS.  If not, see <http://www.gnu.org/licenses/>.

*/

/*
  typography.css
  These styles control type styles on the front-end of a site as well as in the editor on the back-end,
  allowing consistent typographic display in both places and elimintaing the need to edit 2 stylesheets.

  If you prefer to have a single .css file (and not use this file),
  just comment out or remove the '@import url(typography.css);' line in style.css
  and add your type styles into your preferred stylesheet (usually 'site.css').
*/

/*  Some styles, ideas, and concepts derived from:

  Eric Meyer Reset - http://meyerweb.com/eric/tools/css/reset/index.html
  BlueprintCSS - http://code.google.com/p/blueprintcss/
  YUI - http://developer.yahoo.com/yui/
*/



/* @group General Text Elements
===================================== */

body {
  font-family: Arial, sans-serif;
  font-size: 62.5%;
  line-height: 1.2;
  }

p, li, table, blockquote {
  margin-bottom: 1em;
  line-height: 1.25;
  }

p, li, dt, dd, table { font-size: 1.4em; }

p.intro { font-size: 1.5em; }

li *, dt *, dd *, td *, th * { font-size: 1em; }

a
{
  text-decoration: none;
  color: #004276;
}

blockquote, q { padding: 0 4em; quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
blockquote p {} /* Reminder to always include blockquote content in a <p> */
blockquote div cite { font-style: italic; }

strong, b { font-weight: bold; }
em, i { font-style: italic; }

ins { text-decoration: none; }
del { text-decoration: line-through; }

abbr, acronym { border-bottom: 1px dotted; cursor: help; }

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

/* @end General Text Elements
-------------------------------- */


/* @group Headings (H1-H6)
===================================== */

h1 a
{
  display: block;
}

h1, h2, h3, h4, h5, h6
{
  font-size: 2.2em;
  font-weight: bold;
  color: #333333;
  margin-top: 15px;
  margin-right: 0;
  margin-bottom: 0.5em;
  margin-left: 0;
  font-family: Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4
{  
  padding-left: 0px;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: #688A11;
  margin-bottom: .75em;
}

.sidebar h3 {
  margin-bottom: .5em;
  font-size: 1.4em;
  }

h4
{
  font-size: 2em;
}

.sidebar h4 {
  font-size: 1.8em;
  }

h5 {
  font-size: 1.4em;
  }

.sidebar h5 {
  font-size: 1.2em;
  }

h6 {
  font-size: 1.2em;
  }

.sidebar h6 {
  font-size: 1.1em;
  }

/* @end Headings (H1-H6)
-------------------------------- */



.blockbody h4 {
  color: #333333;
  font-size: 14px;
  border-bottom-width: 1px;
  padding-left: 0px;
  margin-top: 20px;
  border-bottom-color: #999999;
  line-height: 20px;
}

.blockbody ul {
  list-style-image: none;
  list-style-type: none;
  padding-left: 0px;
}
.blockbody ul li {
  padding-top: 10px;
  font-size: 14px;

  line-height: 15px;
}
.blockbody ul li a:hover {
  text-decoration: underline;
}


/* EOF */
