
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0c7fc79018fddd7223001068.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_963a050e233d4064f793074d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_1c3fb621287a65287467dbc3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_0dcfbbd0e35a9ae42fbc6a3f.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5662122c856ef7a15d58cdee.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9c3c21bd182f3914323d8e34.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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_c5e72efcdcaabedd4a185c76.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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_c4a6febca9d8ac645e88e115.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c5abf9ce76234eda69abb505.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8b8fba19ba80d8966b4b172b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.065430;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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsb{letter-spacing:-0.315000px;}
.ls12{letter-spacing:-0.186600px;}
.ls17{letter-spacing:-0.141600px;}
.ls9{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.ls13{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.063600px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.045000px;}
.ls15{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls6{letter-spacing:0.049200px;}
.lsf{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls11{letter-spacing:0.069600px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls18{letter-spacing:0.098400px;}
.lsc{letter-spacing:0.173400px;}
.ls1a{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.405000px;}
.ls5{letter-spacing:2.973600px;}
.ls10{letter-spacing:40.886640px;}
.ls1b{letter-spacing:47.726640px;}
.ls16{letter-spacing:63.566640px;}
.ls19{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-14.493600px;}
.wse{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.399800px;}
.ws11{word-spacing:-13.324800px;}
.ws8{word-spacing:-13.275600px;}
.wsb{word-spacing:-13.275360px;}
.ws5{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.162800px;}
.ws10{word-spacing:-13.084800px;}
.wsa{word-spacing:-13.039800px;}
.wsd{word-spacing:-10.603200px;}
.wsf{word-spacing:-10.533600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-9.266400px;}
.ws3{word-spacing:-8.553600px;}
.ws9{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._d{margin-left:-3.639605px;}
._5{margin-left:-2.246880px;}
._3{margin-left:-1.176480px;}
._0{width:1.342248px;}
._1{width:3.276000px;}
._2{width:4.492752px;}
._4{width:6.114239px;}
._6{width:7.472761px;}
._9{width:8.819639px;}
._c{width:10.012633px;}
._e{width:11.177134px;}
._10{width:12.178440px;}
._8{width:15.090000px;}
._18{width:16.412880px;}
._a{width:17.675400px;}
._b{width:19.012031px;}
._f{width:20.029372px;}
._13{width:21.350961px;}
._17{width:22.965840px;}
._1c{width:24.348600px;}
._1d{width:25.724832px;}
._16{width:28.196280px;}
._7{width:29.398800px;}
._11{width:32.404680px;}
._12{width:33.847560px;}
._14{width:49.118040px;}
._15{width:50.454432px;}
._19{width:91.743120px;}
._1a{width:92.885400px;}
._1e{width:97.935480px;}
._1b{width:367.814160px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs9{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:63.000000px;}
.fs7{font-size:65.880000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y4e{bottom:119.550000px;}
.y79{bottom:126.930000px;}
.y122{bottom:133.680000px;}
.y28{bottom:134.040000px;}
.yf6{bottom:136.200000px;}
.y4d{bottom:137.100000px;}
.yae{bottom:137.280000px;}
.y78{bottom:144.480000px;}
.y121{bottom:151.320000px;}
.y27{bottom:151.590000px;}
.yf5{bottom:153.750000px;}
.y120{bottom:168.870000px;}
.y26{bottom:169.230000px;}
.y8f{bottom:170.490000px;}
.yf4{bottom:171.390000px;}
.y4c{bottom:172.020000px;}
.yad{bottom:175.530000px;}
.y77{bottom:179.310000px;}
.y4b{bottom:183.450000px;}
.y11f{bottom:186.420000px;}
.y25{bottom:186.780000px;}
.y8e{bottom:188.040000px;}
.yf3{bottom:188.940000px;}
.y76{bottom:190.740000px;}
.yac{bottom:193.080000px;}
.yf2{bottom:207.390000px;}
.yab{bottom:211.530000px;}
.y11e{bottom:213.060000px;}
.y24{bottom:213.420000px;}
.y8d{bottom:214.590000px;}
.yf1{bottom:224.940000px;}
.yaa{bottom:229.080000px;}
.y11d{bottom:230.610000px;}
.yd3{bottom:237.000000px;}
.yf0{bottom:242.580000px;}
.y8c{bottom:247.260000px;}
.ya9{bottom:247.530000px;}
.y11c{bottom:248.250000px;}
.y23{bottom:248.970000px;}
.y63{bottom:252.300000px;}
.yd2{bottom:254.550000px;}
.yef{bottom:260.130000px;}
.ya8{bottom:265.080000px;}
.y11b{bottom:265.800000px;}
.y22{bottom:266.520000px;}
.yd1{bottom:272.190000px;}
.yee{bottom:278.490000px;}
.ya7{bottom:282.630000px;}
.y8b{bottom:282.810000px;}
.y21{bottom:284.160000px;}
.yd0{bottom:289.740000px;}
.y62{bottom:290.460000px;}
.y11a{bottom:292.350000px;}
.yed{bottom:296.130000px;}
.ya6{bottom:301.080000px;}
.ycf{bottom:307.290000px;}
.y61{bottom:308.010000px;}
.y119{bottom:309.990000px;}
.y20{bottom:311.070000px;}
.yec{bottom:313.680000px;}
.y8a{bottom:317.640000px;}
.ya5{bottom:318.630000px;}
.y60{bottom:325.650000px;}
.yce{bottom:325.740000px;}
.y118{bottom:327.540000px;}
.ya4{bottom:337.080000px;}
.yeb{bottom:341.130000px;}
.ycd{bottom:343.290000px;}
.y89{bottom:346.710000px;}
.y5f{bottom:352.200000px;}
.y117{bottom:354.180000px;}
.ya3{bottom:354.630000px;}
.y1f{bottom:359.670000px;}
.ycc{bottom:361.740000px;}
.y116{bottom:371.730000px;}
.yea{bottom:376.680000px;}
.ycb{bottom:379.290000px;}
.ya2{bottom:382.080000px;}
.y5e{bottom:384.780000px;}
.ye9{bottom:394.320000px;}
.y1e{bottom:396.660000px;}
.yca{bottom:397.740000px;}
.y115{bottom:398.280000px;}
.ye8{bottom:411.870000px;}
.y1d{bottom:414.210000px;}
.yc9{bottom:415.290000px;}
.y114{bottom:415.920000px;}
.ya1{bottom:417.630000px;}
.y5d{bottom:420.420000px;}
.y1c{bottom:431.850000px;}
.y113{bottom:433.470000px;}
.yc0{bottom:433.740000px;}
.ya0{bottom:435.270000px;}
.y5c{bottom:437.970000px;}
.ye7{bottom:447.420000px;}
.y1b{bottom:449.400000px;}
.ybf{bottom:451.290000px;}
.y112{bottom:460.020000px;}
.y9f{bottom:461.820000px;}
.ye6{bottom:465.060000px;}
.y1a{bottom:467.040000px;}
.ybe{bottom:469.740000px;}
.y5b{bottom:472.830000px;}
.y111{bottom:477.690000px;}
.ye5{bottom:482.640000px;}
.y4a{bottom:483.810000px;}
.y5a{bottom:484.260000px;}
.y19{bottom:484.620000px;}
.ybd{bottom:487.320000px;}
.y9e{bottom:494.430000px;}
.y110{bottom:495.240000px;}
.ye4{bottom:500.280000px;}
.y49{bottom:501.360000px;}
.y18{bottom:502.170000px;}
.ybc{bottom:505.770000px;}
.yc8{bottom:514.770000px;}
.y48{bottom:519.000000px;}
.y17{bottom:519.810000px;}
.y10f{bottom:521.880000px;}
.ybb{bottom:523.320000px;}
.y9d{bottom:530.070000px;}
.ye3{bottom:535.830000px;}
.y47{bottom:536.550000px;}
.y16{bottom:537.360000px;}
.y10e{bottom:539.430000px;}
.yba{bottom:541.770000px;}
.y75{bottom:549.690000px;}
.yc7{bottom:550.320000px;}
.ye2{bottom:553.380000px;}
.y15{bottom:555.000000px;}
.yb9{bottom:559.320000px;}
.y9c{bottom:564.900000px;}
.y10d{bottom:565.980000px;}
.yc6{bottom:567.960000px;}
.ye1{bottom:571.020000px;}
.y14{bottom:572.550000px;}
.y9b{bottom:576.330000px;}
.yb8{bottom:577.770000px;}
.y74{bottom:585.240000px;}
.y46{bottom:590.190000px;}
.y10c{bottom:592.620000px;}
.yc5{bottom:594.510000px;}
.yb7{bottom:595.320000px;}
.y13{bottom:599.460000px;}
.y73{bottom:602.880000px;}
.ye0{bottom:606.570000px;}
.y45{bottom:607.740000px;}
.y10b{bottom:610.170000px;}
.y72{bottom:620.430000px;}
.yb6{bottom:622.770000px;}
.ydf{bottom:624.210000px;}
.y44{bottom:625.290000px;}
.yc4{bottom:627.090000px;}
.y10a{bottom:627.810000px;}
.y71{bottom:637.980000px;}
.yde{bottom:641.760000px;}
.y43{bottom:643.740000px;}
.y12{bottom:647.700000px;}
.y109{bottom:654.360000px;}
.y70{bottom:655.620000px;}
.yb5{bottom:658.320000px;}
.ydd{bottom:659.310000px;}
.y42{bottom:661.290000px;}
.yc3{bottom:662.730000px;}
.y108{bottom:671.910000px;}
.y6f{bottom:673.170000px;}
.yb4{bottom:675.960000px;}
.ydc{bottom:676.950000px;}
.y41{bottom:678.930000px;}
.y11{bottom:683.520000px;}
.y40{bottom:696.480000px;}
.yc2{bottom:697.560000px;}
.y107{bottom:698.820000px;}
.y6e{bottom:699.810000px;}
.yb3{bottom:702.510000px;}
.ydb{bottom:703.500000px;}
.yc1{bottom:708.990000px;}
.y3f{bottom:714.930000px;}
.y10{bottom:719.520000px;}
.y3e{bottom:732.480000px;}
.yb2{bottom:735.090000px;}
.y6d{bottom:735.360000px;}
.yda{bottom:739.140000px;}
.y106{bottom:747.150000px;}
.y3d{bottom:750.120000px;}
.y88{bottom:750.570000px;}
.y6c{bottom:752.910000px;}
.yd9{bottom:756.690000px;}
.yf{bottom:759.300000px;}
.y3c{bottom:767.670000px;}
.y87{bottom:768.120000px;}
.yb1{bottom:770.730000px;}
.y105{bottom:774.060000px;}
.yd8{bottom:774.240000px;}
.ye{bottom:777.300000px;}
.y3b{bottom:786.120000px;}
.y86{bottom:786.570000px;}
.y6b{bottom:788.550000px;}
.yd{bottom:795.300000px;}
.yd7{bottom:801.150000px;}
.y3a{bottom:803.670000px;}
.y85{bottom:804.120000px;}
.yb0{bottom:805.560000px;}
.y6a{bottom:806.100000px;}
.yc{bottom:809.520000px;}
.y104{bottom:811.050000px;}
.yaf{bottom:816.990000px;}
.y59{bottom:820.680000px;}
.y39{bottom:821.220000px;}
.y84{bottom:822.570000px;}
.y69{bottom:823.740000px;}
.y103{bottom:828.600000px;}
.yb{bottom:831.300000px;}
.y58{bottom:838.230000px;}
.y83{bottom:840.120000px;}
.y68{bottom:841.290000px;}
.y38{bottom:848.670000px;}
.ya{bottom:849.300000px;}
.yd6{bottom:849.480000px;}
.y102{bottom:855.510000px;}
.y57{bottom:855.780000px;}
.y82{bottom:858.570000px;}
.y9{bottom:867.300000px;}
.y67{bottom:867.840000px;}
.y81{bottom:876.120000px;}
.y37{bottom:884.220000px;}
.yd5{bottom:884.310000px;}
.y8{bottom:885.300000px;}
.y56{bottom:891.420000px;}
.y101{bottom:892.860000px;}
.y80{bottom:894.570000px;}
.yd4{bottom:895.740000px;}
.y36{bottom:901.860000px;}
.y7{bottom:903.300000px;}
.y66{bottom:903.480000px;}
.y55{bottom:908.970000px;}
.y7f{bottom:912.120000px;}
.y35{bottom:919.410000px;}
.y54{bottom:926.610000px;}
.y129{bottom:928.410000px;}
.y9a{bottom:933.720000px;}
.y6{bottom:935.520000px;}
.y34{bottom:936.960000px;}
.y65{bottom:938.310000px;}
.y7e{bottom:939.570000px;}
.y100{bottom:941.190000px;}
.y53{bottom:944.160000px;}
.y128{bottom:945.960000px;}
.y64{bottom:949.740000px;}
.y99{bottom:951.270000px;}
.y5{bottom:953.970000px;}
.yff{bottom:958.740000px;}
.y52{bottom:961.710000px;}
.y33{bottom:963.600000px;}
.y98{bottom:968.820000px;}
.y4{bottom:972.420000px;}
.y7d{bottom:975.210000px;}
.yfe{bottom:976.380000px;}
.y97{bottom:987.270000px;}
.y51{bottom:988.260000px;}
.y127{bottom:990.150000px;}
.y7c{bottom:992.760000px;}
.yfd{bottom:993.930000px;}
.y32{bottom:999.150000px;}
.y96{bottom:1004.820000px;}
.y126{bottom:1007.790000px;}
.y3{bottom:1009.980000px;}
.y7b{bottom:1010.340000px;}
.yfc{bottom:1011.510000px;}
.y31{bottom:1016.820000px;}
.y50{bottom:1020.960000px;}
.y95{bottom:1023.300000px;}
.y125{bottom:1025.370000px;}
.y30{bottom:1034.370000px;}
.y7a{bottom:1036.890000px;}
.yfb{bottom:1038.420000px;}
.y94{bottom:1040.850000px;}
.y2f{bottom:1051.920000px;}
.y4f{bottom:1056.870000px;}
.y93{bottom:1059.300000px;}
.y2e{bottom:1069.560000px;}
.y92{bottom:1076.850000px;}
.yfa{bottom:1086.750000px;}
.y91{bottom:1095.300000px;}
.y124{bottom:1096.110000px;}
.yf9{bottom:1104.300000px;}
.y2d{bottom:1105.110000px;}
.y90{bottom:1112.850000px;}
.y123{bottom:1113.750000px;}
.yf8{bottom:1121.850000px;}
.y2c{bottom:1122.750000px;}
.yf7{bottom:1139.400000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hf{height:40.539023px;}
.hd{height:47.622832px;}
.h7{height:50.902383px;}
.h5{height:53.340820px;}
.h8{height:55.779258px;}
.hb{height:59.973223px;}
.h9{height:60.960938px;}
.hc{height:61.793886px;}
.ha{height:62.585859px;}
.he{height:68.582109px;}
.h4{height:71.019492px;}
.h11{height:74.004654px;}
.h10{height:74.953125px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x17{left:75.149987px;}
.x4{left:78.659987px;}
.x12{left:79.739987px;}
.xf{left:82.799987px;}
.xb{left:84.959987px;}
.x14{left:95.039987px;}
.x5{left:99.989987px;}
.x1a{left:103.859987px;}
.x22{left:111.239987px;}
.x15{left:122.039987px;}
.x1f{left:139.139987px;}
.x2{left:192.719987px;}
.x8{left:238.799987px;}
.x7{left:326.009987px;}
.x19{left:340.589987px;}
.x1e{left:344.369987px;}
.x21{left:346.709987px;}
.xa{left:349.319987px;}
.x11{left:350.849987px;}
.x1c{left:353.549987px;}
.xe{left:361.109987px;}
.xc{left:413.579987px;}
.x13{left:414.839987px;}
.xd{left:681.809987px;}
.x20{left:711.059987px;}
.x9{left:722.309987px;}
.x1b{left:754.889987px;}
.x16{left:756.059987px;}
.x6{left:763.889987px;}
.x1d{left:779.639987px;}
.x10{left:780.809987px;}
.x3{left:800.339987px;}
.x18{left:807.809987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsb{letter-spacing:-0.280000pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls17{letter-spacing:-0.125867pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.ls13{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.056533pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.040000pt;}
.ls15{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls6{letter-spacing:0.043733pt;}
.lsf{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls11{letter-spacing:0.061867pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls18{letter-spacing:0.087467pt;}
.lsc{letter-spacing:0.154133pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.360000pt;}
.ls5{letter-spacing:2.643200pt;}
.ls10{letter-spacing:36.343680pt;}
.ls1b{letter-spacing:42.423680pt;}
.ls16{letter-spacing:56.503680pt;}
.ls19{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.883200pt;}
.wse{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.910933pt;}
.ws11{word-spacing:-11.844267pt;}
.ws8{word-spacing:-11.800533pt;}
.wsb{word-spacing:-11.800320pt;}
.ws5{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.700267pt;}
.ws10{word-spacing:-11.630933pt;}
.wsa{word-spacing:-11.590933pt;}
.wsd{word-spacing:-9.425067pt;}
.wsf{word-spacing:-9.363200pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-8.236800pt;}
.ws3{word-spacing:-7.603200pt;}
.ws9{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._d{margin-left:-3.235205pt;}
._5{margin-left:-1.997226pt;}
._3{margin-left:-1.045760pt;}
._0{width:1.193109pt;}
._1{width:2.912000pt;}
._2{width:3.993558pt;}
._4{width:5.434879pt;}
._6{width:6.642454pt;}
._9{width:7.839679pt;}
._c{width:8.900118pt;}
._e{width:9.935231pt;}
._10{width:10.825280pt;}
._8{width:13.413333pt;}
._18{width:14.589227pt;}
._a{width:15.711467pt;}
._b{width:16.899583pt;}
._f{width:17.803886pt;}
._13{width:18.978632pt;}
._17{width:20.414080pt;}
._1c{width:21.643200pt;}
._1d{width:22.866518pt;}
._16{width:25.063360pt;}
._7{width:26.132267pt;}
._11{width:28.804160pt;}
._12{width:30.086720pt;}
._14{width:43.660480pt;}
._15{width:44.848384pt;}
._19{width:81.549440pt;}
._1a{width:82.564800pt;}
._1e{width:87.053760pt;}
._1b{width:326.945920pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs9{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:56.000000pt;}
.fs7{font-size:58.560000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y4e{bottom:106.266667pt;}
.y79{bottom:112.826667pt;}
.y122{bottom:118.826667pt;}
.y28{bottom:119.146667pt;}
.yf6{bottom:121.066667pt;}
.y4d{bottom:121.866667pt;}
.yae{bottom:122.026667pt;}
.y78{bottom:128.426667pt;}
.y121{bottom:134.506667pt;}
.y27{bottom:134.746667pt;}
.yf5{bottom:136.666667pt;}
.y120{bottom:150.106667pt;}
.y26{bottom:150.426667pt;}
.y8f{bottom:151.546667pt;}
.yf4{bottom:152.346667pt;}
.y4c{bottom:152.906667pt;}
.yad{bottom:156.026667pt;}
.y77{bottom:159.386667pt;}
.y4b{bottom:163.066667pt;}
.y11f{bottom:165.706667pt;}
.y25{bottom:166.026667pt;}
.y8e{bottom:167.146667pt;}
.yf3{bottom:167.946667pt;}
.y76{bottom:169.546667pt;}
.yac{bottom:171.626667pt;}
.yf2{bottom:184.346667pt;}
.yab{bottom:188.026667pt;}
.y11e{bottom:189.386667pt;}
.y24{bottom:189.706667pt;}
.y8d{bottom:190.746667pt;}
.yf1{bottom:199.946667pt;}
.yaa{bottom:203.626667pt;}
.y11d{bottom:204.986667pt;}
.yd3{bottom:210.666667pt;}
.yf0{bottom:215.626667pt;}
.y8c{bottom:219.786667pt;}
.ya9{bottom:220.026667pt;}
.y11c{bottom:220.666667pt;}
.y23{bottom:221.306667pt;}
.y63{bottom:224.266667pt;}
.yd2{bottom:226.266667pt;}
.yef{bottom:231.226667pt;}
.ya8{bottom:235.626667pt;}
.y11b{bottom:236.266667pt;}
.y22{bottom:236.906667pt;}
.yd1{bottom:241.946667pt;}
.yee{bottom:247.546667pt;}
.ya7{bottom:251.226667pt;}
.y8b{bottom:251.386667pt;}
.y21{bottom:252.586667pt;}
.yd0{bottom:257.546667pt;}
.y62{bottom:258.186667pt;}
.y11a{bottom:259.866667pt;}
.yed{bottom:263.226667pt;}
.ya6{bottom:267.626667pt;}
.ycf{bottom:273.146667pt;}
.y61{bottom:273.786667pt;}
.y119{bottom:275.546667pt;}
.y20{bottom:276.506667pt;}
.yec{bottom:278.826667pt;}
.y8a{bottom:282.346667pt;}
.ya5{bottom:283.226667pt;}
.y60{bottom:289.466667pt;}
.yce{bottom:289.546667pt;}
.y118{bottom:291.146667pt;}
.ya4{bottom:299.626667pt;}
.yeb{bottom:303.226667pt;}
.ycd{bottom:305.146667pt;}
.y89{bottom:308.186667pt;}
.y5f{bottom:313.066667pt;}
.y117{bottom:314.826667pt;}
.ya3{bottom:315.226667pt;}
.y1f{bottom:319.706667pt;}
.ycc{bottom:321.546667pt;}
.y116{bottom:330.426667pt;}
.yea{bottom:334.826667pt;}
.ycb{bottom:337.146667pt;}
.ya2{bottom:339.626667pt;}
.y5e{bottom:342.026667pt;}
.ye9{bottom:350.506667pt;}
.y1e{bottom:352.586667pt;}
.yca{bottom:353.546667pt;}
.y115{bottom:354.026667pt;}
.ye8{bottom:366.106667pt;}
.y1d{bottom:368.186667pt;}
.yc9{bottom:369.146667pt;}
.y114{bottom:369.706667pt;}
.ya1{bottom:371.226667pt;}
.y5d{bottom:373.706667pt;}
.y1c{bottom:383.866667pt;}
.y113{bottom:385.306667pt;}
.yc0{bottom:385.546667pt;}
.ya0{bottom:386.906667pt;}
.y5c{bottom:389.306667pt;}
.ye7{bottom:397.706667pt;}
.y1b{bottom:399.466667pt;}
.ybf{bottom:401.146667pt;}
.y112{bottom:408.906667pt;}
.y9f{bottom:410.506667pt;}
.ye6{bottom:413.386667pt;}
.y1a{bottom:415.146667pt;}
.ybe{bottom:417.546667pt;}
.y5b{bottom:420.293333pt;}
.y111{bottom:424.613333pt;}
.ye5{bottom:429.013333pt;}
.y4a{bottom:430.053333pt;}
.y5a{bottom:430.453333pt;}
.y19{bottom:430.773333pt;}
.ybd{bottom:433.173333pt;}
.y9e{bottom:439.493333pt;}
.y110{bottom:440.213333pt;}
.ye4{bottom:444.693333pt;}
.y49{bottom:445.653333pt;}
.y18{bottom:446.373333pt;}
.ybc{bottom:449.573333pt;}
.yc8{bottom:457.573333pt;}
.y48{bottom:461.333333pt;}
.y17{bottom:462.053333pt;}
.y10f{bottom:463.893333pt;}
.ybb{bottom:465.173333pt;}
.y9d{bottom:471.173333pt;}
.ye3{bottom:476.293333pt;}
.y47{bottom:476.933333pt;}
.y16{bottom:477.653333pt;}
.y10e{bottom:479.493333pt;}
.yba{bottom:481.573333pt;}
.y75{bottom:488.613333pt;}
.yc7{bottom:489.173333pt;}
.ye2{bottom:491.893333pt;}
.y15{bottom:493.333333pt;}
.yb9{bottom:497.173333pt;}
.y9c{bottom:502.133333pt;}
.y10d{bottom:503.093333pt;}
.yc6{bottom:504.853333pt;}
.ye1{bottom:507.573333pt;}
.y14{bottom:508.933333pt;}
.y9b{bottom:512.293333pt;}
.yb8{bottom:513.573333pt;}
.y74{bottom:520.213333pt;}
.y46{bottom:524.613333pt;}
.y10c{bottom:526.773333pt;}
.yc5{bottom:528.453333pt;}
.yb7{bottom:529.173333pt;}
.y13{bottom:532.853333pt;}
.y73{bottom:535.893333pt;}
.ye0{bottom:539.173333pt;}
.y45{bottom:540.213333pt;}
.y10b{bottom:542.373333pt;}
.y72{bottom:551.493333pt;}
.yb6{bottom:553.573333pt;}
.ydf{bottom:554.853333pt;}
.y44{bottom:555.813333pt;}
.yc4{bottom:557.413333pt;}
.y10a{bottom:558.053333pt;}
.y71{bottom:567.093333pt;}
.yde{bottom:570.453333pt;}
.y43{bottom:572.213333pt;}
.y12{bottom:575.733333pt;}
.y109{bottom:581.653333pt;}
.y70{bottom:582.773333pt;}
.yb5{bottom:585.173333pt;}
.ydd{bottom:586.053333pt;}
.y42{bottom:587.813333pt;}
.yc3{bottom:589.093333pt;}
.y108{bottom:597.253333pt;}
.y6f{bottom:598.373333pt;}
.yb4{bottom:600.853333pt;}
.ydc{bottom:601.733333pt;}
.y41{bottom:603.493333pt;}
.y11{bottom:607.573333pt;}
.y40{bottom:619.093333pt;}
.yc2{bottom:620.053333pt;}
.y107{bottom:621.173333pt;}
.y6e{bottom:622.053333pt;}
.yb3{bottom:624.453333pt;}
.ydb{bottom:625.333333pt;}
.yc1{bottom:630.213333pt;}
.y3f{bottom:635.493333pt;}
.y10{bottom:639.573333pt;}
.y3e{bottom:651.093333pt;}
.yb2{bottom:653.413333pt;}
.y6d{bottom:653.653333pt;}
.yda{bottom:657.013333pt;}
.y106{bottom:664.133333pt;}
.y3d{bottom:666.773333pt;}
.y88{bottom:667.173333pt;}
.y6c{bottom:669.253333pt;}
.yd9{bottom:672.613333pt;}
.yf{bottom:674.933333pt;}
.y3c{bottom:682.373333pt;}
.y87{bottom:682.773333pt;}
.yb1{bottom:685.093333pt;}
.y105{bottom:688.053333pt;}
.yd8{bottom:688.213333pt;}
.ye{bottom:690.933333pt;}
.y3b{bottom:698.773333pt;}
.y86{bottom:699.173333pt;}
.y6b{bottom:700.933333pt;}
.yd{bottom:706.933333pt;}
.yd7{bottom:712.133333pt;}
.y3a{bottom:714.373333pt;}
.y85{bottom:714.773333pt;}
.yb0{bottom:716.053333pt;}
.y6a{bottom:716.533333pt;}
.yc{bottom:719.573333pt;}
.y104{bottom:720.933333pt;}
.yaf{bottom:726.213333pt;}
.y59{bottom:729.493333pt;}
.y39{bottom:729.973333pt;}
.y84{bottom:731.173333pt;}
.y69{bottom:732.213333pt;}
.y103{bottom:736.533333pt;}
.yb{bottom:738.933333pt;}
.y58{bottom:745.093333pt;}
.y83{bottom:746.773333pt;}
.y68{bottom:747.813333pt;}
.y38{bottom:754.373333pt;}
.ya{bottom:754.933333pt;}
.yd6{bottom:755.093333pt;}
.y102{bottom:760.453333pt;}
.y57{bottom:760.693333pt;}
.y82{bottom:763.173333pt;}
.y9{bottom:770.933333pt;}
.y67{bottom:771.413333pt;}
.y81{bottom:778.773333pt;}
.y37{bottom:785.973333pt;}
.yd5{bottom:786.053333pt;}
.y8{bottom:786.933333pt;}
.y56{bottom:792.373333pt;}
.y101{bottom:793.653333pt;}
.y80{bottom:795.173333pt;}
.yd4{bottom:796.213333pt;}
.y36{bottom:801.653333pt;}
.y7{bottom:802.933333pt;}
.y66{bottom:803.093333pt;}
.y55{bottom:807.973333pt;}
.y7f{bottom:810.773333pt;}
.y35{bottom:817.253333pt;}
.y54{bottom:823.653333pt;}
.y129{bottom:825.253333pt;}
.y9a{bottom:829.973333pt;}
.y6{bottom:831.573333pt;}
.y34{bottom:832.853333pt;}
.y65{bottom:834.053333pt;}
.y7e{bottom:835.173333pt;}
.y100{bottom:836.613333pt;}
.y53{bottom:839.253333pt;}
.y128{bottom:840.853333pt;}
.y64{bottom:844.213333pt;}
.y99{bottom:845.573333pt;}
.y5{bottom:847.973333pt;}
.yff{bottom:852.213333pt;}
.y52{bottom:854.853333pt;}
.y33{bottom:856.533333pt;}
.y98{bottom:861.173333pt;}
.y4{bottom:864.373333pt;}
.y7d{bottom:866.853333pt;}
.yfe{bottom:867.893333pt;}
.y97{bottom:877.573333pt;}
.y51{bottom:878.453333pt;}
.y127{bottom:880.133333pt;}
.y7c{bottom:882.453333pt;}
.yfd{bottom:883.493333pt;}
.y32{bottom:888.133333pt;}
.y96{bottom:893.173333pt;}
.y126{bottom:895.813333pt;}
.y3{bottom:897.760000pt;}
.y7b{bottom:898.080000pt;}
.yfc{bottom:899.120000pt;}
.y31{bottom:903.840000pt;}
.y50{bottom:907.520000pt;}
.y95{bottom:909.600000pt;}
.y125{bottom:911.440000pt;}
.y30{bottom:919.440000pt;}
.y7a{bottom:921.680000pt;}
.yfb{bottom:923.040000pt;}
.y94{bottom:925.200000pt;}
.y2f{bottom:935.040000pt;}
.y4f{bottom:939.440000pt;}
.y93{bottom:941.600000pt;}
.y2e{bottom:950.720000pt;}
.y92{bottom:957.200000pt;}
.yfa{bottom:966.000000pt;}
.y91{bottom:973.600000pt;}
.y124{bottom:974.320000pt;}
.yf9{bottom:981.600000pt;}
.y2d{bottom:982.320000pt;}
.y90{bottom:989.200000pt;}
.y123{bottom:990.000000pt;}
.yf8{bottom:997.200000pt;}
.y2c{bottom:998.000000pt;}
.yf7{bottom:1012.800000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hf{height:36.034687pt;}
.hd{height:42.331406pt;}
.h7{height:45.246562pt;}
.h5{height:47.414062pt;}
.h8{height:49.581562pt;}
.hb{height:53.309531pt;}
.h9{height:54.187500pt;}
.hc{height:54.927899pt;}
.ha{height:55.631875pt;}
.he{height:60.961875pt;}
.h4{height:63.128437pt;}
.h11{height:65.781915pt;}
.h10{height:66.625000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x17{left:66.799988pt;}
.x4{left:69.919988pt;}
.x12{left:70.879988pt;}
.xf{left:73.599988pt;}
.xb{left:75.519988pt;}
.x14{left:84.479988pt;}
.x5{left:88.879988pt;}
.x1a{left:92.319988pt;}
.x22{left:98.879988pt;}
.x15{left:108.479988pt;}
.x1f{left:123.679988pt;}
.x2{left:171.306655pt;}
.x8{left:212.266655pt;}
.x7{left:289.786655pt;}
.x19{left:302.746655pt;}
.x1e{left:306.106655pt;}
.x21{left:308.186655pt;}
.xa{left:310.506655pt;}
.x11{left:311.866655pt;}
.x1c{left:314.266655pt;}
.xe{left:320.986655pt;}
.xc{left:367.626655pt;}
.x13{left:368.746655pt;}
.xd{left:606.053322pt;}
.x20{left:632.053322pt;}
.x9{left:642.053322pt;}
.x1b{left:671.013322pt;}
.x16{left:672.053322pt;}
.x6{left:679.013322pt;}
.x1d{left:693.013322pt;}
.x10{left:694.053322pt;}
.x3{left:711.413322pt;}
.x18{left:718.053322pt;}
}




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