
    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_a9ab6f4804f396c3358a3711.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_7fa63743bb9e1efcb70cd239.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.664000;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_2a668e889574c86afd889cd2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-14.943900px;}
.ws1b{word-spacing:-2.032370px;}
.ws26{word-spacing:-1.554166px;}
.wsbc{word-spacing:-1.434614px;}
.wsb4{word-spacing:-1.315063px;}
.ws41{word-spacing:-1.255288px;}
.ws94{word-spacing:-1.135736px;}
.ws8f{word-spacing:-1.016185px;}
.ws23{word-spacing:-0.956410px;}
.ws75{word-spacing:-0.896634px;}
.ws25{word-spacing:-0.836858px;}
.wsc7{word-spacing:-0.777083px;}
.wsc3{word-spacing:-0.657532px;}
.wsa5{word-spacing:-0.597756px;}
.ws96{word-spacing:-0.537980px;}
.ws1f{word-spacing:-0.358654px;}
.ws8c{word-spacing:-0.239102px;}
.ws8d{word-spacing:-0.179327px;}
.ws95{word-spacing:-0.119551px;}
.ws4f{word-spacing:-0.059776px;}
.ws6{word-spacing:0.000000px;}
.ws3a{word-spacing:0.059776px;}
.ws9a{word-spacing:0.179327px;}
.ws3f{word-spacing:0.239102px;}
.ws5{word-spacing:0.298878px;}
.ws97{word-spacing:0.358654px;}
.ws33{word-spacing:0.478205px;}
.ws32{word-spacing:0.537980px;}
.ws38{word-spacing:0.597756px;}
.ws3{word-spacing:0.657532px;}
.ws54{word-spacing:0.717307px;}
.wsc8{word-spacing:0.777083px;}
.ws7d{word-spacing:0.836858px;}
.ws14{word-spacing:0.896634px;}
.ws5f{word-spacing:0.956410px;}
.ws76{word-spacing:1.075961px;}
.ws5b{word-spacing:1.135736px;}
.ws59{word-spacing:1.195512px;}
.ws36{word-spacing:1.255288px;}
.ws11{word-spacing:1.315063px;}
.wsbd{word-spacing:1.434614px;}
.wsbe{word-spacing:1.554166px;}
.ws72{word-spacing:1.613941px;}
.ws4d{word-spacing:1.853044px;}
.ws44{word-spacing:1.912819px;}
.ws5d{word-spacing:1.972595px;}
.wsad{word-spacing:2.032370px;}
.ws90{word-spacing:2.092146px;}
.ws27{word-spacing:2.151922px;}
.ws9b{word-spacing:2.211697px;}
.ws68{word-spacing:2.271473px;}
.wsc4{word-spacing:2.391024px;}
.ws7b{word-spacing:2.450800px;}
.ws5e{word-spacing:2.510575px;}
.wsa4{word-spacing:2.570351px;}
.ws30{word-spacing:2.630126px;}
.ws42{word-spacing:2.689902px;}
.ws8{word-spacing:2.749678px;}
.ws6d{word-spacing:2.988780px;}
.wsac{word-spacing:3.048556px;}
.ws4c{word-spacing:3.168107px;}
.ws51{word-spacing:3.227882px;}
.ws70{word-spacing:3.287658px;}
.ws2c{word-spacing:3.347434px;}
.wsbb{word-spacing:3.407209px;}
.ws7c{word-spacing:3.526760px;}
.ws21{word-spacing:3.586536px;}
.ws2{word-spacing:3.646312px;}
.ws6e{word-spacing:3.706087px;}
.ws7e{word-spacing:3.765863px;}
.wsc6{word-spacing:3.825638px;}
.ws5a{word-spacing:3.885414px;}
.ws8e{word-spacing:3.945190px;}
.ws9{word-spacing:4.004965px;}
.ws80{word-spacing:4.124516px;}
.ws6a{word-spacing:4.184292px;}
.wsca{word-spacing:4.244068px;}
.wsab{word-spacing:4.303843px;}
.ws61{word-spacing:4.363619px;}
.ws3e{word-spacing:4.423394px;}
.ws8a{word-spacing:4.542946px;}
.ws28{word-spacing:4.662497px;}
.ws1e{word-spacing:4.782048px;}
.ws53{word-spacing:4.841824px;}
.ws49{word-spacing:4.901599px;}
.wsa3{word-spacing:5.021150px;}
.ws87{word-spacing:5.080926px;}
.ws3d{word-spacing:5.200477px;}
.ws71{word-spacing:5.320028px;}
.ws10{word-spacing:5.379804px;}
.ws8b{word-spacing:5.439580px;}
.wsb0{word-spacing:5.559131px;}
.wsb2{word-spacing:5.618906px;}
.ws18{word-spacing:5.678682px;}
.wsc5{word-spacing:5.738458px;}
.wsb7{word-spacing:5.858009px;}
.ws37{word-spacing:5.917784px;}
.wsd{word-spacing:5.977560px;}
.ws9d{word-spacing:6.037336px;}
.wsb6{word-spacing:6.097111px;}
.ws40{word-spacing:6.156887px;}
.ws60{word-spacing:6.276438px;}
.wsa0{word-spacing:6.336214px;}
.wsb3{word-spacing:6.395989px;}
.wsc1{word-spacing:6.515540px;}
.wsbf{word-spacing:6.575316px;}
.wsa1{word-spacing:6.635092px;}
.ws4b{word-spacing:6.694867px;}
.ws3b{word-spacing:6.814418px;}
.wsa6{word-spacing:6.874194px;}
.ws46{word-spacing:6.993745px;}
.ws31{word-spacing:7.053521px;}
.ws52{word-spacing:7.173072px;}
.ws57{word-spacing:7.232848px;}
.ws74{word-spacing:7.292623px;}
.ws39{word-spacing:7.352399px;}
.ws29{word-spacing:7.412174px;}
.ws86{word-spacing:7.471950px;}
.ws77{word-spacing:7.531726px;}
.ws9e{word-spacing:7.591501px;}
.ws89{word-spacing:7.830604px;}
.ws1c{word-spacing:7.950155px;}
.ws12{word-spacing:8.009930px;}
.ws56{word-spacing:8.069706px;}
.wsae{word-spacing:8.189257px;}
.wsb5{word-spacing:8.249033px;}
.ws7f{word-spacing:8.368584px;}
.ws35{word-spacing:8.428360px;}
.wsf{word-spacing:8.488135px;}
.ws4{word-spacing:8.547911px;}
.ws47{word-spacing:8.667462px;}
.ws2d{word-spacing:8.787013px;}
.wsba{word-spacing:8.906564px;}
.ws34{word-spacing:8.966340px;}
.ws1d{word-spacing:9.026116px;}
.ws91{word-spacing:9.085891px;}
.ws43{word-spacing:9.205442px;}
.ws22{word-spacing:9.324994px;}
.ws98{word-spacing:9.444545px;}
.wsc9{word-spacing:9.504320px;}
.ws13{word-spacing:9.564096px;}
.ws2a{word-spacing:9.623872px;}
.ws69{word-spacing:9.803198px;}
.ws24{word-spacing:9.922750px;}
.ws82{word-spacing:9.982525px;}
.ws1{word-spacing:10.102076px;}
.wsb9{word-spacing:10.161852px;}
.ws4e{word-spacing:10.221628px;}
.ws1a{word-spacing:10.341179px;}
.ws84{word-spacing:10.400954px;}
.ws62{word-spacing:10.520506px;}
.ws50{word-spacing:10.580281px;}
.wsc2{word-spacing:10.699832px;}
.ws6f{word-spacing:10.759608px;}
.ws17{word-spacing:10.819384px;}
.wsb1{word-spacing:10.879159px;}
.ws4a{word-spacing:10.998710px;}
.ws2e{word-spacing:11.237813px;}
.ws67{word-spacing:11.417140px;}
.ws3c{word-spacing:11.536691px;}
.wsc0{word-spacing:11.596466px;}
.ws45{word-spacing:11.656242px;}
.ws16{word-spacing:11.775793px;}
.wsb{word-spacing:11.835569px;}
.ws5c{word-spacing:12.134447px;}
.ws88{word-spacing:12.313774px;}
.ws2f{word-spacing:12.373549px;}
.wsa8{word-spacing:12.433325px;}
.ws6c{word-spacing:12.493100px;}
.wsa2{word-spacing:12.552876px;}
.ws81{word-spacing:12.612652px;}
.ws78{word-spacing:12.851754px;}
.ws6b{word-spacing:12.971305px;}
.ws85{word-spacing:13.210408px;}
.ws99{word-spacing:13.389734px;}
.ws48{word-spacing:13.449510px;}
.ws64{word-spacing:13.509286px;}
.ws15{word-spacing:13.628837px;}
.wsb8{word-spacing:13.867939px;}
.wsaf{word-spacing:14.047266px;}
.ws58{word-spacing:14.226593px;}
.ws7{word-spacing:14.884124px;}
.wsa{word-spacing:14.943900px;}
.ws79{word-spacing:15.422105px;}
.ws19{word-spacing:15.601432px;}
.wsc{word-spacing:15.720983px;}
.ws63{word-spacing:15.780758px;}
.ws9f{word-spacing:16.019861px;}
.ws92{word-spacing:16.258963px;}
.ws93{word-spacing:16.856719px;}
.ws9c{word-spacing:17.215373px;}
.ws2b{word-spacing:17.633802px;}
.ws7a{word-spacing:17.693578px;}
.ws66{word-spacing:17.932680px;}
.ws65{word-spacing:19.307519px;}
.ws20{word-spacing:20.084602px;}
.wsa7{word-spacing:20.204153px;}
.ws83{word-spacing:20.682358px;}
.ws55{word-spacing:21.100787px;}
.wsaa{word-spacing:21.638767px;}
.ws73{word-spacing:22.714728px;}
.wsa9{word-spacing:23.192933px;}
.ws0{word-spacing:23.814659px;}
._0{margin-left:-8.033861px;}
._22{margin-left:-6.945920px;}
._21{margin-left:-5.260253px;}
._3{margin-left:-4.184292px;}
._17{margin-left:-3.168107px;}
._1{margin-left:-1.721542px;}
._26{width:15.003676px;}
._1e{width:17.095822px;}
._5{width:18.530436px;}
._24{width:19.546621px;}
._13{width:20.981236px;}
._b{width:21.985470px;}
._6{width:24.029791px;}
._a{width:25.524181px;}
._d{width:26.899020px;}
._18{width:28.154308px;}
._2{width:29.648772px;}
._1f{width:31.441966px;}
._14{width:32.505976px;}
._1b{width:34.131868px;}
._9{width:35.506706px;}
._1a{width:37.060798px;}
._12{width:38.734589px;}
._11{width:39.989876px;}
._15{width:41.006062px;}
._1d{width:42.608052px;}
._4{width:44.174168px;}
._e{width:45.728334px;}
._c{width:47.031446px;}
._8{width:49.434421px;}
._f{width:50.809260px;}
._28{width:52.961182px;}
._7{width:54.276245px;}
._16{width:55.698834px;}
._10{width:58.699639px;}
._25{width:59.835376px;}
._23{width:61.210214px;}
._19{width:63.409961px;}
._27{width:69.638574px;}
._20{width:76.393217px;}
._1c{width:82.179499px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.842800px;}
.fs2{font-size:59.775600px;}
.fs0{font-size:95.641200px;}
.y0{bottom:0.000000px;}
.ycd{bottom:113.784000px;}
.y7e{bottom:113.785500px;}
.y44{bottom:121.818000px;}
.y36{bottom:121.819500px;}
.y9e{bottom:122.751000px;}
.ycc{bottom:131.716500px;}
.y7d{bottom:131.718000px;}
.y43{bottom:139.750500px;}
.y35{bottom:139.752000px;}
.y9d{bottom:140.683500px;}
.y7c{bottom:149.650500px;}
.y34{bottom:157.684500px;}
.y9c{bottom:158.616000px;}
.yc6{bottom:158.617500px;}
.y7b{bottom:167.583000px;}
.y33{bottom:175.617000px;}
.y9b{bottom:176.548500px;}
.yc5{bottom:176.550000px;}
.y7a{bottom:185.515500px;}
.y32{bottom:193.549500px;}
.y9a{bottom:194.482500px;}
.y79{bottom:203.448000px;}
.y31{bottom:211.482000px;}
.y99{bottom:212.415000px;}
.ycb{bottom:221.380500px;}
.y78{bottom:221.382000px;}
.y42{bottom:229.414500px;}
.y30{bottom:229.416000px;}
.y98{bottom:230.347500px;}
.yca{bottom:239.313000px;}
.y77{bottom:239.314500px;}
.y41{bottom:247.347000px;}
.y2f{bottom:247.348500px;}
.y97{bottom:248.280000px;}
.y76{bottom:257.247000px;}
.y2e{bottom:265.281000px;}
.y96{bottom:266.212500px;}
.yc4{bottom:266.214000px;}
.y75{bottom:275.179500px;}
.y2d{bottom:283.213500px;}
.y95{bottom:284.145000px;}
.yc3{bottom:284.146500px;}
.y74{bottom:293.112000px;}
.y2c{bottom:301.146000px;}
.y94{bottom:302.079000px;}
.y73{bottom:311.044500px;}
.y2b{bottom:319.078500px;}
.y93{bottom:320.011500px;}
.yc9{bottom:328.977000px;}
.y72{bottom:328.978500px;}
.y40{bottom:337.011000px;}
.y2a{bottom:337.012500px;}
.y92{bottom:337.944000px;}
.y71{bottom:346.911000px;}
.y29{bottom:354.945000px;}
.y91{bottom:355.876500px;}
.y70{bottom:364.843500px;}
.y28{bottom:372.877500px;}
.y90{bottom:373.809000px;}
.yc2{bottom:373.810500px;}
.y6f{bottom:382.776000px;}
.y27{bottom:390.810000px;}
.y8f{bottom:391.741500px;}
.yd0{bottom:391.743000px;}
.y6e{bottom:400.708500px;}
.y26{bottom:408.742500px;}
.y8e{bottom:409.675500px;}
.yc8{bottom:418.641000px;}
.y6d{bottom:418.642500px;}
.y25{bottom:426.675000px;}
.y8d{bottom:427.608000px;}
.yc7{bottom:436.573500px;}
.y6c{bottom:436.575000px;}
.y3f{bottom:444.607500px;}
.y24{bottom:444.609000px;}
.y8c{bottom:445.540500px;}
.y6b{bottom:454.507500px;}
.y23{bottom:462.541500px;}
.y8b{bottom:463.473000px;}
.y6a{bottom:472.440000px;}
.y22{bottom:480.474000px;}
.y8a{bottom:481.405500px;}
.ycf{bottom:481.407000px;}
.yc1{bottom:490.372500px;}
.y21{bottom:498.406500px;}
.y89{bottom:499.338000px;}
.yce{bottom:499.339500px;}
.yc0{bottom:508.305000px;}
.y20{bottom:516.339000px;}
.y69{bottom:517.272000px;}
.ybf{bottom:526.239000px;}
.y3e{bottom:534.271500px;}
.y1f{bottom:534.273000px;}
.y68{bottom:535.204500px;}
.ybe{bottom:544.171500px;}
.y3d{bottom:552.204000px;}
.y1e{bottom:552.205500px;}
.y67{bottom:553.137000px;}
.ybd{bottom:562.104000px;}
.y1d{bottom:570.138000px;}
.y66{bottom:571.069500px;}
.ybc{bottom:580.036500px;}
.y1c{bottom:588.070500px;}
.y88{bottom:589.002000px;}
.y65{bottom:589.003500px;}
.ybb{bottom:597.969000px;}
.y1b{bottom:606.003000px;}
.y64{bottom:606.936000px;}
.yba{bottom:615.901500px;}
.y1a{bottom:623.935500px;}
.y63{bottom:624.868500px;}
.yb9{bottom:633.835500px;}
.y3c{bottom:641.868000px;}
.y19{bottom:641.869500px;}
.y62{bottom:642.801000px;}
.yb8{bottom:651.768000px;}
.y3b{bottom:659.800500px;}
.y18{bottom:659.802000px;}
.y61{bottom:660.733500px;}
.yb7{bottom:669.700500px;}
.y17{bottom:677.734500px;}
.y87{bottom:678.666000px;}
.y60{bottom:678.667500px;}
.yb6{bottom:687.633000px;}
.y16{bottom:695.667000px;}
.y86{bottom:696.598500px;}
.y5f{bottom:696.600000px;}
.yb5{bottom:705.565500px;}
.y15{bottom:713.599500px;}
.y5e{bottom:714.532500px;}
.yb4{bottom:723.498000px;}
.y14{bottom:731.532000px;}
.y5d{bottom:732.465000px;}
.yb3{bottom:741.432000px;}
.y3a{bottom:749.464500px;}
.y13{bottom:749.466000px;}
.y5c{bottom:750.397500px;}
.yb2{bottom:759.364500px;}
.y12{bottom:767.398500px;}
.y5b{bottom:768.330000px;}
.yb1{bottom:777.297000px;}
.y11{bottom:785.331000px;}
.y85{bottom:786.262500px;}
.y5a{bottom:786.264000px;}
.yb0{bottom:795.229500px;}
.y10{bottom:803.263500px;}
.y84{bottom:804.195000px;}
.y59{bottom:804.196500px;}
.yaf{bottom:813.162000px;}
.yf{bottom:821.196000px;}
.y58{bottom:822.129000px;}
.yae{bottom:831.096000px;}
.ye{bottom:839.128500px;}
.y57{bottom:840.061500px;}
.yad{bottom:849.028500px;}
.y39{bottom:857.061000px;}
.yd{bottom:857.062500px;}
.y56{bottom:857.994000px;}
.yac{bottom:866.961000px;}
.yc{bottom:874.995000px;}
.y55{bottom:875.926500px;}
.yab{bottom:884.893500px;}
.yb{bottom:892.927500px;}
.y83{bottom:893.859000px;}
.y54{bottom:893.860500px;}
.yaa{bottom:902.826000px;}
.ya{bottom:910.860000px;}
.y82{bottom:911.791500px;}
.y53{bottom:911.793000px;}
.ya9{bottom:920.758500px;}
.y38{bottom:928.792500px;}
.y52{bottom:929.725500px;}
.y9{bottom:937.759500px;}
.ya8{bottom:938.692500px;}
.y51{bottom:947.658000px;}
.y8{bottom:955.692000px;}
.ya7{bottom:956.625000px;}
.y50{bottom:965.590500px;}
.y7{bottom:973.624500px;}
.ya6{bottom:974.557500px;}
.y4f{bottom:983.523000px;}
.y6{bottom:991.557000px;}
.ya5{bottom:992.490000px;}
.y81{bottom:1001.455500px;}
.y4e{bottom:1001.457000px;}
.y37{bottom:1009.489500px;}
.y5{bottom:1009.491000px;}
.ya4{bottom:1010.422500px;}
.y4d{bottom:1019.389500px;}
.y4{bottom:1027.423500px;}
.ya3{bottom:1028.355000px;}
.y4c{bottom:1037.322000px;}
.ya2{bottom:1046.289000px;}
.y4b{bottom:1055.254500px;}
.y3{bottom:1062.136500px;}
.ya1{bottom:1064.221500px;}
.y4a{bottom:1073.187000px;}
.ya0{bottom:1082.154000px;}
.y80{bottom:1091.119500px;}
.y49{bottom:1091.121000px;}
.y9f{bottom:1100.086500px;}
.y7f{bottom:1109.052000px;}
.y48{bottom:1109.053500px;}
.y2{bottom:1110.511500px;}
.y47{bottom:1126.986000px;}
.y1{bottom:1140.399000px;}
.y46{bottom:1144.918500px;}
.y45{bottom:1162.851000px;}
.h3{height:27.783619px;}
.h4{height:41.125613px;}
.h5{height:41.364715px;}
.h2{height:66.183710px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:80.787000px;}
.x1{left:121.816500px;}
.x2{left:166.194000px;}
.x3{left:443.104500px;}
.x5{left:463.464000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wse{word-spacing:-13.283467pt;}
.ws1b{word-spacing:-1.806551pt;}
.ws26{word-spacing:-1.381481pt;}
.wsbc{word-spacing:-1.275213pt;}
.wsb4{word-spacing:-1.168945pt;}
.ws41{word-spacing:-1.115811pt;}
.ws94{word-spacing:-1.009543pt;}
.ws8f{word-spacing:-0.903276pt;}
.ws23{word-spacing:-0.850142pt;}
.ws75{word-spacing:-0.797008pt;}
.ws25{word-spacing:-0.743874pt;}
.wsc7{word-spacing:-0.690740pt;}
.wsc3{word-spacing:-0.584473pt;}
.wsa5{word-spacing:-0.531339pt;}
.ws96{word-spacing:-0.478205pt;}
.ws1f{word-spacing:-0.318803pt;}
.ws8c{word-spacing:-0.212535pt;}
.ws8d{word-spacing:-0.159402pt;}
.ws95{word-spacing:-0.106268pt;}
.ws4f{word-spacing:-0.053134pt;}
.ws6{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.053134pt;}
.ws9a{word-spacing:0.159402pt;}
.ws3f{word-spacing:0.212535pt;}
.ws5{word-spacing:0.265669pt;}
.ws97{word-spacing:0.318803pt;}
.ws33{word-spacing:0.425071pt;}
.ws32{word-spacing:0.478205pt;}
.ws38{word-spacing:0.531339pt;}
.ws3{word-spacing:0.584473pt;}
.ws54{word-spacing:0.637606pt;}
.wsc8{word-spacing:0.690740pt;}
.ws7d{word-spacing:0.743874pt;}
.ws14{word-spacing:0.797008pt;}
.ws5f{word-spacing:0.850142pt;}
.ws76{word-spacing:0.956410pt;}
.ws5b{word-spacing:1.009543pt;}
.ws59{word-spacing:1.062677pt;}
.ws36{word-spacing:1.115811pt;}
.ws11{word-spacing:1.168945pt;}
.wsbd{word-spacing:1.275213pt;}
.wsbe{word-spacing:1.381481pt;}
.ws72{word-spacing:1.434614pt;}
.ws4d{word-spacing:1.647150pt;}
.ws44{word-spacing:1.700284pt;}
.ws5d{word-spacing:1.753418pt;}
.wsad{word-spacing:1.806551pt;}
.ws90{word-spacing:1.859685pt;}
.ws27{word-spacing:1.912819pt;}
.ws9b{word-spacing:1.965953pt;}
.ws68{word-spacing:2.019087pt;}
.wsc4{word-spacing:2.125355pt;}
.ws7b{word-spacing:2.178489pt;}
.ws5e{word-spacing:2.231622pt;}
.wsa4{word-spacing:2.284756pt;}
.ws30{word-spacing:2.337890pt;}
.ws42{word-spacing:2.391024pt;}
.ws8{word-spacing:2.444158pt;}
.ws6d{word-spacing:2.656693pt;}
.wsac{word-spacing:2.709827pt;}
.ws4c{word-spacing:2.816095pt;}
.ws51{word-spacing:2.869229pt;}
.ws70{word-spacing:2.922363pt;}
.ws2c{word-spacing:2.975497pt;}
.wsbb{word-spacing:3.028630pt;}
.ws7c{word-spacing:3.134898pt;}
.ws21{word-spacing:3.188032pt;}
.ws2{word-spacing:3.241166pt;}
.ws6e{word-spacing:3.294300pt;}
.ws7e{word-spacing:3.347434pt;}
.wsc6{word-spacing:3.400567pt;}
.ws5a{word-spacing:3.453701pt;}
.ws8e{word-spacing:3.506835pt;}
.ws9{word-spacing:3.559969pt;}
.ws80{word-spacing:3.666237pt;}
.ws6a{word-spacing:3.719371pt;}
.wsca{word-spacing:3.772505pt;}
.wsab{word-spacing:3.825638pt;}
.ws61{word-spacing:3.878772pt;}
.ws3e{word-spacing:3.931906pt;}
.ws8a{word-spacing:4.038174pt;}
.ws28{word-spacing:4.144442pt;}
.ws1e{word-spacing:4.250709pt;}
.ws53{word-spacing:4.303843pt;}
.ws49{word-spacing:4.356977pt;}
.wsa3{word-spacing:4.463245pt;}
.ws87{word-spacing:4.516379pt;}
.ws3d{word-spacing:4.622646pt;}
.ws71{word-spacing:4.728914pt;}
.ws10{word-spacing:4.782048pt;}
.ws8b{word-spacing:4.835182pt;}
.wsb0{word-spacing:4.941450pt;}
.wsb2{word-spacing:4.994583pt;}
.ws18{word-spacing:5.047717pt;}
.wsc5{word-spacing:5.100851pt;}
.wsb7{word-spacing:5.207119pt;}
.ws37{word-spacing:5.260253pt;}
.wsd{word-spacing:5.313387pt;}
.ws9d{word-spacing:5.366521pt;}
.wsb6{word-spacing:5.419654pt;}
.ws40{word-spacing:5.472788pt;}
.ws60{word-spacing:5.579056pt;}
.wsa0{word-spacing:5.632190pt;}
.wsb3{word-spacing:5.685324pt;}
.wsc1{word-spacing:5.791591pt;}
.wsbf{word-spacing:5.844725pt;}
.wsa1{word-spacing:5.897859pt;}
.ws4b{word-spacing:5.950993pt;}
.ws3b{word-spacing:6.057261pt;}
.wsa6{word-spacing:6.110395pt;}
.ws46{word-spacing:6.216662pt;}
.ws31{word-spacing:6.269796pt;}
.ws52{word-spacing:6.376064pt;}
.ws57{word-spacing:6.429198pt;}
.ws74{word-spacing:6.482332pt;}
.ws39{word-spacing:6.535466pt;}
.ws29{word-spacing:6.588599pt;}
.ws86{word-spacing:6.641733pt;}
.ws77{word-spacing:6.694867pt;}
.ws9e{word-spacing:6.748001pt;}
.ws89{word-spacing:6.960537pt;}
.ws1c{word-spacing:7.066804pt;}
.ws12{word-spacing:7.119938pt;}
.ws56{word-spacing:7.173072pt;}
.wsae{word-spacing:7.279340pt;}
.wsb5{word-spacing:7.332474pt;}
.ws7f{word-spacing:7.438741pt;}
.ws35{word-spacing:7.491875pt;}
.wsf{word-spacing:7.545009pt;}
.ws4{word-spacing:7.598143pt;}
.ws47{word-spacing:7.704411pt;}
.ws2d{word-spacing:7.810678pt;}
.wsba{word-spacing:7.916946pt;}
.ws34{word-spacing:7.970080pt;}
.ws1d{word-spacing:8.023214pt;}
.ws91{word-spacing:8.076348pt;}
.ws43{word-spacing:8.182615pt;}
.ws22{word-spacing:8.288883pt;}
.ws98{word-spacing:8.395151pt;}
.wsc9{word-spacing:8.448285pt;}
.ws13{word-spacing:8.501419pt;}
.ws2a{word-spacing:8.554553pt;}
.ws69{word-spacing:8.713954pt;}
.ws24{word-spacing:8.820222pt;}
.ws82{word-spacing:8.873356pt;}
.ws1{word-spacing:8.979623pt;}
.wsb9{word-spacing:9.032757pt;}
.ws4e{word-spacing:9.085891pt;}
.ws1a{word-spacing:9.192159pt;}
.ws84{word-spacing:9.245293pt;}
.ws62{word-spacing:9.351561pt;}
.ws50{word-spacing:9.404694pt;}
.wsc2{word-spacing:9.510962pt;}
.ws6f{word-spacing:9.564096pt;}
.ws17{word-spacing:9.617230pt;}
.wsb1{word-spacing:9.670364pt;}
.ws4a{word-spacing:9.776631pt;}
.ws2e{word-spacing:9.989167pt;}
.ws67{word-spacing:10.148569pt;}
.ws3c{word-spacing:10.254836pt;}
.wsc0{word-spacing:10.307970pt;}
.ws45{word-spacing:10.361104pt;}
.ws16{word-spacing:10.467372pt;}
.wsb{word-spacing:10.520506pt;}
.ws5c{word-spacing:10.786175pt;}
.ws88{word-spacing:10.945577pt;}
.ws2f{word-spacing:10.998710pt;}
.wsa8{word-spacing:11.051844pt;}
.ws6c{word-spacing:11.104978pt;}
.wsa2{word-spacing:11.158112pt;}
.ws81{word-spacing:11.211246pt;}
.ws78{word-spacing:11.423781pt;}
.ws6b{word-spacing:11.530049pt;}
.ws85{word-spacing:11.742585pt;}
.ws99{word-spacing:11.901986pt;}
.ws48{word-spacing:11.955120pt;}
.ws64{word-spacing:12.008254pt;}
.ws15{word-spacing:12.114522pt;}
.wsb8{word-spacing:12.327057pt;}
.wsaf{word-spacing:12.486459pt;}
.ws58{word-spacing:12.645860pt;}
.ws7{word-spacing:13.230333pt;}
.wsa{word-spacing:13.283467pt;}
.ws79{word-spacing:13.708538pt;}
.ws19{word-spacing:13.867939pt;}
.wsc{word-spacing:13.974207pt;}
.ws63{word-spacing:14.027341pt;}
.ws9f{word-spacing:14.239876pt;}
.ws92{word-spacing:14.452412pt;}
.ws93{word-spacing:14.983750pt;}
.ws9c{word-spacing:15.302554pt;}
.ws2b{word-spacing:15.674491pt;}
.ws7a{word-spacing:15.727625pt;}
.ws66{word-spacing:15.940160pt;}
.ws65{word-spacing:17.162239pt;}
.ws20{word-spacing:17.852979pt;}
.wsa7{word-spacing:17.959247pt;}
.ws83{word-spacing:18.384318pt;}
.ws55{word-spacing:18.756255pt;}
.wsaa{word-spacing:19.234460pt;}
.ws73{word-spacing:20.190869pt;}
.wsa9{word-spacing:20.615940pt;}
.ws0{word-spacing:21.168586pt;}
._0{margin-left:-7.141210pt;}
._22{margin-left:-6.174151pt;}
._21{margin-left:-4.675780pt;}
._3{margin-left:-3.719371pt;}
._17{margin-left:-2.816095pt;}
._1{margin-left:-1.530259pt;}
._26{width:13.336601pt;}
._1e{width:15.196286pt;}
._5{width:16.471499pt;}
._24{width:17.374774pt;}
._13{width:18.649987pt;}
._b{width:19.542640pt;}
._6{width:21.359814pt;}
._a{width:22.688161pt;}
._d{width:23.910240pt;}
._18{width:25.026051pt;}
._2{width:26.354464pt;}
._1f{width:27.948414pt;}
._14{width:28.894201pt;}
._1b{width:30.339438pt;}
._9{width:31.561517pt;}
._1a{width:32.942931pt;}
._12{width:34.430746pt;}
._11{width:35.546557pt;}
._15{width:36.449833pt;}
._1d{width:37.873824pt;}
._4{width:39.265927pt;}
._e{width:40.647408pt;}
._c{width:41.805730pt;}
._8{width:43.941708pt;}
._f{width:45.163787pt;}
._28{width:47.076606pt;}
._7{width:48.245551pt;}
._16{width:49.510075pt;}
._10{width:52.177457pt;}
._25{width:53.187001pt;}
._23{width:54.409079pt;}
._19{width:56.364410pt;}
._27{width:61.900955pt;}
._20{width:67.905082pt;}
._1c{width:73.048444pt;}
.fs1{font-size:37.193600pt;}
.fs2{font-size:53.133867pt;}
.fs0{font-size:85.014400pt;}
.y0{bottom:0.000000pt;}
.ycd{bottom:101.141333pt;}
.y7e{bottom:101.142667pt;}
.y44{bottom:108.282667pt;}
.y36{bottom:108.284000pt;}
.y9e{bottom:109.112000pt;}
.ycc{bottom:117.081333pt;}
.y7d{bottom:117.082667pt;}
.y43{bottom:124.222667pt;}
.y35{bottom:124.224000pt;}
.y9d{bottom:125.052000pt;}
.y7c{bottom:133.022667pt;}
.y34{bottom:140.164000pt;}
.y9c{bottom:140.992000pt;}
.yc6{bottom:140.993333pt;}
.y7b{bottom:148.962667pt;}
.y33{bottom:156.104000pt;}
.y9b{bottom:156.932000pt;}
.yc5{bottom:156.933333pt;}
.y7a{bottom:164.902667pt;}
.y32{bottom:172.044000pt;}
.y9a{bottom:172.873333pt;}
.y79{bottom:180.842667pt;}
.y31{bottom:187.984000pt;}
.y99{bottom:188.813333pt;}
.ycb{bottom:196.782667pt;}
.y78{bottom:196.784000pt;}
.y42{bottom:203.924000pt;}
.y30{bottom:203.925333pt;}
.y98{bottom:204.753333pt;}
.yca{bottom:212.722667pt;}
.y77{bottom:212.724000pt;}
.y41{bottom:219.864000pt;}
.y2f{bottom:219.865333pt;}
.y97{bottom:220.693333pt;}
.y76{bottom:228.664000pt;}
.y2e{bottom:235.805333pt;}
.y96{bottom:236.633333pt;}
.yc4{bottom:236.634667pt;}
.y75{bottom:244.604000pt;}
.y2d{bottom:251.745333pt;}
.y95{bottom:252.573333pt;}
.yc3{bottom:252.574667pt;}
.y74{bottom:260.544000pt;}
.y2c{bottom:267.685333pt;}
.y94{bottom:268.514667pt;}
.y73{bottom:276.484000pt;}
.y2b{bottom:283.625333pt;}
.y93{bottom:284.454667pt;}
.yc9{bottom:292.424000pt;}
.y72{bottom:292.425333pt;}
.y40{bottom:299.565333pt;}
.y2a{bottom:299.566667pt;}
.y92{bottom:300.394667pt;}
.y71{bottom:308.365333pt;}
.y29{bottom:315.506667pt;}
.y91{bottom:316.334667pt;}
.y70{bottom:324.305333pt;}
.y28{bottom:331.446667pt;}
.y90{bottom:332.274667pt;}
.yc2{bottom:332.276000pt;}
.y6f{bottom:340.245333pt;}
.y27{bottom:347.386667pt;}
.y8f{bottom:348.214667pt;}
.yd0{bottom:348.216000pt;}
.y6e{bottom:356.185333pt;}
.y26{bottom:363.326667pt;}
.y8e{bottom:364.156000pt;}
.yc8{bottom:372.125333pt;}
.y6d{bottom:372.126667pt;}
.y25{bottom:379.266667pt;}
.y8d{bottom:380.096000pt;}
.yc7{bottom:388.065333pt;}
.y6c{bottom:388.066667pt;}
.y3f{bottom:395.206667pt;}
.y24{bottom:395.208000pt;}
.y8c{bottom:396.036000pt;}
.y6b{bottom:404.006667pt;}
.y23{bottom:411.148000pt;}
.y8b{bottom:411.976000pt;}
.y6a{bottom:419.946667pt;}
.y22{bottom:427.088000pt;}
.y8a{bottom:427.916000pt;}
.ycf{bottom:427.917333pt;}
.yc1{bottom:435.886667pt;}
.y21{bottom:443.028000pt;}
.y89{bottom:443.856000pt;}
.yce{bottom:443.857333pt;}
.yc0{bottom:451.826667pt;}
.y20{bottom:458.968000pt;}
.y69{bottom:459.797333pt;}
.ybf{bottom:467.768000pt;}
.y3e{bottom:474.908000pt;}
.y1f{bottom:474.909333pt;}
.y68{bottom:475.737333pt;}
.ybe{bottom:483.708000pt;}
.y3d{bottom:490.848000pt;}
.y1e{bottom:490.849333pt;}
.y67{bottom:491.677333pt;}
.ybd{bottom:499.648000pt;}
.y1d{bottom:506.789333pt;}
.y66{bottom:507.617333pt;}
.ybc{bottom:515.588000pt;}
.y1c{bottom:522.729333pt;}
.y88{bottom:523.557333pt;}
.y65{bottom:523.558667pt;}
.ybb{bottom:531.528000pt;}
.y1b{bottom:538.669333pt;}
.y64{bottom:539.498667pt;}
.yba{bottom:547.468000pt;}
.y1a{bottom:554.609333pt;}
.y63{bottom:555.438667pt;}
.yb9{bottom:563.409333pt;}
.y3c{bottom:570.549333pt;}
.y19{bottom:570.550667pt;}
.y62{bottom:571.378667pt;}
.yb8{bottom:579.349333pt;}
.y3b{bottom:586.489333pt;}
.y18{bottom:586.490667pt;}
.y61{bottom:587.318667pt;}
.yb7{bottom:595.289333pt;}
.y17{bottom:602.430667pt;}
.y87{bottom:603.258667pt;}
.y60{bottom:603.260000pt;}
.yb6{bottom:611.229333pt;}
.y16{bottom:618.370667pt;}
.y86{bottom:619.198667pt;}
.y5f{bottom:619.200000pt;}
.yb5{bottom:627.169333pt;}
.y15{bottom:634.310667pt;}
.y5e{bottom:635.140000pt;}
.yb4{bottom:643.109333pt;}
.y14{bottom:650.250667pt;}
.y5d{bottom:651.080000pt;}
.yb3{bottom:659.050667pt;}
.y3a{bottom:666.190667pt;}
.y13{bottom:666.192000pt;}
.y5c{bottom:667.020000pt;}
.yb2{bottom:674.990667pt;}
.y12{bottom:682.132000pt;}
.y5b{bottom:682.960000pt;}
.yb1{bottom:690.930667pt;}
.y11{bottom:698.072000pt;}
.y85{bottom:698.900000pt;}
.y5a{bottom:698.901333pt;}
.yb0{bottom:706.870667pt;}
.y10{bottom:714.012000pt;}
.y84{bottom:714.840000pt;}
.y59{bottom:714.841333pt;}
.yaf{bottom:722.810667pt;}
.yf{bottom:729.952000pt;}
.y58{bottom:730.781333pt;}
.yae{bottom:738.752000pt;}
.ye{bottom:745.892000pt;}
.y57{bottom:746.721333pt;}
.yad{bottom:754.692000pt;}
.y39{bottom:761.832000pt;}
.yd{bottom:761.833333pt;}
.y56{bottom:762.661333pt;}
.yac{bottom:770.632000pt;}
.yc{bottom:777.773333pt;}
.y55{bottom:778.601333pt;}
.yab{bottom:786.572000pt;}
.yb{bottom:793.713333pt;}
.y83{bottom:794.541333pt;}
.y54{bottom:794.542667pt;}
.yaa{bottom:802.512000pt;}
.ya{bottom:809.653333pt;}
.y82{bottom:810.481333pt;}
.y53{bottom:810.482667pt;}
.ya9{bottom:818.452000pt;}
.y38{bottom:825.593333pt;}
.y52{bottom:826.422667pt;}
.y9{bottom:833.564000pt;}
.ya8{bottom:834.393333pt;}
.y51{bottom:842.362667pt;}
.y8{bottom:849.504000pt;}
.ya7{bottom:850.333333pt;}
.y50{bottom:858.302667pt;}
.y7{bottom:865.444000pt;}
.ya6{bottom:866.273333pt;}
.y4f{bottom:874.242667pt;}
.y6{bottom:881.384000pt;}
.ya5{bottom:882.213333pt;}
.y81{bottom:890.182667pt;}
.y4e{bottom:890.184000pt;}
.y37{bottom:897.324000pt;}
.y5{bottom:897.325333pt;}
.ya4{bottom:898.153333pt;}
.y4d{bottom:906.124000pt;}
.y4{bottom:913.265333pt;}
.ya3{bottom:914.093333pt;}
.y4c{bottom:922.064000pt;}
.ya2{bottom:930.034667pt;}
.y4b{bottom:938.004000pt;}
.y3{bottom:944.121333pt;}
.ya1{bottom:945.974667pt;}
.y4a{bottom:953.944000pt;}
.ya0{bottom:961.914667pt;}
.y80{bottom:969.884000pt;}
.y49{bottom:969.885333pt;}
.y9f{bottom:977.854667pt;}
.y7f{bottom:985.824000pt;}
.y48{bottom:985.825333pt;}
.y2{bottom:987.121333pt;}
.y47{bottom:1001.765333pt;}
.y1{bottom:1013.688000pt;}
.y46{bottom:1017.705333pt;}
.y45{bottom:1033.645333pt;}
.h3{height:24.696550pt;}
.h4{height:36.556100pt;}
.h5{height:36.768636pt;}
.h2{height:58.829965pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:71.810667pt;}
.x1{left:108.281333pt;}
.x2{left:147.728000pt;}
.x3{left:393.870667pt;}
.x5{left:411.968000pt;}
}




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