
    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_0d68674188509295e05438a1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a529e4f29a5239852578a452.woff')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_6b6b6d77df302cddee0c2e43.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bf0d5114c2e5deb3e6e4d2a6.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9201a2029fe6f7498b1c8675.woff')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_53fe97f6a7f376ba28d3666c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a2f796a1a164e48dd76621ca.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9b696b7c5a51a4308ff11c1e.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_141627a5f6c8c91323ec8778.woff')format("woff");}.ff9{font-family:ff9;line-height:0.789062;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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);}
.v3{vertical-align:-84.420000px;}
.v7{vertical-align:-82.080000px;}
.v6{vertical-align:-80.640000px;}
.v1{vertical-align:-66.240000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v2{vertical-align:27.360000px;}
.ls11{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.109200px;}
.ls10{letter-spacing:-0.106800px;}
.ls6{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.108000px;}
.lse{letter-spacing:0.135600px;}
.lsb{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:21.600000px;}
.ls5{letter-spacing:33.984000px;}
.ls3{letter-spacing:43.380000px;}
.ls9{letter-spacing:54.864000px;}
.lsa{letter-spacing:64.026720px;}
.ls13{letter-spacing:89.976000px;}
.ls14{letter-spacing:201.036000px;}
.ls4{letter-spacing:1196.796000px;}
.ls15{letter-spacing:1274.016000px;}
.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:-72.000000px;}
.ws7{word-spacing:-59.760000px;}
.ws2{word-spacing:-24.300000px;}
.wsa{word-spacing:-18.288000px;}
.ws9{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.wsd{word-spacing:-16.560000px;}
.wse{word-spacing:-16.450800px;}
.ws0{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws1{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.833200px;}
.ws6{word-spacing:0.000000px;}
._13{margin-left:-4.536000px;}
._14{margin-left:-3.431280px;}
._d{margin-left:-2.172000px;}
._2{margin-left:-1.098000px;}
._0{width:1.127280px;}
._1{width:2.390400px;}
._e{width:3.945600px;}
._a{width:5.256000px;}
._7{width:6.912000px;}
._8{width:8.028720px;}
._9{width:9.405120px;}
._18{width:10.664640px;}
._19{width:11.720160px;}
._f{width:13.032000px;}
._10{width:14.358000px;}
._16{width:15.534720px;}
._15{width:16.776000px;}
._5{width:19.082160px;}
._6{width:20.184720px;}
._17{width:21.359280px;}
._23{width:22.550160px;}
._b{width:23.760000px;}
._c{width:25.368720px;}
._21{width:28.440000px;}
._22{width:29.616720px;}
._1f{width:32.848560px;}
._1e{width:34.668720px;}
._1b{width:37.008000px;}
._25{width:56.160000px;}
._26{width:57.456720px;}
._1c{width:60.840000px;}
._1d{width:62.604720px;}
._1a{width:67.752000px;}
._20{width:179.976000px;}
._24{width:181.232640px;}
._4{width:200.936400px;}
._12{width:577.948080px;}
._3{width:622.855920px;}
._11{width:776.496000px;}
.fc3{color:transparent;}
.fc2{color:rgb(79,129,189);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,255);}
.fs7{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y114{bottom:3.240000px;}
.y111{bottom:3.420000px;}
.y115{bottom:3.600000px;}
.ya{bottom:3.780000px;}
.ye6{bottom:3.960000px;}
.yb2{bottom:4.140000px;}
.ye7{bottom:4.320000px;}
.yc0{bottom:4.500000px;}
.y132{bottom:13.140000px;}
.y8{bottom:14.400000px;}
.y9{bottom:20.880000px;}
.y135{bottom:22.500000px;}
.y133{bottom:22.680000px;}
.y136{bottom:22.860000px;}
.y138{bottom:23.040000px;}
.yb{bottom:24.840000px;}
.ybc{bottom:24.885000px;}
.yb8{bottom:25.200000px;}
.ybd{bottom:25.245000px;}
.y7{bottom:38.340000px;}
.ycd{bottom:45.540000px;}
.yce{bottom:45.900000px;}
.yb6{bottom:56.700000px;}
.yc7{bottom:56.880000px;}
.yc3{bottom:56.910000px;}
.yb5{bottom:77.400000px;}
.yba{bottom:77.445000px;}
.yc6{bottom:77.580000px;}
.yc2{bottom:77.610000px;}
.ycb{bottom:79.785000px;}
.yca{bottom:100.485000px;}
.y70{bottom:110.700000px;}
.y10e{bottom:113.580000px;}
.y2e{bottom:116.640000px;}
.y142{bottom:117.720000px;}
.yb0{bottom:120.960000px;}
.y155{bottom:121.680000px;}
.y173{bottom:129.456000px;}
.y6f{bottom:131.436000px;}
.ye1{bottom:134.676000px;}
.yd5{bottom:140.796000px;}
.y10d{bottom:144.756000px;}
.y12e{bottom:146.196000px;}
.yfb{bottom:146.916000px;}
.y2d{bottom:147.816000px;}
.y6e{bottom:152.130000px;}
.y172{bottom:153.210000px;}
.y141{bottom:156.990000px;}
.ye0{bottom:165.810000px;}
.yd4{bottom:171.930000px;}
.y154{bottom:173.010000px;}
.y10c{bottom:175.710000px;}
.y12d{bottom:176.070000px;}
.y171{bottom:176.970000px;}
.yfa{bottom:177.870000px;}
.y2c{bottom:178.770000px;}
.yaf{bottom:183.090000px;}
.y6d{bottom:184.890000px;}
.y90{bottom:195.510000px;}
.ydf{bottom:196.770000px;}
.y140{bottom:198.570000px;}
.y170{bottom:200.910000px;}
.y153{bottom:201.090000px;}
.yd3{bottom:202.890000px;}
.y12c{bottom:204.510000px;}
.y10b{bottom:206.850000px;}
.yf9{bottom:207.750000px;}
.y4e{bottom:208.830000px;}
.y2b{bottom:209.910000px;}
.yae{bottom:214.230000px;}
.y6c{bottom:215.670000px;}
.yde{bottom:217.290000px;}
.y16f{bottom:224.670000px;}
.y8f{bottom:226.650000px;}
.y152{bottom:232.230000px;}
.y12b{bottom:232.950000px;}
.yd2{bottom:234.030000px;}
.yf8{bottom:236.190000px;}
.y2a{bottom:237.810000px;}
.ydd{bottom:237.990000px;}
.y4d{bottom:239.790000px;}
.y13f{bottom:239.970000px;}
.y6b{bottom:243.750000px;}
.yad{bottom:245.190000px;}
.y16e{bottom:248.430000px;}
.y8e{bottom:257.610000px;}
.ydc{bottom:258.690000px;}
.y12a{bottom:261.570000px;}
.y151{bottom:263.190000px;}
.yf7{bottom:264.630000px;}
.yd1{bottom:264.990000px;}
.y10a{bottom:268.770000px;}
.y29{bottom:269.310000px;}
.y4c{bottom:270.930000px;}
.y16d{bottom:272.190000px;}
.y6a{bottom:275.070000px;}
.yac{bottom:276.330000px;}
.ydb{bottom:279.030000px;}
.y13e{bottom:281.370000px;}
.y8d{bottom:288.750000px;}
.y129{bottom:291.090000px;}
.yf6{bottom:293.250000px;}
.y150{bottom:294.330000px;}
.y16c{bottom:295.950000px;}
.yda{bottom:296.310000px;}
.yd0{bottom:298.290000px;}
.y109{bottom:299.910000px;}
.y28{bottom:300.270000px;}
.y4b{bottom:301.890000px;}
.y69{bottom:306.210000px;}
.yab{bottom:307.290000px;}
.yd9{bottom:313.590000px;}
.y13d{bottom:316.830000px;}
.y8c{bottom:319.710000px;}
.y16b{bottom:319.890000px;}
.yf5{bottom:321.690000px;}
.ycf{bottom:322.230000px;}
.y14f{bottom:325.290000px;}
.yd8{bottom:330.870000px;}
.y27{bottom:331.230000px;}
.y4a{bottom:333.030000px;}
.y68{bottom:337.170000px;}
.yaa{bottom:338.430000px;}
.y16a{bottom:343.650000px;}
.y13c{bottom:347.970000px;}
.yd7{bottom:348.150000px;}
.yf4{bottom:350.130000px;}
.y8b{bottom:350.850000px;}
.yc9{bottom:351.930000px;}
.y128{bottom:353.190000px;}
.y14e{bottom:356.430000px;}
.yd6{bottom:361.650000px;}
.y108{bottom:362.010000px;}
.y26{bottom:362.370000px;}
.y49{bottom:363.990000px;}
.y169{bottom:367.410000px;}
.y67{bottom:368.310000px;}
.ya9{bottom:369.390000px;}
.yf3{bottom:378.570000px;}
.y8a{bottom:381.855000px;}
.y107{bottom:382.575000px;}
.y127{bottom:384.195000px;}
.y14d{bottom:387.435000px;}
.y13b{bottom:388.335000px;}
.y168{bottom:391.215000px;}
.y25{bottom:393.375000px;}
.y48{bottom:395.175000px;}
.y106{bottom:399.135000px;}
.y66{bottom:399.315000px;}
.ya8{bottom:400.575000px;}
.ycc{bottom:406.875000px;}
.yf2{bottom:407.055000px;}
.y13a{bottom:409.215000px;}
.y89{bottom:412.995000px;}
.y167{bottom:415.155000px;}
.y126{bottom:415.335000px;}
.y14c{bottom:418.575000px;}
.y24{bottom:424.515000px;}
.y47{bottom:426.135000px;}
.y65{bottom:430.455000px;}
.ya7{bottom:431.535000px;}
.yf1{bottom:435.495000px;}
.y166{bottom:438.915000px;}
.y88{bottom:443.955000px;}
.y125{bottom:446.295000px;}
.y139{bottom:448.455000px;}
.y14b{bottom:449.535000px;}
.y23{bottom:452.415000px;}
.y46{bottom:457.095000px;}
.y64{bottom:461.415000px;}
.ya6{bottom:462.675000px;}
.yf0{bottom:465.195000px;}
.y87{bottom:475.095000px;}
.y124{bottom:477.435000px;}
.y14a{bottom:480.675000px;}
.y22{bottom:483.555000px;}
.yc5{bottom:484.635000px;}
.y165{bottom:486.435000px;}
.y45{bottom:488.235000px;}
.y63{bottom:489.495000px;}
.y137{bottom:489.855000px;}
.ya5{bottom:493.635000px;}
.yef{bottom:496.155000px;}
.y86{bottom:506.055000px;}
.y123{bottom:508.395000px;}
.y164{bottom:510.375000px;}
.y149{bottom:511.635000px;}
.y21{bottom:514.515000px;}
.y44{bottom:519.195000px;}
.y62{bottom:520.815000px;}
.ya4{bottom:524.775000px;}
.yee{bottom:527.295000px;}
.y163{bottom:534.135000px;}
.y85{bottom:537.195000px;}
.yc8{bottom:537.375000px;}
.y122{bottom:539.535000px;}
.y148{bottom:542.775000px;}
.y20{bottom:545.655000px;}
.y43{bottom:550.335000px;}
.y61{bottom:551.955000px;}
.ya3{bottom:555.735000px;}
.y162{bottom:557.895000px;}
.yed{bottom:558.255000px;}
.y84{bottom:568.155000px;}
.y121{bottom:570.495000px;}
.y147{bottom:573.735000px;}
.y1f{bottom:576.975000px;}
.yec{bottom:579.135000px;}
.y42{bottom:581.295000px;}
.y161{bottom:581.655000px;}
.y60{bottom:582.915000px;}
.ya2{bottom:586.875000px;}
.y134{bottom:591.915000px;}
.yc1{bottom:594.435000px;}
.y83{bottom:599.295000px;}
.y120{bottom:601.635000px;}
.y146{bottom:604.695000px;}
.y160{bottom:605.595000px;}
.y1e{bottom:608.115000px;}
.y41{bottom:612.435000px;}
.y5f{bottom:613.875000px;}
.ya1{bottom:617.835000px;}
.yeb{bottom:620.175000px;}
.y15f{bottom:629.355000px;}
.y82{bottom:630.255000px;}
.y11f{bottom:632.625000px;}
.y145{bottom:635.865000px;}
.y1d{bottom:639.105000px;}
.y40{bottom:643.425000px;}
.y5e{bottom:645.045000px;}
.y131{bottom:646.305000px;}
.yc4{bottom:647.205000px;}
.ya0{bottom:649.005000px;}
.yea{bottom:652.065000px;}
.y15e{bottom:653.145000px;}
.y81{bottom:661.425000px;}
.y11e{bottom:663.765000px;}
.y1c{bottom:670.245000px;}
.y3f{bottom:674.565000px;}
.y5d{bottom:676.005000px;}
.y15d{bottom:676.905000px;}
.y9f{bottom:679.965000px;}
.ye9{bottom:684.105000px;}
.y144{bottom:685.005000px;}
.y80{bottom:692.385000px;}
.y11d{bottom:694.725000px;}
.y130{bottom:696.165000px;}
.y15c{bottom:700.845000px;}
.y1b{bottom:701.205000px;}
.ybe{bottom:704.265000px;}
.y3e{bottom:705.525000px;}
.y143{bottom:705.705000px;}
.y5c{bottom:707.145000px;}
.y9e{bottom:710.925000px;}
.ye8{bottom:715.965000px;}
.y7f{bottom:723.525000px;}
.y15b{bottom:724.605000px;}
.y11c{bottom:725.865000px;}
.y1a{bottom:732.345000px;}
.y3d{bottom:736.665000px;}
.y5b{bottom:738.105000px;}
.y9d{bottom:742.065000px;}
.ye5{bottom:748.005000px;}
.y15a{bottom:748.365000px;}
.y7e{bottom:754.485000px;}
.ybf{bottom:756.825000px;}
.y19{bottom:763.305000px;}
.y3c{bottom:767.625000px;}
.y5a{bottom:769.245000px;}
.y159{bottom:772.125000px;}
.y9c{bottom:773.025000px;}
.ye4{bottom:779.865000px;}
.y7d{bottom:785.625000px;}
.y11b{bottom:787.965000px;}
.y18{bottom:794.445000px;}
.y158{bottom:795.885000px;}
.y3b{bottom:798.765000px;}
.y59{bottom:800.205000px;}
.y9b{bottom:804.165000px;}
.y7c{bottom:813.525000px;}
.yb9{bottom:814.065000px;}
.ye3{bottom:817.125000px;}
.y11a{bottom:818.925000px;}
.y157{bottom:819.825000px;}
.y17{bottom:825.405000px;}
.y58{bottom:828.285000px;}
.y3a{bottom:829.725000px;}
.y9a{bottom:834.765000px;}
.y105{bottom:837.825000px;}
.y119{bottom:839.805000px;}
.y7b{bottom:845.025000px;}
.ye2{bottom:849.705000px;}
.y104{bottom:858.525000px;}
.y57{bottom:859.605000px;}
.y39{bottom:860.865000px;}
.y99{bottom:863.205000px;}
.y156{bottom:863.745000px;}
.y118{bottom:863.925000px;}
.ybb{bottom:866.625000px;}
.y7a{bottom:875.985000px;}
.y16{bottom:887.730000px;}
.y56{bottom:890.790000px;}
.y38{bottom:891.870000px;}
.y98{bottom:894.570000px;}
.y103{bottom:899.610000px;}
.y117{bottom:901.410000px;}
.y79{bottom:906.990000px;}
.y15{bottom:908.430000px;}
.y55{bottom:921.750000px;}
.y37{bottom:923.010000px;}
.yb4{bottom:923.910000px;}
.y97{bottom:925.710000px;}
.y14{bottom:929.130000px;}
.y116{bottom:929.850000px;}
.y102{bottom:931.470000px;}
.y78{bottom:935.070000px;}
.y17b{bottom:945.510000px;}
.y13{bottom:949.830000px;}
.y36{bottom:953.970000px;}
.y54{bottom:954.150000px;}
.y96{bottom:956.670000px;}
.y113{bottom:958.470000px;}
.y101{bottom:963.510000px;}
.y77{bottom:968.370000px;}
.y12{bottom:970.530000px;}
.y17a{bottom:973.590000px;}
.yb7{bottom:976.470000px;}
.y35{bottom:985.110000px;}
.y112{bottom:986.910000px;}
.y95{bottom:987.810000px;}
.y11{bottom:991.230000px;}
.y100{bottom:995.370000px;}
.y179{bottom:997.530000px;}
.y76{bottom:1000.950000px;}
.y10{bottom:1011.930000px;}
.y34{bottom:1016.070000px;}
.y53{bottom:1016.250000px;}
.y94{bottom:1018.770000px;}
.y110{bottom:1020.570000px;}
.y178{bottom:1021.290000px;}
.yff{bottom:1027.410000px;}
.yf{bottom:1032.630000px;}
.y75{bottom:1033.710000px;}
.yb3{bottom:1034.430000px;}
.y177{bottom:1045.050000px;}
.y33{bottom:1047.210000px;}
.y52{bottom:1048.650000px;}
.y93{bottom:1049.910000px;}
.ye{bottom:1053.330000px;}
.y74{bottom:1054.410000px;}
.yfe{bottom:1059.270000px;}
.yb1{bottom:1067.190000px;}
.y176{bottom:1068.810000px;}
.yd{bottom:1073.670000px;}
.y12f{bottom:1077.810000px;}
.y10f{bottom:1077.990000px;}
.y32{bottom:1078.170000px;}
.y51{bottom:1079.610000px;}
.y92{bottom:1080.870000px;}
.y73{bottom:1087.170000px;}
.y175{bottom:1092.750000px;}
.yc{bottom:1094.370000px;}
.yfd{bottom:1096.530000px;}
.y31{bottom:1109.310000px;}
.y50{bottom:1110.750000px;}
.y91{bottom:1112.010000px;}
.y174{bottom:1116.510000px;}
.y72{bottom:1119.750000px;}
.yfc{bottom:1129.290000px;}
.y6{bottom:1131.270000px;}
.y4f{bottom:1139.940000px;}
.y30{bottom:1140.300000px;}
.y71{bottom:1140.480000px;}
.y5{bottom:1144.980000px;}
.y4{bottom:1159.560000px;}
.y3{bottom:1176.480000px;}
.y2f{bottom:1191.780000px;}
.y2{bottom:1193.760000px;}
.y1{bottom:1211.040000px;}
.h1e{height:17.100000px;}
.h1d{height:17.280000px;}
.h23{height:18.900000px;}
.h1f{height:19.080000px;}
.h24{height:19.116000px;}
.h1a{height:20.520000px;}
.hf{height:20.700000px;}
.h1b{height:20.736000px;}
.h7{height:36.720000px;}
.h22{height:37.800000px;}
.h21{height:37.980000px;}
.h11{height:41.400000px;}
.h13{height:41.436000px;}
.h5{height:47.344922px;}
.ha{height:50.800781px;}
.h6{height:52.998047px;}
.h9{height:58.621992px;}
.h4{height:58.651172px;}
.h3{height:60.226875px;}
.h17{height:62.100000px;}
.h2{height:62.327813px;}
.h1c{height:65.010937px;}
.h20{height:66.757500px;}
.h19{height:70.628906px;}
.hb{height:70.664062px;}
.hd{height:72.562500px;}
.he{height:74.004654px;}
.hc{height:74.704922px;}
.h18{height:84.898125px;}
.h10{height:93.960000px;}
.h12{height:93.996000px;}
.h15{height:94.140000px;}
.h14{height:94.176000px;}
.h8{height:96.508125px;}
.h16{height:117.036000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w8{width:19.440000px;}
.wd{width:32.940000px;}
.w17{width:52.020000px;}
.w1d{width:60.480000px;}
.w18{width:63.576000px;}
.w24{width:68.580000px;}
.w3{width:68.760000px;}
.w1e{width:69.840000px;}
.w1c{width:74.916000px;}
.w9{width:82.656000px;}
.w2a{width:82.836000px;}
.w1f{width:83.016000px;}
.w29{width:83.700000px;}
.w26{width:84.780000px;}
.w20{width:92.700000px;}
.wa{width:93.240000px;}
.wb{width:93.276000px;}
.w19{width:93.960000px;}
.we{width:100.296000px;}
.wc{width:100.980000px;}
.wf{width:101.016000px;}
.w16{width:104.076000px;}
.w12{width:111.240000px;}
.w13{width:113.076000px;}
.w6{width:113.220000px;}
.w23{width:121.320000px;}
.w25{width:151.230000px;}
.w22{width:163.830000px;}
.w28{width:172.110000px;}
.w1b{width:177.330000px;}
.w7{width:178.770000px;}
.w15{width:256.890000px;}
.w11{width:309.315000px;}
.w10{width:538.125000px;}
.w14{width:579.525000px;}
.w4{width:608.325000px;}
.w27{width:648.645000px;}
.w5{width:670.965000px;}
.w1a{width:672.585000px;}
.w21{width:676.005000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:9.000000px;}
.x40{left:11.520000px;}
.x45{left:12.600000px;}
.x46{left:13.680000px;}
.x31{left:18.000000px;}
.x33{left:19.260000px;}
.x36{left:20.520000px;}
.x37{left:23.040000px;}
.x50{left:25.200000px;}
.x4f{left:28.080000px;}
.x3a{left:29.880000px;}
.x38{left:30.960000px;}
.x39{left:32.040000px;}
.x2{left:38.514000px;}
.x54{left:39.600000px;}
.x35{left:41.940000px;}
.x28{left:46.620000px;}
.x2b{left:48.240000px;}
.x2c{left:50.085000px;}
.x2a{left:51.525000px;}
.x49{left:58.680000px;}
.x4d{left:73.440000px;}
.x47{left:79.734000px;}
.x52{left:83.874000px;}
.x3d{left:86.754000px;}
.x2e{left:126.225000px;}
.x1{left:127.655987px;}
.x15{left:129.816000px;}
.x6{left:132.155987px;}
.xf{left:135.935987px;}
.x7{left:139.355987px;}
.x51{left:143.496000px;}
.xe{left:145.115987px;}
.x26{left:152.325000px;}
.x11{left:154.649987px;}
.x10{left:161.489987px;}
.x2d{left:178.050000px;}
.x12{left:181.649987px;}
.x23{left:185.789987px;}
.x25{left:198.750000px;}
.x3{left:199.830000px;}
.x13{left:208.649987px;}
.x22{left:214.409987px;}
.x9{left:226.649987px;}
.x21{left:233.489987px;}
.x14{left:235.649987px;}
.x17{left:245.370000px;}
.xb{left:260.849987px;}
.x4{left:283.395000px;}
.x5{left:284.475000px;}
.x48{left:295.995000px;}
.x3e{left:311.295000px;}
.x24{left:314.534987px;}
.x53{left:317.775000px;}
.xa{left:323.534987px;}
.xd{left:352.334987px;}
.xc{left:388.694987px;}
.x3c{left:394.274987px;}
.x55{left:403.635000px;}
.x3f{left:414.615000px;}
.x4a{left:419.655000px;}
.x18{left:426.495000px;}
.x2f{left:437.295000px;}
.x19{left:448.275000px;}
.x1d{left:461.775000px;}
.x8{left:467.894987px;}
.x56{left:480.705000px;}
.x41{left:491.685000px;}
.x4b{left:496.725000px;}
.x27{left:510.225000px;}
.x1a{left:533.085000px;}
.x30{left:543.525000px;}
.x42{left:554.325000px;}
.x1e{left:564.405000px;}
.x4c{left:567.645000px;}
.x32{left:597.885000px;}
.x57{left:614.265000px;}
.x29{left:623.805000px;}
.x43{left:626.325000px;}
.x1b{left:628.665000px;}
.x1f{left:659.805000px;}
.x34{left:663.630000px;}
.x58{left:699.450000px;}
.x44{left:711.510000px;}
.x4e{left:721.050000px;}
.x1c{left:724.110000px;}
.x20{left:755.430000px;}
.x3b{left:777.209987px;}
@media print{
.v3{vertical-align:-75.040000pt;}
.v7{vertical-align:-72.960000pt;}
.v6{vertical-align:-71.680000pt;}
.v1{vertical-align:-58.880000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v2{vertical-align:24.320000pt;}
.ls11{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.097067pt;}
.ls10{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.096000pt;}
.lse{letter-spacing:0.120533pt;}
.lsb{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:19.200000pt;}
.ls5{letter-spacing:30.208000pt;}
.ls3{letter-spacing:38.560000pt;}
.ls9{letter-spacing:48.768000pt;}
.lsa{letter-spacing:56.912640pt;}
.ls13{letter-spacing:79.978667pt;}
.ls14{letter-spacing:178.698667pt;}
.ls4{letter-spacing:1063.818667pt;}
.ls15{letter-spacing:1132.458667pt;}
.ws8{word-spacing:-64.000000pt;}
.ws7{word-spacing:-53.120000pt;}
.ws2{word-spacing:-21.600000pt;}
.wsa{word-spacing:-16.256000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.wsd{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.622933pt;}
.ws0{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws1{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.185067pt;}
.ws6{word-spacing:0.000000pt;}
._13{margin-left:-4.032000pt;}
._14{margin-left:-3.050027pt;}
._d{margin-left:-1.930667pt;}
._2{margin-left:-0.976000pt;}
._0{width:1.002027pt;}
._1{width:2.124800pt;}
._e{width:3.507200pt;}
._a{width:4.672000pt;}
._7{width:6.144000pt;}
._8{width:7.136640pt;}
._9{width:8.360107pt;}
._18{width:9.479680pt;}
._19{width:10.417920pt;}
._f{width:11.584000pt;}
._10{width:12.762667pt;}
._16{width:13.808640pt;}
._15{width:14.912000pt;}
._5{width:16.961920pt;}
._6{width:17.941973pt;}
._17{width:18.986027pt;}
._23{width:20.044587pt;}
._b{width:21.120000pt;}
._c{width:22.549973pt;}
._21{width:25.280000pt;}
._22{width:26.325973pt;}
._1f{width:29.198720pt;}
._1e{width:30.816640pt;}
._1b{width:32.896000pt;}
._25{width:49.920000pt;}
._26{width:51.072640pt;}
._1c{width:54.080000pt;}
._1d{width:55.648640pt;}
._1a{width:60.224000pt;}
._20{width:159.978667pt;}
._24{width:161.095680pt;}
._4{width:178.610133pt;}
._12{width:513.731627pt;}
._3{width:553.649707pt;}
._11{width:690.218667pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y114{bottom:2.880000pt;}
.y111{bottom:3.040000pt;}
.y115{bottom:3.200000pt;}
.ya{bottom:3.360000pt;}
.ye6{bottom:3.520000pt;}
.yb2{bottom:3.680000pt;}
.ye7{bottom:3.840000pt;}
.yc0{bottom:4.000000pt;}
.y132{bottom:11.680000pt;}
.y8{bottom:12.800000pt;}
.y9{bottom:18.560000pt;}
.y135{bottom:20.000000pt;}
.y133{bottom:20.160000pt;}
.y136{bottom:20.320000pt;}
.y138{bottom:20.480000pt;}
.yb{bottom:22.080000pt;}
.ybc{bottom:22.120000pt;}
.yb8{bottom:22.400000pt;}
.ybd{bottom:22.440000pt;}
.y7{bottom:34.080000pt;}
.ycd{bottom:40.480000pt;}
.yce{bottom:40.800000pt;}
.yb6{bottom:50.400000pt;}
.yc7{bottom:50.560000pt;}
.yc3{bottom:50.586667pt;}
.yb5{bottom:68.800000pt;}
.yba{bottom:68.840000pt;}
.yc6{bottom:68.960000pt;}
.yc2{bottom:68.986667pt;}
.ycb{bottom:70.920000pt;}
.yca{bottom:89.320000pt;}
.y70{bottom:98.400000pt;}
.y10e{bottom:100.960000pt;}
.y2e{bottom:103.680000pt;}
.y142{bottom:104.640000pt;}
.yb0{bottom:107.520000pt;}
.y155{bottom:108.160000pt;}
.y173{bottom:115.072000pt;}
.y6f{bottom:116.832000pt;}
.ye1{bottom:119.712000pt;}
.yd5{bottom:125.152000pt;}
.y10d{bottom:128.672000pt;}
.y12e{bottom:129.952000pt;}
.yfb{bottom:130.592000pt;}
.y2d{bottom:131.392000pt;}
.y6e{bottom:135.226667pt;}
.y172{bottom:136.186667pt;}
.y141{bottom:139.546667pt;}
.ye0{bottom:147.386667pt;}
.yd4{bottom:152.826667pt;}
.y154{bottom:153.786667pt;}
.y10c{bottom:156.186667pt;}
.y12d{bottom:156.506667pt;}
.y171{bottom:157.306667pt;}
.yfa{bottom:158.106667pt;}
.y2c{bottom:158.906667pt;}
.yaf{bottom:162.746667pt;}
.y6d{bottom:164.346667pt;}
.y90{bottom:173.786667pt;}
.ydf{bottom:174.906667pt;}
.y140{bottom:176.506667pt;}
.y170{bottom:178.586667pt;}
.y153{bottom:178.746667pt;}
.yd3{bottom:180.346667pt;}
.y12c{bottom:181.786667pt;}
.y10b{bottom:183.866667pt;}
.yf9{bottom:184.666667pt;}
.y4e{bottom:185.626667pt;}
.y2b{bottom:186.586667pt;}
.yae{bottom:190.426667pt;}
.y6c{bottom:191.706667pt;}
.yde{bottom:193.146667pt;}
.y16f{bottom:199.706667pt;}
.y8f{bottom:201.466667pt;}
.y152{bottom:206.426667pt;}
.y12b{bottom:207.066667pt;}
.yd2{bottom:208.026667pt;}
.yf8{bottom:209.946667pt;}
.y2a{bottom:211.386667pt;}
.ydd{bottom:211.546667pt;}
.y4d{bottom:213.146667pt;}
.y13f{bottom:213.306667pt;}
.y6b{bottom:216.666667pt;}
.yad{bottom:217.946667pt;}
.y16e{bottom:220.826667pt;}
.y8e{bottom:228.986667pt;}
.ydc{bottom:229.946667pt;}
.y12a{bottom:232.506667pt;}
.y151{bottom:233.946667pt;}
.yf7{bottom:235.226667pt;}
.yd1{bottom:235.546667pt;}
.y10a{bottom:238.906667pt;}
.y29{bottom:239.386667pt;}
.y4c{bottom:240.826667pt;}
.y16d{bottom:241.946667pt;}
.y6a{bottom:244.506667pt;}
.yac{bottom:245.626667pt;}
.ydb{bottom:248.026667pt;}
.y13e{bottom:250.106667pt;}
.y8d{bottom:256.666667pt;}
.y129{bottom:258.746667pt;}
.yf6{bottom:260.666667pt;}
.y150{bottom:261.626667pt;}
.y16c{bottom:263.066667pt;}
.yda{bottom:263.386667pt;}
.yd0{bottom:265.146667pt;}
.y109{bottom:266.586667pt;}
.y28{bottom:266.906667pt;}
.y4b{bottom:268.346667pt;}
.y69{bottom:272.186667pt;}
.yab{bottom:273.146667pt;}
.yd9{bottom:278.746667pt;}
.y13d{bottom:281.626667pt;}
.y8c{bottom:284.186667pt;}
.y16b{bottom:284.346667pt;}
.yf5{bottom:285.946667pt;}
.ycf{bottom:286.426667pt;}
.y14f{bottom:289.146667pt;}
.yd8{bottom:294.106667pt;}
.y27{bottom:294.426667pt;}
.y4a{bottom:296.026667pt;}
.y68{bottom:299.706667pt;}
.yaa{bottom:300.826667pt;}
.y16a{bottom:305.466667pt;}
.y13c{bottom:309.306667pt;}
.yd7{bottom:309.466667pt;}
.yf4{bottom:311.226667pt;}
.y8b{bottom:311.866667pt;}
.yc9{bottom:312.826667pt;}
.y128{bottom:313.946667pt;}
.y14e{bottom:316.826667pt;}
.yd6{bottom:321.466667pt;}
.y108{bottom:321.786667pt;}
.y26{bottom:322.106667pt;}
.y49{bottom:323.546667pt;}
.y169{bottom:326.586667pt;}
.y67{bottom:327.386667pt;}
.ya9{bottom:328.346667pt;}
.yf3{bottom:336.506667pt;}
.y8a{bottom:339.426667pt;}
.y107{bottom:340.066667pt;}
.y127{bottom:341.506667pt;}
.y14d{bottom:344.386667pt;}
.y13b{bottom:345.186667pt;}
.y168{bottom:347.746667pt;}
.y25{bottom:349.666667pt;}
.y48{bottom:351.266667pt;}
.y106{bottom:354.786667pt;}
.y66{bottom:354.946667pt;}
.ya8{bottom:356.066667pt;}
.ycc{bottom:361.666667pt;}
.yf2{bottom:361.826667pt;}
.y13a{bottom:363.746667pt;}
.y89{bottom:367.106667pt;}
.y167{bottom:369.026667pt;}
.y126{bottom:369.186667pt;}
.y14c{bottom:372.066667pt;}
.y24{bottom:377.346667pt;}
.y47{bottom:378.786667pt;}
.y65{bottom:382.626667pt;}
.ya7{bottom:383.586667pt;}
.yf1{bottom:387.106667pt;}
.y166{bottom:390.146667pt;}
.y88{bottom:394.626667pt;}
.y125{bottom:396.706667pt;}
.y139{bottom:398.626667pt;}
.y14b{bottom:399.586667pt;}
.y23{bottom:402.146667pt;}
.y46{bottom:406.306667pt;}
.y64{bottom:410.146667pt;}
.ya6{bottom:411.266667pt;}
.yf0{bottom:413.506667pt;}
.y87{bottom:422.306667pt;}
.y124{bottom:424.386667pt;}
.y14a{bottom:427.266667pt;}
.y22{bottom:429.826667pt;}
.yc5{bottom:430.786667pt;}
.y165{bottom:432.386667pt;}
.y45{bottom:433.986667pt;}
.y63{bottom:435.106667pt;}
.y137{bottom:435.426667pt;}
.ya5{bottom:438.786667pt;}
.yef{bottom:441.026667pt;}
.y86{bottom:449.826667pt;}
.y123{bottom:451.906667pt;}
.y164{bottom:453.666667pt;}
.y149{bottom:454.786667pt;}
.y21{bottom:457.346667pt;}
.y44{bottom:461.506667pt;}
.y62{bottom:462.946667pt;}
.ya4{bottom:466.466667pt;}
.yee{bottom:468.706667pt;}
.y163{bottom:474.786667pt;}
.y85{bottom:477.506667pt;}
.yc8{bottom:477.666667pt;}
.y122{bottom:479.586667pt;}
.y148{bottom:482.466667pt;}
.y20{bottom:485.026667pt;}
.y43{bottom:489.186667pt;}
.y61{bottom:490.626667pt;}
.ya3{bottom:493.986667pt;}
.y162{bottom:495.906667pt;}
.yed{bottom:496.226667pt;}
.y84{bottom:505.026667pt;}
.y121{bottom:507.106667pt;}
.y147{bottom:509.986667pt;}
.y1f{bottom:512.866667pt;}
.yec{bottom:514.786667pt;}
.y42{bottom:516.706667pt;}
.y161{bottom:517.026667pt;}
.y60{bottom:518.146667pt;}
.ya2{bottom:521.666667pt;}
.y134{bottom:526.146667pt;}
.yc1{bottom:528.386667pt;}
.y83{bottom:532.706667pt;}
.y120{bottom:534.786667pt;}
.y146{bottom:537.506667pt;}
.y160{bottom:538.306667pt;}
.y1e{bottom:540.546667pt;}
.y41{bottom:544.386667pt;}
.y5f{bottom:545.666667pt;}
.ya1{bottom:549.186667pt;}
.yeb{bottom:551.266667pt;}
.y15f{bottom:559.426667pt;}
.y82{bottom:560.226667pt;}
.y11f{bottom:562.333333pt;}
.y145{bottom:565.213333pt;}
.y1d{bottom:568.093333pt;}
.y40{bottom:571.933333pt;}
.y5e{bottom:573.373333pt;}
.y131{bottom:574.493333pt;}
.yc4{bottom:575.293333pt;}
.ya0{bottom:576.893333pt;}
.yea{bottom:579.613333pt;}
.y15e{bottom:580.573333pt;}
.y81{bottom:587.933333pt;}
.y11e{bottom:590.013333pt;}
.y1c{bottom:595.773333pt;}
.y3f{bottom:599.613333pt;}
.y5d{bottom:600.893333pt;}
.y15d{bottom:601.693333pt;}
.y9f{bottom:604.413333pt;}
.ye9{bottom:608.093333pt;}
.y144{bottom:608.893333pt;}
.y80{bottom:615.453333pt;}
.y11d{bottom:617.533333pt;}
.y130{bottom:618.813333pt;}
.y15c{bottom:622.973333pt;}
.y1b{bottom:623.293333pt;}
.ybe{bottom:626.013333pt;}
.y3e{bottom:627.133333pt;}
.y143{bottom:627.293333pt;}
.y5c{bottom:628.573333pt;}
.y9e{bottom:631.933333pt;}
.ye8{bottom:636.413333pt;}
.y7f{bottom:643.133333pt;}
.y15b{bottom:644.093333pt;}
.y11c{bottom:645.213333pt;}
.y1a{bottom:650.973333pt;}
.y3d{bottom:654.813333pt;}
.y5b{bottom:656.093333pt;}
.y9d{bottom:659.613333pt;}
.ye5{bottom:664.893333pt;}
.y15a{bottom:665.213333pt;}
.y7e{bottom:670.653333pt;}
.ybf{bottom:672.733333pt;}
.y19{bottom:678.493333pt;}
.y3c{bottom:682.333333pt;}
.y5a{bottom:683.773333pt;}
.y159{bottom:686.333333pt;}
.y9c{bottom:687.133333pt;}
.ye4{bottom:693.213333pt;}
.y7d{bottom:698.333333pt;}
.y11b{bottom:700.413333pt;}
.y18{bottom:706.173333pt;}
.y158{bottom:707.453333pt;}
.y3b{bottom:710.013333pt;}
.y59{bottom:711.293333pt;}
.y9b{bottom:714.813333pt;}
.y7c{bottom:723.133333pt;}
.yb9{bottom:723.613333pt;}
.ye3{bottom:726.333333pt;}
.y11a{bottom:727.933333pt;}
.y157{bottom:728.733333pt;}
.y17{bottom:733.693333pt;}
.y58{bottom:736.253333pt;}
.y3a{bottom:737.533333pt;}
.y9a{bottom:742.013333pt;}
.y105{bottom:744.733333pt;}
.y119{bottom:746.493333pt;}
.y7b{bottom:751.133333pt;}
.ye2{bottom:755.293333pt;}
.y104{bottom:763.133333pt;}
.y57{bottom:764.093333pt;}
.y39{bottom:765.213333pt;}
.y99{bottom:767.293333pt;}
.y156{bottom:767.773333pt;}
.y118{bottom:767.933333pt;}
.ybb{bottom:770.333333pt;}
.y7a{bottom:778.653333pt;}
.y16{bottom:789.093333pt;}
.y56{bottom:791.813333pt;}
.y38{bottom:792.773333pt;}
.y98{bottom:795.173333pt;}
.y103{bottom:799.653333pt;}
.y117{bottom:801.253333pt;}
.y79{bottom:806.213333pt;}
.y15{bottom:807.493333pt;}
.y55{bottom:819.333333pt;}
.y37{bottom:820.453333pt;}
.yb4{bottom:821.253333pt;}
.y97{bottom:822.853333pt;}
.y14{bottom:825.893333pt;}
.y116{bottom:826.533333pt;}
.y102{bottom:827.973333pt;}
.y78{bottom:831.173333pt;}
.y17b{bottom:840.453333pt;}
.y13{bottom:844.293333pt;}
.y36{bottom:847.973333pt;}
.y54{bottom:848.133333pt;}
.y96{bottom:850.373333pt;}
.y113{bottom:851.973333pt;}
.y101{bottom:856.453333pt;}
.y77{bottom:860.773333pt;}
.y12{bottom:862.693333pt;}
.y17a{bottom:865.413333pt;}
.yb7{bottom:867.973333pt;}
.y35{bottom:875.653333pt;}
.y112{bottom:877.253333pt;}
.y95{bottom:878.053333pt;}
.y11{bottom:881.093333pt;}
.y100{bottom:884.773333pt;}
.y179{bottom:886.693333pt;}
.y76{bottom:889.733333pt;}
.y10{bottom:899.493333pt;}
.y34{bottom:903.173333pt;}
.y53{bottom:903.333333pt;}
.y94{bottom:905.573333pt;}
.y110{bottom:907.173333pt;}
.y178{bottom:907.813333pt;}
.yff{bottom:913.253333pt;}
.yf{bottom:917.893333pt;}
.y75{bottom:918.853333pt;}
.yb3{bottom:919.493333pt;}
.y177{bottom:928.933333pt;}
.y33{bottom:930.853333pt;}
.y52{bottom:932.133333pt;}
.y93{bottom:933.253333pt;}
.ye{bottom:936.293333pt;}
.y74{bottom:937.253333pt;}
.yfe{bottom:941.573333pt;}
.yb1{bottom:948.613333pt;}
.y176{bottom:950.053333pt;}
.yd{bottom:954.373333pt;}
.y12f{bottom:958.053333pt;}
.y10f{bottom:958.213333pt;}
.y32{bottom:958.373333pt;}
.y51{bottom:959.653333pt;}
.y92{bottom:960.773333pt;}
.y73{bottom:966.373333pt;}
.y175{bottom:971.333333pt;}
.yc{bottom:972.773333pt;}
.yfd{bottom:974.693333pt;}
.y31{bottom:986.053333pt;}
.y50{bottom:987.333333pt;}
.y91{bottom:988.453333pt;}
.y174{bottom:992.453333pt;}
.y72{bottom:995.333333pt;}
.yfc{bottom:1003.813333pt;}
.y6{bottom:1005.573333pt;}
.y4f{bottom:1013.280000pt;}
.y30{bottom:1013.600000pt;}
.y71{bottom:1013.760000pt;}
.y5{bottom:1017.760000pt;}
.y4{bottom:1030.720000pt;}
.y3{bottom:1045.760000pt;}
.y2f{bottom:1059.360000pt;}
.y2{bottom:1061.120000pt;}
.y1{bottom:1076.480000pt;}
.h1e{height:15.200000pt;}
.h1d{height:15.360000pt;}
.h23{height:16.800000pt;}
.h1f{height:16.960000pt;}
.h24{height:16.992000pt;}
.h1a{height:18.240000pt;}
.hf{height:18.400000pt;}
.h1b{height:18.432000pt;}
.h7{height:32.640000pt;}
.h22{height:33.600000pt;}
.h21{height:33.760000pt;}
.h11{height:36.800000pt;}
.h13{height:36.832000pt;}
.h5{height:42.084375pt;}
.ha{height:45.156250pt;}
.h6{height:47.109375pt;}
.h9{height:52.108438pt;}
.h4{height:52.134375pt;}
.h3{height:53.535000pt;}
.h17{height:55.200000pt;}
.h2{height:55.402500pt;}
.h1c{height:57.787500pt;}
.h20{height:59.340000pt;}
.h19{height:62.781250pt;}
.hb{height:62.812500pt;}
.hd{height:64.500000pt;}
.he{height:65.781915pt;}
.hc{height:66.404375pt;}
.h18{height:75.465000pt;}
.h10{height:83.520000pt;}
.h12{height:83.552000pt;}
.h15{height:83.680000pt;}
.h14{height:83.712000pt;}
.h8{height:85.785000pt;}
.h16{height:104.032000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w8{width:17.280000pt;}
.wd{width:29.280000pt;}
.w17{width:46.240000pt;}
.w1d{width:53.760000pt;}
.w18{width:56.512000pt;}
.w24{width:60.960000pt;}
.w3{width:61.120000pt;}
.w1e{width:62.080000pt;}
.w1c{width:66.592000pt;}
.w9{width:73.472000pt;}
.w2a{width:73.632000pt;}
.w1f{width:73.792000pt;}
.w29{width:74.400000pt;}
.w26{width:75.360000pt;}
.w20{width:82.400000pt;}
.wa{width:82.880000pt;}
.wb{width:82.912000pt;}
.w19{width:83.520000pt;}
.we{width:89.152000pt;}
.wc{width:89.760000pt;}
.wf{width:89.792000pt;}
.w16{width:92.512000pt;}
.w12{width:98.880000pt;}
.w13{width:100.512000pt;}
.w6{width:100.640000pt;}
.w23{width:107.840000pt;}
.w25{width:134.426667pt;}
.w22{width:145.626667pt;}
.w28{width:152.986667pt;}
.w1b{width:157.626667pt;}
.w7{width:158.906667pt;}
.w15{width:228.346667pt;}
.w11{width:274.946667pt;}
.w10{width:478.333333pt;}
.w14{width:515.133333pt;}
.w4{width:540.733333pt;}
.w27{width:576.573333pt;}
.w5{width:596.413333pt;}
.w1a{width:597.853333pt;}
.w21{width:600.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:8.000000pt;}
.x40{left:10.240000pt;}
.x45{left:11.200000pt;}
.x46{left:12.160000pt;}
.x31{left:16.000000pt;}
.x33{left:17.120000pt;}
.x36{left:18.240000pt;}
.x37{left:20.480000pt;}
.x50{left:22.400000pt;}
.x4f{left:24.960000pt;}
.x3a{left:26.560000pt;}
.x38{left:27.520000pt;}
.x39{left:28.480000pt;}
.x2{left:34.234667pt;}
.x54{left:35.200000pt;}
.x35{left:37.280000pt;}
.x28{left:41.440000pt;}
.x2b{left:42.880000pt;}
.x2c{left:44.520000pt;}
.x2a{left:45.800000pt;}
.x49{left:52.160000pt;}
.x4d{left:65.280000pt;}
.x47{left:70.874667pt;}
.x52{left:74.554667pt;}
.x3d{left:77.114667pt;}
.x2e{left:112.200000pt;}
.x1{left:113.471988pt;}
.x15{left:115.392000pt;}
.x6{left:117.471988pt;}
.xf{left:120.831988pt;}
.x7{left:123.871988pt;}
.x51{left:127.552000pt;}
.xe{left:128.991988pt;}
.x26{left:135.400000pt;}
.x11{left:137.466655pt;}
.x10{left:143.546655pt;}
.x2d{left:158.266667pt;}
.x12{left:161.466655pt;}
.x23{left:165.146655pt;}
.x25{left:176.666667pt;}
.x3{left:177.626667pt;}
.x13{left:185.466655pt;}
.x22{left:190.586655pt;}
.x9{left:201.466655pt;}
.x21{left:207.546655pt;}
.x14{left:209.466655pt;}
.x17{left:218.106667pt;}
.xb{left:231.866655pt;}
.x4{left:251.906667pt;}
.x5{left:252.866667pt;}
.x48{left:263.106667pt;}
.x3e{left:276.706667pt;}
.x24{left:279.586655pt;}
.x53{left:282.466667pt;}
.xa{left:287.586655pt;}
.xd{left:313.186655pt;}
.xc{left:345.506655pt;}
.x3c{left:350.466655pt;}
.x55{left:358.786667pt;}
.x3f{left:368.546667pt;}
.x4a{left:373.026667pt;}
.x18{left:379.106667pt;}
.x2f{left:388.706667pt;}
.x19{left:398.466667pt;}
.x1d{left:410.466667pt;}
.x8{left:415.906655pt;}
.x56{left:427.293333pt;}
.x41{left:437.053333pt;}
.x4b{left:441.533333pt;}
.x27{left:453.533333pt;}
.x1a{left:473.853333pt;}
.x30{left:483.133333pt;}
.x42{left:492.733333pt;}
.x1e{left:501.693333pt;}
.x4c{left:504.573333pt;}
.x32{left:531.453333pt;}
.x57{left:546.013333pt;}
.x29{left:554.493333pt;}
.x43{left:556.733333pt;}
.x1b{left:558.813333pt;}
.x1f{left:586.493333pt;}
.x34{left:589.893333pt;}
.x58{left:621.733333pt;}
.x44{left:632.453333pt;}
.x4e{left:640.933333pt;}
.x1c{left:643.653333pt;}
.x20{left:671.493333pt;}
.x3b{left:690.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; }
  