/* Reset */
.nav,
.nav a,
.nav ul,
.nav li,
.nav div,
.nav form,
.nav input {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
}

.nav a { text-decoration: none; }

.nav li { list-style: none; font-size: 12px; line-height: 14px; margin: 0 0 5px 0; }

/* Menu Container */

.TopMenu-newWrapper {
	margin:0 auto;
	width:970px;
	height: 40px;
	/*position:relative; if activated sticky class(top menu bar folow scroll) not working*/
	background-color: #ff4388;
	z-index: 999999;
}

.sticky {
    position: fixed;
    top: 0;
}

.nav {
	display: inline-block;
	position: relative;
	cursor: default;
	z-index: 500;
}

/* Menu List */
.nav > li {
	display: block;
	float: left;
	margin: 0;
}

/* Menu Links */
.nav > li > a {
	position: relative;
	display: block;
	z-index: 510;
	height: 40px;
	padding: 0 16px;
	line-height: 40px;
	
	font-weight: bold;
	font-size: 14px;
	color: #fcfcfc;
	text-shadow: 0 0 1px rgba(0,0,0,.35);

	background: #ff4388;
	/*border-left: 1px solid #008FA3;
	border-right: 1px solid #70D5E3;*/

	/*-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	-ms-transition: all .3s ease;
	transition: all .3s ease;*/
}

.nav > li:hover > a { background: #ff9dc1; }

.nav > li:first-child > a {
	border-radius: 3px 0 0 3px;
	border-left: none;
}

/* Menu Dropdown */
.nav > li > div {
	position: absolute;
	display: block;
	width: 100%;
	top: 40px;
	left: 5px;

	opacity: 0;
	visibility: hidden;
	overflow: hidden;

	background: #f9f9f9;
	border-radius: 0 0 3px 3px;
	border: 1px solid #bfbfbf;

	/*-webkit-transition: all .3s ease .15s;
	-moz-transition: all .3s ease .15s;
	-o-transition: all .3s ease .15s;
	-ms-transition: all .3s ease .15s;
	transition: all .3s ease .15s;*/
	
	-moz-box-shadow: 3px 3px 7px rgba(10,10,10,0.6);
	-webkit-box-shadow: 3px 3px 7px rgba(10,10,10,0.6);
	box-shadow: 3px 3px 7px rgba(10,10,10,0.6);
	z-index: 9000;
}

.nav > li:hover > div {
	opacity: 1;
	visibility: visible;
	overflow: visible;
}

/* Menu Content Styles */
.nav .nav-column {
	float: left;
	width: 22%;
	padding: 1.2%;
}

.nav .nav-column h3 {
	margin: 8px 0 4px 0;
	line-height: 16px;
	
	font-weight: bold;
	font-size: 14px;
	color: #372f2b;
	text-transform: none;
}

.nav .nav-column h3 a { color: #372f2b; text-decoration: underline;}

.nav .nav-column h3 a:hover { color: #ff6600; text-decoration: underline;}

.nav .nav-column h3.colored { color: #e43f69; }

.nav .nav-column h3.colored a { color: #e43f69; text-decoration:underline; }

.nav .nav-column h3.colored a:hover { color: #ff6600; text-decoration:underline; }


.nav .nav-column li a {
	display: inline;
	line-height: 14px;
	
	font-weight: normal;
	font-size: 12px;
	color: #666666;
	margin: 0 0 5px 0;
}

.nav .nav-column li a:hover { color: #ff6600; text-decoration: underline;}

.newElementTopMenu {
	color: red;
	font-size: 0.9em;
	margin-left: 3px;
}


/*************************************************/
/* Search Form 
.nav > li.nav-search > form {
	position: relative;
	width: inherit;
	height: 54px;
	z-index: 510;
	border-left: 1px solid #4b4441;
}

.nav > li.nav-search input[type="text"] {
	display: block;
	float: left;
	width: 1px;
	height: 24px;
	padding: 15px 0;
	line-height: 24px;

	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-size: 13px;
	color: #999999;
	text-shadow: 0 0 1px rgba(0,0,0,.35);

	background: #372f2b;

	-webkit-transition: all .3s ease 1s;
	-moz-transition: all .3s ease 1s;
	-o-transition: all .3s ease 1s;
	-ms-transition: all .3s ease 1s;
	transition: all .3s ease 1s;
}

.nav > li.nav-search input[type="text"]:focus { color: #fcfcfc; }

.nav > li.nav-search input[type="text"]:focus,
.nav > li.nav-search:hover input[type="text"] {
	width: 110px;
	padding: 15px 20px;

	-webkit-transition: all .3s ease .1s;
	-moz-transition: all .3s ease .1s;
	-o-transition: all .3s ease .1s;
	-ms-transition: all .3s ease .1s;
	transition: all .3s ease .1s;
}

.nav > li.nav-search input[type="submit"] {
	display: block;
	float: left;
	width: 20px;
	height: 54px;
	padding: 0 25px;
	cursor: pointer;

	background: #372f2b url(../img/search-icon.png) no-repeat center center;

	border-radius: 0 3px 3px 0;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	-ms-transition: all .3s ease;
	transition: all .3s ease;
}

.nav > li.nav-search input[type="submit"]:hover { background-color: #4b4441; }
