
    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_f9bdec3522dc42c6f513b41c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_357063145b53ead9467ac7a6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_799cb2ed147b37a7aee0f68e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_98a31553edb4fe82246944a3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f760aa752e554dd55386df44.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_abee7477e6798233543457dd.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6f270935873189577a8f626c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0f6c82143a50837e9daa0164.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_46f33a5e041fb84795dee558.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls2f{letter-spacing:-2.742000px;}
.ls2d{letter-spacing:-2.520000px;}
.ls2e{letter-spacing:-2.106000px;}
.ls3a{letter-spacing:-1.182000px;}
.ls6{letter-spacing:-1.176000px;}
.ls2b{letter-spacing:-1.080000px;}
.ls23{letter-spacing:-0.774000px;}
.ls1c{letter-spacing:-0.678000px;}
.ls37{letter-spacing:-0.666000px;}
.ls1d{letter-spacing:-0.612000px;}
.ls36{letter-spacing:-0.540000px;}
.ls3b{letter-spacing:-0.513600px;}
.ls9{letter-spacing:-0.460200px;}
.ls2c{letter-spacing:-0.413400px;}
.ls15{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.357000px;}
.ls12{letter-spacing:-0.322800px;}
.ls28{letter-spacing:-0.259800px;}
.ls25{letter-spacing:-0.206400px;}
.ls27{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018720px;}
.ls24{letter-spacing:0.043200px;}
.lse{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.097800px;}
.lsa{letter-spacing:0.106800px;}
.ls34{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.206400px;}
.lsc{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.265200px;}
.ls21{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls39{letter-spacing:0.466800px;}
.ls17{letter-spacing:0.513600px;}
.ls20{letter-spacing:0.613440px;}
.lsd{letter-spacing:0.666000px;}
.ls1e{letter-spacing:0.816000px;}
.ls19{letter-spacing:0.817920px;}
.ls16{letter-spacing:0.828000px;}
.ls1f{letter-spacing:0.900000px;}
.ls38{letter-spacing:0.924000px;}
.ls8{letter-spacing:1.080000px;}
.ls1{letter-spacing:1.620000px;}
.ls11{letter-spacing:2.340000px;}
.ls26{letter-spacing:3.060000px;}
.ls30{letter-spacing:3.780000px;}
.ls1b{letter-spacing:4.500000px;}
.ls22{letter-spacing:5.220000px;}
.ls31{letter-spacing:5.940000px;}
.ls1a{letter-spacing:6.660000px;}
.ls35{letter-spacing:11.466720px;}
.ls32{letter-spacing:13.140000px;}
.ls2a{letter-spacing:13.860000px;}
.ls33{letter-spacing:14.346720px;}
.ls3{letter-spacing:24.660000px;}
.ls18{letter-spacing:31.104000px;}
.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;}
}
.ws14{word-spacing:-72.000000px;}
.ws2{word-spacing:-24.300000px;}
.ws3{word-spacing:-23.958720px;}
.ws0{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.020000px;}
.ws26{word-spacing:-15.864000px;}
.ws13{word-spacing:-15.768000px;}
.ws18{word-spacing:-15.756000px;}
.wsc{word-spacing:-15.606000px;}
.ws24{word-spacing:-15.453600px;}
.ws27{word-spacing:-15.406800px;}
.ws1{word-spacing:-15.384000px;}
.ws7{word-spacing:-15.300000px;}
.ws19{word-spacing:-15.238800px;}
.ws11{word-spacing:-15.235440px;}
.wsb{word-spacing:-15.199800px;}
.ws1f{word-spacing:-15.146400px;}
.ws16{word-spacing:-15.120000px;}
.ws25{word-spacing:-15.093600px;}
.ws9{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.ws1b{word-spacing:-14.983200px;}
.ws8{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws1d{word-spacing:-14.833200px;}
.ws1c{word-spacing:-14.733600px;}
.ws1e{word-spacing:-14.680200px;}
.wsf{word-spacing:-14.647440px;}
.ws10{word-spacing:-14.613240px;}
.ws12{word-spacing:-14.580000px;}
.ws29{word-spacing:-14.426400px;}
.ws17{word-spacing:-14.328000px;}
.ws23{word-spacing:-14.274000px;}
.ws15{word-spacing:-14.262000px;}
.ws1a{word-spacing:-14.166000px;}
.ws20{word-spacing:-13.860000px;}
.ws28{word-spacing:-13.758000px;}
.ws22{word-spacing:-12.834000px;}
.ws21{word-spacing:-12.420000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.wse{word-spacing:0.000000px;}
._1{margin-left:-2486.260800px;}
._3{margin-left:-1446.151680px;}
._5{margin-left:-1442.119920px;}
._4{margin-left:-995.051520px;}
._6{margin-left:-575.089920px;}
._7{margin-left:-8.405520px;}
._8{margin-left:-5.472480px;}
._9{margin-left:-3.908160px;}
._a{margin-left:-2.757120px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._b{width:2.302080px;}
._c{width:3.966720px;}
._d{width:5.199120px;}
._10{width:6.274800px;}
._11{width:7.589520px;}
._13{width:9.023760px;}
._e{width:10.172880px;}
._f{width:11.457120px;}
._12{width:12.529920px;}
._18{width:13.709760px;}
._17{width:16.363920px;}
._1a{width:17.996640px;}
._1c{width:19.362240px;}
._1b{width:20.617200px;}
._19{width:22.051440px;}
._15{width:23.931840px;}
._14{width:25.110720px;}
._16{width:26.142240px;}
._1d{width:27.788400px;}
._1f{width:32.519520px;}
._1e{width:33.704640px;}
._20{width:35.669760px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yfd{bottom:3.240000px;}
.yf4{bottom:3.420000px;}
.yff{bottom:3.600000px;}
.yf8{bottom:3.780000px;}
.y105{bottom:11.010000px;}
.yf3{bottom:20.520000px;}
.yf6{bottom:20.700000px;}
.yfe{bottom:20.880000px;}
.yf7{bottom:21.060000px;}
.y126{bottom:22.140000px;}
.y103{bottom:27.930000px;}
.y104{bottom:28.290000px;}
.y100{bottom:37.800000px;}
.yfa{bottom:37.980000px;}
.y101{bottom:38.160000px;}
.yfb{bottom:38.340000px;}
.y125{bottom:41.940000px;}
.y122{bottom:46.080000px;}
.y6{bottom:61.056000px;}
.y124{bottom:61.734000px;}
.y123{bottom:81.714000px;}
.y99{bottom:88.056000px;}
.y6c{bottom:88.416000px;}
.y121{bottom:90.936000px;}
.y11e{bottom:94.176000px;}
.yef{bottom:97.056000px;}
.y34{bottom:98.316000px;}
.ycd{bottom:105.696000px;}
.y98{bottom:107.856000px;}
.y6b{bottom:108.216000px;}
.y11d{bottom:113.976000px;}
.yee{bottom:116.856000px;}
.y33{bottom:118.296000px;}
.ycc{bottom:125.676000px;}
.y120{bottom:127.656000px;}
.y97{bottom:127.836000px;}
.y6a{bottom:128.016000px;}
.y11c{bottom:133.776000px;}
.yed{bottom:136.836000px;}
.y32{bottom:138.096000px;}
.ycb{bottom:145.476000px;}
.y96{bottom:147.636000px;}
.y69{bottom:147.996000px;}
.y11b{bottom:153.570000px;}
.yec{bottom:156.630000px;}
.y31{bottom:157.890000px;}
.yca{bottom:165.270000px;}
.y95{bottom:167.430000px;}
.y68{bottom:167.790000px;}
.y11a{bottom:173.550000px;}
.yeb{bottom:176.430000px;}
.y30{bottom:177.690000px;}
.yc9{bottom:185.070000px;}
.y94{bottom:187.230000px;}
.y67{bottom:187.590000px;}
.y119{bottom:193.350000px;}
.yea{bottom:196.230000px;}
.y2f{bottom:197.490000px;}
.yc8{bottom:204.870000px;}
.y93{bottom:207.030000px;}
.y66{bottom:207.390000px;}
.y118{bottom:213.150000px;}
.ye9{bottom:216.030000px;}
.y2e{bottom:217.470000px;}
.yc7{bottom:224.670000px;}
.y92{bottom:227.010000px;}
.y65{bottom:227.190000px;}
.y117{bottom:232.950000px;}
.ye8{bottom:236.010000px;}
.y2d{bottom:237.270000px;}
.yc6{bottom:244.650000px;}
.y91{bottom:246.810000px;}
.y64{bottom:247.170000px;}
.y116{bottom:252.390000px;}
.ye7{bottom:255.810000px;}
.y2c{bottom:257.070000px;}
.y90{bottom:266.610000px;}
.y63{bottom:266.970000px;}
.yc5{bottom:273.450000px;}
.ye6{bottom:275.610000px;}
.y2b{bottom:276.870000px;}
.y115{bottom:281.730000px;}
.y8f{bottom:286.410000px;}
.y62{bottom:286.770000px;}
.yc4{bottom:293.250000px;}
.ye5{bottom:295.410000px;}
.y2a{bottom:296.670000px;}
.y114{bottom:301.530000px;}
.y8e{bottom:306.210000px;}
.y61{bottom:306.570000px;}
.yc3{bottom:312.690000px;}
.ye4{bottom:315.210000px;}
.y29{bottom:316.650000px;}
.y113{bottom:321.330000px;}
.y8d{bottom:326.190000px;}
.y60{bottom:326.370000px;}
.ye3{bottom:335.235000px;}
.y28{bottom:336.495000px;}
.y112{bottom:341.175000px;}
.yc2{bottom:344.235000px;}
.y8c{bottom:346.035000px;}
.y5f{bottom:346.395000px;}
.ye2{bottom:355.035000px;}
.y27{bottom:356.295000px;}
.y111{bottom:360.975000px;}
.yc1{bottom:364.035000px;}
.y8b{bottom:365.835000px;}
.y5e{bottom:366.195000px;}
.ye1{bottom:374.835000px;}
.y26{bottom:376.095000px;}
.y110{bottom:380.955000px;}
.yc0{bottom:383.835000px;}
.y8a{bottom:385.635000px;}
.y5d{bottom:385.995000px;}
.ye0{bottom:394.635000px;}
.y25{bottom:395.895000px;}
.y10f{bottom:400.755000px;}
.ybf{bottom:403.635000px;}
.y89{bottom:405.435000px;}
.y5c{bottom:405.795000px;}
.ydf{bottom:414.435000px;}
.y24{bottom:415.875000px;}
.y10e{bottom:420.555000px;}
.ybe{bottom:423.435000px;}
.y88{bottom:425.415000px;}
.y5b{bottom:425.595000px;}
.yde{bottom:434.415000px;}
.y23{bottom:435.675000px;}
.y10d{bottom:440.355000px;}
.ybd{bottom:443.415000px;}
.y87{bottom:445.215000px;}
.y5a{bottom:445.575000px;}
.ydd{bottom:454.215000px;}
.y22{bottom:455.475000px;}
.y10c{bottom:460.155000px;}
.ybc{bottom:463.215000px;}
.y86{bottom:465.015000px;}
.y59{bottom:465.375000px;}
.ydc{bottom:474.015000px;}
.y21{bottom:475.275000px;}
.y10b{bottom:480.135000px;}
.ybb{bottom:483.015000px;}
.y85{bottom:484.815000px;}
.y58{bottom:485.175000px;}
.ydb{bottom:493.815000px;}
.y20{bottom:495.075000px;}
.y10a{bottom:499.935000px;}
.yba{bottom:502.815000px;}
.y84{bottom:504.615000px;}
.y57{bottom:504.975000px;}
.yda{bottom:513.615000px;}
.y1f{bottom:515.055000px;}
.y109{bottom:519.735000px;}
.yb9{bottom:522.615000px;}
.y83{bottom:524.595000px;}
.y56{bottom:524.775000px;}
.yd9{bottom:533.595000px;}
.y1e{bottom:534.855000px;}
.y108{bottom:539.535000px;}
.yb8{bottom:542.595000px;}
.y82{bottom:544.395000px;}
.y55{bottom:544.755000px;}
.yd8{bottom:553.395000px;}
.y1d{bottom:554.655000px;}
.y107{bottom:559.335000px;}
.yb7{bottom:562.395000px;}
.y81{bottom:564.195000px;}
.y54{bottom:564.555000px;}
.yd7{bottom:573.195000px;}
.y1c{bottom:574.455000px;}
.y106{bottom:579.135000px;}
.yb6{bottom:582.195000px;}
.y80{bottom:583.995000px;}
.y53{bottom:584.355000px;}
.yd6{bottom:592.995000px;}
.y102{bottom:593.715000px;}
.y1b{bottom:593.895000px;}
.yb5{bottom:602.025000px;}
.y7f{bottom:603.825000px;}
.y52{bottom:604.185000px;}
.yd5{bottom:612.825000px;}
.y1a{bottom:613.905000px;}
.yb4{bottom:621.825000px;}
.y7e{bottom:623.805000px;}
.y51{bottom:623.985000px;}
.yd4{bottom:632.805000px;}
.y19{bottom:636.225000px;}
.yb3{bottom:641.805000px;}
.y7d{bottom:643.605000px;}
.y50{bottom:643.965000px;}
.yd3{bottom:652.605000px;}
.yb2{bottom:661.605000px;}
.y7c{bottom:663.405000px;}
.y4f{bottom:663.765000px;}
.y18{bottom:665.025000px;}
.yd2{bottom:672.405000px;}
.yb1{bottom:681.405000px;}
.y7b{bottom:683.205000px;}
.y4e{bottom:683.565000px;}
.y17{bottom:685.005000px;}
.yfc{bottom:688.785000px;}
.yd1{bottom:692.205000px;}
.yb0{bottom:701.205000px;}
.y7a{bottom:703.005000px;}
.y4d{bottom:703.365000px;}
.y16{bottom:704.805000px;}
.yd0{bottom:712.005000px;}
.yaf{bottom:721.005000px;}
.y79{bottom:722.985000px;}
.y4c{bottom:723.165000px;}
.yf9{bottom:723.885000px;}
.y15{bottom:724.605000px;}
.ycf{bottom:731.985000px;}
.yae{bottom:740.985000px;}
.y78{bottom:742.785000px;}
.y4b{bottom:743.145000px;}
.y14{bottom:744.405000px;}
.yce{bottom:751.425000px;}
.yad{bottom:760.785000px;}
.y4a{bottom:762.585000px;}
.y11f{bottom:762.945000px;}
.y13{bottom:764.205000px;}
.yf5{bottom:776.445000px;}
.yac{bottom:780.585000px;}
.y77{bottom:782.385000px;}
.y49{bottom:782.745000px;}
.y12{bottom:784.185000px;}
.yab{bottom:800.385000px;}
.y48{bottom:802.545000px;}
.y11{bottom:803.985000px;}
.y76{bottom:811.185000px;}
.yf2{bottom:811.725000px;}
.yaa{bottom:820.185000px;}
.y47{bottom:822.345000px;}
.y10{bottom:823.785000px;}
.y75{bottom:831.165000px;}
.ya9{bottom:840.165000px;}
.y46{bottom:842.325000px;}
.yf{bottom:843.585000px;}
.y74{bottom:850.965000px;}
.yf1{bottom:853.125000px;}
.ya8{bottom:859.965000px;}
.y45{bottom:862.170000px;}
.ye{bottom:863.430000px;}
.y73{bottom:870.810000px;}
.yf0{bottom:872.610000px;}
.ya7{bottom:879.810000px;}
.y44{bottom:881.970000px;}
.yd{bottom:883.410000px;}
.y72{bottom:890.610000px;}
.ya6{bottom:899.610000px;}
.y43{bottom:901.770000px;}
.yc{bottom:905.010000px;}
.y71{bottom:910.410000px;}
.ya5{bottom:919.410000px;}
.y42{bottom:921.570000px;}
.y70{bottom:930.390000px;}
.yb{bottom:930.570000px;}
.ya4{bottom:939.390000px;}
.y41{bottom:941.550000px;}
.ya{bottom:945.510000px;}
.y6f{bottom:950.190000px;}
.ya3{bottom:959.190000px;}
.y40{bottom:961.350000px;}
.y9{bottom:966.570000px;}
.y6e{bottom:969.630000px;}
.ya2{bottom:978.990000px;}
.y3f{bottom:981.150000px;}
.y8{bottom:989.970000px;}
.ya1{bottom:998.790000px;}
.y3e{bottom:1000.950000px;}
.ya0{bottom:1018.590000px;}
.y3d{bottom:1020.750000px;}
.y7{bottom:1021.830000px;}
.y9f{bottom:1038.570000px;}
.y3c{bottom:1040.730000px;}
.y5{bottom:1051.710000px;}
.y9e{bottom:1058.370000px;}
.y3b{bottom:1060.530000px;}
.y9d{bottom:1078.170000px;}
.y3a{bottom:1080.330000px;}
.y4{bottom:1082.490000px;}
.y9c{bottom:1097.970000px;}
.y6d{bottom:1099.770000px;}
.y39{bottom:1100.130000px;}
.y3{bottom:1113.270000px;}
.y9b{bottom:1117.770000px;}
.y38{bottom:1119.930000px;}
.y9a{bottom:1137.420000px;}
.y37{bottom:1139.940000px;}
.y2{bottom:1143.900000px;}
.y36{bottom:1170.180000px;}
.y1{bottom:1177.560000px;}
.y35{bottom:1193.400000px;}
.h12{height:2.826563px;}
.hb{height:34.380000px;}
.hc{height:34.560000px;}
.h6{height:38.158594px;}
.hf{height:41.796000px;}
.he{height:51.660000px;}
.hd{height:51.840000px;}
.ha{height:58.621992px;}
.h7{height:58.651172px;}
.h5{height:60.226875px;}
.h10{height:61.423863px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.h8{height:67.824844px;}
.h9{height:74.004654px;}
.h11{height:95.400000px;}
.h2{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:136.656000px;}
.w6{width:146.160000px;}
.w5{width:147.816000px;}
.w4{width:147.996000px;}
.w7{width:207.210000px;}
.w8{width:210.990000px;}
.w9{width:581.505000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:2.160000px;}
.x1a{left:4.860000px;}
.x13{left:7.020000px;}
.x28{left:8.100000px;}
.x1c{left:9.180000px;}
.x11{left:14.760000px;}
.x8{left:16.020000px;}
.xd{left:18.000000px;}
.x16{left:19.440000px;}
.x1f{left:22.140000px;}
.x17{left:24.480000px;}
.x4{left:27.180000px;}
.xb{left:29.520000px;}
.x18{left:31.320000px;}
.xa{left:33.660000px;}
.x1d{left:34.740000px;}
.x20{left:37.980000px;}
.x19{left:39.240000px;}
.x5{left:41.040000px;}
.x1e{left:42.336000px;}
.x12{left:44.820000px;}
.x7{left:46.260000px;}
.xf{left:49.905000px;}
.x3{left:52.200000px;}
.x1{left:54.179987px;}
.x1b{left:55.305000px;}
.x10{left:58.005000px;}
.x15{left:59.976000px;}
.x14{left:75.465000px;}
.x25{left:80.999987px;}
.x2{left:86.039987px;}
.x24{left:87.839987px;}
.x23{left:96.515987px;}
.x22{left:108.035987px;}
.x6{left:189.570000px;}
.x26{left:191.370000px;}
.x27{left:256.890000px;}
.x9{left:338.295000px;}
.xc{left:486.825000px;}
.xe{left:633.705000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls2f{letter-spacing:-2.437333pt;}
.ls2d{letter-spacing:-2.240000pt;}
.ls2e{letter-spacing:-1.872000pt;}
.ls3a{letter-spacing:-1.050667pt;}
.ls6{letter-spacing:-1.045333pt;}
.ls2b{letter-spacing:-0.960000pt;}
.ls23{letter-spacing:-0.688000pt;}
.ls1c{letter-spacing:-0.602667pt;}
.ls37{letter-spacing:-0.592000pt;}
.ls1d{letter-spacing:-0.544000pt;}
.ls36{letter-spacing:-0.480000pt;}
.ls3b{letter-spacing:-0.456533pt;}
.ls9{letter-spacing:-0.409067pt;}
.ls2c{letter-spacing:-0.367467pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.317333pt;}
.ls12{letter-spacing:-0.286933pt;}
.ls28{letter-spacing:-0.230933pt;}
.ls25{letter-spacing:-0.183467pt;}
.ls27{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016640pt;}
.ls24{letter-spacing:0.038400pt;}
.lse{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.086933pt;}
.lsa{letter-spacing:0.094933pt;}
.ls34{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.183467pt;}
.lsc{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.235733pt;}
.ls21{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls39{letter-spacing:0.414933pt;}
.ls17{letter-spacing:0.456533pt;}
.ls20{letter-spacing:0.545280pt;}
.lsd{letter-spacing:0.592000pt;}
.ls1e{letter-spacing:0.725333pt;}
.ls19{letter-spacing:0.727040pt;}
.ls16{letter-spacing:0.736000pt;}
.ls1f{letter-spacing:0.800000pt;}
.ls38{letter-spacing:0.821333pt;}
.ls8{letter-spacing:0.960000pt;}
.ls1{letter-spacing:1.440000pt;}
.ls11{letter-spacing:2.080000pt;}
.ls26{letter-spacing:2.720000pt;}
.ls30{letter-spacing:3.360000pt;}
.ls1b{letter-spacing:4.000000pt;}
.ls22{letter-spacing:4.640000pt;}
.ls31{letter-spacing:5.280000pt;}
.ls1a{letter-spacing:5.920000pt;}
.ls35{letter-spacing:10.192640pt;}
.ls32{letter-spacing:11.680000pt;}
.ls2a{letter-spacing:12.320000pt;}
.ls33{letter-spacing:12.752640pt;}
.ls3{letter-spacing:21.920000pt;}
.ls18{letter-spacing:27.648000pt;}
.ws14{word-spacing:-64.000000pt;}
.ws2{word-spacing:-21.600000pt;}
.ws3{word-spacing:-21.296640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.240000pt;}
.ws26{word-spacing:-14.101333pt;}
.ws13{word-spacing:-14.016000pt;}
.ws18{word-spacing:-14.005333pt;}
.wsc{word-spacing:-13.872000pt;}
.ws24{word-spacing:-13.736533pt;}
.ws27{word-spacing:-13.694933pt;}
.ws1{word-spacing:-13.674667pt;}
.ws7{word-spacing:-13.600000pt;}
.ws19{word-spacing:-13.545600pt;}
.ws11{word-spacing:-13.542613pt;}
.wsb{word-spacing:-13.510933pt;}
.ws1f{word-spacing:-13.463467pt;}
.ws16{word-spacing:-13.440000pt;}
.ws25{word-spacing:-13.416533pt;}
.ws9{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws1b{word-spacing:-13.318400pt;}
.ws8{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws1d{word-spacing:-13.185067pt;}
.ws1c{word-spacing:-13.096533pt;}
.ws1e{word-spacing:-13.049067pt;}
.wsf{word-spacing:-13.019947pt;}
.ws10{word-spacing:-12.989547pt;}
.ws12{word-spacing:-12.960000pt;}
.ws29{word-spacing:-12.823467pt;}
.ws17{word-spacing:-12.736000pt;}
.ws23{word-spacing:-12.688000pt;}
.ws15{word-spacing:-12.677333pt;}
.ws1a{word-spacing:-12.592000pt;}
.ws20{word-spacing:-12.320000pt;}
.ws28{word-spacing:-12.229333pt;}
.ws22{word-spacing:-11.408000pt;}
.ws21{word-spacing:-11.040000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.wse{word-spacing:0.000000pt;}
._1{margin-left:-2210.009600pt;}
._3{margin-left:-1285.468160pt;}
._5{margin-left:-1281.884373pt;}
._4{margin-left:-884.490240pt;}
._6{margin-left:-511.191040pt;}
._7{margin-left:-7.471573pt;}
._8{margin-left:-4.864427pt;}
._9{margin-left:-3.473920pt;}
._a{margin-left:-2.450773pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._b{width:2.046293pt;}
._c{width:3.525973pt;}
._d{width:4.621440pt;}
._10{width:5.577600pt;}
._11{width:6.746240pt;}
._13{width:8.021120pt;}
._e{width:9.042560pt;}
._f{width:10.184107pt;}
._12{width:11.137707pt;}
._18{width:12.186453pt;}
._17{width:14.545707pt;}
._1a{width:15.997013pt;}
._1c{width:17.210880pt;}
._1b{width:18.326400pt;}
._19{width:19.601280pt;}
._15{width:21.272747pt;}
._14{width:22.320640pt;}
._16{width:23.237547pt;}
._1d{width:24.700800pt;}
._1f{width:28.906240pt;}
._1e{width:29.959680pt;}
._20{width:31.706453pt;}
.fs6{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yfd{bottom:2.880000pt;}
.yf4{bottom:3.040000pt;}
.yff{bottom:3.200000pt;}
.yf8{bottom:3.360000pt;}
.y105{bottom:9.786667pt;}
.yf3{bottom:18.240000pt;}
.yf6{bottom:18.400000pt;}
.yfe{bottom:18.560000pt;}
.yf7{bottom:18.720000pt;}
.y126{bottom:19.680000pt;}
.y103{bottom:24.826667pt;}
.y104{bottom:25.146667pt;}
.y100{bottom:33.600000pt;}
.yfa{bottom:33.760000pt;}
.y101{bottom:33.920000pt;}
.yfb{bottom:34.080000pt;}
.y125{bottom:37.280000pt;}
.y122{bottom:40.960000pt;}
.y6{bottom:54.272000pt;}
.y124{bottom:54.874667pt;}
.y123{bottom:72.634667pt;}
.y99{bottom:78.272000pt;}
.y6c{bottom:78.592000pt;}
.y121{bottom:80.832000pt;}
.y11e{bottom:83.712000pt;}
.yef{bottom:86.272000pt;}
.y34{bottom:87.392000pt;}
.ycd{bottom:93.952000pt;}
.y98{bottom:95.872000pt;}
.y6b{bottom:96.192000pt;}
.y11d{bottom:101.312000pt;}
.yee{bottom:103.872000pt;}
.y33{bottom:105.152000pt;}
.ycc{bottom:111.712000pt;}
.y120{bottom:113.472000pt;}
.y97{bottom:113.632000pt;}
.y6a{bottom:113.792000pt;}
.y11c{bottom:118.912000pt;}
.yed{bottom:121.632000pt;}
.y32{bottom:122.752000pt;}
.ycb{bottom:129.312000pt;}
.y96{bottom:131.232000pt;}
.y69{bottom:131.552000pt;}
.y11b{bottom:136.506667pt;}
.yec{bottom:139.226667pt;}
.y31{bottom:140.346667pt;}
.yca{bottom:146.906667pt;}
.y95{bottom:148.826667pt;}
.y68{bottom:149.146667pt;}
.y11a{bottom:154.266667pt;}
.yeb{bottom:156.826667pt;}
.y30{bottom:157.946667pt;}
.yc9{bottom:164.506667pt;}
.y94{bottom:166.426667pt;}
.y67{bottom:166.746667pt;}
.y119{bottom:171.866667pt;}
.yea{bottom:174.426667pt;}
.y2f{bottom:175.546667pt;}
.yc8{bottom:182.106667pt;}
.y93{bottom:184.026667pt;}
.y66{bottom:184.346667pt;}
.y118{bottom:189.466667pt;}
.ye9{bottom:192.026667pt;}
.y2e{bottom:193.306667pt;}
.yc7{bottom:199.706667pt;}
.y92{bottom:201.786667pt;}
.y65{bottom:201.946667pt;}
.y117{bottom:207.066667pt;}
.ye8{bottom:209.786667pt;}
.y2d{bottom:210.906667pt;}
.yc6{bottom:217.466667pt;}
.y91{bottom:219.386667pt;}
.y64{bottom:219.706667pt;}
.y116{bottom:224.346667pt;}
.ye7{bottom:227.386667pt;}
.y2c{bottom:228.506667pt;}
.y90{bottom:236.986667pt;}
.y63{bottom:237.306667pt;}
.yc5{bottom:243.066667pt;}
.ye6{bottom:244.986667pt;}
.y2b{bottom:246.106667pt;}
.y115{bottom:250.426667pt;}
.y8f{bottom:254.586667pt;}
.y62{bottom:254.906667pt;}
.yc4{bottom:260.666667pt;}
.ye5{bottom:262.586667pt;}
.y2a{bottom:263.706667pt;}
.y114{bottom:268.026667pt;}
.y8e{bottom:272.186667pt;}
.y61{bottom:272.506667pt;}
.yc3{bottom:277.946667pt;}
.ye4{bottom:280.186667pt;}
.y29{bottom:281.466667pt;}
.y113{bottom:285.626667pt;}
.y8d{bottom:289.946667pt;}
.y60{bottom:290.106667pt;}
.ye3{bottom:297.986667pt;}
.y28{bottom:299.106667pt;}
.y112{bottom:303.266667pt;}
.yc2{bottom:305.986667pt;}
.y8c{bottom:307.586667pt;}
.y5f{bottom:307.906667pt;}
.ye2{bottom:315.586667pt;}
.y27{bottom:316.706667pt;}
.y111{bottom:320.866667pt;}
.yc1{bottom:323.586667pt;}
.y8b{bottom:325.186667pt;}
.y5e{bottom:325.506667pt;}
.ye1{bottom:333.186667pt;}
.y26{bottom:334.306667pt;}
.y110{bottom:338.626667pt;}
.yc0{bottom:341.186667pt;}
.y8a{bottom:342.786667pt;}
.y5d{bottom:343.106667pt;}
.ye0{bottom:350.786667pt;}
.y25{bottom:351.906667pt;}
.y10f{bottom:356.226667pt;}
.ybf{bottom:358.786667pt;}
.y89{bottom:360.386667pt;}
.y5c{bottom:360.706667pt;}
.ydf{bottom:368.386667pt;}
.y24{bottom:369.666667pt;}
.y10e{bottom:373.826667pt;}
.ybe{bottom:376.386667pt;}
.y88{bottom:378.146667pt;}
.y5b{bottom:378.306667pt;}
.yde{bottom:386.146667pt;}
.y23{bottom:387.266667pt;}
.y10d{bottom:391.426667pt;}
.ybd{bottom:394.146667pt;}
.y87{bottom:395.746667pt;}
.y5a{bottom:396.066667pt;}
.ydd{bottom:403.746667pt;}
.y22{bottom:404.866667pt;}
.y10c{bottom:409.026667pt;}
.ybc{bottom:411.746667pt;}
.y86{bottom:413.346667pt;}
.y59{bottom:413.666667pt;}
.ydc{bottom:421.346667pt;}
.y21{bottom:422.466667pt;}
.y10b{bottom:426.786667pt;}
.ybb{bottom:429.346667pt;}
.y85{bottom:430.946667pt;}
.y58{bottom:431.266667pt;}
.ydb{bottom:438.946667pt;}
.y20{bottom:440.066667pt;}
.y10a{bottom:444.386667pt;}
.yba{bottom:446.946667pt;}
.y84{bottom:448.546667pt;}
.y57{bottom:448.866667pt;}
.yda{bottom:456.546667pt;}
.y1f{bottom:457.826667pt;}
.y109{bottom:461.986667pt;}
.yb9{bottom:464.546667pt;}
.y83{bottom:466.306667pt;}
.y56{bottom:466.466667pt;}
.yd9{bottom:474.306667pt;}
.y1e{bottom:475.426667pt;}
.y108{bottom:479.586667pt;}
.yb8{bottom:482.306667pt;}
.y82{bottom:483.906667pt;}
.y55{bottom:484.226667pt;}
.yd8{bottom:491.906667pt;}
.y1d{bottom:493.026667pt;}
.y107{bottom:497.186667pt;}
.yb7{bottom:499.906667pt;}
.y81{bottom:501.506667pt;}
.y54{bottom:501.826667pt;}
.yd7{bottom:509.506667pt;}
.y1c{bottom:510.626667pt;}
.y106{bottom:514.786667pt;}
.yb6{bottom:517.506667pt;}
.y80{bottom:519.106667pt;}
.y53{bottom:519.426667pt;}
.yd6{bottom:527.106667pt;}
.y102{bottom:527.746667pt;}
.y1b{bottom:527.906667pt;}
.yb5{bottom:535.133333pt;}
.y7f{bottom:536.733333pt;}
.y52{bottom:537.053333pt;}
.yd5{bottom:544.733333pt;}
.y1a{bottom:545.693333pt;}
.yb4{bottom:552.733333pt;}
.y7e{bottom:554.493333pt;}
.y51{bottom:554.653333pt;}
.yd4{bottom:562.493333pt;}
.y19{bottom:565.533333pt;}
.yb3{bottom:570.493333pt;}
.y7d{bottom:572.093333pt;}
.y50{bottom:572.413333pt;}
.yd3{bottom:580.093333pt;}
.yb2{bottom:588.093333pt;}
.y7c{bottom:589.693333pt;}
.y4f{bottom:590.013333pt;}
.y18{bottom:591.133333pt;}
.yd2{bottom:597.693333pt;}
.yb1{bottom:605.693333pt;}
.y7b{bottom:607.293333pt;}
.y4e{bottom:607.613333pt;}
.y17{bottom:608.893333pt;}
.yfc{bottom:612.253333pt;}
.yd1{bottom:615.293333pt;}
.yb0{bottom:623.293333pt;}
.y7a{bottom:624.893333pt;}
.y4d{bottom:625.213333pt;}
.y16{bottom:626.493333pt;}
.yd0{bottom:632.893333pt;}
.yaf{bottom:640.893333pt;}
.y79{bottom:642.653333pt;}
.y4c{bottom:642.813333pt;}
.yf9{bottom:643.453333pt;}
.y15{bottom:644.093333pt;}
.ycf{bottom:650.653333pt;}
.yae{bottom:658.653333pt;}
.y78{bottom:660.253333pt;}
.y4b{bottom:660.573333pt;}
.y14{bottom:661.693333pt;}
.yce{bottom:667.933333pt;}
.yad{bottom:676.253333pt;}
.y4a{bottom:677.853333pt;}
.y11f{bottom:678.173333pt;}
.y13{bottom:679.293333pt;}
.yf5{bottom:690.173333pt;}
.yac{bottom:693.853333pt;}
.y77{bottom:695.453333pt;}
.y49{bottom:695.773333pt;}
.y12{bottom:697.053333pt;}
.yab{bottom:711.453333pt;}
.y48{bottom:713.373333pt;}
.y11{bottom:714.653333pt;}
.y76{bottom:721.053333pt;}
.yf2{bottom:721.533333pt;}
.yaa{bottom:729.053333pt;}
.y47{bottom:730.973333pt;}
.y10{bottom:732.253333pt;}
.y75{bottom:738.813333pt;}
.ya9{bottom:746.813333pt;}
.y46{bottom:748.733333pt;}
.yf{bottom:749.853333pt;}
.y74{bottom:756.413333pt;}
.yf1{bottom:758.333333pt;}
.ya8{bottom:764.413333pt;}
.y45{bottom:766.373333pt;}
.ye{bottom:767.493333pt;}
.y73{bottom:774.053333pt;}
.yf0{bottom:775.653333pt;}
.ya7{bottom:782.053333pt;}
.y44{bottom:783.973333pt;}
.yd{bottom:785.253333pt;}
.y72{bottom:791.653333pt;}
.ya6{bottom:799.653333pt;}
.y43{bottom:801.573333pt;}
.yc{bottom:804.453333pt;}
.y71{bottom:809.253333pt;}
.ya5{bottom:817.253333pt;}
.y42{bottom:819.173333pt;}
.y70{bottom:827.013333pt;}
.yb{bottom:827.173333pt;}
.ya4{bottom:835.013333pt;}
.y41{bottom:836.933333pt;}
.ya{bottom:840.453333pt;}
.y6f{bottom:844.613333pt;}
.ya3{bottom:852.613333pt;}
.y40{bottom:854.533333pt;}
.y9{bottom:859.173333pt;}
.y6e{bottom:861.893333pt;}
.ya2{bottom:870.213333pt;}
.y3f{bottom:872.133333pt;}
.y8{bottom:879.973333pt;}
.ya1{bottom:887.813333pt;}
.y3e{bottom:889.733333pt;}
.ya0{bottom:905.413333pt;}
.y3d{bottom:907.333333pt;}
.y7{bottom:908.293333pt;}
.y9f{bottom:923.173333pt;}
.y3c{bottom:925.093333pt;}
.y5{bottom:934.853333pt;}
.y9e{bottom:940.773333pt;}
.y3b{bottom:942.693333pt;}
.y9d{bottom:958.373333pt;}
.y3a{bottom:960.293333pt;}
.y4{bottom:962.213333pt;}
.y9c{bottom:975.973333pt;}
.y6d{bottom:977.573333pt;}
.y39{bottom:977.893333pt;}
.y3{bottom:989.573333pt;}
.y9b{bottom:993.573333pt;}
.y38{bottom:995.493333pt;}
.y9a{bottom:1011.040000pt;}
.y37{bottom:1013.280000pt;}
.y2{bottom:1016.800000pt;}
.y36{bottom:1040.160000pt;}
.y1{bottom:1046.720000pt;}
.y35{bottom:1060.800000pt;}
.h12{height:2.512500pt;}
.hb{height:30.560000pt;}
.hc{height:30.720000pt;}
.h6{height:33.918750pt;}
.hf{height:37.152000pt;}
.he{height:45.920000pt;}
.hd{height:46.080000pt;}
.ha{height:52.108438pt;}
.h7{height:52.134375pt;}
.h5{height:53.535000pt;}
.h10{height:54.598989pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.h8{height:60.288750pt;}
.h9{height:65.781915pt;}
.h11{height:84.800000pt;}
.h2{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:121.472000pt;}
.w6{width:129.920000pt;}
.w5{width:131.392000pt;}
.w4{width:131.552000pt;}
.w7{width:184.186667pt;}
.w8{width:187.546667pt;}
.w9{width:516.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:1.920000pt;}
.x1a{left:4.320000pt;}
.x13{left:6.240000pt;}
.x28{left:7.200000pt;}
.x1c{left:8.160000pt;}
.x11{left:13.120000pt;}
.x8{left:14.240000pt;}
.xd{left:16.000000pt;}
.x16{left:17.280000pt;}
.x1f{left:19.680000pt;}
.x17{left:21.760000pt;}
.x4{left:24.160000pt;}
.xb{left:26.240000pt;}
.x18{left:27.840000pt;}
.xa{left:29.920000pt;}
.x1d{left:30.880000pt;}
.x20{left:33.760000pt;}
.x19{left:34.880000pt;}
.x5{left:36.480000pt;}
.x1e{left:37.632000pt;}
.x12{left:39.840000pt;}
.x7{left:41.120000pt;}
.xf{left:44.360000pt;}
.x3{left:46.400000pt;}
.x1{left:48.159988pt;}
.x1b{left:49.160000pt;}
.x10{left:51.560000pt;}
.x15{left:53.312000pt;}
.x14{left:67.080000pt;}
.x25{left:71.999988pt;}
.x2{left:76.479988pt;}
.x24{left:78.079988pt;}
.x23{left:85.791988pt;}
.x22{left:96.031988pt;}
.x6{left:168.506667pt;}
.x26{left:170.106667pt;}
.x27{left:228.346667pt;}
.x9{left:300.706667pt;}
.xc{left:432.733333pt;}
.xe{left:563.293333pt;}
}




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