@charset "utf-8";
/* CSS Document */

@font-face {
  font-family: 'regular';
  src: url('../css/proxi_regular/proxi_regular.eot?#iefix') format('embedded-opentype'),  
  url('../css/proxi_regular/proxi_regular.otf')  format('opentype'),
  url('../css/proxi_regular/proxi_regular.woff') format('woff'), 
  url('../css/proxi_regular/proxi_regular.ttf')  format('truetype'), 
  url('../css/proxi_regular/proxi_regular.svg#ProximaNova-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
	}

.menu > a.slide-menu-open{color:#db0000;}

.side-menu-wrapper { /* style menu wrapper */
    overflow: hidden;
    background: rgba(255,255,255,.95);
    padding:40px 0 0 0;
    position: fixed; /* Fixed position */
    top: 0;
    right: -290px; /* Sidebar initial position. "right" for right positioned menu */
    height: 100%;
    z-index:999;
    transition: 0.5s; /* CSS transition speed */
    width: 250px;
    font:14px 'regular', Arial, Helvetica, sans-serif;
	color:#fff;
	}
	
.side-menu-wrapper > ul{ /* css ul list style */
    list-style:none;
    padding:0;
    margin:0;
    overflow-y: auto; /* enable scroll for menu items */
    width:500px; /* this width will hide scroll bar */
    height:95%;
}
.side-menu-wrapper > ul > li > a { /* links */
    display: block;
    border-bottom: 1px solid #990000;
    padding:10px 10px 10px 15px;
    color: #fff;
	background:#db0000;
    transition: 0.3s;
    text-decoration: none;
	}
	
.side-menu-wrapper > ul > li > a:hover, .side-menu-wrapper > ul > li > ul > li > a:hover{
	background:#990000;
	color:#fff;
	}
	
.side-menu-wrapper > ul > li > ul{
	list-style:none;
    padding:0;
    margin:0;
    overflow-y: auto;
	}
	
.side-menu-wrapper > ul > li > ul > li > a{
	display: block;
    border-bottom: 1px solid #002e5b;
    padding:10px 10px 10px 30px;
    color: #fff;
	background:#003d78;
    transition: 0.3s;
    text-decoration: none;
	}
	
.side-menu-wrapper > a.menu-close { /* close button */
    padding:10px 0 20px 40px;
    color: #990000;
    display: block;
    margin: -30px 0 -10px -20px;
    font-size: 50px;
    text-decoration: none;
	}

.side-menu-overlay { /* overlay */
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.7);
    overflow-y: auto;
    overflow-x: hidden;
    text-align: center;
    opacity: 0;
    transition: opacity 1s;
}