@charset "UTF-8";
/* 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/ 
*/

@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);

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:	25;
	
	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%;
	width: 100%;
	padding: 0 !important;
	margin: 0;
}

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

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

.ar {
	font-family: 'Droid Arabic Kufi', serif;
	font-weight: 300;
}

ul.language_nav {
	list-style-type: none;
	padding-left: 0;
	margin-top: 2%;
	margin-left: 2%;
	overflow: hidden;
}

ul.language_nav a {
	display: inline-block;
	padding-top: 10px;
	width: 100px;
	height: 32px;
	text-align: center;
	text-decoration: none;
/* 	font: 13px/32px 'PTSansBold',arial,helvetica,sans-serif;
	font-weight: bold; */
	font-family: 'Muli', sans-serif;
	font-style: normal;
	font-weight: 300;

	color: #FAF9F6;
	text-shadow: 0 1px 0 #FFFFFF; 
	border: 1px solid #C0A86F;
	border-radius: 2px 2px 2px 2px;
   	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
	margin: 10px;
	background-color: #C0A86F;
	background-image:-webkit-linear-gradient(#966A40, #C0A86F);
	background-image:-moz-linear-gradient(#966A40, #C0A86F);
	background-image:-o-linear-gradient(#966A40, #C0A86F);
	background-image:linear-gradient(#966A40, #C0A86F);
}
ul.language_nav a:hover {
	color: #fafafa;
	background-color: #966A40;
	background-image:-webkit-linear-gradient(#C0A86F, #966A40);
	background-image:-moz-linear-gradient(#C0A86F, #966A40);
	background-image:-o-linear-gradient(#C0A86F, #966A40);
	background-image:linear-gradient(#C0A86F, #966A40);
}

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

#background_image_wrapper {
	background-image: url(images/backgrounds/bg-landing-page-480x320_il.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 100%
}
  
.gridContainer {
	width: 100%;
	margin: 0;
	padding: 0;
	clear: none;
	float: none;
}

.zeroMargin_mobile {
margin-left: 0;
}

.hide_mobile {
display: none;
}

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

@media only screen and (min-width: 481px) {
		
#background_image_wrapper {
	background-image: url(images/backgrounds/bg-landing-page-960x640_il.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 100%
}

.hide_tablet {
display: none;
}

.zeroMargin_tablet {
margin-left: 0;
}
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
		
#background_image_wrapper {
	background-image: url(images/backgrounds/bg-landing-page-1152x768_il.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 100%
}

.zeroMargin_desktop {
margin-left: 0;
}

.hide_desktop {
display: none;
}
}