/*!
 * jquery-drawer v3.1.0
 * Flexible drawer menu using jQuery, iScroll and CSS.
 * http://git.blivesta.com/drawer
 * License : MIT
 * Author : blivesta <design@blivesta.com> (http://blivesta.com/)
 */

/*!------------------------------------*\
    Base
\*!------------------------------------*/
.drawer-nav {
  position: fixed;
  z-index: 101;
  top: 0;
  overflow: hidden;
  width: 16.25rem;
  height: 100%;
  color: #222;
  background-color: #fff;
}

.drawer-brand {
	font-size: 1.5rem;
	font-weight: bold;
	text-decoration: none;
	color: #222;
	padding-left: 20px;
}

.drawer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.drawer-menu-item {
	font-size: 0.8rem;
	display: block;
	padding: 0.6rem 0.75rem 0.6em;
	text-decoration: none;
	color: #222;
}

.drawer-menu-item:hover {
	text-decoration: underline;
	color: #FFDD00;
	background-color: transparent;
}

/*! overlay */
.drawer-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .2);
}

.drawer-open .drawer-overlay {
  display: block;
}
/*!------------------------------------*\
    Top
\*!------------------------------------*/
.drawer--top .drawer-nav {
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 100%;
  -webkit-transition: top .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: top .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.drawer--top.drawer-open .drawer-nav {
  top: 0;
}

.drawer--top .drawer-hamburger,
.drawer--top.drawer-open .drawer-hamburger {
  right: 0;
}
/*!------------------------------------*\
    Left
\*!------------------------------------*/
.drawer--left .drawer-nav {
  left: -16.25rem;
  -webkit-transition: left .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: left .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0;
}

.drawer--left.drawer-open .drawer-hamburger {
  left: 16.25rem;
}
/*!------------------------------------*\
    Right
\*!------------------------------------*/
.drawer--right .drawer-nav {
  right: -16.25rem;
  -webkit-transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 16.25rem;
}
/*!------------------------------------*\
    Hamburger
\*!------------------------------------*/
.drawer-hamburger {
	position: fixed;
	z-index: 104;
	top: 0;
	display: block;
	box-sizing: content-box;
	width: 2rem;
	padding: 0;
	padding-top: 5px;
	padding-right: .75rem;
	padding-bottom: 22px;
	padding-left: .75rem;
	-webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	border: 0;
	outline: 0;
	background-color: #2D8CEB;
}

.drawer-hamburger:hover {
	cursor: pointer;
	background-color: #FF5B88;
}

.drawer-hamburger-icon {
	position: relative;
	display: block;
	margin-top: 15px;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
	width: 100%;
	height: 2px;
	-webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	background-color: #FFFFFF;
}

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  position: absolute;
  top: -10px;
  left: 0;
  content: ' ';
}

.drawer-hamburger-icon:after {
  top: 10px;
}

.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  top: 0;
}

.drawer-open .drawer-hamburger-icon:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.drawer-open .drawer-hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
/*!------------------------------------*\
    accessibility
\*!------------------------------------*/

/*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}
/*!------------------------------------*\
    Sidebar
\*!------------------------------------*/
.drawer--sidebar {
  background-color: #fff;
}

.drawer--sidebar .drawer-contents {
  background-color: #fff;
}

