
    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_1070e903802f2ef13c84a9d8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a6b339a1419de77690b30399.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e31979a78b80ad0e3b8b6687.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005371;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_cc6df9e5307f5bb7558b563c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.862793;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_1ab7aac3ea72d07d84d82deb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_068bc7555cac9bdc5902b945.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_d71e9e9198860d802c43fa71.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_02e8e348ce278e2c968b4b92.woff2')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_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.690918;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_e37a99cf299a05021fff4593.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_09a8d93bfaaac1093d4a04df.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.005371;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:ffc;src:url('chunks/assets/font_33b02176293e498c01db74c2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.372070;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);}
.v4{vertical-align:-33.120000px;}
.v6{vertical-align:-27.360000px;}
.v3{vertical-align:-23.760000px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:30.240000px;}
.v1{vertical-align:33.120000px;}
.lse{letter-spacing:-1.134000px;}
.ls8{letter-spacing:-0.457800px;}
.ls14{letter-spacing:-0.414600px;}
.ls7{letter-spacing:-0.305400px;}
.ls9{letter-spacing:-0.262200px;}
.ls4{letter-spacing:-0.223800px;}
.lsb{letter-spacing:-0.152400px;}
.lsc{letter-spacing:-0.109200px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.022320px;}
.lsd{letter-spacing:0.109200px;}
.ls12{letter-spacing:0.152400px;}
.ls3{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.262200px;}
.ls11{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.567600px;}
.ls10{letter-spacing:29.069280px;}
.ls6{letter-spacing:30.545280px;}
.ls5{letter-spacing:36.305280px;}
.lsf{letter-spacing:37.025280px;}
.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;}
}
.ws4{word-spacing:-66.240000px;}
.wsc{word-spacing:-48.240000px;}
.ws12{word-spacing:-41.760000px;}
.ws0{word-spacing:-21.060000px;}
.wsd{word-spacing:-17.127600px;}
.ws15{word-spacing:-16.822200px;}
.ws11{word-spacing:-16.712400px;}
.wsf{word-spacing:-16.669200px;}
.wsb{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.450800px;}
.ws7{word-spacing:-16.407600px;}
.ws6{word-spacing:-16.297800px;}
.ws9{word-spacing:-16.254600px;}
.wse{word-spacing:-16.145400px;}
.ws5{word-spacing:-16.102200px;}
.wsa{word-spacing:-15.426000px;}
.ws10{word-spacing:-15.300000px;}
.ws14{word-spacing:-14.940000px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:-10.924560px;}
.ws16{word-spacing:-10.440000px;}
.ws17{word-spacing:-9.720000px;}
.ws13{word-spacing:-9.000000px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-2.222640px;}
._1{margin-left:-1.202400px;}
._2{width:1.202400px;}
._d{width:2.430720px;}
._12{width:3.541680px;}
._5{width:5.318640px;}
._6{width:6.334560px;}
._7{width:8.339520px;}
._8{width:9.671040px;}
._9{width:11.127840px;}
._13{width:12.283920px;}
._b{width:13.367520px;}
._a{width:14.454720px;}
._c{width:15.546720px;}
._0{width:17.606880px;}
._11{width:19.242720px;}
._10{width:20.544480px;}
._f{width:21.996000px;}
._e{width:23.051520px;}
._14{width:24.177600px;}
._15{width:36.590400px;}
._16{width:38.459520px;}
._17{width:192.528000px;}
._4{width:843.240000px;}
.fc5{color:transparent;}
.fc4{color:rgb(63,49,81);}
.fc3{color:rgb(31,73,125);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs2{font-size:120.240000px;}
.y12a{bottom:-13.860000px;}
.y129{bottom:-13.680000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:2.880000px;}
.yfd{bottom:3.600000px;}
.yc5{bottom:4.500000px;}
.y43{bottom:7.380000px;}
.y47{bottom:7.920000px;}
.y9a{bottom:8.100000px;}
.y10a{bottom:9.000000px;}
.y6c{bottom:9.180000px;}
.y111{bottom:9.360000px;}
.y114{bottom:9.405000px;}
.y117{bottom:9.540000px;}
.y119{bottom:9.900000px;}
.y115{bottom:9.945000px;}
.y112{bottom:10.080000px;}
.y64{bottom:10.260000px;}
.yfb{bottom:12.600000px;}
.y39{bottom:14.220000px;}
.y12f{bottom:14.940000px;}
.y137{bottom:15.120000px;}
.y130{bottom:15.300000px;}
.y134{bottom:15.840000px;}
.y132{bottom:15.885000px;}
.y5b{bottom:16.740000px;}
.y10f{bottom:19.620000px;}
.y48{bottom:20.880000px;}
.y52{bottom:20.925000px;}
.y42{bottom:21.240000px;}
.yfc{bottom:21.600000px;}
.y4f{bottom:23.040000px;}
.y99{bottom:25.380000px;}
.y5d{bottom:26.820000px;}
.y46{bottom:29.700000px;}
.y51{bottom:29.745000px;}
.y5a{bottom:30.600000px;}
.y44{bottom:31.530000px;}
.y6a{bottom:32.580000px;}
.y2b{bottom:33.480000px;}
.y4e{bottom:35.100000px;}
.y41{bottom:35.130000px;}
.y98{bottom:42.660000px;}
.y59{bottom:44.280000px;}
.y69{bottom:46.440000px;}
.y4d{bottom:48.780000px;}
.y40{bottom:48.810000px;}
.y108{bottom:56.016000px;}
.y1{bottom:56.700000px;}
.y58{bottom:58.140000px;}
.y63{bottom:58.500000px;}
.y4c{bottom:63.000000px;}
.y3f{bottom:63.030000px;}
.y107{bottom:69.696000px;}
.y57{bottom:72.180000px;}
.y62{bottom:73.080000px;}
.y4b{bottom:77.580000px;}
.y3e{bottom:77.610000px;}
.y56{bottom:86.400000px;}
.y61{bottom:87.330000px;}
.y4a{bottom:91.800000px;}
.y3d{bottom:92.370000px;}
.y67{bottom:94.500000px;}
.y29{bottom:95.580000px;}
.y55{bottom:100.260000px;}
.y60{bottom:103.350000px;}
.yc3{bottom:105.120000px;}
.y3c{bottom:106.590000px;}
.yeb{bottom:110.160000px;}
.y96{bottom:111.420000px;}
.y66{bottom:111.780000px;}
.y49{bottom:112.320000px;}
.y54{bottom:120.780000px;}
.y3b{bottom:127.110000px;}
.y28{bottom:128.520000px;}
.y65{bottom:129.060000px;}
.yc2{bottom:132.120000px;}
.yea{bottom:132.660000px;}
.y95{bottom:135.360000px;}
.y97{bottom:142.020000px;}
.y5f{bottom:142.560000px;}
.ye9{bottom:155.160000px;}
.y27{bottom:157.680000px;}
.yc1{bottom:159.120000px;}
.y26{bottom:176.430000px;}
.ye8{bottom:177.660000px;}
.y128{bottom:180.570000px;}
.yc0{bottom:181.620000px;}
.y25{bottom:193.710000px;}
.ybf{bottom:204.120000px;}
.y127{bottom:204.150000px;}
.ye7{bottom:205.380000px;}
.y24{bottom:211.170000px;}
.y94{bottom:213.660000px;}
.y126{bottom:224.850000px;}
.y23{bottom:229.890000px;}
.ybe{bottom:231.150000px;}
.ye6{bottom:233.490000px;}
.y93{bottom:237.090000px;}
.y125{bottom:245.595000px;}
.y22{bottom:247.170000px;}
.ybd{bottom:253.650000px;}
.ye5{bottom:256.890000px;}
.y5e{bottom:259.770000px;}
.y92{bottom:260.670000px;}
.y21{bottom:264.450000px;}
.y124{bottom:266.295000px;}
.ybc{bottom:276.150000px;}
.ye4{bottom:280.830000px;}
.y20{bottom:281.730000px;}
.y91{bottom:284.070000px;}
.y123{bottom:286.275000px;}
.ybb{bottom:298.650000px;}
.y1f{bottom:299.010000px;}
.y53{bottom:303.330000px;}
.y122{bottom:303.555000px;}
.y90{bottom:307.470000px;}
.y1e{bottom:316.110000px;}
.yba{bottom:325.650000px;}
.ye3{bottom:325.830000px;}
.y121{bottom:326.235000px;}
.y8f{bottom:331.050000px;}
.y1d{bottom:333.390000px;}
.y120{bottom:334.875000px;}
.yb9{bottom:348.150000px;}
.ye2{bottom:348.330000px;}
.y8e{bottom:354.450000px;}
.y1c{bottom:355.530000px;}
.y11f{bottom:364.575000px;}
.y13c{bottom:365.835000px;}
.ye1{bottom:370.830000px;}
.yb8{bottom:375.150000px;}
.y8d{bottom:378.030000px;}
.y1b{bottom:380.730000px;}
.y13b{bottom:388.515000px;}
.y11e{bottom:394.275000px;}
.y8c{bottom:401.430000px;}
.yb7{bottom:402.150000px;}
.ye0{bottom:402.330000px;}
.y1a{bottom:405.975000px;}
.y13a{bottom:416.235000px;}
.y11d{bottom:424.185000px;}
.y8b{bottom:424.830000px;}
.yb6{bottom:429.150000px;}
.y19{bottom:431.175000px;}
.y139{bottom:433.545000px;}
.y50{bottom:437.970000px;}
.ydf{bottom:447.330000px;}
.y8a{bottom:448.410000px;}
.y11c{bottom:454.605000px;}
.yb5{bottom:456.195000px;}
.y18{bottom:456.375000px;}
.y138{bottom:457.665000px;}
.y136{bottom:470.985000px;}
.y89{bottom:471.855000px;}
.y17{bottom:481.575000px;}
.yb4{bottom:483.195000px;}
.yde{bottom:483.375000px;}
.y11b{bottom:485.205000px;}
.y88{bottom:495.435000px;}
.y16{bottom:503.355000px;}
.ydd{bottom:505.875000px;}
.yb3{bottom:510.195000px;}
.y135{bottom:514.365000px;}
.y11a{bottom:514.905000px;}
.y87{bottom:518.835000px;}
.y15{bottom:531.075000px;}
.yb2{bottom:537.195000px;}
.ydc{bottom:541.875000px;}
.y86{bottom:542.235000px;}
.y118{bottom:544.785000px;}
.y133{bottom:556.845000px;}
.y14{bottom:558.615000px;}
.y105{bottom:560.415000px;}
.yb1{bottom:564.195000px;}
.ydb{bottom:564.375000px;}
.y85{bottom:565.815000px;}
.y116{bottom:574.485000px;}
.y104{bottom:581.115000px;}
.y13{bottom:586.155000px;}
.y84{bottom:589.215000px;}
.yb0{bottom:591.195000px;}
.y131{bottom:599.325000px;}
.y103{bottom:600.015000px;}
.yda{bottom:600.375000px;}
.y113{bottom:604.365000px;}
.y45{bottom:607.755000px;}
.y83{bottom:612.795000px;}
.y12{bottom:613.875000px;}
.yaf{bottom:618.195000px;}
.y102{bottom:619.095000px;}
.yd9{bottom:622.875000px;}
.y110{bottom:634.110000px;}
.y82{bottom:636.195000px;}
.y101{bottom:637.995000px;}
.y11{bottom:641.415000px;}
.y12e{bottom:642.750000px;}
.yae{bottom:645.195000px;}
.y3a{bottom:651.315000px;}
.y100{bottom:657.075000px;}
.yd8{bottom:658.875000px;}
.y81{bottom:659.595000px;}
.y10e{bottom:664.710000px;}
.y10{bottom:668.985000px;}
.yad{bottom:672.195000px;}
.yff{bottom:680.115000px;}
.yd7{bottom:681.375000px;}
.y80{bottom:683.205000px;}
.y109{bottom:685.770000px;}
.yf{bottom:697.965000px;}
.yac{bottom:699.225000px;}
.y12d{bottom:700.710000px;}
.yfe{bottom:704.085000px;}
.y7f{bottom:706.605000px;}
.yd6{bottom:708.405000px;}
.yfa{bottom:719.025000px;}
.yab{bottom:726.225000px;}
.y7e{bottom:730.185000px;}
.yd5{bottom:730.905000px;}
.y10d{bottom:731.130000px;}
.ye{bottom:732.525000px;}
.yaa{bottom:748.725000px;}
.yd4{bottom:753.405000px;}
.y7d{bottom:753.585000px;}
.y12c{bottom:759.750000px;}
.y10c{bottom:761.190000px;}
.yd{bottom:766.905000px;}
.ya9{bottom:771.225000px;}
.yd3{bottom:775.905000px;}
.yf9{bottom:776.805000px;}
.y7c{bottom:776.985000px;}
.y12b{bottom:788.550000px;}
.y10b{bottom:791.250000px;}
.y38{bottom:792.285000px;}
.ya8{bottom:793.725000px;}
.yc{bottom:800.205000px;}
.y7b{bottom:800.565000px;}
.yd2{bottom:802.905000px;}
.yf8{bottom:817.485000px;}
.ya7{bottom:820.905000px;}
.y7a{bottom:823.965000px;}
.yd1{bottom:825.405000px;}
.yb{bottom:827.745000px;}
.y106{bottom:828.900000px;}
.y37{bottom:838.005000px;}
.y79{bottom:847.545000px;}
.ya6{bottom:848.985000px;}
.yd0{bottom:852.405000px;}
.ya{bottom:855.285000px;}
.yf7{bottom:857.985000px;}
.y36{bottom:865.725000px;}
.y78{bottom:870.945000px;}
.ya5{bottom:872.385000px;}
.ycf{bottom:879.405000px;}
.y9{bottom:883.005000px;}
.y77{bottom:894.525000px;}
.ya4{bottom:895.785000px;}
.yf6{bottom:898.485000px;}
.y35{bottom:900.285000px;}
.yce{bottom:902.625000px;}
.y8{bottom:910.590000px;}
.y34{bottom:917.430000px;}
.y76{bottom:917.970000px;}
.ya3{bottom:919.770000px;}
.yf5{bottom:921.030000px;}
.ycd{bottom:930.570000px;}
.y33{bottom:934.710000px;}
.y7{bottom:938.130000px;}
.y75{bottom:941.370000px;}
.ya2{bottom:942.270000px;}
.yf4{bottom:943.530000px;}
.y32{bottom:951.990000px;}
.ycc{bottom:958.290000px;}
.y74{bottom:964.950000px;}
.y6{bottom:965.850000px;}
.y31{bottom:969.270000px;}
.y6b{bottom:981.690000px;}
.yf3{bottom:984.030000px;}
.ycb{bottom:986.010000px;}
.y73{bottom:988.350000px;}
.ya1{bottom:991.770000px;}
.y5{bottom:993.390000px;}
.y30{bottom:1006.170000px;}
.yf2{bottom:1006.530000px;}
.y72{bottom:1011.930000px;}
.ya0{bottom:1014.270000px;}
.yca{bottom:1017.510000px;}
.y4{bottom:1020.930000px;}
.yf1{bottom:1029.030000px;}
.y71{bottom:1035.330000px;}
.y9f{bottom:1036.770000px;}
.yc9{bottom:1044.510000px;}
.y3{bottom:1048.470000px;}
.y2f{bottom:1048.830000px;}
.y70{bottom:1058.730000px;}
.y9e{bottom:1063.770000px;}
.yc8{bottom:1067.730000px;}
.yf0{bottom:1069.530000px;}
.y2{bottom:1070.970000px;}
.y6f{bottom:1082.310000px;}
.y9d{bottom:1086.270000px;}
.y2e{bottom:1091.670000px;}
.yef{bottom:1092.030000px;}
.yc7{bottom:1095.450000px;}
.y6e{bottom:1105.710000px;}
.y9c{bottom:1108.770000px;}
.yee{bottom:1114.530000px;}
.yc6{bottom:1123.170000px;}
.y6d{bottom:1129.830000px;}
.y9b{bottom:1131.270000px;}
.y2d{bottom:1134.330000px;}
.yed{bottom:1137.030000px;}
.yc4{bottom:1151.100000px;}
.y2c{bottom:1158.660000px;}
.yec{bottom:1159.560000px;}
.y2a{bottom:1219.860000px;}
.y68{bottom:1222.380000px;}
.h28{height:19.080000px;}
.h20{height:26.820000px;}
.h16{height:27.000000px;}
.h1a{height:27.036000px;}
.h25{height:29.700000px;}
.h24{height:29.736000px;}
.h23{height:29.880000px;}
.h26{height:29.916000px;}
.he{height:33.023672px;}
.h27{height:35.332031px;}
.h1d{height:36.000000px;}
.ha{height:36.540000px;}
.h2f{height:38.158594px;}
.h2b{height:42.480000px;}
.h2c{height:42.516000px;}
.h2d{height:42.660000px;}
.h10{height:43.560000px;}
.h13{height:43.596000px;}
.h12{height:47.321367px;}
.hf{height:47.344922px;}
.h22{height:50.940000px;}
.hd{height:54.421875px;}
.h17{height:56.160000px;}
.h2{height:58.651172px;}
.h29{height:59.614102px;}
.hc{height:60.226875px;}
.h2a{height:61.423863px;}
.h18{height:64.978594px;}
.h6{height:65.010937px;}
.h1b{height:66.757500px;}
.h19{height:68.084282px;}
.h7{height:70.664062px;}
.h2e{height:71.225156px;}
.h5{height:72.562500px;}
.h1c{height:74.004654px;}
.h21{height:81.736875px;}
.h8{height:84.898125px;}
.h3{height:96.508125px;}
.h15{height:117.216000px;}
.h4{height:121.179375px;}
.h11{height:126.180000px;}
.h14{height:134.640000px;}
.hb{height:140.976000px;}
.h1e{height:892.980000px;}
.h1f{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.h9{height:1263.060000px;}
.wf{width:21.240000px;}
.w11{width:21.276000px;}
.w13{width:21.420000px;}
.wc{width:41.760000px;}
.wb{width:41.796000px;}
.w8{width:42.480000px;}
.w9{width:42.660000px;}
.w1b{width:55.260000px;}
.w1a{width:55.296000px;}
.w1c{width:55.440000px;}
.w17{width:57.600000px;}
.w5{width:57.636000px;}
.w19{width:59.400000px;}
.w24{width:59.436000px;}
.w22{width:59.580000px;}
.w23{width:59.616000px;}
.w1e{width:62.460000px;}
.w1d{width:62.496000px;}
.w14{width:63.720000px;}
.w20{width:72.000000px;}
.w1f{width:72.036000px;}
.w10{width:76.500000px;}
.w12{width:84.960000px;}
.we{width:127.656000px;}
.w18{width:131.760000px;}
.w21{width:148.860000px;}
.wa{width:160.920000px;}
.wd{width:160.950000px;}
.w7{width:204.150000px;}
.w4{width:212.610000px;}
.w3{width:467.745000px;}
.w6{width:647.565000px;}
.w2{width:680.550000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w15{width:1262.880000px;}
.w16{width:1263.000000px;}
.x0{left:0.000000px;}
.x49{left:4.500000px;}
.x27{left:5.940000px;}
.xb{left:7.920000px;}
.x47{left:9.000000px;}
.x17{left:10.800000px;}
.x2e{left:12.600000px;}
.x29{left:14.760000px;}
.x1f{left:16.740000px;}
.x25{left:18.360000px;}
.x2a{left:19.800000px;}
.x50{left:21.240000px;}
.x2d{left:23.580000px;}
.x14{left:25.740000px;}
.x4e{left:27.765000px;}
.x4d{left:29.520000px;}
.x4f{left:31.185000px;}
.x57{left:32.934000px;}
.x53{left:36.000000px;}
.x45{left:41.760000px;}
.x46{left:44.820000px;}
.x4b{left:50.760000px;}
.x4a{left:52.200000px;}
.x48{left:55.440000px;}
.x4c{left:65.880000px;}
.xa{left:77.040000px;}
.x52{left:83.880000px;}
.x1{left:84.960000px;}
.x19{left:97.776000px;}
.x16{left:122.616000px;}
.x22{left:127.476000px;}
.x18{left:138.996000px;}
.x56{left:140.076000px;}
.x23{left:148.896000px;}
.xd{left:152.145000px;}
.x54{left:155.910000px;}
.x10{left:160.245000px;}
.x36{left:165.630000px;}
.xf{left:174.825000px;}
.xe{left:177.165000px;}
.x7{left:184.890000px;}
.x51{left:191.370000px;}
.x30{left:212.610000px;}
.x11{left:224.490000px;}
.x5{left:236.370000px;}
.x24{left:238.170000px;}
.x6{left:245.730000px;}
.x4{left:252.750000px;}
.x1e{left:259.770000px;}
.x58{left:288.930000px;}
.x37{left:297.570000px;}
.x1a{left:301.935000px;}
.x8{left:320.475000px;}
.x1b{left:344.415000px;}
.x59{left:348.510000px;}
.x38{left:356.970000px;}
.x26{left:365.835000px;}
.x28{left:387.075000px;}
.x5a{left:408.135000px;}
.x31{left:409.395000px;}
.x39{left:412.275000px;}
.x9{left:425.415000px;}
.x12{left:434.415000px;}
.x35{left:442.335000px;}
.x3{left:446.475000px;}
.x2b{left:463.575000px;}
.x3a{left:467.535000px;}
.x2c{left:484.845000px;}
.x55{left:494.175000px;}
.x20{left:506.445000px;}
.x3b{left:522.975000px;}
.x5b{left:527.295000px;}
.xc{left:544.785000px;}
.x1c{left:548.565000px;}
.x2f{left:569.805000px;}
.x3c{left:578.235000px;}
.x5c{left:586.875000px;}
.x1d{left:591.225000px;}
.x32{left:619.305000px;}
.x34{left:631.365000px;}
.x3d{left:633.525000px;}
.x5d{left:646.305000px;}
.x2{left:659.085000px;}
.x3e{left:688.785000px;}
.x5e{left:705.885000px;}
.x3f{left:744.045000px;}
.x21{left:753.270000px;}
.x5f{left:765.465000px;}
.x15{left:771.810000px;}
.x40{left:799.305000px;}
.x13{left:821.850000px;}
.x60{left:825.045000px;}
.x41{left:854.565000px;}
.x61{left:884.670000px;}
.x42{left:917.070000px;}
.x62{left:944.250000px;}
.x43{left:979.530000px;}
.x63{left:1003.650000px;}
.x44{left:1041.990000px;}
.x64{left:1063.230000px;}
.x33{left:1191.600000px;}
@media print{
.v4{vertical-align:-29.440000pt;}
.v6{vertical-align:-24.320000pt;}
.v3{vertical-align:-21.120000pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:26.880000pt;}
.v1{vertical-align:29.440000pt;}
.lse{letter-spacing:-1.008000pt;}
.ls8{letter-spacing:-0.406933pt;}
.ls14{letter-spacing:-0.368533pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:-0.233067pt;}
.ls4{letter-spacing:-0.198933pt;}
.lsb{letter-spacing:-0.135467pt;}
.lsc{letter-spacing:-0.097067pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.019840pt;}
.lsd{letter-spacing:0.097067pt;}
.ls12{letter-spacing:0.135467pt;}
.ls3{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.233067pt;}
.ls11{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.504533pt;}
.ls10{letter-spacing:25.839360pt;}
.ls6{letter-spacing:27.151360pt;}
.ls5{letter-spacing:32.271360pt;}
.lsf{letter-spacing:32.911360pt;}
.ws4{word-spacing:-58.880000pt;}
.wsc{word-spacing:-42.880000pt;}
.ws12{word-spacing:-37.120000pt;}
.ws0{word-spacing:-18.720000pt;}
.wsd{word-spacing:-15.224533pt;}
.ws15{word-spacing:-14.953067pt;}
.ws11{word-spacing:-14.855467pt;}
.wsf{word-spacing:-14.817067pt;}
.wsb{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.622933pt;}
.ws7{word-spacing:-14.584533pt;}
.ws6{word-spacing:-14.486933pt;}
.ws9{word-spacing:-14.448533pt;}
.wse{word-spacing:-14.351467pt;}
.ws5{word-spacing:-14.313067pt;}
.wsa{word-spacing:-13.712000pt;}
.ws10{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.280000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:-9.710720pt;}
.ws16{word-spacing:-9.280000pt;}
.ws17{word-spacing:-8.640000pt;}
.ws13{word-spacing:-8.000000pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-1.975680pt;}
._1{margin-left:-1.068800pt;}
._2{width:1.068800pt;}
._d{width:2.160640pt;}
._12{width:3.148160pt;}
._5{width:4.727680pt;}
._6{width:5.630720pt;}
._7{width:7.412907pt;}
._8{width:8.596480pt;}
._9{width:9.891413pt;}
._13{width:10.919040pt;}
._b{width:11.882240pt;}
._a{width:12.848640pt;}
._c{width:13.819307pt;}
._0{width:15.650560pt;}
._11{width:17.104640pt;}
._10{width:18.261760pt;}
._f{width:19.552000pt;}
._e{width:20.490240pt;}
._14{width:21.491200pt;}
._15{width:32.524800pt;}
._16{width:34.186240pt;}
._17{width:171.136000pt;}
._4{width:749.546667pt;}
.fs9{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs2{font-size:106.880000pt;}
.y12a{bottom:-12.320000pt;}
.y129{bottom:-12.160000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:2.560000pt;}
.yfd{bottom:3.200000pt;}
.yc5{bottom:4.000000pt;}
.y43{bottom:6.560000pt;}
.y47{bottom:7.040000pt;}
.y9a{bottom:7.200000pt;}
.y10a{bottom:8.000000pt;}
.y6c{bottom:8.160000pt;}
.y111{bottom:8.320000pt;}
.y114{bottom:8.360000pt;}
.y117{bottom:8.480000pt;}
.y119{bottom:8.800000pt;}
.y115{bottom:8.840000pt;}
.y112{bottom:8.960000pt;}
.y64{bottom:9.120000pt;}
.yfb{bottom:11.200000pt;}
.y39{bottom:12.640000pt;}
.y12f{bottom:13.280000pt;}
.y137{bottom:13.440000pt;}
.y130{bottom:13.600000pt;}
.y134{bottom:14.080000pt;}
.y132{bottom:14.120000pt;}
.y5b{bottom:14.880000pt;}
.y10f{bottom:17.440000pt;}
.y48{bottom:18.560000pt;}
.y52{bottom:18.600000pt;}
.y42{bottom:18.880000pt;}
.yfc{bottom:19.200000pt;}
.y4f{bottom:20.480000pt;}
.y99{bottom:22.560000pt;}
.y5d{bottom:23.840000pt;}
.y46{bottom:26.400000pt;}
.y51{bottom:26.440000pt;}
.y5a{bottom:27.200000pt;}
.y44{bottom:28.026667pt;}
.y6a{bottom:28.960000pt;}
.y2b{bottom:29.760000pt;}
.y4e{bottom:31.200000pt;}
.y41{bottom:31.226667pt;}
.y98{bottom:37.920000pt;}
.y59{bottom:39.360000pt;}
.y69{bottom:41.280000pt;}
.y4d{bottom:43.360000pt;}
.y40{bottom:43.386667pt;}
.y108{bottom:49.792000pt;}
.y1{bottom:50.400000pt;}
.y58{bottom:51.680000pt;}
.y63{bottom:52.000000pt;}
.y4c{bottom:56.000000pt;}
.y3f{bottom:56.026667pt;}
.y107{bottom:61.952000pt;}
.y57{bottom:64.160000pt;}
.y62{bottom:64.960000pt;}
.y4b{bottom:68.960000pt;}
.y3e{bottom:68.986667pt;}
.y56{bottom:76.800000pt;}
.y61{bottom:77.626667pt;}
.y4a{bottom:81.600000pt;}
.y3d{bottom:82.106667pt;}
.y67{bottom:84.000000pt;}
.y29{bottom:84.960000pt;}
.y55{bottom:89.120000pt;}
.y60{bottom:91.866667pt;}
.yc3{bottom:93.440000pt;}
.y3c{bottom:94.746667pt;}
.yeb{bottom:97.920000pt;}
.y96{bottom:99.040000pt;}
.y66{bottom:99.360000pt;}
.y49{bottom:99.840000pt;}
.y54{bottom:107.360000pt;}
.y3b{bottom:112.986667pt;}
.y28{bottom:114.240000pt;}
.y65{bottom:114.720000pt;}
.yc2{bottom:117.440000pt;}
.yea{bottom:117.920000pt;}
.y95{bottom:120.320000pt;}
.y97{bottom:126.240000pt;}
.y5f{bottom:126.720000pt;}
.ye9{bottom:137.920000pt;}
.y27{bottom:140.160000pt;}
.yc1{bottom:141.440000pt;}
.y26{bottom:156.826667pt;}
.ye8{bottom:157.920000pt;}
.y128{bottom:160.506667pt;}
.yc0{bottom:161.440000pt;}
.y25{bottom:172.186667pt;}
.ybf{bottom:181.440000pt;}
.y127{bottom:181.466667pt;}
.ye7{bottom:182.560000pt;}
.y24{bottom:187.706667pt;}
.y94{bottom:189.920000pt;}
.y126{bottom:199.866667pt;}
.y23{bottom:204.346667pt;}
.ybe{bottom:205.466667pt;}
.ye6{bottom:207.546667pt;}
.y93{bottom:210.746667pt;}
.y125{bottom:218.306667pt;}
.y22{bottom:219.706667pt;}
.ybd{bottom:225.466667pt;}
.ye5{bottom:228.346667pt;}
.y5e{bottom:230.906667pt;}
.y92{bottom:231.706667pt;}
.y21{bottom:235.066667pt;}
.y124{bottom:236.706667pt;}
.ybc{bottom:245.466667pt;}
.ye4{bottom:249.626667pt;}
.y20{bottom:250.426667pt;}
.y91{bottom:252.506667pt;}
.y123{bottom:254.466667pt;}
.ybb{bottom:265.466667pt;}
.y1f{bottom:265.786667pt;}
.y53{bottom:269.626667pt;}
.y122{bottom:269.826667pt;}
.y90{bottom:273.306667pt;}
.y1e{bottom:280.986667pt;}
.yba{bottom:289.466667pt;}
.ye3{bottom:289.626667pt;}
.y121{bottom:289.986667pt;}
.y8f{bottom:294.266667pt;}
.y1d{bottom:296.346667pt;}
.y120{bottom:297.666667pt;}
.yb9{bottom:309.466667pt;}
.ye2{bottom:309.626667pt;}
.y8e{bottom:315.066667pt;}
.y1c{bottom:316.026667pt;}
.y11f{bottom:324.066667pt;}
.y13c{bottom:325.186667pt;}
.ye1{bottom:329.626667pt;}
.yb8{bottom:333.466667pt;}
.y8d{bottom:336.026667pt;}
.y1b{bottom:338.426667pt;}
.y13b{bottom:345.346667pt;}
.y11e{bottom:350.466667pt;}
.y8c{bottom:356.826667pt;}
.yb7{bottom:357.466667pt;}
.ye0{bottom:357.626667pt;}
.y1a{bottom:360.866667pt;}
.y13a{bottom:369.986667pt;}
.y11d{bottom:377.053333pt;}
.y8b{bottom:377.626667pt;}
.yb6{bottom:381.466667pt;}
.y19{bottom:383.266667pt;}
.y139{bottom:385.373333pt;}
.y50{bottom:389.306667pt;}
.ydf{bottom:397.626667pt;}
.y8a{bottom:398.586667pt;}
.y11c{bottom:404.093333pt;}
.yb5{bottom:405.506667pt;}
.y18{bottom:405.666667pt;}
.y138{bottom:406.813333pt;}
.y136{bottom:418.653333pt;}
.y89{bottom:419.426667pt;}
.y17{bottom:428.066667pt;}
.yb4{bottom:429.506667pt;}
.yde{bottom:429.666667pt;}
.y11b{bottom:431.293333pt;}
.y88{bottom:440.386667pt;}
.y16{bottom:447.426667pt;}
.ydd{bottom:449.666667pt;}
.yb3{bottom:453.506667pt;}
.y135{bottom:457.213333pt;}
.y11a{bottom:457.693333pt;}
.y87{bottom:461.186667pt;}
.y15{bottom:472.066667pt;}
.yb2{bottom:477.506667pt;}
.ydc{bottom:481.666667pt;}
.y86{bottom:481.986667pt;}
.y118{bottom:484.253333pt;}
.y133{bottom:494.973333pt;}
.y14{bottom:496.546667pt;}
.y105{bottom:498.146667pt;}
.yb1{bottom:501.506667pt;}
.ydb{bottom:501.666667pt;}
.y85{bottom:502.946667pt;}
.y116{bottom:510.653333pt;}
.y104{bottom:516.546667pt;}
.y13{bottom:521.026667pt;}
.y84{bottom:523.746667pt;}
.yb0{bottom:525.506667pt;}
.y131{bottom:532.733333pt;}
.y103{bottom:533.346667pt;}
.yda{bottom:533.666667pt;}
.y113{bottom:537.213333pt;}
.y45{bottom:540.226667pt;}
.y83{bottom:544.706667pt;}
.y12{bottom:545.666667pt;}
.yaf{bottom:549.506667pt;}
.y102{bottom:550.306667pt;}
.yd9{bottom:553.666667pt;}
.y110{bottom:563.653333pt;}
.y82{bottom:565.506667pt;}
.y101{bottom:567.106667pt;}
.y11{bottom:570.146667pt;}
.y12e{bottom:571.333333pt;}
.yae{bottom:573.506667pt;}
.y3a{bottom:578.946667pt;}
.y100{bottom:584.066667pt;}
.yd8{bottom:585.666667pt;}
.y81{bottom:586.306667pt;}
.y10e{bottom:590.853333pt;}
.y10{bottom:594.653333pt;}
.yad{bottom:597.506667pt;}
.yff{bottom:604.546667pt;}
.yd7{bottom:605.666667pt;}
.y80{bottom:607.293333pt;}
.y109{bottom:609.573333pt;}
.yf{bottom:620.413333pt;}
.yac{bottom:621.533333pt;}
.y12d{bottom:622.853333pt;}
.yfe{bottom:625.853333pt;}
.y7f{bottom:628.093333pt;}
.yd6{bottom:629.693333pt;}
.yfa{bottom:639.133333pt;}
.yab{bottom:645.533333pt;}
.y7e{bottom:649.053333pt;}
.yd5{bottom:649.693333pt;}
.y10d{bottom:649.893333pt;}
.ye{bottom:651.133333pt;}
.yaa{bottom:665.533333pt;}
.yd4{bottom:669.693333pt;}
.y7d{bottom:669.853333pt;}
.y12c{bottom:675.333333pt;}
.y10c{bottom:676.613333pt;}
.yd{bottom:681.693333pt;}
.ya9{bottom:685.533333pt;}
.yd3{bottom:689.693333pt;}
.yf9{bottom:690.493333pt;}
.y7c{bottom:690.653333pt;}
.y12b{bottom:700.933333pt;}
.y10b{bottom:703.333333pt;}
.y38{bottom:704.253333pt;}
.ya8{bottom:705.533333pt;}
.yc{bottom:711.293333pt;}
.y7b{bottom:711.613333pt;}
.yd2{bottom:713.693333pt;}
.yf8{bottom:726.653333pt;}
.ya7{bottom:729.693333pt;}
.y7a{bottom:732.413333pt;}
.yd1{bottom:733.693333pt;}
.yb{bottom:735.773333pt;}
.y106{bottom:736.800000pt;}
.y37{bottom:744.893333pt;}
.y79{bottom:753.373333pt;}
.ya6{bottom:754.653333pt;}
.yd0{bottom:757.693333pt;}
.ya{bottom:760.253333pt;}
.yf7{bottom:762.653333pt;}
.y36{bottom:769.533333pt;}
.y78{bottom:774.173333pt;}
.ya5{bottom:775.453333pt;}
.ycf{bottom:781.693333pt;}
.y9{bottom:784.893333pt;}
.y77{bottom:795.133333pt;}
.ya4{bottom:796.253333pt;}
.yf6{bottom:798.653333pt;}
.y35{bottom:800.253333pt;}
.yce{bottom:802.333333pt;}
.y8{bottom:809.413333pt;}
.y34{bottom:815.493333pt;}
.y76{bottom:815.973333pt;}
.ya3{bottom:817.573333pt;}
.yf5{bottom:818.693333pt;}
.ycd{bottom:827.173333pt;}
.y33{bottom:830.853333pt;}
.y7{bottom:833.893333pt;}
.y75{bottom:836.773333pt;}
.ya2{bottom:837.573333pt;}
.yf4{bottom:838.693333pt;}
.y32{bottom:846.213333pt;}
.ycc{bottom:851.813333pt;}
.y74{bottom:857.733333pt;}
.y6{bottom:858.533333pt;}
.y31{bottom:861.573333pt;}
.y6b{bottom:872.613333pt;}
.yf3{bottom:874.693333pt;}
.ycb{bottom:876.453333pt;}
.y73{bottom:878.533333pt;}
.ya1{bottom:881.573333pt;}
.y5{bottom:883.013333pt;}
.y30{bottom:894.373333pt;}
.yf2{bottom:894.693333pt;}
.y72{bottom:899.493333pt;}
.ya0{bottom:901.573333pt;}
.yca{bottom:904.453333pt;}
.y4{bottom:907.493333pt;}
.yf1{bottom:914.693333pt;}
.y71{bottom:920.293333pt;}
.y9f{bottom:921.573333pt;}
.yc9{bottom:928.453333pt;}
.y3{bottom:931.973333pt;}
.y2f{bottom:932.293333pt;}
.y70{bottom:941.093333pt;}
.y9e{bottom:945.573333pt;}
.yc8{bottom:949.093333pt;}
.yf0{bottom:950.693333pt;}
.y2{bottom:951.973333pt;}
.y6f{bottom:962.053333pt;}
.y9d{bottom:965.573333pt;}
.y2e{bottom:970.373333pt;}
.yef{bottom:970.693333pt;}
.yc7{bottom:973.733333pt;}
.y6e{bottom:982.853333pt;}
.y9c{bottom:985.573333pt;}
.yee{bottom:990.693333pt;}
.yc6{bottom:998.373333pt;}
.y6d{bottom:1004.293333pt;}
.y9b{bottom:1005.573333pt;}
.y2d{bottom:1008.293333pt;}
.yed{bottom:1010.693333pt;}
.yc4{bottom:1023.200000pt;}
.y2c{bottom:1029.920000pt;}
.yec{bottom:1030.720000pt;}
.y2a{bottom:1084.320000pt;}
.y68{bottom:1086.560000pt;}
.h28{height:16.960000pt;}
.h20{height:23.840000pt;}
.h16{height:24.000000pt;}
.h1a{height:24.032000pt;}
.h25{height:26.400000pt;}
.h24{height:26.432000pt;}
.h23{height:26.560000pt;}
.h26{height:26.592000pt;}
.he{height:29.354375pt;}
.h27{height:31.406250pt;}
.h1d{height:32.000000pt;}
.ha{height:32.480000pt;}
.h2f{height:33.918750pt;}
.h2b{height:37.760000pt;}
.h2c{height:37.792000pt;}
.h2d{height:37.920000pt;}
.h10{height:38.720000pt;}
.h13{height:38.752000pt;}
.h12{height:42.063437pt;}
.hf{height:42.084375pt;}
.h22{height:45.280000pt;}
.hd{height:48.375000pt;}
.h17{height:49.920000pt;}
.h2{height:52.134375pt;}
.h29{height:52.990313pt;}
.hc{height:53.535000pt;}
.h2a{height:54.598989pt;}
.h18{height:57.758750pt;}
.h6{height:57.787500pt;}
.h1b{height:59.340000pt;}
.h19{height:60.519362pt;}
.h7{height:62.812500pt;}
.h2e{height:63.311250pt;}
.h5{height:64.500000pt;}
.h1c{height:65.781915pt;}
.h21{height:72.655000pt;}
.h8{height:75.465000pt;}
.h3{height:85.785000pt;}
.h15{height:104.192000pt;}
.h4{height:107.715000pt;}
.h11{height:112.160000pt;}
.h14{height:119.680000pt;}
.hb{height:125.312000pt;}
.h1e{height:793.760000pt;}
.h1f{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h9{height:1122.720000pt;}
.wf{width:18.880000pt;}
.w11{width:18.912000pt;}
.w13{width:19.040000pt;}
.wc{width:37.120000pt;}
.wb{width:37.152000pt;}
.w8{width:37.760000pt;}
.w9{width:37.920000pt;}
.w1b{width:49.120000pt;}
.w1a{width:49.152000pt;}
.w1c{width:49.280000pt;}
.w17{width:51.200000pt;}
.w5{width:51.232000pt;}
.w19{width:52.800000pt;}
.w24{width:52.832000pt;}
.w22{width:52.960000pt;}
.w23{width:52.992000pt;}
.w1e{width:55.520000pt;}
.w1d{width:55.552000pt;}
.w14{width:56.640000pt;}
.w20{width:64.000000pt;}
.w1f{width:64.032000pt;}
.w10{width:68.000000pt;}
.w12{width:75.520000pt;}
.we{width:113.472000pt;}
.w18{width:117.120000pt;}
.w21{width:132.320000pt;}
.wa{width:143.040000pt;}
.wd{width:143.066667pt;}
.w7{width:181.466667pt;}
.w4{width:188.986667pt;}
.w3{width:415.773333pt;}
.w6{width:575.613333pt;}
.w2{width:604.933333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w15{width:1122.560000pt;}
.w16{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x49{left:4.000000pt;}
.x27{left:5.280000pt;}
.xb{left:7.040000pt;}
.x47{left:8.000000pt;}
.x17{left:9.600000pt;}
.x2e{left:11.200000pt;}
.x29{left:13.120000pt;}
.x1f{left:14.880000pt;}
.x25{left:16.320000pt;}
.x2a{left:17.600000pt;}
.x50{left:18.880000pt;}
.x2d{left:20.960000pt;}
.x14{left:22.880000pt;}
.x4e{left:24.680000pt;}
.x4d{left:26.240000pt;}
.x4f{left:27.720000pt;}
.x57{left:29.274667pt;}
.x53{left:32.000000pt;}
.x45{left:37.120000pt;}
.x46{left:39.840000pt;}
.x4b{left:45.120000pt;}
.x4a{left:46.400000pt;}
.x48{left:49.280000pt;}
.x4c{left:58.560000pt;}
.xa{left:68.480000pt;}
.x52{left:74.560000pt;}
.x1{left:75.520000pt;}
.x19{left:86.912000pt;}
.x16{left:108.992000pt;}
.x22{left:113.312000pt;}
.x18{left:123.552000pt;}
.x56{left:124.512000pt;}
.x23{left:132.352000pt;}
.xd{left:135.240000pt;}
.x54{left:138.586667pt;}
.x10{left:142.440000pt;}
.x36{left:147.226667pt;}
.xf{left:155.400000pt;}
.xe{left:157.480000pt;}
.x7{left:164.346667pt;}
.x51{left:170.106667pt;}
.x30{left:188.986667pt;}
.x11{left:199.546667pt;}
.x5{left:210.106667pt;}
.x24{left:211.706667pt;}
.x6{left:218.426667pt;}
.x4{left:224.666667pt;}
.x1e{left:230.906667pt;}
.x58{left:256.826667pt;}
.x37{left:264.506667pt;}
.x1a{left:268.386667pt;}
.x8{left:284.866667pt;}
.x1b{left:306.146667pt;}
.x59{left:309.786667pt;}
.x38{left:317.306667pt;}
.x26{left:325.186667pt;}
.x28{left:344.066667pt;}
.x5a{left:362.786667pt;}
.x31{left:363.906667pt;}
.x39{left:366.466667pt;}
.x9{left:378.146667pt;}
.x12{left:386.146667pt;}
.x35{left:393.186667pt;}
.x3{left:396.866667pt;}
.x2b{left:412.066667pt;}
.x3a{left:415.586667pt;}
.x2c{left:430.973333pt;}
.x55{left:439.266667pt;}
.x20{left:450.173333pt;}
.x3b{left:464.866667pt;}
.x5b{left:468.706667pt;}
.xc{left:484.253333pt;}
.x1c{left:487.613333pt;}
.x2f{left:506.493333pt;}
.x3c{left:513.986667pt;}
.x5c{left:521.666667pt;}
.x1d{left:525.533333pt;}
.x32{left:550.493333pt;}
.x34{left:561.213333pt;}
.x3d{left:563.133333pt;}
.x5d{left:574.493333pt;}
.x2{left:585.853333pt;}
.x3e{left:612.253333pt;}
.x5e{left:627.453333pt;}
.x3f{left:661.373333pt;}
.x21{left:669.573333pt;}
.x5f{left:680.413333pt;}
.x15{left:686.053333pt;}
.x40{left:710.493333pt;}
.x13{left:730.533333pt;}
.x60{left:733.373333pt;}
.x41{left:759.613333pt;}
.x61{left:786.373333pt;}
.x42{left:815.173333pt;}
.x62{left:839.333333pt;}
.x43{left:870.693333pt;}
.x63{left:892.133333pt;}
.x44{left:926.213333pt;}
.x64{left:945.093333pt;}
.x33{left:1059.200000pt;}
}




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