
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;500;600;700&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

:root {
  --ocean-deep: #0a1628;
  --ocean-mid: #0d2444;
  --ocean-surface: #133a6b;
  --gold-bright: #f5c842;
  --gold-muted: #c8a84b;
  --gold-dim: #8a6e2f;
  --cream: #f7f0e0;
  --cream-dark: #e8dcc8;
  --copper: #b87333;
  --sacred-red: #8b1a1a;
  --white: #ffffff;
  --text-body: #2a1a0a;
  --text-light: #f0e8d8;
  --shadow-gold: rgba(197, 168, 75, 0.3);
  --shadow-deep: rgba(5, 12, 30, 0.6);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'EB Garamond', Georgia, serif;
  background-color: var(--ocean-deep);
  color: var(--cream);
  min-height: 100vh;
  line-height: 1.8;
  font-size: 17px;
  overflow-x: hidden;
}

/* ===== COSMIC BACKGROUND ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(19, 58, 107, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(139, 26, 26, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(13, 36, 68, 0.8) 0%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}
img {
max-width:100%;
height:auto;
}
/* ===== SITE HEADER ===== */
.site-header {
  background: linear-gradient(180deg, rgba(5,12,28,0.98) 0%, rgba(10,22,40,0.95) 100%);
  border-bottom: 2px solid var(--gold-dim);
  padding: 0;
}

.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-area a {
  display: block;
}

.logo-area img {
  height: 50px;
  width: auto;
  display: block;
}

.lang-btn {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold-muted));
  color: var(--ocean-deep);
  border: none;
  padding: 8px 16px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.lang-btn:hover {
  background: linear-gradient(135deg, var(--gold-muted), var(--gold-bright));
  transform: translateY(-1px);
}

/* ===== NAV BAR ===== */
.main-nav {
  background: linear-gradient(90deg, var(--ocean-mid), var(--ocean-surface), var(--ocean-mid));
  border-bottom: 1px solid rgba(197, 168, 75, 0.25);
}

.main-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.main-nav a {
  color: var(--cream);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 11px 18px;
  display: block;
  transition: all 0.2s ease;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.main-nav a:hover {
  background: rgba(197, 168, 75, 0.15);
  color: var(--gold-bright);
}

/* ===== HERO BANNER ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-bottom: 0;
}

.page-hero-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 220px;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.2) 0%,
    rgba(10,22,40,0.6) 100%
  );
}

/* ===== SPONSOR BANNER ===== */
.sponsor-banner {
  text-align: center;
  padding: 12px 20px;
  background: rgba(10,22,40,0.7);
  border-bottom: 1px solid rgba(197, 168, 75, 0.15);
}

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background: rgba(10, 22, 40, 0.85);
  border-bottom: 1px solid rgba(197, 168, 75, 0.2);
  padding: 10px 20px;
}

.breadcrumb-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  color: var(--gold-dim);
  letter-spacing: 0.05em;
}

.breadcrumb-bar-inner a {
  color: var(--gold-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-bar-inner a:hover {
  color: var(--gold-bright);
}

.breadcrumb-bar-inner span {
  color: var(--cream);
}

.breadcrumb-sep {
  margin: 0 8px;
  color: var(--gold-dim);
}

/* ===== MAIN LAYOUT ===== */
.main-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

/* ===== ARTICLE AREA ===== */
.article-main {
  min-width: 0;
}

/* ===== PAGE TITLE ===== */
.page-title-block {
  text-align: center;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gold-dim);
  position: relative;
}

.page-title-block::after {
  content: '❖';
  display: block;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ocean-deep);
  padding: 0 12px;
  color: var(--gold-muted);
  font-size: 18px;
  line-height: 1;
}

.page-title-block .subtitle-tag {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-muted);
  display: block;
  margin-bottom: 10px;
}

h1.main-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1.15;
  text-shadow: 0 0 30px rgba(245, 200, 66, 0.35), 0 2px 6px var(--shadow-deep);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.page-title-block .tagline {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--cream-dark);
  opacity: 0.85;
}
/* ===== HEAD SECTION  ===== */
.Kdsgn-Head-Sections, .Kdsgn-Sections {
	background-color:var(--gold-bright) !important;
	border:4px solid var(--gold-dim) !important;
	padding:10px;
}
.Kdsgn-Head-Sections ul li, .Kdsgn-Sections ul li {
	display:inline-block;
	float:none !important;
	margin:0 !important;
	padding:0 !important;
	}
