/**
 *	IE CSS FIXES - iefix.css
 *
 *	Include the following conditional comment inbetween <head>:
 *
 *		<!--[if lt IE 7]>
 *		<link href="styles/iefix.css" type="text/css" rel="stylesheet"/>
 *		<![endif]-->
 *
 *	This file will patch IE5.5 and IE6 browsers, by replacing PNG images
 *	with GIF-equivalents (no alpha blending due to CSS-float style layout).
 *
 */

#Header {
	background-image: url(../images/header.gif);
}

/* warning background-image contains surrounding decorations */
#Logo {
	background: transparent url(../images/logo.jpg) no-repeat center -2px;
}

/* fixes IE5.5 and ignores IE6 */
#Title {
	line-height: 91px;
	background-image: url(../images/title.gif);
}
#Title h2 {
	visibility: hidden;
}

#Content {
	background-image: url(../images/footer.gif);
}
#Content .sections-inner {
	background-image: url(../images/content.gif);
}

/* Need to use expression() to dynamically calculate center position */
#Sitemap {
	margin-left: expression(document.getElementById('Content')
		? document.getElementById('Content').firstChild.firstChild.offsetLeft
		: 0);
}

/* fixes IE (background gets distorted after scrolling out-of-view) */
#Contacts {
	border: 1px solid #200001;
	background: transparent url(../images/deco.jpg) no-repeat center 1px;
	margin: 10px 0;
}
#Contacts .section-inner {
	margin: 0;
	padding: 0;
	background: transparent !important;
}

/**
 *	Home page - CSS declaration
 */
#FrontPage a:hover {
	background-image: url(../images/hover.gif);
}
#FrontPage .menu .text {
	background-image: url(../images/a4.jpg);
}
#FrontPage .order .text {
	background-image: url(../images/a2.jpg);
}
#FrontPage .news .text {
	background-image: url(../images/a1.jpg);
}

