
    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_dde8edbdef502bc7ada3a84a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_efd499994f1d734aab80a0d0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_bae174960bf9ae64f7f41732.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_ecc9866196e8a9d74246da34.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_4d65e2e4137424fa7ff6a7e0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.lsa{letter-spacing:-0.786000px;}
.ls11{letter-spacing:-0.570000px;}
.ls17{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.463800px;}
.ls1b{letter-spacing:-0.431400px;}
.ls12{letter-spacing:-0.326400px;}
.ls2a{letter-spacing:-0.240600px;}
.ls8{letter-spacing:-0.175800px;}
.ls5{letter-spacing:-0.164400px;}
.ls4{letter-spacing:-0.132600px;}
.ls19{letter-spacing:-0.078600px;}
.ls25{letter-spacing:-0.069600px;}
.ls30{letter-spacing:-0.064800px;}
.lsb{letter-spacing:-0.058320px;}
.ls15{letter-spacing:-0.053280px;}
.ls23{letter-spacing:-0.049680px;}
.ls18{letter-spacing:-0.032400px;}
.ls2{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.025200px;}
.ls3{letter-spacing:0.038880px;}
.ls29{letter-spacing:0.060480px;}
.ls2b{letter-spacing:0.060600px;}
.ls27{letter-spacing:0.064200px;}
.ls7{letter-spacing:0.066000px;}
.ls13{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.150000px;}
.ls1a{letter-spacing:0.174000px;}
.ls1d{letter-spacing:0.174240px;}
.ls1c{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.233280px;}
.lsc{letter-spacing:0.306000px;}
.ls2e{letter-spacing:0.433440px;}
.ls24{letter-spacing:0.447600px;}
.ls1e{letter-spacing:0.447840px;}
.ls20{letter-spacing:0.468000px;}
.ls16{letter-spacing:0.479400px;}
.ls9{letter-spacing:0.544200px;}
.ls14{letter-spacing:0.654000px;}
.ls1{letter-spacing:0.666720px;}
.ls2c{letter-spacing:0.780000px;}
.ls21{letter-spacing:0.816480px;}
.ls28{letter-spacing:0.894240px;}
.ls2f{letter-spacing:12.186720px;}
.ls1f{letter-spacing:14.574240px;}
.ls2d{letter-spacing:42.426720px;}
.lsf{letter-spacing:49.626720px;}
.ls10{letter-spacing:52.506720px;}
.lse{letter-spacing:66.186720px;}
.lsd{letter-spacing:82.890720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-59.760000px;}
.ws0{word-spacing:-19.077120px;}
.ws4{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.805840px;}
.ws3{word-spacing:-14.506440px;}
.ws7{word-spacing:-13.811760px;}
.ws9{word-spacing:-13.646160px;}
.ws12{word-spacing:-13.569960px;}
.ws11{word-spacing:-13.530960px;}
.ws5{word-spacing:-13.505760px;}
.wsc{word-spacing:-13.473360px;}
.wsf{word-spacing:-13.456080px;}
.ws6{word-spacing:-13.447440px;}
.ws13{word-spacing:-13.440960px;}
.ws10{word-spacing:-13.436160px;}
.wse{word-spacing:-8.786880px;}
.wsb{word-spacing:-0.059760px;}
.wsa{word-spacing:-0.006480px;}
.ws8{word-spacing:0.000000px;}
._21{margin-left:-533.278560px;}
._22{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._15{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._1a{margin-left:-244.391040px;}
._b{margin-left:-240.510240px;}
._19{margin-left:-222.774000px;}
._24{margin-left:-211.138560px;}
._10{margin-left:-203.103360px;}
._1c{margin-left:-201.453120px;}
._1b{margin-left:-199.943040px;}
._23{margin-left:-189.590400px;}
._e{margin-left:-170.334720px;}
._d{margin-left:-165.419520px;}
._f{margin-left:-154.885440px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._26{margin-left:-144.688080px;}
._c{margin-left:-134.912160px;}
._13{margin-left:-133.843680px;}
._11{margin-left:-118.080000px;}
._14{margin-left:-115.871040px;}
._25{margin-left:-109.970160px;}
._20{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1f{margin-left:-86.399760px;}
._1e{margin-left:-83.520000px;}
._16{margin-left:-81.351360px;}
._18{margin-left:-66.703680px;}
._12{margin-left:-51.205680px;}
._17{margin-left:-49.123920px;}
._1d{margin-left:-31.530240px;}
._28{margin-left:-4.229760px;}
._27{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._29{width:1.284960px;}
._2b{width:2.717280px;}
._2a{width:3.781440px;}
._2c{width:4.853760px;}
._2e{width:6.055680px;}
._33{width:7.601040px;}
._2f{width:8.862720px;}
._30{width:10.433040px;}
._2d{width:11.537040px;}
._38{width:14.631840px;}
._31{width:15.657120px;}
._32{width:16.732800px;}
._3c{width:29.162880px;}
._3a{width:33.644880px;}
._3b{width:41.413680px;}
._36{width:52.230240px;}
._37{width:53.963280px;}
._39{width:57.429360px;}
._35{width:243.761040px;}
._34{width:467.798400px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs4{font-size:38.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yc8{bottom:6.480000px;}
.y89{bottom:6.660000px;}
.y105{bottom:6.690000px;}
.ybd{bottom:6.705000px;}
.ye1{bottom:11.700000px;}
.yda{bottom:13.680000px;}
.ydf{bottom:16.920000px;}
.ya4{bottom:17.100000px;}
.yb0{bottom:17.280000px;}
.yb3{bottom:17.310000px;}
.ydd{bottom:24.660000px;}
.y97{bottom:27.720000px;}
.yb2{bottom:27.750000px;}
.y96{bottom:48.780000px;}
.y101{bottom:51.840000px;}
.y6{bottom:59.940000px;}
.yaf{bottom:88.380000px;}
.y94{bottom:90.000000px;}
.y13c{bottom:91.260000px;}
.yd8{bottom:91.440000px;}
.y31{bottom:92.160000px;}
.y61{bottom:94.320000px;}
.y10c{bottom:96.885000px;}
.y121{bottom:103.320000px;}
.y93{bottom:111.060000px;}
.y107{bottom:111.420000px;}
.y13b{bottom:112.320000px;}
.yd7{bottom:112.500000px;}
.y30{bottom:113.220000px;}
.y60{bottom:115.380000px;}
.y120{bottom:124.380000px;}
.y106{bottom:125.820000px;}
.y92{bottom:132.120000px;}
.y13a{bottom:133.380000px;}
.yae{bottom:133.560000px;}
.y2f{bottom:134.280000px;}
.y5f{bottom:136.440000px;}
.yd6{bottom:142.560000px;}
.y11f{bottom:145.440000px;}
.y104{bottom:146.880000px;}
.y91{bottom:153.210000px;}
.y139{bottom:154.470000px;}
.y2e{bottom:155.370000px;}
.y5e{bottom:157.530000px;}
.yd5{bottom:159.870000px;}
.y11e{bottom:166.530000px;}
.y100{bottom:169.410000px;}
.y90{bottom:174.270000px;}
.y138{bottom:175.530000px;}
.y2d{bottom:176.430000px;}
.y5d{bottom:178.590000px;}
.yd4{bottom:180.930000px;}
.yad{bottom:185.250000px;}
.y11d{bottom:187.590000px;}
.y103{bottom:192.090000px;}
.y8f{bottom:195.330000px;}
.y137{bottom:196.590000px;}
.y2c{bottom:197.490000px;}
.y5c{bottom:199.650000px;}
.yd3{bottom:201.990000px;}
.yac{bottom:206.310000px;}
.y11c{bottom:208.650000px;}
.y102{bottom:214.590000px;}
.y8e{bottom:216.390000px;}
.y136{bottom:217.650000px;}
.y2b{bottom:218.550000px;}
.y5b{bottom:220.710000px;}
.yab{bottom:227.370000px;}
.y11b{bottom:229.710000px;}
.yff{bottom:237.090000px;}
.y8d{bottom:237.450000px;}
.y135{bottom:238.710000px;}
.y2a{bottom:239.610000px;}
.y5a{bottom:241.770000px;}
.yd2{bottom:244.110000px;}
.yaa{bottom:248.430000px;}
.y11a{bottom:250.770000px;}
.yfe{bottom:258.150000px;}
.y8c{bottom:258.510000px;}
.y134{bottom:259.770000px;}
.y29{bottom:260.670000px;}
.y59{bottom:262.830000px;}
.ya9{bottom:269.490000px;}
.y119{bottom:271.830000px;}
.y8b{bottom:279.570000px;}
.y133{bottom:280.830000px;}
.y28{bottom:281.730000px;}
.y58{bottom:283.890000px;}
.yfd{bottom:285.870000px;}
.yd1{bottom:286.230000px;}
.ya8{bottom:286.950000px;}
.y118{bottom:292.890000px;}
.y8a{bottom:295.410000px;}
.y132{bottom:301.890000px;}
.y27{bottom:302.790000px;}
.y57{bottom:304.950000px;}
.yfc{bottom:306.930000px;}
.ya7{bottom:308.010000px;}
.y117{bottom:313.950000px;}
.y88{bottom:317.910000px;}
.y131{bottom:322.950000px;}
.y26{bottom:323.850000px;}
.y56{bottom:326.010000px;}
.yfb{bottom:327.990000px;}
.yd0{bottom:331.410000px;}
.y116{bottom:335.010000px;}
.y130{bottom:344.010000px;}
.y25{bottom:344.910000px;}
.y87{bottom:345.630000px;}
.y55{bottom:347.070000px;}
.yfa{bottom:349.050000px;}
.ya6{bottom:350.130000px;}
.ycf{bottom:355.350000px;}
.y115{bottom:356.070000px;}
.y12f{bottom:365.070000px;}
.y24{bottom:365.970000px;}
.y86{bottom:366.690000px;}
.y54{bottom:368.130000px;}
.yf9{bottom:370.110000px;}
.y114{bottom:377.130000px;}
.yce{bottom:383.070000px;}
.y12e{bottom:386.130000px;}
.y85{bottom:387.750000px;}
.y53{bottom:389.190000px;}
.y23{bottom:389.370000px;}
.yf8{bottom:391.170000px;}
.ya5{bottom:392.250000px;}
.y113{bottom:398.190000px;}
.ycd{bottom:404.175000px;}
.y12d{bottom:407.235000px;}
.y84{bottom:408.855000px;}
.y22{bottom:410.295000px;}
.yf7{bottom:412.275000px;}
.ya3{bottom:413.355000px;}
.y112{bottom:419.295000px;}
.ycc{bottom:425.235000px;}
.y12c{bottom:428.295000px;}
.y83{bottom:429.915000px;}
.y52{bottom:431.355000px;}
.yf6{bottom:433.335000px;}
.y21{bottom:440.355000px;}
.ycb{bottom:442.695000px;}
.y12b{bottom:449.355000px;}
.y82{bottom:450.975000px;}
.y51{bottom:452.415000px;}
.yf5{bottom:454.395000px;}
.ya2{bottom:458.355000px;}
.y20{bottom:461.415000px;}
.yca{bottom:463.755000px;}
.y12a{bottom:470.415000px;}
.y81{bottom:472.035000px;}
.y50{bottom:473.475000px;}
.yf4{bottom:475.455000px;}
.y1f{bottom:482.475000px;}
.y129{bottom:491.475000px;}
.y80{bottom:493.275000px;}
.y4f{bottom:494.535000px;}
.yf3{bottom:496.515000px;}
.y1e{bottom:503.535000px;}
.yc9{bottom:505.875000px;}
.y128{bottom:512.535000px;}
.y4e{bottom:515.595000px;}
.yf2{bottom:517.575000px;}
.y1d{bottom:524.595000px;}
.ya1{bottom:531.255000px;}
.y127{bottom:533.595000px;}
.y4d{bottom:536.655000px;}
.yf1{bottom:538.635000px;}
.y1c{bottom:545.655000px;}
.y7f{bottom:547.995000px;}
.ya0{bottom:552.315000px;}
.y126{bottom:554.655000px;}
.y4c{bottom:557.715000px;}
.yf0{bottom:559.695000px;}
.y1b{bottom:566.715000px;}
.y7e{bottom:569.055000px;}
.y9f{bottom:573.375000px;}
.y125{bottom:575.715000px;}
.y73{bottom:578.775000px;}
.yef{bottom:580.755000px;}
.y1a{bottom:587.775000px;}
.y7d{bottom:590.115000px;}
.y9e{bottom:594.435000px;}
.y124{bottom:596.775000px;}
.y72{bottom:599.835000px;}
.yee{bottom:601.815000px;}
.y19{bottom:608.835000px;}
.y7c{bottom:611.175000px;}
.y9d{bottom:615.495000px;}
.yed{bottom:616.215000px;}
.y123{bottom:617.835000px;}
.y71{bottom:620.895000px;}
.y18{bottom:629.895000px;}
.yc7{bottom:635.295000px;}
.y9c{bottom:636.555000px;}
.yec{bottom:638.715000px;}
.y122{bottom:638.895000px;}
.y70{bottom:641.775000px;}
.y4b{bottom:650.805000px;}
.y17{bottom:650.985000px;}
.y9b{bottom:657.645000px;}
.yc6{bottom:659.265000px;}
.y7b{bottom:659.805000px;}
.yeb{bottom:661.425000px;}
.y6f{bottom:662.865000px;}
.y4a{bottom:671.865000px;}
.y16{bottom:672.045000px;}
.y9a{bottom:678.705000px;}
.y7a{bottom:680.865000px;}
.yea{bottom:682.485000px;}
.y6e{bottom:683.925000px;}
.yc5{bottom:686.985000px;}
.y49{bottom:692.925000px;}
.y15{bottom:693.105000px;}
.y99{bottom:699.765000px;}
.y79{bottom:701.925000px;}
.yc4{bottom:708.045000px;}
.ye9{bottom:710.025000px;}
.y48{bottom:713.985000px;}
.y14{bottom:714.165000px;}
.y98{bottom:714.885000px;}
.y78{bottom:722.985000px;}
.yc3{bottom:729.105000px;}
.ye8{bottom:731.085000px;}
.y47{bottom:735.045000px;}
.y13{bottom:735.225000px;}
.y95{bottom:736.665000px;}
.y77{bottom:744.045000px;}
.yc2{bottom:746.565000px;}
.ye7{bottom:752.145000px;}
.y46{bottom:756.105000px;}
.y12{bottom:756.285000px;}
.y76{bottom:765.105000px;}
.yc1{bottom:767.625000px;}
.ye6{bottom:773.205000px;}
.y45{bottom:777.165000px;}
.y11{bottom:777.345000px;}
.y75{bottom:786.165000px;}
.yc0{bottom:788.685000px;}
.ye5{bottom:794.265000px;}
.y44{bottom:798.225000px;}
.y10{bottom:798.405000px;}
.y74{bottom:807.225000px;}
.ye4{bottom:815.325000px;}
.y6d{bottom:819.285000px;}
.yf{bottom:819.465000px;}
.y43{bottom:828.285000px;}
.ybf{bottom:830.805000px;}
.ye3{bottom:836.385000px;}
.y6c{bottom:840.345000px;}
.ye{bottom:840.525000px;}
.y42{bottom:849.345000px;}
.y111{bottom:854.745000px;}
.ye2{bottom:857.445000px;}
.y6b{bottom:861.405000px;}
.yd{bottom:863.745000px;}
.y41{bottom:870.405000px;}
.ye0{bottom:871.845000px;}
.ybe{bottom:872.925000px;}
.y10b{bottom:877.425000px;}
.y6a{bottom:882.465000px;}
.yc{bottom:884.805000px;}
.y40{bottom:891.465000px;}
.ybc{bottom:896.865000px;}
.yde{bottom:897.990000px;}
.y110{bottom:899.970000px;}
.y69{bottom:903.570000px;}
.yb{bottom:905.910000px;}
.y3f{bottom:912.570000px;}
.ybb{bottom:921.030000px;}
.y10f{bottom:922.470000px;}
.y68{bottom:924.630000px;}
.ya{bottom:927.870000px;}
.ydc{bottom:930.750000px;}
.y3e{bottom:933.630000px;}
.y10e{bottom:945.150000px;}
.y67{bottom:945.690000px;}
.yba{bottom:948.750000px;}
.y9{bottom:950.190000px;}
.y3d{bottom:954.690000px;}
.y66{bottom:966.750000px;}
.y10d{bottom:967.650000px;}
.yb9{bottom:969.810000px;}
.ydb{bottom:971.250000px;}
.y8{bottom:975.390000px;}
.y3c{bottom:975.750000px;}
.y65{bottom:987.810000px;}
.y109{bottom:990.150000px;}
.yb8{bottom:990.870000px;}
.y3b{bottom:996.810000px;}
.yd9{bottom:997.350000px;}
.y64{bottom:1008.870000px;}
.y7{bottom:1009.050000px;}
.y10a{bottom:1011.210000px;}
.yb7{bottom:1011.930000px;}
.y3a{bottom:1017.870000px;}
.yb6{bottom:1029.390000px;}
.y63{bottom:1029.930000px;}
.y108{bottom:1032.270000px;}
.y39{bottom:1038.930000px;}
.y5{bottom:1049.190000px;}
.y62{bottom:1050.990000px;}
.yb5{bottom:1053.330000px;}
.y38{bottom:1059.990000px;}
.y37{bottom:1081.050000px;}
.y4{bottom:1081.410000px;}
.yb4{bottom:1095.450000px;}
.y36{bottom:1102.110000px;}
.y3{bottom:1113.630000px;}
.y35{bottom:1123.170000px;}
.yb1{bottom:1137.570000px;}
.y34{bottom:1144.230000px;}
.y2{bottom:1145.670000px;}
.y33{bottom:1165.320000px;}
.y1{bottom:1179.720000px;}
.y32{bottom:1193.220000px;}
.hd{height:20.916000px;}
.h8{height:21.060000px;}
.hb{height:21.096000px;}
.hf{height:26.100000px;}
.h13{height:26.136000px;}
.h12{height:31.320000px;}
.he{height:34.920000px;}
.h10{height:39.060000px;}
.ha{height:42.120000px;}
.hc{height:42.156000px;}
.h7{height:59.439023px;}
.h11{height:59.551172px;}
.h14{height:59.671172px;}
.h5{height:61.189805px;}
.h9{height:63.180000px;}
.h3{height:65.884219px;}
.h15{height:66.240000px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h16{height:111.276000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w42{width:33.660000px;}
.w34{width:46.656000px;}
.wc{width:51.696000px;}
.w12{width:54.540000px;}
.w38{width:55.080000px;}
.wf{width:58.680000px;}
.w2c{width:59.580000px;}
.w3f{width:59.940000px;}
.w3e{width:65.880000px;}
.w23{width:72.036000px;}
.w1a{width:72.180000px;}
.w18{width:72.900000px;}
.w2d{width:75.996000px;}
.w37{width:76.140000px;}
.w1f{width:77.076000px;}
.w15{width:78.336000px;}
.w2e{width:79.920000px;}
.w36{width:79.956000px;}
.w1d{width:80.100000px;}
.w25{width:80.460000px;}
.w2a{width:81.360000px;}
.w27{width:81.900000px;}
.w43{width:87.840000px;}
.w24{width:93.240000px;}
.w13{width:93.276000px;}
.w9{width:94.320000px;}
.w7{width:94.356000px;}
.wd{width:96.300000px;}
.w39{width:96.336000px;}
.w14{width:96.480000px;}
.we{width:96.696000px;}
.w41{width:98.316000px;}
.w1e{width:100.656000px;}
.w19{width:100.836000px;}
.w35{width:104.040000px;}
.w40{width:120.996000px;}
.w3b{width:121.500000px;}
.w10{width:132.156000px;}
.w1b{width:132.336000px;}
.w16{width:133.776000px;}
.w20{width:135.396000px;}
.w33{width:138.240000px;}
.w5{width:142.200000px;}
.w32{width:151.410000px;}
.w6{width:152.130000px;}
.w29{width:169.410000px;}
.w2f{width:185.610000px;}
.w3d{width:188.850000px;}
.w3{width:189.210000px;}
.w30{width:194.970000px;}
.w4{width:200.955000px;}
.w28{width:204.555000px;}
.w8{width:213.330000px;}
.w3c{width:220.755000px;}
.w1c{width:283.215000px;}
.w17{width:298.515000px;}
.w11{width:316.875000px;}
.w22{width:328.395000px;}
.wb{width:337.935000px;}
.w26{width:540.285000px;}
.w2b{width:600.765000px;}
.w31{width:602.565000px;}
.w3a{width:661.605000px;}
.wa{width:785.160000px;}
.w21{width:815.220000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:4.500000px;}
.xf{left:7.740000px;}
.x6{left:53.999987px;}
.x15{left:55.440000px;}
.xd{left:60.839987px;}
.x8{left:75.239987px;}
.x3f{left:77.939987px;}
.x7{left:80.999987px;}
.xe{left:96.696000px;}
.x40{left:104.975987px;}
.x9{left:108.035987px;}
.x39{left:115.776000px;}
.x2e{left:146.196000px;}
.x3e{left:149.436000px;}
.x5{left:173.189987px;}
.x2a{left:176.430000px;}
.x38{left:200.370000px;}
.x2f{left:205.770000px;}
.x3a{left:237.270000px;}
.x10{left:239.790000px;}
.xa{left:248.429987px;}
.xb{left:250.770000px;}
.x2b{left:258.330000px;}
.x30{left:283.395000px;}
.x3{left:286.814987px;}
.x33{left:296.715000px;}
.x23{left:341.715000px;}
.x2{left:350.354987px;}
.x20{left:356.835000px;}
.x3d{left:359.715000px;}
.x31{left:364.755000px;}
.x1b{left:375.375000px;}
.x25{left:386.895000px;}
.x11{left:392.655000px;}
.x16{left:396.435000px;}
.x4{left:419.294987px;}
.x24{left:423.435000px;}
.x1c{left:431.355000px;}
.x34{left:436.395000px;}
.xc{left:441.435000px;}
.x17{left:449.565000px;}
.x26{left:460.365000px;}
.x2c{left:464.325000px;}
.x1{left:479.444987px;}
.x35{left:484.485000px;}
.x12{left:487.905000px;}
.x1d{left:526.065000px;}
.x21{left:533.445000px;}
.x18{left:547.305000px;}
.x32{left:551.985000px;}
.x27{left:555.045000px;}
.x36{left:590.145000px;}
.x1e{left:624.165000px;}
.x22{left:631.590000px;}
.x2d{left:635.370000px;}
.x19{left:645.450000px;}
.x3b{left:649.950000px;}
.x28{left:653.190000px;}
.x37{left:671.730000px;}
.x13{left:702.150000px;}
.x1f{left:703.950000px;}
.x1a{left:705.570000px;}
.x3c{left:717.450000px;}
.x29{left:735.270000px;}
@media print{
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.lsa{letter-spacing:-0.698667pt;}
.ls11{letter-spacing:-0.506667pt;}
.ls17{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls1b{letter-spacing:-0.383467pt;}
.ls12{letter-spacing:-0.290133pt;}
.ls2a{letter-spacing:-0.213867pt;}
.ls8{letter-spacing:-0.156267pt;}
.ls5{letter-spacing:-0.146133pt;}
.ls4{letter-spacing:-0.117867pt;}
.ls19{letter-spacing:-0.069867pt;}
.ls25{letter-spacing:-0.061867pt;}
.ls30{letter-spacing:-0.057600pt;}
.lsb{letter-spacing:-0.051840pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls23{letter-spacing:-0.044160pt;}
.ls18{letter-spacing:-0.028800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.022400pt;}
.ls3{letter-spacing:0.034560pt;}
.ls29{letter-spacing:0.053760pt;}
.ls2b{letter-spacing:0.053867pt;}
.ls27{letter-spacing:0.057067pt;}
.ls7{letter-spacing:0.058667pt;}
.ls13{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133333pt;}
.ls1a{letter-spacing:0.154667pt;}
.ls1d{letter-spacing:0.154880pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.207360pt;}
.lsc{letter-spacing:0.272000pt;}
.ls2e{letter-spacing:0.385280pt;}
.ls24{letter-spacing:0.397867pt;}
.ls1e{letter-spacing:0.398080pt;}
.ls20{letter-spacing:0.416000pt;}
.ls16{letter-spacing:0.426133pt;}
.ls9{letter-spacing:0.483733pt;}
.ls14{letter-spacing:0.581333pt;}
.ls1{letter-spacing:0.592640pt;}
.ls2c{letter-spacing:0.693333pt;}
.ls21{letter-spacing:0.725760pt;}
.ls28{letter-spacing:0.794880pt;}
.ls2f{letter-spacing:10.832640pt;}
.ls1f{letter-spacing:12.954880pt;}
.ls2d{letter-spacing:37.712640pt;}
.lsf{letter-spacing:44.112640pt;}
.ls10{letter-spacing:46.672640pt;}
.lse{letter-spacing:58.832640pt;}
.lsd{letter-spacing:73.680640pt;}
.wsd{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.957440pt;}
.ws4{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-13.160747pt;}
.ws3{word-spacing:-12.894613pt;}
.ws7{word-spacing:-12.277120pt;}
.ws9{word-spacing:-12.129920pt;}
.ws12{word-spacing:-12.062187pt;}
.ws11{word-spacing:-12.027520pt;}
.ws5{word-spacing:-12.005120pt;}
.wsc{word-spacing:-11.976320pt;}
.wsf{word-spacing:-11.960960pt;}
.ws6{word-spacing:-11.953280pt;}
.ws13{word-spacing:-11.947520pt;}
.ws10{word-spacing:-11.943253pt;}
.wse{word-spacing:-7.810560pt;}
.wsb{word-spacing:-0.053120pt;}
.wsa{word-spacing:-0.005760pt;}
.ws8{word-spacing:0.000000pt;}
._21{margin-left:-474.025387pt;}
._22{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._15{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._1a{margin-left:-217.236480pt;}
._b{margin-left:-213.786880pt;}
._19{margin-left:-198.021333pt;}
._24{margin-left:-187.678720pt;}
._10{margin-left:-180.536320pt;}
._1c{margin-left:-179.069440pt;}
._1b{margin-left:-177.727147pt;}
._23{margin-left:-168.524800pt;}
._e{margin-left:-151.408640pt;}
._d{margin-left:-147.039573pt;}
._f{margin-left:-137.675947pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._26{margin-left:-128.611627pt;}
._c{margin-left:-119.921920pt;}
._13{margin-left:-118.972160pt;}
._11{margin-left:-104.960000pt;}
._14{margin-left:-102.996480pt;}
._25{margin-left:-97.751253pt;}
._20{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1f{margin-left:-76.799787pt;}
._1e{margin-left:-74.240000pt;}
._16{margin-left:-72.312320pt;}
._18{margin-left:-59.292160pt;}
._12{margin-left:-45.516160pt;}
._17{margin-left:-43.665707pt;}
._1d{margin-left:-28.026880pt;}
._28{margin-left:-3.759787pt;}
._27{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._29{width:1.142187pt;}
._2b{width:2.415360pt;}
._2a{width:3.361280pt;}
._2c{width:4.314453pt;}
._2e{width:5.382827pt;}
._33{width:6.756480pt;}
._2f{width:7.877973pt;}
._30{width:9.273813pt;}
._2d{width:10.255147pt;}
._38{width:13.006080pt;}
._31{width:13.917440pt;}
._32{width:14.873600pt;}
._3c{width:25.922560pt;}
._3a{width:29.906560pt;}
._3b{width:36.812160pt;}
._36{width:46.426880pt;}
._37{width:47.967360pt;}
._39{width:51.048320pt;}
._35{width:216.676480pt;}
._34{width:415.820800pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yc8{bottom:5.760000pt;}
.y89{bottom:5.920000pt;}
.y105{bottom:5.946667pt;}
.ybd{bottom:5.960000pt;}
.ye1{bottom:10.400000pt;}
.yda{bottom:12.160000pt;}
.ydf{bottom:15.040000pt;}
.ya4{bottom:15.200000pt;}
.yb0{bottom:15.360000pt;}
.yb3{bottom:15.386667pt;}
.ydd{bottom:21.920000pt;}
.y97{bottom:24.640000pt;}
.yb2{bottom:24.666667pt;}
.y96{bottom:43.360000pt;}
.y101{bottom:46.080000pt;}
.y6{bottom:53.280000pt;}
.yaf{bottom:78.560000pt;}
.y94{bottom:80.000000pt;}
.y13c{bottom:81.120000pt;}
.yd8{bottom:81.280000pt;}
.y31{bottom:81.920000pt;}
.y61{bottom:83.840000pt;}
.y10c{bottom:86.120000pt;}
.y121{bottom:91.840000pt;}
.y93{bottom:98.720000pt;}
.y107{bottom:99.040000pt;}
.y13b{bottom:99.840000pt;}
.yd7{bottom:100.000000pt;}
.y30{bottom:100.640000pt;}
.y60{bottom:102.560000pt;}
.y120{bottom:110.560000pt;}
.y106{bottom:111.840000pt;}
.y92{bottom:117.440000pt;}
.y13a{bottom:118.560000pt;}
.yae{bottom:118.720000pt;}
.y2f{bottom:119.360000pt;}
.y5f{bottom:121.280000pt;}
.yd6{bottom:126.720000pt;}
.y11f{bottom:129.280000pt;}
.y104{bottom:130.560000pt;}
.y91{bottom:136.186667pt;}
.y139{bottom:137.306667pt;}
.y2e{bottom:138.106667pt;}
.y5e{bottom:140.026667pt;}
.yd5{bottom:142.106667pt;}
.y11e{bottom:148.026667pt;}
.y100{bottom:150.586667pt;}
.y90{bottom:154.906667pt;}
.y138{bottom:156.026667pt;}
.y2d{bottom:156.826667pt;}
.y5d{bottom:158.746667pt;}
.yd4{bottom:160.826667pt;}
.yad{bottom:164.666667pt;}
.y11d{bottom:166.746667pt;}
.y103{bottom:170.746667pt;}
.y8f{bottom:173.626667pt;}
.y137{bottom:174.746667pt;}
.y2c{bottom:175.546667pt;}
.y5c{bottom:177.466667pt;}
.yd3{bottom:179.546667pt;}
.yac{bottom:183.386667pt;}
.y11c{bottom:185.466667pt;}
.y102{bottom:190.746667pt;}
.y8e{bottom:192.346667pt;}
.y136{bottom:193.466667pt;}
.y2b{bottom:194.266667pt;}
.y5b{bottom:196.186667pt;}
.yab{bottom:202.106667pt;}
.y11b{bottom:204.186667pt;}
.yff{bottom:210.746667pt;}
.y8d{bottom:211.066667pt;}
.y135{bottom:212.186667pt;}
.y2a{bottom:212.986667pt;}
.y5a{bottom:214.906667pt;}
.yd2{bottom:216.986667pt;}
.yaa{bottom:220.826667pt;}
.y11a{bottom:222.906667pt;}
.yfe{bottom:229.466667pt;}
.y8c{bottom:229.786667pt;}
.y134{bottom:230.906667pt;}
.y29{bottom:231.706667pt;}
.y59{bottom:233.626667pt;}
.ya9{bottom:239.546667pt;}
.y119{bottom:241.626667pt;}
.y8b{bottom:248.506667pt;}
.y133{bottom:249.626667pt;}
.y28{bottom:250.426667pt;}
.y58{bottom:252.346667pt;}
.yfd{bottom:254.106667pt;}
.yd1{bottom:254.426667pt;}
.ya8{bottom:255.066667pt;}
.y118{bottom:260.346667pt;}
.y8a{bottom:262.586667pt;}
.y132{bottom:268.346667pt;}
.y27{bottom:269.146667pt;}
.y57{bottom:271.066667pt;}
.yfc{bottom:272.826667pt;}
.ya7{bottom:273.786667pt;}
.y117{bottom:279.066667pt;}
.y88{bottom:282.586667pt;}
.y131{bottom:287.066667pt;}
.y26{bottom:287.866667pt;}
.y56{bottom:289.786667pt;}
.yfb{bottom:291.546667pt;}
.yd0{bottom:294.586667pt;}
.y116{bottom:297.786667pt;}
.y130{bottom:305.786667pt;}
.y25{bottom:306.586667pt;}
.y87{bottom:307.226667pt;}
.y55{bottom:308.506667pt;}
.yfa{bottom:310.266667pt;}
.ya6{bottom:311.226667pt;}
.ycf{bottom:315.866667pt;}
.y115{bottom:316.506667pt;}
.y12f{bottom:324.506667pt;}
.y24{bottom:325.306667pt;}
.y86{bottom:325.946667pt;}
.y54{bottom:327.226667pt;}
.yf9{bottom:328.986667pt;}
.y114{bottom:335.226667pt;}
.yce{bottom:340.506667pt;}
.y12e{bottom:343.226667pt;}
.y85{bottom:344.666667pt;}
.y53{bottom:345.946667pt;}
.y23{bottom:346.106667pt;}
.yf8{bottom:347.706667pt;}
.ya5{bottom:348.666667pt;}
.y113{bottom:353.946667pt;}
.ycd{bottom:359.266667pt;}
.y12d{bottom:361.986667pt;}
.y84{bottom:363.426667pt;}
.y22{bottom:364.706667pt;}
.yf7{bottom:366.466667pt;}
.ya3{bottom:367.426667pt;}
.y112{bottom:372.706667pt;}
.ycc{bottom:377.986667pt;}
.y12c{bottom:380.706667pt;}
.y83{bottom:382.146667pt;}
.y52{bottom:383.426667pt;}
.yf6{bottom:385.186667pt;}
.y21{bottom:391.426667pt;}
.ycb{bottom:393.506667pt;}
.y12b{bottom:399.426667pt;}
.y82{bottom:400.866667pt;}
.y51{bottom:402.146667pt;}
.yf5{bottom:403.906667pt;}
.ya2{bottom:407.426667pt;}
.y20{bottom:410.146667pt;}
.yca{bottom:412.226667pt;}
.y12a{bottom:418.146667pt;}
.y81{bottom:419.586667pt;}
.y50{bottom:420.866667pt;}
.yf4{bottom:422.626667pt;}
.y1f{bottom:428.866667pt;}
.y129{bottom:436.866667pt;}
.y80{bottom:438.466667pt;}
.y4f{bottom:439.586667pt;}
.yf3{bottom:441.346667pt;}
.y1e{bottom:447.586667pt;}
.yc9{bottom:449.666667pt;}
.y128{bottom:455.586667pt;}
.y4e{bottom:458.306667pt;}
.yf2{bottom:460.066667pt;}
.y1d{bottom:466.306667pt;}
.ya1{bottom:472.226667pt;}
.y127{bottom:474.306667pt;}
.y4d{bottom:477.026667pt;}
.yf1{bottom:478.786667pt;}
.y1c{bottom:485.026667pt;}
.y7f{bottom:487.106667pt;}
.ya0{bottom:490.946667pt;}
.y126{bottom:493.026667pt;}
.y4c{bottom:495.746667pt;}
.yf0{bottom:497.506667pt;}
.y1b{bottom:503.746667pt;}
.y7e{bottom:505.826667pt;}
.y9f{bottom:509.666667pt;}
.y125{bottom:511.746667pt;}
.y73{bottom:514.466667pt;}
.yef{bottom:516.226667pt;}
.y1a{bottom:522.466667pt;}
.y7d{bottom:524.546667pt;}
.y9e{bottom:528.386667pt;}
.y124{bottom:530.466667pt;}
.y72{bottom:533.186667pt;}
.yee{bottom:534.946667pt;}
.y19{bottom:541.186667pt;}
.y7c{bottom:543.266667pt;}
.y9d{bottom:547.106667pt;}
.yed{bottom:547.746667pt;}
.y123{bottom:549.186667pt;}
.y71{bottom:551.906667pt;}
.y18{bottom:559.906667pt;}
.yc7{bottom:564.706667pt;}
.y9c{bottom:565.826667pt;}
.yec{bottom:567.746667pt;}
.y122{bottom:567.906667pt;}
.y70{bottom:570.466667pt;}
.y4b{bottom:578.493333pt;}
.y17{bottom:578.653333pt;}
.y9b{bottom:584.573333pt;}
.yc6{bottom:586.013333pt;}
.y7b{bottom:586.493333pt;}
.yeb{bottom:587.933333pt;}
.y6f{bottom:589.213333pt;}
.y4a{bottom:597.213333pt;}
.y16{bottom:597.373333pt;}
.y9a{bottom:603.293333pt;}
.y7a{bottom:605.213333pt;}
.yea{bottom:606.653333pt;}
.y6e{bottom:607.933333pt;}
.yc5{bottom:610.653333pt;}
.y49{bottom:615.933333pt;}
.y15{bottom:616.093333pt;}
.y99{bottom:622.013333pt;}
.y79{bottom:623.933333pt;}
.yc4{bottom:629.373333pt;}
.ye9{bottom:631.133333pt;}
.y48{bottom:634.653333pt;}
.y14{bottom:634.813333pt;}
.y98{bottom:635.453333pt;}
.y78{bottom:642.653333pt;}
.yc3{bottom:648.093333pt;}
.ye8{bottom:649.853333pt;}
.y47{bottom:653.373333pt;}
.y13{bottom:653.533333pt;}
.y95{bottom:654.813333pt;}
.y77{bottom:661.373333pt;}
.yc2{bottom:663.613333pt;}
.ye7{bottom:668.573333pt;}
.y46{bottom:672.093333pt;}
.y12{bottom:672.253333pt;}
.y76{bottom:680.093333pt;}
.yc1{bottom:682.333333pt;}
.ye6{bottom:687.293333pt;}
.y45{bottom:690.813333pt;}
.y11{bottom:690.973333pt;}
.y75{bottom:698.813333pt;}
.yc0{bottom:701.053333pt;}
.ye5{bottom:706.013333pt;}
.y44{bottom:709.533333pt;}
.y10{bottom:709.693333pt;}
.y74{bottom:717.533333pt;}
.ye4{bottom:724.733333pt;}
.y6d{bottom:728.253333pt;}
.yf{bottom:728.413333pt;}
.y43{bottom:736.253333pt;}
.ybf{bottom:738.493333pt;}
.ye3{bottom:743.453333pt;}
.y6c{bottom:746.973333pt;}
.ye{bottom:747.133333pt;}
.y42{bottom:754.973333pt;}
.y111{bottom:759.773333pt;}
.ye2{bottom:762.173333pt;}
.y6b{bottom:765.693333pt;}
.yd{bottom:767.773333pt;}
.y41{bottom:773.693333pt;}
.ye0{bottom:774.973333pt;}
.ybe{bottom:775.933333pt;}
.y10b{bottom:779.933333pt;}
.y6a{bottom:784.413333pt;}
.yc{bottom:786.493333pt;}
.y40{bottom:792.413333pt;}
.ybc{bottom:797.213333pt;}
.yde{bottom:798.213333pt;}
.y110{bottom:799.973333pt;}
.y69{bottom:803.173333pt;}
.yb{bottom:805.253333pt;}
.y3f{bottom:811.173333pt;}
.ybb{bottom:818.693333pt;}
.y10f{bottom:819.973333pt;}
.y68{bottom:821.893333pt;}
.ya{bottom:824.773333pt;}
.ydc{bottom:827.333333pt;}
.y3e{bottom:829.893333pt;}
.y10e{bottom:840.133333pt;}
.y67{bottom:840.613333pt;}
.yba{bottom:843.333333pt;}
.y9{bottom:844.613333pt;}
.y3d{bottom:848.613333pt;}
.y66{bottom:859.333333pt;}
.y10d{bottom:860.133333pt;}
.yb9{bottom:862.053333pt;}
.ydb{bottom:863.333333pt;}
.y8{bottom:867.013333pt;}
.y3c{bottom:867.333333pt;}
.y65{bottom:878.053333pt;}
.y109{bottom:880.133333pt;}
.yb8{bottom:880.773333pt;}
.y3b{bottom:886.053333pt;}
.yd9{bottom:886.533333pt;}
.y64{bottom:896.773333pt;}
.y7{bottom:896.933333pt;}
.y10a{bottom:898.853333pt;}
.yb7{bottom:899.493333pt;}
.y3a{bottom:904.773333pt;}
.yb6{bottom:915.013333pt;}
.y63{bottom:915.493333pt;}
.y108{bottom:917.573333pt;}
.y39{bottom:923.493333pt;}
.y5{bottom:932.613333pt;}
.y62{bottom:934.213333pt;}
.yb5{bottom:936.293333pt;}
.y38{bottom:942.213333pt;}
.y37{bottom:960.933333pt;}
.y4{bottom:961.253333pt;}
.yb4{bottom:973.733333pt;}
.y36{bottom:979.653333pt;}
.y3{bottom:989.893333pt;}
.y35{bottom:998.373333pt;}
.yb1{bottom:1011.173333pt;}
.y34{bottom:1017.093333pt;}
.y2{bottom:1018.373333pt;}
.y33{bottom:1035.840000pt;}
.y1{bottom:1048.640000pt;}
.y32{bottom:1060.640000pt;}
.hd{height:18.592000pt;}
.h8{height:18.720000pt;}
.hb{height:18.752000pt;}
.hf{height:23.200000pt;}
.h13{height:23.232000pt;}
.h12{height:27.840000pt;}
.he{height:31.040000pt;}
.h10{height:34.720000pt;}
.ha{height:37.440000pt;}
.hc{height:37.472000pt;}
.h7{height:52.834688pt;}
.h11{height:52.934375pt;}
.h14{height:53.041042pt;}
.h5{height:54.390938pt;}
.h9{height:56.160000pt;}
.h3{height:58.563750pt;}
.h15{height:58.880000pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h16{height:98.912000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w42{width:29.920000pt;}
.w34{width:41.472000pt;}
.wc{width:45.952000pt;}
.w12{width:48.480000pt;}
.w38{width:48.960000pt;}
.wf{width:52.160000pt;}
.w2c{width:52.960000pt;}
.w3f{width:53.280000pt;}
.w3e{width:58.560000pt;}
.w23{width:64.032000pt;}
.w1a{width:64.160000pt;}
.w18{width:64.800000pt;}
.w2d{width:67.552000pt;}
.w37{width:67.680000pt;}
.w1f{width:68.512000pt;}
.w15{width:69.632000pt;}
.w2e{width:71.040000pt;}
.w36{width:71.072000pt;}
.w1d{width:71.200000pt;}
.w25{width:71.520000pt;}
.w2a{width:72.320000pt;}
.w27{width:72.800000pt;}
.w43{width:78.080000pt;}
.w24{width:82.880000pt;}
.w13{width:82.912000pt;}
.w9{width:83.840000pt;}
.w7{width:83.872000pt;}
.wd{width:85.600000pt;}
.w39{width:85.632000pt;}
.w14{width:85.760000pt;}
.we{width:85.952000pt;}
.w41{width:87.392000pt;}
.w1e{width:89.472000pt;}
.w19{width:89.632000pt;}
.w35{width:92.480000pt;}
.w40{width:107.552000pt;}
.w3b{width:108.000000pt;}
.w10{width:117.472000pt;}
.w1b{width:117.632000pt;}
.w16{width:118.912000pt;}
.w20{width:120.352000pt;}
.w33{width:122.880000pt;}
.w5{width:126.400000pt;}
.w32{width:134.586667pt;}
.w6{width:135.226667pt;}
.w29{width:150.586667pt;}
.w2f{width:164.986667pt;}
.w3d{width:167.866667pt;}
.w3{width:168.186667pt;}
.w30{width:173.306667pt;}
.w4{width:178.626667pt;}
.w28{width:181.826667pt;}
.w8{width:189.626667pt;}
.w3c{width:196.226667pt;}
.w1c{width:251.746667pt;}
.w17{width:265.346667pt;}
.w11{width:281.666667pt;}
.w22{width:291.906667pt;}
.wb{width:300.386667pt;}
.w26{width:480.253333pt;}
.w2b{width:534.013333pt;}
.w31{width:535.613333pt;}
.w3a{width:588.093333pt;}
.wa{width:697.920000pt;}
.w21{width:724.640000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:4.000000pt;}
.xf{left:6.880000pt;}
.x6{left:47.999988pt;}
.x15{left:49.280000pt;}
.xd{left:54.079988pt;}
.x8{left:66.879988pt;}
.x3f{left:69.279988pt;}
.x7{left:71.999988pt;}
.xe{left:85.952000pt;}
.x40{left:93.311988pt;}
.x9{left:96.031988pt;}
.x39{left:102.912000pt;}
.x2e{left:129.952000pt;}
.x3e{left:132.832000pt;}
.x5{left:153.946655pt;}
.x2a{left:156.826667pt;}
.x38{left:178.106667pt;}
.x2f{left:182.906667pt;}
.x3a{left:210.906667pt;}
.x10{left:213.146667pt;}
.xa{left:220.826655pt;}
.xb{left:222.906667pt;}
.x2b{left:229.626667pt;}
.x30{left:251.906667pt;}
.x3{left:254.946655pt;}
.x33{left:263.746667pt;}
.x23{left:303.746667pt;}
.x2{left:311.426655pt;}
.x20{left:317.186667pt;}
.x3d{left:319.746667pt;}
.x31{left:324.226667pt;}
.x1b{left:333.666667pt;}
.x25{left:343.906667pt;}
.x11{left:349.026667pt;}
.x16{left:352.386667pt;}
.x4{left:372.706655pt;}
.x24{left:376.386667pt;}
.x1c{left:383.426667pt;}
.x34{left:387.906667pt;}
.xc{left:392.386667pt;}
.x17{left:399.613333pt;}
.x26{left:409.213333pt;}
.x2c{left:412.733333pt;}
.x1{left:426.173322pt;}
.x35{left:430.653333pt;}
.x12{left:433.693333pt;}
.x1d{left:467.613333pt;}
.x21{left:474.173333pt;}
.x18{left:486.493333pt;}
.x32{left:490.653333pt;}
.x27{left:493.373333pt;}
.x36{left:524.573333pt;}
.x1e{left:554.813333pt;}
.x22{left:561.413333pt;}
.x2d{left:564.773333pt;}
.x19{left:573.733333pt;}
.x3b{left:577.733333pt;}
.x28{left:580.613333pt;}
.x37{left:597.093333pt;}
.x13{left:624.133333pt;}
.x1f{left:625.733333pt;}
.x1a{left:627.173333pt;}
.x3c{left:637.733333pt;}
.x29{left:653.573333pt;}
}




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