So, i have this navigation bar:

I want to put a border around it, but it becomes bigger, which i do not like:

I try to set height of the navigation bar, but the links do not fit in anymore, and there's no way to put them back in:

Please help.
Code(CSS):
#navigation {
margin: 0 auto;
background-color: #FFFFFF;
//font-family: lkth;
border: double;
border-width: 5px;
border-color: #663D07;
border-radius: 10px;
height: 40px;
}
#navLi {
display: inline-block;
margin-right: 10px;
}
.navA {
color: #000000;
}
Code(HTML):
<div id="navigation">
<ul id="navUl">
<li id="navLi"><a class="navA" href="#"><p>Page d'accueil</p></a></li>
<li id="navLi"><a class="navA" href="#"><p>Evénements</p></a></li>
<li id="navLi"><a class="navA" href="#"><p>Contactez nous</p></a></li>
</ul>
</div>
Edit:
I get this if i display navLi as block and Navigation as inline-block:
