
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_03b12fb182c1ce817f412fc6.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_426b2ad604d7715569c35de1.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_ff2c3a75ddd983ebe8f81dbd.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_7f763370ceb564c8b05c3157.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_427f4980ecf5d0a24d9b05ab.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_ea3947e5539a21fd1f7c20f8.woff2')format("woff");}.ff7{font-family:ff7;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;}
.ls10{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.lsa{letter-spacing:-0.008400px;}
.ls14{letter-spacing:-0.007560px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.048960px;}
.ls5{letter-spacing:0.049200px;}
.ls3{letter-spacing:0.065520px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.098400px;}
.ls15{letter-spacing:0.111000px;}
.ls7{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls11{letter-spacing:0.181200px;}
.ls12{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.425520px;}
.ls18{letter-spacing:47.726640px;}
.ls17{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;}
}
.ws5{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.425600px;}
.wsb{word-spacing:-13.407600px;}
.ws8{word-spacing:-13.399800px;}
.wsf{word-spacing:-13.337400px;}
.ws6{word-spacing:-13.275600px;}
.wsd{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wse{word-spacing:-13.218840px;}
.ws9{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._11{margin-left:-3.886195px;}
._10{margin-left:-2.886000px;}
._0{margin-left:-1.110000px;}
._3{width:1.220076px;}
._7{width:2.946000px;}
._f{width:4.027800px;}
._e{width:5.247360px;}
._6{width:6.252600px;}
._14{width:7.260510px;}
._8{width:8.277929px;}
._5{width:9.485071px;}
._4{width:10.606812px;}
._34{width:11.614297px;}
._2{width:12.620124px;}
._1{width:14.221560px;}
._d{width:15.263880px;}
._b{width:16.352400px;}
._c{width:17.496002px;}
._20{width:18.533756px;}
._17{width:19.779480px;}
._15{width:20.921760px;}
._12{width:22.064040px;}
._9{width:23.086200px;}
._a{width:24.288600px;}
._13{width:25.735440px;}
._16{width:27.414720px;}
._19{width:28.436760px;}
._1e{width:31.021920px;}
._25{width:33.005880px;}
._1f{width:35.410680px;}
._1d{width:41.165400px;}
._1c{width:42.632280px;}
._3e{width:46.051920px;}
._32{width:47.134080px;}
._37{width:48.637080px;}
._1a{width:51.582960px;}
._30{width:54.408600px;}
._36{width:60.240240px;}
._38{width:61.502760px;}
._3a{width:64.656840px;}
._23{width:66.252240px;}
._35{width:72.384480px;}
._2c{width:91.021680px;}
._3f{width:96.941280px;}
._31{width:98.236080px;}
._2f{width:102.204000px;}
._21{width:123.780240px;}
._26{width:129.137760px;}
._28{width:137.554560px;}
._22{width:140.199840px;}
._2b{width:142.424280px;}
._2a{width:144.949320px;}
._2d{width:150.119640px;}
._1b{width:153.666720px;}
._33{width:163.766880px;}
._27{width:186.432120px;}
._39{width:190.039320px;}
._24{width:204.255480px;}
._3b{width:218.355840px;}
._29{width:243.726480px;}
._3c{width:252.023040px;}
._3d{width:253.105200px;}
._2e{width:258.035040px;}
._18{width:2412.155400px;}
.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;}
.ya7{bottom:7.830000px;}
.y101{bottom:7.920000px;}
.yad{bottom:25.380000px;}
.y140{bottom:25.410000px;}
.yaa{bottom:25.470000px;}
.y104{bottom:43.020000px;}
.y100{bottom:43.110000px;}
.y103{bottom:60.570000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y7f{bottom:112.170000px;}
.yfc{bottom:116.310000px;}
.ye1{bottom:118.290000px;}
.y164{bottom:123.240000px;}
.y98{bottom:126.570000px;}
.yc5{bottom:128.100000px;}
.y7e{bottom:129.720000px;}
.y19e{bottom:134.130000px;}
.y11a{bottom:137.370000px;}
.y27{bottom:137.640000px;}
.y163{bottom:140.790000px;}
.y13c{bottom:142.320000px;}
.y97{bottom:144.210000px;}
.yc4{bottom:145.650000px;}
.y7d{bottom:147.270000px;}
.y59{bottom:147.720000px;}
.y19d{bottom:151.680000px;}
.yfb{bottom:151.860000px;}
.ye0{bottom:153.840000px;}
.y26{bottom:155.190000px;}
.y186{bottom:155.460000px;}
.y162{bottom:158.430000px;}
.y13b{bottom:159.870000px;}
.y96{bottom:161.760000px;}
.yc3{bottom:163.200000px;}
.y7c{bottom:164.910000px;}
.y58{bottom:165.270000px;}
.ydf{bottom:171.480000px;}
.y119{bottom:173.010000px;}
.y185{bottom:173.100000px;}
.y161{bottom:175.980000px;}
.y13a{bottom:177.510000px;}
.y1ad{bottom:177.870000px;}
.y19c{bottom:178.590000px;}
.y95{bottom:179.400000px;}
.yc2{bottom:180.840000px;}
.y7b{bottom:182.460000px;}
.y57{bottom:182.910000px;}
.yfa{bottom:187.500000px;}
.yde{bottom:189.030000px;}
.y118{bottom:190.560000px;}
.y184{bottom:190.650000px;}
.y25{bottom:190.830000px;}
.y139{bottom:195.060000px;}
.y1ac{bottom:195.510000px;}
.y94{bottom:196.950000px;}
.yc1{bottom:198.390000px;}
.y56{bottom:200.460000px;}
.yf9{bottom:205.050000px;}
.ydd{bottom:206.580000px;}
.y117{bottom:208.110000px;}
.y183{bottom:208.200000px;}
.y24{bottom:208.380000px;}
.y160{bottom:211.530000px;}
.yc0{bottom:216.030000px;}
.y55{bottom:218.100000px;}
.y1ab{bottom:222.060000px;}
.yf8{bottom:222.600000px;}
.ydc{bottom:224.220000px;}
.y116{bottom:225.750000px;}
.y182{bottom:225.840000px;}
.y23{bottom:225.930000px;}
.y19b{bottom:226.830000px;}
.y15f{bottom:229.170000px;}
.y138{bottom:230.610000px;}
.y93{bottom:232.500000px;}
.y54{bottom:235.650000px;}
.y1aa{bottom:239.610000px;}
.yf7{bottom:240.240000px;}
.y115{bottom:243.300000px;}
.y22{bottom:243.570000px;}
.y15e{bottom:246.720000px;}
.y137{bottom:248.250000px;}
.y92{bottom:250.140000px;}
.ybf{bottom:251.580000px;}
.y181{bottom:252.390000px;}
.y7a{bottom:253.200000px;}
.y19a{bottom:253.740000px;}
.y1a9{bottom:257.250000px;}
.yf6{bottom:257.790000px;}
.ydb{bottom:259.770000px;}
.y21{bottom:261.120000px;}
.y15d{bottom:264.360000px;}
.y136{bottom:265.800000px;}
.y91{bottom:267.690000px;}
.ybe{bottom:269.130000px;}
.y79{bottom:270.840000px;}
.y53{bottom:271.200000px;}
.yda{bottom:277.410000px;}
.y20{bottom:278.760000px;}
.y114{bottom:278.940000px;}
.y135{bottom:283.440000px;}
.y1a8{bottom:283.800000px;}
.yf5{bottom:284.700000px;}
.y90{bottom:285.240000px;}
.ybd{bottom:286.770000px;}
.y180{bottom:287.940000px;}
.y78{bottom:288.390000px;}
.y52{bottom:288.840000px;}
.y199{bottom:290.820000px;}
.y15c{bottom:290.910000px;}
.yd9{bottom:294.960000px;}
.y1f{bottom:296.310000px;}
.y113{bottom:296.490000px;}
.y134{bottom:300.990000px;}
.y1a7{bottom:301.440000px;}
.y8f{bottom:302.880000px;}
.ybc{bottom:304.320000px;}
.y17f{bottom:305.580000px;}
.y51{bottom:306.390000px;}
.y198{bottom:308.370000px;}
.yd8{bottom:312.510000px;}
.y112{bottom:314.040000px;}
.ybb{bottom:321.870000px;}
.y1e{bottom:322.860000px;}
.y17e{bottom:323.130000px;}
.y50{bottom:323.940000px;}
.y15b{bottom:326.460000px;}
.y133{bottom:327.540000px;}
.y1a6{bottom:327.990000px;}
.yd7{bottom:330.150000px;}
.y111{bottom:331.680000px;}
.yf4{bottom:332.940000px;}
.y197{bottom:335.280000px;}
.y8e{bottom:338.430000px;}
.y17d{bottom:340.770000px;}
.y4f{bottom:341.580000px;}
.y15a{bottom:344.100000px;}
.y1a5{bottom:345.540000px;}
.yd6{bottom:347.700000px;}
.y110{bottom:349.230000px;}
.yf3{bottom:350.580000px;}
.y8d{bottom:356.070000px;}
.yba{bottom:357.510000px;}
.y17c{bottom:358.320000px;}
.y1d{bottom:358.770000px;}
.y77{bottom:359.130000px;}
.y159{bottom:361.650000px;}
.y132{bottom:363.180000px;}
.yf2{bottom:368.130000px;}
.y4e{bottom:368.490000px;}
.y196{bottom:372.630000px;}
.y8c{bottom:373.620000px;}
.yb9{bottom:375.060000px;}
.y76{bottom:376.770000px;}
.y158{bottom:379.290000px;}
.y131{bottom:380.730000px;}
.yd5{bottom:383.250000px;}
.y10f{bottom:384.870000px;}
.yf1{bottom:385.770000px;}
.y1a4{bottom:389.730000px;}
.y8b{bottom:391.170000px;}
.yb8{bottom:392.700000px;}
.y17b{bottom:393.870000px;}
.y75{bottom:394.320000px;}
.y130{bottom:398.370000px;}
.yd4{bottom:400.890000px;}
.y10e{bottom:402.420000px;}
.yf0{bottom:403.320000px;}
.y1c{bottom:407.100000px;}
.y1a3{bottom:407.370000px;}
.y8a{bottom:408.810000px;}
.yb7{bottom:410.250000px;}
.y17a{bottom:411.510000px;}
.y74{bottom:411.870000px;}
.y157{bottom:414.840000px;}
.y12f{bottom:415.920000px;}
.y4d{bottom:416.730000px;}
.yd3{bottom:418.440000px;}
.y10d{bottom:419.970000px;}
.y195{bottom:420.870000px;}
.y1a2{bottom:424.920000px;}
.y1b{bottom:425.010000px;}
.y89{bottom:426.360000px;}
.yb6{bottom:427.800000px;}
.y179{bottom:429.060000px;}
.y156{bottom:432.390000px;}
.y4c{bottom:434.370000px;}
.yd2{bottom:436.080000px;}
.y10c{bottom:437.610000px;}
.y73{bottom:438.510000px;}
.yef{bottom:438.870000px;}
.yb5{bottom:445.440000px;}
.y178{bottom:446.700000px;}
.y155{bottom:450.030000px;}
.y12e{bottom:451.470000px;}
.y4b{bottom:451.920000px;}
.y88{bottom:453.000000px;}
.yd1{bottom:453.630000px;}
.y194{bottom:456.060000px;}
.yee{bottom:456.510000px;}
.y1a{bottom:462.000000px;}
.y10b{bottom:464.160000px;}
.y154{bottom:467.580000px;}
.y12d{bottom:469.110000px;}
.y4a{bottom:469.470000px;}
.yd0{bottom:471.210000px;}
.yb4{bottom:472.020000px;}
.y193{bottom:473.730000px;}
.y72{bottom:474.090000px;}
.y19{bottom:479.580000px;}
.y177{bottom:482.280000px;}
.y153{bottom:485.160000px;}
.y12c{bottom:486.690000px;}
.y87{bottom:488.580000px;}
.ycf{bottom:488.850000px;}
.y71{bottom:491.730000px;}
.y18{bottom:497.220000px;}
.y10a{bottom:499.830000px;}
.y192{bottom:500.640000px;}
.y12b{bottom:504.330000px;}
.y49{bottom:505.140000px;}
.y86{bottom:506.130000px;}
.yb3{bottom:507.660000px;}
.y70{bottom:509.280000px;}
.y1a1{bottom:513.330000px;}
.y17{bottom:514.770000px;}
.yce{bottom:515.400000px;}
.y109{bottom:517.380000px;}
.y176{bottom:517.470000px;}
.y152{bottom:520.800000px;}
.y48{bottom:522.690000px;}
.y85{bottom:523.770000px;}
.yb2{bottom:525.210000px;}
.y6f{bottom:526.830000px;}
.y16{bottom:532.410000px;}
.y108{bottom:534.930000px;}
.y175{bottom:535.020000px;}
.y151{bottom:538.350000px;}
.y12a{bottom:539.880000px;}
.y47{bottom:540.330000px;}
.y84{bottom:541.320000px;}
.yb1{bottom:542.760000px;}
.y6e{bottom:544.470000px;}
.yed{bottom:544.830000px;}
.y191{bottom:548.880000px;}
.y15{bottom:549.960000px;}
.ycd{bottom:551.040000px;}
.y107{bottom:552.570000px;}
.y150{bottom:555.990000px;}
.y129{bottom:557.430000px;}
.y46{bottom:557.880000px;}
.y83{bottom:558.960000px;}
.yb0{bottom:560.400000px;}
.y6d{bottom:562.020000px;}
.yec{bottom:562.470000px;}
.y190{bottom:566.430000px;}
.y14{bottom:567.510000px;}
.ycc{bottom:568.590000px;}
.y174{bottom:570.660000px;}
.y14f{bottom:573.540000px;}
.y128{bottom:575.070000px;}
.y45{bottom:575.430000px;}
.yaf{bottom:577.950000px;}
.yeb{bottom:580.020000px;}
.y18f{bottom:584.070000px;}
.y13{bottom:585.150000px;}
.y106{bottom:585.510000px;}
.ycb{bottom:586.140000px;}
.y173{bottom:588.210000px;}
.y14e{bottom:591.090000px;}
.y127{bottom:592.620000px;}
.y44{bottom:593.070000px;}
.y82{bottom:594.510000px;}
.y6c{bottom:597.660000px;}
.y18e{bottom:601.620000px;}
.y12{bottom:602.700000px;}
.yca{bottom:603.780000px;}
.y172{bottom:605.760000px;}
.y126{bottom:610.260000px;}
.yae{bottom:610.980000px;}
.y6b{bottom:615.210000px;}
.y14d{bottom:617.730000px;}
.y18d{bottom:619.260000px;}
.y11{bottom:620.340000px;}
.yc9{bottom:621.330000px;}
.y171{bottom:623.400000px;}
.y1a0{bottom:628.260000px;}
.y43{bottom:628.620000px;}
.y81{bottom:630.060000px;}
.y6a{bottom:632.760000px;}
.y10{bottom:637.890000px;}
.yc8{bottom:638.970000px;}
.y125{bottom:645.810000px;}
.y42{bottom:646.260000px;}
.y105{bottom:648.060000px;}
.y170{bottom:649.950000px;}
.y69{bottom:650.400000px;}
.yea{bottom:650.760000px;}
.y14c{bottom:653.280000px;}
.y18c{bottom:654.810000px;}
.yf{bottom:655.440000px;}
.yac{bottom:655.890000px;}
.y124{bottom:663.360000px;}
.y41{bottom:663.810000px;}
.y68{bottom:667.950000px;}
.ye9{bottom:668.400000px;}
.y14b{bottom:670.920000px;}
.y18b{bottom:672.360000px;}
.ye{bottom:673.080000px;}
.yc7{bottom:674.520000px;}
.y123{bottom:681.000000px;}
.y40{bottom:681.360000px;}
.y16f{bottom:685.590000px;}
.ye8{bottom:685.950000px;}
.y14a{bottom:688.470000px;}
.y18a{bottom:690.000000px;}
.yd{bottom:690.630000px;}
.y122{bottom:698.550000px;}
.y3f{bottom:699.000000px;}
.yab{bottom:700.800000px;}
.y16e{bottom:703.140000px;}
.y67{bottom:703.590000px;}
.y149{bottom:706.020000px;}
.yc6{bottom:706.740000px;}
.y189{bottom:707.550000px;}
.y121{bottom:716.190000px;}
.y3e{bottom:716.550000px;}
.yc{bottom:717.540000px;}
.y16d{bottom:720.690000px;}
.y66{bottom:721.140000px;}
.y188{bottom:725.190000px;}
.y102{bottom:728.160000px;}
.y148{bottom:732.930000px;}
.y19f{bottom:734.190000px;}
.y16c{bottom:738.330000px;}
.y65{bottom:738.690000px;}
.y120{bottom:742.740000px;}
.ya9{bottom:745.710000px;}
.y3d{bottom:752.190000px;}
.y64{bottom:756.330000px;}
.y187{bottom:760.740000px;}
.y16b{bottom:765.240000px;}
.ye7{bottom:765.600000px;}
.yb{bottom:765.780000px;}
.y3c{bottom:769.740000px;}
.y63{bottom:773.880000px;}
.y11f{bottom:778.290000px;}
.y147{bottom:781.260000px;}
.y3b{bottom:787.290000px;}
.ya8{bottom:790.620000px;}
.y62{bottom:791.520000px;}
.y11e{bottom:795.930000px;}
.y146{bottom:798.810000px;}
.ya{bottom:801.600000px;}
.y3a{bottom:804.930000px;}
.yff{bottom:808.170000px;}
.y11d{bottom:813.480000px;}
.ye6{bottom:813.930000px;}
.y145{bottom:816.450000px;}
.ya6{bottom:817.980000px;}
.y61{bottom:818.070000px;}
.y39{bottom:822.480000px;}
.y11c{bottom:831.030000px;}
.ye5{bottom:831.480000px;}
.y144{bottom:834.000000px;}
.y9{bottom:837.600000px;}
.y38{bottom:840.030000px;}
.y16a{bottom:848.670000px;}
.ye4{bottom:849.030000px;}
.y60{bottom:853.620000px;}
.y169{bottom:866.220000px;}
.ya5{bottom:866.670000px;}
.y143{bottom:866.940000px;}
.yfe{bottom:870.720000px;}
.y5f{bottom:871.260000px;}
.y37{bottom:875.670000px;}
.y8{bottom:877.380000px;}
.ye3{bottom:884.220000px;}
.y5e{bottom:888.810000px;}
.y36{bottom:893.220000px;}
.y7{bottom:895.380000px;}
.y11b{bottom:901.860000px;}
.ya4{bottom:902.220000px;}
.y5d{bottom:906.450000px;}
.y35{bottom:910.860000px;}
.y142{bottom:911.850000px;}
.yfd{bottom:919.410000px;}
.ya3{bottom:919.860000px;}
.y6{bottom:927.690000px;}
.y34{bottom:928.410000px;}
.y5c{bottom:933.270000px;}
.y168{bottom:936.960000px;}
.ya2{bottom:937.410000px;}
.y33{bottom:945.960000px;}
.y5{bottom:947.040000px;}
.y167{bottom:954.600000px;}
.ya1{bottom:954.960000px;}
.y141{bottom:956.850000px;}
.y32{bottom:963.600000px;}
.ya0{bottom:972.600000px;}
.y5b{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.y9f{bottom:990.150000px;}
.y31{bottom:999.150000px;}
.y13f{bottom:1001.760000px;}
.ye2{bottom:1007.790000px;}
.y3{bottom:1010.070000px;}
.y30{bottom:1016.820000px;}
.y166{bottom:1025.370000px;}
.y9e{bottom:1025.820000px;}
.y2f{bottom:1034.370000px;}
.y165{bottom:1042.920000px;}
.y9d{bottom:1043.370000px;}
.y13e{bottom:1046.700000px;}
.y2e{bottom:1051.920000px;}
.y9c{bottom:1060.920000px;}
.y2d{bottom:1069.560000px;}
.y80{bottom:1069.920000px;}
.y9b{bottom:1078.560000px;}
.y5a{bottom:1087.560000px;}
.y13d{bottom:1091.610000px;}
.y9a{bottom:1096.110000px;}
.y2c{bottom:1105.110000px;}
.y99{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.ha{height:26.550000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hc{height:44.100000px;}
.h10{height:44.130000px;}
.hb{height:44.190000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hf{height:61.740000px;}
.h11{height:61.793886px;}
.hd{height:61.830000px;}
.h8{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.he{height:79.290000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:147.450000px;}
.w7{width:174.780000px;}
.w6{width:181.200000px;}
.wc{width:185.580000px;}
.w8{width:196.950000px;}
.w9{width:200.520000px;}
.wa{width:207.270000px;}
.wb{width:213.060000px;}
.w4{width:255.060000px;}
.w5{width:351.660000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x5{left:85.229987px;}
.x10{left:111.239987px;}
.x4{left:143.549987px;}
.xa{left:146.609987px;}
.x2{left:202.799987px;}
.x7{left:216.930000px;}
.xb{left:250.680000px;}
.xe{left:425.010000px;}
.xc{left:426.180000px;}
.x8{left:472.800000px;}
.xd{left:623.940000px;}
.xf{left:638.880000px;}
.x3{left:792.059987px;}
.x9{left:816.809987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.lsa{letter-spacing:-0.007467pt;}
.ls14{letter-spacing:-0.006720pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.043520pt;}
.ls5{letter-spacing:0.043733pt;}
.ls3{letter-spacing:0.058240pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.087467pt;}
.ls15{letter-spacing:0.098667pt;}
.ls7{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls11{letter-spacing:0.161067pt;}
.ls12{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.378240pt;}
.ls18{letter-spacing:42.423680pt;}
.ls17{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.933867pt;}
.wsb{word-spacing:-11.917867pt;}
.ws8{word-spacing:-11.910933pt;}
.wsf{word-spacing:-11.855467pt;}
.ws6{word-spacing:-11.800533pt;}
.wsd{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.750080pt;}
.ws9{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._11{margin-left:-3.454395pt;}
._10{margin-left:-2.565334pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.084512pt;}
._7{width:2.618667pt;}
._f{width:3.580266pt;}
._e{width:4.664320pt;}
._6{width:5.557867pt;}
._14{width:6.453787pt;}
._8{width:7.358159pt;}
._5{width:8.431174pt;}
._4{width:9.428277pt;}
._34{width:10.323819pt;}
._2{width:11.217888pt;}
._1{width:12.641387pt;}
._d{width:13.567893pt;}
._b{width:14.535466pt;}
._c{width:15.552002pt;}
._20{width:16.474449pt;}
._17{width:17.581760pt;}
._15{width:18.597120pt;}
._12{width:19.612480pt;}
._9{width:20.521067pt;}
._a{width:21.589867pt;}
._13{width:22.875947pt;}
._16{width:24.368640pt;}
._19{width:25.277120pt;}
._1e{width:27.575040pt;}
._25{width:29.338560pt;}
._1f{width:31.476160pt;}
._1d{width:36.591467pt;}
._1c{width:37.895360pt;}
._3e{width:40.935040pt;}
._32{width:41.896960pt;}
._37{width:43.232960pt;}
._1a{width:45.851520pt;}
._30{width:48.363200pt;}
._36{width:53.546880pt;}
._38{width:54.669120pt;}
._3a{width:57.472747pt;}
._23{width:58.890880pt;}
._35{width:64.341760pt;}
._2c{width:80.908160pt;}
._3f{width:86.170027pt;}
._31{width:87.320960pt;}
._2f{width:90.848000pt;}
._21{width:110.026880pt;}
._26{width:114.789120pt;}
._28{width:122.270720pt;}
._22{width:124.622080pt;}
._2b{width:126.599360pt;}
._2a{width:128.843840pt;}
._2d{width:133.439680pt;}
._1b{width:136.592640pt;}
._33{width:145.570560pt;}
._27{width:165.717440pt;}
._39{width:168.923840pt;}
._24{width:181.560427pt;}
._3b{width:194.094080pt;}
._29{width:216.645760pt;}
._3c{width:224.020480pt;}
._3d{width:224.982400pt;}
._2e{width:229.364480pt;}
._18{width:2144.138133pt;}
.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;}
.ya7{bottom:6.960000pt;}
.y101{bottom:7.040000pt;}
.yad{bottom:22.560000pt;}
.y140{bottom:22.586667pt;}
.yaa{bottom:22.640000pt;}
.y104{bottom:38.240000pt;}
.y100{bottom:38.320000pt;}
.y103{bottom:53.840000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y7f{bottom:99.706667pt;}
.yfc{bottom:103.386667pt;}
.ye1{bottom:105.146667pt;}
.y164{bottom:109.546667pt;}
.y98{bottom:112.506667pt;}
.yc5{bottom:113.866667pt;}
.y7e{bottom:115.306667pt;}
.y19e{bottom:119.226667pt;}
.y11a{bottom:122.106667pt;}
.y27{bottom:122.346667pt;}
.y163{bottom:125.146667pt;}
.y13c{bottom:126.506667pt;}
.y97{bottom:128.186667pt;}
.yc4{bottom:129.466667pt;}
.y7d{bottom:130.906667pt;}
.y59{bottom:131.306667pt;}
.y19d{bottom:134.826667pt;}
.yfb{bottom:134.986667pt;}
.ye0{bottom:136.746667pt;}
.y26{bottom:137.946667pt;}
.y186{bottom:138.186667pt;}
.y162{bottom:140.826667pt;}
.y13b{bottom:142.106667pt;}
.y96{bottom:143.786667pt;}
.yc3{bottom:145.066667pt;}
.y7c{bottom:146.586667pt;}
.y58{bottom:146.906667pt;}
.ydf{bottom:152.426667pt;}
.y119{bottom:153.786667pt;}
.y185{bottom:153.866667pt;}
.y161{bottom:156.426667pt;}
.y13a{bottom:157.786667pt;}
.y1ad{bottom:158.106667pt;}
.y19c{bottom:158.746667pt;}
.y95{bottom:159.466667pt;}
.yc2{bottom:160.746667pt;}
.y7b{bottom:162.186667pt;}
.y57{bottom:162.586667pt;}
.yfa{bottom:166.666667pt;}
.yde{bottom:168.026667pt;}
.y118{bottom:169.386667pt;}
.y184{bottom:169.466667pt;}
.y25{bottom:169.626667pt;}
.y139{bottom:173.386667pt;}
.y1ac{bottom:173.786667pt;}
.y94{bottom:175.066667pt;}
.yc1{bottom:176.346667pt;}
.y56{bottom:178.186667pt;}
.yf9{bottom:182.266667pt;}
.ydd{bottom:183.626667pt;}
.y117{bottom:184.986667pt;}
.y183{bottom:185.066667pt;}
.y24{bottom:185.226667pt;}
.y160{bottom:188.026667pt;}
.yc0{bottom:192.026667pt;}
.y55{bottom:193.866667pt;}
.y1ab{bottom:197.386667pt;}
.yf8{bottom:197.866667pt;}
.ydc{bottom:199.306667pt;}
.y116{bottom:200.666667pt;}
.y182{bottom:200.746667pt;}
.y23{bottom:200.826667pt;}
.y19b{bottom:201.626667pt;}
.y15f{bottom:203.706667pt;}
.y138{bottom:204.986667pt;}
.y93{bottom:206.666667pt;}
.y54{bottom:209.466667pt;}
.y1aa{bottom:212.986667pt;}
.yf7{bottom:213.546667pt;}
.y115{bottom:216.266667pt;}
.y22{bottom:216.506667pt;}
.y15e{bottom:219.306667pt;}
.y137{bottom:220.666667pt;}
.y92{bottom:222.346667pt;}
.ybf{bottom:223.626667pt;}
.y181{bottom:224.346667pt;}
.y7a{bottom:225.066667pt;}
.y19a{bottom:225.546667pt;}
.y1a9{bottom:228.666667pt;}
.yf6{bottom:229.146667pt;}
.ydb{bottom:230.906667pt;}
.y21{bottom:232.106667pt;}
.y15d{bottom:234.986667pt;}
.y136{bottom:236.266667pt;}
.y91{bottom:237.946667pt;}
.ybe{bottom:239.226667pt;}
.y79{bottom:240.746667pt;}
.y53{bottom:241.066667pt;}
.yda{bottom:246.586667pt;}
.y20{bottom:247.786667pt;}
.y114{bottom:247.946667pt;}
.y135{bottom:251.946667pt;}
.y1a8{bottom:252.266667pt;}
.yf5{bottom:253.066667pt;}
.y90{bottom:253.546667pt;}
.ybd{bottom:254.906667pt;}
.y180{bottom:255.946667pt;}
.y78{bottom:256.346667pt;}
.y52{bottom:256.746667pt;}
.y199{bottom:258.506667pt;}
.y15c{bottom:258.586667pt;}
.yd9{bottom:262.186667pt;}
.y1f{bottom:263.386667pt;}
.y113{bottom:263.546667pt;}
.y134{bottom:267.546667pt;}
.y1a7{bottom:267.946667pt;}
.y8f{bottom:269.226667pt;}
.ybc{bottom:270.506667pt;}
.y17f{bottom:271.626667pt;}
.y51{bottom:272.346667pt;}
.y198{bottom:274.106667pt;}
.yd8{bottom:277.786667pt;}
.y112{bottom:279.146667pt;}
.ybb{bottom:286.106667pt;}
.y1e{bottom:286.986667pt;}
.y17e{bottom:287.226667pt;}
.y50{bottom:287.946667pt;}
.y15b{bottom:290.186667pt;}
.y133{bottom:291.146667pt;}
.y1a6{bottom:291.546667pt;}
.yd7{bottom:293.466667pt;}
.y111{bottom:294.826667pt;}
.yf4{bottom:295.946667pt;}
.y197{bottom:298.026667pt;}
.y8e{bottom:300.826667pt;}
.y17d{bottom:302.906667pt;}
.y4f{bottom:303.626667pt;}
.y15a{bottom:305.866667pt;}
.y1a5{bottom:307.146667pt;}
.yd6{bottom:309.066667pt;}
.y110{bottom:310.426667pt;}
.yf3{bottom:311.626667pt;}
.y8d{bottom:316.506667pt;}
.yba{bottom:317.786667pt;}
.y17c{bottom:318.506667pt;}
.y1d{bottom:318.906667pt;}
.y77{bottom:319.226667pt;}
.y159{bottom:321.466667pt;}
.y132{bottom:322.826667pt;}
.yf2{bottom:327.226667pt;}
.y4e{bottom:327.546667pt;}
.y196{bottom:331.226667pt;}
.y8c{bottom:332.106667pt;}
.yb9{bottom:333.386667pt;}
.y76{bottom:334.906667pt;}
.y158{bottom:337.146667pt;}
.y131{bottom:338.426667pt;}
.yd5{bottom:340.666667pt;}
.y10f{bottom:342.106667pt;}
.yf1{bottom:342.906667pt;}
.y1a4{bottom:346.426667pt;}
.y8b{bottom:347.706667pt;}
.yb8{bottom:349.066667pt;}
.y17b{bottom:350.106667pt;}
.y75{bottom:350.506667pt;}
.y130{bottom:354.106667pt;}
.yd4{bottom:356.346667pt;}
.y10e{bottom:357.706667pt;}
.yf0{bottom:358.506667pt;}
.y1c{bottom:361.866667pt;}
.y1a3{bottom:362.106667pt;}
.y8a{bottom:363.386667pt;}
.yb7{bottom:364.666667pt;}
.y17a{bottom:365.786667pt;}
.y74{bottom:366.106667pt;}
.y157{bottom:368.746667pt;}
.y12f{bottom:369.706667pt;}
.y4d{bottom:370.426667pt;}
.yd3{bottom:371.946667pt;}
.y10d{bottom:373.306667pt;}
.y195{bottom:374.106667pt;}
.y1a2{bottom:377.706667pt;}
.y1b{bottom:377.786667pt;}
.y89{bottom:378.986667pt;}
.yb6{bottom:380.266667pt;}
.y179{bottom:381.386667pt;}
.y156{bottom:384.346667pt;}
.y4c{bottom:386.106667pt;}
.yd2{bottom:387.626667pt;}
.y10c{bottom:388.986667pt;}
.y73{bottom:389.786667pt;}
.yef{bottom:390.106667pt;}
.yb5{bottom:395.946667pt;}
.y178{bottom:397.066667pt;}
.y155{bottom:400.026667pt;}
.y12e{bottom:401.306667pt;}
.y4b{bottom:401.706667pt;}
.y88{bottom:402.666667pt;}
.yd1{bottom:403.226667pt;}
.y194{bottom:405.386667pt;}
.yee{bottom:405.786667pt;}
.y1a{bottom:410.666667pt;}
.y10b{bottom:412.586667pt;}
.y154{bottom:415.626667pt;}
.y12d{bottom:416.986667pt;}
.y4a{bottom:417.306667pt;}
.yd0{bottom:418.853333pt;}
.yb4{bottom:419.573333pt;}
.y193{bottom:421.093333pt;}
.y72{bottom:421.413333pt;}
.y19{bottom:426.293333pt;}
.y177{bottom:428.693333pt;}
.y153{bottom:431.253333pt;}
.y12c{bottom:432.613333pt;}
.y87{bottom:434.293333pt;}
.ycf{bottom:434.533333pt;}
.y71{bottom:437.093333pt;}
.y18{bottom:441.973333pt;}
.y10a{bottom:444.293333pt;}
.y192{bottom:445.013333pt;}
.y12b{bottom:448.293333pt;}
.y49{bottom:449.013333pt;}
.y86{bottom:449.893333pt;}
.yb3{bottom:451.253333pt;}
.y70{bottom:452.693333pt;}
.y1a1{bottom:456.293333pt;}
.y17{bottom:457.573333pt;}
.yce{bottom:458.133333pt;}
.y109{bottom:459.893333pt;}
.y176{bottom:459.973333pt;}
.y152{bottom:462.933333pt;}
.y48{bottom:464.613333pt;}
.y85{bottom:465.573333pt;}
.yb2{bottom:466.853333pt;}
.y6f{bottom:468.293333pt;}
.y16{bottom:473.253333pt;}
.y108{bottom:475.493333pt;}
.y175{bottom:475.573333pt;}
.y151{bottom:478.533333pt;}
.y12a{bottom:479.893333pt;}
.y47{bottom:480.293333pt;}
.y84{bottom:481.173333pt;}
.yb1{bottom:482.453333pt;}
.y6e{bottom:483.973333pt;}
.yed{bottom:484.293333pt;}
.y191{bottom:487.893333pt;}
.y15{bottom:488.853333pt;}
.ycd{bottom:489.813333pt;}
.y107{bottom:491.173333pt;}
.y150{bottom:494.213333pt;}
.y129{bottom:495.493333pt;}
.y46{bottom:495.893333pt;}
.y83{bottom:496.853333pt;}
.yb0{bottom:498.133333pt;}
.y6d{bottom:499.573333pt;}
.yec{bottom:499.973333pt;}
.y190{bottom:503.493333pt;}
.y14{bottom:504.453333pt;}
.ycc{bottom:505.413333pt;}
.y174{bottom:507.253333pt;}
.y14f{bottom:509.813333pt;}
.y128{bottom:511.173333pt;}
.y45{bottom:511.493333pt;}
.yaf{bottom:513.733333pt;}
.yeb{bottom:515.573333pt;}
.y18f{bottom:519.173333pt;}
.y13{bottom:520.133333pt;}
.y106{bottom:520.453333pt;}
.ycb{bottom:521.013333pt;}
.y173{bottom:522.853333pt;}
.y14e{bottom:525.413333pt;}
.y127{bottom:526.773333pt;}
.y44{bottom:527.173333pt;}
.y82{bottom:528.453333pt;}
.y6c{bottom:531.253333pt;}
.y18e{bottom:534.773333pt;}
.y12{bottom:535.733333pt;}
.yca{bottom:536.693333pt;}
.y172{bottom:538.453333pt;}
.y126{bottom:542.453333pt;}
.yae{bottom:543.093333pt;}
.y6b{bottom:546.853333pt;}
.y14d{bottom:549.093333pt;}
.y18d{bottom:550.453333pt;}
.y11{bottom:551.413333pt;}
.yc9{bottom:552.293333pt;}
.y171{bottom:554.133333pt;}
.y1a0{bottom:558.453333pt;}
.y43{bottom:558.773333pt;}
.y81{bottom:560.053333pt;}
.y6a{bottom:562.453333pt;}
.y10{bottom:567.013333pt;}
.yc8{bottom:567.973333pt;}
.y125{bottom:574.053333pt;}
.y42{bottom:574.453333pt;}
.y105{bottom:576.053333pt;}
.y170{bottom:577.733333pt;}
.y69{bottom:578.133333pt;}
.yea{bottom:578.453333pt;}
.y14c{bottom:580.693333pt;}
.y18c{bottom:582.053333pt;}
.yf{bottom:582.613333pt;}
.yac{bottom:583.013333pt;}
.y124{bottom:589.653333pt;}
.y41{bottom:590.053333pt;}
.y68{bottom:593.733333pt;}
.ye9{bottom:594.133333pt;}
.y14b{bottom:596.373333pt;}
.y18b{bottom:597.653333pt;}
.ye{bottom:598.293333pt;}
.yc7{bottom:599.573333pt;}
.y123{bottom:605.333333pt;}
.y40{bottom:605.653333pt;}
.y16f{bottom:609.413333pt;}
.ye8{bottom:609.733333pt;}
.y14a{bottom:611.973333pt;}
.y18a{bottom:613.333333pt;}
.yd{bottom:613.893333pt;}
.y122{bottom:620.933333pt;}
.y3f{bottom:621.333333pt;}
.yab{bottom:622.933333pt;}
.y16e{bottom:625.013333pt;}
.y67{bottom:625.413333pt;}
.y149{bottom:627.573333pt;}
.yc6{bottom:628.213333pt;}
.y189{bottom:628.933333pt;}
.y121{bottom:636.613333pt;}
.y3e{bottom:636.933333pt;}
.yc{bottom:637.813333pt;}
.y16d{bottom:640.613333pt;}
.y66{bottom:641.013333pt;}
.y188{bottom:644.613333pt;}
.y102{bottom:647.253333pt;}
.y148{bottom:651.493333pt;}
.y19f{bottom:652.613333pt;}
.y16c{bottom:656.293333pt;}
.y65{bottom:656.613333pt;}
.y120{bottom:660.213333pt;}
.ya9{bottom:662.853333pt;}
.y3d{bottom:668.613333pt;}
.y64{bottom:672.293333pt;}
.y187{bottom:676.213333pt;}
.y16b{bottom:680.213333pt;}
.ye7{bottom:680.533333pt;}
.yb{bottom:680.693333pt;}
.y3c{bottom:684.213333pt;}
.y63{bottom:687.893333pt;}
.y11f{bottom:691.813333pt;}
.y147{bottom:694.453333pt;}
.y3b{bottom:699.813333pt;}
.ya8{bottom:702.773333pt;}
.y62{bottom:703.573333pt;}
.y11e{bottom:707.493333pt;}
.y146{bottom:710.053333pt;}
.ya{bottom:712.533333pt;}
.y3a{bottom:715.493333pt;}
.yff{bottom:718.373333pt;}
.y11d{bottom:723.093333pt;}
.ye6{bottom:723.493333pt;}
.y145{bottom:725.733333pt;}
.ya6{bottom:727.093333pt;}
.y61{bottom:727.173333pt;}
.y39{bottom:731.093333pt;}
.y11c{bottom:738.693333pt;}
.ye5{bottom:739.093333pt;}
.y144{bottom:741.333333pt;}
.y9{bottom:744.533333pt;}
.y38{bottom:746.693333pt;}
.y16a{bottom:754.373333pt;}
.ye4{bottom:754.693333pt;}
.y60{bottom:758.773333pt;}
.y169{bottom:769.973333pt;}
.ya5{bottom:770.373333pt;}
.y143{bottom:770.613333pt;}
.yfe{bottom:773.973333pt;}
.y5f{bottom:774.453333pt;}
.y37{bottom:778.373333pt;}
.y8{bottom:779.893333pt;}
.ye3{bottom:785.973333pt;}
.y5e{bottom:790.053333pt;}
.y36{bottom:793.973333pt;}
.y7{bottom:795.893333pt;}
.y11b{bottom:801.653333pt;}
.ya4{bottom:801.973333pt;}
.y5d{bottom:805.733333pt;}
.y35{bottom:809.653333pt;}
.y142{bottom:810.533333pt;}
.yfd{bottom:817.253333pt;}
.ya3{bottom:817.653333pt;}
.y6{bottom:824.613333pt;}
.y34{bottom:825.253333pt;}
.y5c{bottom:829.573333pt;}
.y168{bottom:832.853333pt;}
.ya2{bottom:833.253333pt;}
.y33{bottom:840.853333pt;}
.y5{bottom:841.813333pt;}
.y167{bottom:848.533333pt;}
.ya1{bottom:848.853333pt;}
.y141{bottom:850.533333pt;}
.y32{bottom:856.533333pt;}
.ya0{bottom:864.533333pt;}
.y5b{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.y9f{bottom:880.133333pt;}
.y31{bottom:888.133333pt;}
.y13f{bottom:890.453333pt;}
.ye2{bottom:895.813333pt;}
.y3{bottom:897.840000pt;}
.y30{bottom:903.840000pt;}
.y166{bottom:911.440000pt;}
.y9e{bottom:911.840000pt;}
.y2f{bottom:919.440000pt;}
.y165{bottom:927.040000pt;}
.y9d{bottom:927.440000pt;}
.y13e{bottom:930.400000pt;}
.y2e{bottom:935.040000pt;}
.y9c{bottom:943.040000pt;}
.y2d{bottom:950.720000pt;}
.y80{bottom:951.040000pt;}
.y9b{bottom:958.720000pt;}
.y5a{bottom:966.720000pt;}
.y13d{bottom:970.320000pt;}
.y9a{bottom:974.320000pt;}
.y2c{bottom:982.320000pt;}
.y99{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hc{height:39.200000pt;}
.h10{height:39.226667pt;}
.hb{height:39.280000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hf{height:54.880000pt;}
.h11{height:54.927899pt;}
.hd{height:54.960000pt;}
.h8{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.he{height:70.480000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:131.066667pt;}
.w7{width:155.360000pt;}
.w6{width:161.066667pt;}
.wc{width:164.960000pt;}
.w8{width:175.066667pt;}
.w9{width:178.240000pt;}
.wa{width:184.240000pt;}
.wb{width:189.386667pt;}
.w4{width:226.720000pt;}
.w5{width:312.586667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x5{left:75.759988pt;}
.x10{left:98.879988pt;}
.x4{left:127.599988pt;}
.xa{left:130.319988pt;}
.x2{left:180.266655pt;}
.x7{left:192.826667pt;}
.xb{left:222.826667pt;}
.xe{left:377.786667pt;}
.xc{left:378.826667pt;}
.x8{left:420.266667pt;}
.xd{left:554.613333pt;}
.xf{left:567.893333pt;}
.x3{left:704.053322pt;}
.x9{left:726.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; }
  