@charset "utf-8";
/* $Id: $ */
/**
 * css-reset script for disabling most of the common differences between browser engines  
 * 
 * @author 			JNamic development, Stefan Hoth <mail@jnamic.com>
 * @copyright 		Copyright (c) 2007-2009 JNamic development GbR ( http://www.jnamic.com ) - All rights reserved.   
 * @license 		http://www.jnamic.com/kontakt If you are interested in using this, please contact <mail@jnamic.com>
 * @link 			http://www.jnamic.com/ JNamic development homepage
 * @filesource 
 *
 * @version			$Revision: $
 * @since			1.0
 * @modifiedby		$LastChangedBy: $
 * @lastmodified	$Date:  $
 * @createdat		10.02.2009
 *
 * @package jnamic
 * @subpackage plugins.jnamic_helpers.views.css
 */
 
 /*  =========================================================
akademie.de - Artikel - CSS: Styleguide für Stylesheets
Datei: styleguide.css
Media: screen, projection

Datum: 15. Juli 2006
Autor: Peter Müller
Mail:  akademie@infotekten.de
Web:   http://akademie.de/programmierung-administration/html-und-css/


1. Allgemeine Selektoren
   - Block-Elemente
   - Inline-Elemente
   - Allgemeine Klassen
   - Non-Layout IDs

========================================================== */

/* ===============================

   =1. Allgemeine Selektoren

=============================== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

html { /* In Firefox Rollbalken erzwingen, Little Boxes S. 77 */
    height: 101%;
}

body {
    line-height: 1;
    color: white;
    background-color: #8c8c8c;
    text-align: center; /* Zentrierung für den <IE 5.x */
}

:focus {
	outline: 0;
}

/* ===============================
   =Block-Elemente
=============================== */

h1 {
    font-size: 150%;
}

h2 {
    font-size: 130%;
    margin-bottom: 1em;
}

p, ul, ol {
    margin: 0 0 1em 0;
}


/* Tabellen brauchen immernoch 'cellspacing="0"' im HTML! */
table {
	border-collapse: separate;
	border-spacing: 0;
}

caption, th, td {
	text-align: left;
	font-weight: normal;
}

blockquote, q {
	quotes: "" "";
}

    blockquote:before,
    blockquote:after,
    q:before,
    q:after {
    	content: "";
    }


ul ul{
	margin-left: 20px;	
}

/* ===============================
   =Inline-Elemente
=============================== */
strong {
	font-weight: bold;  
}

a {
    color: #222b6f;
}

    a:hover {
        color: #171E4A;
    }



/* ===============================
   =Classes allgemeiner Art
=============================== */
.center {
    text-align: center;
}

.small {
	font-size: 0.7em;	
}

.accessibility {
    display: none;
}

.floatl {
    float:left;
    padding: 3px;
    margin: 0 10px 10px 0;
}

.floatr {
    float:right;
    padding: 3px;
    margin: 0 0 10px 10px;
}

.clear_none {
    clear:none;
}

.clear {
	clear: both;
}	
 
ul.none, ol.none{
	list-style: none;
}

ul.float li, ol.float li{
	float: left;	
}