@charset "UTF-8";

/*@import url(http://fonts.googleapis.com/css?family=Amethysta|Adamina);
@import url(http://fonts.googleapis.com/earlyaccess/amiri.css);
@import url(http://fonts.googleapis.com/css?family=Playfair+Display|Libre+Baskerville|Playfair+Display+SC);
@import url(http://fonts.googleapis.com/css?family=Muli:300,400);
*/
@import url(http://fonts.googleapis.com/css?family=Playfair+Display:400,700|Muli:300,400|Adamina);
@import url(http://fonts.googleapis.com/earlyaccess/droidarabickufi.css);
@import url(http://fonts.googleapis.com/earlyaccess/droidarabicnaskh.css);

/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}
/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		4;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	5;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

html, body {
	height: 100%;
}

/* box-sizing */
	* { 
		-moz-box-sizing: border-box; 
		-webkit-box-sizing: border-box; 
		box-sizing: border-box; 
	}

.fluid {
	clear: both;
	margin-left: 0;
	width: 100%;
	float: left;
	display: block;
}

.fluidList {
    list-style:none;
    list-style-image:none;
    margin:0;
    padding:0;        
}

/* Mobile Layout: 639px and below. */

/* Header */
.header {
	margin: 0;
	padding: 0;
	height: 100px;
	width: 100%;
	position: relative;
	background-image: url(images/backgrounds/bg-header-darker-40-480x100.png);
	background-position: left top;
	background-repeat: repeat-x;
}

.logo_text_wrapper {
	margin: 0;
	float: left;
}

/* Header END */

/* Menu styles default (Mobile)*/
	#menu-wrap {
	position: relative;
	top: 65px;
}

#menu-wrap * {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#menu, #menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#menu {
	position: absolute;
	z-index: 1000;
	right: 0;
	width: 640px;
	border: 1px solid #222;
	background-color: transparent;
	background-image: -moz-linear-gradient(#444, #111); 
	background-image: -webkit-gradient(linear, left top, left bottom, from(#444), to(#111));	
	background-image: -webkit-linear-gradient(#444, #111);	
	background-image: -o-linear-gradient(#444, #111);
	background-image: -ms-linear-gradient(#444, #111);
	background-image: linear-gradient(#444, #111);
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	-moz-box-shadow: 0 1px 1px #777, 0 1px 0 #666 inset;
	-webkit-box-shadow: 0 1px 1px #777, 0 1px 0 #666 inset;
	box-shadow: 0 1px 1px #777, 0 1px 0 #666 inset;
}
	
#menu:before,
#menu:after {
	content: "";
	display: table;
}

#menu:after {
	clear: both;
}

#menu {
	zoom:1;
}

#menu li {
	float: left;
	border-right: 1px solid #222;
	-moz-box-shadow: 1px 0 0 #444;
	-webkit-box-shadow: 1px 0 0 #444;
	box-shadow: 1px 0 0 #444;
	position: relative;
}

#menu a {
	float: left;
	padding: 12px 20px 6px 20px;	
	color: #c96;
	text-transform: uppercase;
/*	font: bold 12px Arial, Helvetica; */
	font-family: 'Muli', sans-serif;
	font-weight: 500;
	font-size: 12px;
	text-decoration: none;
	text-shadow: 0 1px 0 #000;
}

#menu.ar a {
	padding: 12px 18px 6px 6px;	
/*	font-family: 'Droid Arabic Kufi', serif; */
}

#menu li:hover > a {
	color: #fafafa;
}

*html #menu li a:hover { /* IE6 only */
	color: #fafafa;
}

#menu ul {
	margin: 20px 0 0 0;
	_margin: 0; /*IE6 only*/
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 40px;
	left: 0;
	z-index: 1000;    
	background: #444;
	background: -moz-linear-gradient(#444, #111);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#444), to(#111));
	background: -webkit-linear-gradient(#444, #111);    
	background: -o-linear-gradient(#444, #111);	
	background: -ms-linear-gradient(#444, #111);	
	background: linear-gradient(#444, #111);
	-moz-box-shadow: 0 -1px rgba(255,255,255,.3);
	-webkit-box-shadow: 0 -1px 0 rgba(255,255,255,.3);
	box-shadow: 0 -1px 0 rgba(255,255,255,.3);	
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;  
}

#menu li:hover > ul {
	opacity: 1;
	visibility: visible;
	margin: 0;
}

#menu ul ul {
	top: 0;
	left: 150px;
	margin: 0 0 0 20px;
	_margin: 0; /*IE6 only*/
	-moz-box-shadow: -1px 0 0 rgba(255,255,255,.3);
	-webkit-box-shadow: -1px 0 0 rgba(255,255,255,.3);
	box-shadow: -1px 0 0 rgba(255,255,255,.3);		
}

#menu ul li {
	float: none;
	display: block;
	border: 0;
	_line-height: 0; /*IE6 only*/
	-moz-box-shadow: 0 1px 0 #111, 0 2px 0 #666;
	-webkit-box-shadow: 0 1px 0 #111, 0 2px 0 #666;
	box-shadow: 0 1px 0 #111, 0 2px 0 #666;
}

#menu ul li:last-child {   
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;    
}

#menu ul a {    
	padding: 10px;
	width: 180px;
	_height: 10px; /*IE6 only*/
	display: block;
	white-space: nowrap;
	float: none;
	text-transform: none;
}

