/*=========================================================================
|
|   file:   screen.css
|	autor:	jochenkuckuck.de
|
| ==============================================================================
|   
|   Content:
|   
|   0   browser reset
|   1.1 layout: container
|   
================================================================================*/

/* 
|
|   0 - browser reset
|
--------------------------------------------------------------------------*/
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;
}
:focus {
    outline:        0;
}
ol, ul {
    list-style:     none;
}
table {
    border-collapse:separate;
    border-spacing: 0;
}
caption, th, td {
    text-align:     left;
    font-weight:    normal;
}


/* 
|
|   1.1 - layout: container
|
--------------------------------------------------------------------------*/

html, body {
	height: 100%;         /* required */
}
body {
	font-family: Gill Sans, Georgia, serif;
	font-size: 14px;
	color: gray;
	text-align: center;   /* horizontal centering hack for IE */
	padding: 0;           /* required to "hide" distance div */
	margin: 0;            /* required to "hide" distance div */
	overflow-x:hidden;    /* for horizontal/vertical scroller */
}
#distance { 
	margin-bottom: -390px; /* half of content height */
	/* background: red;       temporary - used to see div */
	width: 1px;           /* required to "hide" distance div */
	height: 50%;          /* required */
	float: left;          /* required */
}
#content {
	position: relative;   /* positions content on top of distance */
	text-align: left;     /* horizontal centering hack for IE */
	height: 780px;         /* required - desired height */
	width: 1024px;          /* required - desired width */
	/* background: blue;     cosmetic */
	margin: 0 auto;       /* required */
	clear: left;          /* required */
}

#content_noFlash {

	position: relative;   /* positions content on top of distance */
	text-align: center;     /* horizontal centering hack for IE */
	height: 300px;         /* required - desired height */
	width: 350px;          /* required - desired width */
	/* background: blue;     cosmetic */
	margin: 0 auto;       /* required */
	clear: left;          /* required */
}

h1 {
	font-family: Gill Sans, Georgia, serif;
	font-size: 16px;
	font-weight: bold;


}
