
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_61e2a2a9d79dfa1be3835a74.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_f0e03cf7f27cb94280e1cb25.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_afd3bd697e4829459b6370e3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331543;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_c78c3443f9136a6025dde37d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.331331;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_ead3cd3e49fdc85a8b1d5ce6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.331331;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_a4427d4ec7cc9465d51b3b1c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_3c38526862cf1bc3d810691b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.331543;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_46448410d19f8472eca100d9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_b3ecfab516988721d3c84125.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_690d5030a434878fa4067bec.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_cda2ccd2e8844afbd99856bb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3c2bf192160f3763e8d66686.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.041992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3d15d1d09f601eba007c90cb.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;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:ff10;src:url('chunks/assets/font_61ae898c1274d74048463458.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.435059;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls25{letter-spacing:-0.810000px;}
.ls3b{letter-spacing:-0.666000px;}
.ls29{letter-spacing:-0.645098px;}
.ls32{letter-spacing:-0.612000px;}
.ls48{letter-spacing:-0.460200px;}
.ls1d{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.259800px;}
.ls27{letter-spacing:-0.226200px;}
.ls30{letter-spacing:-0.216000px;}
.ls2f{letter-spacing:-0.108000px;}
.ls2c{letter-spacing:-0.106800px;}
.ls4a{letter-spacing:-0.075000px;}
.ls2e{letter-spacing:-0.072000px;}
.ls1f{letter-spacing:-0.053280px;}
.ls1b{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018973px;}
.ls33{letter-spacing:0.054000px;}
.ls8{letter-spacing:0.056920px;}
.ls16{letter-spacing:0.072000px;}
.ls20{letter-spacing:0.075600px;}
.ls31{letter-spacing:0.090000px;}
.lsf{letter-spacing:0.094867px;}
.ls19{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.113841px;}
.ls1e{letter-spacing:0.164400px;}
.ls49{letter-spacing:0.206400px;}
.ls3a{letter-spacing:0.259800px;}
.ls14{letter-spacing:0.259920px;}
.ls4c{letter-spacing:0.274800px;}
.ls2a{letter-spacing:0.284602px;}
.ls1c{letter-spacing:0.305400px;}
.ls23{letter-spacing:0.320400px;}
.ls37{letter-spacing:0.338400px;}
.ls1a{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.376800px;}
.ls13{letter-spacing:0.413280px;}
.ls21{letter-spacing:0.439800px;}
.ls41{letter-spacing:0.564600px;}
.ls2d{letter-spacing:0.666000px;}
.ls0{letter-spacing:0.666720px;}
.ls3e{letter-spacing:0.676800px;}
.ls26{letter-spacing:0.720000px;}
.ls28{letter-spacing:0.796886px;}
.ls39{letter-spacing:0.846720px;}
.ls10{letter-spacing:0.872780px;}
.ls42{letter-spacing:0.978000px;}
.ls3c{letter-spacing:0.979920px;}
.ls35{letter-spacing:1.386720px;}
.ls34{letter-spacing:2.106720px;}
.ls18{letter-spacing:2.268000px;}
.lse{letter-spacing:2.390658px;}
.ls15{letter-spacing:2.826720px;}
.ls17{letter-spacing:2.988000px;}
.lsd{letter-spacing:3.149597px;}
.lsc{letter-spacing:3.908536px;}
.ls43{letter-spacing:4.266720px;}
.ls11{letter-spacing:4.667475px;}
.ls2b{letter-spacing:4.986000px;}
.ls3d{letter-spacing:4.986720px;}
.ls47{letter-spacing:5.166720px;}
.ls3{letter-spacing:5.426414px;}
.ls3f{letter-spacing:5.706720px;}
.ls1{letter-spacing:6.185353px;}
.ls2{letter-spacing:6.311843px;}
.ls44{letter-spacing:6.426720px;}
.ls5{letter-spacing:7.703231px;}
.ls6{letter-spacing:8.462170px;}
.ls45{letter-spacing:9.306720px;}
.ls4b{letter-spacing:10.746720px;}
.ls36{letter-spacing:11.466720px;}
.ls40{letter-spacing:12.186720px;}
.lsa{letter-spacing:14.533683px;}
.ls9{letter-spacing:14.723418px;}
.lsb{letter-spacing:15.292622px;}
.ls38{letter-spacing:15.786720px;}
.ls46{letter-spacing:27.486720px;}
.ls4d{letter-spacing:41.706720px;}
.ls4e{letter-spacing:46.026720px;}
.ls12{letter-spacing:99.486720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1b{word-spacing:-59.760000px;}
.ws1f{word-spacing:-17.177880px;}
.ws7{word-spacing:-17.053080px;}
.wsa{word-spacing:-16.990080px;}
.ws1e{word-spacing:-16.951680px;}
.ws9{word-spacing:-16.933680px;}
.ws23{word-spacing:-16.888080px;}
.ws20{word-spacing:-16.819680px;}
.ws3{word-spacing:-16.777680px;}
.ws6{word-spacing:-16.688880px;}
.wsf{word-spacing:-16.620765px;}
.ws4{word-spacing:-16.613280px;}
.ws1{word-spacing:-16.560000px;}
.ws21{word-spacing:-16.538280px;}
.ws24{word-spacing:-16.506480px;}
.ws8{word-spacing:-16.353480px;}
.ws11{word-spacing:-15.937720px;}
.ws13{word-spacing:-15.918747px;}
.ws12{word-spacing:-15.880800px;}
.ws10{word-spacing:-15.842853px;}
.wse{word-spacing:-15.823879px;}
.ws2{word-spacing:-15.300000px;}
.ws18{word-spacing:-15.102000px;}
.ws19{word-spacing:-15.066000px;}
.ws17{word-spacing:-15.012000px;}
.ws1c{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.796000px;}
.ws22{word-spacing:-14.680200px;}
.ws1d{word-spacing:-14.274000px;}
.ws0{word-spacing:-14.220000px;}
.ws15{word-spacing:-13.392000px;}
.wsb{word-spacing:-11.160000px;}
.ws5{word-spacing:-10.808640px;}
.wsd{word-spacing:-10.440000px;}
.wsc{word-spacing:-10.213800px;}
.ws14{word-spacing:-8.928000px;}
.ws1a{word-spacing:0.000000px;}
._3{margin-left:-12.721680px;}
._8{margin-left:-9.863520px;}
._a{margin-left:-8.580960px;}
._11{margin-left:-6.720703px;}
._10{margin-left:-4.781316px;}
._5{margin-left:-3.640560px;}
._7{margin-left:-2.390400px;}
._0{margin-left:-1.093680px;}
._1{width:1.137600px;}
._2{width:2.464320px;}
._6{width:4.242960px;}
._d{width:5.711016px;}
._f{width:6.734347px;}
._c{width:8.087650px;}
._9{width:9.360720px;}
._b{width:10.766160px;}
._4{width:12.130560px;}
._e{width:14.287028px;}
._15{width:15.378727px;}
._17{width:18.127680px;}
._16{width:19.288320px;}
._18{width:26.531280px;}
._12{width:31.272480px;}
._14{width:35.829120px;}
._13{width:37.494240px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.760000px;}
.fs3{font-size:18.000000px;}
.fsc{font-size:30.240000px;}
.fsb{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fsa{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.fs9{font-size:56.920429px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:1.440000px;}
.y3f{bottom:2.520000px;}
.y4b{bottom:3.600000px;}
.y4f{bottom:5.010000px;}
.y35{bottom:5.745000px;}
.y3e{bottom:10.260000px;}
.y2{bottom:13.680000px;}
.y5{bottom:14.040000px;}
.y4a{bottom:22.320000px;}
.y34{bottom:30.945000px;}
.y4{bottom:32.400000px;}
.y3d{bottom:40.320000px;}
.y49{bottom:44.460000px;}
.y3c{bottom:51.870000px;}
.y3{bottom:55.470000px;}
.y33{bottom:55.605000px;}
.ya{bottom:57.600000px;}
.y48{bottom:63.570000px;}
.y3b{bottom:65.010000px;}
.y9{bottom:75.780000px;}
.y32{bottom:77.385000px;}
.y3a{bottom:77.970000px;}
.y47{bottom:87.150000px;}
.y8{bottom:95.760000px;}
.y39{bottom:99.750000px;}
.y31{bottom:102.450000px;}
.y46{bottom:104.610000px;}
.y45{bottom:111.090000px;}
.y4d{bottom:120.060000px;}
.y75{bottom:123.120000px;}
.yc1{bottom:123.480000px;}
.y44{bottom:126.930000px;}
.y30{bottom:130.710000px;}
.y9b{bottom:136.080000px;}
.y4c{bottom:141.840000px;}
.y43{bottom:142.590000px;}
.y74{bottom:153.900000px;}
.yc0{bottom:154.260000px;}
.y9a{bottom:157.860000px;}
.y42{bottom:158.070000px;}
.y36{bottom:158.580000px;}
.y2f{bottom:158.970000px;}
.y38{bottom:161.850000px;}
.y37{bottom:172.470000px;}
.y41{bottom:173.550000px;}
.y99{bottom:179.460000px;}
.y73{bottom:184.500000px;}
.ye2{bottom:184.860000px;}
.y2e{bottom:187.050000px;}
.ybf{bottom:188.280000px;}
.y40{bottom:188.670000px;}
.y98{bottom:201.240000px;}
.ye1{bottom:202.140000px;}
.ybe{bottom:213.150000px;}
.y2d{bottom:215.310000px;}
.y72{bottom:218.730000px;}
.ye0{bottom:219.450000px;}
.y97{bottom:231.870000px;}
.ybd{bottom:234.750000px;}
.y2c{bottom:239.970000px;}
.y71{bottom:243.390000px;}
.ydf{bottom:244.110000px;}
.y1f{bottom:254.550000px;}
.y96{bottom:257.070000px;}
.y70{bottom:264.270000px;}
.ybc{bottom:265.530000px;}
.y1e{bottom:270.390000px;}
.y2b{bottom:273.090000px;}
.yde{bottom:274.170000px;}
.y95{bottom:281.910000px;}
.ybb{bottom:290.550000px;}
.y6f{bottom:292.710000px;}
.y1d{bottom:294.510000px;}
.y2a{bottom:298.470000px;}
.ydd{bottom:298.650000px;}
.y94{bottom:312.510000px;}
.y6e{bottom:317.910000px;}
.y1c{bottom:318.630000px;}
.yba{bottom:318.810000px;}
.y29{bottom:323.880000px;}
.ydc{bottom:329.430000px;}
.y93{bottom:337.710000px;}
.y1b{bottom:342.780000px;}
.yb9{bottom:343.650000px;}
.y6d{bottom:346.170000px;}
.y28{bottom:349.260000px;}
.ydb{bottom:354.450000px;}
.y11{bottom:360.945000px;}
.y92{bottom:365.790000px;}
.y1a{bottom:366.900000px;}
.y6c{bottom:370.830000px;}
.yb8{bottom:374.250000px;}
.y27{bottom:374.820000px;}
.yda{bottom:382.710000px;}
.y19{bottom:391.020000px;}
.y91{bottom:394.050000px;}
.y6b{bottom:396.030000px;}
.yb7{bottom:399.450000px;}
.y26{bottom:400.200000px;}
.yd9{bottom:410.970000px;}
.y18{bottom:415.320000px;}
.y90{bottom:417.810000px;}
.y6a{bottom:420.690000px;}
.yb6{bottom:424.110000px;}
.y25{bottom:425.580000px;}
.yd8{bottom:439.050000px;}
.y17{bottom:439.440000px;}
.y69{bottom:442.470000px;}
.yb5{bottom:445.935000px;}
.y8f{bottom:449.895000px;}
.y24{bottom:450.960000px;}
.y16{bottom:463.560000px;}
.yd7{bottom:463.935000px;}
.yb4{bottom:470.955000px;}
.y68{bottom:473.115000px;}
.y8e{bottom:474.735000px;}
.y23{bottom:476.340000px;}
.y15{bottom:487.680000px;}
.yd6{bottom:494.535000px;}
.y67{bottom:494.895000px;}
.y8d{bottom:499.755000px;}
.y22{bottom:501.720000px;}
.y14{bottom:511.800000px;}
.yd5{bottom:519.735000px;}
.y66{bottom:519.915000px;}
.yb3{bottom:523.335000px;}
.y8c{bottom:524.595000px;}
.y21{bottom:527.100000px;}
.y13{bottom:535.920000px;}
.yd4{bottom:544.395000px;}
.y65{bottom:548.175000px;}
.yb2{bottom:548.535000px;}
.y20{bottom:552.480000px;}
.y8b{bottom:555.195000px;}
.y12{bottom:560.265000px;}
.yd3{bottom:566.175000px;}
.yb1{bottom:576.795000px;}
.y8a{bottom:576.975000px;}
.y64{bottom:582.015000px;}
.yd2{bottom:587.775000px;}
.yb0{bottom:601.455000px;}
.y89{bottom:601.995000px;}
.y63{bottom:603.615000px;}
.yd1{bottom:609.555000px;}
.y62{bottom:624.315000px;}
.y88{bottom:626.835000px;}
.yaf{bottom:632.235000px;}
.yd0{bottom:634.755000px;}
.y87{bottom:648.435000px;}
.y61{bottom:652.935000px;}
.yae{bottom:653.835000px;}
.ycf{bottom:659.415000px;}
.y86{bottom:670.215000px;}
.yad{bottom:675.615000px;}
.y60{bottom:678.135000px;}
.yce{bottom:684.645000px;}
.y85{bottom:690.945000px;}
.yac{bottom:700.665000px;}
.y5f{bottom:706.245000px;}
.ycd{bottom:709.305000px;}
.y84{bottom:719.565000px;}
.yab{bottom:725.505000px;}
.y5e{bottom:731.085000px;}
.ycc{bottom:734.505000px;}
.y83{bottom:744.765000px;}
.yaa{bottom:747.105000px;}
.ycb{bottom:759.165000px;}
.y5d{bottom:761.685000px;}
.y82{bottom:769.425000px;}
.ya9{bottom:772.305000px;}
.yca{bottom:784.365000px;}
.y5c{bottom:786.885000px;}
.y81{bottom:791.025000px;}
.ya8{bottom:796.065000px;}
.yc9{bottom:809.205000px;}
.y5b{bottom:811.545000px;}
.ya7{bottom:824.685000px;}
.y80{bottom:825.225000px;}
.y5a{bottom:833.325000px;}
.yc8{bottom:834.225000px;}
.ya6{bottom:846.285000px;}
.y7f{bottom:850.065000px;}
.y59{bottom:863.925000px;}
.ya5{bottom:868.065000px;}
.y7e{bottom:875.085000px;}
.y58{bottom:885.705000px;}
.yc7{bottom:889.665000px;}
.ya4{bottom:893.085000px;}
.y7d{bottom:899.025000px;}
.y57{bottom:910.905000px;}
.yc6{bottom:914.865000px;}
.ya3{bottom:917.970000px;}
.y7c{bottom:927.510000px;}
.y10{bottom:935.070000px;}
.y56{bottom:939.030000px;}
.ya2{bottom:943.170000px;}
.y7b{bottom:949.290000px;}
.yf{bottom:953.610000px;}
.y55{bottom:963.870000px;}
.ya1{bottom:967.830000px;}
.yc5{bottom:971.250000px;}
.y7a{bottom:974.310000px;}
.ye{bottom:981.870000px;}
.y54{bottom:988.890000px;}
.ya0{bottom:993.030000px;}
.y79{bottom:998.250000px;}
.yc4{bottom:999.510000px;}
.yd{bottom:1006.350000px;}
.y53{bottom:1017.150000px;}
.y9f{bottom:1017.690000px;}
.yc3{bottom:1024.170000px;}
.y78{bottom:1026.690000px;}
.y9e{bottom:1039.470000px;}
.y52{bottom:1045.410000px;}
.yc{bottom:1047.390000px;}
.y77{bottom:1051.890000px;}
.yc2{bottom:1054.950000px;}
.y9d{bottom:1070.070000px;}
.y51{bottom:1073.490000px;}
.y76{bottom:1076.550000px;}
.yb{bottom:1082.850000px;}
.y4e{bottom:1086.300000px;}
.y9c{bottom:1095.270000px;}
.y50{bottom:1098.330000px;}
.y7{bottom:1114.710000px;}
.y1{bottom:1116.150000px;}
.h18{height:5.650313px;}
.h12{height:5.653125px;}
.h8{height:5.729063px;}
.h7{height:17.903320px;}
.he{height:19.081055px;}
.h1a{height:27.540000px;}
.h16{height:29.678906px;}
.h11{height:40.985156px;}
.h10{height:42.086250px;}
.hd{height:48.229102px;}
.h14{height:52.971680px;}
.h17{height:54.421875px;}
.h5{height:55.824609px;}
.h19{height:57.243164px;}
.ha{height:57.324375px;}
.h9{height:58.651172px;}
.h1c{height:60.226875px;}
.h13{height:60.338990px;}
.h1d{height:61.423863px;}
.hc{height:63.349102px;}
.h1b{height:64.002656px;}
.h6{height:65.010937px;}
.h3{height:65.884219px;}
.h1e{height:68.956875px;}
.hb{height:89.299336px;}
.h2{height:92.370000px;}
.h4{height:117.180000px;}
.h15{height:201.630000px;}
.hf{height:569.790000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w4{width:132.651000px;}
.w6{width:162.720000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:6.876000px;}
.x1b{left:8.085000px;}
.x6{left:10.965000px;}
.x4{left:12.765000px;}
.x16{left:14.211000px;}
.x19{left:16.011000px;}
.x20{left:18.171000px;}
.x18{left:21.771000px;}
.x17{left:26.091000px;}
.x22{left:29.151000px;}
.x5{left:33.645000px;}
.x11{left:43.731000px;}
.x21{left:47.691000px;}
.x12{left:50.751000px;}
.x10{left:55.071000px;}
.x24{left:57.051000px;}
.x1c{left:62.130000px;}
.x23{left:66.225000px;}
.x14{left:73.605000px;}
.x1{left:78.300000px;}
.x15{left:83.685000px;}
.xc{left:86.436000px;}
.x2{left:95.790000px;}
.x25{left:102.765000px;}
.x1f{left:106.725000px;}
.x13{left:124.545000px;}
.x8{left:140.436000px;}
.x3{left:182.385000px;}
.x1a{left:219.105000px;}
.xe{left:224.670000px;}
.xf{left:271.515000px;}
.x26{left:282.480000px;}
.x7{left:311.100000px;}
.x27{left:335.400000px;}
.x29{left:344.040000px;}
.x1e{left:381.480000px;}
.xd{left:488.265000px;}
.x28{left:585.675000px;}
.x1d{left:588.375000px;}
.xb{left:766.050000px;}
.xa{left:791.970000px;}
.x9{left:806.940000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls25{letter-spacing:-0.720000pt;}
.ls3b{letter-spacing:-0.592000pt;}
.ls29{letter-spacing:-0.573421pt;}
.ls32{letter-spacing:-0.544000pt;}
.ls48{letter-spacing:-0.409067pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.230933pt;}
.ls27{letter-spacing:-0.201067pt;}
.ls30{letter-spacing:-0.192000pt;}
.ls2f{letter-spacing:-0.096000pt;}
.ls2c{letter-spacing:-0.094933pt;}
.ls4a{letter-spacing:-0.066667pt;}
.ls2e{letter-spacing:-0.064000pt;}
.ls1f{letter-spacing:-0.047360pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016865pt;}
.ls33{letter-spacing:0.048000pt;}
.ls8{letter-spacing:0.050596pt;}
.ls16{letter-spacing:0.064000pt;}
.ls20{letter-spacing:0.067200pt;}
.ls31{letter-spacing:0.080000pt;}
.lsf{letter-spacing:0.084327pt;}
.ls19{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.101192pt;}
.ls1e{letter-spacing:0.146133pt;}
.ls49{letter-spacing:0.183467pt;}
.ls3a{letter-spacing:0.230933pt;}
.ls14{letter-spacing:0.231040pt;}
.ls4c{letter-spacing:0.244267pt;}
.ls2a{letter-spacing:0.252980pt;}
.ls1c{letter-spacing:0.271467pt;}
.ls23{letter-spacing:0.284800pt;}
.ls37{letter-spacing:0.300800pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.334933pt;}
.ls13{letter-spacing:0.367360pt;}
.ls21{letter-spacing:0.390933pt;}
.ls41{letter-spacing:0.501867pt;}
.ls2d{letter-spacing:0.592000pt;}
.ls0{letter-spacing:0.592640pt;}
.ls3e{letter-spacing:0.601600pt;}
.ls26{letter-spacing:0.640000pt;}
.ls28{letter-spacing:0.708343pt;}
.ls39{letter-spacing:0.752640pt;}
.ls10{letter-spacing:0.775804pt;}
.ls42{letter-spacing:0.869333pt;}
.ls3c{letter-spacing:0.871040pt;}
.ls35{letter-spacing:1.232640pt;}
.ls34{letter-spacing:1.872640pt;}
.ls18{letter-spacing:2.016000pt;}
.lse{letter-spacing:2.125029pt;}
.ls15{letter-spacing:2.512640pt;}
.ls17{letter-spacing:2.656000pt;}
.lsd{letter-spacing:2.799642pt;}
.lsc{letter-spacing:3.474254pt;}
.ls43{letter-spacing:3.792640pt;}
.ls11{letter-spacing:4.148867pt;}
.ls2b{letter-spacing:4.432000pt;}
.ls3d{letter-spacing:4.432640pt;}
.ls47{letter-spacing:4.592640pt;}
.ls3{letter-spacing:4.823479pt;}
.ls3f{letter-spacing:5.072640pt;}
.ls1{letter-spacing:5.498092pt;}
.ls2{letter-spacing:5.610527pt;}
.ls44{letter-spacing:5.712640pt;}
.ls5{letter-spacing:6.847317pt;}
.ls6{letter-spacing:7.521929pt;}
.ls45{letter-spacing:8.272640pt;}
.ls4b{letter-spacing:9.552640pt;}
.ls36{letter-spacing:10.192640pt;}
.ls40{letter-spacing:10.832640pt;}
.lsa{letter-spacing:12.918829pt;}
.ls9{letter-spacing:13.087482pt;}
.lsb{letter-spacing:13.593442pt;}
.ls38{letter-spacing:14.032640pt;}
.ls46{letter-spacing:24.432640pt;}
.ls4d{letter-spacing:37.072640pt;}
.ls4e{letter-spacing:40.912640pt;}
.ls12{letter-spacing:88.432640pt;}
.ws1b{word-spacing:-53.120000pt;}
.ws1f{word-spacing:-15.269227pt;}
.ws7{word-spacing:-15.158293pt;}
.wsa{word-spacing:-15.102293pt;}
.ws1e{word-spacing:-15.068160pt;}
.ws9{word-spacing:-15.052160pt;}
.ws23{word-spacing:-15.011627pt;}
.ws20{word-spacing:-14.950827pt;}
.ws3{word-spacing:-14.913493pt;}
.ws6{word-spacing:-14.834560pt;}
.wsf{word-spacing:-14.774013pt;}
.ws4{word-spacing:-14.767360pt;}
.ws1{word-spacing:-14.720000pt;}
.ws21{word-spacing:-14.700693pt;}
.ws24{word-spacing:-14.672427pt;}
.ws8{word-spacing:-14.536427pt;}
.ws11{word-spacing:-14.166862pt;}
.ws13{word-spacing:-14.149997pt;}
.ws12{word-spacing:-14.116266pt;}
.ws10{word-spacing:-14.082536pt;}
.wse{word-spacing:-14.065670pt;}
.ws2{word-spacing:-13.600000pt;}
.ws18{word-spacing:-13.424000pt;}
.ws19{word-spacing:-13.392000pt;}
.ws17{word-spacing:-13.344000pt;}
.ws1c{word-spacing:-13.280000pt;}
.ws16{word-spacing:-13.152000pt;}
.ws22{word-spacing:-13.049067pt;}
.ws1d{word-spacing:-12.688000pt;}
.ws0{word-spacing:-12.640000pt;}
.ws15{word-spacing:-11.904000pt;}
.wsb{word-spacing:-9.920000pt;}
.ws5{word-spacing:-9.607680pt;}
.wsd{word-spacing:-9.280000pt;}
.wsc{word-spacing:-9.078933pt;}
.ws14{word-spacing:-7.936000pt;}
.ws1a{word-spacing:0.000000pt;}
._3{margin-left:-11.308160pt;}
._8{margin-left:-8.767573pt;}
._a{margin-left:-7.627520pt;}
._11{margin-left:-5.973958pt;}
._10{margin-left:-4.250059pt;}
._5{margin-left:-3.236053pt;}
._7{margin-left:-2.124800pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.011200pt;}
._2{width:2.190507pt;}
._6{width:3.771520pt;}
._d{width:5.076459pt;}
._f{width:5.986086pt;}
._c{width:7.189022pt;}
._9{width:8.320640pt;}
._b{width:9.569920pt;}
._4{width:10.782720pt;}
._e{width:12.699580pt;}
._15{width:13.669979pt;}
._17{width:16.113493pt;}
._16{width:17.145173pt;}
._18{width:23.583360pt;}
._12{width:27.797760pt;}
._14{width:31.848107pt;}
._13{width:33.328213pt;}
.fs4{font-size:5.120000pt;}
.fs3{font-size:16.000000pt;}
.fsc{font-size:26.880000pt;}
.fsb{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fsa{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.fs9{font-size:50.595937pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:1.280000pt;}
.y3f{bottom:2.240000pt;}
.y4b{bottom:3.200000pt;}
.y4f{bottom:4.453333pt;}
.y35{bottom:5.106667pt;}
.y3e{bottom:9.120000pt;}
.y2{bottom:12.160000pt;}
.y5{bottom:12.480000pt;}
.y4a{bottom:19.840000pt;}
.y34{bottom:27.506667pt;}
.y4{bottom:28.800000pt;}
.y3d{bottom:35.840000pt;}
.y49{bottom:39.520000pt;}
.y3c{bottom:46.106667pt;}
.y3{bottom:49.306667pt;}
.y33{bottom:49.426667pt;}
.ya{bottom:51.200000pt;}
.y48{bottom:56.506667pt;}
.y3b{bottom:57.786667pt;}
.y9{bottom:67.360000pt;}
.y32{bottom:68.786667pt;}
.y3a{bottom:69.306667pt;}
.y47{bottom:77.466667pt;}
.y8{bottom:85.120000pt;}
.y39{bottom:88.666667pt;}
.y31{bottom:91.066667pt;}
.y46{bottom:92.986667pt;}
.y45{bottom:98.746667pt;}
.y4d{bottom:106.720000pt;}
.y75{bottom:109.440000pt;}
.yc1{bottom:109.760000pt;}
.y44{bottom:112.826667pt;}
.y30{bottom:116.186667pt;}
.y9b{bottom:120.960000pt;}
.y4c{bottom:126.080000pt;}
.y43{bottom:126.746667pt;}
.y74{bottom:136.800000pt;}
.yc0{bottom:137.120000pt;}
.y9a{bottom:140.320000pt;}
.y42{bottom:140.506667pt;}
.y36{bottom:140.960000pt;}
.y2f{bottom:141.306667pt;}
.y38{bottom:143.866667pt;}
.y37{bottom:153.306667pt;}
.y41{bottom:154.266667pt;}
.y99{bottom:159.520000pt;}
.y73{bottom:164.000000pt;}
.ye2{bottom:164.320000pt;}
.y2e{bottom:166.266667pt;}
.ybf{bottom:167.360000pt;}
.y40{bottom:167.706667pt;}
.y98{bottom:178.880000pt;}
.ye1{bottom:179.680000pt;}
.ybe{bottom:189.466667pt;}
.y2d{bottom:191.386667pt;}
.y72{bottom:194.426667pt;}
.ye0{bottom:195.066667pt;}
.y97{bottom:206.106667pt;}
.ybd{bottom:208.666667pt;}
.y2c{bottom:213.306667pt;}
.y71{bottom:216.346667pt;}
.ydf{bottom:216.986667pt;}
.y1f{bottom:226.266667pt;}
.y96{bottom:228.506667pt;}
.y70{bottom:234.906667pt;}
.ybc{bottom:236.026667pt;}
.y1e{bottom:240.346667pt;}
.y2b{bottom:242.746667pt;}
.yde{bottom:243.706667pt;}
.y95{bottom:250.586667pt;}
.ybb{bottom:258.266667pt;}
.y6f{bottom:260.186667pt;}
.y1d{bottom:261.786667pt;}
.y2a{bottom:265.306667pt;}
.ydd{bottom:265.466667pt;}
.y94{bottom:277.786667pt;}
.y6e{bottom:282.586667pt;}
.y1c{bottom:283.226667pt;}
.yba{bottom:283.386667pt;}
.y29{bottom:287.893333pt;}
.ydc{bottom:292.826667pt;}
.y93{bottom:300.186667pt;}
.y1b{bottom:304.693333pt;}
.yb9{bottom:305.466667pt;}
.y6d{bottom:307.706667pt;}
.y28{bottom:310.453333pt;}
.ydb{bottom:315.066667pt;}
.y11{bottom:320.840000pt;}
.y92{bottom:325.146667pt;}
.y1a{bottom:326.133333pt;}
.y6c{bottom:329.626667pt;}
.yb8{bottom:332.666667pt;}
.y27{bottom:333.173333pt;}
.yda{bottom:340.186667pt;}
.y19{bottom:347.573333pt;}
.y91{bottom:350.266667pt;}
.y6b{bottom:352.026667pt;}
.yb7{bottom:355.066667pt;}
.y26{bottom:355.733333pt;}
.yd9{bottom:365.306667pt;}
.y18{bottom:369.173333pt;}
.y90{bottom:371.386667pt;}
.y6a{bottom:373.946667pt;}
.yb6{bottom:376.986667pt;}
.y25{bottom:378.293333pt;}
.yd8{bottom:390.266667pt;}
.y17{bottom:390.613333pt;}
.y69{bottom:393.306667pt;}
.yb5{bottom:396.386667pt;}
.y8f{bottom:399.906667pt;}
.y24{bottom:400.853333pt;}
.y16{bottom:412.053333pt;}
.yd7{bottom:412.386667pt;}
.yb4{bottom:418.626667pt;}
.y68{bottom:420.546667pt;}
.y8e{bottom:421.986667pt;}
.y23{bottom:423.413333pt;}
.y15{bottom:433.493333pt;}
.yd6{bottom:439.586667pt;}
.y67{bottom:439.906667pt;}
.y8d{bottom:444.226667pt;}
.y22{bottom:445.973333pt;}
.y14{bottom:454.933333pt;}
.yd5{bottom:461.986667pt;}
.y66{bottom:462.146667pt;}
.yb3{bottom:465.186667pt;}
.y8c{bottom:466.306667pt;}
.y21{bottom:468.533333pt;}
.y13{bottom:476.373333pt;}
.yd4{bottom:483.906667pt;}
.y65{bottom:487.266667pt;}
.yb2{bottom:487.586667pt;}
.y20{bottom:491.093333pt;}
.y8b{bottom:493.506667pt;}
.y12{bottom:498.013333pt;}
.yd3{bottom:503.266667pt;}
.yb1{bottom:512.706667pt;}
.y8a{bottom:512.866667pt;}
.y64{bottom:517.346667pt;}
.yd2{bottom:522.466667pt;}
.yb0{bottom:534.626667pt;}
.y89{bottom:535.106667pt;}
.y63{bottom:536.546667pt;}
.yd1{bottom:541.826667pt;}
.y62{bottom:554.946667pt;}
.y88{bottom:557.186667pt;}
.yaf{bottom:561.986667pt;}
.yd0{bottom:564.226667pt;}
.y87{bottom:576.386667pt;}
.y61{bottom:580.386667pt;}
.yae{bottom:581.186667pt;}
.ycf{bottom:586.146667pt;}
.y86{bottom:595.746667pt;}
.yad{bottom:600.546667pt;}
.y60{bottom:602.786667pt;}
.yce{bottom:608.573333pt;}
.y85{bottom:614.173333pt;}
.yac{bottom:622.813333pt;}
.y5f{bottom:627.773333pt;}
.ycd{bottom:630.493333pt;}
.y84{bottom:639.613333pt;}
.yab{bottom:644.893333pt;}
.y5e{bottom:649.853333pt;}
.ycc{bottom:652.893333pt;}
.y83{bottom:662.013333pt;}
.yaa{bottom:664.093333pt;}
.ycb{bottom:674.813333pt;}
.y5d{bottom:677.053333pt;}
.y82{bottom:683.933333pt;}
.ya9{bottom:686.493333pt;}
.yca{bottom:697.213333pt;}
.y5c{bottom:699.453333pt;}
.y81{bottom:703.133333pt;}
.ya8{bottom:707.613333pt;}
.yc9{bottom:719.293333pt;}
.y5b{bottom:721.373333pt;}
.ya7{bottom:733.053333pt;}
.y80{bottom:733.533333pt;}
.y5a{bottom:740.733333pt;}
.yc8{bottom:741.533333pt;}
.ya6{bottom:752.253333pt;}
.y7f{bottom:755.613333pt;}
.y59{bottom:767.933333pt;}
.ya5{bottom:771.613333pt;}
.y7e{bottom:777.853333pt;}
.y58{bottom:787.293333pt;}
.yc7{bottom:790.813333pt;}
.ya4{bottom:793.853333pt;}
.y7d{bottom:799.133333pt;}
.y57{bottom:809.693333pt;}
.yc6{bottom:813.213333pt;}
.ya3{bottom:815.973333pt;}
.y7c{bottom:824.453333pt;}
.y10{bottom:831.173333pt;}
.y56{bottom:834.693333pt;}
.ya2{bottom:838.373333pt;}
.y7b{bottom:843.813333pt;}
.yf{bottom:847.653333pt;}
.y55{bottom:856.773333pt;}
.ya1{bottom:860.293333pt;}
.yc5{bottom:863.333333pt;}
.y7a{bottom:866.053333pt;}
.ye{bottom:872.773333pt;}
.y54{bottom:879.013333pt;}
.ya0{bottom:882.693333pt;}
.y79{bottom:887.333333pt;}
.yc4{bottom:888.453333pt;}
.yd{bottom:894.533333pt;}
.y53{bottom:904.133333pt;}
.y9f{bottom:904.613333pt;}
.yc3{bottom:910.373333pt;}
.y78{bottom:912.613333pt;}
.y9e{bottom:923.973333pt;}
.y52{bottom:929.253333pt;}
.yc{bottom:931.013333pt;}
.y77{bottom:935.013333pt;}
.yc2{bottom:937.733333pt;}
.y9d{bottom:951.173333pt;}
.y51{bottom:954.213333pt;}
.y76{bottom:956.933333pt;}
.yb{bottom:962.533333pt;}
.y4e{bottom:965.600000pt;}
.y9c{bottom:973.573333pt;}
.y50{bottom:976.293333pt;}
.y7{bottom:990.853333pt;}
.y1{bottom:992.133333pt;}
.h18{height:5.022500pt;}
.h12{height:5.025000pt;}
.h8{height:5.092500pt;}
.h7{height:15.914062pt;}
.he{height:16.960938pt;}
.h1a{height:24.480000pt;}
.h16{height:26.381250pt;}
.h11{height:36.431250pt;}
.h10{height:37.410000pt;}
.hd{height:42.870312pt;}
.h14{height:47.085938pt;}
.h17{height:48.375000pt;}
.h5{height:49.621875pt;}
.h19{height:50.882812pt;}
.ha{height:50.955000pt;}
.h9{height:52.134375pt;}
.h1c{height:53.535000pt;}
.h13{height:53.634657pt;}
.h1d{height:54.598989pt;}
.hc{height:56.310313pt;}
.h1b{height:56.891250pt;}
.h6{height:57.787500pt;}
.h3{height:58.563750pt;}
.h1e{height:61.295000pt;}
.hb{height:79.377187pt;}
.h2{height:82.106667pt;}
.h4{height:104.160000pt;}
.h15{height:179.226667pt;}
.hf{height:506.480000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w4{width:117.912000pt;}
.w6{width:144.640000pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:6.112000pt;}
.x1b{left:7.186667pt;}
.x6{left:9.746667pt;}
.x4{left:11.346667pt;}
.x16{left:12.632000pt;}
.x19{left:14.232000pt;}
.x20{left:16.152000pt;}
.x18{left:19.352000pt;}
.x17{left:23.192000pt;}
.x22{left:25.912000pt;}
.x5{left:29.906667pt;}
.x11{left:38.872000pt;}
.x21{left:42.392000pt;}
.x12{left:45.112000pt;}
.x10{left:48.952000pt;}
.x24{left:50.712000pt;}
.x1c{left:55.226667pt;}
.x23{left:58.866667pt;}
.x14{left:65.426667pt;}
.x1{left:69.600000pt;}
.x15{left:74.386667pt;}
.xc{left:76.832000pt;}
.x2{left:85.146667pt;}
.x25{left:91.346667pt;}
.x1f{left:94.866667pt;}
.x13{left:110.706667pt;}
.x8{left:124.832000pt;}
.x3{left:162.120000pt;}
.x1a{left:194.760000pt;}
.xe{left:199.706667pt;}
.xf{left:241.346667pt;}
.x26{left:251.093333pt;}
.x7{left:276.533333pt;}
.x27{left:298.133333pt;}
.x29{left:305.813333pt;}
.x1e{left:339.093333pt;}
.xd{left:434.013333pt;}
.x28{left:520.600000pt;}
.x1d{left:523.000000pt;}
.xb{left:680.933333pt;}
.xa{left:703.973333pt;}
.x9{left:717.280000pt;}
}




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