
    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_b8c327195112a0643c21cae7.woff')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_01479b6a0b779bae230371bc.woff')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_dbda2c5833c9da720714019e.woff')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_1e3bb430d97b63bf907f8758.woff')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_2b0c5aafaabf58a163088f9b.woff')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_8cb82078ee335c644a736b29.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1c7347633638925dbf59b1bc.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f63af9f95d39852d934b5079.woff')format("woff");}.ff8{font-family:ff8;line-height:0.776855;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_f8253342a91f538d975dcfd9.woff')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_72e8e1dd216277b2b411130b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1da4bfeb86a9e3750255ea2a.woff')format("woff");}.ffb{font-family:ffb;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.454800px;}
.ls19{letter-spacing:-0.266400px;}
.ls15{letter-spacing:-0.243600px;}
.ls1e{letter-spacing:-0.216600px;}
.ls10{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls1d{letter-spacing:-0.117600px;}
.ls17{letter-spacing:-0.094800px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls11{letter-spacing:-0.063600px;}
.ls21{letter-spacing:-0.009000px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls12{letter-spacing:0.060480px;}
.ls3{letter-spacing:0.065520px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1b{letter-spacing:0.098400px;}
.ls16{letter-spacing:0.111000px;}
.ls6{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls14{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.275400px;}
.ls9{letter-spacing:0.319200px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.425520px;}
.ls13{letter-spacing:1.887120px;}
.ls1a{letter-spacing:14.493600px;}
.ls20{letter-spacing:47.726640px;}
.ls1c{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;}
}
.ws2{word-spacing:-14.812800px;}
.ws7{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.399800px;}
.wse{word-spacing:-13.337400px;}
.wsb{word-spacing:-13.275360px;}
.ws5{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.217400px;}
.wsc{word-spacing:-13.162800px;}
.ws9{word-spacing:-13.039800px;}
.wsd{word-spacing:-12.982800px;}
.wsf{word-spacing:-10.533600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._b{margin-left:-3.843000px;}
._6{margin-left:-2.677800px;}
._0{margin-left:-1.110000px;}
._3{width:1.008937px;}
._5{width:2.130527px;}
._7{width:3.244186px;}
._8{width:4.389000px;}
._9{width:5.890798px;}
._a{width:7.112999px;}
._c{width:8.657400px;}
._d{width:9.942502px;}
._4{width:11.242200px;}
._11{width:14.789520px;}
._e{width:16.172400px;}
._1a{width:17.314560px;}
._10{width:18.876006px;}
._f{width:19.959600px;}
._15{width:21.222360px;}
._1b{width:22.304760px;}
._12{width:24.048000px;}
._1c{width:29.819520px;}
._19{width:31.202280px;}
._14{width:34.397640px;}
._2{width:35.423652px;}
._1{width:36.684480px;}
._17{width:37.997640px;}
._18{width:47.975760px;}
._16{width:56.332440px;}
._13{width:78.396480px;}
.fc2{color:transparent;}
.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;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y11f{bottom:2.610000px;}
.yb3{bottom:7.830000px;}
.ybb{bottom:7.920000px;}
.y10a{bottom:7.950000px;}
.yd8{bottom:12.330000px;}
.yc1{bottom:20.970000px;}
.yd5{bottom:25.380000px;}
.yb5{bottom:25.470000px;}
.yda{bottom:29.880000px;}
.ybd{bottom:29.970000px;}
.yb9{bottom:38.520000px;}
.yba{bottom:43.020000px;}
.yd2{bottom:43.110000px;}
.yb8{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yf7{bottom:123.060000px;}
.y168{bottom:125.130000px;}
.y84{bottom:126.480000px;}
.y148{bottom:127.290000px;}
.yb1{bottom:129.720000px;}
.y58{bottom:140.880000px;}
.y28{bottom:142.500000px;}
.y167{bottom:142.680000px;}
.y83{bottom:144.030000px;}
.y147{bottom:144.840000px;}
.yb0{bottom:147.270000px;}
.y116{bottom:149.070000px;}
.yf6{bottom:150.420000px;}
.yd0{bottom:151.500000px;}
.y57{bottom:158.430000px;}
.y27{bottom:160.050000px;}
.y166{bottom:160.320000px;}
.y115{bottom:161.220000px;}
.y82{bottom:161.670000px;}
.y146{bottom:171.750000px;}
.yaf{bottom:174.180000px;}
.y56{bottom:176.070000px;}
.yf5{bottom:177.780000px;}
.ycf{bottom:178.860000px;}
.y81{bottom:179.220000px;}
.y165{bottom:186.870000px;}
.y114{bottom:188.580000px;}
.y26{bottom:195.600000px;}
.y80{bottom:196.860000px;}
.y55{bottom:202.620000px;}
.yf4{bottom:205.140000px;}
.y25{bottom:213.240000px;}
.y164{bottom:213.510000px;}
.y7f{bottom:214.410000px;}
.y113{bottom:215.940000px;}
.y145{bottom:220.080000px;}
.yae{bottom:222.510000px;}
.yce{bottom:223.770000px;}
.y24{bottom:230.790000px;}
.y163{bottom:231.060000px;}
.yf3{bottom:232.410000px;}
.y54{bottom:238.260000px;}
.yad{bottom:240.060000px;}
.y7e{bottom:240.960000px;}
.y112{bottom:243.210000px;}
.y144{bottom:246.990000px;}
.y23{bottom:248.340000px;}
.y162{bottom:248.610000px;}
.ycd{bottom:251.130000px;}
.y53{bottom:255.810000px;}
.yac{bottom:257.610000px;}
.yf2{bottom:259.770000px;}
.y22{bottom:265.980000px;}
.y161{bottom:266.250000px;}
.y111{bottom:270.570000px;}
.y52{bottom:273.360000px;}
.yab{bottom:275.250000px;}
.y7d{bottom:276.600000px;}
.y21{bottom:283.530000px;}
.y143{bottom:284.340000px;}
.yf1{bottom:287.130000px;}
.y160{bottom:292.800000px;}
.y7c{bottom:294.150000px;}
.y110{bottom:297.930000px;}
.y51{bottom:300.000000px;}
.y20{bottom:301.170000px;}
.yaa{bottom:301.800000px;}
.y15f{bottom:310.440000px;}
.y7b{bottom:311.790000px;}
.ycc{bottom:313.590000px;}
.yf0{bottom:314.490000px;}
.y1f{bottom:318.720000px;}
.y10f{bottom:325.200000px;}
.y15e{bottom:327.990000px;}
.y7a{bottom:329.340000px;}
.y142{bottom:332.580000px;}
.y50{bottom:335.550000px;}
.y1e{bottom:336.270000px;}
.y17b{bottom:336.990000px;}
.ya9{bottom:337.440000px;}
.ycb{bottom:340.950000px;}
.yef{bottom:341.760000px;}
.y79{bottom:346.890000px;}
.y141{bottom:350.130000px;}
.y10e{bottom:352.560000px;}
.y4f{bottom:353.190000px;}
.y1d{bottom:353.910000px;}
.y15d{bottom:354.540000px;}
.ya8{bottom:354.990000px;}
.y78{bottom:364.530000px;}
.y140{bottom:367.770000px;}
.yee{bottom:369.120000px;}
.y4e{bottom:370.740000px;}
.y1c{bottom:371.460000px;}
.y15c{bottom:372.180000px;}
.ya7{bottom:372.540000px;}
.y10d{bottom:379.920000px;}
.y17a{bottom:381.180000px;}
.y77{bottom:382.080000px;}
.y13f{bottom:385.320000px;}
.yca{bottom:385.860000px;}
.y1b{bottom:389.100000px;}
.ya6{bottom:390.180000px;}
.yed{bottom:396.480000px;}
.y4d{bottom:397.290000px;}
.y15b{bottom:398.730000px;}
.y76{bottom:399.720000px;}
.y10c{bottom:407.280000px;}
.ya5{bottom:407.730000px;}
.y13e{bottom:412.230000px;}
.y1a{bottom:416.010000px;}
.y15a{bottom:416.370000px;}
.yec{bottom:423.750000px;}
.y179{bottom:425.370000px;}
.y75{bottom:426.270000px;}
.y4c{bottom:429.870000px;}
.yc9{bottom:430.770000px;}
.ya4{bottom:434.370000px;}
.y10b{bottom:434.550000px;}
.y159{bottom:442.920000px;}
.y178{bottom:451.920000px;}
.y158{bottom:460.470000px;}
.y13d{bottom:460.560000px;}
.y74{bottom:461.820000px;}
.y109{bottom:461.910000px;}
.y19{bottom:464.610000px;}
.yeb{bottom:464.700000px;}
.y4b{bottom:465.510000px;}
.y177{bottom:469.470000px;}
.ya3{bottom:469.950000px;}
.yc8{bottom:475.800000px;}
.y13c{bottom:478.140000px;}
.y73{bottom:479.490000px;}
.y4a{bottom:483.090000px;}
.ya2{bottom:487.500000px;}
.y108{bottom:489.300000px;}
.y13b{bottom:495.690000px;}
.y176{bottom:496.140000px;}
.y72{bottom:497.040000px;}
.yea{bottom:500.280000px;}
.y49{bottom:500.730000px;}
.y18{bottom:501.630000px;}
.yc7{bottom:503.070000px;}
.y157{bottom:504.690000px;}
.ya1{bottom:505.140000px;}
.y13a{bottom:513.330000px;}
.y175{bottom:513.690000px;}
.y71{bottom:514.590000px;}
.y107{bottom:516.660000px;}
.ye9{bottom:517.920000px;}
.y48{bottom:518.280000px;}
.y17{bottom:519.180000px;}
.y156{bottom:522.330000px;}
.ya0{bottom:522.690000px;}
.y139{bottom:530.880000px;}
.y174{bottom:531.330000px;}
.y70{bottom:532.230000px;}
.ye8{bottom:535.470000px;}
.y16{bottom:536.820000px;}
.y155{bottom:539.880000px;}
.y9f{bottom:540.330000px;}
.y106{bottom:543.930000px;}
.y47{bottom:544.830000px;}
.yc6{bottom:547.980000px;}
.y138{bottom:548.430000px;}
.ye7{bottom:553.110000px;}
.y15{bottom:554.370000px;}
.y9e{bottom:557.880000px;}
.y6f{bottom:558.780000px;}
.y137{bottom:566.070000px;}
.y154{bottom:566.430000px;}
.ye6{bottom:570.660000px;}
.y105{bottom:571.290000px;}
.y14{bottom:571.920000px;}
.yc5{bottom:575.340000px;}
.y9d{bottom:575.430000px;}
.y46{bottom:580.470000px;}
.y136{bottom:583.620000px;}
.y153{bottom:584.070000px;}
.ye5{bottom:588.210000px;}
.y13{bottom:589.560000px;}
.y6e{bottom:591.360000px;}
.y9c{bottom:593.070000px;}
.y45{bottom:598.020000px;}
.y104{bottom:598.650000px;}
.y135{bottom:601.260000px;}
.ye4{bottom:605.850000px;}
.y12{bottom:607.110000px;}
.y9b{bottom:610.620000px;}
.y44{bottom:615.660000px;}
.y134{bottom:618.810000px;}
.y173{bottom:619.620000px;}
.y11{bottom:624.750000px;}
.y103{bottom:625.920000px;}
.y6d{bottom:627.000000px;}
.y9a{bottom:628.260000px;}
.y43{bottom:633.210000px;}
.y133{bottom:636.360000px;}
.y172{bottom:637.260000px;}
.yc4{bottom:637.890000px;}
.ye3{bottom:641.400000px;}
.y10{bottom:642.300000px;}
.y6c{bottom:644.550000px;}
.y99{bottom:645.810000px;}
.y42{bottom:650.760000px;}
.y102{bottom:653.280000px;}
.y132{bottom:654.000000px;}
.ye2{bottom:658.950000px;}
.yf{bottom:659.850000px;}
.y6b{bottom:662.190000px;}
.y171{bottom:663.810000px;}
.yc3{bottom:665.160000px;}
.y41{bottom:668.400000px;}
.y131{bottom:671.550000px;}
.y98{bottom:672.360000px;}
.ye1{bottom:676.590000px;}
.ye{bottom:677.490000px;}
.y6a{bottom:679.740000px;}
.y101{bottom:680.640000px;}
.y170{bottom:681.360000px;}
.y130{bottom:689.190000px;}
.y152{bottom:690.000000px;}
.ye0{bottom:694.140000px;}
.y40{bottom:694.950000px;}
.yd{bottom:695.040000px;}
.y16f{bottom:699.000000px;}
.y69{bottom:706.290000px;}
.y12f{bottom:706.740000px;}
.y151{bottom:707.550000px;}
.y97{bottom:708.000000px;}
.yc2{bottom:710.160000px;}
.ydf{bottom:711.780000px;}
.yc{bottom:712.680000px;}
.y16e{bottom:716.550000px;}
.y12e{bottom:724.290000px;}
.y96{bottom:725.550000px;}
.y100{bottom:729.330000px;}
.y3f{bottom:730.590000px;}
.y150{bottom:734.190000px;}
.yc0{bottom:737.430000px;}
.yb{bottom:739.590000px;}
.y68{bottom:741.930000px;}
.y95{bottom:743.190000px;}
.yde{bottom:746.610000px;}
.y3e{bottom:748.140000px;}
.y14f{bottom:751.740000px;}
.ydd{bottom:758.760000px;}
.y67{bottom:759.480000px;}
.y94{bottom:760.740000px;}
.yff{bottom:764.880000px;}
.y3d{bottom:775.050000px;}
.y12d{bottom:777.480000px;}
.y93{bottom:778.290000px;}
.yfe{bottom:782.520000px;}
.y66{bottom:786.030000px;}
.ya{bottom:787.830000px;}
.y12c{bottom:795.120000px;}
.y92{bottom:795.930000px;}
.ybf{bottom:799.980000px;}
.yfd{bottom:800.070000px;}
.y16d{bottom:804.930000px;}
.y12b{bottom:812.670000px;}
.y91{bottom:813.480000px;}
.yfc{bottom:817.710000px;}
.ydc{bottom:821.310000px;}
.y65{bottom:821.670000px;}
.y14e{bottom:822.480000px;}
.y3c{bottom:823.290000px;}
.y9{bottom:823.380000px;}
.y12a{bottom:830.220000px;}
.yfb{bottom:835.260000px;}
.y64{bottom:839.220000px;}
.y90{bottom:840.030000px;}
.y3b{bottom:840.930000px;}
.ybe{bottom:844.890000px;}
.y129{bottom:847.860000px;}
.ydb{bottom:848.670000px;}
.y16c{bottom:849.030000px;}
.yfa{bottom:852.810000px;}
.y3a{bottom:858.480000px;}
.y8{bottom:859.200000px;}
.y128{bottom:865.410000px;}
.y63{bottom:865.860000px;}
.y14d{bottom:866.670000px;}
.yf9{bottom:870.450000px;}
.y8f{bottom:875.670000px;}
.y39{bottom:876.030000px;}
.y127{bottom:883.050000px;}
.y14c{bottom:884.220000px;}
.yf8{bottom:888.000000px;}
.ybc{bottom:889.800000px;}
.y8e{bottom:893.220000px;}
.yd9{bottom:893.580000px;}
.y38{bottom:893.670000px;}
.y7{bottom:898.980000px;}
.y126{bottom:900.600000px;}
.y62{bottom:901.410000px;}
.y8d{bottom:910.860000px;}
.y37{bottom:911.220000px;}
.y6{bottom:916.980000px;}
.y125{bottom:918.150000px;}
.y61{bottom:918.960000px;}
.y11e{bottom:921.030000px;}
.y8c{bottom:928.410000px;}
.y36{bottom:928.860000px;}
.y11d{bottom:935.790000px;}
.y60{bottom:936.600000px;}
.y16b{bottom:937.410000px;}
.yb7{bottom:939.210000px;}
.yd7{bottom:942.990000px;}
.y8b{bottom:945.960000px;}
.y35{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y16a{bottom:954.960000px;}
.y124{bottom:962.700000px;}
.y5f{bottom:963.150000px;}
.y8a{bottom:963.600000px;}
.y34{bottom:963.960000px;}
.y14b{bottom:972.600000px;}
.y4{bottom:987.630000px;}
.y89{bottom:990.150000px;}
.y11c{bottom:990.510000px;}
.yd6{bottom:992.400000px;}
.y5e{bottom:998.790000px;}
.y169{bottom:999.150000px;}
.y33{bottom:999.600000px;}
.y123{bottom:1010.970000px;}
.y3{bottom:1012.320000px;}
.y5d{bottom:1016.370000px;}
.y14a{bottom:1016.820000px;}
.y32{bottom:1017.180000px;}
.y11b{bottom:1017.810000px;}
.yb6{bottom:1019.340000px;}
.yd4{bottom:1019.790000px;}
.y88{bottom:1025.820000px;}
.y122{bottom:1028.520000px;}
.y5c{bottom:1033.920000px;}
.y149{bottom:1034.370000px;}
.y31{bottom:1034.820000px;}
.y87{bottom:1043.370000px;}
.y11a{bottom:1045.170000px;}
.y121{bottom:1046.610000px;}
.yb4{bottom:1046.700000px;}
.y30{bottom:1052.370000px;}
.y5b{bottom:1060.560000px;}
.y86{bottom:1060.920000px;}
.yd3{bottom:1064.700000px;}
.y120{bottom:1067.310000px;}
.y2f{bottom:1069.920000px;}
.y119{bottom:1072.530000px;}
.y85{bottom:1078.560000px;}
.y2e{bottom:1087.560000px;}
.yb2{bottom:1091.610000px;}
.yd1{bottom:1091.970000px;}
.y5a{bottom:1096.110000px;}
.y118{bottom:1099.890000px;}
.y2d{bottom:1105.110000px;}
.y59{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y117{bottom:1127.160000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h1b{height:14.040000px;}
.hd{height:26.550000px;}
.h17{height:26.580000px;}
.h13{height:26.640000px;}
.h1a{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h19{height:41.661211px;}
.h16{height:44.100000px;}
.hf{height:44.190000px;}
.h14{height:44.220000px;}
.h18{height:48.600000px;}
.h11{height:48.690000px;}
.he{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:59.973223px;}
.h9{height:60.960938px;}
.h12{height:61.740000px;}
.h1d{height:61.793886px;}
.h15{height:61.830000px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h1c{height:70.628906px;}
.h4{height:72.985430px;}
.h10{height:79.410000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:35.190000px;}
.we{width:63.810000px;}
.wa{width:64.890000px;}
.w13{width:71.190000px;}
.w16{width:71.280000px;}
.w9{width:71.550000px;}
.w14{width:71.940000px;}
.wb{width:72.630000px;}
.wc{width:73.740000px;}
.w12{width:78.030000px;}
.w11{width:80.100000px;}
.w8{width:81.810000px;}
.w17{width:82.530000px;}
.wf{width:84.150000px;}
.w15{width:86.490000px;}
.wd{width:88.110000px;}
.w10{width:116.940000px;}
.w7{width:125.490000px;}
.w3{width:133.590000px;}
.w6{width:266.040000px;}
.w5{width:282.720000px;}
.w18{width:732.300000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:3.510000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x13{left:78.660000px;}
.xa{left:80.460000px;}
.x1d{left:111.239987px;}
.x15{left:196.410000px;}
.x5{left:203.160000px;}
.xb{left:206.760000px;}
.x2{left:211.079987px;}
.x1b{left:235.019987px;}
.x6{left:239.070000px;}
.x16{left:277.320000px;}
.xc{left:289.290000px;}
.x1c{left:297.480000px;}
.x17{left:356.160000px;}
.xd{left:361.650000px;}
.x9{left:362.999987px;}
.xe{left:427.350000px;}
.xf{left:500.700000px;}
.x7{left:522.510000px;}
.x8{left:558.420000px;}
.x18{left:572.820000px;}
.x10{left:575.160000px;}
.x19{left:660.030000px;}
.x11{left:664.080000px;}
.x12{left:728.610000px;}
.x1a{left:732.030000px;}
.x3{left:800.339987px;}
@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.404267pt;}
.ls19{letter-spacing:-0.236800pt;}
.ls15{letter-spacing:-0.216533pt;}
.ls1e{letter-spacing:-0.192533pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls1d{letter-spacing:-0.104533pt;}
.ls17{letter-spacing:-0.084267pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls11{letter-spacing:-0.056533pt;}
.ls21{letter-spacing:-0.008000pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls12{letter-spacing:0.053760pt;}
.ls3{letter-spacing:0.058240pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1b{letter-spacing:0.087467pt;}
.ls16{letter-spacing:0.098667pt;}
.ls6{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls14{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.244800pt;}
.ls9{letter-spacing:0.283733pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.378240pt;}
.ls13{letter-spacing:1.677440pt;}
.ls1a{letter-spacing:12.883200pt;}
.ls20{letter-spacing:42.423680pt;}
.ls1c{letter-spacing:71.863680pt;}
.ws2{word-spacing:-13.166933pt;}
.ws7{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.855467pt;}
.wsb{word-spacing:-11.800320pt;}
.ws5{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.748800pt;}
.wsc{word-spacing:-11.700267pt;}
.ws9{word-spacing:-11.590933pt;}
.wsd{word-spacing:-11.540267pt;}
.wsf{word-spacing:-9.363200pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._b{margin-left:-3.416000pt;}
._6{margin-left:-2.380267pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.896833pt;}
._5{width:1.893802pt;}
._7{width:2.883721pt;}
._8{width:3.901334pt;}
._9{width:5.236265pt;}
._a{width:6.322666pt;}
._c{width:7.695467pt;}
._d{width:8.837779pt;}
._4{width:9.993066pt;}
._11{width:13.146240pt;}
._e{width:14.375467pt;}
._1a{width:15.390720pt;}
._10{width:16.778672pt;}
._f{width:17.741866pt;}
._15{width:18.864320pt;}
._1b{width:19.826454pt;}
._12{width:21.376000pt;}
._1c{width:26.506240pt;}
._19{width:27.735360pt;}
._14{width:30.575680pt;}
._2{width:31.487690pt;}
._1{width:32.608427pt;}
._17{width:33.775680pt;}
._18{width:42.645120pt;}
._16{width:50.073280pt;}
._13{width:69.685760pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y11f{bottom:2.320000pt;}
.yb3{bottom:6.960000pt;}
.ybb{bottom:7.040000pt;}
.y10a{bottom:7.066667pt;}
.yd8{bottom:10.960000pt;}
.yc1{bottom:18.640000pt;}
.yd5{bottom:22.560000pt;}
.yb5{bottom:22.640000pt;}
.yda{bottom:26.560000pt;}
.ybd{bottom:26.640000pt;}
.yb9{bottom:34.240000pt;}
.yba{bottom:38.240000pt;}
.yd2{bottom:38.320000pt;}
.yb8{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yf7{bottom:109.386667pt;}
.y168{bottom:111.226667pt;}
.y84{bottom:112.426667pt;}
.y148{bottom:113.146667pt;}
.yb1{bottom:115.306667pt;}
.y58{bottom:125.226667pt;}
.y28{bottom:126.666667pt;}
.y167{bottom:126.826667pt;}
.y83{bottom:128.026667pt;}
.y147{bottom:128.746667pt;}
.yb0{bottom:130.906667pt;}
.y116{bottom:132.506667pt;}
.yf6{bottom:133.706667pt;}
.yd0{bottom:134.666667pt;}
.y57{bottom:140.826667pt;}
.y27{bottom:142.266667pt;}
.y166{bottom:142.506667pt;}
.y115{bottom:143.306667pt;}
.y82{bottom:143.706667pt;}
.y146{bottom:152.666667pt;}
.yaf{bottom:154.826667pt;}
.y56{bottom:156.506667pt;}
.yf5{bottom:158.026667pt;}
.ycf{bottom:158.986667pt;}
.y81{bottom:159.306667pt;}
.y165{bottom:166.106667pt;}
.y114{bottom:167.626667pt;}
.y26{bottom:173.866667pt;}
.y80{bottom:174.986667pt;}
.y55{bottom:180.106667pt;}
.yf4{bottom:182.346667pt;}
.y25{bottom:189.546667pt;}
.y164{bottom:189.786667pt;}
.y7f{bottom:190.586667pt;}
.y113{bottom:191.946667pt;}
.y145{bottom:195.626667pt;}
.yae{bottom:197.786667pt;}
.yce{bottom:198.906667pt;}
.y24{bottom:205.146667pt;}
.y163{bottom:205.386667pt;}
.yf3{bottom:206.586667pt;}
.y54{bottom:211.786667pt;}
.yad{bottom:213.386667pt;}
.y7e{bottom:214.186667pt;}
.y112{bottom:216.186667pt;}
.y144{bottom:219.546667pt;}
.y23{bottom:220.746667pt;}
.y162{bottom:220.986667pt;}
.ycd{bottom:223.226667pt;}
.y53{bottom:227.386667pt;}
.yac{bottom:228.986667pt;}
.yf2{bottom:230.906667pt;}
.y22{bottom:236.426667pt;}
.y161{bottom:236.666667pt;}
.y111{bottom:240.506667pt;}
.y52{bottom:242.986667pt;}
.yab{bottom:244.666667pt;}
.y7d{bottom:245.866667pt;}
.y21{bottom:252.026667pt;}
.y143{bottom:252.746667pt;}
.yf1{bottom:255.226667pt;}
.y160{bottom:260.266667pt;}
.y7c{bottom:261.466667pt;}
.y110{bottom:264.826667pt;}
.y51{bottom:266.666667pt;}
.y20{bottom:267.706667pt;}
.yaa{bottom:268.266667pt;}
.y15f{bottom:275.946667pt;}
.y7b{bottom:277.146667pt;}
.ycc{bottom:278.746667pt;}
.yf0{bottom:279.546667pt;}
.y1f{bottom:283.306667pt;}
.y10f{bottom:289.066667pt;}
.y15e{bottom:291.546667pt;}
.y7a{bottom:292.746667pt;}
.y142{bottom:295.626667pt;}
.y50{bottom:298.266667pt;}
.y1e{bottom:298.906667pt;}
.y17b{bottom:299.546667pt;}
.ya9{bottom:299.946667pt;}
.ycb{bottom:303.066667pt;}
.yef{bottom:303.786667pt;}
.y79{bottom:308.346667pt;}
.y141{bottom:311.226667pt;}
.y10e{bottom:313.386667pt;}
.y4f{bottom:313.946667pt;}
.y1d{bottom:314.586667pt;}
.y15d{bottom:315.146667pt;}
.ya8{bottom:315.546667pt;}
.y78{bottom:324.026667pt;}
.y140{bottom:326.906667pt;}
.yee{bottom:328.106667pt;}
.y4e{bottom:329.546667pt;}
.y1c{bottom:330.186667pt;}
.y15c{bottom:330.826667pt;}
.ya7{bottom:331.146667pt;}
.y10d{bottom:337.706667pt;}
.y17a{bottom:338.826667pt;}
.y77{bottom:339.626667pt;}
.y13f{bottom:342.506667pt;}
.yca{bottom:342.986667pt;}
.y1b{bottom:345.866667pt;}
.ya6{bottom:346.826667pt;}
.yed{bottom:352.426667pt;}
.y4d{bottom:353.146667pt;}
.y15b{bottom:354.426667pt;}
.y76{bottom:355.306667pt;}
.y10c{bottom:362.026667pt;}
.ya5{bottom:362.426667pt;}
.y13e{bottom:366.426667pt;}
.y1a{bottom:369.786667pt;}
.y15a{bottom:370.106667pt;}
.yec{bottom:376.666667pt;}
.y179{bottom:378.106667pt;}
.y75{bottom:378.906667pt;}
.y4c{bottom:382.106667pt;}
.yc9{bottom:382.906667pt;}
.ya4{bottom:386.106667pt;}
.y10b{bottom:386.266667pt;}
.y159{bottom:393.706667pt;}
.y178{bottom:401.706667pt;}
.y158{bottom:409.306667pt;}
.y13d{bottom:409.386667pt;}
.y74{bottom:410.506667pt;}
.y109{bottom:410.586667pt;}
.y19{bottom:412.986667pt;}
.yeb{bottom:413.066667pt;}
.y4b{bottom:413.786667pt;}
.y177{bottom:417.306667pt;}
.ya3{bottom:417.733333pt;}
.yc8{bottom:422.933333pt;}
.y13c{bottom:425.013333pt;}
.y73{bottom:426.213333pt;}
.y4a{bottom:429.413333pt;}
.ya2{bottom:433.333333pt;}
.y108{bottom:434.933333pt;}
.y13b{bottom:440.613333pt;}
.y176{bottom:441.013333pt;}
.y72{bottom:441.813333pt;}
.yea{bottom:444.693333pt;}
.y49{bottom:445.093333pt;}
.y18{bottom:445.893333pt;}
.yc7{bottom:447.173333pt;}
.y157{bottom:448.613333pt;}
.ya1{bottom:449.013333pt;}
.y13a{bottom:456.293333pt;}
.y175{bottom:456.613333pt;}
.y71{bottom:457.413333pt;}
.y107{bottom:459.253333pt;}
.ye9{bottom:460.373333pt;}
.y48{bottom:460.693333pt;}
.y17{bottom:461.493333pt;}
.y156{bottom:464.293333pt;}
.ya0{bottom:464.613333pt;}
.y139{bottom:471.893333pt;}
.y174{bottom:472.293333pt;}
.y70{bottom:473.093333pt;}
.ye8{bottom:475.973333pt;}
.y16{bottom:477.173333pt;}
.y155{bottom:479.893333pt;}
.y9f{bottom:480.293333pt;}
.y106{bottom:483.493333pt;}
.y47{bottom:484.293333pt;}
.yc6{bottom:487.093333pt;}
.y138{bottom:487.493333pt;}
.ye7{bottom:491.653333pt;}
.y15{bottom:492.773333pt;}
.y9e{bottom:495.893333pt;}
.y6f{bottom:496.693333pt;}
.y137{bottom:503.173333pt;}
.y154{bottom:503.493333pt;}
.ye6{bottom:507.253333pt;}
.y105{bottom:507.813333pt;}
.y14{bottom:508.373333pt;}
.yc5{bottom:511.413333pt;}
.y9d{bottom:511.493333pt;}
.y46{bottom:515.973333pt;}
.y136{bottom:518.773333pt;}
.y153{bottom:519.173333pt;}
.ye5{bottom:522.853333pt;}
.y13{bottom:524.053333pt;}
.y6e{bottom:525.653333pt;}
.y9c{bottom:527.173333pt;}
.y45{bottom:531.573333pt;}
.y104{bottom:532.133333pt;}
.y135{bottom:534.453333pt;}
.ye4{bottom:538.533333pt;}
.y12{bottom:539.653333pt;}
.y9b{bottom:542.773333pt;}
.y44{bottom:547.253333pt;}
.y134{bottom:550.053333pt;}
.y173{bottom:550.773333pt;}
.y11{bottom:555.333333pt;}
.y103{bottom:556.373333pt;}
.y6d{bottom:557.333333pt;}
.y9a{bottom:558.453333pt;}
.y43{bottom:562.853333pt;}
.y133{bottom:565.653333pt;}
.y172{bottom:566.453333pt;}
.yc4{bottom:567.013333pt;}
.ye3{bottom:570.133333pt;}
.y10{bottom:570.933333pt;}
.y6c{bottom:572.933333pt;}
.y99{bottom:574.053333pt;}
.y42{bottom:578.453333pt;}
.y102{bottom:580.693333pt;}
.y132{bottom:581.333333pt;}
.ye2{bottom:585.733333pt;}
.yf{bottom:586.533333pt;}
.y6b{bottom:588.613333pt;}
.y171{bottom:590.053333pt;}
.yc3{bottom:591.253333pt;}
.y41{bottom:594.133333pt;}
.y131{bottom:596.933333pt;}
.y98{bottom:597.653333pt;}
.ye1{bottom:601.413333pt;}
.ye{bottom:602.213333pt;}
.y6a{bottom:604.213333pt;}
.y101{bottom:605.013333pt;}
.y170{bottom:605.653333pt;}
.y130{bottom:612.613333pt;}
.y152{bottom:613.333333pt;}
.ye0{bottom:617.013333pt;}
.y40{bottom:617.733333pt;}
.yd{bottom:617.813333pt;}
.y16f{bottom:621.333333pt;}
.y69{bottom:627.813333pt;}
.y12f{bottom:628.213333pt;}
.y151{bottom:628.933333pt;}
.y97{bottom:629.333333pt;}
.yc2{bottom:631.253333pt;}
.ydf{bottom:632.693333pt;}
.yc{bottom:633.493333pt;}
.y16e{bottom:636.933333pt;}
.y12e{bottom:643.813333pt;}
.y96{bottom:644.933333pt;}
.y100{bottom:648.293333pt;}
.y3f{bottom:649.413333pt;}
.y150{bottom:652.613333pt;}
.yc0{bottom:655.493333pt;}
.yb{bottom:657.413333pt;}
.y68{bottom:659.493333pt;}
.y95{bottom:660.613333pt;}
.yde{bottom:663.653333pt;}
.y3e{bottom:665.013333pt;}
.y14f{bottom:668.213333pt;}
.ydd{bottom:674.453333pt;}
.y67{bottom:675.093333pt;}
.y94{bottom:676.213333pt;}
.yff{bottom:679.893333pt;}
.y3d{bottom:688.933333pt;}
.y12d{bottom:691.093333pt;}
.y93{bottom:691.813333pt;}
.yfe{bottom:695.573333pt;}
.y66{bottom:698.693333pt;}
.ya{bottom:700.293333pt;}
.y12c{bottom:706.773333pt;}
.y92{bottom:707.493333pt;}
.ybf{bottom:711.093333pt;}
.yfd{bottom:711.173333pt;}
.y16d{bottom:715.493333pt;}
.y12b{bottom:722.373333pt;}
.y91{bottom:723.093333pt;}
.yfc{bottom:726.853333pt;}
.ydc{bottom:730.053333pt;}
.y65{bottom:730.373333pt;}
.y14e{bottom:731.093333pt;}
.y3c{bottom:731.813333pt;}
.y9{bottom:731.893333pt;}
.y12a{bottom:737.973333pt;}
.yfb{bottom:742.453333pt;}
.y64{bottom:745.973333pt;}
.y90{bottom:746.693333pt;}
.y3b{bottom:747.493333pt;}
.ybe{bottom:751.013333pt;}
.y129{bottom:753.653333pt;}
.ydb{bottom:754.373333pt;}
.y16c{bottom:754.693333pt;}
.yfa{bottom:758.053333pt;}
.y3a{bottom:763.093333pt;}
.y8{bottom:763.733333pt;}
.y128{bottom:769.253333pt;}
.y63{bottom:769.653333pt;}
.y14d{bottom:770.373333pt;}
.yf9{bottom:773.733333pt;}
.y8f{bottom:778.373333pt;}
.y39{bottom:778.693333pt;}
.y127{bottom:784.933333pt;}
.y14c{bottom:785.973333pt;}
.yf8{bottom:789.333333pt;}
.ybc{bottom:790.933333pt;}
.y8e{bottom:793.973333pt;}
.yd9{bottom:794.293333pt;}
.y38{bottom:794.373333pt;}
.y7{bottom:799.093333pt;}
.y126{bottom:800.533333pt;}
.y62{bottom:801.253333pt;}
.y8d{bottom:809.653333pt;}
.y37{bottom:809.973333pt;}
.y6{bottom:815.093333pt;}
.y125{bottom:816.133333pt;}
.y61{bottom:816.853333pt;}
.y11e{bottom:818.693333pt;}
.y8c{bottom:825.253333pt;}
.y36{bottom:825.653333pt;}
.y11d{bottom:831.813333pt;}
.y60{bottom:832.533333pt;}
.y16b{bottom:833.253333pt;}
.yb7{bottom:834.853333pt;}
.yd7{bottom:838.213333pt;}
.y8b{bottom:840.853333pt;}
.y35{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y16a{bottom:848.853333pt;}
.y124{bottom:855.733333pt;}
.y5f{bottom:856.133333pt;}
.y8a{bottom:856.533333pt;}
.y34{bottom:856.853333pt;}
.y14b{bottom:864.533333pt;}
.y4{bottom:877.893333pt;}
.y89{bottom:880.133333pt;}
.y11c{bottom:880.453333pt;}
.yd6{bottom:882.133333pt;}
.y5e{bottom:887.813333pt;}
.y169{bottom:888.133333pt;}
.y33{bottom:888.533333pt;}
.y123{bottom:898.640000pt;}
.y3{bottom:899.840000pt;}
.y5d{bottom:903.440000pt;}
.y14a{bottom:903.840000pt;}
.y32{bottom:904.160000pt;}
.y11b{bottom:904.720000pt;}
.yb6{bottom:906.080000pt;}
.yd4{bottom:906.480000pt;}
.y88{bottom:911.840000pt;}
.y122{bottom:914.240000pt;}
.y5c{bottom:919.040000pt;}
.y149{bottom:919.440000pt;}
.y31{bottom:919.840000pt;}
.y87{bottom:927.440000pt;}
.y11a{bottom:929.040000pt;}
.y121{bottom:930.320000pt;}
.yb4{bottom:930.400000pt;}
.y30{bottom:935.440000pt;}
.y5b{bottom:942.720000pt;}
.y86{bottom:943.040000pt;}
.yd3{bottom:946.400000pt;}
.y120{bottom:948.720000pt;}
.y2f{bottom:951.040000pt;}
.y119{bottom:953.360000pt;}
.y85{bottom:958.720000pt;}
.y2e{bottom:966.720000pt;}
.yb2{bottom:970.320000pt;}
.yd1{bottom:970.640000pt;}
.y5a{bottom:974.320000pt;}
.y118{bottom:977.680000pt;}
.y2d{bottom:982.320000pt;}
.y59{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y117{bottom:1001.920000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h1b{height:12.480000pt;}
.hd{height:23.600000pt;}
.h17{height:23.626667pt;}
.h13{height:23.680000pt;}
.h1a{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h19{height:37.032187pt;}
.h16{height:39.200000pt;}
.hf{height:39.280000pt;}
.h14{height:39.306667pt;}
.h18{height:43.200000pt;}
.h11{height:43.280000pt;}
.he{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:53.309531pt;}
.h9{height:54.187500pt;}
.h12{height:54.880000pt;}
.h1d{height:54.927899pt;}
.h15{height:54.960000pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h1c{height:62.781250pt;}
.h4{height:64.875937pt;}
.h10{height:70.586667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:31.280000pt;}
.we{width:56.720000pt;}
.wa{width:57.680000pt;}
.w13{width:63.280000pt;}
.w16{width:63.360000pt;}
.w9{width:63.600000pt;}
.w14{width:63.946667pt;}
.wb{width:64.560000pt;}
.wc{width:65.546667pt;}
.w12{width:69.360000pt;}
.w11{width:71.200000pt;}
.w8{width:72.720000pt;}
.w17{width:73.360000pt;}
.wf{width:74.800000pt;}
.w15{width:76.880000pt;}
.wd{width:78.320000pt;}
.w10{width:103.946667pt;}
.w7{width:111.546667pt;}
.w3{width:118.746667pt;}
.w6{width:236.480000pt;}
.w5{width:251.306667pt;}
.w18{width:650.933333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:3.120000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x13{left:69.920000pt;}
.xa{left:71.520000pt;}
.x1d{left:98.879988pt;}
.x15{left:174.586667pt;}
.x5{left:180.586667pt;}
.xb{left:183.786667pt;}
.x2{left:187.626655pt;}
.x1b{left:208.906655pt;}
.x6{left:212.506667pt;}
.x16{left:246.506667pt;}
.xc{left:257.146667pt;}
.x1c{left:264.426667pt;}
.x17{left:316.586667pt;}
.xd{left:321.466667pt;}
.x9{left:322.666655pt;}
.xe{left:379.866667pt;}
.xf{left:445.066667pt;}
.x7{left:464.453333pt;}
.x8{left:496.373333pt;}
.x18{left:509.173333pt;}
.x10{left:511.253333pt;}
.x19{left:586.693333pt;}
.x11{left:590.293333pt;}
.x12{left:647.653333pt;}
.x1a{left:650.693333pt;}
.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; }
  