
    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_d438df696c0b0f283e1ab9f2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_5a9adc5b63e8efcd3fa345d4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_f4c9ea104d7b9f6a5dfd6c04.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.677734;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_e1dd6a4be7d90ee918ecc8f1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5bf6f0dac45a9145ebec8982.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.207031;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_b2743670dfddd3e4400d07ec.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900391;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_f6bc24c5632128a945b5f055.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.113281;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_cb6507610fd525736afc63e6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_deac59a7e0d8c7ac5039c0cc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.728027;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_2c1994b23433e4d27fe9dbf9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.095703;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;}
.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);}
.m1{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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.ls26{letter-spacing:-0.776880px;}
.ls1e{letter-spacing:-0.720000px;}
.ls28{letter-spacing:-0.648000px;}
.ls29{letter-spacing:-0.576000px;}
.ls14{letter-spacing:-0.336960px;}
.lsd{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.270000px;}
.ls5{letter-spacing:-0.264960px;}
.lsb{letter-spacing:-0.252720px;}
.ls2d{letter-spacing:-0.239040px;}
.ls8{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.119520px;}
.ls9{letter-spacing:-0.108000px;}
.ls13{letter-spacing:-0.084240px;}
.ls15{letter-spacing:-0.059760px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.054000px;}
.ls2e{letter-spacing:0.059760px;}
.ls17{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.077760px;}
.ls16{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.132480px;}
.ls10{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.179280px;}
.ls2f{letter-spacing:0.192960px;}
.ls31{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.239040px;}
.ls25{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.324000px;}
.ls1b{letter-spacing:0.358560px;}
.ls19{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.421200px;}
.ls33{letter-spacing:0.432000px;}
.ls1f{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.657360px;}
.ls23{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.896400px;}
.ls20{letter-spacing:1.440000px;}
.ls2b{letter-spacing:2.160000px;}
.ls2a{letter-spacing:2.880000px;}
.ls30{letter-spacing:4.320000px;}
.ls21{letter-spacing:5.199120px;}
.ls22{letter-spacing:6.480000px;}
.ls2c{letter-spacing:6.633360px;}
.ls1a{letter-spacing:7.350480px;}
.ls27{letter-spacing:8.640000px;}
.ls1c{letter-spacing:36.262800px;}
.ls32{letter-spacing:46.800000px;}
.ls18{letter-spacing:54.864000px;}
.ls0{letter-spacing:731.538000px;}
.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;}
}
.ws5{word-spacing:-24.480000px;}
.ws28{word-spacing:-23.081760px;}
.ws71{word-spacing:-18.720000px;}
.ws70{word-spacing:-18.432000px;}
.ws6d{word-spacing:-18.216000px;}
.ws47{word-spacing:-18.144000px;}
.ws4c{word-spacing:-18.072000px;}
.ws40{word-spacing:-18.000000px;}
.ws29{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws50{word-spacing:-17.424000px;}
.ws34{word-spacing:-15.298560px;}
.ws36{word-spacing:-15.059520px;}
.ws35{word-spacing:-14.880240px;}
.ws32{word-spacing:-14.820480px;}
.ws5d{word-spacing:-14.700960px;}
.ws4d{word-spacing:-14.163120px;}
.ws1{word-spacing:-13.505760px;}
.ws4b{word-spacing:-13.410720px;}
.ws4{word-spacing:-12.528000px;}
.ws69{word-spacing:-12.252960px;}
.ws0{word-spacing:-12.204000px;}
.ws3{word-spacing:-11.988000px;}
.ws2{word-spacing:-11.934000px;}
.ws33{word-spacing:-9.720000px;}
.ws1a{word-spacing:-4.320000px;}
.ws45{word-spacing:-4.032000px;}
.ws6c{word-spacing:-3.744000px;}
.ws44{word-spacing:-3.600000px;}
.ws1c{word-spacing:-3.312000px;}
.ws43{word-spacing:-3.047760px;}
.ws53{word-spacing:-3.024000px;}
.ws60{word-spacing:-2.928240px;}
.ws2f{word-spacing:-2.880000px;}
.ws61{word-spacing:-2.808720px;}
.ws5a{word-spacing:-2.664000px;}
.ws42{word-spacing:-2.592000px;}
.ws62{word-spacing:-2.569680px;}
.ws66{word-spacing:-2.330640px;}
.ws15{word-spacing:-2.304000px;}
.ws39{word-spacing:-2.160000px;}
.ws67{word-spacing:-2.091600px;}
.ws14{word-spacing:-1.872000px;}
.ws3c{word-spacing:-1.584000px;}
.ws17{word-spacing:-1.440000px;}
.ws3d{word-spacing:-1.152000px;}
.wsd{word-spacing:-0.896400px;}
.ws30{word-spacing:-0.864000px;}
.ws1d{word-spacing:-0.758160px;}
.ws6a{word-spacing:-0.723600px;}
.ws23{word-spacing:-0.720000px;}
.ws46{word-spacing:-0.432000px;}
.wsa{word-spacing:-0.421200px;}
.wse{word-spacing:-0.288000px;}
.ws1e{word-spacing:-0.252720px;}
.ws72{word-spacing:-0.216000px;}
.ws3a{word-spacing:-0.179280px;}
.ws10{word-spacing:-0.144000px;}
.ws27{word-spacing:-0.072000px;}
.ws7{word-spacing:0.000000px;}
.ws21{word-spacing:0.059760px;}
.ws68{word-spacing:0.119520px;}
.wsc{word-spacing:0.144000px;}
.ws9{word-spacing:0.162000px;}
.ws55{word-spacing:0.216000px;}
.ws20{word-spacing:0.239040px;}
.wsb{word-spacing:0.252720px;}
.ws8{word-spacing:0.264960px;}
.wsf{word-spacing:0.288000px;}
.ws4f{word-spacing:0.537840px;}
.ws2e{word-spacing:0.576000px;}
.ws56{word-spacing:0.648000px;}
.ws1f{word-spacing:0.673920px;}
.ws18{word-spacing:0.720000px;}
.ws4e{word-spacing:0.776880px;}
.ws16{word-spacing:1.008000px;}
.ws65{word-spacing:1.254960px;}
.ws52{word-spacing:1.296000px;}
.ws64{word-spacing:1.374480px;}
.ws11{word-spacing:1.440000px;}
.ws12{word-spacing:1.728000px;}
.ws63{word-spacing:1.733040px;}
.ws5b{word-spacing:2.016000px;}
.ws6e{word-spacing:2.088000px;}
.ws2a{word-spacing:2.160000px;}
.ws13{word-spacing:2.448000px;}
.ws1b{word-spacing:2.880000px;}
.ws5c{word-spacing:3.168000px;}
.ws6b{word-spacing:3.312000px;}
.ws51{word-spacing:3.528000px;}
.ws31{word-spacing:3.600000px;}
.ws41{word-spacing:3.888000px;}
.ws2d{word-spacing:4.176000px;}
.ws2b{word-spacing:4.320000px;}
.ws2c{word-spacing:4.608000px;}
.ws4a{word-spacing:4.840560px;}
.ws26{word-spacing:5.040000px;}
.ws49{word-spacing:5.079600px;}
.ws48{word-spacing:5.328000px;}
.ws22{word-spacing:5.760000px;}
.ws5e{word-spacing:6.274800px;}
.ws5f{word-spacing:6.394320px;}
.ws38{word-spacing:6.480000px;}
.ws37{word-spacing:6.768000px;}
.ws3f{word-spacing:7.051680px;}
.ws3b{word-spacing:7.200000px;}
.ws3e{word-spacing:7.290720px;}
.ws54{word-spacing:7.488000px;}
.ws25{word-spacing:7.920000px;}
.ws24{word-spacing:8.208000px;}
.ws19{word-spacing:8.640000px;}
.ws58{word-spacing:12.096000px;}
.ws59{word-spacing:12.240000px;}
.ws57{word-spacing:12.528000px;}
.ws6f{word-spacing:46.800000px;}
.ws73{word-spacing:57.600000px;}
._5{margin-left:-2.085048px;}
._0{margin-left:-1.063800px;}
._1{width:1.032480px;}
._6{width:2.063520px;}
._7{width:3.375144px;}
._9{width:4.533120px;}
._c{width:6.986520px;}
._a{width:7.990560px;}
._8{width:34.887960px;}
._b{width:47.520000px;}
._4{width:671.011200px;}
._2{width:901.460160px;}
._3{width:1090.774080px;}
.fc5{color:rgb(0,0,255);}
.fc7{color:transparent;}
.fc4{color:rgb(118,113,113);}
.fc2{color:rgb(196,89,17);}
.fc6{color:rgb(31,32,35);}
.fc3{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs9{font-size:38.880000px;}
.fs8{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:16.020000px;}
.y7{bottom:79.920000px;}
.y6{bottom:112.680000px;}
.y8{bottom:113.760000px;}
.y5{bottom:145.440000px;}
.y10c{bottom:165.397680px;}
.y86{bottom:165.408840px;}
.ybc{bottom:165.414420px;}
.y78{bottom:165.420000px;}
.y66{bottom:169.380000px;}
.yd3{bottom:170.640000px;}
.y42{bottom:171.540000px;}
.y10b{bottom:182.683260px;}
.y77{bottom:182.694420px;}
.y2b{bottom:184.140000px;}
.y134{bottom:185.220000px;}
.yeb{bottom:186.300000px;}
.ya7{bottom:187.200000px;}
.ybb{bottom:187.920000px;}
.y119{bottom:194.220000px;}
.y41{bottom:195.300000px;}
.y91{bottom:196.380000px;}
.y14a{bottom:199.800000px;}
.y10a{bottom:199.968840px;}
.y65{bottom:202.140000px;}
.y76{bottom:205.200000px;}
.y2a{bottom:207.900000px;}
.yea{bottom:210.060000px;}
.ya6{bottom:210.960000px;}
.y133{bottom:211.320000px;}
.yba{bottom:212.760000px;}
.y109{bottom:217.254420px;}
.y118{bottom:217.980000px;}
.y64{bottom:225.900000px;}
.y40{bottom:228.060000px;}
.y75{bottom:230.040000px;}
.y29{bottom:231.840000px;}
.y149{bottom:232.560000px;}
.yb9{bottom:233.460000px;}
.ye9{bottom:234.000000px;}
.ya5{bottom:234.900000px;}
.y108{bottom:239.760000px;}
.y74{bottom:250.740000px;}
.y3f{bottom:252.000000px;}
.y90{bottom:254.160000px;}
.y148{bottom:256.320000px;}
.ye8{bottom:257.760000px;}
.ya4{bottom:258.660000px;}
.y63{bottom:258.840000px;}
.y28{bottom:264.600000px;}
.y117{bottom:274.680000px;}
.y3e{bottom:275.760000px;}
.yb8{bottom:278.095680px;}
.y147{bottom:280.260000px;}
.ye7{bottom:281.520000px;}
.y62{bottom:282.600000px;}
.y107{bottom:285.300000px;}
.yd2{bottom:289.800000px;}
.ya3{bottom:291.420000px;}
.y27{bottom:294.120000px;}
.y116{bottom:298.440000px;}
.y3d{bottom:299.520000px;}
.y73{bottom:301.140000px;}
.yb7{bottom:306.900000px;}
.ye6{bottom:311.040000px;}
.y146{bottom:313.020000px;}
.yd1{bottom:313.740000px;}
.ya2{bottom:315.180000px;}
.y61{bottom:315.360000px;}
.y85{bottom:319.680000px;}
.y115{bottom:322.200000px;}
.y26{bottom:323.100000px;}
.y3c{bottom:332.280000px;}
.yb6{bottom:333.000000px;}
.y72{bottom:333.900000px;}
.yf8{bottom:335.880000px;}
.y145{bottom:336.780000px;}
.y60{bottom:338.580000px;}
.ya1{bottom:339.120000px;}
.y25{bottom:343.080000px;}
.y84{bottom:343.440000px;}
.yd0{bottom:346.500000px;}
.ye5{bottom:356.040000px;}
.y3b{bottom:356.220000px;}
.y71{bottom:357.660000px;}
.y144{bottom:360.540000px;}
.y106{bottom:362.700000px;}
.ya0{bottom:362.880000px;}
.y5f{bottom:363.240000px;}
.y83{bottom:367.200000px;}
.yf7{bottom:368.820000px;}
.ycf{bottom:370.260000px;}
.y24{bottom:375.480000px;}
.ye4{bottom:379.800000px;}
.y3a{bottom:379.980000px;}
.y70{bottom:381.600000px;}
.y143{bottom:384.480000px;}
.y5e{bottom:387.900000px;}
.y114{bottom:388.800000px;}
.y82{bottom:390.960000px;}
.yf6{bottom:392.580000px;}
.yce{bottom:394.020000px;}
.y105{bottom:395.460000px;}
.y9f{bottom:395.640000px;}
.y23{bottom:399.240000px;}
.y39{bottom:403.740000px;}
.y6f{bottom:405.360000px;}
.y5d{bottom:412.560000px;}
.y142{bottom:414.540000px;}
.y81{bottom:414.900000px;}
.yf5{bottom:416.340000px;}
.ycd{bottom:417.960000px;}
.y9e{bottom:419.400000px;}
.y22{bottom:423.000000px;}
.ye3{bottom:427.500000px;}
.y38{bottom:436.500000px;}
.y5c{bottom:437.220000px;}
.y6e{bottom:438.120000px;}
.yf4{bottom:440.100000px;}
.ycc{bottom:441.720000px;}
.y104{bottom:443.160000px;}
.y9d{bottom:443.340000px;}
.y21{bottom:446.760000px;}
.y80{bottom:447.660000px;}
.ye2{bottom:460.260000px;}
.y5b{bottom:461.880000px;}
.y141{bottom:462.420000px;}
.yf3{bottom:464.040000px;}
.ycb{bottom:465.480000px;}
.y103{bottom:466.920000px;}
.y9c{bottom:467.100000px;}
.y37{bottom:468.184500px;}
.y20{bottom:470.520000px;}
.y7f{bottom:480.420000px;}
.ye1{bottom:484.020000px;}
.y6d{bottom:485.640000px;}
.y140{bottom:486.180000px;}
.y5a{bottom:486.540000px;}
.yf2{bottom:487.800000px;}
.y36{bottom:487.980000px;}
.yca{bottom:489.240000px;}
.y102{bottom:490.680000px;}
.y9b{bottom:490.860000px;}
.y1f{bottom:494.460000px;}
.y7e{bottom:504.180000px;}
.ye0{bottom:507.780000px;}
.y13f{bottom:509.940000px;}
.y132{bottom:511.020000px;}
.y59{bottom:511.200000px;}
.yf1{bottom:511.560000px;}
.yc9{bottom:513.180000px;}
.y35{bottom:514.080000px;}
.y9a{bottom:514.620000px;}
.y6c{bottom:515.880000px;}
.y1e{bottom:518.220000px;}
.y7d{bottom:528.120000px;}
.ydf{bottom:531.720000px;}
.y13e{bottom:533.700000px;}
.yf0{bottom:535.320000px;}
.y58{bottom:535.860000px;}
.yc8{bottom:536.940000px;}
.y101{bottom:538.380000px;}
.y99{bottom:538.560000px;}
.y131{bottom:543.780000px;}
.y1d{bottom:550.980000px;}
.yde{bottom:555.480000px;}
.yef{bottom:559.260000px;}
.y57{bottom:560.520000px;}
.yc7{bottom:560.880000px;}
.y100{bottom:562.140000px;}
.y98{bottom:562.320000px;}
.y6b{bottom:563.760000px;}
.y13d{bottom:566.640000px;}
.y130{bottom:567.540000px;}
.y7c{bottom:568.620000px;}
.ydd{bottom:579.240000px;}
.yee{bottom:583.020000px;}
.y1c{bottom:583.740000px;}
.yc6{bottom:584.460000px;}
.y56{bottom:585.180000px;}
.yff{bottom:585.900000px;}
.y97{bottom:586.080000px;}
.y13c{bottom:590.400000px;}
.y12f{bottom:591.300000px;}
.y7b{bottom:594.720000px;}
.y6a{bottom:595.260000px;}
.ydc{bottom:603.000000px;}
.y1b{bottom:605.889000px;}
.y55{bottom:609.840000px;}
.yc5{bottom:614.160000px;}
.y12e{bottom:615.240000px;}
.y69{bottom:621.360000px;}
.yed{bottom:623.520000px;}
.ydb{bottom:626.940000px;}
.y1a{bottom:633.420000px;}
.y96{bottom:633.600000px;}
.y113{bottom:637.740000px;}
.y13b{bottom:637.920000px;}
.y12d{bottom:639.000000px;}
.y54{bottom:644.220000px;}
.yec{bottom:649.620000px;}
.yda{bottom:650.700000px;}
.yc4{bottom:655.920000px;}
.y95{bottom:657.540000px;}
.y13a{bottom:661.860000px;}
.y12c{bottom:662.760000px;}
.yfe{bottom:666.360000px;}
.y53{bottom:667.980000px;}
.y112{bottom:670.500000px;}
.y19{bottom:671.760000px;}
.yc3{bottom:677.340000px;}
.y14f{bottom:678.780000px;}
.y94{bottom:681.300000px;}
.yd9{bottom:683.460000px;}
.y12b{bottom:686.520000px;}
.yfd{bottom:690.120000px;}
.y139{bottom:691.920000px;}
.y111{bottom:694.440000px;}
.y18{bottom:695.700000px;}
.y52{bottom:698.220000px;}
.yc2{bottom:698.580000px;}
.yd8{bottom:707.220000px;}
.y12a{bottom:710.460000px;}
.y14e{bottom:712.800000px;}
.y110{bottom:718.200000px;}
.y93{bottom:721.800000px;}
.yfc{bottom:722.880000px;}
.y17{bottom:728.460000px;}
.yd7{bottom:731.160000px;}
.yc1{bottom:732.060000px;}
.y129{bottom:734.220000px;}
.y138{bottom:739.800000px;}
.y51{bottom:745.920000px;}
.y92{bottom:747.900000px;}
.y10f{bottom:750.960000px;}
.yd6{bottom:754.920000px;}
.yfb{bottom:755.820000px;}
.y128{bottom:757.980000px;}
.y16{bottom:761.220000px;}
.y137{bottom:763.560000px;}
.y50{bottom:769.680000px;}
.yc0{bottom:772.564500px;}
.yd5{bottom:778.680000px;}
.y10e{bottom:781.200000px;}
.y127{bottom:781.740000px;}
.yfa{bottom:787.320000px;}
.ybf{bottom:792.360000px;}
.y15{bottom:794.340000px;}
.y8f{bottom:796.680000px;}
.yb5{bottom:802.080000px;}
.y4f{bottom:802.440000px;}
.y10d{bottom:804.600000px;}
.y126{bottom:805.680000px;}
.y136{bottom:811.080000px;}
.yd4{bottom:811.440000px;}
.yf9{bottom:813.420000px;}
.y14{bottom:817.920000px;}
.ybe{bottom:818.460000px;}
.y14d{bottom:826.380000px;}
.y8e{bottom:829.440000px;}
.yb4{bottom:835.020000px;}
.y4e{bottom:835.380000px;}
.y13{bottom:840.420000px;}
.y14c{bottom:850.140000px;}
.y8d{bottom:853.380000px;}
.yb3{bottom:858.780000px;}
.y4d{bottom:859.140000px;}
.y125{bottom:862.200000px;}
.y12{bottom:862.560000px;}
.y14b{bottom:873.900000px;}
.y8c{bottom:877.140000px;}
.yb2{bottom:882.540000px;}
.y4c{bottom:882.900000px;}
.y124{bottom:885.960000px;}
.y8b{bottom:900.900000px;}
.y11{bottom:901.980000px;}
.yb1{bottom:906.300000px;}
.y4b{bottom:906.660000px;}
.y34{bottom:908.820000px;}
.y123{bottom:909.900000px;}
.y10{bottom:921.240000px;}
.y8a{bottom:924.660000px;}
.yb0{bottom:930.240000px;}
.y4a{bottom:930.600000px;}
.y122{bottom:933.660000px;}
.y33{bottom:939.066300px;}
.yf{bottom:942.300000px;}
.y89{bottom:948.600000px;}
.y135{bottom:954.000000px;}
.y49{bottom:954.360000px;}
.yaf{bottom:963.000000px;}
.y32{bottom:963.180000px;}
.y7a{bottom:963.360000px;}
.ye{bottom:964.440000px;}
.y121{bottom:966.420000px;}
.y88{bottom:972.360000px;}
.y48{bottom:978.120000px;}
.yae{bottom:986.760000px;}
.y79{bottom:987.120000px;}
.y120{bottom:990.180000px;}
.y87{bottom:996.120000px;}
.y47{bottom:1001.880000px;}
.yd{bottom:1007.284320px;}
.yad{bottom:1010.520000px;}
.y31{bottom:1010.880000px;}
.y11f{bottom:1013.940000px;}
.y68{bottom:1019.880000px;}
.y46{bottom:1025.640000px;}
.yc{bottom:1031.040000px;}
.yac{bottom:1034.460000px;}
.y30{bottom:1034.640000px;}
.y11e{bottom:1037.880000px;}
.y67{bottom:1043.640000px;}
.yab{bottom:1058.220000px;}
.y45{bottom:1058.580000px;}
.y11d{bottom:1061.640000px;}
.y2f{bottom:1067.580000px;}
.yb{bottom:1081.973160px;}
.yaa{bottom:1081.980000px;}
.y44{bottom:1082.340000px;}
.y11c{bottom:1085.400000px;}
.y2e{bottom:1091.340000px;}
.ya9{bottom:1105.740000px;}
.y43{bottom:1106.100000px;}
.ya{bottom:1107.540000px;}
.y11b{bottom:1109.160000px;}
.y2d{bottom:1115.100000px;}
.ya8{bottom:1135.980000px;}
.y11a{bottom:1138.680000px;}
.y2c{bottom:1138.860000px;}
.ybd{bottom:1141.560000px;}
.y4{bottom:1171.800000px;}
.y3{bottom:1192.149000px;}
.y2{bottom:1208.524500px;}
.y1{bottom:1225.980000px;}
.h5{height:32.758500px;}
.h10{height:34.114922px;}
.h3{height:38.759766px;}
.h15{height:42.327773px;}
.h16{height:47.988281px;}
.hc{height:49.289062px;}
.he{height:52.435898px;}
.h11{height:52.581797px;}
.ha{height:58.121719px;}
.h9{height:59.789180px;}
.h4{height:63.175781px;}
.h12{height:63.351562px;}
.h14{height:65.003906px;}
.hf{height:69.687773px;}
.h8{height:72.035156px;}
.h2{height:75.600000px;}
.hd{height:76.054570px;}
.h7{height:77.797969px;}
.hb{height:84.023789px;}
.h6{height:84.281133px;}
.h13{height:86.455195px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:38.880000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.620000px;}
.x1{left:152.100000px;}
.x14{left:154.620000px;}
.x2c{left:161.280000px;}
.x26{left:168.660000px;}
.x13{left:180.720000px;}
.x24{left:218.340000px;}
.x19{left:233.100000px;}
.x2a{left:265.860000px;}
.x1d{left:283.140000px;}
.x4{left:297.180000px;}
.x16{left:302.940000px;}
.x1f{left:317.880000px;}
.x28{left:330.300000px;}
.x20{left:336.241260px;}
.x17{left:343.620000px;}
.x1b{left:371.880000px;}
.x8{left:372.960000px;}
.x7{left:402.654060px;}
.x5{left:466.740000px;}
.x21{left:478.260000px;}
.x6{left:485.820000px;}
.x10{left:499.140000px;}
.xd{left:502.020000px;}
.x2{left:532.620000px;}
.x11{left:556.020000px;}
.xc{left:570.060000px;}
.x9{left:588.607920px;}
.xe{left:598.140000px;}
.xb{left:609.840000px;}
.xa{left:615.960000px;}
.x1e{left:628.920000px;}
.x1a{left:675.540000px;}
.x2b{left:699.840000px;}
.x22{left:705.780000px;}
.x18{left:718.020000px;}
.x1c{left:741.420000px;}
.x25{left:759.420000px;}
.x27{left:768.420000px;}
.x15{left:809.280000px;}
.x23{left:826.200000px;}
.x29{left:827.460000px;}
.xf{left:829.080000px;}
.x12{left:831.780000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls26{letter-spacing:-0.690560pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls28{letter-spacing:-0.576000pt;}
.ls29{letter-spacing:-0.512000pt;}
.ls14{letter-spacing:-0.299520pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.240000pt;}
.ls5{letter-spacing:-0.235520pt;}
.lsb{letter-spacing:-0.224640pt;}
.ls2d{letter-spacing:-0.212480pt;}
.ls8{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.106240pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls13{letter-spacing:-0.074880pt;}
.ls15{letter-spacing:-0.053120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.048000pt;}
.ls2e{letter-spacing:0.053120pt;}
.ls17{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.069120pt;}
.ls16{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.117760pt;}
.ls10{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.159360pt;}
.ls2f{letter-spacing:0.171520pt;}
.ls31{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.212480pt;}
.ls25{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.288000pt;}
.ls1b{letter-spacing:0.318720pt;}
.ls19{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.374400pt;}
.ls33{letter-spacing:0.384000pt;}
.ls1f{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.584320pt;}
.ls23{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.796800pt;}
.ls20{letter-spacing:1.280000pt;}
.ls2b{letter-spacing:1.920000pt;}
.ls2a{letter-spacing:2.560000pt;}
.ls30{letter-spacing:3.840000pt;}
.ls21{letter-spacing:4.621440pt;}
.ls22{letter-spacing:5.760000pt;}
.ls2c{letter-spacing:5.896320pt;}
.ls1a{letter-spacing:6.533760pt;}
.ls27{letter-spacing:7.680000pt;}
.ls1c{letter-spacing:32.233600pt;}
.ls32{letter-spacing:41.600000pt;}
.ls18{letter-spacing:48.768000pt;}
.ls0{letter-spacing:650.256000pt;}
.ws5{word-spacing:-21.760000pt;}
.ws28{word-spacing:-20.517120pt;}
.ws71{word-spacing:-16.640000pt;}
.ws70{word-spacing:-16.384000pt;}
.ws6d{word-spacing:-16.192000pt;}
.ws47{word-spacing:-16.128000pt;}
.ws4c{word-spacing:-16.064000pt;}
.ws40{word-spacing:-16.000000pt;}
.ws29{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws50{word-spacing:-15.488000pt;}
.ws34{word-spacing:-13.598720pt;}
.ws36{word-spacing:-13.386240pt;}
.ws35{word-spacing:-13.226880pt;}
.ws32{word-spacing:-13.173760pt;}
.ws5d{word-spacing:-13.067520pt;}
.ws4d{word-spacing:-12.589440pt;}
.ws1{word-spacing:-12.005120pt;}
.ws4b{word-spacing:-11.920640pt;}
.ws4{word-spacing:-11.136000pt;}
.ws69{word-spacing:-10.891520pt;}
.ws0{word-spacing:-10.848000pt;}
.ws3{word-spacing:-10.656000pt;}
.ws2{word-spacing:-10.608000pt;}
.ws33{word-spacing:-8.640000pt;}
.ws1a{word-spacing:-3.840000pt;}
.ws45{word-spacing:-3.584000pt;}
.ws6c{word-spacing:-3.328000pt;}
.ws44{word-spacing:-3.200000pt;}
.ws1c{word-spacing:-2.944000pt;}
.ws43{word-spacing:-2.709120pt;}
.ws53{word-spacing:-2.688000pt;}
.ws60{word-spacing:-2.602880pt;}
.ws2f{word-spacing:-2.560000pt;}
.ws61{word-spacing:-2.496640pt;}
.ws5a{word-spacing:-2.368000pt;}
.ws42{word-spacing:-2.304000pt;}
.ws62{word-spacing:-2.284160pt;}
.ws66{word-spacing:-2.071680pt;}
.ws15{word-spacing:-2.048000pt;}
.ws39{word-spacing:-1.920000pt;}
.ws67{word-spacing:-1.859200pt;}
.ws14{word-spacing:-1.664000pt;}
.ws3c{word-spacing:-1.408000pt;}
.ws17{word-spacing:-1.280000pt;}
.ws3d{word-spacing:-1.024000pt;}
.wsd{word-spacing:-0.796800pt;}
.ws30{word-spacing:-0.768000pt;}
.ws1d{word-spacing:-0.673920pt;}
.ws6a{word-spacing:-0.643200pt;}
.ws23{word-spacing:-0.640000pt;}
.ws46{word-spacing:-0.384000pt;}
.wsa{word-spacing:-0.374400pt;}
.wse{word-spacing:-0.256000pt;}
.ws1e{word-spacing:-0.224640pt;}
.ws72{word-spacing:-0.192000pt;}
.ws3a{word-spacing:-0.159360pt;}
.ws10{word-spacing:-0.128000pt;}
.ws27{word-spacing:-0.064000pt;}
.ws7{word-spacing:0.000000pt;}
.ws21{word-spacing:0.053120pt;}
.ws68{word-spacing:0.106240pt;}
.wsc{word-spacing:0.128000pt;}
.ws9{word-spacing:0.144000pt;}
.ws55{word-spacing:0.192000pt;}
.ws20{word-spacing:0.212480pt;}
.wsb{word-spacing:0.224640pt;}
.ws8{word-spacing:0.235520pt;}
.wsf{word-spacing:0.256000pt;}
.ws4f{word-spacing:0.478080pt;}
.ws2e{word-spacing:0.512000pt;}
.ws56{word-spacing:0.576000pt;}
.ws1f{word-spacing:0.599040pt;}
.ws18{word-spacing:0.640000pt;}
.ws4e{word-spacing:0.690560pt;}
.ws16{word-spacing:0.896000pt;}
.ws65{word-spacing:1.115520pt;}
.ws52{word-spacing:1.152000pt;}
.ws64{word-spacing:1.221760pt;}
.ws11{word-spacing:1.280000pt;}
.ws12{word-spacing:1.536000pt;}
.ws63{word-spacing:1.540480pt;}
.ws5b{word-spacing:1.792000pt;}
.ws6e{word-spacing:1.856000pt;}
.ws2a{word-spacing:1.920000pt;}
.ws13{word-spacing:2.176000pt;}
.ws1b{word-spacing:2.560000pt;}
.ws5c{word-spacing:2.816000pt;}
.ws6b{word-spacing:2.944000pt;}
.ws51{word-spacing:3.136000pt;}
.ws31{word-spacing:3.200000pt;}
.ws41{word-spacing:3.456000pt;}
.ws2d{word-spacing:3.712000pt;}
.ws2b{word-spacing:3.840000pt;}
.ws2c{word-spacing:4.096000pt;}
.ws4a{word-spacing:4.302720pt;}
.ws26{word-spacing:4.480000pt;}
.ws49{word-spacing:4.515200pt;}
.ws48{word-spacing:4.736000pt;}
.ws22{word-spacing:5.120000pt;}
.ws5e{word-spacing:5.577600pt;}
.ws5f{word-spacing:5.683840pt;}
.ws38{word-spacing:5.760000pt;}
.ws37{word-spacing:6.016000pt;}
.ws3f{word-spacing:6.268160pt;}
.ws3b{word-spacing:6.400000pt;}
.ws3e{word-spacing:6.480640pt;}
.ws54{word-spacing:6.656000pt;}
.ws25{word-spacing:7.040000pt;}
.ws24{word-spacing:7.296000pt;}
.ws19{word-spacing:7.680000pt;}
.ws58{word-spacing:10.752000pt;}
.ws59{word-spacing:10.880000pt;}
.ws57{word-spacing:11.136000pt;}
.ws6f{word-spacing:41.600000pt;}
.ws73{word-spacing:51.200000pt;}
._5{margin-left:-1.853376pt;}
._0{margin-left:-0.945600pt;}
._1{width:0.917760pt;}
._6{width:1.834240pt;}
._7{width:3.000128pt;}
._9{width:4.029440pt;}
._c{width:6.210240pt;}
._a{width:7.102720pt;}
._8{width:31.011520pt;}
._b{width:42.240000pt;}
._4{width:596.454400pt;}
._2{width:801.297920pt;}
._3{width:969.576960pt;}
.fs9{font-size:34.560000pt;}
.fs8{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:14.240000pt;}
.y7{bottom:71.040000pt;}
.y6{bottom:100.160000pt;}
.y8{bottom:101.120000pt;}
.y5{bottom:129.280000pt;}
.y10c{bottom:147.020160pt;}
.y86{bottom:147.030080pt;}
.ybc{bottom:147.035040pt;}
.y78{bottom:147.040000pt;}
.y66{bottom:150.560000pt;}
.yd3{bottom:151.680000pt;}
.y42{bottom:152.480000pt;}
.y10b{bottom:162.385120pt;}
.y77{bottom:162.395040pt;}
.y2b{bottom:163.680000pt;}
.y134{bottom:164.640000pt;}
.yeb{bottom:165.600000pt;}
.ya7{bottom:166.400000pt;}
.ybb{bottom:167.040000pt;}
.y119{bottom:172.640000pt;}
.y41{bottom:173.600000pt;}
.y91{bottom:174.560000pt;}
.y14a{bottom:177.600000pt;}
.y10a{bottom:177.750080pt;}
.y65{bottom:179.680000pt;}
.y76{bottom:182.400000pt;}
.y2a{bottom:184.800000pt;}
.yea{bottom:186.720000pt;}
.ya6{bottom:187.520000pt;}
.y133{bottom:187.840000pt;}
.yba{bottom:189.120000pt;}
.y109{bottom:193.115040pt;}
.y118{bottom:193.760000pt;}
.y64{bottom:200.800000pt;}
.y40{bottom:202.720000pt;}
.y75{bottom:204.480000pt;}
.y29{bottom:206.080000pt;}
.y149{bottom:206.720000pt;}
.yb9{bottom:207.520000pt;}
.ye9{bottom:208.000000pt;}
.ya5{bottom:208.800000pt;}
.y108{bottom:213.120000pt;}
.y74{bottom:222.880000pt;}
.y3f{bottom:224.000000pt;}
.y90{bottom:225.920000pt;}
.y148{bottom:227.840000pt;}
.ye8{bottom:229.120000pt;}
.ya4{bottom:229.920000pt;}
.y63{bottom:230.080000pt;}
.y28{bottom:235.200000pt;}
.y117{bottom:244.160000pt;}
.y3e{bottom:245.120000pt;}
.yb8{bottom:247.196160pt;}
.y147{bottom:249.120000pt;}
.ye7{bottom:250.240000pt;}
.y62{bottom:251.200000pt;}
.y107{bottom:253.600000pt;}
.yd2{bottom:257.600000pt;}
.ya3{bottom:259.040000pt;}
.y27{bottom:261.440000pt;}
.y116{bottom:265.280000pt;}
.y3d{bottom:266.240000pt;}
.y73{bottom:267.680000pt;}
.yb7{bottom:272.800000pt;}
.ye6{bottom:276.480000pt;}
.y146{bottom:278.240000pt;}
.yd1{bottom:278.880000pt;}
.ya2{bottom:280.160000pt;}
.y61{bottom:280.320000pt;}
.y85{bottom:284.160000pt;}
.y115{bottom:286.400000pt;}
.y26{bottom:287.200000pt;}
.y3c{bottom:295.360000pt;}
.yb6{bottom:296.000000pt;}
.y72{bottom:296.800000pt;}
.yf8{bottom:298.560000pt;}
.y145{bottom:299.360000pt;}
.y60{bottom:300.960000pt;}
.ya1{bottom:301.440000pt;}
.y25{bottom:304.960000pt;}
.y84{bottom:305.280000pt;}
.yd0{bottom:308.000000pt;}
.ye5{bottom:316.480000pt;}
.y3b{bottom:316.640000pt;}
.y71{bottom:317.920000pt;}
.y144{bottom:320.480000pt;}
.y106{bottom:322.400000pt;}
.ya0{bottom:322.560000pt;}
.y5f{bottom:322.880000pt;}
.y83{bottom:326.400000pt;}
.yf7{bottom:327.840000pt;}
.ycf{bottom:329.120000pt;}
.y24{bottom:333.760000pt;}
.ye4{bottom:337.600000pt;}
.y3a{bottom:337.760000pt;}
.y70{bottom:339.200000pt;}
.y143{bottom:341.760000pt;}
.y5e{bottom:344.800000pt;}
.y114{bottom:345.600000pt;}
.y82{bottom:347.520000pt;}
.yf6{bottom:348.960000pt;}
.yce{bottom:350.240000pt;}
.y105{bottom:351.520000pt;}
.y9f{bottom:351.680000pt;}
.y23{bottom:354.880000pt;}
.y39{bottom:358.880000pt;}
.y6f{bottom:360.320000pt;}
.y5d{bottom:366.720000pt;}
.y142{bottom:368.480000pt;}
.y81{bottom:368.800000pt;}
.yf5{bottom:370.080000pt;}
.ycd{bottom:371.520000pt;}
.y9e{bottom:372.800000pt;}
.y22{bottom:376.000000pt;}
.ye3{bottom:380.000000pt;}
.y38{bottom:388.000000pt;}
.y5c{bottom:388.640000pt;}
.y6e{bottom:389.440000pt;}
.yf4{bottom:391.200000pt;}
.ycc{bottom:392.640000pt;}
.y104{bottom:393.920000pt;}
.y9d{bottom:394.080000pt;}
.y21{bottom:397.120000pt;}
.y80{bottom:397.920000pt;}
.ye2{bottom:409.120000pt;}
.y5b{bottom:410.560000pt;}
.y141{bottom:411.040000pt;}
.yf3{bottom:412.480000pt;}
.ycb{bottom:413.760000pt;}
.y103{bottom:415.040000pt;}
.y9c{bottom:415.200000pt;}
.y37{bottom:416.164000pt;}
.y20{bottom:418.240000pt;}
.y7f{bottom:427.040000pt;}
.ye1{bottom:430.240000pt;}
.y6d{bottom:431.680000pt;}
.y140{bottom:432.160000pt;}
.y5a{bottom:432.480000pt;}
.yf2{bottom:433.600000pt;}
.y36{bottom:433.760000pt;}
.yca{bottom:434.880000pt;}
.y102{bottom:436.160000pt;}
.y9b{bottom:436.320000pt;}
.y1f{bottom:439.520000pt;}
.y7e{bottom:448.160000pt;}
.ye0{bottom:451.360000pt;}
.y13f{bottom:453.280000pt;}
.y132{bottom:454.240000pt;}
.y59{bottom:454.400000pt;}
.yf1{bottom:454.720000pt;}
.yc9{bottom:456.160000pt;}
.y35{bottom:456.960000pt;}
.y9a{bottom:457.440000pt;}
.y6c{bottom:458.560000pt;}
.y1e{bottom:460.640000pt;}
.y7d{bottom:469.440000pt;}
.ydf{bottom:472.640000pt;}
.y13e{bottom:474.400000pt;}
.yf0{bottom:475.840000pt;}
.y58{bottom:476.320000pt;}
.yc8{bottom:477.280000pt;}
.y101{bottom:478.560000pt;}
.y99{bottom:478.720000pt;}
.y131{bottom:483.360000pt;}
.y1d{bottom:489.760000pt;}
.yde{bottom:493.760000pt;}
.yef{bottom:497.120000pt;}
.y57{bottom:498.240000pt;}
.yc7{bottom:498.560000pt;}
.y100{bottom:499.680000pt;}
.y98{bottom:499.840000pt;}
.y6b{bottom:501.120000pt;}
.y13d{bottom:503.680000pt;}
.y130{bottom:504.480000pt;}
.y7c{bottom:505.440000pt;}
.ydd{bottom:514.880000pt;}
.yee{bottom:518.240000pt;}
.y1c{bottom:518.880000pt;}
.yc6{bottom:519.520000pt;}
.y56{bottom:520.160000pt;}
.yff{bottom:520.800000pt;}
.y97{bottom:520.960000pt;}
.y13c{bottom:524.800000pt;}
.y12f{bottom:525.600000pt;}
.y7b{bottom:528.640000pt;}
.y6a{bottom:529.120000pt;}
.ydc{bottom:536.000000pt;}
.y1b{bottom:538.568000pt;}
.y55{bottom:542.080000pt;}
.yc5{bottom:545.920000pt;}
.y12e{bottom:546.880000pt;}
.y69{bottom:552.320000pt;}
.yed{bottom:554.240000pt;}
.ydb{bottom:557.280000pt;}
.y1a{bottom:563.040000pt;}
.y96{bottom:563.200000pt;}
.y113{bottom:566.880000pt;}
.y13b{bottom:567.040000pt;}
.y12d{bottom:568.000000pt;}
.y54{bottom:572.640000pt;}
.yec{bottom:577.440000pt;}
.yda{bottom:578.400000pt;}
.yc4{bottom:583.040000pt;}
.y95{bottom:584.480000pt;}
.y13a{bottom:588.320000pt;}
.y12c{bottom:589.120000pt;}
.yfe{bottom:592.320000pt;}
.y53{bottom:593.760000pt;}
.y112{bottom:596.000000pt;}
.y19{bottom:597.120000pt;}
.yc3{bottom:602.080000pt;}
.y14f{bottom:603.360000pt;}
.y94{bottom:605.600000pt;}
.yd9{bottom:607.520000pt;}
.y12b{bottom:610.240000pt;}
.yfd{bottom:613.440000pt;}
.y139{bottom:615.040000pt;}
.y111{bottom:617.280000pt;}
.y18{bottom:618.400000pt;}
.y52{bottom:620.640000pt;}
.yc2{bottom:620.960000pt;}
.yd8{bottom:628.640000pt;}
.y12a{bottom:631.520000pt;}
.y14e{bottom:633.600000pt;}
.y110{bottom:638.400000pt;}
.y93{bottom:641.600000pt;}
.yfc{bottom:642.560000pt;}
.y17{bottom:647.520000pt;}
.yd7{bottom:649.920000pt;}
.yc1{bottom:650.720000pt;}
.y129{bottom:652.640000pt;}
.y138{bottom:657.600000pt;}
.y51{bottom:663.040000pt;}
.y92{bottom:664.800000pt;}
.y10f{bottom:667.520000pt;}
.yd6{bottom:671.040000pt;}
.yfb{bottom:671.840000pt;}
.y128{bottom:673.760000pt;}
.y16{bottom:676.640000pt;}
.y137{bottom:678.720000pt;}
.y50{bottom:684.160000pt;}
.yc0{bottom:686.724000pt;}
.yd5{bottom:692.160000pt;}
.y10e{bottom:694.400000pt;}
.y127{bottom:694.880000pt;}
.yfa{bottom:699.840000pt;}
.ybf{bottom:704.320000pt;}
.y15{bottom:706.080000pt;}
.y8f{bottom:708.160000pt;}
.yb5{bottom:712.960000pt;}
.y4f{bottom:713.280000pt;}
.y10d{bottom:715.200000pt;}
.y126{bottom:716.160000pt;}
.y136{bottom:720.960000pt;}
.yd4{bottom:721.280000pt;}
.yf9{bottom:723.040000pt;}
.y14{bottom:727.040000pt;}
.ybe{bottom:727.520000pt;}
.y14d{bottom:734.560000pt;}
.y8e{bottom:737.280000pt;}
.yb4{bottom:742.240000pt;}
.y4e{bottom:742.560000pt;}
.y13{bottom:747.040000pt;}
.y14c{bottom:755.680000pt;}
.y8d{bottom:758.560000pt;}
.yb3{bottom:763.360000pt;}
.y4d{bottom:763.680000pt;}
.y125{bottom:766.400000pt;}
.y12{bottom:766.720000pt;}
.y14b{bottom:776.800000pt;}
.y8c{bottom:779.680000pt;}
.yb2{bottom:784.480000pt;}
.y4c{bottom:784.800000pt;}
.y124{bottom:787.520000pt;}
.y8b{bottom:800.800000pt;}
.y11{bottom:801.760000pt;}
.yb1{bottom:805.600000pt;}
.y4b{bottom:805.920000pt;}
.y34{bottom:807.840000pt;}
.y123{bottom:808.800000pt;}
.y10{bottom:818.880000pt;}
.y8a{bottom:821.920000pt;}
.yb0{bottom:826.880000pt;}
.y4a{bottom:827.200000pt;}
.y122{bottom:829.920000pt;}
.y33{bottom:834.725600pt;}
.yf{bottom:837.600000pt;}
.y89{bottom:843.200000pt;}
.y135{bottom:848.000000pt;}
.y49{bottom:848.320000pt;}
.yaf{bottom:856.000000pt;}
.y32{bottom:856.160000pt;}
.y7a{bottom:856.320000pt;}
.ye{bottom:857.280000pt;}
.y121{bottom:859.040000pt;}
.y88{bottom:864.320000pt;}
.y48{bottom:869.440000pt;}
.yae{bottom:877.120000pt;}
.y79{bottom:877.440000pt;}
.y120{bottom:880.160000pt;}
.y87{bottom:885.440000pt;}
.y47{bottom:890.560000pt;}
.yd{bottom:895.363840pt;}
.yad{bottom:898.240000pt;}
.y31{bottom:898.560000pt;}
.y11f{bottom:901.280000pt;}
.y68{bottom:906.560000pt;}
.y46{bottom:911.680000pt;}
.yc{bottom:916.480000pt;}
.yac{bottom:919.520000pt;}
.y30{bottom:919.680000pt;}
.y11e{bottom:922.560000pt;}
.y67{bottom:927.680000pt;}
.yab{bottom:940.640000pt;}
.y45{bottom:940.960000pt;}
.y11d{bottom:943.680000pt;}
.y2f{bottom:948.960000pt;}
.yb{bottom:961.753920pt;}
.yaa{bottom:961.760000pt;}
.y44{bottom:962.080000pt;}
.y11c{bottom:964.800000pt;}
.y2e{bottom:970.080000pt;}
.ya9{bottom:982.880000pt;}
.y43{bottom:983.200000pt;}
.ya{bottom:984.480000pt;}
.y11b{bottom:985.920000pt;}
.y2d{bottom:991.200000pt;}
.ya8{bottom:1009.760000pt;}
.y11a{bottom:1012.160000pt;}
.y2c{bottom:1012.320000pt;}
.ybd{bottom:1014.720000pt;}
.y4{bottom:1041.600000pt;}
.y3{bottom:1059.688000pt;}
.y2{bottom:1074.244000pt;}
.y1{bottom:1089.760000pt;}
.h5{height:29.118667pt;}
.h10{height:30.324375pt;}
.h3{height:34.453125pt;}
.h15{height:37.624687pt;}
.h16{height:42.656250pt;}
.hc{height:43.812500pt;}
.he{height:46.609688pt;}
.h11{height:46.739375pt;}
.ha{height:51.663750pt;}
.h9{height:53.145938pt;}
.h4{height:56.156250pt;}
.h12{height:56.312500pt;}
.h14{height:57.781250pt;}
.hf{height:61.944688pt;}
.h8{height:64.031250pt;}
.h2{height:67.200000pt;}
.hd{height:67.604062pt;}
.h7{height:69.153750pt;}
.hb{height:74.687812pt;}
.h6{height:74.916562pt;}
.h13{height:76.849063pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:34.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.440000pt;}
.x1{left:135.200000pt;}
.x14{left:137.440000pt;}
.x2c{left:143.360000pt;}
.x26{left:149.920000pt;}
.x13{left:160.640000pt;}
.x24{left:194.080000pt;}
.x19{left:207.200000pt;}
.x2a{left:236.320000pt;}
.x1d{left:251.680000pt;}
.x4{left:264.160000pt;}
.x16{left:269.280000pt;}
.x1f{left:282.560000pt;}
.x28{left:293.600000pt;}
.x20{left:298.881120pt;}
.x17{left:305.440000pt;}
.x1b{left:330.560000pt;}
.x8{left:331.520000pt;}
.x7{left:357.914720pt;}
.x5{left:414.880000pt;}
.x21{left:425.120000pt;}
.x6{left:431.840000pt;}
.x10{left:443.680000pt;}
.xd{left:446.240000pt;}
.x2{left:473.440000pt;}
.x11{left:494.240000pt;}
.xc{left:506.720000pt;}
.x9{left:523.207040pt;}
.xe{left:531.680000pt;}
.xb{left:542.080000pt;}
.xa{left:547.520000pt;}
.x1e{left:559.040000pt;}
.x1a{left:600.480000pt;}
.x2b{left:622.080000pt;}
.x22{left:627.360000pt;}
.x18{left:638.240000pt;}
.x1c{left:659.040000pt;}
.x25{left:675.040000pt;}
.x27{left:683.040000pt;}
.x15{left:719.360000pt;}
.x23{left:734.400000pt;}
.x29{left:735.520000pt;}
.xf{left:736.960000pt;}
.x12{left:739.360000pt;}
}




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