
    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_7b6d10e3382cbf1fe45023bf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_3d934d6ebf8998904ae428a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_a5d9774b8dc19c1b1373055b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b02f7678005510ed7c7d881a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_9f251de4b92c57bceca2a206.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_271653db11c3ecd2f033ee17.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_766b411e22313b8d8c70a98f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.995605;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_d298ebdb215f55e10cf5c852.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b429379ad222f2345e8f7c90.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.118164;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls17{letter-spacing:-1.302000px;}
.ls11{letter-spacing:-1.080000px;}
.lsc{letter-spacing:-0.924000px;}
.ls1b{letter-spacing:-0.774000px;}
.lsf{letter-spacing:-0.612000px;}
.ls16{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.328800px;}
.ls6{letter-spacing:-0.305400px;}
.ls18{letter-spacing:-0.249000px;}
.ls9{letter-spacing:-0.206400px;}
.ls1e{letter-spacing:-0.164400px;}
.ls10{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.037440px;}
.ls19{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.ls1a{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.120000px;}
.ls22{letter-spacing:0.157800px;}
.ls1c{letter-spacing:0.174960px;}
.ls3{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.195000px;}
.lsa{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.262080px;}
.ls7{letter-spacing:0.262200px;}
.ls24{letter-spacing:0.306600px;}
.ls27{letter-spacing:0.336000px;}
.lsb{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.366480px;}
.ls23{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.900000px;}
.ls15{letter-spacing:3.780000px;}
.ls13{letter-spacing:4.500000px;}
.ls26{letter-spacing:30.906720px;}
.ls4{letter-spacing:46.026720px;}
.ls25{letter-spacing:61.146720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-16.822200px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws7{word-spacing:-15.300000px;}
.ws16{word-spacing:-15.246600px;}
.ws15{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.120000px;}
.wsb{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws9{word-spacing:-14.970240px;}
.ws6{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.833200px;}
.ws5{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.691000px;}
.ws17{word-spacing:-14.580000px;}
.ws19{word-spacing:-14.166000px;}
.ws18{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.342200px;}
.ws14{word-spacing:-13.305000px;}
.ws13{word-spacing:-13.160160px;}
.ws10{word-spacing:-12.982800px;}
.ws12{word-spacing:-12.818400px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1449.751680px;}
._6{margin-left:-1444.731480px;}
._5{margin-left:-989.717760px;}
._8{margin-left:-575.431680px;}
._4{margin-left:-8.213760px;}
._9{margin-left:-4.757520px;}
._15{margin-left:-3.545040px;}
._7{margin-left:-2.538240px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._14{width:2.639520px;}
._f{width:4.152960px;}
._10{width:5.806800px;}
._b{width:7.373520px;}
._a{width:8.426880px;}
._e{width:9.501840px;}
._c{width:11.242800px;}
._11{width:13.087440px;}
._19{width:14.737440px;}
._12{width:16.133760px;}
._13{width:17.151120px;}
._25{width:18.342480px;}
._24{width:19.586400px;}
._17{width:21.573360px;}
._21{width:22.888080px;}
._20{width:24.143040px;}
._26{width:25.502400px;}
._23{width:29.113200px;}
._22{width:30.119040px;}
._d{width:38.120160px;}
._1e{width:40.935600px;}
._1d{width:42.071040px;}
._1b{width:45.835920px;}
._1c{width:46.911600px;}
._1a{width:60.596640px;}
._1f{width:139.838400px;}
._16{width:147.188880px;}
._18{width:186.264000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y92{bottom:5.760000px;}
.yd8{bottom:5.790000px;}
.y100{bottom:5.805000px;}
.y113{bottom:5.940000px;}
.y1a3{bottom:10.800000px;}
.y91{bottom:11.880000px;}
.yfd{bottom:25.560000px;}
.y155{bottom:25.740000px;}
.y132{bottom:27.000000px;}
.y1a2{bottom:30.630000px;}
.y8f{bottom:32.580000px;}
.y19f{bottom:34.770000px;}
.y110{bottom:45.540000px;}
.y136{bottom:46.800000px;}
.y131{bottom:46.980000px;}
.y1a1{bottom:50.430000px;}
.y6{bottom:59.400000px;}
.y1a0{bottom:70.230000px;}
.y33{bottom:88.740000px;}
.y16d{bottom:89.640000px;}
.yc3{bottom:90.000000px;}
.ydb{bottom:90.540000px;}
.y19e{bottom:92.160000px;}
.y180{bottom:95.040000px;}
.y8d{bottom:96.840000px;}
.y69{bottom:98.640000px;}
.y12d{bottom:101.340000px;}
.yda{bottom:105.300000px;}
.y170{bottom:105.840000px;}
.y32{bottom:108.540000px;}
.y16c{bottom:109.440000px;}
.yc2{bottom:109.800000px;}
.yf5{bottom:110.340000px;}
.y10e{bottom:112.860000px;}
.y17f{bottom:114.840000px;}
.y8c{bottom:116.640000px;}
.y13e{bottom:117.360000px;}
.y68{bottom:118.440000px;}
.y12c{bottom:121.140000px;}
.ye6{bottom:125.640000px;}
.yd9{bottom:125.820000px;}
.y31{bottom:128.340000px;}
.y16b{bottom:129.240000px;}
.yc1{bottom:129.600000px;}
.yf4{bottom:130.140000px;}
.y10d{bottom:132.660000px;}
.y17e{bottom:134.640000px;}
.y8b{bottom:136.440000px;}
.y13d{bottom:137.160000px;}
.y67{bottom:138.240000px;}
.y12b{bottom:140.940000px;}
.ye5{bottom:145.440000px;}
.yd7{bottom:147.960000px;}
.y30{bottom:148.320000px;}
.y16a{bottom:149.040000px;}
.yc0{bottom:149.400000px;}
.yf3{bottom:149.940000px;}
.y10c{bottom:152.670000px;}
.y17d{bottom:154.470000px;}
.y8a{bottom:156.270000px;}
.y13c{bottom:157.170000px;}
.y66{bottom:158.250000px;}
.y12a{bottom:160.770000px;}
.ye4{bottom:165.270000px;}
.y2f{bottom:168.150000px;}
.y169{bottom:169.050000px;}
.ybf{bottom:169.410000px;}
.yf2{bottom:169.770000px;}
.y10b{bottom:172.470000px;}
.yd6{bottom:174.270000px;}
.y89{bottom:176.250000px;}
.y13b{bottom:176.970000px;}
.y129{bottom:180.750000px;}
.ye3{bottom:185.250000px;}
.y65{bottom:187.050000px;}
.y2e{bottom:187.950000px;}
.y168{bottom:188.850000px;}
.ybe{bottom:189.210000px;}
.yf1{bottom:189.750000px;}
.y10a{bottom:192.270000px;}
.yd5{bottom:194.250000px;}
.y88{bottom:196.050000px;}
.y13a{bottom:196.770000px;}
.y128{bottom:200.550000px;}
.ye2{bottom:205.050000px;}
.y64{bottom:206.850000px;}
.y2d{bottom:207.750000px;}
.y167{bottom:208.650000px;}
.ybd{bottom:209.010000px;}
.yf0{bottom:209.550000px;}
.y139{bottom:211.530000px;}
.y109{bottom:212.070000px;}
.y19d{bottom:212.250000px;}
.yd4{bottom:214.050000px;}
.y87{bottom:215.850000px;}
.y127{bottom:220.350000px;}
.ye1{bottom:224.850000px;}
.y63{bottom:226.650000px;}
.y2c{bottom:227.550000px;}
.y166{bottom:228.450000px;}
.ybc{bottom:228.810000px;}
.yef{bottom:229.350000px;}
.y108{bottom:231.870000px;}
.y19c{bottom:232.050000px;}
.y135{bottom:232.230000px;}
.yd3{bottom:233.850000px;}
.y86{bottom:235.650000px;}
.y126{bottom:240.150000px;}
.ye0{bottom:244.650000px;}
.y62{bottom:246.450000px;}
.y2b{bottom:247.530000px;}
.y165{bottom:248.250000px;}
.yee{bottom:249.150000px;}
.y107{bottom:251.850000px;}
.y19b{bottom:252.030000px;}
.y138{bottom:252.750000px;}
.yd2{bottom:253.650000px;}
.y85{bottom:255.450000px;}
.ybb{bottom:257.610000px;}
.y125{bottom:259.950000px;}
.ydf{bottom:264.450000px;}
.y61{bottom:266.430000px;}
.y2a{bottom:267.330000px;}
.y164{bottom:268.230000px;}
.yed{bottom:268.950000px;}
.y106{bottom:271.650000px;}
.y19a{bottom:271.830000px;}
.y137{bottom:273.270000px;}
.yd1{bottom:273.450000px;}
.y84{bottom:275.430000px;}
.yba{bottom:277.590000px;}
.y124{bottom:279.930000px;}
.yde{bottom:284.430000px;}
.y60{bottom:286.230000px;}
.y29{bottom:287.130000px;}
.y163{bottom:288.030000px;}
.yec{bottom:288.930000px;}
.y105{bottom:291.450000px;}
.y199{bottom:291.630000px;}
.yd0{bottom:293.430000px;}
.y130{bottom:293.970000px;}
.y83{bottom:295.230000px;}
.yb9{bottom:297.390000px;}
.y123{bottom:299.730000px;}
.ydd{bottom:304.230000px;}
.y28{bottom:306.930000px;}
.y162{bottom:307.830000px;}
.yeb{bottom:308.730000px;}
.y198{bottom:311.430000px;}
.ycf{bottom:313.230000px;}
.y134{bottom:314.490000px;}
.y5f{bottom:315.030000px;}
.yb8{bottom:317.190000px;}
.y122{bottom:319.530000px;}
.y104{bottom:320.250000px;}
.ydc{bottom:324.030000px;}
.y27{bottom:326.730000px;}
.y161{bottom:327.630000px;}
.yea{bottom:328.530000px;}
.y197{bottom:328.710000px;}
.yce{bottom:333.030000px;}
.y5e{bottom:334.830000px;}
.y133{bottom:335.010000px;}
.yb7{bottom:336.990000px;}
.y121{bottom:339.330000px;}
.y103{bottom:340.050000px;}
.ye9{bottom:343.290000px;}
.y16f{bottom:343.830000px;}
.y196{bottom:345.990000px;}
.y26{bottom:346.710000px;}
.y160{bottom:347.430000px;}
.ycd{bottom:352.830000px;}
.y5d{bottom:354.630000px;}
.yb6{bottom:356.790000px;}
.y12f{bottom:357.150000px;}
.y120{bottom:359.130000px;}
.y102{bottom:360.030000px;}
.y195{bottom:363.270000px;}
.y16e{bottom:363.630000px;}
.ye8{bottom:363.990000px;}
.y25{bottom:366.510000px;}
.y15f{bottom:367.410000px;}
.ycc{bottom:372.630000px;}
.y5c{bottom:374.610000px;}
.y101{bottom:374.790000px;}
.yb5{bottom:376.770000px;}
.y11f{bottom:379.110000px;}
.y194{bottom:383.070000px;}
.y82{bottom:383.610000px;}
.ye7{bottom:385.950000px;}
.y24{bottom:386.310000px;}
.y15e{bottom:387.210000px;}
.ycb{bottom:392.610000px;}
.y5b{bottom:394.410000px;}
.yff{bottom:395.310000px;}
.yb4{bottom:396.570000px;}
.y11e{bottom:398.910000px;}
.y193{bottom:402.915000px;}
.y81{bottom:403.455000px;}
.y23{bottom:406.155000px;}
.y15d{bottom:407.055000px;}
.yca{bottom:412.455000px;}
.y5a{bottom:414.255000px;}
.yfe{bottom:416.055000px;}
.yb3{bottom:416.415000px;}
.y11d{bottom:418.755000px;}
.y192{bottom:422.715000px;}
.y80{bottom:423.255000px;}
.y22{bottom:425.955000px;}
.y15c{bottom:426.855000px;}
.yc9{bottom:432.255000px;}
.y59{bottom:434.055000px;}
.yb2{bottom:436.215000px;}
.yfc{bottom:436.575000px;}
.y11c{bottom:438.555000px;}
.y191{bottom:442.695000px;}
.y7f{bottom:443.055000px;}
.y21{bottom:445.935000px;}
.y15b{bottom:446.655000px;}
.yc8{bottom:452.055000px;}
.y58{bottom:453.855000px;}
.y11b{bottom:458.355000px;}
.y190{bottom:462.495000px;}
.y7e{bottom:462.855000px;}
.yb1{bottom:465.015000px;}
.y20{bottom:465.735000px;}
.y15a{bottom:466.635000px;}
.yc7{bottom:471.855000px;}
.y57{bottom:473.835000px;}
.y18f{bottom:482.295000px;}
.y7d{bottom:482.835000px;}
.yb0{bottom:484.995000px;}
.y1f{bottom:485.535000px;}
.y159{bottom:486.435000px;}
.y11a{bottom:487.335000px;}
.yc6{bottom:491.835000px;}
.y56{bottom:493.635000px;}
.y158{bottom:501.195000px;}
.y18e{bottom:502.095000px;}
.y7c{bottom:502.635000px;}
.yaf{bottom:504.795000px;}
.y1e{bottom:505.335000px;}
.y119{bottom:507.135000px;}
.yc5{bottom:511.635000px;}
.y55{bottom:513.435000px;}
.y18d{bottom:521.895000px;}
.y7b{bottom:522.435000px;}
.yae{bottom:524.595000px;}
.y118{bottom:526.935000px;}
.yc4{bottom:531.435000px;}
.y54{bottom:533.235000px;}
.y157{bottom:541.695000px;}
.y18c{bottom:541.875000px;}
.yfb{bottom:542.235000px;}
.yad{bottom:544.395000px;}
.y1d{bottom:545.475000px;}
.y117{bottom:546.735000px;}
.y7a{bottom:551.235000px;}
.y17c{bottom:553.035000px;}
.y18b{bottom:561.675000px;}
.y53{bottom:562.035000px;}
.y156{bottom:562.215000px;}
.yac{bottom:564.195000px;}
.y116{bottom:566.535000px;}
.y79{bottom:571.035000px;}
.y17b{bottom:573.015000px;}
.y1c{bottom:574.275000px;}
.y115{bottom:581.475000px;}
.y52{bottom:582.015000px;}
.y154{bottom:582.735000px;}
.yab{bottom:583.995000px;}
.y78{bottom:591.015000px;}
.y17a{bottom:592.815000px;}
.y1b{bottom:594.075000px;}
.y18a{bottom:601.275000px;}
.y51{bottom:601.815000px;}
.y114{bottom:601.995000px;}
.yaa{bottom:603.975000px;}
.y77{bottom:610.815000px;}
.y179{bottom:612.615000px;}
.y1a{bottom:613.875000px;}
.y189{bottom:621.075000px;}
.y50{bottom:621.615000px;}
.y112{bottom:622.515000px;}
.y153{bottom:623.235000px;}
.ya9{bottom:623.775000px;}
.y76{bottom:630.615000px;}
.y178{bottom:632.415000px;}
.y19{bottom:633.855000px;}
.y188{bottom:641.055000px;}
.y4f{bottom:641.415000px;}
.y111{bottom:643.215000px;}
.ya8{bottom:643.575000px;}
.y75{bottom:650.445000px;}
.y177{bottom:652.245000px;}
.y18{bottom:653.685000px;}
.y187{bottom:660.885000px;}
.y4e{bottom:661.245000px;}
.ya7{bottom:663.405000px;}
.y10f{bottom:663.765000px;}
.y152{bottom:665.205000px;}
.y74{bottom:670.245000px;}
.y17{bottom:673.485000px;}
.y186{bottom:680.685000px;}
.y4d{bottom:681.225000px;}
.ya6{bottom:683.205000px;}
.y73{bottom:690.225000px;}
.y16{bottom:693.285000px;}
.y185{bottom:700.485000px;}
.y4c{bottom:701.025000px;}
.ya5{bottom:703.185000px;}
.y72{bottom:710.025000px;}
.y151{bottom:711.285000px;}
.y15{bottom:713.085000px;}
.y184{bottom:720.285000px;}
.y4b{bottom:720.825000px;}
.ya4{bottom:722.985000px;}
.y71{bottom:729.825000px;}
.y150{bottom:731.265000px;}
.y14{bottom:733.065000px;}
.y183{bottom:737.565000px;}
.y4a{bottom:740.625000px;}
.ya3{bottom:742.785000px;}
.y70{bottom:749.625000px;}
.y14f{bottom:751.065000px;}
.y13{bottom:752.865000px;}
.y182{bottom:754.845000px;}
.y49{bottom:760.425000px;}
.ya2{bottom:762.585000px;}
.y6f{bottom:769.425000px;}
.y14e{bottom:770.865000px;}
.y181{bottom:772.125000px;}
.y12{bottom:772.665000px;}
.y48{bottom:780.405000px;}
.ya1{bottom:782.385000px;}
.y6e{bottom:789.405000px;}
.y14d{bottom:790.665000px;}
.y11{bottom:792.465000px;}
.y47{bottom:800.205000px;}
.ya0{bottom:802.365000px;}
.y6d{bottom:809.205000px;}
.y14c{bottom:810.465000px;}
.y10{bottom:812.265000px;}
.y46{bottom:820.005000px;}
.y9f{bottom:822.165000px;}
.y6c{bottom:829.005000px;}
.y14b{bottom:830.445000px;}
.yf{bottom:832.245000px;}
.y45{bottom:839.805000px;}
.y9e{bottom:841.965000px;}
.y6b{bottom:848.805000px;}
.y14a{bottom:850.245000px;}
.ye{bottom:854.205000px;}
.y44{bottom:859.605000px;}
.y9d{bottom:861.765000px;}
.y6a{bottom:868.605000px;}
.y149{bottom:870.045000px;}
.yd{bottom:879.405000px;}
.yfa{bottom:879.585000px;}
.y9c{bottom:881.565000px;}
.y43{bottom:888.585000px;}
.y148{bottom:889.845000px;}
.yc{bottom:899.250000px;}
.yf9{bottom:899.430000px;}
.y9b{bottom:901.590000px;}
.y42{bottom:908.430000px;}
.y147{bottom:918.690000px;}
.yb{bottom:919.050000px;}
.yf8{bottom:919.230000px;}
.y9a{bottom:921.390000px;}
.y41{bottom:928.230000px;}
.ya{bottom:934.170000px;}
.y146{bottom:938.670000px;}
.yf7{bottom:939.030000px;}
.y99{bottom:941.190000px;}
.y40{bottom:948.030000px;}
.y9{bottom:955.410000px;}
.y145{bottom:958.470000px;}
.yf6{bottom:958.830000px;}
.y98{bottom:960.990000px;}
.y3f{bottom:967.830000px;}
.y144{bottom:978.270000px;}
.y12e{bottom:978.810000px;}
.y8{bottom:978.990000px;}
.y97{bottom:980.790000px;}
.y3e{bottom:987.810000px;}
.y143{bottom:998.070000px;}
.y176{bottom:998.610000px;}
.y96{bottom:1000.770000px;}
.y3d{bottom:1007.610000px;}
.y7{bottom:1010.670000px;}
.y142{bottom:1017.870000px;}
.y175{bottom:1018.410000px;}
.y95{bottom:1020.570000px;}
.y3c{bottom:1027.410000px;}
.y174{bottom:1038.210000px;}
.y94{bottom:1040.370000px;}
.y141{bottom:1041.810000px;}
.y3b{bottom:1047.210000px;}
.y5{bottom:1052.070000px;}
.y173{bottom:1058.010000px;}
.y93{bottom:1060.170000px;}
.y140{bottom:1061.970000px;}
.y3a{bottom:1067.010000px;}
.y8e{bottom:1074.210000px;}
.y172{bottom:1077.990000px;}
.y4{bottom:1082.850000px;}
.y13f{bottom:1083.030000px;}
.y39{bottom:1086.990000px;}
.y90{bottom:1094.910000px;}
.y171{bottom:1097.790000px;}
.y38{bottom:1106.790000px;}
.y3{bottom:1113.630000px;}
.y37{bottom:1126.590000px;}
.y2{bottom:1144.590000px;}
.y36{bottom:1146.420000px;}
.y35{bottom:1173.960000px;}
.y1{bottom:1178.460000px;}
.y34{bottom:1194.120000px;}
.h1b{height:2.581875px;}
.he{height:19.800000px;}
.h11{height:19.836000px;}
.h14{height:19.980000px;}
.hd{height:25.920000px;}
.h7{height:34.855313px;}
.h12{height:39.600000px;}
.h18{height:39.636000px;}
.h19{height:39.780000px;}
.h5{height:42.164648px;}
.h9{height:43.506914px;}
.hb{height:45.024258px;}
.hc{height:46.620000px;}
.h3{height:46.736719px;}
.hf{height:48.312422px;}
.h17{height:50.364141px;}
.h6{height:53.224453px;}
.h8{height:53.573906px;}
.h10{height:55.735313px;}
.h4{height:59.383125px;}
.h13{height:59.580000px;}
.h16{height:60.840000px;}
.h15{height:61.020000px;}
.h2{height:67.565039px;}
.ha{height:67.824844px;}
.h1a{height:84.276000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:49.176000px;}
.wd{width:56.340000px;}
.w1e{width:59.220000px;}
.w20{width:62.280000px;}
.w9{width:63.000000px;}
.w1a{width:81.720000px;}
.w1b{width:81.756000px;}
.w16{width:85.176000px;}
.w3{width:87.120000px;}
.w8{width:95.976000px;}
.w15{width:97.560000px;}
.w13{width:97.740000px;}
.w14{width:97.776000px;}
.w17{width:109.440000px;}
.w11{width:112.716000px;}
.w4{width:118.656000px;}
.w7{width:121.680000px;}
.wc{width:121.716000px;}
.w19{width:122.976000px;}
.w1f{width:125.856000px;}
.wb{width:131.760000px;}
.w6{width:131.796000px;}
.wf{width:137.556000px;}
.w10{width:155.700000px;}
.w12{width:172.830000px;}
.w5{width:173.910000px;}
.w1c{width:194.790000px;}
.w22{width:210.810000px;}
.wa{width:213.915000px;}
.w18{width:231.690000px;}
.we{width:250.635000px;}
.w21{width:288.615000px;}
.w23{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.740000px;}
.x1{left:54.179987px;}
.xe{left:57.960000px;}
.x5{left:62.100000px;}
.x26{left:75.239987px;}
.x3{left:80.999987px;}
.x2{left:108.035987px;}
.x17{left:114.336000px;}
.x8{left:151.950000px;}
.x13{left:173.730000px;}
.x1d{left:186.330000px;}
.x27{left:191.370000px;}
.x7{left:224.669987px;}
.x21{left:250.230000px;}
.x28{left:264.810000px;}
.xf{left:272.595000px;}
.x18{left:287.895000px;}
.x22{left:300.315000px;}
.x14{left:312.015000px;}
.xa{left:326.595000px;}
.x4{left:343.695000px;}
.x23{left:360.255000px;}
.x19{left:386.355000px;}
.x10{left:405.075000px;}
.x1e{left:418.935000px;}
.x6{left:430.815000px;}
.x15{left:450.285000px;}
.xb{left:459.105000px;}
.x1a{left:485.025000px;}
.x24{left:486.825000px;}
.x11{left:527.505000px;}
.x1f{left:542.625000px;}
.x25{left:549.825000px;}
.xc{left:581.505000px;}
.x1b{left:583.485000px;}
.x12{left:584.565000px;}
.x16{left:606.705000px;}
.x20{left:625.065000px;}
.x1c{left:669.390000px;}
.xd{left:678.210000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls17{letter-spacing:-1.157333pt;}
.ls11{letter-spacing:-0.960000pt;}
.lsc{letter-spacing:-0.821333pt;}
.ls1b{letter-spacing:-0.688000pt;}
.lsf{letter-spacing:-0.544000pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.292267pt;}
.ls6{letter-spacing:-0.271467pt;}
.ls18{letter-spacing:-0.221333pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls1e{letter-spacing:-0.146133pt;}
.ls10{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.033280pt;}
.ls19{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.ls1a{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.106667pt;}
.ls22{letter-spacing:0.140267pt;}
.ls1c{letter-spacing:0.155520pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.173333pt;}
.lsa{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.232960pt;}
.ls7{letter-spacing:0.233067pt;}
.ls24{letter-spacing:0.272533pt;}
.ls27{letter-spacing:0.298667pt;}
.lsb{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.325760pt;}
.ls23{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.800000pt;}
.ls15{letter-spacing:3.360000pt;}
.ls13{letter-spacing:4.000000pt;}
.ls26{letter-spacing:27.472640pt;}
.ls4{letter-spacing:40.912640pt;}
.ls25{letter-spacing:54.352640pt;}
.ws1{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws7{word-spacing:-13.600000pt;}
.ws16{word-spacing:-13.552533pt;}
.ws15{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws9{word-spacing:-13.306880pt;}
.ws6{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.185067pt;}
.ws5{word-spacing:-13.096533pt;}
.wsd{word-spacing:-13.058667pt;}
.ws17{word-spacing:-12.960000pt;}
.ws19{word-spacing:-12.592000pt;}
.ws18{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.859733pt;}
.ws14{word-spacing:-11.826667pt;}
.ws13{word-spacing:-11.697920pt;}
.ws10{word-spacing:-11.540267pt;}
.ws12{word-spacing:-11.394133pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1288.668160pt;}
._6{margin-left:-1284.205760pt;}
._5{margin-left:-879.749120pt;}
._8{margin-left:-511.494827pt;}
._4{margin-left:-7.301120pt;}
._9{margin-left:-4.228907pt;}
._15{margin-left:-3.151147pt;}
._7{margin-left:-2.256213pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._14{width:2.346240pt;}
._f{width:3.691520pt;}
._10{width:5.161600pt;}
._b{width:6.554240pt;}
._a{width:7.490560pt;}
._e{width:8.446080pt;}
._c{width:9.993600pt;}
._11{width:11.633280pt;}
._19{width:13.099947pt;}
._12{width:14.341120pt;}
._13{width:15.245440pt;}
._25{width:16.304427pt;}
._24{width:17.410133pt;}
._17{width:19.176320pt;}
._21{width:20.344960pt;}
._20{width:21.460480pt;}
._26{width:22.668800pt;}
._23{width:25.878400pt;}
._22{width:26.772480pt;}
._d{width:33.884587pt;}
._1e{width:36.387200pt;}
._1d{width:37.396480pt;}
._1b{width:40.743040pt;}
._1c{width:41.699200pt;}
._1a{width:53.863680pt;}
._1f{width:124.300800pt;}
._16{width:130.834560pt;}
._18{width:165.568000pt;}
.fs6{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:5.120000pt;}
.yd8{bottom:5.146667pt;}
.y100{bottom:5.160000pt;}
.y113{bottom:5.280000pt;}
.y1a3{bottom:9.600000pt;}
.y91{bottom:10.560000pt;}
.yfd{bottom:22.720000pt;}
.y155{bottom:22.880000pt;}
.y132{bottom:24.000000pt;}
.y1a2{bottom:27.226667pt;}
.y8f{bottom:28.960000pt;}
.y19f{bottom:30.906667pt;}
.y110{bottom:40.480000pt;}
.y136{bottom:41.600000pt;}
.y131{bottom:41.760000pt;}
.y1a1{bottom:44.826667pt;}
.y6{bottom:52.800000pt;}
.y1a0{bottom:62.426667pt;}
.y33{bottom:78.880000pt;}
.y16d{bottom:79.680000pt;}
.yc3{bottom:80.000000pt;}
.ydb{bottom:80.480000pt;}
.y19e{bottom:81.920000pt;}
.y180{bottom:84.480000pt;}
.y8d{bottom:86.080000pt;}
.y69{bottom:87.680000pt;}
.y12d{bottom:90.080000pt;}
.yda{bottom:93.600000pt;}
.y170{bottom:94.080000pt;}
.y32{bottom:96.480000pt;}
.y16c{bottom:97.280000pt;}
.yc2{bottom:97.600000pt;}
.yf5{bottom:98.080000pt;}
.y10e{bottom:100.320000pt;}
.y17f{bottom:102.080000pt;}
.y8c{bottom:103.680000pt;}
.y13e{bottom:104.320000pt;}
.y68{bottom:105.280000pt;}
.y12c{bottom:107.680000pt;}
.ye6{bottom:111.680000pt;}
.yd9{bottom:111.840000pt;}
.y31{bottom:114.080000pt;}
.y16b{bottom:114.880000pt;}
.yc1{bottom:115.200000pt;}
.yf4{bottom:115.680000pt;}
.y10d{bottom:117.920000pt;}
.y17e{bottom:119.680000pt;}
.y8b{bottom:121.280000pt;}
.y13d{bottom:121.920000pt;}
.y67{bottom:122.880000pt;}
.y12b{bottom:125.280000pt;}
.ye5{bottom:129.280000pt;}
.yd7{bottom:131.520000pt;}
.y30{bottom:131.840000pt;}
.y16a{bottom:132.480000pt;}
.yc0{bottom:132.800000pt;}
.yf3{bottom:133.280000pt;}
.y10c{bottom:135.706667pt;}
.y17d{bottom:137.306667pt;}
.y8a{bottom:138.906667pt;}
.y13c{bottom:139.706667pt;}
.y66{bottom:140.666667pt;}
.y12a{bottom:142.906667pt;}
.ye4{bottom:146.906667pt;}
.y2f{bottom:149.466667pt;}
.y169{bottom:150.266667pt;}
.ybf{bottom:150.586667pt;}
.yf2{bottom:150.906667pt;}
.y10b{bottom:153.306667pt;}
.yd6{bottom:154.906667pt;}
.y89{bottom:156.666667pt;}
.y13b{bottom:157.306667pt;}
.y129{bottom:160.666667pt;}
.ye3{bottom:164.666667pt;}
.y65{bottom:166.266667pt;}
.y2e{bottom:167.066667pt;}
.y168{bottom:167.866667pt;}
.ybe{bottom:168.186667pt;}
.yf1{bottom:168.666667pt;}
.y10a{bottom:170.906667pt;}
.yd5{bottom:172.666667pt;}
.y88{bottom:174.266667pt;}
.y13a{bottom:174.906667pt;}
.y128{bottom:178.266667pt;}
.ye2{bottom:182.266667pt;}
.y64{bottom:183.866667pt;}
.y2d{bottom:184.666667pt;}
.y167{bottom:185.466667pt;}
.ybd{bottom:185.786667pt;}
.yf0{bottom:186.266667pt;}
.y139{bottom:188.026667pt;}
.y109{bottom:188.506667pt;}
.y19d{bottom:188.666667pt;}
.yd4{bottom:190.266667pt;}
.y87{bottom:191.866667pt;}
.y127{bottom:195.866667pt;}
.ye1{bottom:199.866667pt;}
.y63{bottom:201.466667pt;}
.y2c{bottom:202.266667pt;}
.y166{bottom:203.066667pt;}
.ybc{bottom:203.386667pt;}
.yef{bottom:203.866667pt;}
.y108{bottom:206.106667pt;}
.y19c{bottom:206.266667pt;}
.y135{bottom:206.426667pt;}
.yd3{bottom:207.866667pt;}
.y86{bottom:209.466667pt;}
.y126{bottom:213.466667pt;}
.ye0{bottom:217.466667pt;}
.y62{bottom:219.066667pt;}
.y2b{bottom:220.026667pt;}
.y165{bottom:220.666667pt;}
.yee{bottom:221.466667pt;}
.y107{bottom:223.866667pt;}
.y19b{bottom:224.026667pt;}
.y138{bottom:224.666667pt;}
.yd2{bottom:225.466667pt;}
.y85{bottom:227.066667pt;}
.ybb{bottom:228.986667pt;}
.y125{bottom:231.066667pt;}
.ydf{bottom:235.066667pt;}
.y61{bottom:236.826667pt;}
.y2a{bottom:237.626667pt;}
.y164{bottom:238.426667pt;}
.yed{bottom:239.066667pt;}
.y106{bottom:241.466667pt;}
.y19a{bottom:241.626667pt;}
.y137{bottom:242.906667pt;}
.yd1{bottom:243.066667pt;}
.y84{bottom:244.826667pt;}
.yba{bottom:246.746667pt;}
.y124{bottom:248.826667pt;}
.yde{bottom:252.826667pt;}
.y60{bottom:254.426667pt;}
.y29{bottom:255.226667pt;}
.y163{bottom:256.026667pt;}
.yec{bottom:256.826667pt;}
.y105{bottom:259.066667pt;}
.y199{bottom:259.226667pt;}
.yd0{bottom:260.826667pt;}
.y130{bottom:261.306667pt;}
.y83{bottom:262.426667pt;}
.yb9{bottom:264.346667pt;}
.y123{bottom:266.426667pt;}
.ydd{bottom:270.426667pt;}
.y28{bottom:272.826667pt;}
.y162{bottom:273.626667pt;}
.yeb{bottom:274.426667pt;}
.y198{bottom:276.826667pt;}
.ycf{bottom:278.426667pt;}
.y134{bottom:279.546667pt;}
.y5f{bottom:280.026667pt;}
.yb8{bottom:281.946667pt;}
.y122{bottom:284.026667pt;}
.y104{bottom:284.666667pt;}
.ydc{bottom:288.026667pt;}
.y27{bottom:290.426667pt;}
.y161{bottom:291.226667pt;}
.yea{bottom:292.026667pt;}
.y197{bottom:292.186667pt;}
.yce{bottom:296.026667pt;}
.y5e{bottom:297.626667pt;}
.y133{bottom:297.786667pt;}
.yb7{bottom:299.546667pt;}
.y121{bottom:301.626667pt;}
.y103{bottom:302.266667pt;}
.ye9{bottom:305.146667pt;}
.y16f{bottom:305.626667pt;}
.y196{bottom:307.546667pt;}
.y26{bottom:308.186667pt;}
.y160{bottom:308.826667pt;}
.ycd{bottom:313.626667pt;}
.y5d{bottom:315.226667pt;}
.yb6{bottom:317.146667pt;}
.y12f{bottom:317.466667pt;}
.y120{bottom:319.226667pt;}
.y102{bottom:320.026667pt;}
.y195{bottom:322.906667pt;}
.y16e{bottom:323.226667pt;}
.ye8{bottom:323.546667pt;}
.y25{bottom:325.786667pt;}
.y15f{bottom:326.586667pt;}
.ycc{bottom:331.226667pt;}
.y5c{bottom:332.986667pt;}
.y101{bottom:333.146667pt;}
.yb5{bottom:334.906667pt;}
.y11f{bottom:336.986667pt;}
.y194{bottom:340.506667pt;}
.y82{bottom:340.986667pt;}
.ye7{bottom:343.066667pt;}
.y24{bottom:343.386667pt;}
.y15e{bottom:344.186667pt;}
.ycb{bottom:348.986667pt;}
.y5b{bottom:350.586667pt;}
.yff{bottom:351.386667pt;}
.yb4{bottom:352.506667pt;}
.y11e{bottom:354.586667pt;}
.y193{bottom:358.146667pt;}
.y81{bottom:358.626667pt;}
.y23{bottom:361.026667pt;}
.y15d{bottom:361.826667pt;}
.yca{bottom:366.626667pt;}
.y5a{bottom:368.226667pt;}
.yfe{bottom:369.826667pt;}
.yb3{bottom:370.146667pt;}
.y11d{bottom:372.226667pt;}
.y192{bottom:375.746667pt;}
.y80{bottom:376.226667pt;}
.y22{bottom:378.626667pt;}
.y15c{bottom:379.426667pt;}
.yc9{bottom:384.226667pt;}
.y59{bottom:385.826667pt;}
.yb2{bottom:387.746667pt;}
.yfc{bottom:388.066667pt;}
.y11c{bottom:389.826667pt;}
.y191{bottom:393.506667pt;}
.y7f{bottom:393.826667pt;}
.y21{bottom:396.386667pt;}
.y15b{bottom:397.026667pt;}
.yc8{bottom:401.826667pt;}
.y58{bottom:403.426667pt;}
.y11b{bottom:407.426667pt;}
.y190{bottom:411.106667pt;}
.y7e{bottom:411.426667pt;}
.yb1{bottom:413.346667pt;}
.y20{bottom:413.986667pt;}
.y15a{bottom:414.786667pt;}
.yc7{bottom:419.426667pt;}
.y57{bottom:421.186667pt;}
.y18f{bottom:428.706667pt;}
.y7d{bottom:429.186667pt;}
.yb0{bottom:431.106667pt;}
.y1f{bottom:431.586667pt;}
.y159{bottom:432.386667pt;}
.y11a{bottom:433.186667pt;}
.yc6{bottom:437.186667pt;}
.y56{bottom:438.786667pt;}
.y158{bottom:445.506667pt;}
.y18e{bottom:446.306667pt;}
.y7c{bottom:446.786667pt;}
.yaf{bottom:448.706667pt;}
.y1e{bottom:449.186667pt;}
.y119{bottom:450.786667pt;}
.yc5{bottom:454.786667pt;}
.y55{bottom:456.386667pt;}
.y18d{bottom:463.906667pt;}
.y7b{bottom:464.386667pt;}
.yae{bottom:466.306667pt;}
.y118{bottom:468.386667pt;}
.yc4{bottom:472.386667pt;}
.y54{bottom:473.986667pt;}
.y157{bottom:481.506667pt;}
.y18c{bottom:481.666667pt;}
.yfb{bottom:481.986667pt;}
.yad{bottom:483.906667pt;}
.y1d{bottom:484.866667pt;}
.y117{bottom:485.986667pt;}
.y7a{bottom:489.986667pt;}
.y17c{bottom:491.586667pt;}
.y18b{bottom:499.266667pt;}
.y53{bottom:499.586667pt;}
.y156{bottom:499.746667pt;}
.yac{bottom:501.506667pt;}
.y116{bottom:503.586667pt;}
.y79{bottom:507.586667pt;}
.y17b{bottom:509.346667pt;}
.y1c{bottom:510.466667pt;}
.y115{bottom:516.866667pt;}
.y52{bottom:517.346667pt;}
.y154{bottom:517.986667pt;}
.yab{bottom:519.106667pt;}
.y78{bottom:525.346667pt;}
.y17a{bottom:526.946667pt;}
.y1b{bottom:528.066667pt;}
.y18a{bottom:534.466667pt;}
.y51{bottom:534.946667pt;}
.y114{bottom:535.106667pt;}
.yaa{bottom:536.866667pt;}
.y77{bottom:542.946667pt;}
.y179{bottom:544.546667pt;}
.y1a{bottom:545.666667pt;}
.y189{bottom:552.066667pt;}
.y50{bottom:552.546667pt;}
.y112{bottom:553.346667pt;}
.y153{bottom:553.986667pt;}
.ya9{bottom:554.466667pt;}
.y76{bottom:560.546667pt;}
.y178{bottom:562.146667pt;}
.y19{bottom:563.426667pt;}
.y188{bottom:569.826667pt;}
.y4f{bottom:570.146667pt;}
.y111{bottom:571.746667pt;}
.ya8{bottom:572.066667pt;}
.y75{bottom:578.173333pt;}
.y177{bottom:579.773333pt;}
.y18{bottom:581.053333pt;}
.y187{bottom:587.453333pt;}
.y4e{bottom:587.773333pt;}
.ya7{bottom:589.693333pt;}
.y10f{bottom:590.013333pt;}
.y152{bottom:591.293333pt;}
.y74{bottom:595.773333pt;}
.y17{bottom:598.653333pt;}
.y186{bottom:605.053333pt;}
.y4d{bottom:605.533333pt;}
.ya6{bottom:607.293333pt;}
.y73{bottom:613.533333pt;}
.y16{bottom:616.253333pt;}
.y185{bottom:622.653333pt;}
.y4c{bottom:623.133333pt;}
.ya5{bottom:625.053333pt;}
.y72{bottom:631.133333pt;}
.y151{bottom:632.253333pt;}
.y15{bottom:633.853333pt;}
.y184{bottom:640.253333pt;}
.y4b{bottom:640.733333pt;}
.ya4{bottom:642.653333pt;}
.y71{bottom:648.733333pt;}
.y150{bottom:650.013333pt;}
.y14{bottom:651.613333pt;}
.y183{bottom:655.613333pt;}
.y4a{bottom:658.333333pt;}
.ya3{bottom:660.253333pt;}
.y70{bottom:666.333333pt;}
.y14f{bottom:667.613333pt;}
.y13{bottom:669.213333pt;}
.y182{bottom:670.973333pt;}
.y49{bottom:675.933333pt;}
.ya2{bottom:677.853333pt;}
.y6f{bottom:683.933333pt;}
.y14e{bottom:685.213333pt;}
.y181{bottom:686.333333pt;}
.y12{bottom:686.813333pt;}
.y48{bottom:693.693333pt;}
.ya1{bottom:695.453333pt;}
.y6e{bottom:701.693333pt;}
.y14d{bottom:702.813333pt;}
.y11{bottom:704.413333pt;}
.y47{bottom:711.293333pt;}
.ya0{bottom:713.213333pt;}
.y6d{bottom:719.293333pt;}
.y14c{bottom:720.413333pt;}
.y10{bottom:722.013333pt;}
.y46{bottom:728.893333pt;}
.y9f{bottom:730.813333pt;}
.y6c{bottom:736.893333pt;}
.y14b{bottom:738.173333pt;}
.yf{bottom:739.773333pt;}
.y45{bottom:746.493333pt;}
.y9e{bottom:748.413333pt;}
.y6b{bottom:754.493333pt;}
.y14a{bottom:755.773333pt;}
.ye{bottom:759.293333pt;}
.y44{bottom:764.093333pt;}
.y9d{bottom:766.013333pt;}
.y6a{bottom:772.093333pt;}
.y149{bottom:773.373333pt;}
.yd{bottom:781.693333pt;}
.yfa{bottom:781.853333pt;}
.y9c{bottom:783.613333pt;}
.y43{bottom:789.853333pt;}
.y148{bottom:790.973333pt;}
.yc{bottom:799.333333pt;}
.yf9{bottom:799.493333pt;}
.y9b{bottom:801.413333pt;}
.y42{bottom:807.493333pt;}
.y147{bottom:816.613333pt;}
.yb{bottom:816.933333pt;}
.yf8{bottom:817.093333pt;}
.y9a{bottom:819.013333pt;}
.y41{bottom:825.093333pt;}
.ya{bottom:830.373333pt;}
.y146{bottom:834.373333pt;}
.yf7{bottom:834.693333pt;}
.y99{bottom:836.613333pt;}
.y40{bottom:842.693333pt;}
.y9{bottom:849.253333pt;}
.y145{bottom:851.973333pt;}
.yf6{bottom:852.293333pt;}
.y98{bottom:854.213333pt;}
.y3f{bottom:860.293333pt;}
.y144{bottom:869.573333pt;}
.y12e{bottom:870.053333pt;}
.y8{bottom:870.213333pt;}
.y97{bottom:871.813333pt;}
.y3e{bottom:878.053333pt;}
.y143{bottom:887.173333pt;}
.y176{bottom:887.653333pt;}
.y96{bottom:889.573333pt;}
.y3d{bottom:895.653333pt;}
.y7{bottom:898.373333pt;}
.y142{bottom:904.773333pt;}
.y175{bottom:905.253333pt;}
.y95{bottom:907.173333pt;}
.y3c{bottom:913.253333pt;}
.y174{bottom:922.853333pt;}
.y94{bottom:924.773333pt;}
.y141{bottom:926.053333pt;}
.y3b{bottom:930.853333pt;}
.y5{bottom:935.173333pt;}
.y173{bottom:940.453333pt;}
.y93{bottom:942.373333pt;}
.y140{bottom:943.973333pt;}
.y3a{bottom:948.453333pt;}
.y8e{bottom:954.853333pt;}
.y172{bottom:958.213333pt;}
.y4{bottom:962.533333pt;}
.y13f{bottom:962.693333pt;}
.y39{bottom:966.213333pt;}
.y90{bottom:973.253333pt;}
.y171{bottom:975.813333pt;}
.y38{bottom:983.813333pt;}
.y3{bottom:989.893333pt;}
.y37{bottom:1001.413333pt;}
.y2{bottom:1017.413333pt;}
.y36{bottom:1019.040000pt;}
.y35{bottom:1043.520000pt;}
.y1{bottom:1047.520000pt;}
.y34{bottom:1061.440000pt;}
.h1b{height:2.295000pt;}
.he{height:17.600000pt;}
.h11{height:17.632000pt;}
.h14{height:17.760000pt;}
.hd{height:23.040000pt;}
.h7{height:30.982500pt;}
.h12{height:35.200000pt;}
.h18{height:35.232000pt;}
.h19{height:35.360000pt;}
.h5{height:37.479688pt;}
.h9{height:38.672812pt;}
.hb{height:40.021563pt;}
.hc{height:41.440000pt;}
.h3{height:41.543750pt;}
.hf{height:42.944375pt;}
.h17{height:44.768125pt;}
.h6{height:47.310625pt;}
.h8{height:47.621250pt;}
.h10{height:49.542500pt;}
.h4{height:52.785000pt;}
.h13{height:52.960000pt;}
.h16{height:54.080000pt;}
.h15{height:54.240000pt;}
.h2{height:60.057813pt;}
.ha{height:60.288750pt;}
.h1a{height:74.912000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:43.712000pt;}
.wd{width:50.080000pt;}
.w1e{width:52.640000pt;}
.w20{width:55.360000pt;}
.w9{width:56.000000pt;}
.w1a{width:72.640000pt;}
.w1b{width:72.672000pt;}
.w16{width:75.712000pt;}
.w3{width:77.440000pt;}
.w8{width:85.312000pt;}
.w15{width:86.720000pt;}
.w13{width:86.880000pt;}
.w14{width:86.912000pt;}
.w17{width:97.280000pt;}
.w11{width:100.192000pt;}
.w4{width:105.472000pt;}
.w7{width:108.160000pt;}
.wc{width:108.192000pt;}
.w19{width:109.312000pt;}
.w1f{width:111.872000pt;}
.wb{width:117.120000pt;}
.w6{width:117.152000pt;}
.wf{width:122.272000pt;}
.w10{width:138.400000pt;}
.w12{width:153.626667pt;}
.w5{width:154.586667pt;}
.w1c{width:173.146667pt;}
.w22{width:187.386667pt;}
.wa{width:190.146667pt;}
.w18{width:205.946667pt;}
.we{width:222.786667pt;}
.w21{width:256.546667pt;}
.w23{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.880000pt;}
.x1{left:48.159988pt;}
.xe{left:51.520000pt;}
.x5{left:55.200000pt;}
.x26{left:66.879988pt;}
.x3{left:71.999988pt;}
.x2{left:96.031988pt;}
.x17{left:101.632000pt;}
.x8{left:135.066667pt;}
.x13{left:154.426667pt;}
.x1d{left:165.626667pt;}
.x27{left:170.106667pt;}
.x7{left:199.706655pt;}
.x21{left:222.426667pt;}
.x28{left:235.386667pt;}
.xf{left:242.306667pt;}
.x18{left:255.906667pt;}
.x22{left:266.946667pt;}
.x14{left:277.346667pt;}
.xa{left:290.306667pt;}
.x4{left:305.506667pt;}
.x23{left:320.226667pt;}
.x19{left:343.426667pt;}
.x10{left:360.066667pt;}
.x1e{left:372.386667pt;}
.x6{left:382.946667pt;}
.x15{left:400.253333pt;}
.xb{left:408.093333pt;}
.x1a{left:431.133333pt;}
.x24{left:432.733333pt;}
.x11{left:468.893333pt;}
.x1f{left:482.333333pt;}
.x25{left:488.733333pt;}
.xc{left:516.893333pt;}
.x1b{left:518.653333pt;}
.x12{left:519.613333pt;}
.x16{left:539.293333pt;}
.x20{left:555.613333pt;}
.x1c{left:595.013333pt;}
.xd{left:602.853333pt;}
}




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