
    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_3a6beb59f4b4d93ab26481aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_3ce818e421d2d5098213def4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_3e04037788d36fc313282f60.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.281250;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_0f76e0fcb3abeb30286ec265.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_fe8df8c029d5e2a1e8d4914b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_7a61b76fce1ae21eda98510e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_ed66f64cefa9ca7f169a3b53.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.330566;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_cee1a3f1d3275e92157edf63.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.322266;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:ff9;src:url('chunks/assets/font_9bf48db3edb6b0fc804971f6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.906250;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:ffa;src:url('chunks/assets/font_9bf48db3edb6b0fc804971f6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.906250;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;}
.m5{transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m1c{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(1.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.580000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(4.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.387500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(4.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.500000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(4.975000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.975000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.975000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws2{word-spacing:-48.000000px;}
.ws1{word-spacing:-13.344000px;}
.ws0{word-spacing:0.000000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:transparent;}
.fs5{font-size:18.000000px;}
.fs6{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs1{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.ybb{bottom:2.490000px;}
.y3b{bottom:2.526000px;}
.yba{bottom:16.890000px;}
.y127{bottom:121.948500px;}
.y39{bottom:122.848500px;}
.yf4{bottom:123.073500px;}
.y32{bottom:123.150000px;}
.yb8{bottom:124.198500px;}
.yb7{bottom:124.573500px;}
.y78{bottom:125.250000px;}
.y126{bottom:139.948500px;}
.y125{bottom:140.323500px;}
.yf3{bottom:140.698500px;}
.y30{bottom:140.848500px;}
.y31{bottom:141.150000px;}
.yb6{bottom:142.198500px;}
.y77{bottom:143.250000px;}
.yf2{bottom:158.323500px;}
.yf1{bottom:158.698500px;}
.y2e{bottom:158.848500px;}
.y2f{bottom:159.150000px;}
.yb5{bottom:159.823500px;}
.yb4{bottom:160.198500px;}
.yb3{bottom:160.573500px;}
.y76{bottom:160.948500px;}
.y75{bottom:161.250000px;}
.y124{bottom:176.323500px;}
.yf0{bottom:176.698500px;}
.y2d{bottom:176.848500px;}
.yb2{bottom:178.198500px;}
.y74{bottom:178.948500px;}
.y123{bottom:193.948500px;}
.yef{bottom:194.698500px;}
.y2c{bottom:194.848500px;}
.yb1{bottom:195.448500px;}
.yb0{bottom:195.823500px;}
.yaf{bottom:196.198500px;}
.y73{bottom:196.948500px;}
.y72{bottom:197.250000px;}
.y122{bottom:211.650000px;}
.y121{bottom:211.950000px;}
.yee{bottom:212.700000px;}
.y2b{bottom:212.848500px;}
.yae{bottom:213.825000px;}
.y71{bottom:214.950000px;}
.y120{bottom:229.950000px;}
.y2a{bottom:230.473500px;}
.yed{bottom:230.700000px;}
.y38{bottom:230.848500px;}
.yad{bottom:231.450000px;}
.yac{bottom:231.825000px;}
.y70{bottom:232.950000px;}
.y11f{bottom:247.275000px;}
.y11e{bottom:247.650000px;}
.yec{bottom:247.950000px;}
.yeb{bottom:248.325000px;}
.y29{bottom:248.473500px;}
.yab{bottom:249.450000px;}
.y6f{bottom:250.575000px;}
.y11d{bottom:265.275000px;}
.y11c{bottom:265.650000px;}
.yea{bottom:265.950000px;}
.y37{bottom:266.098500px;}
.ye9{bottom:266.325000px;}
.y28{bottom:266.473500px;}
.yaa{bottom:267.150000px;}
.ya9{bottom:267.450000px;}
.y6e{bottom:267.825000px;}
.y6d{bottom:268.200000px;}
.y6c{bottom:268.575000px;}
.y11b{bottom:283.650000px;}
.ye8{bottom:283.950000px;}
.y27{bottom:284.098500px;}
.ya8{bottom:284.775000px;}
.ya7{bottom:285.150000px;}
.ya6{bottom:285.450000px;}
.y6b{bottom:285.825000px;}
.y11a{bottom:301.650000px;}
.y26{bottom:301.723500px;}
.ye7{bottom:301.950000px;}
.y36{bottom:302.098500px;}
.ya5{bottom:303.150000px;}
.ya4{bottom:303.450000px;}
.y6a{bottom:303.825000px;}
.y119{bottom:319.275000px;}
.y24{bottom:319.348500px;}
.ye6{bottom:319.650000px;}
.y25{bottom:319.723500px;}
.ye5{bottom:319.950000px;}
.y35{bottom:320.098500px;}
.ya3{bottom:321.150000px;}
.y69{bottom:321.825000px;}
.y118{bottom:337.275000px;}
.y22{bottom:337.348500px;}
.ye4{bottom:337.650000px;}
.y23{bottom:337.723500px;}
.ya2{bottom:339.150000px;}
.ya1{bottom:339.450000px;}
.y68{bottom:339.825000px;}
.y67{bottom:340.575000px;}
.y117{bottom:354.900000px;}
.y116{bottom:355.275000px;}
.y21{bottom:355.348500px;}
.ye3{bottom:355.650000px;}
.y34{bottom:355.723500px;}
.ya0{bottom:357.150000px;}
.y66{bottom:358.200000px;}
.y115{bottom:372.900000px;}
.y1f{bottom:373.348500px;}
.ye2{bottom:373.650000px;}
.y20{bottom:373.723500px;}
.y9f{bottom:375.150000px;}
.y9e{bottom:375.450000px;}
.y65{bottom:376.200000px;}
.y114{bottom:390.900000px;}
.ye1{bottom:391.275000px;}
.y1d{bottom:391.348500px;}
.y1e{bottom:391.723500px;}
.y9d{bottom:393.450000px;}
.y9c{bottom:393.825000px;}
.y64{bottom:394.200000px;}
.y113{bottom:408.525000px;}
.y112{bottom:408.900000px;}
.ye0{bottom:409.275000px;}
.y1c{bottom:409.348500px;}
.y9b{bottom:411.450000px;}
.y63{bottom:412.200000px;}
.ydf{bottom:426.525000px;}
.yde{bottom:426.900000px;}
.y1b{bottom:427.048500px;}
.y33{bottom:427.348500px;}
.y9a{bottom:429.450000px;}
.y62{bottom:430.200000px;}
.y111{bottom:444.525000px;}
.ydd{bottom:444.900000px;}
.y19{bottom:445.048500px;}
.y1a{bottom:445.348500px;}
.y99{bottom:447.450000px;}
.y61{bottom:448.200000px;}
.y110{bottom:462.150000px;}
.y17{bottom:462.673500px;}
.ydc{bottom:462.900000px;}
.y18{bottom:463.048500px;}
.y98{bottom:465.150000px;}
.y97{bottom:465.450000px;}
.y60{bottom:466.200000px;}
.y5f{bottom:466.575000px;}
.y5e{bottom:466.950000px;}
.y10f{bottom:479.848500px;}
.y15{bottom:479.923500px;}
.ydb{bottom:480.150000px;}
.y16{bottom:480.298500px;}
.yda{bottom:480.525000px;}
.y96{bottom:483.450000px;}
.y5d{bottom:484.575000px;}
.y10e{bottom:498.150000px;}
.y14{bottom:498.298500px;}
.yd9{bottom:498.525000px;}
.y95{bottom:501.450000px;}
.y5c{bottom:502.200000px;}
.y10d{bottom:516.150000px;}
.y12{bottom:516.298500px;}
.yd8{bottom:516.525000px;}
.y13{bottom:516.673500px;}
.y94{bottom:519.450000px;}
.y5b{bottom:520.200000px;}
.y10c{bottom:534.150000px;}
.y10{bottom:534.298500px;}
.yd7{bottom:534.525000px;}
.y11{bottom:534.673500px;}
.y93{bottom:537.450000px;}
.y5a{bottom:538.200000px;}
.y59{bottom:538.575000px;}
.yd6{bottom:552.150000px;}
.ye{bottom:552.298500px;}
.yd5{bottom:552.525000px;}
.yf{bottom:552.673500px;}
.y92{bottom:555.450000px;}
.y58{bottom:556.200000px;}
.y10b{bottom:569.848500px;}
.yd4{bottom:570.150000px;}
.yc{bottom:570.298500px;}
.yd3{bottom:570.525000px;}
.yd{bottom:570.673500px;}
.y91{bottom:573.450000px;}
.y57{bottom:574.200000px;}
.y10a{bottom:588.150000px;}
.yd2{bottom:588.525000px;}
.yb{bottom:588.673500px;}
.y90{bottom:591.450000px;}
.y8f{bottom:591.825000px;}
.y56{bottom:592.575000px;}
.y109{bottom:606.150000px;}
.y108{bottom:606.525000px;}
.ya{bottom:606.673500px;}
.yd1{bottom:606.900000px;}
.y8e{bottom:609.450000px;}
.y55{bottom:610.575000px;}
.y107{bottom:623.848500px;}
.yd0{bottom:624.525000px;}
.y9{bottom:624.673500px;}
.y8d{bottom:627.450000px;}
.y54{bottom:628.200000px;}
.y53{bottom:628.575000px;}
.ycf{bottom:642.150000px;}
.yce{bottom:642.525000px;}
.y8{bottom:642.673500px;}
.y8c{bottom:645.150000px;}
.y8b{bottom:645.825000px;}
.y52{bottom:646.200000px;}
.y51{bottom:646.950000px;}
.y106{bottom:660.150000px;}
.ycd{bottom:660.525000px;}
.y8a{bottom:663.825000px;}
.y50{bottom:664.200000px;}
.y4f{bottom:664.575000px;}
.y4e{bottom:664.950000px;}
.y105{bottom:678.150000px;}
.ycc{bottom:678.525000px;}
.y89{bottom:681.825000px;}
.y4d{bottom:682.200000px;}
.y104{bottom:695.848500px;}
.y103{bottom:696.150000px;}
.ycb{bottom:696.525000px;}
.y88{bottom:699.825000px;}
.y4c{bottom:700.200000px;}
.y4b{bottom:700.575000px;}
.y102{bottom:714.150000px;}
.y101{bottom:714.525000px;}
.y7{bottom:714.673500px;}
.yca{bottom:714.900000px;}
.y87{bottom:718.200000px;}
.y4a{bottom:718.575000px;}
.y49{bottom:718.950000px;}
.y100{bottom:732.150000px;}
.yc9{bottom:732.900000px;}
.y5{bottom:735.525000px;}
.y86{bottom:735.825000px;}
.y6{bottom:735.900000px;}
.y48{bottom:736.950000px;}
.yff{bottom:749.848500px;}
.yfe{bottom:750.150000px;}
.yfd{bottom:750.525000px;}
.yc8{bottom:750.900000px;}
.y85{bottom:754.200000px;}
.y47{bottom:754.950000px;}
.y4{bottom:756.750000px;}
.yfc{bottom:768.150000px;}
.yc7{bottom:768.525000px;}
.y84{bottom:772.198500px;}
.y83{bottom:772.573500px;}
.y46{bottom:772.948500px;}
.y3{bottom:778.050000px;}
.yfb{bottom:786.150000px;}
.yc6{bottom:786.900000px;}
.y82{bottom:790.198500px;}
.y45{bottom:790.948500px;}
.yfa{bottom:804.150000px;}
.yc5{bottom:804.525000px;}
.y81{bottom:808.573500px;}
.y44{bottom:808.948500px;}
.yf9{bottom:822.150000px;}
.yc4{bottom:822.900000px;}
.y80{bottom:826.198500px;}
.y7f{bottom:826.573500px;}
.y43{bottom:826.948500px;}
.y2{bottom:834.900000px;}
.yf8{bottom:840.150000px;}
.yc3{bottom:840.525000px;}
.y7e{bottom:844.198500px;}
.y7d{bottom:844.573500px;}
.y42{bottom:844.948500px;}
.yf7{bottom:858.150000px;}
.yc2{bottom:858.900000px;}
.y7c{bottom:862.198500px;}
.y41{bottom:862.948500px;}
.yf6{bottom:875.848500px;}
.yf5{bottom:876.150000px;}
.yc1{bottom:876.900000px;}
.y7b{bottom:879.823500px;}
.y79{bottom:880.198500px;}
.y7a{bottom:880.573500px;}
.y40{bottom:880.948500px;}
.yc0{bottom:908.250000px;}
.ybf{bottom:908.925000px;}
.ybd{bottom:910.050000px;}
.y1{bottom:910.125000px;}
.ybc{bottom:910.348500px;}
.y3f{bottom:912.973500px;}
.y3d{bottom:914.400000px;}
.y3c{bottom:914.775000px;}
.ybe{bottom:919.198500px;}
.y3e{bottom:923.400000px;}
.y128{bottom:936.300640px;}
.yb9{bottom:937.800640px;}
.y3a{bottom:939.300659px;}
.h9{height:13.200074px;}
.h8{height:17.657227px;}
.h10{height:17.666016px;}
.hd{height:30.379965px;}
.hc{height:47.109375px;}
.he{height:47.882812px;}
.ha{height:48.281250px;}
.h6{height:58.857422px;}
.h1{height:58.886719px;}
.h7{height:61.800293px;}
.h5{height:70.628906px;}
.h4{height:75.585938px;}
.h3{height:135.372070px;}
.h2{height:143.929688px;}
.hf{height:979.500000px;}
.hb{height:981.000000px;}
.h0{height:982.500000px;}
.w1{width:254.808000px;}
.w2{width:257.208000px;}
.w0{width:742.500000px;}
.x0{left:0.000000px;}
.x98{left:87.727500px;}
.xe{left:89.250000px;}
.x14{left:90.375000px;}
.x1d{left:91.425000px;}
.x27{left:93.598500px;}
.x28{left:101.175000px;}
.xd{left:102.975000px;}
.x72{left:104.398500px;}
.x60{left:105.448500px;}
.x5c{left:106.573500px;}
.x5b{left:108.000000px;}
.x37{left:109.425000px;}
.x9{left:112.648500px;}
.x2b{left:118.425000px;}
.x36{left:120.225000px;}
.x2c{left:126.000000px;}
.x7{left:127.425000px;}
.x21{left:129.975000px;}
.x30{left:131.398500px;}
.x22{left:137.175000px;}
.x2d{left:138.600000px;}
.x68{left:140.773500px;}
.xa0{left:143.625000px;}
.x2e{left:145.800000px;}
.x69{left:148.350000px;}
.x39{left:149.398500px;}
.xa1{left:150.823500px;}
.x9d{left:152.250000px;}
.x64{left:153.375000px;}
.x5d{left:154.425000px;}
.x3a{left:156.600000px;}
.x9e{left:159.823500px;}
.x65{left:160.948500px;}
.x99{left:164.175000px;}
.x9a{left:168.823500px;}
.x6e{left:169.948500px;}
.xa5{left:176.023500px;}
.x6f{left:177.448500px;}
.x33{left:178.948500px;}
.xa6{left:183.600000px;}
.x66{left:185.023500px;}
.x34{left:186.448500px;}
.x6c{left:187.948500px;}
.x67{left:192.225000px;}
.x6d{left:195.450000px;}
.x6a{left:198.750000px;}
.x73{left:200.173500px;}
.x6b{left:203.398500px;}
.xa7{left:207.750000px;}
.x17{left:211.648500px;}
.x5e{left:213.450000px;}
.xa8{left:215.250000px;}
.x18{left:218.848500px;}
.x38{left:220.350000px;}
.x31{left:221.398500px;}
.xb{left:223.200000px;}
.x19{left:225.000000px;}
.x32{left:228.598500px;}
.x9f{left:230.023500px;}
.x70{left:231.148500px;}
.x1a{left:232.575000px;}
.xf{left:234.000000px;}
.x3b{left:235.423500px;}
.x10{left:241.200000px;}
.x3c{left:243.000000px;}
.x4{left:244.048500px;}
.x11{left:245.548500px;}
.x61{left:248.773500px;}
.x63{left:251.625000px;}
.x12{left:252.750000px;}
.x62{left:256.350000px;}
.x1e{left:259.950000px;}
.x35{left:267.450000px;}
.x1f{left:274.350000px;}
.xa3{left:276.148500px;}
.x23{left:277.950000px;}
.x20{left:282.225000px;}
.x24{left:285.148500px;}
.x8{left:289.423500px;}
.x15{left:292.350000px;}
.xa4{left:297.375000px;}
.x16{left:307.798500px;}
.x29{left:324.000000px;}
.x2a{left:331.200000px;}
.xa2{left:334.423500px;}
.x13{left:335.548500px;}
.x2f{left:341.625000px;}
.x71{left:343.423500px;}
.x1b{left:345.600000px;}
.x25{left:349.575000px;}
.x1{left:351.000000px;}
.x1c{left:352.798500px;}
.x26{left:356.773500px;}
.x52{left:373.350000px;}
.x3d{left:374.773500px;}
.x58{left:379.048500px;}
.x59{left:386.625000px;}
.x4d{left:388.048500px;}
.x89{left:390.598500px;}
.x74{left:392.025000px;}
.x8c{left:393.150000px;}
.xae{left:399.598500px;}
.xad{left:402.450000px;}
.x81{left:405.375000px;}
.xaf{left:407.173500px;}
.x8e{left:408.223500px;}
.x88{left:410.025000px;}
.x84{left:413.250000px;}
.x8f{left:415.423500px;}
.x43{left:417.598500px;}
.x82{left:419.775000px;}
.x85{left:420.825000px;}
.x44{left:424.798500px;}
.x83{left:426.973500px;}
.x8a{left:428.400000px;}
.x53{left:431.250000px;}
.x8d{left:436.650000px;}
.x54{left:438.450000px;}
.x5a{left:444.598500px;}
.x42{left:445.650000px;}
.x93{left:448.950000px;}
.x57{left:452.548500px;}
.xa{left:453.598500px;}
.x94{left:456.450000px;}
.x8b{left:460.048500px;}
.x5{left:461.173500px;}
.x79{left:465.450000px;}
.x7d{left:467.250000px;}
.x55{left:468.750000px;}
.x7a{left:472.650000px;}
.x7e{left:474.450000px;}
.x56{left:475.950000px;}
.xc{left:479.848500px;}
.x2{left:480.973500px;}
.xb3{left:484.200000px;}
.x6{left:486.750000px;}
.xab{left:488.548500px;}
.xb4{left:491.400000px;}
.x49{left:493.950000px;}
.xac{left:495.750000px;}
.xb0{left:497.848500px;}
.x4a{left:501.450000px;}
.x95{left:504.000000px;}
.xb1{left:505.048500px;}
.x3{left:510.825000px;}
.x4b{left:521.625000px;}
.x9b{left:527.025000px;}
.x4c{left:529.200000px;}
.xb5{left:532.798500px;}
.x91{left:533.848500px;}
.x7f{left:540.750000px;}
.x75{left:544.650000px;}
.x80{left:548.625000px;}
.xb2{left:563.775000px;}
.x76{left:565.575000px;}
.x77{left:570.223500px;}
.x90{left:573.150000px;}
.x96{left:576.375000px;}
.x5f{left:580.650000px;}
.x4e{left:582.450000px;}
.x97{left:584.250000px;}
.x9c{left:586.048500px;}
.x40{left:587.548500px;}
.x45{left:588.973500px;}
.x4f{left:590.025000px;}
.x41{left:594.748500px;}
.x46{left:596.548500px;}
.x47{left:604.048500px;}
.xa9{left:609.450000px;}
.x48{left:611.250000px;}
.x3e{left:614.548500px;}
.xaa{left:617.025000px;}
.x3f{left:621.748500px;}
.x50{left:630.375000px;}
.x92{left:632.548500px;}
.x51{left:637.950000px;}
.x78{left:639.750000px;}
.x86{left:645.450000px;}
.x7b{left:648.750000px;}
.x87{left:652.650000px;}
.x7c{left:656.625000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-42.666667pt;}
.ws1{word-spacing:-11.861333pt;}
.ws0{word-spacing:0.000000pt;}
.fs5{font-size:16.000000pt;}
.fs6{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs1{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.ybb{bottom:2.213333pt;}
.y3b{bottom:2.245333pt;}
.yba{bottom:15.013333pt;}
.y127{bottom:108.398667pt;}
.y39{bottom:109.198667pt;}
.yf4{bottom:109.398667pt;}
.y32{bottom:109.466667pt;}
.yb8{bottom:110.398667pt;}
.yb7{bottom:110.732000pt;}
.y78{bottom:111.333333pt;}
.y126{bottom:124.398667pt;}
.y125{bottom:124.732000pt;}
.yf3{bottom:125.065333pt;}
.y30{bottom:125.198667pt;}
.y31{bottom:125.466667pt;}
.yb6{bottom:126.398667pt;}
.y77{bottom:127.333333pt;}
.yf2{bottom:140.732000pt;}
.yf1{bottom:141.065333pt;}
.y2e{bottom:141.198667pt;}
.y2f{bottom:141.466667pt;}
.yb5{bottom:142.065333pt;}
.yb4{bottom:142.398667pt;}
.yb3{bottom:142.732000pt;}
.y76{bottom:143.065333pt;}
.y75{bottom:143.333333pt;}
.y124{bottom:156.732000pt;}
.yf0{bottom:157.065333pt;}
.y2d{bottom:157.198667pt;}
.yb2{bottom:158.398667pt;}
.y74{bottom:159.065333pt;}
.y123{bottom:172.398667pt;}
.yef{bottom:173.065333pt;}
.y2c{bottom:173.198667pt;}
.yb1{bottom:173.732000pt;}
.yb0{bottom:174.065333pt;}
.yaf{bottom:174.398667pt;}
.y73{bottom:175.065333pt;}
.y72{bottom:175.333333pt;}
.y122{bottom:188.133333pt;}
.y121{bottom:188.400000pt;}
.yee{bottom:189.066667pt;}
.y2b{bottom:189.198667pt;}
.yae{bottom:190.066667pt;}
.y71{bottom:191.066667pt;}
.y120{bottom:204.400000pt;}
.y2a{bottom:204.865333pt;}
.yed{bottom:205.066667pt;}
.y38{bottom:205.198667pt;}
.yad{bottom:205.733333pt;}
.yac{bottom:206.066667pt;}
.y70{bottom:207.066667pt;}
.y11f{bottom:219.800000pt;}
.y11e{bottom:220.133333pt;}
.yec{bottom:220.400000pt;}
.yeb{bottom:220.733333pt;}
.y29{bottom:220.865333pt;}
.yab{bottom:221.733333pt;}
.y6f{bottom:222.733333pt;}
.y11d{bottom:235.800000pt;}
.y11c{bottom:236.133333pt;}
.yea{bottom:236.400000pt;}
.y37{bottom:236.532000pt;}
.ye9{bottom:236.733333pt;}
.y28{bottom:236.865333pt;}
.yaa{bottom:237.466667pt;}
.ya9{bottom:237.733333pt;}
.y6e{bottom:238.066667pt;}
.y6d{bottom:238.400000pt;}
.y6c{bottom:238.733333pt;}
.y11b{bottom:252.133333pt;}
.ye8{bottom:252.400000pt;}
.y27{bottom:252.532000pt;}
.ya8{bottom:253.133333pt;}
.ya7{bottom:253.466667pt;}
.ya6{bottom:253.733333pt;}
.y6b{bottom:254.066667pt;}
.y11a{bottom:268.133333pt;}
.y26{bottom:268.198667pt;}
.ye7{bottom:268.400000pt;}
.y36{bottom:268.532000pt;}
.ya5{bottom:269.466667pt;}
.ya4{bottom:269.733333pt;}
.y6a{bottom:270.066667pt;}
.y119{bottom:283.800000pt;}
.y24{bottom:283.865333pt;}
.ye6{bottom:284.133333pt;}
.y25{bottom:284.198667pt;}
.ye5{bottom:284.400000pt;}
.y35{bottom:284.532000pt;}
.ya3{bottom:285.466667pt;}
.y69{bottom:286.066667pt;}
.y118{bottom:299.800000pt;}
.y22{bottom:299.865333pt;}
.ye4{bottom:300.133333pt;}
.y23{bottom:300.198667pt;}
.ya2{bottom:301.466667pt;}
.ya1{bottom:301.733333pt;}
.y68{bottom:302.066667pt;}
.y67{bottom:302.733333pt;}
.y117{bottom:315.466667pt;}
.y116{bottom:315.800000pt;}
.y21{bottom:315.865333pt;}
.ye3{bottom:316.133333pt;}
.y34{bottom:316.198667pt;}
.ya0{bottom:317.466667pt;}
.y66{bottom:318.400000pt;}
.y115{bottom:331.466667pt;}
.y1f{bottom:331.865333pt;}
.ye2{bottom:332.133333pt;}
.y20{bottom:332.198667pt;}
.y9f{bottom:333.466667pt;}
.y9e{bottom:333.733333pt;}
.y65{bottom:334.400000pt;}
.y114{bottom:347.466667pt;}
.ye1{bottom:347.800000pt;}
.y1d{bottom:347.865333pt;}
.y1e{bottom:348.198667pt;}
.y9d{bottom:349.733333pt;}
.y9c{bottom:350.066667pt;}
.y64{bottom:350.400000pt;}
.y113{bottom:363.133333pt;}
.y112{bottom:363.466667pt;}
.ye0{bottom:363.800000pt;}
.y1c{bottom:363.865333pt;}
.y9b{bottom:365.733333pt;}
.y63{bottom:366.400000pt;}
.ydf{bottom:379.133333pt;}
.yde{bottom:379.466667pt;}
.y1b{bottom:379.598667pt;}
.y33{bottom:379.865333pt;}
.y9a{bottom:381.733333pt;}
.y62{bottom:382.400000pt;}
.y111{bottom:395.133333pt;}
.ydd{bottom:395.466667pt;}
.y19{bottom:395.598667pt;}
.y1a{bottom:395.865333pt;}
.y99{bottom:397.733333pt;}
.y61{bottom:398.400000pt;}
.y110{bottom:410.800000pt;}
.y17{bottom:411.265333pt;}
.ydc{bottom:411.466667pt;}
.y18{bottom:411.598667pt;}
.y98{bottom:413.466667pt;}
.y97{bottom:413.733333pt;}
.y60{bottom:414.400000pt;}
.y5f{bottom:414.733333pt;}
.y5e{bottom:415.066667pt;}
.y10f{bottom:426.532000pt;}
.y15{bottom:426.598667pt;}
.ydb{bottom:426.800000pt;}
.y16{bottom:426.932000pt;}
.yda{bottom:427.133333pt;}
.y96{bottom:429.733333pt;}
.y5d{bottom:430.733333pt;}
.y10e{bottom:442.800000pt;}
.y14{bottom:442.932000pt;}
.yd9{bottom:443.133333pt;}
.y95{bottom:445.733333pt;}
.y5c{bottom:446.400000pt;}
.y10d{bottom:458.800000pt;}
.y12{bottom:458.932000pt;}
.yd8{bottom:459.133333pt;}
.y13{bottom:459.265333pt;}
.y94{bottom:461.733333pt;}
.y5b{bottom:462.400000pt;}
.y10c{bottom:474.800000pt;}
.y10{bottom:474.932000pt;}
.yd7{bottom:475.133333pt;}
.y11{bottom:475.265333pt;}
.y93{bottom:477.733333pt;}
.y5a{bottom:478.400000pt;}
.y59{bottom:478.733333pt;}
.yd6{bottom:490.800000pt;}
.ye{bottom:490.932000pt;}
.yd5{bottom:491.133333pt;}
.yf{bottom:491.265333pt;}
.y92{bottom:493.733333pt;}
.y58{bottom:494.400000pt;}
.y10b{bottom:506.532000pt;}
.yd4{bottom:506.800000pt;}
.yc{bottom:506.932000pt;}
.yd3{bottom:507.133333pt;}
.yd{bottom:507.265333pt;}
.y91{bottom:509.733333pt;}
.y57{bottom:510.400000pt;}
.y10a{bottom:522.800000pt;}
.yd2{bottom:523.133333pt;}
.yb{bottom:523.265333pt;}
.y90{bottom:525.733333pt;}
.y8f{bottom:526.066667pt;}
.y56{bottom:526.733333pt;}
.y109{bottom:538.800000pt;}
.y108{bottom:539.133333pt;}
.ya{bottom:539.265333pt;}
.yd1{bottom:539.466667pt;}
.y8e{bottom:541.733333pt;}
.y55{bottom:542.733333pt;}
.y107{bottom:554.532000pt;}
.yd0{bottom:555.133333pt;}
.y9{bottom:555.265333pt;}
.y8d{bottom:557.733333pt;}
.y54{bottom:558.400000pt;}
.y53{bottom:558.733333pt;}
.ycf{bottom:570.800000pt;}
.yce{bottom:571.133333pt;}
.y8{bottom:571.265333pt;}
.y8c{bottom:573.466667pt;}
.y8b{bottom:574.066667pt;}
.y52{bottom:574.400000pt;}
.y51{bottom:575.066667pt;}
.y106{bottom:586.800000pt;}
.ycd{bottom:587.133333pt;}
.y8a{bottom:590.066667pt;}
.y50{bottom:590.400000pt;}
.y4f{bottom:590.733333pt;}
.y4e{bottom:591.066667pt;}
.y105{bottom:602.800000pt;}
.ycc{bottom:603.133333pt;}
.y89{bottom:606.066667pt;}
.y4d{bottom:606.400000pt;}
.y104{bottom:618.532000pt;}
.y103{bottom:618.800000pt;}
.ycb{bottom:619.133333pt;}
.y88{bottom:622.066667pt;}
.y4c{bottom:622.400000pt;}
.y4b{bottom:622.733333pt;}
.y102{bottom:634.800000pt;}
.y101{bottom:635.133333pt;}
.y7{bottom:635.265333pt;}
.yca{bottom:635.466667pt;}
.y87{bottom:638.400000pt;}
.y4a{bottom:638.733333pt;}
.y49{bottom:639.066667pt;}
.y100{bottom:650.800000pt;}
.yc9{bottom:651.466667pt;}
.y5{bottom:653.800000pt;}
.y86{bottom:654.066667pt;}
.y6{bottom:654.133333pt;}
.y48{bottom:655.066667pt;}
.yff{bottom:666.532000pt;}
.yfe{bottom:666.800000pt;}
.yfd{bottom:667.133333pt;}
.yc8{bottom:667.466667pt;}
.y85{bottom:670.400000pt;}
.y47{bottom:671.066667pt;}
.y4{bottom:672.666667pt;}
.yfc{bottom:682.800000pt;}
.yc7{bottom:683.133333pt;}
.y84{bottom:686.398667pt;}
.y83{bottom:686.732000pt;}
.y46{bottom:687.065333pt;}
.y3{bottom:691.600000pt;}
.yfb{bottom:698.800000pt;}
.yc6{bottom:699.466667pt;}
.y82{bottom:702.398667pt;}
.y45{bottom:703.065333pt;}
.yfa{bottom:714.800000pt;}
.yc5{bottom:715.133333pt;}
.y81{bottom:718.732000pt;}
.y44{bottom:719.065333pt;}
.yf9{bottom:730.800000pt;}
.yc4{bottom:731.466667pt;}
.y80{bottom:734.398667pt;}
.y7f{bottom:734.732000pt;}
.y43{bottom:735.065333pt;}
.y2{bottom:742.133333pt;}
.yf8{bottom:746.800000pt;}
.yc3{bottom:747.133333pt;}
.y7e{bottom:750.398667pt;}
.y7d{bottom:750.732000pt;}
.y42{bottom:751.065333pt;}
.yf7{bottom:762.800000pt;}
.yc2{bottom:763.466667pt;}
.y7c{bottom:766.398667pt;}
.y41{bottom:767.065333pt;}
.yf6{bottom:778.532000pt;}
.yf5{bottom:778.800000pt;}
.yc1{bottom:779.466667pt;}
.y7b{bottom:782.065333pt;}
.y79{bottom:782.398667pt;}
.y7a{bottom:782.732000pt;}
.y40{bottom:783.065333pt;}
.yc0{bottom:807.333333pt;}
.ybf{bottom:807.933333pt;}
.ybd{bottom:808.933333pt;}
.y1{bottom:809.000000pt;}
.ybc{bottom:809.198667pt;}
.y3f{bottom:811.532000pt;}
.y3d{bottom:812.800000pt;}
.y3c{bottom:813.133333pt;}
.ybe{bottom:817.065333pt;}
.y3e{bottom:820.800000pt;}
.y128{bottom:832.267236pt;}
.yb9{bottom:833.600569pt;}
.y3a{bottom:834.933919pt;}
.h9{height:11.733399pt;}
.h8{height:15.695312pt;}
.h10{height:15.703125pt;}
.hd{height:27.004413pt;}
.hc{height:41.875000pt;}
.he{height:42.562500pt;}
.ha{height:42.916667pt;}
.h6{height:52.317708pt;}
.h1{height:52.343750pt;}
.h7{height:54.933594pt;}
.h5{height:62.781250pt;}
.h4{height:67.187500pt;}
.h3{height:120.330729pt;}
.h2{height:127.937500pt;}
.hf{height:870.666667pt;}
.hb{height:872.000000pt;}
.h0{height:873.333333pt;}
.w1{width:226.496000pt;}
.w2{width:228.629333pt;}
.w0{width:660.000000pt;}
.x0{left:0.000000pt;}
.x98{left:77.980000pt;}
.xe{left:79.333333pt;}
.x14{left:80.333333pt;}
.x1d{left:81.266667pt;}
.x27{left:83.198667pt;}
.x28{left:89.933333pt;}
.xd{left:91.533333pt;}
.x72{left:92.798667pt;}
.x60{left:93.732000pt;}
.x5c{left:94.732000pt;}
.x5b{left:96.000000pt;}
.x37{left:97.266667pt;}
.x9{left:100.132000pt;}
.x2b{left:105.266667pt;}
.x36{left:106.866667pt;}
.x2c{left:112.000000pt;}
.x7{left:113.266667pt;}
.x21{left:115.533333pt;}
.x30{left:116.798667pt;}
.x22{left:121.933333pt;}
.x2d{left:123.200000pt;}
.x68{left:125.132000pt;}
.xa0{left:127.666667pt;}
.x2e{left:129.600000pt;}
.x69{left:131.866667pt;}
.x39{left:132.798667pt;}
.xa1{left:134.065333pt;}
.x9d{left:135.333333pt;}
.x64{left:136.333333pt;}
.x5d{left:137.266667pt;}
.x3a{left:139.200000pt;}
.x9e{left:142.065333pt;}
.x65{left:143.065333pt;}
.x99{left:145.933333pt;}
.x9a{left:150.065333pt;}
.x6e{left:151.065333pt;}
.xa5{left:156.465333pt;}
.x6f{left:157.732000pt;}
.x33{left:159.065333pt;}
.xa6{left:163.200000pt;}
.x66{left:164.465333pt;}
.x34{left:165.732000pt;}
.x6c{left:167.065333pt;}
.x67{left:170.866667pt;}
.x6d{left:173.733333pt;}
.x6a{left:176.666667pt;}
.x73{left:177.932000pt;}
.x6b{left:180.798667pt;}
.xa7{left:184.666667pt;}
.x17{left:188.132000pt;}
.x5e{left:189.733333pt;}
.xa8{left:191.333333pt;}
.x18{left:194.532000pt;}
.x38{left:195.866667pt;}
.x31{left:196.798667pt;}
.xb{left:198.400000pt;}
.x19{left:200.000000pt;}
.x32{left:203.198667pt;}
.x9f{left:204.465333pt;}
.x70{left:205.465333pt;}
.x1a{left:206.733333pt;}
.xf{left:208.000000pt;}
.x3b{left:209.265333pt;}
.x10{left:214.400000pt;}
.x3c{left:216.000000pt;}
.x4{left:216.932000pt;}
.x11{left:218.265333pt;}
.x61{left:221.132000pt;}
.x63{left:223.666667pt;}
.x12{left:224.666667pt;}
.x62{left:227.866667pt;}
.x1e{left:231.066667pt;}
.x35{left:237.733333pt;}
.x1f{left:243.866667pt;}
.xa3{left:245.465333pt;}
.x23{left:247.066667pt;}
.x20{left:250.866667pt;}
.x24{left:253.465333pt;}
.x8{left:257.265333pt;}
.x15{left:259.866667pt;}
.xa4{left:264.333333pt;}
.x16{left:273.598667pt;}
.x29{left:288.000000pt;}
.x2a{left:294.400000pt;}
.xa2{left:297.265333pt;}
.x13{left:298.265333pt;}
.x2f{left:303.666667pt;}
.x71{left:305.265333pt;}
.x1b{left:307.200000pt;}
.x25{left:310.733333pt;}
.x1{left:312.000000pt;}
.x1c{left:313.598667pt;}
.x26{left:317.132000pt;}
.x52{left:331.866667pt;}
.x3d{left:333.132000pt;}
.x58{left:336.932000pt;}
.x59{left:343.666667pt;}
.x4d{left:344.932000pt;}
.x89{left:347.198667pt;}
.x74{left:348.466667pt;}
.x8c{left:349.466667pt;}
.xae{left:355.198667pt;}
.xad{left:357.733333pt;}
.x81{left:360.333333pt;}
.xaf{left:361.932000pt;}
.x8e{left:362.865333pt;}
.x88{left:364.466667pt;}
.x84{left:367.333333pt;}
.x8f{left:369.265333pt;}
.x43{left:371.198667pt;}
.x82{left:373.133333pt;}
.x85{left:374.066667pt;}
.x44{left:377.598667pt;}
.x83{left:379.532000pt;}
.x8a{left:380.800000pt;}
.x53{left:383.333333pt;}
.x8d{left:388.133333pt;}
.x54{left:389.733333pt;}
.x5a{left:395.198667pt;}
.x42{left:396.133333pt;}
.x93{left:399.066667pt;}
.x57{left:402.265333pt;}
.xa{left:403.198667pt;}
.x94{left:405.733333pt;}
.x8b{left:408.932000pt;}
.x5{left:409.932000pt;}
.x79{left:413.733333pt;}
.x7d{left:415.333333pt;}
.x55{left:416.666667pt;}
.x7a{left:420.133333pt;}
.x7e{left:421.733333pt;}
.x56{left:423.066667pt;}
.xc{left:426.532000pt;}
.x2{left:427.532000pt;}
.xb3{left:430.400000pt;}
.x6{left:432.666667pt;}
.xab{left:434.265333pt;}
.xb4{left:436.800000pt;}
.x49{left:439.066667pt;}
.xac{left:440.666667pt;}
.xb0{left:442.532000pt;}
.x4a{left:445.733333pt;}
.x95{left:448.000000pt;}
.xb1{left:448.932000pt;}
.x3{left:454.066667pt;}
.x4b{left:463.666667pt;}
.x9b{left:468.466667pt;}
.x4c{left:470.400000pt;}
.xb5{left:473.598667pt;}
.x91{left:474.532000pt;}
.x7f{left:480.666667pt;}
.x75{left:484.133333pt;}
.x80{left:487.666667pt;}
.xb2{left:501.133333pt;}
.x76{left:502.733333pt;}
.x77{left:506.865333pt;}
.x90{left:509.466667pt;}
.x96{left:512.333333pt;}
.x5f{left:516.133333pt;}
.x4e{left:517.733333pt;}
.x97{left:519.333333pt;}
.x9c{left:520.932000pt;}
.x40{left:522.265333pt;}
.x45{left:523.532000pt;}
.x4f{left:524.466667pt;}
.x41{left:528.665333pt;}
.x46{left:530.265333pt;}
.x47{left:536.932000pt;}
.xa9{left:541.733333pt;}
.x48{left:543.333333pt;}
.x3e{left:546.265333pt;}
.xaa{left:548.466667pt;}
.x3f{left:552.665333pt;}
.x50{left:560.333333pt;}
.x92{left:562.265333pt;}
.x51{left:567.066667pt;}
.x78{left:568.666667pt;}
.x86{left:573.733333pt;}
.x7b{left:576.666667pt;}
.x87{left:580.133333pt;}
.x7c{left:583.666667pt;}
}




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