@charset "utf-8";
/*

    basic styles for all browsers with default values but without positioning
    project: tip
*/


/* ----------  Global element definitions  ---------- */
/* global whitespace reset !!! */
* {
    margin: 0;
    padding: 0;
}

/* body */
body {
    /*font-size: 100.01%;*/
    font-size: 62.5%;
    line-height: 1.4;
    font-family: Verdana, Arial, Helvetica, sans serif;
    padding: 0;
}

/* headlines */
h1, h2, h3, h4, h5, h6 {
}

h1 {
    font-size: 1.8em;
}
h2 {
    font-size: 1.4em;
}
h3 {
    font-size: 1.2em;
}
h4 {
    font-size: 1em;
}
/* 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: none;
}

/* forms */
fieldset {
    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;
}
a {
	text-decoration: none;
}


a:focus {
	text-decoration: underline !important;
	outline:none !important;
	/*outline-color: #3F97E9 !important;*/}

a:hover {
	text-decoration: underline !important;
}

a:active {
	text-decoration: underline !important;
	outline:none !important;}

/* ------------------------------------------------------
   Accessibility
   ------------------------------------------------------ */
/* not visible, if the css is turn on */
.invisible,
.non-accessible {
	display:none;
	}
/* convenience classes */
#cssEnabled {
	height:1px;
}

.no-wrap {
	white-space:nowrap}

.bold {
	font-weight:bold;}
	
.clear {
  clear: both;
  display: block;
  width: 0px;
  height: 0px;
  line-height: 0px;
  overflow: hidden;}

/*clearfix*/
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;}
 
.clearfix {
	display: inline-block;}
 
html[xmlns] .clearfix {
	display: block;}
 
* html .clearfix {
	height: 1%;}

/*float*/
.floatLeft {float:left}	
.floatRight {float:right}		
