
    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_9003c1597a507ba25e7df350.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_3fed7f0019fdcdd07bcfcb36.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_e56830db80107a7c4195c579.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_c4de0a0f40ca8a2d57c28e9f.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_3fdfb9edd790931b8593ff10.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_06cb59ff7d737499f1936b60.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_8a79dd6167350e095d6d36b8.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_1485693f9fa38cc9d0576230.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;}
.ls6{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.031680px;}
.lsa{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.150000px;}
.ls5{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.256200px;}
.ls9{letter-spacing:0.720000px;}
.ls0{letter-spacing:2.880000px;}
.ls8{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;}
}
.ws7{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.ws3{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.226440px;}
.ws6{word-spacing:-15.001920px;}
.ws2{word-spacing:-0.059760px;}
.ws5{word-spacing:0.000000px;}
.ws1{word-spacing:2.715840px;}
._23{margin-left:-8.064000px;}
._29{margin-left:-6.624000px;}
._10{margin-left:-5.400000px;}
._f{margin-left:-4.248000px;}
._6{margin-left:-2.808000px;}
._0{margin-left:-1.356240px;}
._2{width:1.187520px;}
._3{width:2.424000px;}
._4{width:3.829440px;}
._a{width:4.869120px;}
._b{width:5.904000px;}
._11{width:7.848000px;}
._c{width:9.504000px;}
._7{width:11.304000px;}
._8{width:12.312000px;}
._18{width:13.680000px;}
._15{width:14.904000px;}
._1c{width:16.236480px;}
._1{width:19.076160px;}
._12{width:20.176320px;}
._13{width:21.888000px;}
._14{width:23.004480px;}
._17{width:24.191040px;}
._1d{width:26.136000px;}
._9{width:27.360000px;}
._5{width:28.440000px;}
._16{width:30.312000px;}
._1b{width:31.632720px;}
._d{width:33.192000px;}
._e{width:34.488000px;}
._19{width:36.744720px;}
._1a{width:38.099760px;}
._2c{width:42.696000px;}
._2d{width:44.040480px;}
._41{width:45.072000px;}
._2a{width:46.080000px;}
._2b{width:47.376000px;}
._33{width:48.672000px;}
._28{width:50.616000px;}
._2e{width:51.648240px;}
._2f{width:54.648000px;}
._20{width:56.580240px;}
._1f{width:66.960000px;}
._44{width:68.148480px;}
._27{width:71.712000px;}
._26{width:83.304000px;}
._40{width:88.488000px;}
._3b{width:113.688000px;}
._34{width:122.904000px;}
._30{width:124.740000px;}
._32{width:126.000000px;}
._31{width:127.296000px;}
._43{width:134.844480px;}
._42{width:135.936000px;}
._21{width:138.492000px;}
._24{width:141.948000px;}
._39{width:153.360000px;}
._3a{width:154.836000px;}
._36{width:171.216000px;}
._38{width:182.363520px;}
._37{width:183.732240px;}
._35{width:195.192000px;}
._3d{width:210.791760px;}
._3c{width:212.568240px;}
._3e{width:214.272000px;}
._3f{width:215.712000px;}
._45{width:225.936000px;}
._1e{width:244.992000px;}
._25{width:256.368000px;}
._22{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;}
.y2f{bottom:-15.615000px;}
.y0{bottom:0.000000px;}
.yd7{bottom:4.125000px;}
.y118{bottom:4.140000px;}
.y11c{bottom:4.185000px;}
.y120{bottom:4.485000px;}
.ydb{bottom:4.491000px;}
.ye1{bottom:4.500000px;}
.y11e{bottom:4.545000px;}
.y5{bottom:4.680000px;}
.y3{bottom:22.680000px;}
.yd6{bottom:24.825000px;}
.yde{bottom:24.840000px;}
.y11b{bottom:24.885000px;}
.yda{bottom:25.185000px;}
.ye0{bottom:25.200000px;}
.y11d{bottom:25.245000px;}
.y2{bottom:41.760000px;}
.y31{bottom:42.660000px;}
.yd5{bottom:45.525000px;}
.ye3{bottom:45.540000px;}
.ydd{bottom:45.570000px;}
.yd9{bottom:45.885000px;}
.ye4{bottom:45.900000px;}
.ydf{bottom:45.930000px;}
.y1{bottom:59.976000px;}
.yb{bottom:77.055000px;}
.y2d{bottom:111.996000px;}
.y151{bottom:113.976000px;}
.ya{bottom:114.495000px;}
.y182{bottom:117.576000px;}
.y5c{bottom:119.916000px;}
.y164{bottom:122.976000px;}
.yc0{bottom:123.336000px;}
.y2c{bottom:132.336000px;}
.y150{bottom:134.676000px;}
.y181{bottom:138.276000px;}
.y5b{bottom:140.616000px;}
.yd8{bottom:142.965000px;}
.y84{bottom:143.496000px;}
.ya2{bottom:148.896000px;}
.y194{bottom:151.590000px;}
.y103{bottom:152.130000px;}
.y116{bottom:153.030000px;}
.y9{bottom:153.585000px;}
.y2b{bottom:153.750000px;}
.y14f{bottom:155.370000px;}
.y2a{bottom:159.690000px;}
.y5a{bottom:161.310000px;}
.ybf{bottom:162.390000px;}
.y83{bottom:164.190000px;}
.ya1{bottom:169.590000px;}
.y193{bottom:172.290000px;}
.y102{bottom:172.830000px;}
.y1ac{bottom:174.990000px;}
.y132{bottom:175.170000px;}
.y14e{bottom:176.070000px;}
.y29{bottom:176.790000px;}
.y180{bottom:176.970000px;}
.y8{bottom:177.705000px;}
.y59{bottom:182.010000px;}
.ybe{bottom:183.090000px;}
.y82{bottom:184.890000px;}
.ya0{bottom:190.290000px;}
.y115{bottom:192.090000px;}
.y192{bottom:192.990000px;}
.y101{bottom:193.530000px;}
.y1ab{bottom:195.690000px;}
.y131{bottom:195.870000px;}
.y14d{bottom:196.770000px;}
.y17f{bottom:197.490000px;}
.y6{bottom:201.810000px;}
.y58{bottom:202.710000px;}
.ybd{bottom:203.790000px;}
.y163{bottom:205.590000px;}
.y9f{bottom:210.990000px;}
.y114{bottom:212.790000px;}
.y100{bottom:214.230000px;}
.y1aa{bottom:216.390000px;}
.y14c{bottom:217.470000px;}
.y17e{bottom:218.190000px;}
.y57{bottom:223.410000px;}
.y81{bottom:223.590000px;}
.yd4{bottom:223.785000px;}
.y170{bottom:226.290000px;}
.y9e{bottom:231.690000px;}
.y113{bottom:233.490000px;}
.y130{bottom:234.210000px;}
.yff{bottom:234.930000px;}
.y14b{bottom:238.170000px;}
.y17d{bottom:238.890000px;}
.ybc{bottom:242.490000px;}
.y56{bottom:244.110000px;}
.y80{bottom:244.290000px;}
.y16f{bottom:246.990000px;}
.y191{bottom:252.390000px;}
.y112{bottom:254.190000px;}
.y1a9{bottom:255.090000px;}
.y28{bottom:256.170000px;}
.y17c{bottom:259.590000px;}
.ybb{bottom:263.190000px;}
.y162{bottom:264.990000px;}
.y9d{bottom:270.390000px;}
.y190{bottom:273.090000px;}
.y12f{bottom:273.270000px;}
.yfe{bottom:273.630000px;}
.y111{bottom:274.890000px;}
.y1a8{bottom:275.790000px;}
.y14a{bottom:276.870000px;}
.y27{bottom:279.930000px;}
.y17b{bottom:280.290000px;}
.y55{bottom:282.810000px;}
.y7f{bottom:282.990000px;}
.y16e{bottom:285.330000px;}
.y161{bottom:285.690000px;}
.y9c{bottom:291.090000px;}
.y12e{bottom:293.970000px;}
.yfd{bottom:294.330000px;}
.y1a7{bottom:296.490000px;}
.y149{bottom:297.570000px;}
.y17a{bottom:300.990000px;}
.yba{bottom:301.890000px;}
.y54{bottom:303.510000px;}
.y26{bottom:303.690000px;}
.y160{bottom:306.390000px;}
.yd3{bottom:309.135000px;}
.y9b{bottom:311.835000px;}
.y110{bottom:313.635000px;}
.y12d{bottom:314.715000px;}
.yfc{bottom:315.075000px;}
.y148{bottom:318.315000px;}
.y179{bottom:321.735000px;}
.yb9{bottom:322.635000px;}
.y53{bottom:324.255000px;}
.y7e{bottom:324.435000px;}
.y15f{bottom:327.135000px;}
.y25{bottom:327.495000px;}
.yd2{bottom:329.835000px;}
.y9a{bottom:332.535000px;}
.y10f{bottom:334.335000px;}
.y1a6{bottom:335.235000px;}
.y12c{bottom:335.415000px;}
.yfb{bottom:335.775000px;}
.y147{bottom:339.015000px;}
.yb8{bottom:343.335000px;}
.y52{bottom:344.955000px;}
.y16d{bottom:345.135000px;}
.y15e{bottom:347.835000px;}
.y24{bottom:351.435000px;}
.y99{bottom:353.235000px;}
.y10e{bottom:355.035000px;}
.y1ae{bottom:355.755000px;}
.y1a5{bottom:355.935000px;}
.y12b{bottom:356.115000px;}
.yfa{bottom:356.475000px;}
.y146{bottom:359.715000px;}
.y178{bottom:360.435000px;}
.y7d{bottom:362.775000px;}
.y51{bottom:365.655000px;}
.y16c{bottom:365.835000px;}
.yd1{bottom:368.175000px;}
.y15d{bottom:368.535000px;}
.y98{bottom:373.935000px;}
.y23{bottom:375.195000px;}
.y10d{bottom:375.735000px;}
.y1a4{bottom:376.635000px;}
.y145{bottom:380.415000px;}
.y177{bottom:381.135000px;}
.yb7{bottom:382.035000px;}
.y7c{bottom:383.475000px;}
.y50{bottom:386.355000px;}
.y16b{bottom:386.535000px;}
.y15c{bottom:389.235000px;}
.y18f{bottom:391.935000px;}
.y1ad{bottom:394.455000px;}
.yf9{bottom:394.815000px;}
.y10c{bottom:396.435000px;}
.y22{bottom:398.955000px;}
.y144{bottom:401.115000px;}
.y176{bottom:401.835000px;}
.yb6{bottom:402.735000px;}
.y7b{bottom:404.175000px;}
.y4f{bottom:407.055000px;}
.yd0{bottom:407.235000px;}
.y97{bottom:412.275000px;}
.y18e{bottom:412.635000px;}
.y1a3{bottom:415.335000px;}
.yf8{bottom:415.515000px;}
.y143{bottom:421.815000px;}
.y175{bottom:422.535000px;}
.y21{bottom:422.715000px;}
.yb5{bottom:423.435000px;}
.y15b{bottom:427.575000px;}
.y4e{bottom:427.755000px;}
.ycf{bottom:427.935000px;}
.y96{bottom:432.975000px;}
.y18d{bottom:433.335000px;}
.y10b{bottom:435.135000px;}
.y1a2{bottom:436.035000px;}
.y12a{bottom:436.215000px;}
.y142{bottom:442.515000px;}
.y7a{bottom:443.235000px;}
.y20{bottom:446.655000px;}
.y4d{bottom:448.455000px;}
.yce{bottom:448.635000px;}
.yf7{bottom:454.215000px;}
.y10a{bottom:455.835000px;}
.y1a1{bottom:456.735000px;}
.y129{bottom:456.915000px;}
.yb4{bottom:461.775000px;}
.y79{bottom:463.935000px;}
.y15a{bottom:466.635000px;}
.ycd{bottom:469.335000px;}
.y1f{bottom:470.415000px;}
.y95{bottom:471.675000px;}
.y18c{bottom:472.035000px;}
.y109{bottom:476.535000px;}
.y141{bottom:480.855000px;}
.y78{bottom:484.635000px;}
.y4c{bottom:487.155000px;}
.y159{bottom:487.335000px;}
.ycc{bottom:490.035000px;}
.y18b{bottom:492.735000px;}
.yf6{bottom:493.275000px;}
.y1e{bottom:494.175000px;}
.y1a0{bottom:495.435000px;}
.y128{bottom:495.615000px;}
.y108{bottom:497.235000px;}
.yb3{bottom:500.475000px;}
.y77{bottom:505.335000px;}
.y4b{bottom:507.855000px;}
.y158{bottom:508.035000px;}
.y94{bottom:510.735000px;}
.y18a{bottom:513.435000px;}
.yf5{bottom:513.975000px;}
.y19f{bottom:516.135000px;}
.y127{bottom:516.315000px;}
.y1d{bottom:517.935000px;}
.y140{bottom:519.915000px;}
.y76{bottom:526.035000px;}
.y4a{bottom:528.555000px;}
.y157{bottom:528.735000px;}
.y93{bottom:531.435000px;}
.yf4{bottom:534.675000px;}
.y19e{bottom:536.835000px;}
.y126{bottom:537.015000px;}
.yb2{bottom:539.535000px;}
.y13f{bottom:540.615000px;}
.y1c{bottom:541.875000px;}
.y75{bottom:546.735000px;}
.y49{bottom:549.255000px;}
.y156{bottom:549.435000px;}
.y92{bottom:552.135000px;}
.yf3{bottom:555.375000px;}
.y107{bottom:556.275000px;}
.y125{bottom:557.715000px;}
.yb1{bottom:560.235000px;}
.y13e{bottom:561.345000px;}
.y1b{bottom:565.665000px;}
.y74{bottom:567.465000px;}
.y48{bottom:569.985000px;}
.y155{bottom:570.165000px;}
.y91{bottom:572.865000px;}
.y19d{bottom:575.565000px;}
.yf2{bottom:576.105000px;}
.y106{bottom:577.005000px;}
.yb0{bottom:580.965000px;}
.y13d{bottom:582.045000px;}
.y174{bottom:585.465000px;}
.y73{bottom:588.165000px;}
.y1a{bottom:589.425000px;}
.y47{bottom:590.685000px;}
.ycb{bottom:590.865000px;}
.y90{bottom:593.565000px;}
.y124{bottom:596.085000px;}
.y19c{bottom:596.265000px;}
.y13c{bottom:602.745000px;}
.y173{bottom:606.165000px;}
.y46{bottom:611.385000px;}
.yca{bottom:611.565000px;}
.y19{bottom:613.185000px;}
.y8f{bottom:614.265000px;}
.yf1{bottom:614.805000px;}
.y105{bottom:615.705000px;}
.y123{bottom:616.785000px;}
.y19b{bottom:616.965000px;}
.yaf{bottom:619.665000px;}
.y13b{bottom:623.445000px;}
.y72{bottom:626.865000px;}
.y45{bottom:632.085000px;}
.yc9{bottom:632.265000px;}
.yf0{bottom:635.505000px;}
.y18{bottom:637.125000px;}
.yae{bottom:640.365000px;}
.y13a{bottom:644.145000px;}
.y71{bottom:647.565000px;}
.y104{bottom:650.265000px;}
.y8e{bottom:652.605000px;}
.y44{bottom:652.785000px;}
.yc8{bottom:652.965000px;}
.y122{bottom:655.485000px;}
.y19a{bottom:655.665000px;}
.yef{bottom:656.205000px;}
.y17{bottom:660.885000px;}
.y139{bottom:664.845000px;}
.y70{bottom:668.265000px;}
.y154{bottom:670.965000px;}
.y43{bottom:673.485000px;}
.yc7{bottom:673.665000px;}
.y199{bottom:676.365000px;}
.yee{bottom:676.905000px;}
.yad{bottom:679.065000px;}
.y16{bottom:684.645000px;}
.y6f{bottom:688.965000px;}
.y121{bottom:690.765000px;}
.y8d{bottom:691.665000px;}
.yc6{bottom:694.365000px;}
.y198{bottom:697.065000px;}
.yed{bottom:697.605000px;}
.yac{bottom:699.765000px;}
.y138{bottom:703.185000px;}
.y15{bottom:708.405000px;}
.y6e{bottom:709.665000px;}
.y42{bottom:712.185000px;}
.y8c{bottom:712.365000px;}
.yc5{bottom:715.065000px;}
.y6d{bottom:730.365000px;}
.y14{bottom:732.345000px;}
.y41{bottom:732.885000px;}
.y8b{bottom:733.065000px;}
.y197{bottom:735.765000px;}
.yec{bottom:736.305000px;}
.yab{bottom:738.465000px;}
.y137{bottom:742.245000px;}
.y11f{bottom:750.900000px;}
.y6c{bottom:751.065000px;}
.y40{bottom:753.585000px;}
.y8a{bottom:753.765000px;}
.y13{bottom:756.105000px;}
.y196{bottom:756.465000px;}
.yeb{bottom:757.005000px;}
.yaa{bottom:759.165000px;}
.y136{bottom:762.945000px;}
.y6b{bottom:771.765000px;}
.y2e{bottom:772.980000px;}
.y3f{bottom:774.285000px;}
.y89{bottom:774.465000px;}
.y12{bottom:776.985000px;}
.y195{bottom:777.165000px;}
.yea{bottom:777.705000px;}
.y135{bottom:783.645000px;}
.y172{bottom:789.765000px;}
.y6a{bottom:792.465000px;}
.y3e{bottom:794.985000px;}
.y88{bottom:795.165000px;}
.y11{bottom:797.685000px;}
.ya9{bottom:797.865000px;}
.ye9{bottom:798.405000px;}
.y134{bottom:804.345000px;}
.y171{bottom:810.465000px;}
.y11a{bottom:811.185000px;}
.y189{bottom:813.210000px;}
.y3d{bottom:815.730000px;}
.y87{bottom:815.910000px;}
.ya8{bottom:818.610000px;}
.ye8{bottom:819.150000px;}
.ye{bottom:830.310000px;}
.y69{bottom:831.210000px;}
.y16a{bottom:833.910000px;}
.yf{bottom:836.250000px;}
.y3c{bottom:836.430000px;}
.y86{bottom:836.610000px;}
.y10{bottom:837.150000px;}
.y133{bottom:838.590000px;}
.y68{bottom:851.910000px;}
.y153{bottom:854.250000px;}
.y169{bottom:854.610000px;}
.y3b{bottom:857.130000px;}
.ya7{bottom:857.310000px;}
.ye7{bottom:857.490000px;}
.yd{bottom:865.050000px;}
.y119{bottom:871.350000px;}
.y188{bottom:872.250000px;}
.y67{bottom:872.610000px;}
.y85{bottom:874.950000px;}
.y168{bottom:875.310000px;}
.y3a{bottom:877.830000px;}
.ya6{bottom:878.010000px;}
.ye6{bottom:878.190000px;}
.y66{bottom:893.310000px;}
.y167{bottom:896.010000px;}
.yc{bottom:896.910000px;}
.y39{bottom:898.530000px;}
.y187{bottom:911.310000px;}
.y65{bottom:914.010000px;}
.yc4{bottom:916.350000px;}
.ya5{bottom:916.710000px;}
.ye5{bottom:916.890000px;}
.y7{bottom:919.215000px;}
.y4{bottom:919.230000px;}
.y186{bottom:932.010000px;}
.y64{bottom:934.710000px;}
.yc3{bottom:937.050000px;}
.ya4{bottom:937.410000px;}
.ye2{bottom:952.170000px;}
.y185{bottom:952.710000px;}
.y63{bottom:955.410000px;}
.y38{bottom:957.390000px;}
.y166{bottom:958.110000px;}
.y184{bottom:973.410000px;}
.yc2{bottom:975.750000px;}
.y62{bottom:976.110000px;}
.y37{bottom:993.390000px;}
.y183{bottom:994.110000px;}
.y165{bottom:996.450000px;}
.y61{bottom:996.810000px;}
.y117{bottom:1012.290000px;}
.y36{bottom:1014.270000px;}
.yc1{bottom:1014.810000px;}
.y60{bottom:1017.510000px;}
.ydc{bottom:1032.990000px;}
.y35{bottom:1034.970000px;}
.ya3{bottom:1035.510000px;}
.y152{bottom:1038.210000px;}
.y5f{bottom:1056.210000px;}
.y34{bottom:1073.700000px;}
.y5e{bottom:1076.940000px;}
.y33{bottom:1097.460000px;}
.y5d{bottom:1097.640000px;}
.y30{bottom:1118.520000px;}
.y32{bottom:1159.920000px;}
.hf{height:0.044998px;}
.h10{height:20.160000px;}
.hc{height:41.535703px;}
.ha{height:47.321367px;}
.h15{height:50.273438px;}
.h13{height:50.800781px;}
.hd{height:58.621992px;}
.h18{height:59.385000px;}
.h1a{height:59.400000px;}
.h19{height:59.422500px;}
.h17{height:59.430000px;}
.he{height:59.439023px;}
.h2{height:65.884219px;}
.h1{height:67.824844px;}
.h6{height:70.628906px;}
.h11{height:70.664062px;}
.hb{height:72.562500px;}
.h12{height:80.085000px;}
.h14{height:80.091000px;}
.h16{height:80.130000px;}
.h4{height:82.635820px;}
.h7{height:93.936445px;}
.h8{height:96.508125px;}
.h3{height:221.430000px;}
.h5{height:221.445000px;}
.h9{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;}
.x6{left:51.660000px;}
.x5{left:62.280000px;}
.xb{left:101.196000px;}
.x10{left:106.416000px;}
.x1{left:108.036000px;}
.x9{left:118.116000px;}
.x1e{left:128.376000px;}
.x7{left:153.540000px;}
.x1f{left:182.370000px;}
.x8{left:183.630000px;}
.xe{left:210.630000px;}
.x14{left:236.925000px;}
.x4{left:242.490000px;}
.xc{left:248.767500px;}
.xd{left:254.910000px;}
.x19{left:259.245000px;}
.x13{left:281.190000px;}
.xa{left:312.375000px;}
.x3{left:324.975000px;}
.x11{left:350.310000px;}
.x15{left:359.175000px;}
.x1a{left:384.375000px;}
.xf{left:437.835000px;}
.x16{left:508.080000px;}
.x1b{left:509.520000px;}
.x1c{left:636.960000px;}
.x18{left:655.845000px;}
.x17{left:659.100000px;}
.x1d{left:704.310000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.028160pt;}
.lsa{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.133333pt;}
.ls5{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.227733pt;}
.ls9{letter-spacing:0.640000pt;}
.ls0{letter-spacing:2.560000pt;}
.ls8{letter-spacing:25.600000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws6{word-spacing:-13.335040pt;}
.ws2{word-spacing:-0.053120pt;}
.ws5{word-spacing:0.000000pt;}
.ws1{word-spacing:2.414080pt;}
._23{margin-left:-7.168000pt;}
._29{margin-left:-5.888000pt;}
._10{margin-left:-4.800000pt;}
._f{margin-left:-3.776000pt;}
._6{margin-left:-2.496000pt;}
._0{margin-left:-1.205547pt;}
._2{width:1.055573pt;}
._3{width:2.154667pt;}
._4{width:3.403947pt;}
._a{width:4.328107pt;}
._b{width:5.248000pt;}
._11{width:6.976000pt;}
._c{width:8.448000pt;}
._7{width:10.048000pt;}
._8{width:10.944000pt;}
._18{width:12.160000pt;}
._15{width:13.248000pt;}
._1c{width:14.432427pt;}
._1{width:16.956587pt;}
._12{width:17.934507pt;}
._13{width:19.456000pt;}
._14{width:20.448427pt;}
._17{width:21.503147pt;}
._1d{width:23.232000pt;}
._9{width:24.320000pt;}
._5{width:25.280000pt;}
._16{width:26.944000pt;}
._1b{width:28.117973pt;}
._d{width:29.504000pt;}
._e{width:30.656000pt;}
._19{width:32.661973pt;}
._1a{width:33.866453pt;}
._2c{width:37.952000pt;}
._2d{width:39.147093pt;}
._41{width:40.064000pt;}
._2a{width:40.960000pt;}
._2b{width:42.112000pt;}
._33{width:43.264000pt;}
._28{width:44.992000pt;}
._2e{width:45.909547pt;}
._2f{width:48.576000pt;}
._20{width:50.293547pt;}
._1f{width:59.520000pt;}
._44{width:60.576427pt;}
._27{width:63.744000pt;}
._26{width:74.048000pt;}
._40{width:78.656000pt;}
._3b{width:101.056000pt;}
._34{width:109.248000pt;}
._30{width:110.880000pt;}
._32{width:112.000000pt;}
._31{width:113.152000pt;}
._43{width:119.861760pt;}
._42{width:120.832000pt;}
._21{width:123.104000pt;}
._24{width:126.176000pt;}
._39{width:136.320000pt;}
._3a{width:137.632000pt;}
._36{width:152.192000pt;}
._38{width:162.100907pt;}
._37{width:163.317547pt;}
._35{width:173.504000pt;}
._3d{width:187.370453pt;}
._3c{width:188.949547pt;}
._3e{width:190.464000pt;}
._3f{width:191.744000pt;}
._45{width:200.832000pt;}
._1e{width:217.770667pt;}
._25{width:227.882667pt;}
._22{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;}
.y2f{bottom:-13.880000pt;}
.y0{bottom:0.000000pt;}
.yd7{bottom:3.666667pt;}
.y118{bottom:3.680000pt;}
.y11c{bottom:3.720000pt;}
.y120{bottom:3.986667pt;}
.ydb{bottom:3.992000pt;}
.ye1{bottom:4.000000pt;}
.y11e{bottom:4.040000pt;}
.y5{bottom:4.160000pt;}
.y3{bottom:20.160000pt;}
.yd6{bottom:22.066667pt;}
.yde{bottom:22.080000pt;}
.y11b{bottom:22.120000pt;}
.yda{bottom:22.386667pt;}
.ye0{bottom:22.400000pt;}
.y11d{bottom:22.440000pt;}
.y2{bottom:37.120000pt;}
.y31{bottom:37.920000pt;}
.yd5{bottom:40.466667pt;}
.ye3{bottom:40.480000pt;}
.ydd{bottom:40.506667pt;}
.yd9{bottom:40.786667pt;}
.ye4{bottom:40.800000pt;}
.ydf{bottom:40.826667pt;}
.y1{bottom:53.312000pt;}
.yb{bottom:68.493333pt;}
.y2d{bottom:99.552000pt;}
.y151{bottom:101.312000pt;}
.ya{bottom:101.773333pt;}
.y182{bottom:104.512000pt;}
.y5c{bottom:106.592000pt;}
.y164{bottom:109.312000pt;}
.yc0{bottom:109.632000pt;}
.y2c{bottom:117.632000pt;}
.y150{bottom:119.712000pt;}
.y181{bottom:122.912000pt;}
.y5b{bottom:124.992000pt;}
.yd8{bottom:127.080000pt;}
.y84{bottom:127.552000pt;}
.ya2{bottom:132.352000pt;}
.y194{bottom:134.746667pt;}
.y103{bottom:135.226667pt;}
.y116{bottom:136.026667pt;}
.y9{bottom:136.520000pt;}
.y2b{bottom:136.666667pt;}
.y14f{bottom:138.106667pt;}
.y2a{bottom:141.946667pt;}
.y5a{bottom:143.386667pt;}
.ybf{bottom:144.346667pt;}
.y83{bottom:145.946667pt;}
.ya1{bottom:150.746667pt;}
.y193{bottom:153.146667pt;}
.y102{bottom:153.626667pt;}
.y1ac{bottom:155.546667pt;}
.y132{bottom:155.706667pt;}
.y14e{bottom:156.506667pt;}
.y29{bottom:157.146667pt;}
.y180{bottom:157.306667pt;}
.y8{bottom:157.960000pt;}
.y59{bottom:161.786667pt;}
.ybe{bottom:162.746667pt;}
.y82{bottom:164.346667pt;}
.ya0{bottom:169.146667pt;}
.y115{bottom:170.746667pt;}
.y192{bottom:171.546667pt;}
.y101{bottom:172.026667pt;}
.y1ab{bottom:173.946667pt;}
.y131{bottom:174.106667pt;}
.y14d{bottom:174.906667pt;}
.y17f{bottom:175.546667pt;}
.y6{bottom:179.386667pt;}
.y58{bottom:180.186667pt;}
.ybd{bottom:181.146667pt;}
.y163{bottom:182.746667pt;}
.y9f{bottom:187.546667pt;}
.y114{bottom:189.146667pt;}
.y100{bottom:190.426667pt;}
.y1aa{bottom:192.346667pt;}
.y14c{bottom:193.306667pt;}
.y17e{bottom:193.946667pt;}
.y57{bottom:198.586667pt;}
.y81{bottom:198.746667pt;}
.yd4{bottom:198.920000pt;}
.y170{bottom:201.146667pt;}
.y9e{bottom:205.946667pt;}
.y113{bottom:207.546667pt;}
.y130{bottom:208.186667pt;}
.yff{bottom:208.826667pt;}
.y14b{bottom:211.706667pt;}
.y17d{bottom:212.346667pt;}
.ybc{bottom:215.546667pt;}
.y56{bottom:216.986667pt;}
.y80{bottom:217.146667pt;}
.y16f{bottom:219.546667pt;}
.y191{bottom:224.346667pt;}
.y112{bottom:225.946667pt;}
.y1a9{bottom:226.746667pt;}
.y28{bottom:227.706667pt;}
.y17c{bottom:230.746667pt;}
.ybb{bottom:233.946667pt;}
.y162{bottom:235.546667pt;}
.y9d{bottom:240.346667pt;}
.y190{bottom:242.746667pt;}
.y12f{bottom:242.906667pt;}
.yfe{bottom:243.226667pt;}
.y111{bottom:244.346667pt;}
.y1a8{bottom:245.146667pt;}
.y14a{bottom:246.106667pt;}
.y27{bottom:248.826667pt;}
.y17b{bottom:249.146667pt;}
.y55{bottom:251.386667pt;}
.y7f{bottom:251.546667pt;}
.y16e{bottom:253.626667pt;}
.y161{bottom:253.946667pt;}
.y9c{bottom:258.746667pt;}
.y12e{bottom:261.306667pt;}
.yfd{bottom:261.626667pt;}
.y1a7{bottom:263.546667pt;}
.y149{bottom:264.506667pt;}
.y17a{bottom:267.546667pt;}
.yba{bottom:268.346667pt;}
.y54{bottom:269.786667pt;}
.y26{bottom:269.946667pt;}
.y160{bottom:272.346667pt;}
.yd3{bottom:274.786667pt;}
.y9b{bottom:277.186667pt;}
.y110{bottom:278.786667pt;}
.y12d{bottom:279.746667pt;}
.yfc{bottom:280.066667pt;}
.y148{bottom:282.946667pt;}
.y179{bottom:285.986667pt;}
.yb9{bottom:286.786667pt;}
.y53{bottom:288.226667pt;}
.y7e{bottom:288.386667pt;}
.y15f{bottom:290.786667pt;}
.y25{bottom:291.106667pt;}
.yd2{bottom:293.186667pt;}
.y9a{bottom:295.586667pt;}
.y10f{bottom:297.186667pt;}
.y1a6{bottom:297.986667pt;}
.y12c{bottom:298.146667pt;}
.yfb{bottom:298.466667pt;}
.y147{bottom:301.346667pt;}
.yb8{bottom:305.186667pt;}
.y52{bottom:306.626667pt;}
.y16d{bottom:306.786667pt;}
.y15e{bottom:309.186667pt;}
.y24{bottom:312.386667pt;}
.y99{bottom:313.986667pt;}
.y10e{bottom:315.586667pt;}
.y1ae{bottom:316.226667pt;}
.y1a5{bottom:316.386667pt;}
.y12b{bottom:316.546667pt;}
.yfa{bottom:316.866667pt;}
.y146{bottom:319.746667pt;}
.y178{bottom:320.386667pt;}
.y7d{bottom:322.466667pt;}
.y51{bottom:325.026667pt;}
.y16c{bottom:325.186667pt;}
.yd1{bottom:327.266667pt;}
.y15d{bottom:327.586667pt;}
.y98{bottom:332.386667pt;}
.y23{bottom:333.506667pt;}
.y10d{bottom:333.986667pt;}
.y1a4{bottom:334.786667pt;}
.y145{bottom:338.146667pt;}
.y177{bottom:338.786667pt;}
.yb7{bottom:339.586667pt;}
.y7c{bottom:340.866667pt;}
.y50{bottom:343.426667pt;}
.y16b{bottom:343.586667pt;}
.y15c{bottom:345.986667pt;}
.y18f{bottom:348.386667pt;}
.y1ad{bottom:350.626667pt;}
.yf9{bottom:350.946667pt;}
.y10c{bottom:352.386667pt;}
.y22{bottom:354.626667pt;}
.y144{bottom:356.546667pt;}
.y176{bottom:357.186667pt;}
.yb6{bottom:357.986667pt;}
.y7b{bottom:359.266667pt;}
.y4f{bottom:361.826667pt;}
.yd0{bottom:361.986667pt;}
.y97{bottom:366.466667pt;}
.y18e{bottom:366.786667pt;}
.y1a3{bottom:369.186667pt;}
.yf8{bottom:369.346667pt;}
.y143{bottom:374.946667pt;}
.y175{bottom:375.586667pt;}
.y21{bottom:375.746667pt;}
.yb5{bottom:376.386667pt;}
.y15b{bottom:380.066667pt;}
.y4e{bottom:380.226667pt;}
.ycf{bottom:380.386667pt;}
.y96{bottom:384.866667pt;}
.y18d{bottom:385.186667pt;}
.y10b{bottom:386.786667pt;}
.y1a2{bottom:387.586667pt;}
.y12a{bottom:387.746667pt;}
.y142{bottom:393.346667pt;}
.y7a{bottom:393.986667pt;}
.y20{bottom:397.026667pt;}
.y4d{bottom:398.626667pt;}
.yce{bottom:398.786667pt;}
.yf7{bottom:403.746667pt;}
.y10a{bottom:405.186667pt;}
.y1a1{bottom:405.986667pt;}
.y129{bottom:406.146667pt;}
.yb4{bottom:410.466667pt;}
.y79{bottom:412.386667pt;}
.y15a{bottom:414.786667pt;}
.ycd{bottom:417.186667pt;}
.y1f{bottom:418.146667pt;}
.y95{bottom:419.266667pt;}
.y18c{bottom:419.586667pt;}
.y109{bottom:423.586667pt;}
.y141{bottom:427.426667pt;}
.y78{bottom:430.786667pt;}
.y4c{bottom:433.026667pt;}
.y159{bottom:433.186667pt;}
.ycc{bottom:435.586667pt;}
.y18b{bottom:437.986667pt;}
.yf6{bottom:438.466667pt;}
.y1e{bottom:439.266667pt;}
.y1a0{bottom:440.386667pt;}
.y128{bottom:440.546667pt;}
.y108{bottom:441.986667pt;}
.yb3{bottom:444.866667pt;}
.y77{bottom:449.186667pt;}
.y4b{bottom:451.426667pt;}
.y158{bottom:451.586667pt;}
.y94{bottom:453.986667pt;}
.y18a{bottom:456.386667pt;}
.yf5{bottom:456.866667pt;}
.y19f{bottom:458.786667pt;}
.y127{bottom:458.946667pt;}
.y1d{bottom:460.386667pt;}
.y140{bottom:462.146667pt;}
.y76{bottom:467.586667pt;}
.y4a{bottom:469.826667pt;}
.y157{bottom:469.986667pt;}
.y93{bottom:472.386667pt;}
.yf4{bottom:475.266667pt;}
.y19e{bottom:477.186667pt;}
.y126{bottom:477.346667pt;}
.yb2{bottom:479.586667pt;}
.y13f{bottom:480.546667pt;}
.y1c{bottom:481.666667pt;}
.y75{bottom:485.986667pt;}
.y49{bottom:488.226667pt;}
.y156{bottom:488.386667pt;}
.y92{bottom:490.786667pt;}
.yf3{bottom:493.666667pt;}
.y107{bottom:494.466667pt;}
.y125{bottom:495.746667pt;}
.yb1{bottom:497.986667pt;}
.y13e{bottom:498.973333pt;}
.y1b{bottom:502.813333pt;}
.y74{bottom:504.413333pt;}
.y48{bottom:506.653333pt;}
.y155{bottom:506.813333pt;}
.y91{bottom:509.213333pt;}
.y19d{bottom:511.613333pt;}
.yf2{bottom:512.093333pt;}
.y106{bottom:512.893333pt;}
.yb0{bottom:516.413333pt;}
.y13d{bottom:517.373333pt;}
.y174{bottom:520.413333pt;}
.y73{bottom:522.813333pt;}
.y1a{bottom:523.933333pt;}
.y47{bottom:525.053333pt;}
.ycb{bottom:525.213333pt;}
.y90{bottom:527.613333pt;}
.y124{bottom:529.853333pt;}
.y19c{bottom:530.013333pt;}
.y13c{bottom:535.773333pt;}
.y173{bottom:538.813333pt;}
.y46{bottom:543.453333pt;}
.yca{bottom:543.613333pt;}
.y19{bottom:545.053333pt;}
.y8f{bottom:546.013333pt;}
.yf1{bottom:546.493333pt;}
.y105{bottom:547.293333pt;}
.y123{bottom:548.253333pt;}
.y19b{bottom:548.413333pt;}
.yaf{bottom:550.813333pt;}
.y13b{bottom:554.173333pt;}
.y72{bottom:557.213333pt;}
.y45{bottom:561.853333pt;}
.yc9{bottom:562.013333pt;}
.yf0{bottom:564.893333pt;}
.y18{bottom:566.333333pt;}
.yae{bottom:569.213333pt;}
.y13a{bottom:572.573333pt;}
.y71{bottom:575.613333pt;}
.y104{bottom:578.013333pt;}
.y8e{bottom:580.093333pt;}
.y44{bottom:580.253333pt;}
.yc8{bottom:580.413333pt;}
.y122{bottom:582.653333pt;}
.y19a{bottom:582.813333pt;}
.yef{bottom:583.293333pt;}
.y17{bottom:587.453333pt;}
.y139{bottom:590.973333pt;}
.y70{bottom:594.013333pt;}
.y154{bottom:596.413333pt;}
.y43{bottom:598.653333pt;}
.yc7{bottom:598.813333pt;}
.y199{bottom:601.213333pt;}
.yee{bottom:601.693333pt;}
.yad{bottom:603.613333pt;}
.y16{bottom:608.573333pt;}
.y6f{bottom:612.413333pt;}
.y121{bottom:614.013333pt;}
.y8d{bottom:614.813333pt;}
.yc6{bottom:617.213333pt;}
.y198{bottom:619.613333pt;}
.yed{bottom:620.093333pt;}
.yac{bottom:622.013333pt;}
.y138{bottom:625.053333pt;}
.y15{bottom:629.693333pt;}
.y6e{bottom:630.813333pt;}
.y42{bottom:633.053333pt;}
.y8c{bottom:633.213333pt;}
.yc5{bottom:635.613333pt;}
.y6d{bottom:649.213333pt;}
.y14{bottom:650.973333pt;}
.y41{bottom:651.453333pt;}
.y8b{bottom:651.613333pt;}
.y197{bottom:654.013333pt;}
.yec{bottom:654.493333pt;}
.yab{bottom:656.413333pt;}
.y137{bottom:659.773333pt;}
.y11f{bottom:667.466667pt;}
.y6c{bottom:667.613333pt;}
.y40{bottom:669.853333pt;}
.y8a{bottom:670.013333pt;}
.y13{bottom:672.093333pt;}
.y196{bottom:672.413333pt;}
.yeb{bottom:672.893333pt;}
.yaa{bottom:674.813333pt;}
.y136{bottom:678.173333pt;}
.y6b{bottom:686.013333pt;}
.y2e{bottom:687.093333pt;}
.y3f{bottom:688.253333pt;}
.y89{bottom:688.413333pt;}
.y12{bottom:690.653333pt;}
.y195{bottom:690.813333pt;}
.yea{bottom:691.293333pt;}
.y135{bottom:696.573333pt;}
.y172{bottom:702.013333pt;}
.y6a{bottom:704.413333pt;}
.y3e{bottom:706.653333pt;}
.y88{bottom:706.813333pt;}
.y11{bottom:709.053333pt;}
.ya9{bottom:709.213333pt;}
.ye9{bottom:709.693333pt;}
.y134{bottom:714.973333pt;}
.y171{bottom:720.413333pt;}
.y11a{bottom:721.053333pt;}
.y189{bottom:722.853333pt;}
.y3d{bottom:725.093333pt;}
.y87{bottom:725.253333pt;}
.ya8{bottom:727.653333pt;}
.ye8{bottom:728.133333pt;}
.ye{bottom:738.053333pt;}
.y69{bottom:738.853333pt;}
.y16a{bottom:741.253333pt;}
.yf{bottom:743.333333pt;}
.y3c{bottom:743.493333pt;}
.y86{bottom:743.653333pt;}
.y10{bottom:744.133333pt;}
.y133{bottom:745.413333pt;}
.y68{bottom:757.253333pt;}
.y153{bottom:759.333333pt;}
.y169{bottom:759.653333pt;}
.y3b{bottom:761.893333pt;}
.ya7{bottom:762.053333pt;}
.ye7{bottom:762.213333pt;}
.yd{bottom:768.933333pt;}
.y119{bottom:774.533333pt;}
.y188{bottom:775.333333pt;}
.y67{bottom:775.653333pt;}
.y85{bottom:777.733333pt;}
.y168{bottom:778.053333pt;}
.y3a{bottom:780.293333pt;}
.ya6{bottom:780.453333pt;}
.ye6{bottom:780.613333pt;}
.y66{bottom:794.053333pt;}
.y167{bottom:796.453333pt;}
.yc{bottom:797.253333pt;}
.y39{bottom:798.693333pt;}
.y187{bottom:810.053333pt;}
.y65{bottom:812.453333pt;}
.yc4{bottom:814.533333pt;}
.ya5{bottom:814.853333pt;}
.ye5{bottom:815.013333pt;}
.y7{bottom:817.080000pt;}
.y4{bottom:817.093333pt;}
.y186{bottom:828.453333pt;}
.y64{bottom:830.853333pt;}
.yc3{bottom:832.933333pt;}
.ya4{bottom:833.253333pt;}
.ye2{bottom:846.373333pt;}
.y185{bottom:846.853333pt;}
.y63{bottom:849.253333pt;}
.y38{bottom:851.013333pt;}
.y166{bottom:851.653333pt;}
.y184{bottom:865.253333pt;}
.yc2{bottom:867.333333pt;}
.y62{bottom:867.653333pt;}
.y37{bottom:883.013333pt;}
.y183{bottom:883.653333pt;}
.y165{bottom:885.733333pt;}
.y61{bottom:886.053333pt;}
.y117{bottom:899.813333pt;}
.y36{bottom:901.573333pt;}
.yc1{bottom:902.053333pt;}
.y60{bottom:904.453333pt;}
.ydc{bottom:918.213333pt;}
.y35{bottom:919.973333pt;}
.ya3{bottom:920.453333pt;}
.y152{bottom:922.853333pt;}
.y5f{bottom:938.853333pt;}
.y34{bottom:954.400000pt;}
.y5e{bottom:957.280000pt;}
.y33{bottom:975.520000pt;}
.y5d{bottom:975.680000pt;}
.y30{bottom:994.240000pt;}
.y32{bottom:1031.040000pt;}
.hf{height:0.039999pt;}
.h10{height:17.920000pt;}
.hc{height:36.920625pt;}
.ha{height:42.063437pt;}
.h15{height:44.687500pt;}
.h13{height:45.156250pt;}
.hd{height:52.108438pt;}
.h18{height:52.786667pt;}
.h1a{height:52.800000pt;}
.h19{height:52.820000pt;}
.h17{height:52.826667pt;}
.he{height:52.834688pt;}
.h2{height:58.563750pt;}
.h1{height:60.288750pt;}
.h6{height:62.781250pt;}
.h11{height:62.812500pt;}
.hb{height:64.500000pt;}
.h12{height:71.186667pt;}
.h14{height:71.192000pt;}
.h16{height:71.226667pt;}
.h4{height:73.454062pt;}
.h7{height:83.499062pt;}
.h8{height:85.785000pt;}
.h3{height:196.826667pt;}
.h5{height:196.840000pt;}
.h9{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;}
.x6{left:45.920000pt;}
.x5{left:55.360000pt;}
.xb{left:89.952000pt;}
.x10{left:94.592000pt;}
.x1{left:96.032000pt;}
.x9{left:104.992000pt;}
.x1e{left:114.112000pt;}
.x7{left:136.480000pt;}
.x1f{left:162.106667pt;}
.x8{left:163.226667pt;}
.xe{left:187.226667pt;}
.x14{left:210.600000pt;}
.x4{left:215.546667pt;}
.xc{left:221.126667pt;}
.xd{left:226.586667pt;}
.x19{left:230.440000pt;}
.x13{left:249.946667pt;}
.xa{left:277.666667pt;}
.x3{left:288.866667pt;}
.x11{left:311.386667pt;}
.x15{left:319.266667pt;}
.x1a{left:341.666667pt;}
.xf{left:389.186667pt;}
.x16{left:451.626667pt;}
.x1b{left:452.906667pt;}
.x1c{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; }
  