/* @group Reset CSS */

/* -------------------------------------------------------------- 
  
   Reset.css
   * Resets default browser CSS styles.
   
   Original by Erik Meyer:
   * meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/
   
-------------------------------------------------------------- */

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;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	color: black;
	background: white;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
em {
	font-style: italic;
}
strong {
	font-weight: bold;
}

/* let the IE hover li-elements like normal browsers */
* html li { 
behavior: expression( 
this.onmouseover = new Function("this.className += ' hover'"), 
this.onmouseout = new Function("this.className = this.className.replace('hover','')"), 
this.style.behavior = null 
); 
}

br.antifloat {
	clear: both;	
}
/* @end */

/* @group basics */
body {
	background: url(none) no-repeat center 80px;
}
#allWrap {
	background: url(logo.gif) no-repeat 26px 31px;
	width: 950px;
	margin: auto;
}
#head {
	height: 15px;
	padding-top: 65px;
	text-align: right;
	font: 10px/12px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}
#head a:link, 
#head a:visited {
	color: black;
	text-decoration: none;
}
#head a:hover, 
#head a:visited:hover {
	color: #b5152b;
	text-decoration: underline;
}
/* @end */

/* @group menu */
#menu {
	position: relative;
	left: 352px;
	height: 250px;
	width: 500px;
}
#menu ul ul {
	position: absolute;
	width: 200px;
	left: 360px;
	padding-left:0px ;
	top: 0;
	}

#menu ul li {
	position: relative;
	background: white url(bullet_blue_bg.gif) no-repeat left top;
	margin-bottom: 5px;
	list-style-type: none;
	width: 360px;
}
#menu li ul {
	display: none;
}
#menu li:hover ul, 
#menu li.hover ul  {
	display: block;
}
#menu li li {
	width: 150px;
	margin: 0;
	/* image with 3 transparente pixel - 
	padding in UL kills the hover-effect in IE */
	background: url(flyout_bg.gif) repeat-y;
}
#menu li a:link, 
#menu li a:visited, 
#menu li a:hover, 
#menu li a:visited:hover  {
	font: 12px/10px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	color: #b5152b;
	text-decoration: none;
	padding-left: 33px;
	}
#menu li li a:link, 
#menu li li a:visited, 
#menu li li a:hover, 
#menu li li a:visited:hover  {
	color: white;
	padding-left: 10px;
	}

/* @end */

/* @group Content */
#textbox {
	margin: 0 50px 0 380px;
	padding: 15px;
}
#textbox h2 {
	color: #b5152b;
	font: italic 25px/29px Georgia, "Times New Roman", Times, serif;
}
#textbox h3 {
	color: #8cacbc;
	font: 14px/24px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	margin-right: 84px;
	text-align: right;
	padding: 0 0 10px 0 ;
	letter-spacing: 0;
}
#textbox p {
	font: 11px/15px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	text-align: justify;
}
/* @end */


