
    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_f300a66937a2fe328206123e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959961;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_6844c7bab434c7410669c419.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.136230;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_0e5b20ce4d447631735222c0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a48b05b26a79763b89e5420e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958008;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_55e4e653e8cb21b88db1df17.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.130371;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_e9da1e1cceca64cfe075faf9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958008;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_1ec96a227165130d140e2a86.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.959961;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_3e8e7da1e403b54cabbfba8e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.219711,-0.119278,0.119278,0.219711,0,0);-ms-transform:matrix(0.219711,-0.119278,0.119278,0.219711,0,0);-webkit-transform:matrix(0.219711,-0.119278,0.119278,0.219711,0,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);}
.m2{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);}
.v6{vertical-align:-63.072000px;}
.v4{vertical-align:-43.200000px;}
.v7{vertical-align:-10.224000px;}
.v5{vertical-align:-7.080000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:29.520000px;}
.v3{vertical-align:43.200000px;}
.v1{vertical-align:56.880000px;}
.lsa{letter-spacing:-1.770000px;}
.ls20{letter-spacing:-1.728000px;}
.ls37{letter-spacing:-1.626000px;}
.ls29{letter-spacing:-1.440000px;}
.ls39{letter-spacing:-1.014000px;}
.ls13{letter-spacing:-1.008000px;}
.ls17{letter-spacing:-0.864000px;}
.ls32{letter-spacing:-0.367800px;}
.lsb{letter-spacing:-0.327600px;}
.ls34{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.284400px;}
.ls33{letter-spacing:-0.223800px;}
.lsc{letter-spacing:-0.190200px;}
.ls16{letter-spacing:-0.151800px;}
.ls31{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.080400px;}
.ls2e{letter-spacing:-0.072000px;}
.lsd{letter-spacing:-0.038880px;}
.ls38{letter-spacing:-0.036000px;}
.ls19{letter-spacing:-0.000006px;}
.ls0{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000006px;}
.ls1f{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.064200px;}
.ls30{letter-spacing:0.081000px;}
.ls36{letter-spacing:0.082800px;}
.ls1{letter-spacing:0.144000px;}
.ls3a{letter-spacing:0.147000px;}
.ls2f{letter-spacing:0.216000px;}
.ls23{letter-spacing:0.285000px;}
.ls3{letter-spacing:0.324000px;}
.ls12{letter-spacing:0.327000px;}
.ls5{letter-spacing:0.346800px;}
.ls14{letter-spacing:1.440000px;}
.ls1a{letter-spacing:3.413520px;}
.ls2d{letter-spacing:10.296000px;}
.ls22{letter-spacing:28.097856px;}
.ls21{letter-spacing:28.226160px;}
.ls9{letter-spacing:28.840944px;}
.ls8{letter-spacing:28.920000px;}
.ls24{letter-spacing:28.944000px;}
.ls11{letter-spacing:29.008944px;}
.ls10{letter-spacing:29.088000px;}
.ls4{letter-spacing:32.356080px;}
.ls1e{letter-spacing:39.132000px;}
.ls1d{letter-spacing:39.276000px;}
.ls27{letter-spacing:41.909184px;}
.lse{letter-spacing:41.988240px;}
.ls35{letter-spacing:42.012240px;}
.ls2c{letter-spacing:48.628944px;}
.ls2b{letter-spacing:48.708000px;}
.ls15{letter-spacing:60.375360px;}
.ls28{letter-spacing:65.865600px;}
.ls26{letter-spacing:65.916000px;}
.ls2a{letter-spacing:70.200000px;}
.ls1c{letter-spacing:80.404128px;}
.ls1b{letter-spacing:80.470080px;}
.ls6{letter-spacing:106.864128px;}
.ls7{letter-spacing:106.930080px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(11,56,102),0 0.015em rgb(11,56,102),0.015em 0 rgb(11,56,102),0 -0.015em  rgb(11,56,102);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(11,56,102);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws23{word-spacing:-53.333280px;}
.ws24{word-spacing:-53.250480px;}
.wse{word-spacing:-46.836408px;}
.wsf{word-spacing:-41.328000px;}
.ws2{word-spacing:-39.992088px;}
.ws1{word-spacing:-39.927888px;}
.ws4{word-spacing:-39.888000px;}
.ws16{word-spacing:-38.448000px;}
.ws14{word-spacing:-33.346368px;}
.wsc{word-spacing:-33.306480px;}
.wsd{word-spacing:-33.022080px;}
.ws10{word-spacing:-31.680000px;}
.ws12{word-spacing:-30.280320px;}
.ws13{word-spacing:-30.239994px;}
.ws11{word-spacing:-30.199920px;}
.wsa{word-spacing:-29.955888px;}
.ws7{word-spacing:-29.916000px;}
.ws15{word-spacing:-26.810520px;}
.ws25{word-spacing:-23.374368px;}
.wsb{word-spacing:-23.334480px;}
.ws26{word-spacing:-23.298480px;}
.ws18{word-spacing:-19.983888px;}
.ws17{word-spacing:-19.944000px;}
.ws1c{word-spacing:-19.656000px;}
.ws1a{word-spacing:-19.616088px;}
.ws27{word-spacing:-18.495480px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:42.228000px;}
.ws9{word-spacing:113.564544px;}
.ws6{word-spacing:113.676000px;}
.ws5{word-spacing:117.540000px;}
.ws21{word-spacing:306.984000px;}
.ws1d{word-spacing:326.964000px;}
.ws20{word-spacing:327.144000px;}
.ws22{word-spacing:327.183984px;}
.ws1f{word-spacing:330.168000px;}
.ws1e{word-spacing:347.124000px;}
.ws1b{word-spacing:347.163984px;}
.ws19{word-spacing:350.148000px;}
.ws8{word-spacing:522.041472px;}
._9{margin-left:-1488.288960px;}
._b{margin-left:-7.463520px;}
._a{margin-left:-5.760000px;}
._f{margin-left:-4.727520px;}
._5{margin-left:-3.450240px;}
._2{margin-left:-2.247840px;}
._0{margin-left:-1.082160px;}
._1{width:1.252080px;}
._3{width:2.267280px;}
._6{width:3.307680px;}
._4{width:4.589136px;}
._c{width:17.713152px;}
._8{width:30.402480px;}
._7{width:66.888000px;}
._e{width:232.154160px;}
._d{width:1186.383840px;}
._10{width:2318.928000px;}
.fcd{color:rgb(255,255,255);}
.fc0{color:rgb(11,56,102);}
.fc8{color:transparent;}
.fc1{color:rgb(69,135,122);}
.fc2{color:rgb(39,95,121);}
.fce{color:rgb(5,99,193);}
.fc4{color:rgb(197,90,17);}
.fc3{color:rgb(0,0,0);}
.fc5{color:rgb(117,117,117);}
.fc9{color:rgb(89,89,89);}
.fcb{color:rgb(192,0,0);}
.fca{color:rgb(94,172,158);}
.fc6{color:rgb(127,127,127);}
.fc7{color:rgb(185,91,34);}
.fcc{color:rgb(23,79,109);}
.fs7{font-size:54.000000px;}
.fs8{font-size:54.144000px;}
.fsf{font-size:59.760000px;}
.fse{font-size:59.904000px;}
.fs6{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fsc{font-size:72.144000px;}
.fsb{font-size:84.240000px;}
.fs13{font-size:84.384000px;}
.fs3{font-size:95.760000px;}
.fs12{font-size:95.904000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:108.144000px;}
.fs0{font-size:120.240000px;}
.fsa{font-size:120.384000px;}
.fs1{font-size:144.000000px;}
.fs2{font-size:144.144000px;}
.fsd{font-size:167.904000px;}
.fs11{font-size:192.240000px;}
.fs10{font-size:239.615245px;}
.y0{bottom:0.000000px;}
.y79{bottom:5.940000px;}
.y7c{bottom:10.050000px;}
.yfb{bottom:10.224000px;}
.y1e{bottom:14.040000px;}
.ydd{bottom:23.580000px;}
.y9{bottom:28.728000px;}
.yfa{bottom:30.024000px;}
.yed{bottom:35.748000px;}
.yce{bottom:42.300000px;}
.yca{bottom:69.450000px;}
.y1b{bottom:81.936000px;}
.yeb{bottom:91.152000px;}
.y7a{bottom:91.800000px;}
.yb3{bottom:93.816000px;}
.yd7{bottom:95.220000px;}
.y51{bottom:95.364000px;}
.y8{bottom:98.532000px;}
.y8e{bottom:101.952000px;}
.y3d{bottom:103.032000px;}
.y6e{bottom:104.076000px;}
.y9b{bottom:106.344000px;}
.ya4{bottom:106.488000px;}
.y12{bottom:107.424000px;}
.y28{bottom:108.576000px;}
.y1a{bottom:116.172000px;}
.y9e{bottom:122.292000px;}
.y32{bottom:124.344000px;}
.y71{bottom:131.688000px;}
.y19{bottom:132.372000px;}
.y7{bottom:134.172000px;}
.yb2{bottom:134.784000px;}
.y9d{bottom:136.620000px;}
.yb6{bottom:137.085000px;}
.ya3{bottom:142.992000px;}
.yde{bottom:143.130000px;}
.yc4{bottom:143.175000px;}
.yd8{bottom:143.205000px;}
.y7b{bottom:143.280000px;}
.y6d{bottom:145.512000px;}
.y18{bottom:148.572000px;}
.y70{bottom:149.688000px;}
.yea{bottom:149.724000px;}
.y27{bottom:151.815000px;}
.y11{bottom:154.950000px;}
.ye1{bottom:155.160000px;}
.y6f{bottom:167.730000px;}
.y76{bottom:169.050000px;}
.y38{bottom:169.740000px;}
.y6{bottom:169.845000px;}
.y50{bottom:169.890000px;}
.yb1{bottom:170.430000px;}
.y9c{bottom:174.390000px;}
.y37{bottom:177.120000px;}
.ya2{bottom:178.995000px;}
.ye0{bottom:179.070000px;}
.y17{bottom:182.775000px;}
.y6c{bottom:186.915000px;}
.yd2{bottom:188.565000px;}
.y8d{bottom:189.825000px;}
.y31{bottom:189.870000px;}
.ybe{bottom:194.250000px;}
.y26{bottom:195.015000px;}
.y3a{bottom:197.820000px;}
.y16{bottom:198.975000px;}
.y10{bottom:202.500000px;}
.ydf{bottom:202.965000px;}
.y9a{bottom:203.580000px;}
.yb0{bottom:206.070000px;}
.ye9{bottom:207.330000px;}
.yd1{bottom:212.505000px;}
.ya1{bottom:214.995000px;}
.y75{bottom:216.570000px;}
.ybd{bottom:216.795000px;}
.y5{bottom:224.565000px;}
.ydc{bottom:226.875000px;}
.ycf{bottom:230.865000px;}
.y15{bottom:233.175000px;}
.ybc{bottom:236.955000px;}
.y30{bottom:237.390000px;}
.yd9{bottom:238.425000px;}
.y46{bottom:243.750000px;}
.y4f{bottom:244.440000px;}
.y35{bottom:245.520000px;}
.ye8{bottom:246.930000px;}
.y14{bottom:249.405000px;}
.ydb{bottom:250.815000px;}
.ya0{bottom:250.995000px;}
.y34{bottom:252.900000px;}
.yd3{bottom:253.080000px;}
.ybb{bottom:255.420000px;}
.y25{bottom:256.215000px;}
.ya5{bottom:263.055000px;}
.y13{bottom:265.605000px;}
.y6b{bottom:266.610000px;}
.y39{bottom:267.480000px;}
.y8c{bottom:268.665000px;}
.yaf{bottom:268.740000px;}
.y99{bottom:270.180000px;}
.yd0{bottom:273.165000px;}
.yda{bottom:274.710000px;}
.y59{bottom:282.675000px;}
.y45{bottom:286.950000px;}
.y9f{bottom:287.025000px;}
.y4{bottom:288.105000px;}
.y4e{bottom:291.960000px;}
.yf{bottom:297.540000px;}
.yd6{bottom:298.620000px;}
.y24{bottom:299.445000px;}
.y2f{bottom:302.940000px;}
.yae{bottom:304.380000px;}
.ye7{bottom:304.560000px;}
.y36{bottom:308.265000px;}
.y98{bottom:309.780000px;}
.y6a{bottom:309.855000px;}
.yc3{bottom:316.800000px;}
.yd5{bottom:322.530000px;}
.y58{bottom:324.795000px;}
.yc9{bottom:326.520000px;}
.y7f{bottom:339.195000px;}
.y4d{bottom:339.480000px;}
.y78{bottom:344.955000px;}
.ye{bottom:345.090000px;}
.yd4{bottom:346.425000px;}
.y8b{bottom:347.550000px;}
.yad{bottom:349.020000px;}
.y44{bottom:357.195000px;}
.yec{bottom:358.125000px;}
.y97{bottom:358.410000px;}
.y23{bottom:360.645000px;}
.ye6{bottom:362.160000px;}
.y57{bottom:366.915000px;}
.ycd{bottom:372.060000px;}
.yf5{bottom:378.645000px;}
.y69{bottom:380.055000px;}
.y7e{bottom:382.395000px;}
.y2e{bottom:386.460000px;}
.yd{bottom:392.610000px;}
.yfc{bottom:392.835000px;}
.ycc{bottom:397.650000px;}
.y43{bottom:400.395000px;}
.yf4{bottom:407.490000px;}
.y56{bottom:409.065000px;}
.y3c{bottom:409.830000px;}
.y85{bottom:411.090000px;}
.yac{bottom:411.690000px;}
.y4c{bottom:414.030000px;}
.y3b{bottom:417.210000px;}
.ye5{bottom:419.790000px;}
.ycb{bottom:421.560000px;}
.y68{bottom:423.255000px;}
.y96{bottom:425.010000px;}
.y7d{bottom:425.595000px;}
.y8a{bottom:426.390000px;}
.y2d{bottom:434.010000px;}
.yf3{bottom:436.290000px;}
.y42{bottom:443.595000px;}
.y1{bottom:444.675000px;}
.yab{bottom:447.330000px;}
.yc8{bottom:448.410000px;}
.y5f{bottom:449.610000px;}
.ybf{bottom:449.670000px;}
.y55{bottom:451.185000px;}
.yc5{bottom:459.975000px;}
.y4b{bottom:461.550000px;}
.yf2{bottom:465.090000px;}
.y22{bottom:469.650000px;}
.y84{bottom:472.320000px;}
.y95{bottom:473.610000px;}
.yc7{bottom:475.275000px;}
.yb5{bottom:475.920000px;}
.y33{bottom:483.945000px;}
.ye4{bottom:486.390000px;}
.yc{bottom:487.650000px;}
.y77{bottom:488.085000px;}
.y54{bottom:493.305000px;}
.y67{bottom:493.485000px;}
.yf1{bottom:493.890000px;}
.yc6{bottom:499.170000px;}
.y2c{bottom:499.530000px;}
.y89{bottom:505.260000px;}
.y4a{bottom:509.070000px;}
.yaa{bottom:509.970000px;}
.y21{bottom:512.850000px;}
.y41{bottom:513.825000px;}
.yf7{bottom:514.875000px;}
.y5e{bottom:515.520000px;}
.y94{bottom:522.255000px;}
.yc2{bottom:523.080000px;}
.y83{bottom:533.520000px;}
.yb{bottom:535.215000px;}
.y53{bottom:535.470000px;}
.y66{bottom:536.685000px;}
.yf6{bottom:540.105000px;}
.yc0{bottom:547.020000px;}
.yfd{bottom:547.815000px;}
.yf0{bottom:549.720000px;}
.ye3{bottom:552.990000px;}
.ya9{bottom:554.655000px;}
.y20{bottom:556.050000px;}
.y88{bottom:557.100000px;}
.y2b{bottom:565.050000px;}
.yc1{bottom:570.930000px;}
.y1c{bottom:572.550000px;}
.y52{bottom:577.590000px;}
.ya{bottom:582.735000px;}
.y49{bottom:583.635000px;}
.y40{bottom:584.025000px;}
.y5d{bottom:584.640000px;}
.y93{bottom:588.855000px;}
.y3{bottom:588.960000px;}
.y82{bottom:594.750000px;}
.yf8{bottom:598.290000px;}
.y1f{bottom:599.250000px;}
.ya8{bottom:599.295000px;}
.yba{bottom:605.160000px;}
.yef{bottom:605.520000px;}
.y65{bottom:606.885000px;}
.y87{bottom:608.970000px;}
.yff{bottom:611.205000px;}
.yb7{bottom:613.005000px;}
.y74{bottom:623.955000px;}
.y62{bottom:625.785000px;}
.yb9{bottom:627.660000px;}
.y48{bottom:631.155000px;}
.y5a{bottom:631.980000px;}
.y5c{bottom:636.480000px;}
.y92{bottom:637.455000px;}
.yb4{bottom:642.345000px;}
.ya7{bottom:643.935000px;}
.y2{bottom:645.120000px;}
.y2a{bottom:647.715000px;}
.ye2{bottom:647.970000px;}
.y64{bottom:650.130000px;}
.yb8{bottom:650.160000px;}
.y3f{bottom:654.270000px;}
.yfe{bottom:654.405000px;}
.y81{bottom:655.950000px;}
.yf9{bottom:657.720000px;}
.yee{bottom:661.320000px;}
.y61{bottom:665.430000px;}
.y73{bottom:671.475000px;}
.y91{bottom:677.085000px;}
.y86{bottom:687.810000px;}
.y8f{bottom:690.225000px;}
.y29{bottom:695.265000px;}
.y1d{bottom:695.550000px;}
.y3e{bottom:697.470000px;}
.y63{bottom:702.330000px;}
.y60{bottom:705.030000px;}
.ya6{bottom:706.605000px;}
.y47{bottom:707.685000px;}
.y72{bottom:719.025000px;}
.y90{bottom:725.685000px;}
.y5b{bottom:730.110000px;}
.y80{bottom:735.195000px;}
.y100{bottom:740.415000px;}
.h7{height:40.605469px;}
.h8{height:40.713750px;}
.h15{height:44.936719px;}
.h14{height:45.045000px;}
.h6{height:49.809375px;}
.h1e{height:54.140625px;}
.h21{height:54.248906px;}
.he{height:63.344531px;}
.h28{height:63.452813px;}
.ha{height:71.613281px;}
.h17{height:72.007031px;}
.h27{height:72.115313px;}
.h11{height:81.000000px;}
.h13{height:81.108000px;}
.h5{height:81.210938px;}
.h4{height:81.319219px;}
.h1d{height:90.180000px;}
.h1b{height:90.288000px;}
.h1{height:90.414844px;}
.hb{height:90.523125px;}
.h9{height:107.419922px;}
.h1c{height:108.000000px;}
.h2{height:108.281250px;}
.h3{height:108.389531px;}
.hd{height:110.730937px;}
.hf{height:110.839219px;}
.hc{height:111.020625px;}
.h1a{height:115.207031px;}
.h10{height:126.255938px;}
.h12{height:137.109375px;}
.h26{height:144.555469px;}
.h23{height:151.380000px;}
.h19{height:179.711434px;}
.h16{height:201.780000px;}
.h1f{height:308.880000px;}
.h22{height:323.460000px;}
.h25{height:323.640000px;}
.h24{height:429.480000px;}
.h20{height:442.980000px;}
.h18{height:527.940000px;}
.h0{height:810.000000px;}
.w6{width:178.200000px;}
.w5{width:178.380000px;}
.w2{width:245.700000px;}
.w3{width:344.880000px;}
.w4{width:906.480000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x3f{left:8.355000px;}
.x2d{left:11.010000px;}
.x30{left:20.370000px;}
.x51{left:33.695979px;}
.x23{left:52.919979px;}
.xb{left:58.499979px;}
.xc{left:64.151979px;}
.x52{left:66.851979px;}
.x22{left:68.399979px;}
.xe{left:76.679979px;}
.x1{left:84.419979px;}
.x5b{left:86.219979px;}
.x4d{left:88.343979px;}
.x18{left:90.719979px;}
.x2{left:92.951979px;}
.xd{left:104.651979px;}
.x5{left:114.695979px;}
.x33{left:117.359979px;}
.xf{left:130.535979px;}
.x17{left:140.723979px;}
.x4e{left:142.163979px;}
.x34{left:144.575979px;}
.x10{left:157.529979px;}
.x4f{left:169.169979px;}
.x35{left:182.129979px;}
.x3c{left:210.419979px;}
.x31{left:256.469979px;}
.x2f{left:262.800000px;}
.x27{left:421.949979px;}
.x5c{left:520.889979px;}
.x4{left:524.909979px;}
.x58{left:529.169979px;}
.x56{left:532.589979px;}
.x59{left:534.389979px;}
.x5d{left:537.269979px;}
.x53{left:553.109979px;}
.x54{left:554.189979px;}
.x55{left:568.769979px;}
.x3{left:618.764979px;}
.x57{left:632.669979px;}
.x5a{left:664.169979px;}
.x32{left:667.154979px;}
.x3e{left:737.640000px;}
.x24{left:743.969979px;}
.x3d{left:753.554979px;}
.x28{left:765.794979px;}
.x4c{left:772.124979px;}
.x26{left:777.854979px;}
.x29{left:781.409979px;}
.x40{left:785.624979px;}
.x2c{left:788.040000px;}
.x6{left:790.229979px;}
.x25{left:798.014979px;}
.x7{left:817.229979px;}
.x50{left:854.714979px;}
.x11{left:856.544979px;}
.x12{left:862.169979px;}
.x8{left:878.729979px;}
.x4b{left:884.444979px;}
.x36{left:888.554979px;}
.x42{left:915.840000px;}
.x47{left:929.129979px;}
.x41{left:931.649979px;}
.x4a{left:997.889979px;}
.x21{left:1026.899979px;}
.x2e{left:1033.560000px;}
.x60{left:1035.329979px;}
.x16{left:1042.889979px;}
.x13{left:1045.724979px;}
.x9{left:1075.469979px;}
.x5f{left:1100.879979px;}
.x44{left:1110.989979px;}
.x49{left:1125.029979px;}
.x43{left:1127.189979px;}
.x48{left:1130.789979px;}
.x39{left:1132.994979px;}
.x14{left:1146.344979px;}
.x15{left:1147.469979px;}
.x3a{left:1165.034979px;}
.x38{left:1170.614979px;}
.x3b{left:1184.474979px;}
.x5e{left:1199.774979px;}
.x37{left:1206.614979px;}
.x45{left:1260.464979px;}
.x1b{left:1263.134979px;}
.x1a{left:1267.994979px;}
.x46{left:1274.909979px;}
.x19{left:1285.274979px;}
.x1e{left:1292.654979px;}
.x1d{left:1295.894979px;}
.x2a{left:1311.224979px;}
.x1f{left:1314.434979px;}
.x2b{left:1315.649979px;}
.x1c{left:1332.974979px;}
.x20{left:1335.674979px;}
.xa{left:1408.349979px;}
@media print{
.v6{vertical-align:-56.064000pt;}
.v4{vertical-align:-38.400000pt;}
.v7{vertical-align:-9.088000pt;}
.v5{vertical-align:-6.293333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.240000pt;}
.v3{vertical-align:38.400000pt;}
.v1{vertical-align:50.560000pt;}
.lsa{letter-spacing:-1.573333pt;}
.ls20{letter-spacing:-1.536000pt;}
.ls37{letter-spacing:-1.445333pt;}
.ls29{letter-spacing:-1.280000pt;}
.ls39{letter-spacing:-0.901333pt;}
.ls13{letter-spacing:-0.896000pt;}
.ls17{letter-spacing:-0.768000pt;}
.ls32{letter-spacing:-0.326933pt;}
.lsb{letter-spacing:-0.291200pt;}
.ls34{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.252800pt;}
.ls33{letter-spacing:-0.198933pt;}
.lsc{letter-spacing:-0.169067pt;}
.ls16{letter-spacing:-0.134933pt;}
.ls31{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.071467pt;}
.ls2e{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:-0.034560pt;}
.ls38{letter-spacing:-0.032000pt;}
.ls19{letter-spacing:-0.000005pt;}
.ls0{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000005pt;}
.ls1f{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.057067pt;}
.ls30{letter-spacing:0.072000pt;}
.ls36{letter-spacing:0.073600pt;}
.ls1{letter-spacing:0.128000pt;}
.ls3a{letter-spacing:0.130667pt;}
.ls2f{letter-spacing:0.192000pt;}
.ls23{letter-spacing:0.253333pt;}
.ls3{letter-spacing:0.288000pt;}
.ls12{letter-spacing:0.290667pt;}
.ls5{letter-spacing:0.308267pt;}
.ls14{letter-spacing:1.280000pt;}
.ls1a{letter-spacing:3.034240pt;}
.ls2d{letter-spacing:9.152000pt;}
.ls22{letter-spacing:24.975872pt;}
.ls21{letter-spacing:25.089920pt;}
.ls9{letter-spacing:25.636395pt;}
.ls8{letter-spacing:25.706667pt;}
.ls24{letter-spacing:25.728000pt;}
.ls11{letter-spacing:25.785728pt;}
.ls10{letter-spacing:25.856000pt;}
.ls4{letter-spacing:28.760960pt;}
.ls1e{letter-spacing:34.784000pt;}
.ls1d{letter-spacing:34.912000pt;}
.ls27{letter-spacing:37.252608pt;}
.lse{letter-spacing:37.322880pt;}
.ls35{letter-spacing:37.344213pt;}
.ls2c{letter-spacing:43.225728pt;}
.ls2b{letter-spacing:43.296000pt;}
.ls15{letter-spacing:53.666987pt;}
.ls28{letter-spacing:58.547200pt;}
.ls26{letter-spacing:58.592000pt;}
.ls2a{letter-spacing:62.400000pt;}
.ls1c{letter-spacing:71.470336pt;}
.ls1b{letter-spacing:71.528960pt;}
.ls6{letter-spacing:94.990336pt;}
.ls7{letter-spacing:95.048960pt;}
.ws23{word-spacing:-47.407360pt;}
.ws24{word-spacing:-47.333760pt;}
.wse{word-spacing:-41.632363pt;}
.wsf{word-spacing:-36.736000pt;}
.ws2{word-spacing:-35.548523pt;}
.ws1{word-spacing:-35.491456pt;}
.ws4{word-spacing:-35.456000pt;}
.ws16{word-spacing:-34.176000pt;}
.ws14{word-spacing:-29.641216pt;}
.wsc{word-spacing:-29.605760pt;}
.wsd{word-spacing:-29.352960pt;}
.ws10{word-spacing:-28.160000pt;}
.ws12{word-spacing:-26.915840pt;}
.ws13{word-spacing:-26.879995pt;}
.ws11{word-spacing:-26.844373pt;}
.wsa{word-spacing:-26.627456pt;}
.ws7{word-spacing:-26.592000pt;}
.ws15{word-spacing:-23.831573pt;}
.ws25{word-spacing:-20.777216pt;}
.wsb{word-spacing:-20.741760pt;}
.ws26{word-spacing:-20.709760pt;}
.ws18{word-spacing:-17.763456pt;}
.ws17{word-spacing:-17.728000pt;}
.ws1c{word-spacing:-17.472000pt;}
.ws1a{word-spacing:-17.436523pt;}
.ws27{word-spacing:-16.440427pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:37.536000pt;}
.ws9{word-spacing:100.946261pt;}
.ws6{word-spacing:101.045333pt;}
.ws5{word-spacing:104.480000pt;}
.ws21{word-spacing:272.874667pt;}
.ws1d{word-spacing:290.634667pt;}
.ws20{word-spacing:290.794667pt;}
.ws22{word-spacing:290.830208pt;}
.ws1f{word-spacing:293.482667pt;}
.ws1e{word-spacing:308.554667pt;}
.ws1b{word-spacing:308.590208pt;}
.ws19{word-spacing:311.242667pt;}
.ws8{word-spacing:464.036864pt;}
._9{margin-left:-1322.923520pt;}
._b{margin-left:-6.634240pt;}
._a{margin-left:-5.120000pt;}
._f{margin-left:-4.202240pt;}
._5{margin-left:-3.066880pt;}
._2{margin-left:-1.998080pt;}
._0{margin-left:-0.961920pt;}
._1{width:1.112960pt;}
._3{width:2.015360pt;}
._6{width:2.940160pt;}
._4{width:4.079232pt;}
._c{width:15.745024pt;}
._8{width:27.024427pt;}
._7{width:59.456000pt;}
._e{width:206.359253pt;}
._d{width:1054.563413pt;}
._10{width:2061.269333pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:48.128000pt;}
.fsf{font-size:53.120000pt;}
.fse{font-size:53.248000pt;}
.fs6{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fsc{font-size:64.128000pt;}
.fsb{font-size:74.880000pt;}
.fs13{font-size:75.008000pt;}
.fs3{font-size:85.120000pt;}
.fs12{font-size:85.248000pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:96.128000pt;}
.fs0{font-size:106.880000pt;}
.fsa{font-size:107.008000pt;}
.fs1{font-size:128.000000pt;}
.fs2{font-size:128.128000pt;}
.fsd{font-size:149.248000pt;}
.fs11{font-size:170.880000pt;}
.fs10{font-size:212.991329pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:5.280000pt;}
.y7c{bottom:8.933333pt;}
.yfb{bottom:9.088000pt;}
.y1e{bottom:12.480000pt;}
.ydd{bottom:20.960000pt;}
.y9{bottom:25.536000pt;}
.yfa{bottom:26.688000pt;}
.yed{bottom:31.776000pt;}
.yce{bottom:37.600000pt;}
.yca{bottom:61.733333pt;}
.y1b{bottom:72.832000pt;}
.yeb{bottom:81.024000pt;}
.y7a{bottom:81.600000pt;}
.yb3{bottom:83.392000pt;}
.yd7{bottom:84.640000pt;}
.y51{bottom:84.768000pt;}
.y8{bottom:87.584000pt;}
.y8e{bottom:90.624000pt;}
.y3d{bottom:91.584000pt;}
.y6e{bottom:92.512000pt;}
.y9b{bottom:94.528000pt;}
.ya4{bottom:94.656000pt;}
.y12{bottom:95.488000pt;}
.y28{bottom:96.512000pt;}
.y1a{bottom:103.264000pt;}
.y9e{bottom:108.704000pt;}
.y32{bottom:110.528000pt;}
.y71{bottom:117.056000pt;}
.y19{bottom:117.664000pt;}
.y7{bottom:119.264000pt;}
.yb2{bottom:119.808000pt;}
.y9d{bottom:121.440000pt;}
.yb6{bottom:121.853333pt;}
.ya3{bottom:127.104000pt;}
.yde{bottom:127.226667pt;}
.yc4{bottom:127.266667pt;}
.yd8{bottom:127.293333pt;}
.y7b{bottom:127.360000pt;}
.y6d{bottom:129.344000pt;}
.y18{bottom:132.064000pt;}
.y70{bottom:133.056000pt;}
.yea{bottom:133.088000pt;}
.y27{bottom:134.946667pt;}
.y11{bottom:137.733333pt;}
.ye1{bottom:137.920000pt;}
.y6f{bottom:149.093333pt;}
.y76{bottom:150.266667pt;}
.y38{bottom:150.880000pt;}
.y6{bottom:150.973333pt;}
.y50{bottom:151.013333pt;}
.yb1{bottom:151.493333pt;}
.y9c{bottom:155.013333pt;}
.y37{bottom:157.440000pt;}
.ya2{bottom:159.106667pt;}
.ye0{bottom:159.173333pt;}
.y17{bottom:162.466667pt;}
.y6c{bottom:166.146667pt;}
.yd2{bottom:167.613333pt;}
.y8d{bottom:168.733333pt;}
.y31{bottom:168.773333pt;}
.ybe{bottom:172.666667pt;}
.y26{bottom:173.346667pt;}
.y3a{bottom:175.840000pt;}
.y16{bottom:176.866667pt;}
.y10{bottom:180.000000pt;}
.ydf{bottom:180.413333pt;}
.y9a{bottom:180.960000pt;}
.yb0{bottom:183.173333pt;}
.ye9{bottom:184.293333pt;}
.yd1{bottom:188.893333pt;}
.ya1{bottom:191.106667pt;}
.y75{bottom:192.506667pt;}
.ybd{bottom:192.706667pt;}
.y5{bottom:199.613333pt;}
.ydc{bottom:201.666667pt;}
.ycf{bottom:205.213333pt;}
.y15{bottom:207.266667pt;}
.ybc{bottom:210.626667pt;}
.y30{bottom:211.013333pt;}
.yd9{bottom:211.933333pt;}
.y46{bottom:216.666667pt;}
.y4f{bottom:217.280000pt;}
.y35{bottom:218.240000pt;}
.ye8{bottom:219.493333pt;}
.y14{bottom:221.693333pt;}
.ydb{bottom:222.946667pt;}
.ya0{bottom:223.106667pt;}
.y34{bottom:224.800000pt;}
.yd3{bottom:224.960000pt;}
.ybb{bottom:227.040000pt;}
.y25{bottom:227.746667pt;}
.ya5{bottom:233.826667pt;}
.y13{bottom:236.093333pt;}
.y6b{bottom:236.986667pt;}
.y39{bottom:237.760000pt;}
.y8c{bottom:238.813333pt;}
.yaf{bottom:238.880000pt;}
.y99{bottom:240.160000pt;}
.yd0{bottom:242.813333pt;}
.yda{bottom:244.186667pt;}
.y59{bottom:251.266667pt;}
.y45{bottom:255.066667pt;}
.y9f{bottom:255.133333pt;}
.y4{bottom:256.093333pt;}
.y4e{bottom:259.520000pt;}
.yf{bottom:264.480000pt;}
.yd6{bottom:265.440000pt;}
.y24{bottom:266.173333pt;}
.y2f{bottom:269.280000pt;}
.yae{bottom:270.560000pt;}
.ye7{bottom:270.720000pt;}
.y36{bottom:274.013333pt;}
.y98{bottom:275.360000pt;}
.y6a{bottom:275.426667pt;}
.yc3{bottom:281.600000pt;}
.yd5{bottom:286.693333pt;}
.y58{bottom:288.706667pt;}
.yc9{bottom:290.240000pt;}
.y7f{bottom:301.506667pt;}
.y4d{bottom:301.760000pt;}
.y78{bottom:306.626667pt;}
.ye{bottom:306.746667pt;}
.yd4{bottom:307.933333pt;}
.y8b{bottom:308.933333pt;}
.yad{bottom:310.240000pt;}
.y44{bottom:317.506667pt;}
.yec{bottom:318.333333pt;}
.y97{bottom:318.586667pt;}
.y23{bottom:320.573333pt;}
.ye6{bottom:321.920000pt;}
.y57{bottom:326.146667pt;}
.ycd{bottom:330.720000pt;}
.yf5{bottom:336.573333pt;}
.y69{bottom:337.826667pt;}
.y7e{bottom:339.906667pt;}
.y2e{bottom:343.520000pt;}
.yd{bottom:348.986667pt;}
.yfc{bottom:349.186667pt;}
.ycc{bottom:353.466667pt;}
.y43{bottom:355.906667pt;}
.yf4{bottom:362.213333pt;}
.y56{bottom:363.613333pt;}
.y3c{bottom:364.293333pt;}
.y85{bottom:365.413333pt;}
.yac{bottom:365.946667pt;}
.y4c{bottom:368.026667pt;}
.y3b{bottom:370.853333pt;}
.ye5{bottom:373.146667pt;}
.ycb{bottom:374.720000pt;}
.y68{bottom:376.226667pt;}
.y96{bottom:377.786667pt;}
.y7d{bottom:378.306667pt;}
.y8a{bottom:379.013333pt;}
.y2d{bottom:385.786667pt;}
.yf3{bottom:387.813333pt;}
.y42{bottom:394.306667pt;}
.y1{bottom:395.266667pt;}
.yab{bottom:397.626667pt;}
.yc8{bottom:398.586667pt;}
.y5f{bottom:399.653333pt;}
.ybf{bottom:399.706667pt;}
.y55{bottom:401.053333pt;}
.yc5{bottom:408.866667pt;}
.y4b{bottom:410.266667pt;}
.yf2{bottom:413.413333pt;}
.y22{bottom:417.466667pt;}
.y84{bottom:419.840000pt;}
.y95{bottom:420.986667pt;}
.yc7{bottom:422.466667pt;}
.yb5{bottom:423.040000pt;}
.y33{bottom:430.173333pt;}
.ye4{bottom:432.346667pt;}
.yc{bottom:433.466667pt;}
.y77{bottom:433.853333pt;}
.y54{bottom:438.493333pt;}
.y67{bottom:438.653333pt;}
.yf1{bottom:439.013333pt;}
.yc6{bottom:443.706667pt;}
.y2c{bottom:444.026667pt;}
.y89{bottom:449.120000pt;}
.y4a{bottom:452.506667pt;}
.yaa{bottom:453.306667pt;}
.y21{bottom:455.866667pt;}
.y41{bottom:456.733333pt;}
.yf7{bottom:457.666667pt;}
.y5e{bottom:458.240000pt;}
.y94{bottom:464.226667pt;}
.yc2{bottom:464.960000pt;}
.y83{bottom:474.240000pt;}
.yb{bottom:475.746667pt;}
.y53{bottom:475.973333pt;}
.y66{bottom:477.053333pt;}
.yf6{bottom:480.093333pt;}
.yc0{bottom:486.240000pt;}
.yfd{bottom:486.946667pt;}
.yf0{bottom:488.640000pt;}
.ye3{bottom:491.546667pt;}
.ya9{bottom:493.026667pt;}
.y20{bottom:494.266667pt;}
.y88{bottom:495.200000pt;}
.y2b{bottom:502.266667pt;}
.yc1{bottom:507.493333pt;}
.y1c{bottom:508.933333pt;}
.y52{bottom:513.413333pt;}
.ya{bottom:517.986667pt;}
.y49{bottom:518.786667pt;}
.y40{bottom:519.133333pt;}
.y5d{bottom:519.680000pt;}
.y93{bottom:523.426667pt;}
.y3{bottom:523.520000pt;}
.y82{bottom:528.666667pt;}
.yf8{bottom:531.813333pt;}
.y1f{bottom:532.666667pt;}
.ya8{bottom:532.706667pt;}
.yba{bottom:537.920000pt;}
.yef{bottom:538.240000pt;}
.y65{bottom:539.453333pt;}
.y87{bottom:541.306667pt;}
.yff{bottom:543.293333pt;}
.yb7{bottom:544.893333pt;}
.y74{bottom:554.626667pt;}
.y62{bottom:556.253333pt;}
.yb9{bottom:557.920000pt;}
.y48{bottom:561.026667pt;}
.y5a{bottom:561.760000pt;}
.y5c{bottom:565.760000pt;}
.y92{bottom:566.626667pt;}
.yb4{bottom:570.973333pt;}
.ya7{bottom:572.386667pt;}
.y2{bottom:573.440000pt;}
.y2a{bottom:575.746667pt;}
.ye2{bottom:575.973333pt;}
.y64{bottom:577.893333pt;}
.yb8{bottom:577.920000pt;}
.y3f{bottom:581.573333pt;}
.yfe{bottom:581.693333pt;}
.y81{bottom:583.066667pt;}
.yf9{bottom:584.640000pt;}
.yee{bottom:587.840000pt;}
.y61{bottom:591.493333pt;}
.y73{bottom:596.866667pt;}
.y91{bottom:601.853333pt;}
.y86{bottom:611.386667pt;}
.y8f{bottom:613.533333pt;}
.y29{bottom:618.013333pt;}
.y1d{bottom:618.266667pt;}
.y3e{bottom:619.973333pt;}
.y63{bottom:624.293333pt;}
.y60{bottom:626.693333pt;}
.ya6{bottom:628.093333pt;}
.y47{bottom:629.053333pt;}
.y72{bottom:639.133333pt;}
.y90{bottom:645.053333pt;}
.y5b{bottom:648.986667pt;}
.y80{bottom:653.506667pt;}
.y100{bottom:658.146667pt;}
.h7{height:36.093750pt;}
.h8{height:36.190000pt;}
.h15{height:39.943750pt;}
.h14{height:40.040000pt;}
.h6{height:44.275000pt;}
.h1e{height:48.125000pt;}
.h21{height:48.221250pt;}
.he{height:56.306250pt;}
.h28{height:56.402500pt;}
.ha{height:63.656250pt;}
.h17{height:64.006250pt;}
.h27{height:64.102500pt;}
.h11{height:72.000000pt;}
.h13{height:72.096000pt;}
.h5{height:72.187500pt;}
.h4{height:72.283750pt;}
.h1d{height:80.160000pt;}
.h1b{height:80.256000pt;}
.h1{height:80.368750pt;}
.hb{height:80.465000pt;}
.h9{height:95.484375pt;}
.h1c{height:96.000000pt;}
.h2{height:96.250000pt;}
.h3{height:96.346250pt;}
.hd{height:98.427500pt;}
.hf{height:98.523750pt;}
.hc{height:98.685000pt;}
.h1a{height:102.406250pt;}
.h10{height:112.227500pt;}
.h12{height:121.875000pt;}
.h26{height:128.493750pt;}
.h23{height:134.560000pt;}
.h19{height:159.743497pt;}
.h16{height:179.360000pt;}
.h1f{height:274.560000pt;}
.h22{height:287.520000pt;}
.h25{height:287.680000pt;}
.h24{height:381.760000pt;}
.h20{height:393.760000pt;}
.h18{height:469.280000pt;}
.h0{height:720.000000pt;}
.w6{width:158.400000pt;}
.w5{width:158.560000pt;}
.w2{width:218.400000pt;}
.w3{width:306.560000pt;}
.w4{width:805.760000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:7.426667pt;}
.x2d{left:9.786667pt;}
.x30{left:18.106667pt;}
.x51{left:29.951981pt;}
.x23{left:47.039981pt;}
.xb{left:51.999981pt;}
.xc{left:57.023981pt;}
.x52{left:59.423981pt;}
.x22{left:60.799981pt;}
.xe{left:68.159981pt;}
.x1{left:75.039981pt;}
.x5b{left:76.639981pt;}
.x4d{left:78.527981pt;}
.x18{left:80.639981pt;}
.x2{left:82.623981pt;}
.xd{left:93.023981pt;}
.x5{left:101.951981pt;}
.x33{left:104.319981pt;}
.xf{left:116.031981pt;}
.x17{left:125.087981pt;}
.x4e{left:126.367981pt;}
.x34{left:128.511981pt;}
.x10{left:140.026648pt;}
.x4f{left:150.373314pt;}
.x35{left:161.893314pt;}
.x3c{left:187.039981pt;}
.x31{left:227.973314pt;}
.x2f{left:233.600000pt;}
.x27{left:375.066648pt;}
.x5c{left:463.013314pt;}
.x4{left:466.586648pt;}
.x58{left:470.373314pt;}
.x56{left:473.413314pt;}
.x59{left:475.013314pt;}
.x5d{left:477.573314pt;}
.x53{left:491.653314pt;}
.x54{left:492.613314pt;}
.x55{left:505.573314pt;}
.x3{left:550.013314pt;}
.x57{left:562.373314pt;}
.x5a{left:590.373314pt;}
.x32{left:593.026648pt;}
.x3e{left:655.680000pt;}
.x24{left:661.306648pt;}
.x3d{left:669.826648pt;}
.x28{left:680.706648pt;}
.x4c{left:686.333314pt;}
.x26{left:691.426648pt;}
.x29{left:694.586648pt;}
.x40{left:698.333314pt;}
.x2c{left:700.480000pt;}
.x6{left:702.426648pt;}
.x25{left:709.346648pt;}
.x7{left:726.426648pt;}
.x50{left:759.746648pt;}
.x11{left:761.373314pt;}
.x12{left:766.373314pt;}
.x8{left:781.093314pt;}
.x4b{left:786.173314pt;}
.x36{left:789.826648pt;}
.x42{left:814.080000pt;}
.x47{left:825.893314pt;}
.x41{left:828.133314pt;}
.x4a{left:887.013314pt;}
.x21{left:912.799981pt;}
.x2e{left:918.720000pt;}
.x60{left:920.293314pt;}
.x16{left:927.013314pt;}
.x13{left:929.533314pt;}
.x9{left:955.973314pt;}
.x5f{left:978.559981pt;}
.x44{left:987.546648pt;}
.x49{left:1000.026648pt;}
.x43{left:1001.946648pt;}
.x48{left:1005.146648pt;}
.x39{left:1007.106648pt;}
.x14{left:1018.973314pt;}
.x15{left:1019.973314pt;}
.x3a{left:1035.586648pt;}
.x38{left:1040.546648pt;}
.x3b{left:1052.866648pt;}
.x5e{left:1066.466648pt;}
.x37{left:1072.546648pt;}
.x45{left:1120.413314pt;}
.x1b{left:1122.786648pt;}
.x1a{left:1127.106648pt;}
.x46{left:1133.253314pt;}
.x19{left:1142.466648pt;}
.x1e{left:1149.026648pt;}
.x1d{left:1151.906648pt;}
.x2a{left:1165.533314pt;}
.x1f{left:1168.386648pt;}
.x2b{left:1169.466648pt;}
.x1c{left:1184.866648pt;}
.x20{left:1187.266648pt;}
.xa{left:1251.866648pt;}
}




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