
    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_fad17bcca4af2efb53ad7e9e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.108000;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_115d647e9672805ed93a7ddb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.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:ff3;src:url('chunks/assets/font_9fae2e7e0627f9f5d8508c45.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.735000;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_c325b9e2870478c50d881403.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909000;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_c83bdaf79289978ba5c2c446.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919000;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_d201b12a372714c52defc38e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999000;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_bdcbc74671a4536910a17b95.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.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:ff8;src:url('chunks/assets/font_d154bef51b1fb432a66305b5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.895000;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_62d6e3ba1339f9198aaf837f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.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:ffa;src:url('chunks/assets/font_f3d40cb4decf0473411ab632.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.001000;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_8915d8c26c06e05b5dfb872b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.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;}
.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);}
.v2{vertical-align:-20.612231px;}
.v4{vertical-align:-16.034902px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.606530px;}
.v1{vertical-align:22.567428px;}
.lsa{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000529px;}
.ls5{letter-spacing:0.000952px;}
.lsb{letter-spacing:0.002222px;}
.ls3{letter-spacing:0.003990px;}
.lsc{letter-spacing:0.798056px;}
.ls6{letter-spacing:2.816774px;}
.ls1{letter-spacing:2.835811px;}
.lsd{letter-spacing:2.838433px;}
.ls7{letter-spacing:2.839312px;}
.ls9{letter-spacing:2.839483px;}
.ls8{letter-spacing:2.839882px;}
.ls2{letter-spacing:2.841699px;}
.lse{letter-spacing:3.792261px;}
.ls0{letter-spacing:5.217177px;}
.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;}
}
.ws4{word-spacing:-48.271332px;}
.ws3{word-spacing:-15.617213px;}
.ws6{word-spacing:-14.197415px;}
.ws25{word-spacing:-14.174735px;}
.ws16{word-spacing:-12.777759px;}
.ws36{word-spacing:-11.357960px;}
.ws96{word-spacing:-10.878555px;}
.ws60{word-spacing:-10.813100px;}
.ws10{word-spacing:-0.715554px;}
.ws86{word-spacing:-0.681478px;}
.ws3a{word-spacing:-0.454318px;}
.wsf{word-spacing:-0.357777px;}
.ws35{word-spacing:-0.340738px;}
.ws8e{word-spacing:-0.272591px;}
.ws1a{word-spacing:-0.102222px;}
.ws7{word-spacing:-0.056790px;}
.ws8{word-spacing:-0.051111px;}
.ws62{word-spacing:0.000000px;}
.ws82{word-spacing:0.056790px;}
.ws4a{word-spacing:0.170369px;}
.ws12{word-spacing:0.459999px;}
.ws40{word-spacing:0.908635px;}
.ws37{word-spacing:1.362952px;}
.ws11{word-spacing:1.482220px;}
.ws94{word-spacing:1.726410px;}
.ws84{word-spacing:1.817269px;}
.ws8c{word-spacing:2.271592px;}
.ws56{word-spacing:2.441955px;}
.ws5b{word-spacing:2.498745px;}
.ws91{word-spacing:2.589615px;}
.ws4e{word-spacing:2.725904px;}
.ws90{word-spacing:2.862206px;}
.ws18{word-spacing:2.862218px;}
.ws43{word-spacing:3.293800px;}
.ws87{word-spacing:3.589115px;}
.ws5c{word-spacing:3.691328px;}
.ws71{word-spacing:3.748118px;}
.ws70{word-spacing:3.804907px;}
.ws92{word-spacing:3.861707px;}
.wsd{word-spacing:4.139994px;}
.ws33{word-spacing:4.202435px;}
.ws5d{word-spacing:4.259224px;}
.ws67{word-spacing:4.316014px;}
.ws95{word-spacing:4.538529px;}
.ws65{word-spacing:4.543184px;}
.wsc{word-spacing:4.804437px;}
.ws72{word-spacing:4.940700px;}
.ws44{word-spacing:5.565387px;}
.ws5{word-spacing:5.678966px;}
.ws74{word-spacing:5.679511px;}
.ws13{word-spacing:5.775547px;}
.ws3d{word-spacing:5.906125px;}
.ws1f{word-spacing:5.928880px;}
.ws1d{word-spacing:5.931507px;}
.ws32{word-spacing:6.019704px;}
.ws78{word-spacing:6.133283px;}
.ws45{word-spacing:6.190073px;}
.ws2{word-spacing:6.246885px;}
.ws66{word-spacing:6.360442px;}
.ws22{word-spacing:6.388879px;}
.ws63{word-spacing:6.405890px;}
.ws7c{word-spacing:6.417232px;}
.ws54{word-spacing:6.474021px;}
.ws88{word-spacing:6.542185px;}
.ws7d{word-spacing:6.587600px;}
.ws68{word-spacing:6.757969px;}
.ws89{word-spacing:6.769344px;}
.ws23{word-spacing:7.098707px;}
.ws3f{word-spacing:7.155497px;}
.ws83{word-spacing:7.212287px;}
.ws6d{word-spacing:7.269076px;}
.ws85{word-spacing:7.496254px;}
.ws64{word-spacing:7.541686px;}
.ws6f{word-spacing:7.609814px;}
.ws8b{word-spacing:7.723413px;}
.ws2c{word-spacing:7.836973px;}
.ws41{word-spacing:8.120921px;}
.ws30{word-spacing:8.177711px;}
.ws8a{word-spacing:8.314027px;}
.ws27{word-spacing:8.404870px;}
.ws4f{word-spacing:8.461659px;}
.ws69{word-spacing:8.745608px;}
.ws75{word-spacing:9.256714px;}
.ws7f{word-spacing:9.824611px;}
.ws5a{word-spacing:9.881401px;}
.ws6b{word-spacing:9.938190px;}
.ws53{word-spacing:10.051770px;}
.ws29{word-spacing:10.108559px;}
.wse{word-spacing:10.119985px;}
.ws47{word-spacing:10.165349px;}
.ws93{word-spacing:10.449324px;}
.ws1b{word-spacing:10.528873px;}
.ws81{word-spacing:10.903615px;}
.ws76{word-spacing:11.017194px;}
.ws3e{word-spacing:11.073984px;}
.ws2d{word-spacing:11.130773px;}
.ws34{word-spacing:11.187563px;}
.ws48{word-spacing:11.357932px;}
.ws3b{word-spacing:11.528301px;}
.ws31{word-spacing:11.585091px;}
.ws28{word-spacing:12.152987px;}
.ws2f{word-spacing:12.323356px;}
.ws17{word-spacing:12.368871px;}
.ws3c{word-spacing:12.550515px;}
.ws79{word-spacing:12.664094px;}
.ws0{word-spacing:13.084370px;}
.ws49{word-spacing:13.175201px;}
.ws2a{word-spacing:13.231991px;}
.ws5e{word-spacing:13.402360px;}
.ws8f{word-spacing:13.447825px;}
.ws2b{word-spacing:13.459149px;}
.ws6c{word-spacing:13.515939px;}
.ws1{word-spacing:13.629552px;}
.ws58{word-spacing:14.027046px;}
.ws2e{word-spacing:14.878891px;}
.ws8d{word-spacing:15.037940px;}
.ws50{word-spacing:15.106049px;}
.ws77{word-spacing:15.333208px;}
.ws59{word-spacing:15.446787px;}
.ws7e{word-spacing:15.560367px;}
.ws19{word-spacing:15.610111px;}
.ws4c{word-spacing:15.673946px;}
.ws14{word-spacing:16.048865px;}
.ws4d{word-spacing:16.128263px;}
.wsb{word-spacing:16.968864px;}
.ws24{word-spacing:17.036898px;}
.ws52{word-spacing:17.093687px;}
.ws7a{word-spacing:17.377636px;}
.ws42{word-spacing:17.775163px;}
.ws5f{word-spacing:18.172691px;}
.ws1e{word-spacing:18.656155px;}
.ws1c{word-spacing:18.661856px;}
.wsa{word-spacing:18.808861px;}
.ws80{word-spacing:19.024536px;}
.ws51{word-spacing:19.081326px;}
.ws73{word-spacing:19.816515px;}
.ws26{word-spacing:20.273908px;}
.ws46{word-spacing:20.341110px;}
.ws55{word-spacing:21.012174px;}
.ws39{word-spacing:21.409702px;}
.ws6e{word-spacing:21.412764px;}
.ws38{word-spacing:21.466491px;}
.ws4b{word-spacing:21.864019px;}
.ws57{word-spacing:22.545495px;}
.ws21{word-spacing:22.591078px;}
.ws9{word-spacing:25.708851px;}
.ws15{word-spacing:28.777769px;}
.ws6a{word-spacing:30.666416px;}
.ws7b{word-spacing:31.499221px;}
.ws20{word-spacing:35.317725px;}
.ws61{word-spacing:2146.768313px;}
._c{margin-left:-5.924301px;}
._5{margin-left:-4.922524px;}
._3{margin-left:-3.748899px;}
._9{margin-left:-2.744080px;}
._2{margin-left:-1.721910px;}
._1{width:2.217367px;}
._0{width:3.461040px;}
._4{width:4.738630px;}
._e{width:12.922420px;}
._8{width:14.102056px;}
._7{width:19.459367px;}
._6{width:22.284411px;}
._a{width:28.394830px;}
._d{width:30.552837px;}
._b{width:53.291550px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:34.074024px;}
.fs5{font-size:39.752648px;}
.fs2{font-size:45.431841px;}
.fs4{font-size:51.111035px;}
.fs3{font-size:56.789659px;}
.fs1{font-size:62.468853px;}
.fs7{font-size:65.454600px;}
.fs0{font-size:136.295524px;}
.y0{bottom:0.000000px;}
.y1{bottom:30.496500px;}
.y68{bottom:35.166000px;}
.y66{bottom:106.099405px;}
.y3a{bottom:106.100830px;}
.y39{bottom:122.886744px;}
.y65{bottom:123.137557px;}
.y64{bottom:140.174283px;}
.y8b{bottom:140.439347px;}
.y38{bottom:146.341992px;}
.yac{bottom:149.102355px;}
.y63{bottom:157.211010px;}
.y8a{bottom:157.477498px;}
.yab{bottom:161.880969px;}
.y37{bottom:163.378719px;}
.y89{bottom:174.514225px;}
.yaa{bottom:174.658157px;}
.y62{bottom:178.877793px;}
.y36{bottom:180.415445px;}
.ya9{bottom:187.435346px;}
.y88{bottom:197.617480px;}
.ya8{bottom:200.213960px;}
.y35{bottom:201.706010px;}
.y61{bottom:205.882894px;}
.ya7{bottom:212.991149px;}
.y60{bottom:222.919620px;}
.ya6{bottom:225.768338px;}
.y87{bottom:226.495124px;}
.y34{bottom:227.015275px;}
.ya5{bottom:238.546952px;}
.y5f{bottom:239.956347px;}
.y86{bottom:243.533276px;}
.y33{bottom:244.053427px;}
.ya4{bottom:251.324141px;}
.y5e{bottom:256.993074px;}
.y85{bottom:260.570003px;}
.y32{bottom:261.090154px;}
.ya3{bottom:264.101329px;}
.y5d{bottom:274.029801px;}
.ya2{bottom:276.879943px;}
.y84{bottom:277.606730px;}
.y31{bottom:278.126881px;}
.ya1{bottom:289.657132px;}
.y5c{bottom:291.067953px;}
.y83{bottom:294.643456px;}
.y30{bottom:294.945572px;}
.ya0{bottom:302.435746px;}
.y5b{bottom:308.104679px;}
.y82{bottom:311.680183px;}
.y2f{bottom:311.982298px;}
.y9f{bottom:315.212935px;}
.y5a{bottom:325.141406px;}
.y9e{bottom:327.990124px;}
.y81{bottom:328.718335px;}
.y2e{bottom:329.019025px;}
.y9d{bottom:340.768738px;}
.y59{bottom:342.178133px;}
.y80{bottom:345.755062px;}
.y2d{bottom:346.055752px;}
.y9c{bottom:353.545926px;}
.y58{bottom:359.214860px;}
.y7f{bottom:362.791789px;}
.y2c{bottom:363.092479px;}
.y9b{bottom:366.323115px;}
.y57{bottom:376.251587px;}
.y9a{bottom:379.101729px;}
.y7e{bottom:379.828515px;}
.y2b{bottom:380.130631px;}
.y99{bottom:391.878918px;}
.y56{bottom:393.289739px;}
.y7d{bottom:396.865242px;}
.y2a{bottom:396.947896px;}
.y98{bottom:404.657532px;}
.y55{bottom:410.326465px;}
.y29{bottom:413.986048px;}
.y7c{bottom:414.168457px;}
.y97{bottom:417.434721px;}
.y54{bottom:427.363192px;}
.y96{bottom:430.211910px;}
.y28{bottom:431.022775px;}
.y7b{bottom:431.205184px;}
.y95{bottom:442.990523px;}
.y53{bottom:444.399919px;}
.y27{bottom:448.059502px;}
.y7a{bottom:448.241911px;}
.y94{bottom:455.767712px;}
.y52{bottom:461.436646px;}
.y26{bottom:465.096229px;}
.y79{bottom:465.278638px;}
.y93{bottom:476.851641px;}
.y51{bottom:478.518975px;}
.y25{bottom:481.914920px;}
.y78{bottom:482.316790px;}
.y50{bottom:495.555702px;}
.y24{bottom:498.951646px;}
.y77{bottom:499.353516px;}
.y92{bottom:503.470547px;}
.y4f{bottom:512.592428px;}
.y23{bottom:515.988373px;}
.y91{bottom:520.508699px;}
.y76{bottom:522.456772px;}
.y4e{bottom:529.630580px;}
.y22{bottom:533.026525px;}
.y90{bottom:537.545426px;}
.y4d{bottom:546.667307px;}
.y21{bottom:550.063252px;}
.y75{bottom:551.334415px;}
.y8f{bottom:554.582153px;}
.y4c{bottom:563.704034px;}
.y20{bottom:567.099979px;}
.y74{bottom:568.372567px;}
.y8e{bottom:571.618880px;}
.y4b{bottom:580.786363px;}
.y73{bottom:585.409294px;}
.y1f{bottom:588.390543px;}
.y8d{bottom:593.128905px;}
.y4a{bottom:597.823090px;}
.y72{bottom:602.446021px;}
.y1e{bottom:613.699808px;}
.y71{bottom:619.482748px;}
.y49{bottom:619.489873px;}
.y8c{bottom:619.747811px;}
.y1d{bottom:634.464522px;}
.y70{bottom:636.785963px;}
.y48{bottom:641.270662px;}
.y1c{bottom:648.662507px;}
.y6f{bottom:653.822690px;}
.y1b{bottom:662.641030px;}
.y47{bottom:668.274337px;}
.y6e{bottom:670.859416px;}
.y1a{bottom:676.839015px;}
.y46{bottom:685.312489px;}
.y6d{bottom:687.896143px;}
.y19{bottom:691.035575px;}
.y45{bottom:702.349216px;}
.y6c{bottom:704.932870px;}
.y18{bottom:705.233560px;}
.y44{bottom:719.385942px;}
.y17{bottom:719.431545px;}
.y16{bottom:733.628105px;}
.y43{bottom:736.422669px;}
.y15{bottom:747.826089px;}
.y6b{bottom:753.392418px;}
.y42{bottom:753.459396px;}
.y14{bottom:762.024074px;}
.y6a{bottom:766.169607px;}
.y41{bottom:770.496123px;}
.y13{bottom:776.220634px;}
.y69{bottom:778.948220px;}
.y40{bottom:787.534275px;}
.y12{bottom:790.418619px;}
.y3f{bottom:804.571002px;}
.y11{bottom:804.616604px;}
.y10{bottom:818.813164px;}
.y3e{bottom:821.653331px;}
.yf{bottom:833.011148px;}
.y3d{bottom:838.690057px;}
.ye{bottom:847.209133px;}
.y3c{bottom:855.726784px;}
.yd{bottom:861.405693px;}
.y3b{bottom:872.763511px;}
.yc{bottom:875.603678px;}
.yb{bottom:889.800238px;}
.ya{bottom:933.810713px;}
.y9{bottom:951.380417px;}
.y8{bottom:956.532049px;}
.y7{bottom:968.948695px;}
.y6{bottom:974.101753px;}
.y5{bottom:986.729309px;}
.y4{bottom:1005.001573px;}
.y3{bottom:1049.723159px;}
.y2{bottom:1089.476946px;}
.y67{bottom:1182.538500px;}
.yad{bottom:1182.585000px;}
.he{height:30.325881px;}
.h6{height:34.073881px;}
.h9{height:36.442168px;}
.ha{height:36.721482px;}
.hb{height:38.333277px;}
.h10{height:38.957706px;}
.hf{height:40.434339px;}
.hc{height:40.491027px;}
.h13{height:40.656650px;}
.h12{height:40.662350px;}
.h11{height:49.156405px;}
.h8{height:50.542797px;}
.h7{height:50.827811px;}
.h4{height:55.910795px;}
.hd{height:55.986387px;}
.h5{height:56.641309px;}
.h3{height:121.303017px;}
.h2{height:1199.753235px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:848.310713px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:22.305000px;}
.x2{left:72.712835px;}
.x19{left:76.536000px;}
.x14{left:84.070653px;}
.x10{left:86.909395px;}
.x4{left:116.133331px;}
.x1a{left:139.960523px;}
.x11{left:142.388844px;}
.x5{left:188.392994px;}
.x6{left:195.325966px;}
.x13{left:208.031901px;}
.x1b{left:210.133881px;}
.xe{left:211.872468px;}
.x12{left:226.797239px;}
.x3{left:232.241011px;}
.x26{left:234.096000px;}
.xb{left:317.135356px;}
.x7{left:326.803039px;}
.x15{left:444.791813px;}
.x8{left:446.424945px;}
.x16{left:458.989798px;}
.x23{left:465.134706px;}
.x1f{left:482.512024px;}
.x20{left:487.553926px;}
.x9{left:534.301964px;}
.x1c{left:556.892193px;}
.x17{left:559.554226px;}
.x1e{left:582.562002px;}
.xc{left:607.650381px;}
.x24{left:613.677007px;}
.x21{left:617.476247px;}
.xf{left:621.390918px;}
.x1d{left:631.530300px;}
.xd{left:645.343516px;}
.xa{left:668.573602px;}
.x22{left:688.518899px;}
.x18{left:734.809500px;}
.x25{left:745.272362px;}
.x27{left:791.971500px;}
@media print{
.v2{vertical-align:-18.321983pt;}
.v4{vertical-align:-14.253246pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.316916pt;}
.v1{vertical-align:20.059936pt;}
.lsa{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000470pt;}
.ls5{letter-spacing:0.000846pt;}
.lsb{letter-spacing:0.001975pt;}
.ls3{letter-spacing:0.003547pt;}
.lsc{letter-spacing:0.709383pt;}
.ls6{letter-spacing:2.503799pt;}
.ls1{letter-spacing:2.520721pt;}
.lsd{letter-spacing:2.523052pt;}
.ls7{letter-spacing:2.523833pt;}
.ls9{letter-spacing:2.523985pt;}
.ls8{letter-spacing:2.524340pt;}
.ls2{letter-spacing:2.525955pt;}
.lse{letter-spacing:3.370898pt;}
.ls0{letter-spacing:4.637490pt;}
.ws4{word-spacing:-42.907850pt;}
.ws3{word-spacing:-13.881967pt;}
.ws6{word-spacing:-12.619924pt;}
.ws25{word-spacing:-12.599764pt;}
.ws16{word-spacing:-11.358008pt;}
.ws36{word-spacing:-10.095965pt;}
.ws96{word-spacing:-9.669826pt;}
.ws60{word-spacing:-9.611644pt;}
.ws10{word-spacing:-0.636048pt;}
.ws86{word-spacing:-0.605758pt;}
.ws3a{word-spacing:-0.403839pt;}
.wsf{word-spacing:-0.318024pt;}
.ws35{word-spacing:-0.302878pt;}
.ws8e{word-spacing:-0.242303pt;}
.ws1a{word-spacing:-0.090864pt;}
.ws7{word-spacing:-0.050480pt;}
.ws8{word-spacing:-0.045432pt;}
.ws62{word-spacing:0.000000pt;}
.ws82{word-spacing:0.050480pt;}
.ws4a{word-spacing:0.151439pt;}
.ws12{word-spacing:0.408888pt;}
.ws40{word-spacing:0.807675pt;}
.ws37{word-spacing:1.211513pt;}
.ws11{word-spacing:1.317529pt;}
.ws94{word-spacing:1.534587pt;}
.ws84{word-spacing:1.615350pt;}
.ws8c{word-spacing:2.019193pt;}
.ws56{word-spacing:2.170627pt;}
.ws5b{word-spacing:2.221107pt;}
.ws91{word-spacing:2.301880pt;}
.ws4e{word-spacing:2.423025pt;}
.ws90{word-spacing:2.544183pt;}
.ws18{word-spacing:2.544194pt;}
.ws43{word-spacing:2.927822pt;}
.ws87{word-spacing:3.190325pt;}
.ws5c{word-spacing:3.281180pt;}
.ws71{word-spacing:3.331660pt;}
.ws70{word-spacing:3.382140pt;}
.ws92{word-spacing:3.432628pt;}
.wsd{word-spacing:3.679995pt;}
.ws33{word-spacing:3.735498pt;}
.ws5d{word-spacing:3.785977pt;}
.ws67{word-spacing:3.836457pt;}
.ws95{word-spacing:4.034248pt;}
.ws65{word-spacing:4.038386pt;}
.wsc{word-spacing:4.270611pt;}
.ws72{word-spacing:4.391734pt;}
.ws44{word-spacing:4.947010pt;}
.ws5{word-spacing:5.047970pt;}
.ws74{word-spacing:5.048454pt;}
.ws13{word-spacing:5.133820pt;}
.ws3d{word-spacing:5.249889pt;}
.ws1f{word-spacing:5.270116pt;}
.ws1d{word-spacing:5.272450pt;}
.ws32{word-spacing:5.350848pt;}
.ws78{word-spacing:5.451807pt;}
.ws45{word-spacing:5.502287pt;}
.ws2{word-spacing:5.552787pt;}
.ws66{word-spacing:5.653726pt;}
.ws22{word-spacing:5.679004pt;}
.ws63{word-spacing:5.694124pt;}
.ws7c{word-spacing:5.704206pt;}
.ws54{word-spacing:5.754685pt;}
.ws88{word-spacing:5.815276pt;}
.ws7d{word-spacing:5.855645pt;}
.ws68{word-spacing:6.007084pt;}
.ws89{word-spacing:6.017195pt;}
.ws23{word-spacing:6.309962pt;}
.ws3f{word-spacing:6.360442pt;}
.ws83{word-spacing:6.410922pt;}
.ws6d{word-spacing:6.461401pt;}
.ws85{word-spacing:6.663337pt;}
.ws64{word-spacing:6.703721pt;}
.ws6f{word-spacing:6.764279pt;}
.ws8b{word-spacing:6.865256pt;}
.ws2c{word-spacing:6.966198pt;}
.ws41{word-spacing:7.218597pt;}
.ws30{word-spacing:7.269076pt;}
.ws8a{word-spacing:7.390246pt;}
.ws27{word-spacing:7.470995pt;}
.ws4f{word-spacing:7.521475pt;}
.ws69{word-spacing:7.773873pt;}
.ws75{word-spacing:8.228191pt;}
.ws7f{word-spacing:8.732988pt;}
.ws5a{word-spacing:8.783467pt;}
.ws6b{word-spacing:8.833947pt;}
.ws53{word-spacing:8.934906pt;}
.ws29{word-spacing:8.985386pt;}
.wse{word-spacing:8.995542pt;}
.ws47{word-spacing:9.035866pt;}
.ws93{word-spacing:9.288288pt;}
.ws1b{word-spacing:9.358998pt;}
.ws81{word-spacing:9.692102pt;}
.ws76{word-spacing:9.793061pt;}
.ws3e{word-spacing:9.843541pt;}
.ws2d{word-spacing:9.894021pt;}
.ws34{word-spacing:9.944500pt;}
.ws48{word-spacing:10.095939pt;}
.ws3b{word-spacing:10.247379pt;}
.ws31{word-spacing:10.297858pt;}
.ws28{word-spacing:10.802655pt;}
.ws2f{word-spacing:10.954094pt;}
.ws17{word-spacing:10.994552pt;}
.ws3c{word-spacing:11.156013pt;}
.ws79{word-spacing:11.256972pt;}
.ws0{word-spacing:11.630551pt;}
.ws49{word-spacing:11.711290pt;}
.ws2a{word-spacing:11.761769pt;}
.ws5e{word-spacing:11.913209pt;}
.ws8f{word-spacing:11.953622pt;}
.ws2b{word-spacing:11.963688pt;}
.ws6c{word-spacing:12.014168pt;}
.ws1{word-spacing:12.115158pt;}
.ws58{word-spacing:12.468485pt;}
.ws2e{word-spacing:13.225681pt;}
.ws8d{word-spacing:13.367057pt;}
.ws50{word-spacing:13.427599pt;}
.ws77{word-spacing:13.629518pt;}
.ws59{word-spacing:13.730478pt;}
.ws7e{word-spacing:13.831437pt;}
.ws19{word-spacing:13.875654pt;}
.ws4c{word-spacing:13.932396pt;}
.ws14{word-spacing:14.265658pt;}
.ws4d{word-spacing:14.336234pt;}
.wsb{word-spacing:15.083434pt;}
.ws24{word-spacing:15.143909pt;}
.ws52{word-spacing:15.194389pt;}
.ws7a{word-spacing:15.446787pt;}
.ws42{word-spacing:15.800145pt;}
.ws5f{word-spacing:16.153503pt;}
.ws1e{word-spacing:16.583249pt;}
.ws1c{word-spacing:16.588316pt;}
.wsa{word-spacing:16.718988pt;}
.ws80{word-spacing:16.910699pt;}
.ws51{word-spacing:16.961178pt;}
.ws73{word-spacing:17.614680pt;}
.ws26{word-spacing:18.021252pt;}
.ws46{word-spacing:18.080987pt;}
.ws55{word-spacing:18.677488pt;}
.ws39{word-spacing:19.030846pt;}
.ws6e{word-spacing:19.033568pt;}
.ws38{word-spacing:19.081326pt;}
.ws4b{word-spacing:19.434683pt;}
.ws57{word-spacing:20.040440pt;}
.ws21{word-spacing:20.080958pt;}
.ws9{word-spacing:22.852312pt;}
.ws15{word-spacing:25.580239pt;}
.ws6a{word-spacing:27.259036pt;}
.ws7b{word-spacing:27.999308pt;}
.ws20{word-spacing:31.393534pt;}
.ws61{word-spacing:1908.238501pt;}
._c{margin-left:-5.266045pt;}
._5{margin-left:-4.375577pt;}
._3{margin-left:-3.332355pt;}
._9{margin-left:-2.439182pt;}
._2{margin-left:-1.530587pt;}
._1{width:1.970993pt;}
._0{width:3.076480pt;}
._4{width:4.212115pt;}
._e{width:11.486595pt;}
._8{width:12.535161pt;}
._7{width:17.297215pt;}
._6{width:19.808366pt;}
._a{width:25.239849pt;}
._d{width:27.158077pt;}
._b{width:47.370267pt;}
.fs6{font-size:30.288021pt;}
.fs5{font-size:35.335687pt;}
.fs2{font-size:40.383859pt;}
.fs4{font-size:45.432031pt;}
.fs3{font-size:50.479697pt;}
.fs1{font-size:55.527870pt;}
.fs7{font-size:58.181867pt;}
.fs0{font-size:121.151577pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:27.108000pt;}
.y68{bottom:31.258667pt;}
.y66{bottom:94.310582pt;}
.y3a{bottom:94.311849pt;}
.y39{bottom:109.232661pt;}
.y65{bottom:109.455606pt;}
.y64{bottom:124.599363pt;}
.y8b{bottom:124.834975pt;}
.y38{bottom:130.081770pt;}
.yac{bottom:132.535426pt;}
.y63{bottom:139.743120pt;}
.y8a{bottom:139.979999pt;}
.yab{bottom:143.894194pt;}
.y37{bottom:145.225528pt;}
.y89{bottom:155.123756pt;}
.yaa{bottom:155.251696pt;}
.y62{bottom:159.002483pt;}
.y36{bottom:160.369285pt;}
.ya9{bottom:166.609197pt;}
.y88{bottom:175.659983pt;}
.ya8{bottom:177.967965pt;}
.y35{bottom:179.294231pt;}
.y61{bottom:183.007017pt;}
.ya7{bottom:189.325466pt;}
.y60{bottom:198.150774pt;}
.ya6{bottom:200.682967pt;}
.y87{bottom:201.328999pt;}
.y34{bottom:201.791356pt;}
.ya5{bottom:212.041735pt;}
.y5f{bottom:213.294531pt;}
.y86{bottom:216.474023pt;}
.y33{bottom:216.936380pt;}
.ya4{bottom:223.399236pt;}
.y5e{bottom:228.438288pt;}
.y85{bottom:231.617780pt;}
.y32{bottom:232.080137pt;}
.ya3{bottom:234.756737pt;}
.y5d{bottom:243.582045pt;}
.ya2{bottom:246.115505pt;}
.y84{bottom:246.761537pt;}
.y31{bottom:247.223894pt;}
.ya1{bottom:257.473006pt;}
.y5c{bottom:258.727069pt;}
.y83{bottom:261.905295pt;}
.y30{bottom:262.173841pt;}
.ya0{bottom:268.831774pt;}
.y5b{bottom:273.870826pt;}
.y82{bottom:277.049052pt;}
.y2f{bottom:277.317599pt;}
.y9f{bottom:280.189275pt;}
.y5a{bottom:289.014583pt;}
.y9e{bottom:291.546777pt;}
.y81{bottom:292.194076pt;}
.y2e{bottom:292.461356pt;}
.y9d{bottom:302.905545pt;}
.y59{bottom:304.158340pt;}
.y80{bottom:307.337833pt;}
.y2d{bottom:307.605113pt;}
.y9c{bottom:314.263046pt;}
.y58{bottom:319.302098pt;}
.y7f{bottom:322.481590pt;}
.y2c{bottom:322.748870pt;}
.y9b{bottom:325.620547pt;}
.y57{bottom:334.445855pt;}
.y9a{bottom:336.979315pt;}
.y7e{bottom:337.625347pt;}
.y2b{bottom:337.893894pt;}
.y99{bottom:348.336816pt;}
.y56{bottom:349.590879pt;}
.y7d{bottom:352.769104pt;}
.y2a{bottom:352.842575pt;}
.y98{bottom:359.695584pt;}
.y55{bottom:364.734636pt;}
.y29{bottom:367.987598pt;}
.y7c{bottom:368.149740pt;}
.y97{bottom:371.053085pt;}
.y54{bottom:379.878393pt;}
.y96{bottom:382.410586pt;}
.y28{bottom:383.131356pt;}
.y7b{bottom:383.293497pt;}
.y95{bottom:393.769354pt;}
.y53{bottom:395.022150pt;}
.y27{bottom:398.275113pt;}
.y7a{bottom:398.437254pt;}
.y94{bottom:405.126855pt;}
.y52{bottom:410.165907pt;}
.y26{bottom:413.418870pt;}
.y79{bottom:413.581011pt;}
.y93{bottom:423.868126pt;}
.y51{bottom:425.350200pt;}
.y25{bottom:428.368817pt;}
.y78{bottom:428.726035pt;}
.y50{bottom:440.493957pt;}
.y24{bottom:443.512575pt;}
.y77{bottom:443.869792pt;}
.y92{bottom:447.529375pt;}
.y4f{bottom:455.637714pt;}
.y23{bottom:458.656332pt;}
.y91{bottom:462.674399pt;}
.y76{bottom:464.406019pt;}
.y4e{bottom:470.782738pt;}
.y22{bottom:473.801356pt;}
.y90{bottom:477.818156pt;}
.y4d{bottom:485.926495pt;}
.y21{bottom:488.945113pt;}
.y75{bottom:490.075036pt;}
.y8f{bottom:492.961914pt;}
.y4c{bottom:501.070252pt;}
.y20{bottom:504.088870pt;}
.y74{bottom:505.220060pt;}
.y8e{bottom:508.105671pt;}
.y4b{bottom:516.254545pt;}
.y73{bottom:520.363817pt;}
.y1f{bottom:523.013816pt;}
.y8d{bottom:527.225693pt;}
.y4a{bottom:531.398302pt;}
.y72{bottom:535.507574pt;}
.y1e{bottom:545.510941pt;}
.y71{bottom:550.651331pt;}
.y49{bottom:550.657665pt;}
.y8c{bottom:550.886943pt;}
.y1d{bottom:563.968464pt;}
.y70{bottom:566.031967pt;}
.y48{bottom:570.018366pt;}
.y1c{bottom:576.588895pt;}
.y6f{bottom:581.175724pt;}
.y1b{bottom:589.014249pt;}
.y47{bottom:594.021633pt;}
.y6e{bottom:596.319481pt;}
.y1a{bottom:601.634680pt;}
.y46{bottom:609.166657pt;}
.y6d{bottom:611.463238pt;}
.y19{bottom:614.253844pt;}
.y45{bottom:624.310414pt;}
.y6c{bottom:626.606995pt;}
.y18{bottom:626.874275pt;}
.y44{bottom:639.454171pt;}
.y17{bottom:639.494706pt;}
.y16{bottom:652.113871pt;}
.y43{bottom:654.597928pt;}
.y15{bottom:664.734302pt;}
.y6b{bottom:669.682149pt;}
.y42{bottom:669.741685pt;}
.y14{bottom:677.354733pt;}
.y6a{bottom:681.039650pt;}
.y41{bottom:684.885443pt;}
.y13{bottom:689.973897pt;}
.y69{bottom:692.398418pt;}
.y40{bottom:700.030466pt;}
.y12{bottom:702.594328pt;}
.y3f{bottom:715.174224pt;}
.y11{bottom:715.214759pt;}
.y10{bottom:727.833923pt;}
.y3e{bottom:730.358516pt;}
.yf{bottom:740.454354pt;}
.y3d{bottom:745.502273pt;}
.ye{bottom:753.074785pt;}
.y3c{bottom:760.646030pt;}
.yd{bottom:765.693949pt;}
.y3b{bottom:775.789788pt;}
.yc{bottom:778.314380pt;}
.yb{bottom:790.933545pt;}
.ya{bottom:830.053967pt;}
.y9{bottom:845.671481pt;}
.y8{bottom:850.250710pt;}
.y7{bottom:861.287729pt;}
.y6{bottom:865.868225pt;}
.y5{bottom:877.092719pt;}
.y4{bottom:893.334731pt;}
.y3{bottom:933.087252pt;}
.y2{bottom:968.423952pt;}
.y67{bottom:1051.145333pt;}
.yad{bottom:1051.186667pt;}
.he{height:26.956339pt;}
.h6{height:30.287894pt;}
.h9{height:32.393038pt;}
.ha{height:32.641318pt;}
.hb{height:34.074024pt;}
.h10{height:34.629072pt;}
.hf{height:35.941635pt;}
.hc{height:35.992024pt;}
.h13{height:36.139244pt;}
.h12{height:36.144311pt;}
.h11{height:43.694582pt;}
.h8{height:44.926931pt;}
.h7{height:45.180277pt;}
.h4{height:49.698485pt;}
.hd{height:49.765677pt;}
.h5{height:50.347831pt;}
.h3{height:107.824904pt;}
.h2{height:1066.447320pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:754.053967pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:19.826667pt;}
.x2{left:64.633632pt;}
.x19{left:68.032000pt;}
.x14{left:74.729470pt;}
.x10{left:77.252796pt;}
.x4{left:103.229628pt;}
.x1a{left:124.409353pt;}
.x11{left:126.567861pt;}
.x5{left:167.460439pt;}
.x6{left:173.623081pt;}
.x13{left:184.917245pt;}
.x1b{left:186.785672pt;}
.xe{left:188.331083pt;}
.x12{left:201.597546pt;}
.x3{left:206.436455pt;}
.x26{left:208.085333pt;}
.xb{left:281.898094pt;}
.x7{left:290.491591pt;}
.x15{left:395.370501pt;}
.x8{left:396.822173pt;}
.x16{left:407.990932pt;}
.x23{left:413.453072pt;}
.x1f{left:428.899577pt;}
.x20{left:433.381268pt;}
.x9{left:474.935079pt;}
.x1c{left:495.015283pt;}
.x17{left:497.381535pt;}
.x1e{left:517.832890pt;}
.xc{left:540.133672pt;}
.x24{left:545.490673pt;}
.x21{left:548.867775pt;}
.xf{left:552.347483pt;}
.x1d{left:561.360267pt;}
.xd{left:573.638681pt;}
.xa{left:594.287646pt;}
.x22{left:612.016799pt;}
.x18{left:653.164000pt;}
.x25{left:662.464322pt;}
.x27{left:703.974667pt;}
}




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