#menu ul a:hover {
	background-color: #c96;
	background-image: -moz-linear-gradient(#c96, #963);	
	background-image: -webkit-gradient(linear, left top, left bottom, from(c96), to(#963));
	background-image: -webkit-linear-gradient(#c96, #963);
	background-image: -o-linear-gradient(#c96, #963);
	background-image: -ms-linear-gradient(#c96, #963);
	background-image: linear-gradient(#c96, #963);
}

#menu ul li:first-child > a {
	-moz-border-radius: 3px 3px 0 0;
	-webkit-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
}

#menu .ar ul li:first-child > a:after {
	content: '';
	position: absolute;
	left: 40px;
	top: -6px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #444;
}

#menu ul ul li:first-child a:after {
	left: -6px;
	top: 50%;
	margin-top: -6px;
	border-left: 0;	
	border-bottom: 6px solid transparent;
	border-top: 6px solid transparent;
	border-right: 6px solid #3b3b3b;
}

#menu ul li:first-child a:hover:after {
	border-bottom-color: #c96; 
}

#menu ul ul li:first-child a:hover:after {
	border-right-color: #963;
	border-bottom-color: transparent; 	
}

#menu ul li:last-child > a {
	-moz-border-radius: 0 0 3px 3px;
	-webkit-border-radius: 0 0 3px 3px;
	border-radius: 0 0 3px 3px;
}
/* Menu styles default (Mobile) END*/


/* Content divs */

.main_content {
	overflow: hidden;
	margin-top: 17px;
	position: relative;
	background-color: rgb(76,38,0);
	background-color: rgba(76,38,0,.7);
	border-bottom: 3px solid #c96;
	-moz-box-shadow: inset 0 10px 10px rgba(0,0,0,0.5);
	-webkit-box-shadow: inset 0 10px 10px rgba(0,0,0,0.5);
	box-shadow: inset 0 10px 10px rgba(0,0,0,0.5);
}

.visit-section-a-top {
	background-color: rgb(153,102,51);
	background-color: rgba(153,102,51, .7);
	border-bottom: 1px solid #c96;
	-moz-box-shadow: inset 0 5px 10px rgba(0,0,0,0.5);
	-webkit-box-shadow: inset 0 5px 10px rgba(0,0,0,0.5);
	box-shadow: inset 0 5px 10px rgba(0,0,0,0.5);
	margin-top: 10px;
}

.gallery-first {
	background-color: rgb(153,102,51);
	background-color: rgba(153,102,51, .7);
	border-bottom: 1px solid #c96;
	-moz-box-shadow: inset 0 5px 10px rgba(0,0,0,0.5);
	-webkit-box-shadow: inset 0 5px 10px rgba(0,0,0,0.5);
	box-shadow: inset 0 5px 10px rgba(0,0,0,0.5);
	margin-top: 0px;
}


.gallery-second {
	background-color: rgb(179,129,71);
	background-color: rgba(179,129,71,.7);
	border-bottom: 1px solid #c96;
	-moz-box-shadow: inset 0 5px 10px rgba(0,0,0,0.5);
	-webkit-box-shadow: inset 0 5px 10px rgba(0,0,0,0.5);
	box-shadow: inset 0 5px 10px rgba(0,0,0,0.5);
}

.gallery-third {
	background-color: rgb(153,102,51);
	background-color: rgba(153,102,51, .7);
	border-bottom: 1px solid #c96;
	-moz-box-shadow: inset 0 5px 10px rgba(0,0,0,0.5);
	-webkit-box-shadow: inset 0 5px 10px rgba(0,0,0,0.5);
	box-shadow: inset 0 5px 10px rgba(0,0,0,0.5);
}


.maps-section-a-top {
	background-color: rgb(153,102,51);
	background-color: rgba(153,102,51, .7);
	border-bottom: 1px solid #c96;
	-moz-box-shadow: inset 0 5px 10px rgba(0,0,0,0.5);
	-webkit-box-shadow: inset 0 5px 10px rgba(0,0,0,0.5);
	box-shadow: inset 0 5px 10px rgba(0,0,0,0.5);
}

.visit-section-a {
	background-color: rgb(153,102,51);
	background-color: rgba(153,102,51, .7);
	border-bottom: 1px solid #c96;
}

.visit-section-b {
	background-color: rgb(179,129,71);
	background-color: rgba(179,129,71,.7);
	border-bottom: 1px solid #c96;
}

.sponsors-figure {
	padding: 10px;
}
.sponsors-figure-left {
	float: left;
	margin: 30px;
}


.oman_air, .arte {
	background-color: rgb(153,102,51);
	background-color: rgba(153,102,51, .7);
	border-bottom: 1px solid #c96;
}

.oman_tourism {
	background-color: rgb(179,129,71);
	background-color: rgba(179,129,71,.7);
	border-bottom: 1px solid #c96;
}


	
		

.center {
	 float: none;
	 margin-left: auto;
	 margin-right: auto;
}

/* Pull-right and left fixes

.row-fluid .pull-left[class*="span"]:last-child {
	margin-left: px; 
}

@media (max-width: 767px) {
.row-fluid .pull-right[class*="span"] { 
	float: none; 
}
*/

/* Content divs END */

/* Default text */

h3 {
	font-family: 'Muli', sans-serif;
	color: #fafafa;
	font-style: normal;
	font-weight: 300;
	text-transform: none;
	text-decoration: none;
	letter-spacing: -0.05em;
	word-spacing: 0em;
	display: block;
	padding: 10px;
}

h4 {
	font-family: 'Muli', sans-serif;
	color: #fafafa;
	font-style: normal;
	font-weight: 300;
	text-transform: none;
	text-decoration: none;
	letter-spacing: -0.05em;
	word-spacing: 0em;
	display: block;
	padding: 10px;
}

h5, h6 {
	font-family: 'Muli', sans-serif;
	color: #fafafa;
	font-style: normal;
	font-weight: 300;
	text-transform: none;
	text-decoration: none;
	letter-spacing: -0.05em;
	word-spacing: 0em;
	display: block;
	padding: 10px;
}


p {
	font-family: 'Adamina', serif;
	color: #fafafa;
	padding: 10px
}

p.tandc, p.visit, p.links, p.background {
	font-family: 'Muli', sans-serif;
	font-size:12px;
}

p.sponsors {
	font-family: 'Muli', sans-serif;
	font-size:14px;
}

