@charset "UTF-8";
/* CSS Document */

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #191919;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000;
}
.oneColFixCtrHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
 background:;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	height: 287px;
	background: #000 url(../imgs/masthd.jpg) no-repeat;
	border: 1px solid #333;
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	margin: 15px 0;
}
.oneColFixCtrHdr #mainContent {
	border: 1px solid #333;
	padding: 15px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #000;
}
.oneColFixCtrHdr #mainContent p {
	font-size:12px;
	color:#999;
	line-height: 18px;
}
.oneColFixCtrHdr #footer {
	border-bottom: 1px solid #333;
	margin-top: 10px;
	padding-bottom: 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* TEXT */
/* Note: the yellow used in the brochure is close to EEAB01 */

h1 {
	font-weight: normal;
	font-size: 24px;
	color:#CCC;
} /* margin on this element will create space */
h2 {
	font-weight: normal;
	font-size: 18px;
	color: #CCC;
}
.medTxt {
	font-size:11px;
	color:#999;
}
.smallTxt {
	font-size:10px;
	color:#999;
}

/* NAVIGATION BAR */

#navHolder {
	position: relative;
	width: 740px;
	height: 26px;
	padding: 0;
	margin: 245px 0 0 0;
	background: url(../imgs/nav_06.gif) right no-repeat;
}
#nav {
	position: absolute;
	top: 0;
	left: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	height: 26px;
	display: inline;
	overflow: hidden;
	width: 740px;
}
#nav li {
	margin: 0;
	padding: 0;
	display: inline;
	list-style-type: none;
}
#nav a {
	float: left;
	padding: 26px 0 0 0;
	overflow: hidden;
	height: 0px !important;
	height /**/:26px; /* for IE5/Win */
}
#nav a:hover {
	background-position: 0 -26px;
}
#nav a:active, #nav a.selected {
	background-position: 0 -52px;
}
#navHome a {
	width: 110px;
	background: url(http://www.photoworld-dubai.com/imgs/nav_01.gif) top left no-repeat;
}
#navExhib a {
	width: 110px;
	background: url(http://www.photoworld-dubai.com/imgs/nav_02.gif) top left no-repeat;
}
#navVisit a {
	width: 110px;
	background: url(http://www.photoworld-dubai.com/imgs/nav_03.gif) top left no-repeat;
}
#navMarket a {
	width: 110px;
	background: url(http://www.photoworld-dubai.com/imgs/nav_04.gif) top left no-repeat;
}
#navOrg a {
	width: 110px;
	background: url(http://www.photoworld-dubai.com/imgs/nav_05.gif) top left no-repeat;
}
#navPad {
	width: 110px;
	background: url(http://www.photoworld-dubai.com/imgs/nav_06.gif) top left no-repeat;
}

/* STANDARD LINKS */

a:link {
	font-weight: bold;
	color: #F8C48A;
	text-decoration:none;
}
a:visited {
	font-weight: bold;
	color: #F8C48A;
	text-decoration: none;
}
a:hover {
	font-weight: bold;
	color: #FFF;
	text-decoration: underline;
}