
    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_418274fab875912a8810a084.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_44b417150a32f31ad3347424.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_49c9c572596a47fa6bafd610.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_bb616522cf2daa7c4fa4ec4c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7306c945198016b3aceae8bd.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9d5ad25b0d07632a891cffc2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c2c3a0c276946bed31d83302.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_345e1341f22f87bd39cb8a6c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c3b92b2f505d3909a53a25a0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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;}
.lsc{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.067200px;}
.ls11{letter-spacing:-0.063600px;}
.ls9{letter-spacing:-0.008400px;}
.ls5{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.lsf{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.098400px;}
.ls6{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls3{letter-spacing:0.174600px;}
.ls19{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.425520px;}
.ls18{letter-spacing:47.726640px;}
.ls15{letter-spacing:55.406640px;}
.ls10{letter-spacing:63.566640px;}
.ls17{letter-spacing:80.846640px;}
.ls13{letter-spacing:129.086640px;}
.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;}
}
.wsb{word-spacing:-60.120000px;}
.ws4{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.ws8{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws9{word-spacing:-13.162800px;}
.wsc{word-spacing:-13.159200px;}
.ws6{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._15{margin-left:-5.050080px;}
._14{margin-left:-3.684360px;}
._d{margin-left:-2.262120px;}
._0{margin-left:-1.110000px;}
._2{width:1.211268px;}
._9{width:2.522643px;}
._3{width:4.008600px;}
._4{width:5.168400px;}
._e{width:6.372600px;}
._f{width:7.635601px;}
._5{width:9.619200px;}
._6{width:10.701600px;}
._10{width:12.103200px;}
._8{width:14.381293px;}
._7{width:15.450600px;}
._11{width:16.653240px;}
._12{width:17.856121px;}
._16{width:19.311360px;}
._1{width:20.610360px;}
._17{width:21.630360px;}
._a{width:22.665000px;}
._c{width:23.668681px;}
._b{width:24.769801px;}
._13{width:29.098080px;}
._1d{width:38.199960px;}
._1e{width:39.872160px;}
._19{width:49.298400px;}
._18{width:50.440680px;}
._1b{width:61.382520px;}
._1c{width:62.464680px;}
._1a{width:112.304160px;}
._20{width:113.747040px;}
._1f{width:262.363680px;}
._21{width:323.926560px;}
._22{width:325.429560px;}
.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;}
.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;}
.ya9{bottom:7.920000px;}
.ycc{bottom:25.470000px;}
.yac{bottom:35.190000px;}
.ya7{bottom:62.550000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y74{bottom:115.950000px;}
.y5a{bottom:117.390000px;}
.y13c{bottom:125.940000px;}
.y164{bottom:128.640000px;}
.y73{bottom:133.500000px;}
.y59{bottom:134.940000px;}
.yf0{bottom:139.080000px;}
.y11d{bottom:139.170000px;}
.y24{bottom:142.320000px;}
.y9e{bottom:142.770000px;}
.y13b{bottom:143.580000px;}
.y163{bottom:146.190000px;}
.y58{bottom:152.580000px;}
.yef{bottom:156.630000px;}
.y11c{bottom:156.720000px;}
.y23{bottom:159.870000px;}
.y72{bottom:160.050000px;}
.y9d{bottom:160.320000px;}
.y57{bottom:170.130000px;}
.y162{bottom:172.830000px;}
.yee{bottom:174.270000px;}
.y9c{bottom:177.960000px;}
.y13a{bottom:179.130000px;}
.y22{bottom:186.780000px;}
.y56{bottom:187.680000px;}
.yc9{bottom:189.390000px;}
.y161{bottom:190.380000px;}
.yed{bottom:191.820000px;}
.y11b{bottom:191.910000px;}
.y71{bottom:192.720000px;}
.y9b{bottom:195.510000px;}
.y139{bottom:196.680000px;}
.y160{bottom:207.930000px;}
.yec{bottom:209.370000px;}
.y11a{bottom:209.460000px;}
.y138{bottom:214.320000px;}
.y9a{bottom:222.420000px;}
.y55{bottom:223.320000px;}
.yc8{bottom:224.940000px;}
.yeb{bottom:227.010000px;}
.y119{bottom:227.100000px;}
.y70{bottom:228.270000px;}
.y137{bottom:231.870000px;}
.y15f{bottom:234.570000px;}
.y21{bottom:235.380000px;}
.y54{bottom:240.870000px;}
.yc7{bottom:242.490000px;}
.yea{bottom:244.560000px;}
.y118{bottom:244.650000px;}
.y136{bottom:249.510000px;}
.y15e{bottom:252.120000px;}
.y53{bottom:258.510000px;}
.y6f{bottom:260.490000px;}
.ye9{bottom:262.200000px;}
.y135{bottom:267.060000px;}
.yc6{bottom:269.040000px;}
.y99{bottom:270.750000px;}
.y20{bottom:272.370000px;}
.y52{bottom:276.060000px;}
.y15d{bottom:279.030000px;}
.ye8{bottom:279.750000px;}
.y117{bottom:280.200000px;}
.y185{bottom:284.250000px;}
.y134{bottom:284.610000px;}
.y98{bottom:288.300000px;}
.y1f{bottom:290.010000px;}
.y51{bottom:293.610000px;}
.y116{bottom:297.840000px;}
.y184{bottom:301.800000px;}
.yc5{bottom:304.680000px;}
.y97{bottom:305.850000px;}
.y1e{bottom:307.560000px;}
.y50{bottom:311.250000px;}
.ye7{bottom:312.690000px;}
.y115{bottom:315.390000px;}
.y183{bottom:319.440000px;}
.y133{bottom:320.250000px;}
.yc4{bottom:322.230000px;}
.y15c{bottom:327.360000px;}
.y4f{bottom:328.800000px;}
.y96{bottom:332.400000px;}
.y114{bottom:332.940000px;}
.y132{bottom:337.800000px;}
.yc3{bottom:339.870000px;}
.ye6{bottom:340.050000px;}
.y1d{bottom:343.200000px;}
.y182{bottom:345.990000px;}
.y4e{bottom:346.440000px;}
.y113{bottom:350.580000px;}
.y15b{bottom:354.180000px;}
.y131{bottom:355.440000px;}
.yc2{bottom:357.420000px;}
.y1c{bottom:360.750000px;}
.y181{bottom:363.540000px;}
.y4d{bottom:363.990000px;}
.ye5{bottom:367.410000px;}
.y95{bottom:367.950000px;}
.y112{bottom:368.130000px;}
.y130{bottom:372.990000px;}
.yc1{bottom:375.870000px;}
.y1b{bottom:378.300000px;}
.y94{bottom:386.490000px;}
.y180{bottom:390.180000px;}
.y12f{bottom:390.540000px;}
.y15a{bottom:391.260000px;}
.yc0{bottom:393.420000px;}
.ye4{bottom:394.770000px;}
.y4c{bottom:399.540000px;}
.y93{bottom:404.040000px;}
.y17f{bottom:407.730000px;}
.y12e{bottom:408.180000px;}
.ybf{bottom:411.060000px;}
.y111{bottom:412.320000px;}
.y1a{bottom:413.940000px;}
.y4b{bottom:417.180000px;}
.y159{bottom:418.170000px;}
.ye3{bottom:422.040000px;}
.y92{bottom:422.400000px;}
.y17e{bottom:425.370000px;}
.y12d{bottom:425.730000px;}
.ybe{bottom:428.610000px;}
.y19{bottom:431.490000px;}
.y4a{bottom:434.730000px;}
.ybd{bottom:447.060000px;}
.y110{bottom:447.870000px;}
.y18{bottom:449.130000px;}
.ye2{bottom:449.400000px;}
.y17d{bottom:451.920000px;}
.y49{bottom:452.370000px;}
.y158{bottom:455.520000px;}
.y91{bottom:458.850000px;}
.y12c{bottom:461.370000px;}
.ybc{bottom:464.610000px;}
.y10f{bottom:465.510000px;}
.y17{bottom:466.680000px;}
.y48{bottom:469.950000px;}
.y17c{bottom:478.500000px;}
.y12b{bottom:478.950000px;}
.ybb{bottom:482.190000px;}
.y10e{bottom:483.090000px;}
.y16{bottom:484.260000px;}
.y90{bottom:485.430000px;}
.y47{bottom:487.500000px;}
.y17b{bottom:496.140000px;}
.y12a{bottom:496.500000px;}
.ye1{bottom:498.120000px;}
.yba{bottom:500.640000px;}
.y10d{bottom:500.730000px;}
.y157{bottom:503.790000px;}
.y46{bottom:505.140000px;}
.y17a{bottom:513.690000px;}
.y129{bottom:514.140000px;}
.yb9{bottom:518.190000px;}
.y15{bottom:519.900000px;}
.y8f{bottom:521.070000px;}
.y156{bottom:521.430000px;}
.y45{bottom:522.690000px;}
.y128{bottom:531.690000px;}
.ye0{bottom:533.760000px;}
.yb8{bottom:535.830000px;}
.y10c{bottom:536.280000px;}
.y14{bottom:537.450000px;}
.y8e{bottom:538.620000px;}
.y155{bottom:538.980000px;}
.y179{bottom:540.330000px;}
.y127{bottom:549.330000px;}
.ydf{bottom:551.310000px;}
.yb7{bottom:553.380000px;}
.y10b{bottom:553.830000px;}
.y13{bottom:555.090000px;}
.y8d{bottom:556.170000px;}
.y154{bottom:556.530000px;}
.y178{bottom:557.880000px;}
.y44{bottom:558.330000px;}
.yde{bottom:568.860000px;}
.yb6{bottom:570.930000px;}
.y10a{bottom:571.470000px;}
.y12{bottom:572.640000px;}
.y153{bottom:574.080000px;}
.y8c{bottom:574.620000px;}
.y177{bottom:575.430000px;}
.y43{bottom:575.880000px;}
.y126{bottom:584.880000px;}
.y109{bottom:589.020000px;}
.y8b{bottom:592.260000px;}
.y152{bottom:592.530000px;}
.y176{bottom:593.070000px;}
.y42{bottom:593.430000px;}
.ydd{bottom:595.500000px;}
.y125{bottom:602.430000px;}
.y108{bottom:606.660000px;}
.yb5{bottom:607.380000px;}
.y11{bottom:608.190000px;}
.y8a{bottom:609.810000px;}
.y151{bottom:610.170000px;}
.y41{bottom:611.070000px;}
.y6e{bottom:617.190000px;}
.y175{bottom:619.620000px;}
.y124{bottom:620.070000px;}
.y107{bottom:624.210000px;}
.yb4{bottom:625.020000px;}
.y10{bottom:625.830000px;}
.y89{bottom:627.450000px;}
.y150{bottom:627.720000px;}
.ydc{bottom:631.050000px;}
.y6d{bottom:634.740000px;}
.y174{bottom:637.260000px;}
.y123{bottom:637.620000px;}
.y88{bottom:645.000000px;}
.y14f{bottom:645.270000px;}
.y40{bottom:646.620000px;}
.ydb{bottom:648.690000px;}
.y6c{bottom:652.290000px;}
.y122{bottom:655.260000px;}
.yb1{bottom:657.960000px;}
.y106{bottom:659.760000px;}
.yf{bottom:661.380000px;}
.y87{bottom:662.550000px;}
.y14e{bottom:662.820000px;}
.y173{bottom:663.810000px;}
.y3f{bottom:664.260000px;}
.yda{bottom:666.240000px;}
.y6b{bottom:669.930000px;}
.y121{bottom:672.810000px;}
.y105{bottom:677.400000px;}
.ye{bottom:679.020000px;}
.y86{bottom:681.000000px;}
.y14d{bottom:681.270000px;}
.y172{bottom:681.360000px;}
.y3e{bottom:681.810000px;}
.yd9{bottom:683.790000px;}
.yb3{bottom:685.320000px;}
.y104{bottom:694.950000px;}
.y6a{bottom:696.390000px;}
.yd{bottom:696.570000px;}
.y85{bottom:698.550000px;}
.y14c{bottom:698.910000px;}
.y3d{bottom:699.360000px;}
.yd8{bottom:701.430000px;}
.y171{bottom:708.000000px;}
.yb2{bottom:712.590000px;}
.yc{bottom:714.120000px;}
.y14b{bottom:716.460000px;}
.y3c{bottom:717.000000px;}
.y170{bottom:725.550000px;}
.y103{bottom:730.140000px;}
.y69{bottom:732.120000px;}
.y14a{bottom:734.100000px;}
.yd7{bottom:734.370000px;}
.y3b{bottom:734.550000px;}
.yae{bottom:739.950000px;}
.yb{bottom:741.120000px;}
.y16f{bottom:743.190000px;}
.y84{bottom:744.450000px;}
.y102{bottom:747.690000px;}
.y68{bottom:749.670000px;}
.y149{bottom:751.650000px;}
.y120{bottom:752.550000px;}
.yd6{bottom:761.730000px;}
.y101{bottom:765.330000px;}
.yb0{bottom:767.310000px;}
.y67{bottom:768.120000px;}
.y16e{bottom:769.740000px;}
.y3a{bottom:770.190000px;}
.y148{bottom:779.460000px;}
.y83{bottom:780.000000px;}
.y66{bottom:785.670000px;}
.y16d{bottom:787.290000px;}
.y39{bottom:787.740000px;}
.ya{bottom:787.830000px;}
.yaf{bottom:794.670000px;}
.y82{bottom:797.550000px;}
.y100{bottom:800.880000px;}
.y16c{bottom:804.930000px;}
.y38{bottom:805.290000px;}
.y81{bottom:815.190000px;}
.y147{bottom:816.450000px;}
.yff{bottom:818.520000px;}
.yab{bottom:821.940000px;}
.y65{bottom:822.030000px;}
.y16b{bottom:822.480000px;}
.y37{bottom:822.930000px;}
.y9{bottom:823.380000px;}
.yd5{bottom:827.970000px;}
.y146{bottom:834.000000px;}
.yfe{bottom:836.070000px;}
.y36{bottom:840.480000px;}
.y80{bottom:841.740000px;}
.y64{bottom:848.670000px;}
.y16a{bottom:849.030000px;}
.yad{bottom:849.300000px;}
.y145{bottom:851.550000px;}
.yfd{bottom:853.620000px;}
.y35{bottom:858.030000px;}
.y8{bottom:859.200000px;}
.yd4{bottom:863.610000px;}
.y144{bottom:870.000000px;}
.yfc{bottom:871.260000px;}
.y11f{bottom:875.670000px;}
.ya6{bottom:876.660000px;}
.y7f{bottom:877.380000px;}
.yd3{bottom:881.160000px;}
.y63{bottom:884.220000px;}
.y143{bottom:887.550000px;}
.yfb{bottom:888.810000px;}
.y11e{bottom:893.220000px;}
.y34{bottom:893.670000px;}
.y7e{bottom:894.930000px;}
.y7{bottom:898.980000px;}
.y62{bottom:901.860000px;}
.yaa{bottom:903.930000px;}
.y142{bottom:905.100000px;}
.yfa{bottom:906.450000px;}
.yd2{bottom:907.710000px;}
.y169{bottom:910.860000px;}
.y33{bottom:911.220000px;}
.y7d{bottom:912.480000px;}
.y6{bottom:916.980000px;}
.y141{bottom:923.550000px;}
.y32{bottom:928.860000px;}
.ya8{bottom:931.290000px;}
.y61{bottom:937.410000px;}
.y7c{bottom:939.120000px;}
.y140{bottom:941.190000px;}
.yf9{bottom:942.000000px;}
.yd1{bottom:943.350000px;}
.y31{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y60{bottom:954.960000px;}
.ya4{bottom:958.650000px;}
.y13f{bottom:958.740000px;}
.yf8{bottom:959.550000px;}
.yd0{bottom:960.900000px;}
.y30{bottom:963.960000px;}
.y5f{bottom:972.600000px;}
.y7b{bottom:975.030000px;}
.y13e{bottom:976.290000px;}
.yf7{bottom:977.190000px;}
.ycf{bottom:978.540000px;}
.y2f{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y5e{bottom:990.150000px;}
.yf6{bottom:994.740000px;}
.yce{bottom:996.090000px;}
.y2e{bottom:999.150000px;}
.y13d{bottom:1004.100000px;}
.ya3{bottom:1007.340000px;}
.y5d{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.ycd{bottom:1013.670000px;}
.y2d{bottom:1016.820000px;}
.y7a{bottom:1023.300000px;}
.y5c{bottom:1025.370000px;}
.yf5{bottom:1029.960000px;}
.y168{bottom:1034.370000px;}
.y79{bottom:1040.850000px;}
.ya2{bottom:1042.920000px;}
.ycb{bottom:1046.700000px;}
.yf4{bottom:1047.510000px;}
.y5b{bottom:1051.920000px;}
.y2c{bottom:1052.370000px;}
.y78{bottom:1059.300000px;}
.ya1{bottom:1060.560000px;}
.y167{bottom:1060.920000px;}
.yf3{bottom:1065.150000px;}
.y2b{bottom:1069.920000px;}
.y77{bottom:1076.850000px;}
.ya0{bottom:1078.110000px;}
.y166{bottom:1078.560000px;}
.y2a{bottom:1087.560000px;}
.yca{bottom:1091.610000px;}
.yf2{bottom:1091.700000px;}
.y76{bottom:1095.300000px;}
.y165{bottom:1096.110000px;}
.y9f{bottom:1104.750000px;}
.y29{bottom:1105.110000px;}
.y75{bottom:1112.850000px;}
.y28{bottom:1122.750000px;}
.yf1{bottom:1127.610000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.hc{height:26.550000px;}
.h11{height:26.580000px;}
.he{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h10{height:44.190000px;}
.h7{height:50.902383px;}
.hf{height:53.910000px;}
.h5{height:55.779258px;}
.ha{height:59.973223px;}
.h9{height:61.793886px;}
.h8{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:71.019492px;}
.hd{height:81.270000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:62.190000px;}
.w11{width:63.090000px;}
.wa{width:82.440000px;}
.w10{width:84.330000px;}
.wc{width:98.730000px;}
.w3{width:111.420000px;}
.w5{width:115.320000px;}
.w6{width:115.380000px;}
.wf{width:120.090000px;}
.we{width:123.030000px;}
.w4{width:128.340000px;}
.w12{width:133.380000px;}
.w8{width:146.430000px;}
.w9{width:157.710000px;}
.w7{width:182.280000px;}
.wd{width:226.650000px;}
.w14{width:290.370000px;}
.w13{width:368.400000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:3.870000px;}
.x1{left:68.040000px;}
.x12{left:69.570000px;}
.xd{left:78.659987px;}
.xe{left:79.830000px;}
.x4{left:95.039987px;}
.x1c{left:111.239987px;}
.x18{left:116.820000px;}
.x5{left:122.039987px;}
.x1a{left:149.039987px;}
.x1b{left:176.069987px;}
.x2{left:192.719987px;}
.x8{left:210.180000px;}
.xf{left:262.830000px;}
.x13{left:296.940000px;}
.xa{left:322.410000px;}
.x7{left:341.489987px;}
.x10{left:409.980000px;}
.x14{left:420.690000px;}
.xb{left:451.560000px;}
.x19{left:486.030000px;}
.x15{left:541.500000px;}
.xc{left:567.690000px;}
.x16{left:626.550000px;}
.x11{left:651.750000px;}
.x17{left:690.360000px;}
.x6{left:714.389987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.059733pt;}
.ls11{letter-spacing:-0.056533pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.lsf{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.087467pt;}
.ls6{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls3{letter-spacing:0.155200pt;}
.ls19{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.378240pt;}
.ls18{letter-spacing:42.423680pt;}
.ls15{letter-spacing:49.250347pt;}
.ls10{letter-spacing:56.503680pt;}
.ls17{letter-spacing:71.863680pt;}
.ls13{letter-spacing:114.743680pt;}
.wsb{word-spacing:-53.440000pt;}
.ws4{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.ws8{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws9{word-spacing:-11.700267pt;}
.wsc{word-spacing:-11.697067pt;}
.ws6{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._15{margin-left:-4.488960pt;}
._14{margin-left:-3.274987pt;}
._d{margin-left:-2.010773pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.076683pt;}
._9{width:2.242350pt;}
._3{width:3.563200pt;}
._4{width:4.594133pt;}
._e{width:5.664533pt;}
._f{width:6.787201pt;}
._5{width:8.550400pt;}
._6{width:9.512534pt;}
._10{width:10.758400pt;}
._8{width:12.783371pt;}
._7{width:13.733866pt;}
._11{width:14.802880pt;}
._12{width:15.872108pt;}
._16{width:17.165653pt;}
._1{width:18.320320pt;}
._17{width:19.226987pt;}
._a{width:20.146666pt;}
._c{width:21.038827pt;}
._b{width:22.017601pt;}
._13{width:25.864960pt;}
._1d{width:33.955520pt;}
._1e{width:35.441920pt;}
._19{width:43.820800pt;}
._18{width:44.836160pt;}
._1b{width:54.562240pt;}
._1c{width:55.524160pt;}
._1a{width:99.825920pt;}
._20{width:101.108480pt;}
._1f{width:233.212160pt;}
._21{width:287.934720pt;}
._22{width:289.270720pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.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;}
.ya9{bottom:7.040000pt;}
.ycc{bottom:22.640000pt;}
.yac{bottom:31.280000pt;}
.ya7{bottom:55.600000pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y74{bottom:103.066667pt;}
.y5a{bottom:104.346667pt;}
.y13c{bottom:111.946667pt;}
.y164{bottom:114.346667pt;}
.y73{bottom:118.666667pt;}
.y59{bottom:119.946667pt;}
.yf0{bottom:123.626667pt;}
.y11d{bottom:123.706667pt;}
.y24{bottom:126.506667pt;}
.y9e{bottom:126.906667pt;}
.y13b{bottom:127.626667pt;}
.y163{bottom:129.946667pt;}
.y58{bottom:135.626667pt;}
.yef{bottom:139.226667pt;}
.y11c{bottom:139.306667pt;}
.y23{bottom:142.106667pt;}
.y72{bottom:142.266667pt;}
.y9d{bottom:142.506667pt;}
.y57{bottom:151.226667pt;}
.y162{bottom:153.626667pt;}
.yee{bottom:154.906667pt;}
.y9c{bottom:158.186667pt;}
.y13a{bottom:159.226667pt;}
.y22{bottom:166.026667pt;}
.y56{bottom:166.826667pt;}
.yc9{bottom:168.346667pt;}
.y161{bottom:169.226667pt;}
.yed{bottom:170.506667pt;}
.y11b{bottom:170.586667pt;}
.y71{bottom:171.306667pt;}
.y9b{bottom:173.786667pt;}
.y139{bottom:174.826667pt;}
.y160{bottom:184.826667pt;}
.yec{bottom:186.106667pt;}
.y11a{bottom:186.186667pt;}
.y138{bottom:190.506667pt;}
.y9a{bottom:197.706667pt;}
.y55{bottom:198.506667pt;}
.yc8{bottom:199.946667pt;}
.yeb{bottom:201.786667pt;}
.y119{bottom:201.866667pt;}
.y70{bottom:202.906667pt;}
.y137{bottom:206.106667pt;}
.y15f{bottom:208.506667pt;}
.y21{bottom:209.226667pt;}
.y54{bottom:214.106667pt;}
.yc7{bottom:215.546667pt;}
.yea{bottom:217.386667pt;}
.y118{bottom:217.466667pt;}
.y136{bottom:221.786667pt;}
.y15e{bottom:224.106667pt;}
.y53{bottom:229.786667pt;}
.y6f{bottom:231.546667pt;}
.ye9{bottom:233.066667pt;}
.y135{bottom:237.386667pt;}
.yc6{bottom:239.146667pt;}
.y99{bottom:240.666667pt;}
.y20{bottom:242.106667pt;}
.y52{bottom:245.386667pt;}
.y15d{bottom:248.026667pt;}
.ye8{bottom:248.666667pt;}
.y117{bottom:249.066667pt;}
.y185{bottom:252.666667pt;}
.y134{bottom:252.986667pt;}
.y98{bottom:256.266667pt;}
.y1f{bottom:257.786667pt;}
.y51{bottom:260.986667pt;}
.y116{bottom:264.746667pt;}
.y184{bottom:268.266667pt;}
.yc5{bottom:270.826667pt;}
.y97{bottom:271.866667pt;}
.y1e{bottom:273.386667pt;}
.y50{bottom:276.666667pt;}
.ye7{bottom:277.946667pt;}
.y115{bottom:280.346667pt;}
.y183{bottom:283.946667pt;}
.y133{bottom:284.666667pt;}
.yc4{bottom:286.426667pt;}
.y15c{bottom:290.986667pt;}
.y4f{bottom:292.266667pt;}
.y96{bottom:295.466667pt;}
.y114{bottom:295.946667pt;}
.y132{bottom:300.266667pt;}
.yc3{bottom:302.106667pt;}
.ye6{bottom:302.266667pt;}
.y1d{bottom:305.066667pt;}
.y182{bottom:307.546667pt;}
.y4e{bottom:307.946667pt;}
.y113{bottom:311.626667pt;}
.y15b{bottom:314.826667pt;}
.y131{bottom:315.946667pt;}
.yc2{bottom:317.706667pt;}
.y1c{bottom:320.666667pt;}
.y181{bottom:323.146667pt;}
.y4d{bottom:323.546667pt;}
.ye5{bottom:326.586667pt;}
.y95{bottom:327.066667pt;}
.y112{bottom:327.226667pt;}
.y130{bottom:331.546667pt;}
.yc1{bottom:334.106667pt;}
.y1b{bottom:336.266667pt;}
.y94{bottom:343.546667pt;}
.y180{bottom:346.826667pt;}
.y12f{bottom:347.146667pt;}
.y15a{bottom:347.786667pt;}
.yc0{bottom:349.706667pt;}
.ye4{bottom:350.906667pt;}
.y4c{bottom:355.146667pt;}
.y93{bottom:359.146667pt;}
.y17f{bottom:362.426667pt;}
.y12e{bottom:362.826667pt;}
.ybf{bottom:365.386667pt;}
.y111{bottom:366.506667pt;}
.y1a{bottom:367.946667pt;}
.y4b{bottom:370.826667pt;}
.y159{bottom:371.706667pt;}
.ye3{bottom:375.146667pt;}
.y92{bottom:375.466667pt;}
.y17e{bottom:378.106667pt;}
.y12d{bottom:378.426667pt;}
.ybe{bottom:380.986667pt;}
.y19{bottom:383.546667pt;}
.y4a{bottom:386.426667pt;}
.ybd{bottom:397.386667pt;}
.y110{bottom:398.106667pt;}
.y18{bottom:399.226667pt;}
.ye2{bottom:399.466667pt;}
.y17d{bottom:401.706667pt;}
.y49{bottom:402.106667pt;}
.y158{bottom:404.906667pt;}
.y91{bottom:407.866667pt;}
.y12c{bottom:410.106667pt;}
.ybc{bottom:412.986667pt;}
.y10f{bottom:413.786667pt;}
.y17{bottom:414.826667pt;}
.y48{bottom:417.733333pt;}
.y17c{bottom:425.333333pt;}
.y12b{bottom:425.733333pt;}
.ybb{bottom:428.613333pt;}
.y10e{bottom:429.413333pt;}
.y16{bottom:430.453333pt;}
.y90{bottom:431.493333pt;}
.y47{bottom:433.333333pt;}
.y17b{bottom:441.013333pt;}
.y12a{bottom:441.333333pt;}
.ye1{bottom:442.773333pt;}
.yba{bottom:445.013333pt;}
.y10d{bottom:445.093333pt;}
.y157{bottom:447.813333pt;}
.y46{bottom:449.013333pt;}
.y17a{bottom:456.613333pt;}
.y129{bottom:457.013333pt;}
.yb9{bottom:460.613333pt;}
.y15{bottom:462.133333pt;}
.y8f{bottom:463.173333pt;}
.y156{bottom:463.493333pt;}
.y45{bottom:464.613333pt;}
.y128{bottom:472.613333pt;}
.ye0{bottom:474.453333pt;}
.yb8{bottom:476.293333pt;}
.y10c{bottom:476.693333pt;}
.y14{bottom:477.733333pt;}
.y8e{bottom:478.773333pt;}
.y155{bottom:479.093333pt;}
.y179{bottom:480.293333pt;}
.y127{bottom:488.293333pt;}
.ydf{bottom:490.053333pt;}
.yb7{bottom:491.893333pt;}
.y10b{bottom:492.293333pt;}
.y13{bottom:493.413333pt;}
.y8d{bottom:494.373333pt;}
.y154{bottom:494.693333pt;}
.y178{bottom:495.893333pt;}
.y44{bottom:496.293333pt;}
.yde{bottom:505.653333pt;}
.yb6{bottom:507.493333pt;}
.y10a{bottom:507.973333pt;}
.y12{bottom:509.013333pt;}
.y153{bottom:510.293333pt;}
.y8c{bottom:510.773333pt;}
.y177{bottom:511.493333pt;}
.y43{bottom:511.893333pt;}
.y126{bottom:519.893333pt;}
.y109{bottom:523.573333pt;}
.y8b{bottom:526.453333pt;}
.y152{bottom:526.693333pt;}
.y176{bottom:527.173333pt;}
.y42{bottom:527.493333pt;}
.ydd{bottom:529.333333pt;}
.y125{bottom:535.493333pt;}
.y108{bottom:539.253333pt;}
.yb5{bottom:539.893333pt;}
.y11{bottom:540.613333pt;}
.y8a{bottom:542.053333pt;}
.y151{bottom:542.373333pt;}
.y41{bottom:543.173333pt;}
.y6e{bottom:548.613333pt;}
.y175{bottom:550.773333pt;}
.y124{bottom:551.173333pt;}
.y107{bottom:554.853333pt;}
.yb4{bottom:555.573333pt;}
.y10{bottom:556.293333pt;}
.y89{bottom:557.733333pt;}
.y150{bottom:557.973333pt;}
.ydc{bottom:560.933333pt;}
.y6d{bottom:564.213333pt;}
.y174{bottom:566.453333pt;}
.y123{bottom:566.773333pt;}
.y88{bottom:573.333333pt;}
.y14f{bottom:573.573333pt;}
.y40{bottom:574.773333pt;}
.ydb{bottom:576.613333pt;}
.y6c{bottom:579.813333pt;}
.y122{bottom:582.453333pt;}
.yb1{bottom:584.853333pt;}
.y106{bottom:586.453333pt;}
.yf{bottom:587.893333pt;}
.y87{bottom:588.933333pt;}
.y14e{bottom:589.173333pt;}
.y173{bottom:590.053333pt;}
.y3f{bottom:590.453333pt;}
.yda{bottom:592.213333pt;}
.y6b{bottom:595.493333pt;}
.y121{bottom:598.053333pt;}
.y105{bottom:602.133333pt;}
.ye{bottom:603.573333pt;}
.y86{bottom:605.333333pt;}
.y14d{bottom:605.573333pt;}
.y172{bottom:605.653333pt;}
.y3e{bottom:606.053333pt;}
.yd9{bottom:607.813333pt;}
.yb3{bottom:609.173333pt;}
.y104{bottom:617.733333pt;}
.y6a{bottom:619.013333pt;}
.yd{bottom:619.173333pt;}
.y85{bottom:620.933333pt;}
.y14c{bottom:621.253333pt;}
.y3d{bottom:621.653333pt;}
.yd8{bottom:623.493333pt;}
.y171{bottom:629.333333pt;}
.yb2{bottom:633.413333pt;}
.yc{bottom:634.773333pt;}
.y14b{bottom:636.853333pt;}
.y3c{bottom:637.333333pt;}
.y170{bottom:644.933333pt;}
.y103{bottom:649.013333pt;}
.y69{bottom:650.773333pt;}
.y14a{bottom:652.533333pt;}
.yd7{bottom:652.773333pt;}
.y3b{bottom:652.933333pt;}
.yae{bottom:657.733333pt;}
.yb{bottom:658.773333pt;}
.y16f{bottom:660.613333pt;}
.y84{bottom:661.733333pt;}
.y102{bottom:664.613333pt;}
.y68{bottom:666.373333pt;}
.y149{bottom:668.133333pt;}
.y120{bottom:668.933333pt;}
.yd6{bottom:677.093333pt;}
.y101{bottom:680.293333pt;}
.yb0{bottom:682.053333pt;}
.y67{bottom:682.773333pt;}
.y16e{bottom:684.213333pt;}
.y3a{bottom:684.613333pt;}
.y148{bottom:692.853333pt;}
.y83{bottom:693.333333pt;}
.y66{bottom:698.373333pt;}
.y16d{bottom:699.813333pt;}
.y39{bottom:700.213333pt;}
.ya{bottom:700.293333pt;}
.yaf{bottom:706.373333pt;}
.y82{bottom:708.933333pt;}
.y100{bottom:711.893333pt;}
.y16c{bottom:715.493333pt;}
.y38{bottom:715.813333pt;}
.y81{bottom:724.613333pt;}
.y147{bottom:725.733333pt;}
.yff{bottom:727.573333pt;}
.yab{bottom:730.613333pt;}
.y65{bottom:730.693333pt;}
.y16b{bottom:731.093333pt;}
.y37{bottom:731.493333pt;}
.y9{bottom:731.893333pt;}
.yd5{bottom:735.973333pt;}
.y146{bottom:741.333333pt;}
.yfe{bottom:743.173333pt;}
.y36{bottom:747.093333pt;}
.y80{bottom:748.213333pt;}
.y64{bottom:754.373333pt;}
.y16a{bottom:754.693333pt;}
.yad{bottom:754.933333pt;}
.y145{bottom:756.933333pt;}
.yfd{bottom:758.773333pt;}
.y35{bottom:762.693333pt;}
.y8{bottom:763.733333pt;}
.yd4{bottom:767.653333pt;}
.y144{bottom:773.333333pt;}
.yfc{bottom:774.453333pt;}
.y11f{bottom:778.373333pt;}
.ya6{bottom:779.253333pt;}
.y7f{bottom:779.893333pt;}
.yd3{bottom:783.253333pt;}
.y63{bottom:785.973333pt;}
.y143{bottom:788.933333pt;}
.yfb{bottom:790.053333pt;}
.y11e{bottom:793.973333pt;}
.y34{bottom:794.373333pt;}
.y7e{bottom:795.493333pt;}
.y7{bottom:799.093333pt;}
.y62{bottom:801.653333pt;}
.yaa{bottom:803.493333pt;}
.y142{bottom:804.533333pt;}
.yfa{bottom:805.733333pt;}
.yd2{bottom:806.853333pt;}
.y169{bottom:809.653333pt;}
.y33{bottom:809.973333pt;}
.y7d{bottom:811.093333pt;}
.y6{bottom:815.093333pt;}
.y141{bottom:820.933333pt;}
.y32{bottom:825.653333pt;}
.ya8{bottom:827.813333pt;}
.y61{bottom:833.253333pt;}
.y7c{bottom:834.773333pt;}
.y140{bottom:836.613333pt;}
.yf9{bottom:837.333333pt;}
.yd1{bottom:838.533333pt;}
.y31{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y60{bottom:848.853333pt;}
.ya4{bottom:852.133333pt;}
.y13f{bottom:852.213333pt;}
.yf8{bottom:852.933333pt;}
.yd0{bottom:854.133333pt;}
.y30{bottom:856.853333pt;}
.y5f{bottom:864.533333pt;}
.y7b{bottom:866.693333pt;}
.y13e{bottom:867.813333pt;}
.yf7{bottom:868.613333pt;}
.ycf{bottom:869.813333pt;}
.y2f{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y5e{bottom:880.133333pt;}
.yf6{bottom:884.213333pt;}
.yce{bottom:885.413333pt;}
.y2e{bottom:888.133333pt;}
.y13d{bottom:892.533333pt;}
.ya3{bottom:895.413333pt;}
.y5d{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.ycd{bottom:901.040000pt;}
.y2d{bottom:903.840000pt;}
.y7a{bottom:909.600000pt;}
.y5c{bottom:911.440000pt;}
.yf5{bottom:915.520000pt;}
.y168{bottom:919.440000pt;}
.y79{bottom:925.200000pt;}
.ya2{bottom:927.040000pt;}
.ycb{bottom:930.400000pt;}
.yf4{bottom:931.120000pt;}
.y5b{bottom:935.040000pt;}
.y2c{bottom:935.440000pt;}
.y78{bottom:941.600000pt;}
.ya1{bottom:942.720000pt;}
.y167{bottom:943.040000pt;}
.yf3{bottom:946.800000pt;}
.y2b{bottom:951.040000pt;}
.y77{bottom:957.200000pt;}
.ya0{bottom:958.320000pt;}
.y166{bottom:958.720000pt;}
.y2a{bottom:966.720000pt;}
.yca{bottom:970.320000pt;}
.yf2{bottom:970.400000pt;}
.y76{bottom:973.600000pt;}
.y165{bottom:974.320000pt;}
.y9f{bottom:982.000000pt;}
.y29{bottom:982.320000pt;}
.y75{bottom:989.200000pt;}
.y28{bottom:998.000000pt;}
.yf1{bottom:1002.320000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.h11{height:23.626667pt;}
.he{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h10{height:39.280000pt;}
.h7{height:45.246562pt;}
.hf{height:47.920000pt;}
.h5{height:49.581562pt;}
.ha{height:53.309531pt;}
.h9{height:54.927899pt;}
.h8{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:63.128437pt;}
.hd{height:72.240000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:55.280000pt;}
.w11{width:56.080000pt;}
.wa{width:73.280000pt;}
.w10{width:74.960000pt;}
.wc{width:87.760000pt;}
.w3{width:99.040000pt;}
.w5{width:102.506667pt;}
.w6{width:102.560000pt;}
.wf{width:106.746667pt;}
.we{width:109.360000pt;}
.w4{width:114.080000pt;}
.w12{width:118.560000pt;}
.w8{width:130.160000pt;}
.w9{width:140.186667pt;}
.w7{width:162.026667pt;}
.wd{width:201.466667pt;}
.w14{width:258.106667pt;}
.w13{width:327.466667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:3.440000pt;}
.x1{left:60.480000pt;}
.x12{left:61.840000pt;}
.xd{left:69.919988pt;}
.xe{left:70.960000pt;}
.x4{left:84.479988pt;}
.x1c{left:98.879988pt;}
.x18{left:103.840000pt;}
.x5{left:108.479988pt;}
.x1a{left:132.479988pt;}
.x1b{left:156.506655pt;}
.x2{left:171.306655pt;}
.x8{left:186.826667pt;}
.xf{left:233.626667pt;}
.x13{left:263.946667pt;}
.xa{left:286.586667pt;}
.x7{left:303.546655pt;}
.x10{left:364.426667pt;}
.x14{left:373.946667pt;}
.xb{left:401.386667pt;}
.x19{left:432.026667pt;}
.x15{left:481.333333pt;}
.xc{left:504.613333pt;}
.x16{left:556.933333pt;}
.x11{left:579.333333pt;}
.x17{left:613.653333pt;}
.x6{left:635.013322pt;}
.x3{left:711.413322pt;}
}




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