
    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_950e80e0ad1ef9785044af97.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_b41162864a09d18a052fccaa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3ac6ed387fa0ac59f8c401ae.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_542b151927c8e445acd0d59a.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_60a0c179033084f7f9753b2e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d597693db255783c1e4bbebe.woff2')format("woff");}.ff8{font-family:ff8;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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls17{letter-spacing:-0.409800px;}
.lsf{letter-spacing:-0.186600px;}
.ls10{letter-spacing:-0.141600px;}
.ls8{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.008400px;}
.ls1d{letter-spacing:-0.007560px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.048960px;}
.ls18{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls14{letter-spacing:0.092160px;}
.ls1{letter-spacing:0.093600px;}
.ls1b{letter-spacing:0.098400px;}
.ls6{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls11{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.425520px;}
.ls15{letter-spacing:0.813600px;}
.ls16{letter-spacing:0.816000px;}
.ls1c{letter-spacing:47.726640px;}
.ls19{letter-spacing:63.566640px;}
.ls1a{letter-spacing:80.846640px;}
.ls13{letter-spacing:176.613600px;}
.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;}
}
.wsa{word-spacing:-60.120000px;}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.324800px;}
.wsb{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wse{word-spacing:-13.218840px;}
.ws9{word-spacing:-13.084800px;}
.ws7{word-spacing:-13.039800px;}
.wsc{word-spacing:-12.816600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._9{margin-left:-3.693362px;}
._8{margin-left:-2.464800px;}
._0{margin-left:-1.110000px;}
._2{width:1.006812px;}
._a{width:2.015760px;}
._7{width:3.066000px;}
._6{width:4.268400px;}
._b{width:5.531040px;}
._c{width:6.673440px;}
._5{width:7.887722px;}
._3{width:9.438600px;}
._4{width:10.510442px;}
._20{width:11.723400px;}
._2d{width:14.669280px;}
._1c{width:16.472880px;}
._1f{width:18.051240px;}
._1{width:19.695600px;}
._34{width:20.741400px;}
._35{width:21.943800px;}
._10{width:23.025960px;}
._15{width:24.769440px;}
._40{width:26.753400px;}
._30{width:28.557000px;}
._29{width:29.579040px;}
._3d{width:31.217508px;}
._24{width:32.524920px;}
._1b{width:33.967800px;}
._2a{width:35.170200px;}
._1a{width:36.252360px;}
._36{width:37.394640px;}
._23{width:38.657160px;}
._21{width:39.739320px;}
._e{width:41.422680px;}
._14{width:42.625080px;}
._13{width:43.707240px;}
._25{width:44.969760px;}
._72{width:46.019640px;}
._47{width:47.134080px;}
._2b{width:48.156120px;}
._56{width:49.238280px;}
._48{width:50.997240px;}
._31{width:52.785360px;}
._2c{width:53.927640px;}
._5b{width:55.069920px;}
._78{width:56.207760px;}
._17{width:57.234240px;}
._26{width:58.436640px;}
._3c{width:59.639040px;}
._28{width:61.502760px;}
._4f{width:63.285840px;}
._d{width:64.428840px;}
._1e{width:65.951640px;}
._33{width:66.973680px;}
._11{width:68.176080px;}
._41{width:69.378480px;}
._46{width:70.580880px;}
._3f{width:72.564840px;}
._4e{width:74.789280px;}
._4d{width:76.051800px;}
._3b{width:78.156000px;}
._32{width:80.200080px;}
._77{width:81.222120px;}
._61{width:82.965600px;}
._64{width:85.851360px;}
._65{width:86.993640px;}
._39{width:88.075800px;}
._62{width:89.458560px;}
._6d{width:90.989400px;}
._37{width:92.284200px;}
._67{width:93.666960px;}
._44{width:95.590800px;}
._22{width:97.153920px;}
._59{width:98.416440px;}
._3e{width:99.498600px;}
._38{width:100.580760px;}
._f{width:104.007600px;}
._43{width:105.751080px;}
._68{width:107.133840px;}
._69{width:109.538640px;}
._76{width:112.965480px;}
._4a{width:115.550640px;}
._1d{width:118.496520px;}
._54{width:121.262040px;}
._55{width:123.666840px;}
._71{width:129.017520px;}
._4c{width:132.624720px;}
._45{width:134.203080px;}
._6c{width:137.133720px;}
._74{width:140.680800px;}
._53{width:143.265960px;}
._49{width:145.610640px;}
._57{width:150.540480px;}
._2e{width:154.568520px;}
._6a{width:156.071520px;}
._6f{width:158.055480px;}
._5c{width:165.330000px;}
._2f{width:168.035400px;}
._4b{width:172.724760px;}
._5a{width:176.452200px;}
._12{width:180.420120px;}
._60{width:184.207680px;}
._19{width:187.514280px;}
._73{width:203.205600px;}
._51{width:207.053280px;}
._6e{width:210.720600px;}
._42{width:219.137400px;}
._5d{width:220.941000px;}
._16{width:228.035160px;}
._3a{width:241.141320px;}
._50{width:244.808640px;}
._52{width:251.722440px;}
._75{width:254.848680px;}
._27{width:256.291560px;}
._6b{width:257.614200px;}
._18{width:262.123200px;}
._5f{width:268.135200px;}
._5e{width:272.043000px;}
._63{width:304.447680px;}
._58{width:311.962680px;}
._70{width:313.104960px;}
._66{width:345.509640px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y79{bottom:3.330000px;}
.ya1{bottom:3.420000px;}
.y69{bottom:7.830000px;}
.y4b{bottom:7.920000px;}
.y49{bottom:16.650000px;}
.y6b{bottom:16.740000px;}
.y78{bottom:20.970000px;}
.y82{bottom:25.380000px;}
.y4a{bottom:25.470000px;}
.y77{bottom:38.520000px;}
.y5e{bottom:43.020000px;}
.y8f{bottom:43.110000px;}
.y76{bottom:56.070000px;}
.ya0{bottom:56.160000px;}
.y6e{bottom:60.570000px;}
.y68{bottom:60.660000px;}
.y5d{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.y75{bottom:73.710000px;}
.y26{bottom:74.190000px;}
.y45{bottom:74.460000px;}
.y67{bottom:78.210000px;}
.y5c{bottom:78.240000px;}
.y89{bottom:91.260000px;}
.y9f{bottom:91.350000px;}
.y74{bottom:92.190000px;}
.y66{bottom:95.760000px;}
.y5b{bottom:95.790000px;}
.y73{bottom:95.850000px;}
.y83{bottom:96.690000px;}
.y1{bottom:101.640000px;}
.y94{bottom:106.410000px;}
.y88{bottom:108.900000px;}
.y5f{bottom:110.100000px;}
.y81{bottom:113.340000px;}
.y65{bottom:113.400000px;}
.y5a{bottom:113.430000px;}
.yd2{bottom:116.130000px;}
.y87{bottom:126.450000px;}
.y64{bottom:130.950000px;}
.y59{bottom:130.980000px;}
.y8e{bottom:131.040000px;}
.y11f{bottom:131.610000px;}
.yd1{bottom:133.680000px;}
.yf8{bottom:142.680000px;}
.y86{bottom:144.000000px;}
.y9e{bottom:144.090000px;}
.y6d{bottom:148.500000px;}
.y80{bottom:148.530000px;}
.y63{bottom:148.590000px;}
.y58{bottom:148.620000px;}
.y11e{bottom:149.250000px;}
.yd0{bottom:151.320000px;}
.y90{bottom:154.650000px;}
.yf7{bottom:160.320000px;}
.y85{bottom:161.640000px;}
.y62{bottom:166.140000px;}
.y57{bottom:166.170000px;}
.ycf{bottom:168.870000px;}
.y11d{bottom:175.800000px;}
.y24{bottom:177.510000px;}
.yf6{bottom:177.870000px;}
.y84{bottom:179.190000px;}
.y9d{bottom:179.280000px;}
.y61{bottom:183.690000px;}
.y56{bottom:183.720000px;}
.y72{bottom:183.780000px;}
.y6f{bottom:185.340000px;}
.y11c{bottom:193.350000px;}
.y23{bottom:195.060000px;}
.y9c{bottom:196.830000px;}
.y7f{bottom:201.270000px;}
.y60{bottom:201.330000px;}
.y55{bottom:201.360000px;}
.yce{bottom:204.510000px;}
.y22{bottom:212.610000px;}
.yf5{bottom:213.510000px;}
.y9b{bottom:214.380000px;}
.y93{bottom:218.880000px;}
.y54{bottom:218.910000px;}
.y8d{bottom:218.970000px;}
.y11b{bottom:219.990000px;}
.ycd{bottom:222.060000px;}
.y21{bottom:230.250000px;}
.yf4{bottom:231.060000px;}
.y9a{bottom:232.020000px;}
.y7e{bottom:236.460000px;}
.y8c{bottom:236.520000px;}
.y53{bottom:236.550000px;}
.y11a{bottom:237.540000px;}
.ycc{bottom:239.610000px;}
.y20{bottom:247.800000px;}
.yf3{bottom:248.610000px;}
.y99{bottom:249.570000px;}
.y7d{bottom:254.010000px;}
.y8b{bottom:254.070000px;}
.y52{bottom:254.100000px;}
.y119{bottom:255.180000px;}
.ycb{bottom:257.250000px;}
.yf2{bottom:266.250000px;}
.y98{bottom:267.210000px;}
.y92{bottom:271.620000px;}
.y51{bottom:271.650000px;}
.y71{bottom:271.740000px;}
.y1f{bottom:274.710000px;}
.y118{bottom:281.730000px;}
.y97{bottom:284.790000px;}
.y7c{bottom:289.200000px;}
.y50{bottom:289.290000px;}
.yca{bottom:292.800000px;}
.y7b{bottom:295.410000px;}
.y117{bottom:299.280000px;}
.y12c{bottom:301.440000px;}
.yf1{bottom:301.800000px;}
.y96{bottom:302.340000px;}
.y4f{bottom:306.840000px;}
.yc9{bottom:310.440000px;}
.y12b{bottom:318.990000px;}
.yf0{bottom:319.440000px;}
.y95{bottom:319.980000px;}
.y1e{bottom:323.310000px;}
.y4e{bottom:324.480000px;}
.y116{bottom:325.920000px;}
.yc8{bottom:327.990000px;}
.y4c{bottom:330.870000px;}
.yef{bottom:336.990000px;}
.y4d{bottom:342.030000px;}
.y115{bottom:343.470000px;}
.yc7{bottom:345.540000px;}
.yee{bottom:354.540000px;}
.y70{bottom:359.580000px;}
.y1d{bottom:360.300000px;}
.yc6{bottom:363.180000px;}
.y114{bottom:370.110000px;}
.yed{bottom:372.180000px;}
.y1c{bottom:377.940000px;}
.y113{bottom:387.660000px;}
.yec{bottom:389.730000px;}
.y1b{bottom:395.490000px;}
.yc5{bottom:398.730000px;}
.yeb{bottom:407.370000px;}
.y112{bottom:414.210000px;}
.yc4{bottom:416.370000px;}
.y1a{bottom:431.130000px;}
.y111{bottom:431.850000px;}
.yc3{bottom:433.920000px;}
.yea{bottom:442.920000px;}
.y91{bottom:445.830000px;}
.y19{bottom:448.680000px;}
.yc2{bottom:451.470000px;}
.y110{bottom:458.400000px;}
.ye9{bottom:460.470000px;}
.y8a{bottom:463.380000px;}
.y18{bottom:466.230000px;}
.yc1{bottom:469.110000px;}
.y10f{bottom:475.980000px;}
.ye8{bottom:478.140000px;}
.y17{bottom:483.900000px;}
.yc0{bottom:486.690000px;}
.ye7{bottom:495.690000px;}
.y16{bottom:501.450000px;}
.y10e{bottom:502.890000px;}
.ybf{bottom:513.330000px;}
.y15{bottom:519.090000px;}
.ye6{bottom:530.880000px;}
.ya2{bottom:533.760000px;}
.y43{bottom:535.830000px;}
.ye5{bottom:548.430000px;}
.ybe{bottom:548.880000px;}
.y10d{bottom:551.220000px;}
.y42{bottom:553.470000px;}
.y14{bottom:554.640000px;}
.y12a{bottom:557.430000px;}
.y6c{bottom:564.450000px;}
.ye4{bottom:566.070000px;}
.ybd{bottom:566.430000px;}
.y41{bottom:571.020000px;}
.y13{bottom:572.190000px;}
.y129{bottom:575.070000px;}
.y10c{bottom:578.130000px;}
.ybc{bottom:584.070000px;}
.y40{bottom:588.660000px;}
.y128{bottom:592.620000px;}
.ybb{bottom:601.620000px;}
.y3f{bottom:606.210000px;}
.y12{bottom:607.830000px;}
.y10b{bottom:615.480000px;}
.ye3{bottom:619.260000px;}
.y7a{bottom:621.690000px;}
.y3e{bottom:623.760000px;}
.y11{bottom:625.380000px;}
.ye2{bottom:636.810000px;}
.yba{bottom:637.260000px;}
.y10{bottom:643.020000px;}
.y3d{bottom:650.670000px;}
.yb9{bottom:654.810000px;}
.yf{bottom:660.570000px;}
.y127{bottom:663.360000px;}
.y10a{bottom:663.720000px;}
.yb8{bottom:672.360000px;}
.ye{bottom:678.120000px;}
.y126{bottom:681.000000px;}
.y109{bottom:681.270000px;}
.ye1{bottom:690.000000px;}
.y48{bottom:692.340000px;}
.yd{bottom:695.760000px;}
.y108{bottom:698.910000px;}
.y3c{bottom:699.000000px;}
.ye0{bottom:707.550000px;}
.yb7{bottom:708.000000px;}
.y107{bottom:716.460000px;}
.y3b{bottom:716.550000px;}
.yc{bottom:722.670000px;}
.y125{bottom:725.190000px;}
.yb6{bottom:725.550000px;}
.y3a{bottom:734.190000px;}
.yb5{bottom:743.190000px;}
.y106{bottom:743.460000px;}
.y39{bottom:751.740000px;}
.y47{bottom:758.790000px;}
.yb4{bottom:760.740000px;}
.y6a{bottom:767.610000px;}
.y124{bottom:769.290000px;}
.yb{bottom:769.380000px;}
.ydf{bottom:778.290000px;}
.y105{bottom:780.450000px;}
.y46{bottom:785.700000px;}
.y38{bottom:787.290000px;}
.yde{bottom:795.930000px;}
.yb3{bottom:796.290000px;}
.y104{bottom:798.000000px;}
.y37{bottom:804.930000px;}
.ya{bottom:805.200000px;}
.ydd{bottom:813.480000px;}
.yb2{bottom:813.930000px;}
.y103{bottom:815.550000px;}
.y36{bottom:822.480000px;}
.y44{bottom:824.940000px;}
.ydc{bottom:831.030000px;}
.yb1{bottom:831.480000px;}
.y102{bottom:834.000000px;}
.y123{bottom:840.030000px;}
.y9{bottom:841.200000px;}
.ydb{bottom:848.670000px;}
.yb0{bottom:849.030000px;}
.y101{bottom:851.550000px;}
.y122{bottom:857.670000px;}
.y35{bottom:858.030000px;}
.yaf{bottom:866.670000px;}
.y100{bottom:869.100000px;}
.yda{bottom:875.220000px;}
.y34{bottom:875.670000px;}
.y8{bottom:880.980000px;}
.y121{bottom:884.220000px;}
.yff{bottom:887.550000px;}
.y33{bottom:893.220000px;}
.y7{bottom:898.980000px;}
.y120{bottom:901.860000px;}
.yae{bottom:902.220000px;}
.yfe{bottom:905.100000px;}
.y32{bottom:910.860000px;}
.y6{bottom:916.980000px;}
.yad{bottom:919.860000px;}
.yd9{bottom:928.410000px;}
.yac{bottom:937.410000px;}
.yfd{bottom:941.550000px;}
.yd8{bottom:945.960000px;}
.y31{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.yab{bottom:954.960000px;}
.yfc{bottom:959.190000px;}
.y30{bottom:963.960000px;}
.yaa{bottom:972.600000px;}
.yfb{bottom:976.740000px;}
.y2f{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.ya9{bottom:990.150000px;}
.yd7{bottom:999.150000px;}
.yfa{bottom:1003.650000px;}
.y3{bottom:1012.320000px;}
.yd6{bottom:1016.820000px;}
.y2e{bottom:1017.180000px;}
.ya8{bottom:1025.820000px;}
.yd5{bottom:1034.370000px;}
.y2d{bottom:1034.820000px;}
.ya7{bottom:1043.370000px;}
.yd4{bottom:1051.920000px;}
.y2c{bottom:1052.370000px;}
.ya6{bottom:1060.920000px;}
.yd3{bottom:1069.560000px;}
.y2b{bottom:1069.920000px;}
.ya5{bottom:1078.560000px;}
.yf9{bottom:1087.110000px;}
.y2a{bottom:1087.560000px;}
.ya4{bottom:1096.110000px;}
.y29{bottom:1105.110000px;}
.ya3{bottom:1113.750000px;}
.y28{bottom:1122.750000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.he{height:44.190000px;}
.hb{height:44.220000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h17{height:61.740000px;}
.h1c{height:61.793886px;}
.h1b{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h11{height:92.430000px;}
.h12{height:145.200000px;}
.h14{height:197.910000px;}
.hf{height:202.440000px;}
.hd{height:220.050000px;}
.h1a{height:233.130000px;}
.h15{height:303.510000px;}
.h16{height:308.010000px;}
.h18{height:321.060000px;}
.h13{height:325.560000px;}
.h19{height:338.700000px;}
.hc{height:360.750000px;}
.h10{height:378.300000px;}
.h9{height:893.160000px;}
.ha{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:28.440000px;}
.w7{width:92.880000px;}
.w8{width:155.100000px;}
.w9{width:164.250000px;}
.wc{width:197.100000px;}
.wb{width:197.130000px;}
.wa{width:205.650000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w4{width:1262.250000px;}
.w5{width:1262.519981px;}
.w3{width:1262.520000px;}
.x0{left:0.000000px;}
.x7{left:3.960000px;}
.x1{left:68.040000px;}
.xd{left:95.039987px;}
.x6{left:107.999981px;}
.xf{left:111.239987px;}
.xe{left:122.039987px;}
.x8{left:137.880000px;}
.x2{left:202.799987px;}
.x9{left:231.570000px;}
.x4{left:387.389981px;}
.xa{left:552.450000px;}
.xb{left:758.910000px;}
.x3{left:792.059987px;}
.xc{left:956.760000px;}
.x5{left:1121.369981px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls17{letter-spacing:-0.364267pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls10{letter-spacing:-0.125867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls1d{letter-spacing:-0.006720pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.043520pt;}
.ls18{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls14{letter-spacing:0.081920pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1b{letter-spacing:0.087467pt;}
.ls6{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls11{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.378240pt;}
.ls15{letter-spacing:0.723200pt;}
.ls16{letter-spacing:0.725333pt;}
.ls1c{letter-spacing:42.423680pt;}
.ls19{letter-spacing:56.503680pt;}
.ls1a{letter-spacing:71.863680pt;}
.ls13{letter-spacing:156.989867pt;}
.wsa{word-spacing:-53.440000pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.844267pt;}
.wsb{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.750080pt;}
.ws9{word-spacing:-11.630933pt;}
.ws7{word-spacing:-11.590933pt;}
.wsc{word-spacing:-11.392533pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._9{margin-left:-3.282989pt;}
._8{margin-left:-2.190933pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.894944pt;}
._a{width:1.791787pt;}
._7{width:2.725333pt;}
._6{width:3.794133pt;}
._b{width:4.916480pt;}
._c{width:5.931947pt;}
._5{width:7.011309pt;}
._3{width:8.389866pt;}
._4{width:9.342615pt;}
._20{width:10.420800pt;}
._2d{width:13.039360pt;}
._1c{width:14.642560pt;}
._1f{width:16.045547pt;}
._1{width:17.507200pt;}
._34{width:18.436800pt;}
._35{width:19.505600pt;}
._10{width:20.467520pt;}
._15{width:22.017280pt;}
._40{width:23.780800pt;}
._30{width:25.384000pt;}
._29{width:26.292480pt;}
._3d{width:27.748896pt;}
._24{width:28.911040pt;}
._1b{width:30.193600pt;}
._2a{width:31.262400pt;}
._1a{width:32.224320pt;}
._36{width:33.239680pt;}
._23{width:34.361920pt;}
._21{width:35.323840pt;}
._e{width:36.820160pt;}
._14{width:37.888960pt;}
._13{width:38.850880pt;}
._25{width:39.973120pt;}
._72{width:40.906347pt;}
._47{width:41.896960pt;}
._2b{width:42.805440pt;}
._56{width:43.767360pt;}
._48{width:45.330880pt;}
._31{width:46.920320pt;}
._2c{width:47.935680pt;}
._5b{width:48.951040pt;}
._78{width:49.962453pt;}
._17{width:50.874880pt;}
._26{width:51.943680pt;}
._3c{width:53.012480pt;}
._28{width:54.669120pt;}
._4f{width:56.254080pt;}
._d{width:57.270080pt;}
._1e{width:58.623680pt;}
._33{width:59.532160pt;}
._11{width:60.600960pt;}
._41{width:61.669760pt;}
._46{width:62.738560pt;}
._3f{width:64.502080pt;}
._4e{width:66.479360pt;}
._4d{width:67.601600pt;}
._3b{width:69.472000pt;}
._32{width:71.288960pt;}
._77{width:72.197440pt;}
._61{width:73.747200pt;}
._64{width:76.312320pt;}
._65{width:77.327680pt;}
._39{width:78.289600pt;}
._62{width:79.518720pt;}
._6d{width:80.879467pt;}
._37{width:82.030400pt;}
._67{width:83.259520pt;}
._44{width:84.969600pt;}
._22{width:86.359040pt;}
._59{width:87.481280pt;}
._3e{width:88.443200pt;}
._38{width:89.405120pt;}
._f{width:92.451200pt;}
._43{width:94.000960pt;}
._68{width:95.230080pt;}
._69{width:97.367680pt;}
._76{width:100.413760pt;}
._4a{width:102.711680pt;}
._1d{width:105.330240pt;}
._54{width:107.788480pt;}
._55{width:109.926080pt;}
._71{width:114.682240pt;}
._4c{width:117.888640pt;}
._45{width:119.291627pt;}
._6c{width:121.896640pt;}
._74{width:125.049600pt;}
._53{width:127.347520pt;}
._49{width:129.431680pt;}
._57{width:133.813760pt;}
._2e{width:137.394240pt;}
._6a{width:138.730240pt;}
._6f{width:140.493760pt;}
._5c{width:146.960000pt;}
._2f{width:149.364800pt;}
._4b{width:153.533120pt;}
._5a{width:156.846400pt;}
._12{width:160.373440pt;}
._60{width:163.740160pt;}
._19{width:166.679360pt;}
._73{width:180.627200pt;}
._51{width:184.047360pt;}
._6e{width:187.307200pt;}
._42{width:194.788800pt;}
._5d{width:196.392000pt;}
._16{width:202.697920pt;}
._3a{width:214.347840pt;}
._50{width:217.607680pt;}
._52{width:223.753280pt;}
._75{width:226.532160pt;}
._27{width:227.814720pt;}
._6b{width:228.990400pt;}
._18{width:232.998400pt;}
._5f{width:238.342400pt;}
._5e{width:241.816000pt;}
._63{width:270.620160pt;}
._58{width:277.300160pt;}
._70{width:278.315520pt;}
._66{width:307.119680pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:2.960000pt;}
.ya1{bottom:3.040000pt;}
.y69{bottom:6.960000pt;}
.y4b{bottom:7.040000pt;}
.y49{bottom:14.800000pt;}
.y6b{bottom:14.880000pt;}
.y78{bottom:18.640000pt;}
.y82{bottom:22.560000pt;}
.y4a{bottom:22.640000pt;}
.y77{bottom:34.240000pt;}
.y5e{bottom:38.240000pt;}
.y8f{bottom:38.320000pt;}
.y76{bottom:49.840000pt;}
.ya0{bottom:49.920000pt;}
.y6e{bottom:53.840000pt;}
.y68{bottom:53.920000pt;}
.y5d{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.y75{bottom:65.520000pt;}
.y26{bottom:65.946667pt;}
.y45{bottom:66.186667pt;}
.y67{bottom:69.520000pt;}
.y5c{bottom:69.546667pt;}
.y89{bottom:81.120000pt;}
.y9f{bottom:81.200000pt;}
.y74{bottom:81.946667pt;}
.y66{bottom:85.120000pt;}
.y5b{bottom:85.146667pt;}
.y73{bottom:85.200000pt;}
.y83{bottom:85.946667pt;}
.y1{bottom:90.346667pt;}
.y94{bottom:94.586667pt;}
.y88{bottom:96.800000pt;}
.y5f{bottom:97.866667pt;}
.y81{bottom:100.746667pt;}
.y65{bottom:100.800000pt;}
.y5a{bottom:100.826667pt;}
.yd2{bottom:103.226667pt;}
.y87{bottom:112.400000pt;}
.y64{bottom:116.400000pt;}
.y59{bottom:116.426667pt;}
.y8e{bottom:116.480000pt;}
.y11f{bottom:116.986667pt;}
.yd1{bottom:118.826667pt;}
.yf8{bottom:126.826667pt;}
.y86{bottom:128.000000pt;}
.y9e{bottom:128.080000pt;}
.y6d{bottom:132.000000pt;}
.y80{bottom:132.026667pt;}
.y63{bottom:132.080000pt;}
.y58{bottom:132.106667pt;}
.y11e{bottom:132.666667pt;}
.yd0{bottom:134.506667pt;}
.y90{bottom:137.466667pt;}
.yf7{bottom:142.506667pt;}
.y85{bottom:143.680000pt;}
.y62{bottom:147.680000pt;}
.y57{bottom:147.706667pt;}
.ycf{bottom:150.106667pt;}
.y11d{bottom:156.266667pt;}
.y24{bottom:157.786667pt;}
.yf6{bottom:158.106667pt;}
.y84{bottom:159.280000pt;}
.y9d{bottom:159.360000pt;}
.y61{bottom:163.280000pt;}
.y56{bottom:163.306667pt;}
.y72{bottom:163.360000pt;}
.y6f{bottom:164.746667pt;}
.y11c{bottom:171.866667pt;}
.y23{bottom:173.386667pt;}
.y9c{bottom:174.960000pt;}
.y7f{bottom:178.906667pt;}
.y60{bottom:178.960000pt;}
.y55{bottom:178.986667pt;}
.yce{bottom:181.786667pt;}
.y22{bottom:188.986667pt;}
.yf5{bottom:189.786667pt;}
.y9b{bottom:190.560000pt;}
.y93{bottom:194.560000pt;}
.y54{bottom:194.586667pt;}
.y8d{bottom:194.640000pt;}
.y11b{bottom:195.546667pt;}
.ycd{bottom:197.386667pt;}
.y21{bottom:204.666667pt;}
.yf4{bottom:205.386667pt;}
.y9a{bottom:206.240000pt;}
.y7e{bottom:210.186667pt;}
.y8c{bottom:210.240000pt;}
.y53{bottom:210.266667pt;}
.y11a{bottom:211.146667pt;}
.ycc{bottom:212.986667pt;}
.y20{bottom:220.266667pt;}
.yf3{bottom:220.986667pt;}
.y99{bottom:221.840000pt;}
.y7d{bottom:225.786667pt;}
.y8b{bottom:225.840000pt;}
.y52{bottom:225.866667pt;}
.y119{bottom:226.826667pt;}
.ycb{bottom:228.666667pt;}
.yf2{bottom:236.666667pt;}
.y98{bottom:237.520000pt;}
.y92{bottom:241.440000pt;}
.y51{bottom:241.466667pt;}
.y71{bottom:241.546667pt;}
.y1f{bottom:244.186667pt;}
.y118{bottom:250.426667pt;}
.y97{bottom:253.146667pt;}
.y7c{bottom:257.066667pt;}
.y50{bottom:257.146667pt;}
.yca{bottom:260.266667pt;}
.y7b{bottom:262.586667pt;}
.y117{bottom:266.026667pt;}
.y12c{bottom:267.946667pt;}
.yf1{bottom:268.266667pt;}
.y96{bottom:268.746667pt;}
.y4f{bottom:272.746667pt;}
.yc9{bottom:275.946667pt;}
.y12b{bottom:283.546667pt;}
.yf0{bottom:283.946667pt;}
.y95{bottom:284.426667pt;}
.y1e{bottom:287.386667pt;}
.y4e{bottom:288.426667pt;}
.y116{bottom:289.706667pt;}
.yc8{bottom:291.546667pt;}
.y4c{bottom:294.106667pt;}
.yef{bottom:299.546667pt;}
.y4d{bottom:304.026667pt;}
.y115{bottom:305.306667pt;}
.yc7{bottom:307.146667pt;}
.yee{bottom:315.146667pt;}
.y70{bottom:319.626667pt;}
.y1d{bottom:320.266667pt;}
.yc6{bottom:322.826667pt;}
.y114{bottom:328.986667pt;}
.yed{bottom:330.826667pt;}
.y1c{bottom:335.946667pt;}
.y113{bottom:344.586667pt;}
.yec{bottom:346.426667pt;}
.y1b{bottom:351.546667pt;}
.yc5{bottom:354.426667pt;}
.yeb{bottom:362.106667pt;}
.y112{bottom:368.186667pt;}
.yc4{bottom:370.106667pt;}
.y1a{bottom:383.226667pt;}
.y111{bottom:383.866667pt;}
.yc3{bottom:385.706667pt;}
.yea{bottom:393.706667pt;}
.y91{bottom:396.293333pt;}
.y19{bottom:398.826667pt;}
.yc2{bottom:401.306667pt;}
.y110{bottom:407.466667pt;}
.ye9{bottom:409.306667pt;}
.y8a{bottom:411.893333pt;}
.y18{bottom:414.426667pt;}
.yc1{bottom:416.986667pt;}
.y10f{bottom:423.093333pt;}
.ye8{bottom:425.013333pt;}
.y17{bottom:430.133333pt;}
.yc0{bottom:432.613333pt;}
.ye7{bottom:440.613333pt;}
.y16{bottom:445.733333pt;}
.y10e{bottom:447.013333pt;}
.ybf{bottom:456.293333pt;}
.y15{bottom:461.413333pt;}
.ye6{bottom:471.893333pt;}
.ya2{bottom:474.453333pt;}
.y43{bottom:476.293333pt;}
.ye5{bottom:487.493333pt;}
.ybe{bottom:487.893333pt;}
.y10d{bottom:489.973333pt;}
.y42{bottom:491.973333pt;}
.y14{bottom:493.013333pt;}
.y12a{bottom:495.493333pt;}
.y6c{bottom:501.733333pt;}
.ye4{bottom:503.173333pt;}
.ybd{bottom:503.493333pt;}
.y41{bottom:507.573333pt;}
.y13{bottom:508.613333pt;}
.y129{bottom:511.173333pt;}
.y10c{bottom:513.893333pt;}
.ybc{bottom:519.173333pt;}
.y40{bottom:523.253333pt;}
.y128{bottom:526.773333pt;}
.ybb{bottom:534.773333pt;}
.y3f{bottom:538.853333pt;}
.y12{bottom:540.293333pt;}
.y10b{bottom:547.093333pt;}
.ye3{bottom:550.453333pt;}
.y7a{bottom:552.613333pt;}
.y3e{bottom:554.453333pt;}
.y11{bottom:555.893333pt;}
.ye2{bottom:566.053333pt;}
.yba{bottom:566.453333pt;}
.y10{bottom:571.573333pt;}
.y3d{bottom:578.373333pt;}
.yb9{bottom:582.053333pt;}
.yf{bottom:587.173333pt;}
.y127{bottom:589.653333pt;}
.y10a{bottom:589.973333pt;}
.yb8{bottom:597.653333pt;}
.ye{bottom:602.773333pt;}
.y126{bottom:605.333333pt;}
.y109{bottom:605.573333pt;}
.ye1{bottom:613.333333pt;}
.y48{bottom:615.413333pt;}
.yd{bottom:618.453333pt;}
.y108{bottom:621.253333pt;}
.y3c{bottom:621.333333pt;}
.ye0{bottom:628.933333pt;}
.yb7{bottom:629.333333pt;}
.y107{bottom:636.853333pt;}
.y3b{bottom:636.933333pt;}
.yc{bottom:642.373333pt;}
.y125{bottom:644.613333pt;}
.yb6{bottom:644.933333pt;}
.y3a{bottom:652.613333pt;}
.yb5{bottom:660.613333pt;}
.y106{bottom:660.853333pt;}
.y39{bottom:668.213333pt;}
.y47{bottom:674.480000pt;}
.yb4{bottom:676.213333pt;}
.y6a{bottom:682.320000pt;}
.y124{bottom:683.813333pt;}
.yb{bottom:683.893333pt;}
.ydf{bottom:691.813333pt;}
.y105{bottom:693.733333pt;}
.y46{bottom:698.400000pt;}
.y38{bottom:699.813333pt;}
.yde{bottom:707.493333pt;}
.yb3{bottom:707.813333pt;}
.y104{bottom:709.333333pt;}
.y37{bottom:715.493333pt;}
.ya{bottom:715.733333pt;}
.ydd{bottom:723.093333pt;}
.yb2{bottom:723.493333pt;}
.y103{bottom:724.933333pt;}
.y36{bottom:731.093333pt;}
.y44{bottom:733.280000pt;}
.ydc{bottom:738.693333pt;}
.yb1{bottom:739.093333pt;}
.y102{bottom:741.333333pt;}
.y123{bottom:746.693333pt;}
.y9{bottom:747.733333pt;}
.ydb{bottom:754.373333pt;}
.yb0{bottom:754.693333pt;}
.y101{bottom:756.933333pt;}
.y122{bottom:762.373333pt;}
.y35{bottom:762.693333pt;}
.yaf{bottom:770.373333pt;}
.y100{bottom:772.533333pt;}
.yda{bottom:777.973333pt;}
.y34{bottom:778.373333pt;}
.y8{bottom:783.093333pt;}
.y121{bottom:785.973333pt;}
.yff{bottom:788.933333pt;}
.y33{bottom:793.973333pt;}
.y7{bottom:799.093333pt;}
.y120{bottom:801.653333pt;}
.yae{bottom:801.973333pt;}
.yfe{bottom:804.533333pt;}
.y32{bottom:809.653333pt;}
.y6{bottom:815.093333pt;}
.yad{bottom:817.653333pt;}
.yd9{bottom:825.253333pt;}
.yac{bottom:833.253333pt;}
.yfd{bottom:836.933333pt;}
.yd8{bottom:840.853333pt;}
.y31{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.yab{bottom:848.853333pt;}
.yfc{bottom:852.613333pt;}
.y30{bottom:856.853333pt;}
.yaa{bottom:864.533333pt;}
.yfb{bottom:868.213333pt;}
.y2f{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.ya9{bottom:880.133333pt;}
.yd7{bottom:888.133333pt;}
.yfa{bottom:892.133333pt;}
.y3{bottom:899.840000pt;}
.yd6{bottom:903.840000pt;}
.y2e{bottom:904.160000pt;}
.ya8{bottom:911.840000pt;}
.yd5{bottom:919.440000pt;}
.y2d{bottom:919.840000pt;}
.ya7{bottom:927.440000pt;}
.yd4{bottom:935.040000pt;}
.y2c{bottom:935.440000pt;}
.ya6{bottom:943.040000pt;}
.yd3{bottom:950.720000pt;}
.y2b{bottom:951.040000pt;}
.ya5{bottom:958.720000pt;}
.yf9{bottom:966.320000pt;}
.y2a{bottom:966.720000pt;}
.ya4{bottom:974.320000pt;}
.y29{bottom:982.320000pt;}
.ya3{bottom:990.000000pt;}
.y28{bottom:998.000000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.he{height:39.280000pt;}
.hb{height:39.306667pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h17{height:54.880000pt;}
.h1c{height:54.927899pt;}
.h1b{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h11{height:82.160000pt;}
.h12{height:129.066667pt;}
.h14{height:175.920000pt;}
.hf{height:179.946667pt;}
.hd{height:195.600000pt;}
.h1a{height:207.226667pt;}
.h15{height:269.786667pt;}
.h16{height:273.786667pt;}
.h18{height:285.386667pt;}
.h13{height:289.386667pt;}
.h19{height:301.066667pt;}
.hc{height:320.666667pt;}
.h10{height:336.266667pt;}
.h9{height:793.920000pt;}
.ha{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:25.280000pt;}
.w7{width:82.560000pt;}
.w8{width:137.866667pt;}
.w9{width:146.000000pt;}
.wc{width:175.200000pt;}
.wb{width:175.226667pt;}
.wa{width:182.800000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w4{width:1122.000000pt;}
.w5{width:1122.239983pt;}
.w3{width:1122.240000pt;}
.x0{left:0.000000pt;}
.x7{left:3.520000pt;}
.x1{left:60.480000pt;}
.xd{left:84.479988pt;}
.x6{left:95.999983pt;}
.xf{left:98.879988pt;}
.xe{left:108.479988pt;}
.x8{left:122.560000pt;}
.x2{left:180.266655pt;}
.x9{left:205.840000pt;}
.x4{left:344.346650pt;}
.xa{left:491.066667pt;}
.xb{left:674.586667pt;}
.x3{left:704.053322pt;}
.xc{left:850.453333pt;}
.x5{left:996.773317pt;}
}




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