
    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_ae69c6141a44e7ebbdaa8384.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fa27d6d08dc98c0c50057693.woff')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_a0ed50af74c7657d3bcb464a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_3298877d2ec93a8b4929240d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.208008;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_d22fe03ca596f6edc149e922.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7d86d586f2c2456eb44cfcf6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.935059;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_08df154c93eb73eb4394f298.woff')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_f126e04616e766919047d0a6.woff')format("woff");}.ff8{font-family:ff8;line-height:1.208008;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_38235fdcad8bfff7582f2e6a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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:ffa;src:url('chunks/assets/font_287b1847cb339eb735c6688e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:35.280000px;}
.v2{vertical-align:70.560000px;}
.ls3{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.233400px;}
.ls15{letter-spacing:-0.213000px;}
.lsc{letter-spacing:-0.207600px;}
.ls4{letter-spacing:-0.172800px;}
.ls1{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.072000px;}
.ls18{letter-spacing:-0.043200px;}
.lsa{letter-spacing:-0.000003px;}
.ls2{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.022800px;}
.ls12{letter-spacing:0.023040px;}
.ls11{letter-spacing:0.046080px;}
.ls5{letter-spacing:0.046200px;}
.ls17{letter-spacing:0.100800px;}
.ls16{letter-spacing:0.106800px;}
.ls7{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.264960px;}
.ls1b{letter-spacing:0.305280px;}
.ls14{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.385800px;}
.ls6{letter-spacing:0.432000px;}
.lse{letter-spacing:0.727200px;}
.ls1a{letter-spacing:23.587200px;}
.ls9{letter-spacing:37.025280px;}
.lsf{letter-spacing:328.252800px;}
.ls10{letter-spacing:345.592800px;}
.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;}
}
.ws8{word-spacing:-66.240000px;}
.ws0{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.153400px;}
.wsd{word-spacing:-17.153280px;}
.ws5{word-spacing:-15.984000px;}
.ws3{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.839997px;}
.ws6{word-spacing:-15.768000px;}
.ws9{word-spacing:-14.958600px;}
.wse{word-spacing:-14.878200px;}
.wsf{word-spacing:-14.679600px;}
.ws11{word-spacing:-14.595600px;}
.wsa{word-spacing:-14.572800px;}
.ws10{word-spacing:-14.529600px;}
.wsb{word-spacing:-14.339400px;}
.wsc{word-spacing:-13.147200px;}
.ws1{word-spacing:-11.880000px;}
.ws2{word-spacing:0.000000px;}
._23{margin-left:-4.488404px;}
._3{margin-left:-3.444546px;}
._0{margin-left:-1.942867px;}
._1{width:1.044000px;}
._e{width:2.482759px;}
._5{width:3.908359px;}
._6{width:5.157699px;}
._b{width:7.030726px;}
._f{width:8.383987px;}
._a{width:9.472254px;}
._2{width:11.062212px;}
._9{width:12.124256px;}
._c{width:13.513291px;}
._19{width:14.688000px;}
._d{width:15.824707px;}
._12{width:17.030267px;}
._4{width:18.613241px;}
._7{width:19.937975px;}
._8{width:21.131554px;}
._1c{width:22.425733px;}
._17{width:23.472000px;}
._18{width:24.672000px;}
._15{width:26.422867px;}
._14{width:28.368000px;}
._25{width:29.464147px;}
._22{width:30.669120px;}
._10{width:31.927812px;}
._11{width:33.252016px;}
._1d{width:34.283984px;}
._24{width:35.791308px;}
._1e{width:37.584000px;}
._1a{width:38.664000px;}
._1b{width:39.780000px;}
._1f{width:41.328000px;}
._20{width:43.656000px;}
._13{width:46.166160px;}
._21{width:47.354947px;}
._16{width:49.392000px;}
._2a{width:54.288000px;}
._26{width:55.512000px;}
._27{width:56.664000px;}
._2b{width:181.895040px;}
._2c{width:183.440467px;}
._28{width:270.889680px;}
._2e{width:440.166720px;}
._2d{width:441.310387px;}
._29{width:452.872560px;}
.fc5{color:rgb(5,99,193);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(255,192,0);}
.fc4{color:rgb(0,13,26);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs1{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.yc1{bottom:3.420000px;}
.ycf{bottom:12.240000px;}
.yca{bottom:20.880000px;}
.yde{bottom:20.910000px;}
.yc0{bottom:21.060000px;}
.yc9{bottom:38.520000px;}
.ydd{bottom:38.550000px;}
.yd5{bottom:38.565000px;}
.ybd{bottom:38.700000px;}
.yc8{bottom:56.160000px;}
.ydc{bottom:56.190000px;}
.ybf{bottom:56.205000px;}
.yc{bottom:59.040000px;}
.yc7{bottom:73.620000px;}
.ydb{bottom:73.650000px;}
.yd4{bottom:73.665000px;}
.yd1{bottom:73.800000px;}
.yce{bottom:73.830000px;}
.ybe{bottom:73.845000px;}
.yb{bottom:76.500000px;}
.ydf{bottom:91.260000px;}
.ycd{bottom:91.290000px;}
.yd3{bottom:91.305000px;}
.yc2{bottom:97.020000px;}
.yc5{bottom:100.260000px;}
.y42{bottom:102.960000px;}
.y8c{bottom:107.100000px;}
.y142{bottom:107.280000px;}
.y17a{bottom:107.820000px;}
.y75{bottom:108.180000px;}
.ycc{bottom:108.930000px;}
.y9e{bottom:111.060000px;}
.y56{bottom:113.940000px;}
.yb2{bottom:115.020000px;}
.yc4{bottom:117.750000px;}
.yd8{bottom:126.390000px;}
.y15a{bottom:130.320000px;}
.ycb{bottom:132.300000px;}
.y41{bottom:134.640000px;}
.yc3{bottom:135.390000px;}
.y8b{bottom:136.080000px;}
.y2b{bottom:136.260000px;}
.y141{bottom:138.960000px;}
.yf1{bottom:139.500000px;}
.ye8{bottom:139.680000px;}
.yb1{bottom:144.000000px;}
.yd7{bottom:144.030000px;}
.y55{bottom:145.620000px;}
.y179{bottom:149.040000px;}
.y159{bottom:151.200000px;}
.y9d{bottom:152.820000px;}
.y74{bottom:155.160000px;}
.y60{bottom:159.480000px;}
.y12f{bottom:164.160000px;}
.y8a{bottom:165.060000px;}
.y40{bottom:166.320000px;}
.y2a{bottom:167.940000px;}
.y178{bottom:170.100000px;}
.y140{bottom:170.640000px;}
.ye7{bottom:171.180000px;}
.y158{bottom:172.080000px;}
.yb0{bottom:172.980000px;}
.y116{bottom:174.278100px;}
.yf0{bottom:189.180000px;}
.y177{bottom:190.980000px;}
.y89{bottom:194.040000px;}
.y54{bottom:195.300000px;}
.y12e{bottom:195.840000px;}
.y11b{bottom:198.000000px;}
.y29{bottom:199.620000px;}
.yaf{bottom:201.990000px;}
.y73{bottom:202.170000px;}
.y13f{bottom:202.350000px;}
.ye6{bottom:203.070000px;}
.y157{bottom:204.870000px;}
.y115{bottom:205.957500px;}
.y5f{bottom:206.490000px;}
.y176{bottom:211.890000px;}
.y3f{bottom:216.030000px;}
.y88{bottom:223.050000px;}
.y156{bottom:225.930000px;}
.y53{bottom:227.010000px;}
.y12d{bottom:227.370000px;}
.y11a{bottom:229.530000px;}
.yae{bottom:231.150000px;}
.y28{bottom:231.330000px;}
.y13e{bottom:234.030000px;}
.y5e{bottom:235.470000px;}
.yef{bottom:238.890000px;}
.y175{bottom:244.650000px;}
.y155{bottom:246.810000px;}
.y3e{bottom:247.530000px;}
.y72{bottom:249.150000px;}
.y87{bottom:252.210000px;}
.ye5{bottom:252.390000px;}
.yc6{bottom:255.450000px;}
.y52{bottom:258.690000px;}
.y12c{bottom:259.050000px;}
.yad{bottom:260.130000px;}
.y119{bottom:261.210000px;}
.y27{bottom:262.830000px;}
.y13d{bottom:265.530000px;}
.y174{bottom:265.710000px;}
.y154{bottom:267.690000px;}
.y71{bottom:278.130000px;}
.y3d{bottom:279.210000px;}
.y86{bottom:281.190000px;}
.y5d{bottom:282.630000px;}
.ye4{bottom:284.250000px;}
.y173{bottom:286.590000px;}
.yee{bottom:288.570000px;}
.y51{bottom:290.190000px;}
.y118{bottom:292.890000px;}
.y26{bottom:294.510000px;}
.y13c{bottom:297.210000px;}
.y153{bottom:300.270000px;}
.y114{bottom:303.728100px;}
.yac{bottom:307.110000px;}
.y172{bottom:307.470000px;}
.y12b{bottom:309.990000px;}
.y85{bottom:310.170000px;}
.y3c{bottom:310.890000px;}
.y5c{bottom:311.610000px;}
.y113{bottom:312.548100px;}
.ye3{bottom:315.930000px;}
.y152{bottom:321.330000px;}
.y50{bottom:321.870000px;}
.y70{bottom:325.290000px;}
.y13b{bottom:328.890000px;}
.y112{bottom:330.008100px;}
.y25{bottom:335.730000px;}
.yab{bottom:336.090000px;}
.yed{bottom:338.250000px;}
.y84{bottom:339.150000px;}
.y171{bottom:340.230000px;}
.y151{bottom:342.210000px;}
.y3b{bottom:342.570000px;}
.ybc{bottom:344.010000px;}
.ye2{bottom:347.610000px;}
.y4f{bottom:353.550000px;}
.y6f{bottom:354.270000px;}
.y5b{bottom:358.590000px;}
.y12a{bottom:359.850000px;}
.y13a{bottom:360.570000px;}
.y170{bottom:361.290000px;}
.yaa{bottom:365.070000px;}
.y105{bottom:365.287500px;}
.y111{bottom:365.288100px;}
.y83{bottom:368.130000px;}
.y3a{bottom:374.250000px;}
.y150{bottom:374.970000px;}
.y24{bottom:377.490000px;}
.y16f{bottom:382.170000px;}
.y102{bottom:382.747500px;}
.y110{bottom:382.748100px;}
.y6e{bottom:383.250000px;}
.y4e{bottom:385.275000px;}
.yec{bottom:387.975000px;}
.y9c{bottom:388.155000px;}
.ye1{bottom:391.035000px;}
.ya9{bottom:394.275000px;}
.y14f{bottom:396.075000px;}
.y82{bottom:397.335000px;}
.y101{bottom:400.387500px;}
.y16e{bottom:403.095000px;}
.y5a{bottom:405.615000px;}
.y39{bottom:405.975000px;}
.y139{bottom:410.295000px;}
.y9b{bottom:414.615000px;}
.y23{bottom:416.415000px;}
.y4d{bottom:416.955000px;}
.ya8{bottom:423.255000px;}
.ye0{bottom:425.955000px;}
.y81{bottom:426.315000px;}
.y6d{bottom:430.275000px;}
.y129{bottom:432.075000px;}
.y16d{bottom:435.675000px;}
.y10f{bottom:435.713100px;}
.y22{bottom:437.295000px;}
.yeb{bottom:437.655000px;}
.y14e{bottom:437.835000px;}
.y138{bottom:441.975000px;}
.yd6{bottom:443.955000px;}
.y104{bottom:444.352500px;}
.ybb{bottom:445.215000px;}
.y4c{bottom:448.635000px;}
.y9a{bottom:451.335000px;}
.ya7{bottom:452.235000px;}
.y59{bottom:452.595000px;}
.y10e{bottom:453.173100px;}
.y38{bottom:455.655000px;}
.y16c{bottom:456.735000px;}
.y21{bottom:458.175000px;}
.y128{bottom:458.535000px;}
.y6c{bottom:459.255000px;}
.y103{bottom:461.992500px;}
.y117{bottom:469.155000px;}
.y14d{bottom:470.595000px;}
.y10d{bottom:470.813100px;}
.yba{bottom:471.675000px;}
.y80{bottom:473.295000px;}
.y137{bottom:473.655000px;}
.y16b{bottom:477.615000px;}
.y20{bottom:479.055000px;}
.y99{bottom:480.315000px;}
.ya6{bottom:481.215000px;}
.y127{bottom:484.815000px;}
.y37{bottom:487.155000px;}
.y6b{bottom:488.415000px;}
.y14c{bottom:491.655000px;}
.y4b{bottom:498.315000px;}
.y1f{bottom:499.935000px;}
.y58{bottom:500.835000px;}
.y7f{bottom:502.275000px;}
.y136{bottom:505.155000px;}
.ya5{bottom:510.195000px;}
.y16a{bottom:510.375000px;}
.y126{bottom:511.275000px;}
.y14b{bottom:512.535000px;}
.y36{bottom:518.835000px;}
.y1e{bottom:520.815000px;}
.y10c{bottom:523.553100px;}
.y98{bottom:527.295000px;}
.y4a{bottom:529.815000px;}
.y7e{bottom:531.255000px;}
.y169{bottom:531.435000px;}
.y14a{bottom:533.235000px;}
.y6a{bottom:535.395000px;}
.yb9{bottom:536.115000px;}
.y135{bottom:536.835000px;}
.y125{bottom:537.555000px;}
.ya4{bottom:539.355000px;}
.y100{bottom:541.192500px;}
.y10b{bottom:541.193100px;}
.y1d{bottom:541.695000px;}
.yda{bottom:549.435000px;}
.y35{bottom:550.515000px;}
.y168{bottom:552.315000px;}
.y97{bottom:556.275000px;}
.yff{bottom:558.652500px;}
.y10a{bottom:558.653100px;}
.y7d{bottom:560.415000px;}
.y49{bottom:561.495000px;}
.y1c{bottom:562.575000px;}
.y124{bottom:564.015000px;}
.y69{bottom:564.375000px;}
.y149{bottom:565.995000px;}
.yb8{bottom:567.825000px;}
.ya3{bottom:568.365000px;}
.y134{bottom:568.545000px;}
.y109{bottom:576.293100px;}
.y57{bottom:582.225000px;}
.y1b{bottom:583.485000px;}
.y167{bottom:584.925000px;}
.y96{bottom:585.285000px;}
.y148{bottom:587.085000px;}
.y7c{bottom:589.425000px;}
.y48{bottom:593.205000px;}
.ya{bottom:593.565000px;}
.y34{bottom:600.225000px;}
.y1a{bottom:604.365000px;}
.y166{bottom:605.985000px;}
.y147{bottom:607.965000px;}
.y123{bottom:608.325000px;}
.y68{bottom:611.385000px;}
.yea{bottom:613.905000px;}
.ya2{bottom:614.085000px;}
.y95{bottom:614.445000px;}
.yb7{bottom:617.505000px;}
.y9{bottom:618.405000px;}
.yfa{bottom:620.242500px;}
.y47{bottom:624.885000px;}
.y19{bottom:625.245000px;}
.y108{bottom:629.063100px;}
.y33{bottom:631.905000px;}
.y122{bottom:634.785000px;}
.y7b{bottom:636.405000px;}
.yd9{bottom:637.305000px;}
.yf9{bottom:637.882500px;}
.y165{bottom:638.745000px;}
.y146{bottom:640.725000px;}
.y94{bottom:643.425000px;}
.y8{bottom:644.145000px;}
.ye9{bottom:645.585000px;}
.y18{bottom:646.125000px;}
.yfe{bottom:646.702500px;}
.y107{bottom:646.703100px;}
.yf8{bottom:655.522500px;}
.y46{bottom:656.565000px;}
.ya1{bottom:657.645000px;}
.y67{bottom:658.365000px;}
.y164{bottom:659.805000px;}
.y121{bottom:661.065000px;}
.y145{bottom:661.785000px;}
.y32{bottom:663.585000px;}
.yfd{bottom:664.342500px;}
.y7a{bottom:665.385000px;}
.y17{bottom:667.005000px;}
.yb6{bottom:667.185000px;}
.y93{bottom:672.405000px;}
.y7{bottom:673.305000px;}
.y163{bottom:680.685000px;}
.y133{bottom:681.585000px;}
.y106{bottom:681.802500px;}
.y144{bottom:682.665000px;}
.y120{bottom:687.525000px;}
.y16{bottom:687.885000px;}
.y79{bottom:694.365000px;}
.y31{bottom:695.265000px;}
.y6{bottom:698.145000px;}
.yb5{bottom:698.685000px;}
.y92{bottom:701.385000px;}
.y162{bottom:701.565000px;}
.y66{bottom:705.525000px;}
.y45{bottom:707.325000px;}
.y15{bottom:708.765000px;}
.y132{bottom:713.265000px;}
.y11f{bottom:713.805000px;}
.y143{bottom:716.325000px;}
.y78{bottom:723.525000px;}
.y5{bottom:723.885000px;}
.yd2{bottom:725.325000px;}
.y30{bottom:726.765000px;}
.y14{bottom:729.645000px;}
.y91{bottom:730.365000px;}
.y161{bottom:734.325000px;}
.y65{bottom:734.505000px;}
.yfc{bottom:734.542500px;}
.y11e{bottom:740.265000px;}
.y131{bottom:744.765000px;}
.yb4{bottom:749.625000px;}
.y13{bottom:750.525000px;}
.yfb{bottom:752.182500px;}
.y77{bottom:752.550000px;}
.y160{bottom:755.250000px;}
.y2f{bottom:758.490000px;}
.y90{bottom:759.570000px;}
.y11d{bottom:766.770000px;}
.y12{bottom:771.450000px;}
.y15f{bottom:776.130000px;}
.y130{bottom:776.490000px;}
.y64{bottom:781.530000px;}
.y4{bottom:785.490000px;}
.yf6{bottom:788.182500px;}
.y8f{bottom:788.550000px;}
.y2e{bottom:790.170000px;}
.y11{bottom:792.330000px;}
.y11c{bottom:793.050000px;}
.yb3{bottom:799.530000px;}
.yf5{bottom:805.687500px;}
.y44{bottom:808.170000px;}
.y15e{bottom:808.890000px;}
.y10{bottom:813.210000px;}
.yf4{bottom:814.507500px;}
.y3{bottom:815.550000px;}
.y8e{bottom:817.530000px;}
.y2d{bottom:821.850000px;}
.yf7{bottom:823.327500px;}
.y63{bottom:828.510000px;}
.y15d{bottom:829.950000px;}
.yd0{bottom:831.570000px;}
.yf{bottom:834.090000px;}
.y43{bottom:839.850000px;}
.y2{bottom:845.430000px;}
.y8d{bottom:846.510000px;}
.y15c{bottom:850.830000px;}
.ye{bottom:854.970000px;}
.y76{bottom:857.490000px;}
.y2c{bottom:871.530000px;}
.y62{bottom:875.490000px;}
.yf3{bottom:876.967500px;}
.ya0{bottom:879.450000px;}
.y15b{bottom:883.590000px;}
.yd{bottom:903.210000px;}
.y1{bottom:903.570000px;}
.yf2{bottom:903.607500px;}
.y61{bottom:904.650000px;}
.y9f{bottom:906.090000px;}
.h14{height:35.280000px;}
.h7{height:40.472227px;}
.hf{height:51.998203px;}
.he{height:52.465078px;}
.h5{height:53.446289px;}
.h20{height:57.636562px;}
.hb{height:58.154062px;}
.hd{height:59.147227px;}
.h1d{height:59.149627px;}
.h4{height:63.210938px;}
.h8{height:65.560781px;}
.h6{height:65.884219px;}
.hc{height:68.084282px;}
.h9{height:68.267813px;}
.ha{height:71.261719px;}
.h1f{height:71.264119px;}
.h2{height:72.562500px;}
.h1a{height:87.745078px;}
.h12{height:87.840000px;}
.h18{height:87.876000px;}
.h17{height:88.020000px;}
.h10{height:88.056000px;}
.h3{height:89.759531px;}
.h1e{height:93.707227px;}
.h19{height:105.480000px;}
.h15{height:105.516000px;}
.h13{height:123.156000px;}
.h1c{height:128.987227px;}
.h1b{height:129.707227px;}
.h11{height:246.270000px;}
.h16{height:281.370000px;}
.h1{height:1020.750000px;}
.h0{height:1020.780000px;}
.w5{width:128.556000px;}
.w6{width:128.700000px;}
.w3{width:129.240000px;}
.w4{width:165.675000px;}
.w1{width:723.000000px;}
.w2{width:723.059989px;}
.w0{width:723.060000px;}
.x0{left:0.000000px;}
.x22{left:8.100000px;}
.x26{left:9.765000px;}
.x1e{left:11.880000px;}
.x19{left:13.140000px;}
.x13{left:16.200000px;}
.x29{left:18.045000px;}
.x1d{left:19.620000px;}
.x27{left:21.240000px;}
.x1c{left:22.860000px;}
.x24{left:25.965000px;}
.x1a{left:28.980000px;}
.x21{left:30.825000px;}
.x18{left:32.400000px;}
.x28{left:34.020000px;}
.x2a{left:35.685000px;}
.x15{left:41.085000px;}
.x25{left:47.925000px;}
.x23{left:49.320000px;}
.x20{left:51.885000px;}
.x2b{left:59.940000px;}
.x17{left:64.260000px;}
.x42{left:70.415989px;}
.xd{left:75.096000px;}
.x1f{left:82.845000px;}
.x32{left:86.616000px;}
.x4{left:90.396000px;}
.x3{left:92.016000px;}
.x31{left:94.356000px;}
.x36{left:95.976000px;}
.x2{left:99.576000px;}
.xf{left:102.095989px;}
.xe{left:106.955989px;}
.x37{left:108.756000px;}
.x43{left:117.575989px;}
.x10{left:129.095989px;}
.x14{left:204.330000px;}
.x3e{left:212.115000px;}
.x38{left:215.535000px;}
.x12{left:225.794989px;}
.x40{left:233.355000px;}
.x11{left:234.795000px;}
.x3b{left:237.495000px;}
.x3a{left:239.295000px;}
.x3c{left:242.355000px;}
.x3f{left:244.695000px;}
.x3d{left:252.975000px;}
.x39{left:268.275000px;}
.x41{left:277.635000px;}
.x1{left:291.135000px;}
.x6{left:317.955000px;}
.xc{left:320.115000px;}
.x9{left:325.515000px;}
.xa{left:348.375000px;}
.xb{left:360.825000px;}
.x16{left:370.005000px;}
.x8{left:404.745000px;}
.x2c{left:408.165000px;}
.x2d{left:427.065000px;}
.x33{left:438.945000px;}
.x34{left:444.165000px;}
.x5{left:455.325000px;}
.x7{left:463.605000px;}
.x1b{left:498.570000px;}
.x2f{left:533.130000px;}
.x2e{left:542.670000px;}
.x30{left:548.970000px;}
.x35{left:569.130000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:31.360000pt;}
.v2{vertical-align:62.720000pt;}
.ls3{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.207467pt;}
.ls15{letter-spacing:-0.189333pt;}
.lsc{letter-spacing:-0.184533pt;}
.ls4{letter-spacing:-0.153600pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls18{letter-spacing:-0.038400pt;}
.lsa{letter-spacing:-0.000003pt;}
.ls2{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.020267pt;}
.ls12{letter-spacing:0.020480pt;}
.ls11{letter-spacing:0.040960pt;}
.ls5{letter-spacing:0.041067pt;}
.ls17{letter-spacing:0.089600pt;}
.ls16{letter-spacing:0.094933pt;}
.ls7{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.235520pt;}
.ls1b{letter-spacing:0.271360pt;}
.ls14{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.342933pt;}
.ls6{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.646400pt;}
.ls1a{letter-spacing:20.966400pt;}
.ls9{letter-spacing:32.911360pt;}
.lsf{letter-spacing:291.780267pt;}
.ls10{letter-spacing:307.193600pt;}
.ws8{word-spacing:-58.880000pt;}
.ws0{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.247467pt;}
.wsd{word-spacing:-15.247360pt;}
.ws5{word-spacing:-14.208000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws7{word-spacing:-14.079997pt;}
.ws6{word-spacing:-14.016000pt;}
.ws9{word-spacing:-13.296533pt;}
.wse{word-spacing:-13.225067pt;}
.wsf{word-spacing:-13.048533pt;}
.ws11{word-spacing:-12.973867pt;}
.wsa{word-spacing:-12.953600pt;}
.ws10{word-spacing:-12.915200pt;}
.wsb{word-spacing:-12.746133pt;}
.wsc{word-spacing:-11.686400pt;}
.ws1{word-spacing:-10.560000pt;}
.ws2{word-spacing:0.000000pt;}
._23{margin-left:-3.989692pt;}
._3{margin-left:-3.061819pt;}
._0{margin-left:-1.726993pt;}
._1{width:0.928000pt;}
._e{width:2.206897pt;}
._5{width:3.474097pt;}
._6{width:4.584621pt;}
._b{width:6.249534pt;}
._f{width:7.452433pt;}
._a{width:8.419781pt;}
._2{width:9.833078pt;}
._9{width:10.777116pt;}
._c{width:12.011814pt;}
._19{width:13.056000pt;}
._d{width:14.066406pt;}
._12{width:15.138015pt;}
._4{width:16.545103pt;}
._7{width:17.722644pt;}
._8{width:18.783603pt;}
._1c{width:19.933985pt;}
._17{width:20.864000pt;}
._18{width:21.930667pt;}
._15{width:23.486993pt;}
._14{width:25.216000pt;}
._25{width:26.190353pt;}
._22{width:27.261440pt;}
._10{width:28.380278pt;}
._11{width:29.557348pt;}
._1d{width:30.474652pt;}
._24{width:31.814496pt;}
._1e{width:33.408000pt;}
._1a{width:34.368000pt;}
._1b{width:35.360000pt;}
._1f{width:36.736000pt;}
._20{width:38.805333pt;}
._13{width:41.036587pt;}
._21{width:42.093286pt;}
._16{width:43.904000pt;}
._2a{width:48.256000pt;}
._26{width:49.344000pt;}
._27{width:50.368000pt;}
._2b{width:161.684480pt;}
._2c{width:163.058193pt;}
._28{width:240.790827pt;}
._2e{width:391.259307pt;}
._2d{width:392.275899pt;}
._29{width:402.553387pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs1{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.yc1{bottom:3.040000pt;}
.ycf{bottom:10.880000pt;}
.yca{bottom:18.560000pt;}
.yde{bottom:18.586667pt;}
.yc0{bottom:18.720000pt;}
.yc9{bottom:34.240000pt;}
.ydd{bottom:34.266667pt;}
.yd5{bottom:34.280000pt;}
.ybd{bottom:34.400000pt;}
.yc8{bottom:49.920000pt;}
.ydc{bottom:49.946667pt;}
.ybf{bottom:49.960000pt;}
.yc{bottom:52.480000pt;}
.yc7{bottom:65.440000pt;}
.ydb{bottom:65.466667pt;}
.yd4{bottom:65.480000pt;}
.yd1{bottom:65.600000pt;}
.yce{bottom:65.626667pt;}
.ybe{bottom:65.640000pt;}
.yb{bottom:68.000000pt;}
.ydf{bottom:81.120000pt;}
.ycd{bottom:81.146667pt;}
.yd3{bottom:81.160000pt;}
.yc2{bottom:86.240000pt;}
.yc5{bottom:89.120000pt;}
.y42{bottom:91.520000pt;}
.y8c{bottom:95.200000pt;}
.y142{bottom:95.360000pt;}
.y17a{bottom:95.840000pt;}
.y75{bottom:96.160000pt;}
.ycc{bottom:96.826667pt;}
.y9e{bottom:98.720000pt;}
.y56{bottom:101.280000pt;}
.yb2{bottom:102.240000pt;}
.yc4{bottom:104.666667pt;}
.yd8{bottom:112.346667pt;}
.y15a{bottom:115.840000pt;}
.ycb{bottom:117.600000pt;}
.y41{bottom:119.680000pt;}
.yc3{bottom:120.346667pt;}
.y8b{bottom:120.960000pt;}
.y2b{bottom:121.120000pt;}
.y141{bottom:123.520000pt;}
.yf1{bottom:124.000000pt;}
.ye8{bottom:124.160000pt;}
.yb1{bottom:128.000000pt;}
.yd7{bottom:128.026667pt;}
.y55{bottom:129.440000pt;}
.y179{bottom:132.480000pt;}
.y159{bottom:134.400000pt;}
.y9d{bottom:135.840000pt;}
.y74{bottom:137.920000pt;}
.y60{bottom:141.760000pt;}
.y12f{bottom:145.920000pt;}
.y8a{bottom:146.720000pt;}
.y40{bottom:147.840000pt;}
.y2a{bottom:149.280000pt;}
.y178{bottom:151.200000pt;}
.y140{bottom:151.680000pt;}
.ye7{bottom:152.160000pt;}
.y158{bottom:152.960000pt;}
.yb0{bottom:153.760000pt;}
.y116{bottom:154.913867pt;}
.yf0{bottom:168.160000pt;}
.y177{bottom:169.760000pt;}
.y89{bottom:172.480000pt;}
.y54{bottom:173.600000pt;}
.y12e{bottom:174.080000pt;}
.y11b{bottom:176.000000pt;}
.y29{bottom:177.440000pt;}
.yaf{bottom:179.546667pt;}
.y73{bottom:179.706667pt;}
.y13f{bottom:179.866667pt;}
.ye6{bottom:180.506667pt;}
.y157{bottom:182.106667pt;}
.y115{bottom:183.073333pt;}
.y5f{bottom:183.546667pt;}
.y176{bottom:188.346667pt;}
.y3f{bottom:192.026667pt;}
.y88{bottom:198.266667pt;}
.y156{bottom:200.826667pt;}
.y53{bottom:201.786667pt;}
.y12d{bottom:202.106667pt;}
.y11a{bottom:204.026667pt;}
.yae{bottom:205.466667pt;}
.y28{bottom:205.626667pt;}
.y13e{bottom:208.026667pt;}
.y5e{bottom:209.306667pt;}
.yef{bottom:212.346667pt;}
.y175{bottom:217.466667pt;}
.y155{bottom:219.386667pt;}
.y3e{bottom:220.026667pt;}
.y72{bottom:221.466667pt;}
.y87{bottom:224.186667pt;}
.ye5{bottom:224.346667pt;}
.yc6{bottom:227.066667pt;}
.y52{bottom:229.946667pt;}
.y12c{bottom:230.266667pt;}
.yad{bottom:231.226667pt;}
.y119{bottom:232.186667pt;}
.y27{bottom:233.626667pt;}
.y13d{bottom:236.026667pt;}
.y174{bottom:236.186667pt;}
.y154{bottom:237.946667pt;}
.y71{bottom:247.226667pt;}
.y3d{bottom:248.186667pt;}
.y86{bottom:249.946667pt;}
.y5d{bottom:251.226667pt;}
.ye4{bottom:252.666667pt;}
.y173{bottom:254.746667pt;}
.yee{bottom:256.506667pt;}
.y51{bottom:257.946667pt;}
.y118{bottom:260.346667pt;}
.y26{bottom:261.786667pt;}
.y13c{bottom:264.186667pt;}
.y153{bottom:266.906667pt;}
.y114{bottom:269.980533pt;}
.yac{bottom:272.986667pt;}
.y172{bottom:273.306667pt;}
.y12b{bottom:275.546667pt;}
.y85{bottom:275.706667pt;}
.y3c{bottom:276.346667pt;}
.y5c{bottom:276.986667pt;}
.y113{bottom:277.820533pt;}
.ye3{bottom:280.826667pt;}
.y152{bottom:285.626667pt;}
.y50{bottom:286.106667pt;}
.y70{bottom:289.146667pt;}
.y13b{bottom:292.346667pt;}
.y112{bottom:293.340533pt;}
.y25{bottom:298.426667pt;}
.yab{bottom:298.746667pt;}
.yed{bottom:300.666667pt;}
.y84{bottom:301.466667pt;}
.y171{bottom:302.426667pt;}
.y151{bottom:304.186667pt;}
.y3b{bottom:304.506667pt;}
.ybc{bottom:305.786667pt;}
.ye2{bottom:308.986667pt;}
.y4f{bottom:314.266667pt;}
.y6f{bottom:314.906667pt;}
.y5b{bottom:318.746667pt;}
.y12a{bottom:319.866667pt;}
.y13a{bottom:320.506667pt;}
.y170{bottom:321.146667pt;}
.yaa{bottom:324.506667pt;}
.y105{bottom:324.700000pt;}
.y111{bottom:324.700533pt;}
.y83{bottom:327.226667pt;}
.y3a{bottom:332.666667pt;}
.y150{bottom:333.306667pt;}
.y24{bottom:335.546667pt;}
.y16f{bottom:339.706667pt;}
.y102{bottom:340.220000pt;}
.y110{bottom:340.220533pt;}
.y6e{bottom:340.666667pt;}
.y4e{bottom:342.466667pt;}
.yec{bottom:344.866667pt;}
.y9c{bottom:345.026667pt;}
.ye1{bottom:347.586667pt;}
.ya9{bottom:350.466667pt;}
.y14f{bottom:352.066667pt;}
.y82{bottom:353.186667pt;}
.y101{bottom:355.900000pt;}
.y16e{bottom:358.306667pt;}
.y5a{bottom:360.546667pt;}
.y39{bottom:360.866667pt;}
.y139{bottom:364.706667pt;}
.y9b{bottom:368.546667pt;}
.y23{bottom:370.146667pt;}
.y4d{bottom:370.626667pt;}
.ya8{bottom:376.226667pt;}
.ye0{bottom:378.626667pt;}
.y81{bottom:378.946667pt;}
.y6d{bottom:382.466667pt;}
.y129{bottom:384.066667pt;}
.y16d{bottom:387.266667pt;}
.y10f{bottom:387.300533pt;}
.y22{bottom:388.706667pt;}
.yeb{bottom:389.026667pt;}
.y14e{bottom:389.186667pt;}
.y138{bottom:392.866667pt;}
.yd6{bottom:394.626667pt;}
.y104{bottom:394.980000pt;}
.ybb{bottom:395.746667pt;}
.y4c{bottom:398.786667pt;}
.y9a{bottom:401.186667pt;}
.ya7{bottom:401.986667pt;}
.y59{bottom:402.306667pt;}
.y10e{bottom:402.820533pt;}
.y38{bottom:405.026667pt;}
.y16c{bottom:405.986667pt;}
.y21{bottom:407.266667pt;}
.y128{bottom:407.586667pt;}
.y6c{bottom:408.226667pt;}
.y103{bottom:410.660000pt;}
.y117{bottom:417.026667pt;}
.y14d{bottom:418.306667pt;}
.y10d{bottom:418.500533pt;}
.yba{bottom:419.266667pt;}
.y80{bottom:420.706667pt;}
.y137{bottom:421.026667pt;}
.y16b{bottom:424.546667pt;}
.y20{bottom:425.826667pt;}
.y99{bottom:426.946667pt;}
.ya6{bottom:427.746667pt;}
.y127{bottom:430.946667pt;}
.y37{bottom:433.026667pt;}
.y6b{bottom:434.146667pt;}
.y14c{bottom:437.026667pt;}
.y4b{bottom:442.946667pt;}
.y1f{bottom:444.386667pt;}
.y58{bottom:445.186667pt;}
.y7f{bottom:446.466667pt;}
.y136{bottom:449.026667pt;}
.ya5{bottom:453.506667pt;}
.y16a{bottom:453.666667pt;}
.y126{bottom:454.466667pt;}
.y14b{bottom:455.586667pt;}
.y36{bottom:461.186667pt;}
.y1e{bottom:462.946667pt;}
.y10c{bottom:465.380533pt;}
.y98{bottom:468.706667pt;}
.y4a{bottom:470.946667pt;}
.y7e{bottom:472.226667pt;}
.y169{bottom:472.386667pt;}
.y14a{bottom:473.986667pt;}
.y6a{bottom:475.906667pt;}
.yb9{bottom:476.546667pt;}
.y135{bottom:477.186667pt;}
.y125{bottom:477.826667pt;}
.ya4{bottom:479.426667pt;}
.y100{bottom:481.060000pt;}
.y10b{bottom:481.060533pt;}
.y1d{bottom:481.506667pt;}
.yda{bottom:488.386667pt;}
.y35{bottom:489.346667pt;}
.y168{bottom:490.946667pt;}
.y97{bottom:494.466667pt;}
.yff{bottom:496.580000pt;}
.y10a{bottom:496.580533pt;}
.y7d{bottom:498.146667pt;}
.y49{bottom:499.106667pt;}
.y1c{bottom:500.066667pt;}
.y124{bottom:501.346667pt;}
.y69{bottom:501.666667pt;}
.y149{bottom:503.106667pt;}
.yb8{bottom:504.733333pt;}
.ya3{bottom:505.213333pt;}
.y134{bottom:505.373333pt;}
.y109{bottom:512.260533pt;}
.y57{bottom:517.533333pt;}
.y1b{bottom:518.653333pt;}
.y167{bottom:519.933333pt;}
.y96{bottom:520.253333pt;}
.y148{bottom:521.853333pt;}
.y7c{bottom:523.933333pt;}
.y48{bottom:527.293333pt;}
.ya{bottom:527.613333pt;}
.y34{bottom:533.533333pt;}
.y1a{bottom:537.213333pt;}
.y166{bottom:538.653333pt;}
.y147{bottom:540.413333pt;}
.y123{bottom:540.733333pt;}
.y68{bottom:543.453333pt;}
.yea{bottom:545.693333pt;}
.ya2{bottom:545.853333pt;}
.y95{bottom:546.173333pt;}
.yb7{bottom:548.893333pt;}
.y9{bottom:549.693333pt;}
.yfa{bottom:551.326667pt;}
.y47{bottom:555.453333pt;}
.y19{bottom:555.773333pt;}
.y108{bottom:559.167200pt;}
.y33{bottom:561.693333pt;}
.y122{bottom:564.253333pt;}
.y7b{bottom:565.693333pt;}
.yd9{bottom:566.493333pt;}
.yf9{bottom:567.006667pt;}
.y165{bottom:567.773333pt;}
.y146{bottom:569.533333pt;}
.y94{bottom:571.933333pt;}
.y8{bottom:572.573333pt;}
.ye9{bottom:573.853333pt;}
.y18{bottom:574.333333pt;}
.yfe{bottom:574.846667pt;}
.y107{bottom:574.847200pt;}
.yf8{bottom:582.686667pt;}
.y46{bottom:583.613333pt;}
.ya1{bottom:584.573333pt;}
.y67{bottom:585.213333pt;}
.y164{bottom:586.493333pt;}
.y121{bottom:587.613333pt;}
.y145{bottom:588.253333pt;}
.y32{bottom:589.853333pt;}
.yfd{bottom:590.526667pt;}
.y7a{bottom:591.453333pt;}
.y17{bottom:592.893333pt;}
.yb6{bottom:593.053333pt;}
.y93{bottom:597.693333pt;}
.y7{bottom:598.493333pt;}
.y163{bottom:605.053333pt;}
.y133{bottom:605.853333pt;}
.y106{bottom:606.046667pt;}
.y144{bottom:606.813333pt;}
.y120{bottom:611.133333pt;}
.y16{bottom:611.453333pt;}
.y79{bottom:617.213333pt;}
.y31{bottom:618.013333pt;}
.y6{bottom:620.573333pt;}
.yb5{bottom:621.053333pt;}
.y92{bottom:623.453333pt;}
.y162{bottom:623.613333pt;}
.y66{bottom:627.133333pt;}
.y45{bottom:628.733333pt;}
.y15{bottom:630.013333pt;}
.y132{bottom:634.013333pt;}
.y11f{bottom:634.493333pt;}
.y143{bottom:636.733333pt;}
.y78{bottom:643.133333pt;}
.y5{bottom:643.453333pt;}
.yd2{bottom:644.733333pt;}
.y30{bottom:646.013333pt;}
.y14{bottom:648.573333pt;}
.y91{bottom:649.213333pt;}
.y161{bottom:652.733333pt;}
.y65{bottom:652.893333pt;}
.yfc{bottom:652.926667pt;}
.y11e{bottom:658.013333pt;}
.y131{bottom:662.013333pt;}
.yb4{bottom:666.333333pt;}
.y13{bottom:667.133333pt;}
.yfb{bottom:668.606667pt;}
.y77{bottom:668.933333pt;}
.y160{bottom:671.333333pt;}
.y2f{bottom:674.213333pt;}
.y90{bottom:675.173333pt;}
.y11d{bottom:681.573333pt;}
.y12{bottom:685.733333pt;}
.y15f{bottom:689.893333pt;}
.y130{bottom:690.213333pt;}
.y64{bottom:694.693333pt;}
.y4{bottom:698.213333pt;}
.yf6{bottom:700.606667pt;}
.y8f{bottom:700.933333pt;}
.y2e{bottom:702.373333pt;}
.y11{bottom:704.293333pt;}
.y11c{bottom:704.933333pt;}
.yb3{bottom:710.693333pt;}
.yf5{bottom:716.166667pt;}
.y44{bottom:718.373333pt;}
.y15e{bottom:719.013333pt;}
.y10{bottom:722.853333pt;}
.yf4{bottom:724.006667pt;}
.y3{bottom:724.933333pt;}
.y8e{bottom:726.693333pt;}
.y2d{bottom:730.533333pt;}
.yf7{bottom:731.846667pt;}
.y63{bottom:736.453333pt;}
.y15d{bottom:737.733333pt;}
.yd0{bottom:739.173333pt;}
.yf{bottom:741.413333pt;}
.y43{bottom:746.533333pt;}
.y2{bottom:751.493333pt;}
.y8d{bottom:752.453333pt;}
.y15c{bottom:756.293333pt;}
.ye{bottom:759.973333pt;}
.y76{bottom:762.213333pt;}
.y2c{bottom:774.693333pt;}
.y62{bottom:778.213333pt;}
.yf3{bottom:779.526667pt;}
.ya0{bottom:781.733333pt;}
.y15b{bottom:785.413333pt;}
.yd{bottom:802.853333pt;}
.y1{bottom:803.173333pt;}
.yf2{bottom:803.206667pt;}
.y61{bottom:804.133333pt;}
.y9f{bottom:805.413333pt;}
.h14{height:31.360000pt;}
.h7{height:35.975313pt;}
.hf{height:46.220625pt;}
.he{height:46.635625pt;}
.h5{height:47.507812pt;}
.h20{height:51.232500pt;}
.hb{height:51.692500pt;}
.hd{height:52.575312pt;}
.h1d{height:52.577446pt;}
.h4{height:56.187500pt;}
.h8{height:58.276250pt;}
.h6{height:58.563750pt;}
.hc{height:60.519362pt;}
.h9{height:60.682500pt;}
.ha{height:63.343750pt;}
.h1f{height:63.345883pt;}
.h2{height:64.500000pt;}
.h1a{height:77.995625pt;}
.h12{height:78.080000pt;}
.h18{height:78.112000pt;}
.h17{height:78.240000pt;}
.h10{height:78.272000pt;}
.h3{height:79.786250pt;}
.h1e{height:83.295312pt;}
.h19{height:93.760000pt;}
.h15{height:93.792000pt;}
.h13{height:109.472000pt;}
.h1c{height:114.655313pt;}
.h1b{height:115.295313pt;}
.h11{height:218.906667pt;}
.h16{height:250.106667pt;}
.h1{height:907.333333pt;}
.h0{height:907.360000pt;}
.w5{width:114.272000pt;}
.w6{width:114.400000pt;}
.w3{width:114.880000pt;}
.w4{width:147.266667pt;}
.w1{width:642.666667pt;}
.w2{width:642.719990pt;}
.w0{width:642.720000pt;}
.x0{left:0.000000pt;}
.x22{left:7.200000pt;}
.x26{left:8.680000pt;}
.x1e{left:10.560000pt;}
.x19{left:11.680000pt;}
.x13{left:14.400000pt;}
.x29{left:16.040000pt;}
.x1d{left:17.440000pt;}
.x27{left:18.880000pt;}
.x1c{left:20.320000pt;}
.x24{left:23.080000pt;}
.x1a{left:25.760000pt;}
.x21{left:27.400000pt;}
.x18{left:28.800000pt;}
.x28{left:30.240000pt;}
.x2a{left:31.720000pt;}
.x15{left:36.520000pt;}
.x25{left:42.600000pt;}
.x23{left:43.840000pt;}
.x20{left:46.120000pt;}
.x2b{left:53.280000pt;}
.x17{left:57.120000pt;}
.x42{left:62.591990pt;}
.xd{left:66.752000pt;}
.x1f{left:73.640000pt;}
.x32{left:76.992000pt;}
.x4{left:80.352000pt;}
.x3{left:81.792000pt;}
.x31{left:83.872000pt;}
.x36{left:85.312000pt;}
.x2{left:88.512000pt;}
.xf{left:90.751990pt;}
.xe{left:95.071990pt;}
.x37{left:96.672000pt;}
.x43{left:104.511990pt;}
.x10{left:114.751990pt;}
.x14{left:181.626667pt;}
.x3e{left:188.546667pt;}
.x38{left:191.586667pt;}
.x12{left:200.706657pt;}
.x40{left:207.426667pt;}
.x11{left:208.706667pt;}
.x3b{left:211.106667pt;}
.x3a{left:212.706667pt;}
.x3c{left:215.426667pt;}
.x3f{left:217.506667pt;}
.x3d{left:224.866667pt;}
.x39{left:238.466667pt;}
.x41{left:246.786667pt;}
.x1{left:258.786667pt;}
.x6{left:282.626667pt;}
.xc{left:284.546667pt;}
.x9{left:289.346667pt;}
.xa{left:309.666667pt;}
.xb{left:320.733333pt;}
.x16{left:328.893333pt;}
.x8{left:359.773333pt;}
.x2c{left:362.813333pt;}
.x2d{left:379.613333pt;}
.x33{left:390.173333pt;}
.x34{left:394.813333pt;}
.x5{left:404.733333pt;}
.x7{left:412.093333pt;}
.x1b{left:443.173333pt;}
.x2f{left:473.893333pt;}
.x2e{left:482.373333pt;}
.x30{left:487.973333pt;}
.x35{left:505.893333pt;}
}




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