p.date {
	font-family: 'Muli', sans-serif;
	font-size:12px;
	margin-top: -20px;
	margin-bottom: -10px;
}



p.date-news-page {
	font-family: 'Muli', sans-serif;
	font-size:14px;
}

.date-table-newsbar {
	margin-top: -30px;
}

p#colon-fix {
	margin-top: -10px;
}


#game_text p {
	font-family: 'Muli', sans-serif;
	font-size:1.1em;
	color: #fafafa;

}


.main_content p {
	margin-top: 0;
	padding: 0 10px 0 10px;
}

.center-text {
	text-align: center;
}

.thanks {
	text-indent: 2em;
}

/* .main_content p + p {
	text-indent: 1.5em;} 
*/

/* Default text END*/



/* Arabic text */
.ar {
	text-align: right;
/* 	font-family: 'Droid Arabic Naskh', serif; */
	font-weight: 300;
	font-size: 1em;
	letter-spacing: normal;
	word-spacing: normal;
}

.ar h2 {
/*	font-family: 'Droid Arabic Kufi', serif; */
/*	font-family: 'Droid Arabic Naskh', serif; */
	font-weight: 300;
	font-size: 1.8em;
	margin-right: 10px;
}


.ar h3 {
/*	font-family: 'Droid Arabic Kufi', serif; */
/*	font-family: 'Droid Arabic Naskh', serif; */
}

.ar h4 {
/*	font-family: 'Droid Arabic Kufi', serif; */
/*	font-family: 'Droid Arabic Naskh', serif; */
}

.ar h5, .ar h6 {
/*	font-family: 'Droid Arabic Kufi', serif; */
/*	font-family: 'Droid Arabic Naskh', serif; */
}

#17 {
	text-align: left;
}

table.ar {
		float: right;
		color: #fafafa;
		font-size: 12px;
}

#address, #transport, #opening-hours {
	margin-right: 8px;
}

#date {
	margin-right: -26px;
	font-size: 14px;
	color: #000
}

.date-table {
	margin-top: -16px;
}


/* #address-2nd-line {
	clear:both;
	margin-right: -16px;
} */

td.align-left {
	text-align: left;
}

#tel_and_email, #transport, #car_and_rates, #last_entrance {
	float: right;
	clear: both;
	margin-top: 10px;
}

/* Arabic text END */

/* Visit  */

#gmap_wrapper a {
	height: 90%;
	width: 90%;
	margin: 20px;
}

#gmap {
}

/*
.gmap_en {
	padding: 20px 20px 26px 20px;
}

.gmap_fr {
	padding: 20px 20px 20px 20px;
}

*/

.col_bottom_r_en {
	padding-bottom: 0px;
}

.col_bottom_r_fr {
	padding-bottom: 14px;
}

/* Visit END */

/* Games old 
#game_wrapper {
	position: relative;
}

#trader_iframe {
	position: absolute;
	top: 120px;
	right: 20px;
	z-index: 1;
}

#trader_frame_top {
	position: absolute;
	top: 120px;
	right: 20px;
	z-index: 2;
}

#trader_frame_right {
	position: absolute;
	top: 140px;
	right: 20px;
	z-index: 2;
}

#trader_frame_bottom {
	position: absolute;
	top: 640px;
	right: 20px;
	z-index: 2;
}

#trader_frame_left {
	position: absolute;
	top: 140px;
	right: 836px;
	z-index: 2;
}

#game_text_wrapper {
	clear: both !important;
}
 Games old END*/

/* Games  */
#game_wrapper {
	float: none;
	margin:0 auto;
	clear: both;
	position: relative;
/*	overflow: hidden; */
	height: 570px;
	width: 850px;
}

#trader_iframe {
	position: absolute;
	top: 10px;
	right: 20px;
	z-index: 1;
}

#trader_frame_top {
	position: absolute;
	top: 10px;
	right: 20px;
	z-index: 2;
}

#trader_frame_right {
	position: absolute;
	top: 30px;
	right: 20px;
	z-index: 2;
}

#trader_frame_bottom {
	position: absolute;
	top: 530px;
	right: 20px;
	z-index: 2;
}

#trader_frame_left {
	position: absolute;
	top: 30px;
	right: 836px;
	z-index: 2;
}

#game_text {
	overflow: hidden;
	margin-top: 0px;
	background-color: rgb(76,38,0);
	background-color: rgba(76,38,0,.7);
	border-bottom: 1px solid #c96;
	-moz-box-shadow: inset 0 10px 10px rgba(0,0,0,0.5);
	-webkit-box-shadow: inset 0 10px 10px rgba(0,0,0,0.5);
	box-shadow: inset 0 10px 10px rgba(0,0,0,0.5);
}

#game_text p {
	margin-top: 20px;
/*	color: #F5AA4E; */
	color: #D3A040;
}


/* Games  END*/

/* trailer-thumb */

figure.trailer-thumb {
/*	float: right;
	width: 200px;	*/
	margin: 20px 10px;
}

.trailer-thumb img {
/*	float: right;
	height: 100px;
	width: 100px; */
}

.trailer-thumb img:hover {
	box-shadow: 0px 1px 4px rgba(255,255,255,.7);
}

figcaption {
	float: right;
	clear: none;
	background-color: #transparent;
	width: 200px;
	margin: 0 0 0 0px;
	font-family: 'Muli', sans-serif;
	font-style: normal;
	font-weight: 300;
	color: #fff;
	background-color: #transparent;
	font-size: 12px;
	text-align: right;
	border: solid opx #000;
}

#trailer-thumb-figcaption {
}

/* Welcome page News sidebar */
#news {
	background-color: rgb(153,102,51);
	background-color: rgba(153,102,51, .7);
	-moz-box-shadow: inset 0 10px 10px rgba(0,0,0,0.5);
	-webkit-box-shadow: inset 0 10px 10px rgba(0,0,0,0.5);
	box-shadow: inset 0 10px 10px rgba(0,0,0,0.5);
}

