@charset "iso-8859-1";
/*******************************************************
*   Set back to zero and define a few basic styles     *
*******************************************************/
html, body {
	margin: 0;
	padding: 0;
	text-align: left;
	vertical-align: baseline;
	font-weight:normal;
	font-style:normal;
}
/***********************************************************************
* sets font-size to 62.5%/1em (makes for a base of 10px)               *
* and line-height of 130%   															             *
* Fontface is like given. Font-Color is a very dark grey               *
***********************************************************************/
body {
	font: 62.5%/1.4 Arial, Helvetica, Verdana, sansserif;		
	color: #313131;
}

/*******************************************************
*   getting all Headings even                          *
*                                                      *
h1, h2, h3, h4, h5, h6 {                               *
	margin: 0;                                           *
	padding: 0;                                          *
}                                                      *
    is defined in the other styles,                    *
		not needed here anymore                            *
*                                                      *
*******************************************************/

/*******************************************************
*   no margin or padding for those tags                *
*******************************************************/
p, a {
	margin: 0;
	padding: 0;
}

/*******************************************************
*   Images have neither border nor outline             *
*******************************************************/
img{
	border: 0;
	outline: 0;
}
/*******************************************************
*    Links do have no specialities at first            *
*    get them styled in general before doing extra     *
*    styling to certain parts.                         *
*******************************************************/

a:link {
 color: #313131;
 text-decoration:none;
}
a:visited {
 color: #313131;
 text-decoration:none;
}
a:hover {
 color: #313131;
 text-decoration:none;
}
a:focus {
	outline: 0;
	border: 0;
}
a:active {
 color: #313131;
 text-decoration:none;
}

/*******************************************************
*   resetting all kinds of lists                       *
*******************************************************/
ol, ul, li{
	list-style: none;	
	margin: 0;
	padding: 0;
}

dl, dt, dd{
	margin: 0;
	padding: 0;
}
/*******************************************************
*   formatting forms                                    *
*******************************************************/
form {
	margin: 0;
	padding: 0;
}

fieldset {
	margin: 0;
	padding: 0;
}

legend {
	margin: 0;
	padding: 0;
}
input, select, button {
font-size: 1em;
}

/*******************************************************
*   formating tables                                   *
*******************************************************/
table, caption, tbody, tfoot, thead, tr, th, td{
	margin: 0;
	padding: 0;
	outline: 0;
	vertical-align: top;
	text-align: left;
	border-collapse: collapse;
}
th, tfoot, thead {
	font-weight: bold;
}
/*******************************************************
*   no special content for quotes                      *
*   quotationmarks both upper                          *
*******************************************************/
blockquote:before, blockquote:after, q:before, q:after {
	content: "";
}

blockquote, q {
	margin:0;
	padding:0;
	quotes: "" "";
}

/**********************************************************
*                                                         *
*   below all the markup is reset                         *
*   - delete when done styling                            *
*                                                         *
**********************************************************/
acronym, abbr , address, blockquote, code, cite, dl , dt, dd, del, dfn,
em,ins,kbd,pre,q,samp,strong,va,b,big,i,small,sub,sup,tt, var{
	padding: 0;
	margin: 0;
	font-family: Arial, Helvetica, Verdana, sansserif;
	font-weight: normal;
	font-style: normal;
	outline: 0;
	border:0;
}
