
    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_a253d2525f791cdb4f0088ad.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.925293;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_4ea6e28f17af2ba6b61d718b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.740234;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_f56e1947a5a7ad2e26d7b118.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_85f3a0c6f8ae1be6fa241815.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ce086ec36e18efba99daa2e8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.925293;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_d44ba19c1d5ab1b949e445a7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_c562ab13267aa971b6b1e87e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914551;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_a253d2525f791cdb4f0088ad.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.925293;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_84af3b0b6235b834504ea6d1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.864258;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_a253d2525f791cdb4f0088ad.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.925293;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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:-17.982000px;}
.v5{vertical-align:-11.988000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:11.988000px;}
.v3{vertical-align:15.984000px;}
.v1{vertical-align:17.982000px;}
.v6{vertical-align:30.000000px;}
.v7{vertical-align:60.000000px;}
.lsc{letter-spacing:-6.090000px;}
.ls7{letter-spacing:-5.460000px;}
.ls10{letter-spacing:-3.864000px;}
.lsd{letter-spacing:-2.970000px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.004296px;}
.ls2{letter-spacing:0.004608px;}
.ls3{letter-spacing:0.005208px;}
.lsb{letter-spacing:0.006000px;}
.lse{letter-spacing:0.008400px;}
.ls0{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.024000px;}
.ls8{letter-spacing:1.680000px;}
.ls5{letter-spacing:70.027800px;}
.lsf{letter-spacing:719.017200px;}
.ls9{letter-spacing:747.442200px;}
.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;}
}
.ws2{word-spacing:-15.012000px;}
.ws1{word-spacing:-13.344000px;}
.wsc{word-spacing:-11.676000px;}
.ws0{word-spacing:-8.751996px;}
.wsb{word-spacing:-7.779552px;}
.ws6{word-spacing:-1.680000px;}
.ws9{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:0.336000px;}
.ws8{word-spacing:2.970000px;}
.wsd{word-spacing:3.864000px;}
.ws4{word-spacing:5.460000px;}
.ws7{word-spacing:6.090000px;}
.wsa{word-spacing:169.866600px;}
._13{margin-left:-6.930000px;}
._2{margin-left:-5.602800px;}
._3{margin-left:-4.460400px;}
._4{margin-left:-2.816400px;}
._5{margin-left:-1.132800px;}
._6{width:1.001400px;}
._1{width:2.872800px;}
._7{width:3.897000px;}
._0{width:5.468400px;}
._8{width:6.846600px;}
._a{width:7.916400px;}
._9{width:9.576000px;}
._10{width:11.340000px;}
._d{width:12.441600px;}
._11{width:13.726800px;}
._b{width:16.232400px;}
._e{width:17.614800px;}
._14{width:18.721800px;}
._19{width:20.266200px;}
._12{width:21.702600px;}
._f{width:23.463000px;}
._2e{width:25.045200px;}
._c{width:26.157600px;}
._18{width:27.226800px;}
._17{width:30.996000px;}
._15{width:32.373000px;}
._16{width:33.912000px;}
._5e{width:37.944000px;}
._5f{width:40.760400px;}
._5c{width:61.296000px;}
._5d{width:76.629000px;}
._43{width:142.092000px;}
._41{width:159.222600px;}
._2f{width:160.521000px;}
._40{width:162.108000px;}
._39{width:166.472400px;}
._3a{width:179.815200px;}
._38{width:191.472000px;}
._32{width:219.846000px;}
._34{width:225.826200px;}
._33{width:227.359800px;}
._45{width:240.557400px;}
._44{width:250.717800px;}
._3d{width:253.202400px;}
._24{width:260.754000px;}
._31{width:262.188000px;}
._3e{width:266.707200px;}
._36{width:275.532000px;}
._46{width:320.173800px;}
._3c{width:328.908000px;}
._37{width:332.519400px;}
._47{width:368.152200px;}
._20{width:384.393600px;}
._27{width:400.689600px;}
._26{width:408.657600px;}
._2d{width:446.001600px;}
._25{width:462.162000px;}
._42{width:471.911448px;}
._2b{width:488.769600px;}
._3b{width:498.837000px;}
._35{width:514.909800px;}
._2c{width:544.818000px;}
._1b{width:547.378200px;}
._3f{width:558.007200px;}
._49{width:565.562400px;}
._29{width:577.041600px;}
._4c{width:578.902800px;}
._4f{width:580.684200px;}
._2a{width:584.769600px;}
._5a{width:592.250400px;}
._56{width:594.031800px;}
._28{width:599.361600px;}
._22{width:608.770200px;}
._30{width:620.225400px;}
._21{width:627.442200px;}
._23{width:651.694200px;}
._1a{width:653.865600px;}
._1c{width:656.770200px;}
._1f{width:678.082200px;}
._57{width:720.166800px;}
._1d{width:747.442200px;}
._1e{width:755.145600px;}
._51{width:904.150800px;}
._4a{width:944.182800px;}
._59{width:1140.259200px;}
._55{width:1186.930800px;}
._58{width:1327.071600px;}
._53{width:1356.307200px;}
._52{width:1370.947200px;}
._5b{width:1384.402800px;}
._4d{width:1388.371200px;}
._48{width:1397.631600px;}
._4e{width:1409.683200px;}
._4b{width:1410.979200px;}
._54{width:1412.659200px;}
._50{width:1437.667200px;}
.fc6{color:rgb(42,62,146);}
.fc5{color:rgb(210,32,39);}
.fc4{color:transparent;}
.fc3{color:rgb(37,74,165);}
.fc2{color:rgb(145,143,143);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:20.988000px;}
.fs6{font-size:27.984000px;}
.fs5{font-size:31.482000px;}
.fs3{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y49{bottom:45.676500px;}
.y2{bottom:46.480200px;}
.y3{bottom:46.780950px;}
.y48{bottom:47.572200px;}
.yd{bottom:85.313850px;}
.yad{bottom:86.120250px;}
.ye0{bottom:86.510550px;}
.y82{bottom:87.495900px;}
.yf7{bottom:91.510200px;}
.yc{bottom:98.813850px;}
.yac{bottom:101.120250px;}
.y81{bottom:105.495900px;}
.ydf{bottom:106.898250px;}
.yf6{bottom:109.510200px;}
.yb{bottom:112.313850px;}
.yab{bottom:121.507950px;}
.y80{bottom:123.495900px;}
.ya{bottom:125.813850px;}
.yf5{bottom:127.510200px;}
.y165{bottom:128.035050px;}
.yde{bottom:132.410100px;}
.y7f{bottom:141.495900px;}
.y164{bottom:141.535050px;}
.y184{bottom:141.829350px;}
.y3a{bottom:144.787650px;}
.y46{bottom:145.053300px;}
.yf4{bottom:145.510200px;}
.yaa{bottom:147.019800px;}
.y163{bottom:155.035050px;}
.y183{bottom:155.329350px;}
.ydd{bottom:157.921950px;}
.y7e{bottom:159.495900px;}
.y39{bottom:162.787650px;}
.y45{bottom:163.053300px;}
.yf3{bottom:163.510200px;}
.y162{bottom:168.535050px;}
.y182{bottom:168.829350px;}
.ya9{bottom:172.531650px;}
.y7d{bottom:177.495900px;}
.y38{bottom:180.787650px;}
.y44{bottom:181.053300px;}
.yf2{bottom:181.510200px;}
.y161{bottom:182.035050px;}
.y181{bottom:182.329350px;}
.ydc{bottom:183.433800px;}
.y7c{bottom:195.495900px;}
.y160{bottom:195.535050px;}
.y180{bottom:195.829350px;}
.ya8{bottom:198.043500px;}
.y37{bottom:198.787650px;}
.y43{bottom:199.053300px;}
.yf1{bottom:199.510200px;}
.ydb{bottom:208.945500px;}
.y15f{bottom:209.035050px;}
.y17f{bottom:209.329350px;}
.y7b{bottom:213.495900px;}
.y36{bottom:216.787650px;}
.y42{bottom:217.053300px;}
.yf0{bottom:217.510200px;}
.y15e{bottom:222.535050px;}
.y17e{bottom:222.829350px;}
.ya7{bottom:223.555200px;}
.y7a{bottom:231.495900px;}
.yda{bottom:234.457350px;}
.y35{bottom:234.787650px;}
.y41{bottom:235.053300px;}
.yef{bottom:235.510200px;}
.y15d{bottom:236.035050px;}
.y17d{bottom:236.329350px;}
.ya6{bottom:249.067050px;}
.y79{bottom:249.495900px;}
.y15c{bottom:249.535050px;}
.y17c{bottom:249.829350px;}
.y34{bottom:252.787650px;}
.y40{bottom:253.053300px;}
.yee{bottom:253.510200px;}
.yd9{bottom:259.969200px;}
.y15b{bottom:263.035050px;}
.y17b{bottom:263.329350px;}
.y78{bottom:267.495900px;}
.y33{bottom:270.787650px;}
.y3f{bottom:271.053300px;}
.yed{bottom:271.510200px;}
.ya5{bottom:274.578900px;}
.y15a{bottom:276.535050px;}
.y17a{bottom:276.829350px;}
.yd8{bottom:285.480900px;}
.y77{bottom:285.495900px;}
.y32{bottom:288.787650px;}
.y3e{bottom:289.053300px;}
.yec{bottom:289.510200px;}
.y159{bottom:290.035050px;}
.y179{bottom:290.329350px;}
.ya4{bottom:300.090750px;}
.y76{bottom:303.495900px;}
.y158{bottom:303.535050px;}
.y178{bottom:303.829350px;}
.y31{bottom:306.787650px;}
.y3d{bottom:307.053300px;}
.yeb{bottom:307.510200px;}
.yd7{bottom:310.992750px;}
.y157{bottom:317.035050px;}
.y177{bottom:317.329350px;}
.y75{bottom:321.495900px;}
.y30{bottom:324.787650px;}
.y3c{bottom:325.053300px;}
.yea{bottom:325.510200px;}
.ya3{bottom:325.602450px;}
.y156{bottom:330.535050px;}
.y176{bottom:330.829350px;}
.yd6{bottom:337.508550px;}
.y74{bottom:339.495900px;}
.y2f{bottom:342.787650px;}
.y3b{bottom:343.053300px;}
.ye9{bottom:343.510200px;}
.y155{bottom:344.035050px;}
.y175{bottom:344.329350px;}
.ya2{bottom:351.114300px;}
.yd5{bottom:352.508550px;}
.y73{bottom:357.495900px;}
.y154{bottom:357.535050px;}
.y174{bottom:357.829350px;}
.y2e{bottom:360.787650px;}
.ye8{bottom:361.510200px;}
.y153{bottom:371.035050px;}
.y173{bottom:371.329350px;}
.y72{bottom:375.495900px;}
.ya1{bottom:376.626150px;}
.yd4{bottom:376.636500px;}
.ye7{bottom:379.510200px;}
.y152{bottom:384.535050px;}
.y172{bottom:384.829350px;}
.y1e{bottom:385.616100px;}
.yd3{bottom:391.636500px;}
.y71{bottom:393.495900px;}
.ye6{bottom:397.510200px;}
.y151{bottom:398.035050px;}
.y171{bottom:398.329350px;}
.y1d{bottom:400.616100px;}
.ya0{bottom:402.137850px;}
.y150{bottom:411.535050px;}
.y170{bottom:411.829350px;}
.ye5{bottom:415.510200px;}
.y1c{bottom:415.616100px;}
.y14f{bottom:425.035050px;}
.y16f{bottom:425.329350px;}
.y9f{bottom:427.649700px;}
.y70{bottom:429.495900px;}
.yd2{bottom:429.683400px;}
.y1b{bottom:430.616100px;}
.ye4{bottom:433.510200px;}
.y14e{bottom:438.535050px;}
.y16e{bottom:438.829350px;}
.y1a{bottom:445.616100px;}
.y6f{bottom:447.495900px;}
.yd1{bottom:447.683400px;}
.ye3{bottom:451.510200px;}
.y14d{bottom:452.035050px;}
.y16d{bottom:452.329350px;}
.y9e{bottom:453.161550px;}
.y19{bottom:460.616100px;}
.y6e{bottom:465.495900px;}
.y14c{bottom:465.535050px;}
.yd0{bottom:465.683400px;}
.y16c{bottom:465.829350px;}
.y18{bottom:475.616100px;}
.y9d{bottom:478.673400px;}
.y14b{bottom:479.035050px;}
.y16b{bottom:479.329350px;}
.y6d{bottom:483.495900px;}
.ycf{bottom:483.683400px;}
.y17{bottom:490.616100px;}
.y110{bottom:492.141600px;}
.y14a{bottom:492.535050px;}
.y16a{bottom:492.829350px;}
.y6c{bottom:501.495900px;}
.yce{bottom:501.683400px;}
.y9c{bottom:504.185100px;}
.y16{bottom:505.616100px;}
.y149{bottom:506.035050px;}
.y169{bottom:506.329350px;}
.y10f{bottom:512.526300px;}
.y6b{bottom:519.495900px;}
.y148{bottom:519.535050px;}
.ycd{bottom:519.683400px;}
.y168{bottom:519.829350px;}
.y15{bottom:520.616100px;}
.y9b{bottom:529.696950px;}
.y147{bottom:533.035050px;}
.y167{bottom:533.329350px;}
.y14{bottom:535.616100px;}
.y6a{bottom:537.495900px;}
.ycc{bottom:537.683400px;}
.y10e{bottom:538.032150px;}
.y146{bottom:546.535050px;}
.y166{bottom:546.829350px;}
.y13{bottom:550.616100px;}
.y9a{bottom:555.208800px;}
.y69{bottom:555.495900px;}
.ycb{bottom:555.683400px;}
.y145{bottom:560.035050px;}
.y10d{bottom:563.538000px;}
.y12{bottom:565.616100px;}
.y68{bottom:573.495900px;}
.yca{bottom:573.683400px;}
.y11{bottom:580.616100px;}
.y99{bottom:580.720650px;}
.y10c{bottom:589.043850px;}
.y67{bottom:591.495900px;}
.yc9{bottom:591.683400px;}
.y10{bottom:595.616100px;}
.y98{bottom:606.232350px;}
.y144{bottom:608.839650px;}
.y12c{bottom:609.027150px;}
.y66{bottom:609.495900px;}
.yc8{bottom:609.683400px;}
.y10b{bottom:614.549550px;}
.y2d{bottom:619.879800px;}
.y143{bottom:626.839650px;}
.y12b{bottom:627.027150px;}
.y65{bottom:627.495900px;}
.yc7{bottom:627.683400px;}
.y97{bottom:631.744200px;}
.y2c{bottom:634.879800px;}
.y10a{bottom:640.055400px;}
.y12a{bottom:645.027150px;}
.y64{bottom:645.495900px;}
.y2b{bottom:649.879800px;}
.y96{bottom:657.256050px;}
.y142{bottom:662.839650px;}
.y129{bottom:663.027150px;}
.y63{bottom:663.495900px;}
.yc6{bottom:663.683400px;}
.y2a{bottom:664.879800px;}
.y109{bottom:665.561250px;}
.y29{bottom:679.879800px;}
.y141{bottom:680.839650px;}
.y128{bottom:681.027150px;}
.y62{bottom:681.495900px;}
.yc5{bottom:681.683400px;}
.y95{bottom:682.767900px;}
.y108{bottom:691.067100px;}
.y28{bottom:694.879800px;}
.y127{bottom:699.027150px;}
.y61{bottom:699.495900px;}
.yc4{bottom:699.683400px;}
.y94{bottom:708.279600px;}
.y27{bottom:709.879800px;}
.y107{bottom:716.572950px;}
.y140{bottom:716.839650px;}
.y126{bottom:717.027150px;}
.y60{bottom:717.495900px;}
.yc3{bottom:717.683400px;}
.y26{bottom:724.879800px;}
.y93{bottom:733.791450px;}
.y13f{bottom:734.839650px;}
.y125{bottom:735.027150px;}
.y5f{bottom:735.495900px;}
.yc2{bottom:735.683400px;}
.y25{bottom:739.879800px;}
.y106{bottom:742.078650px;}
.y13e{bottom:752.839650px;}
.y124{bottom:753.027150px;}
.y5e{bottom:753.495900px;}
.yc1{bottom:753.683400px;}
.y24{bottom:754.879800px;}
.y92{bottom:759.303300px;}
.y105{bottom:767.584500px;}
.y23{bottom:769.879800px;}
.y123{bottom:771.027150px;}
.y5d{bottom:771.495900px;}
.yc0{bottom:771.683400px;}
.y91{bottom:784.815150px;}
.y22{bottom:784.879800px;}
.y13d{bottom:788.839650px;}
.y122{bottom:789.027150px;}
.y5c{bottom:789.495900px;}
.ybf{bottom:789.683400px;}
.y104{bottom:793.090350px;}
.y21{bottom:799.879800px;}
.y13c{bottom:806.839650px;}
.y121{bottom:807.027150px;}
.y5b{bottom:807.495900px;}
.ybe{bottom:807.683400px;}
.y90{bottom:810.327000px;}
.y20{bottom:814.879800px;}
.y103{bottom:818.596200px;}
.y13b{bottom:824.839650px;}
.y120{bottom:825.027150px;}
.y5a{bottom:825.495900px;}
.ybd{bottom:825.683400px;}
.y1f{bottom:829.879800px;}
.y8f{bottom:835.839000px;}
.y13a{bottom:842.839650px;}
.y11f{bottom:843.027150px;}
.y59{bottom:843.495900px;}
.ybc{bottom:843.683400px;}
.y102{bottom:844.101900px;}
.yf{bottom:854.843550px;}
.y139{bottom:860.839650px;}
.y11e{bottom:861.027150px;}
.y8e{bottom:861.350850px;}
.y58{bottom:861.495900px;}
.ybb{bottom:861.683400px;}
.ye{bottom:868.343550px;}
.y101{bottom:869.607750px;}
.y11d{bottom:879.027150px;}
.y57{bottom:879.495900px;}
.yba{bottom:879.683400px;}
.y8d{bottom:886.862700px;}
.y100{bottom:895.113600px;}
.y138{bottom:896.839650px;}
.y11c{bottom:897.027150px;}
.y56{bottom:897.495900px;}
.yb9{bottom:897.683400px;}
.y9{bottom:907.826550px;}
.y8c{bottom:912.374700px;}
.y137{bottom:914.839650px;}
.y11b{bottom:915.027150px;}
.y55{bottom:915.495900px;}
.yb8{bottom:915.683400px;}
.yff{bottom:920.619450px;}
.y136{bottom:932.839650px;}
.y11a{bottom:933.027150px;}
.y54{bottom:933.495900px;}
.yb7{bottom:933.683400px;}
.y8{bottom:937.826550px;}
.y8b{bottom:937.886550px;}
.yfe{bottom:946.125150px;}
.y135{bottom:950.839650px;}
.y119{bottom:951.027150px;}
.y53{bottom:951.495900px;}
.yb6{bottom:951.683400px;}
.y8a{bottom:961.010550px;}
.y7{bottom:967.826550px;}
.y134{bottom:968.839650px;}
.y118{bottom:969.027150px;}
.y52{bottom:969.495900px;}
.yb5{bottom:969.683400px;}
.yfd{bottom:971.631000px;}
.y133{bottom:986.839650px;}
.y117{bottom:987.027150px;}
.y47{bottom:987.084150px;}
.y51{bottom:987.495900px;}
.yb4{bottom:987.683400px;}
.y89{bottom:987.683550px;}
.yfc{bottom:997.136850px;}
.y132{bottom:1004.839650px;}
.y116{bottom:1005.027150px;}
.y50{bottom:1005.495900px;}
.yb3{bottom:1005.683400px;}
.y88{bottom:1005.683550px;}
.yfb{bottom:1022.642700px;}
.y131{bottom:1022.839650px;}
.y115{bottom:1023.027150px;}
.y4f{bottom:1023.495900px;}
.yb2{bottom:1023.683400px;}
.y87{bottom:1023.683550px;}
.y6{bottom:1027.826550px;}
.y130{bottom:1040.839650px;}
.y114{bottom:1041.027150px;}
.y4e{bottom:1041.495900px;}
.yb1{bottom:1041.683400px;}
.y86{bottom:1041.683550px;}
.yfa{bottom:1048.148400px;}
.y5{bottom:1057.826550px;}
.y12f{bottom:1058.839650px;}
.y113{bottom:1059.027150px;}
.y4d{bottom:1059.495900px;}
.yb0{bottom:1059.683400px;}
.y85{bottom:1059.683550px;}
.yf9{bottom:1073.654250px;}
.y12e{bottom:1076.839650px;}
.y112{bottom:1077.027150px;}
.y4c{bottom:1077.495900px;}
.yaf{bottom:1077.683400px;}
.y84{bottom:1077.683550px;}
.y1{bottom:1081.974000px;}
.y4{bottom:1087.826550px;}
.y12d{bottom:1094.839650px;}
.y111{bottom:1095.027150px;}
.y4b{bottom:1095.495900px;}
.yae{bottom:1095.683400px;}
.y83{bottom:1095.683550px;}
.yf8{bottom:1096.775400px;}
.ye1{bottom:1137.658800px;}
.ye2{bottom:1137.658950px;}
.y185{bottom:1137.906900px;}
.y4a{bottom:1138.698450px;}
.h6{height:26.244141px;}
.hd{height:27.267838px;}
.h2{height:30.577148px;}
.h4{height:30.618164px;}
.h3{height:34.945312px;}
.h8{height:34.992188px;}
.hc{height:36.357117px;}
.h9{height:39.313477px;}
.ha{height:39.366211px;}
.hb{height:40.901757px;}
.h7{height:40.932501px;}
.hf{height:64.945312px;}
.h5{height:69.890625px;}
.he{height:94.945312px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w1{width:850.500000px;}
.w0{width:850.692000px;}
.x0{left:0.000000px;}
.x1{left:6.660600px;}
.xd{left:42.519750px;}
.x19{left:50.619750px;}
.xc{left:62.553000px;}
.xe{left:63.819750px;}
.x1a{left:67.627650px;}
.x4{left:85.440900px;}
.x16{left:93.139350px;}
.x5{left:99.921300px;}
.x1d{left:103.253700px;}
.x17{left:104.671050px;}
.x6{left:106.339350px;}
.x1b{left:112.039350px;}
.xa{left:194.512050px;}
.x3{left:237.140400px;}
.x13{left:298.038900px;}
.x12{left:307.258650px;}
.xb{left:392.924400px;}
.xf{left:413.085900px;}
.x10{left:421.185900px;}
.x14{left:428.950800px;}
.x2{left:435.177450px;}
.x11{left:453.135750px;}
.x7{left:455.605500px;}
.x8{left:476.905500px;}
.x1c{left:482.605500px;}
.x18{left:515.200350px;}
.x15{left:630.925800px;}
.x9{left:844.218150px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v5{vertical-align:-10.656000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.656000pt;}
.v3{vertical-align:14.208000pt;}
.v1{vertical-align:15.984000pt;}
.v6{vertical-align:26.666667pt;}
.v7{vertical-align:53.333333pt;}
.lsc{letter-spacing:-5.413333pt;}
.ls7{letter-spacing:-4.853333pt;}
.ls10{letter-spacing:-3.434667pt;}
.lsd{letter-spacing:-2.640000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.003819pt;}
.ls2{letter-spacing:0.004096pt;}
.ls3{letter-spacing:0.004629pt;}
.lsb{letter-spacing:0.005333pt;}
.lse{letter-spacing:0.007467pt;}
.ls0{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.021333pt;}
.ls8{letter-spacing:1.493333pt;}
.ls5{letter-spacing:62.246933pt;}
.lsf{letter-spacing:639.126400pt;}
.ls9{letter-spacing:664.393067pt;}
.ws2{word-spacing:-13.344000pt;}
.ws1{word-spacing:-11.861333pt;}
.wsc{word-spacing:-10.378667pt;}
.ws0{word-spacing:-7.779552pt;}
.wsb{word-spacing:-6.915157pt;}
.ws6{word-spacing:-1.493333pt;}
.ws9{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:0.298667pt;}
.ws8{word-spacing:2.640000pt;}
.wsd{word-spacing:3.434667pt;}
.ws4{word-spacing:4.853333pt;}
.ws7{word-spacing:5.413333pt;}
.wsa{word-spacing:150.992533pt;}
._13{margin-left:-6.160000pt;}
._2{margin-left:-4.980267pt;}
._3{margin-left:-3.964800pt;}
._4{margin-left:-2.503467pt;}
._5{margin-left:-1.006933pt;}
._6{width:0.890133pt;}
._1{width:2.553600pt;}
._7{width:3.464000pt;}
._0{width:4.860800pt;}
._8{width:6.085867pt;}
._a{width:7.036800pt;}
._9{width:8.512000pt;}
._10{width:10.080000pt;}
._d{width:11.059200pt;}
._11{width:12.201600pt;}
._b{width:14.428800pt;}
._e{width:15.657600pt;}
._14{width:16.641600pt;}
._19{width:18.014400pt;}
._12{width:19.291200pt;}
._f{width:20.856000pt;}
._2e{width:22.262400pt;}
._c{width:23.251200pt;}
._18{width:24.201600pt;}
._17{width:27.552000pt;}
._15{width:28.776000pt;}
._16{width:30.144000pt;}
._5e{width:33.728000pt;}
._5f{width:36.231467pt;}
._5c{width:54.485333pt;}
._5d{width:68.114667pt;}
._43{width:126.304000pt;}
._41{width:141.531200pt;}
._2f{width:142.685333pt;}
._40{width:144.096000pt;}
._39{width:147.975467pt;}
._3a{width:159.835733pt;}
._38{width:170.197333pt;}
._32{width:195.418667pt;}
._34{width:200.734400pt;}
._33{width:202.097600pt;}
._45{width:213.828800pt;}
._44{width:222.860267pt;}
._3d{width:225.068800pt;}
._24{width:231.781333pt;}
._31{width:233.056000pt;}
._3e{width:237.073067pt;}
._36{width:244.917333pt;}
._46{width:284.598933pt;}
._3c{width:292.362667pt;}
._37{width:295.572800pt;}
._47{width:327.246400pt;}
._20{width:341.683200pt;}
._27{width:356.168533pt;}
._26{width:363.251200pt;}
._2d{width:396.445867pt;}
._25{width:410.810667pt;}
._42{width:419.476843pt;}
._2b{width:434.461867pt;}
._3b{width:443.410667pt;}
._35{width:457.697600pt;}
._2c{width:484.282667pt;}
._1b{width:486.558400pt;}
._3f{width:496.006400pt;}
._49{width:502.722133pt;}
._29{width:512.925867pt;}
._4c{width:514.580267pt;}
._4f{width:516.163733pt;}
._2a{width:519.795200pt;}
._5a{width:526.444800pt;}
._56{width:528.028267pt;}
._28{width:532.765867pt;}
._22{width:541.129067pt;}
._30{width:551.311467pt;}
._21{width:557.726400pt;}
._23{width:579.283733pt;}
._1a{width:581.213867pt;}
._1c{width:583.795733pt;}
._1f{width:602.739733pt;}
._57{width:640.148267pt;}
._1d{width:664.393067pt;}
._1e{width:671.240533pt;}
._51{width:803.689600pt;}
._4a{width:839.273600pt;}
._59{width:1013.563733pt;}
._55{width:1055.049600pt;}
._58{width:1179.619200pt;}
._53{width:1205.606400pt;}
._52{width:1218.619733pt;}
._5b{width:1230.580267pt;}
._4d{width:1234.107733pt;}
._48{width:1242.339200pt;}
._4e{width:1253.051733pt;}
._4b{width:1254.203733pt;}
._54{width:1255.697067pt;}
._50{width:1277.926400pt;}
.fs7{font-size:18.656000pt;}
.fs6{font-size:24.874667pt;}
.fs5{font-size:27.984000pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:40.601333pt;}
.y2{bottom:41.315733pt;}
.y3{bottom:41.583067pt;}
.y48{bottom:42.286400pt;}
.yd{bottom:75.834533pt;}
.yad{bottom:76.551333pt;}
.ye0{bottom:76.898267pt;}
.y82{bottom:77.774133pt;}
.yf7{bottom:81.342400pt;}
.yc{bottom:87.834533pt;}
.yac{bottom:89.884667pt;}
.y81{bottom:93.774133pt;}
.ydf{bottom:95.020667pt;}
.yf6{bottom:97.342400pt;}
.yb{bottom:99.834533pt;}
.yab{bottom:108.007067pt;}
.y80{bottom:109.774133pt;}
.ya{bottom:111.834533pt;}
.yf5{bottom:113.342400pt;}
.y165{bottom:113.808933pt;}
.yde{bottom:117.697867pt;}
.y7f{bottom:125.774133pt;}
.y164{bottom:125.808933pt;}
.y184{bottom:126.070533pt;}
.y3a{bottom:128.700133pt;}
.y46{bottom:128.936267pt;}
.yf4{bottom:129.342400pt;}
.yaa{bottom:130.684267pt;}
.y163{bottom:137.808933pt;}
.y183{bottom:138.070533pt;}
.ydd{bottom:140.375067pt;}
.y7e{bottom:141.774133pt;}
.y39{bottom:144.700133pt;}
.y45{bottom:144.936267pt;}
.yf3{bottom:145.342400pt;}
.y162{bottom:149.808933pt;}
.y182{bottom:150.070533pt;}
.ya9{bottom:153.361467pt;}
.y7d{bottom:157.774133pt;}
.y38{bottom:160.700133pt;}
.y44{bottom:160.936267pt;}
.yf2{bottom:161.342400pt;}
.y161{bottom:161.808933pt;}
.y181{bottom:162.070533pt;}
.ydc{bottom:163.052267pt;}
.y7c{bottom:173.774133pt;}
.y160{bottom:173.808933pt;}
.y180{bottom:174.070533pt;}
.ya8{bottom:176.038667pt;}
.y37{bottom:176.700133pt;}
.y43{bottom:176.936267pt;}
.yf1{bottom:177.342400pt;}
.ydb{bottom:185.729333pt;}
.y15f{bottom:185.808933pt;}
.y17f{bottom:186.070533pt;}
.y7b{bottom:189.774133pt;}
.y36{bottom:192.700133pt;}
.y42{bottom:192.936267pt;}
.yf0{bottom:193.342400pt;}
.y15e{bottom:197.808933pt;}
.y17e{bottom:198.070533pt;}
.ya7{bottom:198.715733pt;}
.y7a{bottom:205.774133pt;}
.yda{bottom:208.406533pt;}
.y35{bottom:208.700133pt;}
.y41{bottom:208.936267pt;}
.yef{bottom:209.342400pt;}
.y15d{bottom:209.808933pt;}
.y17d{bottom:210.070533pt;}
.ya6{bottom:221.392933pt;}
.y79{bottom:221.774133pt;}
.y15c{bottom:221.808933pt;}
.y17c{bottom:222.070533pt;}
.y34{bottom:224.700133pt;}
.y40{bottom:224.936267pt;}
.yee{bottom:225.342400pt;}
.yd9{bottom:231.083733pt;}
.y15b{bottom:233.808933pt;}
.y17b{bottom:234.070533pt;}
.y78{bottom:237.774133pt;}
.y33{bottom:240.700133pt;}
.y3f{bottom:240.936267pt;}
.yed{bottom:241.342400pt;}
.ya5{bottom:244.070133pt;}
.y15a{bottom:245.808933pt;}
.y17a{bottom:246.070533pt;}
.yd8{bottom:253.760800pt;}
.y77{bottom:253.774133pt;}
.y32{bottom:256.700133pt;}
.y3e{bottom:256.936267pt;}
.yec{bottom:257.342400pt;}
.y159{bottom:257.808933pt;}
.y179{bottom:258.070533pt;}
.ya4{bottom:266.747333pt;}
.y76{bottom:269.774133pt;}
.y158{bottom:269.808933pt;}
.y178{bottom:270.070533pt;}
.y31{bottom:272.700133pt;}
.y3d{bottom:272.936267pt;}
.yeb{bottom:273.342400pt;}
.yd7{bottom:276.438000pt;}
.y157{bottom:281.808933pt;}
.y177{bottom:282.070533pt;}
.y75{bottom:285.774133pt;}
.y30{bottom:288.700133pt;}
.y3c{bottom:288.936267pt;}
.yea{bottom:289.342400pt;}
.ya3{bottom:289.424400pt;}
.y156{bottom:293.808933pt;}
.y176{bottom:294.070533pt;}
.yd6{bottom:300.007600pt;}
.y74{bottom:301.774133pt;}
.y2f{bottom:304.700133pt;}
.y3b{bottom:304.936267pt;}
.ye9{bottom:305.342400pt;}
.y155{bottom:305.808933pt;}
.y175{bottom:306.070533pt;}
.ya2{bottom:312.101600pt;}
.yd5{bottom:313.340933pt;}
.y73{bottom:317.774133pt;}
.y154{bottom:317.808933pt;}
.y174{bottom:318.070533pt;}
.y2e{bottom:320.700133pt;}
.ye8{bottom:321.342400pt;}
.y153{bottom:329.808933pt;}
.y173{bottom:330.070533pt;}
.y72{bottom:333.774133pt;}
.ya1{bottom:334.778800pt;}
.yd4{bottom:334.788000pt;}
.ye7{bottom:337.342400pt;}
.y152{bottom:341.808933pt;}
.y172{bottom:342.070533pt;}
.y1e{bottom:342.769867pt;}
.yd3{bottom:348.121333pt;}
.y71{bottom:349.774133pt;}
.ye6{bottom:353.342400pt;}
.y151{bottom:353.808933pt;}
.y171{bottom:354.070533pt;}
.y1d{bottom:356.103200pt;}
.ya0{bottom:357.455867pt;}
.y150{bottom:365.808933pt;}
.y170{bottom:366.070533pt;}
.ye5{bottom:369.342400pt;}
.y1c{bottom:369.436533pt;}
.y14f{bottom:377.808933pt;}
.y16f{bottom:378.070533pt;}
.y9f{bottom:380.133067pt;}
.y70{bottom:381.774133pt;}
.yd2{bottom:381.940800pt;}
.y1b{bottom:382.769867pt;}
.ye4{bottom:385.342400pt;}
.y14e{bottom:389.808933pt;}
.y16e{bottom:390.070533pt;}
.y1a{bottom:396.103200pt;}
.y6f{bottom:397.774133pt;}
.yd1{bottom:397.940800pt;}
.ye3{bottom:401.342400pt;}
.y14d{bottom:401.808933pt;}
.y16d{bottom:402.070533pt;}
.y9e{bottom:402.810267pt;}
.y19{bottom:409.436533pt;}
.y6e{bottom:413.774133pt;}
.y14c{bottom:413.808933pt;}
.yd0{bottom:413.940800pt;}
.y16c{bottom:414.070533pt;}
.y18{bottom:422.769867pt;}
.y9d{bottom:425.487467pt;}
.y14b{bottom:425.808933pt;}
.y16b{bottom:426.070533pt;}
.y6d{bottom:429.774133pt;}
.ycf{bottom:429.940800pt;}
.y17{bottom:436.103200pt;}
.y110{bottom:437.459200pt;}
.y14a{bottom:437.808933pt;}
.y16a{bottom:438.070533pt;}
.y6c{bottom:445.774133pt;}
.yce{bottom:445.940800pt;}
.y9c{bottom:448.164533pt;}
.y16{bottom:449.436533pt;}
.y149{bottom:449.808933pt;}
.y169{bottom:450.070533pt;}
.y10f{bottom:455.578933pt;}
.y6b{bottom:461.774133pt;}
.y148{bottom:461.808933pt;}
.ycd{bottom:461.940800pt;}
.y168{bottom:462.070533pt;}
.y15{bottom:462.769867pt;}
.y9b{bottom:470.841733pt;}
.y147{bottom:473.808933pt;}
.y167{bottom:474.070533pt;}
.y14{bottom:476.103200pt;}
.y6a{bottom:477.774133pt;}
.ycc{bottom:477.940800pt;}
.y10e{bottom:478.250800pt;}
.y146{bottom:485.808933pt;}
.y166{bottom:486.070533pt;}
.y13{bottom:489.436533pt;}
.y9a{bottom:493.518933pt;}
.y69{bottom:493.774133pt;}
.ycb{bottom:493.940800pt;}
.y145{bottom:497.808933pt;}
.y10d{bottom:500.922667pt;}
.y12{bottom:502.769867pt;}
.y68{bottom:509.774133pt;}
.yca{bottom:509.940800pt;}
.y11{bottom:516.103200pt;}
.y99{bottom:516.196133pt;}
.y10c{bottom:523.594533pt;}
.y67{bottom:525.774133pt;}
.yc9{bottom:525.940800pt;}
.y10{bottom:529.436533pt;}
.y98{bottom:538.873200pt;}
.y144{bottom:541.190800pt;}
.y12c{bottom:541.357467pt;}
.y66{bottom:541.774133pt;}
.yc8{bottom:541.940800pt;}
.y10b{bottom:546.266267pt;}
.y2d{bottom:551.004267pt;}
.y143{bottom:557.190800pt;}
.y12b{bottom:557.357467pt;}
.y65{bottom:557.774133pt;}
.yc7{bottom:557.940800pt;}
.y97{bottom:561.550400pt;}
.y2c{bottom:564.337600pt;}
.y10a{bottom:568.938133pt;}
.y12a{bottom:573.357467pt;}
.y64{bottom:573.774133pt;}
.y2b{bottom:577.670933pt;}
.y96{bottom:584.227600pt;}
.y142{bottom:589.190800pt;}
.y129{bottom:589.357467pt;}
.y63{bottom:589.774133pt;}
.yc6{bottom:589.940800pt;}
.y2a{bottom:591.004267pt;}
.y109{bottom:591.610000pt;}
.y29{bottom:604.337600pt;}
.y141{bottom:605.190800pt;}
.y128{bottom:605.357467pt;}
.y62{bottom:605.774133pt;}
.yc5{bottom:605.940800pt;}
.y95{bottom:606.904800pt;}
.y108{bottom:614.281867pt;}
.y28{bottom:617.670933pt;}
.y127{bottom:621.357467pt;}
.y61{bottom:621.774133pt;}
.yc4{bottom:621.940800pt;}
.y94{bottom:629.581867pt;}
.y27{bottom:631.004267pt;}
.y107{bottom:636.953733pt;}
.y140{bottom:637.190800pt;}
.y126{bottom:637.357467pt;}
.y60{bottom:637.774133pt;}
.yc3{bottom:637.940800pt;}
.y26{bottom:644.337600pt;}
.y93{bottom:652.259067pt;}
.y13f{bottom:653.190800pt;}
.y125{bottom:653.357467pt;}
.y5f{bottom:653.774133pt;}
.yc2{bottom:653.940800pt;}
.y25{bottom:657.670933pt;}
.y106{bottom:659.625467pt;}
.y13e{bottom:669.190800pt;}
.y124{bottom:669.357467pt;}
.y5e{bottom:669.774133pt;}
.yc1{bottom:669.940800pt;}
.y24{bottom:671.004267pt;}
.y92{bottom:674.936267pt;}
.y105{bottom:682.297333pt;}
.y23{bottom:684.337600pt;}
.y123{bottom:685.357467pt;}
.y5d{bottom:685.774133pt;}
.yc0{bottom:685.940800pt;}
.y91{bottom:697.613467pt;}
.y22{bottom:697.670933pt;}
.y13d{bottom:701.190800pt;}
.y122{bottom:701.357467pt;}
.y5c{bottom:701.774133pt;}
.ybf{bottom:701.940800pt;}
.y104{bottom:704.969200pt;}
.y21{bottom:711.004267pt;}
.y13c{bottom:717.190800pt;}
.y121{bottom:717.357467pt;}
.y5b{bottom:717.774133pt;}
.ybe{bottom:717.940800pt;}
.y90{bottom:720.290667pt;}
.y20{bottom:724.337600pt;}
.y103{bottom:727.641067pt;}
.y13b{bottom:733.190800pt;}
.y120{bottom:733.357467pt;}
.y5a{bottom:733.774133pt;}
.ybd{bottom:733.940800pt;}
.y1f{bottom:737.670933pt;}
.y8f{bottom:742.968000pt;}
.y13a{bottom:749.190800pt;}
.y11f{bottom:749.357467pt;}
.y59{bottom:749.774133pt;}
.ybc{bottom:749.940800pt;}
.y102{bottom:750.312800pt;}
.yf{bottom:759.860933pt;}
.y139{bottom:765.190800pt;}
.y11e{bottom:765.357467pt;}
.y8e{bottom:765.645200pt;}
.y58{bottom:765.774133pt;}
.ybb{bottom:765.940800pt;}
.ye{bottom:771.860933pt;}
.y101{bottom:772.984667pt;}
.y11d{bottom:781.357467pt;}
.y57{bottom:781.774133pt;}
.yba{bottom:781.940800pt;}
.y8d{bottom:788.322400pt;}
.y100{bottom:795.656533pt;}
.y138{bottom:797.190800pt;}
.y11c{bottom:797.357467pt;}
.y56{bottom:797.774133pt;}
.yb9{bottom:797.940800pt;}
.y9{bottom:806.956933pt;}
.y8c{bottom:810.999733pt;}
.y137{bottom:813.190800pt;}
.y11b{bottom:813.357467pt;}
.y55{bottom:813.774133pt;}
.yb8{bottom:813.940800pt;}
.yff{bottom:818.328400pt;}
.y136{bottom:829.190800pt;}
.y11a{bottom:829.357467pt;}
.y54{bottom:829.774133pt;}
.yb7{bottom:829.940800pt;}
.y8{bottom:833.623600pt;}
.y8b{bottom:833.676933pt;}
.yfe{bottom:841.000133pt;}
.y135{bottom:845.190800pt;}
.y119{bottom:845.357467pt;}
.y53{bottom:845.774133pt;}
.yb6{bottom:845.940800pt;}
.y8a{bottom:854.231600pt;}
.y7{bottom:860.290267pt;}
.y134{bottom:861.190800pt;}
.y118{bottom:861.357467pt;}
.y52{bottom:861.774133pt;}
.yb5{bottom:861.940800pt;}
.yfd{bottom:863.672000pt;}
.y133{bottom:877.190800pt;}
.y117{bottom:877.357467pt;}
.y47{bottom:877.408133pt;}
.y51{bottom:877.774133pt;}
.yb4{bottom:877.940800pt;}
.y89{bottom:877.940933pt;}
.yfc{bottom:886.343867pt;}
.y132{bottom:893.190800pt;}
.y116{bottom:893.357467pt;}
.y50{bottom:893.774133pt;}
.yb3{bottom:893.940800pt;}
.y88{bottom:893.940933pt;}
.yfb{bottom:909.015733pt;}
.y131{bottom:909.190800pt;}
.y115{bottom:909.357467pt;}
.y4f{bottom:909.774133pt;}
.yb2{bottom:909.940800pt;}
.y87{bottom:909.940933pt;}
.y6{bottom:913.623600pt;}
.y130{bottom:925.190800pt;}
.y114{bottom:925.357467pt;}
.y4e{bottom:925.774133pt;}
.yb1{bottom:925.940800pt;}
.y86{bottom:925.940933pt;}
.yfa{bottom:931.687467pt;}
.y5{bottom:940.290267pt;}
.y12f{bottom:941.190800pt;}
.y113{bottom:941.357467pt;}
.y4d{bottom:941.774133pt;}
.yb0{bottom:941.940800pt;}
.y85{bottom:941.940933pt;}
.yf9{bottom:954.359333pt;}
.y12e{bottom:957.190800pt;}
.y112{bottom:957.357467pt;}
.y4c{bottom:957.774133pt;}
.yaf{bottom:957.940800pt;}
.y84{bottom:957.940933pt;}
.y1{bottom:961.754667pt;}
.y4{bottom:966.956933pt;}
.y12d{bottom:973.190800pt;}
.y111{bottom:973.357467pt;}
.y4b{bottom:973.774133pt;}
.yae{bottom:973.940800pt;}
.y83{bottom:973.940933pt;}
.yf8{bottom:974.911467pt;}
.ye1{bottom:1011.252267pt;}
.ye2{bottom:1011.252400pt;}
.y185{bottom:1011.472800pt;}
.y4a{bottom:1012.176400pt;}
.h6{height:23.328125pt;}
.hd{height:24.238078pt;}
.h2{height:27.179688pt;}
.h4{height:27.216146pt;}
.h3{height:31.062500pt;}
.h8{height:31.104167pt;}
.hc{height:32.317437pt;}
.h9{height:34.945312pt;}
.ha{height:34.992188pt;}
.hb{height:36.357117pt;}
.h7{height:36.384445pt;}
.hf{height:57.729167pt;}
.h5{height:62.125000pt;}
.he{height:84.395833pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w1{width:756.000000pt;}
.w0{width:756.170667pt;}
.x0{left:0.000000pt;}
.x1{left:5.920533pt;}
.xd{left:37.795333pt;}
.x19{left:44.995333pt;}
.xc{left:55.602667pt;}
.xe{left:56.728667pt;}
.x1a{left:60.113467pt;}
.x4{left:75.947467pt;}
.x16{left:82.790533pt;}
.x5{left:88.818933pt;}
.x1d{left:91.781067pt;}
.x17{left:93.040933pt;}
.x6{left:94.523867pt;}
.x1b{left:99.590533pt;}
.xa{left:172.899600pt;}
.x3{left:210.791467pt;}
.x13{left:264.923467pt;}
.x12{left:273.118800pt;}
.xb{left:349.266133pt;}
.xf{left:367.187467pt;}
.x10{left:374.387467pt;}
.x14{left:381.289600pt;}
.x2{left:386.824400pt;}
.x11{left:402.787333pt;}
.x7{left:404.982667pt;}
.x8{left:423.916000pt;}
.x1c{left:428.982667pt;}
.x18{left:457.955867pt;}
.x15{left:560.822933pt;}
.x9{left:750.416133pt;}
}




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