img{ behavior: url("http://www.theasmara.com/iepngfix.htc"); }

body {
	background: transparent url('../images/bg.jpg') center center repeat;
	margin: 0;
	font: 62.5%/1.3em Arial, Helvetica, sans-serif;
	background-attachment: fixed;
}

#header {
	width: 100%;
	text-align: center;
	height: 109px;
	margin: 0 auto;
	background: #151046 url('../images/logobg.jpg') center center no-repeat;
}

#wrap {
	width: 987px;
	border: 6px solid #bbb6a6;
	border-top: 0;
	margin: 0 auto;
	background-color: white;
}

#container {
	/*background: white url('../images/contentbg.jpg') center top repeat;*/
	background-color:#fef9f9;
}

.mainimage {
	width: 987px;
	height: 234px;
	background: transparent url('../images/mainimage.jpg') left top no-repeat;
}

.menucontainer {
	height: 43px;
	display: block;
	background: transparent url('../images/menubg.jpg') left top no-repeat;
}

ul#menu { width: 900px; text-align: center; margin: 0 auto; }
ul#menu li { display: inline; }

ul#menu li a {
	display: block;
	float: left;
	padding: 14px 10px 12px 10px;
	color: #FFF;
	font-size: 11px;
	text-transform: uppercase;
	border-right: 1px solid white;
}

ul#menu li:last-child a { border: 0; }
ul#menu li a:hover { color: #fffd55; }

div.contentwide {
	padding: 15px 0 25px 0;
	width: 950px;
	margin: 0 auto;
}

h1.business { font-weight: normal; font-size: 14px; text-transform: uppercase; margin: 0 0 5px 0; color: #997F21; }
h2.heading {  margin-bottom: 50px; }

div.contentwide p {
	/*color: #222;*/
	color:#0a15a8;
	line-height: 150%;
	font-size: 14px;
	margin-bottom: 10px;
}

div.contentwide a {
	/*color: #4e0908;*/
	color:#0a15a8;
	border-bottom: 1px dotted #4e0908;
	font-variant: small-caps;
}

div.contentwide a:hover { border: 0; }

div#footer {
	width: 841px;
	text-align: center;
	text-transform: uppercase;
	color: #4e0908;
	font-size: 14px;
	margin: 10px auto;
}

table#con tr td {
	padding: 5px 0;
	font-size: 14px;
	color:#0a15a8;
}

#form input.i {
	font-size: 12px;
	color: #444;
	font-family: arial;
}

#form textarea.t {
	font-size: 11px;
	color: #444;
	font-family: arial;
}

#form button.disabled {
	background: transparent;
	color: #444;
	font-family: 'Andale Mono', 'Courier New', monospace;
	font-size: 16px;
	letter-spacing: 4px;
	border: 0;
}


/* All <ul> tags in the menu including the first level */

ul.menulist { width: 750px; text-align: left; margin: 0 auto; }

.menulist, .menulist  ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 display: none;
 position: absolute;
 top: 1.0em; margin-top: 30px; /* I'm using ems and px to allow people to zoom their font */
 left: -1px;
 width: 170px;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 top: -1px; margin-top: 0;
 left: 148px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.menulist li {
 float: left;
 display: block;
 position: relative;
 margin-right: -1px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none;
 margin: 0;
 margin-bottom: -1px;
}
.menulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
ul.menulist li a.lv1 {
	display: block;
	float: left;
	padding: 14px 10px 12px 10px;
	color: #FFF;
	font-size: 12px;
	text-transform: uppercase;
	border-right: 1px solid white;
}

ul.menulist li a.lv1:hover {
	color: #fffd55;
}

ul.menulist li ul li a.lv2 {
	display: block;
	padding: 7px 17px;
	color: #FFF;
	text-decoration: none;
	border-bottom: 1px solid white;
	margin-bottom: 1px;
	font-size: 9px;
	text-transform: uppercase;
	background-color: #3C3E77;
}

ul.menulist li ul li a.lv2:hover {
	color: #fffd55;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #fffd55;
}
.menulist a.highlighted {
 color: #fffd55;
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/

/* Only style submenu indicators within submenus. */
.menulist a .subind {
 display: none;
}
.menulist ul a .subind {
 display: block;
 float: right;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
}
.menulist ul a {
 float: none;
}
/* \*/
.menulist a {
 float: none;
}
/* */

ul.menulist li:last-child a.lv1 { 
	border: 0;
}

ul.menulist li:last-child a.lv2 { 
	border: 0;
}

/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulist ul li {
 float: left;
 width: 100%;
}

* html .menulist ul li {
 float: left;
 height: 1%;
}
* html .menulist ul a {
 height: 1%;
}
/* End Hacks */

#gallery td img{
border: 4px solid #EEE;
margin-bottom:10px;
padding:0;
-moz-opacity:1;
filter:alpha(opacity=100);
opacity:1;
}

#gallery td img:hover{
-moz-opacity:0.6;
filter:alpha(opacity=60);	
opacity:0.6;
}

#gallery td{
border:none;
text-align:center;
color:#0a15a8;
}

#gallery a{
border:none;
text-decoration:none;
}

#spec td{
border:none;
text-align:left;
color:#0a15a8;
}

#business_partner h1{
font-size:25px;
line-height:150%;
font-weight:bold;
}

#business_partner p{
font-size:15px;
font-weight:bold;
}

#business_partner a{
font-size:20px;
font-weight:bold;
border-bottom:1px dotted #666666;
}

#business_partner a:hover{
border-bottom:none;
}