/*
this site has multiple CSS files: this one is only for *PAGE LAYOUT*.

put everything related to content, fonts, etcetera (like table borders for special pages, etcetera) in
style.css, please! thank you!
*/

/* generic */

*
{
	border: 0; /*2px solid black;*/
	padding: 0;
	margin: 0;
}

BODY, HTML{
	height: 100%;
}
BODY
{
	background: url('bg.png');
    /* background: #e6dece; */
}

A
{
	color: #644;
	font-weight: bold;
	text-decoration: none;
}


/* page layout */
td.layout
{
	vertical-align: top;
}

table#layout_table
{
	/* maximize width and center */
	margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    margin-top: 0;
	width: 100%;
	max-width:1000px;
	
	height: 100%;
	text-align: left;
    
}

tr#layout_row_bottom
{
	height: 135px;
}
td#layout_bottom
{
	vertical-align: bottom;
    
}

td#layout_top_left
{
	width: 210px;
}

td#layout_top_right
{

}

/* bottom part */
div#bottomline
{
	position: relative;
	background: url('line.png') repeat-x 0px 47px;
	width: 100%;
    height: 135px;
}
div#langchooser
{
	width: 200px;
	height: 135px;
	text-align: center;
}
div#langchooser img
{
    position: absolute;
    left:42px;
    z-index: 2;
    border: 0px solid black;
}
div#tecnica
{
	position: absolute;
    z-index: 1;
	top: 23px;
	width: 100%;
	height: 112px;
	background: url('tecnica.gif') no-repeat 50% 0px;
}
div#address
{
	position: absolute;
	right: 10px;
	margin: 0px 5px;
	top: 33px;
	z-index: 2;
	/*height: 135px;*/
	text-align: right;
    
	right: 0;
	/*font-family: "Trebuchet MS", sans-serif;*/
	font-size: 10pt;
	line-height: 1.1em;
	color: #777;
}
div#address A
{
	font-weight: normal;
}

/* menu */
div#menu_container
{
	position: relative;
	top: 0;
	left: 0;

}
img#menubg
{
    position: relative;
    top: -1px;
    left: 0px;
	margin: 10px;
    z-index: 4;
}
div#menu
{
	position: absolute;
	top: 60px;
	left: 49px;
	width: 148px;
	/*border: 1px solid red;*/
	font-size: 16px;
	font-weight: 100;
	text-align: center;
	line-height: 1.25em;
    z-index: 5;
}
div#menu LI
{
	list-style: none;
}
div#menu LI.submenuitem
{
  font-size: smaller;
  color: #FFFF00;
}
div#menu A
{
	color: #666;
	text-decoration: none;
	font-weight: normal;
}
div#menu A:hover
{
	color: #944;
}

/* header */
div#headerbar_left
{
	position: absolute;
	left: 20px;
	top: 20px;
	background: #040101;
	width: 250px;
	height: 72px;
	border: 2px solid #222;
	border-right: none;
	
}
div#header_container_container
{
    position: relative;
    top: 0px;
    left: 0px;
	height: 72px;
    right: 0px;
    margin: 20px 10px 10px 10px;
}
div#header_container
{
    position: absolute;
    top: 0px;
    left: 0px;
	
	border: 2px solid #222;
	border-left: none;
	display: block;
	right: 10px;
	height: 72px;
	background: #d1000b url('balk27.jpg') no-repeat 0 0;
	vertical-align: middle;
}
H1#page_header
{
	padding-top: 16px;
	padding-left: 10px;
	vertical-align: middle;
	color: #fff;
	font-size: 36px;
}

/* page content */
div#content_container
{
	padding: 15px 25px 15px 15px;
}


