
    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_5ec991c37926beedca76af30.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_d70ae0316458b1763b3944eb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0f31b94576316e12ec6dfd46.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4bc25fe1f86d78935d395799.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_53622188d8881e7411a0a636.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.772949;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_97a21dfb97da23d688299bc9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_534e9d3abeb06c17620b0b66.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8cb8189f2e36e59e1b32c6e4.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f9a9800c682311243c0c91d9.woff2')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_6731bf6064d9da16286f6a59.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.767578;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_18d460463aaa4d1d9f0fd73a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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_b1c34ec3f2d9802b41e9749d.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1c32e70ed8fccfb4c42eeefc.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.435059;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:-69.840000px;}
.v4{vertical-align:-60.480000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.ls5{letter-spacing:-0.810000px;}
.ls3{letter-spacing:-0.457800px;}
.ls6{letter-spacing:-0.226200px;}
.ls14{letter-spacing:-0.091200px;}
.ls13{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.256200px;}
.ls11{letter-spacing:0.298800px;}
.lse{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.900000px;}
.ls8{letter-spacing:1.620000px;}
.ls7{letter-spacing:3.060000px;}
.ls12{letter-spacing:16.020000px;}
.lsc{letter-spacing:41.706720px;}
.lsb{letter-spacing:44.586720px;}
.lsa{letter-spacing:46.026720px;}
.lsd{letter-spacing:49.626720px;}
.ls0{letter-spacing:2010.696000px;}
.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;}
}
.wsc{word-spacing:-18.036000px;}
.wsb{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.102200px;}
.ws7{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.226440px;}
.ws9{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.wsd{word-spacing:-12.236544px;}
.wse{word-spacing:-12.204000px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.213800px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
.wsf{word-spacing:35.146656px;}
._19{margin-left:-2.304000px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._3{width:2.343600px;}
._2{width:3.393840px;}
._8{width:4.860000px;}
._10{width:5.937120px;}
._d{width:6.989040px;}
._e{width:8.024640px;}
._4{width:9.697680px;}
._5{width:10.898640px;}
._9{width:12.142320px;}
._f{width:13.790640px;}
._b{width:14.796000px;}
._c{width:15.834480px;}
._6{width:17.226000px;}
._7{width:18.252000px;}
._a{width:19.602000px;}
._13{width:20.951280px;}
._1b{width:55.477056px;}
._1a{width:63.683520px;}
._11{width:84.312000px;}
._14{width:140.580000px;}
._17{width:153.941760px;}
._18{width:172.108800px;}
._15{width:182.028960px;}
._16{width:219.618000px;}
._12{width:488.700240px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc6{color:rgb(89,89,89);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:12.240000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs9{font-size:54.144000px;}
.fs2{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fsb{font-size:72.144000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:3.240000px;}
.y3f{bottom:3.585000px;}
.y4a{bottom:3.600000px;}
.yac{bottom:3.765000px;}
.yc5{bottom:3.780000px;}
.y5{bottom:4.140000px;}
.y56{bottom:5.010000px;}
.yc7{bottom:5.385000px;}
.yc9{bottom:5.400000px;}
.y2{bottom:9.900000px;}
.yad{bottom:12.405000px;}
.y49{bottom:14.040000px;}
.ybf{bottom:17.565000px;}
.yef{bottom:17.610000px;}
.ye7{bottom:17.745000px;}
.y123{bottom:17.790000px;}
.y3e{bottom:20.145000px;}
.yab{bottom:20.865000px;}
.yc4{bottom:21.060000px;}
.y4{bottom:23.040000px;}
.y3d{bottom:37.425000px;}
.y48{bottom:38.160000px;}
.y52{bottom:45.000000px;}
.y120{bottom:47.700000px;}
.y3{bottom:48.090000px;}
.y47{bottom:51.330000px;}
.y3c{bottom:54.705000px;}
.y8{bottom:58.500000px;}
.y51{bottom:60.510000px;}
.y11f{bottom:64.185000px;}
.y46{bottom:64.290000px;}
.ybb{bottom:65.055000px;}
.y3b{bottom:71.985000px;}
.y45{bottom:77.250000px;}
.y50{bottom:77.970000px;}
.y7{bottom:78.660000px;}
.ye2{bottom:81.510000px;}
.y11c{bottom:81.720000px;}
.y3a{bottom:89.130000px;}
.ye9{bottom:89.460000px;}
.y44{bottom:90.390000px;}
.y4f{bottom:93.810000px;}
.ye3{bottom:99.075000px;}
.ybc{bottom:101.415000px;}
.yea{bottom:104.115000px;}
.y90{bottom:106.200000px;}
.y39{bottom:106.410000px;}
.y4e{bottom:111.270000px;}
.y43{bottom:112.170000px;}
.y11d{bottom:112.350000px;}
.ye4{bottom:116.640000px;}
.yeb{bottom:118.725000px;}
.y38{bottom:123.690000px;}
.y8f{bottom:123.840000px;}
.y54{bottom:127.080000px;}
.y4d{bottom:127.110000px;}
.ybe{bottom:129.525000px;}
.yb9{bottom:130.680000px;}
.yec{bottom:133.380000px;}
.y37{bottom:140.970000px;}
.y8e{bottom:141.120000px;}
.y4c{bottom:142.590000px;}
.y11e{bottom:142.995000px;}
.y53{bottom:144.360000px;}
.ye6{bottom:144.870000px;}
.yb8{bottom:147.780000px;}
.ybd{bottom:155.265000px;}
.y4b{bottom:158.070000px;}
.y36{bottom:158.250000px;}
.y8d{bottom:158.400000px;}
.y40{bottom:158.940000px;}
.yee{bottom:161.610000px;}
.ye0{bottom:163.260000px;}
.y11a{bottom:164.340000px;}
.yb7{bottom:165.060000px;}
.ye5{bottom:168.810000px;}
.y122{bottom:169.530000px;}
.y42{bottom:174.270000px;}
.y35{bottom:175.530000px;}
.y8c{bottom:175.680000px;}
.ydf{bottom:180.540000px;}
.y119{bottom:181.620000px;}
.yb6{bottom:182.340000px;}
.y41{bottom:184.890000px;}
.yed{bottom:185.550000px;}
.y121{bottom:190.230000px;}
.y34{bottom:192.630000px;}
.y8b{bottom:192.780000px;}
.yde{bottom:197.460000px;}
.y118{bottom:198.900000px;}
.yb5{bottom:199.260000px;}
.y8a{bottom:209.730000px;}
.y33{bottom:209.910000px;}
.ydd{bottom:212.085000px;}
.y117{bottom:216.210000px;}
.yb4{bottom:216.570000px;}
.y1f{bottom:226.290000px;}
.y32{bottom:227.190000px;}
.y89{bottom:227.370000px;}
.yb3{bottom:231.165000px;}
.ydc{bottom:231.705000px;}
.y116{bottom:233.310000px;}
.y31{bottom:244.470000px;}
.y88{bottom:244.650000px;}
.yb2{bottom:249.165000px;}
.y1e{bottom:250.410000px;}
.y115{bottom:250.590000px;}
.ydb{bottom:251.325000px;}
.y30{bottom:261.750000px;}
.y87{bottom:261.930000px;}
.yb1{bottom:267.165000px;}
.y114{bottom:267.870000px;}
.yda{bottom:270.945000px;}
.y1d{bottom:274.710000px;}
.y2f{bottom:278.490000px;}
.y86{bottom:279.210000px;}
.y113{bottom:285.150000px;}
.yb0{bottom:285.165000px;}
.yd9{bottom:290.745000px;}
.y85{bottom:295.950000px;}
.y1c{bottom:298.830000px;}
.y112{bottom:302.430000px;}
.yaf{bottom:303.165000px;}
.y2e{bottom:304.770000px;}
.yd8{bottom:310.365000px;}
.y84{bottom:313.590000px;}
.y111{bottom:319.530000px;}
.y2d{bottom:320.280000px;}
.yae{bottom:321.165000px;}
.y1b{bottom:322.980000px;}
.yd7{bottom:329.985000px;}
.y83{bottom:330.870000px;}
.y2c{bottom:335.760000px;}
.y110{bottom:336.810000px;}
.yaa{bottom:339.165000px;}
.y1a{bottom:347.100000px;}
.y82{bottom:347.790000px;}
.y2b{bottom:351.240000px;}
.y10f{bottom:354.090000px;}
.y81{bottom:365.430000px;}
.y2a{bottom:366.900000px;}
.yd6{bottom:368.490000px;}
.y10e{bottom:371.010000px;}
.y19{bottom:371.220000px;}
.y11{bottom:371.745000px;}
.ya9{bottom:377.670000px;}
.y29{bottom:382.380000px;}
.y80{bottom:382.710000px;}
.yd5{bottom:385.770000px;}
.y10d{bottom:388.650000px;}
.ya8{bottom:394.950000px;}
.y18{bottom:395.340000px;}
.y28{bottom:397.860000px;}
.y7f{bottom:399.450000px;}
.yd4{bottom:399.810000px;}
.ye8{bottom:399.960000px;}
.y10c{bottom:405.930000px;}
.ya7{bottom:412.230000px;}
.y27{bottom:413.340000px;}
.y7e{bottom:417.090000px;}
.y17{bottom:419.640000px;}
.y10b{bottom:423.030000px;}
.ya6{bottom:426.270000px;}
.yba{bottom:426.420000px;}
.y26{bottom:429.000000px;}
.y7d{bottom:434.370000px;}
.y10a{bottom:440.310000px;}
.y16{bottom:443.760000px;}
.y25{bottom:444.480000px;}
.y7c{bottom:451.695000px;}
.y109{bottom:457.635000px;}
.y24{bottom:459.960000px;}
.y15{bottom:467.880000px;}
.y7b{bottom:468.975000px;}
.y108{bottom:474.915000px;}
.y23{bottom:475.440000px;}
.y7a{bottom:486.255000px;}
.y22{bottom:491.100000px;}
.y14{bottom:492.000000px;}
.y107{bottom:492.195000px;}
.y79{bottom:502.995000px;}
.y21{bottom:506.580000px;}
.y106{bottom:509.475000px;}
.y13{bottom:516.120000px;}
.y78{bottom:520.635000px;}
.y105{bottom:526.215000px;}
.y20{bottom:537.180000px;}
.y77{bottom:537.555000px;}
.y12{bottom:540.240000px;}
.y104{bottom:543.855000px;}
.y76{bottom:555.195000px;}
.y103{bottom:561.135000px;}
.y75{bottom:572.475000px;}
.y102{bottom:578.415000px;}
.y74{bottom:589.575000px;}
.y101{bottom:595.695000px;}
.y73{bottom:606.855000px;}
.y100{bottom:612.975000px;}
.ya5{bottom:616.215000px;}
.yd3{bottom:617.295000px;}
.y72{bottom:624.135000px;}
.yff{bottom:630.075000px;}
.ya4{bottom:633.855000px;}
.yd2{bottom:634.395000px;}
.y71{bottom:641.415000px;}
.yfe{bottom:647.355000px;}
.ya3{bottom:651.135000px;}
.yd1{bottom:651.675000px;}
.y70{bottom:658.335000px;}
.yfd{bottom:664.275000px;}
.ya2{bottom:668.415000px;}
.yd0{bottom:668.955000px;}
.y6f{bottom:675.975000px;}
.yfc{bottom:681.945000px;}
.ya1{bottom:685.725000px;}
.ycf{bottom:685.905000px;}
.y6e{bottom:693.105000px;}
.yfb{bottom:699.225000px;}
.ya0{bottom:703.005000px;}
.yce{bottom:703.185000px;}
.y6d{bottom:710.385000px;}
.yfa{bottom:716.325000px;}
.ycd{bottom:717.765000px;}
.y9f{bottom:719.745000px;}
.y6c{bottom:727.665000px;}
.yf9{bottom:733.605000px;}
.y9d{bottom:734.505000px;}
.ycc{bottom:737.385000px;}
.y6b{bottom:744.945000px;}
.yf8{bottom:750.885000px;}
.y9c{bottom:752.505000px;}
.ycb{bottom:757.020000px;}
.y6a{bottom:762.225000px;}
.yf7{bottom:768.165000px;}
.y9b{bottom:770.505000px;}
.yca{bottom:776.640000px;}
.y69{bottom:779.505000px;}
.yf6{bottom:785.445000px;}
.y9a{bottom:788.505000px;}
.yc8{bottom:796.425000px;}
.y68{bottom:796.605000px;}
.yf5{bottom:802.725000px;}
.y99{bottom:806.505000px;}
.y67{bottom:813.885000px;}
.yc6{bottom:816.060000px;}
.yf4{bottom:819.825000px;}
.y98{bottom:824.505000px;}
.y66{bottom:831.165000px;}
.yc3{bottom:835.665000px;}
.yf3{bottom:837.105000px;}
.y97{bottom:842.505000px;}
.y65{bottom:848.445000px;}
.yf2{bottom:854.025000px;}
.y96{bottom:860.505000px;}
.y64{bottom:865.725000px;}
.yf1{bottom:871.305000px;}
.yc2{bottom:874.365000px;}
.y95{bottom:878.505000px;}
.y63{bottom:882.825000px;}
.yf0{bottom:885.165000px;}
.y11b{bottom:885.240000px;}
.yc1{bottom:891.465000px;}
.y94{bottom:899.745000px;}
.y62{bottom:900.105000px;}
.yc0{bottom:905.325000px;}
.ye1{bottom:906.660000px;}
.y61{bottom:917.430000px;}
.y10{bottom:924.810000px;}
.yf{bottom:931.650000px;}
.y60{bottom:934.710000px;}
.y5f{bottom:951.990000px;}
.ye{bottom:954.150000px;}
.y5e{bottom:969.270000px;}
.yd{bottom:971.430000px;}
.y93{bottom:986.010000px;}
.y5d{bottom:986.370000px;}
.yc{bottom:1000.590000px;}
.y5c{bottom:1003.650000px;}
.yb{bottom:1019.850000px;}
.y5b{bottom:1020.570000px;}
.y92{bottom:1020.930000px;}
.y5a{bottom:1038.210000px;}
.ya{bottom:1044.150000px;}
.y59{bottom:1055.490000px;}
.y9{bottom:1071.870000px;}
.y58{bottom:1072.770000px;}
.y55{bottom:1075.320000px;}
.y91{bottom:1089.510000px;}
.y57{bottom:1089.870000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.ha{height:8.905078px;}
.h18{height:17.100000px;}
.h1a{height:17.265000px;}
.h1f{height:18.885000px;}
.h20{height:18.900000px;}
.h14{height:27.540000px;}
.h19{height:34.365000px;}
.h1e{height:34.560000px;}
.h9{height:38.158594px;}
.h11{height:40.948242px;}
.hd{height:40.985156px;}
.h10{height:41.726953px;}
.hc{height:42.086250px;}
.he{height:52.971680px;}
.h1c{height:53.709961px;}
.h22{height:53.853187px;}
.h13{height:54.421875px;}
.h6{height:57.324375px;}
.h8{height:58.651172px;}
.hf{height:60.226875px;}
.h16{height:61.423863px;}
.h17{height:62.211094px;}
.h15{height:64.002656px;}
.h7{height:64.126055px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h23{height:70.664062px;}
.h25{height:70.805391px;}
.h27{height:72.562500px;}
.h1d{height:83.787539px;}
.h2{height:84.990000px;}
.h4{height:117.180000px;}
.h1b{height:186.660000px;}
.h21{height:196.740000px;}
.h12{height:212.070000px;}
.h24{height:213.660000px;}
.h26{height:218.160000px;}
.hb{height:549.810000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w13{width:33.840000px;}
.wf{width:36.741000px;}
.wa{width:46.065000px;}
.w7{width:75.441000px;}
.w16{width:87.141000px;}
.w15{width:92.145000px;}
.w11{width:98.985000px;}
.w12{width:99.021000px;}
.w2{width:104.076000px;}
.wd{width:125.121000px;}
.wc{width:125.136000px;}
.w4{width:132.651000px;}
.w14{width:135.756000px;}
.w9{width:146.721000px;}
.w10{width:161.490000px;}
.w6{width:162.720000px;}
.wb{width:164.535000px;}
.w8{width:217.830000px;}
.w17{width:263.340000px;}
.w18{width:282.420000px;}
.we{width:304.560000px;}
.w19{width:312.660000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:6.876000px;}
.x19{left:8.085000px;}
.x33{left:9.825000px;}
.x4{left:12.765000px;}
.x2a{left:13.845000px;}
.x14{left:15.471000px;}
.x6{left:17.265000px;}
.x17{left:20.691000px;}
.x16{left:23.751000px;}
.x15{left:27.171000px;}
.x1d{left:29.151000px;}
.x2c{left:30.450000px;}
.x23{left:33.120000px;}
.x34{left:39.165000px;}
.x43{left:41.370000px;}
.xf{left:43.731000px;}
.x31{left:45.750000px;}
.x1c{left:47.691000px;}
.x10{left:50.751000px;}
.x48{left:52.560000px;}
.x30{left:53.850000px;}
.xe{left:55.071000px;}
.x2f{left:56.910000px;}
.x26{left:59.565000px;}
.x1a{left:62.130000px;}
.x1e{left:66.225000px;}
.x13{left:68.205000px;}
.x49{left:71.355000px;}
.x12{left:75.585000px;}
.x1{left:78.300000px;}
.x25{left:82.620000px;}
.x7{left:86.436000px;}
.x27{left:88.200000px;}
.x42{left:90.645000px;}
.x2{left:95.790000px;}
.x45{left:100.185000px;}
.x1b{left:103.305000px;}
.x35{left:108.150000px;}
.x36{left:110.235000px;}
.x20{left:113.436000px;}
.x4a{left:118.365000px;}
.x44{left:120.420000px;}
.x11{left:124.545000px;}
.x5{left:141.330000px;}
.x4b{left:143.175000px;}
.x3{left:182.385000px;}
.x29{left:215.145000px;}
.x18{left:219.105000px;}
.x21{left:225.945000px;}
.x38{left:247.365000px;}
.x2b{left:261.945000px;}
.x3d{left:270.975000px;}
.x39{left:284.835000px;}
.x47{left:290.160000px;}
.x32{left:293.580000px;}
.x22{left:302.115000px;}
.x3e{left:305.715000px;}
.x41{left:314.820000px;}
.xa{left:345.495000px;}
.x2d{left:427.215000px;}
.x3f{left:442.200000px;}
.x3a{left:447.060000px;}
.xb{left:489.345000px;}
.x24{left:520.680000px;}
.x40{left:535.260000px;}
.x3b{left:546.960000px;}
.x2e{left:553.260000px;}
.x37{left:578.265000px;}
.x3c{left:588.345000px;}
.x28{left:599.685000px;}
.x46{left:602.925000px;}
.xc{left:609.765000px;}
.x9{left:766.050000px;}
.x8{left:790.170000px;}
.xd{left:806.940000px;}
@media print{
.v1{vertical-align:-62.080000pt;}
.v4{vertical-align:-53.760000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.ls5{letter-spacing:-0.720000pt;}
.ls3{letter-spacing:-0.406933pt;}
.ls6{letter-spacing:-0.201067pt;}
.ls14{letter-spacing:-0.081067pt;}
.ls13{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.227733pt;}
.ls11{letter-spacing:0.265600pt;}
.lse{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.800000pt;}
.ls8{letter-spacing:1.440000pt;}
.ls7{letter-spacing:2.720000pt;}
.ls12{letter-spacing:14.240000pt;}
.lsc{letter-spacing:37.072640pt;}
.lsb{letter-spacing:39.632640pt;}
.lsa{letter-spacing:40.912640pt;}
.lsd{letter-spacing:44.112640pt;}
.ls0{letter-spacing:1787.285333pt;}
.wsc{word-spacing:-16.032000pt;}
.wsb{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.313067pt;}
.ws7{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.534613pt;}
.ws9{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.wsd{word-spacing:-10.876928pt;}
.wse{word-spacing:-10.848000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-9.078933pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
.wsf{word-spacing:31.241472pt;}
._19{margin-left:-2.048000pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._3{width:2.083200pt;}
._2{width:3.016747pt;}
._8{width:4.320000pt;}
._10{width:5.277440pt;}
._d{width:6.212480pt;}
._e{width:7.133013pt;}
._4{width:8.620160pt;}
._5{width:9.687680pt;}
._9{width:10.793173pt;}
._f{width:12.258347pt;}
._b{width:13.152000pt;}
._c{width:14.075093pt;}
._6{width:15.312000pt;}
._7{width:16.224000pt;}
._a{width:17.424000pt;}
._13{width:18.623360pt;}
._1b{width:49.312939pt;}
._1a{width:56.607573pt;}
._11{width:74.944000pt;}
._14{width:124.960000pt;}
._17{width:136.837120pt;}
._18{width:152.985600pt;}
._15{width:161.803520pt;}
._16{width:195.216000pt;}
._12{width:434.400213pt;}
.fs6{font-size:10.880000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs9{font-size:48.128000pt;}
.fs2{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fsb{font-size:64.128000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:2.880000pt;}
.y3f{bottom:3.186667pt;}
.y4a{bottom:3.200000pt;}
.yac{bottom:3.346667pt;}
.yc5{bottom:3.360000pt;}
.y5{bottom:3.680000pt;}
.y56{bottom:4.453333pt;}
.yc7{bottom:4.786667pt;}
.yc9{bottom:4.800000pt;}
.y2{bottom:8.800000pt;}
.yad{bottom:11.026667pt;}
.y49{bottom:12.480000pt;}
.ybf{bottom:15.613333pt;}
.yef{bottom:15.653333pt;}
.ye7{bottom:15.773333pt;}
.y123{bottom:15.813333pt;}
.y3e{bottom:17.906667pt;}
.yab{bottom:18.546667pt;}
.yc4{bottom:18.720000pt;}
.y4{bottom:20.480000pt;}
.y3d{bottom:33.266667pt;}
.y48{bottom:33.920000pt;}
.y52{bottom:40.000000pt;}
.y120{bottom:42.400000pt;}
.y3{bottom:42.746667pt;}
.y47{bottom:45.626667pt;}
.y3c{bottom:48.626667pt;}
.y8{bottom:52.000000pt;}
.y51{bottom:53.786667pt;}
.y11f{bottom:57.053333pt;}
.y46{bottom:57.146667pt;}
.ybb{bottom:57.826667pt;}
.y3b{bottom:63.986667pt;}
.y45{bottom:68.666667pt;}
.y50{bottom:69.306667pt;}
.y7{bottom:69.920000pt;}
.ye2{bottom:72.453333pt;}
.y11c{bottom:72.640000pt;}
.y3a{bottom:79.226667pt;}
.ye9{bottom:79.520000pt;}
.y44{bottom:80.346667pt;}
.y4f{bottom:83.386667pt;}
.ye3{bottom:88.066667pt;}
.ybc{bottom:90.146667pt;}
.yea{bottom:92.546667pt;}
.y90{bottom:94.400000pt;}
.y39{bottom:94.586667pt;}
.y4e{bottom:98.906667pt;}
.y43{bottom:99.706667pt;}
.y11d{bottom:99.866667pt;}
.ye4{bottom:103.680000pt;}
.yeb{bottom:105.533333pt;}
.y38{bottom:109.946667pt;}
.y8f{bottom:110.080000pt;}
.y54{bottom:112.960000pt;}
.y4d{bottom:112.986667pt;}
.ybe{bottom:115.133333pt;}
.yb9{bottom:116.160000pt;}
.yec{bottom:118.560000pt;}
.y37{bottom:125.306667pt;}
.y8e{bottom:125.440000pt;}
.y4c{bottom:126.746667pt;}
.y11e{bottom:127.106667pt;}
.y53{bottom:128.320000pt;}
.ye6{bottom:128.773333pt;}
.yb8{bottom:131.360000pt;}
.ybd{bottom:138.013333pt;}
.y4b{bottom:140.506667pt;}
.y36{bottom:140.666667pt;}
.y8d{bottom:140.800000pt;}
.y40{bottom:141.280000pt;}
.yee{bottom:143.653333pt;}
.ye0{bottom:145.120000pt;}
.y11a{bottom:146.080000pt;}
.yb7{bottom:146.720000pt;}
.ye5{bottom:150.053333pt;}
.y122{bottom:150.693333pt;}
.y42{bottom:154.906667pt;}
.y35{bottom:156.026667pt;}
.y8c{bottom:156.160000pt;}
.ydf{bottom:160.480000pt;}
.y119{bottom:161.440000pt;}
.yb6{bottom:162.080000pt;}
.y41{bottom:164.346667pt;}
.yed{bottom:164.933333pt;}
.y121{bottom:169.093333pt;}
.y34{bottom:171.226667pt;}
.y8b{bottom:171.360000pt;}
.yde{bottom:175.520000pt;}
.y118{bottom:176.800000pt;}
.yb5{bottom:177.120000pt;}
.y8a{bottom:186.426667pt;}
.y33{bottom:186.586667pt;}
.ydd{bottom:188.520000pt;}
.y117{bottom:192.186667pt;}
.yb4{bottom:192.506667pt;}
.y1f{bottom:201.146667pt;}
.y32{bottom:201.946667pt;}
.y89{bottom:202.106667pt;}
.yb3{bottom:205.480000pt;}
.ydc{bottom:205.960000pt;}
.y116{bottom:207.386667pt;}
.y31{bottom:217.306667pt;}
.y88{bottom:217.466667pt;}
.yb2{bottom:221.480000pt;}
.y1e{bottom:222.586667pt;}
.y115{bottom:222.746667pt;}
.ydb{bottom:223.400000pt;}
.y30{bottom:232.666667pt;}
.y87{bottom:232.826667pt;}
.yb1{bottom:237.480000pt;}
.y114{bottom:238.106667pt;}
.yda{bottom:240.840000pt;}
.y1d{bottom:244.186667pt;}
.y2f{bottom:247.546667pt;}
.y86{bottom:248.186667pt;}
.y113{bottom:253.466667pt;}
.yb0{bottom:253.480000pt;}
.yd9{bottom:258.440000pt;}
.y85{bottom:263.066667pt;}
.y1c{bottom:265.626667pt;}
.y112{bottom:268.826667pt;}
.yaf{bottom:269.480000pt;}
.y2e{bottom:270.906667pt;}
.yd8{bottom:275.880000pt;}
.y84{bottom:278.746667pt;}
.y111{bottom:284.026667pt;}
.y2d{bottom:284.693333pt;}
.yae{bottom:285.480000pt;}
.y1b{bottom:287.093333pt;}
.yd7{bottom:293.320000pt;}
.y83{bottom:294.106667pt;}
.y2c{bottom:298.453333pt;}
.y110{bottom:299.386667pt;}
.yaa{bottom:301.480000pt;}
.y1a{bottom:308.533333pt;}
.y82{bottom:309.146667pt;}
.y2b{bottom:312.213333pt;}
.y10f{bottom:314.746667pt;}
.y81{bottom:324.826667pt;}
.y2a{bottom:326.133333pt;}
.yd6{bottom:327.546667pt;}
.y10e{bottom:329.786667pt;}
.y19{bottom:329.973333pt;}
.y11{bottom:330.440000pt;}
.ya9{bottom:335.706667pt;}
.y29{bottom:339.893333pt;}
.y80{bottom:340.186667pt;}
.yd5{bottom:342.906667pt;}
.y10d{bottom:345.466667pt;}
.ya8{bottom:351.066667pt;}
.y18{bottom:351.413333pt;}
.y28{bottom:353.653333pt;}
.y7f{bottom:355.066667pt;}
.yd4{bottom:355.386667pt;}
.ye8{bottom:355.520000pt;}
.y10c{bottom:360.826667pt;}
.ya7{bottom:366.426667pt;}
.y27{bottom:367.413333pt;}
.y7e{bottom:370.746667pt;}
.y17{bottom:373.013333pt;}
.y10b{bottom:376.026667pt;}
.ya6{bottom:378.906667pt;}
.yba{bottom:379.040000pt;}
.y26{bottom:381.333333pt;}
.y7d{bottom:386.106667pt;}
.y10a{bottom:391.386667pt;}
.y16{bottom:394.453333pt;}
.y25{bottom:395.093333pt;}
.y7c{bottom:401.506667pt;}
.y109{bottom:406.786667pt;}
.y24{bottom:408.853333pt;}
.y15{bottom:415.893333pt;}
.y7b{bottom:416.866667pt;}
.y108{bottom:422.146667pt;}
.y23{bottom:422.613333pt;}
.y7a{bottom:432.226667pt;}
.y22{bottom:436.533333pt;}
.y14{bottom:437.333333pt;}
.y107{bottom:437.506667pt;}
.y79{bottom:447.106667pt;}
.y21{bottom:450.293333pt;}
.y106{bottom:452.866667pt;}
.y13{bottom:458.773333pt;}
.y78{bottom:462.786667pt;}
.y105{bottom:467.746667pt;}
.y20{bottom:477.493333pt;}
.y77{bottom:477.826667pt;}
.y12{bottom:480.213333pt;}
.y104{bottom:483.426667pt;}
.y76{bottom:493.506667pt;}
.y103{bottom:498.786667pt;}
.y75{bottom:508.866667pt;}
.y102{bottom:514.146667pt;}
.y74{bottom:524.066667pt;}
.y101{bottom:529.506667pt;}
.y73{bottom:539.426667pt;}
.y100{bottom:544.866667pt;}
.ya5{bottom:547.746667pt;}
.yd3{bottom:548.706667pt;}
.y72{bottom:554.786667pt;}
.yff{bottom:560.066667pt;}
.ya4{bottom:563.426667pt;}
.yd2{bottom:563.906667pt;}
.y71{bottom:570.146667pt;}
.yfe{bottom:575.426667pt;}
.ya3{bottom:578.786667pt;}
.yd1{bottom:579.266667pt;}
.y70{bottom:585.186667pt;}
.yfd{bottom:590.466667pt;}
.ya2{bottom:594.146667pt;}
.yd0{bottom:594.626667pt;}
.y6f{bottom:600.866667pt;}
.yfc{bottom:606.173333pt;}
.ya1{bottom:609.533333pt;}
.ycf{bottom:609.693333pt;}
.y6e{bottom:616.093333pt;}
.yfb{bottom:621.533333pt;}
.ya0{bottom:624.893333pt;}
.yce{bottom:625.053333pt;}
.y6d{bottom:631.453333pt;}
.yfa{bottom:636.733333pt;}
.ycd{bottom:638.013333pt;}
.y9f{bottom:639.773333pt;}
.y6c{bottom:646.813333pt;}
.yf9{bottom:652.093333pt;}
.y9d{bottom:652.893333pt;}
.ycc{bottom:655.453333pt;}
.y6b{bottom:662.173333pt;}
.yf8{bottom:667.453333pt;}
.y9c{bottom:668.893333pt;}
.ycb{bottom:672.906667pt;}
.y6a{bottom:677.533333pt;}
.yf7{bottom:682.813333pt;}
.y9b{bottom:684.893333pt;}
.yca{bottom:690.346667pt;}
.y69{bottom:692.893333pt;}
.yf6{bottom:698.173333pt;}
.y9a{bottom:700.893333pt;}
.yc8{bottom:707.933333pt;}
.y68{bottom:708.093333pt;}
.yf5{bottom:713.533333pt;}
.y99{bottom:716.893333pt;}
.y67{bottom:723.453333pt;}
.yc6{bottom:725.386667pt;}
.yf4{bottom:728.733333pt;}
.y98{bottom:732.893333pt;}
.y66{bottom:738.813333pt;}
.yc3{bottom:742.813333pt;}
.yf3{bottom:744.093333pt;}
.y97{bottom:748.893333pt;}
.y65{bottom:754.173333pt;}
.yf2{bottom:759.133333pt;}
.y96{bottom:764.893333pt;}
.y64{bottom:769.533333pt;}
.yf1{bottom:774.493333pt;}
.yc2{bottom:777.213333pt;}
.y95{bottom:780.893333pt;}
.y63{bottom:784.733333pt;}
.yf0{bottom:786.813333pt;}
.y11b{bottom:786.880000pt;}
.yc1{bottom:792.413333pt;}
.y94{bottom:799.773333pt;}
.y62{bottom:800.093333pt;}
.yc0{bottom:804.733333pt;}
.ye1{bottom:805.920000pt;}
.y61{bottom:815.493333pt;}
.y10{bottom:822.053333pt;}
.yf{bottom:828.133333pt;}
.y60{bottom:830.853333pt;}
.y5f{bottom:846.213333pt;}
.ye{bottom:848.133333pt;}
.y5e{bottom:861.573333pt;}
.yd{bottom:863.493333pt;}
.y93{bottom:876.453333pt;}
.y5d{bottom:876.773333pt;}
.yc{bottom:889.413333pt;}
.y5c{bottom:892.133333pt;}
.yb{bottom:906.533333pt;}
.y5b{bottom:907.173333pt;}
.y92{bottom:907.493333pt;}
.y5a{bottom:922.853333pt;}
.ya{bottom:928.133333pt;}
.y59{bottom:938.213333pt;}
.y9{bottom:952.773333pt;}
.y58{bottom:953.573333pt;}
.y55{bottom:955.840000pt;}
.y91{bottom:968.453333pt;}
.y57{bottom:968.773333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.ha{height:7.915625pt;}
.h18{height:15.200000pt;}
.h1a{height:15.346667pt;}
.h1f{height:16.786667pt;}
.h20{height:16.800000pt;}
.h14{height:24.480000pt;}
.h19{height:30.546667pt;}
.h1e{height:30.720000pt;}
.h9{height:33.918750pt;}
.h11{height:36.398438pt;}
.hd{height:36.431250pt;}
.h10{height:37.090625pt;}
.hc{height:37.410000pt;}
.he{height:47.085938pt;}
.h1c{height:47.742188pt;}
.h22{height:47.869500pt;}
.h13{height:48.375000pt;}
.h6{height:50.955000pt;}
.h8{height:52.134375pt;}
.hf{height:53.535000pt;}
.h16{height:54.598989pt;}
.h17{height:55.298750pt;}
.h15{height:56.891250pt;}
.h7{height:57.000937pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h23{height:62.812500pt;}
.h25{height:62.938125pt;}
.h27{height:64.500000pt;}
.h1d{height:74.477812pt;}
.h2{height:75.546667pt;}
.h4{height:104.160000pt;}
.h1b{height:165.920000pt;}
.h21{height:174.880000pt;}
.h12{height:188.506667pt;}
.h24{height:189.920000pt;}
.h26{height:193.920000pt;}
.hb{height:488.720000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w13{width:30.080000pt;}
.wf{width:32.658667pt;}
.wa{width:40.946667pt;}
.w7{width:67.058667pt;}
.w16{width:77.458667pt;}
.w15{width:81.906667pt;}
.w11{width:87.986667pt;}
.w12{width:88.018667pt;}
.w2{width:92.512000pt;}
.wd{width:111.218667pt;}
.wc{width:111.232000pt;}
.w4{width:117.912000pt;}
.w14{width:120.672000pt;}
.w9{width:130.418667pt;}
.w10{width:143.546667pt;}
.w6{width:144.640000pt;}
.wb{width:146.253333pt;}
.w8{width:193.626667pt;}
.w17{width:234.080000pt;}
.w18{width:251.040000pt;}
.we{width:270.720000pt;}
.w19{width:277.920000pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.112000pt;}
.x19{left:7.186667pt;}
.x33{left:8.733333pt;}
.x4{left:11.346667pt;}
.x2a{left:12.306667pt;}
.x14{left:13.752000pt;}
.x6{left:15.346667pt;}
.x17{left:18.392000pt;}
.x16{left:21.112000pt;}
.x15{left:24.152000pt;}
.x1d{left:25.912000pt;}
.x2c{left:27.066667pt;}
.x23{left:29.440000pt;}
.x34{left:34.813333pt;}
.x43{left:36.773333pt;}
.xf{left:38.872000pt;}
.x31{left:40.666667pt;}
.x1c{left:42.392000pt;}
.x10{left:45.112000pt;}
.x48{left:46.720000pt;}
.x30{left:47.866667pt;}
.xe{left:48.952000pt;}
.x2f{left:50.586667pt;}
.x26{left:52.946667pt;}
.x1a{left:55.226667pt;}
.x1e{left:58.866667pt;}
.x13{left:60.626667pt;}
.x49{left:63.426667pt;}
.x12{left:67.186667pt;}
.x1{left:69.600000pt;}
.x25{left:73.440000pt;}
.x7{left:76.832000pt;}
.x27{left:78.400000pt;}
.x42{left:80.573333pt;}
.x2{left:85.146667pt;}
.x45{left:89.053333pt;}
.x1b{left:91.826667pt;}
.x35{left:96.133333pt;}
.x36{left:97.986667pt;}
.x20{left:100.832000pt;}
.x4a{left:105.213333pt;}
.x44{left:107.040000pt;}
.x11{left:110.706667pt;}
.x5{left:125.626667pt;}
.x4b{left:127.266667pt;}
.x3{left:162.120000pt;}
.x29{left:191.240000pt;}
.x18{left:194.760000pt;}
.x21{left:200.840000pt;}
.x38{left:219.880000pt;}
.x2b{left:232.840000pt;}
.x3d{left:240.866667pt;}
.x39{left:253.186667pt;}
.x47{left:257.920000pt;}
.x32{left:260.960000pt;}
.x22{left:268.546667pt;}
.x3e{left:271.746667pt;}
.x41{left:279.840000pt;}
.xa{left:307.106667pt;}
.x2d{left:379.746667pt;}
.x3f{left:393.066667pt;}
.x3a{left:397.386667pt;}
.xb{left:434.973333pt;}
.x24{left:462.826667pt;}
.x40{left:475.786667pt;}
.x3b{left:486.186667pt;}
.x2e{left:491.786667pt;}
.x37{left:514.013333pt;}
.x3c{left:522.973333pt;}
.x28{left:533.053333pt;}
.x46{left:535.933333pt;}
.xc{left:542.013333pt;}
.x9{left:680.933333pt;}
.x8{left:702.373333pt;}
.xd{left:717.280000pt;}
}




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