
    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_bc69e7e3be75d0dced8231c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112000;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_fc469b34ddc9f677f737db7f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113000;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_3384bf149db23451b3f9f60c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.111000;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.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;}
.ls7{letter-spacing:0.263220px;}
.ls6{letter-spacing:0.264960px;}
.ls8{letter-spacing:0.270000px;}
.ls1{letter-spacing:0.450000px;}
.ls4{letter-spacing:0.593965px;}
.ls2{letter-spacing:0.894024px;}
.ls3{letter-spacing:2.099999px;}
.ls5{letter-spacing:18.664313px;}
.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;}
}
.ws1{word-spacing:-20.999992px;}
.ws3{word-spacing:-15.749994px;}
.ws19{word-spacing:-15.593959px;}
.ws13{word-spacing:-15.449994px;}
.ws0{word-spacing:-14.999994px;}
.wsa{word-spacing:-13.499995px;}
.wsd{word-spacing:-11.999995px;}
.ws1b{word-spacing:-10.124996px;}
.ws9{word-spacing:0.000000px;}
.wsc{word-spacing:1.297199px;}
.wsb{word-spacing:1.345199px;}
.ws18{word-spacing:1.481999px;}
.ws12{word-spacing:1.499339px;}
.ws20{word-spacing:2.811819px;}
.ws1f{word-spacing:2.831438px;}
.wse{word-spacing:3.304522px;}
.ws1c{word-spacing:6.431107px;}
.ws1a{word-spacing:6.448865px;}
.ws2{word-spacing:7.348989px;}
.ws5{word-spacing:7.359237px;}
.ws6{word-spacing:7.360310px;}
.ws8{word-spacing:7.367798px;}
.ws7{word-spacing:7.369351px;}
.ws4{word-spacing:7.379308px;}
.ws1d{word-spacing:8.549830px;}
.ws1e{word-spacing:8.559126px;}
.ws16{word-spacing:14.530191px;}
.ws15{word-spacing:14.533323px;}
.ws10{word-spacing:14.708394px;}
.ws11{word-spacing:14.711394px;}
.ws17{word-spacing:14.999947px;}
.wsf{word-spacing:14.999994px;}
.ws14{word-spacing:15.000123px;}
.ws21{word-spacing:16.250113px;}
._19{margin-left:-2312.779014px;}
._9{margin-left:-11.999995px;}
._1{margin-left:-10.244091px;}
._6{margin-left:-8.247069px;}
._18{margin-left:-6.659511px;}
._4{margin-left:-5.556448px;}
._1d{margin-left:-4.513535px;}
._3{margin-left:-3.440737px;}
._5{margin-left:-1.537387px;}
._2{width:1.420663px;}
._7{width:2.527465px;}
._0{width:4.097898px;}
._11{width:5.286097px;}
._a{width:6.551997px;}
._c{width:7.745877px;}
._15{width:8.808416px;}
._12{width:10.176056px;}
._10{width:11.555875px;}
._e{width:12.797957px;}
._8{width:14.849670px;}
._b{width:16.313873px;}
._13{width:18.119993px;}
._f{width:19.187992px;}
._23{width:20.202292px;}
._14{width:21.210112px;}
._d{width:22.722256px;}
._17{width:24.293055px;}
._24{width:25.611357px;}
._20{width:26.652957px;}
._1b{width:28.265476px;}
._16{width:29.711928px;}
._1e{width:32.345614px;}
._1a{width:38.372940px;}
._22{width:42.286436px;}
._21{width:44.276259px;}
._1f{width:45.665369px;}
._1c{width:1100.187570px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:40.499984px;}
.fs9{font-size:41.999983px;}
.fs6{font-size:47.999981px;}
.fs5{font-size:53.999978px;}
.fs1{font-size:59.999976px;}
.fs3{font-size:62.999975px;}
.fs8{font-size:65.999974px;}
.fs4{font-size:71.999971px;}
.fs7{font-size:77.999969px;}
.fs2{font-size:83.999966px;}
.fs0{font-size:167.999933px;}
.y0{bottom:0.000000px;}
.y102{bottom:59.472648px;}
.ycf{bottom:65.020846px;}
.y58{bottom:65.435745px;}
.y5e{bottom:65.438145px;}
.y14d{bottom:65.966145px;}
.ycc{bottom:66.297945px;}
.y8b{bottom:66.298395px;}
.yf0{bottom:66.302145px;}
.y166{bottom:66.303495px;}
.y13c{bottom:67.106145px;}
.y30{bottom:68.306144px;}
.y101{bottom:76.527641px;}
.yce{bottom:80.574639px;}
.y57{bottom:82.490739px;}
.y5d{bottom:82.493139px;}
.y14c{bottom:83.021138px;}
.ycb{bottom:83.352938px;}
.y8a{bottom:83.353388px;}
.yef{bottom:83.357138px;}
.y165{bottom:83.358488px;}
.y13b{bottom:84.161138px;}
.y100{bottom:93.582634px;}
.y56{bottom:99.545732px;}
.y5c{bottom:99.548132px;}
.y14b{bottom:100.076132px;}
.yca{bottom:100.407931px;}
.y89{bottom:100.408381px;}
.yee{bottom:100.412131px;}
.y164{bottom:100.413481px;}
.y13a{bottom:101.216131px;}
.y2f{bottom:101.245081px;}
.yff{bottom:110.637627px;}
.y55{bottom:116.600725px;}
.y5b{bottom:116.603125px;}
.y14a{bottom:117.131125px;}
.ya1{bottom:117.463375px;}
.yed{bottom:117.467125px;}
.y139{bottom:118.271124px;}
.y1{bottom:121.116780px;}
.yfe{bottom:127.692620px;}
.y54{bottom:133.655718px;}
.y5a{bottom:133.658118px;}
.y2e{bottom:134.185068px;}
.y149{bottom:134.186118px;}
.yc9{bottom:134.517918px;}
.y88{bottom:134.518368px;}
.yec{bottom:134.522118px;}
.y138{bottom:135.326117px;}
.yfd{bottom:144.747614px;}
.y53{bottom:150.710711px;}
.y148{bottom:151.241111px;}
.yc8{bottom:151.572911px;}
.y87{bottom:151.573361px;}
.yeb{bottom:151.577111px;}
.y137{bottom:152.381111px;}
.yfc{bottom:161.802607px;}
.y2d{bottom:167.125055px;}
.y52{bottom:167.765704px;}
.y147{bottom:168.296104px;}
.y86{bottom:168.628354px;}
.yea{bottom:168.632104px;}
.y136{bottom:169.436104px;}
.yfb{bottom:178.857600px;}
.y51{bottom:184.820698px;}
.y146{bottom:185.351097px;}
.yc7{bottom:185.682897px;}
.y85{bottom:185.683347px;}
.ye9{bottom:185.687097px;}
.y135{bottom:186.491097px;}
.yfa{bottom:195.912593px;}
.y2c{bottom:200.065042px;}
.y50{bottom:201.875691px;}
.y145{bottom:202.406091px;}
.yc6{bottom:202.737890px;}
.y84{bottom:202.738340px;}
.ye8{bottom:202.742090px;}
.y134{bottom:203.546090px;}
.yf9{bottom:212.967586px;}
.y2b{bottom:216.535035px;}
.y4f{bottom:218.930684px;}
.y144{bottom:219.461084px;}
.yc5{bottom:219.792884px;}
.y83{bottom:219.793334px;}
.ye7{bottom:219.797084px;}
.y133{bottom:220.601083px;}
.y4e{bottom:235.985677px;}
.y143{bottom:236.516077px;}
.yc4{bottom:236.847877px;}
.y82{bottom:236.848327px;}
.ye6{bottom:236.852077px;}
.y132{bottom:237.656076px;}
.yf8{bottom:247.077573px;}
.y2a{bottom:249.475022px;}
.y4d{bottom:253.040670px;}
.y142{bottom:253.571070px;}
.yc3{bottom:253.902870px;}
.y81{bottom:253.903320px;}
.ye5{bottom:253.907070px;}
.y131{bottom:254.711070px;}
.yf7{bottom:264.132566px;}
.y4c{bottom:270.095664px;}
.y141{bottom:270.626063px;}
.yc2{bottom:270.957863px;}
.y80{bottom:270.958313px;}
.ye4{bottom:270.962063px;}
.y130{bottom:271.766063px;}
.yf6{bottom:281.187559px;}
.y29{bottom:282.444559px;}
.y4b{bottom:287.150657px;}
.y7f{bottom:288.013306px;}
.ye3{bottom:288.017056px;}
.y12f{bottom:288.821056px;}
.y28{bottom:298.914552px;}
.y4a{bottom:304.205650px;}
.y7e{bottom:305.068300px;}
.y163{bottom:305.072050px;}
.y12e{bottom:305.876049px;}
.y168{bottom:313.125996px;}
.yf5{bottom:315.297545px;}
.y27{bottom:315.384545px;}
.yd6{bottom:320.516943px;}
.y49{bottom:321.260643px;}
.y7d{bottom:322.123293px;}
.ye2{bottom:322.127043px;}
.y13d{bottom:322.931042px;}
.y167{bottom:328.680540px;}
.y26{bottom:331.854539px;}
.yf4{bottom:332.352539px;}
.yd5{bottom:337.571187px;}
.y48{bottom:338.315636px;}
.y7c{bottom:339.178286px;}
.ye1{bottom:339.182036px;}
.y12d{bottom:339.986036px;}
.y25{bottom:348.324532px;}
.yf3{bottom:349.407532px;}
.yd4{bottom:354.626180px;}
.y47{bottom:355.370629px;}
.y7b{bottom:356.233279px;}
.ye0{bottom:356.237029px;}
.y12c{bottom:357.041029px;}
.y24{bottom:364.794526px;}
.yf2{bottom:366.462525px;}
.yc{bottom:368.748374px;}
.yd3{bottom:371.681173px;}
.y46{bottom:372.425623px;}
.y7a{bottom:373.288272px;}
.y162{bottom:373.292022px;}
.y12b{bottom:374.096022px;}
.yf1{bottom:383.517518px;}
.yd2{bottom:388.735416px;}
.y45{bottom:389.480616px;}
.y79{bottom:390.343265px;}
.ydf{bottom:390.347015px;}
.yb{bottom:391.898015px;}
.y23{bottom:398.515532px;}
.yd1{bottom:405.790409px;}
.y44{bottom:406.535609px;}
.y78{bottom:407.398259px;}
.yde{bottom:407.402009px;}
.y22{bottom:413.215766px;}
.y43{bottom:423.590602px;}
.ya{bottom:424.052452px;}
.y77{bottom:424.453252px;}
.ydd{bottom:424.457002px;}
.y21{bottom:427.916000px;}
.yd0{bottom:431.374999px;}
.y140{bottom:435.472697px;}
.y12a{bottom:438.721996px;}
.y42{bottom:440.645595px;}
.y76{bottom:441.508245px;}
.y161{bottom:441.511995px;}
.y9{bottom:447.199993px;}
.y13f{bottom:451.027991px;}
.y129{bottom:455.776989px;}
.y41{bottom:457.700588px;}
.y75{bottom:458.563238px;}
.ydc{bottom:458.566988px;}
.y128{bottom:472.831982px;}
.y40{bottom:474.755582px;}
.yc1{bottom:475.617781px;}
.y74{bottom:475.618231px;}
.ydb{bottom:475.621981px;}
.y8{bottom:480.903479px;}
.y127{bottom:489.886976px;}
.y3f{bottom:491.810575px;}
.yc0{bottom:492.672774px;}
.y73{bottom:492.673224px;}
.yda{bottom:492.676974px;}
.y7{bottom:506.106169px;}
.y126{bottom:506.941969px;}
.y20{bottom:508.317318px;}
.y3e{bottom:508.865568px;}
.ybf{bottom:509.727768px;}
.ya0{bottom:509.728218px;}
.y160{bottom:509.731968px;}
.y125{bottom:523.996962px;}
.y1f{bottom:524.817312px;}
.y3d{bottom:525.920561px;}
.y72{bottom:526.783211px;}
.yd9{bottom:526.786961px;}
.ybe{bottom:535.311607px;}
.y6{bottom:539.808306px;}
.y124{bottom:541.051955px;}
.y1e{bottom:541.317305px;}
.y3c{bottom:542.975554px;}
.y9f{bottom:543.838204px;}
.yd8{bottom:543.841954px;}
.ybd{bottom:552.366601px;}
.y1d{bottom:557.817298px;}
.y123{bottom:558.106948px;}
.y3b{bottom:560.030548px;}
.y9e{bottom:560.893197px;}
.y15f{bottom:560.896947px;}
.y1c{bottom:574.315342px;}
.y122{bottom:575.161941px;}
.y3a{bottom:577.085541px;}
.y71{bottom:577.948190px;}
.y15e{bottom:577.951940px;}
.ybc{bottom:586.476587px;}
.y1b{bottom:590.815335px;}
.y121{bottom:592.216935px;}
.y59{bottom:594.140534px;}
.y70{bottom:595.002434px;}
.y9d{bottom:595.003184px;}
.y15d{bottom:595.006934px;}
.y110{bottom:597.411433px;}
.ybb{bottom:603.531580px;}
.y120{bottom:609.271928px;}
.y39{bottom:611.195527px;}
.y1a{bottom:611.567377px;}
.y6f{bottom:612.056677px;}
.y9c{bottom:612.058177px;}
.y15c{bottom:612.061927px;}
.y10f{bottom:614.466426px;}
.yba{bottom:620.586573px;}
.y11f{bottom:626.326921px;}
.y6e{bottom:629.110920px;}
.y9b{bottom:629.113170px;}
.y15b{bottom:629.116920px;}
.y10e{bottom:631.521419px;}
.y5{bottom:633.912418px;}
.yb9{bottom:637.641566px;}
.y11e{bottom:643.381914px;}
.y6d{bottom:646.165163px;}
.y9a{bottom:646.168163px;}
.y15a{bottom:646.171913px;}
.y10d{bottom:648.576412px;}
.y4{bottom:651.912411px;}
.yb8{bottom:654.696560px;}
.y11d{bottom:660.436157px;}
.y19{bottom:661.067357px;}
.y6c{bottom:663.219406px;}
.y99{bottom:663.223156px;}
.y159{bottom:663.226906px;}
.y10c{bottom:665.631405px;}
.yb7{bottom:671.751553px;}
.y11c{bottom:677.491151px;}
.y18{bottom:677.567351px;}
.y6b{bottom:680.275149px;}
.y98{bottom:680.278149px;}
.yad{bottom:680.281149px;}
.y158{bottom:680.281899px;}
.y3{bottom:682.672748px;}
.y10b{bottom:682.686398px;}
.y38{bottom:685.330897px;}
.yb6{bottom:688.806546px;}
.y17{bottom:694.067344px;}
.y11b{bottom:694.546144px;}
.y6a{bottom:697.330893px;}
.y97{bottom:697.333143px;}
.yac{bottom:697.336143px;}
.y157{bottom:697.336893px;}
.y10a{bottom:699.741392px;}
.yb5{bottom:705.861539px;}
.y16{bottom:710.567337px;}
.y11a{bottom:711.601137px;}
.y69{bottom:714.386636px;}
.y96{bottom:714.388136px;}
.yab{bottom:714.391136px;}
.y156{bottom:714.391886px;}
.y109{bottom:716.796385px;}
.yb4{bottom:722.916532px;}
.y15{bottom:727.066131px;}
.y2{bottom:727.671380px;}
.y119{bottom:728.656130px;}
.y68{bottom:731.442379px;}
.y95{bottom:731.443129px;}
.yaa{bottom:731.446129px;}
.y155{bottom:731.446879px;}
.y108{bottom:733.851378px;}
.yb3{bottom:739.971526px;}
.y14{bottom:743.566124px;}
.y118{bottom:745.711123px;}
.y37{bottom:746.889523px;}
.y67{bottom:748.498122px;}
.ya9{bottom:748.501122px;}
.y154{bottom:748.501872px;}
.y107{bottom:750.906371px;}
.yb2{bottom:757.026519px;}
.y13{bottom:760.066118px;}
.y117{bottom:762.766116px;}
.y36{bottom:764.139966px;}
.y94{bottom:765.553115px;}
.y66{bottom:765.553865px;}
.ya8{bottom:765.556115px;}
.y153{bottom:765.556865px;}
.y106{bottom:767.961364px;}
.y12{bottom:776.566111px;}
.y116{bottom:779.821110px;}
.y35{bottom:781.391159px;}
.y93{bottom:782.608109px;}
.y65{bottom:782.609609px;}
.yb1{bottom:782.610359px;}
.ya7{bottom:782.611109px;}
.y152{bottom:782.611859px;}
.y105{bottom:785.016358px;}
.y170{bottom:785.730339px;}
.y178{bottom:785.733039px;}
.y11{bottom:793.066104px;}
.y115{bottom:796.876103px;}
.y34{bottom:798.640852px;}
.y92{bottom:799.663102px;}
.y64{bottom:799.665352px;}
.ya6{bottom:799.666102px;}
.y151{bottom:799.666852px;}
.y177{bottom:802.786682px;}
.y16f{bottom:802.787441px;}
.y10{bottom:813.817396px;}
.y114{bottom:813.931096px;}
.y91{bottom:816.718095px;}
.y63{bottom:816.720345px;}
.ya5{bottom:816.721095px;}
.y150{bottom:816.721845px;}
.y104{bottom:819.126344px;}
.y16e{bottom:819.840334px;}
.y176{bottom:819.841675px;}
.y33{bottom:820.143343px;}
.y113{bottom:830.986089px;}
.y90{bottom:833.773088px;}
.yb0{bottom:833.775338px;}
.ya4{bottom:833.776088px;}
.y14f{bottom:833.776838px;}
.y16d{bottom:836.895327px;}
.y175{bottom:836.896668px;}
.y112{bottom:848.041082px;}
.y8f{bottom:850.828081px;}
.y62{bottom:850.830331px;}
.ya3{bottom:850.831081px;}
.y14e{bottom:850.831831px;}
.y174{bottom:853.951661px;}
.y16c{bottom:853.952430px;}
.yf{bottom:863.318726px;}
.y8e{bottom:867.883074px;}
.y61{bottom:867.886074px;}
.yd7{bottom:867.886824px;}
.y173{bottom:871.005304px;}
.y16b{bottom:871.006073px;}
.y32{bottom:877.593321px;}
.y111{bottom:882.150319px;}
.ye{bottom:884.070768px;}
.y8d{bottom:884.938068px;}
.yaf{bottom:884.941068px;}
.y60{bottom:884.941818px;}
.y172{bottom:888.060298px;}
.y16a{bottom:888.061066px;}
.y31{bottom:898.593312px;}
.y8c{bottom:901.993061px;}
.yae{bottom:901.996061px;}
.y5f{bottom:901.996811px;}
.yd{bottom:904.822810px;}
.y171{bottom:905.115291px;}
.y169{bottom:905.115310px;}
.ya2{bottom:951.742041px;}
.ycd{bottom:951.746091px;}
.y103{bottom:951.747291px;}
.y13e{bottom:951.748791px;}
.y179{bottom:953.874290px;}
.he{height:37.631985px;}
.h9{height:42.959983px;}
.hd{height:43.007983px;}
.h10{height:48.329981px;}
.h8{height:48.383981px;}
.ha{height:48.388181px;}
.h7{height:48.437981px;}
.hf{height:53.699979px;}
.h3{height:53.759978px;}
.hc{height:59.069976px;}
.h6{height:64.439974px;}
.hb{height:69.965972px;}
.h5{height:75.263970px;}
.h4{height:75.347970px;}
.h2{height:150.527940px;}
.h1{height:1020.707820px;}
.h0{height:1263.000000px;}
.w1{width:723.200580px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1e{left:71.716317px;}
.x38{left:80.969814px;}
.x3b{left:83.608313px;}
.x1{left:84.619620px;}
.x36{left:91.591160px;}
.x26{left:92.975359px;}
.x21{left:95.302308px;}
.x39{left:105.840704px;}
.x3d{left:107.456803px;}
.x2b{left:111.652901px;}
.x35{left:112.778351px;}
.x2f{left:119.321798px;}
.x3{left:124.247946px;}
.xa{left:126.458796px;}
.x37{left:130.029094px;}
.xc{left:133.619793px;}
.x24{left:144.352063px;}
.x23{left:152.196820px;}
.x8{left:155.434284px;}
.x30{left:161.932581px;}
.x18{left:163.061811px;}
.x22{left:166.837279px;}
.x7{left:187.965041px;}
.x12{left:204.451114px;}
.x4{left:214.744260px;}
.xe{left:225.230606px;}
.x15{left:231.074394px;}
.x2{left:234.950752px;}
.x1f{left:236.642751px;}
.x14{left:240.004100px;}
.x13{left:243.784099px;}
.x9{left:254.177744px;}
.xf{left:255.223094px;}
.xb{left:258.851743px;}
.x17{left:260.270172px;}
.x11{left:263.660591px;}
.xd{left:264.896740px;}
.x16{left:276.366816px;}
.x3c{left:285.803732px;}
.x1c{left:292.587061px;}
.x19{left:298.279557px;}
.x1b{left:299.787058px;}
.x1a{left:301.036511px;}
.x1d{left:302.783772px;}
.x5{left:313.394721px;}
.x10{left:317.852569px;}
.x6{left:323.130887px;}
.x25{left:324.850216px;}
.x27{left:373.606197px;}
.x31{left:382.859693px;}
.x32{left:390.359690px;}
.x2e{left:393.482980px;}
.x28{left:394.865838px;}
.x34{left:403.606485px;}
.x33{left:406.793833px;}
.x3a{left:408.669283px;}
.x29{left:413.543681px;}
.x2d{left:414.670171px;}
.x2a{left:443.543519px;}
.x2c{left:465.844610px;}
.x20{left:505.975144px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.233973pt;}
.ls6{letter-spacing:0.235520pt;}
.ls8{letter-spacing:0.240000pt;}
.ls1{letter-spacing:0.400000pt;}
.ls4{letter-spacing:0.527969pt;}
.ls2{letter-spacing:0.794688pt;}
.ls3{letter-spacing:1.866666pt;}
.ls5{letter-spacing:16.590500pt;}
.ws1{word-spacing:-18.666659pt;}
.ws3{word-spacing:-13.999994pt;}
.ws19{word-spacing:-13.861297pt;}
.ws13{word-spacing:-13.733328pt;}
.ws0{word-spacing:-13.333328pt;}
.wsa{word-spacing:-11.999995pt;}
.wsd{word-spacing:-10.666662pt;}
.ws1b{word-spacing:-8.999996pt;}
.ws9{word-spacing:0.000000pt;}
.wsc{word-spacing:1.153066pt;}
.wsb{word-spacing:1.195733pt;}
.ws18{word-spacing:1.317333pt;}
.ws12{word-spacing:1.332746pt;}
.ws20{word-spacing:2.499395pt;}
.ws1f{word-spacing:2.516834pt;}
.wse{word-spacing:2.937353pt;}
.ws1c{word-spacing:5.716539pt;}
.ws1a{word-spacing:5.732325pt;}
.ws2{word-spacing:6.532435pt;}
.ws5{word-spacing:6.541544pt;}
.ws6{word-spacing:6.542497pt;}
.ws8{word-spacing:6.549154pt;}
.ws7{word-spacing:6.550534pt;}
.ws4{word-spacing:6.559385pt;}
.ws1d{word-spacing:7.599849pt;}
.ws1e{word-spacing:7.608112pt;}
.ws16{word-spacing:12.915726pt;}
.ws15{word-spacing:12.918509pt;}
.ws10{word-spacing:13.074128pt;}
.ws11{word-spacing:13.076795pt;}
.ws17{word-spacing:13.333286pt;}
.wsf{word-spacing:13.333328pt;}
.ws14{word-spacing:13.333443pt;}
.ws21{word-spacing:14.444545pt;}
._19{margin-left:-2055.803568pt;}
._9{margin-left:-10.666662pt;}
._1{margin-left:-9.105859pt;}
._6{margin-left:-7.330728pt;}
._18{margin-left:-5.919565pt;}
._4{margin-left:-4.939065pt;}
._1d{margin-left:-4.012031pt;}
._3{margin-left:-3.058433pt;}
._5{margin-left:-1.366566pt;}
._2{width:1.262811pt;}
._7{width:2.246635pt;}
._0{width:3.642576pt;}
._11{width:4.698753pt;}
._a{width:5.823998pt;}
._c{width:6.885224pt;}
._15{width:7.829704pt;}
._12{width:9.045383pt;}
._10{width:10.271889pt;}
._e{width:11.375962pt;}
._8{width:13.199707pt;}
._b{width:14.501221pt;}
._13{width:16.106660pt;}
._f{width:17.055993pt;}
._23{width:17.957593pt;}
._14{width:18.853432pt;}
._d{width:20.197561pt;}
._17{width:21.593827pt;}
._24{width:22.765650pt;}
._20{width:23.691517pt;}
._1b{width:25.124868pt;}
._16{width:26.410603pt;}
._1e{width:28.751657pt;}
._1a{width:34.109280pt;}
._22{width:37.587943pt;}
._21{width:39.356675pt;}
._1f{width:40.591439pt;}
._1c{width:977.944507pt;}
.fsa{font-size:35.999986pt;}
.fs9{font-size:37.333318pt;}
.fs6{font-size:42.666650pt;}
.fs5{font-size:47.999981pt;}
.fs1{font-size:53.333312pt;}
.fs3{font-size:55.999978pt;}
.fs8{font-size:58.666643pt;}
.fs4{font-size:63.999974pt;}
.fs7{font-size:69.333306pt;}
.fs2{font-size:74.666637pt;}
.fs0{font-size:149.333274pt;}
.y0{bottom:0.000000pt;}
.y102{bottom:52.864576pt;}
.ycf{bottom:57.796307pt;}
.y58{bottom:58.165107pt;}
.y5e{bottom:58.167240pt;}
.y14d{bottom:58.636573pt;}
.ycc{bottom:58.931507pt;}
.y8b{bottom:58.931907pt;}
.yf0{bottom:58.935240pt;}
.y166{bottom:58.936440pt;}
.y13c{bottom:59.649906pt;}
.y30{bottom:60.716573pt;}
.y101{bottom:68.024570pt;}
.yce{bottom:71.621902pt;}
.y57{bottom:73.325101pt;}
.y5d{bottom:73.327234pt;}
.y14c{bottom:73.796567pt;}
.ycb{bottom:74.091501pt;}
.y8a{bottom:74.091901pt;}
.yef{bottom:74.095234pt;}
.y165{bottom:74.096434pt;}
.y13b{bottom:74.809900pt;}
.y100{bottom:83.184564pt;}
.y56{bottom:88.485095pt;}
.y5c{bottom:88.487228pt;}
.y14b{bottom:88.956561pt;}
.yca{bottom:89.251495pt;}
.y89{bottom:89.251895pt;}
.yee{bottom:89.255228pt;}
.y164{bottom:89.256428pt;}
.y13a{bottom:89.969894pt;}
.y2f{bottom:89.995628pt;}
.yff{bottom:98.344558pt;}
.y55{bottom:103.645089pt;}
.y5b{bottom:103.647222pt;}
.y14a{bottom:104.116555pt;}
.ya1{bottom:104.411889pt;}
.yed{bottom:104.415222pt;}
.y139{bottom:105.129888pt;}
.y1{bottom:107.659360pt;}
.yfe{bottom:113.504552pt;}
.y54{bottom:118.805083pt;}
.y5a{bottom:118.807216pt;}
.y2e{bottom:119.275616pt;}
.y149{bottom:119.276549pt;}
.yc9{bottom:119.571482pt;}
.y88{bottom:119.571882pt;}
.yec{bottom:119.575216pt;}
.y138{bottom:120.289882pt;}
.yfd{bottom:128.664545pt;}
.y53{bottom:133.965077pt;}
.y148{bottom:134.436543pt;}
.yc8{bottom:134.731476pt;}
.y87{bottom:134.731876pt;}
.yeb{bottom:134.735210pt;}
.y137{bottom:135.449876pt;}
.yfc{bottom:143.824539pt;}
.y2d{bottom:148.555604pt;}
.y52{bottom:149.125071pt;}
.y147{bottom:149.596537pt;}
.y86{bottom:149.891870pt;}
.yea{bottom:149.895204pt;}
.y136{bottom:150.609870pt;}
.yfb{bottom:158.984533pt;}
.y51{bottom:164.285065pt;}
.y146{bottom:164.756531pt;}
.yc7{bottom:165.051464pt;}
.y85{bottom:165.051864pt;}
.ye9{bottom:165.055198pt;}
.y135{bottom:165.769864pt;}
.yfa{bottom:174.144527pt;}
.y2c{bottom:177.835592pt;}
.y50{bottom:179.445058pt;}
.y145{bottom:179.916525pt;}
.yc6{bottom:180.211458pt;}
.y84{bottom:180.211858pt;}
.ye8{bottom:180.215192pt;}
.y134{bottom:180.929858pt;}
.yf9{bottom:189.304521pt;}
.y2b{bottom:192.475587pt;}
.y4f{bottom:194.605052pt;}
.y144{bottom:195.076519pt;}
.yc5{bottom:195.371452pt;}
.y83{bottom:195.371852pt;}
.ye7{bottom:195.375185pt;}
.y133{bottom:196.089852pt;}
.y4e{bottom:209.765046pt;}
.y143{bottom:210.236513pt;}
.yc4{bottom:210.531446pt;}
.y82{bottom:210.531846pt;}
.ye6{bottom:210.535179pt;}
.y132{bottom:211.249846pt;}
.yf8{bottom:219.624509pt;}
.y2a{bottom:221.755575pt;}
.y4d{bottom:224.925040pt;}
.y142{bottom:225.396507pt;}
.yc3{bottom:225.691440pt;}
.y81{bottom:225.691840pt;}
.ye5{bottom:225.695173pt;}
.y131{bottom:226.409840pt;}
.yf7{bottom:234.784503pt;}
.y4c{bottom:240.085034pt;}
.y141{bottom:240.556501pt;}
.yc2{bottom:240.851434pt;}
.y80{bottom:240.851834pt;}
.ye4{bottom:240.855167pt;}
.y130{bottom:241.569834pt;}
.yf6{bottom:249.944497pt;}
.y29{bottom:251.061830pt;}
.y4b{bottom:255.245028pt;}
.y7f{bottom:256.011828pt;}
.ye3{bottom:256.015161pt;}
.y12f{bottom:256.729828pt;}
.y28{bottom:265.701824pt;}
.y4a{bottom:270.405022pt;}
.y7e{bottom:271.171822pt;}
.y163{bottom:271.175155pt;}
.y12e{bottom:271.889822pt;}
.y168{bottom:278.334219pt;}
.yf5{bottom:280.264485pt;}
.y27{bottom:280.341818pt;}
.yd6{bottom:284.903950pt;}
.y49{bottom:285.565016pt;}
.y7d{bottom:286.331816pt;}
.ye2{bottom:286.335149pt;}
.y13d{bottom:287.049815pt;}
.y167{bottom:292.160480pt;}
.y26{bottom:294.981812pt;}
.yf4{bottom:295.424479pt;}
.yd5{bottom:300.063277pt;}
.y48{bottom:300.725010pt;}
.y7c{bottom:301.491810pt;}
.ye1{bottom:301.495143pt;}
.y12d{bottom:302.209809pt;}
.y25{bottom:309.621806pt;}
.yf3{bottom:310.584473pt;}
.yd4{bottom:315.223271pt;}
.y47{bottom:315.885004pt;}
.y7b{bottom:316.651804pt;}
.ye0{bottom:316.655137pt;}
.y12c{bottom:317.369803pt;}
.y24{bottom:324.261801pt;}
.yf2{bottom:325.744467pt;}
.yc{bottom:327.776332pt;}
.yd3{bottom:330.383265pt;}
.y46{bottom:331.044998pt;}
.y7a{bottom:331.811798pt;}
.y162{bottom:331.815131pt;}
.y12b{bottom:332.529797pt;}
.yf1{bottom:340.904461pt;}
.yd2{bottom:345.542592pt;}
.y45{bottom:346.204992pt;}
.y79{bottom:346.971791pt;}
.ydf{bottom:346.975125pt;}
.yb{bottom:348.353791pt;}
.y23{bottom:354.236029pt;}
.yd1{bottom:360.702586pt;}
.y44{bottom:361.364986pt;}
.y78{bottom:362.131785pt;}
.yde{bottom:362.135119pt;}
.y22{bottom:367.302903pt;}
.y43{bottom:376.524980pt;}
.ya{bottom:376.935513pt;}
.y77{bottom:377.291779pt;}
.ydd{bottom:377.295113pt;}
.y21{bottom:380.369778pt;}
.yd0{bottom:383.444444pt;}
.y140{bottom:387.086842pt;}
.y12a{bottom:389.975108pt;}
.y42{bottom:391.684974pt;}
.y76{bottom:392.451773pt;}
.y161{bottom:392.455107pt;}
.y9{bottom:397.511105pt;}
.y13f{bottom:400.913770pt;}
.y129{bottom:405.135102pt;}
.y41{bottom:406.844968pt;}
.y75{bottom:407.611767pt;}
.ydc{bottom:407.615101pt;}
.y128{bottom:420.295095pt;}
.y40{bottom:422.004961pt;}
.yc1{bottom:422.771361pt;}
.y74{bottom:422.771761pt;}
.ydb{bottom:422.775094pt;}
.y8{bottom:427.469759pt;}
.y127{bottom:435.455089pt;}
.y3f{bottom:437.164955pt;}
.yc0{bottom:437.931355pt;}
.y73{bottom:437.931755pt;}
.yda{bottom:437.935088pt;}
.y7{bottom:449.872150pt;}
.y126{bottom:450.615083pt;}
.y20{bottom:451.837616pt;}
.y3e{bottom:452.324949pt;}
.ybf{bottom:453.091349pt;}
.ya0{bottom:453.091749pt;}
.y160{bottom:453.095082pt;}
.y125{bottom:465.775077pt;}
.y1f{bottom:466.504277pt;}
.y3d{bottom:467.484943pt;}
.y72{bottom:468.251743pt;}
.yd9{bottom:468.255076pt;}
.ybe{bottom:475.832540pt;}
.y6{bottom:479.829605pt;}
.y124{bottom:480.935071pt;}
.y1e{bottom:481.170938pt;}
.y3c{bottom:482.644937pt;}
.y9f{bottom:483.411737pt;}
.yd8{bottom:483.415070pt;}
.ybd{bottom:490.992534pt;}
.y1d{bottom:495.837599pt;}
.y123{bottom:496.095065pt;}
.y3b{bottom:497.804931pt;}
.y9e{bottom:498.571731pt;}
.y15f{bottom:498.575064pt;}
.y1c{bottom:510.502526pt;}
.y122{bottom:511.255059pt;}
.y3a{bottom:512.964925pt;}
.y71{bottom:513.731725pt;}
.y15e{bottom:513.735058pt;}
.ybc{bottom:521.312522pt;}
.y1b{bottom:525.169187pt;}
.y121{bottom:526.415053pt;}
.y59{bottom:528.124919pt;}
.y70{bottom:528.891052pt;}
.y9d{bottom:528.891719pt;}
.y15d{bottom:528.895052pt;}
.y110{bottom:531.032385pt;}
.ybb{bottom:536.472516pt;}
.y120{bottom:541.575047pt;}
.y39{bottom:543.284913pt;}
.y1a{bottom:543.615446pt;}
.y6f{bottom:544.050379pt;}
.y9c{bottom:544.051713pt;}
.y15c{bottom:544.055046pt;}
.y10f{bottom:546.192378pt;}
.yba{bottom:551.632510pt;}
.y11f{bottom:556.735041pt;}
.y6e{bottom:559.209707pt;}
.y9b{bottom:559.211707pt;}
.y15b{bottom:559.215040pt;}
.y10e{bottom:561.352372pt;}
.y5{bottom:563.477705pt;}
.yb9{bottom:566.792504pt;}
.y11e{bottom:571.895035pt;}
.y6d{bottom:574.369034pt;}
.y9a{bottom:574.371701pt;}
.y15a{bottom:574.375034pt;}
.y10d{bottom:576.512366pt;}
.y4{bottom:579.477698pt;}
.yb8{bottom:581.952497pt;}
.y11d{bottom:587.054362pt;}
.y19{bottom:587.615429pt;}
.y6c{bottom:589.528361pt;}
.y99{bottom:589.531694pt;}
.y159{bottom:589.535028pt;}
.y10c{bottom:591.672360pt;}
.yb7{bottom:597.112491pt;}
.y11c{bottom:602.214356pt;}
.y18{bottom:602.282089pt;}
.y6b{bottom:604.689022pt;}
.y98{bottom:604.691688pt;}
.yad{bottom:604.694355pt;}
.y158{bottom:604.695022pt;}
.y3{bottom:606.820221pt;}
.y10b{bottom:606.832354pt;}
.y38{bottom:609.183020pt;}
.yb6{bottom:612.272485pt;}
.y17{bottom:616.948750pt;}
.y11b{bottom:617.374350pt;}
.y6a{bottom:619.849682pt;}
.y97{bottom:619.851682pt;}
.yac{bottom:619.854349pt;}
.y157{bottom:619.855016pt;}
.y10a{bottom:621.992348pt;}
.yb5{bottom:627.432479pt;}
.y16{bottom:631.615411pt;}
.y11a{bottom:632.534344pt;}
.y69{bottom:635.010343pt;}
.y96{bottom:635.011676pt;}
.yab{bottom:635.014343pt;}
.y156{bottom:635.015010pt;}
.y109{bottom:637.152342pt;}
.yb4{bottom:642.592473pt;}
.y15{bottom:646.281005pt;}
.y2{bottom:646.819005pt;}
.y119{bottom:647.694338pt;}
.y68{bottom:650.171004pt;}
.y95{bottom:650.171670pt;}
.yaa{bottom:650.174337pt;}
.y155{bottom:650.175004pt;}
.y108{bottom:652.312336pt;}
.yb3{bottom:657.752467pt;}
.y14{bottom:660.947666pt;}
.y118{bottom:662.854332pt;}
.y37{bottom:663.901798pt;}
.y67{bottom:665.331664pt;}
.ya9{bottom:665.334331pt;}
.y154{bottom:665.334997pt;}
.y107{bottom:667.472330pt;}
.yb2{bottom:672.912461pt;}
.y13{bottom:675.614327pt;}
.y117{bottom:678.014326pt;}
.y36{bottom:679.235525pt;}
.y94{bottom:680.491658pt;}
.y66{bottom:680.492325pt;}
.ya8{bottom:680.494325pt;}
.y153{bottom:680.494991pt;}
.y106{bottom:682.632324pt;}
.y12{bottom:690.280987pt;}
.y116{bottom:693.174320pt;}
.y35{bottom:694.569919pt;}
.y93{bottom:695.651652pt;}
.y65{bottom:695.652985pt;}
.yb1{bottom:695.653652pt;}
.ya7{bottom:695.654319pt;}
.y152{bottom:695.654985pt;}
.y105{bottom:697.792318pt;}
.y170{bottom:698.426968pt;}
.y178{bottom:698.429368pt;}
.y11{bottom:704.947648pt;}
.y115{bottom:708.334314pt;}
.y34{bottom:709.902980pt;}
.y92{bottom:710.811646pt;}
.y64{bottom:710.813646pt;}
.ya6{bottom:710.814313pt;}
.y151{bottom:710.814979pt;}
.y177{bottom:713.588162pt;}
.y16f{bottom:713.588837pt;}
.y10{bottom:723.393241pt;}
.y114{bottom:723.494308pt;}
.y91{bottom:725.971640pt;}
.y63{bottom:725.973640pt;}
.ya5{bottom:725.974307pt;}
.y150{bottom:725.974973pt;}
.y104{bottom:728.112306pt;}
.y16e{bottom:728.746964pt;}
.y176{bottom:728.748155pt;}
.y33{bottom:729.016305pt;}
.y113{bottom:738.654301pt;}
.y90{bottom:741.131634pt;}
.yb0{bottom:741.133634pt;}
.ya4{bottom:741.134300pt;}
.y14f{bottom:741.134967pt;}
.y16d{bottom:743.906958pt;}
.y175{bottom:743.908149pt;}
.y112{bottom:753.814295pt;}
.y8f{bottom:756.291628pt;}
.y62{bottom:756.293628pt;}
.ya3{bottom:756.294294pt;}
.y14e{bottom:756.294961pt;}
.y174{bottom:759.068143pt;}
.y16c{bottom:759.068827pt;}
.yf{bottom:767.394423pt;}
.y8e{bottom:771.451622pt;}
.y61{bottom:771.454288pt;}
.yd7{bottom:771.454955pt;}
.y173{bottom:774.226937pt;}
.y16b{bottom:774.227621pt;}
.y32{bottom:780.082952pt;}
.y111{bottom:784.133617pt;}
.ye{bottom:785.840683pt;}
.y8d{bottom:786.611616pt;}
.yaf{bottom:786.614282pt;}
.y60{bottom:786.614949pt;}
.y172{bottom:789.386931pt;}
.y16a{bottom:789.387615pt;}
.y31{bottom:798.749611pt;}
.y8c{bottom:801.771610pt;}
.yae{bottom:801.774276pt;}
.y5f{bottom:801.774943pt;}
.yd{bottom:804.286942pt;}
.y171{bottom:804.546925pt;}
.y169{bottom:804.546942pt;}
.ya2{bottom:845.992925pt;}
.ycd{bottom:845.996525pt;}
.y103{bottom:845.997592pt;}
.y13e{bottom:845.998925pt;}
.y179{bottom:847.888258pt;}
.he{height:33.450653pt;}
.h9{height:38.186651pt;}
.hd{height:38.229318pt;}
.h10{height:42.959983pt;}
.h8{height:43.007983pt;}
.ha{height:43.011716pt;}
.h7{height:43.055983pt;}
.hf{height:47.733314pt;}
.h3{height:47.786648pt;}
.hc{height:52.506646pt;}
.h6{height:57.279977pt;}
.hb{height:62.191975pt;}
.h5{height:66.901307pt;}
.h4{height:66.975973pt;}
.h2{height:133.802613pt;}
.h1{height:907.295840pt;}
.h0{height:1122.666667pt;}
.w1{width:642.844960pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1e{left:63.747838pt;}
.x38{left:71.973168pt;}
.x3b{left:74.318500pt;}
.x1{left:75.217440pt;}
.x36{left:81.414364pt;}
.x26{left:82.644764pt;}
.x21{left:84.713163pt;}
.x39{left:94.080626pt;}
.x3d{left:95.517158pt;}
.x2b{left:99.247024pt;}
.x35{left:100.247423pt;}
.x2f{left:106.063821pt;}
.x3{left:110.442619pt;}
.xa{left:112.407818pt;}
.x37{left:115.581417pt;}
.xc{left:118.773149pt;}
.x24{left:128.312945pt;}
.x23{left:135.286062pt;}
.x8{left:138.163808pt;}
.x30{left:143.940072pt;}
.x18{left:144.943832pt;}
.x22{left:148.299804pt;}
.x7{left:167.080036pt;}
.x12{left:181.734324pt;}
.x4{left:190.883787pt;}
.xe{left:200.204983pt;}
.x15{left:205.399461pt;}
.x2{left:208.845113pt;}
.x1f{left:210.349112pt;}
.x14{left:213.336978pt;}
.x13{left:216.696977pt;}
.x9{left:225.935773pt;}
.xf{left:226.864973pt;}
.xb{left:230.090438pt;}
.x17{left:231.351264pt;}
.x11{left:234.364970pt;}
.xd{left:235.463769pt;}
.x16{left:245.659392pt;}
.x3c{left:254.047762pt;}
.x1c{left:260.077387pt;}
.x19{left:265.137384pt;}
.x1b{left:266.477385pt;}
.x1a{left:267.588010pt;}
.x1d{left:269.141130pt;}
.x5{left:278.573085pt;}
.x10{left:282.535617pt;}
.x6{left:287.227455pt;}
.x25{left:288.755748pt;}
.x27{left:332.094397pt;}
.x31{left:340.319727pt;}
.x32{left:346.986391pt;}
.x2e{left:349.762649pt;}
.x28{left:350.991856pt;}
.x34{left:358.761320pt;}
.x33{left:361.594519pt;}
.x3a{left:363.261585pt;}
.x29{left:367.594383pt;}
.x2d{left:368.595708pt;}
.x2a{left:394.260906pt;}
.x2c{left:414.084098pt;}
.x20{left:449.755683pt;}
}




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