/*
# ------------------------------------------------------------------------
# Extensions for Joomla 2.5 - Joomla 3.x
# ------------------------------------------------------------------------
# Copyright (C) 2011-2013 Ext-Joom.com. All Rights Reserved.
# @license - PHP files are GNU/GPL V2.
# Author: Ext-Joom.com
# Websites:  http://www.ext-joom.com 
# Date modified: 27/08/2013 - 13:00
# ------------------------------------------------------------------------
*/


/*** ESSENTIAL STYLES ***/
.ext-menu, .ext-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}
.ext-menu li {
	position: relative;
}
.ext-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
	background: none repeat scroll 0 0 #6dc6e8;
	width: 200px;
}
.ext-menu > li {
	float: left;
}
.ext-menu li:hover > ul,
.ext-menu li.sfHover > ul {
	display: block;
}

.ext-menu a {
	display: block;
	position: relative;
}
.ext-menu ul ul {
	top: 0;
	left: 100%;
}


/*** DEMO SKIN ***/
.ext-menu {
}
.ext-menu ul {
	margin-bottom: 10px;
    margin-top: 12px;
    text-align: right;
}
.topNav ul {
	float: right;
}

.topNav ul li {
	text-align: center;
	padding: 0 10px 20px !important;
}

.topNav ul li:hover {
	cursor: pointer;
}

.ext-menu a {
	color: #dc0270;
    font-family: "Lato",sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none !important;
    transition: color 0.1s ease-out 0s;
}

.ext-menu a:hover {
	color: #ba005e;
}

.ext-menu li {
	color: #ffffff;
    display: inline;
    padding: 0 10px;
    text-decoration: none;
}
.ext-menu ul li {
}
.ext-menu ul ul li {
}
.ext-menu li:hover,
.ext-menu li.sfHover {
	/* only transition out, not in */
	-webkit-transition: none;
	transition: none;
}

/*** arrows (for all except IE7) **/
.ext-arrows .ext-with-ul {
	padding-right: 2.5em;
	*padding-right: 1em; /* no CSS arrows for IE7 (lack pseudo-elements) */
}
/* styling for both css and generated arrows */
.ext-arrows .ext-with-ul:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 1em;
	margin-top: -3px;
	height: 0;
	width: 0;
	/* order of following 3 rules important for fallbacks to work */
	border: 5px solid transparent;
	border-top-color: #dFeEFF; /* edit this to suit design (no rgba in IE8) */
	border-top-color: rgba(255,255,255,.5);
}
.ext-arrows > li > .ext-with-ul:focus:after,
.ext-arrows > li:hover > .ext-with-ul:after,
.ext-arrows > .sfHover > .ext-with-ul:after {
	border-top-color: white; /* IE8 fallback colour */
}
/* styling for right-facing arrows */
.ext-arrows ul .ext-with-ul:after {
	margin-top: -5px;
	margin-right: -3px;
	border-color: transparent;
	border-left-color: #dFeEFF; /* edit this to suit design (no rgba in IE8) */
	border-left-color: rgba(255,255,255,.5);
}
.ext-arrows ul li > .ext-with-ul:focus:after,
.ext-arrows ul li:hover > .ext-with-ul:after,
.ext-arrows ul .sfHover > .ext-with-ul:after {
	border-left-color: white;
}

.ext-menu li ul li {
	padding: 0 !important;
}

.ext-menu li ul li a {
	color: #FFF;
	margin: 0 20px;
    padding: 10px 0;
}

.ext-menu li ul li a:hover {
	color: #f1f1f1;
}

.ext-menu li ul li:last-child a {
	border-bottom: none;
}

.ext-menu li ul {
    left: 50%;
    margin-left: -115px;
    width: 230px;
	margin-top: 0;
}