@media (min-width:300px) {
.Kdsgn-Head-Sections ul li, .Kdsgn-Sections ul li {
	background-color:none !important;
	background:none !important;
	}
}
.Kdsgn-Head-Sections ul li a, .Kdsgn-Sections ul li a {
	background:var(--gold-dim);
	border:2px solid var(--gold-dim);
	display:inline-block;
	padding:0 8px;
	margin:3px;
	text-decoration:none;
	color:var(--gold-bright);
	transition: all 0.5s ease 0s;
	}
.Kdsgn-Head-Sections > ul > li:hover, .Kdsgn-Sections > ul > li:hover {
	background-color:none !important;
	background:none !important;
	}
.Kdsgn-Head-Sections ul li a:hover, .Kdsgn-Sections ul li a:hover {
	background:none;
	background-color:none !important;
	color:var(--gold-dim);
	}
.Kdsgn-Sections .tryOutWrap {
	color:var(--gold-dim) !important;
	font-size: x-large;
    font-weight: 700;
    text-transform: uppercase;
	text-decoration:underline;
	}
/* ===== OG IMAGE (HERO ART) ===== */
.og-hero-image {
  max-width: 100%;
  height:auto;
  border-radius: 6px;
  margin-bottom: 32px;
  display: block;
  border: 1px solid var(--gold-dim);
  box-shadow: 0 8px 32px var(--shadow-deep), 0 0 0 3px rgba(197, 168, 75, 0.12);
}

/* ===== INTRO INTRO BOX ===== */
.intro-callout {
  background: linear-gradient(135deg, rgba(19,58,107,0.45) 0%, rgba(13,36,68,0.6) 100%);
  border-left: 4px solid var(--gold-muted);
  border-radius: 0 6px 6px 0;
  padding: 20px 24px;
  margin-bottom: 32px;
  font-size: 17px;
  color: var(--cream);
  font-style: italic;
  line-height: 1.75;
}

/* ===== BODY TEXT ===== */
.article-body p {
  margin-bottom: 22px;
  color: var(--cream);
  line-height: 1.85;
  font-size: 17px;
}

.article-body h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(18px, 2.8vw, 24px);
  font-weight: 700;
  color: var(--gold-bright);
  margin: 40px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(197, 168, 75, 0.3);
  letter-spacing: 0.04em;
  text-shadow: 0 0 18px rgba(245, 200, 66, 0.2);
}

.article-body h3 {
  font-family: 'Cinzel', serif;
  font-size: clamp(15px, 2.2vw, 19px);
  font-weight: 600;
  color: var(--gold-muted);
  margin: 30px 0 14px;
  letter-spacing: 0.03em;
}

/* ===== INLINE IMAGE (story image) ===== */
.story-img-wrap {
	overflow:hidden
}
@media (min-width:992px) {
	.story-img-wrap-right {
	  float: right;
	  margin: 6px 0 20px 25px;
	  max-width: 360px;
	  width: 50%;
	}
}
.story-img-wrap img, .story-img-wrap-right img {
  max-width: 100%;
  height:auto;
  border-radius: 6px;
  border: 2px solid var(--gold-dim);
  box-shadow: 0 6px 24px var(--shadow-deep);
  display: block;
}

.story-img-wrap figcaption, .story-img-wrap-right figcaption{
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gold-muted);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
  text-transform: uppercase;
}

/* ===== RATNAS GRID ===== */
.ratnas-section {
  margin: 40px 0;
}

.ratnas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.ratna-card {
  background: linear-gradient(145deg, rgba(19,58,107,0.5), rgba(10,22,40,0.75));
  border: 1px solid rgba(197, 168, 75, 0.25);
  border-radius: 8px;
  padding: 16px 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ratna-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.ratna-card:hover {
  border-color: var(--gold-muted);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow-deep);
}

.ratna-card:hover::before {
  opacity: 1;
}

.ratna-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.ratna-name {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.ratna-desc {
  font-size: 13px;
  color: var(--cream-dark);
  line-height: 1.5;
  opacity: 0.85;
}

/* ===== HIGHLIGHT PULLQUOTE ===== */
.pullquote {
  background: linear-gradient(135deg, rgba(139, 26, 26, 0.2) 0%, rgba(13,36,68,0.5) 100%);
  border: 1px solid rgba(184, 115, 51, 0.4);
  border-radius: 8px;
  padding: 28px 32px;
  margin: 36px 0;
  text-align: center;
  position: relative;
}

.pullquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 24px;
  font-family: 'Cinzel Decorative', serif;
  font-size: 80px;
  color: var(--gold-dim);
  line-height: 1;
  opacity: 0.5;
}

