
    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_3c9a2994f97da378d1ce91d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.752000;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_68f8778fe1162d41edb53e00.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.766000;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_4bde01027bfbba5ab27e9cde.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_34e120fb3d26d052e24e4dbc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.460000;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_6cb1da7a85b8a2fd4d9a49f5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893000;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_958c3296888b59a1a9e46a0f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.898000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-34.188000px;}
.v4{vertical-align:-17.358000px;}
.v5{vertical-align:-11.004000px;}
.v7{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:13.032000px;}
.v6{vertical-align:21.702000px;}
.v1{vertical-align:28.212000px;}
.v2{vertical-align:34.188000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.001500px;}
.ls0{letter-spacing:2.985797px;}
.ls16{letter-spacing:2.988600px;}
.lsb{letter-spacing:7.045702px;}
.lse{letter-spacing:7.051702px;}
.ls2{letter-spacing:10.961674px;}
.ls3{letter-spacing:10.963200px;}
.ls14{letter-spacing:16.603032px;}
.ls11{letter-spacing:18.367032px;}
.ls9{letter-spacing:18.474600px;}
.lsd{letter-spacing:18.890383px;}
.ls6{letter-spacing:19.415164px;}
.ls12{letter-spacing:19.508100px;}
.lsf{letter-spacing:20.282100px;}
.ls4{letter-spacing:20.773200px;}
.ls18{letter-spacing:21.540600px;}
.ls17{letter-spacing:21.546600px;}
.ls13{letter-spacing:22.400383px;}
.ls15{letter-spacing:22.914600px;}
.ls10{letter-spacing:24.158383px;}
.lsc{letter-spacing:25.939702px;}
.ls19{letter-spacing:26.490600px;}
.ls8{letter-spacing:26.586600px;}
.lsa{letter-spacing:26.815702px;}
.ls5{letter-spacing:26.900600px;}
.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;}
}
.ws8{word-spacing:-64.904742px;}
.ws38{word-spacing:-14.943900px;}
.wsa{word-spacing:-13.449600px;}
.ws4{word-spacing:-11.955150px;}
.ws51{word-spacing:-10.460700px;}
.ws6{word-spacing:-5.487426px;}
.ws14{word-spacing:-5.057050px;}
.ws15{word-spacing:-3.586545px;}
.ws42{word-spacing:-0.597756px;}
.ws2{word-spacing:-0.095641px;}
.wsa5{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.053200px;}
.ws16{word-spacing:-0.000109px;}
.ws7{word-spacing:0.000000px;}
.ws5d{word-spacing:0.239102px;}
.ws9a{word-spacing:0.298878px;}
.ws9b{word-spacing:0.343402px;}
.ws44{word-spacing:0.537980px;}
.ws80{word-spacing:0.777083px;}
.wsc{word-spacing:1.183565px;}
.ws7a{word-spacing:1.195512px;}
.ws7f{word-spacing:1.315063px;}
.ws91{word-spacing:1.374839px;}
.ws94{word-spacing:1.434614px;}
.ws74{word-spacing:1.673717px;}
.ws5c{word-spacing:1.733492px;}
.ws5e{word-spacing:1.793268px;}
.ws88{word-spacing:1.853044px;}
.ws4b{word-spacing:1.912819px;}
.ws95{word-spacing:1.972595px;}
.wsb1{word-spacing:2.008465px;}
.ws5{word-spacing:2.008474px;}
.ws27{word-spacing:2.092146px;}
.ws30{word-spacing:2.151922px;}
.wsae{word-spacing:2.199748px;}
.ws1b{word-spacing:2.211697px;}
.ws5f{word-spacing:2.331248px;}
.ws6f{word-spacing:2.510575px;}
.wsf{word-spacing:2.582323px;}
.ws2a{word-spacing:2.749678px;}
.ws8a{word-spacing:2.929004px;}
.ws36{word-spacing:2.988780px;}
.ws81{word-spacing:3.048556px;}
.ws83{word-spacing:3.168107px;}
.ws2e{word-spacing:3.347434px;}
.ws19{word-spacing:3.407209px;}
.ws5b{word-spacing:3.466985px;}
.ws65{word-spacing:3.526760px;}
.ws1f{word-spacing:3.538724px;}
.ws55{word-spacing:3.586536px;}
.ws56{word-spacing:3.646312px;}
.ws82{word-spacing:3.706087px;}
.ws8d{word-spacing:3.765863px;}
.ws1a{word-spacing:3.825638px;}
.ws49{word-spacing:3.945190px;}
.ws34{word-spacing:4.004965px;}
.ws7d{word-spacing:4.064741px;}
.wsaf{word-spacing:4.112572px;}
.wsa6{word-spacing:4.124516px;}
.ws23{word-spacing:4.184292px;}
.wsb{word-spacing:4.357670px;}
.ws6e{word-spacing:4.363619px;}
.ws2d{word-spacing:4.483170px;}
.ws11{word-spacing:4.626662px;}
.ws20{word-spacing:4.662497px;}
.ws89{word-spacing:4.782048px;}
.ws47{word-spacing:4.841824px;}
.wsd{word-spacing:4.841856px;}
.wsa3{word-spacing:4.959214px;}
.ws26{word-spacing:4.961375px;}
.ws45{word-spacing:5.021150px;}
.ws4e{word-spacing:5.140702px;}
.ws70{word-spacing:5.260253px;}
.ws29{word-spacing:5.320028px;}
.ws8c{word-spacing:5.379804px;}
.ws93{word-spacing:5.439580px;}
.ws61{word-spacing:5.499355px;}
.ws68{word-spacing:5.499369px;}
.wse{word-spacing:5.541235px;}
.ws3b{word-spacing:5.559131px;}
.ws4a{word-spacing:5.738458px;}
.ws73{word-spacing:5.798233px;}
.wsa2{word-spacing:5.858009px;}
.ws43{word-spacing:5.917784px;}
.ws9c{word-spacing:5.977560px;}
.ws97{word-spacing:6.037336px;}
.ws79{word-spacing:6.097111px;}
.ws32{word-spacing:6.156887px;}
.ws37{word-spacing:6.216662px;}
.ws4f{word-spacing:6.276438px;}
.ws22{word-spacing:6.395989px;}
.ws3c{word-spacing:6.455765px;}
.wsb5{word-spacing:6.455781px;}
.ws13{word-spacing:6.455808px;}
.ws9f{word-spacing:6.515540px;}
.wsa0{word-spacing:6.547402px;}
.wsa4{word-spacing:6.635092px;}
.ws2b{word-spacing:6.754643px;}
.ws35{word-spacing:6.814418px;}
.ws52{word-spacing:6.874194px;}
.ws96{word-spacing:6.933970px;}
.wsab{word-spacing:7.029628px;}
.ws72{word-spacing:7.053521px;}
.ws63{word-spacing:7.113296px;}
.ws69{word-spacing:7.125269px;}
.ws6c{word-spacing:7.173072px;}
.ws66{word-spacing:7.352399px;}
.ws31{word-spacing:7.412174px;}
.ws85{word-spacing:7.448951px;}
.ws1c{word-spacing:7.460014px;}
.ws62{word-spacing:7.471950px;}
.ws1d{word-spacing:7.507834px;}
.ws7c{word-spacing:7.591501px;}
.ws9{word-spacing:7.639373px;}
.wsac{word-spacing:7.699117px;}
.ws6b{word-spacing:7.711052px;}
.ws21{word-spacing:7.770828px;}
.ws71{word-spacing:7.890379px;}
.ws10{word-spacing:7.908365px;}
.ws6a{word-spacing:7.938220px;}
.ws3a{word-spacing:7.950155px;}
.ws3{word-spacing:7.986040px;}
.ws2c{word-spacing:8.009930px;}
.wsa7{word-spacing:8.129502px;}
.ws3f{word-spacing:8.189257px;}
.ws84{word-spacing:8.308808px;}
.ws25{word-spacing:8.368584px;}
.ws41{word-spacing:8.428360px;}
.wsa8{word-spacing:8.512067px;}
.ws8e{word-spacing:8.547911px;}
.wsb3{word-spacing:8.655529px;}
.ws3e{word-spacing:8.667462px;}
.wsa9{word-spacing:8.751170px;}
.ws60{word-spacing:8.787013px;}
.ws9d{word-spacing:8.966340px;}
.ws8f{word-spacing:9.026116px;}
.ws75{word-spacing:9.085891px;}
.ws90{word-spacing:9.205442px;}
.ws57{word-spacing:9.265218px;}
.wsb6{word-spacing:9.277196px;}
.ws7e{word-spacing:9.444545px;}
.ws48{word-spacing:9.564096px;}
.ws3d{word-spacing:9.862974px;}
.wsb4{word-spacing:9.898864px;}
.ws59{word-spacing:10.341179px;}
.ws87{word-spacing:10.394951px;}
.ws2f{word-spacing:10.460730px;}
.ws12{word-spacing:10.544486px;}
.ws4c{word-spacing:10.699832px;}
.ws4d{word-spacing:10.759608px;}
.ws33{word-spacing:10.819384px;}
.ws8b{word-spacing:11.118262px;}
.ws39{word-spacing:11.178037px;}
.ws98{word-spacing:11.297588px;}
.ws9e{word-spacing:11.357364px;}
.ws86{word-spacing:11.656242px;}
.ws24{word-spacing:11.835569px;}
.ws6d{word-spacing:12.194222px;}
.wsb2{word-spacing:12.194253px;}
.wsad{word-spacing:12.433356px;}
.wsaa{word-spacing:12.576818px;}
.ws28{word-spacing:12.732203px;}
.ws76{word-spacing:13.090856px;}
.ws92{word-spacing:13.264500px;}
.ws99{word-spacing:13.329959px;}
.ws7b{word-spacing:13.867939px;}
.wsb8{word-spacing:13.963615px;}
.ws18{word-spacing:14.047266px;}
.ws78{word-spacing:14.286368px;}
.ws53{word-spacing:14.356500px;}
.ws54{word-spacing:14.357100px;}
.ws40{word-spacing:14.704798px;}
.ws1e{word-spacing:15.589516px;}
.ws50{word-spacing:15.601432px;}
.ws58{word-spacing:16.744500px;}
.ws67{word-spacing:17.406698px;}
.ws5a{word-spacing:17.824500px;}
.wsb0{word-spacing:17.932725px;}
.wsb7{word-spacing:18.363110px;}
.wsb9{word-spacing:19.176061px;}
.ws64{word-spacing:19.845499px;}
.ws46{word-spacing:19.893370px;}
.ws0{word-spacing:19.896875px;}
.ws77{word-spacing:20.560500px;}
.wsa1{word-spacing:20.742133px;}
.ws17{word-spacing:29.828024px;}
._12{margin-left:-23.551586px;}
._d{margin-left:-8.069706px;}
._16{margin-left:-6.918512px;}
._14{margin-left:-5.678682px;}
._4{margin-left:-4.642208px;}
._1{margin-left:-3.511213px;}
._0{margin-left:-2.128008px;}
._2{margin-left:-1.004250px;}
._7{width:1.966613px;}
._3{width:3.538724px;}
._6{width:16.783123px;}
._15{width:18.936958px;}
._c{width:20.144377px;}
._f{width:22.093058px;}
._11{width:23.177396px;}
._5{width:24.815282px;}
._a{width:28.572800px;}
._e{width:29.887800px;}
._13{width:37.455388px;}
._8{width:39.222465px;}
._9{width:45.764314px;}
._10{width:59.357171px;}
._b{width:1568.461295px;}
.fc1{color:rgb(0,128,172);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:35.865600px;}
.fsc{font-size:40.647600px;}
.fs6{font-size:41.842800px;}
.fsa{font-size:45.429600px;}
.fs2{font-size:47.820600px;}
.fs0{font-size:53.200200px;}
.fs9{font-size:53.798400px;}
.fs7{font-size:59.058000px;}
.fsb{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs5{font-size:77.708400px;}
.fs1{font-size:95.641200px;}
.fs4{font-size:101.619000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:53.050500px;}
.y5e{bottom:64.857000px;}
.y29{bottom:67.995000px;}
.y28{bottom:87.421500px;}
.y5d{bottom:88.170000px;}
.y27{bottom:102.366000px;}
.y5c{bottom:105.784500px;}
.yed{bottom:105.805500px;}
.ycc{bottom:106.135500px;}
.y9c{bottom:106.452000px;}
.y7f{bottom:106.506000px;}
.y26{bottom:117.310500px;}
.ycb{bottom:124.101000px;}
.y9b{bottom:124.734000px;}
.y7e{bottom:124.843500px;}
.yec{bottom:131.815500px;}
.y5b{bottom:134.719500px;}
.yca{bottom:142.066500px;}
.y9a{bottom:143.016000px;}
.y7d{bottom:143.181000px;}
.y25{bottom:144.957000px;}
.y5a{bottom:152.335500px;}
.yc9{bottom:160.033500px;}
.y99{bottom:161.298000px;}
.y7c{bottom:161.517000px;}
.y24{bottom:163.717500px;}
.yeb{bottom:165.901500px;}
.y59{bottom:169.950000px;}
.yc8{bottom:177.999000px;}
.y98{bottom:179.580000px;}
.y7b{bottom:179.854500px;}
.yea{bottom:183.537000px;}
.y58{bottom:187.566000px;}
.y23{bottom:188.898000px;}
.yc7{bottom:195.964500px;}
.y97{bottom:197.862000px;}
.y7a{bottom:198.192000px;}
.y57{bottom:205.180500px;}
.y22{bottom:206.785500px;}
.ye9{bottom:209.547000px;}
.yc6{bottom:213.930000px;}
.y96{bottom:216.144000px;}
.y79{bottom:216.528000px;}
.y56{bottom:222.795000px;}
.y21{bottom:224.673000px;}
.yc5{bottom:231.897000px;}
.y95{bottom:234.426000px;}
.y78{bottom:234.865500px;}
.y55{bottom:240.411000px;}
.y20{bottom:242.560500px;}
.ye8{bottom:243.633000px;}
.yc4{bottom:249.862500px;}
.y94{bottom:252.709500px;}
.y77{bottom:253.201500px;}
.y54{bottom:258.025500px;}
.ye7{bottom:261.270000px;}
.yc3{bottom:267.828000px;}
.y1f{bottom:269.323500px;}
.y93{bottom:270.991500px;}
.y76{bottom:271.539000px;}
.y53{bottom:275.641500px;}
.ye6{bottom:278.905500px;}
.yc2{bottom:285.793500px;}
.y92{bottom:289.273500px;}
.y75{bottom:289.876500px;}
.y52{bottom:293.256000px;}
.ye5{bottom:296.542500px;}
.yc1{bottom:303.760500px;}
.y91{bottom:307.555500px;}
.y74{bottom:308.212500px;}
.y51{bottom:310.872000px;}
.ye4{bottom:314.178000px;}
.yc0{bottom:321.726000px;}
.y90{bottom:325.837500px;}
.y73{bottom:326.550000px;}
.y1e{bottom:328.560000px;}
.ye3{bottom:331.813500px;}
.y8f{bottom:344.119500px;}
.y72{bottom:344.887500px;}
.y50{bottom:345.784500px;}
.ye2{bottom:349.450500px;}
.ybf{bottom:357.823500px;}
.y8e{bottom:362.401500px;}
.y71{bottom:363.223500px;}
.ye1{bottom:367.086000px;}
.y4f{bottom:372.048000px;}
.y1d{bottom:372.379500px;}
.y8d{bottom:380.683500px;}
.y70{bottom:381.561000px;}
.ye0{bottom:384.723000px;}
.ybe{bottom:394.086000px;}
.y1c{bottom:397.783500px;}
.y8c{bottom:398.965500px;}
.y6f{bottom:399.897000px;}
.ydf{bottom:402.358500px;}
.y112{bottom:404.178000px;}
.y4e{bottom:406.008000px;}
.ybd{bottom:412.051500px;}
.y1b{bottom:414.222000px;}
.y8b{bottom:417.249000px;}
.y6e{bottom:418.234500px;}
.y111{bottom:419.121000px;}
.yde{bottom:419.995500px;}
.y4d{bottom:423.624000px;}
.ybc{bottom:430.017000px;}
.y1a{bottom:430.660500px;}
.y110{bottom:434.065500px;}
.y8a{bottom:435.531000px;}
.y6d{bottom:436.572000px;}
.ydd{bottom:437.631000px;}
.y4c{bottom:441.238500px;}
.y19{bottom:447.099000px;}
.ybb{bottom:447.984000px;}
.y10f{bottom:449.010000px;}
.y6c{bottom:454.908000px;}
.y4b{bottom:458.854500px;}
.y18{bottom:463.537500px;}
.ydc{bottom:463.641000px;}
.y10e{bottom:463.953000px;}
.yba{bottom:465.949500px;}
.y6b{bottom:473.245500px;}
.y89{bottom:475.581000px;}
.y4a{bottom:476.469000px;}
.y10d{bottom:478.897500px;}
.y17{bottom:479.974500px;}
.yb9{bottom:483.915000px;}
.y88{bottom:490.525500px;}
.y6a{bottom:491.583000px;}
.y10c{bottom:493.840500px;}
.y49{bottom:494.085000px;}
.y16{bottom:496.413000px;}
.ydb{bottom:497.727000px;}
.yb8{bottom:501.880500px;}
.y87{bottom:505.470000px;}
.y10b{bottom:508.785000px;}
.y69{bottom:509.919000px;}
.y48{bottom:511.699500px;}
.y15{bottom:512.851500px;}
.yda{bottom:515.364000px;}
.yb7{bottom:519.847500px;}
.y10a{bottom:523.729500px;}
.y14{bottom:529.290000px;}
.y47{bottom:529.315500px;}
.yd9{bottom:532.999500px;}
.yb6{bottom:537.813000px;}
.y109{bottom:538.672500px;}
.y68{bottom:541.020000px;}
.y13{bottom:545.728500px;}
.y46{bottom:546.930000px;}
.yd8{bottom:550.635000px;}
.y108{bottom:553.617000px;}
.yb5{bottom:555.778500px;}
.y67{bottom:559.357500px;}
.y12{bottom:562.167000px;}
.y45{bottom:564.544500px;}
.yd7{bottom:568.272000px;}
.y107{bottom:568.561500px;}
.yb4{bottom:573.744000px;}
.y66{bottom:577.693500px;}
.y11{bottom:578.605500px;}
.y44{bottom:582.160500px;}
.y106{bottom:583.504500px;}
.yd6{bottom:585.907500px;}
.yb3{bottom:591.709500px;}
.y10{bottom:595.044000px;}
.y65{bottom:596.031000px;}
.y105{bottom:598.449000px;}
.y43{bottom:599.775000px;}
.yd5{bottom:603.544500px;}
.yb2{bottom:609.676500px;}
.y104{bottom:613.393500px;}
.y64{bottom:614.367000px;}
.y42{bottom:617.391000px;}
.yf{bottom:620.448000px;}
.yd4{bottom:621.180000px;}
.yb1{bottom:627.642000px;}
.y103{bottom:628.336500px;}
.y63{bottom:632.704500px;}
.y41{bottom:635.005500px;}
.yd3{bottom:638.817000px;}
.y102{bottom:643.281000px;}
.yb0{bottom:645.607500px;}
.y62{bottom:651.042000px;}
.y40{bottom:652.621500px;}
.yd2{bottom:656.452500px;}
.y101{bottom:658.225500px;}
.yaf{bottom:663.573000px;}
.y61{bottom:669.378000px;}
.y3f{bottom:670.236000px;}
.y100{bottom:673.168500px;}
.yd1{bottom:674.089500px;}
.ye{bottom:677.874000px;}
.yae{bottom:681.540000px;}
.y60{bottom:687.715500px;}
.y3e{bottom:687.852000px;}
.yff{bottom:688.113000px;}
.yd0{bottom:691.725000px;}
.yd{bottom:692.817000px;}
.yad{bottom:699.505500px;}
.yfe{bottom:703.057500px;}
.y3d{bottom:705.466500px;}
.ycf{bottom:709.362000px;}
.yac{bottom:717.471000px;}
.yfd{bottom:718.000500px;}
.yc{bottom:718.078500px;}
.y3c{bottom:723.082500px;}
.yce{bottom:726.997500px;}
.yfc{bottom:732.945000px;}
.yb{bottom:733.023000px;}
.yab{bottom:735.436500px;}
.y5f{bottom:738.525000px;}
.y3b{bottom:740.697000px;}
.yfb{bottom:747.888000px;}
.yaa{bottom:753.403500px;}
.ya{bottom:754.386000px;}
.y3a{bottom:758.313000px;}
.yfa{bottom:762.832500px;}
.ya9{bottom:771.369000px;}
.y39{bottom:775.927500px;}
.yf9{bottom:777.777000px;}
.ya8{bottom:789.334500px;}
.y9{bottom:791.317500px;}
.yf8{bottom:792.720000px;}
.y38{bottom:793.542000px;}
.ycd{bottom:800.223000px;}
.ya7{bottom:807.300000px;}
.yf7{bottom:807.664500px;}
.y37{bottom:811.158000px;}
.y8{bottom:821.206500px;}
.yf6{bottom:822.609000px;}
.ya6{bottom:825.267000px;}
.y36{bottom:828.772500px;}
.yf5{bottom:837.552000px;}
.ya5{bottom:843.232500px;}
.y86{bottom:846.207000px;}
.y35{bottom:846.388500px;}
.y7{bottom:851.094000px;}
.yf4{bottom:852.496500px;}
.ya4{bottom:861.198000px;}
.y34{bottom:864.003000px;}
.y85{bottom:864.489000px;}
.yf3{bottom:867.441000px;}
.ya3{bottom:879.163500px;}
.y33{bottom:881.619000px;}
.yf2{bottom:882.384000px;}
.y84{bottom:882.771000px;}
.y6{bottom:887.145000px;}
.ya2{bottom:897.129000px;}
.y32{bottom:899.233500px;}
.y83{bottom:901.053000px;}
.y5{bottom:905.077500px;}
.yf1{bottom:906.294000px;}
.ya1{bottom:915.096000px;}
.y31{bottom:916.849500px;}
.y82{bottom:919.336500px;}
.ya0{bottom:933.061500px;}
.y30{bottom:934.464000px;}
.y81{bottom:937.618500px;}
.y4{bottom:941.785500px;}
.yf0{bottom:942.160500px;}
.y9f{bottom:951.027000px;}
.y2f{bottom:952.080000px;}
.y3{bottom:956.730000px;}
.yef{bottom:960.093000px;}
.y9e{bottom:968.992500px;}
.y2e{bottom:969.694500px;}
.y80{bottom:975.930000px;}
.yee{bottom:978.025500px;}
.y9d{bottom:986.959500px;}
.y2d{bottom:987.309000px;}
.y2c{bottom:1004.925000px;}
.y2{bottom:1009.407000px;}
.y1{bottom:1035.426000px;}
.y2b{bottom:1037.802000px;}
.hd{height:18.982429px;}
.h8{height:24.675533px;}
.he{height:32.804932px;}
.h4{height:32.900573px;}
.h12{height:33.091855px;}
.ha{height:37.013299px;}
.h9{height:37.228493px;}
.h2{height:38.782946px;}
.hf{height:41.006062px;}
.hc{height:41.125613px;}
.h11{height:41.236588px;}
.hb{height:41.364715px;}
.h5{height:49.351066px;}
.h14{height:50.483846px;}
.h10{height:50.489846px;}
.h13{height:54.157613px;}
.h7{height:68.843904px;}
.h6{height:69.913872px;}
.h3{height:72.113465px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x0{left:0.000000px;}
.xf{left:58.468500px;}
.x1b{left:60.453000px;}
.x19{left:66.430500px;}
.x11{left:68.865000px;}
.x5{left:72.781500px;}
.x10{left:76.401000px;}
.x13{left:77.895000px;}
.x12{left:80.884500px;}
.x1a{left:87.841500px;}
.x14{left:91.345500px;}
.x8{left:92.647500px;}
.x7{left:98.691000px;}
.x16{left:117.607500px;}
.xb{left:192.255000px;}
.xc{left:212.470500px;}
.x18{left:214.309500px;}
.x1{left:257.418000px;}
.x9{left:261.361500px;}
.xa{left:270.396000px;}
.xd{left:280.108500px;}
.x3{left:298.098000px;}
.x2{left:314.139000px;}
.xe{left:352.663500px;}
.x6{left:369.840000px;}
.x17{left:377.292000px;}
.x15{left:399.222000px;}
.x4{left:615.985500px;}
@media print{
.v3{vertical-align:-30.389333pt;}
.v4{vertical-align:-15.429333pt;}
.v5{vertical-align:-9.781333pt;}
.v7{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:11.584000pt;}
.v6{vertical-align:19.290667pt;}
.v1{vertical-align:25.077333pt;}
.v2{vertical-align:30.389333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.001333pt;}
.ls0{letter-spacing:2.654042pt;}
.ls16{letter-spacing:2.656533pt;}
.lsb{letter-spacing:6.262846pt;}
.lse{letter-spacing:6.268179pt;}
.ls2{letter-spacing:9.743710pt;}
.ls3{letter-spacing:9.745067pt;}
.ls14{letter-spacing:14.758251pt;}
.ls11{letter-spacing:16.326251pt;}
.ls9{letter-spacing:16.421867pt;}
.lsd{letter-spacing:16.791452pt;}
.ls6{letter-spacing:17.257923pt;}
.ls12{letter-spacing:17.340533pt;}
.lsf{letter-spacing:18.028533pt;}
.ls4{letter-spacing:18.465067pt;}
.ls18{letter-spacing:19.147200pt;}
.ls17{letter-spacing:19.152533pt;}
.ls13{letter-spacing:19.911452pt;}
.ls15{letter-spacing:20.368533pt;}
.ls10{letter-spacing:21.474118pt;}
.lsc{letter-spacing:23.057513pt;}
.ls19{letter-spacing:23.547200pt;}
.ls8{letter-spacing:23.632533pt;}
.lsa{letter-spacing:23.836179pt;}
.ls5{letter-spacing:23.911645pt;}
.ws8{word-spacing:-57.693104pt;}
.ws38{word-spacing:-13.283467pt;}
.wsa{word-spacing:-11.955200pt;}
.ws4{word-spacing:-10.626800pt;}
.ws51{word-spacing:-9.298400pt;}
.ws6{word-spacing:-4.877712pt;}
.ws14{word-spacing:-4.495155pt;}
.ws15{word-spacing:-3.188040pt;}
.ws42{word-spacing:-0.531339pt;}
.ws2{word-spacing:-0.085014pt;}
.wsa5{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.047289pt;}
.ws16{word-spacing:-0.000097pt;}
.ws7{word-spacing:0.000000pt;}
.ws5d{word-spacing:0.212535pt;}
.ws9a{word-spacing:0.265669pt;}
.ws9b{word-spacing:0.305246pt;}
.ws44{word-spacing:0.478205pt;}
.ws80{word-spacing:0.690740pt;}
.wsc{word-spacing:1.052058pt;}
.ws7a{word-spacing:1.062677pt;}
.ws7f{word-spacing:1.168945pt;}
.ws91{word-spacing:1.222079pt;}
.ws94{word-spacing:1.275213pt;}
.ws74{word-spacing:1.487748pt;}
.ws5c{word-spacing:1.540882pt;}
.ws5e{word-spacing:1.594016pt;}
.ws88{word-spacing:1.647150pt;}
.ws4b{word-spacing:1.700284pt;}
.ws95{word-spacing:1.753418pt;}
.wsb1{word-spacing:1.785302pt;}
.ws5{word-spacing:1.785310pt;}
.ws27{word-spacing:1.859685pt;}
.ws30{word-spacing:1.912819pt;}
.wsae{word-spacing:1.955331pt;}
.ws1b{word-spacing:1.965953pt;}
.ws5f{word-spacing:2.072221pt;}
.ws6f{word-spacing:2.231622pt;}
.wsf{word-spacing:2.295398pt;}
.ws2a{word-spacing:2.444158pt;}
.ws8a{word-spacing:2.603559pt;}
.ws36{word-spacing:2.656693pt;}
.ws81{word-spacing:2.709827pt;}
.ws83{word-spacing:2.816095pt;}
.ws2e{word-spacing:2.975497pt;}
.ws19{word-spacing:3.028630pt;}
.ws5b{word-spacing:3.081764pt;}
.ws65{word-spacing:3.134898pt;}
.ws1f{word-spacing:3.145533pt;}
.ws55{word-spacing:3.188032pt;}
.ws56{word-spacing:3.241166pt;}
.ws82{word-spacing:3.294300pt;}
.ws8d{word-spacing:3.347434pt;}
.ws1a{word-spacing:3.400567pt;}
.ws49{word-spacing:3.506835pt;}
.ws34{word-spacing:3.559969pt;}
.ws7d{word-spacing:3.613103pt;}
.wsaf{word-spacing:3.655619pt;}
.wsa6{word-spacing:3.666237pt;}
.ws23{word-spacing:3.719371pt;}
.wsb{word-spacing:3.873485pt;}
.ws6e{word-spacing:3.878772pt;}
.ws2d{word-spacing:3.985040pt;}
.ws11{word-spacing:4.112589pt;}
.ws20{word-spacing:4.144442pt;}
.ws89{word-spacing:4.250709pt;}
.ws47{word-spacing:4.303843pt;}
.wsd{word-spacing:4.303872pt;}
.wsa3{word-spacing:4.408190pt;}
.ws26{word-spacing:4.410111pt;}
.ws45{word-spacing:4.463245pt;}
.ws4e{word-spacing:4.569513pt;}
.ws70{word-spacing:4.675780pt;}
.ws29{word-spacing:4.728914pt;}
.ws8c{word-spacing:4.782048pt;}
.ws93{word-spacing:4.835182pt;}
.ws61{word-spacing:4.888316pt;}
.ws68{word-spacing:4.888328pt;}
.wse{word-spacing:4.925542pt;}
.ws3b{word-spacing:4.941450pt;}
.ws4a{word-spacing:5.100851pt;}
.ws73{word-spacing:5.153985pt;}
.wsa2{word-spacing:5.207119pt;}
.ws43{word-spacing:5.260253pt;}
.ws9c{word-spacing:5.313387pt;}
.ws97{word-spacing:5.366521pt;}
.ws79{word-spacing:5.419654pt;}
.ws32{word-spacing:5.472788pt;}
.ws37{word-spacing:5.525922pt;}
.ws4f{word-spacing:5.579056pt;}
.ws22{word-spacing:5.685324pt;}
.ws3c{word-spacing:5.738458pt;}
.wsb5{word-spacing:5.738472pt;}
.ws13{word-spacing:5.738496pt;}
.ws9f{word-spacing:5.791591pt;}
.wsa0{word-spacing:5.819913pt;}
.wsa4{word-spacing:5.897859pt;}
.ws2b{word-spacing:6.004127pt;}
.ws35{word-spacing:6.057261pt;}
.ws52{word-spacing:6.110395pt;}
.ws96{word-spacing:6.163529pt;}
.wsab{word-spacing:6.248558pt;}
.ws72{word-spacing:6.269796pt;}
.ws63{word-spacing:6.322930pt;}
.ws69{word-spacing:6.333573pt;}
.ws6c{word-spacing:6.376064pt;}
.ws66{word-spacing:6.535466pt;}
.ws31{word-spacing:6.588599pt;}
.ws85{word-spacing:6.621290pt;}
.ws1c{word-spacing:6.631123pt;}
.ws62{word-spacing:6.641733pt;}
.ws1d{word-spacing:6.673630pt;}
.ws7c{word-spacing:6.748001pt;}
.ws9{word-spacing:6.790554pt;}
.wsac{word-spacing:6.843659pt;}
.ws6b{word-spacing:6.854269pt;}
.ws21{word-spacing:6.907403pt;}
.ws71{word-spacing:7.013670pt;}
.ws10{word-spacing:7.029658pt;}
.ws6a{word-spacing:7.056195pt;}
.ws3a{word-spacing:7.066804pt;}
.ws3{word-spacing:7.098702pt;}
.ws2c{word-spacing:7.119938pt;}
.wsa7{word-spacing:7.226224pt;}
.ws3f{word-spacing:7.279340pt;}
.ws84{word-spacing:7.385607pt;}
.ws25{word-spacing:7.438741pt;}
.ws41{word-spacing:7.491875pt;}
.wsa8{word-spacing:7.566282pt;}
.ws8e{word-spacing:7.598143pt;}
.wsb3{word-spacing:7.693803pt;}
.ws3e{word-spacing:7.704411pt;}
.wsa9{word-spacing:7.778818pt;}
.ws60{word-spacing:7.810678pt;}
.ws9d{word-spacing:7.970080pt;}
.ws8f{word-spacing:8.023214pt;}
.ws75{word-spacing:8.076348pt;}
.ws90{word-spacing:8.182615pt;}
.ws57{word-spacing:8.235749pt;}
.wsb6{word-spacing:8.246397pt;}
.ws7e{word-spacing:8.395151pt;}
.ws48{word-spacing:8.501419pt;}
.ws3d{word-spacing:8.767088pt;}
.wsb4{word-spacing:8.798990pt;}
.ws59{word-spacing:9.192159pt;}
.ws87{word-spacing:9.239956pt;}
.ws2f{word-spacing:9.298427pt;}
.ws12{word-spacing:9.372877pt;}
.ws4c{word-spacing:9.510962pt;}
.ws4d{word-spacing:9.564096pt;}
.ws33{word-spacing:9.617230pt;}
.ws8b{word-spacing:9.882899pt;}
.ws39{word-spacing:9.936033pt;}
.ws98{word-spacing:10.042301pt;}
.ws9e{word-spacing:10.095435pt;}
.ws86{word-spacing:10.361104pt;}
.ws24{word-spacing:10.520506pt;}
.ws6d{word-spacing:10.839309pt;}
.wsb2{word-spacing:10.839336pt;}
.wsad{word-spacing:11.051872pt;}
.wsaa{word-spacing:11.179394pt;}
.ws28{word-spacing:11.317514pt;}
.ws76{word-spacing:11.636317pt;}
.ws92{word-spacing:11.790667pt;}
.ws99{word-spacing:11.848852pt;}
.ws7b{word-spacing:12.327057pt;}
.wsb8{word-spacing:12.412102pt;}
.ws18{word-spacing:12.486459pt;}
.ws78{word-spacing:12.698994pt;}
.ws53{word-spacing:12.761333pt;}
.ws54{word-spacing:12.761867pt;}
.ws40{word-spacing:13.070931pt;}
.ws1e{word-spacing:13.857347pt;}
.ws50{word-spacing:13.867939pt;}
.ws58{word-spacing:14.884000pt;}
.ws67{word-spacing:15.472621pt;}
.ws5a{word-spacing:15.844000pt;}
.wsb0{word-spacing:15.940200pt;}
.wsb7{word-spacing:16.322765pt;}
.wsb9{word-spacing:17.045387pt;}
.ws64{word-spacing:17.640444pt;}
.ws46{word-spacing:17.682995pt;}
.ws0{word-spacing:17.686111pt;}
.ws77{word-spacing:18.276000pt;}
.wsa1{word-spacing:18.437452pt;}
.ws17{word-spacing:26.513799pt;}
._12{margin-left:-20.934743pt;}
._d{margin-left:-7.173072pt;}
._16{margin-left:-6.149789pt;}
._14{margin-left:-5.047717pt;}
._4{margin-left:-4.126407pt;}
._1{margin-left:-3.121078pt;}
._0{margin-left:-1.891563pt;}
._2{margin-left:-0.892667pt;}
._7{width:1.748100pt;}
._3{width:3.145533pt;}
._6{width:14.918332pt;}
._15{width:16.832851pt;}
._c{width:17.906113pt;}
._f{width:19.638274pt;}
._11{width:20.602130pt;}
._5{width:22.058028pt;}
._a{width:25.398044pt;}
._e{width:26.566933pt;}
._13{width:33.293678pt;}
._8{width:34.864413pt;}
._9{width:40.679390pt;}
._10{width:52.761930pt;}
._b{width:1394.187818pt;}
.fs8{font-size:31.880533pt;}
.fsc{font-size:36.131200pt;}
.fs6{font-size:37.193600pt;}
.fsa{font-size:40.381867pt;}
.fs2{font-size:42.507200pt;}
.fs0{font-size:47.289067pt;}
.fs9{font-size:47.820800pt;}
.fs7{font-size:52.496000pt;}
.fsb{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs5{font-size:69.074133pt;}
.fs1{font-size:85.014400pt;}
.fs4{font-size:90.328000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:47.156000pt;}
.y5e{bottom:57.650667pt;}
.y29{bottom:60.440000pt;}
.y28{bottom:77.708000pt;}
.y5d{bottom:78.373333pt;}
.y27{bottom:90.992000pt;}
.y5c{bottom:94.030667pt;}
.yed{bottom:94.049333pt;}
.ycc{bottom:94.342667pt;}
.y9c{bottom:94.624000pt;}
.y7f{bottom:94.672000pt;}
.y26{bottom:104.276000pt;}
.ycb{bottom:110.312000pt;}
.y9b{bottom:110.874667pt;}
.y7e{bottom:110.972000pt;}
.yec{bottom:117.169333pt;}
.y5b{bottom:119.750667pt;}
.yca{bottom:126.281333pt;}
.y9a{bottom:127.125333pt;}
.y7d{bottom:127.272000pt;}
.y25{bottom:128.850667pt;}
.y5a{bottom:135.409333pt;}
.yc9{bottom:142.252000pt;}
.y99{bottom:143.376000pt;}
.y7c{bottom:143.570667pt;}
.y24{bottom:145.526667pt;}
.yeb{bottom:147.468000pt;}
.y59{bottom:151.066667pt;}
.yc8{bottom:158.221333pt;}
.y98{bottom:159.626667pt;}
.y7b{bottom:159.870667pt;}
.yea{bottom:163.144000pt;}
.y58{bottom:166.725333pt;}
.y23{bottom:167.909333pt;}
.yc7{bottom:174.190667pt;}
.y97{bottom:175.877333pt;}
.y7a{bottom:176.170667pt;}
.y57{bottom:182.382667pt;}
.y22{bottom:183.809333pt;}
.ye9{bottom:186.264000pt;}
.yc6{bottom:190.160000pt;}
.y96{bottom:192.128000pt;}
.y79{bottom:192.469333pt;}
.y56{bottom:198.040000pt;}
.y21{bottom:199.709333pt;}
.yc5{bottom:206.130667pt;}
.y95{bottom:208.378667pt;}
.y78{bottom:208.769333pt;}
.y55{bottom:213.698667pt;}
.y20{bottom:215.609333pt;}
.ye8{bottom:216.562667pt;}
.yc4{bottom:222.100000pt;}
.y94{bottom:224.630667pt;}
.y77{bottom:225.068000pt;}
.y54{bottom:229.356000pt;}
.ye7{bottom:232.240000pt;}
.yc3{bottom:238.069333pt;}
.y1f{bottom:239.398667pt;}
.y93{bottom:240.881333pt;}
.y76{bottom:241.368000pt;}
.y53{bottom:245.014667pt;}
.ye6{bottom:247.916000pt;}
.yc2{bottom:254.038667pt;}
.y92{bottom:257.132000pt;}
.y75{bottom:257.668000pt;}
.y52{bottom:260.672000pt;}
.ye5{bottom:263.593333pt;}
.yc1{bottom:270.009333pt;}
.y91{bottom:273.382667pt;}
.y74{bottom:273.966667pt;}
.y51{bottom:276.330667pt;}
.ye4{bottom:279.269333pt;}
.yc0{bottom:285.978667pt;}
.y90{bottom:289.633333pt;}
.y73{bottom:290.266667pt;}
.y1e{bottom:292.053333pt;}
.ye3{bottom:294.945333pt;}
.y8f{bottom:305.884000pt;}
.y72{bottom:306.566667pt;}
.y50{bottom:307.364000pt;}
.ye2{bottom:310.622667pt;}
.ybf{bottom:318.065333pt;}
.y8e{bottom:322.134667pt;}
.y71{bottom:322.865333pt;}
.ye1{bottom:326.298667pt;}
.y4f{bottom:330.709333pt;}
.y1d{bottom:331.004000pt;}
.y8d{bottom:338.385333pt;}
.y70{bottom:339.165333pt;}
.ye0{bottom:341.976000pt;}
.ybe{bottom:350.298667pt;}
.y1c{bottom:353.585333pt;}
.y8c{bottom:354.636000pt;}
.y6f{bottom:355.464000pt;}
.ydf{bottom:357.652000pt;}
.y112{bottom:359.269333pt;}
.y4e{bottom:360.896000pt;}
.ybd{bottom:366.268000pt;}
.y1b{bottom:368.197333pt;}
.y8b{bottom:370.888000pt;}
.y6e{bottom:371.764000pt;}
.y111{bottom:372.552000pt;}
.yde{bottom:373.329333pt;}
.y4d{bottom:376.554667pt;}
.ybc{bottom:382.237333pt;}
.y1a{bottom:382.809333pt;}
.y110{bottom:385.836000pt;}
.y8a{bottom:387.138667pt;}
.y6d{bottom:388.064000pt;}
.ydd{bottom:389.005333pt;}
.y4c{bottom:392.212000pt;}
.y19{bottom:397.421333pt;}
.ybb{bottom:398.208000pt;}
.y10f{bottom:399.120000pt;}
.y6c{bottom:404.362667pt;}
.y4b{bottom:407.870667pt;}
.y18{bottom:412.033333pt;}
.ydc{bottom:412.125333pt;}
.y10e{bottom:412.402667pt;}
.yba{bottom:414.177333pt;}
.y6b{bottom:420.662667pt;}
.y89{bottom:422.738667pt;}
.y4a{bottom:423.528000pt;}
.y10d{bottom:425.686667pt;}
.y17{bottom:426.644000pt;}
.yb9{bottom:430.146667pt;}
.y88{bottom:436.022667pt;}
.y6a{bottom:436.962667pt;}
.y10c{bottom:438.969333pt;}
.y49{bottom:439.186667pt;}
.y16{bottom:441.256000pt;}
.ydb{bottom:442.424000pt;}
.yb8{bottom:446.116000pt;}
.y87{bottom:449.306667pt;}
.y10b{bottom:452.253333pt;}
.y69{bottom:453.261333pt;}
.y48{bottom:454.844000pt;}
.y15{bottom:455.868000pt;}
.yda{bottom:458.101333pt;}
.yb7{bottom:462.086667pt;}
.y10a{bottom:465.537333pt;}
.y14{bottom:470.480000pt;}
.y47{bottom:470.502667pt;}
.yd9{bottom:473.777333pt;}
.yb6{bottom:478.056000pt;}
.y109{bottom:478.820000pt;}
.y68{bottom:480.906667pt;}
.y13{bottom:485.092000pt;}
.y46{bottom:486.160000pt;}
.yd8{bottom:489.453333pt;}
.y108{bottom:492.104000pt;}
.yb5{bottom:494.025333pt;}
.y67{bottom:497.206667pt;}
.y12{bottom:499.704000pt;}
.y45{bottom:501.817333pt;}
.yd7{bottom:505.130667pt;}
.y107{bottom:505.388000pt;}
.yb4{bottom:509.994667pt;}
.y66{bottom:513.505333pt;}
.y11{bottom:514.316000pt;}
.y44{bottom:517.476000pt;}
.y106{bottom:518.670667pt;}
.yd6{bottom:520.806667pt;}
.yb3{bottom:525.964000pt;}
.y10{bottom:528.928000pt;}
.y65{bottom:529.805333pt;}
.y105{bottom:531.954667pt;}
.y43{bottom:533.133333pt;}
.yd5{bottom:536.484000pt;}
.yb2{bottom:541.934667pt;}
.y104{bottom:545.238667pt;}
.y64{bottom:546.104000pt;}
.y42{bottom:548.792000pt;}
.yf{bottom:551.509333pt;}
.yd4{bottom:552.160000pt;}
.yb1{bottom:557.904000pt;}
.y103{bottom:558.521333pt;}
.y63{bottom:562.404000pt;}
.y41{bottom:564.449333pt;}
.yd3{bottom:567.837333pt;}
.y102{bottom:571.805333pt;}
.yb0{bottom:573.873333pt;}
.y62{bottom:578.704000pt;}
.y40{bottom:580.108000pt;}
.yd2{bottom:583.513333pt;}
.y101{bottom:585.089333pt;}
.yaf{bottom:589.842667pt;}
.y61{bottom:595.002667pt;}
.y3f{bottom:595.765333pt;}
.y100{bottom:598.372000pt;}
.yd1{bottom:599.190667pt;}
.ye{bottom:602.554667pt;}
.yae{bottom:605.813333pt;}
.y60{bottom:611.302667pt;}
.y3e{bottom:611.424000pt;}
.yff{bottom:611.656000pt;}
.yd0{bottom:614.866667pt;}
.yd{bottom:615.837333pt;}
.yad{bottom:621.782667pt;}
.yfe{bottom:624.940000pt;}
.y3d{bottom:627.081333pt;}
.ycf{bottom:630.544000pt;}
.yac{bottom:637.752000pt;}
.yfd{bottom:638.222667pt;}
.yc{bottom:638.292000pt;}
.y3c{bottom:642.740000pt;}
.yce{bottom:646.220000pt;}
.yfc{bottom:651.506667pt;}
.yb{bottom:651.576000pt;}
.yab{bottom:653.721333pt;}
.y5f{bottom:656.466667pt;}
.y3b{bottom:658.397333pt;}
.yfb{bottom:664.789333pt;}
.yaa{bottom:669.692000pt;}
.ya{bottom:670.565333pt;}
.y3a{bottom:674.056000pt;}
.yfa{bottom:678.073333pt;}
.ya9{bottom:685.661333pt;}
.y39{bottom:689.713333pt;}
.yf9{bottom:691.357333pt;}
.ya8{bottom:701.630667pt;}
.y9{bottom:703.393333pt;}
.yf8{bottom:704.640000pt;}
.y38{bottom:705.370667pt;}
.ycd{bottom:711.309333pt;}
.ya7{bottom:717.600000pt;}
.yf7{bottom:717.924000pt;}
.y37{bottom:721.029333pt;}
.y8{bottom:729.961333pt;}
.yf6{bottom:731.208000pt;}
.ya6{bottom:733.570667pt;}
.y36{bottom:736.686667pt;}
.yf5{bottom:744.490667pt;}
.ya5{bottom:749.540000pt;}
.y86{bottom:752.184000pt;}
.y35{bottom:752.345333pt;}
.y7{bottom:756.528000pt;}
.yf4{bottom:757.774667pt;}
.ya4{bottom:765.509333pt;}
.y34{bottom:768.002667pt;}
.y85{bottom:768.434667pt;}
.yf3{bottom:771.058667pt;}
.ya3{bottom:781.478667pt;}
.y33{bottom:783.661333pt;}
.yf2{bottom:784.341333pt;}
.y84{bottom:784.685333pt;}
.y6{bottom:788.573333pt;}
.ya2{bottom:797.448000pt;}
.y32{bottom:799.318667pt;}
.y83{bottom:800.936000pt;}
.y5{bottom:804.513333pt;}
.yf1{bottom:805.594667pt;}
.ya1{bottom:813.418667pt;}
.y31{bottom:814.977333pt;}
.y82{bottom:817.188000pt;}
.ya0{bottom:829.388000pt;}
.y30{bottom:830.634667pt;}
.y81{bottom:833.438667pt;}
.y4{bottom:837.142667pt;}
.yf0{bottom:837.476000pt;}
.y9f{bottom:845.357333pt;}
.y2f{bottom:846.293333pt;}
.y3{bottom:850.426667pt;}
.yef{bottom:853.416000pt;}
.y9e{bottom:861.326667pt;}
.y2e{bottom:861.950667pt;}
.y80{bottom:867.493333pt;}
.yee{bottom:869.356000pt;}
.y9d{bottom:877.297333pt;}
.y2d{bottom:877.608000pt;}
.y2c{bottom:893.266667pt;}
.y2{bottom:897.250667pt;}
.y1{bottom:920.378667pt;}
.y2b{bottom:922.490667pt;}
.hd{height:16.873270pt;}
.h8{height:21.933807pt;}
.he{height:29.159939pt;}
.h4{height:29.244954pt;}
.h12{height:29.414982pt;}
.ha{height:32.900710pt;}
.h9{height:33.091994pt;}
.h2{height:34.473730pt;}
.hf{height:36.449833pt;}
.hc{height:36.556100pt;}
.h11{height:36.654745pt;}
.hb{height:36.768636pt;}
.h5{height:43.867614pt;}
.h14{height:44.874530pt;}
.h10{height:44.879863pt;}
.h13{height:48.140100pt;}
.h7{height:61.194581pt;}
.h6{height:62.145664pt;}
.h3{height:64.100858pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x0{left:0.000000pt;}
.xf{left:51.972000pt;}
.x1b{left:53.736000pt;}
.x19{left:59.049333pt;}
.x11{left:61.213333pt;}
.x5{left:64.694667pt;}
.x10{left:67.912000pt;}
.x13{left:69.240000pt;}
.x12{left:71.897333pt;}
.x1a{left:78.081333pt;}
.x14{left:81.196000pt;}
.x8{left:82.353333pt;}
.x7{left:87.725333pt;}
.x16{left:104.540000pt;}
.xb{left:170.893333pt;}
.xc{left:188.862667pt;}
.x18{left:190.497333pt;}
.x1{left:228.816000pt;}
.x9{left:232.321333pt;}
.xa{left:240.352000pt;}
.xd{left:248.985333pt;}
.x3{left:264.976000pt;}
.x2{left:279.234667pt;}
.xe{left:313.478667pt;}
.x6{left:328.746667pt;}
.x17{left:335.370667pt;}
.x15{left:354.864000pt;}
.x4{left:547.542667pt;}
}




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