
    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_35cf73b5557d06d5100a9b43.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6b2a9ce339b633b1122f673d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2ed2fc4a54780ba21b0bc606.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_dc9316695f20a31bb092d1e2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_f4595de82070ace307f8aca4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_f45f4fdd335e00978418db9f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.944336;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_bdef667a435280ebdb100563.woff')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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_0f24435d6748cae328b4a24a.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7d4651cebfe9e6edcdebdc1c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.934082;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_f621540ecfa9bf05c73f6b23.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6d724595390dd74e620c2ec1.woff')format("woff");}.ffd{font-family:ffd;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-81.180000px;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.lsd{letter-spacing:-2.724000px;}
.ls15{letter-spacing:-1.740000px;}
.ls1b{letter-spacing:-1.128000px;}
.lsb{letter-spacing:-0.918000px;}
.lse{letter-spacing:-0.816000px;}
.lsc{letter-spacing:-0.378000px;}
.lsa{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.099000px;}
.ls12{letter-spacing:0.666000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.536000px;}
.ls3{letter-spacing:1.842000px;}
.lsf{letter-spacing:1.944000px;}
.ls6{letter-spacing:1.966500px;}
.ls11{letter-spacing:2.164500px;}
.ls19{letter-spacing:2.190000px;}
.ls7{letter-spacing:2.250000px;}
.ls10{letter-spacing:2.310000px;}
.ls8{letter-spacing:2.322000px;}
.ls18{letter-spacing:2.370000px;}
.ls14{letter-spacing:2.400000px;}
.ls16{letter-spacing:2.430000px;}
.ls9{letter-spacing:4.779000px;}
.ls5{letter-spacing:9.459000px;}
.ls1a{letter-spacing:15.387000px;}
.ls17{letter-spacing:46.887000px;}
.ls13{letter-spacing:55.887000px;}
.ls2{letter-spacing:1250.493000px;}
.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;}
}
.ws6{word-spacing:-25.926000px;}
.ws5{word-spacing:-23.166000px;}
.ws9{word-spacing:-16.875000px;}
.wsc{word-spacing:-16.789500px;}
.ws3{word-spacing:-15.063000px;}
.ws8{word-spacing:-14.625000px;}
.ws4{word-spacing:-13.221000px;}
.wsb{word-spacing:-12.885000px;}
.ws2{word-spacing:-12.531000px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-11.826000px;}
.ws7{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._16{margin-left:-7.003500px;}
._9{margin-left:-5.509500px;}
._5{margin-left:-4.056000px;}
._2{margin-left:-2.376000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._3{width:3.498000px;}
._4{width:5.052000px;}
._7{width:6.282000px;}
._8{width:7.287000px;}
._12{width:8.593500px;}
._6{width:9.666000px;}
._b{width:12.042000px;}
._e{width:13.279500px;}
._10{width:16.695000px;}
._f{width:20.875500px;}
._c{width:22.096500px;}
._a{width:25.293000px;}
._d{width:26.613000px;}
._11{width:30.501000px;}
._14{width:34.660500px;}
._17{width:38.577000px;}
._15{width:40.140000px;}
._13{width:44.616000px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(23,54,93);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs4{font-size:49.500000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:58.500000px;}
.fs2{font-size:67.500000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y1c{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.375000px;}
.y40{bottom:3.390000px;}
.ya6{bottom:3.405000px;}
.yc3{bottom:3.420000px;}
.yb1{bottom:4.500000px;}
.ye0{bottom:4.515000px;}
.y9{bottom:6.750000px;}
.yf{bottom:7.875000px;}
.y3f{bottom:10.170000px;}
.y1d{bottom:12.360000px;}
.y5{bottom:16.875000px;}
.y3{bottom:19.125000px;}
.y108{bottom:20.280000px;}
.yde{bottom:21.375000px;}
.y3c{bottom:21.420000px;}
.yd{bottom:22.530000px;}
.y3e{bottom:24.795000px;}
.y6{bottom:25.875000px;}
.y1a{bottom:27.000000px;}
.y107{bottom:38.280000px;}
.y3b{bottom:38.295000px;}
.yc{bottom:40.530000px;}
.y19{bottom:43.920000px;}
.y2{bottom:49.537500px;}
.y3a{bottom:55.200000px;}
.y18{bottom:59.670000px;}
.yb{bottom:59.685000px;}
.y106{bottom:72.075000px;}
.y17{bottom:73.170000px;}
.y39{bottom:73.200000px;}
.y38{bottom:90.075000px;}
.y2e{bottom:91.200000px;}
.y16{bottom:92.325000px;}
.y1{bottom:93.450000px;}
.ya{bottom:102.480000px;}
.y2d{bottom:105.855000px;}
.y37{bottom:106.995000px;}
.y15{bottom:110.325000px;}
.y8e{bottom:115.950000px;}
.y110{bottom:118.237500px;}
.y12d{bottom:119.362500px;}
.ye8{bottom:123.862500px;}
.y2c{bottom:123.870000px;}
.y36{bottom:124.995000px;}
.y14{bottom:128.370000px;}
.y4f{bottom:129.487500px;}
.yac{bottom:130.620000px;}
.y8d{bottom:132.862500px;}
.y10f{bottom:136.237500px;}
.yef{bottom:138.525000px;}
.y2b{bottom:140.775000px;}
.ye7{bottom:141.862500px;}
.y35{bottom:141.900000px;}
.y4e{bottom:146.362500px;}
.y13{bottom:147.495000px;}
.y8c{bottom:150.870000px;}
.y10e{bottom:154.245000px;}
.y2a{bottom:158.775000px;}
.ye6{bottom:159.900000px;}
.yb5{bottom:161.025000px;}
.y4d{bottom:163.275000px;}
.y8b{bottom:167.775000px;}
.y139{bottom:170.025000px;}
.y12c{bottom:171.150000px;}
.y12{bottom:173.400000px;}
.yb4{bottom:174.525000px;}
.y29{bottom:175.650000px;}
.y34{bottom:176.775000px;}
.y4c{bottom:181.275000px;}
.y8a{bottom:185.775000px;}
.y12b{bottom:188.025000px;}
.yb3{bottom:192.525000px;}
.y10d{bottom:193.650000px;}
.y28{bottom:193.695000px;}
.y11{bottom:198.150000px;}
.ye5{bottom:199.275000px;}
.y89{bottom:203.820000px;}
.y138{bottom:204.945000px;}
.y12a{bottom:206.070000px;}
.y27{bottom:210.570000px;}
.ye4{bottom:212.820000px;}
.y4b{bottom:215.070000px;}
.y88{bottom:220.695000px;}
.y137{bottom:221.820000px;}
.y129{bottom:222.945000px;}
.yb2{bottom:228.570000px;}
.y26{bottom:228.600000px;}
.ye3{bottom:230.820000px;}
.y4a{bottom:233.070000px;}
.y87{bottom:237.570000px;}
.y128{bottom:239.820000px;}
.y25{bottom:245.475000px;}
.yb0{bottom:246.600000px;}
.ye2{bottom:248.850000px;}
.y49{bottom:249.975000px;}
.y86{bottom:255.600000px;}
.y136{bottom:256.725000px;}
.y127{bottom:257.850000px;}
.y33{bottom:262.350000px;}
.y24{bottom:263.520000px;}
.y48{bottom:266.850000px;}
.yaf{bottom:269.100000px;}
.y85{bottom:272.475000px;}
.y135{bottom:273.600000px;}
.y126{bottom:274.725000px;}
.y10c{bottom:280.350000px;}
.y23{bottom:280.395000px;}
.ye1{bottom:284.880000px;}
.y47{bottom:284.895000px;}
.yae{bottom:286.005000px;}
.y84{bottom:289.380000px;}
.y125{bottom:291.645000px;}
.y10b{bottom:297.255000px;}
.y32{bottom:297.270000px;}
.y22{bottom:298.380000px;}
.y46{bottom:301.770000px;}
.yad{bottom:302.880000px;}
.y83{bottom:307.380000px;}
.y134{bottom:308.520000px;}
.y124{bottom:309.630000px;}
.y10a{bottom:314.130000px;}
.y31{bottom:314.175000px;}
.y21{bottom:315.300000px;}
.yab{bottom:316.380000px;}
.y45{bottom:318.645000px;}
.ydf{bottom:320.880000px;}
.y82{bottom:324.255000px;}
.y133{bottom:325.395000px;}
.y123{bottom:326.550000px;}
.y30{bottom:332.175000px;}
.y20{bottom:333.300000px;}
.y44{bottom:336.675000px;}
.ydd{bottom:338.925000px;}
.y81{bottom:341.175000px;}
.y122{bottom:343.425000px;}
.y109{bottom:349.050000px;}
.y2f{bottom:349.080000px;}
.y1f{bottom:351.330000px;}
.y43{bottom:353.550000px;}
.y80{bottom:359.175000px;}
.y132{bottom:360.300000px;}
.y121{bottom:361.425000px;}
.y105{bottom:363.675000px;}
.y42{bottom:370.455000px;}
.y7f{bottom:376.095000px;}
.y131{bottom:377.205000px;}
.ydc{bottom:378.330000px;}
.y41{bottom:388.455000px;}
.y7e{bottom:392.970000px;}
.ydb{bottom:395.205000px;}
.y3d{bottom:403.080000px;}
.y7d{bottom:411.000000px;}
.y130{bottom:412.125000px;}
.yda{bottom:413.250000px;}
.y7c{bottom:427.875000px;}
.y12f{bottom:429.000000px;}
.yd9{bottom:430.125000px;}
.y1e{bottom:439.125000px;}
.y7b{bottom:445.875000px;}
.yd8{bottom:447.000000px;}
.y104{bottom:450.375000px;}
.y7a{bottom:463.920000px;}
.yd7{bottom:465.030000px;}
.y103{bottom:468.405000px;}
.y79{bottom:480.795000px;}
.yd6{bottom:481.905000px;}
.y102{bottom:486.405000px;}
.yd5{bottom:496.575000px;}
.y78{bottom:497.700000px;}
.y120{bottom:498.825000px;}
.y101{bottom:504.450000px;}
.y77{bottom:514.575000px;}
.y12e{bottom:515.700000px;}
.y11f{bottom:516.825000px;}
.y100{bottom:522.450000px;}
.y76{bottom:532.575000px;}
.y11e{bottom:533.700000px;}
.yff{bottom:540.480000px;}
.yd4{bottom:550.605000px;}
.y75{bottom:550.620000px;}
.yfe{bottom:558.480000px;}
.y74{bottom:567.495000px;}
.yd3{bottom:568.605000px;}
.yfd{bottom:576.480000px;}
.y73{bottom:584.400000px;}
.y11d{bottom:585.525000px;}
.yd2{bottom:586.650000px;}
.yaa{bottom:592.275000px;}
.yfc{bottom:594.525000px;}
.y72{bottom:602.400000px;}
.yd1{bottom:604.650000px;}
.ya9{bottom:609.150000px;}
.yfb{bottom:612.525000px;}
.y71{bottom:619.320000px;}
.y11c{bottom:620.445000px;}
.yd0{bottom:622.695000px;}
.ya8{bottom:626.070000px;}
.yfa{bottom:630.570000px;}
.y70{bottom:636.195000px;}
.y11b{bottom:637.320000px;}
.ya7{bottom:640.695000px;}
.yf9{bottom:648.570000px;}
.y11a{bottom:650.820000px;}
.y6f{bottom:654.195000px;}
.ya5{bottom:658.695000px;}
.ycf{bottom:662.100000px;}
.yf8{bottom:669.975000px;}
.y6e{bottom:671.100000px;}
.ya4{bottom:676.725000px;}
.yce{bottom:678.975000px;}
.yf7{bottom:686.850000px;}
.y6d{bottom:687.975000px;}
.ya3{bottom:694.725000px;}
.ycd{bottom:696.975000px;}
.yf6{bottom:701.475000px;}
.y6c{bottom:706.020000px;}
.ycc{bottom:713.880000px;}
.ya2{bottom:716.145000px;}
.yf5{bottom:719.505000px;}
.y6b{bottom:722.895000px;}
.ycb{bottom:730.755000px;}
.ya1{bottom:734.130000px;}
.yf4{bottom:737.505000px;}
.y6a{bottom:739.770000px;}
.yca{bottom:748.800000px;}
.ya0{bottom:751.050000px;}
.yf3{bottom:755.550000px;}
.y69{bottom:757.800000px;}
.yc9{bottom:765.675000px;}
.y9f{bottom:767.925000px;}
.y68{bottom:774.675000px;}
.yf2{bottom:776.925000px;}
.yc8{bottom:782.550000px;}
.y9e{bottom:785.955000px;}
.y67{bottom:791.580000px;}
.yf1{bottom:794.955000px;}
.yc7{bottom:800.580000px;}
.y1b{bottom:801.720000px;}
.y9d{bottom:802.830000px;}
.y66{bottom:809.580000px;}
.yf0{bottom:811.830000px;}
.yc6{bottom:817.455000px;}
.y9c{bottom:819.705000px;}
.yee{bottom:825.345000px;}
.y65{bottom:826.455000px;}
.y10{bottom:831.000000px;}
.yc5{bottom:832.125000px;}
.y9b{bottom:837.750000px;}
.y64{bottom:843.375000px;}
.yc4{bottom:850.125000px;}
.y9a{bottom:854.625000px;}
.y63{bottom:861.375000px;}
.yc2{bottom:868.125000px;}
.y99{bottom:869.295000px;}
.y62{bottom:878.295000px;}
.yc1{bottom:886.170000px;}
.y98{bottom:887.295000px;}
.y61{bottom:895.170000px;}
.yc0{bottom:904.155000px;}
.y97{bottom:905.295000px;}
.y60{bottom:913.200000px;}
.y96{bottom:923.325000px;}
.ybf{bottom:925.575000px;}
.y5f{bottom:930.075000px;}
.y95{bottom:941.325000px;}
.ybe{bottom:942.450000px;}
.y5e{bottom:946.950000px;}
.y119{bottom:958.245000px;}
.y94{bottom:959.370000px;}
.ybd{bottom:960.495000px;}
.y5d{bottom:964.995000px;}
.y118{bottom:976.245000px;}
.y93{bottom:977.355000px;}
.ybc{bottom:977.370000px;}
.y5c{bottom:981.870000px;}
.y117{bottom:993.120000px;}
.ybb{bottom:994.275000px;}
.y5b{bottom:998.775000px;}
.y116{bottom:1010.025000px;}
.yba{bottom:1012.275000px;}
.y92{bottom:1015.650000px;}
.y5a{bottom:1016.775000px;}
.yb9{bottom:1025.775000px;}
.y115{bottom:1028.025000px;}
.y59{bottom:1033.650000px;}
.ye{bottom:1043.820000px;}
.y114{bottom:1044.945000px;}
.y58{bottom:1050.570000px;}
.yb8{bottom:1061.820000px;}
.y91{bottom:1067.445000px;}
.y57{bottom:1068.570000px;}
.y8{bottom:1069.695000px;}
.y113{bottom:1076.445000px;}
.yb7{bottom:1079.850000px;}
.y56{bottom:1085.475000px;}
.y112{bottom:1094.475000px;}
.yb6{bottom:1097.850000px;}
.y55{bottom:1102.350000px;}
.y111{bottom:1112.475000px;}
.yed{bottom:1115.850000px;}
.y90{bottom:1119.255000px;}
.y54{bottom:1120.380000px;}
.yec{bottom:1130.505000px;}
.y53{bottom:1137.255000px;}
.yeb{bottom:1148.505000px;}
.y52{bottom:1154.130000px;}
.yea{bottom:1166.550000px;}
.y8f{bottom:1171.050000px;}
.y51{bottom:1172.175000px;}
.ye9{bottom:1184.550000px;}
.y7{bottom:1186.800000px;}
.y50{bottom:1189.050000px;}
.h1e{height:16.860000px;}
.h1c{height:16.875000px;}
.h1d{height:16.897500px;}
.h1b{height:16.912500px;}
.h20{height:18.000000px;}
.h22{height:18.022500px;}
.h21{height:18.037500px;}
.hd{height:25.875000px;}
.h13{height:29.272500px;}
.h12{height:29.953125px;}
.h3{height:32.662500px;}
.h23{height:34.912500px;}
.h1a{height:36.037500px;}
.h18{height:39.832031px;}
.h19{height:40.847168px;}
.h2{height:41.275635px;}
.h26{height:42.589600px;}
.hf{height:43.075195px;}
.h17{height:44.589111px;}
.h16{height:47.074219px;}
.h8{height:49.141846px;}
.h15{height:49.234131px;}
.ha{height:50.684326px;}
.h5{height:53.709961px;}
.h4{height:55.291992px;}
.hc{height:58.185791px;}
.h11{height:59.899658px;}
.h10{height:64.237500px;}
.h6{height:69.114990px;}
.h7{height:71.613281px;}
.hb{height:73.722656px;}
.h25{height:85.575000px;}
.h9{height:113.737500px;}
.he{height:212.820000px;}
.h1f{height:271.395000px;}
.h24{height:287.130000px;}
.h14{height:362.595000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.wf{width:1.125000px;}
.w3{width:73.237500px;}
.wa{width:132.900000px;}
.w12{width:139.650000px;}
.w28{width:144.187500px;}
.w21{width:147.562500px;}
.w4{width:152.055000px;}
.w13{width:153.225000px;}
.we{width:154.350000px;}
.w2b{width:182.520000px;}
.w16{width:188.145000px;}
.w15{width:190.350000px;}
.w1d{width:197.145000px;}
.w19{width:206.145000px;}
.w27{width:209.520000px;}
.w18{width:211.800000px;}
.wd{width:220.770000px;}
.w7{width:224.145000px;}
.w1a{width:236.550000px;}
.w24{width:238.800000px;}
.w23{width:244.425000px;}
.w25{width:244.470000px;}
.w1c{width:254.550000px;}
.w1b{width:255.720000px;}
.w1e{width:277.125000px;}
.w1f{width:287.250000px;}
.w20{width:292.875000px;}
.w9{width:295.125000px;}
.wb{width:299.655000px;}
.w17{width:312.000000px;}
.w14{width:350.325000px;}
.wc{width:354.825000px;}
.w26{width:375.105000px;}
.w2a{width:397.605000px;}
.w11{width:434.820000px;}
.w8{width:508.050000px;}
.w5{width:580.125000px;}
.w10{width:635.280000px;}
.w22{width:654.450000px;}
.w2{width:658.950000px;}
.w29{width:729.945000px;}
.w6{width:732.195000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:6.750000px;}
.x4{left:7.875000px;}
.x2{left:9.000000px;}
.x15{left:12.405000px;}
.xc{left:16.875000px;}
.xe{left:27.037500px;}
.x11{left:42.787500px;}
.x1{left:81.112487px;}
.x5{left:82.237500px;}
.x10{left:105.862500px;}
.x16{left:108.149987px;}
.x12{left:117.157500px;}
.x28{left:125.024987px;}
.x17{left:135.187487px;}
.x20{left:170.099987px;}
.x25{left:197.144987px;}
.x18{left:203.894987px;}
.x13{left:214.012500px;}
.x1b{left:215.144987px;}
.x6{left:233.175000px;}
.x2c{left:236.549987px;}
.xd{left:237.682500px;}
.x33{left:260.204987px;}
.x2f{left:266.954987px;}
.x1f{left:270.329987px;}
.xf{left:283.837500px;}
.x8{left:285.000000px;}
.x34{left:292.874987px;}
.x37{left:296.249987px;}
.x3c{left:302.999987px;}
.x14{left:305.250000px;}
.x29{left:318.795000px;}
.x35{left:327.795000px;}
.x2d{left:336.795000px;}
.x7{left:344.700000px;}
.xa{left:349.200000px;}
.xb{left:364.957500px;}
.x30{left:370.620000px;}
.x19{left:378.495000px;}
.x26{left:394.245000px;}
.x9{left:431.445000px;}
.x23{left:432.570000px;}
.x1c{left:437.070000px;}
.x38{left:458.475000px;}
.x3a{left:480.975000px;}
.x1a{left:512.520000px;}
.x21{left:518.175000px;}
.x2e{left:535.050000px;}
.x2a{left:556.470000px;}
.x36{left:567.720000px;}
.x27{left:606.030000px;}
.x24{left:624.030000px;}
.x1e{left:638.707500px;}
.x32{left:654.457500px;}
.x1d{left:657.825000px;}
.x22{left:658.950000px;}
.x31{left:664.620000px;}
.x39{left:667.995000px;}
.x3b{left:732.194987px;}
.x3{left:740.070000px;}
@media print{
.v1{vertical-align:-72.160000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.lsd{letter-spacing:-2.421333pt;}
.ls15{letter-spacing:-1.546667pt;}
.ls1b{letter-spacing:-1.002667pt;}
.lsb{letter-spacing:-0.816000pt;}
.lse{letter-spacing:-0.725333pt;}
.lsc{letter-spacing:-0.336000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.088000pt;}
.ls12{letter-spacing:0.592000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.365333pt;}
.ls3{letter-spacing:1.637333pt;}
.lsf{letter-spacing:1.728000pt;}
.ls6{letter-spacing:1.748000pt;}
.ls11{letter-spacing:1.924000pt;}
.ls19{letter-spacing:1.946667pt;}
.ls7{letter-spacing:2.000000pt;}
.ls10{letter-spacing:2.053333pt;}
.ls8{letter-spacing:2.064000pt;}
.ls18{letter-spacing:2.106667pt;}
.ls14{letter-spacing:2.133333pt;}
.ls16{letter-spacing:2.160000pt;}
.ls9{letter-spacing:4.248000pt;}
.ls5{letter-spacing:8.408000pt;}
.ls1a{letter-spacing:13.677333pt;}
.ls17{letter-spacing:41.677333pt;}
.ls13{letter-spacing:49.677333pt;}
.ls2{letter-spacing:1111.549333pt;}
.ws6{word-spacing:-23.045333pt;}
.ws5{word-spacing:-20.592000pt;}
.ws9{word-spacing:-15.000000pt;}
.wsc{word-spacing:-14.924000pt;}
.ws3{word-spacing:-13.389333pt;}
.ws8{word-spacing:-13.000000pt;}
.ws4{word-spacing:-11.752000pt;}
.wsb{word-spacing:-11.453333pt;}
.ws2{word-spacing:-11.138667pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.512000pt;}
.ws7{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._16{margin-left:-6.225333pt;}
._9{margin-left:-4.897333pt;}
._5{margin-left:-3.605333pt;}
._2{margin-left:-2.112000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._3{width:3.109333pt;}
._4{width:4.490667pt;}
._7{width:5.584000pt;}
._8{width:6.477333pt;}
._12{width:7.638667pt;}
._6{width:8.592000pt;}
._b{width:10.704000pt;}
._e{width:11.804000pt;}
._10{width:14.840000pt;}
._f{width:18.556000pt;}
._c{width:19.641333pt;}
._a{width:22.482667pt;}
._d{width:23.656000pt;}
._11{width:27.112000pt;}
._14{width:30.809333pt;}
._17{width:34.290667pt;}
._15{width:35.680000pt;}
._13{width:39.658667pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs4{font-size:44.000000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:52.000000pt;}
.fs2{font-size:60.000000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y1c{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.000000pt;}
.y40{bottom:3.013333pt;}
.ya6{bottom:3.026667pt;}
.yc3{bottom:3.040000pt;}
.yb1{bottom:4.000000pt;}
.ye0{bottom:4.013333pt;}
.y9{bottom:6.000000pt;}
.yf{bottom:7.000000pt;}
.y3f{bottom:9.040000pt;}
.y1d{bottom:10.986667pt;}
.y5{bottom:15.000000pt;}
.y3{bottom:17.000000pt;}
.y108{bottom:18.026667pt;}
.yde{bottom:19.000000pt;}
.y3c{bottom:19.040000pt;}
.yd{bottom:20.026667pt;}
.y3e{bottom:22.040000pt;}
.y6{bottom:23.000000pt;}
.y1a{bottom:24.000000pt;}
.y107{bottom:34.026667pt;}
.y3b{bottom:34.040000pt;}
.yc{bottom:36.026667pt;}
.y19{bottom:39.040000pt;}
.y2{bottom:44.033333pt;}
.y3a{bottom:49.066667pt;}
.y18{bottom:53.040000pt;}
.yb{bottom:53.053333pt;}
.y106{bottom:64.066667pt;}
.y17{bottom:65.040000pt;}
.y39{bottom:65.066667pt;}
.y38{bottom:80.066667pt;}
.y2e{bottom:81.066667pt;}
.y16{bottom:82.066667pt;}
.y1{bottom:83.066667pt;}
.ya{bottom:91.093333pt;}
.y2d{bottom:94.093333pt;}
.y37{bottom:95.106667pt;}
.y15{bottom:98.066667pt;}
.y8e{bottom:103.066667pt;}
.y110{bottom:105.100000pt;}
.y12d{bottom:106.100000pt;}
.ye8{bottom:110.100000pt;}
.y2c{bottom:110.106667pt;}
.y36{bottom:111.106667pt;}
.y14{bottom:114.106667pt;}
.y4f{bottom:115.100000pt;}
.yac{bottom:116.106667pt;}
.y8d{bottom:118.100000pt;}
.y10f{bottom:121.100000pt;}
.yef{bottom:123.133333pt;}
.y2b{bottom:125.133333pt;}
.ye7{bottom:126.100000pt;}
.y35{bottom:126.133333pt;}
.y4e{bottom:130.100000pt;}
.y13{bottom:131.106667pt;}
.y8c{bottom:134.106667pt;}
.y10e{bottom:137.106667pt;}
.y2a{bottom:141.133333pt;}
.ye6{bottom:142.133333pt;}
.yb5{bottom:143.133333pt;}
.y4d{bottom:145.133333pt;}
.y8b{bottom:149.133333pt;}
.y139{bottom:151.133333pt;}
.y12c{bottom:152.133333pt;}
.y12{bottom:154.133333pt;}
.yb4{bottom:155.133333pt;}
.y29{bottom:156.133333pt;}
.y34{bottom:157.133333pt;}
.y4c{bottom:161.133333pt;}
.y8a{bottom:165.133333pt;}
.y12b{bottom:167.133333pt;}
.yb3{bottom:171.133333pt;}
.y10d{bottom:172.133333pt;}
.y28{bottom:172.173333pt;}
.y11{bottom:176.133333pt;}
.ye5{bottom:177.133333pt;}
.y89{bottom:181.173333pt;}
.y138{bottom:182.173333pt;}
.y12a{bottom:183.173333pt;}
.y27{bottom:187.173333pt;}
.ye4{bottom:189.173333pt;}
.y4b{bottom:191.173333pt;}
.y88{bottom:196.173333pt;}
.y137{bottom:197.173333pt;}
.y129{bottom:198.173333pt;}
.yb2{bottom:203.173333pt;}
.y26{bottom:203.200000pt;}
.ye3{bottom:205.173333pt;}
.y4a{bottom:207.173333pt;}
.y87{bottom:211.173333pt;}
.y128{bottom:213.173333pt;}
.y25{bottom:218.200000pt;}
.yb0{bottom:219.200000pt;}
.ye2{bottom:221.200000pt;}
.y49{bottom:222.200000pt;}
.y86{bottom:227.200000pt;}
.y136{bottom:228.200000pt;}
.y127{bottom:229.200000pt;}
.y33{bottom:233.200000pt;}
.y24{bottom:234.240000pt;}
.y48{bottom:237.200000pt;}
.yaf{bottom:239.200000pt;}
.y85{bottom:242.200000pt;}
.y135{bottom:243.200000pt;}
.y126{bottom:244.200000pt;}
.y10c{bottom:249.200000pt;}
.y23{bottom:249.240000pt;}
.ye1{bottom:253.226667pt;}
.y47{bottom:253.240000pt;}
.yae{bottom:254.226667pt;}
.y84{bottom:257.226667pt;}
.y125{bottom:259.240000pt;}
.y10b{bottom:264.226667pt;}
.y32{bottom:264.240000pt;}
.y22{bottom:265.226667pt;}
.y46{bottom:268.240000pt;}
.yad{bottom:269.226667pt;}
.y83{bottom:273.226667pt;}
.y134{bottom:274.240000pt;}
.y124{bottom:275.226667pt;}
.y10a{bottom:279.226667pt;}
.y31{bottom:279.266667pt;}
.y21{bottom:280.266667pt;}
.yab{bottom:281.226667pt;}
.y45{bottom:283.240000pt;}
.ydf{bottom:285.226667pt;}
.y82{bottom:288.226667pt;}
.y133{bottom:289.240000pt;}
.y123{bottom:290.266667pt;}
.y30{bottom:295.266667pt;}
.y20{bottom:296.266667pt;}
.y44{bottom:299.266667pt;}
.ydd{bottom:301.266667pt;}
.y81{bottom:303.266667pt;}
.y122{bottom:305.266667pt;}
.y109{bottom:310.266667pt;}
.y2f{bottom:310.293333pt;}
.y1f{bottom:312.293333pt;}
.y43{bottom:314.266667pt;}
.y80{bottom:319.266667pt;}
.y132{bottom:320.266667pt;}
.y121{bottom:321.266667pt;}
.y105{bottom:323.266667pt;}
.y42{bottom:329.293333pt;}
.y7f{bottom:334.306667pt;}
.y131{bottom:335.293333pt;}
.ydc{bottom:336.293333pt;}
.y41{bottom:345.293333pt;}
.y7e{bottom:349.306667pt;}
.ydb{bottom:351.293333pt;}
.y3d{bottom:358.293333pt;}
.y7d{bottom:365.333333pt;}
.y130{bottom:366.333333pt;}
.yda{bottom:367.333333pt;}
.y7c{bottom:380.333333pt;}
.y12f{bottom:381.333333pt;}
.yd9{bottom:382.333333pt;}
.y1e{bottom:390.333333pt;}
.y7b{bottom:396.333333pt;}
.yd8{bottom:397.333333pt;}
.y104{bottom:400.333333pt;}
.y7a{bottom:412.373333pt;}
.yd7{bottom:413.360000pt;}
.y103{bottom:416.360000pt;}
.y79{bottom:427.373333pt;}
.yd6{bottom:428.360000pt;}
.y102{bottom:432.360000pt;}
.yd5{bottom:441.400000pt;}
.y78{bottom:442.400000pt;}
.y120{bottom:443.400000pt;}
.y101{bottom:448.400000pt;}
.y77{bottom:457.400000pt;}
.y12e{bottom:458.400000pt;}
.y11f{bottom:459.400000pt;}
.y100{bottom:464.400000pt;}
.y76{bottom:473.400000pt;}
.y11e{bottom:474.400000pt;}
.yff{bottom:480.426667pt;}
.yd4{bottom:489.426667pt;}
.y75{bottom:489.440000pt;}
.yfe{bottom:496.426667pt;}
.y74{bottom:504.440000pt;}
.yd3{bottom:505.426667pt;}
.yfd{bottom:512.426667pt;}
.y73{bottom:519.466667pt;}
.y11d{bottom:520.466667pt;}
.yd2{bottom:521.466667pt;}
.yaa{bottom:526.466667pt;}
.yfc{bottom:528.466667pt;}
.y72{bottom:535.466667pt;}
.yd1{bottom:537.466667pt;}
.ya9{bottom:541.466667pt;}
.yfb{bottom:544.466667pt;}
.y71{bottom:550.506667pt;}
.y11c{bottom:551.506667pt;}
.yd0{bottom:553.506667pt;}
.ya8{bottom:556.506667pt;}
.yfa{bottom:560.506667pt;}
.y70{bottom:565.506667pt;}
.y11b{bottom:566.506667pt;}
.ya7{bottom:569.506667pt;}
.yf9{bottom:576.506667pt;}
.y11a{bottom:578.506667pt;}
.y6f{bottom:581.506667pt;}
.ya5{bottom:585.506667pt;}
.ycf{bottom:588.533333pt;}
.yf8{bottom:595.533333pt;}
.y6e{bottom:596.533333pt;}
.ya4{bottom:601.533333pt;}
.yce{bottom:603.533333pt;}
.yf7{bottom:610.533333pt;}
.y6d{bottom:611.533333pt;}
.ya3{bottom:617.533333pt;}
.ycd{bottom:619.533333pt;}
.yf6{bottom:623.533333pt;}
.y6c{bottom:627.573333pt;}
.ycc{bottom:634.560000pt;}
.ya2{bottom:636.573333pt;}
.yf5{bottom:639.560000pt;}
.y6b{bottom:642.573333pt;}
.ycb{bottom:649.560000pt;}
.ya1{bottom:652.560000pt;}
.yf4{bottom:655.560000pt;}
.y6a{bottom:657.573333pt;}
.yca{bottom:665.600000pt;}
.ya0{bottom:667.600000pt;}
.yf3{bottom:671.600000pt;}
.y69{bottom:673.600000pt;}
.yc9{bottom:680.600000pt;}
.y9f{bottom:682.600000pt;}
.y68{bottom:688.600000pt;}
.yf2{bottom:690.600000pt;}
.yc8{bottom:695.600000pt;}
.y9e{bottom:698.626667pt;}
.y67{bottom:703.626667pt;}
.yf1{bottom:706.626667pt;}
.yc7{bottom:711.626667pt;}
.y1b{bottom:712.640000pt;}
.y9d{bottom:713.626667pt;}
.y66{bottom:719.626667pt;}
.yf0{bottom:721.626667pt;}
.yc6{bottom:726.626667pt;}
.y9c{bottom:728.626667pt;}
.yee{bottom:733.640000pt;}
.y65{bottom:734.626667pt;}
.y10{bottom:738.666667pt;}
.yc5{bottom:739.666667pt;}
.y9b{bottom:744.666667pt;}
.y64{bottom:749.666667pt;}
.yc4{bottom:755.666667pt;}
.y9a{bottom:759.666667pt;}
.y63{bottom:765.666667pt;}
.yc2{bottom:771.666667pt;}
.y99{bottom:772.706667pt;}
.y62{bottom:780.706667pt;}
.yc1{bottom:787.706667pt;}
.y98{bottom:788.706667pt;}
.y61{bottom:795.706667pt;}
.yc0{bottom:803.693333pt;}
.y97{bottom:804.706667pt;}
.y60{bottom:811.733333pt;}
.y96{bottom:820.733333pt;}
.ybf{bottom:822.733333pt;}
.y5f{bottom:826.733333pt;}
.y95{bottom:836.733333pt;}
.ybe{bottom:837.733333pt;}
.y5e{bottom:841.733333pt;}
.y119{bottom:851.773333pt;}
.y94{bottom:852.773333pt;}
.ybd{bottom:853.773333pt;}
.y5d{bottom:857.773333pt;}
.y118{bottom:867.773333pt;}
.y93{bottom:868.760000pt;}
.ybc{bottom:868.773333pt;}
.y5c{bottom:872.773333pt;}
.y117{bottom:882.773333pt;}
.ybb{bottom:883.800000pt;}
.y5b{bottom:887.800000pt;}
.y116{bottom:897.800000pt;}
.yba{bottom:899.800000pt;}
.y92{bottom:902.800000pt;}
.y5a{bottom:903.800000pt;}
.yb9{bottom:911.800000pt;}
.y115{bottom:913.800000pt;}
.y59{bottom:918.800000pt;}
.ye{bottom:927.840000pt;}
.y114{bottom:928.840000pt;}
.y58{bottom:933.840000pt;}
.yb8{bottom:943.840000pt;}
.y91{bottom:948.840000pt;}
.y57{bottom:949.840000pt;}
.y8{bottom:950.840000pt;}
.y113{bottom:956.840000pt;}
.yb7{bottom:959.866667pt;}
.y56{bottom:964.866667pt;}
.y112{bottom:972.866667pt;}
.yb6{bottom:975.866667pt;}
.y55{bottom:979.866667pt;}
.y111{bottom:988.866667pt;}
.yed{bottom:991.866667pt;}
.y90{bottom:994.893333pt;}
.y54{bottom:995.893333pt;}
.yec{bottom:1004.893333pt;}
.y53{bottom:1010.893333pt;}
.yeb{bottom:1020.893333pt;}
.y52{bottom:1025.893333pt;}
.yea{bottom:1036.933333pt;}
.y8f{bottom:1040.933333pt;}
.y51{bottom:1041.933333pt;}
.ye9{bottom:1052.933333pt;}
.y7{bottom:1054.933333pt;}
.y50{bottom:1056.933333pt;}
.h1e{height:14.986667pt;}
.h1c{height:15.000000pt;}
.h1d{height:15.020000pt;}
.h1b{height:15.033333pt;}
.h20{height:16.000000pt;}
.h22{height:16.020000pt;}
.h21{height:16.033333pt;}
.hd{height:23.000000pt;}
.h13{height:26.020000pt;}
.h12{height:26.625000pt;}
.h3{height:29.033333pt;}
.h23{height:31.033333pt;}
.h1a{height:32.033333pt;}
.h18{height:35.406250pt;}
.h19{height:36.308594pt;}
.h2{height:36.689453pt;}
.h26{height:37.857422pt;}
.hf{height:38.289062pt;}
.h17{height:39.634766pt;}
.h16{height:41.843750pt;}
.h8{height:43.681641pt;}
.h15{height:43.763672pt;}
.ha{height:45.052734pt;}
.h5{height:47.742188pt;}
.h4{height:49.148438pt;}
.hc{height:51.720703pt;}
.h11{height:53.244141pt;}
.h10{height:57.100000pt;}
.h6{height:61.435547pt;}
.h7{height:63.656250pt;}
.hb{height:65.531250pt;}
.h25{height:76.066667pt;}
.h9{height:101.100000pt;}
.he{height:189.173333pt;}
.h1f{height:241.240000pt;}
.h24{height:255.226667pt;}
.h14{height:322.306667pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.wf{width:1.000000pt;}
.w3{width:65.100000pt;}
.wa{width:118.133333pt;}
.w12{width:124.133333pt;}
.w28{width:128.166667pt;}
.w21{width:131.166667pt;}
.w4{width:135.160000pt;}
.w13{width:136.200000pt;}
.we{width:137.200000pt;}
.w2b{width:162.240000pt;}
.w16{width:167.240000pt;}
.w15{width:169.200000pt;}
.w1d{width:175.240000pt;}
.w19{width:183.240000pt;}
.w27{width:186.240000pt;}
.w18{width:188.266667pt;}
.wd{width:196.240000pt;}
.w7{width:199.240000pt;}
.w1a{width:210.266667pt;}
.w24{width:212.266667pt;}
.w23{width:217.266667pt;}
.w25{width:217.306667pt;}
.w1c{width:226.266667pt;}
.w1b{width:227.306667pt;}
.w1e{width:246.333333pt;}
.w1f{width:255.333333pt;}
.w20{width:260.333333pt;}
.w9{width:262.333333pt;}
.wb{width:266.360000pt;}
.w17{width:277.333333pt;}
.w14{width:311.400000pt;}
.wc{width:315.400000pt;}
.w26{width:333.426667pt;}
.w2a{width:353.426667pt;}
.w11{width:386.506667pt;}
.w8{width:451.600000pt;}
.w5{width:515.666667pt;}
.w10{width:564.693333pt;}
.w22{width:581.733333pt;}
.w2{width:585.733333pt;}
.w29{width:648.840000pt;}
.w6{width:650.840000pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:6.000000pt;}
.x4{left:7.000000pt;}
.x2{left:8.000000pt;}
.x15{left:11.026667pt;}
.xc{left:15.000000pt;}
.xe{left:24.033333pt;}
.x11{left:38.033333pt;}
.x1{left:72.099988pt;}
.x5{left:73.100000pt;}
.x10{left:94.100000pt;}
.x16{left:96.133322pt;}
.x12{left:104.140000pt;}
.x28{left:111.133322pt;}
.x17{left:120.166655pt;}
.x20{left:151.199988pt;}
.x25{left:175.239988pt;}
.x18{left:181.239988pt;}
.x13{left:190.233333pt;}
.x1b{left:191.239988pt;}
.x6{left:207.266667pt;}
.x2c{left:210.266655pt;}
.xd{left:211.273333pt;}
.x33{left:231.293322pt;}
.x2f{left:237.293322pt;}
.x1f{left:240.293322pt;}
.xf{left:252.300000pt;}
.x8{left:253.333333pt;}
.x34{left:260.333322pt;}
.x37{left:263.333322pt;}
.x3c{left:269.333322pt;}
.x14{left:271.333333pt;}
.x29{left:283.373333pt;}
.x35{left:291.373333pt;}
.x2d{left:299.373333pt;}
.x7{left:306.400000pt;}
.xa{left:310.400000pt;}
.xb{left:324.406667pt;}
.x30{left:329.440000pt;}
.x19{left:336.440000pt;}
.x26{left:350.440000pt;}
.x9{left:383.506667pt;}
.x23{left:384.506667pt;}
.x1c{left:388.506667pt;}
.x38{left:407.533333pt;}
.x3a{left:427.533333pt;}
.x1a{left:455.573333pt;}
.x21{left:460.600000pt;}
.x2e{left:475.600000pt;}
.x2a{left:494.640000pt;}
.x36{left:504.640000pt;}
.x27{left:538.693333pt;}
.x24{left:554.693333pt;}
.x1e{left:567.740000pt;}
.x32{left:581.740000pt;}
.x1d{left:584.733333pt;}
.x22{left:585.733333pt;}
.x31{left:590.773333pt;}
.x39{left:593.773333pt;}
.x3b{left:650.839988pt;}
.x3{left:657.840000pt;}
}




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