#news {
	margin-top: -10px;
}

.news-item-1 {
	background-color: rgb(153,102,51);
	background-color: rgba(153,102,51, .7);
	border-top: 1px solid #c96;
	border-bottom: 1px solid #c96;
}

.news-item-2 {
	background-color: rgb(179,129,71);
	background-color: rgba(179,129,71,.7);
	border-bottom: 1px solid #c96;
}

.news-item-3 {
	background-color: rgb(153,102,51);
	background-color: rgba(153,102,51, .7);
	border-bottom: 1px solid #c96;
}

.news-image {
	display: inline-block;
	margin: 0 10px 10px 0;
	float: left;
}

.news-image:hover {
	box-shadow: 0px 1px 4px rgba(255,255,255,.7);
}


.news-image-ar {
	display: inline-block;
	margin: 0 0 10px 10px;
	float: right;
}


/* Welcome page News sidebar END*/

/* Links */
.links a, .visit-section-a a, .visit-section-a-top a, .visit-section-b a, .sponsors-links a {
	display: inline-block;
	height: 10px;
	margin: 0 10px 4px 10px;
	padding 0 10px;
	font-family: 'Muli', sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 1.2em;
	text-decoration: none;
	color: #F5AA4E;
}

.sponsor-links a {
	font-family: 'Muli', sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 1.2em;
	text-decoration: none;
	color: #F5AA4E;
}



.news-item-1 a, .news-item-2 a {
	font-family: 'Muli', sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 1.2em;
	text-decoration: none;
	color: #F5AA4E;
}

.links a:hover, .news-item-1 a:hover, .news-item-2 a:hover, .visit-section-a a:hover, .visit-section-a-top a:hover, .visit-section-b a:hover, .sponsor-links a:hover { 
	color: #fafafa;
}
/* Links END*/

/* Cutout images */

.cutout_image_wrapper {
}

.cutout	 {
	background-image: url(images/images_on_right/plumbline.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 100%;
}

/* Cutout images END */

/* News Page */

.news-article h2, .news-article p {
	color: #000;
	text-shadow: none;
}

figure.news-page {
	margin: 20px 0 20px 0px;	
}
	

.row-fluid.news-page {
	border-bottom: 3px solid #9d6e49;
}
/* News Page END*/

/* Sliders */
#Gallery_02_slider, #gallery_sailing_ships, #gallery_skills, #Events {
	margin: 20px 0 0 0;
}

#slider_maps {
	margin: 20px 0 0 0;
}

/* Sliders END*/

/* Previous Next arrows */
a.previous {
	display: block;
	float: left;
	width: 30px;
	height: 30px;
	margin: 0 10px 10px 10px;
	background-image:url(images/arrows/arrow-left.png);
	background-repeat: no-repeat;
	background-position:right;
}

a.previous.newsbar {
	display: block;
	float: left;
	width: 30px;
	height: 30px;
	margin: -20px 10px 0px 0px;
	background-image:url(images/arrows/arrow-left-inactive.png);
	background-repeat: no-repeat;
	background-position:right;
}



a:hover.previous {
	background-image:url(images/arrows/arrow-left-rollover.png);
}


a.next {
	display: block;
	float: right;
	width: 30px;
	height: 30px;
	margin: 0 10px 10px 10px;
	background-image:url(images/arrows/arrow-right.png);
	background-repeat: no-repeat;
	background-position:left;
}

a.next.newsbar{
	display: block;
	float: right;
	width: 30px;
	height: 30px;
	margin: -20px 10px 0px 0px;
	background-image:url(images/arrows/arrow-right-inactive.png);
	background-repeat: no-repeat;
	background-position:left;
}


a:hover.next {
	background-image:url(images/arrows/arrow-right-rollover.png);
}

h2 {
	font-family: 'Muli', sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 28px;
	text-transform: none;
	text-decoration: none;
	letter-spacing: -0.05em;
	word-spacing: 0em;
	line-height: 1.4;
	color: #fafafa;
	text-shadow: -2px 2px 2px rgba(0, 0, 0, 0.5);
	padding: 0 0 0 10px;
}

/* Previous Next arrows END*/

/* Gallery thumbs */
.gallery-thumb {
	margin: 5px;
	border: solid 3px #c96;
}

.gallery-thumb:hover {
	height: 166px;
	width: 166px;
	border: solid 3px #fc9;
	box-shadow: 0px 1px 4px rgba(255,255,255,.7);
}
/* Gallery thumbs END*/

/* Map figure & figcaption

figure {
	position: relative;
}

figcaption {
	position: absolute;
	bottom: 10px;
	left: 60px;
	font-family: 'Muli', sans-serif;
	color: #fafafa;
	font-style: normal;
	font-weight: 300;
	text-transform: none;
	text-decoration: none;
	letter-spacing: -0.05em;
	word-spacing: 0em;
}

Figure & figcaption END */


/* Mobile */
	#menu-trigger {
	display: none;
	}	
	
	.zeroMargin_mobile {
	margin-left: 0;
	}

	#menu.ar.hide_tablet {
	display: none;
	}
	
	#menu.ar.hide_tablet {
	display: none;
	}
	
	#menu_ar_tablet {
	display: inline;
	}

