In template_css.css you have this:
#nav, #nav ul {
margin: 0;
padding: 0;
list-style-type: none;
list-style-position: outside;
position: absolute;
z-index: 100;
}
Change z-invex value to anything greater that 2000 because that is max z-index of carousel:
#nav, #nav ul {
margin: 0;
padding: 0;
list-style-type: none;
list-style-position: outside;
position: absolute;
z-index: 50000;
}