
    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_8d8a39a77bd9ccc9616ebad9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.149000;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_d190c45f73fe72d7d1b6fae2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.141000;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.250000,-0.000075,0.000075,0.250000,0,0);-ms-transform:matrix(0.250000,-0.000075,0.000075,0.250000,0,0);-webkit-transform:matrix(0.250000,-0.000075,0.000075,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);}
.v2{vertical-align:-20.783993px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.912199px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000180px;}
.lsd{letter-spacing:0.000198px;}
.lsc{letter-spacing:0.000420px;}
.ls6{letter-spacing:0.000986px;}
.ls7{letter-spacing:0.001680px;}
.ls13{letter-spacing:0.002935px;}
.ls2{letter-spacing:0.003234px;}
.ls10{letter-spacing:0.013745px;}
.ls11{letter-spacing:0.018348px;}
.lsf{letter-spacing:0.021420px;}
.ls15{letter-spacing:0.023988px;}
.lse{letter-spacing:0.031290px;}
.ls14{letter-spacing:0.046488px;}
.ls8{letter-spacing:0.427412px;}
.ls3{letter-spacing:0.610664px;}
.ls5{letter-spacing:0.612090px;}
.ls12{letter-spacing:14.529611px;}
.lsa{letter-spacing:15.481177px;}
.lsb{letter-spacing:17.352894px;}
.ls4{letter-spacing:21.440315px;}
.ls9{letter-spacing:27.601798px;}
.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;}
}
.ws0{word-spacing:-20.371492px;}
.ws26{word-spacing:-18.519593px;}
.ws8{word-spacing:-15.889358px;}
.ws3{word-spacing:-15.741594px;}
.ws11{word-spacing:-15.706106px;}
.ws2{word-spacing:-15.278694px;}
.wsd{word-spacing:-13.889664px;}
.ws16{word-spacing:-11.806225px;}
.wsa{word-spacing:-1.294991px;}
.wsf{word-spacing:-0.733608px;}
.ws4{word-spacing:0.000000px;}
.ws15{word-spacing:0.289347px;}
.ws13{word-spacing:1.548396px;}
.ws1d{word-spacing:2.720477px;}
.ws1e{word-spacing:2.726215px;}
.ws12{word-spacing:2.855039px;}
.ws1b{word-spacing:3.503958px;}
.wse{word-spacing:3.666869px;}
.ws22{word-spacing:3.934372px;}
.ws1c{word-spacing:3.934431px;}
.ws1a{word-spacing:4.286460px;}
.wsc{word-spacing:4.642596px;}
.ws21{word-spacing:4.648972px;}
.ws1f{word-spacing:4.690972px;}
.ws20{word-spacing:4.882372px;}
.ws7{word-spacing:5.068432px;}
.ws14{word-spacing:5.072099px;}
.ws10{word-spacing:5.072710px;}
.ws6{word-spacing:5.093098px;}
.ws1{word-spacing:5.101384px;}
.ws17{word-spacing:5.136226px;}
.ws23{word-spacing:5.942716px;}
.ws9{word-spacing:6.164746px;}
.ws24{word-spacing:8.885024px;}
.ws5{word-spacing:9.269438px;}
.ws19{word-spacing:9.332930px;}
.ws18{word-spacing:10.676720px;}
.ws25{word-spacing:776.385829px;}
.wsb{word-spacing:776.394289px;}
._0{margin-left:-10.512097px;}
._1a{margin-left:-8.591646px;}
._1{margin-left:-6.784202px;}
._19{margin-left:-5.681062px;}
._d{margin-left:-4.658555px;}
._2{margin-left:-3.361141px;}
._3{margin-left:-2.329938px;}
._8{margin-left:-1.128179px;}
._4{width:1.322294px;}
._b{width:2.456803px;}
._9{width:4.345051px;}
._c{width:5.479894px;}
._5{width:7.240503px;}
._6{width:8.381076px;}
._e{width:10.391278px;}
._15{width:11.571259px;}
._10{width:13.548959px;}
._7{width:14.737857px;}
._11{width:16.867595px;}
._f{width:18.629359px;}
._a{width:20.021037px;}
._12{width:25.005706px;}
._17{width:26.436432px;}
._18{width:28.765280px;}
._13{width:29.998622px;}
._1b{width:38.885648px;}
._14{width:42.562567px;}
._16{width:121.414191px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:44.076582px;}
.fs9{font-size:47.224901px;}
.fs4{font-size:55.558658px;}
.fs7{font-size:57.040300px;}
.fs1{font-size:61.114776px;}
.fs6{font-size:61.114778px;}
.fs2{font-size:62.966375px;}
.fs3{font-size:74.078370px;}
.fs0{font-size:81.485967px;}
.fs5{font-size:81.485971px;}
.y0{bottom:0.000000px;}
.y1{bottom:1.603125px;}
.y18c{bottom:117.918730px;}
.y13f{bottom:118.995646px;}
.y1e{bottom:119.048577px;}
.y15f{bottom:119.973326px;}
.y6d{bottom:120.000026px;}
.y116{bottom:120.009176px;}
.yda{bottom:120.433676px;}
.yf3{bottom:120.647426px;}
.yb5{bottom:120.652676px;}
.y173{bottom:120.675626px;}
.y44{bottom:120.687176px;}
.y18b{bottom:137.358713px;}
.y13e{bottom:138.436988px;}
.y15e{bottom:143.890817px;}
.y6c{bottom:143.916167px;}
.y115{bottom:143.925317px;}
.y95{bottom:144.498917px;}
.yf2{bottom:144.542417px;}
.yb4{bottom:144.549767px;}
.y43{bottom:144.552767px;}
.y172{bottom:144.571967px;}
.yd9{bottom:144.696466px;}
.y13d{bottom:157.896611px;}
.y1d{bottom:157.946861px;}
.y15d{bottom:167.806957px;}
.y6b{bottom:167.832307px;}
.y114{bottom:167.841457px;}
.y94{bottom:168.395257px;}
.yf1{bottom:168.438757px;}
.yb3{bottom:168.444757px;}
.y42{bottom:168.449107px;}
.y171{bottom:168.466957px;}
.yd8{bottom:168.958507px;}
.y18a{bottom:176.255648px;}
.y13c{bottom:177.337953px;}
.y1c{bottom:177.386853px;}
.y15c{bottom:191.701948px;}
.y6a{bottom:191.728648px;}
.y93{bottom:192.291597px;}
.y170{bottom:192.295347px;}
.yf0{bottom:192.333747px;}
.yb2{bottom:192.341097px;}
.y41{bottom:192.345447px;}
.yd7{bottom:193.191147px;}
.y189{bottom:195.706130px;}
.y13b{bottom:196.777946px;}
.y1b{bottom:196.828196px;}
.y188{bottom:215.147473px;}
.y69{bottom:215.609838px;}
.y15b{bottom:215.618088px;}
.y113{bottom:215.644788px;}
.y92{bottom:216.186588px;}
.y16f{bottom:216.191688px;}
.y13a{bottom:216.219288px;}
.yef{bottom:216.230088px;}
.yb1{bottom:216.236088px;}
.y40{bottom:216.240438px;}
.y1a{bottom:216.268188px;}
.yd6{bottom:217.453937px;}
.y187{bottom:234.593090px;}
.y19{bottom:235.709530px;}
.y68{bottom:239.527329px;}
.y15a{bottom:239.534229px;}
.y91{bottom:240.082928px;}
.y16e{bottom:240.086678px;}
.yee{bottom:240.125078px;}
.yb0{bottom:240.132428px;}
.y3f{bottom:240.136778px;}
.y139{bottom:240.855278px;}
.yd5{bottom:241.716728px;}
.y186{bottom:254.038004px;}
.y18{bottom:255.150872px;}
.y112{bottom:263.416769px;}
.y67{bottom:263.443469px;}
.y159{bottom:263.451719px;}
.y90{bottom:263.977919px;}
.y16d{bottom:263.983019px;}
.y3e{bottom:264.021419px;}
.yaf{bottom:264.027419px;}
.yd4{bottom:265.978768px;}
.y185{bottom:273.488487px;}
.y17{bottom:274.590865px;}
.y66{bottom:287.359609px;}
.y158{bottom:287.367859px;}
.y8f{bottom:287.875009px;}
.y16c{bottom:287.878009px;}
.y3d{bottom:287.916409px;}
.y138{bottom:288.832957px;}
.yd3{bottom:290.241558px;}
.y184{bottom:292.929829px;}
.y16{bottom:294.032207px;}
.y65{bottom:311.275750px;}
.y157{bottom:311.283250px;}
.yed{bottom:311.752900px;}
.y8e{bottom:311.770000px;}
.y16b{bottom:311.774350px;}
.y3c{bottom:311.808400px;}
.y183{bottom:312.378962px;}
.y137{bottom:312.729297px;}
.y15{bottom:313.472199px;}
.y182{bottom:331.820304px;}
.y14{bottom:332.913541px;}
.y156{bottom:335.116590px;}
.y111{bottom:335.143290px;}
.y64{bottom:335.172090px;}
.yec{bottom:335.649240px;}
.y8d{bottom:335.666340px;}
.y16a{bottom:335.669340px;}
.y3b{bottom:335.698890px;}
.y136{bottom:336.619271px;}
.yd2{bottom:338.728439px;}
.y181{bottom:351.270787px;}
.y13{bottom:352.354883px;}
.y63{bottom:359.003781px;}
.y155{bottom:359.032731px;}
.y110{bottom:359.059431px;}
.yeb{bottom:359.544231px;}
.y8c{bottom:359.561331px;}
.y169{bottom:359.565681px;}
.y3a{bottom:359.589231px;}
.y135{bottom:360.491837px;}
.y180{bottom:370.710779px;}
.y62{bottom:382.919921px;}
.y154{bottom:382.950221px;}
.y10f{bottom:382.976921px;}
.yea{bottom:383.440571px;}
.y8b{bottom:383.457671px;}
.y39{bottom:383.462021px;}
.y134{bottom:384.388927px;}
.y17f{bottom:390.165481px;}
.y12{bottom:391.251818px;}
.y61{bottom:406.837412px;}
.y153{bottom:406.866362px;}
.y10e{bottom:406.893062px;}
.ye9{bottom:407.335561px;}
.y8a{bottom:407.352661px;}
.y38{bottom:407.357011px;}
.y133{bottom:408.283918px;}
.y17e{bottom:409.606823px;}
.yd1{bottom:411.494760px;}
.y17d{bottom:429.048165px;}
.y10d{bottom:430.679902px;}
.y60{bottom:430.753552px;}
.y152{bottom:430.781752px;}
.ye8{bottom:431.231902px;}
.y89{bottom:431.249002px;}
.y37{bottom:431.253352px;}
.y132{bottom:432.180258px;}
.yd0{bottom:435.757550px;}
.y17c{bottom:448.493079px;}
.y11{bottom:449.590845px;}
.y10c{bottom:454.597393px;}
.y5f{bottom:454.669692px;}
.y151{bottom:454.697892px;}
.ye7{bottom:455.126892px;}
.y88{bottom:455.143992px;}
.y36{bottom:455.148342px;}
.y131{bottom:456.040866px;}
.ycf{bottom:460.020340px;}
.y17b{bottom:467.943562px;}
.y10b{bottom:478.513533px;}
.y5e{bottom:478.585833px;}
.y150{bottom:478.614033px;}
.ye6{bottom:479.023233px;}
.y87{bottom:479.040333px;}
.y35{bottom:479.044683px;}
.y130{bottom:479.937207px;}
.yce{bottom:484.283131px;}
.y17a{bottom:487.384904px;}
.y10{bottom:488.487779px;}
.y10a{bottom:502.429673px;}
.y14f{bottom:502.476173px;}
.y5d{bottom:502.501973px;}
.yae{bottom:502.830923px;}
.y86{bottom:502.862723px;}
.ye5{bottom:502.918223px;}
.y12f{bottom:503.832197px;}
.y179{bottom:506.833334px;}
.yf{bottom:507.929121px;}
.ycd{bottom:508.545921px;}
.y178{bottom:526.275426px;}
.y109{bottom:526.345814px;}
.y14e{bottom:526.391564px;}
.y5c{bottom:526.417364px;}
.yad{bottom:526.725914px;}
.y85{bottom:526.759064px;}
.y34{bottom:526.767614px;}
.y168{bottom:526.777964px;}
.ye4{bottom:526.815314px;}
.ye{bottom:527.370463px;}
.y12e{bottom:527.728538px;}
.ycc{bottom:532.808711px;}
.y177{bottom:545.725206px;}
.yd{bottom:546.810456px;}
.y108{bottom:550.261954px;}
.y14d{bottom:550.306954px;}
.y5b{bottom:550.333504px;}
.yac{bottom:550.622254px;}
.y84{bottom:550.654054px;}
.ye3{bottom:550.710304px;}
.y12d{bottom:551.623828px;}
.ycb{bottom:557.071502px;}
.y176{bottom:565.165198px;}
.yc{bottom:566.251798px;}
.y107{bottom:574.178095px;}
.y5a{bottom:574.187245px;}
.y14c{bottom:574.223095px;}
.yab{bottom:574.517245px;}
.y83{bottom:574.550395px;}
.y12c{bottom:575.520169px;}
.yca{bottom:581.334292px;}
.y175{bottom:584.607291px;}
.yb{bottom:585.693140px;}
.y106{bottom:598.094235px;}
.y59{bottom:598.103385px;}
.y14b{bottom:598.138485px;}
.yaa{bottom:598.413585px;}
.y33{bottom:598.435035px;}
.y82{bottom:598.445385px;}
.y12b{bottom:599.395680px;}
.ya{bottom:605.133132px;}
.yc9{bottom:605.596332px;}
.y105{bottom:622.010376px;}
.y58{bottom:622.020876px;}
.y14a{bottom:622.055976px;}
.ya9{bottom:622.308575px;}
.y32{bottom:622.330025px;}
.y81{bottom:622.341725px;}
.y12a{bottom:623.290670px;}
.y9{bottom:624.574475px;}
.y174{bottom:627.891273px;}
.yc8{bottom:629.807072px;}
.y8{bottom:644.014467px;}
.y104{bottom:645.927866px;}
.y57{bottom:645.937016px;}
.ya8{bottom:646.204916px;}
.y31{bottom:646.226366px;}
.y80{bottom:646.236716px;}
.y129{bottom:647.186861px;}
.yc7{bottom:654.069113px;}
.y7{bottom:663.455809px;}
.y103{bottom:669.844006px;}
.y56{bottom:669.853156px;}
.ya7{bottom:670.101256px;}
.y30{bottom:670.121356px;}
.y7f{bottom:670.133056px;}
.y128{bottom:671.081851px;}
.yc6{bottom:678.331903px;}
.y6{bottom:682.897901px;}
.y102{bottom:693.760147px;}
.y55{bottom:693.769297px;}
.ya6{bottom:693.996247px;}
.y2f{bottom:694.017697px;}
.y7e{bottom:694.028047px;}
.y127{bottom:694.971511px;}
.yc5{bottom:702.594693px;}
.y101{bottom:717.676287px;}
.y54{bottom:717.685437px;}
.ya5{bottom:717.892587px;}
.y2e{bottom:717.914037px;}
.y7d{bottom:717.924387px;}
.y126{bottom:718.849856px;}
.y5{bottom:721.794086px;}
.yc4{bottom:726.857484px;}
.y53{bottom:741.491178px;}
.y100{bottom:741.592428px;}
.ya4{bottom:741.787578px;}
.y2d{bottom:741.809028px;}
.y7c{bottom:741.820728px;}
.y125{bottom:742.746197px;}
.yc3{bottom:751.120274px;}
.yff{bottom:765.388268px;}
.y52{bottom:765.407318px;}
.y149{bottom:765.410318px;}
.ya3{bottom:765.683918px;}
.y2c{bottom:765.705368px;}
.y7b{bottom:765.715718px;}
.y124{bottom:766.642537px;}
.yc2{bottom:775.383064px;}
.yfe{bottom:789.304409px;}
.y51{bottom:789.323459px;}
.y148{bottom:789.326459px;}
.ya2{bottom:789.578909px;}
.y2b{bottom:789.600359px;}
.y7a{bottom:789.612059px;}
.y123{bottom:790.487498px;}
.yc1{bottom:799.645855px;}
.yfd{bottom:813.220549px;}
.y50{bottom:813.239599px;}
.y147{bottom:813.241849px;}
.ye2{bottom:813.446449px;}
.y167{bottom:813.464899px;}
.y79{bottom:813.468649px;}
.ya1{bottom:813.475249px;}
.y2a{bottom:813.496699px;}
.y122{bottom:814.382489px;}
.yc0{bottom:823.908645px;}
.yfc{bottom:837.136690px;}
.y4f{bottom:837.155739px;}
.y146{bottom:837.157989px;}
.ye1{bottom:837.342789px;}
.y166{bottom:837.359139px;}
.y78{bottom:837.364989px;}
.ya0{bottom:837.370239px;}
.y29{bottom:837.391689px;}
.y121{bottom:838.278979px;}
.y4{bottom:846.849036px;}
.ybf{bottom:848.171435px;}
.yfb{bottom:861.052830px;}
.y4e{bottom:861.071880px;}
.y145{bottom:861.074130px;}
.ye0{bottom:861.237780px;}
.y165{bottom:861.255480px;}
.y77{bottom:861.259980px;}
.y9f{bottom:861.266580px;}
.y28{bottom:861.288030px;}
.y120{bottom:862.187322px;}
.ybe{bottom:872.434225px;}
.yfa{bottom:884.968970px;}
.y4d{bottom:884.989370px;}
.y144{bottom:884.990270px;}
.ydf{bottom:885.134120px;}
.y164{bottom:885.149720px;}
.y76{bottom:885.156320px;}
.y9e{bottom:885.162920px;}
.y27{bottom:885.173420px;}
.y11f{bottom:886.070854px;}
.ybd{bottom:896.662966px;}
.yf9{bottom:908.885111px;}
.y4c{bottom:908.905511px;}
.y143{bottom:908.907761px;}
.yde{bottom:909.029111px;}
.y26{bottom:909.040961px;}
.y163{bottom:909.046811px;}
.y75{bottom:909.051311px;}
.y9d{bottom:909.057911px;}
.y11e{bottom:909.965845px;}
.ybc{bottom:920.925006px;}
.yf8{bottom:932.802601px;}
.y4b{bottom:932.821651px;}
.y142{bottom:932.823151px;}
.ydd{bottom:932.925451px;}
.y25{bottom:932.937301px;}
.y162{bottom:932.941051px;}
.y74{bottom:932.947651px;}
.y9c{bottom:932.955001px;}
.y11d{bottom:933.862185px;}
.y3{bottom:941.339998px;}
.ybb{bottom:945.187796px;}
.yf7{bottom:956.718742px;}
.y4a{bottom:956.737792px;}
.y141{bottom:956.738542px;}
.ydc{bottom:956.821792px;}
.y9b{bottom:956.825242px;}
.y24{bottom:956.832292px;}
.y161{bottom:956.838142px;}
.y73{bottom:956.843992px;}
.y11c{bottom:957.757201px;}
.yba{bottom:969.451937px;}
.yf6{bottom:980.634882px;}
.y49{bottom:980.653932px;}
.ydb{bottom:980.716782px;}
.y9a{bottom:980.720232px;}
.y23{bottom:980.728632px;}
.y160{bottom:980.733132px;}
.y72{bottom:980.738982px;}
.y11b{bottom:981.653541px;}
.yb9{bottom:993.712477px;}
.yf5{bottom:1004.551023px;}
.y48{bottom:1004.569323px;}
.y71{bottom:1004.613123px;}
.y99{bottom:1004.617323px;}
.y22{bottom:1004.623623px;}
.y11a{bottom:1005.544690px;}
.yb8{bottom:1017.976617px;}
.y1f{bottom:1018.634217px;}
.yf4{bottom:1028.467163px;}
.y47{bottom:1028.467913px;}
.y140{bottom:1028.485463px;}
.y70{bottom:1028.508113px;}
.y98{bottom:1028.513663px;}
.y21{bottom:1028.519963px;}
.y119{bottom:1029.428663px;}
.yb7{bottom:1042.239407px;}
.y46{bottom:1052.383303px;}
.y6f{bottom:1052.404453px;}
.y97{bottom:1052.408653px;}
.y118{bottom:1053.325003px;}
.yb6{bottom:1066.501448px;}
.y20{bottom:1076.299444px;}
.y96{bottom:1076.304994px;}
.y117{bottom:1077.220443px;}
.y2{bottom:1122.695925px;}
.y45{bottom:1127.534923px;}
.y18d{bottom:1127.535326px;}
.y6e{bottom:1127.945923px;}
.h30{height:40.858992px;}
.h31{height:57.866098px;}
.h3{height:58.369829px;}
.h39{height:58.378267px;}
.h4{height:68.670649px;}
.h5{height:74.885604px;}
.h26{height:74.885607px;}
.h2{height:75.537492px;}
.h25{height:75.537495px;}
.hb{height:75.554892px;}
.ha{height:75.560892px;}
.h9{height:75.561492px;}
.h2f{height:75.562739px;}
.h2b{height:75.564982px;}
.h24{height:75.574092px;}
.hc{height:75.578892px;}
.h27{height:75.582124px;}
.h13{height:75.602892px;}
.he{height:75.607692px;}
.h2a{height:75.613569px;}
.h2c{height:75.614760px;}
.h8{height:75.626292px;}
.h2e{height:75.630065px;}
.h17{height:75.636492px;}
.h38{height:75.650292px;}
.hd{height:75.655092px;}
.h6{height:75.655692px;}
.h1d{height:75.658092px;}
.h1a{height:75.673692px;}
.h2d{height:75.676786px;}
.h12{height:75.677292px;}
.h1c{height:75.688692px;}
.h14{height:75.691092px;}
.h23{height:75.699492px;}
.h36{height:75.706092px;}
.h33{height:75.714492px;}
.h19{height:75.732492px;}
.h29{height:75.738174px;}
.h1b{height:75.745692px;}
.h34{height:75.753492px;}
.h1f{height:75.762492px;}
.h7{height:75.763692px;}
.h20{height:75.776892px;}
.h1e{height:75.779892px;}
.h35{height:75.784092px;}
.h10{height:75.787092px;}
.h37{height:75.809292px;}
.h15{height:75.833292px;}
.h16{height:75.870492px;}
.h11{height:75.875292px;}
.h32{height:75.930492px;}
.h18{height:75.960492px;}
.hf{height:75.979092px;}
.h21{height:76.018692px;}
.h22{height:76.054692px;}
.h28{height:79.788557px;}
.h1{height:1259.915400px;}
.h0{height:1263.000000px;}
.w1{width:892.440000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:118.114603px;}
.x9{left:136.490495px;}
.x5{left:160.112936px;}
.x3{left:164.174934px;}
.xa{left:178.487929px;}
.x1{left:218.659413px;}
.xe{left:230.990968px;}
.x8{left:253.493889px;}
.xc{left:262.315395px;}
.x2{left:341.464363px;}
.x4{left:391.829843px;}
.x7{left:397.230141px;}
.xd{left:398.319441px;}
.xb{left:728.168709px;}
@media print{
.v2{vertical-align:-18.474660pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.921955pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000160pt;}
.lsd{letter-spacing:0.000176pt;}
.lsc{letter-spacing:0.000373pt;}
.ls6{letter-spacing:0.000877pt;}
.ls7{letter-spacing:0.001493pt;}
.ls13{letter-spacing:0.002609pt;}
.ls2{letter-spacing:0.002875pt;}
.ls10{letter-spacing:0.012218pt;}
.ls11{letter-spacing:0.016309pt;}
.lsf{letter-spacing:0.019040pt;}
.ls15{letter-spacing:0.021323pt;}
.lse{letter-spacing:0.027813pt;}
.ls14{letter-spacing:0.041323pt;}
.ls8{letter-spacing:0.379922pt;}
.ls3{letter-spacing:0.542813pt;}
.ls5{letter-spacing:0.544080pt;}
.ls12{letter-spacing:12.915209pt;}
.lsa{letter-spacing:13.761046pt;}
.lsb{letter-spacing:15.424795pt;}
.ls4{letter-spacing:19.058057pt;}
.ls9{letter-spacing:24.534931pt;}
.ws0{word-spacing:-18.107993pt;}
.ws26{word-spacing:-16.461860pt;}
.ws8{word-spacing:-14.123874pt;}
.ws3{word-spacing:-13.992528pt;}
.ws11{word-spacing:-13.960983pt;}
.ws2{word-spacing:-13.581061pt;}
.wsd{word-spacing:-12.346368pt;}
.ws16{word-spacing:-10.494422pt;}
.wsa{word-spacing:-1.151103pt;}
.wsf{word-spacing:-0.652096pt;}
.ws4{word-spacing:0.000000pt;}
.ws15{word-spacing:0.257197pt;}
.ws13{word-spacing:1.376352pt;}
.ws1d{word-spacing:2.418201pt;}
.ws1e{word-spacing:2.423302pt;}
.ws12{word-spacing:2.537812pt;}
.ws1b{word-spacing:3.114629pt;}
.wse{word-spacing:3.259439pt;}
.ws22{word-spacing:3.497220pt;}
.ws1c{word-spacing:3.497272pt;}
.ws1a{word-spacing:3.810187pt;}
.wsc{word-spacing:4.126752pt;}
.ws21{word-spacing:4.132419pt;}
.ws1f{word-spacing:4.169753pt;}
.ws20{word-spacing:4.339886pt;}
.ws7{word-spacing:4.505273pt;}
.ws14{word-spacing:4.508532pt;}
.ws10{word-spacing:4.509075pt;}
.ws6{word-spacing:4.527198pt;}
.ws1{word-spacing:4.534564pt;}
.ws17{word-spacing:4.565534pt;}
.ws23{word-spacing:5.282414pt;}
.ws9{word-spacing:5.479774pt;}
.ws24{word-spacing:7.897800pt;}
.ws5{word-spacing:8.239501pt;}
.ws19{word-spacing:8.295938pt;}
.ws18{word-spacing:9.490418pt;}
.ws25{word-spacing:690.120737pt;}
.wsb{word-spacing:690.128257pt;}
._0{margin-left:-9.344086pt;}
._1a{margin-left:-7.637019pt;}
._1{margin-left:-6.030402pt;}
._19{margin-left:-5.049833pt;}
._d{margin-left:-4.140937pt;}
._2{margin-left:-2.987681pt;}
._3{margin-left:-2.071056pt;}
._8{margin-left:-1.002826pt;}
._4{width:1.175372pt;}
._b{width:2.183825pt;}
._9{width:3.862268pt;}
._c{width:4.871017pt;}
._5{width:6.436003pt;}
._6{width:7.449846pt;}
._e{width:9.236691pt;}
._15{width:10.285564pt;}
._10{width:12.043519pt;}
._7{width:13.100317pt;}
._11{width:14.993418pt;}
._f{width:16.559430pt;}
._a{width:17.796477pt;}
._12{width:22.227294pt;}
._17{width:23.499050pt;}
._18{width:25.569138pt;}
._13{width:26.665442pt;}
._1b{width:34.565020pt;}
._14{width:37.833393pt;}
._16{width:107.923725pt;}
.fs8{font-size:39.179184pt;}
.fs9{font-size:41.977690pt;}
.fs4{font-size:49.385474pt;}
.fs7{font-size:50.702489pt;}
.fs1{font-size:54.324245pt;}
.fs6{font-size:54.324247pt;}
.fs2{font-size:55.970111pt;}
.fs3{font-size:65.847440pt;}
.fs0{font-size:72.431971pt;}
.fs5{font-size:72.431974pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:1.425000pt;}
.y18c{bottom:104.816649pt;}
.y13f{bottom:105.773907pt;}
.y1e{bottom:105.820957pt;}
.y15f{bottom:106.642957pt;}
.y6d{bottom:106.666690pt;}
.y116{bottom:106.674823pt;}
.yda{bottom:107.052157pt;}
.yf3{bottom:107.242157pt;}
.yb5{bottom:107.246823pt;}
.y173{bottom:107.267223pt;}
.y44{bottom:107.277490pt;}
.y18b{bottom:122.096634pt;}
.y13e{bottom:123.055100pt;}
.y15e{bottom:127.902948pt;}
.y6c{bottom:127.925482pt;}
.y115{bottom:127.933615pt;}
.y95{bottom:128.443481pt;}
.yf2{bottom:128.482148pt;}
.yb4{bottom:128.488681pt;}
.y43{bottom:128.491348pt;}
.y172{bottom:128.508415pt;}
.yd9{bottom:128.619081pt;}
.y13d{bottom:140.352543pt;}
.y1d{bottom:140.397210pt;}
.y15d{bottom:149.161740pt;}
.y6b{bottom:149.184273pt;}
.y114{bottom:149.192406pt;}
.y94{bottom:149.684673pt;}
.yf1{bottom:149.723340pt;}
.yb3{bottom:149.728673pt;}
.y42{bottom:149.732540pt;}
.y171{bottom:149.748406pt;}
.yd8{bottom:150.185339pt;}
.y18a{bottom:156.671687pt;}
.y13c{bottom:157.633736pt;}
.y1c{bottom:157.677203pt;}
.y15c{bottom:170.401731pt;}
.y6a{bottom:170.425465pt;}
.y93{bottom:170.925864pt;}
.y170{bottom:170.929198pt;}
.yf0{bottom:170.963331pt;}
.yb2{bottom:170.969864pt;}
.y41{bottom:170.973731pt;}
.yd7{bottom:171.725464pt;}
.y189{bottom:173.961005pt;}
.y13b{bottom:174.913729pt;}
.y1b{bottom:174.958396pt;}
.y188{bottom:191.242198pt;}
.y69{bottom:191.653189pt;}
.y15b{bottom:191.660523pt;}
.y113{bottom:191.684256pt;}
.y92{bottom:192.165856pt;}
.y16f{bottom:192.170389pt;}
.y13a{bottom:192.194923pt;}
.yef{bottom:192.204523pt;}
.yb1{bottom:192.209856pt;}
.y40{bottom:192.213723pt;}
.y1a{bottom:192.238389pt;}
.yd6{bottom:193.292389pt;}
.y187{bottom:208.527191pt;}
.y19{bottom:209.519582pt;}
.y68{bottom:212.913181pt;}
.y15a{bottom:212.919314pt;}
.y91{bottom:213.407047pt;}
.y16e{bottom:213.410381pt;}
.yee{bottom:213.444514pt;}
.yb0{bottom:213.451047pt;}
.y3f{bottom:213.454914pt;}
.y139{bottom:214.093580pt;}
.yd5{bottom:214.859313pt;}
.y186{bottom:225.811559pt;}
.y18{bottom:226.800775pt;}
.y112{bottom:234.148239pt;}
.y67{bottom:234.171972pt;}
.y159{bottom:234.179306pt;}
.y90{bottom:234.647039pt;}
.y16d{bottom:234.651572pt;}
.y3e{bottom:234.685706pt;}
.yaf{bottom:234.691039pt;}
.yd4{bottom:236.425572pt;}
.y185{bottom:243.100877pt;}
.y17{bottom:244.080768pt;}
.y66{bottom:255.430764pt;}
.y158{bottom:255.438097pt;}
.y8f{bottom:255.888897pt;}
.y16c{bottom:255.891564pt;}
.y3d{bottom:255.925697pt;}
.y138{bottom:256.740406pt;}
.yd3{bottom:257.992496pt;}
.y184{bottom:260.382070pt;}
.y16{bottom:261.361962pt;}
.y65{bottom:276.689555pt;}
.y157{bottom:276.696222pt;}
.yed{bottom:277.113689pt;}
.y8e{bottom:277.128889pt;}
.y16b{bottom:277.132755pt;}
.y3c{bottom:277.163022pt;}
.y183{bottom:277.670188pt;}
.y137{bottom:277.981598pt;}
.y15{bottom:278.641955pt;}
.y182{bottom:294.951381pt;}
.y14{bottom:295.923148pt;}
.y156{bottom:297.881414pt;}
.y111{bottom:297.905147pt;}
.y64{bottom:297.930747pt;}
.yec{bottom:298.354880pt;}
.y8d{bottom:298.370080pt;}
.y16a{bottom:298.372747pt;}
.y3b{bottom:298.399013pt;}
.y136{bottom:299.217130pt;}
.yd2{bottom:301.091946pt;}
.y181{bottom:312.240700pt;}
.y13{bottom:313.204341pt;}
.y63{bottom:319.114472pt;}
.y155{bottom:319.140205pt;}
.y110{bottom:319.163938pt;}
.yeb{bottom:319.594872pt;}
.y8c{bottom:319.610072pt;}
.y169{bottom:319.613938pt;}
.y3a{bottom:319.634872pt;}
.y135{bottom:320.437188pt;}
.y180{bottom:329.520693pt;}
.y62{bottom:340.373263pt;}
.y154{bottom:340.400197pt;}
.y10f{bottom:340.423930pt;}
.yea{bottom:340.836063pt;}
.y8b{bottom:340.851263pt;}
.y39{bottom:340.855130pt;}
.y134{bottom:341.679047pt;}
.y17f{bottom:346.813761pt;}
.y12{bottom:347.779394pt;}
.y61{bottom:361.633255pt;}
.y153{bottom:361.658988pt;}
.y10e{bottom:361.682721pt;}
.ye9{bottom:362.076055pt;}
.y8a{bottom:362.091255pt;}
.y38{bottom:362.095121pt;}
.y133{bottom:362.919038pt;}
.y17e{bottom:364.094954pt;}
.yd1{bottom:365.773120pt;}
.y17d{bottom:381.376147pt;}
.y10d{bottom:382.826580pt;}
.y60{bottom:382.892046pt;}
.y152{bottom:382.917113pt;}
.ye8{bottom:383.317246pt;}
.y89{bottom:383.332446pt;}
.y37{bottom:383.336313pt;}
.y132{bottom:384.160230pt;}
.yd0{bottom:387.340044pt;}
.y17c{bottom:398.660515pt;}
.y11{bottom:399.636306pt;}
.y10c{bottom:404.086571pt;}
.y5f{bottom:404.150838pt;}
.y151{bottom:404.175904pt;}
.ye7{bottom:404.557238pt;}
.y88{bottom:404.572438pt;}
.y36{bottom:404.576304pt;}
.y131{bottom:405.369659pt;}
.ycf{bottom:408.906969pt;}
.y17b{bottom:415.949833pt;}
.y10b{bottom:425.345363pt;}
.y5e{bottom:425.409629pt;}
.y150{bottom:425.434696pt;}
.ye6{bottom:425.798429pt;}
.y87{bottom:425.813629pt;}
.y35{bottom:425.817496pt;}
.y130{bottom:426.610851pt;}
.yce{bottom:430.473894pt;}
.y17a{bottom:433.231026pt;}
.y10{bottom:434.211359pt;}
.y10a{bottom:446.604154pt;}
.y14f{bottom:446.645487pt;}
.y5d{bottom:446.668421pt;}
.yae{bottom:446.960821pt;}
.y86{bottom:446.989087pt;}
.ye5{bottom:447.038421pt;}
.y12f{bottom:447.850842pt;}
.y179{bottom:450.518519pt;}
.yf{bottom:451.492552pt;}
.ycd{bottom:452.040819pt;}
.y178{bottom:467.800379pt;}
.y109{bottom:467.862946pt;}
.y14e{bottom:467.903612pt;}
.y5c{bottom:467.926546pt;}
.yad{bottom:468.200812pt;}
.y85{bottom:468.230279pt;}
.y34{bottom:468.237879pt;}
.y168{bottom:468.247079pt;}
.ye4{bottom:468.280279pt;}
.ye{bottom:468.773745pt;}
.y12e{bottom:469.092034pt;}
.ycc{bottom:473.607743pt;}
.y177{bottom:485.089072pt;}
.yd{bottom:486.053738pt;}
.y108{bottom:489.121737pt;}
.y14d{bottom:489.161737pt;}
.y5b{bottom:489.185337pt;}
.yac{bottom:489.442004pt;}
.y84{bottom:489.470270pt;}
.ye3{bottom:489.520270pt;}
.y12d{bottom:490.332292pt;}
.ycb{bottom:495.174668pt;}
.y176{bottom:502.369065pt;}
.yc{bottom:503.334931pt;}
.y107{bottom:510.380529pt;}
.y5a{bottom:510.388662pt;}
.y14c{bottom:510.420529pt;}
.yab{bottom:510.681995pt;}
.y83{bottom:510.711462pt;}
.y12c{bottom:511.573483pt;}
.yca{bottom:516.741593pt;}
.y175{bottom:519.650925pt;}
.yb{bottom:520.616125pt;}
.y106{bottom:531.639320pt;}
.y59{bottom:531.647453pt;}
.y14b{bottom:531.678653pt;}
.yaa{bottom:531.923187pt;}
.y33{bottom:531.942253pt;}
.y82{bottom:531.951453pt;}
.y12b{bottom:532.796160pt;}
.ya{bottom:537.896118pt;}
.yc9{bottom:538.307851pt;}
.y105{bottom:552.898112pt;}
.y58{bottom:552.907445pt;}
.y14a{bottom:552.938645pt;}
.ya9{bottom:553.163178pt;}
.y32{bottom:553.182245pt;}
.y81{bottom:553.192645pt;}
.y12a{bottom:554.036151pt;}
.y9{bottom:555.177311pt;}
.y174{bottom:558.125576pt;}
.yc8{bottom:559.828509pt;}
.y8{bottom:572.457304pt;}
.y104{bottom:574.158103pt;}
.y57{bottom:574.166236pt;}
.ya8{bottom:574.404370pt;}
.y31{bottom:574.423436pt;}
.y80{bottom:574.432636pt;}
.y129{bottom:575.277210pt;}
.yc7{bottom:581.394767pt;}
.y7{bottom:589.738497pt;}
.y103{bottom:595.416895pt;}
.y56{bottom:595.425028pt;}
.ya7{bottom:595.645561pt;}
.y30{bottom:595.663428pt;}
.y7f{bottom:595.673828pt;}
.y128{bottom:596.517201pt;}
.yc6{bottom:602.961692pt;}
.y6{bottom:607.020357pt;}
.y102{bottom:616.675686pt;}
.y55{bottom:616.683819pt;}
.ya6{bottom:616.885553pt;}
.y2f{bottom:616.904619pt;}
.y7e{bottom:616.913819pt;}
.y127{bottom:617.752454pt;}
.yc5{bottom:624.528616pt;}
.y101{bottom:637.934478pt;}
.y54{bottom:637.942611pt;}
.ya5{bottom:638.126744pt;}
.y2e{bottom:638.145811pt;}
.y7d{bottom:638.155011pt;}
.y126{bottom:638.977650pt;}
.y5{bottom:641.594743pt;}
.yc4{bottom:646.095541pt;}
.y53{bottom:659.103269pt;}
.y100{bottom:659.193269pt;}
.ya4{bottom:659.366736pt;}
.y2d{bottom:659.385802pt;}
.y7c{bottom:659.396202pt;}
.y125{bottom:660.218841pt;}
.yc3{bottom:667.662466pt;}
.yff{bottom:680.345127pt;}
.y52{bottom:680.362061pt;}
.y149{bottom:680.364727pt;}
.ya3{bottom:680.607927pt;}
.y2c{bottom:680.626994pt;}
.y7b{bottom:680.636194pt;}
.y124{bottom:681.460033pt;}
.yc2{bottom:689.229390pt;}
.yfe{bottom:701.603919pt;}
.y51{bottom:701.620852pt;}
.y148{bottom:701.623519pt;}
.ya2{bottom:701.847919pt;}
.y2b{bottom:701.866985pt;}
.y7a{bottom:701.877385pt;}
.y123{bottom:702.655554pt;}
.yc1{bottom:710.796315pt;}
.yfd{bottom:722.862710pt;}
.y50{bottom:722.879644pt;}
.y147{bottom:722.881644pt;}
.ye2{bottom:723.063510pt;}
.y167{bottom:723.079910pt;}
.y79{bottom:723.083244pt;}
.ya1{bottom:723.089110pt;}
.y2a{bottom:723.108177pt;}
.y122{bottom:723.895546pt;}
.yc0{bottom:732.363240pt;}
.yfc{bottom:744.121502pt;}
.y4f{bottom:744.138435pt;}
.y146{bottom:744.140435pt;}
.ye1{bottom:744.304702pt;}
.y166{bottom:744.319235pt;}
.y78{bottom:744.324435pt;}
.ya0{bottom:744.329102pt;}
.y29{bottom:744.348168pt;}
.y121{bottom:745.136871pt;}
.y4{bottom:752.754698pt;}
.ybf{bottom:753.930165pt;}
.yfb{bottom:765.380293pt;}
.y4e{bottom:765.397227pt;}
.y145{bottom:765.399227pt;}
.ye0{bottom:765.544693pt;}
.y165{bottom:765.560427pt;}
.y77{bottom:765.564427pt;}
.y9f{bottom:765.570293pt;}
.y28{bottom:765.589360pt;}
.y120{bottom:766.388730pt;}
.ybe{bottom:775.497089pt;}
.yfa{bottom:786.639085pt;}
.y4d{bottom:786.657218pt;}
.y144{bottom:786.658018pt;}
.ydf{bottom:786.785885pt;}
.y164{bottom:786.799751pt;}
.y76{bottom:786.805618pt;}
.y9e{bottom:786.811485pt;}
.y27{bottom:786.820818pt;}
.y11f{bottom:787.618537pt;}
.ybd{bottom:797.033747pt;}
.yf9{bottom:807.897876pt;}
.y4c{bottom:807.916010pt;}
.y143{bottom:807.918010pt;}
.yde{bottom:808.025876pt;}
.y26{bottom:808.036410pt;}
.y163{bottom:808.041610pt;}
.y75{bottom:808.045610pt;}
.y9d{bottom:808.051476pt;}
.y11e{bottom:808.858529pt;}
.ybc{bottom:818.600005pt;}
.yf8{bottom:829.157868pt;}
.y4b{bottom:829.174801pt;}
.y142{bottom:829.176134pt;}
.ydd{bottom:829.267068pt;}
.y25{bottom:829.277601pt;}
.y162{bottom:829.280934pt;}
.y74{bottom:829.286801pt;}
.y9c{bottom:829.293334pt;}
.y11d{bottom:830.099720pt;}
.y3{bottom:836.746665pt;}
.ybb{bottom:840.166930pt;}
.yf7{bottom:850.416659pt;}
.y4a{bottom:850.433593pt;}
.y141{bottom:850.434259pt;}
.ydc{bottom:850.508259pt;}
.y9b{bottom:850.511326pt;}
.y24{bottom:850.517593pt;}
.y161{bottom:850.522793pt;}
.y73{bottom:850.527993pt;}
.y11c{bottom:851.339734pt;}
.yba{bottom:861.735055pt;}
.yf6{bottom:871.675451pt;}
.y49{bottom:871.692384pt;}
.ydb{bottom:871.748251pt;}
.y9a{bottom:871.751317pt;}
.y23{bottom:871.758784pt;}
.y160{bottom:871.762784pt;}
.y72{bottom:871.767984pt;}
.y11b{bottom:872.580926pt;}
.yb9{bottom:883.299979pt;}
.yf5{bottom:892.934242pt;}
.y48{bottom:892.950509pt;}
.y71{bottom:892.989442pt;}
.y99{bottom:892.993176pt;}
.y22{bottom:892.998776pt;}
.y11a{bottom:893.817502pt;}
.yb8{bottom:904.868104pt;}
.y1f{bottom:905.452637pt;}
.yf4{bottom:914.193034pt;}
.y47{bottom:914.193700pt;}
.y140{bottom:914.209300pt;}
.y70{bottom:914.229434pt;}
.y98{bottom:914.234367pt;}
.y21{bottom:914.239967pt;}
.y119{bottom:915.047700pt;}
.yb7{bottom:926.435029pt;}
.y46{bottom:935.451825pt;}
.y6f{bottom:935.470625pt;}
.y97{bottom:935.474359pt;}
.y118{bottom:936.288892pt;}
.yb6{bottom:948.001287pt;}
.y20{bottom:956.710617pt;}
.y96{bottom:956.715550pt;}
.y117{bottom:957.529283pt;}
.y2{bottom:997.951934pt;}
.y45{bottom:1002.253265pt;}
.y18d{bottom:1002.253624pt;}
.y6e{bottom:1002.618598pt;}
.h30{height:36.319104pt;}
.h31{height:51.436532pt;}
.h3{height:51.884293pt;}
.h39{height:51.891793pt;}
.h4{height:61.040577pt;}
.h5{height:66.564981pt;}
.h26{height:66.564984pt;}
.h2{height:67.144437pt;}
.h25{height:67.144440pt;}
.hb{height:67.159904pt;}
.ha{height:67.165237pt;}
.h9{height:67.165770pt;}
.h2f{height:67.166879pt;}
.h2b{height:67.168873pt;}
.h24{height:67.176970pt;}
.hc{height:67.181237pt;}
.h27{height:67.184110pt;}
.h13{height:67.202570pt;}
.he{height:67.206837pt;}
.h2a{height:67.212061pt;}
.h2c{height:67.213120pt;}
.h8{height:67.223370pt;}
.h2e{height:67.226725pt;}
.h17{height:67.232437pt;}
.h38{height:67.244704pt;}
.hd{height:67.248970pt;}
.h6{height:67.249504pt;}
.h1d{height:67.251637pt;}
.h1a{height:67.265504pt;}
.h2d{height:67.268254pt;}
.h12{height:67.268704pt;}
.h1c{height:67.278837pt;}
.h14{height:67.280970pt;}
.h23{height:67.288437pt;}
.h36{height:67.294304pt;}
.h33{height:67.301770pt;}
.h19{height:67.317770pt;}
.h29{height:67.322822pt;}
.h1b{height:67.329504pt;}
.h34{height:67.336437pt;}
.h1f{height:67.344437pt;}
.h7{height:67.345504pt;}
.h20{height:67.357237pt;}
.h1e{height:67.359904pt;}
.h35{height:67.363637pt;}
.h10{height:67.366304pt;}
.h37{height:67.386037pt;}
.h15{height:67.407370pt;}
.h16{height:67.440437pt;}
.h11{height:67.444704pt;}
.h32{height:67.493770pt;}
.h18{height:67.520437pt;}
.hf{height:67.536970pt;}
.h21{height:67.572170pt;}
.h22{height:67.604170pt;}
.h28{height:70.923162pt;}
.h1{height:1119.924800pt;}
.h0{height:1122.666667pt;}
.w1{width:793.280000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:104.990758pt;}
.x9{left:121.324885pt;}
.x5{left:142.322610pt;}
.x3{left:145.933275pt;}
.xa{left:158.655937pt;}
.x1{left:194.363922pt;}
.xe{left:205.325305pt;}
.x8{left:225.327902pt;}
.xc{left:233.169240pt;}
.x2{left:303.523879pt;}
.x4{left:348.293194pt;}
.x7{left:353.093459pt;}
.xd{left:354.061725pt;}
.xb{left:647.261074pt;}
}




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