
    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_74b0c6b7c348ca9f219d6fac.woff')format("woff");}.ff1{font-family:ff1;line-height:1.071777;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_11b15d1ad30fbd1bfb30dab6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.773926;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_d1cd810bc2d5a9d808c92a0e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.937012;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_89eadedf9beb5b546f773c71.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_9453ed31d6b94f7ff3f2806a.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6ab2ab63419bc2b04500215d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_f98037a72bfb638269a422e2.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf15fa0770141bec6009e73a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_2f9fee679afc6e6a7825c96d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_1a9ee35008bcb90677f39e32.woff')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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:ffb;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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:ffc;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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:ffd;src:url('chunks/assets/font_0012a424246b83c6d5050c9a.woff')format("woff");}.ffd{font-family:ffd;line-height:1.104004;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:ffe;src:url('chunks/assets/font_aad96923b7f904cb7bcc117d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.758789;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:fff;src:url('chunks/assets/font_51a6a15577cd60a82bab4c6a.woff')format("woff");}.fff{font-family:fff;line-height:1.084961;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:ff10;src:url('chunks/assets/font_75e0448160cadb22573d2f4b.woff')format("woff");}.ff10{font-family:ff10;line-height:1.084961;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:ff11;src:url('chunks/assets/font_859c72d942ed727e728fa5e8.woff')format("woff");}.ff11{font-family:ff11;line-height:0.740234;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:ff12;src:url('chunks/assets/font_851e4da35ecae56f9213d293.woff')format("woff");}.ff12{font-family:ff12;line-height:1.172852;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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.728000px;}
.ls2b{letter-spacing:-1.440000px;}
.ls28{letter-spacing:-1.296000px;}
.ls1f{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.648000px;}
.ls5{letter-spacing:-0.466800px;}
.ls2{letter-spacing:-0.351600px;}
.ls8{letter-spacing:-0.288000px;}
.ls30{letter-spacing:-0.008640px;}
.ls1{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.008640px;}
.ls2d{letter-spacing:0.129600px;}
.ls15{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.345600px;}
.ls22{letter-spacing:0.423360px;}
.ls21{letter-spacing:0.486600px;}
.ls9{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.535680px;}
.ls18{letter-spacing:0.648000px;}
.ls4{letter-spacing:0.708000px;}
.lsf{letter-spacing:0.720000px;}
.ls1e{letter-spacing:1.152000px;}
.ls2c{letter-spacing:1.584000px;}
.ls10{letter-spacing:1.944000px;}
.lsd{letter-spacing:2.160000px;}
.ls1a{letter-spacing:3.600000px;}
.ls25{letter-spacing:5.040000px;}
.ls26{letter-spacing:6.480000px;}
.ls2f{letter-spacing:7.920000px;}
.ls17{letter-spacing:8.069760px;}
.ls7{letter-spacing:9.360000px;}
.ls29{letter-spacing:10.800000px;}
.ls31{letter-spacing:12.240000px;}
.ls1c{letter-spacing:13.829760px;}
.ls12{letter-spacing:15.389760px;}
.ls34{letter-spacing:16.560000px;}
.ls24{letter-spacing:18.120000px;}
.ls1d{letter-spacing:22.469760px;}
.ls19{letter-spacing:23.184000px;}
.ls32{letter-spacing:23.760000px;}
.ls33{letter-spacing:25.200000px;}
.ls27{letter-spacing:26.640000px;}
.lsc{letter-spacing:27.504000px;}
.lse{letter-spacing:32.400000px;}
.ls2e{letter-spacing:59.760000px;}
.ls16{letter-spacing:63.504000px;}
.ls13{letter-spacing:63.516000px;}
.ls1b{letter-spacing:87.984000px;}
.ls23{letter-spacing:92.304000px;}
.ls11{letter-spacing:115.344000px;}
.lsb{letter-spacing:144.144000px;}
.ls2a{letter-spacing:157.836000px;}
.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;}
}
.wsb{word-spacing:-18.648000px;}
.ws8{word-spacing:-18.504000px;}
.wsf{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.712000px;}
.ws9{word-spacing:-17.352000px;}
.wsa{word-spacing:-17.064000px;}
.ws4{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.473600px;}
.ws1{word-spacing:-16.122000px;}
.wsc{word-spacing:-15.606600px;}
.wsd{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.653200px;}
.wse{word-spacing:-13.798080px;}
.ws2{word-spacing:-13.074720px;}
.ws6{word-spacing:0.000000px;}
._25{margin-left:-8.163360px;}
._26{margin-left:-4.776000px;}
._2{margin-left:-2.728320px;}
._1{margin-left:-1.584000px;}
._0{width:1.152000px;}
._5{width:2.520000px;}
._18{width:3.600000px;}
._6{width:4.824000px;}
._7{width:6.120000px;}
._15{width:7.344000px;}
._13{width:8.856000px;}
._10{width:9.936000px;}
._e{width:10.944000px;}
._f{width:12.456000px;}
._14{width:13.536000px;}
._8{width:15.048000px;}
._1b{width:16.848000px;}
._19{width:19.080000px;}
._16{width:20.088000px;}
._17{width:21.744000px;}
._1a{width:22.752000px;}
._1c{width:24.215040px;}
._c{width:25.768320px;}
._b{width:27.072000px;}
._24{width:28.103040px;}
._d{width:29.520000px;}
._a{width:31.392000px;}
._9{width:32.832000px;}
._1f{width:34.416000px;}
._23{width:36.576000px;}
._27{width:37.644000px;}
._22{width:38.664000px;}
._1e{width:40.160640px;}
._1d{width:41.184000px;}
._29{width:42.790080px;}
._2b{width:59.148000px;}
._2a{width:62.220000px;}
._21{width:73.440000px;}
._20{width:74.532000px;}
._28{width:175.836000px;}
._12{width:395.333280px;}
._3{width:588.569760px;}
._4{width:1101.485760px;}
._11{width:2208.989280px;}
.fc7{color:rgb(0,112,192);}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(64,64,64);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(255,0,0);}
.fs2{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.y9{bottom:-4.680000px;}
.y2f{bottom:-4.320000px;}
.y0{bottom:0.000000px;}
.y118{bottom:2.520000px;}
.yb{bottom:2.880000px;}
.yab{bottom:3.240000px;}
.yb4{bottom:3.270000px;}
.y110{bottom:3.600000px;}
.y114{bottom:3.960000px;}
.y10b{bottom:4.680000px;}
.y10d{bottom:5.040000px;}
.y112{bottom:9.360000px;}
.y108{bottom:9.405000px;}
.y11d{bottom:10.080000px;}
.ycb{bottom:11.874000px;}
.ya9{bottom:11.880000px;}
.yb2{bottom:11.910000px;}
.yc6{bottom:11.925000px;}
.y101{bottom:16.200000px;}
.yc9{bottom:20.514000px;}
.yaa{bottom:20.520000px;}
.yb0{bottom:20.550000px;}
.yc7{bottom:20.565000px;}
.y103{bottom:25.200000px;}
.ybe{bottom:28.800000px;}
.yca{bottom:29.154000px;}
.yad{bottom:29.160000px;}
.yb1{bottom:29.190000px;}
.yc{bottom:30.600000px;}
.yc0{bottom:37.440000px;}
.ycc{bottom:37.794000px;}
.yae{bottom:37.800000px;}
.yb3{bottom:37.830000px;}
.yc1{bottom:46.125000px;}
.yb6{bottom:46.440000px;}
.ybf{bottom:54.765000px;}
.yb9{bottom:55.080000px;}
.ybb{bottom:55.110000px;}
.y102{bottom:55.440000px;}
.ya{bottom:57.240000px;}
.yb8{bottom:72.360000px;}
.y8{bottom:83.556000px;}
.yb7{bottom:89.280000px;}
.y106{bottom:89.640000px;}
.y52{bottom:111.636000px;}
.y72{bottom:115.236000px;}
.y2c{bottom:116.676000px;}
.y105{bottom:117.045000px;}
.ycd{bottom:123.156000px;}
.yec{bottom:136.116000px;}
.yed{bottom:139.356000px;}
.y136{bottom:140.076000px;}
.yc8{bottom:140.796000px;}
.y51{bottom:142.596000px;}
.y71{bottom:146.196000px;}
.y2b{bottom:147.636000px;}
.y13b{bottom:158.070000px;}
.y9b{bottom:159.870000px;}
.yeb{bottom:167.070000px;}
.ya6{bottom:170.310000px;}
.y135{bottom:171.030000px;}
.y50{bottom:173.550000px;}
.yff{bottom:177.150000px;}
.y70{bottom:177.510000px;}
.y2a{bottom:178.590000px;}
.y13a{bottom:189.030000px;}
.y9a{bottom:190.830000px;}
.yc5{bottom:193.350000px;}
.yea{bottom:198.075000px;}
.y13f{bottom:199.515000px;}
.y88{bottom:199.875000px;}
.ya5{bottom:201.315000px;}
.y134{bottom:202.035000px;}
.y4f{bottom:204.555000px;}
.yfe{bottom:208.155000px;}
.y6f{bottom:208.515000px;}
.y29{bottom:209.955000px;}
.y139{bottom:217.875000px;}
.y99{bottom:222.195000px;}
.yc4{bottom:228.675000px;}
.ye9{bottom:229.035000px;}
.y13e{bottom:230.475000px;}
.y87{bottom:230.835000px;}
.ya4{bottom:232.275000px;}
.y133{bottom:232.995000px;}
.y4e{bottom:235.875000px;}
.y6e{bottom:239.475000px;}
.y28{bottom:240.915000px;}
.y138{bottom:243.795000px;}
.y98{bottom:253.155000px;}
.ye8{bottom:260.355000px;}
.y86{bottom:261.795000px;}
.y13d{bottom:262.875000px;}
.ya3{bottom:263.595000px;}
.y132{bottom:264.315000px;}
.y4d{bottom:266.835000px;}
.y137{bottom:269.715000px;}
.y6d{bottom:270.435000px;}
.y27{bottom:271.875000px;}
.y97{bottom:284.115000px;}
.ye7{bottom:291.315000px;}
.y85{bottom:292.755000px;}
.ya2{bottom:294.555000px;}
.y131{bottom:295.275000px;}
.y13c{bottom:296.355000px;}
.y4c{bottom:297.795000px;}
.yfd{bottom:301.395000px;}
.y6c{bottom:301.755000px;}
.y26{bottom:302.835000px;}
.y96{bottom:315.075000px;}
.yc3{bottom:315.795000px;}
.ye6{bottom:322.275000px;}
.y84{bottom:324.105000px;}
.ya1{bottom:325.545000px;}
.y130{bottom:326.265000px;}
.y4b{bottom:328.785000px;}
.yfc{bottom:332.385000px;}
.y6b{bottom:332.745000px;}
.y25{bottom:334.185000px;}
.y95{bottom:346.425000px;}
.yc2{bottom:351.105000px;}
.ye5{bottom:353.265000px;}
.y83{bottom:355.065000px;}
.ya0{bottom:356.505000px;}
.y12f{bottom:357.225000px;}
.y4a{bottom:360.105000px;}
.yfb{bottom:363.345000px;}
.y6a{bottom:363.705000px;}
.y24{bottom:365.145000px;}
.y94{bottom:377.385000px;}
.ye4{bottom:384.585000px;}
.y69{bottom:386.025000px;}
.y9f{bottom:387.825000px;}
.y12e{bottom:388.545000px;}
.y49{bottom:391.065000px;}
.yfa{bottom:394.665000px;}
.y23{bottom:396.105000px;}
.ybd{bottom:403.665000px;}
.y93{bottom:408.345000px;}
.ye3{bottom:415.545000px;}
.y68{bottom:416.985000px;}
.y9e{bottom:418.785000px;}
.y12d{bottom:419.505000px;}
.y48{bottom:422.025000px;}
.yf9{bottom:425.625000px;}
.y22{bottom:427.065000px;}
.y92{bottom:439.305000px;}
.ye2{bottom:446.505000px;}
.y67{bottom:448.305000px;}
.y9d{bottom:449.790000px;}
.y12c{bottom:450.510000px;}
.y47{bottom:453.030000px;}
.yf8{bottom:456.630000px;}
.y11c{bottom:457.350000px;}
.y21{bottom:458.430000px;}
.y82{bottom:470.670000px;}
.ybc{bottom:473.190000px;}
.ye1{bottom:477.510000px;}
.y66{bottom:479.310000px;}
.y9c{bottom:480.750000px;}
.y12b{bottom:481.470000px;}
.y46{bottom:484.350000px;}
.yf7{bottom:487.590000px;}
.y20{bottom:489.390000px;}
.y81{bottom:501.630000px;}
.y11b{bottom:504.150000px;}
.ye0{bottom:508.470000px;}
.y65{bottom:510.270000px;}
.y12a{bottom:512.790000px;}
.y45{bottom:515.310000px;}
.yf6{bottom:518.910000px;}
.y1f{bottom:520.350000px;}
.yba{bottom:525.750000px;}
.y80{bottom:532.590000px;}
.ydf{bottom:539.790000px;}
.y64{bottom:541.230000px;}
.y129{bottom:543.750000px;}
.y11a{bottom:544.830000px;}
.y44{bottom:546.270000px;}
.yf5{bottom:549.870000px;}
.y1e{bottom:551.310000px;}
.y7f{bottom:563.550000px;}
.yde{bottom:570.750000px;}
.y63{bottom:572.550000px;}
.y128{bottom:574.710000px;}
.y43{bottom:577.260000px;}
.yf4{bottom:580.860000px;}
.y1d{bottom:581.220000px;}
.y7e{bottom:594.900000px;}
.yb5{bottom:595.620000px;}
.ydd{bottom:601.740000px;}
.y62{bottom:603.540000px;}
.y127{bottom:605.700000px;}
.y42{bottom:608.220000px;}
.y1c{bottom:608.580000px;}
.yf3{bottom:611.820000px;}
.y119{bottom:622.620000px;}
.y7d{bottom:625.860000px;}
.ydc{bottom:632.700000px;}
.y1b{bottom:634.500000px;}
.y126{bottom:637.020000px;}
.y41{bottom:639.540000px;}
.yf2{bottom:643.140000px;}
.y7c{bottom:656.820000px;}
.y1a{bottom:660.420000px;}
.ydb{bottom:664.020000px;}
.y61{bottom:665.460000px;}
.y125{bottom:667.980000px;}
.y40{bottom:670.500000px;}
.yf1{bottom:674.100000px;}
.y19{bottom:686.340000px;}
.y7b{bottom:687.780000px;}
.yda{bottom:694.980000px;}
.y60{bottom:696.780000px;}
.y124{bottom:698.940000px;}
.yaf{bottom:699.660000px;}
.y3f{bottom:701.490000px;}
.yf0{bottom:705.090000px;}
.y18{bottom:712.290000px;}
.y7a{bottom:719.130000px;}
.y104{bottom:724.170000px;}
.yd9{bottom:725.970000px;}
.y5f{bottom:727.770000px;}
.y123{bottom:729.930000px;}
.y3e{bottom:732.450000px;}
.yef{bottom:736.050000px;}
.y17{bottom:738.210000px;}
.y91{bottom:741.450000px;}
.y79{bottom:750.090000px;}
.yac{bottom:752.250000px;}
.yd8{bottom:756.930000px;}
.y5e{bottom:758.730000px;}
.y117{bottom:761.250000px;}
.y3d{bottom:763.770000px;}
.y16{bottom:764.130000px;}
.yee{bottom:766.290000px;}
.y90{bottom:772.410000px;}
.y78{bottom:781.050000px;}
.yd7{bottom:788.250000px;}
.y15{bottom:789.690000px;}
.y122{bottom:792.210000px;}
.y116{bottom:794.370000px;}
.y3c{bottom:794.730000px;}
.y8f{bottom:803.370000px;}
.ya8{bottom:804.810000px;}
.y77{bottom:812.010000px;}
.y14{bottom:815.610000px;}
.yd6{bottom:819.210000px;}
.y5d{bottom:821.010000px;}
.y121{bottom:823.170000px;}
.y3b{bottom:825.690000px;}
.y115{bottom:827.535000px;}
.y8e{bottom:834.375000px;}
.y13{bottom:841.575000px;}
.y76{bottom:843.375000px;}
.yd5{bottom:850.215000px;}
.y5c{bottom:852.015000px;}
.y120{bottom:854.175000px;}
.ya7{bottom:855.255000px;}
.y3a{bottom:856.695000px;}
.y113{bottom:863.535000px;}
.y8d{bottom:865.695000px;}
.y12{bottom:867.495000px;}
.y75{bottom:874.335000px;}
.yd4{bottom:881.175000px;}
.y5b{bottom:882.975000px;}
.y11f{bottom:885.135000px;}
.y39{bottom:888.015000px;}
.y100{bottom:891.615000px;}
.y111{bottom:894.495000px;}
.y11{bottom:895.575000px;}
.y8c{bottom:896.655000px;}
.y74{bottom:905.295000px;}
.yd3{bottom:912.495000px;}
.y5a{bottom:913.935000px;}
.y11e{bottom:917.535000px;}
.y38{bottom:918.975000px;}
.y10{bottom:919.335000px;}
.y73{bottom:927.615000px;}
.y10f{bottom:928.695000px;}
.yf{bottom:943.455000px;}
.y59{bottom:944.895000px;}
.y37{bottom:949.935000px;}
.y10e{bottom:957.525000px;}
.y8b{bottom:958.605000px;}
.ye{bottom:967.245000px;}
.yd2{bottom:974.445000px;}
.y58{bottom:976.245000px;}
.y36{bottom:980.925000px;}
.y10c{bottom:985.245000px;}
.y8a{bottom:989.925000px;}
.yd{bottom:998.205000px;}
.y57{bottom:1007.205000px;}
.yd1{bottom:1008.645000px;}
.y35{bottom:1012.245000px;}
.y10a{bottom:1016.205000px;}
.y7{bottom:1019.445000px;}
.y89{bottom:1020.885000px;}
.y56{bottom:1038.165000px;}
.yd0{bottom:1039.965000px;}
.y34{bottom:1043.205000px;}
.y109{bottom:1046.085000px;}
.y6{bottom:1049.685000px;}
.y55{bottom:1069.125000px;}
.ycf{bottom:1070.925000px;}
.y107{bottom:1071.645000px;}
.y33{bottom:1074.165000px;}
.y5{bottom:1075.245000px;}
.y54{bottom:1091.850000px;}
.yce{bottom:1101.930000px;}
.y32{bottom:1105.170000px;}
.y53{bottom:1114.170000px;}
.y4{bottom:1129.290000px;}
.y31{bottom:1136.490000px;}
.y3{bottom:1146.930000px;}
.y30{bottom:1157.730000px;}
.y2{bottom:1168.530000px;}
.y2e{bottom:1173.570000px;}
.y1{bottom:1190.490000px;}
.y2d{bottom:1193.730000px;}
.h6{height:7.920000px;}
.hf{height:8.640000px;}
.h8{height:15.516000px;}
.h26{height:16.920000px;}
.h20{height:17.280000px;}
.h23{height:18.000000px;}
.h25{height:18.360000px;}
.h21{height:19.080000px;}
.h22{height:19.440000px;}
.h24{height:23.760000px;}
.h1f{height:23.796000px;}
.h27{height:24.480000px;}
.h14{height:34.596000px;}
.h4{height:41.547656px;}
.h7{height:48.013594px;}
.h15{height:51.840000px;}
.h16{height:51.876000px;}
.h3{height:52.686563px;}
.hb{height:53.067656px;}
.ha{height:53.717344px;}
.h10{height:54.426094px;}
.h12{height:58.429688px;}
.hc{height:58.833281px;}
.h11{height:59.343750px;}
.h2{height:59.871094px;}
.h1b{height:60.155156px;}
.hd{height:63.175781px;}
.h9{height:63.949219px;}
.h1c{height:64.476000px;}
.h5{height:65.884219px;}
.he{height:67.824844px;}
.h13{height:68.229844px;}
.h19{height:68.796000px;}
.h28{height:69.065156px;}
.h18{height:69.156000px;}
.h1d{height:82.116000px;}
.h1a{height:86.400000px;}
.h17{height:103.320000px;}
.h1e{height:207.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:47.160000px;}
.wb{width:50.400000px;}
.w7{width:52.596000px;}
.w8{width:93.636000px;}
.wd{width:109.476000px;}
.w6{width:119.196000px;}
.w10{width:130.032000px;}
.wf{width:131.472000px;}
.we{width:133.272000px;}
.wa{width:145.152000px;}
.wc{width:194.145000px;}
.w12{width:319.110000px;}
.w13{width:321.990000px;}
.w11{width:322.350000px;}
.w4{width:348.630000px;}
.w3{width:349.350000px;}
.w5{width:637.095000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.x2a{left:9.750000px;}
.x1b{left:11.160000px;}
.x27{left:12.630000px;}
.x31{left:13.710000px;}
.x22{left:15.120000px;}
.x3a{left:17.640000px;}
.x26{left:18.720000px;}
.x24{left:19.800000px;}
.x17{left:20.880000px;}
.x23{left:22.680000px;}
.x1d{left:24.120000px;}
.x46{left:26.325000px;}
.x2c{left:27.360000px;}
.x37{left:29.190000px;}
.x19{left:30.963000px;}
.x29{left:32.400000px;}
.x25{left:33.885000px;}
.x3c{left:36.036000px;}
.x38{left:37.485000px;}
.x36{left:38.883000px;}
.x32{left:40.725000px;}
.x2e{left:42.870000px;}
.x44{left:43.965000px;}
.x34{left:46.485000px;}
.x2d{left:48.285000px;}
.x2f{left:50.070000px;}
.x30{left:51.870000px;}
.x3e{left:53.325000px;}
.x39{left:55.470000px;}
.x2b{left:58.350000px;}
.x35{left:59.430000px;}
.x28{left:61.590000px;}
.x33{left:63.390000px;}
.x43{left:67.365000px;}
.x11{left:68.436000px;}
.x20{left:80.310000px;}
.x40{left:83.925000px;}
.x16{left:85.356000px;}
.x49{left:88.605000px;}
.x4{left:97.596000px;}
.x42{left:103.395000px;}
.x1{left:106.235987px;}
.x14{left:133.271987px;}
.x18{left:138.672000px;}
.x9{left:156.674987px;}
.xb{left:159.194987px;}
.x8{left:162.074987px;}
.x15{left:186.194987px;}
.x10{left:194.834987px;}
.x13{left:213.194987px;}
.x2{left:228.344987px;}
.x1a{left:233.025000px;}
.xc{left:265.424987px;}
.x1c{left:280.905000px;}
.x45{left:290.265000px;}
.x41{left:292.425000px;}
.x3f{left:293.505000px;}
.x47{left:294.585000px;}
.x4a{left:295.665000px;}
.x48{left:296.745000px;}
.x6{left:312.990000px;}
.x4b{left:317.669987px;}
.xf{left:318.749987px;}
.xe{left:332.789987px;}
.x3b{left:370.589987px;}
.xa{left:373.469987px;}
.x1e{left:426.780000px;}
.x3{left:446.579987px;}
.x7{left:472.859987px;}
.x1f{left:477.900000px;}
.xd{left:552.809987px;}
.x21{left:673.125000px;}
.x12{left:705.525000px;}
.x3d{left:733.965000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.536000pt;}
.ls2b{letter-spacing:-1.280000pt;}
.ls28{letter-spacing:-1.152000pt;}
.ls1f{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.576000pt;}
.ls5{letter-spacing:-0.414933pt;}
.ls2{letter-spacing:-0.312533pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls30{letter-spacing:-0.007680pt;}
.ls1{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.007680pt;}
.ls2d{letter-spacing:0.115200pt;}
.ls15{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.307200pt;}
.ls22{letter-spacing:0.376320pt;}
.ls21{letter-spacing:0.432533pt;}
.ls9{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.476160pt;}
.ls18{letter-spacing:0.576000pt;}
.ls4{letter-spacing:0.629333pt;}
.lsf{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:1.024000pt;}
.ls2c{letter-spacing:1.408000pt;}
.ls10{letter-spacing:1.728000pt;}
.lsd{letter-spacing:1.920000pt;}
.ls1a{letter-spacing:3.200000pt;}
.ls25{letter-spacing:4.480000pt;}
.ls26{letter-spacing:5.760000pt;}
.ls2f{letter-spacing:7.040000pt;}
.ls17{letter-spacing:7.173120pt;}
.ls7{letter-spacing:8.320000pt;}
.ls29{letter-spacing:9.600000pt;}
.ls31{letter-spacing:10.880000pt;}
.ls1c{letter-spacing:12.293120pt;}
.ls12{letter-spacing:13.679787pt;}
.ls34{letter-spacing:14.720000pt;}
.ls24{letter-spacing:16.106667pt;}
.ls1d{letter-spacing:19.973120pt;}
.ls19{letter-spacing:20.608000pt;}
.ls32{letter-spacing:21.120000pt;}
.ls33{letter-spacing:22.400000pt;}
.ls27{letter-spacing:23.680000pt;}
.lsc{letter-spacing:24.448000pt;}
.lse{letter-spacing:28.800000pt;}
.ls2e{letter-spacing:53.120000pt;}
.ls16{letter-spacing:56.448000pt;}
.ls13{letter-spacing:56.458667pt;}
.ls1b{letter-spacing:78.208000pt;}
.ls23{letter-spacing:82.048000pt;}
.ls11{letter-spacing:102.528000pt;}
.lsb{letter-spacing:128.128000pt;}
.ls2a{letter-spacing:140.298667pt;}
.wsb{word-spacing:-16.576000pt;}
.ws8{word-spacing:-16.448000pt;}
.wsf{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws9{word-spacing:-15.424000pt;}
.wsa{word-spacing:-15.168000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.643200pt;}
.ws1{word-spacing:-14.330667pt;}
.wsc{word-spacing:-13.872533pt;}
.wsd{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.025067pt;}
.wse{word-spacing:-12.264960pt;}
.ws2{word-spacing:-11.621973pt;}
.ws6{word-spacing:0.000000pt;}
._25{margin-left:-7.256320pt;}
._26{margin-left:-4.245333pt;}
._2{margin-left:-2.425173pt;}
._1{margin-left:-1.408000pt;}
._0{width:1.024000pt;}
._5{width:2.240000pt;}
._18{width:3.200000pt;}
._6{width:4.288000pt;}
._7{width:5.440000pt;}
._15{width:6.528000pt;}
._13{width:7.872000pt;}
._10{width:8.832000pt;}
._e{width:9.728000pt;}
._f{width:11.072000pt;}
._14{width:12.032000pt;}
._8{width:13.376000pt;}
._1b{width:14.976000pt;}
._19{width:16.960000pt;}
._16{width:17.856000pt;}
._17{width:19.328000pt;}
._1a{width:20.224000pt;}
._1c{width:21.524480pt;}
._c{width:22.905173pt;}
._b{width:24.064000pt;}
._24{width:24.980480pt;}
._d{width:26.240000pt;}
._a{width:27.904000pt;}
._9{width:29.184000pt;}
._1f{width:30.592000pt;}
._23{width:32.512000pt;}
._27{width:33.461333pt;}
._22{width:34.368000pt;}
._1e{width:35.698347pt;}
._1d{width:36.608000pt;}
._29{width:38.035627pt;}
._2b{width:52.576000pt;}
._2a{width:55.306667pt;}
._21{width:65.280000pt;}
._20{width:66.250667pt;}
._28{width:156.298667pt;}
._12{width:351.407360pt;}
._3{width:523.173120pt;}
._4{width:979.098453pt;}
._11{width:1963.546027pt;}
.fs2{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.y9{bottom:-4.160000pt;}
.y2f{bottom:-3.840000pt;}
.y0{bottom:0.000000pt;}
.y118{bottom:2.240000pt;}
.yb{bottom:2.560000pt;}
.yab{bottom:2.880000pt;}
.yb4{bottom:2.906667pt;}
.y110{bottom:3.200000pt;}
.y114{bottom:3.520000pt;}
.y10b{bottom:4.160000pt;}
.y10d{bottom:4.480000pt;}
.y112{bottom:8.320000pt;}
.y108{bottom:8.360000pt;}
.y11d{bottom:8.960000pt;}
.ycb{bottom:10.554667pt;}
.ya9{bottom:10.560000pt;}
.yb2{bottom:10.586667pt;}
.yc6{bottom:10.600000pt;}
.y101{bottom:14.400000pt;}
.yc9{bottom:18.234667pt;}
.yaa{bottom:18.240000pt;}
.yb0{bottom:18.266667pt;}
.yc7{bottom:18.280000pt;}
.y103{bottom:22.400000pt;}
.ybe{bottom:25.600000pt;}
.yca{bottom:25.914667pt;}
.yad{bottom:25.920000pt;}
.yb1{bottom:25.946667pt;}
.yc{bottom:27.200000pt;}
.yc0{bottom:33.280000pt;}
.ycc{bottom:33.594667pt;}
.yae{bottom:33.600000pt;}
.yb3{bottom:33.626667pt;}
.yc1{bottom:41.000000pt;}
.yb6{bottom:41.280000pt;}
.ybf{bottom:48.680000pt;}
.yb9{bottom:48.960000pt;}
.ybb{bottom:48.986667pt;}
.y102{bottom:49.280000pt;}
.ya{bottom:50.880000pt;}
.yb8{bottom:64.320000pt;}
.y8{bottom:74.272000pt;}
.yb7{bottom:79.360000pt;}
.y106{bottom:79.680000pt;}
.y52{bottom:99.232000pt;}
.y72{bottom:102.432000pt;}
.y2c{bottom:103.712000pt;}
.y105{bottom:104.040000pt;}
.ycd{bottom:109.472000pt;}
.yec{bottom:120.992000pt;}
.yed{bottom:123.872000pt;}
.y136{bottom:124.512000pt;}
.yc8{bottom:125.152000pt;}
.y51{bottom:126.752000pt;}
.y71{bottom:129.952000pt;}
.y2b{bottom:131.232000pt;}
.y13b{bottom:140.506667pt;}
.y9b{bottom:142.106667pt;}
.yeb{bottom:148.506667pt;}
.ya6{bottom:151.386667pt;}
.y135{bottom:152.026667pt;}
.y50{bottom:154.266667pt;}
.yff{bottom:157.466667pt;}
.y70{bottom:157.786667pt;}
.y2a{bottom:158.746667pt;}
.y13a{bottom:168.026667pt;}
.y9a{bottom:169.626667pt;}
.yc5{bottom:171.866667pt;}
.yea{bottom:176.066667pt;}
.y13f{bottom:177.346667pt;}
.y88{bottom:177.666667pt;}
.ya5{bottom:178.946667pt;}
.y134{bottom:179.586667pt;}
.y4f{bottom:181.826667pt;}
.yfe{bottom:185.026667pt;}
.y6f{bottom:185.346667pt;}
.y29{bottom:186.626667pt;}
.y139{bottom:193.666667pt;}
.y99{bottom:197.506667pt;}
.yc4{bottom:203.266667pt;}
.ye9{bottom:203.586667pt;}
.y13e{bottom:204.866667pt;}
.y87{bottom:205.186667pt;}
.ya4{bottom:206.466667pt;}
.y133{bottom:207.106667pt;}
.y4e{bottom:209.666667pt;}
.y6e{bottom:212.866667pt;}
.y28{bottom:214.146667pt;}
.y138{bottom:216.706667pt;}
.y98{bottom:225.026667pt;}
.ye8{bottom:231.426667pt;}
.y86{bottom:232.706667pt;}
.y13d{bottom:233.666667pt;}
.ya3{bottom:234.306667pt;}
.y132{bottom:234.946667pt;}
.y4d{bottom:237.186667pt;}
.y137{bottom:239.746667pt;}
.y6d{bottom:240.386667pt;}
.y27{bottom:241.666667pt;}
.y97{bottom:252.546667pt;}
.ye7{bottom:258.946667pt;}
.y85{bottom:260.226667pt;}
.ya2{bottom:261.826667pt;}
.y131{bottom:262.466667pt;}
.y13c{bottom:263.426667pt;}
.y4c{bottom:264.706667pt;}
.yfd{bottom:267.906667pt;}
.y6c{bottom:268.226667pt;}
.y26{bottom:269.186667pt;}
.y96{bottom:280.066667pt;}
.yc3{bottom:280.706667pt;}
.ye6{bottom:286.466667pt;}
.y84{bottom:288.093333pt;}
.ya1{bottom:289.373333pt;}
.y130{bottom:290.013333pt;}
.y4b{bottom:292.253333pt;}
.yfc{bottom:295.453333pt;}
.y6b{bottom:295.773333pt;}
.y25{bottom:297.053333pt;}
.y95{bottom:307.933333pt;}
.yc2{bottom:312.093333pt;}
.ye5{bottom:314.013333pt;}
.y83{bottom:315.613333pt;}
.ya0{bottom:316.893333pt;}
.y12f{bottom:317.533333pt;}
.y4a{bottom:320.093333pt;}
.yfb{bottom:322.973333pt;}
.y6a{bottom:323.293333pt;}
.y24{bottom:324.573333pt;}
.y94{bottom:335.453333pt;}
.ye4{bottom:341.853333pt;}
.y69{bottom:343.133333pt;}
.y9f{bottom:344.733333pt;}
.y12e{bottom:345.373333pt;}
.y49{bottom:347.613333pt;}
.yfa{bottom:350.813333pt;}
.y23{bottom:352.093333pt;}
.ybd{bottom:358.813333pt;}
.y93{bottom:362.973333pt;}
.ye3{bottom:369.373333pt;}
.y68{bottom:370.653333pt;}
.y9e{bottom:372.253333pt;}
.y12d{bottom:372.893333pt;}
.y48{bottom:375.133333pt;}
.yf9{bottom:378.333333pt;}
.y22{bottom:379.613333pt;}
.y92{bottom:390.493333pt;}
.ye2{bottom:396.893333pt;}
.y67{bottom:398.493333pt;}
.y9d{bottom:399.813333pt;}
.y12c{bottom:400.453333pt;}
.y47{bottom:402.693333pt;}
.yf8{bottom:405.893333pt;}
.y11c{bottom:406.533333pt;}
.y21{bottom:407.493333pt;}
.y82{bottom:418.373333pt;}
.ybc{bottom:420.613333pt;}
.ye1{bottom:424.453333pt;}
.y66{bottom:426.053333pt;}
.y9c{bottom:427.333333pt;}
.y12b{bottom:427.973333pt;}
.y46{bottom:430.533333pt;}
.yf7{bottom:433.413333pt;}
.y20{bottom:435.013333pt;}
.y81{bottom:445.893333pt;}
.y11b{bottom:448.133333pt;}
.ye0{bottom:451.973333pt;}
.y65{bottom:453.573333pt;}
.y12a{bottom:455.813333pt;}
.y45{bottom:458.053333pt;}
.yf6{bottom:461.253333pt;}
.y1f{bottom:462.533333pt;}
.yba{bottom:467.333333pt;}
.y80{bottom:473.413333pt;}
.ydf{bottom:479.813333pt;}
.y64{bottom:481.093333pt;}
.y129{bottom:483.333333pt;}
.y11a{bottom:484.293333pt;}
.y44{bottom:485.573333pt;}
.yf5{bottom:488.773333pt;}
.y1e{bottom:490.053333pt;}
.y7f{bottom:500.933333pt;}
.yde{bottom:507.333333pt;}
.y63{bottom:508.933333pt;}
.y128{bottom:510.853333pt;}
.y43{bottom:513.120000pt;}
.yf4{bottom:516.320000pt;}
.y1d{bottom:516.640000pt;}
.y7e{bottom:528.800000pt;}
.yb5{bottom:529.440000pt;}
.ydd{bottom:534.880000pt;}
.y62{bottom:536.480000pt;}
.y127{bottom:538.400000pt;}
.y42{bottom:540.640000pt;}
.y1c{bottom:540.960000pt;}
.yf3{bottom:543.840000pt;}
.y119{bottom:553.440000pt;}
.y7d{bottom:556.320000pt;}
.ydc{bottom:562.400000pt;}
.y1b{bottom:564.000000pt;}
.y126{bottom:566.240000pt;}
.y41{bottom:568.480000pt;}
.yf2{bottom:571.680000pt;}
.y7c{bottom:583.840000pt;}
.y1a{bottom:587.040000pt;}
.ydb{bottom:590.240000pt;}
.y61{bottom:591.520000pt;}
.y125{bottom:593.760000pt;}
.y40{bottom:596.000000pt;}
.yf1{bottom:599.200000pt;}
.y19{bottom:610.080000pt;}
.y7b{bottom:611.360000pt;}
.yda{bottom:617.760000pt;}
.y60{bottom:619.360000pt;}
.y124{bottom:621.280000pt;}
.yaf{bottom:621.920000pt;}
.y3f{bottom:623.546667pt;}
.yf0{bottom:626.746667pt;}
.y18{bottom:633.146667pt;}
.y7a{bottom:639.226667pt;}
.y104{bottom:643.706667pt;}
.yd9{bottom:645.306667pt;}
.y5f{bottom:646.906667pt;}
.y123{bottom:648.826667pt;}
.y3e{bottom:651.066667pt;}
.yef{bottom:654.266667pt;}
.y17{bottom:656.186667pt;}
.y91{bottom:659.066667pt;}
.y79{bottom:666.746667pt;}
.yac{bottom:668.666667pt;}
.yd8{bottom:672.826667pt;}
.y5e{bottom:674.426667pt;}
.y117{bottom:676.666667pt;}
.y3d{bottom:678.906667pt;}
.y16{bottom:679.226667pt;}
.yee{bottom:681.146667pt;}
.y90{bottom:686.586667pt;}
.y78{bottom:694.266667pt;}
.yd7{bottom:700.666667pt;}
.y15{bottom:701.946667pt;}
.y122{bottom:704.186667pt;}
.y116{bottom:706.106667pt;}
.y3c{bottom:706.426667pt;}
.y8f{bottom:714.106667pt;}
.ya8{bottom:715.386667pt;}
.y77{bottom:721.786667pt;}
.y14{bottom:724.986667pt;}
.yd6{bottom:728.186667pt;}
.y5d{bottom:729.786667pt;}
.y121{bottom:731.706667pt;}
.y3b{bottom:733.946667pt;}
.y115{bottom:735.586667pt;}
.y8e{bottom:741.666667pt;}
.y13{bottom:748.066667pt;}
.y76{bottom:749.666667pt;}
.yd5{bottom:755.746667pt;}
.y5c{bottom:757.346667pt;}
.y120{bottom:759.266667pt;}
.ya7{bottom:760.226667pt;}
.y3a{bottom:761.506667pt;}
.y113{bottom:767.586667pt;}
.y8d{bottom:769.506667pt;}
.y12{bottom:771.106667pt;}
.y75{bottom:777.186667pt;}
.yd4{bottom:783.266667pt;}
.y5b{bottom:784.866667pt;}
.y11f{bottom:786.786667pt;}
.y39{bottom:789.346667pt;}
.y100{bottom:792.546667pt;}
.y111{bottom:795.106667pt;}
.y11{bottom:796.066667pt;}
.y8c{bottom:797.026667pt;}
.y74{bottom:804.706667pt;}
.yd3{bottom:811.106667pt;}
.y5a{bottom:812.386667pt;}
.y11e{bottom:815.586667pt;}
.y38{bottom:816.866667pt;}
.y10{bottom:817.186667pt;}
.y73{bottom:824.546667pt;}
.y10f{bottom:825.506667pt;}
.yf{bottom:838.626667pt;}
.y59{bottom:839.906667pt;}
.y37{bottom:844.386667pt;}
.y10e{bottom:851.133333pt;}
.y8b{bottom:852.093333pt;}
.ye{bottom:859.773333pt;}
.yd2{bottom:866.173333pt;}
.y58{bottom:867.773333pt;}
.y36{bottom:871.933333pt;}
.y10c{bottom:875.773333pt;}
.y8a{bottom:879.933333pt;}
.yd{bottom:887.293333pt;}
.y57{bottom:895.293333pt;}
.yd1{bottom:896.573333pt;}
.y35{bottom:899.773333pt;}
.y10a{bottom:903.293333pt;}
.y7{bottom:906.173333pt;}
.y89{bottom:907.453333pt;}
.y56{bottom:922.813333pt;}
.yd0{bottom:924.413333pt;}
.y34{bottom:927.293333pt;}
.y109{bottom:929.853333pt;}
.y6{bottom:933.053333pt;}
.y55{bottom:950.333333pt;}
.ycf{bottom:951.933333pt;}
.y107{bottom:952.573333pt;}
.y33{bottom:954.813333pt;}
.y5{bottom:955.773333pt;}
.y54{bottom:970.533333pt;}
.yce{bottom:979.493333pt;}
.y32{bottom:982.373333pt;}
.y53{bottom:990.373333pt;}
.y4{bottom:1003.813333pt;}
.y31{bottom:1010.213333pt;}
.y3{bottom:1019.493333pt;}
.y30{bottom:1029.093333pt;}
.y2{bottom:1038.693333pt;}
.y2e{bottom:1043.173333pt;}
.y1{bottom:1058.213333pt;}
.y2d{bottom:1061.093333pt;}
.h6{height:7.040000pt;}
.hf{height:7.680000pt;}
.h8{height:13.792000pt;}
.h26{height:15.040000pt;}
.h20{height:15.360000pt;}
.h23{height:16.000000pt;}
.h25{height:16.320000pt;}
.h21{height:16.960000pt;}
.h22{height:17.280000pt;}
.h24{height:21.120000pt;}
.h1f{height:21.152000pt;}
.h27{height:21.760000pt;}
.h14{height:30.752000pt;}
.h4{height:36.931250pt;}
.h7{height:42.678750pt;}
.h15{height:46.080000pt;}
.h16{height:46.112000pt;}
.h3{height:46.832500pt;}
.hb{height:47.171250pt;}
.ha{height:47.748750pt;}
.h10{height:48.378750pt;}
.h12{height:51.937500pt;}
.hc{height:52.296250pt;}
.h11{height:52.750000pt;}
.h2{height:53.218750pt;}
.h1b{height:53.471250pt;}
.hd{height:56.156250pt;}
.h9{height:56.843750pt;}
.h1c{height:57.312000pt;}
.h5{height:58.563750pt;}
.he{height:60.288750pt;}
.h13{height:60.648750pt;}
.h19{height:61.152000pt;}
.h28{height:61.391250pt;}
.h18{height:61.472000pt;}
.h1d{height:72.992000pt;}
.h1a{height:76.800000pt;}
.h17{height:91.840000pt;}
.h1e{height:184.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:41.920000pt;}
.wb{width:44.800000pt;}
.w7{width:46.752000pt;}
.w8{width:83.232000pt;}
.wd{width:97.312000pt;}
.w6{width:105.952000pt;}
.w10{width:115.584000pt;}
.wf{width:116.864000pt;}
.we{width:118.464000pt;}
.wa{width:129.024000pt;}
.wc{width:172.573333pt;}
.w12{width:283.653333pt;}
.w13{width:286.213333pt;}
.w11{width:286.533333pt;}
.w4{width:309.893333pt;}
.w3{width:310.533333pt;}
.w5{width:566.306667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.x2a{left:8.666667pt;}
.x1b{left:9.920000pt;}
.x27{left:11.226667pt;}
.x31{left:12.186667pt;}
.x22{left:13.440000pt;}
.x3a{left:15.680000pt;}
.x26{left:16.640000pt;}
.x24{left:17.600000pt;}
.x17{left:18.560000pt;}
.x23{left:20.160000pt;}
.x1d{left:21.440000pt;}
.x46{left:23.400000pt;}
.x2c{left:24.320000pt;}
.x37{left:25.946667pt;}
.x19{left:27.522667pt;}
.x29{left:28.800000pt;}
.x25{left:30.120000pt;}
.x3c{left:32.032000pt;}
.x38{left:33.320000pt;}
.x36{left:34.562667pt;}
.x32{left:36.200000pt;}
.x2e{left:38.106667pt;}
.x44{left:39.080000pt;}
.x34{left:41.320000pt;}
.x2d{left:42.920000pt;}
.x2f{left:44.506667pt;}
.x30{left:46.106667pt;}
.x3e{left:47.400000pt;}
.x39{left:49.306667pt;}
.x2b{left:51.866667pt;}
.x35{left:52.826667pt;}
.x28{left:54.746667pt;}
.x33{left:56.346667pt;}
.x43{left:59.880000pt;}
.x11{left:60.832000pt;}
.x20{left:71.386667pt;}
.x40{left:74.600000pt;}
.x16{left:75.872000pt;}
.x49{left:78.760000pt;}
.x4{left:86.752000pt;}
.x42{left:91.906667pt;}
.x1{left:94.431988pt;}
.x14{left:118.463988pt;}
.x18{left:123.264000pt;}
.x9{left:139.266655pt;}
.xb{left:141.506655pt;}
.x8{left:144.066655pt;}
.x15{left:165.506655pt;}
.x10{left:173.186655pt;}
.x13{left:189.506655pt;}
.x2{left:202.973322pt;}
.x1a{left:207.133333pt;}
.xc{left:235.933322pt;}
.x1c{left:249.693333pt;}
.x45{left:258.013333pt;}
.x41{left:259.933333pt;}
.x3f{left:260.893333pt;}
.x47{left:261.853333pt;}
.x4a{left:262.813333pt;}
.x48{left:263.773333pt;}
.x6{left:278.213333pt;}
.x4b{left:282.373322pt;}
.xf{left:283.333322pt;}
.xe{left:295.813322pt;}
.x3b{left:329.413322pt;}
.xa{left:331.973322pt;}
.x1e{left:379.360000pt;}
.x3{left:396.959988pt;}
.x7{left:420.319988pt;}
.x1f{left:424.800000pt;}
.xd{left:491.386655pt;}
.x21{left:598.333333pt;}
.x12{left:627.133333pt;}
.x3d{left:652.413333pt;}
}




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