
    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_194ca84d71661ec0cbfa5821.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_dfe43f00aa873b4d3575213d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.887207;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_4716d7e065d16c3995dc90d9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9e206e0f6c12a538b95b79ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.111133;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_b1cedcf19e423f9f6ed8ee49.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.116211;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_0da03e1ce465cf74559d69a6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.961000;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_3cd4098b03d99cc03b397b05.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.967000;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_83c9c354a3e33ad76fdda7fe.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064000;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_5069e5e4f6e1e78af628fee5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.764000;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_a7cc9816ff49d9bae75d0b5e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.110533;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_a2c91be2259a9e627572ea9c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.961000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ebe37147cda0b3fe07544323.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.951000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_eac59c198819a3eeb01aa3a6.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_08098255069606a9e9daea39.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_1fa3c584fd6443db74080b64.woff2')format("woff");}.fff{font-family:fff;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;}
.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;}
.ls17{letter-spacing:-4.148280px;}
.ls13{letter-spacing:-3.066120px;}
.ls25{letter-spacing:-2.705400px;}
.ls18{letter-spacing:-2.585160px;}
.ls26{letter-spacing:-2.344680px;}
.ls2c{letter-spacing:-2.224440px;}
.ls1e{letter-spacing:-1.623240px;}
.ls27{letter-spacing:-1.382760px;}
.ls14{letter-spacing:-0.901800px;}
.ls11{letter-spacing:-0.360720px;}
.lse{letter-spacing:-0.240480px;}
.lsd{letter-spacing:-0.180360px;}
.ls9{letter-spacing:-0.131760px;}
.ls1{letter-spacing:-0.120240px;}
.lsb{letter-spacing:-0.078120px;}
.ls7{letter-spacing:-0.065880px;}
.lsc{letter-spacing:-0.060120px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.060120px;}
.ls6{letter-spacing:0.065880px;}
.lsa{letter-spacing:0.078120px;}
.ls12{letter-spacing:0.120240px;}
.ls8{letter-spacing:0.131760px;}
.lsf{letter-spacing:0.180360px;}
.ls2b{letter-spacing:0.197640px;}
.ls0{letter-spacing:1.274544px;}
.ls16{letter-spacing:1.563120px;}
.ls29{letter-spacing:1.923840px;}
.ls19{letter-spacing:1.995984px;}
.ls23{letter-spacing:2.645280px;}
.ls1c{letter-spacing:3.366720px;}
.ls28{letter-spacing:6.252480px;}
.ls1a{letter-spacing:6.613200px;}
.ls15{letter-spacing:8.056080px;}
.ls21{letter-spacing:11.663280px;}
.ls1d{letter-spacing:14.909760px;}
.ls22{letter-spacing:15.991920px;}
.ls1b{letter-spacing:17.074080px;}
.ls5{letter-spacing:17.704080px;}
.ls4{letter-spacing:18.100440px;}
.ls20{letter-spacing:45.510840px;}
.ls10{letter-spacing:50.200200px;}
.ls1f{letter-spacing:62.103960px;}
.ls24{letter-spacing:847.546200px;}
.ls2a{letter-spacing:848.954520px;}
.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:-52.055280px;}
.wsc{word-spacing:-18.100440px;}
.ws1e{word-spacing:-16.352640px;}
.ws1d{word-spacing:-16.292520px;}
.ws22{word-spacing:-16.232400px;}
.ws7{word-spacing:-16.172280px;}
.ws6{word-spacing:-16.112160px;}
.ws17{word-spacing:-16.052040px;}
.ws23{word-spacing:-15.991920px;}
.ws27{word-spacing:-15.877080px;}
.ws1c{word-spacing:-14.729400px;}
.ws4{word-spacing:-14.609160px;}
.ws8{word-spacing:-14.549040px;}
.ws16{word-spacing:-14.488920px;}
.ws9{word-spacing:-14.428800px;}
.ws24{word-spacing:-13.226400px;}
.ws1b{word-spacing:-8.056080px;}
.wsd{word-spacing:-0.197640px;}
.ws15{word-spacing:-0.180360px;}
.wsf{word-spacing:-0.131760px;}
.ws0{word-spacing:-0.120240px;}
.ws11{word-spacing:-0.078120px;}
.ws5{word-spacing:-0.065880px;}
.ws1{word-spacing:-0.060120px;}
.wsb{word-spacing:0.000000px;}
.ws2{word-spacing:0.060120px;}
.wse{word-spacing:0.065880px;}
.ws12{word-spacing:0.078120px;}
.wsa{word-spacing:0.120240px;}
.ws10{word-spacing:0.131760px;}
.ws13{word-spacing:0.180360px;}
.ws14{word-spacing:0.240480px;}
.ws18{word-spacing:0.360720px;}
.ws1a{word-spacing:0.901800px;}
.ws21{word-spacing:1.623240px;}
.ws28{word-spacing:2.224440px;}
.ws26{word-spacing:2.344680px;}
.ws20{word-spacing:2.585160px;}
.ws25{word-spacing:2.705400px;}
.ws19{word-spacing:3.066120px;}
.ws1f{word-spacing:4.148280px;}
._1c{margin-left:-10.322604px;}
._1d{margin-left:-8.996256px;}
._1b{margin-left:-7.926804px;}
._21{margin-left:-6.205896px;}
._12{margin-left:-4.641264px;}
._7{margin-left:-3.576384px;}
._5{margin-left:-2.197764px;}
._3{margin-left:-1.052100px;}
._0{width:1.052100px;}
._6{width:2.080152px;}
._c{width:3.129624px;}
._8{width:4.178340px;}
._9{width:5.351436px;}
._b{width:7.238448px;}
._10{width:8.830872px;}
._13{width:10.714140px;}
._f{width:11.717388px;}
._a{width:12.832056px;}
._1f{width:14.179680px;}
._16{width:16.211736px;}
._4{width:17.434980px;}
._e{width:18.436176px;}
._d{width:19.664496px;}
._17{width:20.855628px;}
._1a{width:22.220352px;}
._1e{width:23.271696px;}
._11{width:24.382044px;}
._26{width:25.626528px;}
._20{width:26.813520px;}
._18{width:28.707300px;}
._19{width:29.789460px;}
._23{width:40.232304px;}
._22{width:41.632344px;}
._24{width:42.691212px;}
._29{width:44.766108px;}
._28{width:46.012464px;}
._14{width:47.194200px;}
._15{width:51.528096px;}
._2a{width:99.733068px;}
._2b{width:156.934620px;}
._1{width:284.036940px;}
._2c{width:975.807720px;}
._25{width:977.250600px;}
._2{width:979.414920px;}
._27{width:982.661400px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.120000px;}
.fs2{font-size:65.880000px;}
.fs3{font-size:78.120000px;}
.fs1{font-size:132.120000px;}
.y0{bottom:0.000000px;}
.y76{bottom:98.180910px;}
.yaa{bottom:98.346240px;}
.y32{bottom:105.243030px;}
.y43{bottom:105.303150px;}
.y75{bottom:119.057580px;}
.ya9{bottom:119.222910px;}
.y31{bottom:126.119700px;}
.y42{bottom:126.179820px;}
.y74{bottom:139.934250px;}
.ya8{bottom:140.099580px;}
.y30{bottom:146.996370px;}
.y41{bottom:147.056490px;}
.y73{bottom:160.810920px;}
.ya7{bottom:160.976250px;}
.y2f{bottom:167.873040px;}
.y40{bottom:167.933160px;}
.y72{bottom:181.687590px;}
.ya6{bottom:181.852920px;}
.y2e{bottom:188.659530px;}
.y3f{bottom:188.719650px;}
.yd9{bottom:198.805680px;}
.y71{bottom:202.564260px;}
.ya5{bottom:202.729590px;}
.y2d{bottom:209.536200px;}
.y3e{bottom:209.596320px;}
.yd8{bottom:220.677840px;}
.y70{bottom:223.440930px;}
.ya4{bottom:223.606260px;}
.y2c{bottom:230.412870px;}
.y3d{bottom:230.472990px;}
.yd7{bottom:242.550000px;}
.y6f{bottom:244.227420px;}
.ya3{bottom:244.392750px;}
.y2b{bottom:251.289540px;}
.y3c{bottom:251.349660px;}
.y6e{bottom:265.104090px;}
.yd6{bottom:265.254390px;}
.ya2{bottom:265.269420px;}
.y2a{bottom:272.166210px;}
.y3b{bottom:272.226330px;}
.y6d{bottom:285.980760px;}
.yd5{bottom:286.131060px;}
.ya1{bottom:286.146090px;}
.y29{bottom:293.042880px;}
.y3a{bottom:293.103000px;}
.y6c{bottom:306.857430px;}
.yd4{bottom:307.007730px;}
.ya0{bottom:307.022760px;}
.y28{bottom:313.919550px;}
.y39{bottom:313.979670px;}
.y6b{bottom:327.734100px;}
.yd3{bottom:327.884400px;}
.y9f{bottom:327.899430px;}
.y27{bottom:334.796220px;}
.y38{bottom:334.856340px;}
.y6a{bottom:348.610770px;}
.yd2{bottom:348.761070px;}
.y9e{bottom:348.776100px;}
.y26{bottom:355.582710px;}
.y37{bottom:355.642830px;}
.y69{bottom:369.487440px;}
.yd1{bottom:369.637740px;}
.y9d{bottom:369.652770px;}
.y25{bottom:376.459380px;}
.y36{bottom:376.519500px;}
.y68{bottom:390.364110px;}
.yd0{bottom:390.514410px;}
.y9c{bottom:390.529440px;}
.y24{bottom:397.336050px;}
.y35{bottom:397.396170px;}
.y67{bottom:411.150600px;}
.ycf{bottom:411.300900px;}
.y9b{bottom:411.315930px;}
.y23{bottom:418.212720px;}
.y34{bottom:418.272840px;}
.y66{bottom:432.027270px;}
.yce{bottom:432.177570px;}
.y9a{bottom:432.192600px;}
.y22{bottom:439.089390px;}
.y33{bottom:439.149510px;}
.y65{bottom:452.903940px;}
.ycd{bottom:453.054240px;}
.y99{bottom:453.069270px;}
.y21{bottom:458.974080px;}
.y64{bottom:473.780610px;}
.ycc{bottom:473.930910px;}
.y98{bottom:473.945940px;}
.y20{bottom:478.858770px;}
.y63{bottom:494.657280px;}
.ycb{bottom:494.807580px;}
.y97{bottom:494.822610px;}
.y1f{bottom:498.743460px;}
.y62{bottom:515.533950px;}
.yca{bottom:515.684250px;}
.y96{bottom:515.699280px;}
.y1e{bottom:518.628150px;}
.y61{bottom:536.410620px;}
.yc9{bottom:536.560920px;}
.y95{bottom:536.575950px;}
.y1d{bottom:538.422660px;}
.y60{bottom:557.287290px;}
.yc8{bottom:557.437590px;}
.y94{bottom:557.452620px;}
.y1c{bottom:558.307350px;}
.y5f{bottom:578.073780px;}
.y1b{bottom:578.192040px;}
.yc7{bottom:578.224080px;}
.y93{bottom:578.239110px;}
.y1a{bottom:598.076730px;}
.y5e{bottom:598.950450px;}
.yc6{bottom:599.100750px;}
.y92{bottom:599.115780px;}
.yf4{bottom:609.914700px;}
.y19{bottom:617.961420px;}
.y5d{bottom:619.827120px;}
.yc5{bottom:619.977420px;}
.y91{bottom:619.992450px;}
.yf3{bottom:629.799390px;}
.y18{bottom:637.846110px;}
.y5c{bottom:640.703790px;}
.yc4{bottom:640.854090px;}
.y90{bottom:640.869120px;}
.yf2{bottom:649.684080px;}
.y17{bottom:657.640620px;}
.y5b{bottom:661.580460px;}
.yc3{bottom:661.730760px;}
.y8f{bottom:661.745790px;}
.yf1{bottom:669.568770px;}
.y16{bottom:677.525310px;}
.y5a{bottom:682.457130px;}
.yc2{bottom:682.607430px;}
.y8e{bottom:682.622460px;}
.yf0{bottom:689.363280px;}
.y15{bottom:697.410000px;}
.y59{bottom:703.333800px;}
.yc1{bottom:703.484100px;}
.y8d{bottom:703.499130px;}
.yef{bottom:709.247970px;}
.y14{bottom:718.543620px;}
.y58{bottom:724.210470px;}
.yc0{bottom:724.360770px;}
.y8c{bottom:724.375800px;}
.yee{bottom:729.132660px;}
.y13{bottom:744.381810px;}
.y57{bottom:744.996960px;}
.ybf{bottom:745.147260px;}
.y8b{bottom:745.162290px;}
.yed{bottom:749.017350px;}
.y56{bottom:765.873630px;}
.ybe{bottom:766.023930px;}
.y8a{bottom:766.038960px;}
.yec{bottom:768.902040px;}
.y12{bottom:770.220000px;}
.y55{bottom:786.750300px;}
.ybd{bottom:786.900600px;}
.y89{bottom:786.915630px;}
.yeb{bottom:788.786730px;}
.y11{bottom:795.137040px;}
.y54{bottom:807.626970px;}
.ybc{bottom:807.777270px;}
.y88{bottom:807.792300px;}
.yea{bottom:808.581240px;}
.y10{bottom:817.009200px;}
.ye9{bottom:828.465930px;}
.y53{bottom:828.503640px;}
.ybb{bottom:828.653940px;}
.y87{bottom:828.668970px;}
.yf{bottom:838.881360px;}
.ye8{bottom:848.350620px;}
.y52{bottom:849.380310px;}
.yba{bottom:849.530610px;}
.y86{bottom:849.545640px;}
.ye{bottom:860.753520px;}
.ye7{bottom:868.235310px;}
.y51{bottom:870.256980px;}
.yb9{bottom:870.407280px;}
.y85{bottom:870.422310px;}
.yd{bottom:882.625680px;}
.ye6{bottom:888.120000px;}
.y50{bottom:891.133650px;}
.yb8{bottom:891.283950px;}
.y84{bottom:891.298980px;}
.yc{bottom:904.497840px;}
.ye5{bottom:909.253620px;}
.y4f{bottom:911.920140px;}
.yb7{bottom:912.070440px;}
.y83{bottom:912.085470px;}
.yb{bottom:926.370000px;}
.y4e{bottom:932.796810px;}
.yb6{bottom:932.947110px;}
.y82{bottom:932.962140px;}
.ye4{bottom:935.091810px;}
.ya{bottom:947.880000px;}
.y4d{bottom:953.673480px;}
.yb5{bottom:953.823780px;}
.y81{bottom:953.838810px;}
.ye3{bottom:960.930000px;}
.y8{bottom:967.860000px;}
.y4c{bottom:974.550150px;}
.yb4{bottom:974.700450px;}
.y80{bottom:974.715480px;}
.y9{bottom:978.120000px;}
.ye2{bottom:985.851540px;}
.y4b{bottom:995.426820px;}
.yb3{bottom:995.577120px;}
.y7f{bottom:995.592150px;}
.y7{bottom:1003.864230px;}
.ye1{bottom:1007.723700px;}
.y4a{bottom:1016.303490px;}
.yb2{bottom:1016.453790px;}
.y7e{bottom:1016.468820px;}
.y6{bottom:1023.748920px;}
.ye0{bottom:1029.595860px;}
.y49{bottom:1037.180160px;}
.yb1{bottom:1037.330460px;}
.y7d{bottom:1037.345490px;}
.y5{bottom:1039.320000px;}
.ydf{bottom:1051.468020px;}
.y48{bottom:1058.056830px;}
.yb0{bottom:1058.207130px;}
.y7c{bottom:1058.222160px;}
.yde{bottom:1073.241360px;}
.y4{bottom:1077.829200px;}
.y47{bottom:1078.843320px;}
.yaf{bottom:1078.993620px;}
.y7b{bottom:1079.008650px;}
.ydd{bottom:1095.113520px;}
.y46{bottom:1099.719990px;}
.yae{bottom:1099.870290px;}
.y7a{bottom:1099.885320px;}
.ydc{bottom:1116.985680px;}
.y45{bottom:1120.596660px;}
.yad{bottom:1120.746960px;}
.y79{bottom:1120.761990px;}
.y3{bottom:1122.750000px;}
.ydb{bottom:1138.857840px;}
.y44{bottom:1141.473330px;}
.yac{bottom:1141.623630px;}
.y78{bottom:1141.638660px;}
.yda{bottom:1160.730000px;}
.y2{bottom:1162.350000px;}
.yab{bottom:1162.500300px;}
.y77{bottom:1162.515330px;}
.y1{bottom:1193.940000px;}
.h6{height:31.680000px;}
.h2{height:42.271875px;}
.h5{height:45.210240px;}
.h8{height:49.541760px;}
.hc{height:50.140080px;}
.h3{height:52.973736px;}
.hd{height:53.839464px;}
.h9{height:54.943920px;}
.h7{height:58.049064px;}
.hb{height:58.746240px;}
.he{height:58.997736px;}
.ha{height:69.959064px;}
.h4{height:119.733750px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w2{width:50.310000px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:42.210000px;}
.x1{left:85.050000px;}
.x11{left:103.765320px;}
.x12{left:106.384950px;}
.x1c{left:107.640000px;}
.x1d{left:112.405320px;}
.x10{left:120.053340px;}
.x17{left:123.938370px;}
.x19{left:145.349370px;}
.x3{left:149.760000px;}
.xe{left:167.222070px;}
.x1a{left:183.971520px;}
.x4{left:191.311740px;}
.xd{left:232.130340px;}
.x1e{left:236.147400px;}
.xa{left:241.929990px;}
.x1b{left:302.324940px;}
.xf{left:313.830000px;}
.x6{left:326.160000px;}
.x18{left:380.606850px;}
.x8{left:384.570000px;}
.xb{left:389.254140px;}
.x9{left:406.350000px;}
.x16{left:408.243510px;}
.xc{left:446.503860px;}
.x2{left:457.110000px;}
.x13{left:473.522760px;}
.x14{left:494.865360px;}
.x15{left:601.961760px;}
.x5{left:807.930000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-3.687360pt;}
.ls13{letter-spacing:-2.725440pt;}
.ls25{letter-spacing:-2.404800pt;}
.ls18{letter-spacing:-2.297920pt;}
.ls26{letter-spacing:-2.084160pt;}
.ls2c{letter-spacing:-1.977280pt;}
.ls1e{letter-spacing:-1.442880pt;}
.ls27{letter-spacing:-1.229120pt;}
.ls14{letter-spacing:-0.801600pt;}
.ls11{letter-spacing:-0.320640pt;}
.lse{letter-spacing:-0.213760pt;}
.lsd{letter-spacing:-0.160320pt;}
.ls9{letter-spacing:-0.117120pt;}
.ls1{letter-spacing:-0.106880pt;}
.lsb{letter-spacing:-0.069440pt;}
.ls7{letter-spacing:-0.058560pt;}
.lsc{letter-spacing:-0.053440pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.053440pt;}
.ls6{letter-spacing:0.058560pt;}
.lsa{letter-spacing:0.069440pt;}
.ls12{letter-spacing:0.106880pt;}
.ls8{letter-spacing:0.117120pt;}
.lsf{letter-spacing:0.160320pt;}
.ls2b{letter-spacing:0.175680pt;}
.ls0{letter-spacing:1.132928pt;}
.ls16{letter-spacing:1.389440pt;}
.ls29{letter-spacing:1.710080pt;}
.ls19{letter-spacing:1.774208pt;}
.ls23{letter-spacing:2.351360pt;}
.ls1c{letter-spacing:2.992640pt;}
.ls28{letter-spacing:5.557760pt;}
.ls1a{letter-spacing:5.878400pt;}
.ls15{letter-spacing:7.160960pt;}
.ls21{letter-spacing:10.367360pt;}
.ls1d{letter-spacing:13.253120pt;}
.ls22{letter-spacing:14.215040pt;}
.ls1b{letter-spacing:15.176960pt;}
.ls5{letter-spacing:15.736960pt;}
.ls4{letter-spacing:16.089280pt;}
.ls20{letter-spacing:40.454080pt;}
.ls10{letter-spacing:44.622400pt;}
.ls1f{letter-spacing:55.203520pt;}
.ls24{letter-spacing:753.374400pt;}
.ls2a{letter-spacing:754.626240pt;}
.ws3{word-spacing:-46.271360pt;}
.wsc{word-spacing:-16.089280pt;}
.ws1e{word-spacing:-14.535680pt;}
.ws1d{word-spacing:-14.482240pt;}
.ws22{word-spacing:-14.428800pt;}
.ws7{word-spacing:-14.375360pt;}
.ws6{word-spacing:-14.321920pt;}
.ws17{word-spacing:-14.268480pt;}
.ws23{word-spacing:-14.215040pt;}
.ws27{word-spacing:-14.112960pt;}
.ws1c{word-spacing:-13.092800pt;}
.ws4{word-spacing:-12.985920pt;}
.ws8{word-spacing:-12.932480pt;}
.ws16{word-spacing:-12.879040pt;}
.ws9{word-spacing:-12.825600pt;}
.ws24{word-spacing:-11.756800pt;}
.ws1b{word-spacing:-7.160960pt;}
.wsd{word-spacing:-0.175680pt;}
.ws15{word-spacing:-0.160320pt;}
.wsf{word-spacing:-0.117120pt;}
.ws0{word-spacing:-0.106880pt;}
.ws11{word-spacing:-0.069440pt;}
.ws5{word-spacing:-0.058560pt;}
.ws1{word-spacing:-0.053440pt;}
.wsb{word-spacing:0.000000pt;}
.ws2{word-spacing:0.053440pt;}
.wse{word-spacing:0.058560pt;}
.ws12{word-spacing:0.069440pt;}
.wsa{word-spacing:0.106880pt;}
.ws10{word-spacing:0.117120pt;}
.ws13{word-spacing:0.160320pt;}
.ws14{word-spacing:0.213760pt;}
.ws18{word-spacing:0.320640pt;}
.ws1a{word-spacing:0.801600pt;}
.ws21{word-spacing:1.442880pt;}
.ws28{word-spacing:1.977280pt;}
.ws26{word-spacing:2.084160pt;}
.ws20{word-spacing:2.297920pt;}
.ws25{word-spacing:2.404800pt;}
.ws19{word-spacing:2.725440pt;}
.ws1f{word-spacing:3.687360pt;}
._1c{margin-left:-9.175648pt;}
._1d{margin-left:-7.996672pt;}
._1b{margin-left:-7.046048pt;}
._21{margin-left:-5.516352pt;}
._12{margin-left:-4.125568pt;}
._7{margin-left:-3.179008pt;}
._5{margin-left:-1.953568pt;}
._3{margin-left:-0.935200pt;}
._0{width:0.935200pt;}
._6{width:1.849024pt;}
._c{width:2.781888pt;}
._8{width:3.714080pt;}
._9{width:4.756832pt;}
._b{width:6.434176pt;}
._10{width:7.849664pt;}
._13{width:9.523680pt;}
._f{width:10.415456pt;}
._a{width:11.406272pt;}
._1f{width:12.604160pt;}
._16{width:14.410432pt;}
._4{width:15.497760pt;}
._e{width:16.387712pt;}
._d{width:17.479552pt;}
._17{width:18.538336pt;}
._1a{width:19.751424pt;}
._1e{width:20.685952pt;}
._11{width:21.672928pt;}
._26{width:22.779136pt;}
._20{width:23.834240pt;}
._18{width:25.517600pt;}
._19{width:26.479520pt;}
._23{width:35.762048pt;}
._22{width:37.006528pt;}
._24{width:37.947744pt;}
._29{width:39.792096pt;}
._28{width:40.899968pt;}
._14{width:41.950400pt;}
._15{width:45.802752pt;}
._2a{width:88.651616pt;}
._2b{width:139.497440pt;}
._1{width:252.477280pt;}
._2c{width:867.384640pt;}
._25{width:868.667200pt;}
._2{width:870.591040pt;}
._27{width:873.476800pt;}
.fs0{font-size:53.440000pt;}
.fs2{font-size:58.560000pt;}
.fs3{font-size:69.440000pt;}
.fs1{font-size:117.440000pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:87.271920pt;}
.yaa{bottom:87.418880pt;}
.y32{bottom:93.549360pt;}
.y43{bottom:93.602800pt;}
.y75{bottom:105.828960pt;}
.ya9{bottom:105.975920pt;}
.y31{bottom:112.106400pt;}
.y42{bottom:112.159840pt;}
.y74{bottom:124.386000pt;}
.ya8{bottom:124.532960pt;}
.y30{bottom:130.663440pt;}
.y41{bottom:130.716880pt;}
.y73{bottom:142.943040pt;}
.ya7{bottom:143.090000pt;}
.y2f{bottom:149.220480pt;}
.y40{bottom:149.273920pt;}
.y72{bottom:161.500080pt;}
.ya6{bottom:161.647040pt;}
.y2e{bottom:167.697360pt;}
.y3f{bottom:167.750800pt;}
.yd9{bottom:176.716160pt;}
.y71{bottom:180.057120pt;}
.ya5{bottom:180.204080pt;}
.y2d{bottom:186.254400pt;}
.y3e{bottom:186.307840pt;}
.yd8{bottom:196.158080pt;}
.y70{bottom:198.614160pt;}
.ya4{bottom:198.761120pt;}
.y2c{bottom:204.811440pt;}
.y3d{bottom:204.864880pt;}
.yd7{bottom:215.600000pt;}
.y6f{bottom:217.091040pt;}
.ya3{bottom:217.238000pt;}
.y2b{bottom:223.368480pt;}
.y3c{bottom:223.421920pt;}
.y6e{bottom:235.648080pt;}
.yd6{bottom:235.781680pt;}
.ya2{bottom:235.795040pt;}
.y2a{bottom:241.925520pt;}
.y3b{bottom:241.978960pt;}
.y6d{bottom:254.205120pt;}
.yd5{bottom:254.338720pt;}
.ya1{bottom:254.352080pt;}
.y29{bottom:260.482560pt;}
.y3a{bottom:260.536000pt;}
.y6c{bottom:272.762160pt;}
.yd4{bottom:272.895760pt;}
.ya0{bottom:272.909120pt;}
.y28{bottom:279.039600pt;}
.y39{bottom:279.093040pt;}
.y6b{bottom:291.319200pt;}
.yd3{bottom:291.452800pt;}
.y9f{bottom:291.466160pt;}
.y27{bottom:297.596640pt;}
.y38{bottom:297.650080pt;}
.y6a{bottom:309.876240pt;}
.yd2{bottom:310.009840pt;}
.y9e{bottom:310.023200pt;}
.y26{bottom:316.073520pt;}
.y37{bottom:316.126960pt;}
.y69{bottom:328.433280pt;}
.yd1{bottom:328.566880pt;}
.y9d{bottom:328.580240pt;}
.y25{bottom:334.630560pt;}
.y36{bottom:334.684000pt;}
.y68{bottom:346.990320pt;}
.yd0{bottom:347.123920pt;}
.y9c{bottom:347.137280pt;}
.y24{bottom:353.187600pt;}
.y35{bottom:353.241040pt;}
.y67{bottom:365.467200pt;}
.ycf{bottom:365.600800pt;}
.y9b{bottom:365.614160pt;}
.y23{bottom:371.744640pt;}
.y34{bottom:371.798080pt;}
.y66{bottom:384.024240pt;}
.yce{bottom:384.157840pt;}
.y9a{bottom:384.171200pt;}
.y22{bottom:390.301680pt;}
.y33{bottom:390.355120pt;}
.y65{bottom:402.581280pt;}
.ycd{bottom:402.714880pt;}
.y99{bottom:402.728240pt;}
.y21{bottom:407.976960pt;}
.y64{bottom:421.138320pt;}
.ycc{bottom:421.271920pt;}
.y98{bottom:421.285280pt;}
.y20{bottom:425.652240pt;}
.y63{bottom:439.695360pt;}
.ycb{bottom:439.828960pt;}
.y97{bottom:439.842320pt;}
.y1f{bottom:443.327520pt;}
.y62{bottom:458.252400pt;}
.yca{bottom:458.386000pt;}
.y96{bottom:458.399360pt;}
.y1e{bottom:461.002800pt;}
.y61{bottom:476.809440pt;}
.yc9{bottom:476.943040pt;}
.y95{bottom:476.956400pt;}
.y1d{bottom:478.597920pt;}
.y60{bottom:495.366480pt;}
.yc8{bottom:495.500080pt;}
.y94{bottom:495.513440pt;}
.y1c{bottom:496.273200pt;}
.y5f{bottom:513.843360pt;}
.y1b{bottom:513.948480pt;}
.yc7{bottom:513.976960pt;}
.y93{bottom:513.990320pt;}
.y1a{bottom:531.623760pt;}
.y5e{bottom:532.400400pt;}
.yc6{bottom:532.534000pt;}
.y92{bottom:532.547360pt;}
.yf4{bottom:542.146400pt;}
.y19{bottom:549.299040pt;}
.y5d{bottom:550.957440pt;}
.yc5{bottom:551.091040pt;}
.y91{bottom:551.104400pt;}
.yf3{bottom:559.821680pt;}
.y18{bottom:566.974320pt;}
.y5c{bottom:569.514480pt;}
.yc4{bottom:569.648080pt;}
.y90{bottom:569.661440pt;}
.yf2{bottom:577.496960pt;}
.y17{bottom:584.569440pt;}
.y5b{bottom:588.071520pt;}
.yc3{bottom:588.205120pt;}
.y8f{bottom:588.218480pt;}
.yf1{bottom:595.172240pt;}
.y16{bottom:602.244720pt;}
.y5a{bottom:606.628560pt;}
.yc2{bottom:606.762160pt;}
.y8e{bottom:606.775520pt;}
.yf0{bottom:612.767360pt;}
.y15{bottom:619.920000pt;}
.y59{bottom:625.185600pt;}
.yc1{bottom:625.319200pt;}
.y8d{bottom:625.332560pt;}
.yef{bottom:630.442640pt;}
.y14{bottom:638.705440pt;}
.y58{bottom:643.742640pt;}
.yc0{bottom:643.876240pt;}
.y8c{bottom:643.889600pt;}
.yee{bottom:648.117920pt;}
.y13{bottom:661.672720pt;}
.y57{bottom:662.219520pt;}
.ybf{bottom:662.353120pt;}
.y8b{bottom:662.366480pt;}
.yed{bottom:665.793200pt;}
.y56{bottom:680.776560pt;}
.ybe{bottom:680.910160pt;}
.y8a{bottom:680.923520pt;}
.yec{bottom:683.468480pt;}
.y12{bottom:684.640000pt;}
.y55{bottom:699.333600pt;}
.ybd{bottom:699.467200pt;}
.y89{bottom:699.480560pt;}
.yeb{bottom:701.143760pt;}
.y11{bottom:706.788480pt;}
.y54{bottom:717.890640pt;}
.ybc{bottom:718.024240pt;}
.y88{bottom:718.037600pt;}
.yea{bottom:718.738880pt;}
.y10{bottom:726.230400pt;}
.ye9{bottom:736.414160pt;}
.y53{bottom:736.447680pt;}
.ybb{bottom:736.581280pt;}
.y87{bottom:736.594640pt;}
.yf{bottom:745.672320pt;}
.ye8{bottom:754.089440pt;}
.y52{bottom:755.004720pt;}
.yba{bottom:755.138320pt;}
.y86{bottom:755.151680pt;}
.ye{bottom:765.114240pt;}
.ye7{bottom:771.764720pt;}
.y51{bottom:773.561760pt;}
.yb9{bottom:773.695360pt;}
.y85{bottom:773.708720pt;}
.yd{bottom:784.556160pt;}
.ye6{bottom:789.440000pt;}
.y50{bottom:792.118800pt;}
.yb8{bottom:792.252400pt;}
.y84{bottom:792.265760pt;}
.yc{bottom:803.998080pt;}
.ye5{bottom:808.225440pt;}
.y4f{bottom:810.595680pt;}
.yb7{bottom:810.729280pt;}
.y83{bottom:810.742640pt;}
.yb{bottom:823.440000pt;}
.y4e{bottom:829.152720pt;}
.yb6{bottom:829.286320pt;}
.y82{bottom:829.299680pt;}
.ye4{bottom:831.192720pt;}
.ya{bottom:842.560000pt;}
.y4d{bottom:847.709760pt;}
.yb5{bottom:847.843360pt;}
.y81{bottom:847.856720pt;}
.ye3{bottom:854.160000pt;}
.y8{bottom:860.320000pt;}
.y4c{bottom:866.266800pt;}
.yb4{bottom:866.400400pt;}
.y80{bottom:866.413760pt;}
.y9{bottom:869.440000pt;}
.ye2{bottom:876.312480pt;}
.y4b{bottom:884.823840pt;}
.yb3{bottom:884.957440pt;}
.y7f{bottom:884.970800pt;}
.y7{bottom:892.323760pt;}
.ye1{bottom:895.754400pt;}
.y4a{bottom:903.380880pt;}
.yb2{bottom:903.514480pt;}
.y7e{bottom:903.527840pt;}
.y6{bottom:909.999040pt;}
.ye0{bottom:915.196320pt;}
.y49{bottom:921.937920pt;}
.yb1{bottom:922.071520pt;}
.y7d{bottom:922.084880pt;}
.y5{bottom:923.840000pt;}
.ydf{bottom:934.638240pt;}
.y48{bottom:940.494960pt;}
.yb0{bottom:940.628560pt;}
.y7c{bottom:940.641920pt;}
.yde{bottom:953.992320pt;}
.y4{bottom:958.070400pt;}
.y47{bottom:958.971840pt;}
.yaf{bottom:959.105440pt;}
.y7b{bottom:959.118800pt;}
.ydd{bottom:973.434240pt;}
.y46{bottom:977.528880pt;}
.yae{bottom:977.662480pt;}
.y7a{bottom:977.675840pt;}
.ydc{bottom:992.876160pt;}
.y45{bottom:996.085920pt;}
.yad{bottom:996.219520pt;}
.y79{bottom:996.232880pt;}
.y3{bottom:998.000000pt;}
.ydb{bottom:1012.318080pt;}
.y44{bottom:1014.642960pt;}
.yac{bottom:1014.776560pt;}
.y78{bottom:1014.789920pt;}
.yda{bottom:1031.760000pt;}
.y2{bottom:1033.200000pt;}
.yab{bottom:1033.333600pt;}
.y77{bottom:1033.346960pt;}
.y1{bottom:1061.280000pt;}
.h6{height:28.160000pt;}
.h2{height:37.575000pt;}
.h5{height:40.186880pt;}
.h8{height:44.037120pt;}
.hc{height:44.568960pt;}
.h3{height:47.087765pt;}
.hd{height:47.857301pt;}
.h9{height:48.839040pt;}
.h7{height:51.599168pt;}
.hb{height:52.218880pt;}
.he{height:52.442432pt;}
.ha{height:62.185835pt;}
.h4{height:106.430000pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.720000pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:37.520000pt;}
.x1{left:75.600000pt;}
.x11{left:92.235840pt;}
.x12{left:94.564400pt;}
.x1c{left:95.680000pt;}
.x1d{left:99.915840pt;}
.x10{left:106.714080pt;}
.x17{left:110.167440pt;}
.x19{left:129.199440pt;}
.x3{left:133.120000pt;}
.xe{left:148.641840pt;}
.x1a{left:163.530240pt;}
.x4{left:170.054880pt;}
.xd{left:206.338080pt;}
.x1e{left:209.908800pt;}
.xa{left:215.048880pt;}
.x1b{left:268.733280pt;}
.xf{left:278.960000pt;}
.x6{left:289.920000pt;}
.x18{left:338.317200pt;}
.x8{left:341.840000pt;}
.xb{left:346.003680pt;}
.x9{left:361.200000pt;}
.x16{left:362.883120pt;}
.xc{left:396.892320pt;}
.x2{left:406.320000pt;}
.x13{left:420.909120pt;}
.x14{left:439.880320pt;}
.x15{left:535.077120pt;}
.x5{left:718.160000pt;}
}




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