If you want to fix your navigation than use this:
Greets,
Dude
Code:
.head {
width: 336px;
height: 50px;
float: right;
margin-top: -10px;
background: #333;
background: -moz-linear-gradient(top, #000 0%, #333 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#000), color-stop(100%,#333));
background: -webkit-linear-gradient(top, #000, #333 100%);
background: -o-linear-gradient(top, #000 0%,#333 100%);
background: -ms-linear-gradient(top, #000 0%,#333 100%);
background: linear-gradient(top, #000 0%,#333 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000', endColorstr='#333',GradientType=0 );
border: 1px solid #ADD8E6;
border-radius: 10px;
}
.head .account {
width: 336px;
float: right;
margin-top: 15px;
margin-right: 10px;
}
Dude