@charset "utf-8";
/* 
* Normally rich text editors require a specific stylesheet and it's a good idea to use Drupal to share part of its .css (not all!) with rich text editor
* So we keep here font size, color and other theme - fonts related classes
*
* !!! Warning - style.css has priority (loading last) and you may override classes from this .css. 
* Suitable for overriding body bg for example - Tiny MCE needs white body bg in most cases and in the themes it's of other color or using graphical background
*
* !!! tinymce typography - When installing WYSIWYG module and tinyMCE - under CSS section - use CSS path: %t/typography.css 
*/


body {
	background:#fff;
}

/* ----- basic HTML elements ----- */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
}
h1 {
  font-size: 1.6em;
  color:#D92927;
  margin-top:10px;
}
h2 {
  font-size: 1.2em;
}
h3, h4, h5, h6 {
  font-size: 1.1em;
}
p {
  margin-top: 0.5em;
  margin-bottom: 0.9em;
}
a {
  text-decoration: none;
  font-weight: bold;
}
a:link {
  color: #39c;
}
a:visited {
  color: #369;
}
a:hover {
  color: #39c;
  text-decoration: underline;
}
fieldset {
  border: 1px solid #ccc;
}
pre {
  background-color: #eee;
  padding: 0.75em 1.5em;
  font-size: 12px;
  border: 1px solid #ddd;
}
table {
  /* make <td> sizes relative to body size! */
  font-size: 1em;
}
td {padding:1em;}

/* - font classes - */