@media (min-width: 800px) {
    .drawer-dropdown.open > .drawer-dropdown-menu {
  display: block;
    position: absolute;
    width: 16.8%;
}
  .drawer--sidebar .drawer-hamburger {
    display: none;
    visibility: hidden;
  }

  .drawer--sidebar .drawer-nav {
    display: block;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    position: fixed;
    width: 12.5rem;
    height: 100%;
  }

  /*! Left */
  .drawer--sidebar.drawer--left .drawer-nav {
    left: 0;
    border-right: 1px solid #ddd;
  }

  .drawer--sidebar.drawer--left .drawer-contents {
    margin-left: 12.5rem;
  }

  /*! Right */
  .drawer--sidebar.drawer--right .drawer-nav {
    right: 0;
    border-left: 1px solid #ddd;
  }

  .drawer--sidebar.drawer--right .drawer-contents {
    margin-right: 12.5rem;
  }

  /*! container */
  .drawer--sidebar .drawer-container {
    max-width: 48rem;
  }
.drawer-menu-item {
	color: rgba(255,255,255,1.00);
}
.drawer-menu-item a:hover {
	color: rgba(255,255,255,1.00);
}
.drawer-brand img {
	height: 55px;
}
.cpvtop   {
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-justify-content: space-between; /* Safari */
	justify-content: space-between;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap: wrap;
	margin-bottom: 53px;
	align-items: center;
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
	left: -24px;
	position: relative;
}
.cpvtop div {
	width: 50%;
}


}


@media (min-width: 600px) {
#submenu {
	z-index: 1000!important;
	width: auto;
	position: absolute;
	top: 14px;
	margin-top: 0px;
	right: 20px;
}
#submenu ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-justify-content: space-between; /* Safari */
	justify-content: space-between;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap: wrap;
	z-index: 100;
}
#submenu ul li {
	margin-left: 15px;
}


#submenu ul li:nth-child(1) {
	border-style: none;
	margin: 0px;
	padding: 0px;
}
#submenu ul li:nth-child(1) img {
	height: 50px;
}


#submenu ul li a {
	display: block;
	padding: 10px 20px;
	color: #000000;
	text-decoration: none;
	font-size: 0.9em;
	border: 1px solid #000000;
}


}
@media screen and (max-width:1138px){
.drawer-navbar.drawer-navbar--fixed {
	width: 100%;
	margin: auto;
	padding: 0px;
	left: auto;
	background-image: url(../../images/bk.png);
}

    
}
@media screen and (max-width:1160px){
#submenu {
	left: auto;
	right: 11px;


}

}
@media (max-width: 799px) {
    #submenu {
	right: 70px;
    }
.drawer-dropdown-menu > li {
	padding-left: 31px;
	margin-left: 0px;
}
.drawer-dropdown-menu-item {
	line-height: 3em;
	font-size: 0.8em;
	padding-left: 24px;
}


}

@media (max-width: 600px) {
    #submenu {
        display: none;
    }
}

@media (min-width: 75em) {
  .drawer--sidebar .drawer-nav {
    width: 16.25rem;
  }

  .drawer--sidebar.drawer--left .drawer-contents {
    margin-left: 16.25rem;
  }

  .drawer--sidebar.drawer--right .drawer-contents {
    margin-right: 16.25rem;
  }

  /*! container */
  .drawer--sidebar .drawer-container {
    max-width: 60rem;
  }
}
/*!------------------------------------*\
    Navbar
\*!------------------------------------*/
.drawer--navbarTopGutter {
	padding-top: 120px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}



.drawer-navbar {
	z-index: 102;
	top: 0;
	width: 100%;
	margin-top: 0px;
	padding-top: 0px;
	position: relative;
}

/*! .drawer-navbar modifier */
.drawer-navbar--fixed {
  position: fixed;
}

.drawer-navbar-header {
	position: relative;
	z-index: 102;
	box-sizing: border-box;
	width: 100%;
	padding-top: 0;
	padding-bottom: 0;
}

.drawer-navbar .drawer-brand {
	display: inline-block;
	padding-top: 0;
	padding-bottom: 0;
	text-decoration: none;
}

.drawer-navbar .drawer-brand:hover {
  background-color: transparent;
}

.drawer-navbar .drawer-nav {
	padding-top: 3.75rem;

}

.drawer-navbar .drawer-menu {
  padding-bottom: 7.5rem;
}

