
    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_f761fe27e7b0e09bb81e6202.woff')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_344e88f57bb33ab06d2f6ff8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922363;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_3b279ac7dc81bb3523f74396.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_0d229c0159cbaf4e319c3739.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a3f312eebf2aa58d044b800f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_52e38814797247b3a76afcf6.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_aaa023597dec40546c805be8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_879153f77548c0f04f681012.woff')format("woff");}.ff9{font-family:ff9;line-height:0.944824;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_1117f3a448a56e861758601c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_eacd4c3bbeacaa8a93f5df1b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.687500;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_73b0524e24e589e82dc6c50a.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0b5e9c5b86c0490347691155.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_cf03f98e64e8f58d599be500.woff')format("woff");}.ffe{font-family:ffe;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_519084c00586703ed52c5748.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_ff05055bf9126a9f1157009f.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_3083a12e605d38463b072d22.woff')format("woff");}.ff13{font-family:ff13;line-height:1.372070;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:ff14;src:url('chunks/assets/font_914cbe35b7156e3a69d23b98.woff')format("woff");}.ff14{font-family:ff14;line-height:0.853516;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:ff15;src:url('chunks/assets/font_54983c3d39266680ff332ac1.woff')format("woff");}.ff15{font-family:ff15;line-height:0.666504;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:ff16;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_1d8d64653f44308e63b90d3f.woff')format("woff");}.ff17{font-family:ff17;line-height:1.112305;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);}
.v1{vertical-align:-12.240000px;}
.v3{vertical-align:-10.800000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:10.800000px;}
.v2{vertical-align:12.240000px;}
.ls1a{letter-spacing:-0.774000px;}
.ls17{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.472800px;}
.ls19{letter-spacing:-0.360000px;}
.ls23{letter-spacing:-0.259800px;}
.ls29{letter-spacing:-0.223800px;}
.ls18{letter-spacing:-0.206400px;}
.ls28{letter-spacing:-0.178800px;}
.lsd{letter-spacing:-0.106800px;}
.ls22{letter-spacing:-0.076200px;}
.lsf{letter-spacing:-0.053400px;}
.ls8{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.053400px;}
.ls21{letter-spacing:0.054000px;}
.lse{letter-spacing:0.106800px;}
.ls1c{letter-spacing:0.110160px;}
.ls11{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.206400px;}
.ls14{letter-spacing:0.206640px;}
.ls10{letter-spacing:0.223800px;}
.ls25{letter-spacing:0.258000px;}
.lsc{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls1f{letter-spacing:0.281280px;}
.ls9{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.295920px;}
.ls1e{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.828000px;}
.ls1b{letter-spacing:1.386720px;}
.ls16{letter-spacing:1.506720px;}
.ls3{letter-spacing:1.620000px;}
.ls26{letter-spacing:10.836000px;}
.ls1d{letter-spacing:13.860000px;}
.ls27{letter-spacing:28.260000px;}
.ls1{letter-spacing:33.066720px;}
.ls7{letter-spacing:34.020000px;}
.ls6{letter-spacing:49.860000px;}
.ls4{letter-spacing:80.510400px;}
.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;}
}
.ws10{word-spacing:-59.760000px;}
.ws15{word-spacing:-54.000000px;}
.ws11{word-spacing:-41.760000px;}
.ws12{word-spacing:-41.683800px;}
.ws16{word-spacing:-38.880000px;}
.wse{word-spacing:-15.300000px;}
.ws14{word-spacing:-15.238800px;}
.ws4{word-spacing:-15.199800px;}
.ws17{word-spacing:-15.198000px;}
.ws4c{word-spacing:-15.146400px;}
.ws9{word-spacing:-15.118488px;}
.wsb{word-spacing:-15.093600px;}
.ws7{word-spacing:-15.046800px;}
.ws18{word-spacing:-14.994000px;}
.wsc{word-spacing:-14.993400px;}
.ws2{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886600px;}
.ws6{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.733600px;}
.ws13{word-spacing:-14.680200px;}
.ws3{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.168000px;}
.ws5{word-spacing:-12.060000px;}
.ws4d{word-spacing:-11.881200px;}
.ws1{word-spacing:-11.587200px;}
.ws3a{word-spacing:-3.288000px;}
.ws39{word-spacing:-2.628000px;}
.ws38{word-spacing:-2.568000px;}
.ws3b{word-spacing:-2.082000px;}
.ws1a{word-spacing:-1.494000px;}
.ws46{word-spacing:-1.434000px;}
.ws47{word-spacing:-1.314000px;}
.ws43{word-spacing:-1.260000px;}
.ws48{word-spacing:-1.194000px;}
.ws45{word-spacing:-1.134000px;}
.ws40{word-spacing:-0.720000px;}
.ws1e{word-spacing:-0.480000px;}
.ws42{word-spacing:-0.420000px;}
.ws41{word-spacing:-0.330000px;}
.ws3f{word-spacing:-0.264000px;}
.ws19{word-spacing:-0.072000px;}
.wsa{word-spacing:0.000000px;}
.ws33{word-spacing:0.180000px;}
.ws3e{word-spacing:0.240000px;}
.ws1c{word-spacing:0.426000px;}
.ws26{word-spacing:0.660000px;}
.ws24{word-spacing:0.720000px;}
.ws25{word-spacing:0.954000px;}
.ws2d{word-spacing:1.734000px;}
.ws2b{word-spacing:2.154000px;}
.ws34{word-spacing:2.274000px;}
.ws2c{word-spacing:2.388000px;}
.ws35{word-spacing:2.448000px;}
.ws2a{word-spacing:2.814000px;}
.ws4b{word-spacing:6.320760px;}
.ws21{word-spacing:7.350000px;}
.ws23{word-spacing:7.410000px;}
.ws22{word-spacing:7.470000px;}
.ws27{word-spacing:12.966000px;}
.ws28{word-spacing:13.146000px;}
.ws29{word-spacing:13.206000px;}
.ws36{word-spacing:13.866000px;}
.ws37{word-spacing:13.926000px;}
.wsf{word-spacing:14.360640px;}
.ws1d{word-spacing:18.228000px;}
.ws2f{word-spacing:21.750000px;}
.ws2e{word-spacing:21.810000px;}
.ws1f{word-spacing:26.178000px;}
.ws20{word-spacing:26.658000px;}
.ws3d{word-spacing:27.312000px;}
.ws3c{word-spacing:27.612000px;}
.ws44{word-spacing:30.480000px;}
.ws49{word-spacing:41.952000px;}
.ws4a{word-spacing:42.012000px;}
.ws32{word-spacing:53.424000px;}
.ws30{word-spacing:53.484000px;}
.ws31{word-spacing:54.204000px;}
.ws1b{word-spacing:56.412000px;}
._12{margin-left:-4.190280px;}
._b{margin-left:-2.904720px;}
._0{margin-left:-1.080000px;}
._1{width:1.044720px;}
._2{width:2.964000px;}
._f{width:4.482000px;}
._c{width:5.562000px;}
._6{width:7.140000px;}
._3{width:8.586000px;}
._1a{width:9.681000px;}
._7{width:11.448000px;}
._22{width:12.698041px;}
._11{width:13.804799px;}
._e{width:14.850000px;}
._d{width:16.254000px;}
._13{width:17.721480px;}
._2c{width:18.888602px;}
._1c{width:20.139000px;}
._1d{width:21.242518px;}
._20{width:23.218079px;}
._1e{width:24.740401px;}
._10{width:26.772600px;}
._1b{width:28.765560px;}
._2b{width:30.220079px;}
._9{width:31.644000px;}
._8{width:32.832000px;}
._16{width:33.965759px;}
._15{width:35.615041px;}
._14{width:36.690480px;}
._5{width:38.826000px;}
._4{width:40.014000px;}
._2e{width:41.507943px;}
._28{width:42.967679px;}
._27{width:44.043000px;}
._2d{width:46.703879px;}
._25{width:48.095819px;}
._24{width:49.253460px;}
._19{width:50.317741px;}
._a{width:53.352000px;}
._21{width:55.121520px;}
._26{width:56.565540px;}
._1f{width:58.354320px;}
._23{width:74.115120px;}
._18{width:87.017820px;}
._17{width:88.020000px;}
._2a{width:93.017819px;}
._29{width:94.121940px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs7{font-size:60.473952px;}
.fs6{font-size:66.233376px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:71.992800px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.240000px;}
.y4c{bottom:3.659634px;}
.yd{bottom:3.780000px;}
.ya9{bottom:3.930000px;}
.ya{bottom:16.920000px;}
.ya8{bottom:17.790000px;}
.yc{bottom:22.680000px;}
.y6{bottom:48.600000px;}
.y4b{bottom:55.494450px;}
.y4a{bottom:57.714228px;}
.y9{bottom:59.220000px;}
.y8{bottom:101.340000px;}
.ya6{bottom:122.976000px;}
.ya5{bottom:140.256000px;}
.y35{bottom:155.190000px;}
.ya4{bottom:157.530000px;}
.y34{bottom:172.470000px;}
.ya3{bottom:174.810000px;}
.y33{bottom:189.750000px;}
.y11b{bottom:201.270000px;}
.y32{bottom:206.850000px;}
.ya2{bottom:207.030000px;}
.yd9{bottom:210.270000px;}
.y152{bottom:211.890000px;}
.y11a{bottom:218.550000px;}
.y31{bottom:224.130000px;}
.ya1{bottom:224.310000px;}
.y151{bottom:225.570000px;}
.yd8{bottom:227.550000px;}
.y119{bottom:235.830000px;}
.y150{bottom:239.430000px;}
.y30{bottom:241.410000px;}
.ya0{bottom:241.590000px;}
.yd7{bottom:244.830000px;}
.y118{bottom:253.110000px;}
.y14f{bottom:253.290000px;}
.y2f{bottom:258.690000px;}
.y9f{bottom:258.870000px;}
.yd6{bottom:262.110000px;}
.y14e{bottom:266.970000px;}
.y117{bottom:270.390000px;}
.y2e{bottom:275.970000px;}
.yd5{bottom:279.390000px;}
.y14d{bottom:280.830000px;}
.y116{bottom:287.490000px;}
.y2d{bottom:293.250000px;}
.y14c{bottom:294.510000px;}
.yd4{bottom:296.490000px;}
.y115{bottom:304.770000px;}
.y14b{bottom:308.370000px;}
.y2c{bottom:310.350000px;}
.y9e{bottom:310.530000px;}
.yd3{bottom:313.770000px;}
.y114{bottom:322.050000px;}
.y14a{bottom:322.230000px;}
.y2b{bottom:327.675000px;}
.y9d{bottom:327.855000px;}
.yd2{bottom:331.095000px;}
.y149{bottom:335.955000px;}
.y113{bottom:339.375000px;}
.y2a{bottom:344.955000px;}
.y9c{bottom:345.135000px;}
.yd1{bottom:348.375000px;}
.y148{bottom:349.815000px;}
.y29{bottom:362.235000px;}
.y112{bottom:362.595000px;}
.y9b{bottom:363.315000px;}
.y147{bottom:363.675000px;}
.yd0{bottom:365.655000px;}
.y146{bottom:377.355000px;}
.y28{bottom:379.515000px;}
.y9a{bottom:380.595000px;}
.ycf{bottom:382.935000px;}
.y6d{bottom:383.835000px;}
.y145{bottom:391.215000px;}
.y27{bottom:396.615000px;}
.y99{bottom:397.875000px;}
.yce{bottom:400.035000px;}
.y6c{bottom:401.115000px;}
.y144{bottom:405.075000px;}
.y26{bottom:413.895000px;}
.y98{bottom:415.155000px;}
.ycd{bottom:417.315000px;}
.y6b{bottom:418.395000px;}
.y143{bottom:418.755000px;}
.y25{bottom:431.175000px;}
.y97{bottom:432.435000px;}
.y142{bottom:432.615000px;}
.y6a{bottom:435.495000px;}
.ycc{bottom:443.235000px;}
.y141{bottom:446.475000px;}
.y24{bottom:448.455000px;}
.y111{bottom:449.535000px;}
.y96{bottom:449.715000px;}
.y69{bottom:452.775000px;}
.y140{bottom:460.155000px;}
.ycb{bottom:460.515000px;}
.y48{bottom:461.235000px;}
.y95{bottom:466.815000px;}
.y68{bottom:470.055000px;}
.y23{bottom:471.675000px;}
.y13f{bottom:474.015000px;}
.yff{bottom:474.555000px;}
.yca{bottom:477.795000px;}
.y47{bottom:478.515000px;}
.y94{bottom:484.095000px;}
.y67{bottom:487.335000px;}
.y13e{bottom:487.875000px;}
.yfe{bottom:491.835000px;}
.yc9{bottom:494.895000px;}
.y46{bottom:495.795000px;}
.y93{bottom:501.375000px;}
.y13d{bottom:501.555000px;}
.y66{bottom:504.615000px;}
.y22{bottom:506.595000px;}
.yfd{bottom:508.935000px;}
.y45{bottom:513.075000px;}
.yc8{bottom:513.255000px;}
.y13c{bottom:515.415000px;}
.y92{bottom:518.655000px;}
.y65{bottom:521.895000px;}
.y21{bottom:522.075000px;}
.yfc{bottom:526.215000px;}
.y13b{bottom:529.275000px;}
.y44{bottom:530.175000px;}
.yc7{bottom:530.535000px;}
.y91{bottom:535.935000px;}
.y64{bottom:538.995000px;}
.y13a{bottom:542.955000px;}
.yfb{bottom:543.495000px;}
.yc6{bottom:547.815000px;}
.y43{bottom:548.535000px;}
.y20{bottom:552.675000px;}
.y110{bottom:553.035000px;}
.y90{bottom:554.295000px;}
.y63{bottom:556.275000px;}
.y139{bottom:556.815000px;}
.yfa{bottom:560.775000px;}
.yc5{bottom:565.095000px;}
.y42{bottom:565.815000px;}
.y1f{bottom:568.155000px;}
.y10f{bottom:570.315000px;}
.y138{bottom:570.675000px;}
.y8f{bottom:571.395000px;}
.y62{bottom:573.555000px;}
.yf9{bottom:578.055000px;}
.y41{bottom:583.095000px;}
.yc4{bottom:583.455000px;}
.y1e{bottom:583.635000px;}
.y137{bottom:584.355000px;}
.y10e{bottom:587.595000px;}
.y8e{bottom:588.675000px;}
.y61{bottom:590.835000px;}
.yf8{bottom:595.365000px;}
.y136{bottom:598.245000px;}
.y1d{bottom:599.325000px;}
.y40{bottom:600.405000px;}
.yc3{bottom:600.585000px;}
.y10d{bottom:604.905000px;}
.y8d{bottom:605.985000px;}
.y60{bottom:608.145000px;}
.y135{bottom:612.105000px;}
.yf7{bottom:612.465000px;}
.y1c{bottom:614.805000px;}
.y3f{bottom:617.685000px;}
.yc2{bottom:618.045000px;}
.y10c{bottom:622.185000px;}
.y8c{bottom:623.265000px;}
.y5f{bottom:625.425000px;}
.yf6{bottom:629.745000px;}
.y1b{bottom:630.285000px;}
.y3e{bottom:634.785000px;}
.yc1{bottom:635.505000px;}
.y10b{bottom:639.285000px;}
.y8b{bottom:640.545000px;}
.y5e{bottom:642.525000px;}
.y1a{bottom:645.765000px;}
.yf5{bottom:647.025000px;}
.y3d{bottom:652.065000px;}
.yc0{bottom:652.965000px;}
.y10a{bottom:656.565000px;}
.y8a{bottom:658.725000px;}
.y5d{bottom:659.805000px;}
.y19{bottom:661.425000px;}
.yf4{bottom:664.225500px;}
.ybf{bottom:670.245000px;}
.y3c{bottom:670.425000px;}
.y134{bottom:670.785000px;}
.y109{bottom:673.845000px;}
.y89{bottom:676.005000px;}
.y18{bottom:676.905000px;}
.y5c{bottom:677.085000px;}
.yf3{bottom:681.486000px;}
.y3b{bottom:687.705000px;}
.y133{bottom:688.065000px;}
.y108{bottom:691.125000px;}
.y17{bottom:692.385000px;}
.y88{bottom:693.285000px;}
.y5b{bottom:694.365000px;}
.yf2{bottom:698.746500px;}
.y3a{bottom:704.985000px;}
.ybe{bottom:705.165000px;}
.y132{bottom:705.345000px;}
.y16{bottom:707.865000px;}
.y107{bottom:708.405000px;}
.y87{bottom:710.565000px;}
.y5a{bottom:711.645000px;}
.yf1{bottom:716.007000px;}
.y39{bottom:722.265000px;}
.y131{bottom:722.625000px;}
.y15{bottom:723.525000px;}
.y106{bottom:725.685000px;}
.y86{bottom:727.845000px;}
.y59{bottom:728.925000px;}
.yf0{bottom:733.267500px;}
.y14{bottom:739.005000px;}
.y130{bottom:739.725000px;}
.ybd{bottom:740.805000px;}
.y105{bottom:742.785000px;}
.y85{bottom:745.125000px;}
.y58{bottom:746.025000px;}
.y38{bottom:749.085000px;}
.yef{bottom:750.528000px;}
.y13{bottom:754.485000px;}
.y12f{bottom:757.005000px;}
.ybc{bottom:758.085000px;}
.y104{bottom:760.065000px;}
.y84{bottom:762.225000px;}
.y57{bottom:763.305000px;}
.y37{bottom:766.365000px;}
.yee{bottom:767.788500px;}
.y12{bottom:769.965000px;}
.y12e{bottom:774.285000px;}
.y103{bottom:777.345000px;}
.y56{bottom:780.585000px;}
.y36{bottom:783.645000px;}
.yed{bottom:785.049000px;}
.ybb{bottom:785.085000px;}
.y12d{bottom:791.565000px;}
.y83{bottom:794.445000px;}
.y102{bottom:794.625000px;}
.y55{bottom:797.865000px;}
.yba{bottom:802.185000px;}
.yec{bottom:802.309500px;}
.y12c{bottom:808.845000px;}
.y82{bottom:811.725000px;}
.y101{bottom:811.905000px;}
.y11{bottom:813.165000px;}
.y54{bottom:815.145000px;}
.yb9{bottom:819.465000px;}
.yeb{bottom:819.570000px;}
.y12b{bottom:826.125000px;}
.y81{bottom:829.005000px;}
.y100{bottom:829.185000px;}
.y10{bottom:830.445000px;}
.y53{bottom:832.245000px;}
.yb8{bottom:836.745000px;}
.yea{bottom:836.830500px;}
.y12a{bottom:843.225000px;}
.y80{bottom:846.285000px;}
.ye{bottom:847.725000px;}
.y52{bottom:849.525000px;}
.yb7{bottom:854.025000px;}
.ye9{bottom:854.091000px;}
.y7f{bottom:863.610000px;}
.yb{bottom:864.870000px;}
.y51{bottom:866.850000px;}
.y129{bottom:869.550000px;}
.yb6{bottom:871.350000px;}
.ye8{bottom:871.351500px;}
.y7e{bottom:880.890000px;}
.y50{bottom:884.130000px;}
.ye7{bottom:888.612000px;}
.yb5{bottom:888.630000px;}
.y7d{bottom:898.170000px;}
.y4f{bottom:901.410000px;}
.y128{bottom:904.830000px;}
.yb4{bottom:905.730000px;}
.ye6{bottom:905.872500px;}
.y7c{bottom:915.270000px;}
.y127{bottom:922.110000px;}
.y7{bottom:922.470000px;}
.yb3{bottom:923.010000px;}
.ya7{bottom:923.040000px;}
.ye5{bottom:923.133000px;}
.y7b{bottom:932.550000px;}
.y126{bottom:939.390000px;}
.yb2{bottom:940.290000px;}
.ye4{bottom:940.393500px;}
.y7a{bottom:949.830000px;}
.y125{bottom:956.670000px;}
.yb1{bottom:957.570000px;}
.ye3{bottom:957.654000px;}
.y79{bottom:967.110000px;}
.y124{bottom:973.770000px;}
.ye2{bottom:974.914500px;}
.y78{bottom:984.390000px;}
.y123{bottom:991.050000px;}
.yb0{bottom:991.950000px;}
.ye1{bottom:992.175000px;}
.y77{bottom:1001.490000px;}
.y122{bottom:1008.330000px;}
.yaf{bottom:1009.230000px;}
.ye0{bottom:1009.435500px;}
.y76{bottom:1018.770000px;}
.y121{bottom:1025.610000px;}
.yae{bottom:1026.510000px;}
.ydf{bottom:1026.696000px;}
.y75{bottom:1036.050000px;}
.y120{bottom:1042.890000px;}
.yad{bottom:1043.790000px;}
.yde{bottom:1043.956500px;}
.y74{bottom:1053.330000px;}
.y11f{bottom:1059.990000px;}
.yac{bottom:1061.070000px;}
.ydd{bottom:1061.217000px;}
.y73{bottom:1076.550000px;}
.y11e{bottom:1077.270000px;}
.yab{bottom:1078.350000px;}
.ydc{bottom:1078.477500px;}
.y72{bottom:1093.830000px;}
.y11d{bottom:1094.550000px;}
.yaa{bottom:1095.450000px;}
.ydb{bottom:1095.613500px;}
.y11c{bottom:1111.830000px;}
.yda{bottom:1112.550000px;}
.y71{bottom:1129.110000px;}
.y5{bottom:1144.260000px;}
.y70{bottom:1146.420000px;}
.y4{bottom:1160.100000px;}
.y4d{bottom:1161.363852px;}
.y6f{bottom:1163.520000px;}
.y3{bottom:1175.940000px;}
.y6e{bottom:1180.800000px;}
.y2{bottom:1191.780000px;}
.y49{bottom:1192.320756px;}
.y1{bottom:1207.620000px;}
.y4e{bottom:1209.240000px;}
.h8{height:17.136000px;}
.ha{height:17.280000px;}
.h12{height:17.998200px;}
.h15{height:29.340000px;}
.h3{height:32.670352px;}
.h17{height:43.246406px;}
.h11{height:44.759274px;}
.h2{height:46.986328px;}
.h13{height:47.321367px;}
.h16{height:47.344922px;}
.h10{height:47.983482px;}
.hb{height:54.421875px;}
.h6{height:57.600000px;}
.hd{height:58.621992px;}
.h9{height:58.651172px;}
.h14{height:59.614102px;}
.he{height:60.226875px;}
.hc{height:61.423863px;}
.h7{height:65.010937px;}
.h5{height:125.296875px;}
.h4{height:171.540000px;}
.hf{height:1262.873700px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:23.997600px;}
.w5{width:367.920000px;}
.w2{width:733.650000px;}
.w3{width:892.410750px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:10.800000px;}
.x9{left:21.276000px;}
.xb{left:43.416000px;}
.x8{left:57.096000px;}
.xf{left:63.216000px;}
.x7{left:79.740000px;}
.x11{left:84.960000px;}
.x10{left:95.616000px;}
.x13{left:106.236000px;}
.x1c{left:133.236000px;}
.xd{left:173.550000px;}
.x1e{left:200.730000px;}
.x12{left:202.710000px;}
.x6{left:228.090000px;}
.x19{left:236.730000px;}
.xa{left:268.635000px;}
.xe{left:302.835000px;}
.xc{left:342.255000px;}
.x15{left:455.475000px;}
.x1a{left:457.095000px;}
.x14{left:476.745000px;}
.x21{left:482.505000px;}
.x16{left:503.745000px;}
.x1f{left:581.865000px;}
.x20{left:599.325000px;}
.x5{left:658.905000px;}
.x2{left:664.710000px;}
.x1{left:667.950000px;}
.x4{left:695.670000px;}
.x3{left:726.630000px;}
.x17{left:770.322960px;}
.x18{left:774.204990px;}
.x1d{left:776.850000px;}
@media print{
.v1{vertical-align:-10.880000pt;}
.v3{vertical-align:-9.600000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:9.600000pt;}
.v2{vertical-align:10.880000pt;}
.ls1a{letter-spacing:-0.688000pt;}
.ls17{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.420267pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls23{letter-spacing:-0.230933pt;}
.ls29{letter-spacing:-0.198933pt;}
.ls18{letter-spacing:-0.183467pt;}
.ls28{letter-spacing:-0.158933pt;}
.lsd{letter-spacing:-0.094933pt;}
.ls22{letter-spacing:-0.067733pt;}
.lsf{letter-spacing:-0.047467pt;}
.ls8{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.047467pt;}
.ls21{letter-spacing:0.048000pt;}
.lse{letter-spacing:0.094933pt;}
.ls1c{letter-spacing:0.097920pt;}
.ls11{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.183467pt;}
.ls14{letter-spacing:0.183680pt;}
.ls10{letter-spacing:0.198933pt;}
.ls25{letter-spacing:0.229333pt;}
.lsc{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls1f{letter-spacing:0.250027pt;}
.ls9{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.263040pt;}
.ls1e{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.736000pt;}
.ls1b{letter-spacing:1.232640pt;}
.ls16{letter-spacing:1.339307pt;}
.ls3{letter-spacing:1.440000pt;}
.ls26{letter-spacing:9.632000pt;}
.ls1d{letter-spacing:12.320000pt;}
.ls27{letter-spacing:25.120000pt;}
.ls1{letter-spacing:29.392640pt;}
.ls7{letter-spacing:30.240000pt;}
.ls6{letter-spacing:44.320000pt;}
.ls4{letter-spacing:71.564800pt;}
.ws10{word-spacing:-53.120000pt;}
.ws15{word-spacing:-48.000000pt;}
.ws11{word-spacing:-37.120000pt;}
.ws12{word-spacing:-37.052267pt;}
.ws16{word-spacing:-34.560000pt;}
.wse{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.545600pt;}
.ws4{word-spacing:-13.510933pt;}
.ws17{word-spacing:-13.509333pt;}
.ws4c{word-spacing:-13.463467pt;}
.ws9{word-spacing:-13.438656pt;}
.wsb{word-spacing:-13.416533pt;}
.ws7{word-spacing:-13.374933pt;}
.ws18{word-spacing:-13.328000pt;}
.wsc{word-spacing:-13.327467pt;}
.ws2{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232533pt;}
.ws6{word-spacing:-13.185067pt;}
.wsd{word-spacing:-13.096533pt;}
.ws13{word-spacing:-13.049067pt;}
.ws3{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.816000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws4d{word-spacing:-10.561067pt;}
.ws1{word-spacing:-10.299733pt;}
.ws3a{word-spacing:-2.922667pt;}
.ws39{word-spacing:-2.336000pt;}
.ws38{word-spacing:-2.282667pt;}
.ws3b{word-spacing:-1.850667pt;}
.ws1a{word-spacing:-1.328000pt;}
.ws46{word-spacing:-1.274667pt;}
.ws47{word-spacing:-1.168000pt;}
.ws43{word-spacing:-1.120000pt;}
.ws48{word-spacing:-1.061333pt;}
.ws45{word-spacing:-1.008000pt;}
.ws40{word-spacing:-0.640000pt;}
.ws1e{word-spacing:-0.426667pt;}
.ws42{word-spacing:-0.373333pt;}
.ws41{word-spacing:-0.293333pt;}
.ws3f{word-spacing:-0.234667pt;}
.ws19{word-spacing:-0.064000pt;}
.wsa{word-spacing:0.000000pt;}
.ws33{word-spacing:0.160000pt;}
.ws3e{word-spacing:0.213333pt;}
.ws1c{word-spacing:0.378667pt;}
.ws26{word-spacing:0.586667pt;}
.ws24{word-spacing:0.640000pt;}
.ws25{word-spacing:0.848000pt;}
.ws2d{word-spacing:1.541333pt;}
.ws2b{word-spacing:1.914667pt;}
.ws34{word-spacing:2.021333pt;}
.ws2c{word-spacing:2.122667pt;}
.ws35{word-spacing:2.176000pt;}
.ws2a{word-spacing:2.501333pt;}
.ws4b{word-spacing:5.618453pt;}
.ws21{word-spacing:6.533333pt;}
.ws23{word-spacing:6.586667pt;}
.ws22{word-spacing:6.640000pt;}
.ws27{word-spacing:11.525333pt;}
.ws28{word-spacing:11.685333pt;}
.ws29{word-spacing:11.738667pt;}
.ws36{word-spacing:12.325333pt;}
.ws37{word-spacing:12.378667pt;}
.wsf{word-spacing:12.765013pt;}
.ws1d{word-spacing:16.202667pt;}
.ws2f{word-spacing:19.333333pt;}
.ws2e{word-spacing:19.386667pt;}
.ws1f{word-spacing:23.269333pt;}
.ws20{word-spacing:23.696000pt;}
.ws3d{word-spacing:24.277333pt;}
.ws3c{word-spacing:24.544000pt;}
.ws44{word-spacing:27.093333pt;}
.ws49{word-spacing:37.290667pt;}
.ws4a{word-spacing:37.344000pt;}
.ws32{word-spacing:47.488000pt;}
.ws30{word-spacing:47.541333pt;}
.ws31{word-spacing:48.181333pt;}
.ws1b{word-spacing:50.144000pt;}
._12{margin-left:-3.724693pt;}
._b{margin-left:-2.581973pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.928640pt;}
._2{width:2.634667pt;}
._f{width:3.984000pt;}
._c{width:4.944000pt;}
._6{width:6.346667pt;}
._3{width:7.632000pt;}
._1a{width:8.605334pt;}
._7{width:10.176000pt;}
._22{width:11.287148pt;}
._11{width:12.270932pt;}
._e{width:13.200000pt;}
._d{width:14.448000pt;}
._13{width:15.752426pt;}
._2c{width:16.789869pt;}
._1c{width:17.901334pt;}
._1d{width:18.882238pt;}
._20{width:20.638292pt;}
._1e{width:21.991468pt;}
._10{width:23.797866pt;}
._1b{width:25.569386pt;}
._2b{width:26.862292pt;}
._9{width:28.128000pt;}
._8{width:29.184000pt;}
._16{width:30.191786pt;}
._15{width:31.657814pt;}
._14{width:32.613760pt;}
._5{width:34.512000pt;}
._4{width:35.568000pt;}
._2e{width:36.895949pt;}
._28{width:38.193492pt;}
._27{width:39.149334pt;}
._2d{width:41.514559pt;}
._25{width:42.751839pt;}
._24{width:43.780854pt;}
._19{width:44.726881pt;}
._a{width:47.424000pt;}
._21{width:48.996907pt;}
._26{width:50.280480pt;}
._1f{width:51.870507pt;}
._23{width:65.880107pt;}
._18{width:77.349173pt;}
._17{width:78.240000pt;}
._2a{width:82.682506pt;}
._29{width:83.663947pt;}
.fs9{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs7{font-size:53.754624pt;}
.fs6{font-size:58.874112pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:63.993600pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:2.880000pt;}
.y4c{bottom:3.253008pt;}
.yd{bottom:3.360000pt;}
.ya9{bottom:3.493333pt;}
.ya{bottom:15.040000pt;}
.ya8{bottom:15.813333pt;}
.yc{bottom:20.160000pt;}
.y6{bottom:43.200000pt;}
.y4b{bottom:49.328400pt;}
.y4a{bottom:51.301536pt;}
.y9{bottom:52.640000pt;}
.y8{bottom:90.080000pt;}
.ya6{bottom:109.312000pt;}
.ya5{bottom:124.672000pt;}
.y35{bottom:137.946667pt;}
.ya4{bottom:140.026667pt;}
.y34{bottom:153.306667pt;}
.ya3{bottom:155.386667pt;}
.y33{bottom:168.666667pt;}
.y11b{bottom:178.906667pt;}
.y32{bottom:183.866667pt;}
.ya2{bottom:184.026667pt;}
.yd9{bottom:186.906667pt;}
.y152{bottom:188.346667pt;}
.y11a{bottom:194.266667pt;}
.y31{bottom:199.226667pt;}
.ya1{bottom:199.386667pt;}
.y151{bottom:200.506667pt;}
.yd8{bottom:202.266667pt;}
.y119{bottom:209.626667pt;}
.y150{bottom:212.826667pt;}
.y30{bottom:214.586667pt;}
.ya0{bottom:214.746667pt;}
.yd7{bottom:217.626667pt;}
.y118{bottom:224.986667pt;}
.y14f{bottom:225.146667pt;}
.y2f{bottom:229.946667pt;}
.y9f{bottom:230.106667pt;}
.yd6{bottom:232.986667pt;}
.y14e{bottom:237.306667pt;}
.y117{bottom:240.346667pt;}
.y2e{bottom:245.306667pt;}
.yd5{bottom:248.346667pt;}
.y14d{bottom:249.626667pt;}
.y116{bottom:255.546667pt;}
.y2d{bottom:260.666667pt;}
.y14c{bottom:261.786667pt;}
.yd4{bottom:263.546667pt;}
.y115{bottom:270.906667pt;}
.y14b{bottom:274.106667pt;}
.y2c{bottom:275.866667pt;}
.y9e{bottom:276.026667pt;}
.yd3{bottom:278.906667pt;}
.y114{bottom:286.266667pt;}
.y14a{bottom:286.426667pt;}
.y2b{bottom:291.266667pt;}
.y9d{bottom:291.426667pt;}
.yd2{bottom:294.306667pt;}
.y149{bottom:298.626667pt;}
.y113{bottom:301.666667pt;}
.y2a{bottom:306.626667pt;}
.y9c{bottom:306.786667pt;}
.yd1{bottom:309.666667pt;}
.y148{bottom:310.946667pt;}
.y29{bottom:321.986667pt;}
.y112{bottom:322.306667pt;}
.y9b{bottom:322.946667pt;}
.y147{bottom:323.266667pt;}
.yd0{bottom:325.026667pt;}
.y146{bottom:335.426667pt;}
.y28{bottom:337.346667pt;}
.y9a{bottom:338.306667pt;}
.ycf{bottom:340.386667pt;}
.y6d{bottom:341.186667pt;}
.y145{bottom:347.746667pt;}
.y27{bottom:352.546667pt;}
.y99{bottom:353.666667pt;}
.yce{bottom:355.586667pt;}
.y6c{bottom:356.546667pt;}
.y144{bottom:360.066667pt;}
.y26{bottom:367.906667pt;}
.y98{bottom:369.026667pt;}
.ycd{bottom:370.946667pt;}
.y6b{bottom:371.906667pt;}
.y143{bottom:372.226667pt;}
.y25{bottom:383.266667pt;}
.y97{bottom:384.386667pt;}
.y142{bottom:384.546667pt;}
.y6a{bottom:387.106667pt;}
.ycc{bottom:393.986667pt;}
.y141{bottom:396.866667pt;}
.y24{bottom:398.626667pt;}
.y111{bottom:399.586667pt;}
.y96{bottom:399.746667pt;}
.y69{bottom:402.466667pt;}
.y140{bottom:409.026667pt;}
.ycb{bottom:409.346667pt;}
.y48{bottom:409.986667pt;}
.y95{bottom:414.946667pt;}
.y68{bottom:417.826667pt;}
.y23{bottom:419.266667pt;}
.y13f{bottom:421.346667pt;}
.yff{bottom:421.826667pt;}
.yca{bottom:424.706667pt;}
.y47{bottom:425.346667pt;}
.y94{bottom:430.306667pt;}
.y67{bottom:433.186667pt;}
.y13e{bottom:433.666667pt;}
.yfe{bottom:437.186667pt;}
.yc9{bottom:439.906667pt;}
.y46{bottom:440.706667pt;}
.y93{bottom:445.666667pt;}
.y13d{bottom:445.826667pt;}
.y66{bottom:448.546667pt;}
.y22{bottom:450.306667pt;}
.yfd{bottom:452.386667pt;}
.y45{bottom:456.066667pt;}
.yc8{bottom:456.226667pt;}
.y13c{bottom:458.146667pt;}
.y92{bottom:461.026667pt;}
.y65{bottom:463.906667pt;}
.y21{bottom:464.066667pt;}
.yfc{bottom:467.746667pt;}
.y13b{bottom:470.466667pt;}
.y44{bottom:471.266667pt;}
.yc7{bottom:471.586667pt;}
.y91{bottom:476.386667pt;}
.y64{bottom:479.106667pt;}
.y13a{bottom:482.626667pt;}
.yfb{bottom:483.106667pt;}
.yc6{bottom:486.946667pt;}
.y43{bottom:487.586667pt;}
.y20{bottom:491.266667pt;}
.y110{bottom:491.586667pt;}
.y90{bottom:492.706667pt;}
.y63{bottom:494.466667pt;}
.y139{bottom:494.946667pt;}
.yfa{bottom:498.466667pt;}
.yc5{bottom:502.306667pt;}
.y42{bottom:502.946667pt;}
.y1f{bottom:505.026667pt;}
.y10f{bottom:506.946667pt;}
.y138{bottom:507.266667pt;}
.y8f{bottom:507.906667pt;}
.y62{bottom:509.826667pt;}
.yf9{bottom:513.826667pt;}
.y41{bottom:518.306667pt;}
.yc4{bottom:518.626667pt;}
.y1e{bottom:518.786667pt;}
.y137{bottom:519.426667pt;}
.y10e{bottom:522.306667pt;}
.y8e{bottom:523.266667pt;}
.y61{bottom:525.186667pt;}
.yf8{bottom:529.213333pt;}
.y136{bottom:531.773333pt;}
.y1d{bottom:532.733333pt;}
.y40{bottom:533.693333pt;}
.yc3{bottom:533.853333pt;}
.y10d{bottom:537.693333pt;}
.y8d{bottom:538.653333pt;}
.y60{bottom:540.573333pt;}
.y135{bottom:544.093333pt;}
.yf7{bottom:544.413333pt;}
.y1c{bottom:546.493333pt;}
.y3f{bottom:549.053333pt;}
.yc2{bottom:549.373333pt;}
.y10c{bottom:553.053333pt;}
.y8c{bottom:554.013333pt;}
.y5f{bottom:555.933333pt;}
.yf6{bottom:559.773333pt;}
.y1b{bottom:560.253333pt;}
.y3e{bottom:564.253333pt;}
.yc1{bottom:564.893333pt;}
.y10b{bottom:568.253333pt;}
.y8b{bottom:569.373333pt;}
.y5e{bottom:571.133333pt;}
.y1a{bottom:574.013333pt;}
.yf5{bottom:575.133333pt;}
.y3d{bottom:579.613333pt;}
.yc0{bottom:580.413333pt;}
.y10a{bottom:583.613333pt;}
.y8a{bottom:585.533333pt;}
.y5d{bottom:586.493333pt;}
.y19{bottom:587.933333pt;}
.yf4{bottom:590.422667pt;}
.ybf{bottom:595.773333pt;}
.y3c{bottom:595.933333pt;}
.y134{bottom:596.253333pt;}
.y109{bottom:598.973333pt;}
.y89{bottom:600.893333pt;}
.y18{bottom:601.693333pt;}
.y5c{bottom:601.853333pt;}
.yf3{bottom:605.765333pt;}
.y3b{bottom:611.293333pt;}
.y133{bottom:611.613333pt;}
.y108{bottom:614.333333pt;}
.y17{bottom:615.453333pt;}
.y88{bottom:616.253333pt;}
.y5b{bottom:617.213333pt;}
.yf2{bottom:621.108000pt;}
.y3a{bottom:626.653333pt;}
.ybe{bottom:626.813333pt;}
.y132{bottom:626.973333pt;}
.y16{bottom:629.213333pt;}
.y107{bottom:629.693333pt;}
.y87{bottom:631.613333pt;}
.y5a{bottom:632.573333pt;}
.yf1{bottom:636.450667pt;}
.y39{bottom:642.013333pt;}
.y131{bottom:642.333333pt;}
.y15{bottom:643.133333pt;}
.y106{bottom:645.053333pt;}
.y86{bottom:646.973333pt;}
.y59{bottom:647.933333pt;}
.yf0{bottom:651.793333pt;}
.y14{bottom:656.893333pt;}
.y130{bottom:657.533333pt;}
.ybd{bottom:658.493333pt;}
.y105{bottom:660.253333pt;}
.y85{bottom:662.333333pt;}
.y58{bottom:663.133333pt;}
.y38{bottom:665.853333pt;}
.yef{bottom:667.136000pt;}
.y13{bottom:670.653333pt;}
.y12f{bottom:672.893333pt;}
.ybc{bottom:673.853333pt;}
.y104{bottom:675.613333pt;}
.y84{bottom:677.533333pt;}
.y57{bottom:678.493333pt;}
.y37{bottom:681.213333pt;}
.yee{bottom:682.478667pt;}
.y12{bottom:684.413333pt;}
.y12e{bottom:688.253333pt;}
.y103{bottom:690.973333pt;}
.y56{bottom:693.853333pt;}
.y36{bottom:696.573333pt;}
.yed{bottom:697.821333pt;}
.ybb{bottom:697.853333pt;}
.y12d{bottom:703.613333pt;}
.y83{bottom:706.173333pt;}
.y102{bottom:706.333333pt;}
.y55{bottom:709.213333pt;}
.yba{bottom:713.053333pt;}
.yec{bottom:713.164000pt;}
.y12c{bottom:718.973333pt;}
.y82{bottom:721.533333pt;}
.y101{bottom:721.693333pt;}
.y11{bottom:722.813333pt;}
.y54{bottom:724.573333pt;}
.yb9{bottom:728.413333pt;}
.yeb{bottom:728.506667pt;}
.y12b{bottom:734.333333pt;}
.y81{bottom:736.893333pt;}
.y100{bottom:737.053333pt;}
.y10{bottom:738.173333pt;}
.y53{bottom:739.773333pt;}
.yb8{bottom:743.773333pt;}
.yea{bottom:743.849333pt;}
.y12a{bottom:749.533333pt;}
.y80{bottom:752.253333pt;}
.ye{bottom:753.533333pt;}
.y52{bottom:755.133333pt;}
.yb7{bottom:759.133333pt;}
.ye9{bottom:759.192000pt;}
.y7f{bottom:767.653333pt;}
.yb{bottom:768.773333pt;}
.y51{bottom:770.533333pt;}
.y129{bottom:772.933333pt;}
.yb6{bottom:774.533333pt;}
.ye8{bottom:774.534667pt;}
.y7e{bottom:783.013333pt;}
.y50{bottom:785.893333pt;}
.ye7{bottom:789.877333pt;}
.yb5{bottom:789.893333pt;}
.y7d{bottom:798.373333pt;}
.y4f{bottom:801.253333pt;}
.y128{bottom:804.293333pt;}
.yb4{bottom:805.093333pt;}
.ye6{bottom:805.220000pt;}
.y7c{bottom:813.573333pt;}
.y127{bottom:819.653333pt;}
.y7{bottom:819.973333pt;}
.yb3{bottom:820.453333pt;}
.ya7{bottom:820.480000pt;}
.ye5{bottom:820.562667pt;}
.y7b{bottom:828.933333pt;}
.y126{bottom:835.013333pt;}
.yb2{bottom:835.813333pt;}
.ye4{bottom:835.905333pt;}
.y7a{bottom:844.293333pt;}
.y125{bottom:850.373333pt;}
.yb1{bottom:851.173333pt;}
.ye3{bottom:851.248000pt;}
.y79{bottom:859.653333pt;}
.y124{bottom:865.573333pt;}
.ye2{bottom:866.590667pt;}
.y78{bottom:875.013333pt;}
.y123{bottom:880.933333pt;}
.yb0{bottom:881.733333pt;}
.ye1{bottom:881.933333pt;}
.y77{bottom:890.213333pt;}
.y122{bottom:896.293333pt;}
.yaf{bottom:897.093333pt;}
.ye0{bottom:897.276000pt;}
.y76{bottom:905.573333pt;}
.y121{bottom:911.653333pt;}
.yae{bottom:912.453333pt;}
.ydf{bottom:912.618667pt;}
.y75{bottom:920.933333pt;}
.y120{bottom:927.013333pt;}
.yad{bottom:927.813333pt;}
.yde{bottom:927.961333pt;}
.y74{bottom:936.293333pt;}
.y11f{bottom:942.213333pt;}
.yac{bottom:943.173333pt;}
.ydd{bottom:943.304000pt;}
.y73{bottom:956.933333pt;}
.y11e{bottom:957.573333pt;}
.yab{bottom:958.533333pt;}
.ydc{bottom:958.646667pt;}
.y72{bottom:972.293333pt;}
.y11d{bottom:972.933333pt;}
.yaa{bottom:973.733333pt;}
.ydb{bottom:973.878667pt;}
.y11c{bottom:988.293333pt;}
.yda{bottom:988.933333pt;}
.y71{bottom:1003.653333pt;}
.y5{bottom:1017.120000pt;}
.y70{bottom:1019.040000pt;}
.y4{bottom:1031.200000pt;}
.y4d{bottom:1032.323424pt;}
.y6f{bottom:1034.240000pt;}
.y3{bottom:1045.280000pt;}
.y6e{bottom:1049.600000pt;}
.y2{bottom:1059.360000pt;}
.y49{bottom:1059.840672pt;}
.y1{bottom:1073.440000pt;}
.y4e{bottom:1074.880000pt;}
.h8{height:15.232000pt;}
.ha{height:15.360000pt;}
.h12{height:15.998400pt;}
.h15{height:26.080000pt;}
.h3{height:29.040312pt;}
.h17{height:38.441250pt;}
.h11{height:39.786021pt;}
.h2{height:41.765625pt;}
.h13{height:42.063437pt;}
.h16{height:42.084375pt;}
.h10{height:42.651984pt;}
.hb{height:48.375000pt;}
.h6{height:51.200000pt;}
.hd{height:52.108438pt;}
.h9{height:52.134375pt;}
.h14{height:52.990313pt;}
.he{height:53.535000pt;}
.hc{height:54.598989pt;}
.h7{height:57.787500pt;}
.h5{height:111.375000pt;}
.h4{height:152.480000pt;}
.hf{height:1122.554400pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:21.331200pt;}
.w5{width:327.040000pt;}
.w2{width:652.133333pt;}
.w3{width:793.254000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:9.600000pt;}
.x9{left:18.912000pt;}
.xb{left:38.592000pt;}
.x8{left:50.752000pt;}
.xf{left:56.192000pt;}
.x7{left:70.880000pt;}
.x11{left:75.520000pt;}
.x10{left:84.992000pt;}
.x13{left:94.432000pt;}
.x1c{left:118.432000pt;}
.xd{left:154.266667pt;}
.x1e{left:178.426667pt;}
.x12{left:180.186667pt;}
.x6{left:202.746667pt;}
.x19{left:210.426667pt;}
.xa{left:238.786667pt;}
.xe{left:269.186667pt;}
.xc{left:304.226667pt;}
.x15{left:404.866667pt;}
.x1a{left:406.306667pt;}
.x14{left:423.773333pt;}
.x21{left:428.893333pt;}
.x16{left:447.773333pt;}
.x1f{left:517.213333pt;}
.x20{left:532.733333pt;}
.x5{left:585.693333pt;}
.x2{left:590.853333pt;}
.x1{left:593.733333pt;}
.x4{left:618.373333pt;}
.x3{left:645.893333pt;}
.x17{left:684.731520pt;}
.x18{left:688.182213pt;}
.x1d{left:690.533333pt;}
}




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