
    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_f95b5945b395a4df764090f5.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7c17ee1afe33208a3598623b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a3876a69af9e0c41a96f3f72.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9d698d5f877a2b3b1348bf18.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_caafd7161d0c0e27b1eb7b07.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_a809539ef03a83efb2db4e57.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_91976c4942f5f3a3d6845603.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_de73c0aeb6c2c768d82681cb.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2301c0ed219ea0360abc887c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.401855;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.305400px;}
.ls1b{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.208200px;}
.ls9{letter-spacing:-0.206400px;}
.ls10{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.037440px;}
.ls14{letter-spacing:0.053280px;}
.ls16{letter-spacing:0.106560px;}
.ls4{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.206400px;}
.ls8{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.466800px;}
.lsa{letter-spacing:0.666000px;}
.lse{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.828000px;}
.ls2{letter-spacing:0.900000px;}
.ls0{letter-spacing:1.512000px;}
.ls1d{letter-spacing:4.500000px;}
.ls19{letter-spacing:5.220000px;}
.lsf{letter-spacing:5.940000px;}
.ls17{letter-spacing:7.380000px;}
.ls18{letter-spacing:9.540000px;}
.ls1f{letter-spacing:11.466720px;}
.lsb{letter-spacing:25.146720px;}
.ls1c{letter-spacing:41.706720px;}
.lsc{letter-spacing:137.610720px;}
.ls1a{letter-spacing:141.210720px;}
.ls13{letter-spacing:154.170720px;}
.ls3{letter-spacing:161.370720px;}
.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;}
}
.ws0{word-spacing:-16.254600px;}
.ws6{word-spacing:-15.406800px;}
.ws5{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws2{word-spacing:-14.733600px;}
.ws8{word-spacing:-14.680200px;}
.ws3{word-spacing:0.000000px;}
._5{margin-left:-2770.303440px;}
._9{margin-left:-1575.624240px;}
._6{margin-left:-1402.905600px;}
._8{margin-left:-993.954240px;}
._d{margin-left:-688.104720px;}
._18{margin-left:-661.860000px;}
._e{margin-left:-659.954160px;}
._19{margin-left:-645.400800px;}
._a{margin-left:-571.401360px;}
._15{margin-left:-538.679640px;}
._1c{margin-left:-490.134240px;}
._1b{margin-left:-475.320000px;}
._16{margin-left:-428.114160px;}
._f{margin-left:-215.280000px;}
._13{margin-left:-174.240000px;}
._14{margin-left:-159.687360px;}
._b{margin-left:-149.040000px;}
._c{margin-left:-144.000000px;}
._10{margin-left:-132.480000px;}
._12{margin-left:-130.625280px;}
._11{margin-left:-129.600000px;}
._17{margin-left:-66.240000px;}
._1a{margin-left:-49.680000px;}
._7{margin-left:-8.225280px;}
._4{margin-left:-5.071200px;}
._24{margin-left:-3.590640px;}
._1{margin-left:-2.445840px;}
._2{margin-left:-1.080720px;}
._0{width:1.365120px;}
._3{width:2.673360px;}
._1f{width:4.482000px;}
._25{width:5.990400px;}
._23{width:7.350480px;}
._20{width:8.665200px;}
._22{width:10.059120px;}
._21{width:11.712960px;}
._26{width:12.762000px;}
._3f{width:13.779360px;}
._2c{width:16.314480px;}
._3c{width:19.670400px;}
._1e{width:26.249760px;}
._1d{width:27.622560px;}
._28{width:34.407120px;}
._29{width:35.437680px;}
._3e{width:57.797280px;}
._2e{width:75.715920px;}
._2d{width:77.747760px;}
._31{width:100.286640px;}
._27{width:106.935120px;}
._33{width:119.699280px;}
._2a{width:130.002480px;}
._35{width:133.384320px;}
._38{width:142.706880px;}
._2b{width:162.188640px;}
._36{width:166.073040px;}
._2f{width:169.598880px;}
._37{width:176.112720px;}
._3a{width:183.283920px;}
._32{width:196.251840px;}
._30{width:201.749760px;}
._34{width:204.199920px;}
._3b{width:206.829360px;}
._39{width:208.562400px;}
._3d{width:245.255040px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:transparent;}
.fc4{color:rgb(37,41,42);}
.fc1{color:rgb(47,84,150);}
.fc5{color:rgb(51,51,51);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(5,5,5);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs1{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yf3{bottom:3.240000px;}
.y71{bottom:3.420000px;}
.yf5{bottom:3.600000px;}
.y118{bottom:3.645000px;}
.y6f{bottom:3.780000px;}
.y11a{bottom:3.960000px;}
.y108{bottom:4.140000px;}
.yf9{bottom:4.500000px;}
.y67{bottom:4.860000px;}
.y157{bottom:5.220000px;}
.y172{bottom:5.400000px;}
.y16f{bottom:7.380000px;}
.ye4{bottom:12.780000px;}
.yf2{bottom:20.520000px;}
.y7b{bottom:20.700000px;}
.y13e{bottom:20.880000px;}
.y117{bottom:20.925000px;}
.y6e{bottom:21.060000px;}
.y107{bottom:21.420000px;}
.yf7{bottom:21.600000px;}
.ye2{bottom:21.780000px;}
.y156{bottom:22.500000px;}
.yae{bottom:23.220000px;}
.y9d{bottom:23.400000px;}
.y171{bottom:23.760000px;}
.ycd{bottom:24.120000px;}
.y16e{bottom:24.480000px;}
.y7a{bottom:38.010000px;}
.y6d{bottom:38.160000px;}
.y161{bottom:39.780000px;}
.y155{bottom:39.810000px;}
.y9c{bottom:40.500000px;}
.ycc{bottom:41.220000px;}
.yb9{bottom:41.400000px;}
.y16d{bottom:41.760000px;}
.y79{bottom:55.290000px;}
.y6c{bottom:55.440000px;}
.y78{bottom:55.650000px;}
.y9b{bottom:57.780000px;}
.yb8{bottom:58.500000px;}
.ycb{bottom:58.530000px;}
.y6{bottom:60.660000px;}
.y6a{bottom:72.720000px;}
.yb7{bottom:75.780000px;}
.yca{bottom:75.810000px;}
.y68{bottom:85.860000px;}
.y35{bottom:86.400000px;}
.y69{bottom:89.640000px;}
.y6b{bottom:90.000000px;}
.yb3{bottom:102.600000px;}
.yed{bottom:104.400000px;}
.y34{bottom:106.380000px;}
.y12a{bottom:109.620000px;}
.y190{bottom:113.040000px;}
.y15a{bottom:115.200000px;}
.yb2{bottom:117.000000px;}
.yec{bottom:124.200000px;}
.y33{bottom:126.180000px;}
.y129{bottom:129.420000px;}
.y18f{bottom:132.840000px;}
.yad{bottom:135.000000px;}
.yeb{bottom:144.180000px;}
.y32{bottom:145.980000px;}
.y128{bottom:149.580000px;}
.y18e{bottom:152.820000px;}
.yb1{bottom:153.000000px;}
.y159{bottom:154.800000px;}
.yea{bottom:163.980000px;}
.y31{bottom:165.780000px;}
.y154{bottom:169.200000px;}
.y127{bottom:169.380000px;}
.yb0{bottom:171.000000px;}
.y18d{bottom:172.620000px;}
.ye9{bottom:184.140000px;}
.y30{bottom:185.580000px;}
.y158{bottom:187.200000px;}
.yaf{bottom:189.000000px;}
.y126{bottom:189.180000px;}
.y66{bottom:190.080000px;}
.y18c{bottom:192.420000px;}
.ye8{bottom:203.970000px;}
.y153{bottom:205.230000px;}
.y2f{bottom:205.410000px;}
.yac{bottom:207.030000px;}
.y125{bottom:209.190000px;}
.y18b{bottom:212.250000px;}
.y65{bottom:215.490000px;}
.y152{bottom:223.230000px;}
.ye7{bottom:223.770000px;}
.y2e{bottom:225.390000px;}
.y124{bottom:228.990000px;}
.yab{bottom:230.790000px;}
.y18a{bottom:232.050000px;}
.ye6{bottom:243.750000px;}
.y64{bottom:244.650000px;}
.y2d{bottom:245.190000px;}
.y123{bottom:248.790000px;}
.yaa{bottom:251.130000px;}
.y189{bottom:252.030000px;}
.y151{bottom:258.510000px;}
.ye5{bottom:263.550000px;}
.y63{bottom:264.450000px;}
.y2c{bottom:264.990000px;}
.y122{bottom:268.590000px;}
.ya9{bottom:270.930000px;}
.y188{bottom:271.830000px;}
.ye1{bottom:277.950000px;}
.y150{bottom:282.270000px;}
.y62{bottom:283.890000px;}
.y2b{bottom:284.790000px;}
.y121{bottom:288.390000px;}
.ya8{bottom:290.730000px;}
.y187{bottom:291.630000px;}
.ye3{bottom:295.950000px;}
.y14f{bottom:302.070000px;}
.y2a{bottom:304.590000px;}
.y120{bottom:308.370000px;}
.ya7{bottom:310.530000px;}
.y186{bottom:311.430000px;}
.y61{bottom:312.690000px;}
.ye0{bottom:313.950000px;}
.y14e{bottom:322.050000px;}
.y29{bottom:324.570000px;}
.y11f{bottom:328.170000px;}
.ya6{bottom:330.330000px;}
.y185{bottom:331.230000px;}
.ydf{bottom:331.950000px;}
.y60{bottom:333.030000px;}
.y14d{bottom:341.850000px;}
.y28{bottom:344.370000px;}
.y11e{bottom:347.970000px;}
.ya5{bottom:350.310000px;}
.y184{bottom:350.850000px;}
.y5f{bottom:352.830000px;}
.y14c{bottom:361.650000px;}
.y11d{bottom:362.370000px;}
.y27{bottom:364.170000px;}
.yde{bottom:367.230000px;}
.ya4{bottom:370.110000px;}
.y183{bottom:370.650000px;}
.y5e{bottom:372.630000px;}
.y76{bottom:375.690000px;}
.y11c{bottom:380.370000px;}
.y14b{bottom:381.810000px;}
.y26{bottom:383.970000px;}
.ya3{bottom:389.910000px;}
.y182{bottom:390.810000px;}
.ydd{bottom:390.990000px;}
.y5d{bottom:392.430000px;}
.y75{bottom:393.690000px;}
.y11b{bottom:399.090000px;}
.y14a{bottom:401.610000px;}
.y25{bottom:403.770000px;}
.ya2{bottom:409.710000px;}
.y181{bottom:410.610000px;}
.ydc{bottom:410.790000px;}
.y74{bottom:411.690000px;}
.y5c{bottom:412.230000px;}
.y119{bottom:417.090000px;}
.y149{bottom:421.590000px;}
.y24{bottom:423.750000px;}
.ya1{bottom:424.110000px;}
.y73{bottom:429.690000px;}
.y180{bottom:430.410000px;}
.ydb{bottom:430.590000px;}
.y5b{bottom:432.210000px;}
.y116{bottom:435.270000px;}
.y148{bottom:441.435000px;}
.y9a{bottom:442.155000px;}
.y23{bottom:443.595000px;}
.y72{bottom:447.735000px;}
.y17f{bottom:450.435000px;}
.yda{bottom:450.615000px;}
.y5a{bottom:452.055000px;}
.ya0{bottom:460.155000px;}
.y147{bottom:461.235000px;}
.y22{bottom:463.395000px;}
.y70{bottom:465.735000px;}
.y17e{bottom:470.235000px;}
.yd9{bottom:470.415000px;}
.y59{bottom:471.855000px;}
.y9f{bottom:478.155000px;}
.y146{bottom:481.035000px;}
.y21{bottom:483.195000px;}
.y17d{bottom:490.035000px;}
.yd8{bottom:490.215000px;}
.y58{bottom:491.655000px;}
.y9e{bottom:496.155000px;}
.y145{bottom:500.835000px;}
.y20{bottom:502.635000px;}
.y17c{bottom:509.475000px;}
.yd7{bottom:510.375000px;}
.y115{bottom:511.635000px;}
.y99{bottom:514.155000px;}
.y57{bottom:520.455000px;}
.y144{bottom:520.815000px;}
.y1f{bottom:522.615000px;}
.y17b{bottom:529.275000px;}
.yd6{bottom:530.175000px;}
.y114{bottom:531.795000px;}
.y98{bottom:538.095000px;}
.y56{bottom:540.435000px;}
.y143{bottom:540.615000px;}
.y1e{bottom:544.935000px;}
.y17a{bottom:549.615000px;}
.yd5{bottom:550.155000px;}
.y113{bottom:551.235000px;}
.y142{bottom:555.015000px;}
.y97{bottom:558.255000px;}
.y55{bottom:560.235000px;}
.y179{bottom:569.415000px;}
.yd4{bottom:569.955000px;}
.y112{bottom:571.035000px;}
.y141{bottom:573.015000px;}
.y1d{bottom:573.915000px;}
.y96{bottom:577.695000px;}
.y54{bottom:579.675000px;}
.y178{bottom:589.215000px;}
.yd3{bottom:589.755000px;}
.y111{bottom:591.195000px;}
.y1c{bottom:593.715000px;}
.y95{bottom:597.495000px;}
.y140{bottom:608.295000px;}
.y53{bottom:608.835000px;}
.y177{bottom:609.015000px;}
.yd2{bottom:609.555000px;}
.y110{bottom:610.995000px;}
.y1b{bottom:613.515000px;}
.y94{bottom:617.655000px;}
.yc9{bottom:623.955000px;}
.y13f{bottom:626.295000px;}
.y52{bottom:628.635000px;}
.y176{bottom:628.815000px;}
.y10f{bottom:630.975000px;}
.y1a{bottom:633.315000px;}
.y93{bottom:637.275000px;}
.yd1{bottom:641.955000px;}
.y13d{bottom:644.295000px;}
.y51{bottom:648.615000px;}
.y175{bottom:648.795000px;}
.y10e{bottom:650.775000px;}
.y19{bottom:653.115000px;}
.y92{bottom:657.435000px;}
.yd0{bottom:659.955000px;}
.y50{bottom:668.055000px;}
.y174{bottom:668.595000px;}
.y10d{bottom:670.575000px;}
.y18{bottom:673.125000px;}
.y91{bottom:677.265000px;}
.ycf{bottom:677.985000px;}
.y13c{bottom:679.605000px;}
.y4f{bottom:687.885000px;}
.y173{bottom:688.425000px;}
.y10c{bottom:690.405000px;}
.y17{bottom:692.925000px;}
.yce{bottom:695.985000px;}
.y90{bottom:697.065000px;}
.y16c{bottom:702.825000px;}
.y4e{bottom:707.685000px;}
.y191{bottom:708.045000px;}
.y10b{bottom:710.205000px;}
.y16{bottom:712.725000px;}
.yc8{bottom:713.985000px;}
.y8f{bottom:716.865000px;}
.y13b{bottom:720.645000px;}
.y170{bottom:722.805000px;}
.y4d{bottom:727.845000px;}
.y10a{bottom:730.185000px;}
.y15{bottom:732.525000px;}
.y8e{bottom:736.845000px;}
.yc7{bottom:737.745000px;}
.y13a{bottom:740.445000px;}
.y16b{bottom:740.805000px;}
.y4c{bottom:747.825000px;}
.y109{bottom:749.985000px;}
.y14{bottom:752.325000px;}
.y8d{bottom:756.645000px;}
.yc6{bottom:758.085000px;}
.y16a{bottom:758.805000px;}
.y139{bottom:760.605000px;}
.y105{bottom:764.385000px;}
.y4b{bottom:767.625000px;}
.y13{bottom:772.305000px;}
.y8c{bottom:776.445000px;}
.yc5{bottom:777.885000px;}
.y138{bottom:780.405000px;}
.y106{bottom:782.385000px;}
.y4a{bottom:787.425000px;}
.y12{bottom:792.105000px;}
.y169{bottom:794.085000px;}
.y8b{bottom:796.245000px;}
.yc4{bottom:797.685000px;}
.y137{bottom:800.205000px;}
.y104{bottom:800.385000px;}
.y49{bottom:807.225000px;}
.y11{bottom:811.905000px;}
.y8a{bottom:815.685000px;}
.yc3{bottom:817.485000px;}
.y168{bottom:817.845000px;}
.y103{bottom:818.385000px;}
.y136{bottom:820.185000px;}
.y48{bottom:827.025000px;}
.y10{bottom:831.705000px;}
.y89{bottom:836.025000px;}
.yc2{bottom:837.285000px;}
.y167{bottom:837.825000px;}
.y135{bottom:839.985000px;}
.y47{bottom:847.005000px;}
.yf{bottom:851.505000px;}
.y102{bottom:853.665000px;}
.y88{bottom:855.825000px;}
.yc1{bottom:857.265000px;}
.y166{bottom:857.625000px;}
.y134{bottom:859.785000px;}
.y46{bottom:866.805000px;}
.ye{bottom:871.485000px;}
.y87{bottom:875.625000px;}
.yc0{bottom:877.065000px;}
.y101{bottom:877.425000px;}
.y165{bottom:877.785000px;}
.y133{bottom:879.585000px;}
.y45{bottom:886.605000px;}
.yd{bottom:891.285000px;}
.y86{bottom:895.425000px;}
.ybf{bottom:896.865000px;}
.y100{bottom:897.225000px;}
.y164{bottom:897.585000px;}
.y132{bottom:899.385000px;}
.y44{bottom:906.405000px;}
.yc{bottom:913.290000px;}
.y85{bottom:915.270000px;}
.ybe{bottom:916.710000px;}
.yff{bottom:917.070000px;}
.y163{bottom:917.430000px;}
.y131{bottom:919.410000px;}
.y43{bottom:926.250000px;}
.yb6{bottom:931.110000px;}
.yb{bottom:933.270000px;}
.y84{bottom:935.250000px;}
.yfe{bottom:937.410000px;}
.y130{bottom:939.210000px;}
.y42{bottom:946.230000px;}
.ybd{bottom:949.110000px;}
.ya{bottom:953.430000px;}
.y83{bottom:955.050000px;}
.yfd{bottom:957.210000px;}
.y12f{bottom:959.010000px;}
.y41{bottom:966.030000px;}
.ybc{bottom:967.110000px;}
.y160{bottom:971.610000px;}
.y9{bottom:974.490000px;}
.y82{bottom:974.850000px;}
.yfc{bottom:977.010000px;}
.y12e{bottom:978.810000px;}
.ybb{bottom:985.110000px;}
.y40{bottom:985.830000px;}
.y162{bottom:989.610000px;}
.y81{bottom:994.650000px;}
.yfb{bottom:996.810000px;}
.y8{bottom:997.890000px;}
.y12d{bottom:998.610000px;}
.yba{bottom:1003.110000px;}
.y3f{bottom:1005.630000px;}
.y15f{bottom:1007.610000px;}
.y12c{bottom:1013.190000px;}
.y80{bottom:1014.090000px;}
.yfa{bottom:1016.610000px;}
.yb5{bottom:1021.110000px;}
.y3e{bottom:1025.430000px;}
.y15e{bottom:1025.610000px;}
.y7{bottom:1029.750000px;}
.yf6{bottom:1031.190000px;}
.y7f{bottom:1034.430000px;}
.yb4{bottom:1045.050000px;}
.y3d{bottom:1045.410000px;}
.yf8{bottom:1049.190000px;}
.y7e{bottom:1053.870000px;}
.y15d{bottom:1060.890000px;}
.y3c{bottom:1065.210000px;}
.yf4{bottom:1067.190000px;}
.y5{bottom:1068.630000px;}
.y7d{bottom:1073.670000px;}
.y15c{bottom:1084.650000px;}
.y3b{bottom:1085.010000px;}
.yf1{bottom:1085.190000px;}
.y7c{bottom:1093.470000px;}
.y4{bottom:1099.410000px;}
.y12b{bottom:1103.190000px;}
.y15b{bottom:1104.450000px;}
.y3a{bottom:1104.810000px;}
.y77{bottom:1108.230000px;}
.yf0{bottom:1120.290000px;}
.y39{bottom:1124.610000px;}
.y3{bottom:1130.370000px;}
.yef{bottom:1144.230000px;}
.y38{bottom:1144.590000px;}
.y2{bottom:1161.180000px;}
.yee{bottom:1164.060000px;}
.y37{bottom:1164.420000px;}
.y1{bottom:1192.140000px;}
.y36{bottom:1193.580000px;}
.h18{height:17.100000px;}
.hd{height:17.280000px;}
.he{height:17.316000px;}
.h1c{height:17.460000px;}
.h1d{height:18.000000px;}
.hb{height:18.756000px;}
.h22{height:19.260000px;}
.h17{height:34.380000px;}
.h1b{height:34.416000px;}
.h14{height:34.560000px;}
.h1a{height:35.100000px;}
.h16{height:35.280000px;}
.h1f{height:35.316000px;}
.h21{height:37.260000px;}
.h19{height:53.100000px;}
.h15{height:53.280000px;}
.h1e{height:53.316000px;}
.h20{height:55.260000px;}
.ha{height:58.621992px;}
.h7{height:58.651172px;}
.h5{height:60.226875px;}
.h9{height:61.423863px;}
.h8{height:62.211094px;}
.h3{height:65.010937px;}
.h6{height:66.757500px;}
.hf{height:69.156000px;}
.h10{height:71.280000px;}
.h11{height:71.316000px;}
.h2{height:72.562500px;}
.h12{height:89.280000px;}
.h13{height:89.316000px;}
.h4{height:96.508125px;}
.hc{height:103.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w29{width:73.620000px;}
.w1b{width:73.656000px;}
.w47{width:73.836000px;}
.w41{width:74.520000px;}
.w14{width:77.436000px;}
.we{width:79.020000px;}
.w24{width:81.576000px;}
.w1d{width:82.476000px;}
.w39{width:83.340000px;}
.w2b{width:84.240000px;}
.w11{width:84.276000px;}
.w3a{width:87.516000px;}
.w49{width:90.036000px;}
.w1c{width:93.060000px;}
.w23{width:93.420000px;}
.w43{width:93.636000px;}
.w48{width:94.140000px;}
.w2a{width:94.860000px;}
.w42{width:95.976000px;}
.w38{width:97.776000px;}
.w5{width:101.916000px;}
.w18{width:103.356000px;}
.w36{width:104.976000px;}
.w28{width:105.480000px;}
.w21{width:106.560000px;}
.w40{width:106.596000px;}
.w3e{width:106.776000px;}
.w3{width:109.656000px;}
.w27{width:109.800000px;}
.w20{width:110.016000px;}
.w37{width:112.140000px;}
.w26{width:112.176000px;}
.w46{width:116.316000px;}
.w34{width:117.216000px;}
.w30{width:119.376000px;}
.w2d{width:121.356000px;}
.w22{width:121.536000px;}
.w3b{width:122.400000px;}
.w1a{width:126.720000px;}
.w19{width:126.936000px;}
.w6{width:127.656000px;}
.w3c{width:127.836000px;}
.w3f{width:128.160000px;}
.w2e{width:131.076000px;}
.w44{width:137.196000px;}
.w33{width:137.376000px;}
.w1e{width:147.816000px;}
.w16{width:160.590000px;}
.w31{width:162.210000px;}
.wd{width:163.290000px;}
.wa{width:165.990000px;}
.w8{width:168.870000px;}
.w9{width:169.200000px;}
.wb{width:169.410000px;}
.w10{width:174.420000px;}
.w13{width:174.600000px;}
.w7{width:188.310000px;}
.wc{width:197.490000px;}
.wf{width:199.830000px;}
.w12{width:264.990000px;}
.w15{width:272.370000px;}
.w4{width:388.155000px;}
.w32{width:456.195000px;}
.w2f{width:499.785000px;}
.w2c{width:519.945000px;}
.w25{width:584.025000px;}
.w1f{width:590.550000px;}
.w3d{width:609.450000px;}
.w17{width:609.990000px;}
.w35{width:612.105000px;}
.w45{width:620.970000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:54.179987px;}
.x2c{left:59.580000px;}
.x17{left:61.020000px;}
.x3{left:64.619987px;}
.x3f{left:67.140000px;}
.x1e{left:77.040000px;}
.x25{left:80.280000px;}
.x33{left:81.540000px;}
.x12{left:96.336000px;}
.xa{left:108.756000px;}
.xe{left:125.676000px;}
.x4{left:197.310000px;}
.x34{left:199.470000px;}
.x40{left:205.050000px;}
.x3a{left:206.130000px;}
.x18{left:222.330000px;}
.x1f{left:225.570000px;}
.x26{left:228.810000px;}
.x7{left:236.910000px;}
.x13{left:271.695000px;}
.xb{left:278.355000px;}
.x35{left:305.175000px;}
.x6{left:307.695000px;}
.x3b{left:313.635000px;}
.x41{left:322.095000px;}
.xf{left:323.895000px;}
.x19{left:326.415000px;}
.x20{left:336.315000px;}
.x8{left:339.555000px;}
.x27{left:341.715000px;}
.x36{left:418.035000px;}
.x21{left:443.595000px;}
.x14{left:446.835000px;}
.xc{left:448.275000px;}
.x42{left:449.535000px;}
.x28{left:452.265000px;}
.x1a{left:454.065000px;}
.x9{left:467.925000px;}
.x10{left:487.905000px;}
.x37{left:516.705000px;}
.x16{left:524.805000px;}
.x15{left:531.825000px;}
.x3c{left:550.005000px;}
.x31{left:553.245000px;}
.x2f{left:555.765000px;}
.x29{left:558.465000px;}
.x22{left:565.845000px;}
.x11{left:567.645000px;}
.x2d{left:580.425000px;}
.x1b{left:581.685000px;}
.x38{left:600.945000px;}
.xd{left:614.985000px;}
.x3d{left:625.245000px;}
.x2a{left:633.030000px;}
.x23{left:640.230000px;}
.x1c{left:656.070000px;}
.x30{left:675.870000px;}
.x39{left:689.190000px;}
.x32{left:691.350000px;}
.x2e{left:702.510000px;}
.x3e{left:721.950000px;}
.x2b{left:728.610000px;}
.x24{left:734.550000px;}
.x43{left:735.990000px;}
.x1d{left:749.850000px;}
.x2{left:804.209987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.271467pt;}
.ls1b{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.185067pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.033280pt;}
.ls14{letter-spacing:0.047360pt;}
.ls16{letter-spacing:0.094720pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.183467pt;}
.ls8{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.414933pt;}
.lsa{letter-spacing:0.592000pt;}
.lse{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.736000pt;}
.ls2{letter-spacing:0.800000pt;}
.ls0{letter-spacing:1.344000pt;}
.ls1d{letter-spacing:4.000000pt;}
.ls19{letter-spacing:4.640000pt;}
.lsf{letter-spacing:5.280000pt;}
.ls17{letter-spacing:6.560000pt;}
.ls18{letter-spacing:8.480000pt;}
.ls1f{letter-spacing:10.192640pt;}
.lsb{letter-spacing:22.352640pt;}
.ls1c{letter-spacing:37.072640pt;}
.lsc{letter-spacing:122.320640pt;}
.ls1a{letter-spacing:125.520640pt;}
.ls13{letter-spacing:137.040640pt;}
.ls3{letter-spacing:143.440640pt;}
.ws0{word-spacing:-14.448533pt;}
.ws6{word-spacing:-13.694933pt;}
.ws5{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws2{word-spacing:-13.096533pt;}
.ws8{word-spacing:-13.049067pt;}
.ws3{word-spacing:0.000000pt;}
._5{margin-left:-2462.491947pt;}
._9{margin-left:-1400.554880pt;}
._6{margin-left:-1247.027200pt;}
._8{margin-left:-883.514880pt;}
._d{margin-left:-611.648640pt;}
._18{margin-left:-588.320000pt;}
._e{margin-left:-586.625920pt;}
._19{margin-left:-573.689600pt;}
._a{margin-left:-507.912320pt;}
._15{margin-left:-478.826347pt;}
._1c{margin-left:-435.674880pt;}
._1b{margin-left:-422.506667pt;}
._16{margin-left:-380.545920pt;}
._f{margin-left:-191.360000pt;}
._13{margin-left:-154.880000pt;}
._14{margin-left:-141.944320pt;}
._b{margin-left:-132.480000pt;}
._c{margin-left:-128.000000pt;}
._10{margin-left:-117.760000pt;}
._12{margin-left:-116.111360pt;}
._11{margin-left:-115.200000pt;}
._17{margin-left:-58.880000pt;}
._1a{margin-left:-44.160000pt;}
._7{margin-left:-7.311360pt;}
._4{margin-left:-4.507733pt;}
._24{margin-left:-3.191680pt;}
._1{margin-left:-2.174080pt;}
._2{margin-left:-0.960640pt;}
._0{width:1.213440pt;}
._3{width:2.376320pt;}
._1f{width:3.984000pt;}
._25{width:5.324800pt;}
._23{width:6.533760pt;}
._20{width:7.702400pt;}
._22{width:8.941440pt;}
._21{width:10.411520pt;}
._26{width:11.344000pt;}
._3f{width:12.248320pt;}
._2c{width:14.501760pt;}
._3c{width:17.484800pt;}
._1e{width:23.333120pt;}
._1d{width:24.553387pt;}
._28{width:30.584107pt;}
._29{width:31.500160pt;}
._3e{width:51.375360pt;}
._2e{width:67.303040pt;}
._2d{width:69.109120pt;}
._31{width:89.143680pt;}
._27{width:95.053440pt;}
._33{width:106.399360pt;}
._2a{width:115.557760pt;}
._35{width:118.563840pt;}
._38{width:126.850560pt;}
._2b{width:144.167680pt;}
._36{width:147.620480pt;}
._2f{width:150.754560pt;}
._37{width:156.544640pt;}
._3a{width:162.919040pt;}
._32{width:174.446080pt;}
._30{width:179.333120pt;}
._34{width:181.511040pt;}
._3b{width:183.848320pt;}
._39{width:185.388800pt;}
._3d{width:218.004480pt;}
.fs5{font-size:42.880000pt;}
.fs1{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yf3{bottom:2.880000pt;}
.y71{bottom:3.040000pt;}
.yf5{bottom:3.200000pt;}
.y118{bottom:3.240000pt;}
.y6f{bottom:3.360000pt;}
.y11a{bottom:3.520000pt;}
.y108{bottom:3.680000pt;}
.yf9{bottom:4.000000pt;}
.y67{bottom:4.320000pt;}
.y157{bottom:4.640000pt;}
.y172{bottom:4.800000pt;}
.y16f{bottom:6.560000pt;}
.ye4{bottom:11.360000pt;}
.yf2{bottom:18.240000pt;}
.y7b{bottom:18.400000pt;}
.y13e{bottom:18.560000pt;}
.y117{bottom:18.600000pt;}
.y6e{bottom:18.720000pt;}
.y107{bottom:19.040000pt;}
.yf7{bottom:19.200000pt;}
.ye2{bottom:19.360000pt;}
.y156{bottom:20.000000pt;}
.yae{bottom:20.640000pt;}
.y9d{bottom:20.800000pt;}
.y171{bottom:21.120000pt;}
.ycd{bottom:21.440000pt;}
.y16e{bottom:21.760000pt;}
.y7a{bottom:33.786667pt;}
.y6d{bottom:33.920000pt;}
.y161{bottom:35.360000pt;}
.y155{bottom:35.386667pt;}
.y9c{bottom:36.000000pt;}
.ycc{bottom:36.640000pt;}
.yb9{bottom:36.800000pt;}
.y16d{bottom:37.120000pt;}
.y79{bottom:49.146667pt;}
.y6c{bottom:49.280000pt;}
.y78{bottom:49.466667pt;}
.y9b{bottom:51.360000pt;}
.yb8{bottom:52.000000pt;}
.ycb{bottom:52.026667pt;}
.y6{bottom:53.920000pt;}
.y6a{bottom:64.640000pt;}
.yb7{bottom:67.360000pt;}
.yca{bottom:67.386667pt;}
.y68{bottom:76.320000pt;}
.y35{bottom:76.800000pt;}
.y69{bottom:79.680000pt;}
.y6b{bottom:80.000000pt;}
.yb3{bottom:91.200000pt;}
.yed{bottom:92.800000pt;}
.y34{bottom:94.560000pt;}
.y12a{bottom:97.440000pt;}
.y190{bottom:100.480000pt;}
.y15a{bottom:102.400000pt;}
.yb2{bottom:104.000000pt;}
.yec{bottom:110.400000pt;}
.y33{bottom:112.160000pt;}
.y129{bottom:115.040000pt;}
.y18f{bottom:118.080000pt;}
.yad{bottom:120.000000pt;}
.yeb{bottom:128.160000pt;}
.y32{bottom:129.760000pt;}
.y128{bottom:132.960000pt;}
.y18e{bottom:135.840000pt;}
.yb1{bottom:136.000000pt;}
.y159{bottom:137.600000pt;}
.yea{bottom:145.760000pt;}
.y31{bottom:147.360000pt;}
.y154{bottom:150.400000pt;}
.y127{bottom:150.560000pt;}
.yb0{bottom:152.000000pt;}
.y18d{bottom:153.440000pt;}
.ye9{bottom:163.680000pt;}
.y30{bottom:164.960000pt;}
.y158{bottom:166.400000pt;}
.yaf{bottom:168.000000pt;}
.y126{bottom:168.160000pt;}
.y66{bottom:168.960000pt;}
.y18c{bottom:171.040000pt;}
.ye8{bottom:181.306667pt;}
.y153{bottom:182.426667pt;}
.y2f{bottom:182.586667pt;}
.yac{bottom:184.026667pt;}
.y125{bottom:185.946667pt;}
.y18b{bottom:188.666667pt;}
.y65{bottom:191.546667pt;}
.y152{bottom:198.426667pt;}
.ye7{bottom:198.906667pt;}
.y2e{bottom:200.346667pt;}
.y124{bottom:203.546667pt;}
.yab{bottom:205.146667pt;}
.y18a{bottom:206.266667pt;}
.ye6{bottom:216.666667pt;}
.y64{bottom:217.466667pt;}
.y2d{bottom:217.946667pt;}
.y123{bottom:221.146667pt;}
.yaa{bottom:223.226667pt;}
.y189{bottom:224.026667pt;}
.y151{bottom:229.786667pt;}
.ye5{bottom:234.266667pt;}
.y63{bottom:235.066667pt;}
.y2c{bottom:235.546667pt;}
.y122{bottom:238.746667pt;}
.ya9{bottom:240.826667pt;}
.y188{bottom:241.626667pt;}
.ye1{bottom:247.066667pt;}
.y150{bottom:250.906667pt;}
.y62{bottom:252.346667pt;}
.y2b{bottom:253.146667pt;}
.y121{bottom:256.346667pt;}
.ya8{bottom:258.426667pt;}
.y187{bottom:259.226667pt;}
.ye3{bottom:263.066667pt;}
.y14f{bottom:268.506667pt;}
.y2a{bottom:270.746667pt;}
.y120{bottom:274.106667pt;}
.ya7{bottom:276.026667pt;}
.y186{bottom:276.826667pt;}
.y61{bottom:277.946667pt;}
.ye0{bottom:279.066667pt;}
.y14e{bottom:286.266667pt;}
.y29{bottom:288.506667pt;}
.y11f{bottom:291.706667pt;}
.ya6{bottom:293.626667pt;}
.y185{bottom:294.426667pt;}
.ydf{bottom:295.066667pt;}
.y60{bottom:296.026667pt;}
.y14d{bottom:303.866667pt;}
.y28{bottom:306.106667pt;}
.y11e{bottom:309.306667pt;}
.ya5{bottom:311.386667pt;}
.y184{bottom:311.866667pt;}
.y5f{bottom:313.626667pt;}
.y14c{bottom:321.466667pt;}
.y11d{bottom:322.106667pt;}
.y27{bottom:323.706667pt;}
.yde{bottom:326.426667pt;}
.ya4{bottom:328.986667pt;}
.y183{bottom:329.466667pt;}
.y5e{bottom:331.226667pt;}
.y76{bottom:333.946667pt;}
.y11c{bottom:338.106667pt;}
.y14b{bottom:339.386667pt;}
.y26{bottom:341.306667pt;}
.ya3{bottom:346.586667pt;}
.y182{bottom:347.386667pt;}
.ydd{bottom:347.546667pt;}
.y5d{bottom:348.826667pt;}
.y75{bottom:349.946667pt;}
.y11b{bottom:354.746667pt;}
.y14a{bottom:356.986667pt;}
.y25{bottom:358.906667pt;}
.ya2{bottom:364.186667pt;}
.y181{bottom:364.986667pt;}
.ydc{bottom:365.146667pt;}
.y74{bottom:365.946667pt;}
.y5c{bottom:366.426667pt;}
.y119{bottom:370.746667pt;}
.y149{bottom:374.746667pt;}
.y24{bottom:376.666667pt;}
.ya1{bottom:376.986667pt;}
.y73{bottom:381.946667pt;}
.y180{bottom:382.586667pt;}
.ydb{bottom:382.746667pt;}
.y5b{bottom:384.186667pt;}
.y116{bottom:386.906667pt;}
.y148{bottom:392.386667pt;}
.y9a{bottom:393.026667pt;}
.y23{bottom:394.306667pt;}
.y72{bottom:397.986667pt;}
.y17f{bottom:400.386667pt;}
.yda{bottom:400.546667pt;}
.y5a{bottom:401.826667pt;}
.ya0{bottom:409.026667pt;}
.y147{bottom:409.986667pt;}
.y22{bottom:411.906667pt;}
.y70{bottom:413.986667pt;}
.y17e{bottom:417.986667pt;}
.yd9{bottom:418.146667pt;}
.y59{bottom:419.426667pt;}
.y9f{bottom:425.026667pt;}
.y146{bottom:427.586667pt;}
.y21{bottom:429.506667pt;}
.y17d{bottom:435.586667pt;}
.yd8{bottom:435.746667pt;}
.y58{bottom:437.026667pt;}
.y9e{bottom:441.026667pt;}
.y145{bottom:445.186667pt;}
.y20{bottom:446.786667pt;}
.y17c{bottom:452.866667pt;}
.yd7{bottom:453.666667pt;}
.y115{bottom:454.786667pt;}
.y99{bottom:457.026667pt;}
.y57{bottom:462.626667pt;}
.y144{bottom:462.946667pt;}
.y1f{bottom:464.546667pt;}
.y17b{bottom:470.466667pt;}
.yd6{bottom:471.266667pt;}
.y114{bottom:472.706667pt;}
.y98{bottom:478.306667pt;}
.y56{bottom:480.386667pt;}
.y143{bottom:480.546667pt;}
.y1e{bottom:484.386667pt;}
.y17a{bottom:488.546667pt;}
.yd5{bottom:489.026667pt;}
.y113{bottom:489.986667pt;}
.y142{bottom:493.346667pt;}
.y97{bottom:496.226667pt;}
.y55{bottom:497.986667pt;}
.y179{bottom:506.146667pt;}
.yd4{bottom:506.626667pt;}
.y112{bottom:507.586667pt;}
.y141{bottom:509.346667pt;}
.y1d{bottom:510.146667pt;}
.y96{bottom:513.506667pt;}
.y54{bottom:515.266667pt;}
.y178{bottom:523.746667pt;}
.yd3{bottom:524.226667pt;}
.y111{bottom:525.506667pt;}
.y1c{bottom:527.746667pt;}
.y95{bottom:531.106667pt;}
.y140{bottom:540.706667pt;}
.y53{bottom:541.186667pt;}
.y177{bottom:541.346667pt;}
.yd2{bottom:541.826667pt;}
.y110{bottom:543.106667pt;}
.y1b{bottom:545.346667pt;}
.y94{bottom:549.026667pt;}
.yc9{bottom:554.626667pt;}
.y13f{bottom:556.706667pt;}
.y52{bottom:558.786667pt;}
.y176{bottom:558.946667pt;}
.y10f{bottom:560.866667pt;}
.y1a{bottom:562.946667pt;}
.y93{bottom:566.466667pt;}
.yd1{bottom:570.626667pt;}
.y13d{bottom:572.706667pt;}
.y51{bottom:576.546667pt;}
.y175{bottom:576.706667pt;}
.y10e{bottom:578.466667pt;}
.y19{bottom:580.546667pt;}
.y92{bottom:584.386667pt;}
.yd0{bottom:586.626667pt;}
.y50{bottom:593.826667pt;}
.y174{bottom:594.306667pt;}
.y10d{bottom:596.066667pt;}
.y18{bottom:598.333333pt;}
.y91{bottom:602.013333pt;}
.ycf{bottom:602.653333pt;}
.y13c{bottom:604.093333pt;}
.y4f{bottom:611.453333pt;}
.y173{bottom:611.933333pt;}
.y10c{bottom:613.693333pt;}
.y17{bottom:615.933333pt;}
.yce{bottom:618.653333pt;}
.y90{bottom:619.613333pt;}
.y16c{bottom:624.733333pt;}
.y4e{bottom:629.053333pt;}
.y191{bottom:629.373333pt;}
.y10b{bottom:631.293333pt;}
.y16{bottom:633.533333pt;}
.yc8{bottom:634.653333pt;}
.y8f{bottom:637.213333pt;}
.y13b{bottom:640.573333pt;}
.y170{bottom:642.493333pt;}
.y4d{bottom:646.973333pt;}
.y10a{bottom:649.053333pt;}
.y15{bottom:651.133333pt;}
.y8e{bottom:654.973333pt;}
.yc7{bottom:655.773333pt;}
.y13a{bottom:658.173333pt;}
.y16b{bottom:658.493333pt;}
.y4c{bottom:664.733333pt;}
.y109{bottom:666.653333pt;}
.y14{bottom:668.733333pt;}
.y8d{bottom:672.573333pt;}
.yc6{bottom:673.853333pt;}
.y16a{bottom:674.493333pt;}
.y139{bottom:676.093333pt;}
.y105{bottom:679.453333pt;}
.y4b{bottom:682.333333pt;}
.y13{bottom:686.493333pt;}
.y8c{bottom:690.173333pt;}
.yc5{bottom:691.453333pt;}
.y138{bottom:693.693333pt;}
.y106{bottom:695.453333pt;}
.y4a{bottom:699.933333pt;}
.y12{bottom:704.093333pt;}
.y169{bottom:705.853333pt;}
.y8b{bottom:707.773333pt;}
.yc4{bottom:709.053333pt;}
.y137{bottom:711.293333pt;}
.y104{bottom:711.453333pt;}
.y49{bottom:717.533333pt;}
.y11{bottom:721.693333pt;}
.y8a{bottom:725.053333pt;}
.yc3{bottom:726.653333pt;}
.y168{bottom:726.973333pt;}
.y103{bottom:727.453333pt;}
.y136{bottom:729.053333pt;}
.y48{bottom:735.133333pt;}
.y10{bottom:739.293333pt;}
.y89{bottom:743.133333pt;}
.yc2{bottom:744.253333pt;}
.y167{bottom:744.733333pt;}
.y135{bottom:746.653333pt;}
.y47{bottom:752.893333pt;}
.yf{bottom:756.893333pt;}
.y102{bottom:758.813333pt;}
.y88{bottom:760.733333pt;}
.yc1{bottom:762.013333pt;}
.y166{bottom:762.333333pt;}
.y134{bottom:764.253333pt;}
.y46{bottom:770.493333pt;}
.ye{bottom:774.653333pt;}
.y87{bottom:778.333333pt;}
.yc0{bottom:779.613333pt;}
.y101{bottom:779.933333pt;}
.y165{bottom:780.253333pt;}
.y133{bottom:781.853333pt;}
.y45{bottom:788.093333pt;}
.yd{bottom:792.253333pt;}
.y86{bottom:795.933333pt;}
.ybf{bottom:797.213333pt;}
.y100{bottom:797.533333pt;}
.y164{bottom:797.853333pt;}
.y132{bottom:799.453333pt;}
.y44{bottom:805.693333pt;}
.yc{bottom:811.813333pt;}
.y85{bottom:813.573333pt;}
.ybe{bottom:814.853333pt;}
.yff{bottom:815.173333pt;}
.y163{bottom:815.493333pt;}
.y131{bottom:817.253333pt;}
.y43{bottom:823.333333pt;}
.yb6{bottom:827.653333pt;}
.yb{bottom:829.573333pt;}
.y84{bottom:831.333333pt;}
.yfe{bottom:833.253333pt;}
.y130{bottom:834.853333pt;}
.y42{bottom:841.093333pt;}
.ybd{bottom:843.653333pt;}
.ya{bottom:847.493333pt;}
.y83{bottom:848.933333pt;}
.yfd{bottom:850.853333pt;}
.y12f{bottom:852.453333pt;}
.y41{bottom:858.693333pt;}
.ybc{bottom:859.653333pt;}
.y160{bottom:863.653333pt;}
.y9{bottom:866.213333pt;}
.y82{bottom:866.533333pt;}
.yfc{bottom:868.453333pt;}
.y12e{bottom:870.053333pt;}
.ybb{bottom:875.653333pt;}
.y40{bottom:876.293333pt;}
.y162{bottom:879.653333pt;}
.y81{bottom:884.133333pt;}
.yfb{bottom:886.053333pt;}
.y8{bottom:887.013333pt;}
.y12d{bottom:887.653333pt;}
.yba{bottom:891.653333pt;}
.y3f{bottom:893.893333pt;}
.y15f{bottom:895.653333pt;}
.y12c{bottom:900.613333pt;}
.y80{bottom:901.413333pt;}
.yfa{bottom:903.653333pt;}
.yb5{bottom:907.653333pt;}
.y3e{bottom:911.493333pt;}
.y15e{bottom:911.653333pt;}
.y7{bottom:915.333333pt;}
.yf6{bottom:916.613333pt;}
.y7f{bottom:919.493333pt;}
.yb4{bottom:928.933333pt;}
.y3d{bottom:929.253333pt;}
.yf8{bottom:932.613333pt;}
.y7e{bottom:936.773333pt;}
.y15d{bottom:943.013333pt;}
.y3c{bottom:946.853333pt;}
.yf4{bottom:948.613333pt;}
.y5{bottom:949.893333pt;}
.y7d{bottom:954.373333pt;}
.y15c{bottom:964.133333pt;}
.y3b{bottom:964.453333pt;}
.yf1{bottom:964.613333pt;}
.y7c{bottom:971.973333pt;}
.y4{bottom:977.253333pt;}
.y12b{bottom:980.613333pt;}
.y15b{bottom:981.733333pt;}
.y3a{bottom:982.053333pt;}
.y77{bottom:985.093333pt;}
.yf0{bottom:995.813333pt;}
.y39{bottom:999.653333pt;}
.y3{bottom:1004.773333pt;}
.yef{bottom:1017.093333pt;}
.y38{bottom:1017.413333pt;}
.y2{bottom:1032.160000pt;}
.yee{bottom:1034.720000pt;}
.y37{bottom:1035.040000pt;}
.y1{bottom:1059.680000pt;}
.y36{bottom:1060.960000pt;}
.h18{height:15.200000pt;}
.hd{height:15.360000pt;}
.he{height:15.392000pt;}
.h1c{height:15.520000pt;}
.h1d{height:16.000000pt;}
.hb{height:16.672000pt;}
.h22{height:17.120000pt;}
.h17{height:30.560000pt;}
.h1b{height:30.592000pt;}
.h14{height:30.720000pt;}
.h1a{height:31.200000pt;}
.h16{height:31.360000pt;}
.h1f{height:31.392000pt;}
.h21{height:33.120000pt;}
.h19{height:47.200000pt;}
.h15{height:47.360000pt;}
.h1e{height:47.392000pt;}
.h20{height:49.120000pt;}
.ha{height:52.108438pt;}
.h7{height:52.134375pt;}
.h5{height:53.535000pt;}
.h9{height:54.598989pt;}
.h8{height:55.298750pt;}
.h3{height:57.787500pt;}
.h6{height:59.340000pt;}
.hf{height:61.472000pt;}
.h10{height:63.360000pt;}
.h11{height:63.392000pt;}
.h2{height:64.500000pt;}
.h12{height:79.360000pt;}
.h13{height:79.392000pt;}
.h4{height:85.785000pt;}
.hc{height:92.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w29{width:65.440000pt;}
.w1b{width:65.472000pt;}
.w47{width:65.632000pt;}
.w41{width:66.240000pt;}
.w14{width:68.832000pt;}
.we{width:70.240000pt;}
.w24{width:72.512000pt;}
.w1d{width:73.312000pt;}
.w39{width:74.080000pt;}
.w2b{width:74.880000pt;}
.w11{width:74.912000pt;}
.w3a{width:77.792000pt;}
.w49{width:80.032000pt;}
.w1c{width:82.720000pt;}
.w23{width:83.040000pt;}
.w43{width:83.232000pt;}
.w48{width:83.680000pt;}
.w2a{width:84.320000pt;}
.w42{width:85.312000pt;}
.w38{width:86.912000pt;}
.w5{width:90.592000pt;}
.w18{width:91.872000pt;}
.w36{width:93.312000pt;}
.w28{width:93.760000pt;}
.w21{width:94.720000pt;}
.w40{width:94.752000pt;}
.w3e{width:94.912000pt;}
.w3{width:97.472000pt;}
.w27{width:97.600000pt;}
.w20{width:97.792000pt;}
.w37{width:99.680000pt;}
.w26{width:99.712000pt;}
.w46{width:103.392000pt;}
.w34{width:104.192000pt;}
.w30{width:106.112000pt;}
.w2d{width:107.872000pt;}
.w22{width:108.032000pt;}
.w3b{width:108.800000pt;}
.w1a{width:112.640000pt;}
.w19{width:112.832000pt;}
.w6{width:113.472000pt;}
.w3c{width:113.632000pt;}
.w3f{width:113.920000pt;}
.w2e{width:116.512000pt;}
.w44{width:121.952000pt;}
.w33{width:122.112000pt;}
.w1e{width:131.392000pt;}
.w16{width:142.746667pt;}
.w31{width:144.186667pt;}
.wd{width:145.146667pt;}
.wa{width:147.546667pt;}
.w8{width:150.106667pt;}
.w9{width:150.400000pt;}
.wb{width:150.586667pt;}
.w10{width:155.040000pt;}
.w13{width:155.200000pt;}
.w7{width:167.386667pt;}
.wc{width:175.546667pt;}
.wf{width:177.626667pt;}
.w12{width:235.546667pt;}
.w15{width:242.106667pt;}
.w4{width:345.026667pt;}
.w32{width:405.506667pt;}
.w2f{width:444.253333pt;}
.w2c{width:462.173333pt;}
.w25{width:519.133333pt;}
.w1f{width:524.933333pt;}
.w3d{width:541.733333pt;}
.w17{width:542.213333pt;}
.w35{width:544.093333pt;}
.w45{width:551.973333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:48.159988pt;}
.x2c{left:52.960000pt;}
.x17{left:54.240000pt;}
.x3{left:57.439988pt;}
.x3f{left:59.680000pt;}
.x1e{left:68.480000pt;}
.x25{left:71.360000pt;}
.x33{left:72.480000pt;}
.x12{left:85.632000pt;}
.xa{left:96.672000pt;}
.xe{left:111.712000pt;}
.x4{left:175.386667pt;}
.x34{left:177.306667pt;}
.x40{left:182.266667pt;}
.x3a{left:183.226667pt;}
.x18{left:197.626667pt;}
.x1f{left:200.506667pt;}
.x26{left:203.386667pt;}
.x7{left:210.586667pt;}
.x13{left:241.506667pt;}
.xb{left:247.426667pt;}
.x35{left:271.266667pt;}
.x6{left:273.506667pt;}
.x3b{left:278.786667pt;}
.x41{left:286.306667pt;}
.xf{left:287.906667pt;}
.x19{left:290.146667pt;}
.x20{left:298.946667pt;}
.x8{left:301.826667pt;}
.x27{left:303.746667pt;}
.x36{left:371.586667pt;}
.x21{left:394.306667pt;}
.x14{left:397.186667pt;}
.xc{left:398.466667pt;}
.x42{left:399.586667pt;}
.x28{left:402.013333pt;}
.x1a{left:403.613333pt;}
.x9{left:415.933333pt;}
.x10{left:433.693333pt;}
.x37{left:459.293333pt;}
.x16{left:466.493333pt;}
.x15{left:472.733333pt;}
.x3c{left:488.893333pt;}
.x31{left:491.773333pt;}
.x2f{left:494.013333pt;}
.x29{left:496.413333pt;}
.x22{left:502.973333pt;}
.x11{left:504.573333pt;}
.x2d{left:515.933333pt;}
.x1b{left:517.053333pt;}
.x38{left:534.173333pt;}
.xd{left:546.653333pt;}
.x3d{left:555.773333pt;}
.x2a{left:562.693333pt;}
.x23{left:569.093333pt;}
.x1c{left:583.173333pt;}
.x30{left:600.773333pt;}
.x39{left:612.613333pt;}
.x32{left:614.533333pt;}
.x2e{left:624.453333pt;}
.x3e{left:641.733333pt;}
.x2b{left:647.653333pt;}
.x24{left:652.933333pt;}
.x43{left:654.213333pt;}
.x1d{left:666.533333pt;}
.x2{left:714.853322pt;}
}




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