@media screen and (max-width: 639px) {
	
/* Mobile background images images*/

#bg_welcome {
		background-image:url(images/backgrounds/bg_welcome_1421_480_straight.jpg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		min-height: 100%
	}

#bg_exhibition_intro, #bg_exhibition_firstnav, #bg_exhibition_artofnav, #bg_exhibition_future, #bg_exhibition_oceancom, #bg_exhibition_tradconstr {
		background-image:url(images/backgrounds/bg_exhibition_480.jpg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		min-height: 100%
}
		
#bg_gallery, #bg_more_traders_game, #bg_more_maps {			
		background-image: url(images/backgrounds/bg_map_480.jpg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		min-height: 100%;
}

#bg_visit_info, #bg_tandc {
		background-image: url(images/backgrounds/bg_visit_480.jpg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		min-height: 100%;
}

#bg_background_links, #bg_background_the_exhibition, #bg_background_sponsors {
/*		background-image: url(images/backgrounds/bg_more_480.jpg);	*/
		background-image: url(images/backgrounds/more_bg_480.jpg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		min-height: 100%;
}
	
#bg_news {
		background-color: #bf9b77;
/*		background-image: url(images/backgrounds/bg_news_480.jpg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		min-height: 100%; */
}

/* Mobile background images END*/

	.hide_mobile {
	display: none;
	}

	.hide_tablet {
		display: inline;
	}

	#menu_ar_tablet {
		display: none;
	}


/* 
#menu.ar.hide_mobile {
		display: none;
		}
		

#menu.ar.hide_tablet {
		display: inline;
		}
		
#menu.ar.hide_desktop {
		display: inline;
		}
*/

.span6.news-article {
	margin-top: 17px;
}

	.zeroMargin_mobile {
	margin-left: 0;
}




/* Menu styles @ media screen max 639px*/

		#menu-wrap {
			position: relative;
		}

		#menu-wrap * {
			-moz-box-sizing: border-box;
			-webkit-box-sizing: border-box;
			box-sizing: border-box;
		}

		/* menu icon */
		#menu-trigger {
			display: block; /* show menu icon */
			height: 40px;
			line-height: 40px;
			cursor: pointer;		
			padding: 0 0 0 35px;
			border: 1px solid #222;
			color: #fafafa;
			font-weight: bold;
			background-color: #111;
			background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAPCAMAAADeWG8gAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjE2QjAxNjRDOUNEOTExRTE4RTNFRkI1RDQ2MUYxOTQ3IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjE2QjAxNjREOUNEOTExRTE4RTNFRkI1RDQ2MUYxOTQ3Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MTZCMDE2NEE5Q0Q5MTFFMThFM0VGQjVENDYxRjE5NDciIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MTZCMDE2NEI5Q0Q5MTFFMThFM0VGQjVENDYxRjE5NDciLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz42AEtnAAAABlBMVEX///////9VfPVsAAAAAnRSTlP/AOW3MEoAAAAWSURBVHjaYmAgFzBiACKFho6NAAEGAD07AG1pn932AAAAAElFTkSuQmCC) no-repeat 10px center, -moz-linear-gradient(#444, #111); 
			background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAPCAMAAADeWG8gAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjE2QjAxNjRDOUNEOTExRTE4RTNFRkI1RDQ2MUYxOTQ3IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjE2QjAxNjREOUNEOTExRTE4RTNFRkI1RDQ2MUYxOTQ3Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MTZCMDE2NEE5Q0Q5MTFFMThFM0VGQjVENDYxRjE5NDciIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MTZCMDE2NEI5Q0Q5MTFFMThFM0VGQjVENDYxRjE5NDciLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz42AEtnAAAABlBMVEX///////9VfPVsAAAAAnRSTlP/AOW3MEoAAAAWSURBVHjaYmAgFzBiACKFho6NAAEGAD07AG1pn932AAAAAElFTkSuQmCC) no-repeat 10px center, 
						
			-webkit-linear-gradient(#444, #111);
			
			background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAPCAMAAADeWG8gAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjE2QjAxNjRDOUNEOTExRTE4RTNFRkI1RDQ2MUYxOTQ3IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjE2QjAxNjREOUNEOTExRTE4RTNFRkI1RDQ2MUYxOTQ3Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MTZCMDE2NEE5Q0Q5MTFFMThFM0VGQjVENDYxRjE5NDciIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MTZCMDE2NEI5Q0Q5MTFFMThFM0VGQjVENDYxRjE5NDciLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz42AEtnAAAABlBMVEX///////9VfPVsAAAAAnRSTlP/AOW3MEoAAAAWSURBVHjaYmAgFzBiACKFho6NAAEGAD07AG1pn932AAAAAElFTkSuQmCC) no-repeat 10px center, -o-linear-gradient(#444, #111);
			background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAPCAMAAADeWG8gAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjE2QjAxNjRDOUNEOTExRTE4RTNFRkI1RDQ2MUYxOTQ3IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjE2QjAxNjREOUNEOTExRTE4RTNFRkI1RDQ2MUYxOTQ3Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MTZCMDE2NEE5Q0Q5MTFFMThFM0VGQjVENDYxRjE5NDciIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MTZCMDE2NEI5Q0Q5MTFFMThFM0VGQjVENDYxRjE5NDciLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz42AEtnAAAABlBMVEX///////9VfPVsAAAAAnRSTlP/AOW3MEoAAAAWSURBVHjaYmAgFzBiACKFho6NAAEGAD07AG1pn932AAAAAElFTkSuQmCC) no-repeat 10px center, -ms-linear-gradient(#444, #111);
			background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAPCAMAAADeWG8gAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjE2QjAxNjRDOUNEOTExRTE4RTNFRkI1RDQ2MUYxOTQ3IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjE2QjAxNjREOUNEOTExRTE4RTNFRkI1RDQ2MUYxOTQ3Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MTZCMDE2NEE5Q0Q5MTFFMThFM0VGQjVENDYxRjE5NDciIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MTZCMDE2NEI5Q0Q5MTFFMThFM0VGQjVENDYxRjE5NDciLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz42AEtnAAAABlBMVEX///////9VfPVsAAAAAnRSTlP/AOW3MEoAAAAWSURBVHjaYmAgFzBiACKFho6NAAEGAD07AG1pn932AAAAAElFTkSuQmCC) no-repeat 10px center, linear-gradient(#444, #111);
			-moz-border-radius: 6px;
			-webkit-border-radius: 6px;
			border-radius: 6px;
			-moz-box-shadow: 0 1px 1px #777, 0 1px 0 #666 inset;
			-webkit-box-shadow: 0 1px 1px #777, 0 1px 0 #666 inset;
			box-shadow: 0 1px 1px #777, 0 1px 0 #666 inset;
		}
		
