
    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_10f736f45147cf119c5a720c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.978000;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_989b97ffc1f09cd9244a78de.woff')format("woff");}.ff2{font-family:ff2;line-height:1.058000;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_6968390eaaf090163366a2ee.woff')format("woff");}.ff3{font-family:ff3;line-height:1.026000;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;}
.m2{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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.178000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.552000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:2.987050px;}
.ls2{letter-spacing:2.988384px;}
.ls9{letter-spacing:2.989018px;}
.ls7{letter-spacing:2.990496px;}
.ls6{letter-spacing:2.992243px;}
.ls1{letter-spacing:16.207032px;}
.ls3{letter-spacing:17.606104px;}
.ls5{letter-spacing:24.460835px;}
.ls4{letter-spacing:25.054833px;}
.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;}
}
.ws82{word-spacing:-37.013196px;}
.ws3d{word-spacing:-28.472751px;}
.wsa3{word-spacing:-26.509113px;}
.ws0{word-spacing:-22.315500px;}
.wsa6{word-spacing:-17.476378px;}
.ws5c{word-spacing:-17.410924px;}
.ws8e{word-spacing:-17.280014px;}
.ws52{word-spacing:-16.952741px;}
.ws5e{word-spacing:-16.690923px;}
.ws1d{word-spacing:-16.625468px;}
.ws4a{word-spacing:-16.560014px;}
.wsa7{word-spacing:-16.429105px;}
.wsc8{word-spacing:-16.101832px;}
.ws1{word-spacing:-15.924282px;}
.ws7f{word-spacing:-15.905468px;}
.ws6c{word-spacing:-15.840013px;}
.ws6d{word-spacing:-15.774559px;}
.ws1b{word-spacing:-15.643649px;}
.ws5{word-spacing:-15.493896px;}
.ws70{word-spacing:-15.447286px;}
.ws3c{word-spacing:-15.381831px;}
.ws30{word-spacing:-15.250922px;}
.ws80{word-spacing:-15.185467px;}
.ws97{word-spacing:-15.054558px;}
.ws16{word-spacing:-14.989103px;}
.ws5d{word-spacing:-14.923649px;}
.ws36{word-spacing:-14.661830px;}
.wsc{word-spacing:-14.596376px;}
.ws6b{word-spacing:-14.530921px;}
.wsa8{word-spacing:-14.465467px;}
.ws22{word-spacing:-14.203648px;}
.ws5a{word-spacing:-14.138194px;}
.ws42{word-spacing:-14.072739px;}
.ws3a{word-spacing:-13.941830px;}
.ws23{word-spacing:-13.876375px;}
.wsa{word-spacing:-13.810921px;}
.wsbb{word-spacing:-13.745466px;}
.ws4e{word-spacing:-13.680011px;}
.ws49{word-spacing:-13.614557px;}
.ws64{word-spacing:-13.483648px;}
.ws7e{word-spacing:-13.418193px;}
.ws59{word-spacing:-13.352738px;}
.ws65{word-spacing:-13.287284px;}
.wsb0{word-spacing:-13.226857px;}
.ws69{word-spacing:-13.221829px;}
.ws25{word-spacing:-13.156375px;}
.ws34{word-spacing:-13.090920px;}
.ws72{word-spacing:-13.025465px;}
.wsa2{word-spacing:-12.960011px;}
.ws76{word-spacing:-12.894556px;}
.ws57{word-spacing:-12.829102px;}
.ws67{word-spacing:-12.763647px;}
.ws51{word-spacing:-12.698192px;}
.ws98{word-spacing:-12.632738px;}
.ws9b{word-spacing:-12.567283px;}
.ws39{word-spacing:-12.501829px;}
.ws15{word-spacing:-12.481776px;}
.ws38{word-spacing:-12.436374px;}
.wsf{word-spacing:-12.373632px;}
.ws1e{word-spacing:-12.370919px;}
.ws8b{word-spacing:-12.305465px;}
.ws4b{word-spacing:-12.240010px;}
.wsa0{word-spacing:-12.175338px;}
.ws4{word-spacing:-12.174556px;}
.ws8c{word-spacing:-12.110857px;}
.ws3{word-spacing:-12.109101px;}
.wsc0{word-spacing:-12.107123px;}
.wsc6{word-spacing:-12.104857px;}
.ws28{word-spacing:-12.043646px;}
.ws1a{word-spacing:-11.978192px;}
.ws50{word-spacing:-11.847283px;}
.ws8{word-spacing:-11.781828px;}
.ws19{word-spacing:-11.650919px;}
.ws71{word-spacing:-11.520010px;}
.ws6f{word-spacing:-11.389100px;}
.wsce{word-spacing:-11.340659px;}
.ws78{word-spacing:-11.258191px;}
.ws53{word-spacing:-11.192737px;}
.ws58{word-spacing:-11.061827px;}
.wsad{word-spacing:-11.018857px;}
.wsac{word-spacing:-11.013491px;}
.wsa4{word-spacing:-10.996373px;}
.wsb1{word-spacing:-10.930918px;}
.ws26{word-spacing:-10.865464px;}
.wsb5{word-spacing:-10.800009px;}
.ws10{word-spacing:-10.759680px;}
.ws7b{word-spacing:-10.734554px;}
.ws96{word-spacing:-10.603645px;}
.ws7{word-spacing:-10.538191px;}
.ws21{word-spacing:-10.472736px;}
.ws2f{word-spacing:-10.407281px;}
.ws8a{word-spacing:-10.341827px;}
.ws92{word-spacing:-10.276372px;}
.ws7c{word-spacing:-10.210918px;}
.ws9e{word-spacing:-10.145463px;}
.ws9f{word-spacing:-10.014554px;}
.ws48{word-spacing:-10.006502px;}
.ws31{word-spacing:-9.952704px;}
.ws73{word-spacing:-9.949099px;}
.ws29{word-spacing:-9.818190px;}
.ws2a{word-spacing:-9.752735px;}
.ws4d{word-spacing:-9.621826px;}
.ws91{word-spacing:-9.556372px;}
.ws41{word-spacing:-9.490917px;}
.ws37{word-spacing:-9.360008px;}
.ws3b{word-spacing:-9.294553px;}
.ws17{word-spacing:-9.163644px;}
.ws95{word-spacing:-9.098189px;}
.wsb{word-spacing:-9.032735px;}
.ws4f{word-spacing:-8.967280px;}
.ws1f{word-spacing:-8.901826px;}
.wsd{word-spacing:-8.822938px;}
.ws6{word-spacing:-8.770916px;}
.ws20{word-spacing:-8.640007px;}
.ws9{word-spacing:-8.509098px;}
.ws75{word-spacing:-8.443643px;}
.ws8d{word-spacing:-8.378189px;}
.ws1c{word-spacing:-8.312734px;}
.wsbc{word-spacing:-8.280349px;}
.ws5b{word-spacing:-8.247280px;}
.wsbd{word-spacing:-8.234857px;}
.ws77{word-spacing:-8.116370px;}
.ws66{word-spacing:-8.050916px;}
.ws7d{word-spacing:-7.920007px;}
.ws74{word-spacing:-7.854552px;}
.wscd{word-spacing:-7.807190px;}
.ws99{word-spacing:-7.789097px;}
.ws62{word-spacing:-7.723643px;}
.ws6a{word-spacing:-7.658188px;}
.ws3e{word-spacing:-7.592734px;}
.ws68{word-spacing:-7.527279px;}
.wsb9{word-spacing:-7.461824px;}
.ws2{word-spacing:-7.396370px;}
.ws27{word-spacing:-7.265461px;}
.ws56{word-spacing:-7.200006px;}
.wsc1{word-spacing:-7.196989px;}
.ws45{word-spacing:-7.134551px;}
.ws40{word-spacing:-7.069097px;}
.ws12{word-spacing:-7.047590px;}
.ws13{word-spacing:-7.040006px;}
.ws33{word-spacing:-7.003642px;}
.ws63{word-spacing:-6.938188px;}
.ws54{word-spacing:-6.872733px;}
.wsc7{word-spacing:-6.807278px;}
.ws60{word-spacing:-6.741824px;}
.ws61{word-spacing:-6.610915px;}
.ws81{word-spacing:-6.545460px;}
.ws18{word-spacing:-6.480005px;}
.ws32{word-spacing:-6.414551px;}
.ws55{word-spacing:-6.349096px;}
.wsbf{word-spacing:-6.218187px;}
.wsab{word-spacing:-6.152732px;}
.ws47{word-spacing:-6.133018px;}
.ws4c{word-spacing:-6.087278px;}
.ws7a{word-spacing:-5.956369px;}
.ws5f{word-spacing:-5.890914px;}
.ws9a{word-spacing:-5.825459px;}
.ws46{word-spacing:-5.760005px;}
.wsb2{word-spacing:-5.694550px;}
.wsb4{word-spacing:-5.629096px;}
.ws43{word-spacing:-5.563641px;}
.wsba{word-spacing:-5.498186px;}
.ws11{word-spacing:-5.433638px;}
.wsaa{word-spacing:-5.432732px;}
.ws35{word-spacing:-5.367277px;}
.ws79{word-spacing:-5.301823px;}
.ws3f{word-spacing:-5.170913px;}
.ws44{word-spacing:-5.040004px;}
.ws24{word-spacing:-4.974550px;}
.ws2e{word-spacing:-4.843640px;}
.ws2d{word-spacing:-4.778186px;}
.wsa9{word-spacing:-4.647277px;}
.wse{word-spacing:-4.572864px;}
.ws2b{word-spacing:-4.189094px;}
.ws87{word-spacing:-4.058185px;}
.wsa1{word-spacing:-3.927276px;}
.wsa5{word-spacing:-3.861821px;}
.wsb7{word-spacing:-3.796367px;}
.wsb3{word-spacing:-3.730912px;}
.ws88{word-spacing:-3.403639px;}
.ws9c{word-spacing:-2.945457px;}
.ws93{word-spacing:-2.618184px;}
.wsb6{word-spacing:-2.552729px;}
.ws6e{word-spacing:-2.356366px;}
.wsb8{word-spacing:-1.898183px;}
.wsaf{word-spacing:-1.701820px;}
.ws2c{word-spacing:-1.636365px;}
.ws89{word-spacing:-1.440001px;}
.wsc9{word-spacing:-1.243637px;}
.wsbe{word-spacing:-1.178183px;}
.ws9d{word-spacing:-0.981819px;}
.ws86{word-spacing:-0.785455px;}
.ws94{word-spacing:-0.720001px;}
.ws83{word-spacing:-0.327273px;}
.ws14{word-spacing:0.000000px;}
.wsc2{word-spacing:0.261818px;}
.ws90{word-spacing:0.981819px;}
.wsc3{word-spacing:1.505456px;}
.wsc5{word-spacing:1.570910px;}
.ws84{word-spacing:1.636365px;}
.wsae{word-spacing:1.828094px;}
.wsca{word-spacing:2.160002px;}
.wscc{word-spacing:2.225456px;}
.ws85{word-spacing:2.710640px;}
.ws8f{word-spacing:3.010912px;}
.wsc4{word-spacing:3.403639px;}
.wscb{word-spacing:4.058185px;}
._a{margin-left:-4.957208px;}
._3{margin-left:-3.890992px;}
._d{margin-left:-2.487275px;}
._2{margin-left:-1.178183px;}
._0{width:1.291158px;}
._13{width:2.324659px;}
._9{width:3.487344px;}
._14{width:4.742813px;}
._15{width:11.520010px;}
._f{width:13.418193px;}
._c{width:14.989103px;}
._4{width:16.354717px;}
._8{width:19.313626px;}
._e{width:21.076381px;}
._7{width:22.783626px;}
._5{width:24.101683px;}
._12{width:25.139168px;}
._10{width:27.512722px;}
._6{width:29.481523px;}
._11{width:31.375930px;}
._b{width:33.734529px;}
._1{width:43.038600px;}
.fc1{color:rgb(156,154,155);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:52.363800px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:65.454600px;}
.fs4{font-size:67.469057px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:42.576000px;}
.y42{bottom:56.406000px;}
.y1a{bottom:57.358500px;}
.y19{bottom:70.509000px;}
.y18{bottom:83.661000px;}
.y17{bottom:96.811500px;}
.ya9{bottom:98.517000px;}
.yd1{bottom:102.133500px;}
.ya8{bottom:118.842000px;}
.y81{bottom:119.404500px;}
.y41{bottom:122.172000px;}
.yd0{bottom:122.458500px;}
.y5c{bottom:127.543500px;}
.yda{bottom:135.550500px;}
.ya7{bottom:139.165500px;}
.y80{bottom:139.728000px;}
.ycf{bottom:142.782000px;}
.y5b{bottom:143.982000px;}
.y40{bottom:146.452500px;}
.y16{bottom:151.935000px;}
.yd9{bottom:155.874000px;}
.ya6{bottom:159.489000px;}
.y7f{bottom:160.051500px;}
.y5a{bottom:160.420500px;}
.yce{bottom:163.105500px;}
.y3f{bottom:166.776000px;}
.y59{bottom:171.814500px;}
.y15{bottom:172.260000px;}
.yd8{bottom:176.197500px;}
.ya5{bottom:179.812500px;}
.y7e{bottom:180.375000px;}
.ycd{bottom:183.429000px;}
.y3e{bottom:187.101000px;}
.y14{bottom:192.583500px;}
.y58{bottom:193.296000px;}
.yd7{bottom:196.521000px;}
.ya4{bottom:200.136000px;}
.y7d{bottom:200.698500px;}
.ycc{bottom:203.752500px;}
.y3d{bottom:207.424500px;}
.y13{bottom:212.907000px;}
.yd6{bottom:216.844500px;}
.ya3{bottom:220.459500px;}
.y7c{bottom:221.022000px;}
.yd2{bottom:221.023500px;}
.ycb{bottom:224.076000px;}
.y3c{bottom:227.748000px;}
.y12{bottom:233.230500px;}
.y57{bottom:237.169500px;}
.ya2{bottom:240.784500px;}
.y7b{bottom:241.347000px;}
.yca{bottom:244.401000px;}
.y3b{bottom:248.071500px;}
.y11{bottom:253.554000px;}
.y56{bottom:257.493000px;}
.ya1{bottom:261.108000px;}
.y7a{bottom:261.670500px;}
.yc9{bottom:264.724500px;}
.y3a{bottom:268.395000px;}
.y10{bottom:273.879000px;}
.y55{bottom:277.816500px;}
.ya0{bottom:281.431500px;}
.y79{bottom:281.994000px;}
.yc8{bottom:285.048000px;}
.y39{bottom:288.720000px;}
.yf{bottom:294.202500px;}
.y54{bottom:298.140000px;}
.y9f{bottom:301.755000px;}
.y78{bottom:302.317500px;}
.yc7{bottom:305.371500px;}
.y38{bottom:309.043500px;}
.ye{bottom:314.526000px;}
.y53{bottom:318.463500px;}
.y9e{bottom:322.078500px;}
.y77{bottom:322.641000px;}
.yc6{bottom:325.695000px;}
.y37{bottom:329.367000px;}
.yd{bottom:334.849500px;}
.y52{bottom:338.787000px;}
.yd5{bottom:338.788500px;}
.y9d{bottom:342.403500px;}
.y76{bottom:342.966000px;}
.yc5{bottom:346.020000px;}
.y36{bottom:349.690500px;}
.y51{bottom:359.112000px;}
.y9c{bottom:362.727000px;}
.y75{bottom:363.289500px;}
.yc4{bottom:366.343500px;}
.y35{bottom:370.014000px;}
.yc{bottom:371.319000px;}
.y50{bottom:379.435500px;}
.y9b{bottom:383.050500px;}
.y74{bottom:383.613000px;}
.yc3{bottom:386.667000px;}
.y34{bottom:390.339000px;}
.y4f{bottom:399.759000px;}
.y9a{bottom:403.374000px;}
.y73{bottom:403.936500px;}
.yc2{bottom:406.990500px;}
.y33{bottom:410.662500px;}
.y4e{bottom:420.082500px;}
.y99{bottom:423.697500px;}
.y72{bottom:424.260000px;}
.yc1{bottom:427.314000px;}
.y32{bottom:430.986000px;}
.y4d{bottom:440.406000px;}
.y98{bottom:444.022500px;}
.y71{bottom:444.585000px;}
.yc0{bottom:447.639000px;}
.y31{bottom:451.309500px;}
.y4c{bottom:460.731000px;}
.y97{bottom:464.346000px;}
.y70{bottom:464.908500px;}
.yb{bottom:465.801000px;}
.ybf{bottom:467.962500px;}
.y30{bottom:471.633000px;}
.y4b{bottom:481.054500px;}
.y96{bottom:484.669500px;}
.y6f{bottom:485.232000px;}
.ybe{bottom:488.286000px;}
.ya{bottom:490.608000px;}
.y2f{bottom:491.958000px;}
.y4a{bottom:501.378000px;}
.y95{bottom:504.993000px;}
.y6e{bottom:505.555500px;}
.ybd{bottom:508.609500px;}
.y49{bottom:521.701500px;}
.y94{bottom:525.316500px;}
.y6d{bottom:525.879000px;}
.y2e{bottom:527.154000px;}
.y9{bottom:528.864000px;}
.ybc{bottom:528.933000px;}
.y48{bottom:542.025000px;}
.y93{bottom:545.641500px;}
.y6c{bottom:546.204000px;}
.y2d{bottom:547.477500px;}
.ybb{bottom:549.258000px;}
.y8{bottom:553.671000px;}
.y47{bottom:562.350000px;}
.y92{bottom:565.965000px;}
.y6b{bottom:566.527500px;}
.y2c{bottom:567.801000px;}
.yba{bottom:569.581500px;}
.y46{bottom:582.673500px;}
.y91{bottom:586.288500px;}
.y6a{bottom:586.851000px;}
.y2b{bottom:588.124500px;}
.yb9{bottom:589.905000px;}
.y7{bottom:591.928500px;}
.y45{bottom:602.997000px;}
.y90{bottom:606.612000px;}
.y69{bottom:607.174500px;}
.y2a{bottom:608.448000px;}
.yb8{bottom:610.228500px;}
.y6{bottom:616.735500px;}
.y44{bottom:623.320500px;}
.y8f{bottom:626.935500px;}
.y68{bottom:627.498000px;}
.y29{bottom:628.773000px;}
.yb7{bottom:630.552000px;}
.y43{bottom:643.644000px;}
.y8e{bottom:647.260500px;}
.y67{bottom:647.823000px;}
.yb6{bottom:650.877000px;}
.y5{bottom:654.991500px;}
.y28{bottom:663.969000px;}
.y8d{bottom:667.584000px;}
.y66{bottom:668.146500px;}
.yb5{bottom:671.200500px;}
.y4{bottom:675.315000px;}
.y27{bottom:684.292500px;}
.y8c{bottom:687.907500px;}
.y65{bottom:688.470000px;}
.yb4{bottom:691.524000px;}
.y3{bottom:700.122000px;}
.y26{bottom:704.616000px;}
.y8b{bottom:708.231000px;}
.y64{bottom:708.793500px;}
.yb3{bottom:711.847500px;}
.y25{bottom:724.939500px;}
.y8a{bottom:728.554500px;}
.y63{bottom:729.117000px;}
.yb2{bottom:732.171000px;}
.yd4{bottom:745.263000px;}
.y24{bottom:745.264500px;}
.y2{bottom:747.385500px;}
.y89{bottom:748.879500px;}
.y62{bottom:749.442000px;}
.yb1{bottom:752.496000px;}
.y23{bottom:765.588000px;}
.y88{bottom:769.203000px;}
.y61{bottom:769.765500px;}
.yb0{bottom:772.819500px;}
.y22{bottom:785.911500px;}
.y87{bottom:789.526500px;}
.y60{bottom:790.089000px;}
.yaf{bottom:793.143000px;}
.y1{bottom:803.425500px;}
.y21{bottom:806.235000px;}
.y86{bottom:809.850000px;}
.y5f{bottom:810.412500px;}
.yae{bottom:813.466500px;}
.y20{bottom:826.558500px;}
.y85{bottom:830.173500px;}
.y5e{bottom:830.736000px;}
.yad{bottom:833.790000px;}
.yd3{bottom:846.882000px;}
.y1f{bottom:846.883500px;}
.y84{bottom:850.498500px;}
.y5d{bottom:851.061000px;}
.yac{bottom:854.115000px;}
.y1e{bottom:867.207000px;}
.y83{bottom:870.822000px;}
.yab{bottom:874.438500px;}
.y1d{bottom:887.530500px;}
.y82{bottom:891.145500px;}
.yaa{bottom:894.762000px;}
.y1c{bottom:940.741500px;}
.h9{height:29.409792px;}
.h6{height:44.114688px;}
.h4{height:53.672772px;}
.h7{height:55.324627px;}
.h5{height:63.697128px;}
.ha{height:67.484316px;}
.h8{height:67.490316px;}
.h3{height:70.583304px;}
.h2{height:91.741500px;}
.h0{height:1020.465000px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:87.165000px;}
.x7{left:102.306000px;}
.x2{left:103.528500px;}
.x8{left:107.340000px;}
.x4{left:120.537000px;}
.x5{left:138.189000px;}
.x3{left:152.172000px;}
.x6{left:356.418000px;}
.x9{left:611.052000px;}
@media print{
.v2{vertical-align:-17.936000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.824000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:2.655155pt;}
.ls2{letter-spacing:2.656341pt;}
.ls9{letter-spacing:2.656905pt;}
.ls7{letter-spacing:2.658219pt;}
.ls6{letter-spacing:2.659772pt;}
.ls1{letter-spacing:14.406251pt;}
.ls3{letter-spacing:15.649870pt;}
.ls5{letter-spacing:21.742964pt;}
.ls4{letter-spacing:22.270963pt;}
.ws82{word-spacing:-32.900619pt;}
.ws3d{word-spacing:-25.309112pt;}
.wsa3{word-spacing:-23.563656pt;}
.ws0{word-spacing:-19.836000pt;}
.wsa6{word-spacing:-15.534558pt;}
.ws5c{word-spacing:-15.476377pt;}
.ws8e{word-spacing:-15.360013pt;}
.ws52{word-spacing:-15.069103pt;}
.ws5e{word-spacing:-14.836376pt;}
.ws1d{word-spacing:-14.778194pt;}
.ws4a{word-spacing:-14.720012pt;}
.wsa7{word-spacing:-14.603649pt;}
.wsc8{word-spacing:-14.312739pt;}
.ws1{word-spacing:-14.154917pt;}
.ws7f{word-spacing:-14.138194pt;}
.ws6c{word-spacing:-14.080012pt;}
.ws6d{word-spacing:-14.021830pt;}
.ws1b{word-spacing:-13.905466pt;}
.ws5{word-spacing:-13.772352pt;}
.ws70{word-spacing:-13.730921pt;}
.ws3c{word-spacing:-13.672739pt;}
.ws30{word-spacing:-13.556375pt;}
.ws80{word-spacing:-13.498193pt;}
.ws97{word-spacing:-13.381829pt;}
.ws16{word-spacing:-13.323647pt;}
.ws5d{word-spacing:-13.265466pt;}
.ws36{word-spacing:-13.032738pt;}
.wsc{word-spacing:-12.974556pt;}
.ws6b{word-spacing:-12.916374pt;}
.wsa8{word-spacing:-12.858193pt;}
.ws22{word-spacing:-12.625465pt;}
.ws5a{word-spacing:-12.567283pt;}
.ws42{word-spacing:-12.509101pt;}
.ws3a{word-spacing:-12.392738pt;}
.ws23{word-spacing:-12.334556pt;}
.wsa{word-spacing:-12.276374pt;}
.wsbb{word-spacing:-12.218192pt;}
.ws4e{word-spacing:-12.160010pt;}
.ws49{word-spacing:-12.101828pt;}
.ws64{word-spacing:-11.985465pt;}
.ws7e{word-spacing:-11.927283pt;}
.ws59{word-spacing:-11.869101pt;}
.ws65{word-spacing:-11.810919pt;}
.wsb0{word-spacing:-11.757206pt;}
.ws69{word-spacing:-11.752737pt;}
.ws25{word-spacing:-11.694555pt;}
.ws34{word-spacing:-11.636373pt;}
.ws72{word-spacing:-11.578191pt;}
.wsa2{word-spacing:-11.520010pt;}
.ws76{word-spacing:-11.461828pt;}
.ws57{word-spacing:-11.403646pt;}
.ws67{word-spacing:-11.345464pt;}
.ws51{word-spacing:-11.287282pt;}
.ws98{word-spacing:-11.229100pt;}
.ws9b{word-spacing:-11.170918pt;}
.ws39{word-spacing:-11.112737pt;}
.ws15{word-spacing:-11.094912pt;}
.ws38{word-spacing:-11.054555pt;}
.wsf{word-spacing:-10.998784pt;}
.ws1e{word-spacing:-10.996373pt;}
.ws8b{word-spacing:-10.938191pt;}
.ws4b{word-spacing:-10.880009pt;}
.wsa0{word-spacing:-10.822523pt;}
.ws4{word-spacing:-10.821827pt;}
.ws8c{word-spacing:-10.765206pt;}
.ws3{word-spacing:-10.763645pt;}
.wsc0{word-spacing:-10.761887pt;}
.wsc6{word-spacing:-10.759873pt;}
.ws28{word-spacing:-10.705463pt;}
.ws1a{word-spacing:-10.647282pt;}
.ws50{word-spacing:-10.530918pt;}
.ws8{word-spacing:-10.472736pt;}
.ws19{word-spacing:-10.356372pt;}
.ws71{word-spacing:-10.240009pt;}
.ws6f{word-spacing:-10.123645pt;}
.wsce{word-spacing:-10.080586pt;}
.ws78{word-spacing:-10.007281pt;}
.ws53{word-spacing:-9.949099pt;}
.ws58{word-spacing:-9.832735pt;}
.wsad{word-spacing:-9.794539pt;}
.wsac{word-spacing:-9.789770pt;}
.wsa4{word-spacing:-9.774554pt;}
.wsb1{word-spacing:-9.716372pt;}
.ws26{word-spacing:-9.658190pt;}
.wsb5{word-spacing:-9.600008pt;}
.ws10{word-spacing:-9.564160pt;}
.ws7b{word-spacing:-9.541826pt;}
.ws96{word-spacing:-9.425462pt;}
.ws7{word-spacing:-9.367281pt;}
.ws21{word-spacing:-9.309099pt;}
.ws2f{word-spacing:-9.250917pt;}
.ws8a{word-spacing:-9.192735pt;}
.ws92{word-spacing:-9.134553pt;}
.ws7c{word-spacing:-9.076371pt;}
.ws9e{word-spacing:-9.018189pt;}
.ws9f{word-spacing:-8.901826pt;}
.ws48{word-spacing:-8.894669pt;}
.ws31{word-spacing:-8.846848pt;}
.ws73{word-spacing:-8.843644pt;}
.ws29{word-spacing:-8.727280pt;}
.ws2a{word-spacing:-8.669098pt;}
.ws4d{word-spacing:-8.552734pt;}
.ws91{word-spacing:-8.494553pt;}
.ws41{word-spacing:-8.436371pt;}
.ws37{word-spacing:-8.320007pt;}
.ws3b{word-spacing:-8.261825pt;}
.ws17{word-spacing:-8.145461pt;}
.ws95{word-spacing:-8.087279pt;}
.wsb{word-spacing:-8.029098pt;}
.ws4f{word-spacing:-7.970916pt;}
.ws1f{word-spacing:-7.912734pt;}
.wsd{word-spacing:-7.842611pt;}
.ws6{word-spacing:-7.796370pt;}
.ws20{word-spacing:-7.680006pt;}
.ws9{word-spacing:-7.563643pt;}
.ws75{word-spacing:-7.505461pt;}
.ws8d{word-spacing:-7.447279pt;}
.ws1c{word-spacing:-7.389097pt;}
.wsbc{word-spacing:-7.360310pt;}
.ws5b{word-spacing:-7.330915pt;}
.wsbd{word-spacing:-7.319873pt;}
.ws77{word-spacing:-7.214551pt;}
.ws66{word-spacing:-7.156370pt;}
.ws7d{word-spacing:-7.040006pt;}
.ws74{word-spacing:-6.981824pt;}
.wscd{word-spacing:-6.939725pt;}
.ws99{word-spacing:-6.923642pt;}
.ws62{word-spacing:-6.865460pt;}
.ws6a{word-spacing:-6.807278pt;}
.ws3e{word-spacing:-6.749097pt;}
.ws68{word-spacing:-6.690915pt;}
.wsb9{word-spacing:-6.632733pt;}
.ws2{word-spacing:-6.574551pt;}
.ws27{word-spacing:-6.458187pt;}
.ws56{word-spacing:-6.400005pt;}
.wsc1{word-spacing:-6.397323pt;}
.ws45{word-spacing:-6.341823pt;}
.ws40{word-spacing:-6.283642pt;}
.ws12{word-spacing:-6.264525pt;}
.ws13{word-spacing:-6.257783pt;}
.ws33{word-spacing:-6.225460pt;}
.ws63{word-spacing:-6.167278pt;}
.ws54{word-spacing:-6.109096pt;}
.wsc7{word-spacing:-6.050914pt;}
.ws60{word-spacing:-5.992732pt;}
.ws61{word-spacing:-5.876369pt;}
.ws81{word-spacing:-5.818187pt;}
.ws18{word-spacing:-5.760005pt;}
.ws32{word-spacing:-5.701823pt;}
.ws55{word-spacing:-5.643641pt;}
.wsbf{word-spacing:-5.527277pt;}
.wsab{word-spacing:-5.469095pt;}
.ws47{word-spacing:-5.451571pt;}
.ws4c{word-spacing:-5.410914pt;}
.ws7a{word-spacing:-5.294550pt;}
.ws5f{word-spacing:-5.236368pt;}
.ws9a{word-spacing:-5.178186pt;}
.ws46{word-spacing:-5.120004pt;}
.wsb2{word-spacing:-5.061822pt;}
.wsb4{word-spacing:-5.003641pt;}
.ws43{word-spacing:-4.945459pt;}
.wsba{word-spacing:-4.887277pt;}
.ws11{word-spacing:-4.829901pt;}
.wsaa{word-spacing:-4.829095pt;}
.ws35{word-spacing:-4.770913pt;}
.ws79{word-spacing:-4.712731pt;}
.ws3f{word-spacing:-4.596367pt;}
.ws44{word-spacing:-4.480004pt;}
.ws24{word-spacing:-4.421822pt;}
.ws2e{word-spacing:-4.305458pt;}
.ws2d{word-spacing:-4.247276pt;}
.wsa9{word-spacing:-4.130913pt;}
.wse{word-spacing:-4.064768pt;}
.ws2b{word-spacing:-3.723639pt;}
.ws87{word-spacing:-3.607276pt;}
.wsa1{word-spacing:-3.490912pt;}
.wsa5{word-spacing:-3.432730pt;}
.wsb7{word-spacing:-3.374548pt;}
.wsb3{word-spacing:-3.316366pt;}
.ws88{word-spacing:-3.025457pt;}
.ws9c{word-spacing:-2.618184pt;}
.ws93{word-spacing:-2.327275pt;}
.wsb6{word-spacing:-2.269093pt;}
.ws6e{word-spacing:-2.094547pt;}
.wsb8{word-spacing:-1.687274pt;}
.wsaf{word-spacing:-1.512729pt;}
.ws2c{word-spacing:-1.454547pt;}
.ws89{word-spacing:-1.280001pt;}
.wsc9{word-spacing:-1.105455pt;}
.wsbe{word-spacing:-1.047274pt;}
.ws9d{word-spacing:-0.872728pt;}
.ws86{word-spacing:-0.698182pt;}
.ws94{word-spacing:-0.640001pt;}
.ws83{word-spacing:-0.290909pt;}
.ws14{word-spacing:0.000000pt;}
.wsc2{word-spacing:0.232727pt;}
.ws90{word-spacing:0.872728pt;}
.wsc3{word-spacing:1.338183pt;}
.wsc5{word-spacing:1.396365pt;}
.ws84{word-spacing:1.454547pt;}
.wsae{word-spacing:1.624973pt;}
.wsca{word-spacing:1.920002pt;}
.wscc{word-spacing:1.978183pt;}
.ws85{word-spacing:2.409458pt;}
.ws8f{word-spacing:2.676366pt;}
.wsc4{word-spacing:3.025457pt;}
.wscb{word-spacing:3.607276pt;}
._a{margin-left:-4.406407pt;}
._3{margin-left:-3.458659pt;}
._d{margin-left:-2.210911pt;}
._2{margin-left:-1.047274pt;}
._0{width:1.147696pt;}
._13{width:2.066364pt;}
._9{width:3.099861pt;}
._14{width:4.215834pt;}
._15{width:10.240009pt;}
._f{width:11.927283pt;}
._c{width:13.323647pt;}
._4{width:14.537526pt;}
._8{width:17.167667pt;}
._e{width:18.734561pt;}
._7{width:20.252112pt;}
._5{width:21.423718pt;}
._12{width:22.345927pt;}
._10{width:24.455753pt;}
._6{width:26.205798pt;}
._11{width:27.889716pt;}
._b{width:29.986248pt;}
._1{width:38.256533pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:46.545600pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:59.972495pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:37.845333pt;}
.y42{bottom:50.138667pt;}
.y1a{bottom:50.985333pt;}
.y19{bottom:62.674667pt;}
.y18{bottom:74.365333pt;}
.y17{bottom:86.054667pt;}
.ya9{bottom:87.570667pt;}
.yd1{bottom:90.785333pt;}
.ya8{bottom:105.637333pt;}
.y81{bottom:106.137333pt;}
.y41{bottom:108.597333pt;}
.yd0{bottom:108.852000pt;}
.y5c{bottom:113.372000pt;}
.yda{bottom:120.489333pt;}
.ya7{bottom:123.702667pt;}
.y80{bottom:124.202667pt;}
.ycf{bottom:126.917333pt;}
.y5b{bottom:127.984000pt;}
.y40{bottom:130.180000pt;}
.y16{bottom:135.053333pt;}
.yd9{bottom:138.554667pt;}
.ya6{bottom:141.768000pt;}
.y7f{bottom:142.268000pt;}
.y5a{bottom:142.596000pt;}
.yce{bottom:144.982667pt;}
.y3f{bottom:148.245333pt;}
.y59{bottom:152.724000pt;}
.y15{bottom:153.120000pt;}
.yd8{bottom:156.620000pt;}
.ya5{bottom:159.833333pt;}
.y7e{bottom:160.333333pt;}
.ycd{bottom:163.048000pt;}
.y3e{bottom:166.312000pt;}
.y14{bottom:171.185333pt;}
.y58{bottom:171.818667pt;}
.yd7{bottom:174.685333pt;}
.ya4{bottom:177.898667pt;}
.y7d{bottom:178.398667pt;}
.ycc{bottom:181.113333pt;}
.y3d{bottom:184.377333pt;}
.y13{bottom:189.250667pt;}
.yd6{bottom:192.750667pt;}
.ya3{bottom:195.964000pt;}
.y7c{bottom:196.464000pt;}
.yd2{bottom:196.465333pt;}
.ycb{bottom:199.178667pt;}
.y3c{bottom:202.442667pt;}
.y12{bottom:207.316000pt;}
.y57{bottom:210.817333pt;}
.ya2{bottom:214.030667pt;}
.y7b{bottom:214.530667pt;}
.yca{bottom:217.245333pt;}
.y3b{bottom:220.508000pt;}
.y11{bottom:225.381333pt;}
.y56{bottom:228.882667pt;}
.ya1{bottom:232.096000pt;}
.y7a{bottom:232.596000pt;}
.yc9{bottom:235.310667pt;}
.y3a{bottom:238.573333pt;}
.y10{bottom:243.448000pt;}
.y55{bottom:246.948000pt;}
.ya0{bottom:250.161333pt;}
.y79{bottom:250.661333pt;}
.yc8{bottom:253.376000pt;}
.y39{bottom:256.640000pt;}
.yf{bottom:261.513333pt;}
.y54{bottom:265.013333pt;}
.y9f{bottom:268.226667pt;}
.y78{bottom:268.726667pt;}
.yc7{bottom:271.441333pt;}
.y38{bottom:274.705333pt;}
.ye{bottom:279.578667pt;}
.y53{bottom:283.078667pt;}
.y9e{bottom:286.292000pt;}
.y77{bottom:286.792000pt;}
.yc6{bottom:289.506667pt;}
.y37{bottom:292.770667pt;}
.yd{bottom:297.644000pt;}
.y52{bottom:301.144000pt;}
.yd5{bottom:301.145333pt;}
.y9d{bottom:304.358667pt;}
.y76{bottom:304.858667pt;}
.yc5{bottom:307.573333pt;}
.y36{bottom:310.836000pt;}
.y51{bottom:319.210667pt;}
.y9c{bottom:322.424000pt;}
.y75{bottom:322.924000pt;}
.yc4{bottom:325.638667pt;}
.y35{bottom:328.901333pt;}
.yc{bottom:330.061333pt;}
.y50{bottom:337.276000pt;}
.y9b{bottom:340.489333pt;}
.y74{bottom:340.989333pt;}
.yc3{bottom:343.704000pt;}
.y34{bottom:346.968000pt;}
.y4f{bottom:355.341333pt;}
.y9a{bottom:358.554667pt;}
.y73{bottom:359.054667pt;}
.yc2{bottom:361.769333pt;}
.y33{bottom:365.033333pt;}
.y4e{bottom:373.406667pt;}
.y99{bottom:376.620000pt;}
.y72{bottom:377.120000pt;}
.yc1{bottom:379.834667pt;}
.y32{bottom:383.098667pt;}
.y4d{bottom:391.472000pt;}
.y98{bottom:394.686667pt;}
.y71{bottom:395.186667pt;}
.yc0{bottom:397.901333pt;}
.y31{bottom:401.164000pt;}
.y4c{bottom:409.538667pt;}
.y97{bottom:412.752000pt;}
.y70{bottom:413.252000pt;}
.yb{bottom:414.045333pt;}
.ybf{bottom:415.966667pt;}
.y30{bottom:419.229333pt;}
.y4b{bottom:427.604000pt;}
.y96{bottom:430.817333pt;}
.y6f{bottom:431.317333pt;}
.ybe{bottom:434.032000pt;}
.ya{bottom:436.096000pt;}
.y2f{bottom:437.296000pt;}
.y4a{bottom:445.669333pt;}
.y95{bottom:448.882667pt;}
.y6e{bottom:449.382667pt;}
.ybd{bottom:452.097333pt;}
.y49{bottom:463.734667pt;}
.y94{bottom:466.948000pt;}
.y6d{bottom:467.448000pt;}
.y2e{bottom:468.581333pt;}
.y9{bottom:470.101333pt;}
.ybc{bottom:470.162667pt;}
.y48{bottom:481.800000pt;}
.y93{bottom:485.014667pt;}
.y6c{bottom:485.514667pt;}
.y2d{bottom:486.646667pt;}
.ybb{bottom:488.229333pt;}
.y8{bottom:492.152000pt;}
.y47{bottom:499.866667pt;}
.y92{bottom:503.080000pt;}
.y6b{bottom:503.580000pt;}
.y2c{bottom:504.712000pt;}
.yba{bottom:506.294667pt;}
.y46{bottom:517.932000pt;}
.y91{bottom:521.145333pt;}
.y6a{bottom:521.645333pt;}
.y2b{bottom:522.777333pt;}
.yb9{bottom:524.360000pt;}
.y7{bottom:526.158667pt;}
.y45{bottom:535.997333pt;}
.y90{bottom:539.210667pt;}
.y69{bottom:539.710667pt;}
.y2a{bottom:540.842667pt;}
.yb8{bottom:542.425333pt;}
.y6{bottom:548.209333pt;}
.y44{bottom:554.062667pt;}
.y8f{bottom:557.276000pt;}
.y68{bottom:557.776000pt;}
.y29{bottom:558.909333pt;}
.yb7{bottom:560.490667pt;}
.y43{bottom:572.128000pt;}
.y8e{bottom:575.342667pt;}
.y67{bottom:575.842667pt;}
.yb6{bottom:578.557333pt;}
.y5{bottom:582.214667pt;}
.y28{bottom:590.194667pt;}
.y8d{bottom:593.408000pt;}
.y66{bottom:593.908000pt;}
.yb5{bottom:596.622667pt;}
.y4{bottom:600.280000pt;}
.y27{bottom:608.260000pt;}
.y8c{bottom:611.473333pt;}
.y65{bottom:611.973333pt;}
.yb4{bottom:614.688000pt;}
.y3{bottom:622.330667pt;}
.y26{bottom:626.325333pt;}
.y8b{bottom:629.538667pt;}
.y64{bottom:630.038667pt;}
.yb3{bottom:632.753333pt;}
.y25{bottom:644.390667pt;}
.y8a{bottom:647.604000pt;}
.y63{bottom:648.104000pt;}
.yb2{bottom:650.818667pt;}
.yd4{bottom:662.456000pt;}
.y24{bottom:662.457333pt;}
.y2{bottom:664.342667pt;}
.y89{bottom:665.670667pt;}
.y62{bottom:666.170667pt;}
.yb1{bottom:668.885333pt;}
.y23{bottom:680.522667pt;}
.y88{bottom:683.736000pt;}
.y61{bottom:684.236000pt;}
.yb0{bottom:686.950667pt;}
.y22{bottom:698.588000pt;}
.y87{bottom:701.801333pt;}
.y60{bottom:702.301333pt;}
.yaf{bottom:705.016000pt;}
.y1{bottom:714.156000pt;}
.y21{bottom:716.653333pt;}
.y86{bottom:719.866667pt;}
.y5f{bottom:720.366667pt;}
.yae{bottom:723.081333pt;}
.y20{bottom:734.718667pt;}
.y85{bottom:737.932000pt;}
.y5e{bottom:738.432000pt;}
.yad{bottom:741.146667pt;}
.yd3{bottom:752.784000pt;}
.y1f{bottom:752.785333pt;}
.y84{bottom:755.998667pt;}
.y5d{bottom:756.498667pt;}
.yac{bottom:759.213333pt;}
.y1e{bottom:770.850667pt;}
.y83{bottom:774.064000pt;}
.yab{bottom:777.278667pt;}
.y1d{bottom:788.916000pt;}
.y82{bottom:792.129333pt;}
.yaa{bottom:795.344000pt;}
.y1c{bottom:836.214667pt;}
.h9{height:26.142037pt;}
.h6{height:39.213056pt;}
.h4{height:47.709131pt;}
.h7{height:49.177446pt;}
.h5{height:56.619669pt;}
.ha{height:59.986059pt;}
.h8{height:59.991392pt;}
.h3{height:62.740715pt;}
.h2{height:81.548000pt;}
.h0{height:907.080000pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:77.480000pt;}
.x7{left:90.938667pt;}
.x2{left:92.025333pt;}
.x8{left:95.413333pt;}
.x4{left:107.144000pt;}
.x5{left:122.834667pt;}
.x3{left:135.264000pt;}
.x6{left:316.816000pt;}
.x9{left:543.157333pt;}
}




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