
    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_a1cd3bee9da5b7bc76139c17.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_bbd06112cf05933cb78f020e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_5991082a9424bf482ffd27a4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_80789b263a029de75a00e9a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.899414;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_50cbc140abd69a3e35023146.woff')format("woff");}.ff5{font-family:ff5;line-height:1.082031;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_26de094be9e9f253425979e1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.849000;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_91007aaf2abac9e930fb7866.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_bff93cd4496324d6c30daf7a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.822000;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_c6a89c6b054ae119f2d40043.woff')format("woff");}.ff9{font-family:ff9;line-height:0.899414;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_c4a33fa5b94292c3ca63f9a3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.899414;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_5b460d772ae2ef421993f620.woff')format("woff");}.ffb{font-family:ffb;line-height:0.899414;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_3726fb7fb493cabc4b9142be.woff')format("woff");}.ffc{font-family:ffc;line-height:0.678711;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_aa73289deebf2b47fcee219f.woff')format("woff");}.ffd{font-family:ffd;line-height:0.899902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-16.830000px;}
.v4{vertical-align:-14.400000px;}
.v5{vertical-align:-9.647400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.000000px;}
.v2{vertical-align:23.280000px;}
.ls24{letter-spacing:-20.232000px;}
.ls49{letter-spacing:-4.800000px;}
.ls4a{letter-spacing:-4.464000px;}
.ls40{letter-spacing:-2.808000px;}
.ls44{letter-spacing:-1.800000px;}
.ls47{letter-spacing:-1.224000px;}
.ls2e{letter-spacing:-1.080000px;}
.ls36{letter-spacing:-1.008000px;}
.ls2d{letter-spacing:-0.936000px;}
.ls37{letter-spacing:-0.864000px;}
.ls14{letter-spacing:-0.792000px;}
.ls2b{letter-spacing:-0.720000px;}
.ls2c{letter-spacing:-0.648000px;}
.ls35{letter-spacing:-0.576000px;}
.ls34{letter-spacing:-0.504000px;}
.ls15{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.ls4c{letter-spacing:-0.120000px;}
.ls16{letter-spacing:-0.072000px;}
.lsa{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.000600px;}
.ls3c{letter-spacing:0.050400px;}
.ls29{letter-spacing:0.057600px;}
.ls39{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.144000px;}
.ls21{letter-spacing:0.201600px;}
.ls18{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.252000px;}
.ls7{letter-spacing:0.288000px;}
.ls38{letter-spacing:0.294000px;}
.ls4b{letter-spacing:0.300000px;}
.ls1f{letter-spacing:0.319200px;}
.ls8{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.412200px;}
.lsc{letter-spacing:0.420000px;}
.ls13{letter-spacing:0.432000px;}
.ls20{letter-spacing:0.504000px;}
.ls1b{letter-spacing:0.572400px;}
.ls11{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.648000px;}
.ls1d{letter-spacing:0.705600px;}
.ls12{letter-spacing:0.720000px;}
.ls31{letter-spacing:0.780000px;}
.ls17{letter-spacing:0.792000px;}
.ls6{letter-spacing:0.864000px;}
.ls1c{letter-spacing:0.936000px;}
.ls5{letter-spacing:1.008000px;}
.ls28{letter-spacing:1.080000px;}
.ls22{letter-spacing:1.152000px;}
.ls3a{letter-spacing:1.224000px;}
.ls43{letter-spacing:1.296000px;}
.ls33{letter-spacing:1.656000px;}
.ls3f{letter-spacing:1.800000px;}
.ls41{letter-spacing:1.944000px;}
.ls1a{letter-spacing:2.584800px;}
.ls45{letter-spacing:2.928000px;}
.ls46{letter-spacing:2.956800px;}
.ls48{letter-spacing:3.398400px;}
.ls23{letter-spacing:3.412800px;}
.ls3b{letter-spacing:3.600000px;}
.ls2f{letter-spacing:4.176000px;}
.ls2a{letter-spacing:4.248000px;}
.ls1{letter-spacing:4.260000px;}
.ls3e{letter-spacing:4.392000px;}
.ls3{letter-spacing:4.752000px;}
.ls3d{letter-spacing:8.272800px;}
.ls0{letter-spacing:8.436000px;}
.lsd{letter-spacing:8.460000px;}
.ls42{letter-spacing:9.360000px;}
.ls32{letter-spacing:10.296000px;}
.ls27{letter-spacing:10.656000px;}
.ls2{letter-spacing:10.740000px;}
.ls26{letter-spacing:10.749600px;}
.lsb{letter-spacing:75.180000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-75.180000px;}
.ws1e{word-spacing:-72.000000px;}
.ws1d{word-spacing:-25.320000px;}
.ws21{word-spacing:-21.024000px;}
.ws4b{word-spacing:-20.808000px;}
.ws2{word-spacing:-20.592000px;}
.ws31{word-spacing:-20.232000px;}
.ws46{word-spacing:-19.584000px;}
.ws45{word-spacing:-19.440000px;}
.ws4c{word-spacing:-18.936000px;}
.ws29{word-spacing:-18.792000px;}
.ws25{word-spacing:-18.648000px;}
.ws4d{word-spacing:-18.576000px;}
.ws22{word-spacing:-18.504000px;}
.ws38{word-spacing:-18.432000px;}
.ws23{word-spacing:-18.360000px;}
.ws28{word-spacing:-18.288000px;}
.ws26{word-spacing:-18.216000px;}
.ws41{word-spacing:-18.144000px;}
.ws47{word-spacing:-18.072000px;}
.ws42{word-spacing:-18.000000px;}
.ws30{word-spacing:-17.928000px;}
.ws1f{word-spacing:-17.784000px;}
.ws2e{word-spacing:-17.712000px;}
.ws27{word-spacing:-17.640000px;}
.ws2a{word-spacing:-17.496000px;}
.ws44{word-spacing:-17.424000px;}
.ws43{word-spacing:-17.208000px;}
.ws57{word-spacing:-17.160000px;}
.ws1{word-spacing:-16.860000px;}
.ws3e{word-spacing:-16.848000px;}
.ws56{word-spacing:-15.120000px;}
.ws20{word-spacing:-14.162400px;}
.ws4f{word-spacing:-13.488000px;}
.ws53{word-spacing:-12.336000px;}
.ws3f{word-spacing:-11.856000px;}
.ws11{word-spacing:-8.496000px;}
.ws8{word-spacing:-8.460000px;}
.ws4a{word-spacing:-1.944000px;}
.ws49{word-spacing:-1.800000px;}
.ws3d{word-spacing:-1.656000px;}
.ws4e{word-spacing:-1.296000px;}
.ws40{word-spacing:-1.224000px;}
.ws2b{word-spacing:-1.152000px;}
.ws37{word-spacing:-1.080000px;}
.wsa{word-spacing:-1.008000px;}
.ws24{word-spacing:-0.936000px;}
.wsc{word-spacing:-0.864000px;}
.ws1b{word-spacing:-0.792000px;}
.ws17{word-spacing:-0.720000px;}
.ws9{word-spacing:-0.648000px;}
.ws14{word-spacing:-0.576000px;}
.ws36{word-spacing:-0.504000px;}
.ws18{word-spacing:-0.432000px;}
.ws7{word-spacing:-0.420000px;}
.ws10{word-spacing:-0.360000px;}
.ws59{word-spacing:-0.300000px;}
.wsf{word-spacing:-0.288000px;}
.ws1c{word-spacing:-0.216000px;}
.ws1a{word-spacing:-0.144000px;}
.ws2f{word-spacing:-0.072000px;}
.ws12{word-spacing:-0.050400px;}
.ws50{word-spacing:-0.033600px;}
.ws3{word-spacing:0.000000px;}
.ws19{word-spacing:0.072000px;}
.ws58{word-spacing:0.120000px;}
.wsd{word-spacing:0.144000px;}
.wsb{word-spacing:0.216000px;}
.ws2d{word-spacing:0.288000px;}
.wse{word-spacing:0.360000px;}
.ws16{word-spacing:0.432000px;}
.ws39{word-spacing:0.504000px;}
.ws3a{word-spacing:0.576000px;}
.ws33{word-spacing:0.648000px;}
.ws32{word-spacing:0.720000px;}
.ws15{word-spacing:0.792000px;}
.ws3c{word-spacing:0.864000px;}
.ws34{word-spacing:0.936000px;}
.ws3b{word-spacing:1.008000px;}
.ws35{word-spacing:1.080000px;}
.ws51{word-spacing:1.224000px;}
.ws52{word-spacing:1.440000px;}
.ws5{word-spacing:1.800000px;}
.ws48{word-spacing:2.808000px;}
.ws6{word-spacing:3.312000px;}
.ws13{word-spacing:4.200000px;}
.ws55{word-spacing:4.464000px;}
.ws54{word-spacing:4.800000px;}
.ws2c{word-spacing:20.232000px;}
.ws0{word-spacing:146.196000px;}
._14{margin-left:-948.820800px;}
._17{margin-left:-20.341800px;}
._19{margin-left:-19.326000px;}
._1d{margin-left:-17.712000px;}
._1a{margin-left:-15.044400px;}
._16{margin-left:-12.313800px;}
._1e{margin-left:-10.512000px;}
._e{margin-left:-7.830000px;}
._c{margin-left:-6.186000px;}
._15{margin-left:-4.946400px;}
._a{margin-left:-3.918000px;}
._f{margin-left:-2.505600px;}
._1{margin-left:-1.068000px;}
._b{width:1.743000px;}
._2{width:2.886000px;}
._0{width:4.284000px;}
._10{width:5.544000px;}
._12{width:6.783600px;}
._7{width:7.854000px;}
._9{width:8.946000px;}
._11{width:10.616400px;}
._d{width:12.600000px;}
._1c{width:13.797000px;}
._18{width:14.990400px;}
._1b{width:16.422000px;}
._13{width:31.646100px;}
._3{width:36.324000px;}
._8{width:70.206000px;}
._6{width:73.056000px;}
._4{width:75.180000px;}
._5{width:77.304000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:33.600000px;}
.fs5{font-size:35.700000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.yce{bottom:116.999850px;}
.y20{bottom:117.000000px;}
.y87{bottom:117.000300px;}
.y12b{bottom:117.144150px;}
.yfe{bottom:117.708000px;}
.ya9{bottom:121.207200px;}
.y69{bottom:121.207500px;}
.yfd{bottom:132.852000px;}
.y12a{bottom:135.894150px;}
.ycd{bottom:136.207350px;}
.y1f{bottom:136.207500px;}
.y86{bottom:136.207800px;}
.y64{bottom:139.500000px;}
.y68{bottom:143.707500px;}
.yfc{bottom:147.996000px;}
.y67{bottom:154.500000px;}
.y129{bottom:154.644150px;}
.y63{bottom:162.000000px;}
.yfb{bottom:163.140000px;}
.ya8{bottom:164.201700px;}
.y66{bottom:169.500000px;}
.y128{bottom:173.394150px;}
.ycc{bottom:177.299850px;}
.yfa{bottom:178.284000px;}
.y1e{bottom:178.988550px;}
.y41{bottom:179.442000px;}
.y85{bottom:181.350300px;}
.y62{bottom:184.500000px;}
.ya7{bottom:187.295700px;}
.y65{bottom:188.707500px;}
.yf9{bottom:193.428000px;}
.y127{bottom:198.516000px;}
.ycb{bottom:199.799850px;}
.y1d{bottom:202.082550px;}
.y40{bottom:202.086000px;}
.y84{bottom:203.850300px;}
.y61{bottom:207.000000px;}
.yf8{bottom:208.572000px;}
.ya6{bottom:210.389700px;}
.yca{bottom:221.849850px;}
.yf7{bottom:223.716000px;}
.y3f{bottom:224.730000px;}
.y1c{bottom:225.176550px;}
.y83{bottom:226.350300px;}
.y60{bottom:229.500000px;}
.ya5{bottom:233.483700px;}
.yf6{bottom:238.860000px;}
.y126{bottom:243.516000px;}
.yc9{bottom:243.899850px;}
.y3e{bottom:247.374000px;}
.y1b{bottom:248.270550px;}
.y82{bottom:248.850300px;}
.y5f{bottom:252.000000px;}
.yf5{bottom:254.004000px;}
.y125{bottom:258.816000px;}
.yc8{bottom:265.949850px;}
.yf4{bottom:269.148000px;}
.y3d{bottom:270.018000px;}
.y81{bottom:271.350300px;}
.y1a{bottom:271.364550px;}
.y124{bottom:274.116000px;}
.y5e{bottom:274.500000px;}
.ya4{bottom:279.689700px;}
.yf3{bottom:284.292000px;}
.yc7{bottom:287.999850px;}
.y123{bottom:289.416000px;}
.y3c{bottom:292.662000px;}
.y80{bottom:293.850300px;}
.y19{bottom:294.458550px;}
.y5d{bottom:297.000000px;}
.yf2{bottom:299.436000px;}
.ya3{bottom:302.783700px;}
.y122{bottom:304.716000px;}
.yc6{bottom:310.049850px;}
.yf1{bottom:314.580000px;}
.y7f{bottom:316.350300px;}
.y18{bottom:317.552550px;}
.y5c{bottom:319.500000px;}
.y121{bottom:320.016000px;}
.ya2{bottom:325.877700px;}
.yf0{bottom:329.724000px;}
.yc5{bottom:332.099850px;}
.y120{bottom:335.316000px;}
.y3b{bottom:337.968000px;}
.y7e{bottom:338.850300px;}
.y17{bottom:340.646550px;}
.y5b{bottom:342.000000px;}
.yef{bottom:344.868000px;}
.ya1{bottom:348.971700px;}
.y11f{bottom:350.616000px;}
.yc4{bottom:354.149850px;}
.yee{bottom:360.012000px;}
.y3a{bottom:360.612000px;}
.y7d{bottom:361.350300px;}
.y16{bottom:363.740550px;}
.y5a{bottom:364.500000px;}
.y11e{bottom:365.916000px;}
.ya0{bottom:372.065700px;}
.yed{bottom:375.156000px;}
.yc3{bottom:376.199850px;}
.y11d{bottom:381.216000px;}
.y39{bottom:383.256000px;}
.y7c{bottom:383.850300px;}
.y15{bottom:386.834550px;}
.y59{bottom:387.000000px;}
.yec{bottom:390.300000px;}
.y9f{bottom:395.159700px;}
.y11c{bottom:396.516000px;}
.yc2{bottom:398.249850px;}
.yeb{bottom:405.444000px;}
.y38{bottom:406.038000px;}
.y7b{bottom:406.350300px;}
.y58{bottom:409.500000px;}
.y14{bottom:409.928550px;}
.y11b{bottom:411.816000px;}
.y9e{bottom:418.253700px;}
.yc1{bottom:420.299850px;}
.yea{bottom:420.588000px;}
.y11a{bottom:427.116000px;}
.y37{bottom:428.682000px;}
.y7a{bottom:428.916300px;}
.y57{bottom:432.000000px;}
.y13{bottom:433.022550px;}
.ye9{bottom:435.732000px;}
.y9d{bottom:441.347700px;}
.yc0{bottom:442.349850px;}
.y119{bottom:442.416000px;}
.ye8{bottom:450.876000px;}
.y36{bottom:451.326000px;}
.y79{bottom:451.416300px;}
.y56{bottom:454.500000px;}
.y12{bottom:456.116550px;}
.y118{bottom:457.716000px;}
.ybf{bottom:464.399850px;}
.y9c{bottom:464.441700px;}
.ye7{bottom:466.020000px;}
.y117{bottom:473.016000px;}
.y78{bottom:473.916300px;}
.y35{bottom:473.970000px;}
.y55{bottom:477.000000px;}
.y11{bottom:479.210550px;}
.ye6{bottom:481.164000px;}
.ybe{bottom:486.449850px;}
.y9b{bottom:487.535700px;}
.y116{bottom:488.316000px;}
.ye5{bottom:496.308000px;}
.y34{bottom:496.614000px;}
.y54{bottom:499.500000px;}
.y10{bottom:502.304550px;}
.y13b{bottom:503.250000px;}
.y115{bottom:503.616000px;}
.ybd{bottom:508.499850px;}
.y9a{bottom:510.629700px;}
.ye4{bottom:511.452000px;}
.y114{bottom:518.916000px;}
.y77{bottom:519.222300px;}
.y33{bottom:519.258000px;}
.y53{bottom:522.000000px;}
.yf{bottom:525.398550px;}
.ye3{bottom:526.596000px;}
.ybc{bottom:530.549850px;}
.y99{bottom:533.723700px;}
.y113{bottom:534.216000px;}
.y13a{bottom:540.750000px;}
.ye2{bottom:541.740000px;}
.y76{bottom:541.866300px;}
.y32{bottom:541.902000px;}
.y52{bottom:544.500000px;}
.ye{bottom:548.492550px;}
.y112{bottom:549.516000px;}
.ybb{bottom:552.599850px;}
.y98{bottom:556.817700px;}
.ye1{bottom:556.884000px;}
.y139{bottom:559.500000px;}
.y75{bottom:564.510300px;}
.y31{bottom:564.546000px;}
.y111{bottom:564.816000px;}
.y51{bottom:567.000000px;}
.yd{bottom:571.586550px;}
.ye0{bottom:572.028000px;}
.yba{bottom:574.649850px;}
.y97{bottom:579.911700px;}
.y110{bottom:580.116000px;}
.y74{bottom:587.154300px;}
.ydf{bottom:587.183850px;}
.y30{bottom:587.190000px;}
.y50{bottom:589.500000px;}
.yc{bottom:594.680550px;}
.y10f{bottom:595.416000px;}
.yb9{bottom:596.699850px;}
.yde{bottom:602.339850px;}
.y96{bottom:603.005700px;}
.y73{bottom:609.798300px;}
.y2f{bottom:609.834000px;}
.y10e{bottom:610.716000px;}
.y4f{bottom:612.000000px;}
.ydd{bottom:617.483850px;}
.yb{bottom:617.774550px;}
.yb8{bottom:618.749850px;}
.y10d{bottom:626.016000px;}
.y95{bottom:626.111700px;}
.y138{bottom:630.750000px;}
.y72{bottom:632.442300px;}
.y2e{bottom:632.478000px;}
.ydc{bottom:632.627850px;}
.y4e{bottom:634.500000px;}
.yb7{bottom:640.799850px;}
.ya{bottom:640.868550px;}
.y10c{bottom:641.316000px;}
.ydb{bottom:647.771850px;}
.y94{bottom:649.205700px;}
.y137{bottom:649.500000px;}
.y71{bottom:655.086300px;}
.y2d{bottom:655.122000px;}
.y10b{bottom:656.616000px;}
.y4d{bottom:657.000000px;}
.yb6{bottom:662.849850px;}
.yda{bottom:662.915850px;}
.y9{bottom:663.968550px;}
.y136{bottom:668.250000px;}
.y10a{bottom:671.916000px;}
.y93{bottom:672.329700px;}
.y70{bottom:677.730300px;}
.y2c{bottom:677.766000px;}
.yd9{bottom:678.071850px;}
.y4c{bottom:679.500000px;}
.yb5{bottom:684.900000px;}
.y135{bottom:687.000000px;}
.y109{bottom:687.216000px;}
.y92{bottom:695.423700px;}
.yd8{bottom:699.599850px;}
.y6f{bottom:700.374300px;}
.y2b{bottom:700.410000px;}
.y4b{bottom:702.000000px;}
.y108{bottom:702.516000px;}
.y134{bottom:705.750000px;}
.yb4{bottom:706.950000px;}
.y8{bottom:708.968550px;}
.y107{bottom:717.816000px;}
.y91{bottom:718.517700px;}
.y6e{bottom:723.018300px;}
.y2a{bottom:723.054000px;}
.y4a{bottom:724.500000px;}
.y7{bottom:727.718550px;}
.yb3{bottom:729.000000px;}
.y106{bottom:739.500000px;}
.y90{bottom:741.611700px;}
.y133{bottom:743.250000px;}
.yd7{bottom:744.252000px;}
.y6d{bottom:745.662300px;}
.y29{bottom:745.698000px;}
.y49{bottom:747.000000px;}
.yb2{bottom:751.050000px;}
.y132{bottom:762.000000px;}
.y8f{bottom:764.705700px;}
.yd6{bottom:767.058000px;}
.y6c{bottom:768.306300px;}
.y28{bottom:768.342000px;}
.y48{bottom:769.500000px;}
.y6{bottom:769.854300px;}
.yb1{bottom:773.100000px;}
.y131{bottom:780.750000px;}
.y105{bottom:784.500000px;}
.y8e{bottom:787.830000px;}
.yd5{bottom:789.864000px;}
.y6b{bottom:790.950300px;}
.y27{bottom:790.986000px;}
.y47{bottom:792.000000px;}
.y5{bottom:792.354300px;}
.yb0{bottom:795.150000px;}
.y104{bottom:799.500000px;}
.y8d{bottom:810.924000px;}
.yd4{bottom:812.670000px;}
.y6a{bottom:813.600150px;}
.y26{bottom:813.630000px;}
.y46{bottom:814.500000px;}
.yaf{bottom:817.200000px;}
.y130{bottom:818.250000px;}
.y103{bottom:829.500000px;}
.y8c{bottom:834.018000px;}
.yd3{bottom:835.476000px;}
.y25{bottom:836.274000px;}
.y45{bottom:837.000000px;}
.yae{bottom:839.250000px;}
.y102{bottom:844.500000px;}
.y12f{bottom:855.750000px;}
.y8b{bottom:857.112000px;}
.yd2{bottom:858.282000px;}
.y24{bottom:858.918000px;}
.y4{bottom:859.500000px;}
.yad{bottom:861.300000px;}
.y101{bottom:874.500000px;}
.y8a{bottom:880.206000px;}
.yd1{bottom:881.088000px;}
.y23{bottom:881.562000px;}
.y44{bottom:882.000000px;}
.yac{bottom:883.350000px;}
.y3{bottom:889.500000px;}
.y12e{bottom:893.250000px;}
.y89{bottom:903.306000px;}
.yd0{bottom:903.894000px;}
.y22{bottom:904.206000px;}
.y43{bottom:904.500000px;}
.yab{bottom:905.400000px;}
.y12d{bottom:912.000000px;}
.y100{bottom:919.500000px;}
.y88{bottom:926.400000px;}
.ycf{bottom:926.700000px;}
.y21{bottom:926.850000px;}
.y42{bottom:927.000000px;}
.yaa{bottom:927.450000px;}
.y12c{bottom:930.750000px;}
.yff{bottom:934.500000px;}
.h7{height:30.313623px;}
.he{height:39.072000px;}
.h9{height:39.990234px;}
.h8{height:40.757812px;}
.ha{height:47.988281px;}
.h4{height:50.580000px;}
.h1{height:50.947266px;}
.h5{height:61.136719px;}
.h2{height:62.947266px;}
.h6{height:66.075703px;}
.hc{height:66.507703px;}
.hd{height:66.555103px;}
.hb{height:66.555703px;}
.h3{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x3{left:82.381950px;}
.x6{left:112.495950px;}
.x5{left:127.381950px;}
.x2{left:134.985000px;}
.x7{left:180.526950px;}
.x4{left:625.781250px;}
@media print{
.v3{vertical-align:-14.960000pt;}
.v4{vertical-align:-12.800000pt;}
.v5{vertical-align:-8.575467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.666667pt;}
.v2{vertical-align:20.693333pt;}
.ls24{letter-spacing:-17.984000pt;}
.ls49{letter-spacing:-4.266667pt;}
.ls4a{letter-spacing:-3.968000pt;}
.ls40{letter-spacing:-2.496000pt;}
.ls44{letter-spacing:-1.600000pt;}
.ls47{letter-spacing:-1.088000pt;}
.ls2e{letter-spacing:-0.960000pt;}
.ls36{letter-spacing:-0.896000pt;}
.ls2d{letter-spacing:-0.832000pt;}
.ls37{letter-spacing:-0.768000pt;}
.ls14{letter-spacing:-0.704000pt;}
.ls2b{letter-spacing:-0.640000pt;}
.ls2c{letter-spacing:-0.576000pt;}
.ls35{letter-spacing:-0.512000pt;}
.ls34{letter-spacing:-0.448000pt;}
.ls15{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls4c{letter-spacing:-0.106667pt;}
.ls16{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.000533pt;}
.ls3c{letter-spacing:0.044800pt;}
.ls29{letter-spacing:0.051200pt;}
.ls39{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.128000pt;}
.ls21{letter-spacing:0.179200pt;}
.ls18{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.224000pt;}
.ls7{letter-spacing:0.256000pt;}
.ls38{letter-spacing:0.261333pt;}
.ls4b{letter-spacing:0.266667pt;}
.ls1f{letter-spacing:0.283733pt;}
.ls8{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.366400pt;}
.lsc{letter-spacing:0.373333pt;}
.ls13{letter-spacing:0.384000pt;}
.ls20{letter-spacing:0.448000pt;}
.ls1b{letter-spacing:0.508800pt;}
.ls11{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.576000pt;}
.ls1d{letter-spacing:0.627200pt;}
.ls12{letter-spacing:0.640000pt;}
.ls31{letter-spacing:0.693333pt;}
.ls17{letter-spacing:0.704000pt;}
.ls6{letter-spacing:0.768000pt;}
.ls1c{letter-spacing:0.832000pt;}
.ls5{letter-spacing:0.896000pt;}
.ls28{letter-spacing:0.960000pt;}
.ls22{letter-spacing:1.024000pt;}
.ls3a{letter-spacing:1.088000pt;}
.ls43{letter-spacing:1.152000pt;}
.ls33{letter-spacing:1.472000pt;}
.ls3f{letter-spacing:1.600000pt;}
.ls41{letter-spacing:1.728000pt;}
.ls1a{letter-spacing:2.297600pt;}
.ls45{letter-spacing:2.602667pt;}
.ls46{letter-spacing:2.628267pt;}
.ls48{letter-spacing:3.020800pt;}
.ls23{letter-spacing:3.033600pt;}
.ls3b{letter-spacing:3.200000pt;}
.ls2f{letter-spacing:3.712000pt;}
.ls2a{letter-spacing:3.776000pt;}
.ls1{letter-spacing:3.786667pt;}
.ls3e{letter-spacing:3.904000pt;}
.ls3{letter-spacing:4.224000pt;}
.ls3d{letter-spacing:7.353600pt;}
.ls0{letter-spacing:7.498667pt;}
.lsd{letter-spacing:7.520000pt;}
.ls42{letter-spacing:8.320000pt;}
.ls32{letter-spacing:9.152000pt;}
.ls27{letter-spacing:9.472000pt;}
.ls2{letter-spacing:9.546667pt;}
.ls26{letter-spacing:9.555200pt;}
.lsb{letter-spacing:66.826667pt;}
.ws4{word-spacing:-66.826667pt;}
.ws1e{word-spacing:-64.000000pt;}
.ws1d{word-spacing:-22.506667pt;}
.ws21{word-spacing:-18.688000pt;}
.ws4b{word-spacing:-18.496000pt;}
.ws2{word-spacing:-18.304000pt;}
.ws31{word-spacing:-17.984000pt;}
.ws46{word-spacing:-17.408000pt;}
.ws45{word-spacing:-17.280000pt;}
.ws4c{word-spacing:-16.832000pt;}
.ws29{word-spacing:-16.704000pt;}
.ws25{word-spacing:-16.576000pt;}
.ws4d{word-spacing:-16.512000pt;}
.ws22{word-spacing:-16.448000pt;}
.ws38{word-spacing:-16.384000pt;}
.ws23{word-spacing:-16.320000pt;}
.ws28{word-spacing:-16.256000pt;}
.ws26{word-spacing:-16.192000pt;}
.ws41{word-spacing:-16.128000pt;}
.ws47{word-spacing:-16.064000pt;}
.ws42{word-spacing:-16.000000pt;}
.ws30{word-spacing:-15.936000pt;}
.ws1f{word-spacing:-15.808000pt;}
.ws2e{word-spacing:-15.744000pt;}
.ws27{word-spacing:-15.680000pt;}
.ws2a{word-spacing:-15.552000pt;}
.ws44{word-spacing:-15.488000pt;}
.ws43{word-spacing:-15.296000pt;}
.ws57{word-spacing:-15.253333pt;}
.ws1{word-spacing:-14.986667pt;}
.ws3e{word-spacing:-14.976000pt;}
.ws56{word-spacing:-13.440000pt;}
.ws20{word-spacing:-12.588800pt;}
.ws4f{word-spacing:-11.989333pt;}
.ws53{word-spacing:-10.965333pt;}
.ws3f{word-spacing:-10.538667pt;}
.ws11{word-spacing:-7.552000pt;}
.ws8{word-spacing:-7.520000pt;}
.ws4a{word-spacing:-1.728000pt;}
.ws49{word-spacing:-1.600000pt;}
.ws3d{word-spacing:-1.472000pt;}
.ws4e{word-spacing:-1.152000pt;}
.ws40{word-spacing:-1.088000pt;}
.ws2b{word-spacing:-1.024000pt;}
.ws37{word-spacing:-0.960000pt;}
.wsa{word-spacing:-0.896000pt;}
.ws24{word-spacing:-0.832000pt;}
.wsc{word-spacing:-0.768000pt;}
.ws1b{word-spacing:-0.704000pt;}
.ws17{word-spacing:-0.640000pt;}
.ws9{word-spacing:-0.576000pt;}
.ws14{word-spacing:-0.512000pt;}
.ws36{word-spacing:-0.448000pt;}
.ws18{word-spacing:-0.384000pt;}
.ws7{word-spacing:-0.373333pt;}
.ws10{word-spacing:-0.320000pt;}
.ws59{word-spacing:-0.266667pt;}
.wsf{word-spacing:-0.256000pt;}
.ws1c{word-spacing:-0.192000pt;}
.ws1a{word-spacing:-0.128000pt;}
.ws2f{word-spacing:-0.064000pt;}
.ws12{word-spacing:-0.044800pt;}
.ws50{word-spacing:-0.029867pt;}
.ws3{word-spacing:0.000000pt;}
.ws19{word-spacing:0.064000pt;}
.ws58{word-spacing:0.106667pt;}
.wsd{word-spacing:0.128000pt;}
.wsb{word-spacing:0.192000pt;}
.ws2d{word-spacing:0.256000pt;}
.wse{word-spacing:0.320000pt;}
.ws16{word-spacing:0.384000pt;}
.ws39{word-spacing:0.448000pt;}
.ws3a{word-spacing:0.512000pt;}
.ws33{word-spacing:0.576000pt;}
.ws32{word-spacing:0.640000pt;}
.ws15{word-spacing:0.704000pt;}
.ws3c{word-spacing:0.768000pt;}
.ws34{word-spacing:0.832000pt;}
.ws3b{word-spacing:0.896000pt;}
.ws35{word-spacing:0.960000pt;}
.ws51{word-spacing:1.088000pt;}
.ws52{word-spacing:1.280000pt;}
.ws5{word-spacing:1.600000pt;}
.ws48{word-spacing:2.496000pt;}
.ws6{word-spacing:2.944000pt;}
.ws13{word-spacing:3.733333pt;}
.ws55{word-spacing:3.968000pt;}
.ws54{word-spacing:4.266667pt;}
.ws2c{word-spacing:17.984000pt;}
.ws0{word-spacing:129.952000pt;}
._14{margin-left:-843.396267pt;}
._17{margin-left:-18.081600pt;}
._19{margin-left:-17.178667pt;}
._1d{margin-left:-15.744000pt;}
._1a{margin-left:-13.372800pt;}
._16{margin-left:-10.945600pt;}
._1e{margin-left:-9.344000pt;}
._e{margin-left:-6.960000pt;}
._c{margin-left:-5.498667pt;}
._15{margin-left:-4.396800pt;}
._a{margin-left:-3.482667pt;}
._f{margin-left:-2.227200pt;}
._1{margin-left:-0.949333pt;}
._b{width:1.549333pt;}
._2{width:2.565333pt;}
._0{width:3.808000pt;}
._10{width:4.928000pt;}
._12{width:6.029867pt;}
._7{width:6.981333pt;}
._9{width:7.952000pt;}
._11{width:9.436800pt;}
._d{width:11.200000pt;}
._1c{width:12.264000pt;}
._18{width:13.324800pt;}
._1b{width:14.597333pt;}
._13{width:28.129867pt;}
._3{width:32.288000pt;}
._8{width:62.405333pt;}
._6{width:64.938667pt;}
._4{width:66.826667pt;}
._5{width:68.714667pt;}
.fs6{font-size:29.866667pt;}
.fs5{font-size:31.733333pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.yce{bottom:103.999867pt;}
.y20{bottom:104.000000pt;}
.y87{bottom:104.000267pt;}
.y12b{bottom:104.128133pt;}
.yfe{bottom:104.629333pt;}
.ya9{bottom:107.739733pt;}
.y69{bottom:107.740000pt;}
.yfd{bottom:118.090667pt;}
.y12a{bottom:120.794800pt;}
.ycd{bottom:121.073200pt;}
.y1f{bottom:121.073333pt;}
.y86{bottom:121.073600pt;}
.y64{bottom:124.000000pt;}
.y68{bottom:127.740000pt;}
.yfc{bottom:131.552000pt;}
.y67{bottom:137.333333pt;}
.y129{bottom:137.461467pt;}
.y63{bottom:144.000000pt;}
.yfb{bottom:145.013333pt;}
.ya8{bottom:145.957067pt;}
.y66{bottom:150.666667pt;}
.y128{bottom:154.128133pt;}
.ycc{bottom:157.599867pt;}
.yfa{bottom:158.474667pt;}
.y1e{bottom:159.100933pt;}
.y41{bottom:159.504000pt;}
.y85{bottom:161.200267pt;}
.y62{bottom:164.000000pt;}
.ya7{bottom:166.485067pt;}
.y65{bottom:167.740000pt;}
.yf9{bottom:171.936000pt;}
.y127{bottom:176.458667pt;}
.ycb{bottom:177.599867pt;}
.y1d{bottom:179.628933pt;}
.y40{bottom:179.632000pt;}
.y84{bottom:181.200267pt;}
.y61{bottom:184.000000pt;}
.yf8{bottom:185.397333pt;}
.ya6{bottom:187.013067pt;}
.yca{bottom:197.199867pt;}
.yf7{bottom:198.858667pt;}
.y3f{bottom:199.760000pt;}
.y1c{bottom:200.156933pt;}
.y83{bottom:201.200267pt;}
.y60{bottom:204.000000pt;}
.ya5{bottom:207.541067pt;}
.yf6{bottom:212.320000pt;}
.y126{bottom:216.458667pt;}
.yc9{bottom:216.799867pt;}
.y3e{bottom:219.888000pt;}
.y1b{bottom:220.684933pt;}
.y82{bottom:221.200267pt;}
.y5f{bottom:224.000000pt;}
.yf5{bottom:225.781333pt;}
.y125{bottom:230.058667pt;}
.yc8{bottom:236.399867pt;}
.yf4{bottom:239.242667pt;}
.y3d{bottom:240.016000pt;}
.y81{bottom:241.200267pt;}
.y1a{bottom:241.212933pt;}
.y124{bottom:243.658667pt;}
.y5e{bottom:244.000000pt;}
.ya4{bottom:248.613067pt;}
.yf3{bottom:252.704000pt;}
.yc7{bottom:255.999867pt;}
.y123{bottom:257.258667pt;}
.y3c{bottom:260.144000pt;}
.y80{bottom:261.200267pt;}
.y19{bottom:261.740933pt;}
.y5d{bottom:264.000000pt;}
.yf2{bottom:266.165333pt;}
.ya3{bottom:269.141067pt;}
.y122{bottom:270.858667pt;}
.yc6{bottom:275.599867pt;}
.yf1{bottom:279.626667pt;}
.y7f{bottom:281.200267pt;}
.y18{bottom:282.268933pt;}
.y5c{bottom:284.000000pt;}
.y121{bottom:284.458667pt;}
.ya2{bottom:289.669067pt;}
.yf0{bottom:293.088000pt;}
.yc5{bottom:295.199867pt;}
.y120{bottom:298.058667pt;}
.y3b{bottom:300.416000pt;}
.y7e{bottom:301.200267pt;}
.y17{bottom:302.796933pt;}
.y5b{bottom:304.000000pt;}
.yef{bottom:306.549333pt;}
.ya1{bottom:310.197067pt;}
.y11f{bottom:311.658667pt;}
.yc4{bottom:314.799867pt;}
.yee{bottom:320.010667pt;}
.y3a{bottom:320.544000pt;}
.y7d{bottom:321.200267pt;}
.y16{bottom:323.324933pt;}
.y5a{bottom:324.000000pt;}
.y11e{bottom:325.258667pt;}
.ya0{bottom:330.725067pt;}
.yed{bottom:333.472000pt;}
.yc3{bottom:334.399867pt;}
.y11d{bottom:338.858667pt;}
.y39{bottom:340.672000pt;}
.y7c{bottom:341.200267pt;}
.y15{bottom:343.852933pt;}
.y59{bottom:344.000000pt;}
.yec{bottom:346.933333pt;}
.y9f{bottom:351.253067pt;}
.y11c{bottom:352.458667pt;}
.yc2{bottom:353.999867pt;}
.yeb{bottom:360.394667pt;}
.y38{bottom:360.922667pt;}
.y7b{bottom:361.200267pt;}
.y58{bottom:364.000000pt;}
.y14{bottom:364.380933pt;}
.y11b{bottom:366.058667pt;}
.y9e{bottom:371.781067pt;}
.yc1{bottom:373.599867pt;}
.yea{bottom:373.856000pt;}
.y11a{bottom:379.658667pt;}
.y37{bottom:381.050667pt;}
.y7a{bottom:381.258933pt;}
.y57{bottom:384.000000pt;}
.y13{bottom:384.908933pt;}
.ye9{bottom:387.317333pt;}
.y9d{bottom:392.309067pt;}
.yc0{bottom:393.199867pt;}
.y119{bottom:393.258667pt;}
.ye8{bottom:400.778667pt;}
.y36{bottom:401.178667pt;}
.y79{bottom:401.258933pt;}
.y56{bottom:404.000000pt;}
.y12{bottom:405.436933pt;}
.y118{bottom:406.858667pt;}
.ybf{bottom:412.799867pt;}
.y9c{bottom:412.837067pt;}
.ye7{bottom:414.240000pt;}
.y117{bottom:420.458667pt;}
.y78{bottom:421.258933pt;}
.y35{bottom:421.306667pt;}
.y55{bottom:424.000000pt;}
.y11{bottom:425.964933pt;}
.ye6{bottom:427.701333pt;}
.ybe{bottom:432.399867pt;}
.y9b{bottom:433.365067pt;}
.y116{bottom:434.058667pt;}
.ye5{bottom:441.162667pt;}
.y34{bottom:441.434667pt;}
.y54{bottom:444.000000pt;}
.y10{bottom:446.492933pt;}
.y13b{bottom:447.333333pt;}
.y115{bottom:447.658667pt;}
.ybd{bottom:451.999867pt;}
.y9a{bottom:453.893067pt;}
.ye4{bottom:454.624000pt;}
.y114{bottom:461.258667pt;}
.y77{bottom:461.530933pt;}
.y33{bottom:461.562667pt;}
.y53{bottom:464.000000pt;}
.yf{bottom:467.020933pt;}
.ye3{bottom:468.085333pt;}
.ybc{bottom:471.599867pt;}
.y99{bottom:474.421067pt;}
.y113{bottom:474.858667pt;}
.y13a{bottom:480.666667pt;}
.ye2{bottom:481.546667pt;}
.y76{bottom:481.658933pt;}
.y32{bottom:481.690667pt;}
.y52{bottom:484.000000pt;}
.ye{bottom:487.548933pt;}
.y112{bottom:488.458667pt;}
.ybb{bottom:491.199867pt;}
.y98{bottom:494.949067pt;}
.ye1{bottom:495.008000pt;}
.y139{bottom:497.333333pt;}
.y75{bottom:501.786933pt;}
.y31{bottom:501.818667pt;}
.y111{bottom:502.058667pt;}
.y51{bottom:504.000000pt;}
.yd{bottom:508.076933pt;}
.ye0{bottom:508.469333pt;}
.yba{bottom:510.799867pt;}
.y97{bottom:515.477067pt;}
.y110{bottom:515.658667pt;}
.y74{bottom:521.914933pt;}
.ydf{bottom:521.941200pt;}
.y30{bottom:521.946667pt;}
.y50{bottom:524.000000pt;}
.yc{bottom:528.604933pt;}
.y10f{bottom:529.258667pt;}
.yb9{bottom:530.399867pt;}
.yde{bottom:535.413200pt;}
.y96{bottom:536.005067pt;}
.y73{bottom:542.042933pt;}
.y2f{bottom:542.074667pt;}
.y10e{bottom:542.858667pt;}
.y4f{bottom:544.000000pt;}
.ydd{bottom:548.874533pt;}
.yb{bottom:549.132933pt;}
.yb8{bottom:549.999867pt;}
.y10d{bottom:556.458667pt;}
.y95{bottom:556.543733pt;}
.y138{bottom:560.666667pt;}
.y72{bottom:562.170933pt;}
.y2e{bottom:562.202667pt;}
.ydc{bottom:562.335867pt;}
.y4e{bottom:564.000000pt;}
.yb7{bottom:569.599867pt;}
.ya{bottom:569.660933pt;}
.y10c{bottom:570.058667pt;}
.ydb{bottom:575.797200pt;}
.y94{bottom:577.071733pt;}
.y137{bottom:577.333333pt;}
.y71{bottom:582.298933pt;}
.y2d{bottom:582.330667pt;}
.y10b{bottom:583.658667pt;}
.y4d{bottom:584.000000pt;}
.yb6{bottom:589.199867pt;}
.yda{bottom:589.258533pt;}
.y9{bottom:590.194267pt;}
.y136{bottom:594.000000pt;}
.y10a{bottom:597.258667pt;}
.y93{bottom:597.626400pt;}
.y70{bottom:602.426933pt;}
.y2c{bottom:602.458667pt;}
.yd9{bottom:602.730533pt;}
.y4c{bottom:604.000000pt;}
.yb5{bottom:608.800000pt;}
.y135{bottom:610.666667pt;}
.y109{bottom:610.858667pt;}
.y92{bottom:618.154400pt;}
.yd8{bottom:621.866533pt;}
.y6f{bottom:622.554933pt;}
.y2b{bottom:622.586667pt;}
.y4b{bottom:624.000000pt;}
.y108{bottom:624.458667pt;}
.y134{bottom:627.333333pt;}
.yb4{bottom:628.400000pt;}
.y8{bottom:630.194267pt;}
.y107{bottom:638.058667pt;}
.y91{bottom:638.682400pt;}
.y6e{bottom:642.682933pt;}
.y2a{bottom:642.714667pt;}
.y4a{bottom:644.000000pt;}
.y7{bottom:646.860933pt;}
.yb3{bottom:648.000000pt;}
.y106{bottom:657.333333pt;}
.y90{bottom:659.210400pt;}
.y133{bottom:660.666667pt;}
.yd7{bottom:661.557333pt;}
.y6d{bottom:662.810933pt;}
.y29{bottom:662.842667pt;}
.y49{bottom:664.000000pt;}
.yb2{bottom:667.600000pt;}
.y132{bottom:677.333333pt;}
.y8f{bottom:679.738400pt;}
.yd6{bottom:681.829333pt;}
.y6c{bottom:682.938933pt;}
.y28{bottom:682.970667pt;}
.y48{bottom:684.000000pt;}
.y6{bottom:684.314933pt;}
.yb1{bottom:687.200000pt;}
.y131{bottom:694.000000pt;}
.y105{bottom:697.333333pt;}
.y8e{bottom:700.293333pt;}
.yd5{bottom:702.101333pt;}
.y6b{bottom:703.066933pt;}
.y27{bottom:703.098667pt;}
.y47{bottom:704.000000pt;}
.y5{bottom:704.314933pt;}
.yb0{bottom:706.800000pt;}
.y104{bottom:710.666667pt;}
.y8d{bottom:720.821333pt;}
.yd4{bottom:722.373333pt;}
.y6a{bottom:723.200133pt;}
.y26{bottom:723.226667pt;}
.y46{bottom:724.000000pt;}
.yaf{bottom:726.400000pt;}
.y130{bottom:727.333333pt;}
.y103{bottom:737.333333pt;}
.y8c{bottom:741.349333pt;}
.yd3{bottom:742.645333pt;}
.y25{bottom:743.354667pt;}
.y45{bottom:744.000000pt;}
.yae{bottom:746.000000pt;}
.y102{bottom:750.666667pt;}
.y12f{bottom:760.666667pt;}
.y8b{bottom:761.877333pt;}
.yd2{bottom:762.917333pt;}
.y24{bottom:763.482667pt;}
.y4{bottom:764.000000pt;}
.yad{bottom:765.600000pt;}
.y101{bottom:777.333333pt;}
.y8a{bottom:782.405333pt;}
.yd1{bottom:783.189333pt;}
.y23{bottom:783.610667pt;}
.y44{bottom:784.000000pt;}
.yac{bottom:785.200000pt;}
.y3{bottom:790.666667pt;}
.y12e{bottom:794.000000pt;}
.y89{bottom:802.938667pt;}
.yd0{bottom:803.461333pt;}
.y22{bottom:803.738667pt;}
.y43{bottom:804.000000pt;}
.yab{bottom:804.800000pt;}
.y12d{bottom:810.666667pt;}
.y100{bottom:817.333333pt;}
.y88{bottom:823.466667pt;}
.ycf{bottom:823.733333pt;}
.y21{bottom:823.866667pt;}
.y42{bottom:824.000000pt;}
.yaa{bottom:824.400000pt;}
.y12c{bottom:827.333333pt;}
.yff{bottom:830.666667pt;}
.h7{height:26.945443pt;}
.he{height:34.730667pt;}
.h9{height:35.546875pt;}
.h8{height:36.229167pt;}
.ha{height:42.656250pt;}
.h4{height:44.960000pt;}
.h1{height:45.286458pt;}
.h5{height:54.343750pt;}
.h2{height:55.953125pt;}
.h6{height:58.733958pt;}
.hc{height:59.117958pt;}
.hd{height:59.160092pt;}
.hb{height:59.160625pt;}
.h3{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x3{left:73.228400pt;}
.x6{left:99.996400pt;}
.x5{left:113.228400pt;}
.x2{left:119.986667pt;}
.x7{left:160.468400pt;}
.x4{left:556.250000pt;}
}




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