.ddsmoothmenu{
}

.ddsmoothmenu ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/*Top level list items*/
.ddsmoothmenu ul li{
	position: relative;
	display: inline;
	float: left;
	
	
}

/*Top level menu link items style*/
.ddsmoothmenu ul li a {
	display: block;
	height: 41px;
	width: 114px;
	margin-right: 0px;
	margin-left: 0px;
	border-right: 1px solid orange;
	 box-shadow: 3px 3px 3px rgba(0,0,0,.5);
	margin-top: -9px;
	padding-top: 8px;
	line-height: 17px;
	font-size: 16px;
	color: #333;	
	text-align: center;
	text-decoration: none;
	font-weight: normal;
	outline: none;
	background:url(../images/templatemo_menu_divider.png) center right no-repeat;
	

}

#blog_o_nas {
	width: 97px;
}
#blog_o_nas1 {
	width: 120px;
	border-radius: 0 9px 8px 0px;
	border-right: 0px;
}


* html .ddsmoothmenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline-block;
}
.ddsmoothmenu ul li a.last { background: none }

.ddsmoothmenu ul li a.selected, .ddsmoothmenu ul li a:hover { /*CSS class that's dynamically added to the currently active menu items' LI A element*/
color: red;
background-color: lightblue;
border-radius: 0px;
 transition: background-color 1s cubic-bezier(0.1, 0.8, 0.5, 2), color 1s 0.5s linear;
transform: scale(1.02);
}
	

/*1st sub level menu*/
.ddsmoothmenu ul li ul {
	position: absolute;
	width: 293px;
	margin: 5px 0 0 0;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	background: #f9f7f5;
	border: 5px solid #8e8e8e;
	border-left: 0;
	border-right: 0;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li{
display: list-item;
float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul li ul{
top: 0;
}

/* Sub level menu links style */
.ddsmoothmenu ul li ul li a{
	font-weight: 500;
	width: 263px; /*width of sub menus*/
	margin: 0px;
	padding: 15px 15px;
	height: 10px;
	line-height: 10px;
	font-size: 14px;
	text-align: left;
	background: none;
	color: #666;
	border-bottom: 1px solid #bab5b0;
	border-right: 0px;
	
}

.ddsmoothmenu ul li ul li .last {
	border-bottom: none;
}

.ddsmoothmenu ul li ul li a.selected, .ddsmoothmenu ul li ul li a:hover {
	color: red;
background-color: lightblue;
border-radius: 0px;
 transition: background-color 1s cubic-bezier(0.1, 0.8, 0.5, 2), color 1s 0.5s linear;
transform: scale(1.02);
  

}

/* Holly Hack for IE \*/
* html .ddsmoothmenu{height: 1%;} /*Holly Hack for IE7 and below*/