.pullquote p {
  font-family: 'EB Garamond', serif;
  font-size: 20px !important;
  font-style: italic;
  color: var(--cream) !important;
  line-height: 1.65 !important;
  margin-bottom: 10px !important;
}

.pullquote cite {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold-muted);
  text-transform: uppercase;
}

/* ===== FACT BOX ===== */
.fact-box {
  background: rgba(10, 22, 40, 0.7);
  border: 1px solid rgba(197, 168, 75, 0.3);
  border-radius: 8px;
  padding: 22px 26px;
  margin: 32px 0;
}

.fact-box-title {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fact-box-title::before {
  content: '◆';
  color: var(--gold-bright);
  font-size: 10px;
}

.fact-box ul {
  list-style: none;
  padding: 0;
}

.fact-box ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--cream);
  font-size: 15px;
  border-bottom: 1px solid rgba(197, 168, 75, 0.08);
  line-height: 1.6;
}

.fact-box ul li:last-child {
  border-bottom: none;
}

.fact-box ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-size: 10px;
  top: 9px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  margin: 40px 0;
}

.faq-item {
  border: 1px solid rgba(197, 168, 75, 0.2);
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  background: rgba(13, 36, 68, 0.7);
  padding: 16px 20px;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-bright);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.03em;
  transition: background 0.2s;
  user-select: none;
}

.faq-question:hover {
  background: rgba(19, 58, 107, 0.8);
}

.faq-toggle {
  font-size: 18px;
  color: var(--gold-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: rgba(10, 22, 40, 0.6);
}

.faq-answer.open {
  max-height: 400px;
  padding: 16px 20px;
}

.faq-answer p {
  font-size: 15px !important;
  color: var(--cream-dark) !important;
  line-height: 1.75 !important;
  margin-bottom: 0 !important;
}

/* ===== BACK LINK ===== */
.back-link-wrap {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(197, 168, 75, 0.25);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold-muted);
  text-decoration: none;
  transition: all 0.2s;
  padding: 10px 20px;
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
}

.back-link:hover {
  color: var(--gold-bright);
  border-color: var(--gold-muted);
  background: rgba(197, 168, 75, 0.08);
}

/* ===== SIDEBAR ===== */
.article-sidebar {
  min-width: 0;
}

.sidebar-card, .section-links {
  background: linear-gradient(180deg, rgba(13,36,68,0.8) 0%, rgba(10,22,40,0.9) 100%);
  border: 1px solid rgba(197, 168, 75, 0.2);
  border-radius: 8px;
  margin-bottom: 24px;
  overflow: hidden;
}

.sidebar-card-title, .section-head {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding: 12px 16px;
  background: rgba(10, 22, 40, 0.6);
  border-bottom: 1px solid rgba(197, 168, 75, 0.2);
}

.sidebar-links {
  padding: 14px 16px;
  list-style: none;
}
.section-links a, .section-links a:link {
	padding: 10px 16px;
	display:block;
	color: var(--cream-dark);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    line-height: 1.45;
	}