/* fix for 'Menu' float drop */
#menu-trigger {
			position: absolute;
			top: 12px;
			width: 100%;
			text-align: right;
			padding: 0 35px 0 0;
	}
		
/* Main nav */
		#menu {
			margin: 0; padding: 10px;
			position: absolute;
			top: 50px;
			width: 100%;
			z-index: 1000;
			background-color:#444;
			display: none;
			-moz-box-shadow: none;
			-webkit-box-shadow: none;
			box-shadow: none;		
		}

		#menu:after {
			content: '';
			position: absolute;
			left: 25px;
			top: -8px;
			border-left: 8px solid transparent;
			border-right: 8px solid transparent;
			border-bottom: 8px solid #444;
		}	

		#menu ul {
			position: static;
			visibility: visible;
			opacity: 1;
			margin: 0;
			background: none;
			-moz-box-shadow: none;
			-webkit-box-shadow: none;
			box-shadow: none;				
		}

		#menu ul ul {
			margin: 0 0 0 20px !important;
			-moz-box-shadow: none;
			-webkit-box-shadow: none;
			box-shadow: none;		
		}

		#menu li {
			position: static;
			display: block;
			float: none;
			border: 0;
			margin: 5px;
			-moz-box-shadow: none;
			-webkit-box-shadow: none;
			box-shadow: none;			
		}

		#menu ul li{
			margin-left: 20px;
			-moz-box-shadow: none;
			-webkit-box-shadow: none;
			box-shadow: none;		
		}
		
		#menu .ar ul li{
			margin-right: 20px;
			-moz-box-shadow: none;
			-webkit-box-shadow: none;
			box-shadow: none;		
		}	
		
		#menu a{
			display: block;
			float: none;
			padding: 0;
			color: #999;
		}

		#menu a:hover{
			color: #fafafa;
		}	

		#menu ul a{
			padding: 0;
			width: auto;		
		}

		#menu ul a:hover{
			background: none;	
		}

		#menu ul li:first-child a:after,
		#menu ul ul li:first-child a:after {
			border: 0;
		}		
				
		
		.zeroMargin_tablet {
		margin-left: 0;
		}		
	}




@media only screen and (min-width: 640px) {
	
.hide_mobile {
		display: inline;
}

.hide_tablet {
		display: none;
}


/* #menu.ar.hide_mobile {
		display: inline;
		}

		
#menu.ar.hide_tablet {
		display: none;
		}
		
#menu.ar.hide_desktop {
		display: none;
		}
*/ 

#menu {
/*		display: block !important; */
		display: block;
		background-color: transparent;
		background: transparent;
		border:none;
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
		box-shadow: none;
}
		
#menu li {
	border-right: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: 1px 0 0 #444;
	box-shadow: none;
}

#menu li:hover {
	border-bottom: 3px solid #c96;
}

#menu li:hover > a {
	color: #fafafa;
}

*html #menu li a:hover { /* IE6 only */
	color: #fafafa;
}






/* #menu_ar_tablet styling */
	/* From default menu styles */

#menu_ar_tablet, #menu_ar_tablet ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#menu_ar_tablet {
	position: absolute;
	z-index: 1000;
	right: 0;
	width: 640px;
	border: 1px solid #222;
	background-color: transparent;
	background-image: -moz-linear-gradient(#444, #111); 
	background-image: -webkit-gradient(linear, left top, left bottom, from(#444), to(#111));	
	background-image: -webkit-linear-gradient(#444, #111);	
	background-image: -o-linear-gradient(#444, #111);
	background-image: -ms-linear-gradient(#444, #111);
	background-image: linear-gradient(#444, #111);
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	-moz-box-shadow: 0 1px 1px #777, 0 1px 0 #666 inset;
	-webkit-box-shadow: 0 1px 1px #777, 0 1px 0 #666 inset;
	box-shadow: 0 1px 1px #777, 0 1px 0 #666 inset;
}
	
#menu_ar_tablet:before,
#menu_ar_tablet:after {
	content: "";
	display: table;
}

#menu_ar_tablet:after {
	clear: both;
}

#menu_ar_tablet {
	zoom:1;
}

#menu_ar_tablet li {
	float: left;
	border-right: 1px solid #222;
	-moz-box-shadow: 1px 0 0 #444;
	-webkit-box-shadow: 1px 0 0 #444;
	box-shadow: 1px 0 0 #444;
	position: relative;
}

#menu_ar_tablet a {
	float: left;
	padding: 12px 20px 6px 20px;	
	color: #c96;
	text-transform: uppercase;
/*	font: bold 12px Arial, Helvetica; */
	font-family: 'Muli', sans-serif;
	font-weight: 500;
	font-size: 12px;
	text-decoration: none;
	text-shadow: 0 1px 0 #000;
}

#menu_ar_tablet.ar a {
	padding: 12px 18px 6px 6px;	
	font-family: 'Droid Arabic Kufi', serif;
}

#menu_ar_tablet li:hover > a {
	color: #fafafa;
}

*html #menu_ar_tablet li a:hover { /* IE6 only */
	color: #fafafa;
}

