/* CSS File */

/*
	All selectors beginning with '* html' are for IE and will be ignored by firefox.
	The defined styles in selectors described above, override styles for the IE in selectors are not begin with '* html'.
	This way of implementation offers the possibility to design the site without the use of JavaScript
	to describe different styles for different browsers.
*/

/*
	MENU STYLES
*/

* html #menuBlock {
	margin-top: -192px;

}

#menuBlock {
	z-index: 2;
	display: block;
	position: absolute;
	
	width: 256px;
	height: 100%;
	/*
	background-color: rgb(153, 153, 153);
	*/
	/*
	background-image: url(../images/layout/menu_main_background_02.jpg);
	background-repeat: repeat-y;
	*/
}

#menu {
	display: block;
	position: absolute;
	
	top: 152px;
	left: 32px;
	
	width: 192px;

}

#menuTopStripe,
#menuBottomStripe {
	display: block;
	position: relative;
	width: 100%;
	
	height: 24px;

}

#menuBottomStripe {
	height: 12px;

}

#menuTopLeft,
#menuBottomLeft {
	display: block;
	position: absolute;
	
	top: 0;
	left: 0;
	
	width: 12px;
	height: 24px;

}

#menuBottomLeft {
	height: 12px;

}

#menuTopRight
{
	display: block;
	position: absolute;
	
	top: 0;
	right: 0;
	
	width: 24px;
	height: 24px;
}
#menuBottomRight {
	display: block;
	position: absolute;
	
	top: 0;
	right: 0;
	
	width: 12px;
	height: 12px;

}

#menuBottomRight {
	height: 12px;

}

* html #menuContentBlock {


}

#menuContentBlock {
	display: block;
	position: relative;
	
	width: 100%;
	
	background-color: rgb(0, 0, 0);

}

#menuContent {
	display: block;
	position: relative;
	
	width: 100%;
	height: 100%;
	
	border-left: 2px solid rgb(223, 171, 13);
	

}


/*
	menu background images
*/
#menuTopStripe {
	background-image: url(../images/layout/border_top_01.gif);
	background-repeat: repeat-x;

}

#menuTopLeft {
	background-image: url(../images/layout/corner_top_left_01.gif);
	background-repeat: no-repeat;

}

#menuTopRight {
	background-image: url(../images/layout/corner_top_right_01.gif);
	background-repeat: no-repeat;

}

#menuBottomStripe {
	background-image: url(../images/layout/border_bottom_01.gif);
	background-repeat: repeat-x;
	background-position: 0 100%;

}

#menuBottomLeft {
	background-image: url(../images/layout/corner_bottom_left_01.gif);
	background-repeat: no-repeat;
	background-position: 0 100%;

}

#menuBottomRight {
	background-image: url(../images/layout/corner_bottom_right_01.gif);
	background-repeat: no-repeat;
	background-position: 100% 100%;

}

#menuContentBlock {
	background-image: url(../images/layout/border_right_01.gif);
	background-position: 100% 0;
	background-repeat: repeat-y;

}


/*
	menu entry formats
*/
* html #menuContent li {
	
	margin: 0 2px 0 0;

}

#menuContent li {
	display: block;
	
	margin: 0 4px 0 0;
	
	list-style-type: none;
	
}

* html a.menu, * html a.submenu, * html a.submenu2 {
	margin-left: -16px;
}

a.menu, a.submenu, a.submenu2 {
	display: block;
	
	padding-left: 24px;
	
	height: 24px;
	line-height: 24px;
	
	color: rgb(204, 204, 204);
	font-weight: bold;
	text-decoration: none;

}
a.menu:hover, a.submenu:hover, a.submenu2:hover {
	color: rgb(32, 32, 32);
	
	background-color: rgb(239, 213, 134);
	/*
	background-image: url(../images/layout/menu_over_background_03.gif);
	background-position: right 0;
	background-repeat: no-repeat;
	*/

}

a.submenu {
	padding-left: 40px;

}

a.submenu2 {
	padding-left: 56px;

}

#active {
	color: rgb(32, 32, 32);
	
	background-color: rgb(231, 192, 74);
	/*
	background-image: url(../images/layout/menu_active_background_03.gif);
	background-position: right 0;
	background-repeat: no-repeat;
	*/

}


/*
	menu pointer
*/
* html #menuPointer {
	top: 2px;

}

#menuPointer {
	z-index: 4;
	display: block;
	position: absolute;
	
	top: 1px;
	left: 24px;
	
	width: 100%;
	height: 24px;
	
	padding-left: 4px;
	
	color: rgb(229, 188, 61);
	font-size: 13px;
	font-weight: bold;
	line-height: 32px;
	letter-spacing: 1px;

}

#menuPointer a {
	color: rgb(255, 255, 255);
	text-decoration: none;

}

#menuPointer a:hover {
	color: rgb(229, 188, 61);
	text-decoration: underline;

}


/* META MENU */

* html #metaMenu {
	
	top: 31px;
	left: 12px;
	
	width: 100%;

}

#metaMenu {
	z-index: 4;
	display: block;
	position: absolute;
	
	top: 30px;
	right: 12px;
	left: 11px;
	
	height: 24px;
	
	padding: 0;
	
	border: 1px solid rgb(119, 119, 119);
	
	font-size: 11px;
	font-weight: bold;
	
	background-color: rgb(239, 213, 134);
	background-image: url(../images/layout/meta_menu_background_01.gif);
	background-repeat: repeat-x;

}

* html #metaMenu a {
	

}

#metaMenu a, #metaMenu a:visited {
	display: table-cell;
	
	margin: 0;
	
	padding-right: 16px;
	padding-left: 16px;
	
	height: 24px;
	
	border-right: 1px solid rgb(179, 166, 126);
	
	color: rgb(32, 32, 32);
	font-weight: bold;
	line-height: 23px;
	text-decoration: none;

}

#metaMenu a:hover, #metaMenu a#active {
	background-color: rgb(247, 234, 194);
	background-image: url(../images/layout/meta_menu_background_hover_01.gif);
	background-repeat: repeat-x;

}