@media (min-width: 800px) {
  .drawer-navbar {
	margin: 0px auto 0px -501px;
	background-image: url(../../images/bk.png);
	background-repeat: repeat-x;
	max-width: 1000px;
	left: 50%;
  }

  .drawer-navbar .drawer-navbar-header {
	position: relative;
	display: block;
	width: auto;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	border: 0;
	background-repeat: no-repeat;
  }

  .drawer-navbar .drawer-menu--right {
display: -webkit-flex; /* Safari */
display: flex;
-webkit-justify-content: space-between; /* Safari */
justify-content:space-between;
-webkit-flex-wrap: wrap; /* Safari */
flex-wrap: wrap;
  }

  .drawer-navbar .drawer-menu > li {
	width: 25%;
	text-align: center;

  }
	.drawer-navbar .drawer-menu li:first-child {


  }
#no-news, #no-ask {
	display: none;
}


  .drawer-navbar .drawer-menu-item {
	line-height: 2.5rem;
	padding: 0px;
	display: block;
	border-right: 1px solid rgba(1,25,51,1.00);
	border-left: 1px solid rgba(0,78,216,1.00);
	margin: 0px;
  }

  .drawer-navbar .drawer-hamburger {
    display: none;
  }

  .drawer-navbar .drawer-nav {
	position: relative;
	left: 0;
	overflow: visible;
	width: auto;
	
	padding-top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	background-color: rgba(0,61,168,1.00);
  }

  .drawer-navbar .drawer-menu {
    padding: 0;
  }

  /*! dropdown */
  .drawer-navbar .drawer-dropdown-menu {
	border: 1px solid #ddd;
  }

  .drawer-navbar .drawer-dropdown-menu-item {
	display: block;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
  }
	.drawer-dropdown-menu-item:last-child {
		
  }
.only-sp {
	display: none;
}
.drawer-dropdown-menu > li {
}


}
/*!------------------------------------*\
    Dropdown
\*!------------------------------------*/
.drawer-dropdown-menu {
  display: none;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

.drawer-dropdown-menu > li {
	width: 100%!important;
	list-style: none;
	padding-top: 0px;
}

.drawer-dropdown-menu-item {
	line-height: 2.5rem;
	display: block;
	text-decoration: none;
	color: #222;
	font-size: 0.9em;
}

.drawer-dropdown-menu-item:hover {
  text-decoration: underline;
  color: #555;
  background-color: transparent;
}

/*! open */
.drawer-dropdown.open > .drawer-dropdown-menu {
  display: block;
 

}

/*! drawer-caret */
.drawer-dropdown .drawer-caret {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 4px;
	-webkit-transition: opacity .2s ease, -webkit-transform .2s ease;
	transition: opacity .2s ease, -webkit-transform .2s ease;
	transition: transform .2s ease, opacity .2s ease;
	transition: transform .2s ease, opacity .2s ease, -webkit-transform .2s ease;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	vertical-align: middle;
	border-top: 4px solid rgba(255,255,255,1.00);
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}

/*! open */
.drawer-dropdown.open .drawer-caret {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
/*!------------------------------------*\
    Container
\*!------------------------------------*/
.drawer-container {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 64em) {
    
  .drawer-container {

  }



}

@media (min-width: 75em) {
  .drawer-container {
	max-width: 70rem;
  }
}

@media (max-width: 63.9em) {
	
.drawer-navbar .drawer-navbar-header {
}
	
.drawer--navbarTopGutter {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.drawer-dropdown .drawer-caret {
	border-top: 4px solid rgba(106,106,106,1.00);
}
.drawer-brand {
	margin: 0px 0px 0px auto;
	padding: 0px;
}
.drawer-brand img {
	height: 55px;
	width: auto;
	margin-left: 20px;
	padding-left: 0px;

}
	.drawer-dropdown-menu > li {
	width: 100%!important;
	list-style: none;
	padding-left: 0px;
	border-bottom: 1px dotted rgba(175,175,175,1.00);
	padding-top: 0px;
}

#topmov #canvas {
	display: none;
}
.only-sp {

}
.only-pc   {
	display: none;
}
.drawer-dropdown-menu-item {
	line-height: 3em;
	font-size: 0.8em;
}










}
