#cssmenu ul {
    margin: 0;
    padding: 0;
}
#cssmenu li {
    margin: 0;
    padding: 0;
}
#cssmenu a {
    margin: 0;
    padding: 0;
}
#cssmenu ul {
    list-style: none;
    text-align: center;
}
#cssmenu a {
    text-decoration: none;
}
#cssmenu {
    /* This is for the main menu bit at the top */
    width: 92%;
    /* This means on every screen no matter the size, the width will cover the top  */
    line-height: normal;
    text-align: center;
    vertical-align: middle;
	transition: all .3s ease-in-out;
}

#cssmenu.sticky {
    height: auto;
    width: 91%;
}

#cssmenu > ul > li {
    display: inline;
    margin-left: 15px;
    /* This is when the drop down box appears */
    position: relative;
	z-index:5;
}
#cssmenu > ul > li > a {
color: #fff;
font-family: 'Montserrat', sans-serif;
font-size: 22px;
line-height: 70px;
padding: 15px 15px;
-webkit-transition: color .15s;
-moz-transition: color .15s;
-o-transition: color .15s;
transition: color .15s;
font-weight: 600;
text-shadow: 1px 1px 2px #4d4d4d;
}
#cssmenu > ul > li > a:hover {
    color: #ffd74b;
}
#cssmenu > ul > li > ul {
    opacity: 0;
    visibility: hidden;
    padding: 16px 0 20px 0;
    background-color:#ebebeb;
    text-align: left;
    /* This is for the text when box is dropped down, centered isnt always totally in the middle so best to have on the left */
    position: absolute;
    top: 97px;
    /* This is for the drop down annimation */
    left: 50%;
    margin-left: -120px;
    width: 250px;
    -webkit-transition: all .3s .1s;
    -moz-transition: all .3s .1s;
    -o-transition: all .3s .1s;
    transition: all .3s .1s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	border-bottom: solid 2px #c4112f;
}
#cssmenu > ul > li:hover > ul {
    opacity: 1;
    top: 45px;
    /* This is how far from the top the drop down annimation will go  */
    visibility: visible;
}

#cssmenu > ul > li > ul.sticky {
    top: 55px;
}



#cssmenu > ul > li > ul:before {
    content:'';
    display: block;
    border-color: transparent transparent rgb(235, 235, 235) transparent;
    border-style: solid;
    border-width: 10px;
    /* The border on the drop down box  */
    position: absolute;
    top: -20px;
    left: 50%;
    margin-left: -10px;
}
#cssmenu > ul ul > li {
    position: relative;
}
#cssmenu ul ul a {
    /* This is the drop down menu, change font or size when its drops down */
    color: rgb(50, 50, 50);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    padding: 5px 8px 7px 16px;
    display: block;
    -webkit-transition: background-color .1s;
    -moz-transition: background-color .1s;
    -o-transition: background-color .1s;
    transition: background-color .1s;
}
#cssmenu ul ul a:hover {
    background-color:#c4112f;
}
#cssmenu ul ul ul {
    /* In this build i havent included a sub sub menu in, but here is the code if ever needed */
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: -16px;
    left: 200px;
    /* This is for a sub sub menu */
    padding: 10px 0 10px 0;
    background-color: rgb(255, 255, 255);
    text-align: left;
    width: 200px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, .4);
    -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, .4);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, .4);
}
#cssmenu ul ul > li:hover > ul {
    opacity: 1;
    left: 196px;
    visibility: visible;
}
#cssmenu ul ul a:hover {
    background-color: #c4112f;
    color: rgb(240, 240, 240);
}
#wrapper #page #page-bgtop #page-bgbtm #content .post .entry table tr td {
    text-align: center;
}





@media screen and (max-width: 1560px) {
#cssmenu > ul > li > a {font-size:20px;}
}

@media screen and (max-width: 1500px) {
#cssmenu > ul > li > a {font-size:18px; padding:12px 12px;}
}

@media screen and (max-width: 1390px) {
#cssmenu > ul > li > a {padding:10px 10px;}
}

@media screen and (max-width: 1300px) {
#cssmenu > ul > li > a {font-size:17px; padding:8px 8px;}
}


@media screen and (max-width: 1220px) {
#cssmenu {display:none !important;}
}
