/* Reset */
.nav,
.nav a,
.nav ul,
.nav li,
.nav div,
.nav form,
.nav input {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}


/*TM Updates */
.MenuTextTOP
{
	/* font-family: Arial, Verdana, Helvetica,   sans-serif; */
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	padding-top: 0.3em;
	padding-bottom: 0.3em;
}


.MenuTextTOP	 		{ color: #133981; }
.MenuTextTOP a:link		{ color: #133981; text-decoration: none; }
.MenuTextTOP a:visited	{ color: #133981; text-decoration: none; }
.MenuTextTOP a:hover 	{ color: #fff; text-decoration: none; }
.MenuTextTOP a:active	{ color: #133981; text-decoration: none; }

.MenuTextTOP_EXP
{
	/* font-family: Arial, Verdana, Helvetica,   sans-serif; */
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	padding-top: 0.3em;
	padding-bottom: 0.3em;
}


.MenuTextTOP_EXP	 		{ color: #133981; }
.MenuTextTOP_EXP a:link		{ color: #133981; text-decoration: none; }
.MenuTextTOP_EXP a:visited	{ color: #133981; text-decoration: none; }
.MenuTextTOP_EXP a:hover 	{ color: #fff; text-decoration: none; }
.MenuTextTOP_EXP a:active	{ color: #133981; text-decoration: none; }


.MenuDIV_Header
{
    color: #133981;
	font-size: 120%;
}



#MenuDIV a:link, #MenuDIV a:visited {
    color: #fff;
}

#MenuDIV a:hover {
    color: #67B4E4;
}

/*End TM Updates */

.nav a { text-decoration: none; }

.nav li { list-style: none; }

/* Menu Container */
.nav {
	display: inline-block;
	position: relative;
	cursor: default;
	z-index: 500;
}

/* Menu List */
.nav > li {
	display: block;
	float: left;
}

/* Menu Links */
.nav > li > a {
	position: relative;
	display: block;
	z-index: 510;
	height: 28px;
	padding: 2px 10px 0px 10px;
	line-height: 26px;
	
	/* 
	font-family: Arial, Verdana, Helvetica,   sans-serif;
	font-weight: bold;
	font-size: 13px;
	*/
	color: #133981;
	/* text-shadow: 0 0 1px rgba(0,0,0,.35); */

	background: #C9E5EB;
	border-left: 1px solid #eee;
	/* border-right: 1px solid #ccc; */

	-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: #133981; }


.nav > li.MenuTextTOP_EXP:hover > a { color: #133981; background: #C9E5EB; }



.nav > li:first-child > a {
	border-radius: 3px 0 0 3px;
	border-left: none;
}

/* Search Form */
.nav > li.nav-search > form {
	position: relative;
	width: inherit;
	height: 35px;
	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: Arial, Verdana, Helvetica,   sans-serif;
	font-weight: bold;
	font-size: 13px;
	color: #C9E5EB;
	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: 35px;
	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; }

/* Menu Dropdown */
.nav > li > div {
	position: absolute;
	display: block;
	/* width: 100%; */
	top: 30px;
	/* left: 0; */

	opacity: 0;
	visibility: hidden;
	overflow: hidden;

   /* color: #133981; */

	background: #133981;
	border-radius: 0 0 3px 3px;

	-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;
	
    margin-left: 1px;
	padding:8px;
}




.nav > li:hover > div {
	opacity: 1;
	visibility: visible;
	overflow: visible;
}