
    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_9c9c5ff68a3a13bf8665a915.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_df4ecd2ab7da0bcf292c0e1e.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_43f48dcfa5639cf2c46dd269.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_b6cc475ed5fda2698be891a3.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_f9df8080a2f97559ef549330.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_51c5918044c8034f1e6128a0.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_96c3676d62ca38703507a0d4.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_3b27d4adf17a365190ab12bd.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e30586f9cbfae00974736582.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;}
.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;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls18{letter-spacing:-0.453000px;}
.ls20{letter-spacing:-0.391800px;}
.ls27{letter-spacing:-0.299400px;}
.ls28{letter-spacing:-0.243600px;}
.ls15{letter-spacing:-0.186600px;}
.ls24{letter-spacing:-0.160800px;}
.ls8{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.121200px;}
.ls1a{letter-spacing:-0.101400px;}
.ls7{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls16{letter-spacing:-0.063600px;}
.ls22{letter-spacing:-0.040320px;}
.ls21{letter-spacing:-0.031680px;}
.ls1b{letter-spacing:-0.008640px;}
.lsb{letter-spacing:-0.008400px;}
.ls1e{letter-spacing:-0.006120px;}
.ls5{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.016560px;}
.ls1c{letter-spacing:0.023040px;}
.ls12{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.048960px;}
.ls17{letter-spacing:0.060480px;}
.lse{letter-spacing:0.060600px;}
.ls9{letter-spacing:0.065400px;}
.ls3{letter-spacing:0.065520px;}
.ls11{letter-spacing:0.074160px;}
.ls19{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1f{letter-spacing:0.114480px;}
.lsd{letter-spacing:0.115800px;}
.ls26{letter-spacing:0.116400px;}
.ls1d{letter-spacing:0.118200px;}
.ls6{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.173400px;}
.ls2b{letter-spacing:0.201600px;}
.ls4{letter-spacing:0.266400px;}
.ls10{letter-spacing:0.275400px;}
.ls23{letter-spacing:0.319800px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.534600px;}
.ls29{letter-spacing:2.973600px;}
.ls2c{letter-spacing:47.726640px;}
.ls2a{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;}
.wsc{word-spacing:-14.372400px;}
.ws18{word-spacing:-13.428000px;}
.wsa{word-spacing:-13.399800px;}
.ws13{word-spacing:-13.344600px;}
.ws5{word-spacing:-13.342200px;}
.ws10{word-spacing:-13.300800px;}
.wsd{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.ws12{word-spacing:-13.220280px;}
.wse{word-spacing:-13.162800px;}
.ws11{word-spacing:-13.125000px;}
.ws14{word-spacing:-13.065600px;}
.wsb{word-spacing:-13.039800px;}
.wsf{word-spacing:-12.773400px;}
.ws15{word-spacing:-10.550160px;}
.ws16{word-spacing:-10.533600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-9.331800px;}
.ws6{word-spacing:-8.614200px;}
.ws3{word-spacing:-8.553600px;}
.ws17{word-spacing:-8.254200px;}
.ws9{word-spacing:0.000000px;}
.ws8{word-spacing:4.304880px;}
._b{margin-left:-4.073741px;}
._a{margin-left:-3.006000px;}
._8{margin-left:-1.036459px;}
._1{width:1.258703px;}
._9{width:2.624353px;}
._0{width:3.690636px;}
._3{width:5.049444px;}
._2{width:6.779868px;}
._5{width:8.395739px;}
._4{width:9.486588px;}
._7{width:11.001840px;}
._6{width:12.347040px;}
._c{width:14.248440px;}
._11{width:16.301113px;}
._13{width:18.156240px;}
._12{width:19.572960px;}
._14{width:20.993520px;}
._15{width:23.038080px;}
._16{width:24.733080px;}
._17{width:27.214440px;}
._d{width:44.573760px;}
._e{width:62.573760px;}
._f{width:133.767000px;}
._10{width:152.213760px;}
.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;}
.fs8{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y77{bottom:7.830000px;}
.y7b{bottom:7.920000px;}
.yd0{bottom:17.640000px;}
.y81{bottom:21.510000px;}
.yb7{bottom:25.470000px;}
.ye1{bottom:29.880000px;}
.yb1{bottom:29.970000px;}
.y79{bottom:35.190000px;}
.yd8{bottom:47.970000px;}
.yb0{bottom:52.020000px;}
.yb5{bottom:52.110000px;}
.yd7{bottom:65.520000px;}
.yb2{bottom:69.660000px;}
.y2{bottom:73.380000px;}
.ye0{bottom:74.070000px;}
.yaf{bottom:74.160000px;}
.y29{bottom:74.190000px;}
.yd6{bottom:87.660000px;}
.yae{bottom:91.740000px;}
.ydb{bottom:96.210000px;}
.y1{bottom:101.640000px;}
.yd5{bottom:105.210000px;}
.yda{bottom:118.260000px;}
.yf0{bottom:118.380000px;}
.y166{bottom:124.680000px;}
.ycf{bottom:125.580000px;}
.yd4{bottom:127.260000px;}
.y84{bottom:127.830000px;}
.y13e{bottom:131.520000px;}
.y40{bottom:132.240000px;}
.y11d{bottom:137.370000px;}
.yc8{bottom:139.620000px;}
.ya9{bottom:140.160000px;}
.yd9{bottom:140.400000px;}
.y165{bottom:142.320000px;}
.yce{bottom:143.220000px;}
.yd3{bottom:144.900000px;}
.y13d{bottom:149.070000px;}
.y3f{bottom:149.790000px;}
.yef{bottom:150.510000px;}
.y65{bottom:150.600000px;}
.y11c{bottom:154.920000px;}
.y83{bottom:155.100000px;}
.y27{bottom:155.910000px;}
.yd2{bottom:162.480000px;}
.y13c{bottom:166.710000px;}
.y64{bottom:168.150000px;}
.y164{bottom:168.870000px;}
.y26{bottom:173.550000px;}
.yc7{bottom:175.170000px;}
.ya8{bottom:175.800000px;}
.ycd{bottom:178.050000px;}
.y80{bottom:182.460000px;}
.yee{bottom:182.550000px;}
.y3e{bottom:185.340000px;}
.y163{bottom:186.510000px;}
.y11b{bottom:190.560000px;}
.ycc{bottom:192.090000px;}
.y13b{bottom:193.260000px;}
.yed{bottom:196.590000px;}
.y63{bottom:203.790000px;}
.y162{bottom:204.060000px;}
.y11a{bottom:208.110000px;}
.y25{bottom:209.100000px;}
.y82{bottom:209.820000px;}
.yc6{bottom:210.720000px;}
.y13a{bottom:210.900000px;}
.ya7{bottom:211.350000px;}
.y3d{bottom:220.980000px;}
.y62{bottom:221.340000px;}
.ycb{bottom:224.940000px;}
.y119{bottom:225.750000px;}
.y24{bottom:226.740000px;}
.y139{bottom:228.450000px;}
.yec{bottom:229.440000px;}
.y161{bottom:230.610000px;}
.y7d{bottom:237.180000px;}
.y3c{bottom:238.530000px;}
.yca{bottom:242.490000px;}
.y118{bottom:243.300000px;}
.y23{bottom:244.290000px;}
.yc5{bottom:246.360000px;}
.ya6{bottom:246.900000px;}
.yeb{bottom:246.990000px;}
.y160{bottom:248.250000px;}
.y138{bottom:255.000000px;}
.y61{bottom:256.890000px;}
.y22{bottom:261.840000px;}
.y7f{bottom:264.450000px;}
.y15f{bottom:265.800000px;}
.y3b{bottom:274.170000px;}
.y60{bottom:274.530000px;}
.yc9{bottom:274.710000px;}
.y117{bottom:278.850000px;}
.yea{bottom:279.210000px;}
.y21{bottom:279.480000px;}
.yc4{bottom:281.910000px;}
.ya5{bottom:282.540000px;}
.yfd{bottom:286.680000px;}
.y7e{bottom:291.810000px;}
.y5f{bottom:292.080000px;}
.y15e{bottom:292.440000px;}
.y116{bottom:296.490000px;}
.y20{bottom:297.030000px;}
.ya4{bottom:300.090000px;}
.yfc{bottom:304.230000px;}
.y3a{bottom:309.720000px;}
.y15d{bottom:309.990000px;}
.y115{bottom:314.040000px;}
.y1f{bottom:314.670000px;}
.yc3{bottom:317.550000px;}
.y5e{bottom:318.720000px;}
.y78{bottom:319.170000px;}
.y39{bottom:327.270000px;}
.y137{bottom:330.240000px;}
.yfb{bottom:330.780000px;}
.y114{bottom:331.680000px;}
.ya3{bottom:335.730000px;}
.y15c{bottom:336.540000px;}
.y1e{bottom:341.580000px;}
.y38{bottom:344.910000px;}
.y7c{bottom:346.530000px;}
.yc2{bottom:353.100000px;}
.y15b{bottom:354.180000px;}
.y5d{bottom:354.270000px;}
.y136{bottom:357.150000px;}
.ya2{bottom:362.280000px;}
.y37{bottom:362.460000px;}
.yfa{bottom:366.420000px;}
.y113{bottom:367.230000px;}
.y15a{bottom:371.730000px;}
.y7a{bottom:373.800000px;}
.y112{bottom:384.780000px;}
.yc1{bottom:388.650000px;}
.y5c{bottom:389.820000px;}
.y1d{bottom:390.090000px;}
.y135{bottom:394.140000px;}
.ya1{bottom:397.830000px;}
.y36{bottom:398.100000px;}
.y159{bottom:398.370000px;}
.yf9{bottom:398.640000px;}
.y76{bottom:401.160000px;}
.y111{bottom:402.420000px;}
.y5b{bottom:407.460000px;}
.y158{bottom:415.920000px;}
.y134{bottom:421.050000px;}
.yc0{bottom:424.290000px;}
.ya0{bottom:424.470000px;}
.y1c{bottom:427.170000px;}
.y35{bottom:432.930000px;}
.y5a{bottom:434.010000px;}
.y110{bottom:437.970000px;}
.y157{bottom:442.470000px;}
.y34{bottom:444.360000px;}
.y1b{bottom:444.720000px;}
.ye9{bottom:444.900000px;}
.y75{bottom:449.850000px;}
.y10f{bottom:455.520000px;}
.y133{bottom:458.040000px;}
.ybf{bottom:459.840000px;}
.y9f{bottom:460.020000px;}
.y156{bottom:460.110000px;}
.y1a{bottom:462.360000px;}
.y59{bottom:469.560000px;}
.y10e{bottom:473.190000px;}
.y132{bottom:475.710000px;}
.y9e{bottom:477.690000px;}
.y19{bottom:479.940000px;}
.ye8{bottom:481.020000px;}
.y74{bottom:485.520000px;}
.y155{bottom:486.690000px;}
.y58{bottom:487.230000px;}
.y131{bottom:493.260000px;}
.y9d{bottom:495.240000px;}
.ybe{bottom:495.510000px;}
.y18{bottom:497.490000px;}
.ye7{bottom:501.270000px;}
.y154{bottom:504.330000px;}
.y57{bottom:504.780000px;}
.y10d{bottom:508.740000px;}
.y73{bottom:512.070000px;}
.y9c{bottom:512.790000px;}
.y17{bottom:515.130000px;}
.ye6{bottom:518.820000px;}
.y130{bottom:520.170000px;}
.y153{bottom:521.880000px;}
.y10c{bottom:526.380000px;}
.ybd{bottom:531.060000px;}
.y16{bottom:532.680000px;}
.ye5{bottom:536.460000px;}
.y9b{bottom:539.340000px;}
.y56{bottom:540.420000px;}
.y72{bottom:547.620000px;}
.y152{bottom:548.430000px;}
.y15{bottom:550.320000px;}
.ye4{bottom:554.010000px;}
.y12f{bottom:557.520000px;}
.y55{bottom:557.970000px;}
.y10b{bottom:561.930000px;}
.y151{bottom:566.070000px;}
.ybc{bottom:566.610000px;}
.y14{bottom:567.870000px;}
.y9a{bottom:569.400000px;}
.ye3{bottom:571.560000px;}
.y54{bottom:575.520000px;}
.y10a{bottom:579.480000px;}
.y71{bottom:579.840000px;}
.y13{bottom:585.420000px;}
.y150{bottom:592.620000px;}
.y99{bottom:596.670000px;}
.y109{bottom:597.120000px;}
.ye2{bottom:600.000000px;}
.ybb{bottom:602.250000px;}
.y12{bottom:603.060000px;}
.y12e{bottom:605.760000px;}
.y53{bottom:611.160000px;}
.ydf{bottom:617.640000px;}
.y14f{bottom:619.260000px;}
.y12d{bottom:623.400000px;}
.y98{bottom:624.030000px;}
.y11{bottom:629.970000px;}
.y108{bottom:632.670000px;}
.y14e{bottom:636.810000px;}
.y52{bottom:637.710000px;}
.yba{bottom:637.800000px;}
.y12c{bottom:640.950000px;}
.y14d{bottom:654.360000px;}
.yb9{bottom:655.440000px;}
.y12b{bottom:658.590000px;}
.y107{bottom:668.310000px;}
.y97{bottom:672.720000px;}
.y51{bottom:673.350000px;}
.yf8{bottom:675.060000px;}
.y12a{bottom:676.140000px;}
.y10{bottom:676.680000px;}
.y14c{bottom:681.000000px;}
.y106{bottom:685.860000px;}
.yb8{bottom:688.380000px;}
.y50{bottom:690.900000px;}
.yf7{bottom:692.700000px;}
.y129{bottom:703.050000px;}
.y105{bottom:703.410000px;}
.y14b{bottom:707.550000px;}
.y96{bottom:708.360000px;}
.yf{bottom:712.500000px;}
.y4f{bottom:717.450000px;}
.yf6{bottom:719.250000px;}
.y104{bottom:721.050000px;}
.y14a{bottom:725.190000px;}
.y95{bottom:725.910000px;}
.yde{bottom:733.290000px;}
.y103{bottom:738.600000px;}
.y94{bottom:743.550000px;}
.ye{bottom:748.500000px;}
.y4e{bottom:750.030000px;}
.y128{bottom:751.290000px;}
.y149{bottom:751.740000px;}
.yf5{bottom:754.890000px;}
.yb6{bottom:759.840000px;}
.y127{bottom:768.930000px;}
.y93{bottom:770.100000px;}
.y102{bottom:774.240000px;}
.ydd{bottom:778.200000px;}
.y148{bottom:778.290000px;}
.yd{bottom:784.500000px;}
.y4d{bottom:785.670000px;}
.y126{bottom:786.480000px;}
.yf4{bottom:787.110000px;}
.y101{bottom:791.790000px;}
.y147{bottom:795.930000px;}
.y4c{bottom:803.220000px;}
.y125{bottom:804.030000px;}
.yb4{bottom:804.750000px;}
.y92{bottom:805.650000px;}
.yc{bottom:806.280000px;}
.y100{bottom:818.700000px;}
.yb{bottom:820.500000px;}
.y146{bottom:822.480000px;}
.y91{bottom:823.290000px;}
.ydc{bottom:827.610000px;}
.y4b{bottom:829.860000px;}
.y70{bottom:835.260000px;}
.y124{bottom:839.670000px;}
.y145{bottom:840.030000px;}
.y90{bottom:840.840000px;}
.ya{bottom:842.280000px;}
.yd1{bottom:854.970000px;}
.y9{bottom:856.500000px;}
.y123{bottom:857.220000px;}
.y144{bottom:857.670000px;}
.y8f{bottom:858.390000px;}
.y6f{bottom:861.810000px;}
.y4a{bottom:865.410000px;}
.yff{bottom:866.940000px;}
.y8{bottom:878.280000px;}
.y33{bottom:881.970000px;}
.y49{bottom:882.960000px;}
.y143{bottom:884.220000px;}
.y8e{bottom:885.030000px;}
.y122{bottom:892.860000px;}
.y6e{bottom:897.720000px;}
.yb3{bottom:898.350000px;}
.yfe{bottom:899.160000px;}
.y142{bottom:901.860000px;}
.y48{bottom:909.600000px;}
.y121{bottom:910.410000px;}
.y7{bottom:910.590000px;}
.y32{bottom:914.550000px;}
.y8d{bottom:917.610000px;}
.y141{bottom:919.410000px;}
.yad{bottom:925.710000px;}
.y120{bottom:927.960000px;}
.y16a{bottom:928.410000px;}
.y6{bottom:929.940000px;}
.y47{bottom:945.150000px;}
.y11f{bottom:945.600000px;}
.y6d{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y31{bottom:950.460000px;}
.y8c{bottom:953.160000px;}
.y46{bottom:962.790000px;}
.y6c{bottom:963.600000px;}
.y8b{bottom:970.800000px;}
.y169{bottom:972.600000px;}
.y6b{bottom:981.150000px;}
.y4{bottom:987.630000px;}
.y45{bottom:989.340000px;}
.y140{bottom:990.150000px;}
.y30{bottom:998.790000px;}
.y8a{bottom:1005.630000px;}
.y13f{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y2f{bottom:1016.370000px;}
.y168{bottom:1016.820000px;}
.y89{bottom:1017.810000px;}
.y44{bottom:1024.920000px;}
.y6a{bottom:1025.370000px;}
.y11e{bottom:1033.920000px;}
.y167{bottom:1034.370000px;}
.yac{bottom:1036.890000px;}
.y43{bottom:1042.560000px;}
.y88{bottom:1045.170000px;}
.y2e{bottom:1051.920000px;}
.y69{bottom:1060.920000px;}
.yf3{bottom:1063.530000px;}
.yaa{bottom:1064.250000px;}
.y42{bottom:1069.110000px;}
.y2d{bottom:1069.560000px;}
.y87{bottom:1072.530000px;}
.y68{bottom:1078.560000px;}
.yf2{bottom:1081.170000px;}
.y2c{bottom:1087.110000px;}
.yab{bottom:1091.610000px;}
.y67{bottom:1096.110000px;}
.y86{bottom:1099.890000px;}
.y41{bottom:1104.750000px;}
.yf1{bottom:1107.720000px;}
.y66{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y85{bottom:1127.160000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.he{height:26.550000px;}
.h10{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.hd{height:41.661211px;}
.h14{height:44.190000px;}
.h17{height:48.690000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h11{height:53.910000px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:59.973223px;}
.h1a{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h15{height:70.740000px;}
.h4{height:72.985430px;}
.h19{height:74.004654px;}
.hf{height:81.270000px;}
.h13{height:92.880000px;}
.h12{height:110.460000px;}
.h18{height:114.930000px;}
.h16{height:181.200000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:29.160000px;}
.wa{width:69.840000px;}
.wf{width:86.520000px;}
.w5{width:106.650000px;}
.wb{width:114.150000px;}
.w10{width:117.630000px;}
.w7{width:121.140000px;}
.w8{width:130.500000px;}
.w3{width:131.940000px;}
.w9{width:139.980000px;}
.w12{width:140.670000px;}
.w4{width:178.320000px;}
.wd{width:226.710000px;}
.we{width:333.390000px;}
.w13{width:379.830000px;}
.w11{width:521.220000px;}
.wc{width:560.820000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:3.960000px;}
.x27{left:7.740000px;}
.x11{left:10.440000px;}
.xf{left:12.060000px;}
.x2c{left:17.100000px;}
.x29{left:23.850000px;}
.x18{left:30.600000px;}
.x19{left:42.510000px;}
.x17{left:46.170000px;}
.x10{left:49.140000px;}
.xe{left:50.850000px;}
.x1e{left:53.730000px;}
.x16{left:61.590000px;}
.x1{left:68.040000px;}
.x1a{left:73.440000px;}
.x24{left:76.499987px;}
.x26{left:83.160000px;}
.x22{left:89.639987px;}
.x30{left:110.519987px;}
.x2e{left:126.390000px;}
.x1b{left:144.000000px;}
.x28{left:170.400000px;}
.x6{left:177.599987px;}
.x2b{left:201.690000px;}
.x2{left:202.799987px;}
.x1d{left:221.400000px;}
.x9{left:222.420000px;}
.x37{left:226.559987px;}
.x35{left:237.089987px;}
.x8{left:241.499987px;}
.x33{left:244.379987px;}
.x13{left:250.050000px;}
.x1c{left:258.960000px;}
.x2a{left:288.840000px;}
.x23{left:330.869987px;}
.xb{left:355.080000px;}
.x25{left:362.369987px;}
.x14{left:372.000000px;}
.x31{left:376.679987px;}
.x12{left:390.089987px;}
.x5{left:392.249987px;}
.x2d{left:430.230000px;}
.x20{left:446.609987px;}
.x1f{left:486.390000px;}
.x15{left:503.310000px;}
.xc{left:534.210000px;}
.x34{left:615.389987px;}
.x32{left:637.889987px;}
.xd{left:641.670000px;}
.x36{left:667.139987px;}
.x4{left:686.309987px;}
.x7{left:730.139987px;}
.x2f{left:738.059987px;}
.x21{left:742.559987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls18{letter-spacing:-0.402667pt;}
.ls20{letter-spacing:-0.348267pt;}
.ls27{letter-spacing:-0.266133pt;}
.ls28{letter-spacing:-0.216533pt;}
.ls15{letter-spacing:-0.165867pt;}
.ls24{letter-spacing:-0.142933pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.107733pt;}
.ls1a{letter-spacing:-0.090133pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls16{letter-spacing:-0.056533pt;}
.ls22{letter-spacing:-0.035840pt;}
.ls21{letter-spacing:-0.028160pt;}
.ls1b{letter-spacing:-0.007680pt;}
.lsb{letter-spacing:-0.007467pt;}
.ls1e{letter-spacing:-0.005440pt;}
.ls5{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.014720pt;}
.ls1c{letter-spacing:0.020480pt;}
.ls12{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.043520pt;}
.ls17{letter-spacing:0.053760pt;}
.lse{letter-spacing:0.053867pt;}
.ls9{letter-spacing:0.058133pt;}
.ls3{letter-spacing:0.058240pt;}
.ls11{letter-spacing:0.065920pt;}
.ls19{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1f{letter-spacing:0.101760pt;}
.lsd{letter-spacing:0.102933pt;}
.ls26{letter-spacing:0.103467pt;}
.ls1d{letter-spacing:0.105067pt;}
.ls6{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.154133pt;}
.ls2b{letter-spacing:0.179200pt;}
.ls4{letter-spacing:0.236800pt;}
.ls10{letter-spacing:0.244800pt;}
.ls23{letter-spacing:0.284267pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.475200pt;}
.ls29{letter-spacing:2.643200pt;}
.ls2c{letter-spacing:42.423680pt;}
.ls2a{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.ws18{word-spacing:-11.936000pt;}
.wsa{word-spacing:-11.910933pt;}
.ws13{word-spacing:-11.861867pt;}
.ws5{word-spacing:-11.859733pt;}
.ws10{word-spacing:-11.822933pt;}
.wsd{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.ws12{word-spacing:-11.751360pt;}
.wse{word-spacing:-11.700267pt;}
.ws11{word-spacing:-11.666667pt;}
.ws14{word-spacing:-11.613867pt;}
.wsb{word-spacing:-11.590933pt;}
.wsf{word-spacing:-11.354133pt;}
.ws15{word-spacing:-9.377920pt;}
.ws16{word-spacing:-9.363200pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-8.294933pt;}
.ws6{word-spacing:-7.657067pt;}
.ws3{word-spacing:-7.603200pt;}
.ws17{word-spacing:-7.337067pt;}
.ws9{word-spacing:0.000000pt;}
.ws8{word-spacing:3.826560pt;}
._b{margin-left:-3.621103pt;}
._a{margin-left:-2.672000pt;}
._8{margin-left:-0.921297pt;}
._1{width:1.118847pt;}
._9{width:2.332759pt;}
._0{width:3.280565pt;}
._3{width:4.488395pt;}
._2{width:6.026550pt;}
._5{width:7.462879pt;}
._4{width:8.432523pt;}
._7{width:9.779413pt;}
._6{width:10.975147pt;}
._c{width:12.665280pt;}
._11{width:14.489879pt;}
._13{width:16.138880pt;}
._12{width:17.398187pt;}
._14{width:18.660907pt;}
._15{width:20.478293pt;}
._16{width:21.984960pt;}
._17{width:24.190613pt;}
._d{width:39.621120pt;}
._e{width:55.621120pt;}
._f{width:118.904000pt;}
._10{width:135.301120pt;}
.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;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:6.960000pt;}
.y7b{bottom:7.040000pt;}
.yd0{bottom:15.680000pt;}
.y81{bottom:19.120000pt;}
.yb7{bottom:22.640000pt;}
.ye1{bottom:26.560000pt;}
.yb1{bottom:26.640000pt;}
.y79{bottom:31.280000pt;}
.yd8{bottom:42.640000pt;}
.yb0{bottom:46.240000pt;}
.yb5{bottom:46.320000pt;}
.yd7{bottom:58.240000pt;}
.yb2{bottom:61.920000pt;}
.y2{bottom:65.226667pt;}
.ye0{bottom:65.840000pt;}
.yaf{bottom:65.920000pt;}
.y29{bottom:65.946667pt;}
.yd6{bottom:77.920000pt;}
.yae{bottom:81.546667pt;}
.ydb{bottom:85.520000pt;}
.y1{bottom:90.346667pt;}
.yd5{bottom:93.520000pt;}
.yda{bottom:105.120000pt;}
.yf0{bottom:105.226667pt;}
.y166{bottom:110.826667pt;}
.ycf{bottom:111.626667pt;}
.yd4{bottom:113.120000pt;}
.y84{bottom:113.626667pt;}
.y13e{bottom:116.906667pt;}
.y40{bottom:117.546667pt;}
.y11d{bottom:122.106667pt;}
.yc8{bottom:124.106667pt;}
.ya9{bottom:124.586667pt;}
.yd9{bottom:124.800000pt;}
.y165{bottom:126.506667pt;}
.yce{bottom:127.306667pt;}
.yd3{bottom:128.800000pt;}
.y13d{bottom:132.506667pt;}
.y3f{bottom:133.146667pt;}
.yef{bottom:133.786667pt;}
.y65{bottom:133.866667pt;}
.y11c{bottom:137.706667pt;}
.y83{bottom:137.866667pt;}
.y27{bottom:138.586667pt;}
.yd2{bottom:144.426667pt;}
.y13c{bottom:148.186667pt;}
.y64{bottom:149.466667pt;}
.y164{bottom:150.106667pt;}
.y26{bottom:154.266667pt;}
.yc7{bottom:155.706667pt;}
.ya8{bottom:156.266667pt;}
.ycd{bottom:158.266667pt;}
.y80{bottom:162.186667pt;}
.yee{bottom:162.266667pt;}
.y3e{bottom:164.746667pt;}
.y163{bottom:165.786667pt;}
.y11b{bottom:169.386667pt;}
.ycc{bottom:170.746667pt;}
.y13b{bottom:171.786667pt;}
.yed{bottom:174.746667pt;}
.y63{bottom:181.146667pt;}
.y162{bottom:181.386667pt;}
.y11a{bottom:184.986667pt;}
.y25{bottom:185.866667pt;}
.y82{bottom:186.506667pt;}
.yc6{bottom:187.306667pt;}
.y13a{bottom:187.466667pt;}
.ya7{bottom:187.866667pt;}
.y3d{bottom:196.426667pt;}
.y62{bottom:196.746667pt;}
.ycb{bottom:199.946667pt;}
.y119{bottom:200.666667pt;}
.y24{bottom:201.546667pt;}
.y139{bottom:203.066667pt;}
.yec{bottom:203.946667pt;}
.y161{bottom:204.986667pt;}
.y7d{bottom:210.826667pt;}
.y3c{bottom:212.026667pt;}
.yca{bottom:215.546667pt;}
.y118{bottom:216.266667pt;}
.y23{bottom:217.146667pt;}
.yc5{bottom:218.986667pt;}
.ya6{bottom:219.466667pt;}
.yeb{bottom:219.546667pt;}
.y160{bottom:220.666667pt;}
.y138{bottom:226.666667pt;}
.y61{bottom:228.346667pt;}
.y22{bottom:232.746667pt;}
.y7f{bottom:235.066667pt;}
.y15f{bottom:236.266667pt;}
.y3b{bottom:243.706667pt;}
.y60{bottom:244.026667pt;}
.yc9{bottom:244.186667pt;}
.y117{bottom:247.866667pt;}
.yea{bottom:248.186667pt;}
.y21{bottom:248.426667pt;}
.yc4{bottom:250.586667pt;}
.ya5{bottom:251.146667pt;}
.yfd{bottom:254.826667pt;}
.y7e{bottom:259.386667pt;}
.y5f{bottom:259.626667pt;}
.y15e{bottom:259.946667pt;}
.y116{bottom:263.546667pt;}
.y20{bottom:264.026667pt;}
.ya4{bottom:266.746667pt;}
.yfc{bottom:270.426667pt;}
.y3a{bottom:275.306667pt;}
.y15d{bottom:275.546667pt;}
.y115{bottom:279.146667pt;}
.y1f{bottom:279.706667pt;}
.yc3{bottom:282.266667pt;}
.y5e{bottom:283.306667pt;}
.y78{bottom:283.706667pt;}
.y39{bottom:290.906667pt;}
.y137{bottom:293.546667pt;}
.yfb{bottom:294.026667pt;}
.y114{bottom:294.826667pt;}
.ya3{bottom:298.426667pt;}
.y15c{bottom:299.146667pt;}
.y1e{bottom:303.626667pt;}
.y38{bottom:306.586667pt;}
.y7c{bottom:308.026667pt;}
.yc2{bottom:313.866667pt;}
.y15b{bottom:314.826667pt;}
.y5d{bottom:314.906667pt;}
.y136{bottom:317.466667pt;}
.ya2{bottom:322.026667pt;}
.y37{bottom:322.186667pt;}
.yfa{bottom:325.706667pt;}
.y113{bottom:326.426667pt;}
.y15a{bottom:330.426667pt;}
.y7a{bottom:332.266667pt;}
.y112{bottom:342.026667pt;}
.yc1{bottom:345.466667pt;}
.y5c{bottom:346.506667pt;}
.y1d{bottom:346.746667pt;}
.y135{bottom:350.346667pt;}
.ya1{bottom:353.626667pt;}
.y36{bottom:353.866667pt;}
.y159{bottom:354.106667pt;}
.yf9{bottom:354.346667pt;}
.y76{bottom:356.586667pt;}
.y111{bottom:357.706667pt;}
.y5b{bottom:362.186667pt;}
.y158{bottom:369.706667pt;}
.y134{bottom:374.266667pt;}
.yc0{bottom:377.146667pt;}
.ya0{bottom:377.306667pt;}
.y1c{bottom:379.706667pt;}
.y35{bottom:384.826667pt;}
.y5a{bottom:385.786667pt;}
.y110{bottom:389.306667pt;}
.y157{bottom:393.306667pt;}
.y34{bottom:394.986667pt;}
.y1b{bottom:395.306667pt;}
.ye9{bottom:395.466667pt;}
.y75{bottom:399.866667pt;}
.y10f{bottom:404.906667pt;}
.y133{bottom:407.146667pt;}
.ybf{bottom:408.746667pt;}
.y9f{bottom:408.906667pt;}
.y156{bottom:408.986667pt;}
.y1a{bottom:410.986667pt;}
.y59{bottom:417.386667pt;}
.y10e{bottom:420.613333pt;}
.y132{bottom:422.853333pt;}
.y9e{bottom:424.613333pt;}
.y19{bottom:426.613333pt;}
.ye8{bottom:427.573333pt;}
.y74{bottom:431.573333pt;}
.y155{bottom:432.613333pt;}
.y58{bottom:433.093333pt;}
.y131{bottom:438.453333pt;}
.y9d{bottom:440.213333pt;}
.ybe{bottom:440.453333pt;}
.y18{bottom:442.213333pt;}
.ye7{bottom:445.573333pt;}
.y154{bottom:448.293333pt;}
.y57{bottom:448.693333pt;}
.y10d{bottom:452.213333pt;}
.y73{bottom:455.173333pt;}
.y9c{bottom:455.813333pt;}
.y17{bottom:457.893333pt;}
.ye6{bottom:461.173333pt;}
.y130{bottom:462.373333pt;}
.y153{bottom:463.893333pt;}
.y10c{bottom:467.893333pt;}
.ybd{bottom:472.053333pt;}
.y16{bottom:473.493333pt;}
.ye5{bottom:476.853333pt;}
.y9b{bottom:479.413333pt;}
.y56{bottom:480.373333pt;}
.y72{bottom:486.773333pt;}
.y152{bottom:487.493333pt;}
.y15{bottom:489.173333pt;}
.ye4{bottom:492.453333pt;}
.y12f{bottom:495.573333pt;}
.y55{bottom:495.973333pt;}
.y10b{bottom:499.493333pt;}
.y151{bottom:503.173333pt;}
.ybc{bottom:503.653333pt;}
.y14{bottom:504.773333pt;}
.y9a{bottom:506.133333pt;}
.ye3{bottom:508.053333pt;}
.y54{bottom:511.573333pt;}
.y10a{bottom:515.093333pt;}
.y71{bottom:515.413333pt;}
.y13{bottom:520.373333pt;}
.y150{bottom:526.773333pt;}
.y99{bottom:530.373333pt;}
.y109{bottom:530.773333pt;}
.ye2{bottom:533.333333pt;}
.ybb{bottom:535.333333pt;}
.y12{bottom:536.053333pt;}
.y12e{bottom:538.453333pt;}
.y53{bottom:543.253333pt;}
.ydf{bottom:549.013333pt;}
.y14f{bottom:550.453333pt;}
.y12d{bottom:554.133333pt;}
.y98{bottom:554.693333pt;}
.y11{bottom:559.973333pt;}
.y108{bottom:562.373333pt;}
.y14e{bottom:566.053333pt;}
.y52{bottom:566.853333pt;}
.yba{bottom:566.933333pt;}
.y12c{bottom:569.733333pt;}
.y14d{bottom:581.653333pt;}
.yb9{bottom:582.613333pt;}
.y12b{bottom:585.413333pt;}
.y107{bottom:594.053333pt;}
.y97{bottom:597.973333pt;}
.y51{bottom:598.533333pt;}
.yf8{bottom:600.053333pt;}
.y12a{bottom:601.013333pt;}
.y10{bottom:601.493333pt;}
.y14c{bottom:605.333333pt;}
.y106{bottom:609.653333pt;}
.yb8{bottom:611.893333pt;}
.y50{bottom:614.133333pt;}
.yf7{bottom:615.733333pt;}
.y129{bottom:624.933333pt;}
.y105{bottom:625.253333pt;}
.y14b{bottom:628.933333pt;}
.y96{bottom:629.653333pt;}
.yf{bottom:633.333333pt;}
.y4f{bottom:637.733333pt;}
.yf6{bottom:639.333333pt;}
.y104{bottom:640.933333pt;}
.y14a{bottom:644.613333pt;}
.y95{bottom:645.253333pt;}
.yde{bottom:651.813333pt;}
.y103{bottom:656.533333pt;}
.y94{bottom:660.933333pt;}
.ye{bottom:665.333333pt;}
.y4e{bottom:666.693333pt;}
.y128{bottom:667.813333pt;}
.y149{bottom:668.213333pt;}
.yf5{bottom:671.013333pt;}
.yb6{bottom:675.413333pt;}
.y127{bottom:683.493333pt;}
.y93{bottom:684.533333pt;}
.y102{bottom:688.213333pt;}
.ydd{bottom:691.733333pt;}
.y148{bottom:691.813333pt;}
.yd{bottom:697.333333pt;}
.y4d{bottom:698.373333pt;}
.y126{bottom:699.093333pt;}
.yf4{bottom:699.653333pt;}
.y101{bottom:703.813333pt;}
.y147{bottom:707.493333pt;}
.y4c{bottom:713.973333pt;}
.y125{bottom:714.693333pt;}
.yb4{bottom:715.333333pt;}
.y92{bottom:716.133333pt;}
.yc{bottom:716.693333pt;}
.y100{bottom:727.733333pt;}
.yb{bottom:729.333333pt;}
.y146{bottom:731.093333pt;}
.y91{bottom:731.813333pt;}
.ydc{bottom:735.653333pt;}
.y4b{bottom:737.653333pt;}
.y70{bottom:742.453333pt;}
.y124{bottom:746.373333pt;}
.y145{bottom:746.693333pt;}
.y90{bottom:747.413333pt;}
.ya{bottom:748.693333pt;}
.yd1{bottom:759.973333pt;}
.y9{bottom:761.333333pt;}
.y123{bottom:761.973333pt;}
.y144{bottom:762.373333pt;}
.y8f{bottom:763.013333pt;}
.y6f{bottom:766.053333pt;}
.y4a{bottom:769.253333pt;}
.yff{bottom:770.613333pt;}
.y8{bottom:780.693333pt;}
.y33{bottom:783.973333pt;}
.y49{bottom:784.853333pt;}
.y143{bottom:785.973333pt;}
.y8e{bottom:786.693333pt;}
.y122{bottom:793.653333pt;}
.y6e{bottom:797.973333pt;}
.yb3{bottom:798.533333pt;}
.yfe{bottom:799.253333pt;}
.y142{bottom:801.653333pt;}
.y48{bottom:808.533333pt;}
.y121{bottom:809.253333pt;}
.y7{bottom:809.413333pt;}
.y32{bottom:812.933333pt;}
.y8d{bottom:815.653333pt;}
.y141{bottom:817.253333pt;}
.yad{bottom:822.853333pt;}
.y120{bottom:824.853333pt;}
.y16a{bottom:825.253333pt;}
.y6{bottom:826.613333pt;}
.y47{bottom:840.133333pt;}
.y11f{bottom:840.533333pt;}
.y6d{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y31{bottom:844.853333pt;}
.y8c{bottom:847.253333pt;}
.y46{bottom:855.813333pt;}
.y6c{bottom:856.533333pt;}
.y8b{bottom:862.933333pt;}
.y169{bottom:864.533333pt;}
.y6b{bottom:872.133333pt;}
.y4{bottom:877.893333pt;}
.y45{bottom:879.413333pt;}
.y140{bottom:880.133333pt;}
.y30{bottom:887.813333pt;}
.y8a{bottom:893.893333pt;}
.y13f{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y2f{bottom:903.440000pt;}
.y168{bottom:903.840000pt;}
.y89{bottom:904.720000pt;}
.y44{bottom:911.040000pt;}
.y6a{bottom:911.440000pt;}
.y11e{bottom:919.040000pt;}
.y167{bottom:919.440000pt;}
.yac{bottom:921.680000pt;}
.y43{bottom:926.720000pt;}
.y88{bottom:929.040000pt;}
.y2e{bottom:935.040000pt;}
.y69{bottom:943.040000pt;}
.yf3{bottom:945.360000pt;}
.yaa{bottom:946.000000pt;}
.y42{bottom:950.320000pt;}
.y2d{bottom:950.720000pt;}
.y87{bottom:953.360000pt;}
.y68{bottom:958.720000pt;}
.yf2{bottom:961.040000pt;}
.y2c{bottom:966.320000pt;}
.yab{bottom:970.320000pt;}
.y67{bottom:974.320000pt;}
.y86{bottom:977.680000pt;}
.y41{bottom:982.000000pt;}
.yf1{bottom:984.640000pt;}
.y66{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y85{bottom:1001.920000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.h10{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.hd{height:37.032187pt;}
.h14{height:39.280000pt;}
.h17{height:43.280000pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h11{height:47.920000pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:53.309531pt;}
.h1a{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h15{height:62.880000pt;}
.h4{height:64.875937pt;}
.h19{height:65.781915pt;}
.hf{height:72.240000pt;}
.h13{height:82.560000pt;}
.h12{height:98.186667pt;}
.h18{height:102.160000pt;}
.h16{height:161.066667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:25.920000pt;}
.wa{width:62.080000pt;}
.wf{width:76.906667pt;}
.w5{width:94.800000pt;}
.wb{width:101.466667pt;}
.w10{width:104.560000pt;}
.w7{width:107.680000pt;}
.w8{width:116.000000pt;}
.w3{width:117.280000pt;}
.w9{width:124.426667pt;}
.w12{width:125.040000pt;}
.w4{width:158.506667pt;}
.wd{width:201.520000pt;}
.we{width:296.346667pt;}
.w13{width:337.626667pt;}
.w11{width:463.306667pt;}
.wc{width:498.506667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:3.520000pt;}
.x27{left:6.880000pt;}
.x11{left:9.280000pt;}
.xf{left:10.720000pt;}
.x2c{left:15.200000pt;}
.x29{left:21.200000pt;}
.x18{left:27.200000pt;}
.x19{left:37.786667pt;}
.x17{left:41.040000pt;}
.x10{left:43.680000pt;}
.xe{left:45.200000pt;}
.x1e{left:47.760000pt;}
.x16{left:54.746667pt;}
.x1{left:60.480000pt;}
.x1a{left:65.280000pt;}
.x24{left:67.999988pt;}
.x26{left:73.920000pt;}
.x22{left:79.679988pt;}
.x30{left:98.239988pt;}
.x2e{left:112.346667pt;}
.x1b{left:128.000000pt;}
.x28{left:151.466667pt;}
.x6{left:157.866655pt;}
.x2b{left:179.280000pt;}
.x2{left:180.266655pt;}
.x1d{left:196.800000pt;}
.x9{left:197.706667pt;}
.x37{left:201.386655pt;}
.x35{left:210.746655pt;}
.x8{left:214.666655pt;}
.x33{left:217.226655pt;}
.x13{left:222.266667pt;}
.x1c{left:230.186667pt;}
.x2a{left:256.746667pt;}
.x23{left:294.106655pt;}
.xb{left:315.626667pt;}
.x25{left:322.106655pt;}
.x14{left:330.666667pt;}
.x31{left:334.826655pt;}
.x12{left:346.746655pt;}
.x5{left:348.666655pt;}
.x2d{left:382.426667pt;}
.x20{left:396.986655pt;}
.x1f{left:432.346667pt;}
.x15{left:447.386667pt;}
.xc{left:474.853333pt;}
.x34{left:547.013322pt;}
.x32{left:567.013322pt;}
.xd{left:570.373333pt;}
.x36{left:593.013322pt;}
.x4{left:610.053322pt;}
.x7{left:649.013322pt;}
.x2f{left:656.053322pt;}
.x21{left:660.053322pt;}
.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; }
  