
    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_a3a4235f498c374b70998dba.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.000000;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_de7ee82138ead453bce4c57f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3b56da7d26f96ead25405ee5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.963000;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_ed77ad1cdda9b400d990a2c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959000;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_dc83624ca81918c56aeb1eb6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a09f8ea67e86db97857a9f1b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.960000;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_dc18215252c4f1528e33db85.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_13024c675deac2e160c3a043.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_56fa3c93ab3a76625894c388.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_35d60491ccd978dcef3824f1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7a25fbefd8ec1a2c25b49ce5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.959000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.774000px;}
.ls9{letter-spacing:-0.738000px;}
.lsf{letter-spacing:-0.306600px;}
.ls6{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.037440px;}
.ls12{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.206400px;}
.lsd{letter-spacing:0.258540px;}
.ls7{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.260880px;}
.ls3{letter-spacing:0.413760px;}
.lsb{letter-spacing:0.612000px;}
.ls1{letter-spacing:0.614820px;}
.lsa{letter-spacing:0.666000px;}
.ls10{letter-spacing:1.080000px;}
.lse{letter-spacing:17.225760px;}
.lsc{letter-spacing:23.706240px;}
.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;}
}
.ws3{word-spacing:-33.226560px;}
.ws0{word-spacing:-26.658720px;}
.ws5{word-spacing:-17.279280px;}
.ws8{word-spacing:-17.225280px;}
.ws4{word-spacing:-16.819680px;}
.wsa{word-spacing:-16.666560px;}
.ws1{word-spacing:-16.613280px;}
.ws9{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.506480px;}
.ws7{word-spacing:-16.306680px;}
.ws6{word-spacing:0.000000px;}
._26{margin-left:-2.223305px;}
._1{margin-left:-1.078727px;}
._0{width:1.075378px;}
._2{width:2.939207px;}
._5{width:4.351735px;}
._3{width:5.382360px;}
._4{width:6.549638px;}
._29{width:7.570041px;}
._6{width:8.604475px;}
._e{width:9.713621px;}
._9{width:10.943168px;}
._8{width:12.900090px;}
._7{width:13.925630px;}
._b{width:15.520754px;}
._a{width:18.104766px;}
._10{width:19.839953px;}
._f{width:21.871129px;}
._12{width:23.485235px;}
._11{width:24.857182px;}
._1c{width:26.831962px;}
._15{width:28.624780px;}
._14{width:29.760203px;}
._1d{width:30.988690px;}
._16{width:32.031240px;}
._19{width:34.063269px;}
._1a{width:35.602534px;}
._1e{width:36.869559px;}
._23{width:37.885994px;}
._18{width:39.681130px;}
._17{width:40.873376px;}
._21{width:41.953560px;}
._22{width:43.043495px;}
._c{width:44.879685px;}
._d{width:45.896961px;}
._1b{width:48.285772px;}
._28{width:49.598076px;}
._2c{width:50.623454px;}
._2f{width:52.349130px;}
._13{width:54.201676px;}
._31{width:55.887752px;}
._25{width:57.786171px;}
._2a{width:58.810167px;}
._2e{width:60.464061px;}
._27{width:61.670697px;}
._2b{width:64.184069px;}
._33{width:81.570816px;}
._24{width:82.884622px;}
._32{width:91.490605px;}
._30{width:100.517084px;}
._20{width:104.702745px;}
._1f{width:106.011688px;}
._2d{width:118.082934px;}
._34{width:133.800296px;}
.fc6{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc5{color:rgb(0,112,192);}
.fc3{color:rgb(84,141,212);}
.fc1{color:rgb(116,34,34);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:30.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-1.080000px;}
.y0{bottom:0.000000px;}
.y6a{bottom:3.420000px;}
.y68{bottom:4.560000px;}
.y9{bottom:5.585700px;}
.y65{bottom:5.646150px;}
.y63{bottom:8.466150px;}
.y7{bottom:8.555850px;}
.ye{bottom:17.819700px;}
.y66{bottom:22.355850px;}
.yc{bottom:30.780000px;}
.yd{bottom:35.280000px;}
.y64{bottom:37.950000px;}
.ya{bottom:43.596150px;}
.y5{bottom:51.696150px;}
.y8{bottom:57.450000px;}
.y61{bottom:61.955850px;}
.y62{bottom:66.450000px;}
.y4{bottom:74.016000px;}
.y6{bottom:85.800000px;}
.y60{bottom:88.596150px;}
.y5f{bottom:93.280500px;}
.y40{bottom:93.998700px;}
.y113{bottom:101.733900px;}
.y5e{bottom:110.560350px;}
.y3f{bottom:111.278550px;}
.ya0{bottom:114.155700px;}
.yda{bottom:115.415100px;}
.y112{bottom:119.013750px;}
.y5d{bottom:127.840800px;}
.y3e{bottom:128.558400px;}
.y9f{bottom:131.435550px;}
.yd9{bottom:132.694950px;}
.y111{bottom:136.293600px;}
.y5c{bottom:145.121250px;}
.y3d{bottom:145.838250px;}
.y9e{bottom:148.716000px;}
.yd8{bottom:149.974800px;}
.y110{bottom:153.567600px;}
.y143{bottom:162.930000px;}
.y3c{bottom:163.112250px;}
.y9d{bottom:165.809550px;}
.yd7{bottom:167.248800px;}
.y10f{bottom:170.847450px;}
.y3b{bottom:180.212250px;}
.y5b{bottom:180.214800px;}
.y9c{bottom:183.090000px;}
.yd6{bottom:184.348800px;}
.y10e{bottom:188.127300px;}
.y3a{bottom:197.492700px;}
.y5a{bottom:197.494650px;}
.y142{bottom:198.029700px;}
.yd5{bottom:201.628650px;}
.y10d{bottom:205.227300px;}
.y39{bottom:214.772550px;}
.y59{bottom:214.774500px;}
.y141{bottom:215.129700px;}
.y9b{bottom:218.369850px;}
.yd4{bottom:218.908500px;}
.y10c{bottom:222.507150px;}
.y38{bottom:232.052400px;}
.y58{bottom:232.054350px;}
.y9a{bottom:235.649700px;}
.yd3{bottom:236.188350px;}
.y10b{bottom:239.787000px;}
.y37{bottom:249.332250px;}
.y57{bottom:249.334200px;}
.y140{bottom:250.590000px;}
.y99{bottom:252.929550px;}
.yd2{bottom:253.468200px;}
.y10a{bottom:257.066850px;}
.y56{bottom:266.614050px;}
.y98{bottom:270.254550px;}
.yd1{bottom:270.793200px;}
.y109{bottom:274.391850px;}
.y55{bottom:283.759200px;}
.y36{bottom:284.657250px;}
.y13f{bottom:285.915000px;}
.y97{bottom:287.354550px;}
.yd0{bottom:287.893200px;}
.y54{bottom:301.039050px;}
.y35{bottom:301.757250px;}
.y96{bottom:304.634400px;}
.ycf{bottom:305.173650px;}
.y108{bottom:309.671700px;}
.y53{bottom:318.319500px;}
.y34{bottom:319.037100px;}
.y95{bottom:321.914850px;}
.yce{bottom:322.454100px;}
.y13e{bottom:323.348700px;}
.y107{bottom:326.771700px;}
.y52{bottom:335.599350px;}
.y33{bottom:336.316950px;}
.y94{bottom:339.194700px;}
.ycd{bottom:339.734550px;}
.y106{bottom:344.051550px;}
.y32{bottom:353.596800px;}
.y93{bottom:356.474550px;}
.ycc{bottom:357.015000px;}
.y13d{bottom:358.809000px;}
.y105{bottom:361.331400px;}
.y31{bottom:370.876650px;}
.y51{bottom:370.879200px;}
.y92{bottom:373.754400px;}
.ycb{bottom:374.294850px;}
.y13c{bottom:376.088850px;}
.y104{bottom:378.611850px;}
.y30{bottom:388.156500px;}
.y50{bottom:388.159050px;}
.yca{bottom:391.394850px;}
.y13b{bottom:393.368700px;}
.y103{bottom:395.891700px;}
.y2f{bottom:405.256500px;}
.y4f{bottom:405.259050px;}
.yc9{bottom:408.674700px;}
.y91{bottom:408.854400px;}
.y4e{bottom:422.538900px;}
.y90{bottom:426.134250px;}
.y13a{bottom:428.648550px;}
.y102{bottom:430.991700px;}
.y4d{bottom:439.818750px;}
.y2e{bottom:440.536350px;}
.y8f{bottom:443.414100px;}
.yc8{bottom:443.954550px;}
.y139{bottom:445.928400px;}
.y101{bottom:448.271550px;}
.y4c{bottom:457.098600px;}
.y2d{bottom:457.816200px;}
.y8e{bottom:460.693950px;}
.yc7{bottom:461.235000px;}
.y138{bottom:463.028400px;}
.y100{bottom:465.551400px;}
.y4b{bottom:474.378450px;}
.y2c{bottom:475.096050px;}
.y8d{bottom:477.973800px;}
.yc6{bottom:478.515450px;}
.y137{bottom:480.488700px;}
.yff{bottom:482.831250px;}
.y4a{bottom:491.478450px;}
.y2b{bottom:492.375900px;}
.y8c{bottom:495.433500px;}
.yc5{bottom:495.615450px;}
.y136{bottom:497.768550px;}
.yfe{bottom:500.111100px;}
.y49{bottom:508.758300px;}
.y2a{bottom:509.475900px;}
.y8b{bottom:512.353650px;}
.yc4{bottom:512.895300px;}
.y135{bottom:514.868550px;}
.yfd{bottom:517.390950px;}
.y48{bottom:526.038150px;}
.y29{bottom:526.755750px;}
.y8a{bottom:529.633500px;}
.yc3{bottom:530.175150px;}
.y134{bottom:532.148400px;}
.yfc{bottom:534.490950px;}
.y47{bottom:543.318600px;}
.y28{bottom:544.035600px;}
.yc2{bottom:547.455000px;}
.yfb{bottom:551.770800px;}
.y46{bottom:560.628300px;}
.y27{bottom:561.345900px;}
.yc1{bottom:564.765300px;}
.y89{bottom:565.483500px;}
.y133{bottom:567.818550px;}
.yfa{bottom:569.080500px;}
.y45{bottom:577.908150px;}
.y26{bottom:578.625750px;}
.yc0{bottom:582.045150px;}
.yf9{bottom:586.360350px;}
.y44{bottom:595.008150px;}
.y25{bottom:595.905600px;}
.ybf{bottom:599.145150px;}
.y88{bottom:601.843800px;}
.yf8{bottom:603.640200px;}
.y132{bottom:604.358850px;}
.y24{bottom:613.005600px;}
.ybe{bottom:616.425000px;}
.y87{bottom:619.123650px;}
.yf7{bottom:620.920050px;}
.y131{bottom:621.638700px;}
.y23{bottom:630.285450px;}
.y43{bottom:630.288000px;}
.ybd{bottom:633.704850px;}
.y86{bottom:636.403500px;}
.yf6{bottom:638.020050px;}
.y130{bottom:638.918550px;}
.y22{bottom:647.565300px;}
.y42{bottom:647.567850px;}
.ybc{bottom:650.984700px;}
.y85{bottom:653.683350px;}
.yf5{bottom:655.300500px;}
.y12f{bottom:656.018550px;}
.y21{bottom:664.845150px;}
.y41{bottom:664.847700px;}
.ybb{bottom:668.264550px;}
.y84{bottom:670.963200px;}
.yf4{bottom:672.580950px;}
.y12e{bottom:673.298400px;}
.yba{bottom:685.544400px;}
.y83{bottom:688.243050px;}
.y12d{bottom:690.578250px;}
.y20{bottom:699.765300px;}
.yb9{bottom:702.644400px;}
.y82{bottom:705.343050px;}
.y12c{bottom:707.858100px;}
.yf3{bottom:707.860800px;}
.yb8{bottom:719.924250px;}
.y81{bottom:722.622900px;}
.y12b{bottom:725.137950px;}
.yf2{bottom:725.140650px;}
.y1f{bottom:733.605000px;}
.yb7{bottom:737.204100px;}
.y80{bottom:739.902750px;}
.y12a{bottom:742.237950px;}
.yf1{bottom:742.240650px;}
.y129{bottom:759.518400px;}
.yf0{bottom:759.520500px;}
.y1e{bottom:768.885450px;}
.yb6{bottom:772.844400px;}
.y7f{bottom:775.182600px;}
.y128{bottom:776.798850px;}
.yef{bottom:776.800350px;}
.y1d{bottom:786.165300px;}
.yb5{bottom:791.924250px;}
.y7e{bottom:792.463050px;}
.y127{bottom:794.079300px;}
.yee{bottom:794.080200px;}
.y1c{bottom:803.265300px;}
.y7d{bottom:809.563050px;}
.yed{bottom:811.360050px;}
.y1b{bottom:820.545150px;}
.y7c{bottom:826.842900px;}
.yb4{bottom:828.464550px;}
.yec{bottom:828.639900px;}
.y126{bottom:829.359150px;}
.y1a{bottom:837.870150px;}
.y7b{bottom:844.167900px;}
.yb3{bottom:845.609100px;}
.y125{bottom:846.684150px;}
.y19{bottom:855.150000px;}
.y7a{bottom:861.448350px;}
.yb2{bottom:862.889550px;}
.y124{bottom:863.784150px;}
.yeb{bottom:863.785050px;}
.y18{bottom:872.429850px;}
.y79{bottom:878.728800px;}
.yb1{bottom:880.170000px;}
.y123{bottom:881.064600px;}
.yea{bottom:881.065500px;}
.y17{bottom:889.710300px;}
.y78{bottom:896.009250px;}
.yb0{bottom:897.450450px;}
.y122{bottom:898.345050px;}
.ye9{bottom:898.345950px;}
.y16{bottom:906.809700px;}
.yaf{bottom:914.730900px;}
.y121{bottom:915.625500px;}
.ye8{bottom:915.626400px;}
.y15{bottom:924.090150px;}
.y77{bottom:931.108650px;}
.yae{bottom:932.011350px;}
.y120{bottom:932.905950px;}
.ye7{bottom:932.906850px;}
.y76{bottom:948.389100px;}
.yad{bottom:949.110750px;}
.y11f{bottom:950.186400px;}
.ye6{bottom:950.187300px;}
.y14{bottom:959.370000px;}
.y75{bottom:965.669550px;}
.yac{bottom:966.390600px;}
.y11e{bottom:967.286400px;}
.ye5{bottom:967.287300px;}
.y74{bottom:982.950000px;}
.yab{bottom:983.670450px;}
.y11d{bottom:984.566850px;}
.ye4{bottom:984.567750px;}
.y13{bottom:995.370000px;}
.y73{bottom:1000.230450px;}
.yaa{bottom:1000.950300px;}
.y11c{bottom:1001.847300px;}
.ye3{bottom:1001.848200px;}
.y72{bottom:1017.510900px;}
.ya9{bottom:1018.230150px;}
.y11b{bottom:1019.127750px;}
.ye2{bottom:1019.128650px;}
.y71{bottom:1034.610300px;}
.ya8{bottom:1035.510600px;}
.y11a{bottom:1036.408200px;}
.ye1{bottom:1036.409100px;}
.y12{bottom:1037.129700px;}
.y70{bottom:1051.890750px;}
.ya7{bottom:1052.610000px;}
.y119{bottom:1053.688650px;}
.ye0{bottom:1053.689550px;}
.ydf{bottom:1070.789550px;}
.y6f{bottom:1087.350450px;}
.ya6{bottom:1087.890450px;}
.yde{bottom:1088.069400px;}
.y118{bottom:1088.788650px;}
.y11{bottom:1093.109550px;}
.ya5{bottom:1105.170300px;}
.y117{bottom:1106.068500px;}
.ya4{bottom:1122.480000px;}
.y6e{bottom:1122.480300px;}
.y116{bottom:1123.378200px;}
.ydd{bottom:1123.379100px;}
.y10{bottom:1130.940000px;}
.ya3{bottom:1139.759850px;}
.y6d{bottom:1139.760150px;}
.y115{bottom:1140.658050px;}
.ydc{bottom:1140.659550px;}
.ya2{bottom:1157.039700px;}
.y6c{bottom:1157.040000px;}
.y114{bottom:1157.937900px;}
.ydb{bottom:1157.940000px;}
.ya1{bottom:1174.139700px;}
.y6b{bottom:1174.140000px;}
.yb{bottom:1191.060000px;}
.y3{bottom:1194.300000px;}
.y67{bottom:1221.600000px;}
.y69{bottom:1224.540000px;}
.y2{bottom:1232.460300px;}
.y1{bottom:1251.000000px;}
.h2{height:0.000000px;}
.h16{height:17.099400px;}
.h15{height:20.100000px;}
.h4{height:20.155078px;}
.h11{height:22.528800px;}
.h8{height:27.750000px;}
.h13{height:27.900000px;}
.h14{height:38.100000px;}
.h10{height:40.014000px;}
.h3{height:44.149219px;}
.hb{height:44.282160px;}
.h7{height:44.521200px;}
.he{height:49.083840px;}
.h17{height:49.348800px;}
.hc{height:50.580450px;}
.h5{height:53.640000px;}
.hd{height:56.146289px;}
.ha{height:57.600000px;}
.h9{height:70.958160px;}
.hf{height:98.161200px;}
.h6{height:762.750000px;}
.h12{height:830.400000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:41.700000px;}
.w5{width:49.500000px;}
.w6{width:56.850000px;}
.w3{width:74.159700px;}
.w4{width:560.310000px;}
.w7{width:762.840000px;}
.w1{width:894.000000px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x4{left:1.260000px;}
.x5{left:8.100000px;}
.x7{left:10.655850px;}
.x3{left:27.360000px;}
.x10{left:34.260000px;}
.x6{left:63.540300px;}
.x1{left:74.340300px;}
.x8{left:95.976000px;}
.xc{left:133.056450px;}
.x12{left:135.749700px;}
.x9{left:141.696150px;}
.xd{left:166.711710px;}
.xb{left:394.815450px;}
.xa{left:455.325150px;}
.xe{left:482.686905px;}
.x13{left:536.685765px;}
.x11{left:837.150000px;}
.xf{left:844.500000px;}
.x2{left:852.300000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.688000pt;}
.ls9{letter-spacing:-0.656000pt;}
.lsf{letter-spacing:-0.272533pt;}
.ls6{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.033280pt;}
.ls12{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.183467pt;}
.lsd{letter-spacing:0.229813pt;}
.ls7{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231893pt;}
.ls3{letter-spacing:0.367787pt;}
.lsb{letter-spacing:0.544000pt;}
.ls1{letter-spacing:0.546507pt;}
.lsa{letter-spacing:0.592000pt;}
.ls10{letter-spacing:0.960000pt;}
.lse{letter-spacing:15.311787pt;}
.lsc{letter-spacing:21.072213pt;}
.ws3{word-spacing:-29.534720pt;}
.ws0{word-spacing:-23.696640pt;}
.ws5{word-spacing:-15.359360pt;}
.ws8{word-spacing:-15.311360pt;}
.ws4{word-spacing:-14.950827pt;}
.wsa{word-spacing:-14.814720pt;}
.ws1{word-spacing:-14.767360pt;}
.ws9{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.672427pt;}
.ws7{word-spacing:-14.494827pt;}
.ws6{word-spacing:0.000000pt;}
._26{margin-left:-1.976271pt;}
._1{margin-left:-0.958868pt;}
._0{width:0.955892pt;}
._2{width:2.612629pt;}
._5{width:3.868209pt;}
._3{width:4.784320pt;}
._4{width:5.821901pt;}
._29{width:6.728926pt;}
._6{width:7.648423pt;}
._e{width:8.634330pt;}
._9{width:9.727260pt;}
._8{width:11.466746pt;}
._7{width:12.378338pt;}
._b{width:13.796226pt;}
._a{width:16.093125pt;}
._10{width:17.635514pt;}
._f{width:19.441004pt;}
._12{width:20.875764pt;}
._11{width:22.095272pt;}
._1c{width:23.850633pt;}
._15{width:25.444249pt;}
._14{width:26.453514pt;}
._1d{width:27.545502pt;}
._16{width:28.472214pt;}
._19{width:30.278461pt;}
._1a{width:31.646697pt;}
._1e{width:32.772942pt;}
._23{width:33.676439pt;}
._18{width:35.272116pt;}
._17{width:36.331890pt;}
._21{width:37.292054pt;}
._22{width:38.260884pt;}
._c{width:39.893054pt;}
._d{width:40.797299pt;}
._1b{width:42.920686pt;}
._28{width:44.087179pt;}
._2c{width:44.998626pt;}
._2f{width:46.532560pt;}
._13{width:48.179267pt;}
._31{width:49.678002pt;}
._25{width:51.365485pt;}
._2a{width:52.275704pt;}
._2e{width:53.745832pt;}
._27{width:54.818397pt;}
._2b{width:57.052505pt;}
._33{width:72.507392pt;}
._24{width:73.675220pt;}
._32{width:81.324982pt;}
._30{width:89.348519pt;}
._20{width:93.069107pt;}
._1f{width:94.232611pt;}
._2d{width:104.962608pt;}
._34{width:118.933596pt;}
.fs2{font-size:26.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-0.960000pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:3.040000pt;}
.y68{bottom:4.053333pt;}
.y9{bottom:4.965067pt;}
.y65{bottom:5.018800pt;}
.y63{bottom:7.525467pt;}
.y7{bottom:7.605200pt;}
.ye{bottom:15.839733pt;}
.y66{bottom:19.871867pt;}
.yc{bottom:27.360000pt;}
.yd{bottom:31.360000pt;}
.y64{bottom:33.733333pt;}
.ya{bottom:38.752133pt;}
.y5{bottom:45.952133pt;}
.y8{bottom:51.066667pt;}
.y61{bottom:55.071867pt;}
.y62{bottom:59.066667pt;}
.y4{bottom:65.792000pt;}
.y6{bottom:76.266667pt;}
.y60{bottom:78.752133pt;}
.y5f{bottom:82.916000pt;}
.y40{bottom:83.554400pt;}
.y113{bottom:90.430133pt;}
.y5e{bottom:98.275867pt;}
.y3f{bottom:98.914267pt;}
.ya0{bottom:101.471733pt;}
.yda{bottom:102.591200pt;}
.y112{bottom:105.790000pt;}
.y5d{bottom:113.636267pt;}
.y3e{bottom:114.274133pt;}
.y9f{bottom:116.831600pt;}
.yd9{bottom:117.951067pt;}
.y111{bottom:121.149867pt;}
.y5c{bottom:128.996667pt;}
.y3d{bottom:129.634000pt;}
.y9e{bottom:132.192000pt;}
.yd8{bottom:133.310933pt;}
.y110{bottom:136.504533pt;}
.y143{bottom:144.826667pt;}
.y3c{bottom:144.988667pt;}
.y9d{bottom:147.386267pt;}
.yd7{bottom:148.665600pt;}
.y10f{bottom:151.864400pt;}
.y3b{bottom:160.188667pt;}
.y5b{bottom:160.190933pt;}
.y9c{bottom:162.746667pt;}
.yd6{bottom:163.865600pt;}
.y10e{bottom:167.224267pt;}
.y3a{bottom:175.549067pt;}
.y5a{bottom:175.550800pt;}
.y142{bottom:176.026400pt;}
.yd5{bottom:179.225467pt;}
.y10d{bottom:182.424267pt;}
.y39{bottom:190.908933pt;}
.y59{bottom:190.910667pt;}
.y141{bottom:191.226400pt;}
.y9b{bottom:194.106533pt;}
.yd4{bottom:194.585333pt;}
.y10c{bottom:197.784133pt;}
.y38{bottom:206.268800pt;}
.y58{bottom:206.270533pt;}
.y9a{bottom:209.466400pt;}
.yd3{bottom:209.945200pt;}
.y10b{bottom:213.144000pt;}
.y37{bottom:221.628667pt;}
.y57{bottom:221.630400pt;}
.y140{bottom:222.746667pt;}
.y99{bottom:224.826267pt;}
.yd2{bottom:225.305067pt;}
.y10a{bottom:228.503867pt;}
.y56{bottom:236.990267pt;}
.y98{bottom:240.226267pt;}
.yd1{bottom:240.705067pt;}
.y109{bottom:243.903867pt;}
.y55{bottom:252.230400pt;}
.y36{bottom:253.028667pt;}
.y13f{bottom:254.146667pt;}
.y97{bottom:255.426267pt;}
.yd0{bottom:255.905067pt;}
.y54{bottom:267.590267pt;}
.y35{bottom:268.228667pt;}
.y96{bottom:270.786133pt;}
.ycf{bottom:271.265467pt;}
.y108{bottom:275.263733pt;}
.y53{bottom:282.950667pt;}
.y34{bottom:283.588533pt;}
.y95{bottom:286.146533pt;}
.yce{bottom:286.625867pt;}
.y13e{bottom:287.421067pt;}
.y107{bottom:290.463733pt;}
.y52{bottom:298.310533pt;}
.y33{bottom:298.948400pt;}
.y94{bottom:301.506400pt;}
.ycd{bottom:301.986267pt;}
.y106{bottom:305.823600pt;}
.y32{bottom:314.308267pt;}
.y93{bottom:316.866267pt;}
.ycc{bottom:317.346667pt;}
.y13d{bottom:318.941333pt;}
.y105{bottom:321.183467pt;}
.y31{bottom:329.668133pt;}
.y51{bottom:329.670400pt;}
.y92{bottom:332.226133pt;}
.ycb{bottom:332.706533pt;}
.y13c{bottom:334.301200pt;}
.y104{bottom:336.543867pt;}
.y30{bottom:345.028000pt;}
.y50{bottom:345.030267pt;}
.yca{bottom:347.906533pt;}
.y13b{bottom:349.661067pt;}
.y103{bottom:351.903733pt;}
.y2f{bottom:360.228000pt;}
.y4f{bottom:360.230267pt;}
.yc9{bottom:363.266400pt;}
.y91{bottom:363.426133pt;}
.y4e{bottom:375.590133pt;}
.y90{bottom:378.786000pt;}
.y13a{bottom:381.020933pt;}
.y102{bottom:383.103733pt;}
.y4d{bottom:390.950000pt;}
.y2e{bottom:391.587867pt;}
.y8f{bottom:394.145867pt;}
.yc8{bottom:394.626267pt;}
.y139{bottom:396.380800pt;}
.y101{bottom:398.463600pt;}
.y4c{bottom:406.309867pt;}
.y2d{bottom:406.947733pt;}
.y8e{bottom:409.505733pt;}
.yc7{bottom:409.986667pt;}
.y138{bottom:411.580800pt;}
.y100{bottom:413.823467pt;}
.y4b{bottom:421.669733pt;}
.y2c{bottom:422.307600pt;}
.y8d{bottom:424.865600pt;}
.yc6{bottom:425.347067pt;}
.y137{bottom:427.101067pt;}
.yff{bottom:429.183333pt;}
.y4a{bottom:436.869733pt;}
.y2b{bottom:437.667467pt;}
.y8c{bottom:440.385333pt;}
.yc5{bottom:440.547067pt;}
.y136{bottom:442.460933pt;}
.yfe{bottom:444.543200pt;}
.y49{bottom:452.229600pt;}
.y2a{bottom:452.867467pt;}
.y8b{bottom:455.425467pt;}
.yc4{bottom:455.906933pt;}
.y135{bottom:457.660933pt;}
.yfd{bottom:459.903067pt;}
.y48{bottom:467.589467pt;}
.y29{bottom:468.227333pt;}
.y8a{bottom:470.785333pt;}
.yc3{bottom:471.266800pt;}
.y134{bottom:473.020800pt;}
.yfc{bottom:475.103067pt;}
.y47{bottom:482.949867pt;}
.y28{bottom:483.587200pt;}
.yc2{bottom:486.626667pt;}
.yfb{bottom:490.462933pt;}
.y46{bottom:498.336267pt;}
.y27{bottom:498.974133pt;}
.yc1{bottom:502.013600pt;}
.y89{bottom:502.652000pt;}
.y133{bottom:504.727600pt;}
.yfa{bottom:505.849333pt;}
.y45{bottom:513.696133pt;}
.y26{bottom:514.334000pt;}
.yc0{bottom:517.373467pt;}
.yf9{bottom:521.209200pt;}
.y44{bottom:528.896133pt;}
.y25{bottom:529.693867pt;}
.ybf{bottom:532.573467pt;}
.y88{bottom:534.972267pt;}
.yf8{bottom:536.569067pt;}
.y132{bottom:537.207867pt;}
.y24{bottom:544.893867pt;}
.ybe{bottom:547.933333pt;}
.y87{bottom:550.332133pt;}
.yf7{bottom:551.928933pt;}
.y131{bottom:552.567733pt;}
.y23{bottom:560.253733pt;}
.y43{bottom:560.256000pt;}
.ybd{bottom:563.293200pt;}
.y86{bottom:565.692000pt;}
.yf6{bottom:567.128933pt;}
.y130{bottom:567.927600pt;}
.y22{bottom:575.613600pt;}
.y42{bottom:575.615867pt;}
.ybc{bottom:578.653067pt;}
.y85{bottom:581.051867pt;}
.yf5{bottom:582.489333pt;}
.y12f{bottom:583.127600pt;}
.y21{bottom:590.973467pt;}
.y41{bottom:590.975733pt;}
.ybb{bottom:594.012933pt;}
.y84{bottom:596.411733pt;}
.yf4{bottom:597.849733pt;}
.y12e{bottom:598.487467pt;}
.yba{bottom:609.372800pt;}
.y83{bottom:611.771600pt;}
.y12d{bottom:613.847333pt;}
.y20{bottom:622.013600pt;}
.yb9{bottom:624.572800pt;}
.y82{bottom:626.971600pt;}
.y12c{bottom:629.207200pt;}
.yf3{bottom:629.209600pt;}
.yb8{bottom:639.932667pt;}
.y81{bottom:642.331467pt;}
.y12b{bottom:644.567067pt;}
.yf2{bottom:644.569467pt;}
.y1f{bottom:652.093333pt;}
.yb7{bottom:655.292533pt;}
.y80{bottom:657.691333pt;}
.y12a{bottom:659.767067pt;}
.yf1{bottom:659.769467pt;}
.y129{bottom:675.127467pt;}
.yf0{bottom:675.129333pt;}
.y1e{bottom:683.453733pt;}
.yb6{bottom:686.972800pt;}
.y7f{bottom:689.051200pt;}
.y128{bottom:690.487867pt;}
.yef{bottom:690.489200pt;}
.y1d{bottom:698.813600pt;}
.yb5{bottom:703.932667pt;}
.y7e{bottom:704.411600pt;}
.y127{bottom:705.848267pt;}
.yee{bottom:705.849067pt;}
.y1c{bottom:714.013600pt;}
.y7d{bottom:719.611600pt;}
.yed{bottom:721.208933pt;}
.y1b{bottom:729.373467pt;}
.y7c{bottom:734.971467pt;}
.yb4{bottom:736.412933pt;}
.yec{bottom:736.568800pt;}
.y126{bottom:737.208133pt;}
.y1a{bottom:744.773467pt;}
.y7b{bottom:750.371467pt;}
.yb3{bottom:751.652533pt;}
.y125{bottom:752.608133pt;}
.y19{bottom:760.133333pt;}
.y7a{bottom:765.731867pt;}
.yb2{bottom:767.012933pt;}
.y124{bottom:767.808133pt;}
.yeb{bottom:767.808933pt;}
.y18{bottom:775.493200pt;}
.y79{bottom:781.092267pt;}
.yb1{bottom:782.373333pt;}
.y123{bottom:783.168533pt;}
.yea{bottom:783.169333pt;}
.y17{bottom:790.853600pt;}
.y78{bottom:796.452667pt;}
.yb0{bottom:797.733733pt;}
.y122{bottom:798.528933pt;}
.ye9{bottom:798.529733pt;}
.y16{bottom:806.053067pt;}
.yaf{bottom:813.094133pt;}
.y121{bottom:813.889333pt;}
.ye8{bottom:813.890133pt;}
.y15{bottom:821.413467pt;}
.y77{bottom:827.652133pt;}
.yae{bottom:828.454533pt;}
.y120{bottom:829.249733pt;}
.ye7{bottom:829.250533pt;}
.y76{bottom:843.012533pt;}
.yad{bottom:843.654000pt;}
.y11f{bottom:844.610133pt;}
.ye6{bottom:844.610933pt;}
.y14{bottom:852.773333pt;}
.y75{bottom:858.372933pt;}
.yac{bottom:859.013867pt;}
.y11e{bottom:859.810133pt;}
.ye5{bottom:859.810933pt;}
.y74{bottom:873.733333pt;}
.yab{bottom:874.373733pt;}
.y11d{bottom:875.170533pt;}
.ye4{bottom:875.171333pt;}
.y13{bottom:884.773333pt;}
.y73{bottom:889.093733pt;}
.yaa{bottom:889.733600pt;}
.y11c{bottom:890.530933pt;}
.ye3{bottom:890.531733pt;}
.y72{bottom:904.454133pt;}
.ya9{bottom:905.093467pt;}
.y11b{bottom:905.891333pt;}
.ye2{bottom:905.892133pt;}
.y71{bottom:919.653600pt;}
.ya8{bottom:920.453867pt;}
.y11a{bottom:921.251733pt;}
.ye1{bottom:921.252533pt;}
.y12{bottom:921.893067pt;}
.y70{bottom:935.014000pt;}
.ya7{bottom:935.653333pt;}
.y119{bottom:936.612133pt;}
.ye0{bottom:936.612933pt;}
.ydf{bottom:951.812933pt;}
.y6f{bottom:966.533733pt;}
.ya6{bottom:967.013733pt;}
.yde{bottom:967.172800pt;}
.y118{bottom:967.812133pt;}
.y11{bottom:971.652933pt;}
.ya5{bottom:982.373600pt;}
.y117{bottom:983.172000pt;}
.ya4{bottom:997.760000pt;}
.y6e{bottom:997.760267pt;}
.y116{bottom:998.558400pt;}
.ydd{bottom:998.559200pt;}
.y10{bottom:1005.280000pt;}
.ya3{bottom:1013.119867pt;}
.y6d{bottom:1013.120133pt;}
.y115{bottom:1013.918267pt;}
.ydc{bottom:1013.919600pt;}
.ya2{bottom:1028.479733pt;}
.y6c{bottom:1028.480000pt;}
.y114{bottom:1029.278133pt;}
.ydb{bottom:1029.280000pt;}
.ya1{bottom:1043.679733pt;}
.y6b{bottom:1043.680000pt;}
.yb{bottom:1058.720000pt;}
.y3{bottom:1061.600000pt;}
.y67{bottom:1085.866667pt;}
.y69{bottom:1088.480000pt;}
.y2{bottom:1095.520267pt;}
.y1{bottom:1112.000000pt;}
.h2{height:0.000000pt;}
.h16{height:15.199467pt;}
.h15{height:17.866667pt;}
.h4{height:17.915625pt;}
.h11{height:20.025600pt;}
.h8{height:24.666667pt;}
.h13{height:24.800000pt;}
.h14{height:33.866667pt;}
.h10{height:35.568000pt;}
.h3{height:39.243750pt;}
.hb{height:39.361920pt;}
.h7{height:39.574400pt;}
.he{height:43.630080pt;}
.h17{height:43.865600pt;}
.hc{height:44.960400pt;}
.h5{height:47.680000pt;}
.hd{height:49.907812pt;}
.ha{height:51.200000pt;}
.h9{height:63.073920pt;}
.hf{height:87.254400pt;}
.h6{height:678.000000pt;}
.h12{height:738.133333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:37.066667pt;}
.w5{width:44.000000pt;}
.w6{width:50.533333pt;}
.w3{width:65.919733pt;}
.w4{width:498.053333pt;}
.w7{width:678.080000pt;}
.w1{width:794.666667pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x4{left:1.120000pt;}
.x5{left:7.200000pt;}
.x7{left:9.471867pt;}
.x3{left:24.320000pt;}
.x10{left:30.453333pt;}
.x6{left:56.480267pt;}
.x1{left:66.080267pt;}
.x8{left:85.312000pt;}
.xc{left:118.272400pt;}
.x12{left:120.666400pt;}
.x9{left:125.952133pt;}
.xd{left:148.188187pt;}
.xb{left:350.947067pt;}
.xa{left:404.733467pt;}
.xe{left:429.055027pt;}
.x13{left:477.054013pt;}
.x11{left:744.133333pt;}
.xf{left:750.666667pt;}
.x2{left:757.600000pt;}
}




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