@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 {
    line-height: normal;
    position: relative;
    z-index: 100;
	transition: all 0s ease 0s;
	-webkit-transition: all 0s ease 0s;
	-moz-transition: all 0s ease 0s;
	-o-transition: all 0s ease 0s;
	-ms-transition: all 0s ease 0s;
}

#polyglotLanguageSwitcher form {
	display: none;
	background-color:#f0f0f0	
}

/* ---------------------------------------------------------------------- */
/* JS-created Code
/* ---------------------------------------------------------------------- */

#polyglotLanguageSwitcher a {
    text-decoration: none;
    display: block;
    color: rgba(255, 255, 255, 0.74);
    background-repeat: no-repeat;
    background-position: right center;
    font-size: 18px;
    height: 30px;
    padding-right: 15px;
    line-height: 22px;
}

#polyglotLanguageSwitcher a:hover {

}

#polyglotLanguageSwitcher a.current:link, #polyglotLanguageSwitcher a.current:visited, #polyglotLanguageSwitcher a.current:active {
    position: relative;
}

#polyglotLanguageSwitcher a.current:hover, 
#polyglotLanguageSwitcher ul.dropdown li:hover {

}

#polyglotLanguageSwitcher a.active { /* This style is applied as long as the drop-down menu is visible. */
	border-bottom: none !important;
	border-radius: 3px 3px 0 0 !important;
}

#polyglotLanguageSwitcher span.trigger {
    display: block;
    position: absolute;
    width: 9px;
    height: 5px;
    text-indent: -10000em;
    bottom: 5px;
    left: 3px;
}

#polyglotLanguageSwitcher a.current:link span.trigger, #polyglotLanguageSwitcher a.current:visited span.trigger {
	background: url(../images/arrow-down.png) no-repeat left top;
		      -webkit-transition:all 0.2s ease;
  	  -moz-transition:all 0.2s ease;
	  -o-transition:all 0.2s ease;
   	  transition:all 0.2s ease;
	
}

#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: 30px;
    right: 0;
	left:0
}

#polyglotLanguageSwitcher ul.dropdown li { 
}

#polyglotLanguageSwitcher ul.dropdown li:last-child { 
}


.dropdown li{
    background: rgb(234, 234, 234);
    border-radius: 3px;
	padding:0 5px !important
}

.dropdown li a {
    color: #333 !important;
    padding-right: 15px !important;
    line-height: 34px;
}


/* Flags */

#en { 
	background-image: url(../images/online.png) ;
}


#ar { 
	background-image: url(../images/invisible.png);	
}

#rs { 
	background-image: url(../images/flags/rs.png);	
}