#menu_ar_tablet ul {
	margin: 20px 0 0 0;
	_margin: 0; /*IE6 only*/
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 40px;
	left: 0;
	z-index: 1000;    
	background: #444;
	background: -moz-linear-gradient(#444, #111);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#444), to(#111));
	background: -webkit-linear-gradient(#444, #111);    
	background: -o-linear-gradient(#444, #111);	
	background: -ms-linear-gradient(#444, #111);	
	background: linear-gradient(#444, #111);
	-moz-box-shadow: 0 -1px rgba(255,255,255,.3);
	-webkit-box-shadow: 0 -1px 0 rgba(255,255,255,.3);
	box-shadow: 0 -1px 0 rgba(255,255,255,.3);	
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;  
}

#menu_ar_tablet li:hover > ul {
	opacity: 1;
	visibility: visible;
	margin: 0;
}

#menu_ar_tablet ul ul {
	top: 0;
	left: 150px;
	margin: 0 0 0 20px;
	_margin: 0; /*IE6 only*/
	-moz-box-shadow: -1px 0 0 rgba(255,255,255,.3);
	-webkit-box-shadow: -1px 0 0 rgba(255,255,255,.3);
	box-shadow: -1px 0 0 rgba(255,255,255,.3);		
}

#menu_ar_tablet ul li {
	float: none;
	display: block;
	border: 0;
	_line-height: 0; /*IE6 only*/
	-moz-box-shadow: 0 1px 0 #111, 0 2px 0 #666;
	-webkit-box-shadow: 0 1px 0 #111, 0 2px 0 #666;
	box-shadow: 0 1px 0 #111, 0 2px 0 #666;
}

#menu_ar_tablet ul li:last-child {   
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;    
}

#menu_ar_tablet ul a {    
	padding: 10px;
	width: 180px;
	_height: 10px; /*IE6 only*/
	display: block;
	white-space: nowrap;
	float: none;
	text-transform: none;
}

#menu_ar_tablet ul a:hover {
	background-color: #c96;
	background-image: -moz-linear-gradient(#c96, #963);	
	background-image: -webkit-gradient(linear, left top, left bottom, from(c96), to(#963));
	background-image: -webkit-linear-gradient(#c96, #963);
	background-image: -o-linear-gradient(#c96, #963);
	background-image: -ms-linear-gradient(#c96, #963);
	background-image: linear-gradient(#c96, #963);
}

#menu_ar_tablet ul li:first-child > a {
	-moz-border-radius: 3px 3px 0 0;
	-webkit-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
}

#menu_ar_tablet .ar ul li:first-child > a:after {
	content: '';
	position: absolute;
	left: 40px;
	top: -6px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #444;
}

#menu_ar_tablet ul ul li:first-child a:after {
	left: -6px;
	top: 50%;
	margin-top: -6px;
	border-left: 0;	
	border-bottom: 6px solid transparent;
	border-top: 6px solid transparent;
	border-right: 6px solid #3b3b3b;
}

#menu_ar_tablet ul li:first-child a:hover:after {
	border-bottom-color: #c96; 
}

#menu_ar_tablet ul ul li:first-child a:hover:after {
	border-right-color: #963;
	border-bottom-color: transparent; 	
}

#menu_ar_tablet ul li:last-child > a {
	-moz-border-radius: 0 0 3px 3px;
	-webkit-border-radius: 0 0 3px 3px;
	border-radius: 0 0 3px 3px;
}



	/* From mobile #menu_ar_tablet Main nav styles */
/*		#menu_ar_tablet {
			margin: 0; padding: 10px;
			position: absolute;
			top: 50px;
			width: 100%;
			z-index: 1000;
			background-color:#444;
			display: none;
			-moz-box-shadow: none;
			-webkit-box-shadow: none;
			box-shadow: none;		
		}

		#menu_ar_tablet:after {
			content: '';
			position: absolute;
			left: 25px;
			top: -8px;
			border-left: 8px solid transparent;
			border-right: 8px solid transparent;
			border-bottom: 8px solid #444;
		}	

		#menu_ar_tablet ul {
			position: static;
			visibility: visible;
			opacity: 1;
			margin: 0;
			background: none;
			-moz-box-shadow: none;
			-webkit-box-shadow: none;
			box-shadow: none;				
		}

		#menu_ar_tablet ul ul {
			margin: 0 0 0 20px !important;
			-moz-box-shadow: none;
			-webkit-box-shadow: none;
			box-shadow: none;		
		}

		#menu_ar_tablet li {
			position: static;
			display: block;
			float: none;
			border: 0;
			margin: 5px;
			-moz-box-shadow: none;
			-webkit-box-shadow: none;
			box-shadow: none;			
		}

		#menu_ar_tablet ul li{
			margin-left: 20px;
			-moz-box-shadow: none;
			-webkit-box-shadow: none;
			box-shadow: none;		
		}
		
		#menu_ar_tablet .ar ul li{
			margin-right: 20px;
			-moz-box-shadow: none;
			-webkit-box-shadow: none;
			box-shadow: none;		
		}	
		
		#menu_ar_tablet a{
			display: block;
			float: none;
			padding: 0;
			color: #999;
		}

		#menu_ar_tablet a:hover{
			color: #fafafa;
		}	

		#menu_ar_tablet ul a{
			padding: 0;
			width: auto;		
		}

		#menu_ar_tablet ul a:hover{
			background: none;	
		}

		#menu_ar_tablet ul li:first-child a:after,
		#menu_ar_tablet ul ul li:first-child a:after {
			border: 0;
		}
*/		
		
			
/* From tablet #menu_ar_tablet styles*/
				
#menu_ar_tablet {
/*		display: block !important; */
		display: block;
		background-color: transparent;
		background: transparent;
		border:none;
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
		box-shadow: none;
}
		
#menu_ar_tablet li {
	border-right: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: 1px 0 0 #444;
	box-shadow: none;
}

#menu_ar_tablet li:hover {
	border-bottom: 3px solid #c96;
}

#menu_ar_tablet li:hover > a {
	color: #fafafa;
}

*html #menu_ar_tablet li a:hover { /* IE6 only */
	color: #fafafa;
}

/* #menu_ar_tablet styling  END*/



.main_content {
	margin-top: 0px;
	padding: 0 10px 0 10px;
}
	
