
#sse2
{
    /*You can decorate the menu's container, such as adding background images through this block*/
   background: -webkit-radial-gradient(red 10%, rgb(34,244,34)20%, black 70%); /* Safari 5.1 to 6.0 */
    background: -o-radial-gradient(red 10%, rgb(34,244,34) 20%, black 70%); /* For Opera 11.6 to 12.0 */
    background: -moz-radial-gradient(red 10%, rgb(34,244,34) 20%, black 70%); /* For Firefox 3.6 to 15 */
    background: radial-gradient(red 5%, rgb(34,244,34) 25%, black 70%); /* Standard syntax (must be last) */
    height: 30px;
    padding: 0px;
    border-bottom:solid #fff 1px;
    border-radius:0 0 6px 6px;
    box-sizing: content-box;
}
#sses2
{  top:0;
    margin-left:25px;/*This will make the menu center-aligned. Removing this line will make the menu align left.*/
}
#sses2 ul 
{ 
    position: relative;
    list-style-type: none;
    float:left;
    padding:0;
    margin:0;
}
#sses2 li
{
    float:left;
    list-style-type: none;
    padding:0;margin:0;
    background-image:none;
}
/*CSS for background bubble*/
#sses2 li.highlight
{
    border:solid 1px #ff0000;
    background-color:#00ff00;
    top:3px;
    height:auto;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
     -webkit-box-shadow: inset #ff0000 0px 0px 10px 3px;
     -moz-box-shadow:inset #ff0000 0px 0px 10px 3px;
      box-shadow:inset #ff0000 0px 0px    10px 3px;
    z-index: 1;
    position: absolute;
    overflow:hidden;
}
#sses2 li a
{
    height:20px;
    padding-top: 5px;
    margin: 0 20px;/*used to adjust the distance between each menu item. Now the distance is 20+20=40px.*/
    color: #fff;
    font: normal 2vmin arial;
    text-align: center;
    text-decoration: none;
    float: left;
    display: block;
    position: relative;
    z-index: 2;
}

#sses2 li a:hover
{
    height:20px;
    padding-top: 5px;
    margin: 0 20px;/*used to adjust the distance between each menu item. Now the distance is 20+20=40px.*/
    color: red;
    font: normal 2vmin arial;
    text-align: center;
    text-decoration: none;
    float: left;
    display: block;
    position: relative;
    z-index: 2;
}
 /*vyhľadavanie vo vrchnom menu*/
.search {
	width: 250px;
	height: 25px;
	float: right;
	z-index: 2;
	text-align: center;
	margin-top: 3px;
	margin-right: 10px;
	background: url() no-repeat;
}
 input:focus {
    outline:none;
}
.search-box {
	margin-top: 0px;

	background: transparent;
	text-align: center;
  color:#fff;
  border: 2px solid #000;
  border-radius: 4px;

}
 /*tlacitko hladania  ...hľadaj*/
.button {
  height:20px;
  background: #BD0001;
  border: 1px solid #000;
  border-radius: 20%;
  color: #fff;
  cursor: pointer;

  margin: 0;
  outline: 0;
  padding: 0px 15px;

}

 .button:hover{
  background:  url('img/mb50_3_bg.gif') ;
 }

 .button:active {
  -moz-box-shadow: inset 0 0 10px 1px #000;
  -webkit-box-shadow: inset 0 0 10px 1px #000;
  box-shadow: inset 0 0 10px 1px #000;
   cursor: cell;
}
/*koniec tlacitka hladania  ...hľadaj*/