@import url(http://fonts.googleapis.com/css?family=PT+Sans:400,700|Sigmar+One);

#cssmenu {
  background: transparent;
  margin: 30px 0 0;
  width: auto;
  padding: 0;
  line-height: 1;
  display: block;
  position: relative;
  font-family: 'PT Sans', sans-serif;
/*  z-index: 9999;*/
  padding: 7px;
}

#cssmenu > ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: block;
    text-align: center;
}

#cssmenu > ul:after,
#cssmenu:after {
  content: " ";
  display: block;
  font-size: 0;
  height: 0;
  clear: both;
  visibility: hidden;
}

#cssmenu > ul > li {
	margin: 0 10px;
	padding: 0;
	display: inline-block;
	position: relative;
    width: auto;
}

#cssmenu > ul > li:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  z-index: 0;
  background: #c1c1c1;
  -webkit-transition: height .2s;
  -moz-transition: height .2s;
  -ms-transition: height .2s;
  -o-transition: height .2s;
  transition: height .2s;
}

#cssmenu > ul > li:hover:after,
#cssmenu > ul > li.active:after {
  height: 100%;
}

#cssmenu > ul > li > a {
  text-decoration: none;
  display: block;
  margin: 0;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#cssmenu > ul > li > a {
  color: #333;
  padding: 10px 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  z-index: 2;
  position: relative;
}

#cssmenu > ul > li:hover > a,
#cssmenu > ul > li.active > a {
  color: #fff;
}


/*** Menu ***/
nav.mnu, nav.mnu *, nav.mnu *:before, nav.mnu *:after {
    box-sizing: border-box;	/* !!!!!!!!!!! */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;	
}

nav.mnu ul {
    transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
	padding: 0;
	margin: 0;
}

nav.mnu {
	display: block;
    position: relative;
    padding: 0;
}

nav.mnu > ul {
    position: relative;
}

nav.mnu > ul > li {
}

nav.mnu > ul > li + li {
}

nav.mnu > ul > li > a {
}

nav.mnu > ul > li > a:hover, nav.mnu > ul > li:hover > a {
}

/********** Sub Menu ************/

nav.mnu ul ul{
    width: 280px;
    
	visibility:hidden;
	opacity:0;
	position: absolute;
}

nav.mnu ul li:hover > ul{
	visibility:visible;
	opacity:1;
}

nav.mnu > ul > li > ul {
	left: 50%;
	top: calc(100% - 999px);
}

nav.mnu > ul > li > ul:before {
	content: "";
    display: block;
    position: absolute;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    left: calc(-50% - 1px);
    top: calc(999px + 25px - 1px);
}

nav.mnu > ul > li > ul > li {
	left: -50%;
    top: calc(999px + 25px);
    text-align: left;
}
	

nav.mnu ul ul li, nav.mnu ul ul a {
	display: block;
	position: relative;
}

nav.mnu ul ul a {
	height: auto;
    padding: 5px 15px;
	color: #333333;
	text-decoration: none;
	font-size: 16px;
    line-height: 1;
    transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

nav.mnu ul ul li > a:hover, nav.mnu ul ul li:hover > a {
	color: #FFFFFF;
	text-decoration: none;
}

nav.mnu .right + ul {
	top: 0;
	left: calc(100% + 4px);
}

nav.mnu .left + ul {
	top: 0;
	right: calc(100% + 4px);
}

nav.mnu ul ul li:hover {
    background: #c1c1c1;
}

nav.mnu ul ul li:first-child {
	border-radius: 3px 3px 0 0;
}

nav.mnu ul ul li:last-child {
	border-radius: 0px 0px 3px 3px;
}

nav.mnu > ul > li > ul:before, nav.mnu ul ul ul {
	background: #FFFFFF;
    border: 1px solid white;
    box-shadow: 0 0 10px rgba(0,0,0,0.7), 0px 0px 0px 1px rgb(189, 150, 90);
    border-radius: 3px;
}

/************ Arrow *************/

nav.mnu > ul > li > a.arrow:after {
	content: "";
    display: block;
    position: absolute;
    border: 6px solid transparent;
    border-top-color: inherit;
    z-index: 999;
    height: 0;
    width: 0;
    left: calc(50% - 6px);
    top: 80%;
}

nav.mnu a.arrow.right:after {
  content: "";
  display: block;
  position: absolute;
  height: 0;
  width: 0;
  top: calc(50% - 6px);
  right: 2%;
  border: 6px solid transparent;
  border-left-color: inherit;
}

nav.mnu a.arrow.left:after {
  content: "";
  display: block;
  position: absolute;
  height: 0;
  width: 0;
  top: calc(50% - 6px);
  right: 95%;
  border: 6px solid transparent;
  border-right-color: inherit;
}

/************ Transfer *************/

nav.mnu > ul > li > a.arrow:hover:before, nav.mnu > ul > li:hover > a.arrow:before {
	content: "";
    display: block;
    position: absolute;
	width: 100%;
	height: 100%;
	top: 100%;
	left: 0%;
}

nav.mnu li > a.arrow.right:hover:before, nav.mnu li:hover > a.arrow.right:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 5%;
}

nav.mnu li > a.arrow.left:hover:before, nav.mnu li:hover > a.arrow.left:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	right: 5%;
}

/*** hidden ***/
nav.mnu {
	z-index: 10001;
}

.hid-box {
	z-index: 10000;
}

.hid-box {
	display: none;
	position: fixed;
	left: 0;
	top: 166px;
	width: 0;
	height: 0;
}

nav.mnu:hover + .hid-box {
	display: block;
	width: 100%;
	height: 100%;
}

.hid-box:hover {
	z-index: 10002;
	top: 0px;
	display: block;
	width: 100%;
	height: 100%;
	visibility: hidden;
    transition: visibility .6s step-end;
	-webkit-transition: visibility .6s step-end;
    -moz-transition: visibility .6s step-end;
    -ms-transition: visibility .6s step-end;
    -o-transition: visibility .6s step-end;
}


span.arrow {
    width: 0;
    height: 0;
    padding: 0;
    
    border-top: 5px solid #333;
    border-bottom: 5px solid transparent;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    
    position: absolute;
    top: 50%;
    right: 5px;
}

.wrap-col p,
.wrap-col li {
    color: #777;
}

.wrap-col p a,
.wrap-col li a {
    color: #222;
    text-decoration: underline;
}

.wrap-col p a:hover,
.wrap-col li a:hover{
    text-transform: none;
}