
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e6c187888708bd87b511775c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_101ce6257ca649e86e5321d8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_f8c67ee5fa52b6944a6e7e4e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_a8a7036b432e4d3964a76cb1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_3e21916135686a2fb9c20eca.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_3480d5997f4bf87e01b27026.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_cfc1f6c4ecedf61b52f3be0c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.063477;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_1869f060590732bc2915e741.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_08b4da2d15b563d19865e48f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ad8a1ec7fba6593a52e1673b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.850586;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls16{letter-spacing:-0.340800px;}
.ls18{letter-spacing:-0.266400px;}
.ls1c{letter-spacing:-0.243600px;}
.lsc{letter-spacing:-0.186600px;}
.ls1d{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.063600px;}
.ls15{letter-spacing:-0.048960px;}
.ls14{letter-spacing:-0.014760px;}
.ls6{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.023040px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls10{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.065520px;}
.ls17{letter-spacing:0.068400px;}
.ls5{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls7{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls3{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls1b{letter-spacing:47.726640px;}
.ls11{letter-spacing:63.566640px;}
.ls1a{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wsd{word-spacing:-13.425600px;}
.ws4{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.177440px;}
.wsb{word-spacing:-13.162800px;}
.wsf{word-spacing:-13.072800px;}
.ws5{word-spacing:-13.039800px;}
.wse{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._8{margin-left:-3.613201px;}
._6{margin-left:-2.338800px;}
._0{margin-left:-1.110000px;}
._1{width:1.018452px;}
._9{width:2.197045px;}
._5{width:3.306600px;}
._e{width:4.316027px;}
._3{width:5.410800px;}
._2{width:6.613200px;}
._4{width:7.789440px;}
._a{width:8.898000px;}
._b{width:10.043779px;}
._7{width:11.806800px;}
._11{width:14.397120px;}
._f{width:16.292520px;}
._10{width:17.516988px;}
._17{width:18.556932px;}
._d{width:19.779480px;}
._1b{width:21.791280px;}
._1a{width:22.905720px;}
._c{width:25.310400px;}
._15{width:33.638160px;}
._18{width:35.997840px;}
._16{width:44.422560px;}
._12{width:75.029760px;}
._14{width:140.380200px;}
._13{width:221.241600px;}
._19{width:227.313720px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ya5{bottom:7.830000px;}
.ya3{bottom:7.920000px;}
.ya2{bottom:25.470000px;}
.ya1{bottom:29.970000px;}
.ya0{bottom:47.520000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yd2{bottom:111.360000px;}
.y5c{bottom:112.530000px;}
.y10c{bottom:121.980000px;}
.y13a{bottom:126.390000px;}
.ybc{bottom:127.290000px;}
.yd1{bottom:128.910000px;}
.y5b{bottom:130.170000px;}
.y16a{bottom:134.310000px;}
.y10b{bottom:139.620000px;}
.yeb{bottom:139.980000px;}
.y28{bottom:140.250000px;}
.y139{bottom:143.940000px;}
.ybb{bottom:144.930000px;}
.yd0{bottom:146.550000px;}
.y5a{bottom:147.720000px;}
.y169{bottom:151.860000px;}
.y91{bottom:154.470000px;}
.y6e{bottom:155.460000px;}
.yea{bottom:157.620000px;}
.y27{bottom:157.890000px;}
.y138{bottom:162.390000px;}
.yba{bottom:162.480000px;}
.y59{bottom:165.270000px;}
.y168{bottom:170.310000px;}
.y90{bottom:172.110000px;}
.ye9{bottom:175.170000px;}
.y26{bottom:175.440000px;}
.ycf{bottom:179.490000px;}
.y137{bottom:179.940000px;}
.yb9{bottom:180.030000px;}
.y192{bottom:187.050000px;}
.y167{bottom:187.860000px;}
.y6d{bottom:191.100000px;}
.y10a{bottom:192.720000px;}
.y136{bottom:198.390000px;}
.y8f{bottom:198.660000px;}
.y58{bottom:200.910000px;}
.y191{bottom:204.600000px;}
.y166{bottom:206.220000px;}
.yce{bottom:206.850000px;}
.ye8{bottom:210.090000px;}
.y109{bottom:210.360000px;}
.y25{bottom:211.080000px;}
.yb8{bottom:215.670000px;}
.y135{bottom:215.940000px;}
.y57{bottom:218.460000px;}
.ye7{bottom:222.240000px;}
.y6c{bottom:226.650000px;}
.y108{bottom:227.910000px;}
.y24{bottom:228.630000px;}
.y190{bottom:231.240000px;}
.yb7{bottom:233.220000px;}
.ycd{bottom:234.210000px;}
.y8e{bottom:234.300000px;}
.y134{bottom:234.390000px;}
.y56{bottom:236.100000px;}
.y165{bottom:242.670000px;}
.y107{bottom:245.550000px;}
.y23{bottom:246.180000px;}
.y18f{bottom:248.790000px;}
.yb6{bottom:250.860000px;}
.y133{bottom:251.940000px;}
.y55{bottom:253.650000px;}
.y164{bottom:260.220000px;}
.ycc{bottom:261.480000px;}
.y6b{bottom:262.200000px;}
.y106{bottom:263.100000px;}
.y22{bottom:263.820000px;}
.y18e{bottom:266.430000px;}
.ye6{bottom:267.150000px;}
.yb5{bottom:268.410000px;}
.y8d{bottom:269.850000px;}
.y132{bottom:270.390000px;}
.y54{bottom:271.200000px;}
.y105{bottom:280.650000px;}
.y21{bottom:281.370000px;}
.yb4{bottom:285.960000px;}
.y163{bottom:287.130000px;}
.y8c{bottom:287.400000px;}
.y131{bottom:287.940000px;}
.y53{bottom:288.840000px;}
.y18d{bottom:292.980000px;}
.y6a{bottom:297.840000px;}
.y20{bottom:299.010000px;}
.y130{bottom:305.490000px;}
.y18c{bottom:310.530000px;}
.y8b{bottom:314.040000px;}
.y69{bottom:315.390000px;}
.ye5{bottom:315.840000px;}
.y104{bottom:316.290000px;}
.y1f{bottom:316.560000px;}
.yb3{bottom:321.600000px;}
.y162{bottom:324.210000px;}
.y52{bottom:324.390000px;}
.y68{bottom:332.940000px;}
.y1e{bottom:334.110000px;}
.y18b{bottom:337.170000px;}
.yb2{bottom:339.150000px;}
.y161{bottom:341.760000px;}
.y51{bottom:341.940000px;}
.y103{bottom:348.510000px;}
.y8a{bottom:349.590000px;}
.y67{bottom:350.580000px;}
.ye4{bottom:351.480000px;}
.y18a{bottom:354.720000px;}
.yb1{bottom:356.790000px;}
.y160{bottom:359.400000px;}
.y50{bottom:359.580000px;}
.y1d{bottom:361.020000px;}
.y89{bottom:367.230000px;}
.y66{bottom:368.130000px;}
.yb0{bottom:374.340000px;}
.y15f{bottom:376.950000px;}
.y4f{bottom:377.130000px;}
.ycb{bottom:377.220000px;}
.y189{bottom:381.360000px;}
.ye3{bottom:383.700000px;}
.y88{bottom:384.780000px;}
.y12f{bottom:386.130000px;}
.yaf{bottom:391.890000px;}
.y15e{bottom:394.500000px;}
.y4e{bottom:394.770000px;}
.y188{bottom:398.910000px;}
.y1c{bottom:409.620000px;}
.yca{bottom:412.770000px;}
.y15d{bottom:412.950000px;}
.y187{bottom:416.460000px;}
.y12e{bottom:418.710000px;}
.y87{bottom:420.330000px;}
.yae{bottom:427.530000px;}
.y4d{bottom:430.320000px;}
.yc9{bottom:430.410000px;}
.y15c{bottom:430.500000px;}
.y12d{bottom:437.160000px;}
.y186{bottom:443.100000px;}
.yad{bottom:445.080000px;}
.y1b{bottom:446.700000px;}
.y4c{bottom:447.870000px;}
.y15b{bottom:448.140000px;}
.y12c{bottom:454.710000px;}
.y86{bottom:455.970000px;}
.y185{bottom:460.650000px;}
.yac{bottom:462.630000px;}
.y1a{bottom:464.250000px;}
.yc8{bottom:465.240000px;}
.y4b{bottom:465.510000px;}
.y15a{bottom:465.690000px;}
.y12b{bottom:473.190000px;}
.yc7{bottom:477.420000px;}
.yab{bottom:480.300000px;}
.y19{bottom:481.830000px;}
.y85{bottom:482.550000px;}
.y4a{bottom:483.090000px;}
.y159{bottom:483.270000px;}
.y184{bottom:487.230000px;}
.y12a{bottom:490.740000px;}
.yaa{bottom:497.850000px;}
.y18{bottom:499.470000px;}
.y49{bottom:500.730000px;}
.y158{bottom:501.720000px;}
.y183{bottom:504.870000px;}
.y129{bottom:509.100000px;}
.y17{bottom:517.020000px;}
.y84{bottom:518.190000px;}
.y48{bottom:518.280000px;}
.y157{bottom:519.360000px;}
.yc6{bottom:522.420000px;}
.y128{bottom:527.550000px;}
.ya9{bottom:530.880000px;}
.y182{bottom:531.420000px;}
.y16{bottom:534.660000px;}
.y83{bottom:535.740000px;}
.y47{bottom:535.830000px;}
.y156{bottom:536.910000px;}
.y127{bottom:546.000000px;}
.y181{bottom:549.060000px;}
.y15{bottom:552.210000px;}
.y82{bottom:553.290000px;}
.y65{bottom:553.470000px;}
.y155{bottom:554.460000px;}
.ya8{bottom:558.150000px;}
.y46{bottom:562.740000px;}
.y126{bottom:563.550000px;}
.y14{bottom:569.760000px;}
.y64{bottom:571.020000px;}
.yc5{bottom:571.110000px;}
.y180{bottom:575.610000px;}
.ya7{bottom:585.510000px;}
.y13{bottom:587.400000px;}
.y63{bottom:588.660000px;}
.y81{bottom:588.930000px;}
.y154{bottom:590.910000px;}
.y17f{bottom:593.160000px;}
.y125{bottom:600.000000px;}
.y12{bottom:604.950000px;}
.y62{bottom:606.210000px;}
.yc4{bottom:606.660000px;}
.y45{bottom:611.070000px;}
.ya6{bottom:612.870000px;}
.y153{bottom:617.820000px;}
.y17e{bottom:619.800000px;}
.y11{bottom:622.590000px;}
.yc3{bottom:624.210000px;}
.y80{bottom:624.480000px;}
.y124{bottom:626.550000px;}
.y44{bottom:628.620000px;}
.y61{bottom:632.760000px;}
.y10{bottom:640.140000px;}
.ya4{bottom:640.230000px;}
.yc2{bottom:641.850000px;}
.y7f{bottom:642.840000px;}
.y43{bottom:646.260000px;}
.y17d{bottom:646.350000px;}
.yf{bottom:657.690000px;}
.y123{bottom:659.130000px;}
.y7e{bottom:661.290000px;}
.y42{bottom:663.810000px;}
.y17c{bottom:663.990000px;}
.y152{bottom:666.060000px;}
.y9f{bottom:667.500000px;}
.y60{bottom:668.670000px;}
.ye{bottom:675.330000px;}
.y122{bottom:676.770000px;}
.yc1{bottom:677.400000px;}
.y41{bottom:681.360000px;}
.y17b{bottom:681.540000px;}
.y151{bottom:683.700000px;}
.yd{bottom:692.880000px;}
.y121{bottom:694.320000px;}
.y7d{bottom:697.740000px;}
.ye2{bottom:699.810000px;}
.y102{bottom:700.620000px;}
.y150{bottom:701.250000px;}
.y17a{bottom:708.090000px;}
.yc0{bottom:709.620000px;}
.y120{bottom:712.680000px;}
.y7c{bottom:715.290000px;}
.y40{bottom:717.000000px;}
.ye1{bottom:717.360000px;}
.y101{bottom:718.260000px;}
.y14f{bottom:718.800000px;}
.yc{bottom:719.790000px;}
.y179{bottom:725.730000px;}
.y11f{bottom:731.130000px;}
.y3f{bottom:734.550000px;}
.ye0{bottom:735.000000px;}
.y100{bottom:735.810000px;}
.y14e{bottom:736.440000px;}
.y7b{bottom:741.930000px;}
.y178{bottom:743.280000px;}
.y11e{bottom:748.770000px;}
.y3e{bottom:752.190000px;}
.ydf{bottom:752.550000px;}
.yff{bottom:753.360000px;}
.y14d{bottom:753.990000px;}
.y9e{bottom:755.880000px;}
.y11d{bottom:766.320000px;}
.yb{bottom:768.030000px;}
.y3d{bottom:769.740000px;}
.y177{bottom:769.920000px;}
.yde{bottom:770.190000px;}
.yfe{bottom:771.000000px;}
.y14c{bottom:771.630000px;}
.y7a{bottom:777.480000px;}
.y11c{bottom:783.870000px;}
.y3c{bottom:787.290000px;}
.y176{bottom:787.470000px;}
.ydd{bottom:787.740000px;}
.y14b{bottom:789.180000px;}
.y9d{bottom:791.520000px;}
.y79{bottom:795.030000px;}
.yfd{bottom:797.550000px;}
.y11b{bottom:802.320000px;}
.ya{bottom:803.850000px;}
.y3b{bottom:804.930000px;}
.ydc{bottom:805.290000px;}
.y9c{bottom:809.070000px;}
.y78{bottom:812.670000px;}
.y175{bottom:814.380000px;}
.y11a{bottom:819.870000px;}
.y3a{bottom:822.480000px;}
.ydb{bottom:822.930000px;}
.y14a{bottom:825.090000px;}
.y9b{bottom:826.620000px;}
.yfc{bottom:830.130000px;}
.y77{bottom:830.220000px;}
.y119{bottom:837.510000px;}
.y9{bottom:839.850000px;}
.yda{bottom:840.480000px;}
.y76{bottom:847.860000px;}
.y9a{bottom:853.530000px;}
.y118{bottom:855.060000px;}
.y39{bottom:858.030000px;}
.y149{bottom:862.080000px;}
.y174{bottom:862.620000px;}
.y75{bottom:865.410000px;}
.yfb{bottom:865.770000px;}
.y38{bottom:875.670000px;}
.y8{bottom:879.630000px;}
.y148{bottom:879.720000px;}
.y117{bottom:882.510000px;}
.y74{bottom:882.960000px;}
.yfa{bottom:883.320000px;}
.y173{bottom:889.530000px;}
.y37{bottom:893.220000px;}
.yd9{bottom:893.670000px;}
.y147{bottom:897.270000px;}
.y7{bottom:897.630000px;}
.yf9{bottom:900.870000px;}
.y99{bottom:901.860000px;}
.y73{bottom:909.600000px;}
.y36{bottom:910.860000px;}
.yd8{bottom:911.220000px;}
.y146{bottom:915.720000px;}
.y116{bottom:918.060000px;}
.yf8{bottom:918.510000px;}
.y98{bottom:919.410000px;}
.y172{bottom:926.880000px;}
.y35{bottom:928.410000px;}
.yd7{bottom:928.860000px;}
.y6{bottom:929.940000px;}
.y145{bottom:933.270000px;}
.y115{bottom:935.700000px;}
.yf7{bottom:936.060000px;}
.y97{bottom:936.960000px;}
.y72{bottom:945.150000px;}
.y34{bottom:945.960000px;}
.yd6{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y144{bottom:950.820000px;}
.y114{bottom:953.250000px;}
.yf6{bottom:953.700000px;}
.y33{bottom:963.600000px;}
.y5f{bottom:963.960000px;}
.y171{bottom:964.230000px;}
.y143{bottom:969.270000px;}
.y113{bottom:970.800000px;}
.yf5{bottom:971.250000px;}
.y96{bottom:972.600000px;}
.y71{bottom:980.790000px;}
.y5e{bottom:981.600000px;}
.yd5{bottom:981.960000px;}
.y142{bottom:986.820000px;}
.y4{bottom:987.630000px;}
.y112{bottom:988.440000px;}
.yf4{bottom:988.800000px;}
.y95{bottom:990.150000px;}
.y32{bottom:999.150000px;}
.yd4{bottom:999.600000px;}
.y170{bottom:1001.580000px;}
.y141{bottom:1004.370000px;}
.y111{bottom:1005.990000px;}
.yf3{bottom:1006.440000px;}
.y94{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y70{bottom:1016.370000px;}
.y31{bottom:1016.820000px;}
.yd3{bottom:1017.180000px;}
.y140{bottom:1022.850000px;}
.y110{bottom:1023.570000px;}
.yf2{bottom:1024.020000px;}
.y93{bottom:1025.370000px;}
.y6f{bottom:1033.920000px;}
.y30{bottom:1034.370000px;}
.ybf{bottom:1034.820000px;}
.y13f{bottom:1040.400000px;}
.y10f{bottom:1041.210000px;}
.yf1{bottom:1041.570000px;}
.y16f{bottom:1049.850000px;}
.y2f{bottom:1051.920000px;}
.ybe{bottom:1052.370000px;}
.y10e{bottom:1058.760000px;}
.y13e{bottom:1058.850000px;}
.yf0{bottom:1059.210000px;}
.y16e{bottom:1067.400000px;}
.y2e{bottom:1069.560000px;}
.ybd{bottom:1069.920000px;}
.y13d{bottom:1076.400000px;}
.yef{bottom:1076.760000px;}
.y10d{bottom:1085.670000px;}
.y16d{bottom:1085.850000px;}
.y2d{bottom:1087.110000px;}
.y92{bottom:1087.560000px;}
.yee{bottom:1094.400000px;}
.y16c{bottom:1103.400000px;}
.y13c{bottom:1103.850000px;}
.y5d{bottom:1105.110000px;}
.yed{bottom:1111.950000px;}
.y16b{bottom:1121.850000px;}
.y2c{bottom:1122.750000px;}
.yec{bottom:1138.860000px;}
.y13b{bottom:1139.400000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hd{height:26.550000px;}
.he{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h10{height:40.539023px;}
.hf{height:44.190000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.ha{height:59.973223px;}
.hb{height:61.793886px;}
.h9{height:62.585859px;}
.hc{height:66.240000px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:51.300000px;}
.wd{width:67.230000px;}
.wf{width:69.660000px;}
.w19{width:72.450000px;}
.w12{width:76.320000px;}
.w7{width:80.490000px;}
.w13{width:80.580000px;}
.w14{width:81.360000px;}
.w8{width:81.630000px;}
.w16{width:92.340000px;}
.wa{width:93.330000px;}
.w3{width:102.450000px;}
.w9{width:108.810000px;}
.w11{width:110.340000px;}
.w6{width:111.780000px;}
.w15{width:117.990000px;}
.w5{width:120.780000px;}
.w10{width:121.890000px;}
.we{width:134.460000px;}
.w1a{width:136.080000px;}
.w18{width:235.560000px;}
.wc{width:255.900000px;}
.wb{width:295.950000px;}
.w17{width:309.450000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:3.960000px;}
.x9{left:7.740000px;}
.x1{left:68.040000px;}
.x8{left:95.039987px;}
.x24{left:111.239987px;}
.x23{left:122.039987px;}
.x17{left:139.230000px;}
.xa{left:171.930000px;}
.x2{left:201.539987px;}
.xb{left:223.950000px;}
.x18{left:261.840000px;}
.x15{left:275.519987px;}
.x12{left:292.529987px;}
.x1d{left:317.729987px;}
.x22{left:323.489987px;}
.x4{left:336.539987px;}
.xc{left:345.450000px;}
.x13{left:365.430000px;}
.x19{left:372.900000px;}
.x5{left:375.959987px;}
.x1e{left:378.930000px;}
.x6{left:396.929987px;}
.x7{left:416.909987px;}
.x1a{left:449.940000px;}
.xd{left:457.950000px;}
.x1b{left:531.330000px;}
.xe{left:539.160000px;}
.x1c{left:613.410000px;}
.x1f{left:615.210000px;}
.xf{left:621.510000px;}
.x20{left:688.380000px;}
.x14{left:690.000000px;}
.x11{left:717.809987px;}
.x10{left:731.130000px;}
.x21{left:763.889987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls16{letter-spacing:-0.302933pt;}
.ls18{letter-spacing:-0.236800pt;}
.ls1c{letter-spacing:-0.216533pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls1d{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.056533pt;}
.ls15{letter-spacing:-0.043520pt;}
.ls14{letter-spacing:-0.013120pt;}
.ls6{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.020480pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls10{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.058240pt;}
.ls17{letter-spacing:0.060800pt;}
.ls5{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls7{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls3{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:42.423680pt;}
.ls11{letter-spacing:56.503680pt;}
.ls1a{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsd{word-spacing:-11.933867pt;}
.ws4{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.713280pt;}
.wsb{word-spacing:-11.700267pt;}
.wsf{word-spacing:-11.620267pt;}
.ws5{word-spacing:-11.590933pt;}
.wse{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._8{margin-left:-3.211734pt;}
._6{margin-left:-2.078933pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.905290pt;}
._9{width:1.952929pt;}
._5{width:2.939200pt;}
._e{width:3.836469pt;}
._3{width:4.809600pt;}
._2{width:5.878400pt;}
._4{width:6.923947pt;}
._a{width:7.909334pt;}
._b{width:8.927803pt;}
._7{width:10.494933pt;}
._11{width:12.797440pt;}
._f{width:14.482240pt;}
._10{width:15.570656pt;}
._17{width:16.495050pt;}
._d{width:17.581760pt;}
._1b{width:19.370027pt;}
._1a{width:20.360640pt;}
._c{width:22.498133pt;}
._15{width:29.900587pt;}
._18{width:31.998080pt;}
._16{width:39.486720pt;}
._12{width:66.693120pt;}
._14{width:124.782400pt;}
._13{width:196.659200pt;}
._19{width:202.056640pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ya5{bottom:6.960000pt;}
.ya3{bottom:7.040000pt;}
.ya2{bottom:22.640000pt;}
.ya1{bottom:26.640000pt;}
.ya0{bottom:42.240000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yd2{bottom:98.986667pt;}
.y5c{bottom:100.026667pt;}
.y10c{bottom:108.426667pt;}
.y13a{bottom:112.346667pt;}
.ybc{bottom:113.146667pt;}
.yd1{bottom:114.586667pt;}
.y5b{bottom:115.706667pt;}
.y16a{bottom:119.386667pt;}
.y10b{bottom:124.106667pt;}
.yeb{bottom:124.426667pt;}
.y28{bottom:124.666667pt;}
.y139{bottom:127.946667pt;}
.ybb{bottom:128.826667pt;}
.yd0{bottom:130.266667pt;}
.y5a{bottom:131.306667pt;}
.y169{bottom:134.986667pt;}
.y91{bottom:137.306667pt;}
.y6e{bottom:138.186667pt;}
.yea{bottom:140.106667pt;}
.y27{bottom:140.346667pt;}
.y138{bottom:144.346667pt;}
.yba{bottom:144.426667pt;}
.y59{bottom:146.906667pt;}
.y168{bottom:151.386667pt;}
.y90{bottom:152.986667pt;}
.ye9{bottom:155.706667pt;}
.y26{bottom:155.946667pt;}
.ycf{bottom:159.546667pt;}
.y137{bottom:159.946667pt;}
.yb9{bottom:160.026667pt;}
.y192{bottom:166.266667pt;}
.y167{bottom:166.986667pt;}
.y6d{bottom:169.866667pt;}
.y10a{bottom:171.306667pt;}
.y136{bottom:176.346667pt;}
.y8f{bottom:176.586667pt;}
.y58{bottom:178.586667pt;}
.y191{bottom:181.866667pt;}
.y166{bottom:183.306667pt;}
.yce{bottom:183.866667pt;}
.ye8{bottom:186.746667pt;}
.y109{bottom:186.986667pt;}
.y25{bottom:187.626667pt;}
.yb8{bottom:191.706667pt;}
.y135{bottom:191.946667pt;}
.y57{bottom:194.186667pt;}
.ye7{bottom:197.546667pt;}
.y6c{bottom:201.466667pt;}
.y108{bottom:202.586667pt;}
.y24{bottom:203.226667pt;}
.y190{bottom:205.546667pt;}
.yb7{bottom:207.306667pt;}
.ycd{bottom:208.186667pt;}
.y8e{bottom:208.266667pt;}
.y134{bottom:208.346667pt;}
.y56{bottom:209.866667pt;}
.y165{bottom:215.706667pt;}
.y107{bottom:218.266667pt;}
.y23{bottom:218.826667pt;}
.y18f{bottom:221.146667pt;}
.yb6{bottom:222.986667pt;}
.y133{bottom:223.946667pt;}
.y55{bottom:225.466667pt;}
.y164{bottom:231.306667pt;}
.ycc{bottom:232.426667pt;}
.y6b{bottom:233.066667pt;}
.y106{bottom:233.866667pt;}
.y22{bottom:234.506667pt;}
.y18e{bottom:236.826667pt;}
.ye6{bottom:237.466667pt;}
.yb5{bottom:238.586667pt;}
.y8d{bottom:239.866667pt;}
.y132{bottom:240.346667pt;}
.y54{bottom:241.066667pt;}
.y105{bottom:249.466667pt;}
.y21{bottom:250.106667pt;}
.yb4{bottom:254.186667pt;}
.y163{bottom:255.226667pt;}
.y8c{bottom:255.466667pt;}
.y131{bottom:255.946667pt;}
.y53{bottom:256.746667pt;}
.y18d{bottom:260.426667pt;}
.y6a{bottom:264.746667pt;}
.y20{bottom:265.786667pt;}
.y130{bottom:271.546667pt;}
.y18c{bottom:276.026667pt;}
.y8b{bottom:279.146667pt;}
.y69{bottom:280.346667pt;}
.ye5{bottom:280.746667pt;}
.y104{bottom:281.146667pt;}
.y1f{bottom:281.386667pt;}
.yb3{bottom:285.866667pt;}
.y162{bottom:288.186667pt;}
.y52{bottom:288.346667pt;}
.y68{bottom:295.946667pt;}
.y1e{bottom:296.986667pt;}
.y18b{bottom:299.706667pt;}
.yb2{bottom:301.466667pt;}
.y161{bottom:303.786667pt;}
.y51{bottom:303.946667pt;}
.y103{bottom:309.786667pt;}
.y8a{bottom:310.746667pt;}
.y67{bottom:311.626667pt;}
.ye4{bottom:312.426667pt;}
.y18a{bottom:315.306667pt;}
.yb1{bottom:317.146667pt;}
.y160{bottom:319.466667pt;}
.y50{bottom:319.626667pt;}
.y1d{bottom:320.906667pt;}
.y89{bottom:326.426667pt;}
.y66{bottom:327.226667pt;}
.yb0{bottom:332.746667pt;}
.y15f{bottom:335.066667pt;}
.y4f{bottom:335.226667pt;}
.ycb{bottom:335.306667pt;}
.y189{bottom:338.986667pt;}
.ye3{bottom:341.066667pt;}
.y88{bottom:342.026667pt;}
.y12f{bottom:343.226667pt;}
.yaf{bottom:348.346667pt;}
.y15e{bottom:350.666667pt;}
.y4e{bottom:350.906667pt;}
.y188{bottom:354.586667pt;}
.y1c{bottom:364.106667pt;}
.yca{bottom:366.906667pt;}
.y15d{bottom:367.066667pt;}
.y187{bottom:370.186667pt;}
.y12e{bottom:372.186667pt;}
.y87{bottom:373.626667pt;}
.yae{bottom:380.026667pt;}
.y4d{bottom:382.506667pt;}
.yc9{bottom:382.586667pt;}
.y15c{bottom:382.666667pt;}
.y12d{bottom:388.586667pt;}
.y186{bottom:393.866667pt;}
.yad{bottom:395.626667pt;}
.y1b{bottom:397.066667pt;}
.y4c{bottom:398.106667pt;}
.y15b{bottom:398.346667pt;}
.y12c{bottom:404.186667pt;}
.y86{bottom:405.306667pt;}
.y185{bottom:409.466667pt;}
.yac{bottom:411.226667pt;}
.y1a{bottom:412.666667pt;}
.yc8{bottom:413.546667pt;}
.y4b{bottom:413.786667pt;}
.y15a{bottom:413.946667pt;}
.y12b{bottom:420.613333pt;}
.yc7{bottom:424.373333pt;}
.yab{bottom:426.933333pt;}
.y19{bottom:428.293333pt;}
.y85{bottom:428.933333pt;}
.y4a{bottom:429.413333pt;}
.y159{bottom:429.573333pt;}
.y184{bottom:433.093333pt;}
.y12a{bottom:436.213333pt;}
.yaa{bottom:442.533333pt;}
.y18{bottom:443.973333pt;}
.y49{bottom:445.093333pt;}
.y158{bottom:445.973333pt;}
.y183{bottom:448.773333pt;}
.y129{bottom:452.533333pt;}
.y17{bottom:459.573333pt;}
.y84{bottom:460.613333pt;}
.y48{bottom:460.693333pt;}
.y157{bottom:461.653333pt;}
.yc6{bottom:464.373333pt;}
.y128{bottom:468.933333pt;}
.ya9{bottom:471.893333pt;}
.y182{bottom:472.373333pt;}
.y16{bottom:475.253333pt;}
.y83{bottom:476.213333pt;}
.y47{bottom:476.293333pt;}
.y156{bottom:477.253333pt;}
.y127{bottom:485.333333pt;}
.y181{bottom:488.053333pt;}
.y15{bottom:490.853333pt;}
.y82{bottom:491.813333pt;}
.y65{bottom:491.973333pt;}
.y155{bottom:492.853333pt;}
.ya8{bottom:496.133333pt;}
.y46{bottom:500.213333pt;}
.y126{bottom:500.933333pt;}
.y14{bottom:506.453333pt;}
.y64{bottom:507.573333pt;}
.yc5{bottom:507.653333pt;}
.y180{bottom:511.653333pt;}
.ya7{bottom:520.453333pt;}
.y13{bottom:522.133333pt;}
.y63{bottom:523.253333pt;}
.y81{bottom:523.493333pt;}
.y154{bottom:525.253333pt;}
.y17f{bottom:527.253333pt;}
.y125{bottom:533.333333pt;}
.y12{bottom:537.733333pt;}
.y62{bottom:538.853333pt;}
.yc4{bottom:539.253333pt;}
.y45{bottom:543.173333pt;}
.ya6{bottom:544.773333pt;}
.y153{bottom:549.173333pt;}
.y17e{bottom:550.933333pt;}
.y11{bottom:553.413333pt;}
.yc3{bottom:554.853333pt;}
.y80{bottom:555.093333pt;}
.y124{bottom:556.933333pt;}
.y44{bottom:558.773333pt;}
.y61{bottom:562.453333pt;}
.y10{bottom:569.013333pt;}
.ya4{bottom:569.093333pt;}
.yc2{bottom:570.533333pt;}
.y7f{bottom:571.413333pt;}
.y43{bottom:574.453333pt;}
.y17d{bottom:574.533333pt;}
.yf{bottom:584.613333pt;}
.y123{bottom:585.893333pt;}
.y7e{bottom:587.813333pt;}
.y42{bottom:590.053333pt;}
.y17c{bottom:590.213333pt;}
.y152{bottom:592.053333pt;}
.y9f{bottom:593.333333pt;}
.y60{bottom:594.373333pt;}
.ye{bottom:600.293333pt;}
.y122{bottom:601.573333pt;}
.yc1{bottom:602.133333pt;}
.y41{bottom:605.653333pt;}
.y17b{bottom:605.813333pt;}
.y151{bottom:607.733333pt;}
.yd{bottom:615.893333pt;}
.y121{bottom:617.173333pt;}
.y7d{bottom:620.213333pt;}
.ye2{bottom:622.053333pt;}
.y102{bottom:622.773333pt;}
.y150{bottom:623.333333pt;}
.y17a{bottom:629.413333pt;}
.yc0{bottom:630.773333pt;}
.y120{bottom:633.493333pt;}
.y7c{bottom:635.813333pt;}
.y40{bottom:637.333333pt;}
.ye1{bottom:637.653333pt;}
.y101{bottom:638.453333pt;}
.y14f{bottom:638.933333pt;}
.yc{bottom:639.813333pt;}
.y179{bottom:645.093333pt;}
.y11f{bottom:649.893333pt;}
.y3f{bottom:652.933333pt;}
.ye0{bottom:653.333333pt;}
.y100{bottom:654.053333pt;}
.y14e{bottom:654.613333pt;}
.y7b{bottom:659.493333pt;}
.y178{bottom:660.693333pt;}
.y11e{bottom:665.573333pt;}
.y3e{bottom:668.613333pt;}
.ydf{bottom:668.933333pt;}
.yff{bottom:669.653333pt;}
.y14d{bottom:670.213333pt;}
.y9e{bottom:671.893333pt;}
.y11d{bottom:681.173333pt;}
.yb{bottom:682.693333pt;}
.y3d{bottom:684.213333pt;}
.y177{bottom:684.373333pt;}
.yde{bottom:684.613333pt;}
.yfe{bottom:685.333333pt;}
.y14c{bottom:685.893333pt;}
.y7a{bottom:691.093333pt;}
.y11c{bottom:696.773333pt;}
.y3c{bottom:699.813333pt;}
.y176{bottom:699.973333pt;}
.ydd{bottom:700.213333pt;}
.y14b{bottom:701.493333pt;}
.y9d{bottom:703.573333pt;}
.y79{bottom:706.693333pt;}
.yfd{bottom:708.933333pt;}
.y11b{bottom:713.173333pt;}
.ya{bottom:714.533333pt;}
.y3b{bottom:715.493333pt;}
.ydc{bottom:715.813333pt;}
.y9c{bottom:719.173333pt;}
.y78{bottom:722.373333pt;}
.y175{bottom:723.893333pt;}
.y11a{bottom:728.773333pt;}
.y3a{bottom:731.093333pt;}
.ydb{bottom:731.493333pt;}
.y14a{bottom:733.413333pt;}
.y9b{bottom:734.773333pt;}
.yfc{bottom:737.893333pt;}
.y77{bottom:737.973333pt;}
.y119{bottom:744.453333pt;}
.y9{bottom:746.533333pt;}
.yda{bottom:747.093333pt;}
.y76{bottom:753.653333pt;}
.y9a{bottom:758.693333pt;}
.y118{bottom:760.053333pt;}
.y39{bottom:762.693333pt;}
.y149{bottom:766.293333pt;}
.y174{bottom:766.773333pt;}
.y75{bottom:769.253333pt;}
.yfb{bottom:769.573333pt;}
.y38{bottom:778.373333pt;}
.y8{bottom:781.893333pt;}
.y148{bottom:781.973333pt;}
.y117{bottom:784.453333pt;}
.y74{bottom:784.853333pt;}
.yfa{bottom:785.173333pt;}
.y173{bottom:790.693333pt;}
.y37{bottom:793.973333pt;}
.yd9{bottom:794.373333pt;}
.y147{bottom:797.573333pt;}
.y7{bottom:797.893333pt;}
.yf9{bottom:800.773333pt;}
.y99{bottom:801.653333pt;}
.y73{bottom:808.533333pt;}
.y36{bottom:809.653333pt;}
.yd8{bottom:809.973333pt;}
.y146{bottom:813.973333pt;}
.y116{bottom:816.053333pt;}
.yf8{bottom:816.453333pt;}
.y98{bottom:817.253333pt;}
.y172{bottom:823.893333pt;}
.y35{bottom:825.253333pt;}
.yd7{bottom:825.653333pt;}
.y6{bottom:826.613333pt;}
.y145{bottom:829.573333pt;}
.y115{bottom:831.733333pt;}
.yf7{bottom:832.053333pt;}
.y97{bottom:832.853333pt;}
.y72{bottom:840.133333pt;}
.y34{bottom:840.853333pt;}
.yd6{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y144{bottom:845.173333pt;}
.y114{bottom:847.333333pt;}
.yf6{bottom:847.733333pt;}
.y33{bottom:856.533333pt;}
.y5f{bottom:856.853333pt;}
.y171{bottom:857.093333pt;}
.y143{bottom:861.573333pt;}
.y113{bottom:862.933333pt;}
.yf5{bottom:863.333333pt;}
.y96{bottom:864.533333pt;}
.y71{bottom:871.813333pt;}
.y5e{bottom:872.533333pt;}
.yd5{bottom:872.853333pt;}
.y142{bottom:877.173333pt;}
.y4{bottom:877.893333pt;}
.y112{bottom:878.613333pt;}
.yf4{bottom:878.933333pt;}
.y95{bottom:880.133333pt;}
.y32{bottom:888.133333pt;}
.yd4{bottom:888.533333pt;}
.y170{bottom:890.293333pt;}
.y141{bottom:892.773333pt;}
.y111{bottom:894.213333pt;}
.yf3{bottom:894.613333pt;}
.y94{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y70{bottom:903.440000pt;}
.y31{bottom:903.840000pt;}
.yd3{bottom:904.160000pt;}
.y140{bottom:909.200000pt;}
.y110{bottom:909.840000pt;}
.yf2{bottom:910.240000pt;}
.y93{bottom:911.440000pt;}
.y6f{bottom:919.040000pt;}
.y30{bottom:919.440000pt;}
.ybf{bottom:919.840000pt;}
.y13f{bottom:924.800000pt;}
.y10f{bottom:925.520000pt;}
.yf1{bottom:925.840000pt;}
.y16f{bottom:933.200000pt;}
.y2f{bottom:935.040000pt;}
.ybe{bottom:935.440000pt;}
.y10e{bottom:941.120000pt;}
.y13e{bottom:941.200000pt;}
.yf0{bottom:941.520000pt;}
.y16e{bottom:948.800000pt;}
.y2e{bottom:950.720000pt;}
.ybd{bottom:951.040000pt;}
.y13d{bottom:956.800000pt;}
.yef{bottom:957.120000pt;}
.y10d{bottom:965.040000pt;}
.y16d{bottom:965.200000pt;}
.y2d{bottom:966.320000pt;}
.y92{bottom:966.720000pt;}
.yee{bottom:972.800000pt;}
.y16c{bottom:980.800000pt;}
.y13c{bottom:981.200000pt;}
.y5d{bottom:982.320000pt;}
.yed{bottom:988.400000pt;}
.y16b{bottom:997.200000pt;}
.y2c{bottom:998.000000pt;}
.yec{bottom:1012.320000pt;}
.y13b{bottom:1012.800000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.he{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h10{height:36.034687pt;}
.hf{height:39.280000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.ha{height:53.309531pt;}
.hb{height:54.927899pt;}
.h9{height:55.631875pt;}
.hc{height:58.880000pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:45.600000pt;}
.wd{width:59.760000pt;}
.wf{width:61.920000pt;}
.w19{width:64.400000pt;}
.w12{width:67.840000pt;}
.w7{width:71.546667pt;}
.w13{width:71.626667pt;}
.w14{width:72.320000pt;}
.w8{width:72.560000pt;}
.w16{width:82.080000pt;}
.wa{width:82.960000pt;}
.w3{width:91.066667pt;}
.w9{width:96.720000pt;}
.w11{width:98.080000pt;}
.w6{width:99.360000pt;}
.w15{width:104.880000pt;}
.w5{width:107.360000pt;}
.w10{width:108.346667pt;}
.we{width:119.520000pt;}
.w1a{width:120.960000pt;}
.w18{width:209.386667pt;}
.wc{width:227.466667pt;}
.wb{width:263.066667pt;}
.w17{width:275.066667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:3.520000pt;}
.x9{left:6.880000pt;}
.x1{left:60.480000pt;}
.x8{left:84.479988pt;}
.x24{left:98.879988pt;}
.x23{left:108.479988pt;}
.x17{left:123.760000pt;}
.xa{left:152.826667pt;}
.x2{left:179.146655pt;}
.xb{left:199.066667pt;}
.x18{left:232.746667pt;}
.x15{left:244.906655pt;}
.x12{left:260.026655pt;}
.x1d{left:282.426655pt;}
.x22{left:287.546655pt;}
.x4{left:299.146655pt;}
.xc{left:307.066667pt;}
.x13{left:324.826667pt;}
.x19{left:331.466667pt;}
.x5{left:334.186655pt;}
.x1e{left:336.826667pt;}
.x6{left:352.826655pt;}
.x7{left:370.586655pt;}
.x1a{left:399.946667pt;}
.xd{left:407.066667pt;}
.x1b{left:472.293333pt;}
.xe{left:479.253333pt;}
.x1c{left:545.253333pt;}
.x1f{left:546.853333pt;}
.xf{left:552.453333pt;}
.x20{left:611.893333pt;}
.x14{left:613.333333pt;}
.x11{left:638.053322pt;}
.x10{left:649.893333pt;}
.x21{left:679.013322pt;}
.x3{left:704.053322pt;}
}




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