
    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_ed6842e5bdcf8ee95e226daf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fb743deb9ea71c5df2b866c0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691895;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_46659d8a30c1c309de18c029.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.695312;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_a744e816ca64714469510b12.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4d23778c86930cb0df1002bd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_924025c2498cc25cc14575df.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976562;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_7ebda12a4b45317adef280d3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.771484;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_87d1a898f3fc976ff0baad12.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_290ee1f43b816c254a7a6288.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3ebdb3088f173939fac16c1d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_dd7fecd6d652370f920b99dc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.771973;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_ad1858206a27889bbb74fb15.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973633;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_f67e1fb6999cca942194b5af.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;}
.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:-70.560000px;}
.v2{vertical-align:-69.300000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-1.590000px;}
.ls16{letter-spacing:-0.936000px;}
.lsb{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.295200px;}
.ls6{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.020160px;}
.ls14{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.178560px;}
.ls2{letter-spacing:0.254880px;}
.ls10{letter-spacing:0.298560px;}
.lse{letter-spacing:0.305400px;}
.ls9{letter-spacing:0.357120px;}
.ls11{letter-spacing:0.358560px;}
.ls8{letter-spacing:0.452160px;}
.ls1{letter-spacing:0.604800px;}
.ls4{letter-spacing:0.630720px;}
.ls5{letter-spacing:1.440000px;}
.ls12{letter-spacing:1.797120px;}
.ls13{letter-spacing:7.344000px;}
.ls0{letter-spacing:15.059520px;}
.ls1a{letter-spacing:19.198560px;}
.ls3{letter-spacing:21.433440px;}
.ls19{letter-spacing:47.998560px;}
.ls15{letter-spacing:326.316000px;}
.lsd{letter-spacing:801.636000px;}
.ls17{letter-spacing:814.776000px;}
.lsa{letter-spacing:996.216000px;}
.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;}
}
.ws0{word-spacing:-29.880000px;}
.ws1{word-spacing:-24.120000px;}
.ws4{word-spacing:-20.880000px;}
.wsa{word-spacing:-18.000000px;}
.ws8{word-spacing:-16.865400px;}
.ws5{word-spacing:-16.560000px;}
.wsc{word-spacing:-15.140160px;}
.ws7{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.400000px;}
.ws9{word-spacing:-13.680000px;}
.ws2{word-spacing:-0.077760px;}
.ws3{word-spacing:-0.063360px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-15.543360px;}
._3{margin-left:-14.152320px;}
._1c{margin-left:-3.234240px;}
._4{margin-left:-2.220960px;}
._0{margin-left:-1.209600px;}
._1{width:1.209600px;}
._6{width:2.890080px;}
._7{width:4.166880px;}
._5{width:5.320800px;}
._9{width:6.640800px;}
._8{width:7.976640px;}
._d{width:9.313920px;}
._13{width:10.473120px;}
._c{width:11.474400px;}
._e{width:12.932640px;}
._19{width:14.178240px;}
._18{width:15.336480px;}
._11{width:16.796640px;}
._12{width:17.902080px;}
._14{width:19.378560px;}
._a{width:20.381760px;}
._b{width:21.396480px;}
._15{width:23.068320px;}
._16{width:24.668160px;}
._17{width:25.696320px;}
._22{width:26.795520px;}
._1a{width:27.939840px;}
._1b{width:29.570400px;}
._1e{width:31.150560px;}
._1d{width:33.190560px;}
._1f{width:34.244160px;}
._f{width:36.046080px;}
._10{width:37.255680px;}
._21{width:38.652000px;}
._20{width:39.977760px;}
._24{width:41.431680px;}
._23{width:42.561120px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:54.720000px;}
.fs9{font-size:57.600000px;}
.fs0{font-size:60.480000px;}
.fs6{font-size:63.360000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs7{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.fs1{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:4.674000px;}
.y95{bottom:4.680000px;}
.y59{bottom:5.040000px;}
.yb1{bottom:5.085000px;}
.y56{bottom:5.400000px;}
.y8e{bottom:9.000000px;}
.y8c{bottom:9.360000px;}
.y90{bottom:12.240000px;}
.y91{bottom:12.600000px;}
.y94{bottom:20.160000px;}
.y92{bottom:20.520000px;}
.y2{bottom:113.076000px;}
.y134{bottom:139.716000px;}
.y11b{bottom:140.796000px;}
.yd7{bottom:141.876000px;}
.y34{bottom:142.236000px;}
.y98{bottom:145.476000px;}
.y67{bottom:145.836000px;}
.y185{bottom:146.556000px;}
.yb3{bottom:148.356000px;}
.yf7{bottom:150.150000px;}
.y133{bottom:158.790000px;}
.y11a{bottom:159.870000px;}
.yd6{bottom:160.950000px;}
.y33{bottom:161.310000px;}
.y184{bottom:163.830000px;}
.y97{bottom:164.550000px;}
.y152{bottom:165.270000px;}
.yf6{bottom:169.230000px;}
.yb2{bottom:170.310000px;}
.y66{bottom:173.190000px;}
.y132{bottom:177.510000px;}
.y119{bottom:178.590000px;}
.y32{bottom:180.030000px;}
.y183{bottom:181.110000px;}
.y151{bottom:182.550000px;}
.y96{bottom:183.270000px;}
.yf5{bottom:188.310000px;}
.y65{bottom:192.270000px;}
.y131{bottom:196.635000px;}
.y118{bottom:197.715000px;}
.y182{bottom:198.435000px;}
.yd5{bottom:198.795000px;}
.y31{bottom:199.155000px;}
.y150{bottom:199.875000px;}
.y93{bottom:205.635000px;}
.yf4{bottom:207.435000px;}
.y64{bottom:211.035000px;}
.yb0{bottom:214.635000px;}
.y181{bottom:215.355000px;}
.y130{bottom:215.715000px;}
.y117{bottom:216.795000px;}
.y14f{bottom:217.155000px;}
.yd4{bottom:217.875000px;}
.y30{bottom:218.235000px;}
.yf3{bottom:226.155000px;}
.y63{bottom:230.115000px;}
.y180{bottom:232.635000px;}
.y14e{bottom:234.435000px;}
.y12f{bottom:234.795000px;}
.y116{bottom:235.515000px;}
.yaf{bottom:236.595000px;}
.y2f{bottom:236.955000px;}
.yf2{bottom:245.235000px;}
.y62{bottom:249.195000px;}
.y17f{bottom:249.915000px;}
.y14d{bottom:251.355000px;}
.y12e{bottom:253.515000px;}
.y115{bottom:254.595000px;}
.y2e{bottom:256.035000px;}
.yae{bottom:262.875000px;}
.yf1{bottom:264.315000px;}
.y17e{bottom:267.195000px;}
.y61{bottom:267.915000px;}
.y14c{bottom:268.635000px;}
.y12d{bottom:272.595000px;}
.y114{bottom:273.675000px;}
.yd3{bottom:274.755000px;}
.y2d{bottom:275.115000px;}
.yf0{bottom:283.035000px;}
.y17d{bottom:284.475000px;}
.y14b{bottom:285.915000px;}
.y60{bottom:286.995000px;}
.y12c{bottom:291.675000px;}
.y113{bottom:292.755000px;}
.y8f{bottom:293.115000px;}
.yd2{bottom:293.835000px;}
.y2c{bottom:294.195000px;}
.yad{bottom:299.235000px;}
.y17c{bottom:301.755000px;}
.yef{bottom:302.115000px;}
.y14a{bottom:303.195000px;}
.y5f{bottom:306.075000px;}
.y12b{bottom:310.395000px;}
.y112{bottom:311.475000px;}
.y2b{bottom:312.915000px;}
.yac{bottom:317.955000px;}
.y17b{bottom:319.035000px;}
.y149{bottom:320.505000px;}
.yee{bottom:321.225000px;}
.y5e{bottom:325.185000px;}
.y12a{bottom:329.505000px;}
.y111{bottom:330.585000px;}
.yd1{bottom:331.665000px;}
.y2a{bottom:332.025000px;}
.y8d{bottom:335.985000px;}
.y17a{bottom:336.345000px;}
.yab{bottom:337.065000px;}
.y148{bottom:337.785000px;}
.yed{bottom:339.945000px;}
.y5d{bottom:343.905000px;}
.y129{bottom:348.585000px;}
.yd0{bottom:350.745000px;}
.y29{bottom:351.105000px;}
.y110{bottom:352.545000px;}
.y179{bottom:353.625000px;}
.y147{bottom:355.065000px;}
.yaa{bottom:356.145000px;}
.yec{bottom:359.025000px;}
.y5c{bottom:362.985000px;}
.y128{bottom:367.305000px;}
.y28{bottom:369.825000px;}
.y178{bottom:370.905000px;}
.y146{bottom:372.345000px;}
.y8b{bottom:372.705000px;}
.y10f{bottom:374.505000px;}
.ya9{bottom:375.225000px;}
.yeb{bottom:378.105000px;}
.y5b{bottom:382.065000px;}
.y127{bottom:386.385000px;}
.y177{bottom:388.185000px;}
.ycf{bottom:388.545000px;}
.y27{bottom:388.905000px;}
.y145{bottom:389.625000px;}
.ya8{bottom:393.945000px;}
.y10e{bottom:396.825000px;}
.yea{bottom:397.185000px;}
.y5a{bottom:400.785000px;}
.y126{bottom:405.465000px;}
.y144{bottom:406.905000px;}
.yce{bottom:407.625000px;}
.y26{bottom:407.985000px;}
.ye3{bottom:409.065000px;}
.y8a{bottom:410.865000px;}
.ya7{bottom:413.025000px;}
.ye9{bottom:415.905000px;}
.y10d{bottom:418.785000px;}
.y176{bottom:422.385000px;}
.y143{bottom:424.185000px;}
.y58{bottom:424.545000px;}
.y25{bottom:426.705000px;}
.ye2{bottom:428.145000px;}
.ya6{bottom:432.105000px;}
.ye8{bottom:434.985000px;}
.y175{bottom:439.665000px;}
.y142{bottom:441.105000px;}
.y125{bottom:443.265000px;}
.y10c{bottom:445.065000px;}
.y24{bottom:445.785000px;}
.y89{bottom:446.910000px;}
.ye1{bottom:447.270000px;}
.y57{bottom:448.350000px;}
.ya5{bottom:450.870000px;}
.ye7{bottom:454.110000px;}
.y174{bottom:456.990000px;}
.y141{bottom:458.430000px;}
.y124{bottom:462.390000px;}
.ycd{bottom:464.550000px;}
.y23{bottom:464.910000px;}
.y88{bottom:465.990000px;}
.ya4{bottom:469.950000px;}
.y55{bottom:472.110000px;}
.y173{bottom:474.270000px;}
.y140{bottom:475.710000px;}
.ye6{bottom:477.150000px;}
.y10b{bottom:481.470000px;}
.ycc{bottom:483.630000px;}
.y22{bottom:484.710000px;}
.y87{bottom:485.070000px;}
.ya3{bottom:489.030000px;}
.y172{bottom:491.550000px;}
.y13f{bottom:492.990000px;}
.y54{bottom:500.190000px;}
.ycb{bottom:502.710000px;}
.y86{bottom:504.150000px;}
.ya2{bottom:507.750000px;}
.y21{bottom:508.110000px;}
.y171{bottom:508.830000px;}
.y13e{bottom:510.270000px;}
.y10a{bottom:519.270000px;}
.yca{bottom:521.430000px;}
.y85{bottom:522.870000px;}
.ye0{bottom:523.230000px;}
.y170{bottom:526.110000px;}
.y20{bottom:526.470000px;}
.ya1{bottom:526.830000px;}
.y13d{bottom:527.550000px;}
.y53{bottom:536.550000px;}
.y123{bottom:537.990000px;}
.y109{bottom:538.350000px;}
.yc9{bottom:540.510000px;}
.y84{bottom:541.950000px;}
.y16f{bottom:543.390000px;}
.y1f{bottom:544.110000px;}
.y13c{bottom:544.830000px;}
.ya0{bottom:545.910000px;}
.y52{bottom:555.630000px;}
.y108{bottom:557.430000px;}
.y122{bottom:558.150000px;}
.yc8{bottom:559.590000px;}
.y16e{bottom:560.670000px;}
.y83{bottom:561.030000px;}
.y13b{bottom:562.110000px;}
.y1e{bottom:563.550000px;}
.y9f{bottom:564.990000px;}
.y51{bottom:574.380000px;}
.y107{bottom:576.180000px;}
.y16d{bottom:577.980000px;}
.yc7{bottom:578.700000px;}
.y13a{bottom:579.420000px;}
.y82{bottom:579.780000px;}
.ydf{bottom:580.140000px;}
.y121{bottom:581.580000px;}
.y9e{bottom:583.740000px;}
.y1d{bottom:585.180000px;}
.y50{bottom:593.460000px;}
.y106{bottom:595.260000px;}
.y139{bottom:596.700000px;}
.yc6{bottom:597.420000px;}
.y81{bottom:598.860000px;}
.y120{bottom:600.300000px;}
.y1c{bottom:602.460000px;}
.y9d{bottom:602.820000px;}
.y16c{bottom:612.180000px;}
.y4f{bottom:612.540000px;}
.y105{bottom:614.340000px;}
.y138{bottom:616.140000px;}
.yc5{bottom:616.500000px;}
.y80{bottom:617.940000px;}
.y11f{bottom:619.380000px;}
.y1b{bottom:619.740000px;}
.y9c{bottom:621.900000px;}
.y16b{bottom:629.460000px;}
.y4e{bottom:631.620000px;}
.y104{bottom:633.060000px;}
.yc4{bottom:635.220000px;}
.y137{bottom:636.660000px;}
.y1a{bottom:637.020000px;}
.y11e{bottom:638.460000px;}
.y9b{bottom:642.060000px;}
.y16a{bottom:646.740000px;}
.y4d{bottom:650.340000px;}
.y103{bottom:652.140000px;}
.y19{bottom:654.300000px;}
.y7f{bottom:655.740000px;}
.yde{bottom:656.100000px;}
.y11d{bottom:657.180000px;}
.y9a{bottom:663.660000px;}
.y169{bottom:664.020000px;}
.y4c{bottom:669.420000px;}
.y102{bottom:671.220000px;}
.y18{bottom:671.580000px;}
.y136{bottom:674.460000px;}
.y7e{bottom:674.820000px;}
.y11c{bottom:676.260000px;}
.y168{bottom:681.300000px;}
.y99{bottom:687.780000px;}
.y4b{bottom:688.500000px;}
.y17{bottom:688.860000px;}
.y101{bottom:689.940000px;}
.y7d{bottom:693.900000px;}
.yc3{bottom:695.340000px;}
.y167{bottom:698.580000px;}
.y16{bottom:706.170000px;}
.y4a{bottom:707.250000px;}
.y100{bottom:709.050000px;}
.y7c{bottom:712.650000px;}
.ydd{bottom:713.010000px;}
.y135{bottom:714.090000px;}
.yc2{bottom:714.450000px;}
.y166{bottom:715.890000px;}
.y15{bottom:723.450000px;}
.y49{bottom:726.330000px;}
.yff{bottom:728.130000px;}
.y7b{bottom:731.730000px;}
.ye5{bottom:733.170000px;}
.yc1{bottom:733.530000px;}
.y14{bottom:740.370000px;}
.y48{bottom:746.130000px;}
.yfe{bottom:747.210000px;}
.y165{bottom:750.450000px;}
.y7a{bottom:750.810000px;}
.ye4{bottom:752.250000px;}
.yc0{bottom:752.610000px;}
.y13{bottom:757.650000px;}
.yfd{bottom:765.930000px;}
.y164{bottom:767.730000px;}
.y79{bottom:769.530000px;}
.y47{bottom:769.890000px;}
.ybf{bottom:771.330000px;}
.y12{bottom:774.930000px;}
.y18a{bottom:777.810000px;}
.yfc{bottom:785.010000px;}
.y78{bottom:788.610000px;}
.y46{bottom:790.050000px;}
.ybe{bottom:790.410000px;}
.y11{bottom:792.210000px;}
.y189{bottom:795.090000px;}
.y163{bottom:801.930000px;}
.yfb{bottom:804.090000px;}
.y77{bottom:807.690000px;}
.y45{bottom:809.130000px;}
.y10{bottom:809.490000px;}
.y188{bottom:812.370000px;}
.y162{bottom:819.210000px;}
.yfa{bottom:822.810000px;}
.yf{bottom:826.815000px;}
.y44{bottom:828.255000px;}
.y187{bottom:829.695000px;}
.y161{bottom:836.535000px;}
.yf9{bottom:841.935000px;}
.ye{bottom:844.095000px;}
.y76{bottom:845.535000px;}
.ydc{bottom:845.895000px;}
.y43{bottom:846.975000px;}
.ybd{bottom:847.335000px;}
.y160{bottom:853.815000px;}
.yd{bottom:861.735000px;}
.y75{bottom:864.615000px;}
.y42{bottom:866.055000px;}
.ybc{bottom:866.415000px;}
.y15f{bottom:871.095000px;}
.yc{bottom:881.175000px;}
.y74{bottom:883.695000px;}
.yf8{bottom:884.775000px;}
.y41{bottom:885.135000px;}
.y186{bottom:886.575000px;}
.y15e{bottom:888.375000px;}
.y73{bottom:902.415000px;}
.ydb{bottom:902.775000px;}
.yb{bottom:903.135000px;}
.y40{bottom:904.215000px;}
.y15d{bottom:905.655000px;}
.y72{bottom:921.495000px;}
.ya{bottom:922.575000px;}
.y3f{bottom:922.935000px;}
.ybb{bottom:923.295000px;}
.y15c{bottom:940.215000px;}
.y71{bottom:940.575000px;}
.y3e{bottom:942.015000px;}
.yba{bottom:942.375000px;}
.y9{bottom:943.455000px;}
.y15b{bottom:957.525000px;}
.y70{bottom:959.325000px;}
.yda{bottom:959.685000px;}
.y3d{bottom:961.125000px;}
.y8{bottom:964.005000px;}
.y15a{bottom:974.805000px;}
.y6f{bottom:978.405000px;}
.y3c{bottom:979.845000px;}
.yb9{bottom:980.205000px;}
.y7{bottom:984.885000px;}
.y159{bottom:992.085000px;}
.y6e{bottom:997.485000px;}
.y3b{bottom:998.925000px;}
.yb8{bottom:999.285000px;}
.y6{bottom:1007.565000px;}
.y158{bottom:1009.005000px;}
.y6d{bottom:1016.565000px;}
.y3a{bottom:1018.005000px;}
.y157{bottom:1026.285000px;}
.y5{bottom:1033.125000px;}
.y6c{bottom:1035.285000px;}
.yd9{bottom:1035.645000px;}
.y39{bottom:1036.725000px;}
.yb7{bottom:1037.085000px;}
.y156{bottom:1043.565000px;}
.yd8{bottom:1054.005000px;}
.y6b{bottom:1054.365000px;}
.y38{bottom:1055.805000px;}
.yb6{bottom:1056.165000px;}
.y155{bottom:1060.845000px;}
.y4{bottom:1066.605000px;}
.y6a{bottom:1073.445000px;}
.y37{bottom:1074.885000px;}
.yb5{bottom:1075.245000px;}
.y154{bottom:1078.170000px;}
.y69{bottom:1092.210000px;}
.y36{bottom:1094.010000px;}
.y153{bottom:1095.450000px;}
.y3{bottom:1100.490000px;}
.y68{bottom:1111.290000px;}
.y35{bottom:1112.730000px;}
.y1{bottom:1139.730000px;}
.h18{height:18.360000px;}
.h1a{height:18.720000px;}
.h19{height:18.756000px;}
.hd{height:20.160000px;}
.hc{height:20.520000px;}
.h10{height:27.000000px;}
.h11{height:33.156000px;}
.h14{height:33.840000px;}
.h12{height:34.200000px;}
.h1d{height:43.735781px;}
.ha{height:46.009688px;}
.hf{height:47.901094px;}
.h13{height:53.704687px;}
.he{height:54.667969px;}
.h9{height:59.328281px;}
.h2{height:59.357813px;}
.h1c{height:62.163910px;}
.h8{height:64.978594px;}
.h6{height:65.010937px;}
.h16{height:66.757500px;}
.h5{height:70.664062px;}
.h1b{height:72.562500px;}
.h17{height:74.953125px;}
.h7{height:76.279219px;}
.h4{height:76.317188px;}
.h3{height:80.944453px;}
.h15{height:84.172500px;}
.hb{height:86.945625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:93.996000px;}
.w6{width:108.756000px;}
.w8{width:162.795000px;}
.w9{width:170.355000px;}
.w4{width:276.225000px;}
.w5{width:279.465000px;}
.wa{width:304.665000px;}
.wb{width:315.150000px;}
.wc{width:320.145000px;}
.w7{width:531.930000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1d{left:1.080000px;}
.x1c{left:3.630000px;}
.x11{left:5.040000px;}
.x14{left:9.360000px;}
.x17{left:12.600000px;}
.x1e{left:15.840000px;}
.xc{left:19.476000px;}
.x26{left:24.480000px;}
.x2a{left:26.640000px;}
.x13{left:28.830000px;}
.x18{left:29.919000px;}
.x1b{left:31.719000px;}
.x2b{left:34.560000px;}
.x16{left:36.750000px;}
.x29{left:42.879000px;}
.x15{left:44.670000px;}
.x20{left:56.919000px;}
.x25{left:58.719000px;}
.x12{left:61.230000px;}
.x28{left:63.030000px;}
.x22{left:70.605000px;}
.x27{left:82.470000px;}
.x10{left:94.350000px;}
.x30{left:105.879000px;}
.xe{left:108.390000px;}
.x2e{left:119.190000px;}
.xb{left:122.076000px;}
.x9{left:123.155987px;}
.x7{left:125.675987px;}
.x2{left:126.755987px;}
.x24{left:130.350000px;}
.x2c{left:141.189000px;}
.x2f{left:145.509000px;}
.x5{left:147.311987px;}
.x1f{left:150.194987px;}
.x32{left:157.034987px;}
.x1{left:164.594987px;}
.x4{left:184.034987px;}
.xd{left:217.155000px;}
.x1a{left:225.465000px;}
.x19{left:232.275000px;}
.x21{left:286.305000px;}
.x6{left:406.589987px;}
.x8{left:424.619987px;}
.x2d{left:438.300000px;}
.x3{left:446.579987px;}
.x23{left:457.740000px;}
.xf{left:494.460000px;}
.x31{left:754.844987px;}
.xa{left:762.404987px;}
@media print{
.v1{vertical-align:-62.720000pt;}
.v2{vertical-align:-61.600000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.413333pt;}
.ls16{letter-spacing:-0.832000pt;}
.lsb{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.262400pt;}
.ls6{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.017920pt;}
.ls14{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.158720pt;}
.ls2{letter-spacing:0.226560pt;}
.ls10{letter-spacing:0.265387pt;}
.lse{letter-spacing:0.271467pt;}
.ls9{letter-spacing:0.317440pt;}
.ls11{letter-spacing:0.318720pt;}
.ls8{letter-spacing:0.401920pt;}
.ls1{letter-spacing:0.537600pt;}
.ls4{letter-spacing:0.560640pt;}
.ls5{letter-spacing:1.280000pt;}
.ls12{letter-spacing:1.597440pt;}
.ls13{letter-spacing:6.528000pt;}
.ls0{letter-spacing:13.386240pt;}
.ls1a{letter-spacing:17.065387pt;}
.ls3{letter-spacing:19.051947pt;}
.ls19{letter-spacing:42.665387pt;}
.ls15{letter-spacing:290.058667pt;}
.lsd{letter-spacing:712.565333pt;}
.ls17{letter-spacing:724.245333pt;}
.lsa{letter-spacing:885.525333pt;}
.ws0{word-spacing:-26.560000pt;}
.ws1{word-spacing:-21.440000pt;}
.ws4{word-spacing:-18.560000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws8{word-spacing:-14.991467pt;}
.ws5{word-spacing:-14.720000pt;}
.wsc{word-spacing:-13.457920pt;}
.ws7{word-spacing:-13.440000pt;}
.wsb{word-spacing:-12.800000pt;}
.ws9{word-spacing:-12.160000pt;}
.ws2{word-spacing:-0.069120pt;}
.ws3{word-spacing:-0.056320pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-13.816320pt;}
._3{margin-left:-12.579840pt;}
._1c{margin-left:-2.874880pt;}
._4{margin-left:-1.974187pt;}
._0{margin-left:-1.075200pt;}
._1{width:1.075200pt;}
._6{width:2.568960pt;}
._7{width:3.703893pt;}
._5{width:4.729600pt;}
._9{width:5.902933pt;}
._8{width:7.090347pt;}
._d{width:8.279040pt;}
._13{width:9.309440pt;}
._c{width:10.199467pt;}
._e{width:11.495680pt;}
._19{width:12.602880pt;}
._18{width:13.632427pt;}
._11{width:14.930347pt;}
._12{width:15.912960pt;}
._14{width:17.225387pt;}
._a{width:18.117120pt;}
._b{width:19.019093pt;}
._15{width:20.505173pt;}
._16{width:21.927253pt;}
._17{width:22.841173pt;}
._22{width:23.818240pt;}
._1a{width:24.835413pt;}
._1b{width:26.284800pt;}
._1e{width:27.689387pt;}
._1d{width:29.502720pt;}
._1f{width:30.439253pt;}
._f{width:32.040960pt;}
._10{width:33.116160pt;}
._21{width:34.357333pt;}
._20{width:35.535787pt;}
._24{width:36.828160pt;}
._23{width:37.832107pt;}
.fs8{font-size:48.640000pt;}
.fs9{font-size:51.200000pt;}
.fs0{font-size:53.760000pt;}
.fs6{font-size:56.320000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs7{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.fs1{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:4.154667pt;}
.y95{bottom:4.160000pt;}
.y59{bottom:4.480000pt;}
.yb1{bottom:4.520000pt;}
.y56{bottom:4.800000pt;}
.y8e{bottom:8.000000pt;}
.y8c{bottom:8.320000pt;}
.y90{bottom:10.880000pt;}
.y91{bottom:11.200000pt;}
.y94{bottom:17.920000pt;}
.y92{bottom:18.240000pt;}
.y2{bottom:100.512000pt;}
.y134{bottom:124.192000pt;}
.y11b{bottom:125.152000pt;}
.yd7{bottom:126.112000pt;}
.y34{bottom:126.432000pt;}
.y98{bottom:129.312000pt;}
.y67{bottom:129.632000pt;}
.y185{bottom:130.272000pt;}
.yb3{bottom:131.872000pt;}
.yf7{bottom:133.466667pt;}
.y133{bottom:141.146667pt;}
.y11a{bottom:142.106667pt;}
.yd6{bottom:143.066667pt;}
.y33{bottom:143.386667pt;}
.y184{bottom:145.626667pt;}
.y97{bottom:146.266667pt;}
.y152{bottom:146.906667pt;}
.yf6{bottom:150.426667pt;}
.yb2{bottom:151.386667pt;}
.y66{bottom:153.946667pt;}
.y132{bottom:157.786667pt;}
.y119{bottom:158.746667pt;}
.y32{bottom:160.026667pt;}
.y183{bottom:160.986667pt;}
.y151{bottom:162.266667pt;}
.y96{bottom:162.906667pt;}
.yf5{bottom:167.386667pt;}
.y65{bottom:170.906667pt;}
.y131{bottom:174.786667pt;}
.y118{bottom:175.746667pt;}
.y182{bottom:176.386667pt;}
.yd5{bottom:176.706667pt;}
.y31{bottom:177.026667pt;}
.y150{bottom:177.666667pt;}
.y93{bottom:182.786667pt;}
.yf4{bottom:184.386667pt;}
.y64{bottom:187.586667pt;}
.yb0{bottom:190.786667pt;}
.y181{bottom:191.426667pt;}
.y130{bottom:191.746667pt;}
.y117{bottom:192.706667pt;}
.y14f{bottom:193.026667pt;}
.yd4{bottom:193.666667pt;}
.y30{bottom:193.986667pt;}
.yf3{bottom:201.026667pt;}
.y63{bottom:204.546667pt;}
.y180{bottom:206.786667pt;}
.y14e{bottom:208.386667pt;}
.y12f{bottom:208.706667pt;}
.y116{bottom:209.346667pt;}
.yaf{bottom:210.306667pt;}
.y2f{bottom:210.626667pt;}
.yf2{bottom:217.986667pt;}
.y62{bottom:221.506667pt;}
.y17f{bottom:222.146667pt;}
.y14d{bottom:223.426667pt;}
.y12e{bottom:225.346667pt;}
.y115{bottom:226.306667pt;}
.y2e{bottom:227.586667pt;}
.yae{bottom:233.666667pt;}
.yf1{bottom:234.946667pt;}
.y17e{bottom:237.506667pt;}
.y61{bottom:238.146667pt;}
.y14c{bottom:238.786667pt;}
.y12d{bottom:242.306667pt;}
.y114{bottom:243.266667pt;}
.yd3{bottom:244.226667pt;}
.y2d{bottom:244.546667pt;}
.yf0{bottom:251.586667pt;}
.y17d{bottom:252.866667pt;}
.y14b{bottom:254.146667pt;}
.y60{bottom:255.106667pt;}
.y12c{bottom:259.266667pt;}
.y113{bottom:260.226667pt;}
.y8f{bottom:260.546667pt;}
.yd2{bottom:261.186667pt;}
.y2c{bottom:261.506667pt;}
.yad{bottom:265.986667pt;}
.y17c{bottom:268.226667pt;}
.yef{bottom:268.546667pt;}
.y14a{bottom:269.506667pt;}
.y5f{bottom:272.066667pt;}
.y12b{bottom:275.906667pt;}
.y112{bottom:276.866667pt;}
.y2b{bottom:278.146667pt;}
.yac{bottom:282.626667pt;}
.y17b{bottom:283.586667pt;}
.y149{bottom:284.893333pt;}
.yee{bottom:285.533333pt;}
.y5e{bottom:289.053333pt;}
.y12a{bottom:292.893333pt;}
.y111{bottom:293.853333pt;}
.yd1{bottom:294.813333pt;}
.y2a{bottom:295.133333pt;}
.y8d{bottom:298.653333pt;}
.y17a{bottom:298.973333pt;}
.yab{bottom:299.613333pt;}
.y148{bottom:300.253333pt;}
.yed{bottom:302.173333pt;}
.y5d{bottom:305.693333pt;}
.y129{bottom:309.853333pt;}
.yd0{bottom:311.773333pt;}
.y29{bottom:312.093333pt;}
.y110{bottom:313.373333pt;}
.y179{bottom:314.333333pt;}
.y147{bottom:315.613333pt;}
.yaa{bottom:316.573333pt;}
.yec{bottom:319.133333pt;}
.y5c{bottom:322.653333pt;}
.y128{bottom:326.493333pt;}
.y28{bottom:328.733333pt;}
.y178{bottom:329.693333pt;}
.y146{bottom:330.973333pt;}
.y8b{bottom:331.293333pt;}
.y10f{bottom:332.893333pt;}
.ya9{bottom:333.533333pt;}
.yeb{bottom:336.093333pt;}
.y5b{bottom:339.613333pt;}
.y127{bottom:343.453333pt;}
.y177{bottom:345.053333pt;}
.ycf{bottom:345.373333pt;}
.y27{bottom:345.693333pt;}
.y145{bottom:346.333333pt;}
.ya8{bottom:350.173333pt;}
.y10e{bottom:352.733333pt;}
.yea{bottom:353.053333pt;}
.y5a{bottom:356.253333pt;}
.y126{bottom:360.413333pt;}
.y144{bottom:361.693333pt;}
.yce{bottom:362.333333pt;}
.y26{bottom:362.653333pt;}
.ye3{bottom:363.613333pt;}
.y8a{bottom:365.213333pt;}
.ya7{bottom:367.133333pt;}
.ye9{bottom:369.693333pt;}
.y10d{bottom:372.253333pt;}
.y176{bottom:375.453333pt;}
.y143{bottom:377.053333pt;}
.y58{bottom:377.373333pt;}
.y25{bottom:379.293333pt;}
.ye2{bottom:380.573333pt;}
.ya6{bottom:384.093333pt;}
.ye8{bottom:386.653333pt;}
.y175{bottom:390.813333pt;}
.y142{bottom:392.093333pt;}
.y125{bottom:394.013333pt;}
.y10c{bottom:395.613333pt;}
.y24{bottom:396.253333pt;}
.y89{bottom:397.253333pt;}
.ye1{bottom:397.573333pt;}
.y57{bottom:398.533333pt;}
.ya5{bottom:400.773333pt;}
.ye7{bottom:403.653333pt;}
.y174{bottom:406.213333pt;}
.y141{bottom:407.493333pt;}
.y124{bottom:411.013333pt;}
.ycd{bottom:412.933333pt;}
.y23{bottom:413.253333pt;}
.y88{bottom:414.213333pt;}
.ya4{bottom:417.733333pt;}
.y55{bottom:419.653333pt;}
.y173{bottom:421.573333pt;}
.y140{bottom:422.853333pt;}
.ye6{bottom:424.133333pt;}
.y10b{bottom:427.973333pt;}
.ycc{bottom:429.893333pt;}
.y22{bottom:430.853333pt;}
.y87{bottom:431.173333pt;}
.ya3{bottom:434.693333pt;}
.y172{bottom:436.933333pt;}
.y13f{bottom:438.213333pt;}
.y54{bottom:444.613333pt;}
.ycb{bottom:446.853333pt;}
.y86{bottom:448.133333pt;}
.ya2{bottom:451.333333pt;}
.y21{bottom:451.653333pt;}
.y171{bottom:452.293333pt;}
.y13e{bottom:453.573333pt;}
.y10a{bottom:461.573333pt;}
.yca{bottom:463.493333pt;}
.y85{bottom:464.773333pt;}
.ye0{bottom:465.093333pt;}
.y170{bottom:467.653333pt;}
.y20{bottom:467.973333pt;}
.ya1{bottom:468.293333pt;}
.y13d{bottom:468.933333pt;}
.y53{bottom:476.933333pt;}
.y123{bottom:478.213333pt;}
.y109{bottom:478.533333pt;}
.yc9{bottom:480.453333pt;}
.y84{bottom:481.733333pt;}
.y16f{bottom:483.013333pt;}
.y1f{bottom:483.653333pt;}
.y13c{bottom:484.293333pt;}
.ya0{bottom:485.253333pt;}
.y52{bottom:493.893333pt;}
.y108{bottom:495.493333pt;}
.y122{bottom:496.133333pt;}
.yc8{bottom:497.413333pt;}
.y16e{bottom:498.373333pt;}
.y83{bottom:498.693333pt;}
.y13b{bottom:499.653333pt;}
.y1e{bottom:500.933333pt;}
.y9f{bottom:502.213333pt;}
.y51{bottom:510.560000pt;}
.y107{bottom:512.160000pt;}
.y16d{bottom:513.760000pt;}
.yc7{bottom:514.400000pt;}
.y13a{bottom:515.040000pt;}
.y82{bottom:515.360000pt;}
.ydf{bottom:515.680000pt;}
.y121{bottom:516.960000pt;}
.y9e{bottom:518.880000pt;}
.y1d{bottom:520.160000pt;}
.y50{bottom:527.520000pt;}
.y106{bottom:529.120000pt;}
.y139{bottom:530.400000pt;}
.yc6{bottom:531.040000pt;}
.y81{bottom:532.320000pt;}
.y120{bottom:533.600000pt;}
.y1c{bottom:535.520000pt;}
.y9d{bottom:535.840000pt;}
.y16c{bottom:544.160000pt;}
.y4f{bottom:544.480000pt;}
.y105{bottom:546.080000pt;}
.y138{bottom:547.680000pt;}
.yc5{bottom:548.000000pt;}
.y80{bottom:549.280000pt;}
.y11f{bottom:550.560000pt;}
.y1b{bottom:550.880000pt;}
.y9c{bottom:552.800000pt;}
.y16b{bottom:559.520000pt;}
.y4e{bottom:561.440000pt;}
.y104{bottom:562.720000pt;}
.yc4{bottom:564.640000pt;}
.y137{bottom:565.920000pt;}
.y1a{bottom:566.240000pt;}
.y11e{bottom:567.520000pt;}
.y9b{bottom:570.720000pt;}
.y16a{bottom:574.880000pt;}
.y4d{bottom:578.080000pt;}
.y103{bottom:579.680000pt;}
.y19{bottom:581.600000pt;}
.y7f{bottom:582.880000pt;}
.yde{bottom:583.200000pt;}
.y11d{bottom:584.160000pt;}
.y9a{bottom:589.920000pt;}
.y169{bottom:590.240000pt;}
.y4c{bottom:595.040000pt;}
.y102{bottom:596.640000pt;}
.y18{bottom:596.960000pt;}
.y136{bottom:599.520000pt;}
.y7e{bottom:599.840000pt;}
.y11c{bottom:601.120000pt;}
.y168{bottom:605.600000pt;}
.y99{bottom:611.360000pt;}
.y4b{bottom:612.000000pt;}
.y17{bottom:612.320000pt;}
.y101{bottom:613.280000pt;}
.y7d{bottom:616.800000pt;}
.yc3{bottom:618.080000pt;}
.y167{bottom:620.960000pt;}
.y16{bottom:627.706667pt;}
.y4a{bottom:628.666667pt;}
.y100{bottom:630.266667pt;}
.y7c{bottom:633.466667pt;}
.ydd{bottom:633.786667pt;}
.y135{bottom:634.746667pt;}
.yc2{bottom:635.066667pt;}
.y166{bottom:636.346667pt;}
.y15{bottom:643.066667pt;}
.y49{bottom:645.626667pt;}
.yff{bottom:647.226667pt;}
.y7b{bottom:650.426667pt;}
.ye5{bottom:651.706667pt;}
.yc1{bottom:652.026667pt;}
.y14{bottom:658.106667pt;}
.y48{bottom:663.226667pt;}
.yfe{bottom:664.186667pt;}
.y165{bottom:667.066667pt;}
.y7a{bottom:667.386667pt;}
.ye4{bottom:668.666667pt;}
.yc0{bottom:668.986667pt;}
.y13{bottom:673.466667pt;}
.yfd{bottom:680.826667pt;}
.y164{bottom:682.426667pt;}
.y79{bottom:684.026667pt;}
.y47{bottom:684.346667pt;}
.ybf{bottom:685.626667pt;}
.y12{bottom:688.826667pt;}
.y18a{bottom:691.386667pt;}
.yfc{bottom:697.786667pt;}
.y78{bottom:700.986667pt;}
.y46{bottom:702.266667pt;}
.ybe{bottom:702.586667pt;}
.y11{bottom:704.186667pt;}
.y189{bottom:706.746667pt;}
.y163{bottom:712.826667pt;}
.yfb{bottom:714.746667pt;}
.y77{bottom:717.946667pt;}
.y45{bottom:719.226667pt;}
.y10{bottom:719.546667pt;}
.y188{bottom:722.106667pt;}
.y162{bottom:728.186667pt;}
.yfa{bottom:731.386667pt;}
.yf{bottom:734.946667pt;}
.y44{bottom:736.226667pt;}
.y187{bottom:737.506667pt;}
.y161{bottom:743.586667pt;}
.yf9{bottom:748.386667pt;}
.ye{bottom:750.306667pt;}
.y76{bottom:751.586667pt;}
.ydc{bottom:751.906667pt;}
.y43{bottom:752.866667pt;}
.ybd{bottom:753.186667pt;}
.y160{bottom:758.946667pt;}
.yd{bottom:765.986667pt;}
.y75{bottom:768.546667pt;}
.y42{bottom:769.826667pt;}
.ybc{bottom:770.146667pt;}
.y15f{bottom:774.306667pt;}
.yc{bottom:783.266667pt;}
.y74{bottom:785.506667pt;}
.yf8{bottom:786.466667pt;}
.y41{bottom:786.786667pt;}
.y186{bottom:788.066667pt;}
.y15e{bottom:789.666667pt;}
.y73{bottom:802.146667pt;}
.ydb{bottom:802.466667pt;}
.yb{bottom:802.786667pt;}
.y40{bottom:803.746667pt;}
.y15d{bottom:805.026667pt;}
.y72{bottom:819.106667pt;}
.ya{bottom:820.066667pt;}
.y3f{bottom:820.386667pt;}
.ybb{bottom:820.706667pt;}
.y15c{bottom:835.746667pt;}
.y71{bottom:836.066667pt;}
.y3e{bottom:837.346667pt;}
.yba{bottom:837.666667pt;}
.y9{bottom:838.626667pt;}
.y15b{bottom:851.133333pt;}
.y70{bottom:852.733333pt;}
.yda{bottom:853.053333pt;}
.y3d{bottom:854.333333pt;}
.y8{bottom:856.893333pt;}
.y15a{bottom:866.493333pt;}
.y6f{bottom:869.693333pt;}
.y3c{bottom:870.973333pt;}
.yb9{bottom:871.293333pt;}
.y7{bottom:875.453333pt;}
.y159{bottom:881.853333pt;}
.y6e{bottom:886.653333pt;}
.y3b{bottom:887.933333pt;}
.yb8{bottom:888.253333pt;}
.y6{bottom:895.613333pt;}
.y158{bottom:896.893333pt;}
.y6d{bottom:903.613333pt;}
.y3a{bottom:904.893333pt;}
.y157{bottom:912.253333pt;}
.y5{bottom:918.333333pt;}
.y6c{bottom:920.253333pt;}
.yd9{bottom:920.573333pt;}
.y39{bottom:921.533333pt;}
.yb7{bottom:921.853333pt;}
.y156{bottom:927.613333pt;}
.yd8{bottom:936.893333pt;}
.y6b{bottom:937.213333pt;}
.y38{bottom:938.493333pt;}
.yb6{bottom:938.813333pt;}
.y155{bottom:942.973333pt;}
.y4{bottom:948.093333pt;}
.y6a{bottom:954.173333pt;}
.y37{bottom:955.453333pt;}
.yb5{bottom:955.773333pt;}
.y154{bottom:958.373333pt;}
.y69{bottom:970.853333pt;}
.y36{bottom:972.453333pt;}
.y153{bottom:973.733333pt;}
.y3{bottom:978.213333pt;}
.y68{bottom:987.813333pt;}
.y35{bottom:989.093333pt;}
.y1{bottom:1013.093333pt;}
.h18{height:16.320000pt;}
.h1a{height:16.640000pt;}
.h19{height:16.672000pt;}
.hd{height:17.920000pt;}
.hc{height:18.240000pt;}
.h10{height:24.000000pt;}
.h11{height:29.472000pt;}
.h14{height:30.080000pt;}
.h12{height:30.400000pt;}
.h1d{height:38.876250pt;}
.ha{height:40.897500pt;}
.hf{height:42.578750pt;}
.h13{height:47.737500pt;}
.he{height:48.593750pt;}
.h9{height:52.736250pt;}
.h2{height:52.762500pt;}
.h1c{height:55.256809pt;}
.h8{height:57.758750pt;}
.h6{height:57.787500pt;}
.h16{height:59.340000pt;}
.h5{height:62.812500pt;}
.h1b{height:64.500000pt;}
.h17{height:66.625000pt;}
.h7{height:67.803750pt;}
.h4{height:67.837500pt;}
.h3{height:71.950625pt;}
.h15{height:74.820000pt;}
.hb{height:77.285000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:83.552000pt;}
.w6{width:96.672000pt;}
.w8{width:144.706667pt;}
.w9{width:151.426667pt;}
.w4{width:245.533333pt;}
.w5{width:248.413333pt;}
.wa{width:270.813333pt;}
.wb{width:280.133333pt;}
.wc{width:284.573333pt;}
.w7{width:472.826667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1d{left:0.960000pt;}
.x1c{left:3.226667pt;}
.x11{left:4.480000pt;}
.x14{left:8.320000pt;}
.x17{left:11.200000pt;}
.x1e{left:14.080000pt;}
.xc{left:17.312000pt;}
.x26{left:21.760000pt;}
.x2a{left:23.680000pt;}
.x13{left:25.626667pt;}
.x18{left:26.594667pt;}
.x1b{left:28.194667pt;}
.x2b{left:30.720000pt;}
.x16{left:32.666667pt;}
.x29{left:38.114667pt;}
.x15{left:39.706667pt;}
.x20{left:50.594667pt;}
.x25{left:52.194667pt;}
.x12{left:54.426667pt;}
.x28{left:56.026667pt;}
.x22{left:62.760000pt;}
.x27{left:73.306667pt;}
.x10{left:83.866667pt;}
.x30{left:94.114667pt;}
.xe{left:96.346667pt;}
.x2e{left:105.946667pt;}
.xb{left:108.512000pt;}
.x9{left:109.471988pt;}
.x7{left:111.711988pt;}
.x2{left:112.671988pt;}
.x24{left:115.866667pt;}
.x2c{left:125.501333pt;}
.x2f{left:129.341333pt;}
.x5{left:130.943988pt;}
.x1f{left:133.506655pt;}
.x32{left:139.586655pt;}
.x1{left:146.306655pt;}
.x4{left:163.586655pt;}
.xd{left:193.026667pt;}
.x1a{left:200.413333pt;}
.x19{left:206.466667pt;}
.x21{left:254.493333pt;}
.x6{left:361.413322pt;}
.x8{left:377.439988pt;}
.x2d{left:389.600000pt;}
.x3{left:396.959988pt;}
.x23{left:406.880000pt;}
.xf{left:439.520000pt;}
.x31{left:670.973322pt;}
.xa{left:677.693322pt;}
}




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