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


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


/* ---------------------------------------------------------------------- */
/* TABLE OF CONTENTS
/* ----------------------------------------------------------------------
-Generic
-JS-created Code
------------------------------------------------------------------------- */


/* ---------------------------------------------------------------------- */
/* Generic
/* ---------------------------------------------------------------------- */
#polyglotLanguageSwitcher, #polyglotLanguageSwitcher * {
	margin: 0;
	padding: 0; 
	outline: none;
}

#polyglotLanguageSwitcher ul {
	list-style: none;	
}

#polyglotLanguageSwitcher {
	font-size: 11px;
	color: #999999;
	line-height: normal;
	position: relative; /* sets the initial position for the drop-down menu */	
	z-index: 100;
	float: right;
}


#polyglotLanguageSwitcher form {
	display: none;	
}

/* ---------------------------------------------------------------------- */
/* JS-created Code
/* ---------------------------------------------------------------------- */
#polyglotLanguageSwitcher a {
	text-decoration: none;
	display: block;	
	padding: 3px 23px 4px 28px; /* 6px 6px 6px 28px */
	color: #999999;
	width: 7em; /* 84px; total width: 120px */
	background-repeat: no-repeat;
	background-position: 6px center; 
	text-align: right;
}

#polyglotLanguageSwitcher ul.dropdown a {
	padding: 3px 23px 3px 27px;
	width: 80px;
}


#polyglotLanguageSwitcher a:hover {
	color: #000;	
}

#polyglotLanguageSwitcher a.current:link, #polyglotLanguageSwitcher a.current:visited, #polyglotLanguageSwitcher a.current:active {
	position: relative; /* sets the initial position for the trigger arrow */
	background-color: #FFF;
	border: 1px solid #999999;
	border-radius: 0;
	height: 1em; /* 15px */
	font-size: 11px;
	color: #999999;
	width: 80px;
	text-align: right;
}

/*
#polyglotLanguageSwitcher a.current:hover, 
#polyglotLanguageSwitcher ul.dropdown li:hover {
	background-color: #F7F7F7;
}
*/

#polyglotLanguageSwitcher a.active { /* This style is applied as long as the drop-down menu is visible. */
	border-bottom: none !important;
	border-radius: 0 !important;
}

#polyglotLanguageSwitcher span.trigger {
	display: block;
	position: absolute;
	width: 9px;
	height: 5px;
	text-indent: -10000em;
	top: 8px; /* 6px */
	right: 6px;
}

#polyglotLanguageSwitcher a.current:link span.trigger, #polyglotLanguageSwitcher a.current:visited span.trigger {
	background: url(../images/arrow-down-grey.png) no-repeat left top;	
}

/*
#polyglotLanguageSwitcher a.current:hover span.trigger, #polyglotLanguageSwitcher a.current:active span.trigger, #polyglotLanguageSwitcher a.active span.trigger {
	background-position: left bottom !important;
}
*/

/* Drop-Down Menu */

#polyglotLanguageSwitcher ul.dropdown { 
	display: none;
	position: absolute;
	top: 18px; /* 28px */
	left: 10px;
	width: 131px;
	background-color: #FFF;
	border: 1px solid #999999;
	border-top: none !important;
	border-radius: 0;
	padding-top: 3px;
}

#polyglotLanguageSwitcher ul.dropdown li { 
	border-top: none;
}

#polyglotLanguageSwitcher ul.dropdown li:last-child { 
	border-radius: 0;
}

/* Flags */

#language-en { 
	background-image: url(../images/flags/gb.png);
}

#language-de { 
	background-image: url(../images/flags/de.png);	
}

#language-fr { 
	background-image: url(../images/flags/fr.png);	
}

#language-it { 
	background-image: url(../images/flags/it.png);	
}

#language-es { 
	background-image: url(../images/flags/es.png);	
}





/* webkit */
@media screen and (-webkit-min-device-pixel-ratio:0) {
	#polyglotLanguageSwitcher {
		margin-top: 2px;
	}
	
	#polyglotLanguageSwitcher a {
		padding: 2px 23px 4px 28px;
	}
}