@charset "utf-8";
/*

    basic styles for all browsers with default values but without positioning
    project:T-Ventre
*/


/* ----------  Global element definitions  ---------- */
/* global whitespace reset !!! */
* {
    margin: 0;
    padding: 0;
}

/* body */
body {
    font-size: 100.01%;
    line-height: 1.4;
    font-family: Arial, Helvetica, sans serif;
    padding: 0;
}

/* headlines */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.1;
    margin:0;
    padding:0;
}
h1 {
    font-size: 135%;
}
h2 {
    font-size: 125%;
}
h3 {
    font-size: 105%;
}
h4 {
    font-size: 100%;
}

/* text - inline */
abbr, acronym {
    font-style: normal;
}
em {
    font-style: italic;
    font-weight: inherit;
}
code, kbd, pre, samp, var {
    font-family: "Courier New", Courier, monospace;
    font-size: 110%;
    font-weight: bold;
}
q, cite {
    font-style: italic;
}
strong {
    font-style: normal;
    font-weight: bold;
}

/* text - block */
address {
    display: block;
    font-style: normal;
}
blockquote {
    font-style: normal;
}

/* horizontal rule */
hr {
    display: none;
}

/* images */
img {
    border: none;
}

/* lists */
ol {
  	list-style-type: decimal;
}
ul {
    list-style-type: square;
}

/* forms */
fieldset {
    border: none;
    margin: 0;
    padding: 0;
}
legend {
    /*display: block; whole row*/
    font-weight: bold;
    margin: 0;
    padding: 0;
}
label, input, select, textarea {
    font-weight: normal;
    line-height: normal;
    font-family:Arial, Helvetica, sans-serif;
}
optgroup {
    font-style: normal;
    font-weight: bold;
}

/* tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
    caption-side: top;
    empty-cells: show;
}
caption, th {
    font-weight: bold;
    text-align: left;
}
th, td {
    vertical-align: top;
}

/* ------------------------------------------------------
   Accessibility
   ------------------------------------------------------ */
/* not visible, if the css is turn on */
#skipNav,
#skip1 a,
#skip2 a,
.non-accessible {
	display:none;
	}

#cssEnabled {
    height:1px;
}

.no-wrap {
	white-space:nowrap}


.bold {
	font-weight:bold;}