.sidebar-links li, .section-links a {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sidebar-links li:last-child, .section-links a:last-child {
  border-bottom: none;
}

.sidebar-links a {
  display: block;
  padding: 8px 0;
  color: var(--cream-dark);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  line-height: 1.45;
}

.sidebar-links a:hover, .section-links a:hover {
  color: var(--gold-bright);
}
.section-links br {
	display:none;
	}
/* ===== RELATED ARTICLES ===== */
.related-thumb {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: background 0.2s;
}

.related-thumb:last-child {
  border-bottom: none;
}

.related-thumb:hover {
  background: rgba(197, 168, 75, 0.06);
}

.related-thumb img {
  width: 56px;
  height: 46px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(197, 168, 75, 0.2);
  flex-shrink: 0;
}

.related-thumb span {
  font-size: 13px;
  color: var(--cream-dark);
  line-height: 1.4;
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, rgba(5,12,28,0.98) 0%, #020810 100%);
  border-top: 1px solid rgba(197, 168, 75, 0.2);
  padding: 40px 20px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(197, 168, 75, 0.15);
}

.footer-nav a {
  color: var(--cream-dark);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
  opacity: 0.8;
}

.footer-nav a:hover {
  color: var(--gold-bright);
  opacity: 1;
}

.footer-newsletter {
  background: rgba(13, 36, 68, 0.5);
  border: 1px solid rgba(197, 168, 75, 0.2);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-newsletter label {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: var(--gold-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.footer-newsletter input[type="text"] {
  flex: 1;
  min-width: 200px;
  padding: 9px 14px;
  background: rgba(10, 22, 40, 0.8);
  border: 1px solid rgba(197, 168, 75, 0.3);
  border-radius: 3px;
  color: var(--cream);
  font-family: 'EB Garamond', serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.footer-newsletter input[type="text"]:focus {
  border-color: var(--gold-muted);
}

.footer-newsletter input[type="submit"] {
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold-muted));
  color: var(--ocean-deep);
  border: none;
  border-radius: 3px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.footer-newsletter input[type="submit"]:hover {
  background: linear-gradient(135deg, var(--gold-muted), var(--gold-bright));
}

.footer-sections {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(197, 168, 75, 0.1);
}

.footer-sections a {
  color: var(--cream-dark);
  text-decoration: none;
  font-size: 13px;
  opacity: 0.7;
  transition: all 0.2s;
  padding: 3px 8px;
  border: 1px solid transparent;
  border-radius: 3px;
}

.footer-sections a:hover {
  color: var(--gold-bright);
  opacity: 1;
  border-color: rgba(197, 168, 75, 0.2);
}

.footer-quick-links {
  text-align: center;
  padding: 14px;
  background: rgba(10, 22, 40, 0.6);
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
}

.footer-quick-links a {
  color: var(--gold-muted);
  text-decoration: none;
  transition: color 0.2s;
  margin: 0 6px;
}

.footer-quick-links a:hover {
  color: var(--gold-bright);
}

.footer-quick-links span {
  color: var(--gold-dim);
  margin: 0 4px;
}

/* ===== TABOOLA ===== */
#taboola-below-article-thumbnails {
  margin-top: 20px;
}

/* ===== UTILITY ===== */
.text-gold { color: var(--gold-bright); }
.text-muted { color: var(--cream-dark); opacity: 0.8; }
.clearfix::after { content: ''; display: table; clear: both; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .main-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px 16px 48px;
  }
  .article-sidebar {
    order: 2;
  }
  .story-img-wrap {
    float: none;
    max-width: 100%;
    width: 100%;
    margin: 0 0 22px 0;
  }
  .ratnas-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media (max-width: 600px) {
  .main-nav a {
    padding: 10px 12px;
    font-size: 11px;
  }
  h1.main-title {
    font-size: 26px;
  }
  .footer-newsletter {
    flex-direction: column;
    align-items: stretch;
  }
  .pullquote p {
    font-size: 17px !important;
  }
  .ratnas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== ANIMATION ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.article-main {
  animation: fadeInUp 0.55s ease both;
}

.page-title-block {
  animation: fadeInUp 0.5s ease 0.1s both;
}

/* ===== DECORATIVE DIVIDER ===== */
.ornate-divider {
  text-align: center;
  margin: 36px 0;
  color: var(--gold-dim);
  font-size: 20px;
  letter-spacing: 14px;
  opacity: 0.6;
}


/*** GOOGLE TRANSLATOR **/
.google-translator {
	display:table;
	position: fixed;
	color:#000;
	font-size: 14px;
	bottom: 0;
	top:auto;
	left:50%;
	right:auto;
	transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		-o-transform: translateX(-50%);
	background: rgba(255, 255, 255, .90);
    z-index: 2;
    padding: 15px;
	-webkit-box-shadow: 0px 0px 7px 5px rgba(0, 0, 0, .15);
	-moz-box-shadow: 0px 0px 7px 5px rgba(0, 0, 0, .15);
	box-shadow: 0px 0px 7px 5px rgba(0, 0, 0, .15);
}
	
#close {
    float:right;
    display:inline-block;
    padding:0 5px;
	z-index:3;
	color:#9e9e9e;
	margin:-14px;
	cursor:pointer
}

#close:hover {
    color:#fff;
    }
/*** end of GOOGLE TRANSLATOR **/