.zeroMargin_desktop {
	margin-left: 0;
}

.hide_desktop {
		display: none;
}
/*
}
*/
	
/* iPad */
	.no-transition {
		-webkit-transition: none;
		-moz-transition: none;
		-ms-transition: none;
		-o-transition: none;
		transition: none;
		opacity: 1;
		visibility: visible;
		display: none;  		
	}
	#menu li:hover > .no-transition {
		display: block;
	}


/* Tablet Layout: 640px to 768px. Inherits styles from: Mobile Layout. */

.header {
	background-image: url(images/backgrounds/bg-header-patched-480x100.jpg);
}

/* Language nav */
.language_nav_wrapper {
	margin: 4px 10px 4px 4px;
	float: right;
}

ul.language_nav {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

ul.language_nav li {
}

ul.language_nav a {
	display: block;
	text-align: center;
	text-decoration: none;
/*	font: 10px 'PTSansBold',arial,helvetica,sans-serif; */
	font-family: 'Muli', sans-serif;
	color: #c96;
	font-style: normal;
	font-weight: 300;
	font-size: .8em;
	color: #FAF9F6;
	text-shadow: 0 1px 0 #FFFFFF;
	padding: 4px;
/*	border: 1px solid rgb(43,32,19);
	border-radius: 2px 2px 2px 2px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
	margin: 0 0 4px 0;  */
}

ul.language_nav a:hover {
	color: #fafafa;
/*	background-color: rgb(221,0,0);
	background:-webkit-linear-gradient(top, rgba(221,0,0,.5), rgba(170,0,0,.1));
	background:-moz-linear-gradient(top, rgba(221,0,0,.5), rgba(170,0,0,.1));
	background:-o-linear-gradient(top, rgba(221,0,0,.5), rgba(170,0,0,.1));
	background:linear-gradient(top, rgba(221,0,0,.5), rgba(170,0,0,.1));
*/
	background-color: #c96;
	background-image: -moz-linear-gradient(#c96, #963);	
	background-image: -webkit-gradient(linear, left top, left bottom, from(c96), to(#963));
	background-image: -webkit-linear-gradient(#c96, #963);
	background-image: -o-linear-gradient(#c96, #963);
	background-image: -ms-linear-gradient(#c96, #963);
	background-image: linear-gradient(#c96, #963);
	border-bottom: solid 1px #c96;	
}
/* Language nav END */

/*Tablet background images */
.header {
	background-image: url(images/backgrounds/bg-header-patched-960x100.jpg);
}

#bg_welcome {
		background-image:url(images/backgrounds/bg_welcome_1421_960_straight.jpg);
		background-position: top left;
		background-repeat: no-repeat;
		background-size: cover;
		min-height: 100%
}
#bg_exhibition_intro, #bg_exhibition_firstnav, #bg_exhibition_artofnav, #bg_exhibition_future, #bg_exhibition_oceancom, #bg_exhibition_tradconstr {
		background-image:url(images/backgrounds/bg_exhibition_960.jpg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		min-height: 100%
}

#bg_gallery, #bg_more_traders_game, #bg_more_maps {			
		background-image: url(images/backgrounds/bg_map_960.jpg);
		background-position: top left;
		background-repeat: no-repeat;
		background-size: cover;
		min-height: 100%
}

#bg_visit_info, #bg_tandc {
		background-image: url(images/backgrounds/bg_visit_960.jpg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		min-height: 100%;
}

#bg_background_links, #bg_background_the_exhibition, #bg_background_sponsors {
/*		background-image: url(images/backgrounds/bg_more_960.jpg);	*/
		background-image: url(images/backgrounds/more_bg_960.jpg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		min-height: 100%;
}
	
#bg_news {
		background-color: #bf9b77;	
/*		background-image: url(images/backgrounds/bg_news_960.jpg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		min-height: 100%;
*/
}


/*Tablet background images end*/

.zeroMargin_tablet {
margin-left: 0;
}

.hide_tablet {
display: none;
}
}


/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */
@media only screen and (min-width: 769px) {
	
.header {
	background-image: url(images/backgrounds/bg-header-patched-1152x100.jpg);
}
	
/* Desktop background images*/
#bg_welcome {
		background-image:url(images/backgrounds/bg_welcome_1421_1152_straight.jpg);
		background-position: top left;
		background-repeat: no-repeat;
		background-size: cover;
		min-height: 100%
}

#bg_exhibition_intro, #bg_exhibition_firstnav, #bg_exhibition_artofnav, #bg_exhibition_future, #bg_exhibition_oceancom, #bg_exhibition_tradconstr {
		background-image:url(images/backgrounds/bg_exhibition_1152.jpg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		min-height: 100%
}

#bg_gallery, #bg_more_traders_game, #bg_more_maps {			
		background-image: url(images/backgrounds/bg_map_1152.jpg);
		background-position: top left;
		background-repeat: no-repeat;
		background-size: cover;
		min-height: 100%
}

#bg_visit_info, #bg_tandc {
		background-image: url(images/backgrounds/bg_visit_1152.jpg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		min-height: 100%;
}

#bg_background_links, #bg_background_the_exhibition, #bg_background_sponsors {
/*		background-image: url(images/backgrounds/bg_more_1152.jpg);	*/
		background-image: url(images/backgrounds/more_bg_1152.jpg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		min-height: 100%;
}
	
#bg_news {
		background-color: #bf9b77;
/*		background-image: url(images/backgrounds/bg_news_1152.jpg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		min-height: 100%;
*/
}
/* Desktop background images END*/

#news {
	margin-top: 0px;
	margin-left: -36px;
}

.zeroMargin_desktop {
margin-left: 0;
}

.hide_desktop {
display: none;
}
}


@media only screen and (min-width: 870px) {

.hide_game {
	display: block;
}
}

@media only screen and (max-width: 869px) {

.hide_game {
	display: none;
}
}



