
    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_ff06f08e80e2f8ba16d0bff2.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_0adaeb973ea5a4bc05072e0a.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_7e8a1e99fa9ccb4429fe064d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_06b9287aa694e9fa45444a9e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6a5c5032a54eeffef5a004f4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_02d3782108df3e4391682e83.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_6e061800ce12c8c80989d4d0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_fee197e7b046daf2a589b518.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_681c2b3ff80926dc7ad9c44b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.504000px;}
.ls7{letter-spacing:-0.216000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.150000px;}
.ls8{letter-spacing:1.440000px;}
.ls0{letter-spacing:2.880000px;}
.ls5{letter-spacing:28.800000px;}
.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;}
}
.ws5{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.784000px;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-0.059760px;}
.ws4{word-spacing:0.000000px;}
.ws0{word-spacing:1.987200px;}
._25{margin-left:-8.064000px;}
._2b{margin-left:-6.624000px;}
._11{margin-left:-5.400000px;}
._10{margin-left:-4.248000px;}
._7{margin-left:-2.808000px;}
._3{margin-left:-1.010880px;}
._1{width:1.015920px;}
._2{width:2.085600px;}
._4{width:3.578400px;}
._b{width:5.096880px;}
._c{width:6.410880px;}
._12{width:7.848000px;}
._d{width:9.504000px;}
._8{width:11.304000px;}
._9{width:12.312000px;}
._19{width:13.680000px;}
._14{width:14.904000px;}
._1d{width:16.408080px;}
._0{width:19.068480px;}
._13{width:20.283600px;}
._18{width:21.335280px;}
._16{width:22.536000px;}
._17{width:23.808000px;}
._1f{width:25.004160px;}
._1e{width:26.136000px;}
._a{width:27.360000px;}
._5{width:28.440000px;}
._6{width:29.942880px;}
._15{width:31.198320px;}
._e{width:33.192000px;}
._f{width:34.488000px;}
._1a{width:36.570960px;}
._1b{width:38.226240px;}
._1c{width:39.994080px;}
._3e{width:42.150000px;}
._2f{width:45.144000px;}
._36{width:46.586880px;}
._2c{width:47.594880px;}
._2a{width:50.616000px;}
._22{width:56.234880px;}
._21{width:66.960000px;}
._29{width:71.712000px;}
._2d{width:74.304000px;}
._2e{width:75.556080px;}
._28{width:83.304000px;}
._3d{width:84.888000px;}
._39{width:108.648000px;}
._30{width:119.304000px;}
._31{width:120.324000px;}
._32{width:123.192000px;}
._41{width:130.145760px;}
._3f{width:131.616000px;}
._40{width:132.842880px;}
._23{width:138.492000px;}
._26{width:141.948000px;}
._37{width:147.600000px;}
._38{width:149.076000px;}
._33{width:166.896000px;}
._34{width:179.066880px;}
._35{width:180.609120px;}
._3a{width:206.462880px;}
._3b{width:209.232000px;}
._3c{width:210.388080px;}
._42{width:220.356000px;}
._20{width:244.992000px;}
._27{width:256.368000px;}
._24{width:344.280000px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(75,172,198);}
.fc2{color:rgb(31,73,125);}
.fc7{color:rgb(13,13,13);}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y1a3{bottom:-15.630000px;}
.y30{bottom:-15.615000px;}
.y0{bottom:0.000000px;}
.yd2{bottom:4.125000px;}
.y11b{bottom:4.140000px;}
.yd8{bottom:4.485000px;}
.ydc{bottom:4.491000px;}
.ye1{bottom:4.500000px;}
.y5{bottom:4.680000px;}
.y3{bottom:22.680000px;}
.yd5{bottom:24.825000px;}
.yda{bottom:24.831000px;}
.yde{bottom:24.840000px;}
.yd1{bottom:24.870000px;}
.y122{bottom:24.885000px;}
.yd7{bottom:25.185000px;}
.ydb{bottom:25.191000px;}
.ye0{bottom:25.200000px;}
.y123{bottom:25.245000px;}
.y2{bottom:41.760000px;}
.y32{bottom:42.660000px;}
.yd4{bottom:45.525000px;}
.y11e{bottom:45.540000px;}
.yd0{bottom:45.570000px;}
.yd6{bottom:45.885000px;}
.y11f{bottom:45.900000px;}
.ydf{bottom:45.930000px;}
.y1{bottom:59.976000px;}
.yb{bottom:77.055000px;}
.y2e{bottom:113.976000px;}
.ya{bottom:114.495000px;}
.y156{bottom:116.676000px;}
.y5f{bottom:117.576000px;}
.y168{bottom:122.976000px;}
.yd9{bottom:124.245000px;}
.y9b{bottom:128.196000px;}
.y2d{bottom:135.396000px;}
.y155{bottom:137.376000px;}
.y5e{bottom:138.276000px;}
.y139{bottom:139.176000px;}
.y2c{bottom:141.336000px;}
.y81{bottom:143.496000px;}
.yb9{bottom:144.396000px;}
.y9a{bottom:148.896000px;}
.y103{bottom:152.850000px;}
.y9{bottom:153.585000px;}
.y119{bottom:156.090000px;}
.y182{bottom:156.270000px;}
.y154{bottom:158.070000px;}
.y2b{bottom:158.610000px;}
.y5d{bottom:158.970000px;}
.y80{bottom:164.190000px;}
.yb8{bottom:165.090000px;}
.y99{bottom:169.590000px;}
.y102{bottom:173.550000px;}
.y1a0{bottom:174.990000px;}
.y118{bottom:176.790000px;}
.y181{bottom:176.970000px;}
.y8{bottom:177.705000px;}
.y138{bottom:177.870000px;}
.y153{bottom:178.770000px;}
.y5c{bottom:179.490000px;}
.y7f{bottom:184.890000px;}
.yb7{bottom:185.790000px;}
.y98{bottom:190.290000px;}
.y101{bottom:194.250000px;}
.y19f{bottom:195.690000px;}
.y180{bottom:197.490000px;}
.y152{bottom:199.470000px;}
.y5b{bottom:200.190000px;}
.y6{bottom:201.810000px;}
.y167{bottom:202.890000px;}
.yd3{bottom:205.065000px;}
.y170{bottom:205.590000px;}
.y18b{bottom:210.990000px;}
.y117{bottom:215.130000px;}
.y19e{bottom:216.390000px;}
.y137{bottom:216.570000px;}
.y17f{bottom:218.190000px;}
.y5a{bottom:220.890000px;}
.y7e{bottom:223.590000px;}
.yb6{bottom:224.130000px;}
.y97{bottom:228.990000px;}
.y18a{bottom:231.690000px;}
.y100{bottom:232.950000px;}
.y136{bottom:237.270000px;}
.y151{bottom:238.170000px;}
.y17e{bottom:238.890000px;}
.y59{bottom:241.590000px;}
.y16f{bottom:243.930000px;}
.y7d{bottom:244.290000px;}
.y2a{bottom:247.530000px;}
.y96{bottom:249.690000px;}
.yff{bottom:253.650000px;}
.y116{bottom:254.190000px;}
.y19d{bottom:255.090000px;}
.y150{bottom:258.870000px;}
.y17d{bottom:259.590000px;}
.y58{bottom:262.290000px;}
.yb5{bottom:263.190000px;}
.y7c{bottom:264.990000px;}
.y29{bottom:268.230000px;}
.y95{bottom:270.390000px;}
.yfe{bottom:274.350000px;}
.y115{bottom:274.890000px;}
.y135{bottom:275.610000px;}
.y19c{bottom:275.790000px;}
.y1a1{bottom:278.310000px;}
.y14f{bottom:279.570000px;}
.y17c{bottom:280.290000px;}
.y1a2{bottom:282.600000px;}
.y57{bottom:282.990000px;}
.yb4{bottom:283.890000px;}
.y166{bottom:285.690000px;}
.ycf{bottom:285.885000px;}
.y28{bottom:288.930000px;}
.y94{bottom:291.090000px;}
.yfd{bottom:295.050000px;}
.y114{bottom:295.590000px;}
.y19b{bottom:296.490000px;}
.y14e{bottom:300.270000px;}
.y17b{bottom:300.990000px;}
.y56{bottom:303.690000px;}
.yb3{bottom:304.590000px;}
.y165{bottom:306.390000px;}
.y27{bottom:309.675000px;}
.y93{bottom:311.835000px;}
.y134{bottom:314.715000px;}
.yfc{bottom:315.795000px;}
.y113{bottom:316.335000px;}
.y14d{bottom:321.015000px;}
.y7b{bottom:324.435000px;}
.y164{bottom:327.135000px;}
.y26{bottom:330.375000px;}
.y19a{bottom:335.235000px;}
.y133{bottom:335.415000px;}
.y112{bottom:337.035000px;}
.y17a{bottom:339.735000px;}
.y14c{bottom:341.715000px;}
.y55{bottom:342.435000px;}
.yb2{bottom:343.335000px;}
.y16e{bottom:345.135000px;}
.y163{bottom:347.835000px;}
.y92{bottom:350.535000px;}
.y25{bottom:351.075000px;}
.yfb{bottom:354.495000px;}
.y199{bottom:355.935000px;}
.y132{bottom:356.115000px;}
.y179{bottom:360.435000px;}
.y14b{bottom:362.415000px;}
.y54{bottom:363.135000px;}
.yb1{bottom:364.035000px;}
.y16d{bottom:365.835000px;}
.y91{bottom:371.235000px;}
.y24{bottom:371.775000px;}
.yfa{bottom:375.195000px;}
.y111{bottom:375.735000px;}
.y198{bottom:376.635000px;}
.y131{bottom:376.815000px;}
.y178{bottom:381.135000px;}
.y14a{bottom:383.115000px;}
.y53{bottom:383.835000px;}
.y162{bottom:386.175000px;}
.y16c{bottom:386.535000px;}
.y90{bottom:391.935000px;}
.y23{bottom:392.475000px;}
.yf9{bottom:395.895000px;}
.y110{bottom:396.435000px;}
.y130{bottom:397.515000px;}
.y177{bottom:401.835000px;}
.yb0{bottom:402.735000px;}
.y149{bottom:403.815000px;}
.y52{bottom:404.535000px;}
.y16b{bottom:407.235000px;}
.y8f{bottom:412.635000px;}
.y22{bottom:412.995000px;}
.y197{bottom:415.335000px;}
.yf8{bottom:416.595000px;}
.y10f{bottom:417.135000px;}
.y176{bottom:422.535000px;}
.yaf{bottom:423.435000px;}
.y51{bottom:425.235000px;}
.y16a{bottom:427.935000px;}
.yce{bottom:430.275000px;}
.y189{bottom:430.635000px;}
.y8e{bottom:433.335000px;}
.y21{bottom:433.695000px;}
.y196{bottom:436.035000px;}
.y12f{bottom:436.215000px;}
.yf7{bottom:437.295000px;}
.y10e{bottom:437.835000px;}
.y148{bottom:442.155000px;}
.y7a{bottom:443.235000px;}
.yae{bottom:444.135000px;}
.y50{bottom:445.935000px;}
.y169{bottom:448.635000px;}
.y188{bottom:451.335000px;}
.y8d{bottom:454.035000px;}
.y20{bottom:454.395000px;}
.y195{bottom:456.735000px;}
.y12e{bottom:456.915000px;}
.y10d{bottom:458.535000px;}
.y79{bottom:463.935000px;}
.y4f{bottom:466.635000px;}
.ycd{bottom:469.335000px;}
.y187{bottom:472.035000px;}
.y1f{bottom:475.095000px;}
.yf6{bottom:475.635000px;}
.y12d{bottom:477.615000px;}
.y147{bottom:481.215000px;}
.yad{bottom:482.835000px;}
.y78{bottom:484.635000px;}
.y4e{bottom:487.335000px;}
.ycc{bottom:490.035000px;}
.y8c{bottom:492.375000px;}
.y194{bottom:495.435000px;}
.y1e{bottom:495.795000px;}
.yf5{bottom:496.335000px;}
.y10c{bottom:497.235000px;}
.y12c{bottom:498.315000px;}
.y146{bottom:501.915000px;}
.yac{bottom:503.535000px;}
.y175{bottom:505.335000px;}
.y4d{bottom:508.035000px;}
.ycb{bottom:510.735000px;}
.y8b{bottom:513.075000px;}
.y193{bottom:516.135000px;}
.y1d{bottom:516.495000px;}
.y10b{bottom:517.935000px;}
.y145{bottom:522.615000px;}
.y77{bottom:523.335000px;}
.yab{bottom:524.235000px;}
.y174{bottom:526.035000px;}
.y161{bottom:528.735000px;}
.yca{bottom:531.435000px;}
.yf4{bottom:535.035000px;}
.y192{bottom:536.835000px;}
.y12b{bottom:537.015000px;}
.y1c{bottom:537.195000px;}
.y10a{bottom:538.635000px;}
.y144{bottom:543.315000px;}
.y76{bottom:544.035000px;}
.y4c{bottom:546.735000px;}
.y160{bottom:549.435000px;}
.y8a{bottom:551.775000px;}
.yc9{bottom:552.135000px;}
.y12a{bottom:557.715000px;}
.y1b{bottom:557.895000px;}
.y109{bottom:559.335000px;}
.yaa{bottom:562.605000px;}
.y143{bottom:564.045000px;}
.y75{bottom:564.765000px;}
.y4b{bottom:567.465000px;}
.y15f{bottom:570.165000px;}
.yc8{bottom:572.865000px;}
.yf3{bottom:574.125000px;}
.y191{bottom:575.565000px;}
.y129{bottom:578.445000px;}
.y1a{bottom:578.625000px;}
.y108{bottom:580.065000px;}
.y142{bottom:584.745000px;}
.y74{bottom:585.465000px;}
.y4a{bottom:588.165000px;}
.y89{bottom:590.865000px;}
.yc7{bottom:593.565000px;}
.yf2{bottom:594.825000px;}
.y190{bottom:596.265000px;}
.y128{bottom:599.145000px;}
.y19{bottom:599.325000px;}
.ya9{bottom:601.305000px;}
.y141{bottom:605.445000px;}
.y73{bottom:606.165000px;}
.y49{bottom:608.865000px;}
.y88{bottom:611.565000px;}
.yc6{bottom:614.265000px;}
.yf1{bottom:615.525000px;}
.y18f{bottom:616.965000px;}
.y107{bottom:618.405000px;}
.y18{bottom:620.025000px;}
.y140{bottom:626.145000px;}
.y72{bottom:626.865000px;}
.y48{bottom:629.565000px;}
.y87{bottom:632.265000px;}
.yf0{bottom:636.225000px;}
.y127{bottom:637.485000px;}
.y106{bottom:639.105000px;}
.ya8{bottom:640.365000px;}
.y17{bottom:640.725000px;}
.y71{bottom:647.565000px;}
.y47{bottom:650.265000px;}
.y86{bottom:652.965000px;}
.y18e{bottom:655.665000px;}
.yef{bottom:656.925000px;}
.y126{bottom:658.185000px;}
.ya7{bottom:661.065000px;}
.y16{bottom:661.425000px;}
.y13f{bottom:664.485000px;}
.y70{bottom:668.265000px;}
.y46{bottom:670.965000px;}
.y85{bottom:673.665000px;}
.y18d{bottom:676.365000px;}
.y105{bottom:677.805000px;}
.ya6{bottom:681.765000px;}
.y15{bottom:682.125000px;}
.y173{bottom:688.965000px;}
.y45{bottom:691.665000px;}
.y84{bottom:694.365000px;}
.yee{bottom:695.625000px;}
.y125{bottom:696.885000px;}
.y18c{bottom:697.065000px;}
.y14{bottom:702.825000px;}
.y13e{bottom:703.545000px;}
.y6f{bottom:706.965000px;}
.y172{bottom:709.665000px;}
.y44{bottom:712.365000px;}
.yc5{bottom:715.065000px;}
.yed{bottom:716.325000px;}
.ya5{bottom:720.465000px;}
.y13{bottom:723.525000px;}
.y13d{bottom:724.245000px;}
.y6e{bottom:727.665000px;}
.y171{bottom:730.365000px;}
.y124{bottom:732.165000px;}
.y83{bottom:732.705000px;}
.y43{bottom:733.065000px;}
.yc4{bottom:735.765000px;}
.yec{bottom:737.025000px;}
.ya4{bottom:741.165000px;}
.y13c{bottom:744.945000px;}
.y6d{bottom:748.365000px;}
.y186{bottom:751.065000px;}
.y15e{bottom:753.765000px;}
.y2f{bottom:754.980000px;}
.yc3{bottom:756.465000px;}
.yeb{bottom:757.725000px;}
.y12{bottom:761.505000px;}
.y13b{bottom:765.645000px;}
.y6c{bottom:769.065000px;}
.y42{bottom:771.765000px;}
.y15d{bottom:774.465000px;}
.yc2{bottom:777.165000px;}
.yea{bottom:778.425000px;}
.ya3{bottom:779.865000px;}
.y6b{bottom:789.765000px;}
.y121{bottom:792.285000px;}
.y41{bottom:792.465000px;}
.y11{bottom:797.505000px;}
.y13a{bottom:799.845000px;}
.ya2{bottom:800.565000px;}
.y6a{bottom:810.465000px;}
.y15c{bottom:812.850000px;}
.y40{bottom:813.210000px;}
.yc1{bottom:815.910000px;}
.ye9{bottom:817.170000px;}
.ye{bottom:830.310000px;}
.y185{bottom:830.850000px;}
.y69{bottom:831.210000px;}
.y3f{bottom:833.910000px;}
.yf{bottom:836.250000px;}
.yc0{bottom:836.610000px;}
.y10{bottom:837.150000px;}
.ye8{bottom:837.870000px;}
.ya1{bottom:839.310000px;}
.y68{bottom:851.910000px;}
.y120{bottom:852.630000px;}
.y3e{bottom:854.610000px;}
.ybf{bottom:857.310000px;}
.ye7{bottom:858.570000px;}
.ya0{bottom:860.010000px;}
.yd{bottom:865.050000px;}
.y184{bottom:869.910000px;}
.y67{bottom:872.610000px;}
.y3d{bottom:875.310000px;}
.ybe{bottom:878.010000px;}
.ye6{bottom:879.270000px;}
.y183{bottom:890.610000px;}
.y15b{bottom:893.310000px;}
.y3c{bottom:896.010000px;}
.yc{bottom:896.910000px;}
.y9f{bottom:898.710000px;}
.ye5{bottom:899.970000px;}
.y66{bottom:911.310000px;}
.y11d{bottom:912.750000px;}
.y15a{bottom:914.010000px;}
.y3b{bottom:916.710000px;}
.y7{bottom:919.215000px;}
.y4{bottom:919.230000px;}
.y9e{bottom:919.410000px;}
.y65{bottom:932.010000px;}
.y159{bottom:934.710000px;}
.y3a{bottom:937.410000px;}
.ye4{bottom:938.310000px;}
.ybd{bottom:940.110000px;}
.y64{bottom:952.710000px;}
.y82{bottom:955.050000px;}
.y158{bottom:955.410000px;}
.y39{bottom:958.110000px;}
.ye3{bottom:959.010000px;}
.y63{bottom:973.410000px;}
.y157{bottom:976.110000px;}
.ybc{bottom:978.450000px;}
.y38{bottom:978.810000px;}
.y11c{bottom:993.570000px;}
.y62{bottom:994.110000px;}
.y104{bottom:996.810000px;}
.ye2{bottom:997.710000px;}
.ybb{bottom:999.150000px;}
.y61{bottom:1014.810000px;}
.y37{bottom:1017.150000px;}
.y9d{bottom:1017.510000px;}
.ydd{bottom:1032.990000px;}
.y60{bottom:1035.510000px;}
.yba{bottom:1037.850000px;}
.y9c{bottom:1038.210000px;}
.y11a{bottom:1053.690000px;}
.y36{bottom:1056.210000px;}
.y35{bottom:1076.940000px;}
.y34{bottom:1097.640000px;}
.y31{bottom:1118.520000px;}
.y33{bottom:1159.920000px;}
.h10{height:0.044998px;}
.h1e{height:0.045044px;}
.h11{height:20.160000px;}
.hf{height:41.535703px;}
.hc{height:47.344922px;}
.hb{height:48.616875px;}
.h16{height:50.273438px;}
.h14{height:50.800781px;}
.he{height:58.621992px;}
.h1a{height:59.385000px;}
.h1c{height:59.400000px;}
.h1b{height:59.422500px;}
.h19{height:59.430000px;}
.h1d{height:65.010937px;}
.h2{height:65.884219px;}
.h9{height:66.757500px;}
.h1{height:67.824844px;}
.h6{height:70.628906px;}
.h12{height:70.664062px;}
.hd{height:72.562500px;}
.h15{height:80.085000px;}
.h17{height:80.091000px;}
.h13{height:80.121000px;}
.h18{height:80.130000px;}
.h4{height:82.635820px;}
.h7{height:93.936445px;}
.h8{height:96.508125px;}
.h3{height:221.430000px;}
.h5{height:221.445000px;}
.ha{height:1187.984910px;}
.h0{height:1188.000000px;}
.wd{width:121.521000px;}
.w8{width:122.241000px;}
.w17{width:124.401000px;}
.w18{width:124.416000px;}
.w12{width:125.121000px;}
.w13{width:125.136000px;}
.w19{width:126.705000px;}
.w14{width:127.425000px;}
.wc{width:127.791000px;}
.w7{width:128.151000px;}
.we{width:148.176000px;}
.w9{width:148.896000px;}
.w10{width:149.961000px;}
.w16{width:150.111000px;}
.wf{width:150.285000px;}
.wb{width:150.315000px;}
.w11{width:150.471000px;}
.wa{width:151.005000px;}
.w1a{width:172.095000px;}
.w15{width:172.455000px;}
.w1{width:216.915000px;}
.w2{width:485.160000px;}
.w3{width:485.175000px;}
.w5{width:700.650000px;}
.w6{width:912.960000px;}
.w4{width:917.977500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:2.520000px;}
.x2{left:8.091000px;}
.x21{left:10.791000px;}
.x6{left:51.660000px;}
.x20{left:54.000000px;}
.x5{left:62.280000px;}
.xb{left:101.196000px;}
.x10{left:106.416000px;}
.x1{left:108.036000px;}
.x9{left:124.596000px;}
.x1e{left:135.036000px;}
.x7{left:153.540000px;}
.x8{left:183.630000px;}
.x1f{left:189.030000px;}
.x14{left:236.925000px;}
.xc{left:239.227500px;}
.x4{left:242.490000px;}
.xd{left:245.370000px;}
.xe{left:255.990000px;}
.x19{left:259.245000px;}
.x13{left:263.010000px;}
.x3{left:324.975000px;}
.x11{left:350.310000px;}
.x15{left:359.175000px;}
.xa{left:383.655000px;}
.x1c{left:384.735000px;}
.xf{left:437.835000px;}
.x16{left:508.080000px;}
.x1a{left:509.520000px;}
.x1b{left:636.960000px;}
.x18{left:655.845000px;}
.x17{left:659.100000px;}
.x1d{left:704.310000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.448000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.133333pt;}
.ls8{letter-spacing:1.280000pt;}
.ls0{letter-spacing:2.560000pt;}
.ls5{letter-spacing:25.600000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-0.053120pt;}
.ws4{word-spacing:0.000000pt;}
.ws0{word-spacing:1.766400pt;}
._25{margin-left:-7.168000pt;}
._2b{margin-left:-5.888000pt;}
._11{margin-left:-4.800000pt;}
._10{margin-left:-3.776000pt;}
._7{margin-left:-2.496000pt;}
._3{margin-left:-0.898560pt;}
._1{width:0.903040pt;}
._2{width:1.853867pt;}
._4{width:3.180800pt;}
._b{width:4.530560pt;}
._c{width:5.698560pt;}
._12{width:6.976000pt;}
._d{width:8.448000pt;}
._8{width:10.048000pt;}
._9{width:10.944000pt;}
._19{width:12.160000pt;}
._14{width:13.248000pt;}
._1d{width:14.584960pt;}
._0{width:16.949760pt;}
._13{width:18.029867pt;}
._18{width:18.964693pt;}
._16{width:20.032000pt;}
._17{width:21.162667pt;}
._1f{width:22.225920pt;}
._1e{width:23.232000pt;}
._a{width:24.320000pt;}
._5{width:25.280000pt;}
._6{width:26.615893pt;}
._15{width:27.731840pt;}
._e{width:29.504000pt;}
._f{width:30.656000pt;}
._1a{width:32.507520pt;}
._1b{width:33.978880pt;}
._1c{width:35.550293pt;}
._3e{width:37.466667pt;}
._2f{width:40.128000pt;}
._36{width:41.410560pt;}
._2c{width:42.306560pt;}
._2a{width:44.992000pt;}
._22{width:49.986560pt;}
._21{width:59.520000pt;}
._29{width:63.744000pt;}
._2d{width:66.048000pt;}
._2e{width:67.160960pt;}
._28{width:74.048000pt;}
._3d{width:75.456000pt;}
._39{width:96.576000pt;}
._30{width:106.048000pt;}
._31{width:106.954667pt;}
._32{width:109.504000pt;}
._41{width:115.685120pt;}
._3f{width:116.992000pt;}
._40{width:118.082560pt;}
._23{width:123.104000pt;}
._26{width:126.176000pt;}
._37{width:131.200000pt;}
._38{width:132.512000pt;}
._33{width:148.352000pt;}
._34{width:159.170560pt;}
._35{width:160.541440pt;}
._3a{width:183.522560pt;}
._3b{width:185.984000pt;}
._3c{width:187.011627pt;}
._42{width:195.872000pt;}
._20{width:217.770667pt;}
._27{width:227.882667pt;}
._24{width:306.026667pt;}
.fs6{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y1a3{bottom:-13.893333pt;}
.y30{bottom:-13.880000pt;}
.y0{bottom:0.000000pt;}
.yd2{bottom:3.666667pt;}
.y11b{bottom:3.680000pt;}
.yd8{bottom:3.986667pt;}
.ydc{bottom:3.992000pt;}
.ye1{bottom:4.000000pt;}
.y5{bottom:4.160000pt;}
.y3{bottom:20.160000pt;}
.yd5{bottom:22.066667pt;}
.yda{bottom:22.072000pt;}
.yde{bottom:22.080000pt;}
.yd1{bottom:22.106667pt;}
.y122{bottom:22.120000pt;}
.yd7{bottom:22.386667pt;}
.ydb{bottom:22.392000pt;}
.ye0{bottom:22.400000pt;}
.y123{bottom:22.440000pt;}
.y2{bottom:37.120000pt;}
.y32{bottom:37.920000pt;}
.yd4{bottom:40.466667pt;}
.y11e{bottom:40.480000pt;}
.yd0{bottom:40.506667pt;}
.yd6{bottom:40.786667pt;}
.y11f{bottom:40.800000pt;}
.ydf{bottom:40.826667pt;}
.y1{bottom:53.312000pt;}
.yb{bottom:68.493333pt;}
.y2e{bottom:101.312000pt;}
.ya{bottom:101.773333pt;}
.y156{bottom:103.712000pt;}
.y5f{bottom:104.512000pt;}
.y168{bottom:109.312000pt;}
.yd9{bottom:110.440000pt;}
.y9b{bottom:113.952000pt;}
.y2d{bottom:120.352000pt;}
.y155{bottom:122.112000pt;}
.y5e{bottom:122.912000pt;}
.y139{bottom:123.712000pt;}
.y2c{bottom:125.632000pt;}
.y81{bottom:127.552000pt;}
.yb9{bottom:128.352000pt;}
.y9a{bottom:132.352000pt;}
.y103{bottom:135.866667pt;}
.y9{bottom:136.520000pt;}
.y119{bottom:138.746667pt;}
.y182{bottom:138.906667pt;}
.y154{bottom:140.506667pt;}
.y2b{bottom:140.986667pt;}
.y5d{bottom:141.306667pt;}
.y80{bottom:145.946667pt;}
.yb8{bottom:146.746667pt;}
.y99{bottom:150.746667pt;}
.y102{bottom:154.266667pt;}
.y1a0{bottom:155.546667pt;}
.y118{bottom:157.146667pt;}
.y181{bottom:157.306667pt;}
.y8{bottom:157.960000pt;}
.y138{bottom:158.106667pt;}
.y153{bottom:158.906667pt;}
.y5c{bottom:159.546667pt;}
.y7f{bottom:164.346667pt;}
.yb7{bottom:165.146667pt;}
.y98{bottom:169.146667pt;}
.y101{bottom:172.666667pt;}
.y19f{bottom:173.946667pt;}
.y180{bottom:175.546667pt;}
.y152{bottom:177.306667pt;}
.y5b{bottom:177.946667pt;}
.y6{bottom:179.386667pt;}
.y167{bottom:180.346667pt;}
.yd3{bottom:182.280000pt;}
.y170{bottom:182.746667pt;}
.y18b{bottom:187.546667pt;}
.y117{bottom:191.226667pt;}
.y19e{bottom:192.346667pt;}
.y137{bottom:192.506667pt;}
.y17f{bottom:193.946667pt;}
.y5a{bottom:196.346667pt;}
.y7e{bottom:198.746667pt;}
.yb6{bottom:199.226667pt;}
.y97{bottom:203.546667pt;}
.y18a{bottom:205.946667pt;}
.y100{bottom:207.066667pt;}
.y136{bottom:210.906667pt;}
.y151{bottom:211.706667pt;}
.y17e{bottom:212.346667pt;}
.y59{bottom:214.746667pt;}
.y16f{bottom:216.826667pt;}
.y7d{bottom:217.146667pt;}
.y2a{bottom:220.026667pt;}
.y96{bottom:221.946667pt;}
.yff{bottom:225.466667pt;}
.y116{bottom:225.946667pt;}
.y19d{bottom:226.746667pt;}
.y150{bottom:230.106667pt;}
.y17d{bottom:230.746667pt;}
.y58{bottom:233.146667pt;}
.yb5{bottom:233.946667pt;}
.y7c{bottom:235.546667pt;}
.y29{bottom:238.426667pt;}
.y95{bottom:240.346667pt;}
.yfe{bottom:243.866667pt;}
.y115{bottom:244.346667pt;}
.y135{bottom:244.986667pt;}
.y19c{bottom:245.146667pt;}
.y1a1{bottom:247.386667pt;}
.y14f{bottom:248.506667pt;}
.y17c{bottom:249.146667pt;}
.y1a2{bottom:251.200000pt;}
.y57{bottom:251.546667pt;}
.yb4{bottom:252.346667pt;}
.y166{bottom:253.946667pt;}
.ycf{bottom:254.120000pt;}
.y28{bottom:256.826667pt;}
.y94{bottom:258.746667pt;}
.yfd{bottom:262.266667pt;}
.y114{bottom:262.746667pt;}
.y19b{bottom:263.546667pt;}
.y14e{bottom:266.906667pt;}
.y17b{bottom:267.546667pt;}
.y56{bottom:269.946667pt;}
.yb3{bottom:270.746667pt;}
.y165{bottom:272.346667pt;}
.y27{bottom:275.266667pt;}
.y93{bottom:277.186667pt;}
.y134{bottom:279.746667pt;}
.yfc{bottom:280.706667pt;}
.y113{bottom:281.186667pt;}
.y14d{bottom:285.346667pt;}
.y7b{bottom:288.386667pt;}
.y164{bottom:290.786667pt;}
.y26{bottom:293.666667pt;}
.y19a{bottom:297.986667pt;}
.y133{bottom:298.146667pt;}
.y112{bottom:299.586667pt;}
.y17a{bottom:301.986667pt;}
.y14c{bottom:303.746667pt;}
.y55{bottom:304.386667pt;}
.yb2{bottom:305.186667pt;}
.y16e{bottom:306.786667pt;}
.y163{bottom:309.186667pt;}
.y92{bottom:311.586667pt;}
.y25{bottom:312.066667pt;}
.yfb{bottom:315.106667pt;}
.y199{bottom:316.386667pt;}
.y132{bottom:316.546667pt;}
.y179{bottom:320.386667pt;}
.y14b{bottom:322.146667pt;}
.y54{bottom:322.786667pt;}
.yb1{bottom:323.586667pt;}
.y16d{bottom:325.186667pt;}
.y91{bottom:329.986667pt;}
.y24{bottom:330.466667pt;}
.yfa{bottom:333.506667pt;}
.y111{bottom:333.986667pt;}
.y198{bottom:334.786667pt;}
.y131{bottom:334.946667pt;}
.y178{bottom:338.786667pt;}
.y14a{bottom:340.546667pt;}
.y53{bottom:341.186667pt;}
.y162{bottom:343.266667pt;}
.y16c{bottom:343.586667pt;}
.y90{bottom:348.386667pt;}
.y23{bottom:348.866667pt;}
.yf9{bottom:351.906667pt;}
.y110{bottom:352.386667pt;}
.y130{bottom:353.346667pt;}
.y177{bottom:357.186667pt;}
.yb0{bottom:357.986667pt;}
.y149{bottom:358.946667pt;}
.y52{bottom:359.586667pt;}
.y16b{bottom:361.986667pt;}
.y8f{bottom:366.786667pt;}
.y22{bottom:367.106667pt;}
.y197{bottom:369.186667pt;}
.yf8{bottom:370.306667pt;}
.y10f{bottom:370.786667pt;}
.y176{bottom:375.586667pt;}
.yaf{bottom:376.386667pt;}
.y51{bottom:377.986667pt;}
.y16a{bottom:380.386667pt;}
.yce{bottom:382.466667pt;}
.y189{bottom:382.786667pt;}
.y8e{bottom:385.186667pt;}
.y21{bottom:385.506667pt;}
.y196{bottom:387.586667pt;}
.y12f{bottom:387.746667pt;}
.yf7{bottom:388.706667pt;}
.y10e{bottom:389.186667pt;}
.y148{bottom:393.026667pt;}
.y7a{bottom:393.986667pt;}
.yae{bottom:394.786667pt;}
.y50{bottom:396.386667pt;}
.y169{bottom:398.786667pt;}
.y188{bottom:401.186667pt;}
.y8d{bottom:403.586667pt;}
.y20{bottom:403.906667pt;}
.y195{bottom:405.986667pt;}
.y12e{bottom:406.146667pt;}
.y10d{bottom:407.586667pt;}
.y79{bottom:412.386667pt;}
.y4f{bottom:414.786667pt;}
.ycd{bottom:417.186667pt;}
.y187{bottom:419.586667pt;}
.y1f{bottom:422.306667pt;}
.yf6{bottom:422.786667pt;}
.y12d{bottom:424.546667pt;}
.y147{bottom:427.746667pt;}
.yad{bottom:429.186667pt;}
.y78{bottom:430.786667pt;}
.y4e{bottom:433.186667pt;}
.ycc{bottom:435.586667pt;}
.y8c{bottom:437.666667pt;}
.y194{bottom:440.386667pt;}
.y1e{bottom:440.706667pt;}
.yf5{bottom:441.186667pt;}
.y10c{bottom:441.986667pt;}
.y12c{bottom:442.946667pt;}
.y146{bottom:446.146667pt;}
.yac{bottom:447.586667pt;}
.y175{bottom:449.186667pt;}
.y4d{bottom:451.586667pt;}
.ycb{bottom:453.986667pt;}
.y8b{bottom:456.066667pt;}
.y193{bottom:458.786667pt;}
.y1d{bottom:459.106667pt;}
.y10b{bottom:460.386667pt;}
.y145{bottom:464.546667pt;}
.y77{bottom:465.186667pt;}
.yab{bottom:465.986667pt;}
.y174{bottom:467.586667pt;}
.y161{bottom:469.986667pt;}
.yca{bottom:472.386667pt;}
.yf4{bottom:475.586667pt;}
.y192{bottom:477.186667pt;}
.y12b{bottom:477.346667pt;}
.y1c{bottom:477.506667pt;}
.y10a{bottom:478.786667pt;}
.y144{bottom:482.946667pt;}
.y76{bottom:483.586667pt;}
.y4c{bottom:485.986667pt;}
.y160{bottom:488.386667pt;}
.y8a{bottom:490.466667pt;}
.yc9{bottom:490.786667pt;}
.y12a{bottom:495.746667pt;}
.y1b{bottom:495.906667pt;}
.y109{bottom:497.186667pt;}
.yaa{bottom:500.093333pt;}
.y143{bottom:501.373333pt;}
.y75{bottom:502.013333pt;}
.y4b{bottom:504.413333pt;}
.y15f{bottom:506.813333pt;}
.yc8{bottom:509.213333pt;}
.yf3{bottom:510.333333pt;}
.y191{bottom:511.613333pt;}
.y129{bottom:514.173333pt;}
.y1a{bottom:514.333333pt;}
.y108{bottom:515.613333pt;}
.y142{bottom:519.773333pt;}
.y74{bottom:520.413333pt;}
.y4a{bottom:522.813333pt;}
.y89{bottom:525.213333pt;}
.yc7{bottom:527.613333pt;}
.yf2{bottom:528.733333pt;}
.y190{bottom:530.013333pt;}
.y128{bottom:532.573333pt;}
.y19{bottom:532.733333pt;}
.ya9{bottom:534.493333pt;}
.y141{bottom:538.173333pt;}
.y73{bottom:538.813333pt;}
.y49{bottom:541.213333pt;}
.y88{bottom:543.613333pt;}
.yc6{bottom:546.013333pt;}
.yf1{bottom:547.133333pt;}
.y18f{bottom:548.413333pt;}
.y107{bottom:549.693333pt;}
.y18{bottom:551.133333pt;}
.y140{bottom:556.573333pt;}
.y72{bottom:557.213333pt;}
.y48{bottom:559.613333pt;}
.y87{bottom:562.013333pt;}
.yf0{bottom:565.533333pt;}
.y127{bottom:566.653333pt;}
.y106{bottom:568.093333pt;}
.ya8{bottom:569.213333pt;}
.y17{bottom:569.533333pt;}
.y71{bottom:575.613333pt;}
.y47{bottom:578.013333pt;}
.y86{bottom:580.413333pt;}
.y18e{bottom:582.813333pt;}
.yef{bottom:583.933333pt;}
.y126{bottom:585.053333pt;}
.ya7{bottom:587.613333pt;}
.y16{bottom:587.933333pt;}
.y13f{bottom:590.653333pt;}
.y70{bottom:594.013333pt;}
.y46{bottom:596.413333pt;}
.y85{bottom:598.813333pt;}
.y18d{bottom:601.213333pt;}
.y105{bottom:602.493333pt;}
.ya6{bottom:606.013333pt;}
.y15{bottom:606.333333pt;}
.y173{bottom:612.413333pt;}
.y45{bottom:614.813333pt;}
.y84{bottom:617.213333pt;}
.yee{bottom:618.333333pt;}
.y125{bottom:619.453333pt;}
.y18c{bottom:619.613333pt;}
.y14{bottom:624.733333pt;}
.y13e{bottom:625.373333pt;}
.y6f{bottom:628.413333pt;}
.y172{bottom:630.813333pt;}
.y44{bottom:633.213333pt;}
.yc5{bottom:635.613333pt;}
.yed{bottom:636.733333pt;}
.ya5{bottom:640.413333pt;}
.y13{bottom:643.133333pt;}
.y13d{bottom:643.773333pt;}
.y6e{bottom:646.813333pt;}
.y171{bottom:649.213333pt;}
.y124{bottom:650.813333pt;}
.y83{bottom:651.293333pt;}
.y43{bottom:651.613333pt;}
.yc4{bottom:654.013333pt;}
.yec{bottom:655.133333pt;}
.ya4{bottom:658.813333pt;}
.y13c{bottom:662.173333pt;}
.y6d{bottom:665.213333pt;}
.y186{bottom:667.613333pt;}
.y15e{bottom:670.013333pt;}
.y2f{bottom:671.093333pt;}
.yc3{bottom:672.413333pt;}
.yeb{bottom:673.533333pt;}
.y12{bottom:676.893333pt;}
.y13b{bottom:680.573333pt;}
.y6c{bottom:683.613333pt;}
.y42{bottom:686.013333pt;}
.y15d{bottom:688.413333pt;}
.yc2{bottom:690.813333pt;}
.yea{bottom:691.933333pt;}
.ya3{bottom:693.213333pt;}
.y6b{bottom:702.013333pt;}
.y121{bottom:704.253333pt;}
.y41{bottom:704.413333pt;}
.y11{bottom:708.893333pt;}
.y13a{bottom:710.973333pt;}
.ya2{bottom:711.613333pt;}
.y6a{bottom:720.413333pt;}
.y15c{bottom:722.533333pt;}
.y40{bottom:722.853333pt;}
.yc1{bottom:725.253333pt;}
.ye9{bottom:726.373333pt;}
.ye{bottom:738.053333pt;}
.y185{bottom:738.533333pt;}
.y69{bottom:738.853333pt;}
.y3f{bottom:741.253333pt;}
.yf{bottom:743.333333pt;}
.yc0{bottom:743.653333pt;}
.y10{bottom:744.133333pt;}
.ye8{bottom:744.773333pt;}
.ya1{bottom:746.053333pt;}
.y68{bottom:757.253333pt;}
.y120{bottom:757.893333pt;}
.y3e{bottom:759.653333pt;}
.ybf{bottom:762.053333pt;}
.ye7{bottom:763.173333pt;}
.ya0{bottom:764.453333pt;}
.yd{bottom:768.933333pt;}
.y184{bottom:773.253333pt;}
.y67{bottom:775.653333pt;}
.y3d{bottom:778.053333pt;}
.ybe{bottom:780.453333pt;}
.ye6{bottom:781.573333pt;}
.y183{bottom:791.653333pt;}
.y15b{bottom:794.053333pt;}
.y3c{bottom:796.453333pt;}
.yc{bottom:797.253333pt;}
.y9f{bottom:798.853333pt;}
.ye5{bottom:799.973333pt;}
.y66{bottom:810.053333pt;}
.y11d{bottom:811.333333pt;}
.y15a{bottom:812.453333pt;}
.y3b{bottom:814.853333pt;}
.y7{bottom:817.080000pt;}
.y4{bottom:817.093333pt;}
.y9e{bottom:817.253333pt;}
.y65{bottom:828.453333pt;}
.y159{bottom:830.853333pt;}
.y3a{bottom:833.253333pt;}
.ye4{bottom:834.053333pt;}
.ybd{bottom:835.653333pt;}
.y64{bottom:846.853333pt;}
.y82{bottom:848.933333pt;}
.y158{bottom:849.253333pt;}
.y39{bottom:851.653333pt;}
.ye3{bottom:852.453333pt;}
.y63{bottom:865.253333pt;}
.y157{bottom:867.653333pt;}
.ybc{bottom:869.733333pt;}
.y38{bottom:870.053333pt;}
.y11c{bottom:883.173333pt;}
.y62{bottom:883.653333pt;}
.y104{bottom:886.053333pt;}
.ye2{bottom:886.853333pt;}
.ybb{bottom:888.133333pt;}
.y61{bottom:902.053333pt;}
.y37{bottom:904.133333pt;}
.y9d{bottom:904.453333pt;}
.ydd{bottom:918.213333pt;}
.y60{bottom:920.453333pt;}
.yba{bottom:922.533333pt;}
.y9c{bottom:922.853333pt;}
.y11a{bottom:936.613333pt;}
.y36{bottom:938.853333pt;}
.y35{bottom:957.280000pt;}
.y34{bottom:975.680000pt;}
.y31{bottom:994.240000pt;}
.y33{bottom:1031.040000pt;}
.h10{height:0.039999pt;}
.h1e{height:0.040039pt;}
.h11{height:17.920000pt;}
.hf{height:36.920625pt;}
.hc{height:42.084375pt;}
.hb{height:43.215000pt;}
.h16{height:44.687500pt;}
.h14{height:45.156250pt;}
.he{height:52.108438pt;}
.h1a{height:52.786667pt;}
.h1c{height:52.800000pt;}
.h1b{height:52.820000pt;}
.h19{height:52.826667pt;}
.h1d{height:57.787500pt;}
.h2{height:58.563750pt;}
.h9{height:59.340000pt;}
.h1{height:60.288750pt;}
.h6{height:62.781250pt;}
.h12{height:62.812500pt;}
.hd{height:64.500000pt;}
.h15{height:71.186667pt;}
.h17{height:71.192000pt;}
.h13{height:71.218667pt;}
.h18{height:71.226667pt;}
.h4{height:73.454062pt;}
.h7{height:83.499062pt;}
.h8{height:85.785000pt;}
.h3{height:196.826667pt;}
.h5{height:196.840000pt;}
.ha{height:1055.986587pt;}
.h0{height:1056.000000pt;}
.wd{width:108.018667pt;}
.w8{width:108.658667pt;}
.w17{width:110.578667pt;}
.w18{width:110.592000pt;}
.w12{width:111.218667pt;}
.w13{width:111.232000pt;}
.w19{width:112.626667pt;}
.w14{width:113.266667pt;}
.wc{width:113.592000pt;}
.w7{width:113.912000pt;}
.we{width:131.712000pt;}
.w9{width:132.352000pt;}
.w10{width:133.298667pt;}
.w16{width:133.432000pt;}
.wf{width:133.586667pt;}
.wb{width:133.613333pt;}
.w11{width:133.752000pt;}
.wa{width:134.226667pt;}
.w1a{width:152.973333pt;}
.w15{width:153.293333pt;}
.w1{width:192.813333pt;}
.w2{width:431.253333pt;}
.w3{width:431.266667pt;}
.w5{width:622.800000pt;}
.w6{width:811.520000pt;}
.w4{width:815.980000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:2.240000pt;}
.x2{left:7.192000pt;}
.x21{left:9.592000pt;}
.x6{left:45.920000pt;}
.x20{left:48.000000pt;}
.x5{left:55.360000pt;}
.xb{left:89.952000pt;}
.x10{left:94.592000pt;}
.x1{left:96.032000pt;}
.x9{left:110.752000pt;}
.x1e{left:120.032000pt;}
.x7{left:136.480000pt;}
.x8{left:163.226667pt;}
.x1f{left:168.026667pt;}
.x14{left:210.600000pt;}
.xc{left:212.646667pt;}
.x4{left:215.546667pt;}
.xd{left:218.106667pt;}
.xe{left:227.546667pt;}
.x19{left:230.440000pt;}
.x13{left:233.786667pt;}
.x3{left:288.866667pt;}
.x11{left:311.386667pt;}
.x15{left:319.266667pt;}
.xa{left:341.026667pt;}
.x1c{left:341.986667pt;}
.xf{left:389.186667pt;}
.x16{left:451.626667pt;}
.x1a{left:452.906667pt;}
.x1b{left:566.186667pt;}
.x18{left:582.973333pt;}
.x17{left:585.866667pt;}
.x1d{left:626.053333pt;}
}




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