
    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_0dba80548cd54a6e72a986a1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_6b328051634ac6de40e306c0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.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:ff3;src:url('chunks/assets/font_b0c63a5d7238f3bd1bf44e99.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_145702045da0c3d9f4787732.woff')format("woff");}.ff4{font-family:ff4;line-height:0.705000;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_8b9ae293e4f2e3ec1e2c591a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_8e51c5de222cb85976f56849.woff')format("woff");}.ff6{font-family:ff6;line-height:0.902000;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_a3891c17b706cf4be2dc2eee.woff')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_dcd4e2dd6bb37fd87bd51ede.woff')format("woff");}.ff8{font-family:ff8;line-height:0.727000;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_9a981161af4bb05600f218ca.woff')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_f86720d6c5621a342f8f2aa7.woff')format("woff");}.ffa{font-family:ffa;line-height:0.696000;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_708703fbc08ee2a189ffc778.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v1{vertical-align:-9.822000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000493px;}
.ls1{letter-spacing:0.002696px;}
.lsc{letter-spacing:0.002698px;}
.lse{letter-spacing:0.002706px;}
.ls6{letter-spacing:0.006493px;}
.ls8{letter-spacing:2.984915px;}
.lsd{letter-spacing:9.086147px;}
.ls0{letter-spacing:9.092147px;}
.ls2{letter-spacing:21.698706px;}
.ls9{letter-spacing:21.700349px;}
.lsf{letter-spacing:21.704706px;}
.ls10{letter-spacing:21.879249px;}
.ls11{letter-spacing:21.883593px;}
.ls5{letter-spacing:24.686915px;}
.ls7{letter-spacing:24.692915px;}
.lsb{letter-spacing:32.723973px;}
.ls3{letter-spacing:32.726706px;}
.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;}
}
.ws5{word-spacing:-47.333852px;}
.ws17{word-spacing:-32.544027px;}
.ws8a{word-spacing:-22.749577px;}
.ws3e{word-spacing:-21.532152px;}
.ws72{word-spacing:-20.696745px;}
.ws94{word-spacing:-20.304017px;}
.ws26{word-spacing:-20.133457px;}
.ws76{word-spacing:-19.911289px;}
.ws8b{word-spacing:-19.242290px;}
.ws74{word-spacing:-19.060380px;}
.ws6d{word-spacing:-18.462797px;}
.ws73{word-spacing:-18.013106px;}
.ws1c{word-spacing:-17.947651px;}
.ws30{word-spacing:-17.882197px;}
.ws95{word-spacing:-17.685833px;}
.wsae{word-spacing:-17.620378px;}
.ws6a{word-spacing:-17.618958px;}
.ws77{word-spacing:-17.358560px;}
.ws65{word-spacing:-17.096742px;}
.wsab{word-spacing:-16.834923px;}
.ws3d{word-spacing:-16.769469px;}
.ws3f{word-spacing:-16.638559px;}
.ws75{word-spacing:-16.573105px;}
.ws35{word-spacing:-16.507650px;}
.ws7a{word-spacing:-16.407458px;}
.ws83{word-spacing:-16.406498px;}
.ws41{word-spacing:-16.376741px;}
.ws1e{word-spacing:-16.114923px;}
.ws5c{word-spacing:-16.109036px;}
.ws8{word-spacing:-15.829597px;}
.ws87{word-spacing:-15.743520px;}
.ws54{word-spacing:-15.722195px;}
.wsad{word-spacing:-15.682550px;}
.ws7f{word-spacing:-15.665560px;}
.ws90{word-spacing:-15.665062px;}
.ws91{word-spacing:-15.663926px;}
.ws1d{word-spacing:-15.656740px;}
.wsaa{word-spacing:-15.562163px;}
.ws31{word-spacing:-15.525831px;}
.wsa2{word-spacing:-15.329467px;}
.ws24{word-spacing:-15.067649px;}
.ws66{word-spacing:-14.871285px;}
.ws82{word-spacing:-14.798857px;}
.ws56{word-spacing:-14.674921px;}
.ws89{word-spacing:-14.662664px;}
.ws55{word-spacing:-14.609467px;}
.ws8c{word-spacing:-14.413103px;}
.ws36{word-spacing:-14.347648px;}
.ws42{word-spacing:-14.282194px;}
.ws62{word-spacing:-14.151285px;}
.ws1f{word-spacing:-14.020375px;}
.ws78{word-spacing:-13.693102px;}
.ws7e{word-spacing:-13.676296px;}
.ws6e{word-spacing:-13.627648px;}
.ws45{word-spacing:-13.562193px;}
.ws57{word-spacing:-13.496739px;}
.wsa3{word-spacing:-13.300375px;}
.ws4f{word-spacing:-13.234920px;}
.ws25{word-spacing:-13.104011px;}
.ws3b{word-spacing:-12.907647px;}
.ws2f{word-spacing:-12.776738px;}
.ws69{word-spacing:-12.711283px;}
.ws2d{word-spacing:-12.645829px;}
.ws1b{word-spacing:-12.514920px;}
.ws9{word-spacing:-12.449465px;}
.wsf{word-spacing:-12.318556px;}
.ws67{word-spacing:-12.253101px;}
.ws5b{word-spacing:-12.122192px;}
.ws79{word-spacing:-11.925828px;}
.ws6{word-spacing:-11.794919px;}
.ws46{word-spacing:-11.729464px;}
.wsa5{word-spacing:-11.714992px;}
.ws7b{word-spacing:-11.598555px;}
.ws50{word-spacing:-11.533101px;}
.ws3c{word-spacing:-11.409523px;}
.ws6b{word-spacing:-11.402191px;}
.ws5d{word-spacing:-11.205828px;}
.ws39{word-spacing:-11.140373px;}
.ws49{word-spacing:-11.074918px;}
.ws71{word-spacing:-11.009464px;}
.ws8d{word-spacing:-10.944009px;}
.wsa4{word-spacing:-10.894718px;}
.ws2{word-spacing:-10.878555px;}
.ws53{word-spacing:-10.878251px;}
.ws32{word-spacing:-10.875432px;}
.ws18{word-spacing:-10.850296px;}
.ws16{word-spacing:-10.844296px;}
.ws19{word-spacing:-10.815420px;}
.wsd{word-spacing:-10.813100px;}
.ws5e{word-spacing:-10.682191px;}
.ws68{word-spacing:-10.670296px;}
.ws9f{word-spacing:-10.656227px;}
.ws4d{word-spacing:-10.551282px;}
.ws9d{word-spacing:-10.158554px;}
.ws27{word-spacing:-9.962190px;}
.ws6c{word-spacing:-9.896736px;}
.ws2b{word-spacing:-9.831281px;}
.wsa8{word-spacing:-9.765826px;}
.ws12{word-spacing:-9.700372px;}
.ws4a{word-spacing:-9.634917px;}
.ws7{word-spacing:-9.569463px;}
.ws3a{word-spacing:-9.505446px;}
.wsa9{word-spacing:-9.504008px;}
.ws2e{word-spacing:-9.398979px;}
.ws2c{word-spacing:-9.368573px;}
.ws63{word-spacing:-9.307644px;}
.ws5f{word-spacing:-9.242190px;}
.ws4e{word-spacing:-9.176735px;}
.wse{word-spacing:-9.149810px;}
.ws13{word-spacing:-8.914917px;}
.ws9e{word-spacing:-8.849462px;}
.ws28{word-spacing:-8.653098px;}
.wsa{word-spacing:-8.522189px;}
.ws10{word-spacing:-8.480574px;}
.ws64{word-spacing:-8.474434px;}
.ws48{word-spacing:-8.468434px;}
.ws47{word-spacing:-8.466902px;}
.ws40{word-spacing:-8.456734px;}
.ws33{word-spacing:-8.356635px;}
.ws43{word-spacing:-8.308586px;}
.ws88{word-spacing:-8.260371px;}
.ws85{word-spacing:-7.998552px;}
.wsac{word-spacing:-7.933098px;}
.ws80{word-spacing:-7.802188px;}
.ws8e{word-spacing:-7.797642px;}
.ws14{word-spacing:-7.736734px;}
.wsb{word-spacing:-7.409461px;}
.ws4b{word-spacing:-7.213097px;}
.ws22{word-spacing:-7.147642px;}
.ws6f{word-spacing:-7.016733px;}
.ws86{word-spacing:-6.951279px;}
.wsa6{word-spacing:-6.885824px;}
.ws81{word-spacing:-6.754915px;}
.ws2a{word-spacing:-6.439450px;}
.ws29{word-spacing:-6.362187px;}
.ws4c{word-spacing:-6.296733px;}
.ws23{word-spacing:-6.231278px;}
.ws11{word-spacing:-6.180256px;}
.ws70{word-spacing:-6.100369px;}
.ws51{word-spacing:-5.969460px;}
.wsa0{word-spacing:-5.773096px;}
.wsaf{word-spacing:-5.707641px;}
.wsa1{word-spacing:-5.445823px;}
.wsa7{word-spacing:-5.380368px;}
.ws52{word-spacing:-5.184004px;}
.ws92{word-spacing:-4.725822px;}
.ws93{word-spacing:-4.071276px;}
.wsc{word-spacing:-3.874912px;}
.ws84{word-spacing:-3.678549px;}
.ws34{word-spacing:-3.547639px;}
.ws44{word-spacing:-3.416730px;}
.ws7c{word-spacing:-3.220366px;}
.ws98{word-spacing:-3.154912px;}
.ws58{word-spacing:-3.089457px;}
.ws96{word-spacing:-3.024003px;}
.ws8f{word-spacing:-2.958548px;}
.ws7d{word-spacing:-2.827639px;}
.ws99{word-spacing:-2.762184px;}
.ws59{word-spacing:-2.696730px;}
.ws97{word-spacing:-2.631275px;}
.ws9a{word-spacing:-2.369457px;}
.ws9b{word-spacing:-2.304002px;}
.ws9c{word-spacing:-1.976729px;}
.ws20{word-spacing:-1.649456px;}
.wsb0{word-spacing:-1.584001px;}
.ws21{word-spacing:-1.387638px;}
.ws37{word-spacing:-0.994910px;}
.ws38{word-spacing:-0.864001px;}
.ws5a{word-spacing:-0.798546px;}
.ws15{word-spacing:-0.065455px;}
.ws1a{word-spacing:0.000000px;}
.ws61{word-spacing:0.248727px;}
.ws60{word-spacing:0.314182px;}
.ws3{word-spacing:19.666172px;}
.ws4{word-spacing:19.845499px;}
.ws1{word-spacing:23.312640px;}
.ws0{word-spacing:37.081972px;}
._0{margin-left:-9.399608px;}
._9{margin-left:-7.746948px;}
._14{margin-left:-6.375992px;}
._b{margin-left:-5.367277px;}
._1f{margin-left:-4.123640px;}
._1{margin-left:-3.098772px;}
._2{margin-left:-1.936742px;}
._3{width:1.613941px;}
._5{width:3.098772px;}
._1a{width:4.281445px;}
._26{width:14.984784px;}
._25{width:15.998096px;}
._23{width:17.547527px;}
._4{width:18.721757px;}
._11{width:19.951642px;}
._17{width:21.688267px;}
._1d{width:22.926942px;}
._19{width:23.994032px;}
._24{width:25.165019px;}
._13{width:26.833521px;}
._22{width:27.993543px;}
._a{width:29.621994px;}
._e{width:30.781614px;}
._6{width:32.504041px;}
._16{width:33.813385px;}
._10{width:35.099565px;}
._d{width:36.813011px;}
._1c{width:38.417360px;}
._15{width:39.939821px;}
._8{width:42.091751px;}
._f{width:43.920037px;}
._c{width:45.098219px;}
._27{width:47.258221px;}
._1e{width:48.736781px;}
._20{width:52.756408px;}
._28{width:56.487320px;}
._1b{width:59.132147px;}
._21{width:61.330960px;}
._29{width:62.574598px;}
._12{width:65.689523px;}
._18{width:68.657386px;}
._7{width:94.684920px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y3e{bottom:82.726500px;}
.y1e{bottom:82.728000px;}
.y54{bottom:131.517000px;}
.y5b{bottom:131.518500px;}
.y8b{bottom:135.846000px;}
.y3d{bottom:139.537500px;}
.y62{bottom:141.679500px;}
.y82{bottom:146.008500px;}
.y1d{bottom:148.206000px;}
.y6d{bottom:156.171000px;}
.yb1{bottom:160.500000px;}
.y53{bottom:166.332000px;}
.y8a{bottom:170.661000px;}
.y3c{bottom:174.351000px;}
.y61{bottom:176.494500px;}
.y81{bottom:180.823500px;}
.y1c{bottom:183.021000px;}
.y6c{bottom:190.984500px;}
.yb0{bottom:195.313500px;}
.y52{bottom:201.147000px;}
.y89{bottom:205.476000px;}
.y3b{bottom:209.166000px;}
.y60{bottom:211.309500px;}
.y98{bottom:215.637000px;}
.y80{bottom:215.638500px;}
.y1b{bottom:217.834500px;}
.y6b{bottom:225.799500px;}
.yaf{bottom:230.128500px;}
.y3a{bottom:233.818500px;}
.y51{bottom:235.962000px;}
.y88{bottom:240.291000px;}
.y5f{bottom:246.123000px;}
.y7f{bottom:250.452000px;}
.y1a{bottom:252.649500px;}
.y6a{bottom:260.614500px;}
.yae{bottom:264.943500px;}
.y39{bottom:268.633500px;}
.y50{bottom:270.775500px;}
.y87{bottom:275.104500px;}
.y5e{bottom:280.938000px;}
.y7e{bottom:285.267000px;}
.y19{bottom:287.464500px;}
.y69{bottom:295.429500px;}
.yad{bottom:299.758500px;}
.y38{bottom:303.448500px;}
.y4f{bottom:305.590500px;}
.y86{bottom:309.919500px;}
.y5d{bottom:315.753000px;}
.y78{bottom:320.082000px;}
.y18{bottom:322.279500px;}
.y4e{bottom:330.243000px;}
.yac{bottom:334.572000px;}
.y37{bottom:338.262000px;}
.y5a{bottom:340.405500px;}
.y7d{bottom:344.734500px;}
.y68{bottom:354.895500px;}
.y17{bottom:357.093000px;}
.y36{bottom:362.914500px;}
.y4d{bottom:365.058000px;}
.yab{bottom:369.387000px;}
.y7a{bottom:371.097000px;}
.y7c{bottom:379.549500px;}
.y70{bottom:381.258000px;}
.y16{bottom:381.745500px;}
.y4c{bottom:389.710500px;}
.y77{bottom:395.749500px;}
.y35{bottom:397.729500px;}
.y59{bottom:399.873000px;}
.y85{bottom:404.202000px;}
.y91{bottom:414.363000px;}
.y15{bottom:416.560500px;}
.y7b{bottom:420.402000px;}
.y34{bottom:422.382000px;}
.y4b{bottom:424.525500px;}
.y79{bottom:428.377500px;}
.y67{bottom:430.564500px;}
.y6f{bottom:438.540000px;}
.y84{bottom:439.015500px;}
.y58{bottom:440.725500px;}
.y14{bottom:441.213000px;}
.y33{bottom:447.034500px;}
.y90{bottom:449.178000px;}
.y76{bottom:453.031500px;}
.y97{bottom:459.340500px;}
.y6e{bottom:463.192500px;}
.y4a{bottom:465.378000px;}
.y8f{bottom:473.830500px;}
.y13{bottom:476.028000px;}
.y75{bottom:477.684000px;}
.y83{bottom:479.869500px;}
.y32{bottom:481.849500px;}
.y9d{bottom:483.993000px;}
.y66{bottom:487.845000px;}
.y96{bottom:494.154000px;}
.y57{bottom:498.007500px;}
.y8e{bottom:508.645500px;}
.y12{bottom:510.843000px;}
.y65{bottom:512.497500px;}
.y95{bottom:518.806500px;}
.y49{bottom:522.660000px;}
.y31{bottom:522.703500px;}
.ya4{bottom:528.969000px;}
.y11{bottom:535.495500px;}
.y74{bottom:537.151500px;}
.yce{bottom:543.297000px;}
.yaa{bottom:543.460500px;}
.y48{bottom:547.312500px;}
.y8d{bottom:549.498000px;}
.y94{bottom:553.621500px;}
.y30{bottom:555.331500px;}
.y56{bottom:557.475000px;}
.ya3{bottom:563.784000px;}
.y10{bottom:570.310500px;}
.y73{bottom:571.965000px;}
.y9c{bottom:578.274000px;}
.y47{bottom:582.127500px;}
.y93{bottom:594.475500px;}
.yf{bottom:594.963000px;}
.y72{bottom:596.617500px;}
.ya2{bottom:598.599000px;}
.ycd{bottom:600.579000px;}
.y64{bottom:606.780000px;}
.y2f{bottom:612.613500px;}
.y9b{bottom:613.089000px;}
.y46{bottom:616.942500px;}
.ye{bottom:619.615500px;}
.ya1{bottom:623.251500px;}
.ycc{bottom:625.231500px;}
.y71{bottom:631.432500px;}
.ybd{bottom:633.412500px;}
.y2e{bottom:637.266000px;}
.y45{bottom:641.595000px;}
.ya9{bottom:647.904000px;}
.y5c{bottom:651.756000px;}
.y9a{bottom:653.943000px;}
.yd{bottom:654.430500px;}
.ya0{bottom:658.065000px;}
.ycb{bottom:666.084000px;}
.y63{bottom:666.247500px;}
.ybc{bottom:668.227500px;}
.y2d{bottom:672.081000px;}
.y44{bottom:676.410000px;}
.ya8{bottom:682.719000px;}
.y92{bottom:686.571000px;}
.yc{bottom:695.283000px;}
.y2c{bottom:696.733500px;}
.y9f{bottom:698.919000px;}
.y55{bottom:701.062500px;}
.ybb{bottom:703.042500px;}
.ya7{bottom:707.371500px;}
.y43{bottom:711.223500px;}
.yca{bottom:723.366000px;}
.yba{bottom:727.695000px;}
.y2b{bottom:731.547000px;}
.y42{bottom:735.876000px;}
.yc2{bottom:737.857500px;}
.ya6{bottom:742.185000px;}
.y8c{bottom:746.038500px;}
.yc9{bottom:748.018500px;}
.yb{bottom:752.565000px;}
.y2a{bottom:756.201000px;}
.yb9{bottom:762.510000px;}
.y41{bottom:770.691000px;}
.ya{bottom:777.217500px;}
.y99{bottom:780.853500px;}
.yc8{bottom:782.833500px;}
.ya5{bottom:783.039000px;}
.y29{bottom:791.014500px;}
.yc1{bottom:797.323500px;}
.y9{bottom:801.870000px;}
.yb8{bottom:803.362500px;}
.y40{bottom:805.506000px;}
.yc7{bottom:807.486000px;}
.y28{bottom:815.667000px;}
.yc6{bottom:832.138500px;}
.yc0{bottom:838.177500px;}
.y3f{bottom:840.321000px;}
.y8{bottom:842.722500px;}
.y27{bottom:850.482000px;}
.yc5{bottom:856.791000px;}
.yb7{bottom:860.644500px;}
.y26{bottom:875.134500px;}
.y9e{bottom:885.297000px;}
.yb6{bottom:895.459500px;}
.yc4{bottom:897.645000px;}
.y7{bottom:900.004500px;}
.y25{bottom:909.949500px;}
.y6{bottom:921.757500px;}
.yb5{bottom:930.273000px;}
.y24{bottom:944.764500px;}
.y5{bottom:954.046500px;}
.yc3{bottom:954.925500px;}
.yb4{bottom:965.088000px;}
.y23{bottom:979.579500px;}
.y4{bottom:985.962000px;}
.yb3{bottom:989.740500px;}
.ybf{bottom:999.903000px;}
.y22{bottom:1014.393000px;}
.yb2{bottom:1024.555500px;}
.y3{bottom:1029.280500px;}
.y21{bottom:1049.208000px;}
.ybe{bottom:1059.370500px;}
.y2{bottom:1077.576000px;}
.y20{bottom:1084.023000px;}
.y1{bottom:1117.455000px;}
.y1f{bottom:1118.836500px;}
.h5{height:41.783144px;}
.h6{height:42.201574px;}
.h4{height:49.156405px;}
.h3{height:51.287808px;}
.h7{height:60.426194px;}
.h2{height:72.407972px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:127.558500px;}
.x9{left:145.273500px;}
.xa{left:146.899500px;}
.xc{left:152.151000px;}
.xd{left:163.057500px;}
.x7{left:168.468000px;}
.x1{left:173.958000px;}
.x6{left:190.878000px;}
.x2{left:268.876500px;}
.x3{left:353.775000px;}
.x4{left:411.666000px;}
.x5{left:424.216500px;}
.xe{left:448.951500px;}
.xb{left:453.018000px;}
@media print{
.v1{vertical-align:-8.730667pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000438pt;}
.ls1{letter-spacing:0.002397pt;}
.lsc{letter-spacing:0.002399pt;}
.lse{letter-spacing:0.002405pt;}
.ls6{letter-spacing:0.005771pt;}
.ls8{letter-spacing:2.653258pt;}
.lsd{letter-spacing:8.076575pt;}
.ls0{letter-spacing:8.081908pt;}
.ls2{letter-spacing:19.287739pt;}
.ls9{letter-spacing:19.289199pt;}
.lsf{letter-spacing:19.293072pt;}
.ls10{letter-spacing:19.448221pt;}
.ls11{letter-spacing:19.452083pt;}
.ls5{letter-spacing:21.943925pt;}
.ls7{letter-spacing:21.949258pt;}
.lsb{letter-spacing:29.087976pt;}
.ls3{letter-spacing:29.090405pt;}
.ws5{word-spacing:-42.074535pt;}
.ws17{word-spacing:-28.928024pt;}
.ws8a{word-spacing:-20.221846pt;}
.ws3e{word-spacing:-19.139691pt;}
.ws72{word-spacing:-18.397106pt;}
.ws94{word-spacing:-18.048015pt;}
.ws26{word-spacing:-17.896406pt;}
.ws76{word-spacing:-17.698924pt;}
.ws8b{word-spacing:-17.104258pt;}
.ws74{word-spacing:-16.942560pt;}
.ws6d{word-spacing:-16.411375pt;}
.ws73{word-spacing:-16.011650pt;}
.ws1c{word-spacing:-15.953468pt;}
.ws30{word-spacing:-15.895286pt;}
.ws95{word-spacing:-15.720740pt;}
.wsae{word-spacing:-15.662559pt;}
.ws6a{word-spacing:-15.661296pt;}
.ws77{word-spacing:-15.429831pt;}
.ws65{word-spacing:-15.197104pt;}
.wsab{word-spacing:-14.964376pt;}
.ws3d{word-spacing:-14.906194pt;}
.ws3f{word-spacing:-14.789831pt;}
.ws75{word-spacing:-14.731649pt;}
.ws35{word-spacing:-14.673467pt;}
.ws7a{word-spacing:-14.584407pt;}
.ws83{word-spacing:-14.583554pt;}
.ws41{word-spacing:-14.557103pt;}
.ws1e{word-spacing:-14.324376pt;}
.ws5c{word-spacing:-14.319144pt;}
.ws8{word-spacing:-14.070753pt;}
.ws87{word-spacing:-13.994240pt;}
.ws54{word-spacing:-13.975284pt;}
.wsad{word-spacing:-13.940045pt;}
.ws7f{word-spacing:-13.924942pt;}
.ws90{word-spacing:-13.924500pt;}
.ws91{word-spacing:-13.923490pt;}
.ws1d{word-spacing:-13.917103pt;}
.wsaa{word-spacing:-13.833034pt;}
.ws31{word-spacing:-13.800739pt;}
.wsa2{word-spacing:-13.626193pt;}
.ws24{word-spacing:-13.393466pt;}
.ws66{word-spacing:-13.218920pt;}
.ws82{word-spacing:-13.154539pt;}
.ws56{word-spacing:-13.044375pt;}
.ws89{word-spacing:-13.033479pt;}
.ws55{word-spacing:-12.986193pt;}
.ws8c{word-spacing:-12.811647pt;}
.ws36{word-spacing:-12.753465pt;}
.ws42{word-spacing:-12.695283pt;}
.ws62{word-spacing:-12.578920pt;}
.ws1f{word-spacing:-12.462556pt;}
.ws78{word-spacing:-12.171647pt;}
.ws7e{word-spacing:-12.156708pt;}
.ws6e{word-spacing:-12.113465pt;}
.ws45{word-spacing:-12.055283pt;}
.ws57{word-spacing:-11.997101pt;}
.wsa3{word-spacing:-11.822555pt;}
.ws4f{word-spacing:-11.764373pt;}
.ws25{word-spacing:-11.648010pt;}
.ws3b{word-spacing:-11.473464pt;}
.ws2f{word-spacing:-11.357100pt;}
.ws69{word-spacing:-11.298919pt;}
.ws2d{word-spacing:-11.240737pt;}
.ws1b{word-spacing:-11.124373pt;}
.ws9{word-spacing:-11.066191pt;}
.wsf{word-spacing:-10.949827pt;}
.ws67{word-spacing:-10.891645pt;}
.ws5b{word-spacing:-10.775282pt;}
.ws79{word-spacing:-10.600736pt;}
.ws6{word-spacing:-10.484372pt;}
.ws46{word-spacing:-10.426191pt;}
.wsa5{word-spacing:-10.413326pt;}
.ws7b{word-spacing:-10.309827pt;}
.ws50{word-spacing:-10.251645pt;}
.ws3c{word-spacing:-10.141798pt;}
.ws6b{word-spacing:-10.135281pt;}
.ws5d{word-spacing:-9.960736pt;}
.ws39{word-spacing:-9.902554pt;}
.ws49{word-spacing:-9.844372pt;}
.ws71{word-spacing:-9.786190pt;}
.ws8d{word-spacing:-9.728008pt;}
.wsa4{word-spacing:-9.684194pt;}
.ws2{word-spacing:-9.669826pt;}
.ws53{word-spacing:-9.669556pt;}
.ws32{word-spacing:-9.667051pt;}
.ws18{word-spacing:-9.644708pt;}
.ws16{word-spacing:-9.639375pt;}
.ws19{word-spacing:-9.613707pt;}
.wsd{word-spacing:-9.611644pt;}
.ws5e{word-spacing:-9.495281pt;}
.ws68{word-spacing:-9.484708pt;}
.ws9f{word-spacing:-9.472202pt;}
.ws4d{word-spacing:-9.378917pt;}
.ws9d{word-spacing:-9.029826pt;}
.ws27{word-spacing:-8.855280pt;}
.ws6c{word-spacing:-8.797098pt;}
.ws2b{word-spacing:-8.738916pt;}
.wsa8{word-spacing:-8.680735pt;}
.ws12{word-spacing:-8.622553pt;}
.ws4a{word-spacing:-8.564371pt;}
.ws7{word-spacing:-8.506189pt;}
.ws3a{word-spacing:-8.449286pt;}
.wsa9{word-spacing:-8.448007pt;}
.ws2e{word-spacing:-8.354648pt;}
.ws2c{word-spacing:-8.327621pt;}
.ws63{word-spacing:-8.273461pt;}
.ws5f{word-spacing:-8.215280pt;}
.ws4e{word-spacing:-8.157098pt;}
.wse{word-spacing:-8.133165pt;}
.ws13{word-spacing:-7.924370pt;}
.ws9e{word-spacing:-7.866188pt;}
.ws28{word-spacing:-7.691643pt;}
.wsa{word-spacing:-7.575279pt;}
.ws10{word-spacing:-7.538288pt;}
.ws64{word-spacing:-7.532830pt;}
.ws48{word-spacing:-7.527497pt;}
.ws47{word-spacing:-7.526135pt;}
.ws40{word-spacing:-7.517097pt;}
.ws33{word-spacing:-7.428120pt;}
.ws43{word-spacing:-7.385409pt;}
.ws88{word-spacing:-7.342552pt;}
.ws85{word-spacing:-7.109824pt;}
.wsac{word-spacing:-7.051642pt;}
.ws80{word-spacing:-6.935279pt;}
.ws8e{word-spacing:-6.931237pt;}
.ws14{word-spacing:-6.877097pt;}
.wsb{word-spacing:-6.586187pt;}
.ws4b{word-spacing:-6.411642pt;}
.ws22{word-spacing:-6.353460pt;}
.ws6f{word-spacing:-6.237096pt;}
.ws86{word-spacing:-6.178914pt;}
.wsa6{word-spacing:-6.120732pt;}
.ws81{word-spacing:-6.004369pt;}
.ws2a{word-spacing:-5.723956pt;}
.ws29{word-spacing:-5.655277pt;}
.ws4c{word-spacing:-5.597096pt;}
.ws23{word-spacing:-5.538914pt;}
.ws11{word-spacing:-5.493561pt;}
.ws70{word-spacing:-5.422550pt;}
.ws51{word-spacing:-5.306186pt;}
.wsa0{word-spacing:-5.131641pt;}
.wsaf{word-spacing:-5.073459pt;}
.wsa1{word-spacing:-4.840731pt;}
.wsa7{word-spacing:-4.782549pt;}
.ws52{word-spacing:-4.608004pt;}
.ws92{word-spacing:-4.200731pt;}
.ws93{word-spacing:-3.618912pt;}
.wsc{word-spacing:-3.444367pt;}
.ws84{word-spacing:-3.269821pt;}
.ws34{word-spacing:-3.153457pt;}
.ws44{word-spacing:-3.037093pt;}
.ws7c{word-spacing:-2.862548pt;}
.ws98{word-spacing:-2.804366pt;}
.ws58{word-spacing:-2.746184pt;}
.ws96{word-spacing:-2.688002pt;}
.ws8f{word-spacing:-2.629820pt;}
.ws7d{word-spacing:-2.513457pt;}
.ws99{word-spacing:-2.455275pt;}
.ws59{word-spacing:-2.397093pt;}
.ws97{word-spacing:-2.338911pt;}
.ws9a{word-spacing:-2.106184pt;}
.ws9b{word-spacing:-2.048002pt;}
.ws9c{word-spacing:-1.757092pt;}
.ws20{word-spacing:-1.466183pt;}
.wsb0{word-spacing:-1.408001pt;}
.ws21{word-spacing:-1.233456pt;}
.ws37{word-spacing:-0.884364pt;}
.ws38{word-spacing:-0.768001pt;}
.ws5a{word-spacing:-0.709819pt;}
.ws15{word-spacing:-0.058182pt;}
.ws1a{word-spacing:0.000000pt;}
.ws61{word-spacing:0.221091pt;}
.ws60{word-spacing:0.279273pt;}
.ws3{word-spacing:17.481042pt;}
.ws4{word-spacing:17.640444pt;}
.ws1{word-spacing:20.722347pt;}
.ws0{word-spacing:32.961753pt;}
._0{margin-left:-8.355207pt;}
._9{margin-left:-6.886176pt;}
._14{margin-left:-5.667548pt;}
._b{margin-left:-4.770913pt;}
._1f{margin-left:-3.665458pt;}
._1{margin-left:-2.754464pt;}
._2{margin-left:-1.721549pt;}
._3{width:1.434614pt;}
._5{width:2.754464pt;}
._1a{width:3.805729pt;}
._26{width:13.319808pt;}
._25{width:14.220530pt;}
._23{width:15.597801pt;}
._4{width:16.641562pt;}
._11{width:17.734793pt;}
._17{width:19.278459pt;}
._1d{width:20.379504pt;}
._19{width:21.328028pt;}
._24{width:22.368906pt;}
._13{width:23.852019pt;}
._22{width:24.883149pt;}
._a{width:26.330662pt;}
._e{width:27.361435pt;}
._6{width:28.892481pt;}
._16{width:30.056342pt;}
._10{width:31.199614pt;}
._d{width:32.722676pt;}
._1c{width:34.148765pt;}
._15{width:35.502063pt;}
._8{width:37.414890pt;}
._f{width:39.040033pt;}
._c{width:40.087306pt;}
._27{width:42.007308pt;}
._1e{width:43.321583pt;}
._20{width:46.894585pt;}
._28{width:50.210951pt;}
._1b{width:52.561909pt;}
._21{width:54.516409pt;}
._29{width:55.621865pt;}
._12{width:58.390687pt;}
._18{width:61.028787pt;}
._7{width:84.164373pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:73.534667pt;}
.y1e{bottom:73.536000pt;}
.y54{bottom:116.904000pt;}
.y5b{bottom:116.905333pt;}
.y8b{bottom:120.752000pt;}
.y3d{bottom:124.033333pt;}
.y62{bottom:125.937333pt;}
.y82{bottom:129.785333pt;}
.y1d{bottom:131.738667pt;}
.y6d{bottom:138.818667pt;}
.yb1{bottom:142.666667pt;}
.y53{bottom:147.850667pt;}
.y8a{bottom:151.698667pt;}
.y3c{bottom:154.978667pt;}
.y61{bottom:156.884000pt;}
.y81{bottom:160.732000pt;}
.y1c{bottom:162.685333pt;}
.y6c{bottom:169.764000pt;}
.yb0{bottom:173.612000pt;}
.y52{bottom:178.797333pt;}
.y89{bottom:182.645333pt;}
.y3b{bottom:185.925333pt;}
.y60{bottom:187.830667pt;}
.y98{bottom:191.677333pt;}
.y80{bottom:191.678667pt;}
.y1b{bottom:193.630667pt;}
.y6b{bottom:200.710667pt;}
.yaf{bottom:204.558667pt;}
.y3a{bottom:207.838667pt;}
.y51{bottom:209.744000pt;}
.y88{bottom:213.592000pt;}
.y5f{bottom:218.776000pt;}
.y7f{bottom:222.624000pt;}
.y1a{bottom:224.577333pt;}
.y6a{bottom:231.657333pt;}
.yae{bottom:235.505333pt;}
.y39{bottom:238.785333pt;}
.y50{bottom:240.689333pt;}
.y87{bottom:244.537333pt;}
.y5e{bottom:249.722667pt;}
.y7e{bottom:253.570667pt;}
.y19{bottom:255.524000pt;}
.y69{bottom:262.604000pt;}
.yad{bottom:266.452000pt;}
.y38{bottom:269.732000pt;}
.y4f{bottom:271.636000pt;}
.y86{bottom:275.484000pt;}
.y5d{bottom:280.669333pt;}
.y78{bottom:284.517333pt;}
.y18{bottom:286.470667pt;}
.y4e{bottom:293.549333pt;}
.yac{bottom:297.397333pt;}
.y37{bottom:300.677333pt;}
.y5a{bottom:302.582667pt;}
.y7d{bottom:306.430667pt;}
.y68{bottom:315.462667pt;}
.y17{bottom:317.416000pt;}
.y36{bottom:322.590667pt;}
.y4d{bottom:324.496000pt;}
.yab{bottom:328.344000pt;}
.y7a{bottom:329.864000pt;}
.y7c{bottom:337.377333pt;}
.y70{bottom:338.896000pt;}
.y16{bottom:339.329333pt;}
.y4c{bottom:346.409333pt;}
.y77{bottom:351.777333pt;}
.y35{bottom:353.537333pt;}
.y59{bottom:355.442667pt;}
.y85{bottom:359.290667pt;}
.y91{bottom:368.322667pt;}
.y15{bottom:370.276000pt;}
.y7b{bottom:373.690667pt;}
.y34{bottom:375.450667pt;}
.y4b{bottom:377.356000pt;}
.y79{bottom:380.780000pt;}
.y67{bottom:382.724000pt;}
.y6f{bottom:389.813333pt;}
.y84{bottom:390.236000pt;}
.y58{bottom:391.756000pt;}
.y14{bottom:392.189333pt;}
.y33{bottom:397.364000pt;}
.y90{bottom:399.269333pt;}
.y76{bottom:402.694667pt;}
.y97{bottom:408.302667pt;}
.y6e{bottom:411.726667pt;}
.y4a{bottom:413.669333pt;}
.y8f{bottom:421.182667pt;}
.y13{bottom:423.136000pt;}
.y75{bottom:424.608000pt;}
.y83{bottom:426.550667pt;}
.y32{bottom:428.310667pt;}
.y9d{bottom:430.216000pt;}
.y66{bottom:433.640000pt;}
.y96{bottom:439.248000pt;}
.y57{bottom:442.673333pt;}
.y8e{bottom:452.129333pt;}
.y12{bottom:454.082667pt;}
.y65{bottom:455.553333pt;}
.y95{bottom:461.161333pt;}
.y49{bottom:464.586667pt;}
.y31{bottom:464.625333pt;}
.ya4{bottom:470.194667pt;}
.y11{bottom:475.996000pt;}
.y74{bottom:477.468000pt;}
.yce{bottom:482.930667pt;}
.yaa{bottom:483.076000pt;}
.y48{bottom:486.500000pt;}
.y8d{bottom:488.442667pt;}
.y94{bottom:492.108000pt;}
.y30{bottom:493.628000pt;}
.y56{bottom:495.533333pt;}
.ya3{bottom:501.141333pt;}
.y10{bottom:506.942667pt;}
.y73{bottom:508.413333pt;}
.y9c{bottom:514.021333pt;}
.y47{bottom:517.446667pt;}
.y93{bottom:528.422667pt;}
.yf{bottom:528.856000pt;}
.y72{bottom:530.326667pt;}
.ya2{bottom:532.088000pt;}
.ycd{bottom:533.848000pt;}
.y64{bottom:539.360000pt;}
.y2f{bottom:544.545333pt;}
.y9b{bottom:544.968000pt;}
.y46{bottom:548.393333pt;}
.ye{bottom:550.769333pt;}
.ya1{bottom:554.001333pt;}
.ycc{bottom:555.761333pt;}
.y71{bottom:561.273333pt;}
.ybd{bottom:563.033333pt;}
.y2e{bottom:566.458667pt;}
.y45{bottom:570.306667pt;}
.ya9{bottom:575.914667pt;}
.y5c{bottom:579.338667pt;}
.y9a{bottom:581.282667pt;}
.yd{bottom:581.716000pt;}
.ya0{bottom:584.946667pt;}
.ycb{bottom:592.074667pt;}
.y63{bottom:592.220000pt;}
.ybc{bottom:593.980000pt;}
.y2d{bottom:597.405333pt;}
.y44{bottom:601.253333pt;}
.ya8{bottom:606.861333pt;}
.y92{bottom:610.285333pt;}
.yc{bottom:618.029333pt;}
.y2c{bottom:619.318667pt;}
.y9f{bottom:621.261333pt;}
.y55{bottom:623.166667pt;}
.ybb{bottom:624.926667pt;}
.ya7{bottom:628.774667pt;}
.y43{bottom:632.198667pt;}
.yca{bottom:642.992000pt;}
.yba{bottom:646.840000pt;}
.y2b{bottom:650.264000pt;}
.y42{bottom:654.112000pt;}
.yc2{bottom:655.873333pt;}
.ya6{bottom:659.720000pt;}
.y8c{bottom:663.145333pt;}
.yc9{bottom:664.905333pt;}
.yb{bottom:668.946667pt;}
.y2a{bottom:672.178667pt;}
.yb9{bottom:677.786667pt;}
.y41{bottom:685.058667pt;}
.ya{bottom:690.860000pt;}
.y99{bottom:694.092000pt;}
.yc8{bottom:695.852000pt;}
.ya5{bottom:696.034667pt;}
.y29{bottom:703.124000pt;}
.yc1{bottom:708.732000pt;}
.y9{bottom:712.773333pt;}
.yb8{bottom:714.100000pt;}
.y40{bottom:716.005333pt;}
.yc7{bottom:717.765333pt;}
.y28{bottom:725.037333pt;}
.yc6{bottom:739.678667pt;}
.yc0{bottom:745.046667pt;}
.y3f{bottom:746.952000pt;}
.y8{bottom:749.086667pt;}
.y27{bottom:755.984000pt;}
.yc5{bottom:761.592000pt;}
.yb7{bottom:765.017333pt;}
.y26{bottom:777.897333pt;}
.y9e{bottom:786.930667pt;}
.yb6{bottom:795.964000pt;}
.yc4{bottom:797.906667pt;}
.y7{bottom:800.004000pt;}
.y25{bottom:808.844000pt;}
.y6{bottom:819.340000pt;}
.yb5{bottom:826.909333pt;}
.y24{bottom:839.790667pt;}
.y5{bottom:848.041333pt;}
.yc3{bottom:848.822667pt;}
.yb4{bottom:857.856000pt;}
.y23{bottom:870.737333pt;}
.y4{bottom:876.410667pt;}
.yb3{bottom:879.769333pt;}
.ybf{bottom:888.802667pt;}
.y22{bottom:901.682667pt;}
.yb2{bottom:910.716000pt;}
.y3{bottom:914.916000pt;}
.y21{bottom:932.629333pt;}
.ybe{bottom:941.662667pt;}
.y2{bottom:957.845333pt;}
.y20{bottom:963.576000pt;}
.y1{bottom:993.293333pt;}
.y1f{bottom:994.521333pt;}
.h5{height:37.140573pt;}
.h6{height:37.512510pt;}
.h4{height:43.694582pt;}
.h3{height:45.589163pt;}
.h7{height:53.712173pt;}
.h2{height:64.362642pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:113.385333pt;}
.x9{left:129.132000pt;}
.xa{left:130.577333pt;}
.xc{left:135.245333pt;}
.xd{left:144.940000pt;}
.x7{left:149.749333pt;}
.x1{left:154.629333pt;}
.x6{left:169.669333pt;}
.x2{left:239.001333pt;}
.x3{left:314.466667pt;}
.x4{left:365.925333pt;}
.x5{left:377.081333pt;}
.xe{left:399.068000pt;}
.xb{left:402.682667pt;}
}




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