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


/* ---------------------------------------------------------------------- */
/* Polyglot Language Switcher 2
/* ----------------------------------------------------------------------
Version: 1.0.0
Author: Ixtendo
Author URI: http://www.ixtendo.com
License: MIT License
License URI: http://www.opensource.org/licenses/mit-license.php
------------------------------------------------------------------------- */


/* ---------------------------------------------------------------------- */
/* TABLE OF CONTENTS
/* ----------------------------------------------------------------------
-Global Styles
-Selected Locale (the trigger for the dropdown)
-Language Container
------------------------------------------------------------------------- */


/* ---------------------------------------------------------------------- */
/* Global Styles
/* ---------------------------------------------------------------------- */
.polyglot-language-switcher {
	/*font: 14px/1.5em "Helvetica Neue", Helvetica, Arial, sans-serif;  edit or delete so that the switcher inherits the font styles of your project */
}

.polyglot-language-switcher,
.polyglot-language-switcher * {
	margin: 0;
	padding: 0;
}

.polyglot-language-switcher {
	position: relative;	
}

.polyglot-language-switcher ul {
	list-style: none;	
}

.polyglot-language-switcher a {
	transition: all 0.2s ease-in-out;
}

.polyglot-language-switcher img {
	margin-right: 0px;	
}

/* ---------------------------------------------------------------------- */
/* Selected Locale (the trigger for the dropdown)
/* ---------------------------------------------------------------------- */
.polyglot-language-switcher > .pls-selected-locale {
	color: #fff !important;
	text-decoration:none !important; 
    font-family:'Conv_MyriadPro-Regular',Sans-Serif;
	font-size: 12px;
	position: relative; /* for the arrow */
	border-style: solid;
	border-width: 1px;
}

.polyglot-language-switcher > .pls-selected-locale:hover {
	color: #3a91bd;	
}

.polyglot-language-switcher > .pls-selected-locale:after { 
	content: " "; 
	position: absolute;
	top: 50%;
	margin-top: -2px;
	left: 100%;
	margin-left: 0px;
	width: 0; 
}

/* ---------------------------------------------------------------------- */
/* Language Container
/* ---------------------------------------------------------------------- */
.pls-language-container-scrollable {
	position: absolute;
	top: 100%;
	left: 19;
	z-index: 10000;
	width: 100%;
	overflow-x: auto;	
}

.pls-language-container {
	margin-top: 0px;
	padding: 10px 0;
	background-color: rgba(255, 255, 255, 0.7);
}

.pls-language-container td {
	padding: 0 0px;
	border-right: 1px solid #ccc;
	vertical-align: top;
}

.pls-language-container td:last-child {
	border-right: none;
}

.pls-language-container a {
	color: #333;	
	text-decoration: none;
	padding: 5px 15px;
	display: block;
	white-space: nowrap;

}

.pls-language-container a:hover {
	background-color: #333;	
	color: #fff 
}

.pls-language-container .pls-selected-locale {
	color: #333;
	font-weight: bold;	
	cursor: default;
	border:#FFF thick;	
}