/**
 * @file
 * HTML Element Styling
 *
 * Ok, I admit it. I fooled you. This isn't a "reset" stylesheet. Instead this
 * is the place where you should set (not reset) the default styling for all
 * HTML elements.
 *
 * @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 * @see http://snook.ca/archives/html_and_css/no_css_reset/
 */


body {
  font-size: 100%; /* Fixes exaggerated text resizing in IE6 and IE7 */
}

#skip-link,
#page {
   	font-size: 14px;
  	line-height: 20px;
	color: #646464;
}

body,
caption,
th,
td,
input,
textarea,
select,
option,
legend,
fieldset,
.navbar-search .search-query  {
  font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
}

pre,
code {
  font-size: 1.1em;
  font-family: "Courier New", "DejaVu Sans Mono", monospace;
}

h1 {
  font-size: 26px;
  line-height: 25px;
  margin-top: 0;
  margin-bottom: 20px;
  color: #C53512;
  font-weight: normal;
}

h2 {
  font-size: 18px;
  line-height: 18px;
  margin-top: 0;
  margin-bottom: 15px;
  color: #C53512;
  font-weight: normal;
}

h3 {
  font-size: 1.3em;
  line-height: 1.3em;
  margin-top: 0.769em;
  margin-bottom: 0.769em;
}

h4,
h5,
h6 {
  font-size: 1.1em;
  line-height: 1.3em;
  margin-top: 0.909em;
  margin-bottom: 0.909em;
}


#content-area p, 
#content-area pre,
#content-area table{
  margin: 0 0 10px 0;
  padding: 0;
  table-layout: fixed;
}

#content-area ul,
#content-area ol,
#content-area dl {
	/*margin: 0;
	padding: 0;
	// metschjo 31.08.2013 - 17:20 margin poadding is needed for a better layout!!
	*/
}
.edubreak_comments  ul
{
margin: 0;
	padding: 0;
}


/*
#content-area ul {
	 margin-left: 15px;
}
*/

blockquote {
  margin: 1em 2em;
}

.block ul,
.item-list ul,
#content-area .item-list ul /* Drupal overrides */ {
  margin: 0;
  padding: 0; /* LTR */
}

ul ul, ul ol,
ol ol, ol ul,
.block ul ul, .block ul ol,
.block ol ol, .block ol ul,
.item-list ul ul, .item-list ul ol,
.item-list ol ol, .item-list ol ul {
  margin: 0;
}

li {
  margin: 0;
  padding: 0;
}

.item-list ul li /* Drupal override */ {
  margin: 0;
  padding: 0;
  list-style: inherit;
}

ul.menu li,
li.expanded,
li.collapsed,
li.leaf /* Drupal override */ {
  margin: 0;
  padding: 0;
}

ul          { list-style-type: disc; }
ul ul       { list-style-type: circle; }
ul ul ul    { list-style-type: square; }
ul ul ul ul { list-style-type: circle; }
ol          { list-style-type: decimal; }
ol ol       { list-style-type: lower-alpha; }
ol ol ol    { list-style-type: decimal; }

dt {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0 0 0 2em;
  padding: 0;
}

a:link,a:hover, a:visited, a:active {
  color: #646464;
  font-style: normal;
  font-weight: bold;
  text-decoration: none;
}

a:hover, a:visited, a:active {
  text-decoration: underline;
}
/*
 * Tables
 *
 * Drupal provides table styling which is only useful for its admin section
 * forms, so we override this default CSS. (We set it back in forms.css.)
 */
table {
  border-collapse: collapse;
  /* width: 100%; */ /* Prevent cramped-looking tables */
}

th,
thead th,
tbody th {
  text-align: left; /* LTR */
  padding: 0;
  border-bottom: none;
}

tbody {
  border-top: none;
}

/*
 * Abbreviations
 */
abbr {
  border-bottom: 1px dotted #666;
  cursor: help;
  white-space: nowrap;
}

abbr.created /* Date-based "abbreviations" show computer-friendly timestamps which are not human-friendly. */ {
  border: none;
  cursor: auto;
  white-space: normal;
}

/*
 * Images
 */
img {
  border: 0;
}

/*
 * Horizontal rules
 */
hr {
  height: 1px;
  border: 1px solid #666;
}

