
    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_7d7eea78c41ad818567ab6d5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.689453;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_30d868296ca3827eb91d54ec.woff')format("woff");}.ff2{font-family:ff2;line-height:0.826172;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_b6eddcaaffb2903db6d3a316.woff')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_81634197dda113c9847d52fd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.819824;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_d6f99312b7d05de7a105374c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.900391;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_6bb5911024585a9b6ab7303e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_2f52b52f523bf30e4f5b453e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.893066;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls17{letter-spacing:-0.776880px;}
.ls22{letter-spacing:-0.530640px;}
.ls1e{letter-spacing:-0.478080px;}
.ls1f{letter-spacing:-0.418320px;}
.ls16{letter-spacing:-0.358560px;}
.ls20{letter-spacing:-0.337680px;}
.lsd{letter-spacing:-0.298800px;}
.ls24{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.239040px;}
.ls15{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.119520px;}
.lse{letter-spacing:-0.059760px;}
.lsf{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.035856px;}
.ls1b{letter-spacing:0.047808px;}
.ls3{letter-spacing:0.059760px;}
.ls23{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.101592px;}
.ls13{letter-spacing:0.119520px;}
.ls19{letter-spacing:0.131472px;}
.ls2a{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.155376px;}
.ls9{letter-spacing:0.179280px;}
.lsc{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.191232px;}
.ls4{letter-spacing:0.191520px;}
.ls21{letter-spacing:0.192960px;}
.lsa{letter-spacing:0.239040px;}
.ls26{letter-spacing:0.250992px;}
.lsb{letter-spacing:0.259920px;}
.ls29{letter-spacing:0.268920px;}
.ls25{letter-spacing:0.274896px;}
.ls27{letter-spacing:0.280872px;}
.ls28{letter-spacing:0.286848px;}
.ls1d{letter-spacing:0.292824px;}
.ls10{letter-spacing:0.298800px;}
.ls1a{letter-spacing:0.310752px;}
.ls12{letter-spacing:0.336960px;}
.ls2{letter-spacing:0.358560px;}
.ls5{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.383040px;}
.ls6{letter-spacing:21.573360px;}
.ls1{letter-spacing:1191.076560px;}
.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;}
}
.ws2c{word-spacing:-18.144000px;}
.ws2a{word-spacing:-18.072000px;}
.wsb{word-spacing:-17.784000px;}
.ws6{word-spacing:-15.298560px;}
.ws5{word-spacing:-15.179040px;}
.ws9{word-spacing:-15.059520px;}
.ws4{word-spacing:-14.999760px;}
.ws3{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.880240px;}
.wse{word-spacing:-14.820480px;}
.ws8{word-spacing:-14.700960px;}
.wsc{word-spacing:-14.581440px;}
.ws1f{word-spacing:-14.521680px;}
.ws1e{word-spacing:-14.461920px;}
.wsd{word-spacing:-14.163120px;}
.ws1{word-spacing:-13.505760px;}
.ws2{word-spacing:-13.446000px;}
.ws0{word-spacing:-13.206960px;}
.ws25{word-spacing:-11.722320px;}
.wsa{word-spacing:-9.720000px;}
.ws20{word-spacing:-0.896400px;}
.ws27{word-spacing:-0.723600px;}
.ws22{word-spacing:-0.657360px;}
.ws1a{word-spacing:-0.505440px;}
.ws26{word-spacing:-0.478080px;}
.ws19{word-spacing:-0.383040px;}
.ws16{word-spacing:-0.358560px;}
.ws1c{word-spacing:-0.298800px;}
.ws13{word-spacing:-0.239040px;}
.ws28{word-spacing:-0.192960px;}
.ws18{word-spacing:-0.191520px;}
.wsf{word-spacing:-0.179280px;}
.ws15{word-spacing:-0.119520px;}
.ws11{word-spacing:-0.059760px;}
.ws10{word-spacing:0.000000px;}
.ws12{word-spacing:0.059760px;}
.ws24{word-spacing:0.119520px;}
.ws14{word-spacing:0.239040px;}
.ws2b{word-spacing:0.288000px;}
.ws21{word-spacing:0.298800px;}
.ws1d{word-spacing:0.358560px;}
.ws1b{word-spacing:0.418320px;}
.ws29{word-spacing:0.530640px;}
.ws17{word-spacing:0.574560px;}
.ws23{word-spacing:0.956160px;}
._0{margin-left:-1.225080px;}
._1{width:1.069704px;}
._3{width:448.379280px;}
._2{width:1185.996960px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y38{bottom:3.240000px;}
.y39{bottom:6.840000px;}
.y37{bottom:20.520000px;}
.y36{bottom:37.800000px;}
.y3{bottom:56.340000px;}
.y3a{bottom:109.620000px;}
.y131{bottom:116.021520px;}
.y147{bottom:119.154420px;}
.yd1{bottom:120.014280px;}
.y35{bottom:123.480000px;}
.y17f{bottom:124.548120px;}
.yfd{bottom:125.198460px;}
.yad{bottom:126.587160px;}
.y130{bottom:133.307100px;}
.y146{bottom:136.440000px;}
.yd0{bottom:137.299860px;}
.y76{bottom:140.452200px;}
.y17e{bottom:141.654420px;}
.yfc{bottom:142.304760px;}
.yac{bottom:143.872740px;}
.y132{bottom:147.960000px;}
.y12f{bottom:150.413400px;}
.y145{bottom:154.440000px;}
.ycf{bottom:154.585440px;}
.y75{bottom:157.558500px;}
.y17d{bottom:158.940000px;}
.yfb{bottom:159.590340px;}
.y136{bottom:160.027020px;}
.yab{bottom:161.158320px;}
.yce{bottom:171.871020px;}
.y74{bottom:174.844080px;}
.yfa{bottom:176.875920px;}
.y17c{bottom:176.940000px;}
.yaa{bottom:178.443900px;}
.y34{bottom:178.554420px;}
.y12e{bottom:179.755560px;}
.ycd{bottom:189.156600px;}
.yff{bottom:191.340000px;}
.y73{bottom:192.129660px;}
.ya9{bottom:195.550200px;}
.y33{bottom:195.840000px;}
.y12d{bottom:197.041140px;}
.yf9{bottom:206.038800px;}
.ycc{bottom:206.442180px;}
.y72{bottom:209.415240px;}
.ya8{bottom:212.835780px;}
.y32{bottom:213.120000px;}
.y12c{bottom:214.326720px;}
.y17b{bottom:214.635960px;}
.yf8{bottom:223.324380px;}
.ycb{bottom:223.548480px;}
.y71{bottom:226.700820px;}
.ya7{bottom:230.121360px;}
.y12b{bottom:231.433020px;}
.y17a{bottom:231.921540px;}
.y31{bottom:235.073700px;}
.yf7{bottom:240.609960px;}
.yca{bottom:240.834060px;}
.y70{bottom:243.807120px;}
.y3d{bottom:244.428840px;}
.y12a{bottom:248.718600px;}
.y179{bottom:249.207120px;}
.y30{bottom:252.180000px;}
.yf6{bottom:257.895540px;}
.yc9{bottom:258.119640px;}
.ya6{bottom:259.284240px;}
.y6f{bottom:261.092700px;}
.y3c{bottom:261.714420px;}
.y129{bottom:266.004180px;}
.y178{bottom:266.313420px;}
.y2f{bottom:270.360000px;}
.yf5{bottom:275.181120px;}
.yc8{bottom:275.405220px;}
.ya5{bottom:276.569820px;}
.y6e{bottom:278.378280px;}
.y3b{bottom:279.000000px;}
.y128{bottom:283.289760px;}
.y177{bottom:283.599000px;}
.yf4{bottom:292.466700px;}
.yc7{bottom:292.690800px;}
.ya4{bottom:293.855400px;}
.y6d{bottom:295.663860px;}
.y127{bottom:300.575340px;}
.y176{bottom:300.884580px;}
.y2e{bottom:301.500000px;}
.yf3{bottom:309.752280px;}
.yc6{bottom:309.976380px;}
.ya3{bottom:311.140980px;}
.y6c{bottom:312.949440px;}
.y126{bottom:317.681640px;}
.y175{bottom:318.170160px;}
.y2d{bottom:325.440000px;}
.yc5{bottom:327.082680px;}
.y6b{bottom:330.235020px;}
.y125{bottom:334.967220px;}
.yf2{bottom:338.915160px;}
.ya2{bottom:340.303860px;}
.yc4{bottom:344.368260px;}
.y2c{bottom:344.880000px;}
.y174{bottom:347.333040px;}
.y144{bottom:347.341320px;}
.y124{bottom:352.252800px;}
.yf1{bottom:356.200740px;}
.ya1{bottom:357.589440px;}
.y6a{bottom:359.397900px;}
.yc3{bottom:361.653840px;}
.y2b{bottom:362.160000px;}
.y173{bottom:364.618620px;}
.y143{bottom:364.626900px;}
.y123{bottom:369.538380px;}
.yf0{bottom:373.486320px;}
.ya0{bottom:374.875020px;}
.y69{bottom:376.683480px;}
.yc2{bottom:378.939420px;}
.y2a{bottom:379.440000px;}
.y172{bottom:381.904200px;}
.y142{bottom:381.912480px;}
.y122{bottom:386.823960px;}
.yef{bottom:390.771900px;}
.y9f{bottom:392.160600px;}
.y68{bottom:393.969060px;}
.y29{bottom:396.720000px;}
.y171{bottom:399.189780px;}
.y121{bottom:404.109540px;}
.yee{bottom:407.878200px;}
.yc1{bottom:408.102300px;}
.y9e{bottom:409.446180px;}
.y141{bottom:411.075360px;}
.y67{bottom:411.254640px;}
.y28{bottom:414.000000px;}
.y170{bottom:416.475360px;}
.y120{bottom:421.215840px;}
.yed{bottom:425.163780px;}
.yc0{bottom:425.387880px;}
.y9d{bottom:426.731760px;}
.y66{bottom:428.360940px;}
.y27{bottom:431.280000px;}
.y16f{bottom:433.760940px;}
.yec{bottom:442.449360px;}
.ybf{bottom:442.673460px;}
.y9c{bottom:443.838060px;}
.y65{bottom:445.646520px;}
.y26{bottom:448.380000px;}
.y11f{bottom:450.558000px;}
.y16e{bottom:450.867240px;}
.y135{bottom:455.585040px;}
.yeb{bottom:459.734940px;}
.ybe{bottom:459.959040px;}
.y9b{bottom:461.123640px;}
.y64{bottom:462.932100px;}
.y25{bottom:465.660000px;}
.y11e{bottom:467.843580px;}
.y16d{bottom:468.152820px;}
.yea{bottom:477.020520px;}
.ybd{bottom:477.244620px;}
.y9a{bottom:478.409220px;}
.y63{bottom:480.217680px;}
.y1a5{bottom:481.337280px;}
.y24{bottom:482.940000px;}
.y11d{bottom:485.129160px;}
.y16c{bottom:485.438400px;}
.ye9{bottom:494.126820px;}
.y62{bottom:497.503260px;}
.y23{bottom:500.220000px;}
.y11c{bottom:502.235460px;}
.y16b{bottom:502.723980px;}
.ybc{bottom:506.407500px;}
.y99{bottom:507.572100px;}
.y1a4{bottom:510.500160px;}
.ye8{bottom:511.412400px;}
.y61{bottom:514.788840px;}
.y22{bottom:517.500000px;}
.y11b{bottom:519.521040px;}
.y16a{bottom:520.009560px;}
.ybb{bottom:523.693080px;}
.y98{bottom:524.857680px;}
.y1a3{bottom:527.785740px;}
.ye7{bottom:528.697980px;}
.y60{bottom:531.895140px;}
.y21{bottom:534.780000px;}
.y11a{bottom:536.806620px;}
.y169{bottom:537.295140px;}
.yba{bottom:540.978660px;}
.y97{bottom:542.143260px;}
.y1a2{bottom:545.071320px;}
.ye6{bottom:545.983560px;}
.y5f{bottom:549.180720px;}
.y20{bottom:551.880000px;}
.y119{bottom:554.092200px;}
.y168{bottom:554.401440px;}
.yb9{bottom:558.264240px;}
.y96{bottom:559.428840px;}
.y1a1{bottom:562.356900px;}
.y5e{bottom:566.466300px;}
.y1f{bottom:569.160000px;}
.y118{bottom:571.377780px;}
.ye5{bottom:575.146440px;}
.yb8{bottom:575.370540px;}
.y95{bottom:576.714420px;}
.y1a0{bottom:579.642480px;}
.y167{bottom:583.743600px;}
.y5d{bottom:583.751880px;}
.y117{bottom:588.663360px;}
.ye4{bottom:592.432020px;}
.yb7{bottom:592.656120px;}
.y94{bottom:594.000000px;}
.y19f{bottom:596.748780px;}
.y1e{bottom:598.320000px;}
.y166{bottom:601.029180px;}
.y5c{bottom:601.037460px;}
.y116{bottom:605.769660px;}
.ye3{bottom:609.717600px;}
.yb6{bottom:609.941700px;}
.y19e{bottom:614.034360px;}
.y93{bottom:614.880000px;}
.y165{bottom:618.135480px;}
.y5b{bottom:618.143760px;}
.y115{bottom:623.055240px;}
.ye2{bottom:627.003180px;}
.yb5{bottom:627.227280px;}
.y1d{bottom:629.814420px;}
.y19d{bottom:631.319940px;}
.y164{bottom:635.421060px;}
.y5a{bottom:635.429340px;}
.y114{bottom:640.340820px;}
.ye1{bottom:644.288760px;}
.yb4{bottom:644.512860px;}
.y1c{bottom:647.100000px;}
.y19c{bottom:648.605520px;}
.y92{bottom:652.401180px;}
.y59{bottom:652.714920px;}
.y113{bottom:657.626400px;}
.ye0{bottom:661.574340px;}
.yb3{bottom:661.798440px;}
.y163{bottom:664.763220px;}
.y140{bottom:664.771500px;}
.y19b{bottom:665.891100px;}
.y1b{bottom:666.720000px;}
.y91{bottom:669.686760px;}
.y112{bottom:674.911980px;}
.yb2{bottom:678.904740px;}
.y58{bottom:681.877800px;}
.y162{bottom:682.048800px;}
.y13f{bottom:682.057080px;}
.y19a{bottom:682.997400px;}
.y1a{bottom:684.000000px;}
.y90{bottom:686.972340px;}
.ydf{bottom:690.737220px;}
.y111{bottom:692.018280px;}
.yb1{bottom:696.190320px;}
.y161{bottom:699.155100px;}
.y57{bottom:699.163380px;}
.y199{bottom:700.282980px;}
.y19{bottom:701.100000px;}
.y8f{bottom:704.257920px;}
.yde{bottom:708.022800px;}
.y110{bottom:709.303860px;}
.yb0{bottom:713.475900px;}
.y160{bottom:716.440680px;}
.y56{bottom:716.448960px;}
.y198{bottom:717.568560px;}
.y18{bottom:718.380000px;}
.y8e{bottom:721.364220px;}
.ydd{bottom:725.308380px;}
.yaf{bottom:730.761480px;}
.y15f{bottom:733.726260px;}
.y55{bottom:733.734540px;}
.y197{bottom:734.854140px;}
.y17{bottom:735.660000px;}
.y10f{bottom:738.646020px;}
.y8d{bottom:738.649800px;}
.ydc{bottom:742.593960px;}
.y15e{bottom:751.011840px;}
.y54{bottom:751.020120px;}
.y196{bottom:752.139720px;}
.y16{bottom:752.940000px;}
.y10e{bottom:755.931600px;}
.y8c{bottom:755.935380px;}
.ydb{bottom:759.700260px;}
.yae{bottom:759.924360px;}
.y15d{bottom:768.297420px;}
.y53{bottom:768.305700px;}
.y195{bottom:769.425300px;}
.y15{bottom:770.220000px;}
.y10d{bottom:773.037900px;}
.y8b{bottom:773.220960px;}
.yfe{bottom:785.340000px;}
.y15c{bottom:785.583000px;}
.y52{bottom:785.591280px;}
.y194{bottom:786.531600px;}
.y14{bottom:787.500000px;}
.y10c{bottom:790.323480px;}
.y8a{bottom:790.506540px;}
.y100{bottom:797.400000px;}
.y134{bottom:800.460000px;}
.y15b{bottom:802.689300px;}
.y51{bottom:802.697580px;}
.y193{bottom:803.817180px;}
.y13{bottom:804.600000px;}
.y10b{bottom:807.609060px;}
.y89{bottom:807.792120px;}
.y15a{bottom:819.974880px;}
.y50{bottom:819.983160px;}
.y192{bottom:821.102760px;}
.y12{bottom:821.880000px;}
.y10a{bottom:824.894640px;}
.y88{bottom:824.898420px;}
.y159{bottom:837.260460px;}
.y4f{bottom:837.268740px;}
.y191{bottom:838.388340px;}
.y11{bottom:839.160000px;}
.y109{bottom:842.180220px;}
.y87{bottom:842.184000px;}
.y13e{bottom:849.325320px;}
.y158{bottom:854.546040px;}
.y4e{bottom:854.554320px;}
.y190{bottom:855.673920px;}
.y10{bottom:856.440000px;}
.y108{bottom:859.465800px;}
.y86{bottom:859.469580px;}
.y13d{bottom:866.610900px;}
.y4d{bottom:871.839900px;}
.y18f{bottom:872.959500px;}
.yf{bottom:873.720000px;}
.y107{bottom:876.572100px;}
.y157{bottom:883.708920px;}
.y13c{bottom:883.717200px;}
.y85{bottom:888.632460px;}
.y4c{bottom:889.125480px;}
.y18e{bottom:890.065800px;}
.ye{bottom:891.000000px;}
.y106{bottom:893.857680px;}
.y156{bottom:900.994500px;}
.y13b{bottom:901.002780px;}
.y84{bottom:905.918040px;}
.y4b{bottom:906.231780px;}
.y18d{bottom:907.351380px;}
.yd{bottom:908.100000px;}
.y105{bottom:911.143260px;}
.y155{bottom:918.280080px;}
.y13a{bottom:918.288360px;}
.y83{bottom:923.203620px;}
.y4a{bottom:923.517360px;}
.y18c{bottom:924.636960px;}
.yc{bottom:925.380000px;}
.y104{bottom:928.428840px;}
.y154{bottom:935.565660px;}
.y139{bottom:935.573940px;}
.y82{bottom:940.489200px;}
.y49{bottom:940.802940px;}
.y18b{bottom:941.922540px;}
.y103{bottom:945.714420px;}
.y153{bottom:952.851240px;}
.y138{bottom:952.859520px;}
.yb{bottom:954.540000px;}
.y81{bottom:957.774780px;}
.y18a{bottom:959.208120px;}
.y102{bottom:963.000000px;}
.y48{bottom:969.965820px;}
.y152{bottom:970.136820px;}
.y137{bottom:970.145100px;}
.ya{bottom:974.154420px;}
.y80{bottom:975.060360px;}
.y189{bottom:976.314420px;}
.y101{bottom:983.880000px;}
.y151{bottom:987.243120px;}
.y47{bottom:987.251400px;}
.y9{bottom:991.440000px;}
.y7f{bottom:992.166660px;}
.y188{bottom:993.600000px;}
.yda{bottom:1004.312880px;}
.y150{bottom:1004.528700px;}
.y46{bottom:1004.536980px;}
.y7e{bottom:1009.452240px;}
.y187{bottom:1011.600000px;}
.y8{bottom:1018.980000px;}
.yd9{bottom:1021.598460px;}
.y14f{bottom:1021.814280px;}
.y45{bottom:1021.822560px;}
.y7d{bottom:1026.737820px;}
.yd8{bottom:1038.884040px;}
.y14e{bottom:1039.099860px;}
.y44{bottom:1039.108140px;}
.y7c{bottom:1044.023400px;}
.y186{bottom:1049.551200px;}
.y7{bottom:1052.820000px;}
.yd7{bottom:1056.169620px;}
.y14d{bottom:1056.385440px;}
.y43{bottom:1056.393720px;}
.y7b{bottom:1061.308980px;}
.yd6{bottom:1073.275920px;}
.y14c{bottom:1073.491740px;}
.y42{bottom:1073.500020px;}
.y7a{bottom:1078.594560px;}
.y185{bottom:1078.714080px;}
.y181{bottom:1078.729020px;}
.y6{bottom:1080.360000px;}
.yd5{bottom:1090.561500px;}
.y14b{bottom:1090.777320px;}
.y41{bottom:1090.785600px;}
.y79{bottom:1095.700860px;}
.y180{bottom:1096.014600px;}
.yd4{bottom:1107.847080px;}
.y184{bottom:1108.056240px;}
.y14a{bottom:1108.062900px;}
.y40{bottom:1108.071180px;}
.y5{bottom:1108.080000px;}
.y78{bottom:1125.043020px;}
.yd3{bottom:1125.132660px;}
.y183{bottom:1125.341820px;}
.y149{bottom:1125.348480px;}
.y3f{bottom:1125.356760px;}
.y133{bottom:1125.720000px;}
.y77{bottom:1142.328600px;}
.yd2{bottom:1142.418240px;}
.y182{bottom:1142.627400px;}
.y148{bottom:1142.634060px;}
.y4{bottom:1142.642340px;}
.y2{bottom:1175.220000px;}
.y1{bottom:1195.560000px;}
.y3e{bottom:1195.740000px;}
.h6{height:31.555898px;}
.ha{height:40.472227px;}
.h2{height:40.909922px;}
.hc{height:42.327773px;}
.h7{height:49.289062px;}
.h9{height:51.840000px;}
.h3{height:52.435898px;}
.h8{height:52.458218px;}
.h4{height:65.554453px;}
.h5{height:77.621836px;}
.hb{height:202.500000px;}
.hd{height:1002.600000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:114.298500px;}
.w5{width:312.301500px;}
.w2{width:531.541500px;}
.w4{width:608.220000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:10.800000px;}
.x5{left:110.160000px;}
.x9{left:124.020000px;}
.x1{left:127.620000px;}
.xc{left:138.960000px;}
.x2{left:154.620000px;}
.x3{left:343.620000px;}
.x7{left:424.620000px;}
.x8{left:427.680000px;}
.xe{left:429.660900px;}
.xd{left:433.620000px;}
.x6{left:473.040000px;}
.x4{left:659.160000px;}
.xb{left:721.980000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls17{letter-spacing:-0.690560pt;}
.ls22{letter-spacing:-0.471680pt;}
.ls1e{letter-spacing:-0.424960pt;}
.ls1f{letter-spacing:-0.371840pt;}
.ls16{letter-spacing:-0.318720pt;}
.ls20{letter-spacing:-0.300160pt;}
.lsd{letter-spacing:-0.265600pt;}
.ls24{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.212480pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.106240pt;}
.lse{letter-spacing:-0.053120pt;}
.lsf{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.031872pt;}
.ls1b{letter-spacing:0.042496pt;}
.ls3{letter-spacing:0.053120pt;}
.ls23{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.090304pt;}
.ls13{letter-spacing:0.106240pt;}
.ls19{letter-spacing:0.116864pt;}
.ls2a{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.138112pt;}
.ls9{letter-spacing:0.159360pt;}
.lsc{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.169984pt;}
.ls4{letter-spacing:0.170240pt;}
.ls21{letter-spacing:0.171520pt;}
.lsa{letter-spacing:0.212480pt;}
.ls26{letter-spacing:0.223104pt;}
.lsb{letter-spacing:0.231040pt;}
.ls29{letter-spacing:0.239040pt;}
.ls25{letter-spacing:0.244352pt;}
.ls27{letter-spacing:0.249664pt;}
.ls28{letter-spacing:0.254976pt;}
.ls1d{letter-spacing:0.260288pt;}
.ls10{letter-spacing:0.265600pt;}
.ls1a{letter-spacing:0.276224pt;}
.ls12{letter-spacing:0.299520pt;}
.ls2{letter-spacing:0.318720pt;}
.ls5{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.340480pt;}
.ls6{letter-spacing:19.176320pt;}
.ls1{letter-spacing:1058.734720pt;}
.ws2c{word-spacing:-16.128000pt;}
.ws2a{word-spacing:-16.064000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws6{word-spacing:-13.598720pt;}
.ws5{word-spacing:-13.492480pt;}
.ws9{word-spacing:-13.386240pt;}
.ws4{word-spacing:-13.333120pt;}
.ws3{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.226880pt;}
.wse{word-spacing:-13.173760pt;}
.ws8{word-spacing:-13.067520pt;}
.wsc{word-spacing:-12.961280pt;}
.ws1f{word-spacing:-12.908160pt;}
.ws1e{word-spacing:-12.855040pt;}
.wsd{word-spacing:-12.589440pt;}
.ws1{word-spacing:-12.005120pt;}
.ws2{word-spacing:-11.952000pt;}
.ws0{word-spacing:-11.739520pt;}
.ws25{word-spacing:-10.419840pt;}
.wsa{word-spacing:-8.640000pt;}
.ws20{word-spacing:-0.796800pt;}
.ws27{word-spacing:-0.643200pt;}
.ws22{word-spacing:-0.584320pt;}
.ws1a{word-spacing:-0.449280pt;}
.ws26{word-spacing:-0.424960pt;}
.ws19{word-spacing:-0.340480pt;}
.ws16{word-spacing:-0.318720pt;}
.ws1c{word-spacing:-0.265600pt;}
.ws13{word-spacing:-0.212480pt;}
.ws28{word-spacing:-0.171520pt;}
.ws18{word-spacing:-0.170240pt;}
.wsf{word-spacing:-0.159360pt;}
.ws15{word-spacing:-0.106240pt;}
.ws11{word-spacing:-0.053120pt;}
.ws10{word-spacing:0.000000pt;}
.ws12{word-spacing:0.053120pt;}
.ws24{word-spacing:0.106240pt;}
.ws14{word-spacing:0.212480pt;}
.ws2b{word-spacing:0.256000pt;}
.ws21{word-spacing:0.265600pt;}
.ws1d{word-spacing:0.318720pt;}
.ws1b{word-spacing:0.371840pt;}
.ws29{word-spacing:0.471680pt;}
.ws17{word-spacing:0.510720pt;}
.ws23{word-spacing:0.849920pt;}
._0{margin-left:-1.088960pt;}
._1{width:0.950848pt;}
._3{width:398.559360pt;}
._2{width:1054.219520pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:2.880000pt;}
.y39{bottom:6.080000pt;}
.y37{bottom:18.240000pt;}
.y36{bottom:33.600000pt;}
.y3{bottom:50.080000pt;}
.y3a{bottom:97.440000pt;}
.y131{bottom:103.130240pt;}
.y147{bottom:105.915040pt;}
.yd1{bottom:106.679360pt;}
.y35{bottom:109.760000pt;}
.y17f{bottom:110.709440pt;}
.yfd{bottom:111.287520pt;}
.yad{bottom:112.521920pt;}
.y130{bottom:118.495200pt;}
.y146{bottom:121.280000pt;}
.yd0{bottom:122.044320pt;}
.y76{bottom:124.846400pt;}
.y17e{bottom:125.915040pt;}
.yfc{bottom:126.493120pt;}
.yac{bottom:127.886880pt;}
.y132{bottom:131.520000pt;}
.y12f{bottom:133.700800pt;}
.y145{bottom:137.280000pt;}
.ycf{bottom:137.409280pt;}
.y75{bottom:140.052000pt;}
.y17d{bottom:141.280000pt;}
.yfb{bottom:141.858080pt;}
.y136{bottom:142.246240pt;}
.yab{bottom:143.251840pt;}
.yce{bottom:152.774240pt;}
.y74{bottom:155.416960pt;}
.yfa{bottom:157.223040pt;}
.y17c{bottom:157.280000pt;}
.yaa{bottom:158.616800pt;}
.y34{bottom:158.715040pt;}
.y12e{bottom:159.782720pt;}
.ycd{bottom:168.139200pt;}
.yff{bottom:170.080000pt;}
.y73{bottom:170.781920pt;}
.ya9{bottom:173.822400pt;}
.y33{bottom:174.080000pt;}
.y12d{bottom:175.147680pt;}
.yf9{bottom:183.145600pt;}
.ycc{bottom:183.504160pt;}
.y72{bottom:186.146880pt;}
.ya8{bottom:189.187360pt;}
.y32{bottom:189.440000pt;}
.y12c{bottom:190.512640pt;}
.y17b{bottom:190.787520pt;}
.yf8{bottom:198.510560pt;}
.ycb{bottom:198.709760pt;}
.y71{bottom:201.511840pt;}
.ya7{bottom:204.552320pt;}
.y12b{bottom:205.718240pt;}
.y17a{bottom:206.152480pt;}
.y31{bottom:208.954400pt;}
.yf7{bottom:213.875520pt;}
.yca{bottom:214.074720pt;}
.y70{bottom:216.717440pt;}
.y3d{bottom:217.270080pt;}
.y12a{bottom:221.083200pt;}
.y179{bottom:221.517440pt;}
.y30{bottom:224.160000pt;}
.yf6{bottom:229.240480pt;}
.yc9{bottom:229.439680pt;}
.ya6{bottom:230.474880pt;}
.y6f{bottom:232.082400pt;}
.y3c{bottom:232.635040pt;}
.y129{bottom:236.448160pt;}
.y178{bottom:236.723040pt;}
.y2f{bottom:240.320000pt;}
.yf5{bottom:244.605440pt;}
.yc8{bottom:244.804640pt;}
.ya5{bottom:245.839840pt;}
.y6e{bottom:247.447360pt;}
.y3b{bottom:248.000000pt;}
.y128{bottom:251.813120pt;}
.y177{bottom:252.088000pt;}
.yf4{bottom:259.970400pt;}
.yc7{bottom:260.169600pt;}
.ya4{bottom:261.204800pt;}
.y6d{bottom:262.812320pt;}
.y127{bottom:267.178080pt;}
.y176{bottom:267.452960pt;}
.y2e{bottom:268.000000pt;}
.yf3{bottom:275.335360pt;}
.yc6{bottom:275.534560pt;}
.ya3{bottom:276.569760pt;}
.y6c{bottom:278.177280pt;}
.y126{bottom:282.383680pt;}
.y175{bottom:282.817920pt;}
.y2d{bottom:289.280000pt;}
.yc5{bottom:290.740160pt;}
.y6b{bottom:293.542240pt;}
.y125{bottom:297.748640pt;}
.yf2{bottom:301.257920pt;}
.ya2{bottom:302.492320pt;}
.yc4{bottom:306.105120pt;}
.y2c{bottom:306.560000pt;}
.y174{bottom:308.740480pt;}
.y144{bottom:308.747840pt;}
.y124{bottom:313.113600pt;}
.yf1{bottom:316.622880pt;}
.ya1{bottom:317.857280pt;}
.y6a{bottom:319.464800pt;}
.yc3{bottom:321.470080pt;}
.y2b{bottom:321.920000pt;}
.y173{bottom:324.105440pt;}
.y143{bottom:324.112800pt;}
.y123{bottom:328.478560pt;}
.yf0{bottom:331.987840pt;}
.ya0{bottom:333.222240pt;}
.y69{bottom:334.829760pt;}
.yc2{bottom:336.835040pt;}
.y2a{bottom:337.280000pt;}
.y172{bottom:339.470400pt;}
.y142{bottom:339.477760pt;}
.y122{bottom:343.843520pt;}
.yef{bottom:347.352800pt;}
.y9f{bottom:348.587200pt;}
.y68{bottom:350.194720pt;}
.y29{bottom:352.640000pt;}
.y171{bottom:354.835360pt;}
.y121{bottom:359.208480pt;}
.yee{bottom:362.558400pt;}
.yc1{bottom:362.757600pt;}
.y9e{bottom:363.952160pt;}
.y141{bottom:365.400320pt;}
.y67{bottom:365.559680pt;}
.y28{bottom:368.000000pt;}
.y170{bottom:370.200320pt;}
.y120{bottom:374.414080pt;}
.yed{bottom:377.923360pt;}
.yc0{bottom:378.122560pt;}
.y9d{bottom:379.317120pt;}
.y66{bottom:380.765280pt;}
.y27{bottom:383.360000pt;}
.y16f{bottom:385.565280pt;}
.yec{bottom:393.288320pt;}
.ybf{bottom:393.487520pt;}
.y9c{bottom:394.522720pt;}
.y65{bottom:396.130240pt;}
.y26{bottom:398.560000pt;}
.y11f{bottom:400.496000pt;}
.y16e{bottom:400.770880pt;}
.y135{bottom:404.964480pt;}
.yeb{bottom:408.653280pt;}
.ybe{bottom:408.852480pt;}
.y9b{bottom:409.887680pt;}
.y64{bottom:411.495200pt;}
.y25{bottom:413.920000pt;}
.y11e{bottom:415.860960pt;}
.y16d{bottom:416.135840pt;}
.yea{bottom:424.018240pt;}
.ybd{bottom:424.217440pt;}
.y9a{bottom:425.252640pt;}
.y63{bottom:426.860160pt;}
.y1a5{bottom:427.855360pt;}
.y24{bottom:429.280000pt;}
.y11d{bottom:431.225920pt;}
.y16c{bottom:431.500800pt;}
.ye9{bottom:439.223840pt;}
.y62{bottom:442.225120pt;}
.y23{bottom:444.640000pt;}
.y11c{bottom:446.431520pt;}
.y16b{bottom:446.865760pt;}
.ybc{bottom:450.140000pt;}
.y99{bottom:451.175200pt;}
.y1a4{bottom:453.777920pt;}
.ye8{bottom:454.588800pt;}
.y61{bottom:457.590080pt;}
.y22{bottom:460.000000pt;}
.y11b{bottom:461.796480pt;}
.y16a{bottom:462.230720pt;}
.ybb{bottom:465.504960pt;}
.y98{bottom:466.540160pt;}
.y1a3{bottom:469.142880pt;}
.ye7{bottom:469.953760pt;}
.y60{bottom:472.795680pt;}
.y21{bottom:475.360000pt;}
.y11a{bottom:477.161440pt;}
.y169{bottom:477.595680pt;}
.yba{bottom:480.869920pt;}
.y97{bottom:481.905120pt;}
.y1a2{bottom:484.507840pt;}
.ye6{bottom:485.318720pt;}
.y5f{bottom:488.160640pt;}
.y20{bottom:490.560000pt;}
.y119{bottom:492.526400pt;}
.y168{bottom:492.801280pt;}
.yb9{bottom:496.234880pt;}
.y96{bottom:497.270080pt;}
.y1a1{bottom:499.872800pt;}
.y5e{bottom:503.525600pt;}
.y1f{bottom:505.920000pt;}
.y118{bottom:507.891360pt;}
.ye5{bottom:511.241280pt;}
.yb8{bottom:511.440480pt;}
.y95{bottom:512.635040pt;}
.y1a0{bottom:515.237760pt;}
.y167{bottom:518.883200pt;}
.y5d{bottom:518.890560pt;}
.y117{bottom:523.256320pt;}
.ye4{bottom:526.606240pt;}
.yb7{bottom:526.805440pt;}
.y94{bottom:528.000000pt;}
.y19f{bottom:530.443360pt;}
.y1e{bottom:531.840000pt;}
.y166{bottom:534.248160pt;}
.y5c{bottom:534.255520pt;}
.y116{bottom:538.461920pt;}
.ye3{bottom:541.971200pt;}
.yb6{bottom:542.170400pt;}
.y19e{bottom:545.808320pt;}
.y93{bottom:546.560000pt;}
.y165{bottom:549.453760pt;}
.y5b{bottom:549.461120pt;}
.y115{bottom:553.826880pt;}
.ye2{bottom:557.336160pt;}
.yb5{bottom:557.535360pt;}
.y1d{bottom:559.835040pt;}
.y19d{bottom:561.173280pt;}
.y164{bottom:564.818720pt;}
.y5a{bottom:564.826080pt;}
.y114{bottom:569.191840pt;}
.ye1{bottom:572.701120pt;}
.yb4{bottom:572.900320pt;}
.y1c{bottom:575.200000pt;}
.y19c{bottom:576.538240pt;}
.y92{bottom:579.912160pt;}
.y59{bottom:580.191040pt;}
.y113{bottom:584.556800pt;}
.ye0{bottom:588.066080pt;}
.yb3{bottom:588.265280pt;}
.y163{bottom:590.900640pt;}
.y140{bottom:590.908000pt;}
.y19b{bottom:591.903200pt;}
.y1b{bottom:592.640000pt;}
.y91{bottom:595.277120pt;}
.y112{bottom:599.921760pt;}
.yb2{bottom:603.470880pt;}
.y58{bottom:606.113600pt;}
.y162{bottom:606.265600pt;}
.y13f{bottom:606.272960pt;}
.y19a{bottom:607.108800pt;}
.y1a{bottom:608.000000pt;}
.y90{bottom:610.642080pt;}
.ydf{bottom:613.988640pt;}
.y111{bottom:615.127360pt;}
.yb1{bottom:618.835840pt;}
.y161{bottom:621.471200pt;}
.y57{bottom:621.478560pt;}
.y199{bottom:622.473760pt;}
.y19{bottom:623.200000pt;}
.y8f{bottom:626.007040pt;}
.yde{bottom:629.353600pt;}
.y110{bottom:630.492320pt;}
.yb0{bottom:634.200800pt;}
.y160{bottom:636.836160pt;}
.y56{bottom:636.843520pt;}
.y198{bottom:637.838720pt;}
.y18{bottom:638.560000pt;}
.y8e{bottom:641.212640pt;}
.ydd{bottom:644.718560pt;}
.yaf{bottom:649.565760pt;}
.y15f{bottom:652.201120pt;}
.y55{bottom:652.208480pt;}
.y197{bottom:653.203680pt;}
.y17{bottom:653.920000pt;}
.y10f{bottom:656.574240pt;}
.y8d{bottom:656.577600pt;}
.ydc{bottom:660.083520pt;}
.y15e{bottom:667.566080pt;}
.y54{bottom:667.573440pt;}
.y196{bottom:668.568640pt;}
.y16{bottom:669.280000pt;}
.y10e{bottom:671.939200pt;}
.y8c{bottom:671.942560pt;}
.ydb{bottom:675.289120pt;}
.yae{bottom:675.488320pt;}
.y15d{bottom:682.931040pt;}
.y53{bottom:682.938400pt;}
.y195{bottom:683.933600pt;}
.y15{bottom:684.640000pt;}
.y10d{bottom:687.144800pt;}
.y8b{bottom:687.307520pt;}
.yfe{bottom:698.080000pt;}
.y15c{bottom:698.296000pt;}
.y52{bottom:698.303360pt;}
.y194{bottom:699.139200pt;}
.y14{bottom:700.000000pt;}
.y10c{bottom:702.509760pt;}
.y8a{bottom:702.672480pt;}
.y100{bottom:708.800000pt;}
.y134{bottom:711.520000pt;}
.y15b{bottom:713.501600pt;}
.y51{bottom:713.508960pt;}
.y193{bottom:714.504160pt;}
.y13{bottom:715.200000pt;}
.y10b{bottom:717.874720pt;}
.y89{bottom:718.037440pt;}
.y15a{bottom:728.866560pt;}
.y50{bottom:728.873920pt;}
.y192{bottom:729.869120pt;}
.y12{bottom:730.560000pt;}
.y10a{bottom:733.239680pt;}
.y88{bottom:733.243040pt;}
.y159{bottom:744.231520pt;}
.y4f{bottom:744.238880pt;}
.y191{bottom:745.234080pt;}
.y11{bottom:745.920000pt;}
.y109{bottom:748.604640pt;}
.y87{bottom:748.608000pt;}
.y13e{bottom:754.955840pt;}
.y158{bottom:759.596480pt;}
.y4e{bottom:759.603840pt;}
.y190{bottom:760.599040pt;}
.y10{bottom:761.280000pt;}
.y108{bottom:763.969600pt;}
.y86{bottom:763.972960pt;}
.y13d{bottom:770.320800pt;}
.y4d{bottom:774.968800pt;}
.y18f{bottom:775.964000pt;}
.yf{bottom:776.640000pt;}
.y107{bottom:779.175200pt;}
.y157{bottom:785.519040pt;}
.y13c{bottom:785.526400pt;}
.y85{bottom:789.895520pt;}
.y4c{bottom:790.333760pt;}
.y18e{bottom:791.169600pt;}
.ye{bottom:792.000000pt;}
.y106{bottom:794.540160pt;}
.y156{bottom:800.884000pt;}
.y13b{bottom:800.891360pt;}
.y84{bottom:805.260480pt;}
.y4b{bottom:805.539360pt;}
.y18d{bottom:806.534560pt;}
.yd{bottom:807.200000pt;}
.y105{bottom:809.905120pt;}
.y155{bottom:816.248960pt;}
.y13a{bottom:816.256320pt;}
.y83{bottom:820.625440pt;}
.y4a{bottom:820.904320pt;}
.y18c{bottom:821.899520pt;}
.yc{bottom:822.560000pt;}
.y104{bottom:825.270080pt;}
.y154{bottom:831.613920pt;}
.y139{bottom:831.621280pt;}
.y82{bottom:835.990400pt;}
.y49{bottom:836.269280pt;}
.y18b{bottom:837.264480pt;}
.y103{bottom:840.635040pt;}
.y153{bottom:846.978880pt;}
.y138{bottom:846.986240pt;}
.yb{bottom:848.480000pt;}
.y81{bottom:851.355360pt;}
.y18a{bottom:852.629440pt;}
.y102{bottom:856.000000pt;}
.y48{bottom:862.191840pt;}
.y152{bottom:862.343840pt;}
.y137{bottom:862.351200pt;}
.ya{bottom:865.915040pt;}
.y80{bottom:866.720320pt;}
.y189{bottom:867.835040pt;}
.y101{bottom:874.560000pt;}
.y151{bottom:877.549440pt;}
.y47{bottom:877.556800pt;}
.y9{bottom:881.280000pt;}
.y7f{bottom:881.925920pt;}
.y188{bottom:883.200000pt;}
.yda{bottom:892.722560pt;}
.y150{bottom:892.914400pt;}
.y46{bottom:892.921760pt;}
.y7e{bottom:897.290880pt;}
.y187{bottom:899.200000pt;}
.y8{bottom:905.760000pt;}
.yd9{bottom:908.087520pt;}
.y14f{bottom:908.279360pt;}
.y45{bottom:908.286720pt;}
.y7d{bottom:912.655840pt;}
.yd8{bottom:923.452480pt;}
.y14e{bottom:923.644320pt;}
.y44{bottom:923.651680pt;}
.y7c{bottom:928.020800pt;}
.y186{bottom:932.934400pt;}
.y7{bottom:935.840000pt;}
.yd7{bottom:938.817440pt;}
.y14d{bottom:939.009280pt;}
.y43{bottom:939.016640pt;}
.y7b{bottom:943.385760pt;}
.yd6{bottom:954.023040pt;}
.y14c{bottom:954.214880pt;}
.y42{bottom:954.222240pt;}
.y7a{bottom:958.750720pt;}
.y185{bottom:958.856960pt;}
.y181{bottom:958.870240pt;}
.y6{bottom:960.320000pt;}
.yd5{bottom:969.388000pt;}
.y14b{bottom:969.579840pt;}
.y41{bottom:969.587200pt;}
.y79{bottom:973.956320pt;}
.y180{bottom:974.235200pt;}
.yd4{bottom:984.752960pt;}
.y184{bottom:984.938880pt;}
.y14a{bottom:984.944800pt;}
.y40{bottom:984.952160pt;}
.y5{bottom:984.960000pt;}
.y78{bottom:1000.038240pt;}
.yd3{bottom:1000.117920pt;}
.y183{bottom:1000.303840pt;}
.y149{bottom:1000.309760pt;}
.y3f{bottom:1000.317120pt;}
.y133{bottom:1000.640000pt;}
.y77{bottom:1015.403200pt;}
.yd2{bottom:1015.482880pt;}
.y182{bottom:1015.668800pt;}
.y148{bottom:1015.674720pt;}
.y4{bottom:1015.682080pt;}
.y2{bottom:1044.640000pt;}
.y1{bottom:1062.720000pt;}
.y3e{bottom:1062.880000pt;}
.h6{height:28.049688pt;}
.ha{height:35.975313pt;}
.h2{height:36.364375pt;}
.hc{height:37.624687pt;}
.h7{height:43.812500pt;}
.h9{height:46.080000pt;}
.h3{height:46.609688pt;}
.h8{height:46.629528pt;}
.h4{height:58.270625pt;}
.h5{height:68.997188pt;}
.hb{height:180.000000pt;}
.hd{height:891.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:101.598667pt;}
.w5{width:277.601333pt;}
.w2{width:472.481333pt;}
.w4{width:540.640000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:9.600000pt;}
.x5{left:97.920000pt;}
.x9{left:110.240000pt;}
.x1{left:113.440000pt;}
.xc{left:123.520000pt;}
.x2{left:137.440000pt;}
.x3{left:305.440000pt;}
.x7{left:377.440000pt;}
.x8{left:380.160000pt;}
.xe{left:381.920800pt;}
.xd{left:385.440000pt;}
.x6{left:420.480000pt;}
.x4{left:585.920000pt;}
.xb{left:641.760000pt;}
}




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