
    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_b1ec1e380924f311e4caa3dc.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_943fe9f6cfb2f5a5a730cac5.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_101aace736015f46a8e86994.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_3e7551933a777a6bca035ad9.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_cfcfa5bbd9eade75e390c33f.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_34d717d89196f855f5d0f0e4.woff2')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_8a8c71329fec47de1e07d713.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls16{letter-spacing:-0.397800px;}
.ls14{letter-spacing:-0.243600px;}
.ls10{letter-spacing:-0.186600px;}
.ls15{letter-spacing:-0.160800px;}
.ls17{letter-spacing:-0.159600px;}
.ls18{letter-spacing:-0.157800px;}
.ls13{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls8{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.041760px;}
.ls11{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.lsd{letter-spacing:0.064800px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1b{letter-spacing:0.098400px;}
.ls5{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.425520px;}
.ls1a{letter-spacing:47.726640px;}
.lse{letter-spacing:63.566640px;}
.ls19{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;}
}
.ws4{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.ws11{word-spacing:-13.324800px;}
.ws8{word-spacing:-13.275360px;}
.wsa{word-spacing:-13.268160px;}
.ws2{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.072800px;}
.ws10{word-spacing:-13.068600px;}
.wsf{word-spacing:-13.066800px;}
.wsd{word-spacing:-13.065600px;}
.ws7{word-spacing:-13.039800px;}
.wsc{word-spacing:-12.982800px;}
.wse{word-spacing:-12.828600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._d{margin-left:-3.454800px;}
._a{margin-left:-2.256600px;}
._0{margin-left:-1.110000px;}
._1{width:1.397280px;}
._7{width:2.606765px;}
._6{width:4.328400px;}
._3{width:5.346000px;}
._2{width:6.613200px;}
._e{width:7.635240px;}
._4{width:8.717400px;}
._5{width:9.919800px;}
._8{width:11.603400px;}
._b{width:14.308800px;}
._19{width:15.330600px;}
._f{width:16.412760px;}
._10{width:17.943480px;}
._9{width:19.839600px;}
._c{width:21.087360px;}
._15{width:22.331280px;}
._22{width:24.312240px;}
._23{width:26.008200px;}
._1b{width:27.354600px;}
._1a{width:28.496880px;}
._12{width:42.084000px;}
._13{width:43.286400px;}
._14{width:50.440680px;}
._11{width:52.304400px;}
._1e{width:56.212200px;}
._1f{width:57.506880px;}
._20{width:78.636960px;}
._21{width:80.019720px;}
._1c{width:94.628880px;}
._1d{width:96.492600px;}
._18{width:99.919440px;}
._17{width:117.414360px;}
._16{width:123.185880px;}
.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;}
.fs7{font-size:63.000000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y58{bottom:7.830000px;}
.y5c{bottom:7.920000px;}
.y5b{bottom:25.470000px;}
.y5a{bottom:43.110000px;}
.y5e{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ydc{bottom:116.940000px;}
.y105{bottom:121.350000px;}
.y1b5{bottom:124.590000px;}
.y11c{bottom:126.750000px;}
.ya3{bottom:127.110000px;}
.y133{bottom:130.350000px;}
.ydb{bottom:134.490000px;}
.y74{bottom:140.700000px;}
.y1b4{bottom:142.680000px;}
.y11b{bottom:144.390000px;}
.ya2{bottom:144.660000px;}
.y16e{bottom:144.840000px;}
.y132{bottom:147.900000px;}
.y27{bottom:148.620000px;}
.y104{bottom:156.900000px;}
.y73{bottom:158.250000px;}
.y194{bottom:160.050000px;}
.y11a{bottom:161.940000px;}
.y16d{bottom:162.390000px;}
.y131{bottom:165.540000px;}
.y26{bottom:166.260000px;}
.y1b3{bottom:169.320000px;}
.yda{bottom:170.130000px;}
.ya1{bottom:171.300000px;}
.y103{bottom:174.450000px;}
.y72{bottom:175.890000px;}
.y193{bottom:177.600000px;}
.y119{bottom:179.490000px;}
.y16c{bottom:180.030000px;}
.y14f{bottom:181.290000px;}
.y130{bottom:183.090000px;}
.y56{bottom:183.180000px;}
.y25{bottom:183.810000px;}
.y1b2{bottom:186.870000px;}
.yd9{bottom:187.680000px;}
.y102{bottom:192.900000px;}
.y71{bottom:193.440000px;}
.y118{bottom:197.130000px;}
.y16b{bottom:197.580000px;}
.y14e{bottom:198.840000px;}
.y24{bottom:201.450000px;}
.y192{bottom:204.240000px;}
.y1b1{bottom:204.510000px;}
.yd8{bottom:205.230000px;}
.ya0{bottom:206.850000px;}
.y101{bottom:210.450000px;}
.y70{bottom:210.990000px;}
.y117{bottom:214.680000px;}
.y14d{bottom:216.480000px;}
.y55{bottom:218.730000px;}
.y23{bottom:219.000000px;}
.y191{bottom:221.790000px;}
.y1b0{bottom:222.060000px;}
.y9f{bottom:224.400000px;}
.y6f{bottom:228.630000px;}
.y100{bottom:228.810000px;}
.y116{bottom:232.320000px;}
.y16a{bottom:233.130000px;}
.y12f{bottom:236.280000px;}
.y22{bottom:236.550000px;}
.yd7{bottom:240.870000px;}
.y6e{bottom:246.180000px;}
.y190{bottom:248.430000px;}
.y1af{bottom:248.610000px;}
.y169{bottom:250.770000px;}
.y14c{bottom:252.030000px;}
.y12e{bottom:253.830000px;}
.y21{bottom:254.190000px;}
.y54{bottom:254.370000px;}
.yd6{bottom:258.420000px;}
.y115{bottom:259.230000px;}
.y9e{bottom:260.040000px;}
.yff{bottom:265.260000px;}
.y18f{bottom:265.980000px;}
.y1ae{bottom:266.250000px;}
.y168{bottom:268.320000px;}
.y14b{bottom:269.580000px;}
.y12d{bottom:271.470000px;}
.y53{bottom:271.920000px;}
.y6d{bottom:273.090000px;}
.y9d{bottom:277.590000px;}
.y20{bottom:281.100000px;}
.yd5{bottom:285.060000px;}
.y167{bottom:285.870000px;}
.y52{bottom:289.470000px;}
.yfe{bottom:291.900000px;}
.y18e{bottom:292.530000px;}
.y1ad{bottom:292.800000px;}
.y9c{bottom:295.140000px;}
.y14a{bottom:296.220000px;}
.y166{bottom:303.510000px;}
.y12c{bottom:307.020000px;}
.y51{bottom:307.110000px;}
.y114{bottom:307.470000px;}
.y18d{bottom:310.170000px;}
.y1ac{bottom:310.440000px;}
.y9b{bottom:313.590000px;}
.yd4{bottom:320.610000px;}
.y165{bottom:321.060000px;}
.y6c{bottom:321.420000px;}
.y50{bottom:324.660000px;}
.yfd{bottom:327.450000px;}
.y1f{bottom:329.340000px;}
.y9a{bottom:331.230000px;}
.y149{bottom:331.770000px;}
.y18c{bottom:336.720000px;}
.y1ab{bottom:336.990000px;}
.yd3{bottom:338.160000px;}
.y164{bottom:338.700000px;}
.y6b{bottom:338.970000px;}
.y113{bottom:339.690000px;}
.y12b{bottom:342.210000px;}
.y4f{bottom:342.300000px;}
.yfc{bottom:345.090000px;}
.y1e{bottom:347.250000px;}
.y99{bottom:348.780000px;}
.y148{bottom:349.410000px;}
.y18b{bottom:354.360000px;}
.y1aa{bottom:354.540000px;}
.y6a{bottom:357.420000px;}
.y12a{bottom:359.760000px;}
.yfb{bottom:362.640000px;}
.y147{bottom:366.960000px;}
.y98{bottom:367.230000px;}
.y4e{bottom:368.850000px;}
.yd2{bottom:373.800000px;}
.y163{bottom:374.250000px;}
.y69{bottom:374.970000px;}
.y129{bottom:377.400000px;}
.y18a{bottom:380.910000px;}
.yfa{bottom:381.090000px;}
.y1a9{bottom:381.180000px;}
.y1d{bottom:384.240000px;}
.y146{bottom:384.510000px;}
.y97{bottom:384.780000px;}
.yd1{bottom:391.350000px;}
.y162{bottom:391.800000px;}
.y68{bottom:392.520000px;}
.y189{bottom:398.460000px;}
.yf9{bottom:398.640000px;}
.y1a8{bottom:398.730000px;}
.y1c{bottom:401.880000px;}
.y145{bottom:402.150000px;}
.y96{bottom:402.330000px;}
.y128{bottom:403.950000px;}
.y4d{bottom:404.400000px;}
.yd0{bottom:408.990000px;}
.y161{bottom:409.440000px;}
.y67{bottom:410.970000px;}
.yf8{bottom:416.190000px;}
.y1b{bottom:419.430000px;}
.y144{bottom:419.700000px;}
.y4c{bottom:421.950000px;}
.y188{bottom:425.100000px;}
.y1a7{bottom:425.370000px;}
.ybf{bottom:426.360000px;}
.y160{bottom:426.990000px;}
.y66{bottom:428.520000px;}
.yf7{bottom:433.740000px;}
.y1a{bottom:437.070000px;}
.y143{bottom:437.250000px;}
.y95{bottom:438.780000px;}
.y127{bottom:439.500000px;}
.y4b{bottom:440.400000px;}
.y187{bottom:442.650000px;}
.y1a6{bottom:442.920000px;}
.ycf{bottom:444.540000px;}
.y15f{bottom:444.630000px;}
.y65{bottom:446.970000px;}
.yf6{bottom:452.190000px;}
.y19{bottom:454.620000px;}
.y94{bottom:456.330000px;}
.y4a{bottom:458.850000px;}
.ybe{bottom:461.910000px;}
.yce{bottom:462.090000px;}
.y15e{bottom:462.180000px;}
.y142{bottom:463.890000px;}
.y64{bottom:464.520000px;}
.y186{bottom:469.200000px;}
.y1a5{bottom:469.470000px;}
.yf5{bottom:469.860000px;}
.y126{bottom:471.750000px;}
.y18{bottom:472.200000px;}
.y93{bottom:474.000000px;}
.y49{bottom:476.430000px;}
.ycd{bottom:479.760000px;}
.y185{bottom:486.870000px;}
.y1a4{bottom:487.140000px;}
.yf4{bottom:487.410000px;}
.y92{bottom:491.550000px;}
.y48{bottom:494.880000px;}
.ybd{bottom:497.580000px;}
.y15d{bottom:497.760000px;}
.y141{bottom:499.470000px;}
.y63{bottom:501.000000px;}
.y17{bottom:507.840000px;}
.y47{bottom:512.430000px;}
.ybc{bottom:512.520000px;}
.y184{bottom:513.420000px;}
.y1a3{bottom:513.690000px;}
.ycc{bottom:515.310000px;}
.y15c{bottom:515.400000px;}
.y140{bottom:517.110000px;}
.y91{bottom:518.190000px;}
.yf3{bottom:523.860000px;}
.y16{bottom:525.390000px;}
.y62{bottom:527.550000px;}
.y183{bottom:531.060000px;}
.y1a2{bottom:531.330000px;}
.ycb{bottom:532.950000px;}
.y13f{bottom:534.660000px;}
.y15{bottom:543.030000px;}
.y182{bottom:548.610000px;}
.y46{bottom:548.880000px;}
.yf2{bottom:550.410000px;}
.yca{bottom:550.500000px;}
.y15b{bottom:550.590000px;}
.y13e{bottom:552.210000px;}
.y90{bottom:553.740000px;}
.ybb{bottom:557.430000px;}
.y14{bottom:560.580000px;}
.y61{bottom:563.190000px;}
.y45{bottom:566.430000px;}
.y8f{bottom:571.290000px;}
.y181{bottom:575.160000px;}
.y1a1{bottom:575.430000px;}
.yc9{bottom:577.050000px;}
.y15a{bottom:577.500000px;}
.y13{bottom:578.130000px;}
.yf1{bottom:586.050000px;}
.y13d{bottom:587.850000px;}
.y8e{bottom:588.930000px;}
.y180{bottom:592.800000px;}
.y44{bottom:593.070000px;}
.y60{bottom:595.410000px;}
.y12{bottom:595.770000px;}
.yba{bottom:602.340000px;}
.yf0{bottom:603.600000px;}
.y13c{bottom:605.400000px;}
.y1a0{bottom:610.620000px;}
.yc8{bottom:612.690000px;}
.y17f{bottom:619.350000px;}
.y13b{bottom:623.040000px;}
.y8d{bottom:624.480000px;}
.y159{bottom:625.740000px;}
.y43{bottom:628.620000px;}
.yc7{bottom:630.240000px;}
.y11{bottom:631.320000px;}
.y17e{bottom:636.990000px;}
.y19f{bottom:637.260000px;}
.yef{bottom:639.150000px;}
.y13a{bottom:640.590000px;}
.y8c{bottom:642.030000px;}
.y158{bottom:643.290000px;}
.y42{bottom:646.260000px;}
.yc6{bottom:647.790000px;}
.y10{bottom:648.960000px;}
.y17d{bottom:654.540000px;}
.y19e{bottom:654.810000px;}
.yee{bottom:656.790000px;}
.y139{bottom:658.140000px;}
.y8b{bottom:660.480000px;}
.y41{bottom:663.810000px;}
.yc5{bottom:665.430000px;}
.yf{bottom:666.510000px;}
.yb9{bottom:668.670000px;}
.y17c{bottom:672.090000px;}
.y19d{bottom:672.360000px;}
.yed{bottom:674.340000px;}
.y138{bottom:675.780000px;}
.y8a{bottom:678.120000px;}
.y157{bottom:678.930000px;}
.y40{bottom:681.360000px;}
.yc4{bottom:682.980000px;}
.ye{bottom:684.060000px;}
.yec{bottom:692.790000px;}
.y137{bottom:693.330000px;}
.y89{bottom:695.670000px;}
.y156{bottom:696.480000px;}
.y17b{bottom:698.730000px;}
.y3f{bottom:699.000000px;}
.yc3{bottom:700.620000px;}
.yd{bottom:701.700000px;}
.yb8{bottom:704.220000px;}
.yeb{bottom:710.340000px;}
.y155{bottom:714.120000px;}
.y17a{bottom:716.280000px;}
.y3e{bottom:716.550000px;}
.yc{bottom:719.250000px;}
.y136{bottom:719.970000px;}
.yb7{bottom:721.860000px;}
.yc2{bottom:727.530000px;}
.yea{bottom:727.890000px;}
.y112{bottom:731.580000px;}
.y88{bottom:732.120000px;}
.yb{bottom:736.890000px;}
.yb6{bottom:739.410000px;}
.y179{bottom:742.920000px;}
.y3d{bottom:743.190000px;}
.y87{bottom:749.670000px;}
.y135{bottom:755.520000px;}
.yb5{bottom:757.860000px;}
.y111{bottom:758.850000px;}
.y178{bottom:760.470000px;}
.y19c{bottom:760.740000px;}
.ya{bottom:763.800000px;}
.ye9{bottom:764.340000px;}
.y86{bottom:767.220000px;}
.yb4{bottom:775.410000px;}
.yc1{bottom:775.770000px;}
.y177{bottom:778.020000px;}
.y19b{bottom:778.290000px;}
.y3c{bottom:778.740000px;}
.y85{bottom:784.860000px;}
.y110{bottom:786.210000px;}
.y134{bottom:787.740000px;}
.ye8{bottom:790.980000px;}
.yb3{bottom:793.050000px;}
.y3b{bottom:796.290000px;}
.y176{bottom:804.660000px;}
.y19a{bottom:804.930000px;}
.yc0{bottom:807.990000px;}
.yb2{bottom:810.600000px;}
.y84{bottom:811.410000px;}
.y9{bottom:812.040000px;}
.y10f{bottom:813.570000px;}
.y3a{bottom:813.930000px;}
.y175{bottom:822.210000px;}
.y199{bottom:822.480000px;}
.ye7{bottom:826.530000px;}
.yb1{bottom:829.050000px;}
.y39{bottom:831.480000px;}
.y10e{bottom:840.930000px;}
.ye6{bottom:844.080000px;}
.yb0{bottom:846.600000px;}
.y154{bottom:846.960000px;}
.y83{bottom:847.050000px;}
.y8{bottom:847.860000px;}
.y125{bottom:848.670000px;}
.y174{bottom:848.850000px;}
.y38{bottom:849.030000px;}
.yaf{bottom:864.150000px;}
.y82{bottom:864.600000px;}
.y124{bottom:866.220000px;}
.y173{bottom:866.400000px;}
.y198{bottom:866.670000px;}
.y10d{bottom:868.200000px;}
.ye5{bottom:879.630000px;}
.yae{bottom:881.700000px;}
.y81{bottom:882.150000px;}
.y7{bottom:883.860000px;}
.y172{bottom:883.950000px;}
.y37{bottom:884.670000px;}
.y197{bottom:893.220000px;}
.ye4{bottom:898.080000px;}
.y80{bottom:900.600000px;}
.y123{bottom:901.410000px;}
.y36{bottom:902.220000px;}
.y171{bottom:910.860000px;}
.ye3{bottom:916.440000px;}
.y10c{bottom:916.890000px;}
.y7f{bottom:918.150000px;}
.y35{bottom:919.860000px;}
.y6{bottom:923.640000px;}
.y196{bottom:928.410000px;}
.y5f{bottom:933.990000px;}
.ye2{bottom:934.890000px;}
.y153{bottom:935.700000px;}
.y7e{bottom:935.790000px;}
.y122{bottom:936.960000px;}
.y34{bottom:937.410000px;}
.y5{bottom:941.640000px;}
.y5d{bottom:948.930000px;}
.y10b{bottom:952.530000px;}
.y7d{bottom:953.340000px;}
.y33{bottom:954.960000px;}
.y170{bottom:959.190000px;}
.yad{bottom:962.340000px;}
.y10a{bottom:970.080000px;}
.y7c{bottom:971.790000px;}
.y152{bottom:972.150000px;}
.y32{bottom:972.600000px;}
.y4{bottom:973.950000px;}
.y16f{bottom:986.100000px;}
.y109{bottom:988.530000px;}
.y7b{bottom:989.340000px;}
.ye1{bottom:989.790000px;}
.y121{bottom:990.150000px;}
.yac{bottom:997.890000px;}
.y1bd{bottom:998.160000px;}
.y151{bottom:998.790000px;}
.y31{bottom:999.150000px;}
.y108{bottom:1006.080000px;}
.y7a{bottom:1006.890000px;}
.y120{bottom:1007.790000px;}
.y3{bottom:1012.230000px;}
.yab{bottom:1015.560000px;}
.y1bc{bottom:1015.740000px;}
.ye0{bottom:1016.370000px;}
.y195{bottom:1016.820000px;}
.y107{bottom:1024.560000px;}
.y11f{bottom:1025.370000px;}
.y59{bottom:1029.060000px;}
.yaa{bottom:1033.110000px;}
.y150{bottom:1034.370000px;}
.y30{bottom:1034.820000px;}
.y106{bottom:1042.110000px;}
.y1bb{bottom:1042.290000px;}
.y11e{bottom:1042.920000px;}
.y79{bottom:1043.370000px;}
.ya9{bottom:1050.660000px;}
.ydf{bottom:1051.920000px;}
.y2f{bottom:1052.370000px;}
.y1ba{bottom:1059.930000px;}
.y11d{bottom:1060.560000px;}
.y78{bottom:1060.920000px;}
.ya8{bottom:1069.110000px;}
.yde{bottom:1069.560000px;}
.y2e{bottom:1069.920000px;}
.y1b9{bottom:1077.480000px;}
.y77{bottom:1078.560000px;}
.ya7{bottom:1086.750000px;}
.ydd{bottom:1087.110000px;}
.y2d{bottom:1087.560000px;}
.y57{bottom:1091.610000px;}
.y1b8{bottom:1095.120000px;}
.y76{bottom:1096.110000px;}
.ya6{bottom:1104.300000px;}
.y2c{bottom:1105.110000px;}
.y75{bottom:1113.750000px;}
.y1b7{bottom:1121.670000px;}
.ya5{bottom:1121.850000px;}
.y2b{bottom:1122.750000px;}
.ya4{bottom:1139.400000px;}
.y1b6{bottom:1139.760000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hb{height:26.550000px;}
.h11{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h10{height:44.190000px;}
.hc{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.ha{height:61.793886px;}
.hd{height:61.830000px;}
.h9{height:62.585859px;}
.h12{height:65.707031px;}
.hf{height:68.582109px;}
.h4{height:72.985430px;}
.he{height:79.410000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:105.240000px;}
.w7{width:169.050000px;}
.w4{width:215.280000px;}
.w3{width:215.310000px;}
.w8{width:407.910000px;}
.w6{width:649.650000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x17{left:111.239987px;}
.x5{left:122.039987px;}
.x14{left:153.449987px;}
.xf{left:157.770000px;}
.xc{left:174.810000px;}
.x2{left:202.799987px;}
.xe{left:227.189987px;}
.x12{left:240.419987px;}
.x16{left:253.289987px;}
.xb{left:266.699987px;}
.x10{left:327.540000px;}
.x7{left:338.970000px;}
.x9{left:446.609987px;}
.x8{left:555.000000px;}
.xd{left:666.059987px;}
.x11{left:667.139987px;}
.xa{left:679.559987px;}
.x15{left:685.139987px;}
.x13{left:703.139987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls16{letter-spacing:-0.353600pt;}
.ls14{letter-spacing:-0.216533pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls15{letter-spacing:-0.142933pt;}
.ls17{letter-spacing:-0.141867pt;}
.ls18{letter-spacing:-0.140267pt;}
.ls13{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls8{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.037120pt;}
.ls11{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.lsd{letter-spacing:0.057600pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1b{letter-spacing:0.087467pt;}
.ls5{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.378240pt;}
.ls1a{letter-spacing:42.423680pt;}
.lse{letter-spacing:56.503680pt;}
.ls19{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.ws11{word-spacing:-11.844267pt;}
.ws8{word-spacing:-11.800320pt;}
.wsa{word-spacing:-11.793920pt;}
.ws2{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.620267pt;}
.ws10{word-spacing:-11.616533pt;}
.wsf{word-spacing:-11.614933pt;}
.wsd{word-spacing:-11.613867pt;}
.ws7{word-spacing:-11.590933pt;}
.wsc{word-spacing:-11.540267pt;}
.wse{word-spacing:-11.403200pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._d{margin-left:-3.070934pt;}
._a{margin-left:-2.005866pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.242027pt;}
._7{width:2.317125pt;}
._6{width:3.847466pt;}
._3{width:4.752000pt;}
._2{width:5.878400pt;}
._e{width:6.786880pt;}
._4{width:7.748800pt;}
._5{width:8.817600pt;}
._8{width:10.314134pt;}
._b{width:12.718934pt;}
._19{width:13.627200pt;}
._f{width:14.589120pt;}
._10{width:15.949760pt;}
._9{width:17.635200pt;}
._c{width:18.744320pt;}
._15{width:19.850027pt;}
._22{width:21.610880pt;}
._23{width:23.118400pt;}
._1b{width:24.315200pt;}
._1a{width:25.330560pt;}
._12{width:37.408000pt;}
._13{width:38.476800pt;}
._14{width:44.836160pt;}
._11{width:46.492800pt;}
._1e{width:49.966400pt;}
._1f{width:51.117226pt;}
._20{width:69.899520pt;}
._21{width:71.128640pt;}
._1c{width:84.114560pt;}
._1d{width:85.771200pt;}
._18{width:88.817280pt;}
._17{width:104.368320pt;}
._16{width:109.498560pt;}
.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;}
.fs7{font-size:56.000000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:6.960000pt;}
.y5c{bottom:7.040000pt;}
.y5b{bottom:22.640000pt;}
.y5a{bottom:38.320000pt;}
.y5e{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ydc{bottom:103.946667pt;}
.y105{bottom:107.866667pt;}
.y1b5{bottom:110.746667pt;}
.y11c{bottom:112.666667pt;}
.ya3{bottom:112.986667pt;}
.y133{bottom:115.866667pt;}
.ydb{bottom:119.546667pt;}
.y74{bottom:125.066667pt;}
.y1b4{bottom:126.826667pt;}
.y11b{bottom:128.346667pt;}
.ya2{bottom:128.586667pt;}
.y16e{bottom:128.746667pt;}
.y132{bottom:131.466667pt;}
.y27{bottom:132.106667pt;}
.y104{bottom:139.466667pt;}
.y73{bottom:140.666667pt;}
.y194{bottom:142.266667pt;}
.y11a{bottom:143.946667pt;}
.y16d{bottom:144.346667pt;}
.y131{bottom:147.146667pt;}
.y26{bottom:147.786667pt;}
.y1b3{bottom:150.506667pt;}
.yda{bottom:151.226667pt;}
.ya1{bottom:152.266667pt;}
.y103{bottom:155.066667pt;}
.y72{bottom:156.346667pt;}
.y193{bottom:157.866667pt;}
.y119{bottom:159.546667pt;}
.y16c{bottom:160.026667pt;}
.y14f{bottom:161.146667pt;}
.y130{bottom:162.746667pt;}
.y56{bottom:162.826667pt;}
.y25{bottom:163.386667pt;}
.y1b2{bottom:166.106667pt;}
.yd9{bottom:166.826667pt;}
.y102{bottom:171.466667pt;}
.y71{bottom:171.946667pt;}
.y118{bottom:175.226667pt;}
.y16b{bottom:175.626667pt;}
.y14e{bottom:176.746667pt;}
.y24{bottom:179.066667pt;}
.y192{bottom:181.546667pt;}
.y1b1{bottom:181.786667pt;}
.yd8{bottom:182.426667pt;}
.ya0{bottom:183.866667pt;}
.y101{bottom:187.066667pt;}
.y70{bottom:187.546667pt;}
.y117{bottom:190.826667pt;}
.y14d{bottom:192.426667pt;}
.y55{bottom:194.426667pt;}
.y23{bottom:194.666667pt;}
.y191{bottom:197.146667pt;}
.y1b0{bottom:197.386667pt;}
.y9f{bottom:199.466667pt;}
.y6f{bottom:203.226667pt;}
.y100{bottom:203.386667pt;}
.y116{bottom:206.506667pt;}
.y16a{bottom:207.226667pt;}
.y12f{bottom:210.026667pt;}
.y22{bottom:210.266667pt;}
.yd7{bottom:214.106667pt;}
.y6e{bottom:218.826667pt;}
.y190{bottom:220.826667pt;}
.y1af{bottom:220.986667pt;}
.y169{bottom:222.906667pt;}
.y14c{bottom:224.026667pt;}
.y12e{bottom:225.626667pt;}
.y21{bottom:225.946667pt;}
.y54{bottom:226.106667pt;}
.yd6{bottom:229.706667pt;}
.y115{bottom:230.426667pt;}
.y9e{bottom:231.146667pt;}
.yff{bottom:235.786667pt;}
.y18f{bottom:236.426667pt;}
.y1ae{bottom:236.666667pt;}
.y168{bottom:238.506667pt;}
.y14b{bottom:239.626667pt;}
.y12d{bottom:241.306667pt;}
.y53{bottom:241.706667pt;}
.y6d{bottom:242.746667pt;}
.y9d{bottom:246.746667pt;}
.y20{bottom:249.866667pt;}
.yd5{bottom:253.386667pt;}
.y167{bottom:254.106667pt;}
.y52{bottom:257.306667pt;}
.yfe{bottom:259.466667pt;}
.y18e{bottom:260.026667pt;}
.y1ad{bottom:260.266667pt;}
.y9c{bottom:262.346667pt;}
.y14a{bottom:263.306667pt;}
.y166{bottom:269.786667pt;}
.y12c{bottom:272.906667pt;}
.y51{bottom:272.986667pt;}
.y114{bottom:273.306667pt;}
.y18d{bottom:275.706667pt;}
.y1ac{bottom:275.946667pt;}
.y9b{bottom:278.746667pt;}
.yd4{bottom:284.986667pt;}
.y165{bottom:285.386667pt;}
.y6c{bottom:285.706667pt;}
.y50{bottom:288.586667pt;}
.yfd{bottom:291.066667pt;}
.y1f{bottom:292.746667pt;}
.y9a{bottom:294.426667pt;}
.y149{bottom:294.906667pt;}
.y18c{bottom:299.306667pt;}
.y1ab{bottom:299.546667pt;}
.yd3{bottom:300.586667pt;}
.y164{bottom:301.066667pt;}
.y6b{bottom:301.306667pt;}
.y113{bottom:301.946667pt;}
.y12b{bottom:304.186667pt;}
.y4f{bottom:304.266667pt;}
.yfc{bottom:306.746667pt;}
.y1e{bottom:308.666667pt;}
.y99{bottom:310.026667pt;}
.y148{bottom:310.586667pt;}
.y18b{bottom:314.986667pt;}
.y1aa{bottom:315.146667pt;}
.y6a{bottom:317.706667pt;}
.y12a{bottom:319.786667pt;}
.yfb{bottom:322.346667pt;}
.y147{bottom:326.186667pt;}
.y98{bottom:326.426667pt;}
.y4e{bottom:327.866667pt;}
.yd2{bottom:332.266667pt;}
.y163{bottom:332.666667pt;}
.y69{bottom:333.306667pt;}
.y129{bottom:335.466667pt;}
.y18a{bottom:338.586667pt;}
.yfa{bottom:338.746667pt;}
.y1a9{bottom:338.826667pt;}
.y1d{bottom:341.546667pt;}
.y146{bottom:341.786667pt;}
.y97{bottom:342.026667pt;}
.yd1{bottom:347.866667pt;}
.y162{bottom:348.266667pt;}
.y68{bottom:348.906667pt;}
.y189{bottom:354.186667pt;}
.yf9{bottom:354.346667pt;}
.y1a8{bottom:354.426667pt;}
.y1c{bottom:357.226667pt;}
.y145{bottom:357.466667pt;}
.y96{bottom:357.626667pt;}
.y128{bottom:359.066667pt;}
.y4d{bottom:359.466667pt;}
.yd0{bottom:363.546667pt;}
.y161{bottom:363.946667pt;}
.y67{bottom:365.306667pt;}
.yf8{bottom:369.946667pt;}
.y1b{bottom:372.826667pt;}
.y144{bottom:373.066667pt;}
.y4c{bottom:375.066667pt;}
.y188{bottom:377.866667pt;}
.y1a7{bottom:378.106667pt;}
.ybf{bottom:378.986667pt;}
.y160{bottom:379.546667pt;}
.y66{bottom:380.906667pt;}
.yf7{bottom:385.546667pt;}
.y1a{bottom:388.506667pt;}
.y143{bottom:388.666667pt;}
.y95{bottom:390.026667pt;}
.y127{bottom:390.666667pt;}
.y4b{bottom:391.466667pt;}
.y187{bottom:393.466667pt;}
.y1a6{bottom:393.706667pt;}
.ycf{bottom:395.146667pt;}
.y15f{bottom:395.226667pt;}
.y65{bottom:397.306667pt;}
.yf6{bottom:401.946667pt;}
.y19{bottom:404.106667pt;}
.y94{bottom:405.626667pt;}
.y4a{bottom:407.866667pt;}
.ybe{bottom:410.586667pt;}
.yce{bottom:410.746667pt;}
.y15e{bottom:410.826667pt;}
.y142{bottom:412.346667pt;}
.y64{bottom:412.906667pt;}
.y186{bottom:417.066667pt;}
.y1a5{bottom:417.306667pt;}
.yf5{bottom:417.653333pt;}
.y126{bottom:419.333333pt;}
.y18{bottom:419.733333pt;}
.y93{bottom:421.333333pt;}
.y49{bottom:423.493333pt;}
.ycd{bottom:426.453333pt;}
.y185{bottom:432.773333pt;}
.y1a4{bottom:433.013333pt;}
.yf4{bottom:433.253333pt;}
.y92{bottom:436.933333pt;}
.y48{bottom:439.893333pt;}
.ybd{bottom:442.293333pt;}
.y15d{bottom:442.453333pt;}
.y141{bottom:443.973333pt;}
.y63{bottom:445.333333pt;}
.y17{bottom:451.413333pt;}
.y47{bottom:455.493333pt;}
.ybc{bottom:455.573333pt;}
.y184{bottom:456.373333pt;}
.y1a3{bottom:456.613333pt;}
.ycc{bottom:458.053333pt;}
.y15c{bottom:458.133333pt;}
.y140{bottom:459.653333pt;}
.y91{bottom:460.613333pt;}
.yf3{bottom:465.653333pt;}
.y16{bottom:467.013333pt;}
.y62{bottom:468.933333pt;}
.y183{bottom:472.053333pt;}
.y1a2{bottom:472.293333pt;}
.ycb{bottom:473.733333pt;}
.y13f{bottom:475.253333pt;}
.y15{bottom:482.693333pt;}
.y182{bottom:487.653333pt;}
.y46{bottom:487.893333pt;}
.yf2{bottom:489.253333pt;}
.yca{bottom:489.333333pt;}
.y15b{bottom:489.413333pt;}
.y13e{bottom:490.853333pt;}
.y90{bottom:492.213333pt;}
.ybb{bottom:495.493333pt;}
.y14{bottom:498.293333pt;}
.y61{bottom:500.613333pt;}
.y45{bottom:503.493333pt;}
.y8f{bottom:507.813333pt;}
.y181{bottom:511.253333pt;}
.y1a1{bottom:511.493333pt;}
.yc9{bottom:512.933333pt;}
.y15a{bottom:513.333333pt;}
.y13{bottom:513.893333pt;}
.yf1{bottom:520.933333pt;}
.y13d{bottom:522.533333pt;}
.y8e{bottom:523.493333pt;}
.y180{bottom:526.933333pt;}
.y44{bottom:527.173333pt;}
.y60{bottom:529.253333pt;}
.y12{bottom:529.573333pt;}
.yba{bottom:535.413333pt;}
.yf0{bottom:536.533333pt;}
.y13c{bottom:538.133333pt;}
.y1a0{bottom:542.773333pt;}
.yc8{bottom:544.613333pt;}
.y17f{bottom:550.533333pt;}
.y13b{bottom:553.813333pt;}
.y8d{bottom:555.093333pt;}
.y159{bottom:556.213333pt;}
.y43{bottom:558.773333pt;}
.yc7{bottom:560.213333pt;}
.y11{bottom:561.173333pt;}
.y17e{bottom:566.213333pt;}
.y19f{bottom:566.453333pt;}
.yef{bottom:568.133333pt;}
.y13a{bottom:569.413333pt;}
.y8c{bottom:570.693333pt;}
.y158{bottom:571.813333pt;}
.y42{bottom:574.453333pt;}
.yc6{bottom:575.813333pt;}
.y10{bottom:576.853333pt;}
.y17d{bottom:581.813333pt;}
.y19e{bottom:582.053333pt;}
.yee{bottom:583.813333pt;}
.y139{bottom:585.013333pt;}
.y8b{bottom:587.093333pt;}
.y41{bottom:590.053333pt;}
.yc5{bottom:591.493333pt;}
.yf{bottom:592.453333pt;}
.yb9{bottom:594.373333pt;}
.y17c{bottom:597.413333pt;}
.y19d{bottom:597.653333pt;}
.yed{bottom:599.413333pt;}
.y138{bottom:600.693333pt;}
.y8a{bottom:602.773333pt;}
.y157{bottom:603.493333pt;}
.y40{bottom:605.653333pt;}
.yc4{bottom:607.093333pt;}
.ye{bottom:608.053333pt;}
.yec{bottom:615.813333pt;}
.y137{bottom:616.293333pt;}
.y89{bottom:618.373333pt;}
.y156{bottom:619.093333pt;}
.y17b{bottom:621.093333pt;}
.y3f{bottom:621.333333pt;}
.yc3{bottom:622.773333pt;}
.yd{bottom:623.733333pt;}
.yb8{bottom:625.973333pt;}
.yeb{bottom:631.413333pt;}
.y155{bottom:634.773333pt;}
.y17a{bottom:636.693333pt;}
.y3e{bottom:636.933333pt;}
.yc{bottom:639.333333pt;}
.y136{bottom:639.973333pt;}
.yb7{bottom:641.653333pt;}
.yc2{bottom:646.693333pt;}
.yea{bottom:647.013333pt;}
.y112{bottom:650.293333pt;}
.y88{bottom:650.773333pt;}
.yb{bottom:655.013333pt;}
.yb6{bottom:657.253333pt;}
.y179{bottom:660.373333pt;}
.y3d{bottom:660.613333pt;}
.y87{bottom:666.373333pt;}
.y135{bottom:671.573333pt;}
.yb5{bottom:673.653333pt;}
.y111{bottom:674.533333pt;}
.y178{bottom:675.973333pt;}
.y19c{bottom:676.213333pt;}
.ya{bottom:678.933333pt;}
.ye9{bottom:679.413333pt;}
.y86{bottom:681.973333pt;}
.yb4{bottom:689.253333pt;}
.yc1{bottom:689.573333pt;}
.y177{bottom:691.573333pt;}
.y19b{bottom:691.813333pt;}
.y3c{bottom:692.213333pt;}
.y85{bottom:697.653333pt;}
.y110{bottom:698.853333pt;}
.y134{bottom:700.213333pt;}
.ye8{bottom:703.093333pt;}
.yb3{bottom:704.933333pt;}
.y3b{bottom:707.813333pt;}
.y176{bottom:715.253333pt;}
.y19a{bottom:715.493333pt;}
.yc0{bottom:718.213333pt;}
.yb2{bottom:720.533333pt;}
.y84{bottom:721.253333pt;}
.y9{bottom:721.813333pt;}
.y10f{bottom:723.173333pt;}
.y3a{bottom:723.493333pt;}
.y175{bottom:730.853333pt;}
.y199{bottom:731.093333pt;}
.ye7{bottom:734.693333pt;}
.yb1{bottom:736.933333pt;}
.y39{bottom:739.093333pt;}
.y10e{bottom:747.493333pt;}
.ye6{bottom:750.293333pt;}
.yb0{bottom:752.533333pt;}
.y154{bottom:752.853333pt;}
.y83{bottom:752.933333pt;}
.y8{bottom:753.653333pt;}
.y125{bottom:754.373333pt;}
.y174{bottom:754.533333pt;}
.y38{bottom:754.693333pt;}
.yaf{bottom:768.133333pt;}
.y82{bottom:768.533333pt;}
.y124{bottom:769.973333pt;}
.y173{bottom:770.133333pt;}
.y198{bottom:770.373333pt;}
.y10d{bottom:771.733333pt;}
.ye5{bottom:781.893333pt;}
.yae{bottom:783.733333pt;}
.y81{bottom:784.133333pt;}
.y7{bottom:785.653333pt;}
.y172{bottom:785.733333pt;}
.y37{bottom:786.373333pt;}
.y197{bottom:793.973333pt;}
.ye4{bottom:798.293333pt;}
.y80{bottom:800.533333pt;}
.y123{bottom:801.253333pt;}
.y36{bottom:801.973333pt;}
.y171{bottom:809.653333pt;}
.ye3{bottom:814.613333pt;}
.y10c{bottom:815.013333pt;}
.y7f{bottom:816.133333pt;}
.y35{bottom:817.653333pt;}
.y6{bottom:821.013333pt;}
.y196{bottom:825.253333pt;}
.y5f{bottom:830.213333pt;}
.ye2{bottom:831.013333pt;}
.y153{bottom:831.733333pt;}
.y7e{bottom:831.813333pt;}
.y122{bottom:832.853333pt;}
.y34{bottom:833.253333pt;}
.y5{bottom:837.013333pt;}
.y5d{bottom:843.493333pt;}
.y10b{bottom:846.693333pt;}
.y7d{bottom:847.413333pt;}
.y33{bottom:848.853333pt;}
.y170{bottom:852.613333pt;}
.yad{bottom:855.413333pt;}
.y10a{bottom:862.293333pt;}
.y7c{bottom:863.813333pt;}
.y152{bottom:864.133333pt;}
.y32{bottom:864.533333pt;}
.y4{bottom:865.733333pt;}
.y16f{bottom:876.533333pt;}
.y109{bottom:878.693333pt;}
.y7b{bottom:879.413333pt;}
.ye1{bottom:879.813333pt;}
.y121{bottom:880.133333pt;}
.yac{bottom:887.013333pt;}
.y1bd{bottom:887.253333pt;}
.y151{bottom:887.813333pt;}
.y31{bottom:888.133333pt;}
.y108{bottom:894.293333pt;}
.y7a{bottom:895.013333pt;}
.y120{bottom:895.813333pt;}
.y3{bottom:899.760000pt;}
.yab{bottom:902.720000pt;}
.y1bc{bottom:902.880000pt;}
.ye0{bottom:903.440000pt;}
.y195{bottom:903.840000pt;}
.y107{bottom:910.720000pt;}
.y11f{bottom:911.440000pt;}
.y59{bottom:914.720000pt;}
.yaa{bottom:918.320000pt;}
.y150{bottom:919.440000pt;}
.y30{bottom:919.840000pt;}
.y106{bottom:926.320000pt;}
.y1bb{bottom:926.480000pt;}
.y11e{bottom:927.040000pt;}
.y79{bottom:927.440000pt;}
.ya9{bottom:933.920000pt;}
.ydf{bottom:935.040000pt;}
.y2f{bottom:935.440000pt;}
.y1ba{bottom:942.160000pt;}
.y11d{bottom:942.720000pt;}
.y78{bottom:943.040000pt;}
.ya8{bottom:950.320000pt;}
.yde{bottom:950.720000pt;}
.y2e{bottom:951.040000pt;}
.y1b9{bottom:957.760000pt;}
.y77{bottom:958.720000pt;}
.ya7{bottom:966.000000pt;}
.ydd{bottom:966.320000pt;}
.y2d{bottom:966.720000pt;}
.y57{bottom:970.320000pt;}
.y1b8{bottom:973.440000pt;}
.y76{bottom:974.320000pt;}
.ya6{bottom:981.600000pt;}
.y2c{bottom:982.320000pt;}
.y75{bottom:990.000000pt;}
.y1b7{bottom:997.040000pt;}
.ya5{bottom:997.200000pt;}
.y2b{bottom:998.000000pt;}
.ya4{bottom:1012.800000pt;}
.y1b6{bottom:1013.120000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.h11{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h10{height:39.280000pt;}
.hc{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.ha{height:54.927899pt;}
.hd{height:54.960000pt;}
.h9{height:55.631875pt;}
.h12{height:58.406250pt;}
.hf{height:60.961875pt;}
.h4{height:64.875937pt;}
.he{height:70.586667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:93.546667pt;}
.w7{width:150.266667pt;}
.w4{width:191.360000pt;}
.w3{width:191.386667pt;}
.w8{width:362.586667pt;}
.w6{width:577.466667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x17{left:98.879988pt;}
.x5{left:108.479988pt;}
.x14{left:136.399988pt;}
.xf{left:140.240000pt;}
.xc{left:155.386667pt;}
.x2{left:180.266655pt;}
.xe{left:201.946655pt;}
.x12{left:213.706655pt;}
.x16{left:225.146655pt;}
.xb{left:237.066655pt;}
.x10{left:291.146667pt;}
.x7{left:301.306667pt;}
.x9{left:396.986655pt;}
.x8{left:493.333333pt;}
.xd{left:592.053322pt;}
.x11{left:593.013322pt;}
.xa{left:604.053322pt;}
.x15{left:609.013322pt;}
.x13{left:625.013322pt;}
.x3{left:704.053322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  