
    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_5b777b39705c3693a140bad3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8044dee48da1d4680369927c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.927000;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_c9d284f18a97f535539ad36e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.913000;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_39262603d157c935d97b3ed9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.935000;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_3f90e99a8158ced2fc769358.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936000;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_d324d0334a152c21c73444bf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973000;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_e74f832926ee1fe01c0869eb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.947000;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_d93db7bc0d24ea1558a249c6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d93db7bc0d24ea1558a249c6.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_c6c7866e8aad532ce4e5e960.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.970000;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);}
.v2{vertical-align:-13.986000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.986000px;}
.v1{vertical-align:17.982000px;}
.lsb{letter-spacing:-1.350000px;}
.ls3{letter-spacing:-0.588000px;}
.lsd{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.045000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000384px;}
.lsa{letter-spacing:0.007200px;}
.ls8{letter-spacing:0.009000px;}
.lsc{letter-spacing:0.180000px;}
.lse{letter-spacing:0.405000px;}
.ls6{letter-spacing:0.456000px;}
.ls1{letter-spacing:0.741000px;}
.ls5{letter-spacing:0.798000px;}
.ls7{letter-spacing:0.912000px;}
.ls4{letter-spacing:1.596000px;}
.ls9{letter-spacing:17.925000px;}
.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;}
}
.ws1{word-spacing:-35.028000px;}
.ws5{word-spacing:-20.016000px;}
.ws3{word-spacing:-15.012000px;}
.ws28{word-spacing:-14.535000px;}
.ws2b{word-spacing:-13.851000px;}
.ws2a{word-spacing:-13.395000px;}
.ws29{word-spacing:-12.369000px;}
.ws20{word-spacing:-11.676000px;}
.ws0{word-spacing:-11.088000px;}
.ws75{word-spacing:-10.485000px;}
.ws76{word-spacing:-10.305000px;}
.ws74{word-spacing:-10.215000px;}
.ws77{word-spacing:-10.125000px;}
.ws2{word-spacing:-8.751996px;}
.ws9{word-spacing:-8.262000px;}
.ws4{word-spacing:-6.807108px;}
.wsa{word-spacing:-6.426000px;}
.ws82{word-spacing:-5.850000px;}
.ws35{word-spacing:-4.902000px;}
.wsf{word-spacing:-4.380000px;}
.wsd{word-spacing:-4.020000px;}
.ws49{word-spacing:-3.876000px;}
.ws6b{word-spacing:-3.534000px;}
.ws89{word-spacing:-3.240000px;}
.ws34{word-spacing:-3.078000px;}
.ws88{word-spacing:-3.015000px;}
.ws83{word-spacing:-2.925000px;}
.ws6c{word-spacing:-2.907000px;}
.ws6d{word-spacing:-2.508000px;}
.ws53{word-spacing:-2.109000px;}
.ws17{word-spacing:-2.040000px;}
.ws6e{word-spacing:-1.881000px;}
.ws19{word-spacing:-1.860000px;}
.ws40{word-spacing:-1.824000px;}
.ws52{word-spacing:-1.425000px;}
.ws3d{word-spacing:-1.368000px;}
.ws24{word-spacing:-1.311000px;}
.ws37{word-spacing:-1.254000px;}
.ws8{word-spacing:-1.176000px;}
.ws96{word-spacing:-1.035000px;}
.ws68{word-spacing:-0.969000px;}
.ws5a{word-spacing:-0.912000px;}
.ws4e{word-spacing:-0.855000px;}
.ws44{word-spacing:-0.798000px;}
.ws10{word-spacing:-0.480000px;}
.ws54{word-spacing:-0.456000px;}
.ws2c{word-spacing:-0.399000px;}
.ws78{word-spacing:-0.360000px;}
.ws2e{word-spacing:-0.342000px;}
.ws1c{word-spacing:-0.228000px;}
.wsc{word-spacing:-0.180000px;}
.wse{word-spacing:-0.120000px;}
.ws5e{word-spacing:-0.114000px;}
.ws87{word-spacing:-0.090000px;}
.ws7{word-spacing:0.000000px;}
.ws8e{word-spacing:0.045000px;}
.ws33{word-spacing:0.114000px;}
.ws11{word-spacing:0.300000px;}
.ws8f{word-spacing:0.450000px;}
.ws31{word-spacing:0.456000px;}
.ws18{word-spacing:0.840000px;}
.ws97{word-spacing:0.990000px;}
.ws50{word-spacing:1.083000px;}
.ws8c{word-spacing:1.215000px;}
.ws71{word-spacing:1.311000px;}
.ws7e{word-spacing:1.350000px;}
.ws39{word-spacing:1.368000px;}
.ws12{word-spacing:1.500000px;}
.ws1a{word-spacing:1.740000px;}
.ws6f{word-spacing:1.767000px;}
.ws98{word-spacing:1.890000px;}
.ws38{word-spacing:2.052000px;}
.ws5f{word-spacing:2.109000px;}
.ws1d{word-spacing:2.166000px;}
.ws61{word-spacing:2.451000px;}
.ws51{word-spacing:2.622000px;}
.ws7c{word-spacing:2.655000px;}
.ws73{word-spacing:2.679000px;}
.ws1f{word-spacing:2.736000px;}
.ws92{word-spacing:2.745000px;}
.ws16{word-spacing:2.760000px;}
.ws47{word-spacing:2.964000px;}
.ws90{word-spacing:2.970000px;}
.ws36{word-spacing:3.021000px;}
.ws79{word-spacing:3.105000px;}
.ws7a{word-spacing:3.150000px;}
.ws59{word-spacing:3.192000px;}
.ws45{word-spacing:3.306000px;}
.ws3b{word-spacing:3.705000px;}
.ws46{word-spacing:3.762000px;}
.ws7d{word-spacing:3.825000px;}
.ws58{word-spacing:4.161000px;}
.ws5c{word-spacing:4.218000px;}
.ws48{word-spacing:4.332000px;}
.ws2d{word-spacing:4.560000px;}
.ws25{word-spacing:4.902000px;}
.ws91{word-spacing:4.950000px;}
.ws8b{word-spacing:4.995000px;}
.ws7f{word-spacing:5.175000px;}
.ws4b{word-spacing:5.301000px;}
.ws86{word-spacing:5.445000px;}
.ws85{word-spacing:5.580000px;}
.ws63{word-spacing:5.757000px;}
.ws3e{word-spacing:5.814000px;}
.ws62{word-spacing:6.099000px;}
.ws8a{word-spacing:6.210000px;}
.ws21{word-spacing:6.213000px;}
.ws55{word-spacing:6.441000px;}
.ws32{word-spacing:6.669000px;}
.ws6a{word-spacing:6.726000px;}
.ws66{word-spacing:6.840000px;}
.ws14{word-spacing:7.200000px;}
.ws56{word-spacing:7.239000px;}
.ws13{word-spacing:7.500000px;}
.ws4c{word-spacing:7.638000px;}
.ws7b{word-spacing:7.740000px;}
.ws69{word-spacing:7.752000px;}
.ws8d{word-spacing:7.785000px;}
.ws23{word-spacing:7.809000px;}
.ws64{word-spacing:8.436000px;}
.ws1b{word-spacing:8.580000px;}
.ws1e{word-spacing:8.607000px;}
.ws4a{word-spacing:8.721000px;}
.ws70{word-spacing:8.835000px;}
.ws5d{word-spacing:8.892000px;}
.ws43{word-spacing:9.006000px;}
.ws30{word-spacing:9.177000px;}
.ws80{word-spacing:9.225000px;}
.ws81{word-spacing:9.315000px;}
.ws6{word-spacing:9.324000px;}
.wsb{word-spacing:9.420000px;}
.ws15{word-spacing:10.620000px;}
.ws67{word-spacing:10.944000px;}
.ws60{word-spacing:11.001000px;}
.ws5b{word-spacing:11.343000px;}
.ws72{word-spacing:11.400000px;}
.ws94{word-spacing:11.430000px;}
.ws95{word-spacing:11.880000px;}
.ws2f{word-spacing:12.141000px;}
.ws3c{word-spacing:12.255000px;}
.ws93{word-spacing:12.420000px;}
.ws4d{word-spacing:13.281000px;}
.ws4f{word-spacing:13.395000px;}
.ws84{word-spacing:14.265000px;}
.ws27{word-spacing:14.763000px;}
.ws65{word-spacing:14.991000px;}
.ws3f{word-spacing:17.613000px;}
.ws57{word-spacing:17.670000px;}
.ws3a{word-spacing:18.639000px;}
.ws26{word-spacing:18.924000px;}
.ws41{word-spacing:20.178000px;}
.ws22{word-spacing:21.717000px;}
.ws42{word-spacing:22.002000px;}
._3{margin-left:-1533.882000px;}
._0{margin-left:-11.256000px;}
._2{margin-left:-9.739800px;}
._5{margin-left:-7.770000px;}
._7{margin-left:-6.426216px;}
._c{margin-left:-5.367984px;}
._4{margin-left:-3.864000px;}
._1{margin-left:-2.301600px;}
._a{margin-left:-1.080000px;}
._9{width:1.301400px;}
._b{width:2.346216px;}
._f{width:3.642000px;}
._8{width:6.402384px;}
._6{width:8.258832px;}
._e{width:12.058200px;}
._d{width:18.414600px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(101,98,99);}
.fs4{font-size:24.486000px;}
.fs3{font-size:31.482000px;}
.fs0{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:2.246550px;}
.y1{bottom:48.041400px;}
.y5{bottom:48.044700px;}
.y21{bottom:99.673350px;}
.y45{bottom:101.289000px;}
.y20{bottom:114.677850px;}
.y47{bottom:124.487100px;}
.y1f{bottom:129.682350px;}
.y46{bottom:138.735600px;}
.y44{bottom:142.864800px;}
.y1e{bottom:144.686850px;}
.yb2{bottom:150.864300px;}
.y83{bottom:150.884550px;}
.y1d{bottom:159.691350px;}
.y43{bottom:160.121550px;}
.yb1{bottom:168.121050px;}
.y82{bottom:168.141300px;}
.y1c{bottom:174.695850px;}
.y42{bottom:177.378300px;}
.yb0{bottom:185.377800px;}
.y81{bottom:185.398050px;}
.y1b{bottom:189.700350px;}
.y41{bottom:194.635050px;}
.yaf{bottom:202.634550px;}
.y80{bottom:202.654800px;}
.y1a{bottom:204.704850px;}
.yae{bottom:219.891300px;}
.y7f{bottom:219.911550px;}
.y40{bottom:224.634900px;}
.y19{bottom:225.337350px;}
.yad{bottom:237.148050px;}
.y7e{bottom:237.168300px;}
.y18{bottom:240.341850px;}
.yac{bottom:254.404800px;}
.y7d{bottom:254.425050px;}
.y17{bottom:255.346350px;}
.yab{bottom:271.661550px;}
.y7c{bottom:271.681800px;}
.y16{bottom:276.724350px;}
.y3f{bottom:281.634900px;}
.yaa{bottom:288.918300px;}
.y15{bottom:291.728850px;}
.y7b{bottom:301.681800px;}
.ya9{bottom:306.175050px;}
.y14{bottom:306.733350px;}
.y3e{bottom:310.134900px;}
.y13{bottom:321.737850px;}
.ya8{bottom:323.431800px;}
.y3d{bottom:331.134900px;}
.y12{bottom:336.742350px;}
.y7a{bottom:349.573800px;}
.y3c{bottom:352.134900px;}
.ya7{bottom:353.431800px;}
.y79{bottom:366.830550px;}
.y11{bottom:371.623350px;}
.y3b{bottom:373.134900px;}
.y78{bottom:384.087300px;}
.y10{bottom:386.627850px;}
.y3a{bottom:394.134900px;}
.ya6{bottom:398.411550px;}
.y77{bottom:401.344050px;}
.yf{bottom:401.632350px;}
.y39{bottom:415.134900px;}
.ya5{bottom:415.668300px;}
.y76{bottom:418.600800px;}
.ye{bottom:422.264850px;}
.ya4{bottom:432.925050px;}
.y75{bottom:435.857550px;}
.y38{bottom:436.134900px;}
.yd{bottom:437.269350px;}
.ya3{bottom:450.181800px;}
.yc{bottom:452.273850px;}
.y74{bottom:453.114300px;}
.y37{bottom:457.134900px;}
.yb{bottom:467.278350px;}
.y73{bottom:470.371050px;}
.y36{bottom:478.134900px;}
.ya2{bottom:480.181800px;}
.ya{bottom:482.282850px;}
.y72{bottom:487.627800px;}
.y35{bottom:499.134900px;}
.y9{bottom:502.915350px;}
.y71{bottom:504.884550px;}
.y8{bottom:517.919850px;}
.y34{bottom:520.134900px;}
.y70{bottom:522.141300px;}
.ya1{bottom:525.107550px;}
.y7{bottom:532.924350px;}
.y6f{bottom:539.398050px;}
.y33{bottom:541.134900px;}
.ya0{bottom:542.364300px;}
.y6{bottom:547.928850px;}
.y6e{bottom:556.654800px;}
.y9f{bottom:559.621050px;}
.y32{bottom:562.134900px;}
.y6d{bottom:573.911550px;}
.y9e{bottom:576.877800px;}
.y31{bottom:583.134900px;}
.y6c{bottom:591.168300px;}
.y9d{bottom:594.134550px;}
.y30{bottom:604.134900px;}
.y6b{bottom:608.425050px;}
.y9c{bottom:611.391300px;}
.y2f{bottom:625.134900px;}
.y6a{bottom:625.681800px;}
.y9b{bottom:628.648050px;}
.y9a{bottom:645.904800px;}
.y2e{bottom:646.134900px;}
.y69{bottom:655.681800px;}
.y99{bottom:663.161550px;}
.y2d{bottom:667.134900px;}
.y98{bottom:680.418300px;}
.y2c{bottom:688.134900px;}
.y97{bottom:697.675050px;}
.y68{bottom:703.540050px;}
.y96{bottom:714.931800px;}
.y67{bottom:720.796800px;}
.y2b{bottom:730.390350px;}
.y66{bottom:738.053550px;}
.y95{bottom:744.931800px;}
.y2a{bottom:745.390350px;}
.y65{bottom:755.310300px;}
.y29{bottom:763.891350px;}
.ydb{bottom:766.128900px;}
.yc7{bottom:766.732050px;}
.y64{bottom:772.567050px;}
.y28{bottom:775.390350px;}
.yda{bottom:780.382650px;}
.yc6{bottom:780.985800px;}
.y94{bottom:789.783300px;}
.y63{bottom:789.823800px;}
.y27{bottom:793.891350px;}
.yd9{bottom:794.636400px;}
.yc5{bottom:795.228300px;}
.y93{bottom:807.040050px;}
.y62{bottom:807.080550px;}
.yd8{bottom:808.890150px;}
.yc4{bottom:809.482050px;}
.y26{bottom:818.147700px;}
.yd7{bottom:823.143900px;}
.yc3{bottom:823.735800px;}
.y92{bottom:824.296800px;}
.y61{bottom:824.337300px;}
.y25{bottom:835.400700px;}
.yd6{bottom:837.397650px;}
.yc2{bottom:837.978300px;}
.y91{bottom:841.553550px;}
.y60{bottom:841.594050px;}
.yd5{bottom:851.651400px;}
.yc1{bottom:852.232050px;}
.y90{bottom:858.810300px;}
.y5f{bottom:858.850800px;}
.yc0{bottom:866.485800px;}
.y24{bottom:873.925500px;}
.y8f{bottom:876.067050px;}
.y5e{bottom:876.107550px;}
.ybf{bottom:880.732050px;}
.yd4{bottom:882.026400px;}
.y8e{bottom:893.323800px;}
.y5d{bottom:893.364300px;}
.ybe{bottom:894.985800px;}
.yd3{bottom:896.280150px;}
.y23{bottom:908.418000px;}
.ybd{bottom:909.232050px;}
.yd2{bottom:910.533900px;}
.y8d{bottom:910.580550px;}
.y5c{bottom:910.621050px;}
.ybc{bottom:923.485800px;}
.y8c{bottom:927.837300px;}
.y5b{bottom:927.877800px;}
.ybb{bottom:937.724550px;}
.yd1{bottom:940.908900px;}
.y22{bottom:942.910500px;}
.y8b{bottom:945.094050px;}
.y5a{bottom:945.134550px;}
.yba{bottom:951.978300px;}
.yd0{bottom:955.158900px;}
.y8a{bottom:962.350800px;}
.y59{bottom:962.391300px;}
.yb9{bottom:966.232050px;}
.ycf{bottom:969.401400px;}
.y89{bottom:979.607550px;}
.y58{bottom:979.648050px;}
.yb8{bottom:980.485800px;}
.yce{bottom:983.655150px;}
.yb7{bottom:994.732050px;}
.y88{bottom:996.864300px;}
.y57{bottom:996.904800px;}
.ycd{bottom:997.908900px;}
.yb6{bottom:1008.985800px;}
.ycc{bottom:1012.147650px;}
.y52{bottom:1013.908350px;}
.y4e{bottom:1014.022350px;}
.y87{bottom:1014.121050px;}
.y56{bottom:1014.161550px;}
.yb5{bottom:1023.235800px;}
.ycb{bottom:1026.401400px;}
.y51{bottom:1031.165100px;}
.y4d{bottom:1031.279100px;}
.y86{bottom:1031.377800px;}
.y55{bottom:1031.418300px;}
.yb4{bottom:1037.489550px;}
.yca{bottom:1040.655150px;}
.y50{bottom:1048.421850px;}
.y4c{bottom:1048.535850px;}
.y85{bottom:1048.634550px;}
.y54{bottom:1048.675050px;}
.yc9{bottom:1054.908900px;}
.yb3{bottom:1064.489550px;}
.y4f{bottom:1065.678600px;}
.y4b{bottom:1065.792600px;}
.y84{bottom:1065.891300px;}
.y53{bottom:1065.931800px;}
.yc8{bottom:1069.154550px;}
.y4{bottom:1083.040200px;}
.y3{bottom:1095.041700px;}
.y2{bottom:1107.211200px;}
.y49{bottom:1115.673000px;}
.y48{bottom:1117.919550px;}
.he{height:12.400500px;}
.h8{height:17.850294px;}
.h4{height:30.618000px;}
.h3{height:30.702000px;}
.h9{height:31.854294px;}
.h14{height:32.085000px;}
.hd{height:32.220000px;}
.hf{height:32.235000px;}
.h10{height:32.250000px;}
.h13{height:32.252400px;}
.h12{height:32.265000px;}
.h11{height:32.280000px;}
.h2{height:33.012000px;}
.hc{height:40.812000px;}
.h6{height:40.995342px;}
.h7{height:41.007342px;}
.ha{height:47.160000px;}
.hb{height:52.632000px;}
.h5{height:92.106000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w2{width:173.313000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:68.035650px;}
.x19{left:71.990400px;}
.x1a{left:73.754400px;}
.x1f{left:76.398600px;}
.x25{left:83.031000px;}
.x24{left:85.287750px;}
.x8{left:90.470400px;}
.xc{left:92.433900px;}
.x15{left:95.142900px;}
.x1d{left:96.854400px;}
.x16{left:103.899900px;}
.x11{left:108.992400px;}
.x17{left:113.034900px;}
.xf{left:114.378900px;}
.xb{left:116.363400px;}
.x1c{left:126.096900px;}
.x13{left:135.998400px;}
.x14{left:139.305900px;}
.x12{left:141.069900px;}
.x7{left:146.109900px;}
.xd{left:147.485400px;}
.x10{left:149.826900px;}
.xe{left:151.359900px;}
.x1b{left:154.667400px;}
.x9{left:158.741400px;}
.xa{left:171.603900px;}
.x6{left:187.941900px;}
.x18{left:195.533400px;}
.x1e{left:263.610300px;}
.x22{left:459.207750px;}
.x26{left:474.206700px;}
.x23{left:476.464500px;}
.x21{left:650.188500px;}
.x1{left:660.992550px;}
.x20{left:665.809350px;}
.x4{left:683.629650px;}
.x3{left:706.036650px;}
.x2{left:749.874150px;}
@media print{
.v2{vertical-align:-12.432000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.432000pt;}
.v1{vertical-align:15.984000pt;}
.lsb{letter-spacing:-1.200000pt;}
.ls3{letter-spacing:-0.522667pt;}
.lsd{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.040000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000341pt;}
.lsa{letter-spacing:0.006400pt;}
.ls8{letter-spacing:0.008000pt;}
.lsc{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.360000pt;}
.ls6{letter-spacing:0.405333pt;}
.ls1{letter-spacing:0.658667pt;}
.ls5{letter-spacing:0.709333pt;}
.ls7{letter-spacing:0.810667pt;}
.ls4{letter-spacing:1.418667pt;}
.ls9{letter-spacing:15.933333pt;}
.ws1{word-spacing:-31.136000pt;}
.ws5{word-spacing:-17.792000pt;}
.ws3{word-spacing:-13.344000pt;}
.ws28{word-spacing:-12.920000pt;}
.ws2b{word-spacing:-12.312000pt;}
.ws2a{word-spacing:-11.906667pt;}
.ws29{word-spacing:-10.994667pt;}
.ws20{word-spacing:-10.378667pt;}
.ws0{word-spacing:-9.856000pt;}
.ws75{word-spacing:-9.320000pt;}
.ws76{word-spacing:-9.160000pt;}
.ws74{word-spacing:-9.080000pt;}
.ws77{word-spacing:-9.000000pt;}
.ws2{word-spacing:-7.779552pt;}
.ws9{word-spacing:-7.344000pt;}
.ws4{word-spacing:-6.050763pt;}
.wsa{word-spacing:-5.712000pt;}
.ws82{word-spacing:-5.200000pt;}
.ws35{word-spacing:-4.357333pt;}
.wsf{word-spacing:-3.893333pt;}
.wsd{word-spacing:-3.573333pt;}
.ws49{word-spacing:-3.445333pt;}
.ws6b{word-spacing:-3.141333pt;}
.ws89{word-spacing:-2.880000pt;}
.ws34{word-spacing:-2.736000pt;}
.ws88{word-spacing:-2.680000pt;}
.ws83{word-spacing:-2.600000pt;}
.ws6c{word-spacing:-2.584000pt;}
.ws6d{word-spacing:-2.229333pt;}
.ws53{word-spacing:-1.874667pt;}
.ws17{word-spacing:-1.813333pt;}
.ws6e{word-spacing:-1.672000pt;}
.ws19{word-spacing:-1.653333pt;}
.ws40{word-spacing:-1.621333pt;}
.ws52{word-spacing:-1.266667pt;}
.ws3d{word-spacing:-1.216000pt;}
.ws24{word-spacing:-1.165333pt;}
.ws37{word-spacing:-1.114667pt;}
.ws8{word-spacing:-1.045333pt;}
.ws96{word-spacing:-0.920000pt;}
.ws68{word-spacing:-0.861333pt;}
.ws5a{word-spacing:-0.810667pt;}
.ws4e{word-spacing:-0.760000pt;}
.ws44{word-spacing:-0.709333pt;}
.ws10{word-spacing:-0.426667pt;}
.ws54{word-spacing:-0.405333pt;}
.ws2c{word-spacing:-0.354667pt;}
.ws78{word-spacing:-0.320000pt;}
.ws2e{word-spacing:-0.304000pt;}
.ws1c{word-spacing:-0.202667pt;}
.wsc{word-spacing:-0.160000pt;}
.wse{word-spacing:-0.106667pt;}
.ws5e{word-spacing:-0.101333pt;}
.ws87{word-spacing:-0.080000pt;}
.ws7{word-spacing:0.000000pt;}
.ws8e{word-spacing:0.040000pt;}
.ws33{word-spacing:0.101333pt;}
.ws11{word-spacing:0.266667pt;}
.ws8f{word-spacing:0.400000pt;}
.ws31{word-spacing:0.405333pt;}
.ws18{word-spacing:0.746667pt;}
.ws97{word-spacing:0.880000pt;}
.ws50{word-spacing:0.962667pt;}
.ws8c{word-spacing:1.080000pt;}
.ws71{word-spacing:1.165333pt;}
.ws7e{word-spacing:1.200000pt;}
.ws39{word-spacing:1.216000pt;}
.ws12{word-spacing:1.333333pt;}
.ws1a{word-spacing:1.546667pt;}
.ws6f{word-spacing:1.570667pt;}
.ws98{word-spacing:1.680000pt;}
.ws38{word-spacing:1.824000pt;}
.ws5f{word-spacing:1.874667pt;}
.ws1d{word-spacing:1.925333pt;}
.ws61{word-spacing:2.178667pt;}
.ws51{word-spacing:2.330667pt;}
.ws7c{word-spacing:2.360000pt;}
.ws73{word-spacing:2.381333pt;}
.ws1f{word-spacing:2.432000pt;}
.ws92{word-spacing:2.440000pt;}
.ws16{word-spacing:2.453333pt;}
.ws47{word-spacing:2.634667pt;}
.ws90{word-spacing:2.640000pt;}
.ws36{word-spacing:2.685333pt;}
.ws79{word-spacing:2.760000pt;}
.ws7a{word-spacing:2.800000pt;}
.ws59{word-spacing:2.837333pt;}
.ws45{word-spacing:2.938667pt;}
.ws3b{word-spacing:3.293333pt;}
.ws46{word-spacing:3.344000pt;}
.ws7d{word-spacing:3.400000pt;}
.ws58{word-spacing:3.698667pt;}
.ws5c{word-spacing:3.749333pt;}
.ws48{word-spacing:3.850667pt;}
.ws2d{word-spacing:4.053333pt;}
.ws25{word-spacing:4.357333pt;}
.ws91{word-spacing:4.400000pt;}
.ws8b{word-spacing:4.440000pt;}
.ws7f{word-spacing:4.600000pt;}
.ws4b{word-spacing:4.712000pt;}
.ws86{word-spacing:4.840000pt;}
.ws85{word-spacing:4.960000pt;}
.ws63{word-spacing:5.117333pt;}
.ws3e{word-spacing:5.168000pt;}
.ws62{word-spacing:5.421333pt;}
.ws8a{word-spacing:5.520000pt;}
.ws21{word-spacing:5.522667pt;}
.ws55{word-spacing:5.725333pt;}
.ws32{word-spacing:5.928000pt;}
.ws6a{word-spacing:5.978667pt;}
.ws66{word-spacing:6.080000pt;}
.ws14{word-spacing:6.400000pt;}
.ws56{word-spacing:6.434667pt;}
.ws13{word-spacing:6.666667pt;}
.ws4c{word-spacing:6.789333pt;}
.ws7b{word-spacing:6.880000pt;}
.ws69{word-spacing:6.890667pt;}
.ws8d{word-spacing:6.920000pt;}
.ws23{word-spacing:6.941333pt;}
.ws64{word-spacing:7.498667pt;}
.ws1b{word-spacing:7.626667pt;}
.ws1e{word-spacing:7.650667pt;}
.ws4a{word-spacing:7.752000pt;}
.ws70{word-spacing:7.853333pt;}
.ws5d{word-spacing:7.904000pt;}
.ws43{word-spacing:8.005333pt;}
.ws30{word-spacing:8.157333pt;}
.ws80{word-spacing:8.200000pt;}
.ws81{word-spacing:8.280000pt;}
.ws6{word-spacing:8.288000pt;}
.wsb{word-spacing:8.373333pt;}
.ws15{word-spacing:9.440000pt;}
.ws67{word-spacing:9.728000pt;}
.ws60{word-spacing:9.778667pt;}
.ws5b{word-spacing:10.082667pt;}
.ws72{word-spacing:10.133333pt;}
.ws94{word-spacing:10.160000pt;}
.ws95{word-spacing:10.560000pt;}
.ws2f{word-spacing:10.792000pt;}
.ws3c{word-spacing:10.893333pt;}
.ws93{word-spacing:11.040000pt;}
.ws4d{word-spacing:11.805333pt;}
.ws4f{word-spacing:11.906667pt;}
.ws84{word-spacing:12.680000pt;}
.ws27{word-spacing:13.122667pt;}
.ws65{word-spacing:13.325333pt;}
.ws3f{word-spacing:15.656000pt;}
.ws57{word-spacing:15.706667pt;}
.ws3a{word-spacing:16.568000pt;}
.ws26{word-spacing:16.821333pt;}
.ws41{word-spacing:17.936000pt;}
.ws22{word-spacing:19.304000pt;}
.ws42{word-spacing:19.557333pt;}
._3{margin-left:-1363.450667pt;}
._0{margin-left:-10.005333pt;}
._2{margin-left:-8.657600pt;}
._5{margin-left:-6.906667pt;}
._7{margin-left:-5.712192pt;}
._c{margin-left:-4.771541pt;}
._4{margin-left:-3.434667pt;}
._1{margin-left:-2.045867pt;}
._a{margin-left:-0.960000pt;}
._9{width:1.156800pt;}
._b{width:2.085525pt;}
._f{width:3.237333pt;}
._8{width:5.691008pt;}
._6{width:7.341184pt;}
._e{width:10.718400pt;}
._d{width:16.368533pt;}
.fs4{font-size:21.765333pt;}
.fs3{font-size:27.984000pt;}
.fs0{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:1.996933pt;}
.y1{bottom:42.703467pt;}
.y5{bottom:42.706400pt;}
.y21{bottom:88.598533pt;}
.y45{bottom:90.034667pt;}
.y20{bottom:101.935867pt;}
.y47{bottom:110.655200pt;}
.y1f{bottom:115.273200pt;}
.y46{bottom:123.320533pt;}
.y44{bottom:126.990933pt;}
.y1e{bottom:128.610533pt;}
.yb2{bottom:134.101600pt;}
.y83{bottom:134.119600pt;}
.y1d{bottom:141.947867pt;}
.y43{bottom:142.330267pt;}
.yb1{bottom:149.440933pt;}
.y82{bottom:149.458933pt;}
.y1c{bottom:155.285200pt;}
.y42{bottom:157.669600pt;}
.yb0{bottom:164.780267pt;}
.y81{bottom:164.798267pt;}
.y1b{bottom:168.622533pt;}
.y41{bottom:173.008933pt;}
.yaf{bottom:180.119600pt;}
.y80{bottom:180.137600pt;}
.y1a{bottom:181.959867pt;}
.yae{bottom:195.458933pt;}
.y7f{bottom:195.476933pt;}
.y40{bottom:199.675467pt;}
.y19{bottom:200.299867pt;}
.yad{bottom:210.798267pt;}
.y7e{bottom:210.816267pt;}
.y18{bottom:213.637200pt;}
.yac{bottom:226.137600pt;}
.y7d{bottom:226.155600pt;}
.y17{bottom:226.974533pt;}
.yab{bottom:241.476933pt;}
.y7c{bottom:241.494933pt;}
.y16{bottom:245.977200pt;}
.y3f{bottom:250.342133pt;}
.yaa{bottom:256.816267pt;}
.y15{bottom:259.314533pt;}
.y7b{bottom:268.161600pt;}
.ya9{bottom:272.155600pt;}
.y14{bottom:272.651867pt;}
.y3e{bottom:275.675467pt;}
.y13{bottom:285.989200pt;}
.ya8{bottom:287.494933pt;}
.y3d{bottom:294.342133pt;}
.y12{bottom:299.326533pt;}
.y7a{bottom:310.732267pt;}
.y3c{bottom:313.008800pt;}
.ya7{bottom:314.161600pt;}
.y79{bottom:326.071600pt;}
.y11{bottom:330.331867pt;}
.y3b{bottom:331.675467pt;}
.y78{bottom:341.410933pt;}
.y10{bottom:343.669200pt;}
.y3a{bottom:350.342133pt;}
.ya6{bottom:354.143600pt;}
.y77{bottom:356.750267pt;}
.yf{bottom:357.006533pt;}
.y39{bottom:369.008800pt;}
.ya5{bottom:369.482933pt;}
.y76{bottom:372.089600pt;}
.ye{bottom:375.346533pt;}
.ya4{bottom:384.822267pt;}
.y75{bottom:387.428933pt;}
.y38{bottom:387.675467pt;}
.yd{bottom:388.683867pt;}
.ya3{bottom:400.161600pt;}
.yc{bottom:402.021200pt;}
.y74{bottom:402.768267pt;}
.y37{bottom:406.342133pt;}
.yb{bottom:415.358533pt;}
.y73{bottom:418.107600pt;}
.y36{bottom:425.008800pt;}
.ya2{bottom:426.828267pt;}
.ya{bottom:428.695867pt;}
.y72{bottom:433.446933pt;}
.y35{bottom:443.675467pt;}
.y9{bottom:447.035867pt;}
.y71{bottom:448.786267pt;}
.y8{bottom:460.373200pt;}
.y34{bottom:462.342133pt;}
.y70{bottom:464.125600pt;}
.ya1{bottom:466.762267pt;}
.y7{bottom:473.710533pt;}
.y6f{bottom:479.464933pt;}
.y33{bottom:481.008800pt;}
.ya0{bottom:482.101600pt;}
.y6{bottom:487.047867pt;}
.y6e{bottom:494.804267pt;}
.y9f{bottom:497.440933pt;}
.y32{bottom:499.675467pt;}
.y6d{bottom:510.143600pt;}
.y9e{bottom:512.780267pt;}
.y31{bottom:518.342133pt;}
.y6c{bottom:525.482933pt;}
.y9d{bottom:528.119600pt;}
.y30{bottom:537.008800pt;}
.y6b{bottom:540.822267pt;}
.y9c{bottom:543.458933pt;}
.y2f{bottom:555.675467pt;}
.y6a{bottom:556.161600pt;}
.y9b{bottom:558.798267pt;}
.y9a{bottom:574.137600pt;}
.y2e{bottom:574.342133pt;}
.y69{bottom:582.828267pt;}
.y99{bottom:589.476933pt;}
.y2d{bottom:593.008800pt;}
.y98{bottom:604.816267pt;}
.y2c{bottom:611.675467pt;}
.y97{bottom:620.155600pt;}
.y68{bottom:625.368933pt;}
.y96{bottom:635.494933pt;}
.y67{bottom:640.708267pt;}
.y2b{bottom:649.235867pt;}
.y66{bottom:656.047600pt;}
.y95{bottom:662.161600pt;}
.y2a{bottom:662.569200pt;}
.y65{bottom:671.386933pt;}
.y29{bottom:679.014533pt;}
.ydb{bottom:681.003467pt;}
.yc7{bottom:681.539600pt;}
.y64{bottom:686.726267pt;}
.y28{bottom:689.235867pt;}
.yda{bottom:693.673467pt;}
.yc6{bottom:694.209600pt;}
.y94{bottom:702.029600pt;}
.y63{bottom:702.065600pt;}
.y27{bottom:705.681200pt;}
.yd9{bottom:706.343467pt;}
.yc5{bottom:706.869600pt;}
.y93{bottom:717.368933pt;}
.y62{bottom:717.404933pt;}
.yd8{bottom:719.013467pt;}
.yc4{bottom:719.539600pt;}
.y26{bottom:727.242400pt;}
.yd7{bottom:731.683467pt;}
.yc3{bottom:732.209600pt;}
.y92{bottom:732.708267pt;}
.y61{bottom:732.744267pt;}
.y25{bottom:742.578400pt;}
.yd6{bottom:744.353467pt;}
.yc2{bottom:744.869600pt;}
.y91{bottom:748.047600pt;}
.y60{bottom:748.083600pt;}
.yd5{bottom:757.023467pt;}
.yc1{bottom:757.539600pt;}
.y90{bottom:763.386933pt;}
.y5f{bottom:763.422933pt;}
.yc0{bottom:770.209600pt;}
.y24{bottom:776.822667pt;}
.y8f{bottom:778.726267pt;}
.y5e{bottom:778.762267pt;}
.ybf{bottom:782.872933pt;}
.yd4{bottom:784.023467pt;}
.y8e{bottom:794.065600pt;}
.y5d{bottom:794.101600pt;}
.ybe{bottom:795.542933pt;}
.yd3{bottom:796.693467pt;}
.y23{bottom:807.482667pt;}
.ybd{bottom:808.206267pt;}
.yd2{bottom:809.363467pt;}
.y8d{bottom:809.404933pt;}
.y5c{bottom:809.440933pt;}
.ybc{bottom:820.876267pt;}
.y8c{bottom:824.744267pt;}
.y5b{bottom:824.780267pt;}
.ybb{bottom:833.532933pt;}
.yd1{bottom:836.363467pt;}
.y22{bottom:838.142667pt;}
.y8b{bottom:840.083600pt;}
.y5a{bottom:840.119600pt;}
.yba{bottom:846.202933pt;}
.yd0{bottom:849.030133pt;}
.y8a{bottom:855.422933pt;}
.y59{bottom:855.458933pt;}
.yb9{bottom:858.872933pt;}
.ycf{bottom:861.690133pt;}
.y89{bottom:870.762267pt;}
.y58{bottom:870.798267pt;}
.yb8{bottom:871.542933pt;}
.yce{bottom:874.360133pt;}
.yb7{bottom:884.206267pt;}
.y88{bottom:886.101600pt;}
.y57{bottom:886.137600pt;}
.ycd{bottom:887.030133pt;}
.yb6{bottom:896.876267pt;}
.ycc{bottom:899.686800pt;}
.y52{bottom:901.251867pt;}
.y4e{bottom:901.353200pt;}
.y87{bottom:901.440933pt;}
.y56{bottom:901.476933pt;}
.yb5{bottom:909.542933pt;}
.ycb{bottom:912.356800pt;}
.y51{bottom:916.591200pt;}
.y4d{bottom:916.692533pt;}
.y86{bottom:916.780267pt;}
.y55{bottom:916.816267pt;}
.yb4{bottom:922.212933pt;}
.yca{bottom:925.026800pt;}
.y50{bottom:931.930533pt;}
.y4c{bottom:932.031867pt;}
.y85{bottom:932.119600pt;}
.y54{bottom:932.155600pt;}
.yc9{bottom:937.696800pt;}
.yb3{bottom:946.212933pt;}
.y4f{bottom:947.269867pt;}
.y4b{bottom:947.371200pt;}
.y84{bottom:947.458933pt;}
.y53{bottom:947.494933pt;}
.yc8{bottom:950.359600pt;}
.y4{bottom:962.702400pt;}
.y3{bottom:973.370400pt;}
.y2{bottom:984.187733pt;}
.y49{bottom:991.709333pt;}
.y48{bottom:993.706267pt;}
.he{height:11.022667pt;}
.h8{height:15.866928pt;}
.h4{height:27.216000pt;}
.h3{height:27.290667pt;}
.h9{height:28.314928pt;}
.h14{height:28.520000pt;}
.hd{height:28.640000pt;}
.hf{height:28.653333pt;}
.h10{height:28.666667pt;}
.h13{height:28.668800pt;}
.h12{height:28.680000pt;}
.h11{height:28.693333pt;}
.h2{height:29.344000pt;}
.hc{height:36.277333pt;}
.h6{height:36.440304pt;}
.h7{height:36.450971pt;}
.ha{height:41.920000pt;}
.hb{height:46.784000pt;}
.h5{height:81.872000pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w2{width:154.056000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:60.476133pt;}
.x19{left:63.991467pt;}
.x1a{left:65.559467pt;}
.x1f{left:67.909867pt;}
.x25{left:73.805333pt;}
.x24{left:75.811333pt;}
.x8{left:80.418133pt;}
.xc{left:82.163467pt;}
.x15{left:84.571467pt;}
.x1d{left:86.092800pt;}
.x16{left:92.355467pt;}
.x11{left:96.882133pt;}
.x17{left:100.475467pt;}
.xf{left:101.670133pt;}
.xb{left:103.434133pt;}
.x1c{left:112.086133pt;}
.x13{left:120.887467pt;}
.x14{left:123.827467pt;}
.x12{left:125.395467pt;}
.x7{left:129.875467pt;}
.xd{left:131.098133pt;}
.x10{left:133.179467pt;}
.xe{left:134.542133pt;}
.x1b{left:137.482133pt;}
.x9{left:141.103467pt;}
.xa{left:152.536800pt;}
.x6{left:167.059467pt;}
.x18{left:173.807467pt;}
.x1e{left:234.320267pt;}
.x22{left:408.184667pt;}
.x26{left:421.517067pt;}
.x23{left:423.524000pt;}
.x21{left:577.945333pt;}
.x1{left:587.548933pt;}
.x20{left:591.830533pt;}
.x4{left:607.670800pt;}
.x3{left:627.588133pt;}
.x2{left:666.554800pt;}
}




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