
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_5922c9baca5e63b98aae0ebb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7c{transform:matrix(0.142975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142975,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.160255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160255,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.170565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170565,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.176365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176365,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.179210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179210,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.186165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186165,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.187390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187390,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.191430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191430,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.193730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193730,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.203445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203445,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.203705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203705,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.204815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204815,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.205760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205760,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.207535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207535,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.208785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208785,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.209435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209435,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.212815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212815,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.216300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216300,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.219710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219710,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.219905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219905,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.219940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219940,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.220070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220070,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.220280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220280,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.220305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220305,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.220920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220920,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.223545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223545,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.224360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224360,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.227490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227490,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.228680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228680,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.229615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229615,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.231480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231480,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.232530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232530,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.233380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233380,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.233685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233685,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.233760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233760,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.233970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233970,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.234190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234190,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.235045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235045,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.235405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235405,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.235805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235805,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.237655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237655,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.237800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237800,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.239235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239235,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.239465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239465,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.241015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241015,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.241400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241400,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.242165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242165,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.243665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243665,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.244710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244710,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.244765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244765,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.244835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244835,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.251515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251515,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.253410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253410,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.253525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253525,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.253740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253740,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253885,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.255710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255710,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.256015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256015,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.256330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256330,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.258480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258480,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.258945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258945,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.259855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259855,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.261425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261425,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.261840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261840,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.262345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262345,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.262985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262985,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.263535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263535,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.266360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266360,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.266790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266790,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.267380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267380,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.267855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267855,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.268815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268815,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.270245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270245,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.271390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271390,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.273225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273225,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.276365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276365,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.278475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278475,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.279550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279550,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.279730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279730,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.280450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280450,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.285435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285435,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.285715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285715,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.287940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287940,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.293650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293650,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.297620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297620,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.306025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306025,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.308640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308640,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.313285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313285,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.373930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373930,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.387315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387315,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.391740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391740,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.445155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445155,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.525795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525795,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-24.103949px;}
.ws8{word-spacing:0.000000px;}
.ws1{word-spacing:1.035749px;}
.ws5{word-spacing:3.487930px;}
.ws3{word-spacing:5.733949px;}
.ws6{word-spacing:8.356683px;}
.ws0{word-spacing:14.503737px;}
.ws4{word-spacing:19.938415px;}
.ws2{word-spacing:61.974287px;}
.fc0{color:transparent;}
.fsc{font-size:36.720000px;}
.fsb{font-size:37.800000px;}
.fs14{font-size:44.280000px;}
.fs7{font-size:54.000000px;}
.fsa{font-size:55.080000px;}
.fs8{font-size:56.160000px;}
.fs15{font-size:59.400000px;}
.fsd{font-size:60.480000px;}
.fs9{font-size:61.560000px;}
.fs4{font-size:62.640000px;}
.fs3{font-size:63.720000px;}
.fs2{font-size:64.800000px;}
.fs1{font-size:65.880000px;}
.fs0{font-size:66.960000px;}
.fs5{font-size:68.040000px;}
.fs12{font-size:69.120000px;}
.fse{font-size:70.200000px;}
.fs10{font-size:73.440000px;}
.fsf{font-size:76.680000px;}
.fs11{font-size:78.840000px;}
.fs6{font-size:84.240000px;}
.fs17{font-size:108.000000px;}
.fs13{font-size:112.320000px;}
.fs16{font-size:151.200000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:103.140000px;}
.y29{bottom:131.220000px;}
.y26{bottom:154.980000px;}
.y27{bottom:157.140000px;}
.y28{bottom:159.840000px;}
.y25{bottom:261.900000px;}
.y23{bottom:264.330000px;}
.y22{bottom:276.750000px;}
.y24{bottom:281.340000px;}
.y21{bottom:306.720000px;}
.y20{bottom:307.800000px;}
.y1f{bottom:333.180000px;}
.y1e{bottom:361.260000px;}
.y1d{bottom:390.420000px;}
.y16{bottom:447.390000px;}
.y1c{bottom:472.770000px;}
.y15{bottom:478.980000px;}
.y14{bottom:508.140000px;}
.y1b{bottom:523.260000px;}
.y13{bottom:534.060000px;}
.y1a{bottom:545.940000px;}
.y12{bottom:562.680000px;}
.y11{bottom:593.190000px;}
.y19{bottom:614.520000px;}
.y10{bottom:620.190000px;}
.y18{bottom:631.530000px;}
.y17{bottom:644.760000px;}
.yf{bottom:651.240000px;}
.yd{bottom:705.780000px;}
.yc{bottom:733.590000px;}
.ye{bottom:747.090000px;}
.yb{bottom:761.940000px;}
.ya{bottom:872.640000px;}
.y9{bottom:901.800000px;}
.y8{bottom:929.610000px;}
.y7{bottom:957.960000px;}
.y6{bottom:998.730000px;}
.y5{bottom:1027.620000px;}
.y4{bottom:1056.780000px;}
.y3{bottom:1084.860000px;}
.y2{bottom:1113.480000px;}
.y1{bottom:1142.100000px;}
.h1e{height:36.720000px;}
.h1d{height:37.800000px;}
.h26{height:44.280000px;}
.h19{height:54.000000px;}
.h1c{height:55.080000px;}
.h1a{height:56.160000px;}
.h27{height:59.400000px;}
.h1f{height:60.480000px;}
.h1b{height:61.560000px;}
.h16{height:62.640000px;}
.h15{height:63.720000px;}
.h14{height:64.800000px;}
.h13{height:65.880000px;}
.h12{height:66.960000px;}
.h17{height:68.040000px;}
.h24{height:69.120000px;}
.h20{height:70.200000px;}
.h22{height:73.440000px;}
.h21{height:76.680000px;}
.h23{height:78.840000px;}
.h18{height:84.240000px;}
.h29{height:108.000000px;}
.h25{height:112.320000px;}
.h28{height:151.200000px;}
.ha{height:307.440000px;}
.hb{height:307.500000px;}
.h8{height:311.760000px;}
.h9{height:312.000000px;}
.h7{height:318.000000px;}
.h6{height:318.240000px;}
.hc{height:858.600000px;}
.hd{height:858.750000px;}
.h5{height:1237.500000px;}
.h4{height:1237.680000px;}
.h0{height:1247.040000px;}
.h1{height:1247.250000px;}
.he{height:1250.640000px;}
.hf{height:1251.000000px;}
.h2{height:1262.160000px;}
.h3{height:1262.250000px;}
.h11{height:1266.750000px;}
.h10{height:1266.840000px;}
.wc{width:421.200000px;}
.wd{width:421.500000px;}
.wb{width:511.500000px;}
.wa{width:511.560000px;}
.w9{width:512.250000px;}
.w8{width:512.280000px;}
.w7{width:513.750000px;}
.w6{width:514.080000px;}
.w3{width:894.750000px;}
.w2{width:894.960000px;}
.we{width:900.720000px;}
.wf{width:900.750000px;}
.w0{width:901.440000px;}
.w1{width:901.500000px;}
.w4{width:972.720000px;}
.w5{width:972.750000px;}
.x0{left:0.000000px;}
.x1e{left:110.970000px;}
.xb{left:112.050000px;}
.x1{left:113.130000px;}
.x7a{left:114.210000px;}
.x71{left:115.290000px;}
.x46{left:116.910000px;}
.x43{left:118.530000px;}
.x5b{left:136.080000px;}
.x3c{left:144.720000px;}
.x29{left:147.150000px;}
.x54{left:150.120000px;}
.x1d{left:155.790000px;}
.x3b{left:157.950000px;}
.x2{left:171.180000px;}
.x72{left:172.260000px;}
.x55{left:183.060000px;}
.x2a{left:188.460000px;}
.x47{left:195.480000px;}
.x73{left:197.100000px;}
.x50{left:202.230000px;}
.x32{left:207.090000px;}
.xc{left:211.140000px;}
.x4d{left:219.240000px;}
.x51{left:221.130000px;}
.x74{left:224.100000px;}
.x1a{left:227.880000px;}
.x1f{left:228.960000px;}
.x13{left:231.120000px;}
.x5c{left:234.360000px;}
.x33{left:238.680000px;}
.x44{left:241.380000px;}
.x3{left:249.480000px;}
.x67{left:251.910000px;}
.x2b{left:253.800000px;}
.x57{left:270.540000px;}
.x2c{left:280.530000px;}
.x4e{left:282.420000px;}
.x48{left:287.820000px;}
.x52{left:289.440000px;}
.x1b{left:291.060000px;}
.x3d{left:293.220000px;}
.x20{left:294.300000px;}
.x4{left:306.180000px;}
.x56{left:310.770000px;}
.x4f{left:311.850000px;}
.x21{left:316.980000px;}
.x6d{left:321.300000px;}
.xd{left:329.670000px;}
.x58{left:336.150000px;}
.x2d{left:337.500000px;}
.x5{left:340.740000px;}
.x14{left:345.600000px;}
.x34{left:348.300000px;}
.x49{left:349.920000px;}
.x79{left:353.700000px;}
.x68{left:360.720000px;}
.x59{left:370.440000px;}
.x15{left:374.760000px;}
.x22{left:375.840000px;}
.x53{left:378.000000px;}
.x3e{left:380.160000px;}
.x4a{left:382.590000px;}
.x5a{left:408.510000px;}
.x75{left:410.130000px;}
.x4b{left:423.360000px;}
.xe{left:424.710000px;}
.x6e{left:439.020000px;}
.x2e{left:440.640000px;}
.x3f{left:443.340000px;}
.x16{left:444.690000px;}
.x4c{left:452.520000px;}
.xf{left:456.840000px;}
.x35{left:466.290000px;}
.x23{left:469.800000px;}
.x6{left:499.770000px;}
.x10{left:518.670000px;}
.x17{left:520.020000px;}
.x40{left:528.120000px;}
.x24{left:537.300000px;}
.x69{left:541.350000px;}
.x41{left:546.750000px;}
.x76{left:549.990000px;}
.x36{left:551.880000px;}
.x25{left:572.130000px;}
.x70{left:574.020000px;}
.x42{left:577.260000px;}
.x60{left:594.270000px;}
.x11{left:599.940000px;}
.x78{left:604.260000px;}
.x45{left:609.660000px;}
.x26{left:611.820000px;}
.x6a{left:612.900000px;}
.x2f{left:621.810000px;}
.x7{left:624.240000px;}
.x1c{left:627.750000px;}
.x27{left:628.830000px;}
.x63{left:632.340000px;}
.x37{left:638.820000px;}
.x30{left:652.590000px;}
.x61{left:654.480000px;}
.x28{left:656.640000px;}
.x6b{left:658.800000px;}
.x8{left:666.090000px;}
.x38{left:670.680000px;}
.x65{left:681.750000px;}
.x62{left:683.100000px;}
.x6c{left:686.340000px;}
.x77{left:690.660000px;}
.x18{left:692.280000px;}
.x5d{left:699.570000px;}
.x31{left:706.860000px;}
.x66{left:714.150000px;}
.x6f{left:732.240000px;}
.x64{left:735.750000px;}
.x9{left:740.340000px;}
.x5e{left:745.200000px;}
.x39{left:751.140000px;}
.x5f{left:763.020000px;}
.x3a{left:766.800000px;}
.x12{left:770.040000px;}
.xa{left:774.360000px;}
.x19{left:779.220000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws7{word-spacing:-21.425733pt;}
.ws8{word-spacing:0.000000pt;}
.ws1{word-spacing:0.920665pt;}
.ws5{word-spacing:3.100382pt;}
.ws3{word-spacing:5.096844pt;}
.ws6{word-spacing:7.428163pt;}
.ws0{word-spacing:12.892211pt;}
.ws4{word-spacing:17.723036pt;}
.ws2{word-spacing:55.088255pt;}
.fsc{font-size:32.640000pt;}
.fsb{font-size:33.600000pt;}
.fs14{font-size:39.360000pt;}
.fs7{font-size:48.000000pt;}
.fsa{font-size:48.960000pt;}
.fs8{font-size:49.920000pt;}
.fs15{font-size:52.800000pt;}
.fsd{font-size:53.760000pt;}
.fs9{font-size:54.720000pt;}
.fs4{font-size:55.680000pt;}
.fs3{font-size:56.640000pt;}
.fs2{font-size:57.600000pt;}
.fs1{font-size:58.560000pt;}
.fs0{font-size:59.520000pt;}
.fs5{font-size:60.480000pt;}
.fs12{font-size:61.440000pt;}
.fse{font-size:62.400000pt;}
.fs10{font-size:65.280000pt;}
.fsf{font-size:68.160000pt;}
.fs11{font-size:70.080000pt;}
.fs6{font-size:74.880000pt;}
.fs17{font-size:96.000000pt;}
.fs13{font-size:99.840000pt;}
.fs16{font-size:134.400000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:91.680000pt;}
.y29{bottom:116.640000pt;}
.y26{bottom:137.760000pt;}
.y27{bottom:139.680000pt;}
.y28{bottom:142.080000pt;}
.y25{bottom:232.800000pt;}
.y23{bottom:234.960000pt;}
.y22{bottom:246.000000pt;}
.y24{bottom:250.080000pt;}
.y21{bottom:272.640000pt;}
.y20{bottom:273.600000pt;}
.y1f{bottom:296.160000pt;}
.y1e{bottom:321.120000pt;}
.y1d{bottom:347.040000pt;}
.y16{bottom:397.680000pt;}
.y1c{bottom:420.240000pt;}
.y15{bottom:425.760000pt;}
.y14{bottom:451.680000pt;}
.y1b{bottom:465.120000pt;}
.y13{bottom:474.720000pt;}
.y1a{bottom:485.280000pt;}
.y12{bottom:500.160000pt;}
.y11{bottom:527.280000pt;}
.y19{bottom:546.240000pt;}
.y10{bottom:551.280000pt;}
.y18{bottom:561.360000pt;}
.y17{bottom:573.120000pt;}
.yf{bottom:578.880000pt;}
.yd{bottom:627.360000pt;}
.yc{bottom:652.080000pt;}
.ye{bottom:664.080000pt;}
.yb{bottom:677.280000pt;}
.ya{bottom:775.680000pt;}
.y9{bottom:801.600000pt;}
.y8{bottom:826.320000pt;}
.y7{bottom:851.520000pt;}
.y6{bottom:887.760000pt;}
.y5{bottom:913.440000pt;}
.y4{bottom:939.360000pt;}
.y3{bottom:964.320000pt;}
.y2{bottom:989.760000pt;}
.y1{bottom:1015.200000pt;}
.h1e{height:32.640000pt;}
.h1d{height:33.600000pt;}
.h26{height:39.360000pt;}
.h19{height:48.000000pt;}
.h1c{height:48.960000pt;}
.h1a{height:49.920000pt;}
.h27{height:52.800000pt;}
.h1f{height:53.760000pt;}
.h1b{height:54.720000pt;}
.h16{height:55.680000pt;}
.h15{height:56.640000pt;}
.h14{height:57.600000pt;}
.h13{height:58.560000pt;}
.h12{height:59.520000pt;}
.h17{height:60.480000pt;}
.h24{height:61.440000pt;}
.h20{height:62.400000pt;}
.h22{height:65.280000pt;}
.h21{height:68.160000pt;}
.h23{height:70.080000pt;}
.h18{height:74.880000pt;}
.h29{height:96.000000pt;}
.h25{height:99.840000pt;}
.h28{height:134.400000pt;}
.ha{height:273.280000pt;}
.hb{height:273.333333pt;}
.h8{height:277.120000pt;}
.h9{height:277.333333pt;}
.h7{height:282.666667pt;}
.h6{height:282.880000pt;}
.hc{height:763.200000pt;}
.hd{height:763.333333pt;}
.h5{height:1100.000000pt;}
.h4{height:1100.160000pt;}
.h0{height:1108.480000pt;}
.h1{height:1108.666667pt;}
.he{height:1111.680000pt;}
.hf{height:1112.000000pt;}
.h2{height:1121.920000pt;}
.h3{height:1122.000000pt;}
.h11{height:1126.000000pt;}
.h10{height:1126.080000pt;}
.wc{width:374.400000pt;}
.wd{width:374.666667pt;}
.wb{width:454.666667pt;}
.wa{width:454.720000pt;}
.w9{width:455.333333pt;}
.w8{width:455.360000pt;}
.w7{width:456.666667pt;}
.w6{width:456.960000pt;}
.w3{width:795.333333pt;}
.w2{width:795.520000pt;}
.we{width:800.640000pt;}
.wf{width:800.666667pt;}
.w0{width:801.280000pt;}
.w1{width:801.333333pt;}
.w4{width:864.640000pt;}
.w5{width:864.666667pt;}
.x0{left:0.000000pt;}
.x1e{left:98.640000pt;}
.xb{left:99.600000pt;}
.x1{left:100.560000pt;}
.x7a{left:101.520000pt;}
.x71{left:102.480000pt;}
.x46{left:103.920000pt;}
.x43{left:105.360000pt;}
.x5b{left:120.960000pt;}
.x3c{left:128.640000pt;}
.x29{left:130.800000pt;}
.x54{left:133.440000pt;}
.x1d{left:138.480000pt;}
.x3b{left:140.400000pt;}
.x2{left:152.160000pt;}
.x72{left:153.120000pt;}
.x55{left:162.720000pt;}
.x2a{left:167.520000pt;}
.x47{left:173.760000pt;}
.x73{left:175.200000pt;}
.x50{left:179.760000pt;}
.x32{left:184.080000pt;}
.xc{left:187.680000pt;}
.x4d{left:194.880000pt;}
.x51{left:196.560000pt;}
.x74{left:199.200000pt;}
.x1a{left:202.560000pt;}
.x1f{left:203.520000pt;}
.x13{left:205.440000pt;}
.x5c{left:208.320000pt;}
.x33{left:212.160000pt;}
.x44{left:214.560000pt;}
.x3{left:221.760000pt;}
.x67{left:223.920000pt;}
.x2b{left:225.600000pt;}
.x57{left:240.480000pt;}
.x2c{left:249.360000pt;}
.x4e{left:251.040000pt;}
.x48{left:255.840000pt;}
.x52{left:257.280000pt;}
.x1b{left:258.720000pt;}
.x3d{left:260.640000pt;}
.x20{left:261.600000pt;}
.x4{left:272.160000pt;}
.x56{left:276.240000pt;}
.x4f{left:277.200000pt;}
.x21{left:281.760000pt;}
.x6d{left:285.600000pt;}
.xd{left:293.040000pt;}
.x58{left:298.800000pt;}
.x2d{left:300.000000pt;}
.x5{left:302.880000pt;}
.x14{left:307.200000pt;}
.x34{left:309.600000pt;}
.x49{left:311.040000pt;}
.x79{left:314.400000pt;}
.x68{left:320.640000pt;}
.x59{left:329.280000pt;}
.x15{left:333.120000pt;}
.x22{left:334.080000pt;}
.x53{left:336.000000pt;}
.x3e{left:337.920000pt;}
.x4a{left:340.080000pt;}
.x5a{left:363.120000pt;}
.x75{left:364.560000pt;}
.x4b{left:376.320000pt;}
.xe{left:377.520000pt;}
.x6e{left:390.240000pt;}
.x2e{left:391.680000pt;}
.x3f{left:394.080000pt;}
.x16{left:395.280000pt;}
.x4c{left:402.240000pt;}
.xf{left:406.080000pt;}
.x35{left:414.480000pt;}
.x23{left:417.600000pt;}
.x6{left:444.240000pt;}
.x10{left:461.040000pt;}
.x17{left:462.240000pt;}
.x40{left:469.440000pt;}
.x24{left:477.600000pt;}
.x69{left:481.200000pt;}
.x41{left:486.000000pt;}
.x76{left:488.880000pt;}
.x36{left:490.560000pt;}
.x25{left:508.560000pt;}
.x70{left:510.240000pt;}
.x42{left:513.120000pt;}
.x60{left:528.240000pt;}
.x11{left:533.280000pt;}
.x78{left:537.120000pt;}
.x45{left:541.920000pt;}
.x26{left:543.840000pt;}
.x6a{left:544.800000pt;}
.x2f{left:552.720000pt;}
.x7{left:554.880000pt;}
.x1c{left:558.000000pt;}
.x27{left:558.960000pt;}
.x63{left:562.080000pt;}
.x37{left:567.840000pt;}
.x30{left:580.080000pt;}
.x61{left:581.760000pt;}
.x28{left:583.680000pt;}
.x6b{left:585.600000pt;}
.x8{left:592.080000pt;}
.x38{left:596.160000pt;}
.x65{left:606.000000pt;}
.x62{left:607.200000pt;}
.x6c{left:610.080000pt;}
.x77{left:613.920000pt;}
.x18{left:615.360000pt;}
.x5d{left:621.840000pt;}
.x31{left:628.320000pt;}
.x66{left:634.800000pt;}
.x6f{left:650.880000pt;}
.x64{left:654.000000pt;}
.x9{left:658.080000pt;}
.x5e{left:662.400000pt;}
.x39{left:667.680000pt;}
.x5f{left:678.240000pt;}
.x3a{left:681.600000pt;}
.x12{left:684.480000pt;}
.xa{left:688.320000pt;}
.x19{left:692.640000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  