
    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_e13cf9283d8a816b77249d09.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_69720b54465d479e4c511d05.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f6fe1d9d449f6d552af96938.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_aecf2d01818e6e14a94ea5d9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.050293;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_124eba6fb84a349761850256.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_16af2cdd9508a974b068e7c7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.982910;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_7d2d45d1c4bd6c5d212d0dbd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.982910;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_2f147d63fd20c60727e43512.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7b1e41e5a6736330f41c7dc2.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_c8b9b80ad1b372bc9b41c369.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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_0640f3927fc1b56bb6cee856.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_e6289740e745a7c6bdf32dd4.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_291522d2badbc8721ebb8773.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.772949;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;}
.m2{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);}
.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);}
.vb{vertical-align:-81.360000px;}
.v3{vertical-align:-72.144000px;}
.v2{vertical-align:-20.880000px;}
.v6{vertical-align:-12.240000px;}
.v4{vertical-align:-5.760000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.880000px;}
.v8{vertical-align:5.880000px;}
.v1{vertical-align:20.880000px;}
.va{vertical-align:23.760000px;}
.v9{vertical-align:27.360000px;}
.ls39{letter-spacing:-0.792000px;}
.ls8{letter-spacing:-0.666000px;}
.ls38{letter-spacing:-0.504000px;}
.ls37{letter-spacing:-0.460200px;}
.ls2e{letter-spacing:-0.262200px;}
.ls1c{letter-spacing:-0.259800px;}
.ls24{letter-spacing:-0.216000px;}
.ls25{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.058320px;}
.ls2c{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.008640px;}
.ls27{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.036000px;}
.ls2d{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.106560px;}
.ls23{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.149760px;}
.ls28{letter-spacing:0.153360px;}
.ls16{letter-spacing:0.171360px;}
.ls9{letter-spacing:0.174240px;}
.ls2a{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.184320px;}
.ls12{letter-spacing:0.206640px;}
.lse{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.226080px;}
.ls26{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.288000px;}
.ls18{letter-spacing:0.298800px;}
.ls22{letter-spacing:0.324000px;}
.ls1f{letter-spacing:0.336000px;}
.ls4{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.408000px;}
.ls1e{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.576000px;}
.ls17{letter-spacing:0.720000px;}
.ls35{letter-spacing:0.873360px;}
.ls34{letter-spacing:1.044000px;}
.lsf{letter-spacing:1.116000px;}
.ls3{letter-spacing:1.620000px;}
.ls1d{letter-spacing:2.160000px;}
.ls31{letter-spacing:4.320000px;}
.lsa{letter-spacing:8.640000px;}
.ls1a{letter-spacing:11.520000px;}
.ls2{letter-spacing:11.700000px;}
.ls33{letter-spacing:12.240000px;}
.lsb{letter-spacing:12.960000px;}
.ls1{letter-spacing:15.300000px;}
.ls1b{letter-spacing:15.816000px;}
.ls11{letter-spacing:15.840000px;}
.ls32{letter-spacing:18.000000px;}
.ls19{letter-spacing:18.120000px;}
.ls21{letter-spacing:24.456000px;}
.ls2f{letter-spacing:27.360000px;}
.ls30{letter-spacing:30.960000px;}
.ls2b{letter-spacing:415.560000px;}
.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;}
}
.ws9{word-spacing:-18.576000px;}
.wsf{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.000000px;}
.wse{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.784000px;}
.ws1a{word-spacing:-17.496000px;}
.ws19{word-spacing:-17.280000px;}
.ws1b{word-spacing:-17.208000px;}
.wsa{word-spacing:-16.560000px;}
.ws15{word-spacing:-16.297800px;}
.ws3{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.238800px;}
.ws11{word-spacing:-15.199800px;}
.ws14{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.680200px;}
.ws17{word-spacing:-14.479800px;}
.ws4{word-spacing:-14.274000px;}
.ws6{word-spacing:-13.505760px;}
.ws7{word-spacing:-13.447440px;}
.ws0{word-spacing:-12.186000px;}
.wsb{word-spacing:-12.060000px;}
.ws16{word-spacing:-10.440000px;}
.ws12{word-spacing:-9.737280px;}
.ws18{word-spacing:-9.728640px;}
.ws1{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._1a{margin-left:-2.615280px;}
._1{margin-left:-1.152000px;}
._0{width:1.085520px;}
._6{width:2.178960px;}
._8{width:3.685440px;}
._7{width:4.780800px;}
._13{width:5.956320px;}
._14{width:7.109520px;}
._c{width:8.476080px;}
._d{width:9.938160px;}
._4{width:11.354400px;}
._5{width:12.470160px;}
._e{width:13.572240px;}
._17{width:14.723760px;}
._3{width:16.125360px;}
._10{width:18.226800px;}
._9{width:20.019600px;}
._a{width:21.132480px;}
._b{width:22.257840px;}
._f{width:24.202800px;}
._18{width:25.958880px;}
._11{width:27.609120px;}
._19{width:29.232000px;}
._12{width:31.073040px;}
._24{width:32.184000px;}
._1c{width:33.624000px;}
._1b{width:34.704000px;}
._1d{width:38.808000px;}
._1f{width:53.844480px;}
._20{width:55.019520px;}
._21{width:57.417600px;}
._2{width:59.506560px;}
._22{width:84.960000px;}
._23{width:86.352960px;}
._15{width:846.156000px;}
._1e{width:847.596000px;}
._16{width:1294.860000px;}
.fc1{color:rgb(93,93,93);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs7{font-size:62.991941px;}
.fs1{font-size:66.240000px;}
.fsa{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y10{bottom:3.240000px;}
.yd{bottom:3.960000px;}
.ye6{bottom:4.320000px;}
.ya4{bottom:4.500000px;}
.y16{bottom:4.860000px;}
.y26{bottom:5.040000px;}
.y9{bottom:5.220000px;}
.y93{bottom:7.380000px;}
.y97{bottom:7.425000px;}
.y95{bottom:9.180000px;}
.y3c{bottom:12.285000px;}
.y9b{bottom:12.780000px;}
.y2d{bottom:12.960000px;}
.y2b{bottom:16.200000px;}
.y7{bottom:17.100000px;}
.ya5{bottom:19.800000px;}
.y24{bottom:20.340000px;}
.yf{bottom:20.520000px;}
.ya3{bottom:21.600000px;}
.y15{bottom:22.140000px;}
.yc{bottom:24.660000px;}
.y3b{bottom:29.565000px;}
.y2a{bottom:33.480000px;}
.y45{bottom:33.705000px;}
.y23{bottom:37.620000px;}
.y6{bottom:37.800000px;}
.y14{bottom:44.505000px;}
.yb{bottom:45.360000px;}
.y3a{bottom:46.845000px;}
.y29{bottom:50.580000px;}
.y44{bottom:50.985000px;}
.y21{bottom:55.080000px;}
.y13{bottom:56.565000px;}
.y3{bottom:56.700000px;}
.y5{bottom:59.760000px;}
.y39{bottom:64.125000px;}
.y28{bottom:67.860000px;}
.y43{bottom:68.265000px;}
.y20{bottom:72.360000px;}
.y4a{bottom:75.096000px;}
.y2{bottom:75.636000px;}
.y12{bottom:79.065000px;}
.y38{bottom:81.225000px;}
.y27{bottom:85.140000px;}
.y42{bottom:85.365000px;}
.y1f{bottom:89.640000px;}
.y37{bottom:98.505000px;}
.y41{bottom:102.645000px;}
.y1e{bottom:106.740000px;}
.y36{bottom:115.785000px;}
.y40{bottom:119.925000px;}
.yc7{bottom:121.356000px;}
.y1d{bottom:124.020000px;}
.y11c{bottom:124.596000px;}
.y148{bottom:128.376000px;}
.y35{bottom:133.065000px;}
.y3f{bottom:137.205000px;}
.yfd{bottom:138.816000px;}
.y77{bottom:138.996000px;}
.y1c{bottom:141.300000px;}
.yc6{bottom:142.056000px;}
.y147{bottom:149.076000px;}
.y34{bottom:150.345000px;}
.y11b{bottom:154.290000px;}
.y1b{bottom:158.580000px;}
.yfc{bottom:159.330000px;}
.y16f{bottom:160.410000px;}
.yc5{bottom:162.750000px;}
.y33{bottom:167.625000px;}
.y76{bottom:168.690000px;}
.y146{bottom:169.770000px;}
.y91{bottom:173.190000px;}
.y11a{bottom:174.990000px;}
.y1a{bottom:175.860000px;}
.yfb{bottom:178.230000px;}
.y16e{bottom:181.110000px;}
.yc4{bottom:183.450000px;}
.y32{bottom:184.725000px;}
.y19{bottom:193.140000px;}
.y119{bottom:195.690000px;}
.yfa{bottom:197.130000px;}
.y75{bottom:198.390000px;}
.y145{bottom:199.470000px;}
.y16d{bottom:201.810000px;}
.y31{bottom:202.005000px;}
.yc3{bottom:204.150000px;}
.y90{bottom:204.330000px;}
.y118{bottom:216.390000px;}
.y30{bottom:219.285000px;}
.y144{bottom:220.170000px;}
.y9d{bottom:221.790000px;}
.yc2{bottom:224.850000px;}
.yf9{bottom:226.830000px;}
.y74{bottom:228.090000px;}
.y16c{bottom:231.330000px;}
.y9c{bottom:238.890000px;}
.yc1{bottom:245.550000px;}
.y117{bottom:246.090000px;}
.y143{bottom:249.870000px;}
.y16b{bottom:252.030000px;}
.ye1{bottom:256.350000px;}
.y73{bottom:257.790000px;}
.y9a{bottom:260.310000px;}
.yc0{bottom:266.250000px;}
.y116{bottom:266.790000px;}
.y47{bottom:269.670000px;}
.y16a{bottom:272.730000px;}
.y142{bottom:279.570000px;}
.ye0{bottom:284.790000px;}
.ybf{bottom:286.950000px;}
.y99{bottom:287.130000px;}
.y72{bottom:287.490000px;}
.y46{bottom:299.370000px;}
.y169{bottom:302.430000px;}
.ydf{bottom:305.490000px;}
.ybe{bottom:307.650000px;}
.y71{bottom:308.190000px;}
.y98{bottom:308.370000px;}
.y141{bottom:309.450000px;}
.y168{bottom:323.130000px;}
.y2f{bottom:325.830000px;}
.yde{bottom:326.190000px;}
.y70{bottom:328.890000px;}
.y96{bottom:331.590000px;}
.ybd{bottom:337.395000px;}
.y140{bottom:345.135000px;}
.ydd{bottom:346.935000px;}
.y6f{bottom:349.635000px;}
.y167{bottom:352.875000px;}
.y94{bottom:353.055000px;}
.y115{bottom:358.635000px;}
.ybc{bottom:367.095000px;}
.ydc{bottom:367.635000px;}
.y6e{bottom:370.335000px;}
.y166{bottom:373.575000px;}
.y13f{bottom:374.835000px;}
.y92{bottom:377.355000px;}
.y114{bottom:379.335000px;}
.ybb{bottom:384.555000px;}
.ydb{bottom:388.335000px;}
.y6d{bottom:391.035000px;}
.y165{bottom:394.275000px;}
.y113{bottom:400.035000px;}
.yba{bottom:401.835000px;}
.y13e{bottom:404.535000px;}
.y8f{bottom:407.595000px;}
.yda{bottom:409.035000px;}
.y6c{bottom:411.555000px;}
.y164{bottom:414.975000px;}
.yb9{bottom:419.115000px;}
.y112{bottom:420.555000px;}
.y13d{bottom:425.235000px;}
.yd9{bottom:429.555000px;}
.y6b{bottom:432.255000px;}
.y163{bottom:435.675000px;}
.y8e{bottom:435.855000px;}
.yb8{bottom:436.395000px;}
.y111{bottom:441.255000px;}
.yf8{bottom:443.595000px;}
.yd8{bottom:450.255000px;}
.y6a{bottom:452.955000px;}
.yb7{bottom:453.495000px;}
.y13c{bottom:454.935000px;}
.y8d{bottom:456.555000px;}
.y162{bottom:465.375000px;}
.yb6{bottom:470.775000px;}
.yd7{bottom:470.955000px;}
.yf7{bottom:474.735000px;}
.y8c{bottom:477.255000px;}
.y3e{bottom:479.235000px;}
.y69{bottom:482.655000px;}
.y13b{bottom:484.275000px;}
.y161{bottom:486.075000px;}
.yb5{bottom:488.055000px;}
.yd6{bottom:491.655000px;}
.y8b{bottom:497.955000px;}
.y3d{bottom:498.675000px;}
.y68{bottom:503.355000px;}
.yb4{bottom:505.335000px;}
.yd5{bottom:512.355000px;}
.y160{bottom:515.775000px;}
.y8a{bottom:518.655000px;}
.y13a{bottom:522.255000px;}
.yb3{bottom:522.615000px;}
.y67{bottom:524.055000px;}
.yf6{bottom:526.035000px;}
.yd4{bottom:533.055000px;}
.y15f{bottom:536.475000px;}
.y89{bottom:539.355000px;}
.yb2{bottom:539.715000px;}
.y139{bottom:541.155000px;}
.y2e{bottom:541.875000px;}
.y66{bottom:544.755000px;}
.yf5{bottom:545.115000px;}
.yd3{bottom:553.755000px;}
.yb1{bottom:556.995000px;}
.y15e{bottom:557.175000px;}
.y88{bottom:560.055000px;}
.y138{bottom:560.235000px;}
.yf4{bottom:560.415000px;}
.y65{bottom:565.455000px;}
.yb0{bottom:574.275000px;}
.y2c{bottom:574.455000px;}
.y137{bottom:579.135000px;}
.y64{bottom:586.155000px;}
.y15d{bottom:586.875000px;}
.y87{bottom:589.755000px;}
.yaf{bottom:591.555000px;}
.y110{bottom:595.155000px;}
.y136{bottom:598.215000px;}
.yd2{bottom:604.185000px;}
.y63{bottom:606.885000px;}
.y15c{bottom:607.605000px;}
.yae{bottom:608.865000px;}
.y86{bottom:610.485000px;}
.y18{bottom:613.905000px;}
.y10f{bottom:615.885000px;}
.y135{bottom:617.145000px;}
.yd1{bottom:624.885000px;}
.yad{bottom:626.145000px;}
.y62{bottom:627.585000px;}
.y85{bottom:631.185000px;}
.y134{bottom:636.045000px;}
.y10e{bottom:636.585000px;}
.y15b{bottom:637.305000px;}
.yac{bottom:643.245000px;}
.yd0{bottom:645.585000px;}
.y61{bottom:648.285000px;}
.y84{bottom:651.885000px;}
.y133{bottom:655.125000px;}
.y10d{bottom:657.285000px;}
.y15a{bottom:658.005000px;}
.yab{bottom:660.525000px;}
.ycf{bottom:666.285000px;}
.y60{bottom:668.985000px;}
.y83{bottom:672.585000px;}
.y132{bottom:674.025000px;}
.yaa{bottom:677.805000px;}
.y10c{bottom:677.985000px;}
.yce{bottom:686.985000px;}
.y159{bottom:687.705000px;}
.y5f{bottom:689.685000px;}
.y131{bottom:693.105000px;}
.y82{bottom:693.285000px;}
.ya9{bottom:695.085000px;}
.y10b{bottom:698.685000px;}
.ycd{bottom:707.685000px;}
.y158{bottom:708.405000px;}
.y5e{bottom:710.385000px;}
.y130{bottom:712.005000px;}
.ya8{bottom:712.365000px;}
.y81{bottom:713.985000px;}
.y25{bottom:715.245000px;}
.y10a{bottom:719.385000px;}
.ycc{bottom:728.385000px;}
.y157{bottom:729.105000px;}
.ya7{bottom:729.645000px;}
.y12f{bottom:730.905000px;}
.y80{bottom:734.685000px;}
.y22{bottom:736.665000px;}
.y5d{bottom:740.085000px;}
.ya6{bottom:746.745000px;}
.ycb{bottom:749.085000px;}
.y12e{bottom:749.985000px;}
.y7f{bottom:755.385000px;}
.y156{bottom:758.805000px;}
.y109{bottom:760.785000px;}
.ya2{bottom:764.745000px;}
.y12d{bottom:768.885000px;}
.y5c{bottom:769.785000px;}
.y7e{bottom:776.085000px;}
.yca{bottom:778.785000px;}
.y155{bottom:779.505000px;}
.y108{bottom:781.485000px;}
.y12c{bottom:787.965000px;}
.y17{bottom:794.805000px;}
.y7d{bottom:796.785000px;}
.y5b{bottom:799.485000px;}
.y12b{bottom:806.865000px;}
.y154{bottom:809.205000px;}
.y107{bottom:811.185000px;}
.ya1{bottom:813.705000px;}
.y5a{bottom:820.185000px;}
.y12a{bottom:825.765000px;}
.y7c{bottom:826.485000px;}
.y11{bottom:828.105000px;}
.y153{bottom:829.905000px;}
.yf3{bottom:831.165000px;}
.y106{bottom:831.885000px;}
.y59{bottom:840.885000px;}
.ya0{bottom:841.785000px;}
.yf2{bottom:848.625000px;}
.y105{bottom:852.585000px;}
.y129{bottom:855.465000px;}
.y7b{bottom:856.185000px;}
.y152{bottom:859.605000px;}
.y9f{bottom:860.865000px;}
.y58{bottom:861.585000px;}
.yf1{bottom:865.905000px;}
.y176{bottom:868.785000px;}
.y104{bottom:873.330000px;}
.y9e{bottom:876.210000px;}
.y151{bottom:880.350000px;}
.y57{bottom:882.330000px;}
.y128{bottom:882.870000px;}
.yf0{bottom:883.230000px;}
.y7a{bottom:885.750000px;}
.y103{bottom:894.030000px;}
.y175{bottom:898.350000px;}
.yef{bottom:900.510000px;}
.y56{bottom:903.030000px;}
.y79{bottom:904.650000px;}
.y127{bottom:906.270000px;}
.y150{bottom:910.050000px;}
.y102{bottom:914.730000px;}
.ye{bottom:915.990000px;}
.yee{bottom:917.610000px;}
.y174{bottom:918.150000px;}
.y126{bottom:919.590000px;}
.y55{bottom:923.730000px;}
.y78{bottom:928.950000px;}
.y14f{bottom:930.750000px;}
.yed{bottom:934.890000px;}
.y101{bottom:935.430000px;}
.y125{bottom:936.870000px;}
.y54{bottom:944.430000px;}
.y173{bottom:947.130000px;}
.y14e{bottom:951.450000px;}
.yec{bottom:952.170000px;}
.y124{bottom:953.970000px;}
.y100{bottom:956.130000px;}
.y53{bottom:965.130000px;}
.y172{bottom:967.830000px;}
.ya{bottom:968.190000px;}
.yeb{bottom:969.450000px;}
.y123{bottom:971.250000px;}
.yff{bottom:976.830000px;}
.y14d{bottom:980.970000px;}
.y52{bottom:985.830000px;}
.yea{bottom:986.730000px;}
.y122{bottom:988.530000px;}
.yfe{bottom:997.530000px;}
.y14c{bottom:1000.950000px;}
.ye9{bottom:1004.010000px;}
.y121{bottom:1005.810000px;}
.y51{bottom:1006.530000px;}
.y171{bottom:1018.230000px;}
.ye8{bottom:1021.110000px;}
.y120{bottom:1023.090000px;}
.y50{bottom:1027.230000px;}
.y14b{bottom:1029.750000px;}
.ye7{bottom:1038.390000px;}
.y170{bottom:1038.930000px;}
.y8{bottom:1040.010000px;}
.y11f{bottom:1040.370000px;}
.y4f{bottom:1047.930000px;}
.y14a{bottom:1049.550000px;}
.ye5{bottom:1055.670000px;}
.y11e{bottom:1057.470000px;}
.y4{bottom:1061.250000px;}
.y4e{bottom:1068.630000px;}
.y149{bottom:1069.350000px;}
.ye4{bottom:1074.030000px;}
.y11d{bottom:1074.750000px;}
.y4d{bottom:1089.330000px;}
.ye3{bottom:1092.030000px;}
.yc9{bottom:1098.330000px;}
.y4c{bottom:1110.030000px;}
.yc8{bottom:1119.030000px;}
.y4b{bottom:1139.760000px;}
.ye2{bottom:1141.020000px;}
.y49{bottom:1175.940000px;}
.y48{bottom:1195.380000px;}
.y1{bottom:1196.820000px;}
.h25{height:17.100000px;}
.h1b{height:17.280000px;}
.h2b{height:17.316000px;}
.h2d{height:18.360000px;}
.h15{height:19.080000px;}
.h7{height:21.240000px;}
.h21{height:21.420000px;}
.h23{height:21.456000px;}
.h22{height:23.220000px;}
.h10{height:26.100000px;}
.h18{height:26.280000px;}
.h24{height:26.820000px;}
.h1a{height:34.560000px;}
.h26{height:35.640000px;}
.he{height:38.158594px;}
.h17{height:38.736000px;}
.h28{height:43.737568px;}
.h1d{height:48.088125px;}
.h12{height:49.868086px;}
.h2e{height:51.239531px;}
.h14{height:51.660000px;}
.hb{height:52.200000px;}
.h2f{height:52.998047px;}
.h2{height:55.291992px;}
.h27{height:58.621992px;}
.h8{height:58.651172px;}
.h29{height:59.019609px;}
.hf{height:59.038594px;}
.h13{height:59.439023px;}
.h1e{height:60.082031px;}
.hc{height:60.226875px;}
.h2a{height:61.501992px;}
.h3{height:65.010937px;}
.h20{height:66.757500px;}
.h30{height:67.837500px;}
.h1f{height:70.628906px;}
.h6{height:70.664062px;}
.h9{height:71.100000px;}
.ha{height:72.562500px;}
.h2c{height:74.704922px;}
.hd{height:87.876000px;}
.h4{height:95.256000px;}
.h5{height:96.508125px;}
.h16{height:99.180000px;}
.h1c{height:151.230000px;}
.h11{height:207.000000px;}
.h19{height:242.310000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:143.676000px;}
.w8{width:148.860000px;}
.wd{width:162.570000px;}
.we{width:162.720000px;}
.w12{width:208.110000px;}
.wc{width:209.010000px;}
.w5{width:215.310000px;}
.w4{width:216.210000px;}
.w13{width:230.610000px;}
.w14{width:249.870000px;}
.w6{width:264.990000px;}
.wa{width:305.310000px;}
.w11{width:337.395000px;}
.w10{width:343.110000px;}
.wb{width:375.195000px;}
.w15{width:480.495000px;}
.w9{width:531.645000px;}
.w7{width:680.505000px;}
.w3{width:696.525000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:6.300000px;}
.xc{left:8.100000px;}
.xa{left:45.180000px;}
.x26{left:55.074000px;}
.x8{left:57.954000px;}
.x31{left:61.374000px;}
.x32{left:62.505000px;}
.x2f{left:64.845000px;}
.x29{left:66.600000px;}
.x2d{left:68.760000px;}
.x37{left:70.554000px;}
.x30{left:74.025000px;}
.x2a{left:75.420000px;}
.x38{left:78.474000px;}
.x27{left:84.414000px;}
.x2b{left:86.940000px;}
.x7{left:90.354000px;}
.x3f{left:94.860000px;}
.x4{left:98.316000px;}
.xd{left:106.416000px;}
.x41{left:107.820000px;}
.x19{left:109.614000px;}
.x1d{left:112.890000px;}
.x43{left:113.940000px;}
.x42{left:116.100000px;}
.x6{left:117.534000px;}
.x1e{left:118.974000px;}
.x1b{left:123.654000px;}
.x13{left:125.454000px;}
.x17{left:129.095987px;}
.x3e{left:131.615987px;}
.x22{left:135.390000px;}
.x1c{left:136.470000px;}
.x21{left:144.354000px;}
.x1f{left:146.550000px;}
.x15{left:148.895987px;}
.x3a{left:152.310000px;}
.x47{left:154.469987px;}
.x35{left:155.730000px;}
.x3{left:159.509987px;}
.xe{left:160.554000px;}
.x36{left:163.290000px;}
.x20{left:174.450000px;}
.x34{left:176.790000px;}
.x3b{left:178.230000px;}
.x39{left:180.210000px;}
.x10{left:212.799000px;}
.x44{left:227.910000px;}
.x45{left:231.330000px;}
.x46{left:238.890000px;}
.x24{left:245.549987px;}
.x11{left:255.270000px;}
.x28{left:307.335000px;}
.x5{left:309.459000px;}
.x9{left:314.535000px;}
.xf{left:340.239000px;}
.x1{left:372.494987px;}
.x14{left:380.774987px;}
.x1a{left:411.555000px;}
.x2{left:434.054987px;}
.x25{left:446.474987px;}
.x33{left:449.535000px;}
.x2c{left:469.905000px;}
.x18{left:473.144987px;}
.xb{left:529.845000px;}
.x40{left:537.045000px;}
.x3c{left:554.504987px;}
.x23{left:626.324987px;}
.x2e{left:632.625000px;}
.x3d{left:643.964987px;}
.x16{left:710.429987px;}
@media print{
.vb{vertical-align:-72.320000pt;}
.v3{vertical-align:-64.128000pt;}
.v2{vertical-align:-18.560000pt;}
.v6{vertical-align:-10.880000pt;}
.v4{vertical-align:-5.120000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.560000pt;}
.v8{vertical-align:5.226667pt;}
.v1{vertical-align:18.560000pt;}
.va{vertical-align:21.120000pt;}
.v9{vertical-align:24.320000pt;}
.ls39{letter-spacing:-0.704000pt;}
.ls8{letter-spacing:-0.592000pt;}
.ls38{letter-spacing:-0.448000pt;}
.ls37{letter-spacing:-0.409067pt;}
.ls2e{letter-spacing:-0.233067pt;}
.ls1c{letter-spacing:-0.230933pt;}
.ls24{letter-spacing:-0.192000pt;}
.ls25{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.051840pt;}
.ls2c{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.007680pt;}
.ls27{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.032000pt;}
.ls2d{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.094720pt;}
.ls23{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.133120pt;}
.ls28{letter-spacing:0.136320pt;}
.ls16{letter-spacing:0.152320pt;}
.ls9{letter-spacing:0.154880pt;}
.ls2a{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.163840pt;}
.ls12{letter-spacing:0.183680pt;}
.lse{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.200960pt;}
.ls26{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.256000pt;}
.ls18{letter-spacing:0.265600pt;}
.ls22{letter-spacing:0.288000pt;}
.ls1f{letter-spacing:0.298667pt;}
.ls4{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.362667pt;}
.ls1e{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.512000pt;}
.ls17{letter-spacing:0.640000pt;}
.ls35{letter-spacing:0.776320pt;}
.ls34{letter-spacing:0.928000pt;}
.lsf{letter-spacing:0.992000pt;}
.ls3{letter-spacing:1.440000pt;}
.ls1d{letter-spacing:1.920000pt;}
.ls31{letter-spacing:3.840000pt;}
.lsa{letter-spacing:7.680000pt;}
.ls1a{letter-spacing:10.240000pt;}
.ls2{letter-spacing:10.400000pt;}
.ls33{letter-spacing:10.880000pt;}
.lsb{letter-spacing:11.520000pt;}
.ls1{letter-spacing:13.600000pt;}
.ls1b{letter-spacing:14.058667pt;}
.ls11{letter-spacing:14.080000pt;}
.ls32{letter-spacing:16.000000pt;}
.ls19{letter-spacing:16.106667pt;}
.ls21{letter-spacing:21.738667pt;}
.ls2f{letter-spacing:24.320000pt;}
.ls30{letter-spacing:27.520000pt;}
.ls2b{letter-spacing:369.386667pt;}
.ws9{word-spacing:-16.512000pt;}
.wsf{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws1a{word-spacing:-15.552000pt;}
.ws19{word-spacing:-15.360000pt;}
.ws1b{word-spacing:-15.296000pt;}
.wsa{word-spacing:-14.720000pt;}
.ws15{word-spacing:-14.486933pt;}
.ws3{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.545600pt;}
.ws11{word-spacing:-13.510933pt;}
.ws14{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.049067pt;}
.ws17{word-spacing:-12.870933pt;}
.ws4{word-spacing:-12.688000pt;}
.ws6{word-spacing:-12.005120pt;}
.ws7{word-spacing:-11.953280pt;}
.ws0{word-spacing:-10.832000pt;}
.wsb{word-spacing:-10.720000pt;}
.ws16{word-spacing:-9.280000pt;}
.ws12{word-spacing:-8.655360pt;}
.ws18{word-spacing:-8.647680pt;}
.ws1{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._1a{margin-left:-2.324693pt;}
._1{margin-left:-1.024000pt;}
._0{width:0.964907pt;}
._6{width:1.936853pt;}
._8{width:3.275947pt;}
._7{width:4.249600pt;}
._13{width:5.294507pt;}
._14{width:6.319573pt;}
._c{width:7.534293pt;}
._d{width:8.833920pt;}
._4{width:10.092800pt;}
._5{width:11.084587pt;}
._e{width:12.064213pt;}
._17{width:13.087787pt;}
._3{width:14.333653pt;}
._10{width:16.201600pt;}
._9{width:17.795200pt;}
._a{width:18.784427pt;}
._b{width:19.784747pt;}
._f{width:21.513600pt;}
._18{width:23.074560pt;}
._11{width:24.541440pt;}
._19{width:25.984000pt;}
._12{width:27.620480pt;}
._24{width:28.608000pt;}
._1c{width:29.888000pt;}
._1b{width:30.848000pt;}
._1d{width:34.496000pt;}
._1f{width:47.861760pt;}
._20{width:48.906240pt;}
._21{width:51.037867pt;}
._2{width:52.894720pt;}
._22{width:75.520000pt;}
._23{width:76.758187pt;}
._15{width:752.138667pt;}
._1e{width:753.418667pt;}
._16{width:1150.986667pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs7{font-size:55.992837pt;}
.fs1{font-size:58.880000pt;}
.fsa{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:2.880000pt;}
.yd{bottom:3.520000pt;}
.ye6{bottom:3.840000pt;}
.ya4{bottom:4.000000pt;}
.y16{bottom:4.320000pt;}
.y26{bottom:4.480000pt;}
.y9{bottom:4.640000pt;}
.y93{bottom:6.560000pt;}
.y97{bottom:6.600000pt;}
.y95{bottom:8.160000pt;}
.y3c{bottom:10.920000pt;}
.y9b{bottom:11.360000pt;}
.y2d{bottom:11.520000pt;}
.y2b{bottom:14.400000pt;}
.y7{bottom:15.200000pt;}
.ya5{bottom:17.600000pt;}
.y24{bottom:18.080000pt;}
.yf{bottom:18.240000pt;}
.ya3{bottom:19.200000pt;}
.y15{bottom:19.680000pt;}
.yc{bottom:21.920000pt;}
.y3b{bottom:26.280000pt;}
.y2a{bottom:29.760000pt;}
.y45{bottom:29.960000pt;}
.y23{bottom:33.440000pt;}
.y6{bottom:33.600000pt;}
.y14{bottom:39.560000pt;}
.yb{bottom:40.320000pt;}
.y3a{bottom:41.640000pt;}
.y29{bottom:44.960000pt;}
.y44{bottom:45.320000pt;}
.y21{bottom:48.960000pt;}
.y13{bottom:50.280000pt;}
.y3{bottom:50.400000pt;}
.y5{bottom:53.120000pt;}
.y39{bottom:57.000000pt;}
.y28{bottom:60.320000pt;}
.y43{bottom:60.680000pt;}
.y20{bottom:64.320000pt;}
.y4a{bottom:66.752000pt;}
.y2{bottom:67.232000pt;}
.y12{bottom:70.280000pt;}
.y38{bottom:72.200000pt;}
.y27{bottom:75.680000pt;}
.y42{bottom:75.880000pt;}
.y1f{bottom:79.680000pt;}
.y37{bottom:87.560000pt;}
.y41{bottom:91.240000pt;}
.y1e{bottom:94.880000pt;}
.y36{bottom:102.920000pt;}
.y40{bottom:106.600000pt;}
.yc7{bottom:107.872000pt;}
.y1d{bottom:110.240000pt;}
.y11c{bottom:110.752000pt;}
.y148{bottom:114.112000pt;}
.y35{bottom:118.280000pt;}
.y3f{bottom:121.960000pt;}
.yfd{bottom:123.392000pt;}
.y77{bottom:123.552000pt;}
.y1c{bottom:125.600000pt;}
.yc6{bottom:126.272000pt;}
.y147{bottom:132.512000pt;}
.y34{bottom:133.640000pt;}
.y11b{bottom:137.146667pt;}
.y1b{bottom:140.960000pt;}
.yfc{bottom:141.626667pt;}
.y16f{bottom:142.586667pt;}
.yc5{bottom:144.666667pt;}
.y33{bottom:149.000000pt;}
.y76{bottom:149.946667pt;}
.y146{bottom:150.906667pt;}
.y91{bottom:153.946667pt;}
.y11a{bottom:155.546667pt;}
.y1a{bottom:156.320000pt;}
.yfb{bottom:158.426667pt;}
.y16e{bottom:160.986667pt;}
.yc4{bottom:163.066667pt;}
.y32{bottom:164.200000pt;}
.y19{bottom:171.680000pt;}
.y119{bottom:173.946667pt;}
.yfa{bottom:175.226667pt;}
.y75{bottom:176.346667pt;}
.y145{bottom:177.306667pt;}
.y16d{bottom:179.386667pt;}
.y31{bottom:179.560000pt;}
.yc3{bottom:181.466667pt;}
.y90{bottom:181.626667pt;}
.y118{bottom:192.346667pt;}
.y30{bottom:194.920000pt;}
.y144{bottom:195.706667pt;}
.y9d{bottom:197.146667pt;}
.yc2{bottom:199.866667pt;}
.yf9{bottom:201.626667pt;}
.y74{bottom:202.746667pt;}
.y16c{bottom:205.626667pt;}
.y9c{bottom:212.346667pt;}
.yc1{bottom:218.266667pt;}
.y117{bottom:218.746667pt;}
.y143{bottom:222.106667pt;}
.y16b{bottom:224.026667pt;}
.ye1{bottom:227.866667pt;}
.y73{bottom:229.146667pt;}
.y9a{bottom:231.386667pt;}
.yc0{bottom:236.666667pt;}
.y116{bottom:237.146667pt;}
.y47{bottom:239.706667pt;}
.y16a{bottom:242.426667pt;}
.y142{bottom:248.506667pt;}
.ye0{bottom:253.146667pt;}
.ybf{bottom:255.066667pt;}
.y99{bottom:255.226667pt;}
.y72{bottom:255.546667pt;}
.y46{bottom:266.106667pt;}
.y169{bottom:268.826667pt;}
.ydf{bottom:271.546667pt;}
.ybe{bottom:273.466667pt;}
.y71{bottom:273.946667pt;}
.y98{bottom:274.106667pt;}
.y141{bottom:275.066667pt;}
.y168{bottom:287.226667pt;}
.y2f{bottom:289.626667pt;}
.yde{bottom:289.946667pt;}
.y70{bottom:292.346667pt;}
.y96{bottom:294.746667pt;}
.ybd{bottom:299.906667pt;}
.y140{bottom:306.786667pt;}
.ydd{bottom:308.386667pt;}
.y6f{bottom:310.786667pt;}
.y167{bottom:313.666667pt;}
.y94{bottom:313.826667pt;}
.y115{bottom:318.786667pt;}
.ybc{bottom:326.306667pt;}
.ydc{bottom:326.786667pt;}
.y6e{bottom:329.186667pt;}
.y166{bottom:332.066667pt;}
.y13f{bottom:333.186667pt;}
.y92{bottom:335.426667pt;}
.y114{bottom:337.186667pt;}
.ybb{bottom:341.826667pt;}
.ydb{bottom:345.186667pt;}
.y6d{bottom:347.586667pt;}
.y165{bottom:350.466667pt;}
.y113{bottom:355.586667pt;}
.yba{bottom:357.186667pt;}
.y13e{bottom:359.586667pt;}
.y8f{bottom:362.306667pt;}
.yda{bottom:363.586667pt;}
.y6c{bottom:365.826667pt;}
.y164{bottom:368.866667pt;}
.yb9{bottom:372.546667pt;}
.y112{bottom:373.826667pt;}
.y13d{bottom:377.986667pt;}
.yd9{bottom:381.826667pt;}
.y6b{bottom:384.226667pt;}
.y163{bottom:387.266667pt;}
.y8e{bottom:387.426667pt;}
.yb8{bottom:387.906667pt;}
.y111{bottom:392.226667pt;}
.yf8{bottom:394.306667pt;}
.yd8{bottom:400.226667pt;}
.y6a{bottom:402.626667pt;}
.yb7{bottom:403.106667pt;}
.y13c{bottom:404.386667pt;}
.y8d{bottom:405.826667pt;}
.y162{bottom:413.666667pt;}
.yb6{bottom:418.466667pt;}
.yd7{bottom:418.626667pt;}
.yf7{bottom:421.986667pt;}
.y8c{bottom:424.226667pt;}
.y3e{bottom:425.986667pt;}
.y69{bottom:429.026667pt;}
.y13b{bottom:430.466667pt;}
.y161{bottom:432.066667pt;}
.yb5{bottom:433.826667pt;}
.yd6{bottom:437.026667pt;}
.y8b{bottom:442.626667pt;}
.y3d{bottom:443.266667pt;}
.y68{bottom:447.426667pt;}
.yb4{bottom:449.186667pt;}
.yd5{bottom:455.426667pt;}
.y160{bottom:458.466667pt;}
.y8a{bottom:461.026667pt;}
.y13a{bottom:464.226667pt;}
.yb3{bottom:464.546667pt;}
.y67{bottom:465.826667pt;}
.yf6{bottom:467.586667pt;}
.yd4{bottom:473.826667pt;}
.y15f{bottom:476.866667pt;}
.y89{bottom:479.426667pt;}
.yb2{bottom:479.746667pt;}
.y139{bottom:481.026667pt;}
.y2e{bottom:481.666667pt;}
.y66{bottom:484.226667pt;}
.yf5{bottom:484.546667pt;}
.yd3{bottom:492.226667pt;}
.yb1{bottom:495.106667pt;}
.y15e{bottom:495.266667pt;}
.y88{bottom:497.826667pt;}
.y138{bottom:497.986667pt;}
.yf4{bottom:498.146667pt;}
.y65{bottom:502.626667pt;}
.yb0{bottom:510.466667pt;}
.y2c{bottom:510.626667pt;}
.y137{bottom:514.786667pt;}
.y64{bottom:521.026667pt;}
.y15d{bottom:521.666667pt;}
.y87{bottom:524.226667pt;}
.yaf{bottom:525.826667pt;}
.y110{bottom:529.026667pt;}
.y136{bottom:531.746667pt;}
.yd2{bottom:537.053333pt;}
.y63{bottom:539.453333pt;}
.y15c{bottom:540.093333pt;}
.yae{bottom:541.213333pt;}
.y86{bottom:542.653333pt;}
.y18{bottom:545.693333pt;}
.y10f{bottom:547.453333pt;}
.y135{bottom:548.573333pt;}
.yd1{bottom:555.453333pt;}
.yad{bottom:556.573333pt;}
.y62{bottom:557.853333pt;}
.y85{bottom:561.053333pt;}
.y134{bottom:565.373333pt;}
.y10e{bottom:565.853333pt;}
.y15b{bottom:566.493333pt;}
.yac{bottom:571.773333pt;}
.yd0{bottom:573.853333pt;}
.y61{bottom:576.253333pt;}
.y84{bottom:579.453333pt;}
.y133{bottom:582.333333pt;}
.y10d{bottom:584.253333pt;}
.y15a{bottom:584.893333pt;}
.yab{bottom:587.133333pt;}
.ycf{bottom:592.253333pt;}
.y60{bottom:594.653333pt;}
.y83{bottom:597.853333pt;}
.y132{bottom:599.133333pt;}
.yaa{bottom:602.493333pt;}
.y10c{bottom:602.653333pt;}
.yce{bottom:610.653333pt;}
.y159{bottom:611.293333pt;}
.y5f{bottom:613.053333pt;}
.y131{bottom:616.093333pt;}
.y82{bottom:616.253333pt;}
.ya9{bottom:617.853333pt;}
.y10b{bottom:621.053333pt;}
.ycd{bottom:629.053333pt;}
.y158{bottom:629.693333pt;}
.y5e{bottom:631.453333pt;}
.y130{bottom:632.893333pt;}
.ya8{bottom:633.213333pt;}
.y81{bottom:634.653333pt;}
.y25{bottom:635.773333pt;}
.y10a{bottom:639.453333pt;}
.ycc{bottom:647.453333pt;}
.y157{bottom:648.093333pt;}
.ya7{bottom:648.573333pt;}
.y12f{bottom:649.693333pt;}
.y80{bottom:653.053333pt;}
.y22{bottom:654.813333pt;}
.y5d{bottom:657.853333pt;}
.ya6{bottom:663.773333pt;}
.ycb{bottom:665.853333pt;}
.y12e{bottom:666.653333pt;}
.y7f{bottom:671.453333pt;}
.y156{bottom:674.493333pt;}
.y109{bottom:676.253333pt;}
.ya2{bottom:679.773333pt;}
.y12d{bottom:683.453333pt;}
.y5c{bottom:684.253333pt;}
.y7e{bottom:689.853333pt;}
.yca{bottom:692.253333pt;}
.y155{bottom:692.893333pt;}
.y108{bottom:694.653333pt;}
.y12c{bottom:700.413333pt;}
.y17{bottom:706.493333pt;}
.y7d{bottom:708.253333pt;}
.y5b{bottom:710.653333pt;}
.y12b{bottom:717.213333pt;}
.y154{bottom:719.293333pt;}
.y107{bottom:721.053333pt;}
.ya1{bottom:723.293333pt;}
.y5a{bottom:729.053333pt;}
.y12a{bottom:734.013333pt;}
.y7c{bottom:734.653333pt;}
.y11{bottom:736.093333pt;}
.y153{bottom:737.693333pt;}
.yf3{bottom:738.813333pt;}
.y106{bottom:739.453333pt;}
.y59{bottom:747.453333pt;}
.ya0{bottom:748.253333pt;}
.yf2{bottom:754.333333pt;}
.y105{bottom:757.853333pt;}
.y129{bottom:760.413333pt;}
.y7b{bottom:761.053333pt;}
.y152{bottom:764.093333pt;}
.y9f{bottom:765.213333pt;}
.y58{bottom:765.853333pt;}
.yf1{bottom:769.693333pt;}
.y176{bottom:772.253333pt;}
.y104{bottom:776.293333pt;}
.y9e{bottom:778.853333pt;}
.y151{bottom:782.533333pt;}
.y57{bottom:784.293333pt;}
.y128{bottom:784.773333pt;}
.yf0{bottom:785.093333pt;}
.y7a{bottom:787.333333pt;}
.y103{bottom:794.693333pt;}
.y175{bottom:798.533333pt;}
.yef{bottom:800.453333pt;}
.y56{bottom:802.693333pt;}
.y79{bottom:804.133333pt;}
.y127{bottom:805.573333pt;}
.y150{bottom:808.933333pt;}
.y102{bottom:813.093333pt;}
.ye{bottom:814.213333pt;}
.yee{bottom:815.653333pt;}
.y174{bottom:816.133333pt;}
.y126{bottom:817.413333pt;}
.y55{bottom:821.093333pt;}
.y78{bottom:825.733333pt;}
.y14f{bottom:827.333333pt;}
.yed{bottom:831.013333pt;}
.y101{bottom:831.493333pt;}
.y125{bottom:832.773333pt;}
.y54{bottom:839.493333pt;}
.y173{bottom:841.893333pt;}
.y14e{bottom:845.733333pt;}
.yec{bottom:846.373333pt;}
.y124{bottom:847.973333pt;}
.y100{bottom:849.893333pt;}
.y53{bottom:857.893333pt;}
.y172{bottom:860.293333pt;}
.ya{bottom:860.613333pt;}
.yeb{bottom:861.733333pt;}
.y123{bottom:863.333333pt;}
.yff{bottom:868.293333pt;}
.y14d{bottom:871.973333pt;}
.y52{bottom:876.293333pt;}
.yea{bottom:877.093333pt;}
.y122{bottom:878.693333pt;}
.yfe{bottom:886.693333pt;}
.y14c{bottom:889.733333pt;}
.ye9{bottom:892.453333pt;}
.y121{bottom:894.053333pt;}
.y51{bottom:894.693333pt;}
.y171{bottom:905.093333pt;}
.ye8{bottom:907.653333pt;}
.y120{bottom:909.413333pt;}
.y50{bottom:913.093333pt;}
.y14b{bottom:915.333333pt;}
.ye7{bottom:923.013333pt;}
.y170{bottom:923.493333pt;}
.y8{bottom:924.453333pt;}
.y11f{bottom:924.773333pt;}
.y4f{bottom:931.493333pt;}
.y14a{bottom:932.933333pt;}
.ye5{bottom:938.373333pt;}
.y11e{bottom:939.973333pt;}
.y4{bottom:943.333333pt;}
.y4e{bottom:949.893333pt;}
.y149{bottom:950.533333pt;}
.ye4{bottom:954.693333pt;}
.y11d{bottom:955.333333pt;}
.y4d{bottom:968.293333pt;}
.ye3{bottom:970.693333pt;}
.yc9{bottom:976.293333pt;}
.y4c{bottom:986.693333pt;}
.yc8{bottom:994.693333pt;}
.y4b{bottom:1013.120000pt;}
.ye2{bottom:1014.240000pt;}
.y49{bottom:1045.280000pt;}
.y48{bottom:1062.560000pt;}
.y1{bottom:1063.840000pt;}
.h25{height:15.200000pt;}
.h1b{height:15.360000pt;}
.h2b{height:15.392000pt;}
.h2d{height:16.320000pt;}
.h15{height:16.960000pt;}
.h7{height:18.880000pt;}
.h21{height:19.040000pt;}
.h23{height:19.072000pt;}
.h22{height:20.640000pt;}
.h10{height:23.200000pt;}
.h18{height:23.360000pt;}
.h24{height:23.840000pt;}
.h1a{height:30.720000pt;}
.h26{height:31.680000pt;}
.he{height:33.918750pt;}
.h17{height:34.432000pt;}
.h28{height:38.877839pt;}
.h1d{height:42.745000pt;}
.h12{height:44.327188pt;}
.h2e{height:45.546250pt;}
.h14{height:45.920000pt;}
.hb{height:46.400000pt;}
.h2f{height:47.109375pt;}
.h2{height:49.148438pt;}
.h27{height:52.108438pt;}
.h8{height:52.134375pt;}
.h29{height:52.461875pt;}
.hf{height:52.478750pt;}
.h13{height:52.834688pt;}
.h1e{height:53.406250pt;}
.hc{height:53.535000pt;}
.h2a{height:54.668438pt;}
.h3{height:57.787500pt;}
.h20{height:59.340000pt;}
.h30{height:60.300000pt;}
.h1f{height:62.781250pt;}
.h6{height:62.812500pt;}
.h9{height:63.200000pt;}
.ha{height:64.500000pt;}
.h2c{height:66.404375pt;}
.hd{height:78.112000pt;}
.h4{height:84.672000pt;}
.h5{height:85.785000pt;}
.h16{height:88.160000pt;}
.h1c{height:134.426667pt;}
.h11{height:184.000000pt;}
.h19{height:215.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:127.712000pt;}
.w8{width:132.320000pt;}
.wd{width:144.506667pt;}
.we{width:144.640000pt;}
.w12{width:184.986667pt;}
.wc{width:185.786667pt;}
.w5{width:191.386667pt;}
.w4{width:192.186667pt;}
.w13{width:204.986667pt;}
.w14{width:222.106667pt;}
.w6{width:235.546667pt;}
.wa{width:271.386667pt;}
.w11{width:299.906667pt;}
.w10{width:304.986667pt;}
.wb{width:333.506667pt;}
.w15{width:427.106667pt;}
.w9{width:472.573333pt;}
.w7{width:604.893333pt;}
.w3{width:619.133333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:5.600000pt;}
.xc{left:7.200000pt;}
.xa{left:40.160000pt;}
.x26{left:48.954667pt;}
.x8{left:51.514667pt;}
.x31{left:54.554667pt;}
.x32{left:55.560000pt;}
.x2f{left:57.640000pt;}
.x29{left:59.200000pt;}
.x2d{left:61.120000pt;}
.x37{left:62.714667pt;}
.x30{left:65.800000pt;}
.x2a{left:67.040000pt;}
.x38{left:69.754667pt;}
.x27{left:75.034667pt;}
.x2b{left:77.280000pt;}
.x7{left:80.314667pt;}
.x3f{left:84.320000pt;}
.x4{left:87.392000pt;}
.xd{left:94.592000pt;}
.x41{left:95.840000pt;}
.x19{left:97.434667pt;}
.x1d{left:100.346667pt;}
.x43{left:101.280000pt;}
.x42{left:103.200000pt;}
.x6{left:104.474667pt;}
.x1e{left:105.754667pt;}
.x1b{left:109.914667pt;}
.x13{left:111.514667pt;}
.x17{left:114.751988pt;}
.x3e{left:116.991988pt;}
.x22{left:120.346667pt;}
.x1c{left:121.306667pt;}
.x21{left:128.314667pt;}
.x1f{left:130.266667pt;}
.x15{left:132.351988pt;}
.x3a{left:135.386667pt;}
.x47{left:137.306655pt;}
.x35{left:138.426667pt;}
.x3{left:141.786655pt;}
.xe{left:142.714667pt;}
.x36{left:145.146667pt;}
.x20{left:155.066667pt;}
.x34{left:157.146667pt;}
.x3b{left:158.426667pt;}
.x39{left:160.186667pt;}
.x10{left:189.154667pt;}
.x44{left:202.586667pt;}
.x45{left:205.626667pt;}
.x46{left:212.346667pt;}
.x24{left:218.266655pt;}
.x11{left:226.906667pt;}
.x28{left:273.186667pt;}
.x5{left:275.074667pt;}
.x9{left:279.586667pt;}
.xf{left:302.434667pt;}
.x1{left:331.106655pt;}
.x14{left:338.466655pt;}
.x1a{left:365.826667pt;}
.x2{left:385.826655pt;}
.x25{left:396.866655pt;}
.x33{left:399.586667pt;}
.x2c{left:417.693333pt;}
.x18{left:420.573322pt;}
.xb{left:470.973333pt;}
.x40{left:477.373333pt;}
.x3c{left:492.893322pt;}
.x23{left:556.733322pt;}
.x2e{left:562.333333pt;}
.x3d{left:572.413322pt;}
.x16{left:631.493322pt;}
}




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