
    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_c7c9ab8ab33ad64339cf84b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_46e12dc55a46f5a82436f2e9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.881836;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_77765694e4b02b6eb076cdc4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9fce2b0650750ed87554320d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0700c31a5e959514c4972f53.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_95bfd3ab50b14efbd9e6e179.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.187988;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_580693b53b6855193c85899b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bede0961ba60f614586e6d76.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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;}
.m57{transform:matrix(0.243389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243389,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.243561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243561,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.244093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244093,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.244282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244282,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.244766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244766,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.244768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244768,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245464,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245766,0.000000,0.000000,0.250000,0,0);}
.m58{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);}
.m55{transform:matrix(0.246077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246077,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246116,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.246298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246298,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.246589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246589,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246732,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246768,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246964,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247248,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.247286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247286,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247298,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.247366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247366,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247466,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.247491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247491,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.247557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247557,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.247741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247741,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.248052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248052,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248066,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248286,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248364,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248486,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248534,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.248966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248966,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248982,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249214,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249607,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250309,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250568,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.250586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250586,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250734,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251043,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251291,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251541,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251791,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.252145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252145,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252209,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252589,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252677,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.252693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252693,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.253120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253120,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.253502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253502,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.253527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253527,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.253532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253532,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.253534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253534,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.253825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253825,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.253834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253834,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.254441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254441,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254723,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.254909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254909,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.254911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254911,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.255448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255448,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255550,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.255859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255859,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.257023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257023,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.981400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.923400px;}
.ls19{letter-spacing:-1.056000px;}
.ls14{letter-spacing:-0.858000px;}
.ls18{letter-spacing:-0.792000px;}
.lsa{letter-spacing:-0.726000px;}
.ls9{letter-spacing:-0.660000px;}
.ls11{letter-spacing:-0.594000px;}
.ls8{letter-spacing:-0.528000px;}
.ls7{letter-spacing:-0.462000px;}
.ls15{letter-spacing:-0.396000px;}
.ls12{letter-spacing:-0.330000px;}
.lsf{letter-spacing:-0.264000px;}
.ls13{letter-spacing:-0.198000px;}
.ls6{letter-spacing:-0.132000px;}
.ls10{letter-spacing:-0.066000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.066000px;}
.ls2{letter-spacing:0.132000px;}
.lsc{letter-spacing:0.198000px;}
.lsb{letter-spacing:0.264000px;}
.lse{letter-spacing:0.330000px;}
.ls1{letter-spacing:0.396000px;}
.ls16{letter-spacing:0.462000px;}
.ls4{letter-spacing:0.528000px;}
.ls0{letter-spacing:0.594000px;}
.ls17{letter-spacing:0.660000px;}
.lsd{letter-spacing:0.726000px;}
.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;}
}
.ws1{word-spacing:-15.000000px;}
.ws0{word-spacing:-11.250000px;}
.ws2{word-spacing:-7.870500px;}
.ws15{word-spacing:-3.960000px;}
.ws6{word-spacing:-3.366000px;}
.wsc{word-spacing:-3.300000px;}
.ws4{word-spacing:-3.102000px;}
.ws21{word-spacing:-2.970000px;}
.ws2d{word-spacing:-2.574000px;}
.ws25{word-spacing:-2.442000px;}
.ws33{word-spacing:-2.376000px;}
.ws3c{word-spacing:-2.244000px;}
.ws36{word-spacing:-1.980000px;}
.ws20{word-spacing:-1.914000px;}
.ws30{word-spacing:-1.716000px;}
.ws10{word-spacing:-1.650000px;}
.ws22{word-spacing:-1.584000px;}
.ws35{word-spacing:-1.320000px;}
.ws1e{word-spacing:-0.990000px;}
.ws16{word-spacing:-0.864000px;}
.ws2c{word-spacing:-0.726000px;}
.ws3b{word-spacing:-0.594000px;}
.ws2e{word-spacing:-0.528000px;}
.ws37{word-spacing:-0.462000px;}
.ws2a{word-spacing:-0.396000px;}
.ws2f{word-spacing:-0.330000px;}
.ws17{word-spacing:-0.264000px;}
.ws31{word-spacing:-0.132000px;}
.wsb{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws19{word-spacing:0.066000px;}
.ws1b{word-spacing:0.132000px;}
.ws1f{word-spacing:0.198000px;}
.ws18{word-spacing:0.264000px;}
.ws1d{word-spacing:0.330000px;}
.wsa{word-spacing:0.396000px;}
.ws11{word-spacing:0.462000px;}
.ws24{word-spacing:0.528000px;}
.ws1c{word-spacing:0.594000px;}
.ws26{word-spacing:0.660000px;}
.wse{word-spacing:0.726000px;}
.ws39{word-spacing:0.792000px;}
.ws2b{word-spacing:1.056000px;}
.ws3a{word-spacing:1.650000px;}
.ws1a{word-spacing:2.178000px;}
.ws7{word-spacing:2.574000px;}
.ws23{word-spacing:2.640000px;}
.ws29{word-spacing:2.838000px;}
.ws32{word-spacing:3.498000px;}
.ws27{word-spacing:3.564000px;}
.wsd{word-spacing:3.894000px;}
.wsf{word-spacing:3.960000px;}
.ws12{word-spacing:4.158000px;}
.ws28{word-spacing:4.356000px;}
.ws13{word-spacing:4.422000px;}
.ws14{word-spacing:4.554000px;}
.ws34{word-spacing:4.752000px;}
.ws38{word-spacing:5.280000px;}
.ws5{word-spacing:5.346000px;}
.ws8{word-spacing:5.412000px;}
.ws9{word-spacing:5.478000px;}
._7{margin-left:-15.000000px;}
._5{margin-left:-6.794400px;}
._4{margin-left:-5.098800px;}
._2{margin-left:-3.124800px;}
._0{margin-left:-1.665000px;}
._3{width:1.056000px;}
._8{width:2.482800px;}
._6{width:3.537600px;}
._1{width:5.405400px;}
._9{width:6.501000px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:31.482000px;}
.fsa{font-size:42.000000px;}
.fs0{font-size:45.000000px;}
.fsb{font-size:48.000000px;}
.fs1{font-size:48.502800px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:59.466000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:48.543300px;}
.y30{bottom:49.160850px;}
.y67{bottom:106.289700px;}
.y9d{bottom:106.299300px;}
.y20{bottom:111.191250px;}
.y66{bottom:125.891700px;}
.y9c{bottom:125.899200px;}
.y1f{bottom:129.191250px;}
.y65{bottom:145.493700px;}
.y9b{bottom:145.497000px;}
.y64{bottom:165.095700px;}
.y9a{bottom:165.099000px;}
.y2f{bottom:177.220200px;}
.y63{bottom:184.697700px;}
.y99{bottom:184.698900px;}
.y2e{bottom:200.315550px;}
.y62{bottom:204.297300px;}
.y98{bottom:204.298950px;}
.y97{bottom:223.894650px;}
.y61{bottom:223.896900px;}
.y60{bottom:243.489450px;}
.y96{bottom:243.496650px;}
.y5f{bottom:263.091450px;}
.y95{bottom:263.098650px;}
.y1e{bottom:271.420950px;}
.y17{bottom:271.431450px;}
.y5e{bottom:282.693450px;}
.y94{bottom:282.698550px;}
.y1d{bottom:291.253950px;}
.y16{bottom:291.264450px;}
.y5d{bottom:302.295450px;}
.y93{bottom:302.298450px;}
.y1c{bottom:311.090400px;}
.y15{bottom:311.097450px;}
.y5c{bottom:321.895050px;}
.y92{bottom:321.896400px;}
.y1b{bottom:330.927000px;}
.y14{bottom:330.930450px;}
.y5b{bottom:341.494650px;}
.y91{bottom:341.498400px;}
.y13{bottom:350.763450px;}
.y5a{bottom:361.094400px;}
.y90{bottom:361.098300px;}
.y12{bottom:370.600050px;}
.y59{bottom:380.694000px;}
.y8f{bottom:380.696100px;}
.y11{bottom:390.436500px;}
.y58{bottom:400.293600px;}
.y8e{bottom:400.298100px;}
.y10{bottom:410.276550px;}
.y57{bottom:419.893200px;}
.y8d{bottom:419.898000px;}
.yf{bottom:430.109550px;}
.y56{bottom:439.492800px;}
.y8c{bottom:439.497900px;}
.ye{bottom:449.946150px;}
.y55{bottom:459.087600px;}
.y8b{bottom:459.097800px;}
.yd{bottom:469.782600px;}
.y1a{bottom:469.789650px;}
.y54{bottom:478.689600px;}
.y8a{bottom:478.693650px;}
.yc{bottom:489.619200px;}
.y19{bottom:489.622650px;}
.y53{bottom:498.291600px;}
.y89{bottom:498.295650px;}
.yb{bottom:509.455650px;}
.y52{bottom:517.891200px;}
.y88{bottom:517.897650px;}
.y18{bottom:529.292250px;}
.ya{bottom:529.295700px;}
.y51{bottom:537.486150px;}
.y87{bottom:537.497550px;}
.ybc{bottom:546.640050px;}
.y9{bottom:549.128700px;}
.y50{bottom:557.088150px;}
.y86{bottom:557.097450px;}
.ybb{bottom:565.945050px;}
.y8{bottom:568.965300px;}
.y4f{bottom:576.690150px;}
.y85{bottom:576.697350px;}
.yba{bottom:585.250050px;}
.y7{bottom:588.801750px;}
.y4e{bottom:596.289750px;}
.y84{bottom:596.297400px;}
.yb9{bottom:604.555050px;}
.y6{bottom:608.638350px;}
.y4d{bottom:615.884550px;}
.y83{bottom:615.897150px;}
.yb8{bottom:623.860050px;}
.y4c{bottom:635.486550px;}
.y82{bottom:635.497200px;}
.yb7{bottom:643.165050px;}
.y4b{bottom:655.088550px;}
.y81{bottom:655.097100px;}
.yb6{bottom:662.470050px;}
.y2d{bottom:669.726750px;}
.y4a{bottom:674.688150px;}
.y80{bottom:674.697000px;}
.yb5{bottom:681.775050px;}
.y2c{bottom:687.726750px;}
.y49{bottom:694.287750px;}
.y7f{bottom:694.296900px;}
.yb4{bottom:701.080050px;}
.y2b{bottom:705.726750px;}
.y48{bottom:713.887500px;}
.y7e{bottom:713.896800px;}
.yb3{bottom:720.385050px;}
.y2a{bottom:727.978800px;}
.y47{bottom:733.487100px;}
.y7d{bottom:733.496700px;}
.yb2{bottom:739.690050px;}
.y46{bottom:753.086700px;}
.y7c{bottom:753.096750px;}
.yb1{bottom:758.995050px;}
.y45{bottom:772.686150px;}
.y7b{bottom:772.696650px;}
.yb0{bottom:778.300050px;}
.y29{bottom:786.762450px;}
.y44{bottom:792.285900px;}
.y7a{bottom:792.296550px;}
.yaf{bottom:797.605050px;}
.ybf{bottom:797.605200px;}
.y43{bottom:811.885500px;}
.y79{bottom:811.896450px;}
.y28{bottom:812.256450px;}
.yae{bottom:816.910050px;}
.ybe{bottom:816.910200px;}
.y42{bottom:831.485100px;}
.y78{bottom:831.496350px;}
.yad{bottom:836.215050px;}
.y27{bottom:837.750450px;}
.y41{bottom:851.084700px;}
.y77{bottom:851.096250px;}
.yac{bottom:855.520050px;}
.y26{bottom:863.244450px;}
.y40{bottom:870.681900px;}
.y76{bottom:870.696150px;}
.yab{bottom:874.825050px;}
.y3f{bottom:890.283900px;}
.y75{bottom:890.296200px;}
.y25{bottom:893.007150px;}
.yaa{bottom:894.130050px;}
.y3e{bottom:909.883650px;}
.y74{bottom:909.896100px;}
.ya9{bottom:913.435050px;}
.y24{bottom:918.507150px;}
.y3d{bottom:929.483250px;}
.y73{bottom:929.493900px;}
.ya8{bottom:932.740050px;}
.y23{bottom:944.007150px;}
.y3c{bottom:949.082850px;}
.y72{bottom:949.095900px;}
.ya7{bottom:952.045050px;}
.y3b{bottom:968.680050px;}
.y71{bottom:968.695800px;}
.y22{bottom:969.507150px;}
.ya6{bottom:971.350050px;}
.y3a{bottom:988.282050px;}
.y70{bottom:988.295700px;}
.ybd{bottom:990.655050px;}
.ya5{bottom:990.655200px;}
.y39{bottom:1007.881650px;}
.y6f{bottom:1007.895600px;}
.ya4{bottom:1009.960200px;}
.y38{bottom:1027.476600px;}
.y6e{bottom:1027.489350px;}
.ya3{bottom:1029.265200px;}
.y37{bottom:1047.078600px;}
.y6d{bottom:1047.091350px;}
.ya2{bottom:1048.570200px;}
.y21{bottom:1054.524150px;}
.y36{bottom:1066.680600px;}
.y6c{bottom:1066.693350px;}
.ya1{bottom:1067.875050px;}
.y35{bottom:1086.280200px;}
.y6b{bottom:1086.295350px;}
.ya0{bottom:1087.180050px;}
.y34{bottom:1105.879800px;}
.y6a{bottom:1105.895250px;}
.y9f{bottom:1106.485050px;}
.y33{bottom:1125.479400px;}
.y69{bottom:1125.495150px;}
.y9e{bottom:1125.790050px;}
.y32{bottom:1145.079000px;}
.y68{bottom:1145.095050px;}
.y4{bottom:1155.791250px;}
.y3{bottom:1169.291250px;}
.y2{bottom:1182.791250px;}
.y1{bottom:1196.291250px;}
.y31{bottom:1199.227050px;}
.hb{height:33.328125px;}
.h3{height:34.198263px;}
.h9{height:34.665084px;}
.h2{height:39.484863px;}
.ha{height:39.990234px;}
.h5{height:52.646484px;}
.h4{height:57.911133px;}
.h8{height:63.175781px;}
.h7{height:73.705078px;}
.h6{height:89.499023px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:85.039500px;}
.x6{left:106.299150px;}
.xa{left:108.326850px;}
.x16{left:113.609400px;}
.xe{left:117.531900px;}
.xc{left:123.983850px;}
.x1a{left:127.551300px;}
.xf{left:135.108900px;}
.x10{left:140.547900px;}
.xb{left:143.695350px;}
.xd{left:150.631350px;}
.x17{left:166.129950px;}
.x15{left:292.231350px;}
.x9{left:327.448350px;}
.x1b{left:341.023050px;}
.x12{left:359.150550px;}
.x14{left:367.831350px;}
.x13{left:376.891350px;}
.x11{left:385.239900px;}
.x19{left:388.129650px;}
.x1c{left:428.340300px;}
.x1d{left:459.212550px;}
.x7{left:460.463100px;}
.x1e{left:480.472350px;}
.x8{left:481.723050px;}
.x1{left:564.459600px;}
.x4{left:578.387100px;}
.x3{left:605.398350px;}
.x2{left:634.400850px;}
.x5{left:801.000000px;}
@media print{
.v2{vertical-align:-15.983467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:30.154133pt;}
.ls19{letter-spacing:-0.938667pt;}
.ls14{letter-spacing:-0.762667pt;}
.ls18{letter-spacing:-0.704000pt;}
.lsa{letter-spacing:-0.645333pt;}
.ls9{letter-spacing:-0.586667pt;}
.ls11{letter-spacing:-0.528000pt;}
.ls8{letter-spacing:-0.469333pt;}
.ls7{letter-spacing:-0.410667pt;}
.ls15{letter-spacing:-0.352000pt;}
.ls12{letter-spacing:-0.293333pt;}
.lsf{letter-spacing:-0.234667pt;}
.ls13{letter-spacing:-0.176000pt;}
.ls6{letter-spacing:-0.117333pt;}
.ls10{letter-spacing:-0.058667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.058667pt;}
.ls2{letter-spacing:0.117333pt;}
.lsc{letter-spacing:0.176000pt;}
.lsb{letter-spacing:0.234667pt;}
.lse{letter-spacing:0.293333pt;}
.ls1{letter-spacing:0.352000pt;}
.ls16{letter-spacing:0.410667pt;}
.ls4{letter-spacing:0.469333pt;}
.ls0{letter-spacing:0.528000pt;}
.ls17{letter-spacing:0.586667pt;}
.lsd{letter-spacing:0.645333pt;}
.ws1{word-spacing:-13.333333pt;}
.ws0{word-spacing:-10.000000pt;}
.ws2{word-spacing:-6.996000pt;}
.ws15{word-spacing:-3.520000pt;}
.ws6{word-spacing:-2.992000pt;}
.wsc{word-spacing:-2.933333pt;}
.ws4{word-spacing:-2.757333pt;}
.ws21{word-spacing:-2.640000pt;}
.ws2d{word-spacing:-2.288000pt;}
.ws25{word-spacing:-2.170667pt;}
.ws33{word-spacing:-2.112000pt;}
.ws3c{word-spacing:-1.994667pt;}
.ws36{word-spacing:-1.760000pt;}
.ws20{word-spacing:-1.701333pt;}
.ws30{word-spacing:-1.525333pt;}
.ws10{word-spacing:-1.466667pt;}
.ws22{word-spacing:-1.408000pt;}
.ws35{word-spacing:-1.173333pt;}
.ws1e{word-spacing:-0.880000pt;}
.ws16{word-spacing:-0.768000pt;}
.ws2c{word-spacing:-0.645333pt;}
.ws3b{word-spacing:-0.528000pt;}
.ws2e{word-spacing:-0.469333pt;}
.ws37{word-spacing:-0.410667pt;}
.ws2a{word-spacing:-0.352000pt;}
.ws2f{word-spacing:-0.293333pt;}
.ws17{word-spacing:-0.234667pt;}
.ws31{word-spacing:-0.117333pt;}
.wsb{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws19{word-spacing:0.058667pt;}
.ws1b{word-spacing:0.117333pt;}
.ws1f{word-spacing:0.176000pt;}
.ws18{word-spacing:0.234667pt;}
.ws1d{word-spacing:0.293333pt;}
.wsa{word-spacing:0.352000pt;}
.ws11{word-spacing:0.410667pt;}
.ws24{word-spacing:0.469333pt;}
.ws1c{word-spacing:0.528000pt;}
.ws26{word-spacing:0.586667pt;}
.wse{word-spacing:0.645333pt;}
.ws39{word-spacing:0.704000pt;}
.ws2b{word-spacing:0.938667pt;}
.ws3a{word-spacing:1.466667pt;}
.ws1a{word-spacing:1.936000pt;}
.ws7{word-spacing:2.288000pt;}
.ws23{word-spacing:2.346667pt;}
.ws29{word-spacing:2.522667pt;}
.ws32{word-spacing:3.109333pt;}
.ws27{word-spacing:3.168000pt;}
.wsd{word-spacing:3.461333pt;}
.wsf{word-spacing:3.520000pt;}
.ws12{word-spacing:3.696000pt;}
.ws28{word-spacing:3.872000pt;}
.ws13{word-spacing:3.930667pt;}
.ws14{word-spacing:4.048000pt;}
.ws34{word-spacing:4.224000pt;}
.ws38{word-spacing:4.693333pt;}
.ws5{word-spacing:4.752000pt;}
.ws8{word-spacing:4.810667pt;}
.ws9{word-spacing:4.869333pt;}
._7{margin-left:-13.333333pt;}
._5{margin-left:-6.039467pt;}
._4{margin-left:-4.532267pt;}
._2{margin-left:-2.777600pt;}
._0{margin-left:-1.480000pt;}
._3{width:0.938667pt;}
._8{width:2.206933pt;}
._6{width:3.144533pt;}
._1{width:4.804800pt;}
._9{width:5.778667pt;}
.fs8{font-size:27.984000pt;}
.fsa{font-size:37.333333pt;}
.fs0{font-size:40.000000pt;}
.fsb{font-size:42.666667pt;}
.fs1{font-size:43.113600pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:52.858667pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:43.149600pt;}
.y30{bottom:43.698533pt;}
.y67{bottom:94.479733pt;}
.y9d{bottom:94.488267pt;}
.y20{bottom:98.836667pt;}
.y66{bottom:111.903733pt;}
.y9c{bottom:111.910400pt;}
.y1f{bottom:114.836667pt;}
.y65{bottom:129.327733pt;}
.y9b{bottom:129.330667pt;}
.y64{bottom:146.751733pt;}
.y9a{bottom:146.754667pt;}
.y2f{bottom:157.529067pt;}
.y63{bottom:164.175733pt;}
.y99{bottom:164.176800pt;}
.y2e{bottom:178.058267pt;}
.y62{bottom:181.597600pt;}
.y98{bottom:181.599067pt;}
.y97{bottom:199.017467pt;}
.y61{bottom:199.019467pt;}
.y60{bottom:216.435067pt;}
.y96{bottom:216.441467pt;}
.y5f{bottom:233.859067pt;}
.y95{bottom:233.865467pt;}
.y1e{bottom:241.263067pt;}
.y17{bottom:241.272400pt;}
.y5e{bottom:251.283067pt;}
.y94{bottom:251.287600pt;}
.y1d{bottom:258.892400pt;}
.y16{bottom:258.901733pt;}
.y5d{bottom:268.707067pt;}
.y93{bottom:268.709733pt;}
.y1c{bottom:276.524800pt;}
.y15{bottom:276.531067pt;}
.y5c{bottom:286.128933pt;}
.y92{bottom:286.130133pt;}
.y1b{bottom:294.157333pt;}
.y14{bottom:294.160400pt;}
.y5b{bottom:303.550800pt;}
.y91{bottom:303.554133pt;}
.y13{bottom:311.789733pt;}
.y5a{bottom:320.972800pt;}
.y90{bottom:320.976267pt;}
.y12{bottom:329.422267pt;}
.y59{bottom:338.394667pt;}
.y8f{bottom:338.396533pt;}
.y11{bottom:347.054667pt;}
.y58{bottom:355.816533pt;}
.y8e{bottom:355.820533pt;}
.y10{bottom:364.690267pt;}
.y57{bottom:373.238400pt;}
.y8d{bottom:373.242667pt;}
.yf{bottom:382.319600pt;}
.y56{bottom:390.660267pt;}
.y8c{bottom:390.664800pt;}
.ye{bottom:399.952133pt;}
.y55{bottom:408.077867pt;}
.y8b{bottom:408.086933pt;}
.yd{bottom:417.584533pt;}
.y1a{bottom:417.590800pt;}
.y54{bottom:425.501867pt;}
.y8a{bottom:425.505467pt;}
.yc{bottom:435.217067pt;}
.y19{bottom:435.220133pt;}
.y53{bottom:442.925867pt;}
.y89{bottom:442.929467pt;}
.yb{bottom:452.849467pt;}
.y52{bottom:460.347733pt;}
.y88{bottom:460.353467pt;}
.y18{bottom:470.482000pt;}
.ya{bottom:470.485067pt;}
.y51{bottom:477.765467pt;}
.y87{bottom:477.775600pt;}
.ybc{bottom:485.902267pt;}
.y9{bottom:488.114400pt;}
.y50{bottom:495.189467pt;}
.y86{bottom:495.197733pt;}
.ybb{bottom:503.062267pt;}
.y8{bottom:505.746933pt;}
.y4f{bottom:512.613467pt;}
.y85{bottom:512.619867pt;}
.yba{bottom:520.222267pt;}
.y7{bottom:523.379333pt;}
.y4e{bottom:530.035333pt;}
.y84{bottom:530.042133pt;}
.yb9{bottom:537.382267pt;}
.y6{bottom:541.011867pt;}
.y4d{bottom:547.452933pt;}
.y83{bottom:547.464133pt;}
.yb8{bottom:554.542267pt;}
.y4c{bottom:564.876933pt;}
.y82{bottom:564.886400pt;}
.yb7{bottom:571.702267pt;}
.y4b{bottom:582.300933pt;}
.y81{bottom:582.308533pt;}
.yb6{bottom:588.862267pt;}
.y2d{bottom:595.312667pt;}
.y4a{bottom:599.722800pt;}
.y80{bottom:599.730667pt;}
.yb5{bottom:606.022267pt;}
.y2c{bottom:611.312667pt;}
.y49{bottom:617.144667pt;}
.y7f{bottom:617.152800pt;}
.yb4{bottom:623.182267pt;}
.y2b{bottom:627.312667pt;}
.y48{bottom:634.566667pt;}
.y7e{bottom:634.574933pt;}
.yb3{bottom:640.342267pt;}
.y2a{bottom:647.092267pt;}
.y47{bottom:651.988533pt;}
.y7d{bottom:651.997067pt;}
.yb2{bottom:657.502267pt;}
.y46{bottom:669.410400pt;}
.y7c{bottom:669.419333pt;}
.yb1{bottom:674.662267pt;}
.y45{bottom:686.832133pt;}
.y7b{bottom:686.841467pt;}
.yb0{bottom:691.822267pt;}
.y29{bottom:699.344400pt;}
.y44{bottom:704.254133pt;}
.y7a{bottom:704.263600pt;}
.yaf{bottom:708.982267pt;}
.ybf{bottom:708.982400pt;}
.y43{bottom:721.676000pt;}
.y79{bottom:721.685733pt;}
.y28{bottom:722.005733pt;}
.yae{bottom:726.142267pt;}
.ybe{bottom:726.142400pt;}
.y42{bottom:739.097867pt;}
.y78{bottom:739.107867pt;}
.yad{bottom:743.302267pt;}
.y27{bottom:744.667067pt;}
.y41{bottom:756.519733pt;}
.y77{bottom:756.530000pt;}
.yac{bottom:760.462267pt;}
.y26{bottom:767.328400pt;}
.y40{bottom:773.939467pt;}
.y76{bottom:773.952133pt;}
.yab{bottom:777.622267pt;}
.y3f{bottom:791.363467pt;}
.y75{bottom:791.374400pt;}
.y25{bottom:793.784133pt;}
.yaa{bottom:794.782267pt;}
.y3e{bottom:808.785467pt;}
.y74{bottom:808.796533pt;}
.ya9{bottom:811.942267pt;}
.y24{bottom:816.450800pt;}
.y3d{bottom:826.207333pt;}
.y73{bottom:826.216800pt;}
.ya8{bottom:829.102267pt;}
.y23{bottom:839.117467pt;}
.y3c{bottom:843.629200pt;}
.y72{bottom:843.640800pt;}
.ya7{bottom:846.262267pt;}
.y3b{bottom:861.048933pt;}
.y71{bottom:861.062933pt;}
.y22{bottom:861.784133pt;}
.ya6{bottom:863.422267pt;}
.y3a{bottom:878.472933pt;}
.y70{bottom:878.485067pt;}
.ybd{bottom:880.582267pt;}
.ya5{bottom:880.582400pt;}
.y39{bottom:895.894800pt;}
.y6f{bottom:895.907200pt;}
.ya4{bottom:897.742400pt;}
.y38{bottom:913.312533pt;}
.y6e{bottom:913.323867pt;}
.ya3{bottom:914.902400pt;}
.y37{bottom:930.736533pt;}
.y6d{bottom:930.747867pt;}
.ya2{bottom:932.062400pt;}
.y21{bottom:937.354800pt;}
.y36{bottom:948.160533pt;}
.y6c{bottom:948.171867pt;}
.ya1{bottom:949.222267pt;}
.y35{bottom:965.582400pt;}
.y6b{bottom:965.595867pt;}
.ya0{bottom:966.382267pt;}
.y34{bottom:983.004267pt;}
.y6a{bottom:983.018000pt;}
.y9f{bottom:983.542267pt;}
.y33{bottom:1000.426133pt;}
.y69{bottom:1000.440133pt;}
.y9e{bottom:1000.702267pt;}
.y32{bottom:1017.848000pt;}
.y68{bottom:1017.862267pt;}
.y4{bottom:1027.370000pt;}
.y3{bottom:1039.370000pt;}
.y2{bottom:1051.370000pt;}
.y1{bottom:1063.370000pt;}
.y31{bottom:1065.979600pt;}
.hb{height:29.625000pt;}
.h3{height:30.398456pt;}
.h9{height:30.813408pt;}
.h2{height:35.097656pt;}
.ha{height:35.546875pt;}
.h5{height:46.796875pt;}
.h4{height:51.476562pt;}
.h8{height:56.156250pt;}
.h7{height:65.515625pt;}
.h6{height:79.554688pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:75.590667pt;}
.x6{left:94.488133pt;}
.xa{left:96.290533pt;}
.x16{left:100.986133pt;}
.xe{left:104.472800pt;}
.xc{left:110.207867pt;}
.x1a{left:113.378933pt;}
.xf{left:120.096800pt;}
.x10{left:124.931467pt;}
.xb{left:127.729200pt;}
.xd{left:133.894533pt;}
.x17{left:147.671067pt;}
.x15{left:259.761200pt;}
.x9{left:291.065200pt;}
.x1b{left:303.131600pt;}
.x12{left:319.244933pt;}
.x14{left:326.961200pt;}
.x13{left:335.014533pt;}
.x11{left:342.435467pt;}
.x19{left:345.004133pt;}
.x1c{left:380.746933pt;}
.x1d{left:408.188933pt;}
.x7{left:409.300533pt;}
.x1e{left:427.086533pt;}
.x8{left:428.198267pt;}
.x1{left:501.741867pt;}
.x4{left:514.121867pt;}
.x3{left:538.131867pt;}
.x2{left:563.911867pt;}
.x5{left:712.000000pt;}
}




    .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; }
  