
    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_c5365b1a94a1b51cc29c48df.woff')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_cb6498fdb00020c88bc7b2e8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.969238;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_67a9df64c0bd3fe728b0bf2e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.960000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6d79c070c8b0885993b6104e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0552f88e1932b2b81774eec2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.933105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a378b5ae76e95cfee82ba62b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_908b25427221d143100b46ad.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f32ecd6dd7fec1a2a83848cd.woff')format("woff");}.ff8{font-family:ff8;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a0501e9ce61c59b38c3f5205.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ec669395826630fe58e8e871.woff')format("woff");}.ffa{font-family:ffa;line-height:0.715820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.017988px;}
.ls1{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.872130px;}
.lse{letter-spacing:0.923432px;}
.ls7{letter-spacing:1.296040px;}
.ls6{letter-spacing:1.344041px;}
.ls5{letter-spacing:1.458000px;}
.ls4{letter-spacing:1.476000px;}
.lsa{letter-spacing:1.674000px;}
.ls3{letter-spacing:1.728000px;}
.lsb{letter-spacing:1.782000px;}
.lsf{letter-spacing:1.795562px;}
.lsc{letter-spacing:3.726000px;}
.ls10{letter-spacing:6.096186px;}
.ls9{letter-spacing:9.180000px;}
.ls2{letter-spacing:920.069000px;}
.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;}
}
.wsf{word-spacing:-48.001464px;}
.ws1{word-spacing:-21.129671px;}
.ws2{word-spacing:-18.854533px;}
.ws9{word-spacing:-16.416000px;}
.ws8{word-spacing:-16.254000px;}
.ws6{word-spacing:-14.958000px;}
.wse{word-spacing:-14.448441px;}
.wsc{word-spacing:-14.210587px;}
.wsd{word-spacing:-13.344407px;}
.wsa{word-spacing:-13.296406px;}
.ws0{word-spacing:-11.633594px;}
.ws7{word-spacing:-11.218500px;}
.ws4{word-spacing:-10.508889px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:289.512000px;}
.wsb{word-spacing:879.747770px;}
._41{margin-left:-12.204888px;}
._3f{margin-left:-11.151900px;}
._1f{margin-left:-9.667319px;}
._19{margin-left:-8.375673px;}
._5{margin-left:-7.147823px;}
._1c{margin-left:-5.551643px;}
._4{margin-left:-3.855674px;}
._3{margin-left:-2.092509px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._7{width:3.928548px;}
._8{width:5.091350px;}
._9{width:6.290899px;}
._a{width:7.938079px;}
._b{width:9.370521px;}
._d{width:10.771519px;}
._c{width:12.244548px;}
._e{width:13.714699px;}
._1e{width:14.945723px;}
._1d{width:16.011569px;}
._15{width:17.984208px;}
._6{width:19.196510px;}
._17{width:20.484430px;}
._10{width:22.518000px;}
._12{width:23.602860px;}
._f{width:24.936328px;}
._11{width:26.190079px;}
._18{width:28.431057px;}
._31{width:32.939179px;}
._16{width:38.248716px;}
._14{width:54.892679px;}
._1a{width:89.941411px;}
._3e{width:115.685464px;}
._3b{width:129.424652px;}
._3a{width:201.899290px;}
._3d{width:222.233999px;}
._40{width:253.966055px;}
._1b{width:280.966055px;}
._2f{width:283.250454px;}
._2d{width:287.129155px;}
._2a{width:293.406682px;}
._2e{width:315.050763px;}
._13{width:321.984000px;}
._30{width:324.675846px;}
._24{width:327.161178px;}
._39{width:328.253139px;}
._20{width:333.880943px;}
._38{width:335.434889px;}
._29{width:350.756937px;}
._25{width:357.106134px;}
._28{width:369.026300px;}
._33{width:392.293489px;}
._32{width:398.494437px;}
._3c{width:407.496959px;}
._23{width:413.643581px;}
._2b{width:419.709713px;}
._26{width:437.601090px;}
._34{width:451.838593px;}
._22{width:460.127141px;}
._2c{width:462.177651px;}
._27{width:469.653390px;}
._35{width:473.097270px;}
._37{width:496.749864px;}
._36{width:510.693378px;}
._21{width:526.519408px;}
.fc3{color:rgb(10,84,44);}
.fc1{color:rgb(27,138,174);}
.fc6{color:rgb(64,64,64);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs8{font-size:40.500000px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs9{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fsa{font-size:55.678710px;}
.fs6{font-size:62.639646px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y168{bottom:4.528916px;}
.y167{bottom:22.482044px;}
.y166{bottom:40.441032px;}
.y23{bottom:46.734370px;}
.y165{bottom:58.394150px;}
.y22{bottom:59.015622px;}
.y21{bottom:71.302734px;}
.y164{bottom:76.347278px;}
.y79{bottom:87.023427px;}
.ycf{bottom:87.896475px;}
.y138{bottom:88.453123px;}
.y73{bottom:89.472656px;}
.y139{bottom:91.078500px;}
.yf3{bottom:92.923834px;}
.y163{bottom:94.306266px;}
.ya2{bottom:97.306620px;}
.y78{bottom:105.919917px;}
.y137{bottom:106.406250px;}
.y72{bottom:108.369145px;}
.y24{bottom:108.762000px;}
.y162{bottom:112.259391px;}
.y45{bottom:113.531244px;}
.y5c{bottom:113.994139px;}
.y112{bottom:115.242182px;}
.ya1{bottom:116.208969px;}
.yce{bottom:118.207026px;}
.yf2{bottom:119.695318px;}
.y136{bottom:124.359375px;}
.y77{bottom:124.822266px;}
.y161{bottom:130.212516px;}
.y5b{bottom:130.792971px;}
.y44{bottom:132.427729px;}
.y111{bottom:134.138672px;}
.ycd{bottom:137.103516px;}
.yf1{bottom:138.597662px;}
.yaf{bottom:140.513671px;}
.y71{bottom:140.929677px;}
.y135{bottom:142.318355px;}
.y160{bottom:148.165641px;}
.ya0{bottom:148.605459px;}
.y1f{bottom:150.808535px;}
.y5d{bottom:150.966797px;}
.y43{bottom:151.330062px;}
.y5a{bottom:152.091797px;}
.y46{bottom:156.392578px;}
.yae{bottom:157.312503px;}
.y70{bottom:159.826167px;}
.y134{bottom:160.271482px;}
.y110{bottom:164.794922px;}
.yf0{bottom:165.369146px;}
.y15f{bottom:166.124581px;}
.y7f{bottom:166.816396px;}
.y9f{bottom:167.507808px;}
.ycc{bottom:167.917968px;}
.y1e{bottom:169.710884px;}
.y42{bottom:170.232411px;}
.yb0{bottom:177.486328px;}
.y133{bottom:178.224609px;}
.yad{bottom:178.611328px;}
.y6f{bottom:178.728504px;}
.y7e{bottom:183.615228px;}
.y15e{bottom:184.077708px;}
.y9e{bottom:186.410151px;}
.y1d{bottom:188.613233px;}
.yef{bottom:192.146488px;}
.y132{bottom:196.183593px;}
.y6e{bottom:197.630853px;}
.y7d{bottom:200.414061px;}
.y15d{bottom:202.030835px;}
.y41{bottom:202.628901px;}
.y9d{bottom:205.306620px;}
.y1c{bottom:207.509723px;}
.y131{bottom:214.136711px;}
.y6d{bottom:216.527338px;}
.y7c{bottom:217.218749px;}
.yee{bottom:218.923831px;}
.y15c{bottom:219.989823px;}
.y40{bottom:221.531229px;}
.ycb{bottom:223.529292px;}
.y9c{bottom:224.208969px;}
.y10f{bottom:225.943379px;}
.y1b{bottom:226.412071px;}
.y130{bottom:232.089838px;}
.y7b{bottom:234.017581px;}
.y6c{bottom:235.429671px;}
.y15b{bottom:237.942951px;}
.y3f{bottom:240.427719px;}
.y9b{bottom:243.105459px;}
.y10e{bottom:244.845723px;}
.y1a{bottom:245.308561px;}
.yed{bottom:245.695315px;}
.y12f{bottom:250.048826px;}
.yca{bottom:253.839843px;}
.y80{bottom:254.191407px;}
.y6b{bottom:254.326161px;}
.y7a{bottom:255.316407px;}
.y15a{bottom:255.896078px;}
.y3e{bottom:259.330068px;}
.y9a{bottom:262.007808px;}
.y19{bottom:264.210911px;}
.yec{bottom:264.597659px;}
.ya3{bottom:267.070313px;}
.y12e{bottom:268.001954px;}
.y10d{bottom:271.623065px;}
.y159{bottom:273.855066px;}
.y3d{bottom:278.232417px;}
.y99{bottom:280.910157px;}
.y18{bottom:283.113259px;}
.yc9{bottom:284.648438px;}
.y12d{bottom:285.955078px;}
.y6a{bottom:286.728510px;}
.yeb{bottom:291.369143px;}
.y158{bottom:291.808193px;}
.y10c{bottom:298.394549px;}
.y17{bottom:302.009749px;}
.y12c{bottom:303.914052px;}
.y69{bottom:305.630853px;}
.y157{bottom:309.761321px;}
.y3c{bottom:310.628895px;}
.y98{bottom:311.718750px;}
.yea{bottom:318.146485px;}
.y16{bottom:320.912098px;}
.y12b{bottom:321.867179px;}
.y68{bottom:324.527343px;}
.y10b{bottom:325.171892px;}
.y156{bottom:327.720309px;}
.y3b{bottom:329.531244px;}
.ye9{bottom:337.048829px;}
.y15{bottom:339.808589px;}
.y12a{bottom:339.820306px;}
.yc8{bottom:340.259749px;}
.y67{bottom:343.429692px;}
.y155{bottom:345.673436px;}
.y3a{bottom:348.427729px;}
.y10a{bottom:351.943375px;}
.y129{bottom:357.779294px;}
.y14{bottom:358.710938px;}
.yc7{bottom:359.162098px;}
.y154{bottom:363.626563px;}
.ye8{bottom:363.820313px;}
.y97{bottom:367.330062px;}
.y39{bottom:367.330068px;}
.y128{bottom:375.732422px;}
.y66{bottom:375.984369px;}
.yc6{bottom:378.058589px;}
.y109{bottom:378.720718px;}
.y153{bottom:381.585552px;}
.ye7{bottom:382.722657px;}
.y96{bottom:386.232411px;}
.y38{bottom:386.232417px;}
.y127{bottom:393.685513px;}
.y65{bottom:394.886713px;}
.y13{bottom:396.591796px;}
.yc5{bottom:396.960938px;}
.y152{bottom:399.538679px;}
.y37{bottom:405.128901px;}
.y108{bottom:405.498061px;}
.ye6{bottom:409.494141px;}
.y126{bottom:411.644502px;}
.y151{bottom:417.491806px;}
.y36{bottom:424.031239px;}
.y95{bottom:424.031244px;}
.y107{bottom:424.394546px;}
.y64{bottom:427.289056px;}
.yc4{bottom:427.775391px;}
.y125{bottom:429.597629px;}
.y150{bottom:435.450794px;}
.ye5{bottom:436.271484px;}
.y12{bottom:436.347657px;}
.y94{bottom:442.927724px;}
.y35{bottom:442.927729px;}
.y63{bottom:446.185536px;}
.y124{bottom:447.550756px;}
.y106{bottom:451.171889px;}
.y14f{bottom:453.403922px;}
.y59{bottom:461.466785px;}
.y93{bottom:461.830073px;}
.y34{bottom:461.830078px;}
.y62{bottom:465.087885px;}
.y123{bottom:465.509744px;}
.y14e{bottom:471.357041px;}
.ye4{bottom:472.130805px;}
.y105{bottom:477.943372px;}
.y58{bottom:480.369133px;}
.y92{bottom:480.732417px;}
.yc3{bottom:483.386707px;}
.y122{bottom:483.462871px;}
.y14d{bottom:489.316030px;}
.ye3{bottom:491.033154px;}
.y33{bottom:492.486328px;}
.y61{bottom:497.642568px;}
.y57{bottom:499.265623px;}
.y91{bottom:499.628890px;}
.y121{bottom:501.415999px;}
.yc2{bottom:502.283197px;}
.y104{bottom:504.720715px;}
.y11{bottom:505.447266px;}
.y14c{bottom:507.269157px;}
.ye2{bottom:509.929644px;}
.y60{bottom:516.544917px;}
.y56{bottom:518.167973px;}
.y90{bottom:518.531239px;}
.y120{bottom:519.369126px;}
.yc1{bottom:521.185546px;}
.y10{bottom:522.246082px;}
.y14b{bottom:525.222282px;}
.y103{bottom:531.498057px;}
.y5f{bottom:535.447266px;}
.y11f{bottom:537.328114px;}
.y8f{bottom:537.427729px;}
.yf{bottom:539.044908px;}
.ye1{bottom:542.331993px;}
.y14a{bottom:543.181244px;}
.y32{bottom:548.097651px;}
.y55{bottom:550.728514px;}
.yc0{bottom:552.000000px;}
.y11e{bottom:555.281241px;}
.y102{bottom:558.269541px;}
.ye{bottom:560.343741px;}
.y149{bottom:561.134371px;}
.ye0{bottom:561.228483px;}
.y5e{bottom:566.255859px;}
.y31{bottom:566.994141px;}
.y8e{bottom:569.830035px;}
.y11d{bottom:573.234368px;}
.y148{bottom:579.087499px;}
.ydf{bottom:580.130832px;}
.yd{bottom:581.648433px;}
.y54{bottom:583.283197px;}
.y101{bottom:585.046884px;}
.y8d{bottom:588.732384px;}
.y11c{bottom:591.193357px;}
.y147{bottom:597.040626px;}
.y30{bottom:597.650391px;}
.yde{bottom:599.033181px;}
.y53{bottom:602.185546px;}
.yc{bottom:602.947266px;}
.ybf{bottom:607.605447px;}
.y11b{bottom:609.146484px;}
.yac{bottom:610.171879px;}
.y100{bottom:611.818368px;}
.y146{bottom:614.999614px;}
.ydd{bottom:617.929671px;}
.y8c{bottom:621.128874px;}
.ybe{bottom:626.507796px;}
.y145{bottom:632.952741px;}
.y52{bottom:633.000000px;}
.y75{bottom:633.714846px;}
.ydc{bottom:636.832020px;}
.yff{bottom:638.595710px;}
.y8b{bottom:640.031223px;}
.yab{bottom:642.732374px;}
.ybd{bottom:645.410145px;}
.y11a{bottom:646.658204px;}
.y144{bottom:650.905868px;}
.yb{bottom:653.197279px;}
.y2f{bottom:653.261681px;}
.y76{bottom:653.888671px;}
.y74{bottom:655.013671px;}
.ydb{bottom:655.728510px;}
.yaa{bottom:661.628864px;}
.yfe{bottom:665.373053px;}
.ya{bottom:666.427743px;}
.y143{bottom:668.864857px;}
.y2e{bottom:672.158170px;}
.y8a{bottom:672.427713px;}
.yda{bottom:674.630839px;}
.ybc{bottom:677.806635px;}
.y9{bottom:679.658207px;}
.ya9{bottom:680.531213px;}
.y142{bottom:686.817984px;}
.y51{bottom:688.605459px;}
.yfd{bottom:692.144537px;}
.y8{bottom:692.888671px;}
.yd9{bottom:693.533189px;}
.ybb{bottom:696.708979px;}
.ya8{bottom:699.427703px;}
.y119{bottom:702.263651px;}
.y2d{bottom:704.560520px;}
.y141{bottom:704.771109px;}
.y89{bottom:704.830062px;}
.y50{bottom:707.507808px;}
.yfc{bottom:711.046881px;}
.yd8{bottom:712.429678px;}
.y7{bottom:713.847657px;}
.yba{bottom:715.605464px;}
.ya7{bottom:718.330052px;}
.y20{bottom:718.347657px;}
.y118{bottom:721.165999px;}
.y140{bottom:722.730091px;}
.y2c{bottom:723.462869px;}
.y88{bottom:723.732411px;}
.y4f{bottom:726.410157px;}
.yb9{bottom:734.507802px;}
.ya6{bottom:737.232401px;}
.yfb{bottom:737.818364px;}
.y117{bottom:740.068348px;}
.y13f{bottom:740.683218px;}
.y2b{bottom:742.359358px;}
.y87{bottom:742.628901px;}
.yd7{bottom:742.740229px;}
.yb8{bottom:753.410151px;}
.ya5{bottom:756.128891px;}
.y6{bottom:756.158206px;}
.yfa{bottom:756.720709px;}
.y4e{bottom:757.218750px;}
.y13e{bottom:758.636345px;}
.y116{bottom:758.964839px;}
.y86{bottom:761.531240px;}
.y16e{bottom:768.873046px;}
.yd6{bottom:773.044921px;}
.y2a{bottom:774.761708px;}
.ya4{bottom:775.031240px;}
.y13d{bottom:776.595326px;}
.y115{bottom:777.867188px;}
.yf9{bottom:783.498051px;}
.y16d{bottom:785.671871px;}
.yb7{bottom:785.806635px;}
.yd5{bottom:791.947248px;}
.y29{bottom:793.658198px;}
.y5{bottom:793.710931px;}
.y85{bottom:793.927730px;}
.y13c{bottom:794.548454px;}
.y16c{bottom:802.470704px;}
.yb6{bottom:804.708963px;}
.y114{bottom:808.523438px;}
.yf8{bottom:810.269535px;}
.y25{bottom:812.068078px;}
.y13b{bottom:812.501579px;}
.y28{bottom:812.560546px;}
.y4d{bottom:812.830062px;}
.y16b{bottom:819.410156px;}
.yd4{bottom:822.257799px;}
.yb5{bottom:823.605453px;}
.y84{bottom:826.330052px;}
.y13a{bottom:830.460563px;}
.y4{bottom:831.269532px;}
.y4c{bottom:831.732411px;}
.y16a{bottom:836.349609px;}
.yf7{bottom:837.046878px;}
.yd3{bottom:841.154289px;}
.yb4{bottom:842.507802px;}
.y83{bottom:845.232401px;}
.y27{bottom:850.441407px;}
.yb3{bottom:861.410151px;}
.y16f{bottom:862.160157px;}
.yf6{bottom:863.818361px;}
.y82{bottom:864.128891px;}
.y113{bottom:864.128895px;}
.y4b{bottom:864.128901px;}
.y169{bottom:864.410157px;}
.yd2{bottom:871.464840px;}
.yb2{bottom:880.306641px;}
.y81{bottom:883.031239px;}
.y4a{bottom:883.031244px;}
.yf5{bottom:890.595704px;}
.y3{bottom:899.378907px;}
.yd1{bottom:901.769532px;}
.y49{bottom:901.927730px;}
.y26{bottom:901.927734px;}
.yb1{bottom:911.121093px;}
.yf4{bottom:917.373046px;}
.yd0{bottom:920.671875px;}
.y48{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y47{bottom:974.730470px;}
.h9{height:28.048904px;}
.h15{height:30.576083px;}
.hf{height:31.993163px;}
.h8{height:32.273438px;}
.h5{height:33.888685px;}
.he{height:35.617086px;}
.hd{height:36.307617px;}
.h1{height:37.651031px;}
.h1b{height:40.535623px;}
.h4{height:43.032562px;}
.h16{height:45.991224px;}
.h19{height:45.991312px;}
.h17{height:45.991358px;}
.h1a{height:45.991402px;}
.h7{height:46.796220px;}
.h2{height:48.410156px;}
.hc{height:48.410222px;}
.h13{height:48.410228px;}
.h14{height:48.410234px;}
.hb{height:48.410240px;}
.h10{height:48.410264px;}
.h11{height:48.410330px;}
.h12{height:48.410348px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.ha{height:826.201500px;}
.h18{height:843.885000px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x12{left:11.584593px;}
.x11{left:45.000609px;}
.x3{left:78.662109px;}
.x8{left:86.537109px;}
.xf{left:90.246093px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.xc{left:101.162114px;}
.xd{left:105.662109px;}
.x10{left:123.662109px;}
.x9{left:138.287109px;}
.x1{left:140.308593px;}
.xa{left:155.601562px;}
.x6{left:170.912109px;}
.xe{left:257.537110px;}
.x2{left:315.914062px;}
.xb{left:340.664062px;}
.x7{left:413.753907px;}
.x13{left:506.162109px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.015989pt;}
.ls1{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.775227pt;}
.lse{letter-spacing:0.820828pt;}
.ls7{letter-spacing:1.152035pt;}
.ls6{letter-spacing:1.194703pt;}
.ls5{letter-spacing:1.296000pt;}
.ls4{letter-spacing:1.312000pt;}
.lsa{letter-spacing:1.488000pt;}
.ls3{letter-spacing:1.536000pt;}
.lsb{letter-spacing:1.584000pt;}
.lsf{letter-spacing:1.596055pt;}
.lsc{letter-spacing:3.312000pt;}
.ls10{letter-spacing:5.418832pt;}
.ls9{letter-spacing:8.160000pt;}
.ls2{letter-spacing:817.839111pt;}
.wsf{word-spacing:-42.667968pt;}
.ws1{word-spacing:-18.781930pt;}
.ws2{word-spacing:-16.759585pt;}
.ws9{word-spacing:-14.592000pt;}
.ws8{word-spacing:-14.448000pt;}
.ws6{word-spacing:-13.296000pt;}
.wse{word-spacing:-12.843058pt;}
.wsc{word-spacing:-12.631633pt;}
.wsd{word-spacing:-11.861695pt;}
.wsa{word-spacing:-11.819027pt;}
.ws0{word-spacing:-10.340973pt;}
.ws7{word-spacing:-9.972000pt;}
.ws4{word-spacing:-9.341234pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:257.344000pt;}
.wsb{word-spacing:781.998018pt;}
._41{margin-left:-10.848789pt;}
._3f{margin-left:-9.912800pt;}
._1f{margin-left:-8.593173pt;}
._19{margin-left:-7.445042pt;}
._5{margin-left:-6.353621pt;}
._1c{margin-left:-4.934794pt;}
._4{margin-left:-3.427266pt;}
._3{margin-left:-1.860008pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._7{width:3.492043pt;}
._8{width:4.525644pt;}
._9{width:5.591910pt;}
._a{width:7.056070pt;}
._b{width:8.329352pt;}
._d{width:9.574683pt;}
._c{width:10.884043pt;}
._e{width:12.190843pt;}
._1e{width:13.285087pt;}
._1d{width:14.232506pt;}
._15{width:15.985963pt;}
._6{width:17.063565pt;}
._17{width:18.208383pt;}
._10{width:20.016000pt;}
._12{width:20.980320pt;}
._f{width:22.165625pt;}
._11{width:23.280070pt;}
._18{width:25.272051pt;}
._31{width:29.279270pt;}
._16{width:33.998859pt;}
._14{width:48.793492pt;}
._1a{width:79.947920pt;}
._3e{width:102.831524pt;}
._3b{width:115.044135pt;}
._3a{width:179.466035pt;}
._3d{width:197.541332pt;}
._40{width:225.747604pt;}
._1b{width:249.747604pt;}
._2f{width:251.778181pt;}
._2d{width:255.225915pt;}
._2a{width:260.805939pt;}
._2e{width:280.045123pt;}
._13{width:286.208000pt;}
._30{width:288.600752pt;}
._24{width:290.809936pt;}
._39{width:291.780568pt;}
._20{width:296.783061pt;}
._38{width:298.164346pt;}
._29{width:311.783944pt;}
._25{width:317.427674pt;}
._28{width:328.023378pt;}
._33{width:348.705324pt;}
._32{width:354.217277pt;}
._3c{width:362.219519pt;}
._23{width:367.683183pt;}
._2b{width:373.075301pt;}
._26{width:388.978746pt;}
._34{width:401.634305pt;}
._22{width:409.001903pt;}
._2c{width:410.824579pt;}
._27{width:417.469680pt;}
._35{width:420.530907pt;}
._37{width:441.555435pt;}
._36{width:453.949669pt;}
._21{width:468.017252pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs8{font-size:36.000000pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs9{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:49.492187pt;}
.fs6{font-size:55.679685pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y168{bottom:4.025704pt;}
.y167{bottom:19.984039pt;}
.y166{bottom:35.947584pt;}
.y23{bottom:41.541662pt;}
.y165{bottom:51.905912pt;}
.y22{bottom:52.458331pt;}
.y21{bottom:63.380208pt;}
.y164{bottom:67.864247pt;}
.y79{bottom:77.354157pt;}
.ycf{bottom:78.130200pt;}
.y138{bottom:78.624998pt;}
.y73{bottom:79.531249pt;}
.y139{bottom:80.958667pt;}
.yf3{bottom:82.598964pt;}
.y163{bottom:83.827792pt;}
.ya2{bottom:86.494773pt;}
.y78{bottom:94.151037pt;}
.y137{bottom:94.583333pt;}
.y72{bottom:96.328129pt;}
.y24{bottom:96.677333pt;}
.y162{bottom:99.786125pt;}
.y45{bottom:100.916661pt;}
.y5c{bottom:101.328123pt;}
.y112{bottom:102.437495pt;}
.ya1{bottom:103.296861pt;}
.yce{bottom:105.072912pt;}
.yf2{bottom:106.395838pt;}
.y136{bottom:110.541667pt;}
.y77{bottom:110.953125pt;}
.y161{bottom:115.744459pt;}
.y5b{bottom:116.260419pt;}
.y44{bottom:117.713537pt;}
.y111{bottom:119.234375pt;}
.ycd{bottom:121.869792pt;}
.yf1{bottom:123.197922pt;}
.yaf{bottom:124.901040pt;}
.y71{bottom:125.270824pt;}
.y135{bottom:126.505204pt;}
.y160{bottom:131.702792pt;}
.ya0{bottom:132.093741pt;}
.y1f{bottom:134.052031pt;}
.y5d{bottom:134.192708pt;}
.y43{bottom:134.515611pt;}
.y5a{bottom:135.192708pt;}
.y46{bottom:139.015625pt;}
.yae{bottom:139.833336pt;}
.y70{bottom:142.067704pt;}
.y134{bottom:142.463539pt;}
.y110{bottom:146.484375pt;}
.yf0{bottom:146.994796pt;}
.y15f{bottom:147.666294pt;}
.y7f{bottom:148.281241pt;}
.y9f{bottom:148.895829pt;}
.ycc{bottom:149.260416pt;}
.y1e{bottom:150.854119pt;}
.y42{bottom:151.317699pt;}
.yb0{bottom:157.765625pt;}
.y133{bottom:158.421875pt;}
.yad{bottom:158.765625pt;}
.y6f{bottom:158.869781pt;}
.y7e{bottom:163.213536pt;}
.y15e{bottom:163.624629pt;}
.y9e{bottom:165.697912pt;}
.y1d{bottom:167.656207pt;}
.yef{bottom:170.796879pt;}
.y132{bottom:174.385416pt;}
.y6e{bottom:175.671869pt;}
.y7d{bottom:178.145832pt;}
.y15d{bottom:179.582965pt;}
.y41{bottom:180.114579pt;}
.y9d{bottom:182.494773pt;}
.y1c{bottom:184.453087pt;}
.y131{bottom:190.343743pt;}
.y6d{bottom:192.468745pt;}
.y7c{bottom:193.083332pt;}
.yee{bottom:194.598961pt;}
.y15c{bottom:195.546510pt;}
.y40{bottom:196.916648pt;}
.ycb{bottom:198.692704pt;}
.y9c{bottom:199.296861pt;}
.y10f{bottom:200.838559pt;}
.y1b{bottom:201.255175pt;}
.y130{bottom:206.302078pt;}
.y7b{bottom:208.015628pt;}
.y6c{bottom:209.270819pt;}
.y15b{bottom:211.504845pt;}
.y3f{bottom:213.713528pt;}
.y9b{bottom:216.093741pt;}
.y10e{bottom:217.640642pt;}
.y1a{bottom:218.052055pt;}
.yed{bottom:218.395835pt;}
.y12f{bottom:222.265623pt;}
.yca{bottom:225.635416pt;}
.y80{bottom:225.947917pt;}
.y6b{bottom:226.067699pt;}
.y7a{bottom:226.947917pt;}
.y15a{bottom:227.463180pt;}
.y3e{bottom:230.515616pt;}
.y9a{bottom:232.895829pt;}
.y19{bottom:234.854143pt;}
.yec{bottom:235.197919pt;}
.ya3{bottom:237.395833pt;}
.y12e{bottom:238.223959pt;}
.y10d{bottom:241.442725pt;}
.y159{bottom:243.426725pt;}
.y3d{bottom:247.317704pt;}
.y99{bottom:249.697917pt;}
.y18{bottom:251.656231pt;}
.yc9{bottom:253.020833pt;}
.y12d{bottom:254.182292pt;}
.y6a{bottom:254.869787pt;}
.yeb{bottom:258.994793pt;}
.y158{bottom:259.385061pt;}
.y10c{bottom:265.239599pt;}
.y17{bottom:268.453111pt;}
.y12c{bottom:270.145824pt;}
.y69{bottom:271.671869pt;}
.y157{bottom:275.343396pt;}
.y3c{bottom:276.114573pt;}
.y98{bottom:277.083333pt;}
.yea{bottom:282.796876pt;}
.y16{bottom:285.255199pt;}
.y12b{bottom:286.104159pt;}
.y68{bottom:288.468749pt;}
.y10b{bottom:289.041681pt;}
.y156{bottom:291.306941pt;}
.y3b{bottom:292.916661pt;}
.ye9{bottom:299.598959pt;}
.y15{bottom:302.052079pt;}
.y12a{bottom:302.062494pt;}
.yc8{bottom:302.453111pt;}
.y67{bottom:305.270837pt;}
.y155{bottom:307.265276pt;}
.y3a{bottom:309.713537pt;}
.y10a{bottom:312.838556pt;}
.y129{bottom:318.026039pt;}
.y14{bottom:318.854167pt;}
.yc7{bottom:319.255199pt;}
.y154{bottom:323.223612pt;}
.ye8{bottom:323.395834pt;}
.y97{bottom:326.515611pt;}
.y39{bottom:326.515616pt;}
.y128{bottom:333.984375pt;}
.y66{bottom:334.208328pt;}
.yc6{bottom:336.052079pt;}
.y109{bottom:336.640638pt;}
.y153{bottom:339.187157pt;}
.ye7{bottom:340.197918pt;}
.y96{bottom:343.317699pt;}
.y38{bottom:343.317704pt;}
.y127{bottom:349.942678pt;}
.y65{bottom:351.010412pt;}
.y13{bottom:352.526041pt;}
.yc5{bottom:352.854167pt;}
.y152{bottom:355.145492pt;}
.y37{bottom:360.114579pt;}
.y108{bottom:360.442721pt;}
.ye6{bottom:363.994792pt;}
.y126{bottom:365.906224pt;}
.y151{bottom:371.103828pt;}
.y36{bottom:376.916657pt;}
.y95{bottom:376.916661pt;}
.y107{bottom:377.239596pt;}
.y64{bottom:379.812495pt;}
.yc4{bottom:380.244792pt;}
.y125{bottom:381.864559pt;}
.y150{bottom:387.067373pt;}
.ye5{bottom:387.796875pt;}
.y12{bottom:387.864584pt;}
.y94{bottom:393.713532pt;}
.y35{bottom:393.713537pt;}
.y63{bottom:396.609365pt;}
.y124{bottom:397.822894pt;}
.y106{bottom:401.041679pt;}
.y14f{bottom:403.025708pt;}
.y59{bottom:410.192697pt;}
.y93{bottom:410.515620pt;}
.y34{bottom:410.515625pt;}
.y62{bottom:413.411453pt;}
.y123{bottom:413.786439pt;}
.y14e{bottom:418.984037pt;}
.ye4{bottom:419.671827pt;}
.y105{bottom:424.838553pt;}
.y58{bottom:426.994785pt;}
.y92{bottom:427.317704pt;}
.yc3{bottom:429.677073pt;}
.y122{bottom:429.744775pt;}
.y14d{bottom:434.947582pt;}
.ye3{bottom:436.473915pt;}
.y33{bottom:437.765625pt;}
.y61{bottom:442.348949pt;}
.y57{bottom:443.791665pt;}
.y91{bottom:444.114569pt;}
.y121{bottom:445.703110pt;}
.yc2{bottom:446.473953pt;}
.y104{bottom:448.640635pt;}
.y11{bottom:449.286459pt;}
.y14c{bottom:450.905917pt;}
.ye2{bottom:453.270795pt;}
.y60{bottom:459.151037pt;}
.y56{bottom:460.593753pt;}
.y90{bottom:460.916657pt;}
.y120{bottom:461.661445pt;}
.yc1{bottom:463.276041pt;}
.y10{bottom:464.218739pt;}
.y14b{bottom:466.864251pt;}
.y103{bottom:472.442718pt;}
.y5f{bottom:475.953125pt;}
.y11f{bottom:477.624990pt;}
.y8f{bottom:477.713537pt;}
.yf{bottom:479.151029pt;}
.ye1{bottom:482.072883pt;}
.y14a{bottom:482.827773pt;}
.y32{bottom:487.197912pt;}
.y55{bottom:489.536457pt;}
.yc0{bottom:490.666667pt;}
.y11e{bottom:493.583326pt;}
.y102{bottom:496.239592pt;}
.ye{bottom:498.083325pt;}
.y149{bottom:498.786108pt;}
.ye0{bottom:498.869763pt;}
.y5e{bottom:503.338541pt;}
.y31{bottom:503.994792pt;}
.y8e{bottom:506.515587pt;}
.y11d{bottom:509.541661pt;}
.y148{bottom:514.744443pt;}
.ydf{bottom:515.671851pt;}
.yd{bottom:517.020829pt;}
.y54{bottom:518.473953pt;}
.y101{bottom:520.041675pt;}
.y8d{bottom:523.317675pt;}
.y11c{bottom:525.505206pt;}
.y147{bottom:530.702778pt;}
.y30{bottom:531.244792pt;}
.yde{bottom:532.473939pt;}
.y53{bottom:535.276041pt;}
.yc{bottom:535.953125pt;}
.ybf{bottom:540.093731pt;}
.y11b{bottom:541.463541pt;}
.yac{bottom:542.375004pt;}
.y100{bottom:543.838549pt;}
.y146{bottom:546.666324pt;}
.ydd{bottom:549.270819pt;}
.y8c{bottom:552.114555pt;}
.ybe{bottom:556.895819pt;}
.y145{bottom:562.624659pt;}
.y52{bottom:562.666667pt;}
.y75{bottom:563.302085pt;}
.ydc{bottom:566.072907pt;}
.yff{bottom:567.640631pt;}
.y8b{bottom:568.916643pt;}
.yab{bottom:571.317665pt;}
.ybd{bottom:573.697907pt;}
.y11a{bottom:574.807292pt;}
.y144{bottom:578.582994pt;}
.yb{bottom:580.619804pt;}
.y2f{bottom:580.677049pt;}
.y76{bottom:581.234375pt;}
.y74{bottom:582.234375pt;}
.ydb{bottom:582.869787pt;}
.yaa{bottom:588.114545pt;}
.yfe{bottom:591.442714pt;}
.ya{bottom:592.380216pt;}
.y143{bottom:594.546539pt;}
.y2e{bottom:597.473929pt;}
.y8a{bottom:597.713523pt;}
.yda{bottom:599.671857pt;}
.ybc{bottom:602.494787pt;}
.y9{bottom:604.140629pt;}
.ya9{bottom:604.916633pt;}
.y142{bottom:610.504875pt;}
.y51{bottom:612.093741pt;}
.yfd{bottom:615.239588pt;}
.y8{bottom:615.901041pt;}
.yd9{bottom:616.473945pt;}
.ybb{bottom:619.296871pt;}
.ya8{bottom:621.713513pt;}
.y119{bottom:624.234356pt;}
.y2d{bottom:626.276017pt;}
.y141{bottom:626.463208pt;}
.y89{bottom:626.515611pt;}
.y50{bottom:628.895829pt;}
.yfc{bottom:632.041672pt;}
.yd8{bottom:633.270825pt;}
.y7{bottom:634.531251pt;}
.yba{bottom:636.093745pt;}
.ya7{bottom:638.515601pt;}
.y20{bottom:638.531251pt;}
.y118{bottom:641.036444pt;}
.y140{bottom:642.426747pt;}
.y2c{bottom:643.078105pt;}
.y88{bottom:643.317699pt;}
.y4f{bottom:645.697917pt;}
.yb9{bottom:652.895824pt;}
.ya6{bottom:655.317689pt;}
.yfb{bottom:655.838546pt;}
.y117{bottom:657.838532pt;}
.y13f{bottom:658.385083pt;}
.y2b{bottom:659.874985pt;}
.y87{bottom:660.114579pt;}
.yd7{bottom:660.213537pt;}
.yb8{bottom:669.697912pt;}
.ya5{bottom:672.114569pt;}
.y6{bottom:672.140627pt;}
.yfa{bottom:672.640630pt;}
.y4e{bottom:673.083333pt;}
.y13e{bottom:674.343417pt;}
.y116{bottom:674.635412pt;}
.y86{bottom:676.916657pt;}
.y16e{bottom:683.442708pt;}
.yd6{bottom:687.151041pt;}
.y2a{bottom:688.677073pt;}
.ya4{bottom:688.916657pt;}
.y13d{bottom:690.306957pt;}
.y115{bottom:691.437500pt;}
.yf9{bottom:696.442712pt;}
.y16d{bottom:698.374997pt;}
.yb7{bottom:698.494787pt;}
.yd5{bottom:703.953109pt;}
.y29{bottom:705.473953pt;}
.y5{bottom:705.520828pt;}
.y85{bottom:705.713537pt;}
.y13c{bottom:706.265292pt;}
.y16c{bottom:713.307292pt;}
.yb6{bottom:715.296856pt;}
.y114{bottom:718.687500pt;}
.yf8{bottom:720.239587pt;}
.y25{bottom:721.838292pt;}
.y13b{bottom:722.223625pt;}
.y28{bottom:722.276041pt;}
.y4d{bottom:722.515611pt;}
.y16b{bottom:728.364583pt;}
.yd4{bottom:730.895821pt;}
.yb5{bottom:732.093736pt;}
.y84{bottom:734.515601pt;}
.y13a{bottom:738.187167pt;}
.y4{bottom:738.906251pt;}
.y4c{bottom:739.317699pt;}
.y16a{bottom:743.421875pt;}
.yf7{bottom:744.041669pt;}
.yd3{bottom:747.692701pt;}
.yb4{bottom:748.895824pt;}
.y83{bottom:751.317689pt;}
.y27{bottom:755.947917pt;}
.yb3{bottom:765.697912pt;}
.y16f{bottom:766.364584pt;}
.yf6{bottom:767.838543pt;}
.y82{bottom:768.114569pt;}
.y113{bottom:768.114573pt;}
.y4b{bottom:768.114579pt;}
.y169{bottom:768.364584pt;}
.yd2{bottom:774.635413pt;}
.yb2{bottom:782.494792pt;}
.y81{bottom:784.916657pt;}
.y4a{bottom:784.916661pt;}
.yf5{bottom:791.640626pt;}
.y3{bottom:799.447917pt;}
.yd1{bottom:801.572917pt;}
.y49{bottom:801.713537pt;}
.y26{bottom:801.713541pt;}
.yb1{bottom:809.885416pt;}
.yf4{bottom:815.442708pt;}
.yd0{bottom:818.375000pt;}
.y48{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y47{bottom:866.427084pt;}
.h9{height:24.932359pt;}
.h15{height:27.178740pt;}
.hf{height:28.438367pt;}
.h8{height:28.687500pt;}
.h5{height:30.123276pt;}
.he{height:31.659632pt;}
.hd{height:32.273438pt;}
.h1{height:33.467583pt;}
.h1b{height:36.031665pt;}
.h4{height:38.251167pt;}
.h16{height:40.881088pt;}
.h19{height:40.881166pt;}
.h17{height:40.881207pt;}
.h1a{height:40.881246pt;}
.h7{height:41.596640pt;}
.h2{height:43.031250pt;}
.hc{height:43.031309pt;}
.h13{height:43.031314pt;}
.h14{height:43.031319pt;}
.hb{height:43.031325pt;}
.h10{height:43.031346pt;}
.h11{height:43.031405pt;}
.h12{height:43.031421pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.ha{height:734.401333pt;}
.h18{height:750.120000pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x12{left:10.297416pt;}
.x11{left:40.000541pt;}
.x3{left:69.921875pt;}
.x8{left:76.921875pt;}
.xf{left:80.218749pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.xc{left:89.921879pt;}
.xd{left:93.921875pt;}
.x10{left:109.921874pt;}
.x9{left:122.921875pt;}
.x1{left:124.718749pt;}
.xa{left:138.312500pt;}
.x6{left:151.921875pt;}
.xe{left:228.921875pt;}
.x2{left:280.812500pt;}
.xb{left:302.812500pt;}
.x7{left:367.781251pt;}
.x13{left:449.921875pt;}
}




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