
    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_3a699d10b0b9d5efcafcd2c0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_97dfab39eb4c940e93a8373f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.237305;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_44121b549ca8d48902581a62.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_fb1377c70bd6fe34806202f9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.904785;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_5497f158af41d10939fa91ba.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922852;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_acb932a93a7b55f9f25adc00.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;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_b5cb3709d7bd5605a91fbf9b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.174600px;}
.ls1d{letter-spacing:-3.819000px;}
.ls1c{letter-spacing:-3.243000px;}
.ls15{letter-spacing:-2.553000px;}
.ls1b{letter-spacing:-1.518000px;}
.lsf{letter-spacing:-1.296000px;}
.lse{letter-spacing:-1.215000px;}
.ls21{letter-spacing:-1.028412px;}
.ls13{letter-spacing:-0.972000px;}
.ls1a{letter-spacing:-0.897000px;}
.ls5{letter-spacing:-0.864000px;}
.lsd{letter-spacing:-0.855000px;}
.ls16{letter-spacing:-0.690000px;}
.ls10{letter-spacing:-0.627000px;}
.ls14{letter-spacing:-0.621000px;}
.ls17{letter-spacing:-0.570000px;}
.ls1{letter-spacing:-0.504000px;}
.ls18{letter-spacing:-0.483000px;}
.ls4{letter-spacing:-0.240000px;}
.ls12{letter-spacing:-0.171000px;}
.ls0{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.189000px;}
.ls6{letter-spacing:0.924000px;}
.ls22{letter-spacing:2.331000px;}
.ls9{letter-spacing:2.400000px;}
.ls19{letter-spacing:3.225000px;}
.ls11{letter-spacing:4.125000px;}
.ls8{letter-spacing:4.200000px;}
.lsa{letter-spacing:4.275000px;}
.ls23{letter-spacing:4.650000px;}
.lsb{letter-spacing:5.460000px;}
.lsc{letter-spacing:5.760000px;}
.ls7{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls1e{letter-spacing:6.300000px;}
.ls20{letter-spacing:6.867000px;}
.ls3{letter-spacing:8.400000px;}
.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.484000px;}
.ws2a{word-spacing:-25.725000px;}
.ws9{word-spacing:-25.350000px;}
.ws12{word-spacing:-25.200000px;}
.ws23{word-spacing:-24.570000px;}
.ws1{word-spacing:-24.528000px;}
.ws1c{word-spacing:-24.300000px;}
.ws2c{word-spacing:-22.860000px;}
.ws13{word-spacing:-21.789000px;}
.wsb{word-spacing:-21.546000px;}
.ws2b{word-spacing:-20.034000px;}
.ws1e{word-spacing:-19.389000px;}
.ws26{word-spacing:-17.892000px;}
.ws25{word-spacing:-17.703000px;}
.wsa{word-spacing:-17.262000px;}
.wsc{word-spacing:-17.043000px;}
.ws15{word-spacing:-16.422000px;}
.ws1d{word-spacing:-16.146000px;}
.ws27{word-spacing:-15.561000px;}
.ws2d{word-spacing:-14.820000px;}
.ws14{word-spacing:-14.490000px;}
.ws21{word-spacing:-13.800000px;}
.ws24{word-spacing:-10.320849px;}
.ws5{word-spacing:-8.400000px;}
.ws29{word-spacing:-8.043651px;}
.ws28{word-spacing:-6.300000px;}
.ws4{word-spacing:-6.000000px;}
.ws7{word-spacing:-5.880000px;}
.wse{word-spacing:-5.760000px;}
.ws8{word-spacing:-4.200000px;}
.ws1b{word-spacing:-2.760000px;}
.wsd{word-spacing:-2.400000px;}
.ws18{word-spacing:-1.863000px;}
.ws2{word-spacing:0.000000px;}
.ws16{word-spacing:0.171000px;}
.ws6{word-spacing:0.240000px;}
.ws1a{word-spacing:0.483000px;}
.ws3{word-spacing:0.504000px;}
.ws19{word-spacing:0.570000px;}
.ws17{word-spacing:0.621000px;}
.ws11{word-spacing:0.627000px;}
.wsf{word-spacing:0.855000px;}
.ws10{word-spacing:1.296000px;}
.ws1f{word-spacing:1.518000px;}
.ws22{word-spacing:3.819000px;}
.ws20{word-spacing:5.658000px;}
._1e{margin-left:-19.375500px;}
._22{margin-left:-12.257700px;}
._21{margin-left:-10.878000px;}
._b{margin-left:-8.969400px;}
._d{margin-left:-7.749900px;}
._c{margin-left:-5.927700px;}
._9{margin-left:-4.899600px;}
._6{margin-left:-3.060000px;}
._5{margin-left:-1.682100px;}
._4{width:1.026900px;}
._1{width:2.400000px;}
._3{width:3.471600px;}
._e{width:4.582800px;}
._7{width:5.692200px;}
._8{width:7.004100px;}
._a{width:8.649600px;}
._1c{width:9.676800px;}
._1b{width:10.770600px;}
._f{width:11.971200px;}
._16{width:13.240500px;}
._15{width:14.571300px;}
._14{width:15.747600px;}
._19{width:17.555400px;}
._28{width:19.565400px;}
._17{width:20.995200px;}
._27{width:22.502100px;}
._13{width:23.660100px;}
._20{width:25.162800px;}
._26{width:26.178600px;}
._25{width:27.543300px;}
._2c{width:28.650600px;}
._2d{width:30.138600px;}
._2e{width:32.741100px;}
._2b{width:34.845300px;}
._2a{width:40.875600px;}
._29{width:42.002400px;}
._12{width:85.554000px;}
._10{width:260.610000px;}
._2f{width:456.316800px;}
._11{width:457.434000px;}
._1a{width:458.498400px;}
._1f{width:460.057200px;}
._24{width:462.959400px;}
._0{width:578.400000px;}
._1d{width:955.711200px;}
._2{width:958.831200px;}
._18{width:962.881200px;}
._23{width:964.861200px;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:36.729000px;}
.fs5{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs7{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs8{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y13b{bottom:106.120500px;}
.y104{bottom:106.165350px;}
.y112{bottom:106.207500px;}
.yb7{bottom:106.268850px;}
.y15c{bottom:106.278300px;}
.y91{bottom:106.290900px;}
.y21{bottom:106.297800px;}
.y6d{bottom:106.313100px;}
.y119{bottom:106.324800px;}
.ydd{bottom:106.588650px;}
.y47{bottom:108.710700px;}
.y17d{bottom:113.788350px;}
.y13a{bottom:126.390750px;}
.y111{bottom:126.476250px;}
.y90{bottom:126.559650px;}
.y103{bottom:126.589350px;}
.y118{bottom:126.593550px;}
.y6c{bottom:126.926850px;}
.yb6{bottom:127.227600px;}
.y20{bottom:127.342800px;}
.y15b{bottom:127.351800px;}
.ydc{bottom:127.374900px;}
.y46{bottom:128.962200px;}
.y17c{bottom:134.038350px;}
.y139{bottom:146.661000px;}
.y110{bottom:146.745000px;}
.y117{bottom:146.862300px;}
.y102{bottom:147.013350px;}
.y6b{bottom:147.540600px;}
.ydb{bottom:148.161150px;}
.yb5{bottom:148.186350px;}
.y1f{bottom:148.361250px;}
.y45{bottom:149.213700px;}
.y17b{bottom:154.288350px;}
.y15a{bottom:154.804050px;}
.y10f{bottom:167.013750px;}
.y116{bottom:167.131050px;}
.y101{bottom:167.437350px;}
.y1e{bottom:167.906250px;}
.y8f{bottom:168.073800px;}
.y6a{bottom:168.154350px;}
.yda{bottom:168.947400px;}
.yb4{bottom:169.145100px;}
.y44{bottom:169.465200px;}
.y138{bottom:173.310000px;}
.y17a{bottom:174.538350px;}
.y159{bottom:175.877550px;}
.y10e{bottom:187.282500px;}
.y115{bottom:187.399800px;}
.y1d{bottom:187.451250px;}
.y100{bottom:187.861350px;}
.y69{bottom:188.768100px;}
.y43{bottom:189.716700px;}
.yd9{bottom:189.733650px;}
.yb3{bottom:190.103850px;}
.y8e{bottom:192.090300px;}
.y137{bottom:193.580250px;}
.y179{bottom:194.788350px;}
.y158{bottom:203.329800px;}
.y1c{bottom:206.996250px;}
.y10d{bottom:207.551250px;}
.y114{bottom:207.668550px;}
.yff{bottom:208.285350px;}
.y68{bottom:209.381850px;}
.y42{bottom:209.968200px;}
.yd8{bottom:210.519900px;}
.yb2{bottom:211.062600px;}
.y136{bottom:213.850500px;}
.y157{bottom:224.403300px;}
.y1b{bottom:226.541250px;}
.y178{bottom:227.788350px;}
.y10c{bottom:227.820000px;}
.yfe{bottom:228.709350px;}
.y67{bottom:229.995600px;}
.y41{bottom:230.219700px;}
.yd7{bottom:231.306150px;}
.yb1{bottom:232.021350px;}
.y135{bottom:240.499500px;}
.y113{bottom:244.950150px;}
.y1a{bottom:246.086250px;}
.y10b{bottom:248.088750px;}
.yfd{bottom:249.133350px;}
.y40{bottom:250.471200px;}
.y66{bottom:250.609350px;}
.y156{bottom:251.855550px;}
.yd6{bottom:252.092400px;}
.yb0{bottom:252.980100px;}
.y8d{bottom:254.101350px;}
.y134{bottom:260.769750px;}
.y19{bottom:265.631250px;}
.y10a{bottom:268.357500px;}
.y177{bottom:269.293350px;}
.yfc{bottom:269.557350px;}
.y3f{bottom:270.722700px;}
.y65{bottom:271.223100px;}
.yd5{bottom:272.878650px;}
.y155{bottom:272.929050px;}
.yaf{bottom:273.938850px;}
.y8c{bottom:274.370100px;}
.y133{bottom:281.040000px;}
.y18{bottom:285.176250px;}
.y109{bottom:288.626250px;}
.y176{bottom:288.793350px;}
.yfb{bottom:289.981350px;}
.y3e{bottom:290.974200px;}
.y64{bottom:291.836850px;}
.yd4{bottom:293.664900px;}
.y8b{bottom:294.638850px;}
.yae{bottom:294.897600px;}
.y154{bottom:300.316350px;}
.y17{bottom:304.721250px;}
.y132{bottom:307.689000px;}
.y175{bottom:308.293350px;}
.y108{bottom:308.895000px;}
.yfa{bottom:310.405350px;}
.y3d{bottom:311.225700px;}
.y63{bottom:312.450600px;}
.yd3{bottom:314.451150px;}
.y8a{bottom:314.907600px;}
.yad{bottom:315.856350px;}
.y153{bottom:321.389850px;}
.y16{bottom:324.266250px;}
.y174{bottom:327.793350px;}
.y131{bottom:327.959250px;}
.y107{bottom:329.163750px;}
.yf9{bottom:330.829350px;}
.y3c{bottom:331.477200px;}
.y62{bottom:333.064350px;}
.y89{bottom:335.176350px;}
.yd2{bottom:335.237400px;}
.yac{bottom:336.815100px;}
.y15{bottom:343.811250px;}
.y173{bottom:347.293350px;}
.y130{bottom:348.229500px;}
.y152{bottom:348.842100px;}
.yf8{bottom:351.253350px;}
.y3b{bottom:351.728700px;}
.y61{bottom:353.678100px;}
.y88{bottom:355.445100px;}
.yd1{bottom:356.023650px;}
.yab{bottom:357.773850px;}
.y14{bottom:363.356250px;}
.y172{bottom:366.793350px;}
.y12f{bottom:368.499750px;}
.y151{bottom:369.915600px;}
.y106{bottom:370.677900px;}
.yf7{bottom:371.677350px;}
.y3a{bottom:371.980200px;}
.y60{bottom:374.291850px;}
.y87{bottom:375.713850px;}
.yd0{bottom:376.809900px;}
.yaa{bottom:378.732600px;}
.y13{bottom:382.901250px;}
.y171{bottom:386.293350px;}
.yf6{bottom:392.101350px;}
.y39{bottom:392.231700px;}
.y105{bottom:394.694400px;}
.y5f{bottom:394.905600px;}
.y12e{bottom:395.148750px;}
.y86{bottom:395.982600px;}
.y150{bottom:397.367850px;}
.ycf{bottom:397.596150px;}
.ya9{bottom:399.691350px;}
.y12{bottom:402.446250px;}
.y170{bottom:405.793350px;}
.yf5{bottom:412.525350px;}
.y12d{bottom:415.419000px;}
.y85{bottom:416.251350px;}
.yce{bottom:418.382400px;}
.y14f{bottom:418.441350px;}
.ya8{bottom:420.650100px;}
.y11{bottom:421.991250px;}
.y16f{bottom:425.293350px;}
.y5e{bottom:428.280150px;}
.yf4{bottom:432.949350px;}
.y38{bottom:433.741650px;}
.y84{bottom:436.520100px;}
.ycd{bottom:439.168650px;}
.y10{bottom:441.536250px;}
.ya7{bottom:441.608850px;}
.y12c{bottom:442.068000px;}
.y16e{bottom:444.793350px;}
.y14e{bottom:445.893600px;}
.y5d{bottom:452.640900px;}
.yf3{bottom:453.373350px;}
.y83{bottom:456.788850px;}
.ycc{bottom:459.954900px;}
.y12b{bottom:462.338250px;}
.ya6{bottom:462.567600px;}
.y16d{bottom:464.293350px;}
.y14d{bottom:466.967100px;}
.yf{bottom:469.586250px;}
.yf2{bottom:473.797350px;}
.y82{bottom:477.057600px;}
.ycb{bottom:480.741150px;}
.ya5{bottom:483.526350px;}
.y16c{bottom:483.793350px;}
.y12a{bottom:488.987250px;}
.yf1{bottom:494.221350px;}
.y14c{bottom:494.419350px;}
.y37{bottom:496.009350px;}
.y81{bottom:497.326350px;}
.yca{bottom:501.527400px;}
.y16b{bottom:503.293350px;}
.ya4{bottom:504.485100px;}
.y129{bottom:509.257500px;}
.y5c{bottom:511.040100px;}
.yf0{bottom:514.645350px;}
.y14b{bottom:515.492850px;}
.y36{bottom:517.009350px;}
.y80{bottom:517.595100px;}
.yc9{bottom:522.313650px;}
.y16a{bottom:522.793350px;}
.ye{bottom:523.136400px;}
.ya3{bottom:525.443850px;}
.y5b{bottom:531.653850px;}
.yef{bottom:535.069350px;}
.y128{bottom:535.906500px;}
.y7f{bottom:537.863850px;}
.y35{bottom:538.015200px;}
.y14a{bottom:542.945100px;}
.yc8{bottom:543.099900px;}
.ya2{bottom:546.402600px;}
.yd{bottom:550.184400px;}
.y5a{bottom:552.267600px;}
.y169{bottom:555.043350px;}
.yee{bottom:555.493350px;}
.y127{bottom:556.176750px;}
.y34{bottom:557.515200px;}
.y7e{bottom:558.132600px;}
.yc7{bottom:563.886150px;}
.y149{bottom:564.018600px;}
.ya1{bottom:567.361350px;}
.y59{bottom:572.881350px;}
.yed{bottom:575.917350px;}
.y126{bottom:576.447000px;}
.y33{bottom:577.015200px;}
.yc{bottom:577.232400px;}
.y7d{bottom:578.401350px;}
.yc6{bottom:584.672400px;}
.ya0{bottom:588.320100px;}
.y148{bottom:591.470850px;}
.y58{bottom:593.495100px;}
.yec{bottom:596.341350px;}
.y32{bottom:596.515200px;}
.y125{bottom:596.717250px;}
.y7c{bottom:598.670100px;}
.yc5{bottom:605.458650px;}
.y9f{bottom:609.278850px;}
.y168{bottom:612.799050px;}
.y57{bottom:614.108850px;}
.y31{bottom:616.015200px;}
.yeb{bottom:616.765350px;}
.y147{bottom:618.923100px;}
.y7b{bottom:618.938850px;}
.y124{bottom:623.366250px;}
.yb{bottom:625.558200px;}
.yc4{bottom:626.244900px;}
.y9e{bottom:630.237600px;}
.y56{bottom:634.722600px;}
.y30{bottom:635.515200px;}
.yea{bottom:637.189350px;}
.y7a{bottom:639.207600px;}
.y167{bottom:639.805050px;}
.y146{bottom:639.996600px;}
.yc3{bottom:647.031150px;}
.y123{bottom:650.015250px;}
.y9d{bottom:651.196350px;}
.y2f{bottom:655.015200px;}
.y55{bottom:655.336350px;}
.ya{bottom:657.094200px;}
.ye9{bottom:657.613350px;}
.y79{bottom:659.476350px;}
.y145{bottom:661.070100px;}
.y166{bottom:666.811050px;}
.yc2{bottom:667.817400px;}
.y9c{bottom:672.155100px;}
.y2e{bottom:674.515200px;}
.y54{bottom:675.950100px;}
.y122{bottom:676.664250px;}
.ye8{bottom:678.037350px;}
.y78{bottom:679.745100px;}
.y144{bottom:688.522350px;}
.yc1{bottom:688.603650px;}
.y9{bottom:688.630200px;}
.y9b{bottom:693.113850px;}
.y2d{bottom:694.015200px;}
.y53{bottom:696.563850px;}
.y121{bottom:696.934500px;}
.ye7{bottom:698.461350px;}
.y77{bottom:700.013850px;}
.yc0{bottom:709.389900px;}
.y143{bottom:709.595850px;}
.y2c{bottom:713.515200px;}
.y9a{bottom:714.072600px;}
.y165{bottom:715.029600px;}
.y52{bottom:717.177600px;}
.ye6{bottom:718.885350px;}
.y8{bottom:720.166200px;}
.y76{bottom:720.282600px;}
.y120{bottom:723.534600px;}
.ybf{bottom:730.176150px;}
.y2b{bottom:733.015200px;}
.y99{bottom:735.031350px;}
.y164{bottom:735.284100px;}
.y142{bottom:737.048100px;}
.y51{bottom:737.791350px;}
.ye5{bottom:739.309350px;}
.y75{bottom:740.551350px;}
.y11f{bottom:743.804850px;}
.ybe{bottom:750.962400px;}
.y2a{bottom:752.515200px;}
.y163{bottom:755.538600px;}
.y98{bottom:755.990100px;}
.y141{bottom:758.121600px;}
.y50{bottom:758.405100px;}
.ye4{bottom:759.733350px;}
.y74{bottom:760.820100px;}
.y11e{bottom:770.453850px;}
.ybd{bottom:771.748650px;}
.y29{bottom:772.015200px;}
.y162{bottom:775.793100px;}
.y97{bottom:776.948850px;}
.y4f{bottom:779.018850px;}
.ye3{bottom:780.157350px;}
.y73{bottom:781.088850px;}
.y7{bottom:781.465500px;}
.y140{bottom:785.573850px;}
.y28{bottom:791.515200px;}
.ybc{bottom:792.534900px;}
.y11d{bottom:797.102850px;}
.y96{bottom:797.907600px;}
.y4e{bottom:799.632600px;}
.ye2{bottom:800.581350px;}
.y72{bottom:801.357600px;}
.y161{bottom:802.426350px;}
.y13f{bottom:806.647350px;}
.y27{bottom:811.015200px;}
.y6{bottom:811.015500px;}
.ybb{bottom:813.321150px;}
.y95{bottom:818.866350px;}
.y4d{bottom:820.246350px;}
.ye1{bottom:821.005350px;}
.y71{bottom:821.626350px;}
.y160{bottom:822.680850px;}
.y11c{bottom:823.751850px;}
.y26{bottom:830.515200px;}
.y5{bottom:832.060500px;}
.y13e{bottom:834.099600px;}
.yba{bottom:834.107400px;}
.y94{bottom:839.825100px;}
.y4c{bottom:840.860100px;}
.ye0{bottom:841.429350px;}
.y70{bottom:841.895100px;}
.y15f{bottom:842.935350px;}
.y25{bottom:850.015200px;}
.y11b{bottom:850.400850px;}
.y13d{bottom:855.173100px;}
.y93{bottom:860.783850px;}
.y4b{bottom:861.473850px;}
.y4{bottom:861.610500px;}
.ydf{bottom:861.853350px;}
.y6f{bottom:862.163850px;}
.y15e{bottom:863.189850px;}
.y24{bottom:869.515200px;}
.yb9{bottom:876.163200px;}
.y11a{bottom:877.049850px;}
.y92{bottom:881.742600px;}
.y4a{bottom:882.087600px;}
.yde{bottom:882.277350px;}
.y6e{bottom:882.432600px;}
.y13c{bottom:882.625350px;}
.y3{bottom:882.655500px;}
.y15d{bottom:883.444350px;}
.yb8{bottom:900.706200px;}
.y23{bottom:901.765200px;}
.y49{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y22{bottom:948.189000px;}
.y48{bottom:966.189000px;}
.h8{height:40.757812px;}
.hc{height:41.396484px;}
.h4{height:50.947266px;}
.h3{height:53.494629px;}
.ha{height:58.589355px;}
.h7{height:58.798828px;}
.hd{height:61.738770px;}
.he{height:61.998570px;}
.h2{height:63.684082px;}
.hb{height:67.618652px;}
.h9{height:68.778809px;}
.h6{height:71.326172px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:81.075600px;}
.x6{left:82.214250px;}
.x5{left:83.760600px;}
.x1{left:85.039350px;}
.x9{left:104.251950px;}
.x4{left:105.960600px;}
.x8{left:212.664000px;}
.x3{left:232.583850px;}
.x2{left:233.813700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.488533pt;}
.ls1d{letter-spacing:-3.394667pt;}
.ls1c{letter-spacing:-2.882667pt;}
.ls15{letter-spacing:-2.269333pt;}
.ls1b{letter-spacing:-1.349333pt;}
.lsf{letter-spacing:-1.152000pt;}
.lse{letter-spacing:-1.080000pt;}
.ls21{letter-spacing:-0.914144pt;}
.ls13{letter-spacing:-0.864000pt;}
.ls1a{letter-spacing:-0.797333pt;}
.ls5{letter-spacing:-0.768000pt;}
.lsd{letter-spacing:-0.760000pt;}
.ls16{letter-spacing:-0.613333pt;}
.ls10{letter-spacing:-0.557333pt;}
.ls14{letter-spacing:-0.552000pt;}
.ls17{letter-spacing:-0.506667pt;}
.ls1{letter-spacing:-0.448000pt;}
.ls18{letter-spacing:-0.429333pt;}
.ls4{letter-spacing:-0.213333pt;}
.ls12{letter-spacing:-0.152000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.168000pt;}
.ls6{letter-spacing:0.821333pt;}
.ls22{letter-spacing:2.072000pt;}
.ls9{letter-spacing:2.133333pt;}
.ls19{letter-spacing:2.866667pt;}
.ls11{letter-spacing:3.666667pt;}
.ls8{letter-spacing:3.733333pt;}
.lsa{letter-spacing:3.800000pt;}
.ls23{letter-spacing:4.133333pt;}
.lsb{letter-spacing:4.853333pt;}
.lsc{letter-spacing:5.120000pt;}
.ls7{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls1e{letter-spacing:5.600000pt;}
.ls20{letter-spacing:6.104000pt;}
.ls3{letter-spacing:7.466667pt;}
.ws0{word-spacing:-26.208000pt;}
.ws2a{word-spacing:-22.866667pt;}
.ws9{word-spacing:-22.533333pt;}
.ws12{word-spacing:-22.400000pt;}
.ws23{word-spacing:-21.840000pt;}
.ws1{word-spacing:-21.802667pt;}
.ws1c{word-spacing:-21.600000pt;}
.ws2c{word-spacing:-20.320000pt;}
.ws13{word-spacing:-19.368000pt;}
.wsb{word-spacing:-19.152000pt;}
.ws2b{word-spacing:-17.808000pt;}
.ws1e{word-spacing:-17.234667pt;}
.ws26{word-spacing:-15.904000pt;}
.ws25{word-spacing:-15.736000pt;}
.wsa{word-spacing:-15.344000pt;}
.wsc{word-spacing:-15.149333pt;}
.ws15{word-spacing:-14.597333pt;}
.ws1d{word-spacing:-14.352000pt;}
.ws27{word-spacing:-13.832000pt;}
.ws2d{word-spacing:-13.173333pt;}
.ws14{word-spacing:-12.880000pt;}
.ws21{word-spacing:-12.266667pt;}
.ws24{word-spacing:-9.174088pt;}
.ws5{word-spacing:-7.466667pt;}
.ws29{word-spacing:-7.149912pt;}
.ws28{word-spacing:-5.600000pt;}
.ws4{word-spacing:-5.333333pt;}
.ws7{word-spacing:-5.226667pt;}
.wse{word-spacing:-5.120000pt;}
.ws8{word-spacing:-3.733333pt;}
.ws1b{word-spacing:-2.453333pt;}
.wsd{word-spacing:-2.133333pt;}
.ws18{word-spacing:-1.656000pt;}
.ws2{word-spacing:0.000000pt;}
.ws16{word-spacing:0.152000pt;}
.ws6{word-spacing:0.213333pt;}
.ws1a{word-spacing:0.429333pt;}
.ws3{word-spacing:0.448000pt;}
.ws19{word-spacing:0.506667pt;}
.ws17{word-spacing:0.552000pt;}
.ws11{word-spacing:0.557333pt;}
.wsf{word-spacing:0.760000pt;}
.ws10{word-spacing:1.152000pt;}
.ws1f{word-spacing:1.349333pt;}
.ws22{word-spacing:3.394667pt;}
.ws20{word-spacing:5.029333pt;}
._1e{margin-left:-17.222667pt;}
._22{margin-left:-10.895733pt;}
._21{margin-left:-9.669333pt;}
._b{margin-left:-7.972800pt;}
._d{margin-left:-6.888800pt;}
._c{margin-left:-5.269067pt;}
._9{margin-left:-4.355200pt;}
._6{margin-left:-2.720000pt;}
._5{margin-left:-1.495200pt;}
._4{width:0.912800pt;}
._1{width:2.133333pt;}
._3{width:3.085867pt;}
._e{width:4.073600pt;}
._7{width:5.059733pt;}
._8{width:6.225867pt;}
._a{width:7.688533pt;}
._1c{width:8.601600pt;}
._1b{width:9.573867pt;}
._f{width:10.641067pt;}
._16{width:11.769333pt;}
._15{width:12.952267pt;}
._14{width:13.997867pt;}
._19{width:15.604800pt;}
._28{width:17.391467pt;}
._17{width:18.662400pt;}
._27{width:20.001867pt;}
._13{width:21.031200pt;}
._20{width:22.366933pt;}
._26{width:23.269867pt;}
._25{width:24.482933pt;}
._2c{width:25.467200pt;}
._2d{width:26.789867pt;}
._2e{width:29.103200pt;}
._2b{width:30.973600pt;}
._2a{width:36.333867pt;}
._29{width:37.335467pt;}
._12{width:76.048000pt;}
._10{width:231.653333pt;}
._2f{width:405.614933pt;}
._11{width:406.608000pt;}
._1a{width:407.554133pt;}
._1f{width:408.939733pt;}
._24{width:411.519467pt;}
._0{width:514.133333pt;}
._1d{width:849.521067pt;}
._2{width:852.294400pt;}
._18{width:855.894400pt;}
._23{width:857.654400pt;}
.fsa{font-size:32.648000pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs7{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs8{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y13b{bottom:94.329333pt;}
.y104{bottom:94.369200pt;}
.y112{bottom:94.406667pt;}
.yb7{bottom:94.461200pt;}
.y15c{bottom:94.469600pt;}
.y91{bottom:94.480800pt;}
.y21{bottom:94.486933pt;}
.y6d{bottom:94.500533pt;}
.y119{bottom:94.510933pt;}
.ydd{bottom:94.745467pt;}
.y47{bottom:96.631733pt;}
.y17d{bottom:101.145200pt;}
.y13a{bottom:112.347333pt;}
.y111{bottom:112.423333pt;}
.y90{bottom:112.497467pt;}
.y103{bottom:112.523867pt;}
.y118{bottom:112.527600pt;}
.y6c{bottom:112.823867pt;}
.yb6{bottom:113.091200pt;}
.y20{bottom:113.193600pt;}
.y15b{bottom:113.201600pt;}
.ydc{bottom:113.222133pt;}
.y46{bottom:114.633067pt;}
.y17c{bottom:119.145200pt;}
.y139{bottom:130.365333pt;}
.y110{bottom:130.440000pt;}
.y117{bottom:130.544267pt;}
.y102{bottom:130.678533pt;}
.y6b{bottom:131.147200pt;}
.ydb{bottom:131.698800pt;}
.yb5{bottom:131.721200pt;}
.y1f{bottom:131.876667pt;}
.y45{bottom:132.634400pt;}
.y17b{bottom:137.145200pt;}
.y15a{bottom:137.603600pt;}
.y10f{bottom:148.456667pt;}
.y116{bottom:148.560933pt;}
.y101{bottom:148.833200pt;}
.y1e{bottom:149.250000pt;}
.y8f{bottom:149.398933pt;}
.y6a{bottom:149.470533pt;}
.yda{bottom:150.175467pt;}
.yb4{bottom:150.351200pt;}
.y44{bottom:150.635733pt;}
.y138{bottom:154.053333pt;}
.y17a{bottom:155.145200pt;}
.y159{bottom:156.335600pt;}
.y10e{bottom:166.473333pt;}
.y115{bottom:166.577600pt;}
.y1d{bottom:166.623333pt;}
.y100{bottom:166.987867pt;}
.y69{bottom:167.793867pt;}
.y43{bottom:168.637067pt;}
.yd9{bottom:168.652133pt;}
.yb3{bottom:168.981200pt;}
.y8e{bottom:170.746933pt;}
.y137{bottom:172.071333pt;}
.y179{bottom:173.145200pt;}
.y158{bottom:180.737600pt;}
.y1c{bottom:183.996667pt;}
.y10d{bottom:184.490000pt;}
.y114{bottom:184.594267pt;}
.yff{bottom:185.142533pt;}
.y68{bottom:186.117200pt;}
.y42{bottom:186.638400pt;}
.yd8{bottom:187.128800pt;}
.yb2{bottom:187.611200pt;}
.y136{bottom:190.089333pt;}
.y157{bottom:199.469600pt;}
.y1b{bottom:201.370000pt;}
.y178{bottom:202.478533pt;}
.y10c{bottom:202.506667pt;}
.yfe{bottom:203.297200pt;}
.y67{bottom:204.440533pt;}
.y41{bottom:204.639733pt;}
.yd7{bottom:205.605467pt;}
.yb1{bottom:206.241200pt;}
.y135{bottom:213.777333pt;}
.y113{bottom:217.733467pt;}
.y1a{bottom:218.743333pt;}
.y10b{bottom:220.523333pt;}
.yfd{bottom:221.451867pt;}
.y40{bottom:222.641067pt;}
.y66{bottom:222.763867pt;}
.y156{bottom:223.871600pt;}
.yd6{bottom:224.082133pt;}
.yb0{bottom:224.871200pt;}
.y8d{bottom:225.867867pt;}
.y134{bottom:231.795333pt;}
.y19{bottom:236.116667pt;}
.y10a{bottom:238.540000pt;}
.y177{bottom:239.371867pt;}
.yfc{bottom:239.606533pt;}
.y3f{bottom:240.642400pt;}
.y65{bottom:241.087200pt;}
.yd5{bottom:242.558800pt;}
.y155{bottom:242.603600pt;}
.yaf{bottom:243.501200pt;}
.y8c{bottom:243.884533pt;}
.y133{bottom:249.813333pt;}
.y18{bottom:253.490000pt;}
.y109{bottom:256.556667pt;}
.y176{bottom:256.705200pt;}
.yfb{bottom:257.761200pt;}
.y3e{bottom:258.643733pt;}
.y64{bottom:259.410533pt;}
.yd4{bottom:261.035467pt;}
.y8b{bottom:261.901200pt;}
.yae{bottom:262.131200pt;}
.y154{bottom:266.947867pt;}
.y17{bottom:270.863333pt;}
.y132{bottom:273.501333pt;}
.y175{bottom:274.038533pt;}
.y108{bottom:274.573333pt;}
.yfa{bottom:275.915867pt;}
.y3d{bottom:276.645067pt;}
.y63{bottom:277.733867pt;}
.yd3{bottom:279.512133pt;}
.y8a{bottom:279.917867pt;}
.yad{bottom:280.761200pt;}
.y153{bottom:285.679867pt;}
.y16{bottom:288.236667pt;}
.y174{bottom:291.371867pt;}
.y131{bottom:291.519333pt;}
.y107{bottom:292.590000pt;}
.yf9{bottom:294.070533pt;}
.y3c{bottom:294.646400pt;}
.y62{bottom:296.057200pt;}
.y89{bottom:297.934533pt;}
.yd2{bottom:297.988800pt;}
.yac{bottom:299.391200pt;}
.y15{bottom:305.610000pt;}
.y173{bottom:308.705200pt;}
.y130{bottom:309.537333pt;}
.y152{bottom:310.081867pt;}
.yf8{bottom:312.225200pt;}
.y3b{bottom:312.647733pt;}
.y61{bottom:314.380533pt;}
.y88{bottom:315.951200pt;}
.yd1{bottom:316.465467pt;}
.yab{bottom:318.021200pt;}
.y14{bottom:322.983333pt;}
.y172{bottom:326.038533pt;}
.y12f{bottom:327.555333pt;}
.y151{bottom:328.813867pt;}
.y106{bottom:329.491467pt;}
.yf7{bottom:330.379867pt;}
.y3a{bottom:330.649067pt;}
.y60{bottom:332.703867pt;}
.y87{bottom:333.967867pt;}
.yd0{bottom:334.942133pt;}
.yaa{bottom:336.651200pt;}
.y13{bottom:340.356667pt;}
.y171{bottom:343.371867pt;}
.yf6{bottom:348.534533pt;}
.y39{bottom:348.650400pt;}
.y105{bottom:350.839467pt;}
.y5f{bottom:351.027200pt;}
.y12e{bottom:351.243333pt;}
.y86{bottom:351.984533pt;}
.y150{bottom:353.215867pt;}
.ycf{bottom:353.418800pt;}
.ya9{bottom:355.281200pt;}
.y12{bottom:357.730000pt;}
.y170{bottom:360.705200pt;}
.yf5{bottom:366.689200pt;}
.y12d{bottom:369.261333pt;}
.y85{bottom:370.001200pt;}
.yce{bottom:371.895467pt;}
.y14f{bottom:371.947867pt;}
.ya8{bottom:373.911200pt;}
.y11{bottom:375.103333pt;}
.y16f{bottom:378.038533pt;}
.y5e{bottom:380.693467pt;}
.yf4{bottom:384.843867pt;}
.y38{bottom:385.548133pt;}
.y84{bottom:388.017867pt;}
.ycd{bottom:390.372133pt;}
.y10{bottom:392.476667pt;}
.ya7{bottom:392.541200pt;}
.y12c{bottom:392.949333pt;}
.y16e{bottom:395.371867pt;}
.y14e{bottom:396.349867pt;}
.y5d{bottom:402.347467pt;}
.yf3{bottom:402.998533pt;}
.y83{bottom:406.034533pt;}
.ycc{bottom:408.848800pt;}
.y12b{bottom:410.967333pt;}
.ya6{bottom:411.171200pt;}
.y16d{bottom:412.705200pt;}
.y14d{bottom:415.081867pt;}
.yf{bottom:417.410000pt;}
.yf2{bottom:421.153200pt;}
.y82{bottom:424.051200pt;}
.ycb{bottom:427.325467pt;}
.ya5{bottom:429.801200pt;}
.y16c{bottom:430.038533pt;}
.y12a{bottom:434.655333pt;}
.yf1{bottom:439.307867pt;}
.y14c{bottom:439.483867pt;}
.y37{bottom:440.897200pt;}
.y81{bottom:442.067867pt;}
.yca{bottom:445.802133pt;}
.y16b{bottom:447.371867pt;}
.ya4{bottom:448.431200pt;}
.y129{bottom:452.673333pt;}
.y5c{bottom:454.257867pt;}
.yf0{bottom:457.462533pt;}
.y14b{bottom:458.215867pt;}
.y36{bottom:459.563867pt;}
.y80{bottom:460.084533pt;}
.yc9{bottom:464.278800pt;}
.y16a{bottom:464.705200pt;}
.ye{bottom:465.010133pt;}
.ya3{bottom:467.061200pt;}
.y5b{bottom:472.581200pt;}
.yef{bottom:475.617200pt;}
.y128{bottom:476.361333pt;}
.y7f{bottom:478.101200pt;}
.y35{bottom:478.235733pt;}
.y14a{bottom:482.617867pt;}
.yc8{bottom:482.755467pt;}
.ya2{bottom:485.691200pt;}
.yd{bottom:489.052800pt;}
.y5a{bottom:490.904533pt;}
.y169{bottom:493.371867pt;}
.yee{bottom:493.771867pt;}
.y127{bottom:494.379333pt;}
.y34{bottom:495.569067pt;}
.y7e{bottom:496.117867pt;}
.yc7{bottom:501.232133pt;}
.y149{bottom:501.349867pt;}
.ya1{bottom:504.321200pt;}
.y59{bottom:509.227867pt;}
.yed{bottom:511.926533pt;}
.y126{bottom:512.397333pt;}
.y33{bottom:512.902400pt;}
.yc{bottom:513.095467pt;}
.y7d{bottom:514.134533pt;}
.yc6{bottom:519.708800pt;}
.ya0{bottom:522.951200pt;}
.y148{bottom:525.751867pt;}
.y58{bottom:527.551200pt;}
.yec{bottom:530.081200pt;}
.y32{bottom:530.235733pt;}
.y125{bottom:530.415333pt;}
.y7c{bottom:532.151200pt;}
.yc5{bottom:538.185467pt;}
.y9f{bottom:541.581200pt;}
.y168{bottom:544.710267pt;}
.y57{bottom:545.874533pt;}
.y31{bottom:547.569067pt;}
.yeb{bottom:548.235867pt;}
.y147{bottom:550.153867pt;}
.y7b{bottom:550.167867pt;}
.y124{bottom:554.103333pt;}
.yb{bottom:556.051733pt;}
.yc4{bottom:556.662133pt;}
.y9e{bottom:560.211200pt;}
.y56{bottom:564.197867pt;}
.y30{bottom:564.902400pt;}
.yea{bottom:566.390533pt;}
.y7a{bottom:568.184533pt;}
.y167{bottom:568.715600pt;}
.y146{bottom:568.885867pt;}
.yc3{bottom:575.138800pt;}
.y123{bottom:577.791333pt;}
.y9d{bottom:578.841200pt;}
.y2f{bottom:582.235733pt;}
.y55{bottom:582.521200pt;}
.ya{bottom:584.083733pt;}
.ye9{bottom:584.545200pt;}
.y79{bottom:586.201200pt;}
.y145{bottom:587.617867pt;}
.y166{bottom:592.720933pt;}
.yc2{bottom:593.615467pt;}
.y9c{bottom:597.471200pt;}
.y2e{bottom:599.569067pt;}
.y54{bottom:600.844533pt;}
.y122{bottom:601.479333pt;}
.ye8{bottom:602.699867pt;}
.y78{bottom:604.217867pt;}
.y144{bottom:612.019867pt;}
.yc1{bottom:612.092133pt;}
.y9{bottom:612.115733pt;}
.y9b{bottom:616.101200pt;}
.y2d{bottom:616.902400pt;}
.y53{bottom:619.167867pt;}
.y121{bottom:619.497333pt;}
.ye7{bottom:620.854533pt;}
.y77{bottom:622.234533pt;}
.yc0{bottom:630.568800pt;}
.y143{bottom:630.751867pt;}
.y2c{bottom:634.235733pt;}
.y9a{bottom:634.731200pt;}
.y165{bottom:635.581867pt;}
.y52{bottom:637.491200pt;}
.ye6{bottom:639.009200pt;}
.y8{bottom:640.147733pt;}
.y76{bottom:640.251200pt;}
.y120{bottom:643.141867pt;}
.ybf{bottom:649.045467pt;}
.y2b{bottom:651.569067pt;}
.y99{bottom:653.361200pt;}
.y164{bottom:653.585867pt;}
.y142{bottom:655.153867pt;}
.y51{bottom:655.814533pt;}
.ye5{bottom:657.163867pt;}
.y75{bottom:658.267867pt;}
.y11f{bottom:661.159867pt;}
.ybe{bottom:667.522133pt;}
.y2a{bottom:668.902400pt;}
.y163{bottom:671.589867pt;}
.y98{bottom:671.991200pt;}
.y141{bottom:673.885867pt;}
.y50{bottom:674.137867pt;}
.ye4{bottom:675.318533pt;}
.y74{bottom:676.284533pt;}
.y11e{bottom:684.847867pt;}
.ybd{bottom:685.998800pt;}
.y29{bottom:686.235733pt;}
.y162{bottom:689.593867pt;}
.y97{bottom:690.621200pt;}
.y4f{bottom:692.461200pt;}
.ye3{bottom:693.473200pt;}
.y73{bottom:694.301200pt;}
.y7{bottom:694.636000pt;}
.y140{bottom:698.287867pt;}
.y28{bottom:703.569067pt;}
.ybc{bottom:704.475467pt;}
.y11d{bottom:708.535867pt;}
.y96{bottom:709.251200pt;}
.y4e{bottom:710.784533pt;}
.ye2{bottom:711.627867pt;}
.y72{bottom:712.317867pt;}
.y161{bottom:713.267867pt;}
.y13f{bottom:717.019867pt;}
.y27{bottom:720.902400pt;}
.y6{bottom:720.902667pt;}
.ybb{bottom:722.952133pt;}
.y95{bottom:727.881200pt;}
.y4d{bottom:729.107867pt;}
.ye1{bottom:729.782533pt;}
.y71{bottom:730.334533pt;}
.y160{bottom:731.271867pt;}
.y11c{bottom:732.223867pt;}
.y26{bottom:738.235733pt;}
.y5{bottom:739.609333pt;}
.y13e{bottom:741.421867pt;}
.yba{bottom:741.428800pt;}
.y94{bottom:746.511200pt;}
.y4c{bottom:747.431200pt;}
.ye0{bottom:747.937200pt;}
.y70{bottom:748.351200pt;}
.y15f{bottom:749.275867pt;}
.y25{bottom:755.569067pt;}
.y11b{bottom:755.911867pt;}
.y13d{bottom:760.153867pt;}
.y93{bottom:765.141200pt;}
.y4b{bottom:765.754533pt;}
.y4{bottom:765.876000pt;}
.ydf{bottom:766.091867pt;}
.y6f{bottom:766.367867pt;}
.y15e{bottom:767.279867pt;}
.y24{bottom:772.902400pt;}
.yb9{bottom:778.811733pt;}
.y11a{bottom:779.599867pt;}
.y92{bottom:783.771200pt;}
.y4a{bottom:784.077867pt;}
.yde{bottom:784.246533pt;}
.y6e{bottom:784.384533pt;}
.y13c{bottom:784.555867pt;}
.y3{bottom:784.582667pt;}
.y15d{bottom:785.283867pt;}
.yb8{bottom:800.627733pt;}
.y23{bottom:801.569067pt;}
.y49{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y22{bottom:842.834667pt;}
.y48{bottom:858.834667pt;}
.h8{height:36.229167pt;}
.hc{height:36.796875pt;}
.h4{height:45.286458pt;}
.h3{height:47.550781pt;}
.ha{height:52.079427pt;}
.h7{height:52.265625pt;}
.hd{height:54.878906pt;}
.he{height:55.109840pt;}
.h2{height:56.608073pt;}
.hb{height:60.105469pt;}
.h9{height:61.136719pt;}
.h6{height:63.401042pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:72.067200pt;}
.x6{left:73.079333pt;}
.x5{left:74.453867pt;}
.x1{left:75.590533pt;}
.x9{left:92.668400pt;}
.x4{left:94.187200pt;}
.x8{left:189.034667pt;}
.x3{left:206.741200pt;}
.x2{left:207.834400pt;}
}




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