
    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_39cf4123e62ff82ef1aba978.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_3b11d5e81e70120107e2750d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_f460098029174cbcc450e018.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_0bd2bc269b2c214a2b5a28ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_5bb6ffb9a22ca055dd2cb83f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_5b1c3661e7b07c9020fc860f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_922bef6780c17ff843b2340c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_843e3bc4c85995226edd7cf6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_ee10204a17af250f509d54d6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_fea2b028b6b13aef7b1b588c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.102539;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:ffb;src:url('chunks/assets/font_7f28bb8bbc50d5bee143d8ba.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.706543;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:ffc;src:url('chunks/assets/font_e5c51f78508c04c778d07052.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.691406;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:ffd;src:url('chunks/assets/font_dbd2eac9e4c976661ef69b91.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.948242;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:ffe;src:url('chunks/assets/font_2099f037637ca9e1561ad98e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.875977;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.lsc{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.457800px;}
.lsf{letter-spacing:-0.414600px;}
.ls25{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.305400px;}
.ls10{letter-spacing:-0.152400px;}
.ls8{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.031680px;}
.ls1c{letter-spacing:0.106560px;}
.ls1b{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.206400px;}
.ls14{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.262200px;}
.ls19{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.540000px;}
.ls7{letter-spacing:0.666000px;}
.ls16{letter-spacing:0.828000px;}
.ls1f{letter-spacing:0.900000px;}
.ls1a{letter-spacing:1.080000px;}
.ls1e{letter-spacing:2.340000px;}
.ls2{letter-spacing:3.060000px;}
.ls9{letter-spacing:4.320000px;}
.ls12{letter-spacing:5.760000px;}
.ls22{letter-spacing:5.940000px;}
.lse{letter-spacing:7.200000px;}
.ls23{letter-spacing:7.380000px;}
.ls21{letter-spacing:8.820000px;}
.lsb{letter-spacing:11.520000px;}
.lsa{letter-spacing:12.240000px;}
.ls11{letter-spacing:16.865280px;}
.lsd{letter-spacing:17.280000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-66.240000px;}
.ws12{word-spacing:-59.760000px;}
.ws13{word-spacing:-30.240000px;}
.ws3{word-spacing:-16.865400px;}
.ws9{word-spacing:-16.822200px;}
.ws4{word-spacing:-16.669200px;}
.ws7{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.407600px;}
.wsc{word-spacing:-16.254600px;}
.wsb{word-spacing:-16.102200px;}
.wsd{word-spacing:-16.020000px;}
.ws0{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.146400px;}
.wse{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.580000px;}
.ws1{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._1c{margin-left:-4.983120px;}
._1b{margin-left:-3.908160px;}
._10{margin-left:-2.122800px;}
._1{margin-left:-1.008000px;}
._0{width:1.613520px;}
._8{width:2.712240px;}
._4{width:3.824640px;}
._5{width:5.191200px;}
._7{width:6.402240px;}
._c{width:7.439040px;}
._6{width:8.699760px;}
._d{width:10.203840px;}
._11{width:11.569920px;}
._2{width:13.339440px;}
._12{width:14.758800px;}
._3{width:16.048080px;}
._14{width:18.020400px;}
._9{width:19.242720px;}
._15{width:20.315040px;}
._16{width:21.329280px;}
._13{width:22.455360px;}
._18{width:24.111360px;}
._e{width:25.171200px;}
._f{width:26.694720px;}
._17{width:28.483200px;}
._a{width:30.238560px;}
._b{width:31.605120px;}
._19{width:32.722560px;}
._1d{width:33.873600px;}
._1e{width:35.113440px;}
._1a{width:37.028160px;}
._21{width:38.691360px;}
._1f{width:39.876480px;}
._20{width:41.135040px;}
._25{width:42.772800px;}
._24{width:43.915680px;}
._27{width:48.764160px;}
._26{width:50.679120px;}
._28{width:52.115040px;}
._23{width:76.533600px;}
._22{width:77.561520px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:62.991941px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:12.600000px;}
.y2{bottom:29.700000px;}
.y5{bottom:258.690000px;}
.y2e{bottom:301.350000px;}
.ye9{bottom:302.790000px;}
.ye2{bottom:305.310000px;}
.y8d{bottom:306.210000px;}
.y13b{bottom:306.930000px;}
.y5a{bottom:310.890000px;}
.yf7{bottom:314.310000px;}
.ya4{bottom:316.650000px;}
.y82{bottom:317.190000px;}
.y2d{bottom:318.630000px;}
.ye8{bottom:321.330000px;}
.ye1{bottom:324.210000px;}
.y8c{bottom:325.290000px;}
.yfe{bottom:329.430000px;}
.y59{bottom:329.790000px;}
.y111{bottom:333.210000px;}
.yf6{bottom:333.390000px;}
.y2c{bottom:335.730000px;}
.y81{bottom:336.090000px;}
.ye7{bottom:340.770000px;}
.y13a{bottom:341.490000px;}
.ye0{bottom:343.290000px;}
.y8b{bottom:344.190000px;}
.y18f{bottom:345.990000px;}
.y58{bottom:348.690000px;}
.yf5{bottom:352.290000px;}
.y2b{bottom:353.010000px;}
.ya3{bottom:354.630000px;}
.y80{bottom:355.170000px;}
.y139{bottom:358.770000px;}
.ye6{bottom:359.670000px;}
.yb7{bottom:360.750000px;}
.ydf{bottom:362.190000px;}
.y12c{bottom:363.090000px;}
.y8a{bottom:363.270000px;}
.y57{bottom:367.770000px;}
.y2a{bottom:370.290000px;}
.yf4{bottom:371.190000px;}
.ya2{bottom:373.710000px;}
.y7f{bottom:374.070000px;}
.y138{bottom:375.870000px;}
.ye5{bottom:378.750000px;}
.yb6{bottom:379.650000px;}
.y18e{bottom:380.550000px;}
.yde{bottom:381.090000px;}
.y89{bottom:382.170000px;}
.y118{bottom:386.310000px;}
.y56{bottom:386.670000px;}
.y166{bottom:387.390000px;}
.y29{bottom:387.570000px;}
.y110{bottom:390.090000px;}
.yf3{bottom:390.270000px;}
.ya1{bottom:392.610000px;}
.y7e{bottom:393.150000px;}
.ye4{bottom:397.650000px;}
.y18d{bottom:397.830000px;}
.ydd{bottom:400.170000px;}
.y88{bottom:401.070000px;}
.yb5{bottom:403.050000px;}
.y165{bottom:404.670000px;}
.y117{bottom:405.390000px;}
.y55{bottom:405.750000px;}
.yf2{bottom:409.170000px;}
.y137{bottom:410.430000px;}
.ya0{bottom:411.510000px;}
.y28{bottom:411.690000px;}
.y7d{bottom:412.050000px;}
.y18c{bottom:414.930000px;}
.ydc{bottom:419.070000px;}
.y87{bottom:420.150000px;}
.y164{bottom:421.995000px;}
.yb4{bottom:422.175000px;}
.y27{bottom:422.895000px;}
.y54{bottom:424.695000px;}
.ye3{bottom:425.235000px;}
.y11d{bottom:427.755000px;}
.y10f{bottom:428.115000px;}
.yf1{bottom:428.295000px;}
.y9f{bottom:430.275000px;}
.y7c{bottom:430.995000px;}
.y18b{bottom:432.255000px;}
.ydb{bottom:438.195000px;}
.y86{bottom:439.095000px;}
.y163{bottom:439.275000px;}
.yfd{bottom:443.235000px;}
.y53{bottom:443.595000px;}
.y136{bottom:445.035000px;}
.yb3{bottom:445.575000px;}
.yf0{bottom:447.195000px;}
.y9e{bottom:447.555000px;}
.y18a{bottom:449.535000px;}
.y7b{bottom:450.075000px;}
.y162{bottom:456.555000px;}
.yda{bottom:457.095000px;}
.y12b{bottom:457.995000px;}
.y85{bottom:458.175000px;}
.y26{bottom:459.615000px;}
.y122{bottom:462.315000px;}
.y52{bottom:462.675000px;}
.y9d{bottom:464.475000px;}
.yb2{bottom:464.655000px;}
.yef{bottom:466.095000px;}
.y189{bottom:466.815000px;}
.y7a{bottom:468.975000px;}
.y161{bottom:473.835000px;}
.yd9{bottom:475.995000px;}
.y84{bottom:476.715000px;}
.y12a{bottom:477.075000px;}
.y9c{bottom:478.335000px;}
.y25{bottom:478.695000px;}
.y135{bottom:479.415000px;}
.y51{bottom:481.575000px;}
.y188{bottom:484.095000px;}
.y10e{bottom:484.635000px;}
.yee{bottom:484.815000px;}
.y11c{bottom:484.995000px;}
.y79{bottom:488.055000px;}
.y83{bottom:490.395000px;}
.y160{bottom:490.935000px;}
.yd8{bottom:495.075000px;}
.y129{bottom:495.975000px;}
.y134{bottom:496.695000px;}
.y24{bottom:497.595000px;}
.y50{bottom:500.655000px;}
.y187{bottom:501.195000px;}
.y10d{bottom:503.715000px;}
.yed{bottom:504.075000px;}
.y78{bottom:506.955000px;}
.y15f{bottom:508.215000px;}
.yd7{bottom:513.975000px;}
.y128{bottom:515.055000px;}
.y23{bottom:516.495000px;}
.y186{bottom:518.475000px;}
.y4f{bottom:519.555000px;}
.yec{bottom:522.435000px;}
.y10c{bottom:522.975000px;}
.y15e{bottom:525.495000px;}
.y77{bottom:525.855000px;}
.yb1{bottom:530.535000px;}
.y133{bottom:531.255000px;}
.yd6{bottom:533.055000px;}
.y127{bottom:533.955000px;}
.y22{bottom:535.575000px;}
.y185{bottom:535.755000px;}
.y4e{bottom:538.455000px;}
.yeb{bottom:539.715000px;}
.y10b{bottom:542.055000px;}
.y15d{bottom:542.775000px;}
.y132{bottom:548.535000px;}
.yb0{bottom:549.435000px;}
.yd5{bottom:551.955000px;}
.y126{bottom:552.855000px;}
.y184{bottom:553.035000px;}
.y76{bottom:553.575000px;}
.y21{bottom:554.475000px;}
.y4d{bottom:557.535000px;}
.y15c{bottom:560.055000px;}
.y10a{bottom:560.955000px;}
.y131{bottom:565.815000px;}
.yaf{bottom:568.515000px;}
.y183{bottom:570.315000px;}
.yd4{bottom:570.855000px;}
.y125{bottom:571.935000px;}
.y20{bottom:573.555000px;}
.y4c{bottom:576.435000px;}
.y15b{bottom:577.335000px;}
.y109{bottom:579.855000px;}
.y130{bottom:582.915000px;}
.y182{bottom:587.595000px;}
.yd3{bottom:589.935000px;}
.y75{bottom:590.835000px;}
.yae{bottom:591.915000px;}
.y1f{bottom:592.455000px;}
.y15a{bottom:594.435000px;}
.y4b{bottom:595.515000px;}
.y11b{bottom:598.575000px;}
.y108{bottom:598.935000px;}
.y181{bottom:604.695000px;}
.yd2{bottom:608.835000px;}
.y12f{bottom:609.555000px;}
.y74{bottom:609.915000px;}
.yad{bottom:610.815000px;}
.y1e{bottom:611.355000px;}
.y159{bottom:611.715000px;}
.y121{bottom:614.055000px;}
.y4a{bottom:614.415000px;}
.y107{bottom:617.835000px;}
.yd1{bottom:627.915000px;}
.y73{bottom:628.815000px;}
.y158{bottom:628.995000px;}
.y180{bottom:630.975000px;}
.y116{bottom:632.955000px;}
.y49{bottom:633.315000px;}
.yac{bottom:634.395000px;}
.y106{bottom:636.915000px;}
.y1d{bottom:639.075000px;}
.y12e{bottom:646.095000px;}
.y157{bottom:646.275000px;}
.yd0{bottom:646.815000px;}
.y72{bottom:647.715000px;}
.y17f{bottom:649.875000px;}
.y120{bottom:652.035000px;}
.y48{bottom:652.395000px;}
.yab{bottom:653.295000px;}
.y105{bottom:655.815000px;}
.y12d{bottom:663.405000px;}
.y156{bottom:663.585000px;}
.ycf{bottom:665.745000px;}
.y71{bottom:666.825000px;}
.y47{bottom:671.325000px;}
.y104{bottom:674.745000px;}
.y1c{bottom:676.185000px;}
.yaa{bottom:676.905000px;}
.y17e{bottom:677.985000px;}
.y155{bottom:680.685000px;}
.yce{bottom:684.825000px;}
.y70{bottom:685.725000px;}
.y46{bottom:690.405000px;}
.y1b{bottom:693.285000px;}
.y103{bottom:693.825000px;}
.y17d{bottom:695.265000px;}
.ya9{bottom:695.805000px;}
.y154{bottom:697.965000px;}
.ycd{bottom:703.725000px;}
.y6f{bottom:704.805000px;}
.y45{bottom:709.305000px;}
.y17c{bottom:712.545000px;}
.y102{bottom:712.725000px;}
.ya8{bottom:714.885000px;}
.y153{bottom:715.245000px;}
.y1a{bottom:719.565000px;}
.ycc{bottom:722.805000px;}
.y6e{bottom:723.705000px;}
.y44{bottom:728.385000px;}
.y17b{bottom:729.825000px;}
.y101{bottom:731.805000px;}
.y124{bottom:732.345000px;}
.y152{bottom:732.525000px;}
.ya7{bottom:738.285000px;}
.ycb{bottom:741.705000px;}
.y6d{bottom:742.785000px;}
.y19{bottom:745.845000px;}
.y115{bottom:746.925000px;}
.y43{bottom:747.285000px;}
.y151{bottom:749.805000px;}
.y100{bottom:750.705000px;}
.ya6{bottom:757.185000px;}
.yca{bottom:760.785000px;}
.y6c{bottom:761.685000px;}
.y18{bottom:763.125000px;}
.y17a{bottom:764.205000px;}
.y114{bottom:765.825000px;}
.y42{bottom:766.185000px;}
.y150{bottom:767.085000px;}
.yff{bottom:769.785000px;}
.yc9{bottom:779.685000px;}
.y6b{bottom:780.585000px;}
.ya5{bottom:780.765000px;}
.y179{bottom:781.485000px;}
.y14f{bottom:784.185000px;}
.y113{bottom:784.905000px;}
.y41{bottom:785.265000px;}
.y9b{bottom:788.685000px;}
.y17{bottom:789.405000px;}
.yc8{bottom:798.585000px;}
.y178{bottom:798.765000px;}
.y6a{bottom:799.665000px;}
.y14e{bottom:801.465000px;}
.y40{bottom:804.165000px;}
.y16{bottom:806.685000px;}
.y9a{bottom:807.585000px;}
.y177{bottom:816.045000px;}
.yc7{bottom:817.665000px;}
.y69{bottom:818.565000px;}
.y14d{bottom:818.745000px;}
.y3f{bottom:823.245000px;}
.y15{bottom:823.785000px;}
.y11a{bottom:826.305000px;}
.y99{bottom:826.665000px;}
.y176{bottom:833.145000px;}
.y14c{bottom:836.385000px;}
.yc6{bottom:836.565000px;}
.y68{bottom:837.645000px;}
.y14{bottom:841.065000px;}
.y3e{bottom:842.145000px;}
.y119{bottom:845.205000px;}
.y98{bottom:845.565000px;}
.y175{bottom:850.425000px;}
.y14b{bottom:853.845000px;}
.yc5{bottom:855.645000px;}
.y67{bottom:856.545000px;}
.y13{bottom:858.345000px;}
.y3d{bottom:861.045000px;}
.y97{bottom:864.645000px;}
.y174{bottom:867.705000px;}
.y19b{bottom:868.425000px;}
.y14a{bottom:871.125000px;}
.yc4{bottom:874.545000px;}
.y66{bottom:875.445000px;}
.y12{bottom:875.625000px;}
.yfc{bottom:879.765000px;}
.y3c{bottom:880.125000px;}
.y96{bottom:883.545000px;}
.y173{bottom:884.985000px;}
.y149{bottom:888.405000px;}
.y11{bottom:892.905000px;}
.yc3{bottom:893.445000px;}
.y65{bottom:894.525000px;}
.yfb{bottom:898.665000px;}
.y3b{bottom:899.025000px;}
.y172{bottom:902.310000px;}
.y95{bottom:902.490000px;}
.y148{bottom:905.730000px;}
.y19a{bottom:905.910000px;}
.y10{bottom:910.230000px;}
.yc2{bottom:912.570000px;}
.y64{bottom:913.470000px;}
.y3a{bottom:918.150000px;}
.y171{bottom:919.590000px;}
.y94{bottom:921.570000px;}
.y147{bottom:923.010000px;}
.y199{bottom:925.350000px;}
.yf{bottom:927.330000px;}
.yc1{bottom:931.470000px;}
.y63{bottom:932.550000px;}
.y112{bottom:936.690000px;}
.y39{bottom:937.050000px;}
.y146{bottom:940.290000px;}
.y93{bottom:940.470000px;}
.ye{bottom:944.610000px;}
.y198{bottom:944.970000px;}
.yc0{bottom:950.550000px;}
.y62{bottom:951.450000px;}
.y170{bottom:953.970000px;}
.y11f{bottom:955.590000px;}
.y38{bottom:955.950000px;}
.y145{bottom:957.390000px;}
.y92{bottom:959.550000px;}
.yd{bottom:961.890000px;}
.y197{bottom:964.410000px;}
.ybf{bottom:969.450000px;}
.y61{bottom:970.350000px;}
.y16f{bottom:971.250000px;}
.y144{bottom:974.670000px;}
.y37{bottom:975.030000px;}
.y91{bottom:978.450000px;}
.yc{bottom:979.170000px;}
.y196{bottom:984.030000px;}
.ybe{bottom:988.350000px;}
.y16e{bottom:988.530000px;}
.y60{bottom:989.430000px;}
.y143{bottom:991.950000px;}
.y36{bottom:993.930000px;}
.yb{bottom:996.450000px;}
.yea{bottom:996.990000px;}
.y90{bottom:997.350000px;}
.y195{bottom:1003.470000px;}
.y16d{bottom:1005.810000px;}
.ybd{bottom:1007.430000px;}
.y142{bottom:1009.230000px;}
.yfa{bottom:1012.650000px;}
.y35{bottom:1013.010000px;}
.ya{bottom:1013.550000px;}
.y8f{bottom:1016.430000px;}
.y5f{bottom:1016.970000px;}
.y194{bottom:1022.910000px;}
.y16c{bottom:1023.090000px;}
.ybc{bottom:1026.330000px;}
.y141{bottom:1026.510000px;}
.yf9{bottom:1031.550000px;}
.y34{bottom:1031.910000px;}
.y8e{bottom:1035.330000px;}
.y9{bottom:1039.830000px;}
.y16b{bottom:1040.190000px;}
.y193{bottom:1042.530000px;}
.y140{bottom:1043.790000px;}
.ybb{bottom:1045.410000px;}
.yf8{bottom:1050.450000px;}
.y33{bottom:1050.810000px;}
.y5e{bottom:1054.410000px;}
.y16a{bottom:1057.470000px;}
.y13f{bottom:1060.890000px;}
.y192{bottom:1061.970000px;}
.yba{bottom:1064.310000px;}
.y8{bottom:1068.270000px;}
.y32{bottom:1069.890000px;}
.y5d{bottom:1073.310000px;}
.y169{bottom:1074.750000px;}
.y13e{bottom:1078.170000px;}
.y191{bottom:1081.590000px;}
.yb9{bottom:1083.210000px;}
.y31{bottom:1088.790000px;}
.y7{bottom:1088.970000px;}
.y123{bottom:1091.850000px;}
.y168{bottom:1092.030000px;}
.y5c{bottom:1092.210000px;}
.y13d{bottom:1095.450000px;}
.y11e{bottom:1107.510000px;}
.y30{bottom:1107.870000px;}
.y167{bottom:1109.310000px;}
.y6{bottom:1109.670000px;}
.y190{bottom:1110.570000px;}
.yb8{bottom:1110.930000px;}
.y5b{bottom:1111.290000px;}
.y13c{bottom:1112.730000px;}
.y2f{bottom:1127.310000px;}
.y4{bottom:1130.010000px;}
.y1{bottom:1150.200000px;}
.hc{height:38.158594px;}
.h10{height:44.014389px;}
.h15{height:44.178047px;}
.h14{height:46.454063px;}
.h13{height:51.491250px;}
.h2{height:52.740000px;}
.h11{height:53.573906px;}
.h8{height:58.621992px;}
.h4{height:58.651172px;}
.h12{height:58.833281px;}
.hd{height:59.383125px;}
.h3{height:60.226875px;}
.h6{height:63.949219px;}
.hf{height:64.978594px;}
.ha{height:65.010937px;}
.h9{height:66.757500px;}
.he{height:68.084282px;}
.hb{height:70.664062px;}
.h7{height:72.326250px;}
.h5{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:90.936000px;}
.w4{width:91.080000px;}
.w5{width:443.985000px;}
.w2{width:447.555000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x5{left:30.465000px;}
.x2{left:50.760000px;}
.x3{left:110.025000px;}
.x7{left:170.130000px;}
.x1{left:175.530000px;}
.x9{left:177.870000px;}
.x10{left:191.370000px;}
.x1d{left:193.890000px;}
.x11{left:197.130000px;}
.x13{left:204.690000px;}
.x1e{left:214.950000px;}
.x15{left:216.210000px;}
.xf{left:228.990000px;}
.x1c{left:230.430000px;}
.xa{left:234.750000px;}
.xd{left:273.450000px;}
.x1f{left:281.415000px;}
.x16{left:297.975000px;}
.x14{left:311.475000px;}
.xc{left:320.655000px;}
.xb{left:358.995000px;}
.x8{left:435.315000px;}
.x17{left:446.475000px;}
.x1a{left:540.105000px;}
.x1b{left:545.145000px;}
.x18{left:563.685000px;}
.x19{left:568.725000px;}
.x4{left:626.505000px;}
.xe{left:714.390000px;}
.x12{left:723.030000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.406933pt;}
.lsf{letter-spacing:-0.368533pt;}
.ls25{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.271467pt;}
.ls10{letter-spacing:-0.135467pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.028160pt;}
.ls1c{letter-spacing:0.094720pt;}
.ls1b{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.183467pt;}
.ls14{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.233067pt;}
.ls19{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls7{letter-spacing:0.592000pt;}
.ls16{letter-spacing:0.736000pt;}
.ls1f{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:0.960000pt;}
.ls1e{letter-spacing:2.080000pt;}
.ls2{letter-spacing:2.720000pt;}
.ls9{letter-spacing:3.840000pt;}
.ls12{letter-spacing:5.120000pt;}
.ls22{letter-spacing:5.280000pt;}
.lse{letter-spacing:6.400000pt;}
.ls23{letter-spacing:6.560000pt;}
.ls21{letter-spacing:7.840000pt;}
.lsb{letter-spacing:10.240000pt;}
.lsa{letter-spacing:10.880000pt;}
.ls11{letter-spacing:14.991360pt;}
.lsd{letter-spacing:15.360000pt;}
.ws11{word-spacing:-58.880000pt;}
.ws12{word-spacing:-53.120000pt;}
.ws13{word-spacing:-26.880000pt;}
.ws3{word-spacing:-14.991467pt;}
.ws9{word-spacing:-14.953067pt;}
.ws4{word-spacing:-14.817067pt;}
.ws7{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.584533pt;}
.wsc{word-spacing:-14.448533pt;}
.wsb{word-spacing:-14.313067pt;}
.wsd{word-spacing:-14.240000pt;}
.ws0{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.463467pt;}
.wse{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws10{word-spacing:-12.960000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._1c{margin-left:-4.429440pt;}
._1b{margin-left:-3.473920pt;}
._10{margin-left:-1.886933pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.434240pt;}
._8{width:2.410880pt;}
._4{width:3.399680pt;}
._5{width:4.614400pt;}
._7{width:5.690880pt;}
._c{width:6.612480pt;}
._6{width:7.733120pt;}
._d{width:9.070080pt;}
._11{width:10.284373pt;}
._2{width:11.857280pt;}
._12{width:13.118933pt;}
._3{width:14.264960pt;}
._14{width:16.018133pt;}
._9{width:17.104640pt;}
._15{width:18.057813pt;}
._16{width:18.959360pt;}
._13{width:19.960320pt;}
._18{width:21.432320pt;}
._e{width:22.374400pt;}
._f{width:23.728640pt;}
._17{width:25.318400pt;}
._a{width:26.878720pt;}
._b{width:28.093440pt;}
._19{width:29.086720pt;}
._1d{width:30.109867pt;}
._1e{width:31.211947pt;}
._1a{width:32.913920pt;}
._21{width:34.392320pt;}
._1f{width:35.445760pt;}
._20{width:36.564480pt;}
._25{width:38.020267pt;}
._24{width:39.036160pt;}
._27{width:43.345920pt;}
._26{width:45.048107pt;}
._28{width:46.324480pt;}
._23{width:68.029867pt;}
._22{width:68.943573pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:55.992837pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:11.200000pt;}
.y2{bottom:26.400000pt;}
.y5{bottom:229.946667pt;}
.y2e{bottom:267.866667pt;}
.ye9{bottom:269.146667pt;}
.ye2{bottom:271.386667pt;}
.y8d{bottom:272.186667pt;}
.y13b{bottom:272.826667pt;}
.y5a{bottom:276.346667pt;}
.yf7{bottom:279.386667pt;}
.ya4{bottom:281.466667pt;}
.y82{bottom:281.946667pt;}
.y2d{bottom:283.226667pt;}
.ye8{bottom:285.626667pt;}
.ye1{bottom:288.186667pt;}
.y8c{bottom:289.146667pt;}
.yfe{bottom:292.826667pt;}
.y59{bottom:293.146667pt;}
.y111{bottom:296.186667pt;}
.yf6{bottom:296.346667pt;}
.y2c{bottom:298.426667pt;}
.y81{bottom:298.746667pt;}
.ye7{bottom:302.906667pt;}
.y13a{bottom:303.546667pt;}
.ye0{bottom:305.146667pt;}
.y8b{bottom:305.946667pt;}
.y18f{bottom:307.546667pt;}
.y58{bottom:309.946667pt;}
.yf5{bottom:313.146667pt;}
.y2b{bottom:313.786667pt;}
.ya3{bottom:315.226667pt;}
.y80{bottom:315.706667pt;}
.y139{bottom:318.906667pt;}
.ye6{bottom:319.706667pt;}
.yb7{bottom:320.666667pt;}
.ydf{bottom:321.946667pt;}
.y12c{bottom:322.746667pt;}
.y8a{bottom:322.906667pt;}
.y57{bottom:326.906667pt;}
.y2a{bottom:329.146667pt;}
.yf4{bottom:329.946667pt;}
.ya2{bottom:332.186667pt;}
.y7f{bottom:332.506667pt;}
.y138{bottom:334.106667pt;}
.ye5{bottom:336.666667pt;}
.yb6{bottom:337.466667pt;}
.y18e{bottom:338.266667pt;}
.yde{bottom:338.746667pt;}
.y89{bottom:339.706667pt;}
.y118{bottom:343.386667pt;}
.y56{bottom:343.706667pt;}
.y166{bottom:344.346667pt;}
.y29{bottom:344.506667pt;}
.y110{bottom:346.746667pt;}
.yf3{bottom:346.906667pt;}
.ya1{bottom:348.986667pt;}
.y7e{bottom:349.466667pt;}
.ye4{bottom:353.466667pt;}
.y18d{bottom:353.626667pt;}
.ydd{bottom:355.706667pt;}
.y88{bottom:356.506667pt;}
.yb5{bottom:358.266667pt;}
.y165{bottom:359.706667pt;}
.y117{bottom:360.346667pt;}
.y55{bottom:360.666667pt;}
.yf2{bottom:363.706667pt;}
.y137{bottom:364.826667pt;}
.ya0{bottom:365.786667pt;}
.y28{bottom:365.946667pt;}
.y7d{bottom:366.266667pt;}
.y18c{bottom:368.826667pt;}
.ydc{bottom:372.506667pt;}
.y87{bottom:373.466667pt;}
.y164{bottom:375.106667pt;}
.yb4{bottom:375.266667pt;}
.y27{bottom:375.906667pt;}
.y54{bottom:377.506667pt;}
.ye3{bottom:377.986667pt;}
.y11d{bottom:380.226667pt;}
.y10f{bottom:380.546667pt;}
.yf1{bottom:380.706667pt;}
.y9f{bottom:382.466667pt;}
.y7c{bottom:383.106667pt;}
.y18b{bottom:384.226667pt;}
.ydb{bottom:389.506667pt;}
.y86{bottom:390.306667pt;}
.y163{bottom:390.466667pt;}
.yfd{bottom:393.986667pt;}
.y53{bottom:394.306667pt;}
.y136{bottom:395.586667pt;}
.yb3{bottom:396.066667pt;}
.yf0{bottom:397.506667pt;}
.y9e{bottom:397.826667pt;}
.y18a{bottom:399.586667pt;}
.y7b{bottom:400.066667pt;}
.y162{bottom:405.826667pt;}
.yda{bottom:406.306667pt;}
.y12b{bottom:407.106667pt;}
.y85{bottom:407.266667pt;}
.y26{bottom:408.546667pt;}
.y122{bottom:410.946667pt;}
.y52{bottom:411.266667pt;}
.y9d{bottom:412.866667pt;}
.yb2{bottom:413.026667pt;}
.yef{bottom:414.306667pt;}
.y189{bottom:414.946667pt;}
.y7a{bottom:416.866667pt;}
.y161{bottom:421.186667pt;}
.yd9{bottom:423.106667pt;}
.y84{bottom:423.746667pt;}
.y12a{bottom:424.066667pt;}
.y9c{bottom:425.186667pt;}
.y25{bottom:425.506667pt;}
.y135{bottom:426.146667pt;}
.y51{bottom:428.066667pt;}
.y188{bottom:430.306667pt;}
.y10e{bottom:430.786667pt;}
.yee{bottom:430.946667pt;}
.y11c{bottom:431.106667pt;}
.y79{bottom:433.826667pt;}
.y83{bottom:435.906667pt;}
.y160{bottom:436.386667pt;}
.yd8{bottom:440.066667pt;}
.y129{bottom:440.866667pt;}
.y134{bottom:441.506667pt;}
.y24{bottom:442.306667pt;}
.y50{bottom:445.026667pt;}
.y187{bottom:445.506667pt;}
.y10d{bottom:447.746667pt;}
.yed{bottom:448.066667pt;}
.y78{bottom:450.626667pt;}
.y15f{bottom:451.746667pt;}
.yd7{bottom:456.866667pt;}
.y128{bottom:457.826667pt;}
.y23{bottom:459.106667pt;}
.y186{bottom:460.866667pt;}
.y4f{bottom:461.826667pt;}
.yec{bottom:464.386667pt;}
.y10c{bottom:464.866667pt;}
.y15e{bottom:467.106667pt;}
.y77{bottom:467.426667pt;}
.yb1{bottom:471.586667pt;}
.y133{bottom:472.226667pt;}
.yd6{bottom:473.826667pt;}
.y127{bottom:474.626667pt;}
.y22{bottom:476.066667pt;}
.y185{bottom:476.226667pt;}
.y4e{bottom:478.626667pt;}
.yeb{bottom:479.746667pt;}
.y10b{bottom:481.826667pt;}
.y15d{bottom:482.466667pt;}
.y132{bottom:487.586667pt;}
.yb0{bottom:488.386667pt;}
.yd5{bottom:490.626667pt;}
.y126{bottom:491.426667pt;}
.y184{bottom:491.586667pt;}
.y76{bottom:492.066667pt;}
.y21{bottom:492.866667pt;}
.y4d{bottom:495.586667pt;}
.y15c{bottom:497.826667pt;}
.y10a{bottom:498.626667pt;}
.y131{bottom:502.946667pt;}
.yaf{bottom:505.346667pt;}
.y183{bottom:506.946667pt;}
.yd4{bottom:507.426667pt;}
.y125{bottom:508.386667pt;}
.y20{bottom:509.826667pt;}
.y4c{bottom:512.386667pt;}
.y15b{bottom:513.186667pt;}
.y109{bottom:515.426667pt;}
.y130{bottom:518.146667pt;}
.y182{bottom:522.306667pt;}
.yd3{bottom:524.386667pt;}
.y75{bottom:525.186667pt;}
.yae{bottom:526.146667pt;}
.y1f{bottom:526.626667pt;}
.y15a{bottom:528.386667pt;}
.y4b{bottom:529.346667pt;}
.y11b{bottom:532.066667pt;}
.y108{bottom:532.386667pt;}
.y181{bottom:537.506667pt;}
.yd2{bottom:541.186667pt;}
.y12f{bottom:541.826667pt;}
.y74{bottom:542.146667pt;}
.yad{bottom:542.946667pt;}
.y1e{bottom:543.426667pt;}
.y159{bottom:543.746667pt;}
.y121{bottom:545.826667pt;}
.y4a{bottom:546.146667pt;}
.y107{bottom:549.186667pt;}
.yd1{bottom:558.146667pt;}
.y73{bottom:558.946667pt;}
.y158{bottom:559.106667pt;}
.y180{bottom:560.866667pt;}
.y116{bottom:562.626667pt;}
.y49{bottom:562.946667pt;}
.yac{bottom:563.906667pt;}
.y106{bottom:566.146667pt;}
.y1d{bottom:568.066667pt;}
.y12e{bottom:574.306667pt;}
.y157{bottom:574.466667pt;}
.yd0{bottom:574.946667pt;}
.y72{bottom:575.746667pt;}
.y17f{bottom:577.666667pt;}
.y120{bottom:579.586667pt;}
.y48{bottom:579.906667pt;}
.yab{bottom:580.706667pt;}
.y105{bottom:582.946667pt;}
.y12d{bottom:589.693333pt;}
.y156{bottom:589.853333pt;}
.ycf{bottom:591.773333pt;}
.y71{bottom:592.733333pt;}
.y47{bottom:596.733333pt;}
.y104{bottom:599.773333pt;}
.y1c{bottom:601.053333pt;}
.yaa{bottom:601.693333pt;}
.y17e{bottom:602.653333pt;}
.y155{bottom:605.053333pt;}
.yce{bottom:608.733333pt;}
.y70{bottom:609.533333pt;}
.y46{bottom:613.693333pt;}
.y1b{bottom:616.253333pt;}
.y103{bottom:616.733333pt;}
.y17d{bottom:618.013333pt;}
.ya9{bottom:618.493333pt;}
.y154{bottom:620.413333pt;}
.ycd{bottom:625.533333pt;}
.y6f{bottom:626.493333pt;}
.y45{bottom:630.493333pt;}
.y17c{bottom:633.373333pt;}
.y102{bottom:633.533333pt;}
.ya8{bottom:635.453333pt;}
.y153{bottom:635.773333pt;}
.y1a{bottom:639.613333pt;}
.ycc{bottom:642.493333pt;}
.y6e{bottom:643.293333pt;}
.y44{bottom:647.453333pt;}
.y17b{bottom:648.733333pt;}
.y101{bottom:650.493333pt;}
.y124{bottom:650.973333pt;}
.y152{bottom:651.133333pt;}
.ya7{bottom:656.253333pt;}
.ycb{bottom:659.293333pt;}
.y6d{bottom:660.253333pt;}
.y19{bottom:662.973333pt;}
.y115{bottom:663.933333pt;}
.y43{bottom:664.253333pt;}
.y151{bottom:666.493333pt;}
.y100{bottom:667.293333pt;}
.ya6{bottom:673.053333pt;}
.yca{bottom:676.253333pt;}
.y6c{bottom:677.053333pt;}
.y18{bottom:678.333333pt;}
.y17a{bottom:679.293333pt;}
.y114{bottom:680.733333pt;}
.y42{bottom:681.053333pt;}
.y150{bottom:681.853333pt;}
.yff{bottom:684.253333pt;}
.yc9{bottom:693.053333pt;}
.y6b{bottom:693.853333pt;}
.ya5{bottom:694.013333pt;}
.y179{bottom:694.653333pt;}
.y14f{bottom:697.053333pt;}
.y113{bottom:697.693333pt;}
.y41{bottom:698.013333pt;}
.y9b{bottom:701.053333pt;}
.y17{bottom:701.693333pt;}
.yc8{bottom:709.853333pt;}
.y178{bottom:710.013333pt;}
.y6a{bottom:710.813333pt;}
.y14e{bottom:712.413333pt;}
.y40{bottom:714.813333pt;}
.y16{bottom:717.053333pt;}
.y9a{bottom:717.853333pt;}
.y177{bottom:725.373333pt;}
.yc7{bottom:726.813333pt;}
.y69{bottom:727.613333pt;}
.y14d{bottom:727.773333pt;}
.y3f{bottom:731.773333pt;}
.y15{bottom:732.253333pt;}
.y11a{bottom:734.493333pt;}
.y99{bottom:734.813333pt;}
.y176{bottom:740.573333pt;}
.y14c{bottom:743.453333pt;}
.yc6{bottom:743.613333pt;}
.y68{bottom:744.573333pt;}
.y14{bottom:747.613333pt;}
.y3e{bottom:748.573333pt;}
.y119{bottom:751.293333pt;}
.y98{bottom:751.613333pt;}
.y175{bottom:755.933333pt;}
.y14b{bottom:758.973333pt;}
.yc5{bottom:760.573333pt;}
.y67{bottom:761.373333pt;}
.y13{bottom:762.973333pt;}
.y3d{bottom:765.373333pt;}
.y97{bottom:768.573333pt;}
.y174{bottom:771.293333pt;}
.y19b{bottom:771.933333pt;}
.y14a{bottom:774.333333pt;}
.yc4{bottom:777.373333pt;}
.y66{bottom:778.173333pt;}
.y12{bottom:778.333333pt;}
.yfc{bottom:782.013333pt;}
.y3c{bottom:782.333333pt;}
.y96{bottom:785.373333pt;}
.y173{bottom:786.653333pt;}
.y149{bottom:789.693333pt;}
.y11{bottom:793.693333pt;}
.yc3{bottom:794.173333pt;}
.y65{bottom:795.133333pt;}
.yfb{bottom:798.813333pt;}
.y3b{bottom:799.133333pt;}
.y172{bottom:802.053333pt;}
.y95{bottom:802.213333pt;}
.y148{bottom:805.093333pt;}
.y19a{bottom:805.253333pt;}
.y10{bottom:809.093333pt;}
.yc2{bottom:811.173333pt;}
.y64{bottom:811.973333pt;}
.y3a{bottom:816.133333pt;}
.y171{bottom:817.413333pt;}
.y94{bottom:819.173333pt;}
.y147{bottom:820.453333pt;}
.y199{bottom:822.533333pt;}
.yf{bottom:824.293333pt;}
.yc1{bottom:827.973333pt;}
.y63{bottom:828.933333pt;}
.y112{bottom:832.613333pt;}
.y39{bottom:832.933333pt;}
.y146{bottom:835.813333pt;}
.y93{bottom:835.973333pt;}
.ye{bottom:839.653333pt;}
.y198{bottom:839.973333pt;}
.yc0{bottom:844.933333pt;}
.y62{bottom:845.733333pt;}
.y170{bottom:847.973333pt;}
.y11f{bottom:849.413333pt;}
.y38{bottom:849.733333pt;}
.y145{bottom:851.013333pt;}
.y92{bottom:852.933333pt;}
.yd{bottom:855.013333pt;}
.y197{bottom:857.253333pt;}
.ybf{bottom:861.733333pt;}
.y61{bottom:862.533333pt;}
.y16f{bottom:863.333333pt;}
.y144{bottom:866.373333pt;}
.y37{bottom:866.693333pt;}
.y91{bottom:869.733333pt;}
.yc{bottom:870.373333pt;}
.y196{bottom:874.693333pt;}
.ybe{bottom:878.533333pt;}
.y16e{bottom:878.693333pt;}
.y60{bottom:879.493333pt;}
.y143{bottom:881.733333pt;}
.y36{bottom:883.493333pt;}
.yb{bottom:885.733333pt;}
.yea{bottom:886.213333pt;}
.y90{bottom:886.533333pt;}
.y195{bottom:891.973333pt;}
.y16d{bottom:894.053333pt;}
.ybd{bottom:895.493333pt;}
.y142{bottom:897.093333pt;}
.yfa{bottom:900.133333pt;}
.y35{bottom:900.453333pt;}
.ya{bottom:900.933333pt;}
.y8f{bottom:903.493333pt;}
.y5f{bottom:903.973333pt;}
.y194{bottom:909.253333pt;}
.y16c{bottom:909.413333pt;}
.ybc{bottom:912.293333pt;}
.y141{bottom:912.453333pt;}
.yf9{bottom:916.933333pt;}
.y34{bottom:917.253333pt;}
.y8e{bottom:920.293333pt;}
.y9{bottom:924.293333pt;}
.y16b{bottom:924.613333pt;}
.y193{bottom:926.693333pt;}
.y140{bottom:927.813333pt;}
.ybb{bottom:929.253333pt;}
.yf8{bottom:933.733333pt;}
.y33{bottom:934.053333pt;}
.y5e{bottom:937.253333pt;}
.y16a{bottom:939.973333pt;}
.y13f{bottom:943.013333pt;}
.y192{bottom:943.973333pt;}
.yba{bottom:946.053333pt;}
.y8{bottom:949.573333pt;}
.y32{bottom:951.013333pt;}
.y5d{bottom:954.053333pt;}
.y169{bottom:955.333333pt;}
.y13e{bottom:958.373333pt;}
.y191{bottom:961.413333pt;}
.yb9{bottom:962.853333pt;}
.y31{bottom:967.813333pt;}
.y7{bottom:967.973333pt;}
.y123{bottom:970.533333pt;}
.y168{bottom:970.693333pt;}
.y5c{bottom:970.853333pt;}
.y13d{bottom:973.733333pt;}
.y11e{bottom:984.453333pt;}
.y30{bottom:984.773333pt;}
.y167{bottom:986.053333pt;}
.y6{bottom:986.373333pt;}
.y190{bottom:987.173333pt;}
.yb8{bottom:987.493333pt;}
.y5b{bottom:987.813333pt;}
.y13c{bottom:989.093333pt;}
.y2f{bottom:1002.053333pt;}
.y4{bottom:1004.453333pt;}
.y1{bottom:1022.400000pt;}
.hc{height:33.918750pt;}
.h10{height:39.123901pt;}
.h15{height:39.269375pt;}
.h14{height:41.292500pt;}
.h13{height:45.770000pt;}
.h2{height:46.880000pt;}
.h11{height:47.621250pt;}
.h8{height:52.108438pt;}
.h4{height:52.134375pt;}
.h12{height:52.296250pt;}
.hd{height:52.785000pt;}
.h3{height:53.535000pt;}
.h6{height:56.843750pt;}
.hf{height:57.758750pt;}
.ha{height:57.787500pt;}
.h9{height:59.340000pt;}
.he{height:60.519362pt;}
.hb{height:62.812500pt;}
.h7{height:64.290000pt;}
.h5{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:80.832000pt;}
.w4{width:80.960000pt;}
.w5{width:394.653333pt;}
.w2{width:397.826667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x5{left:27.080000pt;}
.x2{left:45.120000pt;}
.x3{left:97.800000pt;}
.x7{left:151.226667pt;}
.x1{left:156.026667pt;}
.x9{left:158.106667pt;}
.x10{left:170.106667pt;}
.x1d{left:172.346667pt;}
.x11{left:175.226667pt;}
.x13{left:181.946667pt;}
.x1e{left:191.066667pt;}
.x15{left:192.186667pt;}
.xf{left:203.546667pt;}
.x1c{left:204.826667pt;}
.xa{left:208.666667pt;}
.xd{left:243.066667pt;}
.x1f{left:250.146667pt;}
.x16{left:264.866667pt;}
.x14{left:276.866667pt;}
.xc{left:285.026667pt;}
.xb{left:319.106667pt;}
.x8{left:386.946667pt;}
.x17{left:396.866667pt;}
.x1a{left:480.093333pt;}
.x1b{left:484.573333pt;}
.x18{left:501.053333pt;}
.x19{left:505.533333pt;}
.x4{left:556.893333pt;}
.xe{left:635.013333pt;}
.x12{left:642.693333pt;}
}




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