/* The slider container */
#sliderContainer {
width: 100%;
height: auto;
margin: 0 auto;
}

/* The slider ul stypes, important to note that we hide all the overflow! */
#simpleSlider {
width: 100%;
height: auto;
list-style: none;
padding: 0;
margin: 0 auto;
}
/* styles for each item */
#simpleSlider li {
top: 0px;
left: 0px;
display: none;
text-align: center;
}
#simpleSlider li img {
    width: 100%;
}
/* display the first item */
#simpleSlider li:first-child {
display: block;
}

#menuholder{
 top: 40%;
 position: absolute;
 width: 85%;
 margin-right: 2em;
 margin-left: 2em;
}



#simpleSliderNext, #simpleSliderPrevious{
color: #000;
cursor: pointer!important;
z-index: 999;
}

/* Our style for the next button, this can be anything */
#simpleSliderNext {
float: right;
}
/* Our style for the previous button, this can be anything */
#simpleSliderPrevious {
float: left;
}

/* Some margin for your navigation */
#simpleSliderNav {
margin: 20px;
}
