
    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_2a7bbc071c3c565a2b295274.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_4d7c5dcc955ce8fc45521c10.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_30f9952176d89938852bfd39.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ea3462153bec5cf479ac3964.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2e8c8bd03dbeb3697a1136f7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.851000;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_9bbaf836e44b8b6bbf834399.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9547ebbb2e3a76cc50906b5d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.020000;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_e5b458c9f6a9bcaabfefcf79.woff')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_1bb56ebca6f46ad379a7d57d.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4124461599a0ffa4529bcca0.woff')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_52b4b0526334af3ebc238402.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_e02c751c697b19f8c91d1137.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_c03646e5e0cc77219258aaa6.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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e7bbe7b66021b6fc963afa8e.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_e8691283758153c034820180.woff')format("woff");}.fff{font-family:fff;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;}
.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);}
.v4{vertical-align:-16.830000px;}
.v2{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.v1{vertical-align:181.200600px;}
.ls48{letter-spacing:-6.840000px;}
.ls4c{letter-spacing:-2.808000px;}
.ls3e{letter-spacing:-2.520000px;}
.ls4a{letter-spacing:-1.080000px;}
.ls4b{letter-spacing:-0.936000px;}
.ls25{letter-spacing:-0.792000px;}
.ls3f{letter-spacing:-0.720000px;}
.ls28{letter-spacing:-0.648000px;}
.ls26{letter-spacing:-0.576000px;}
.ls35{letter-spacing:-0.504000px;}
.ls30{letter-spacing:-0.432000px;}
.ls1d{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.288000px;}
.ls40{letter-spacing:-0.252000px;}
.lsa{letter-spacing:-0.240000px;}
.lse{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.072000px;}
.ls9{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000600px;}
.ls3a{letter-spacing:0.072000px;}
.ls22{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.216000px;}
.ls23{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.360000px;}
.ls3d{letter-spacing:0.403200px;}
.ls5{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.576000px;}
.ls21{letter-spacing:0.648000px;}
.lsf{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.792000px;}
.ls6{letter-spacing:0.864000px;}
.ls34{letter-spacing:0.936000px;}
.ls33{letter-spacing:1.080000px;}
.ls47{letter-spacing:1.224000px;}
.ls46{letter-spacing:1.368000px;}
.ls19{letter-spacing:1.512000px;}
.ls31{letter-spacing:1.584000px;}
.ls32{letter-spacing:1.800000px;}
.ls37{letter-spacing:1.872000px;}
.ls2c{letter-spacing:2.304000px;}
.ls1b{letter-spacing:2.736000px;}
.ls2b{letter-spacing:2.952000px;}
.ls41{letter-spacing:3.600000px;}
.ls3b{letter-spacing:3.672000px;}
.ls2a{letter-spacing:3.816000px;}
.ls29{letter-spacing:4.104000px;}
.ls10{letter-spacing:4.260000px;}
.ls1a{letter-spacing:4.392000px;}
.ls2{letter-spacing:4.464000px;}
.ls1c{letter-spacing:4.608000px;}
.ls4e{letter-spacing:4.752000px;}
.ls18{letter-spacing:4.788000px;}
.ls12{letter-spacing:5.040000px;}
.ls44{letter-spacing:5.097600px;}
.ls39{letter-spacing:5.112000px;}
.ls49{letter-spacing:5.400000px;}
.ls17{letter-spacing:5.616000px;}
.ls15{letter-spacing:5.976000px;}
.ls1f{letter-spacing:6.192000px;}
.ls24{letter-spacing:6.336000px;}
.ls16{letter-spacing:6.480000px;}
.ls27{letter-spacing:6.624000px;}
.ls20{letter-spacing:6.696000px;}
.ls2d{letter-spacing:6.912000px;}
.ls45{letter-spacing:7.200000px;}
.ls38{letter-spacing:7.934400px;}
.ls0{letter-spacing:8.436000px;}
.ls4d{letter-spacing:8.460000px;}
.ls42{letter-spacing:8.712000px;}
.ls43{letter-spacing:8.820000px;}
.ls3{letter-spacing:10.650667px;}
.ls36{letter-spacing:10.728000px;}
.ls1{letter-spacing:10.740000px;}
.ls2e{letter-spacing:11.448000px;}
.ls3c{letter-spacing:13.795500px;}
.ls2f{letter-spacing:13.796100px;}
.ls13{letter-spacing:32.236200px;}
.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;}
}
.ws59{word-spacing:-25.320000px;}
.ws50{word-spacing:-24.120000px;}
.ws46{word-spacing:-23.760000px;}
.ws25{word-spacing:-23.400000px;}
.ws22{word-spacing:-20.232000px;}
.ws20{word-spacing:-18.576000px;}
.ws3f{word-spacing:-18.288000px;}
.ws4f{word-spacing:-18.144000px;}
.ws1d{word-spacing:-17.784000px;}
.ws45{word-spacing:-17.712000px;}
.ws43{word-spacing:-17.640000px;}
.ws24{word-spacing:-17.568000px;}
.ws23{word-spacing:-17.424000px;}
.ws36{word-spacing:-17.352000px;}
.ws42{word-spacing:-17.064000px;}
.ws1{word-spacing:-16.860000px;}
.ws41{word-spacing:-15.264000px;}
.ws5c{word-spacing:-14.820000px;}
.ws40{word-spacing:-14.565600px;}
.ws13{word-spacing:-14.162400px;}
.ws44{word-spacing:-13.910400px;}
.ws15{word-spacing:-11.856000px;}
.ws49{word-spacing:-10.728000px;}
.ws14{word-spacing:-10.031700px;}
.ws56{word-spacing:-9.504000px;}
.ws0{word-spacing:-8.496000px;}
.ws3a{word-spacing:-6.912000px;}
.ws2e{word-spacing:-6.696000px;}
.ws32{word-spacing:-6.624000px;}
.ws1b{word-spacing:-6.480000px;}
.ws34{word-spacing:-6.336000px;}
.ws2c{word-spacing:-6.192000px;}
.ws19{word-spacing:-5.976000px;}
.ws27{word-spacing:-5.616000px;}
.ws52{word-spacing:-5.400000px;}
.ws4d{word-spacing:-5.040000px;}
.ws5a{word-spacing:-4.752000px;}
.ws4e{word-spacing:-3.600000px;}
.ws58{word-spacing:-3.528000px;}
.ws39{word-spacing:-1.800000px;}
.ws38{word-spacing:-1.584000px;}
.ws57{word-spacing:-1.368000px;}
.ws3b{word-spacing:-1.080000px;}
.ws3c{word-spacing:-0.936000px;}
.wsb{word-spacing:-0.864000px;}
.ws10{word-spacing:-0.792000px;}
.ws11{word-spacing:-0.720000px;}
.ws31{word-spacing:-0.648000px;}
.wsc{word-spacing:-0.576000px;}
.wsf{word-spacing:-0.504000px;}
.ws6{word-spacing:-0.480000px;}
.wsa{word-spacing:-0.432000px;}
.ws8{word-spacing:-0.360000px;}
.ws2d{word-spacing:-0.288000px;}
.ws9{word-spacing:-0.216000px;}
.ws2f{word-spacing:-0.144000px;}
.ws21{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.wsd{word-spacing:0.072000px;}
.ws18{word-spacing:0.144000px;}
.wse{word-spacing:0.216000px;}
.ws7{word-spacing:0.240000px;}
.ws29{word-spacing:0.288000px;}
.ws26{word-spacing:0.360000px;}
.ws3d{word-spacing:0.432000px;}
.ws3e{word-spacing:0.504000px;}
.ws2b{word-spacing:0.576000px;}
.ws33{word-spacing:0.648000px;}
.ws4c{word-spacing:0.720000px;}
.ws2a{word-spacing:0.792000px;}
.ws54{word-spacing:0.936000px;}
.ws53{word-spacing:1.080000px;}
.ws5b{word-spacing:1.440000px;}
.ws5{word-spacing:1.800000px;}
.ws1a{word-spacing:2.400000px;}
.ws55{word-spacing:2.808000px;}
.ws30{word-spacing:3.456000px;}
.ws16{word-spacing:3.720000px;}
.ws35{word-spacing:4.032000px;}
.ws47{word-spacing:4.104000px;}
.ws2{word-spacing:4.200000px;}
.ws28{word-spacing:5.976000px;}
.ws51{word-spacing:6.840000px;}
.ws37{word-spacing:7.272000px;}
.ws48{word-spacing:7.416000px;}
.ws4b{word-spacing:7.632000px;}
.ws4a{word-spacing:8.280000px;}
.ws3{word-spacing:8.400000px;}
.ws1c{word-spacing:10.656000px;}
.ws17{word-spacing:75.180000px;}
.ws12{word-spacing:146.196000px;}
.ws1e{word-spacing:642.120000px;}
.ws1f{word-spacing:769.620000px;}
._0{margin-left:-948.820800px;}
._11{margin-left:-20.088000px;}
._d{margin-left:-13.944000px;}
._10{margin-left:-11.775000px;}
._21{margin-left:-10.773000px;}
._1c{margin-left:-9.535200px;}
._c{margin-left:-8.050800px;}
._1b{margin-left:-6.975000px;}
._1{margin-left:-5.964000px;}
._1d{margin-left:-4.914000px;}
._6{margin-left:-3.888000px;}
._8{margin-left:-2.496000px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._4{width:3.852000px;}
._7{width:5.047200px;}
._e{width:6.105600px;}
._5{width:7.584000px;}
._9{width:9.186000px;}
._a{width:10.588800px;}
._b{width:11.848800px;}
._f{width:13.110000px;}
._1f{width:14.407200px;}
._20{width:15.771600px;}
._1e{width:20.382600px;}
._12{width:31.646100px;}
._15{width:572.430000px;}
._13{width:574.050000px;}
._17{width:590.664000px;}
._16{width:658.980000px;}
._14{width:673.980000px;}
._18{width:791.436000px;}
._1a{width:828.840000px;}
._19{width:863.100000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:33.600000px;}
.fs6{font-size:35.700000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:426.053400px;}
.y0{bottom:0.000000px;}
.y21{bottom:55.500000px;}
.y22{bottom:58.500000px;}
.y1{bottom:72.000000px;}
.y6c{bottom:117.000000px;}
.yb6{bottom:117.078000px;}
.y149{bottom:117.222000px;}
.y4c{bottom:118.218000px;}
.y11e{bottom:118.974000px;}
.y20{bottom:120.362550px;}
.y47{bottom:121.207500px;}
.y90{bottom:132.000000px;}
.y11d{bottom:133.518000px;}
.y148{bottom:135.672000px;}
.y6b{bottom:136.207500px;}
.yb5{bottom:138.984000px;}
.y46{bottom:139.500000px;}
.y4b{bottom:140.412000px;}
.y1f{bottom:143.006550px;}
.y8f{bottom:147.000000px;}
.y11c{bottom:148.074000px;}
.y147{bottom:154.122000px;}
.y45{bottom:154.500000px;}
.ydb{bottom:158.707500px;}
.yb4{bottom:160.890000px;}
.yb9{bottom:161.082000px;}
.y8e{bottom:162.000000px;}
.y4a{bottom:162.606000px;}
.y11b{bottom:162.618000px;}
.y1e{bottom:165.650550px;}
.y146{bottom:172.572000px;}
.y44{bottom:173.707500px;}
.y8d{bottom:177.000000px;}
.y11a{bottom:177.162000px;}
.y6a{bottom:181.227150px;}
.yb3{bottom:182.796000px;}
.yb8{bottom:182.988000px;}
.yf9{bottom:184.500000px;}
.y49{bottom:184.800000px;}
.y1d{bottom:188.294550px;}
.y119{bottom:191.706000px;}
.y43{bottom:192.000000px;}
.yda{bottom:196.207500px;}
.y69{bottom:204.321150px;}
.yb2{bottom:204.702000px;}
.yb7{bottom:204.894000px;}
.y118{bottom:206.250000px;}
.y42{bottom:207.000000px;}
.y145{bottom:209.472000px;}
.y1c{bottom:210.938550px;}
.y8c{bottom:211.207500px;}
.y41{bottom:222.000000px;}
.yb1{bottom:226.608000px;}
.y117{bottom:227.178000px;}
.y68{bottom:227.415150px;}
.yf8{bottom:229.500000px;}
.y1b{bottom:233.582550px;}
.y8b{bottom:233.707500px;}
.yd9{bottom:239.160000px;}
.y40{bottom:241.207500px;}
.yb0{bottom:248.514000px;}
.y144{bottom:250.122000px;}
.y67{bottom:250.509150px;}
.yf7{bottom:252.000000px;}
.y8a{bottom:256.207500px;}
.y1a{bottom:256.226550px;}
.yd8{bottom:261.354000px;}
.y143{bottom:268.572000px;}
.yaf{bottom:270.420000px;}
.y116{bottom:271.278000px;}
.y66{bottom:273.603150px;}
.y89{bottom:274.500000px;}
.y19{bottom:278.870550px;}
.y3f{bottom:283.500000px;}
.yd7{bottom:283.548000px;}
.y115{bottom:285.822000px;}
.y142{bottom:287.022000px;}
.yae{bottom:292.326000px;}
.y88{bottom:293.707500px;}
.y65{bottom:296.697150px;}
.yf6{bottom:297.000000px;}
.y18{bottom:301.514550px;}
.y141{bottom:305.472000px;}
.yd6{bottom:305.742000px;}
.y3e{bottom:306.450000px;}
.y114{bottom:306.750000px;}
.yad{bottom:314.232000px;}
.y87{bottom:316.207500px;}
.yf5{bottom:319.500000px;}
.y64{bottom:319.791150px;}
.y140{bottom:323.922000px;}
.y17{bottom:324.158550px;}
.yd5{bottom:327.936000px;}
.y3d{bottom:329.400000px;}
.yac{bottom:336.138000px;}
.yf4{bottom:342.000000px;}
.y13f{bottom:342.372000px;}
.y16{bottom:346.802550px;}
.yd4{bottom:350.130000px;}
.y113{bottom:350.976000px;}
.y3c{bottom:352.350000px;}
.yab{bottom:358.044000px;}
.y86{bottom:360.708000px;}
.y13e{bottom:360.822000px;}
.yf3{bottom:364.500000px;}
.y63{bottom:368.865450px;}
.y15{bottom:369.446550px;}
.yd3{bottom:372.324000px;}
.y112{bottom:373.170000px;}
.y3b{bottom:375.300000px;}
.y13d{bottom:379.272000px;}
.yaa{bottom:379.950000px;}
.y85{bottom:383.352000px;}
.yf2{bottom:387.000000px;}
.y14{bottom:392.090550px;}
.yd2{bottom:394.518000px;}
.y111{bottom:395.364000px;}
.y62{bottom:395.850450px;}
.y13c{bottom:397.722000px;}
.y3a{bottom:398.250000px;}
.ya9{bottom:401.856000px;}
.y84{bottom:405.996000px;}
.yf1{bottom:409.500000px;}
.y13{bottom:414.734550px;}
.y13b{bottom:416.172000px;}
.yd1{bottom:416.712000px;}
.y110{bottom:417.558000px;}
.y39{bottom:421.200000px;}
.y61{bottom:422.835450px;}
.ya8{bottom:423.762000px;}
.y83{bottom:428.640000px;}
.yf0{bottom:432.000000px;}
.y13a{bottom:434.622000px;}
.y12{bottom:437.378550px;}
.yd0{bottom:438.906000px;}
.y10f{bottom:439.752000px;}
.y38{bottom:444.150000px;}
.ya7{bottom:445.668000px;}
.y60{bottom:449.820450px;}
.y82{bottom:451.284000px;}
.y139{bottom:453.072000px;}
.yef{bottom:454.500000px;}
.y11{bottom:460.022550px;}
.ycf{bottom:461.154000px;}
.y10e{bottom:461.946000px;}
.y37{bottom:467.100000px;}
.ya6{bottom:467.574000px;}
.y138{bottom:471.522000px;}
.y81{bottom:473.928000px;}
.yee{bottom:477.000000px;}
.y5f{bottom:478.740450px;}
.y10{bottom:482.666550px;}
.yce{bottom:483.348000px;}
.y10d{bottom:484.140000px;}
.ya5{bottom:489.480000px;}
.y137{bottom:489.972000px;}
.y36{bottom:490.050000px;}
.y80{bottom:496.572000px;}
.yed{bottom:499.500000px;}
.yf{bottom:505.310550px;}
.ycd{bottom:505.542000px;}
.y5e{bottom:505.725450px;}
.y10c{bottom:506.334000px;}
.y136{bottom:508.422000px;}
.ya4{bottom:511.386000px;}
.y35{bottom:513.000000px;}
.y7f{bottom:519.216000px;}
.yec{bottom:522.000000px;}
.y135{bottom:526.872000px;}
.ycc{bottom:527.736000px;}
.ye{bottom:527.954550px;}
.y10b{bottom:528.528000px;}
.y5d{bottom:532.710450px;}
.ya3{bottom:533.292000px;}
.y34{bottom:535.950000px;}
.y7e{bottom:541.860000px;}
.yeb{bottom:544.500000px;}
.y134{bottom:545.322000px;}
.ycb{bottom:549.930000px;}
.yd{bottom:550.598550px;}
.y10a{bottom:550.722000px;}
.ya2{bottom:555.198000px;}
.y33{bottom:558.900000px;}
.y5c{bottom:559.695450px;}
.y133{bottom:563.772000px;}
.y7d{bottom:564.504000px;}
.yea{bottom:567.000000px;}
.yca{bottom:572.124000px;}
.y109{bottom:572.916000px;}
.yc{bottom:573.242550px;}
.ya1{bottom:577.104000px;}
.y5b{bottom:578.445450px;}
.y32{bottom:581.850000px;}
.y132{bottom:582.222000px;}
.y7c{bottom:587.148000px;}
.ye9{bottom:589.500000px;}
.yc9{bottom:594.318000px;}
.y108{bottom:595.110000px;}
.yb{bottom:595.886550px;}
.ya0{bottom:599.010000px;}
.y131{bottom:600.672000px;}
.y31{bottom:604.800000px;}
.y7b{bottom:609.792000px;}
.ye8{bottom:612.000000px;}
.yc8{bottom:616.512000px;}
.y107{bottom:617.304000px;}
.y8{bottom:618.518400px;}
.ya{bottom:618.530550px;}
.y130{bottom:619.122000px;}
.y9f{bottom:620.916000px;}
.y5a{bottom:626.478000px;}
.y30{bottom:627.750000px;}
.y7a{bottom:632.436000px;}
.ye7{bottom:634.500000px;}
.y12f{bottom:637.572000px;}
.yc7{bottom:638.706000px;}
.y106{bottom:639.498000px;}
.y9{bottom:641.174550px;}
.y9e{bottom:642.822000px;}
.y59{bottom:649.572000px;}
.y2f{bottom:650.700000px;}
.y79{bottom:655.080000px;}
.y12e{bottom:656.022000px;}
.ye6{bottom:657.000000px;}
.yc6{bottom:660.936000px;}
.y105{bottom:661.692000px;}
.y9d{bottom:664.728000px;}
.y58{bottom:672.666000px;}
.y2e{bottom:673.650000px;}
.y12d{bottom:674.472000px;}
.y78{bottom:677.724000px;}
.ye5{bottom:679.500000px;}
.yc5{bottom:683.130000px;}
.y104{bottom:683.886000px;}
.y9c{bottom:686.634000px;}
.y57{bottom:695.760000px;}
.y2d{bottom:696.600000px;}
.y12c{bottom:699.300000px;}
.y77{bottom:700.368000px;}
.ye4{bottom:702.000000px;}
.yc4{bottom:705.324000px;}
.y103{bottom:706.080000px;}
.y9b{bottom:708.540000px;}
.y7{bottom:708.968550px;}
.y56{bottom:718.854000px;}
.y2c{bottom:719.550000px;}
.y76{bottom:723.012000px;}
.ye3{bottom:724.500000px;}
.yc3{bottom:727.518000px;}
.y6{bottom:727.718550px;}
.y102{bottom:728.274000px;}
.y9a{bottom:730.446000px;}
.y55{bottom:741.948000px;}
.y2b{bottom:742.500000px;}
.y12b{bottom:743.700000px;}
.y75{bottom:745.656000px;}
.ye2{bottom:747.000000px;}
.yc2{bottom:749.712000px;}
.y101{bottom:750.468000px;}
.y99{bottom:752.352000px;}
.y12a{bottom:758.400000px;}
.y54{bottom:765.042000px;}
.y2a{bottom:765.450000px;}
.y74{bottom:768.312000px;}
.ye1{bottom:769.500000px;}
.y5{bottom:769.854300px;}
.yc1{bottom:771.906000px;}
.y100{bottom:772.662000px;}
.y129{bottom:773.100000px;}
.y98{bottom:774.258000px;}
.y128{bottom:787.800000px;}
.y53{bottom:788.136000px;}
.y29{bottom:788.400000px;}
.y73{bottom:790.956000px;}
.ye0{bottom:792.000000px;}
.y4{bottom:792.354300px;}
.yc0{bottom:794.136000px;}
.yff{bottom:794.856000px;}
.y97{bottom:796.164000px;}
.y127{bottom:802.500000px;}
.y52{bottom:811.230000px;}
.y28{bottom:811.350000px;}
.y72{bottom:813.612000px;}
.ydf{bottom:814.500000px;}
.ybf{bottom:816.330000px;}
.yfe{bottom:817.050000px;}
.y126{bottom:817.200000px;}
.y96{bottom:818.070000px;}
.y125{bottom:831.900000px;}
.y27{bottom:834.300000px;}
.y51{bottom:834.324000px;}
.y71{bottom:836.256000px;}
.yde{bottom:837.000000px;}
.ybe{bottom:838.524000px;}
.yfd{bottom:839.250000px;}
.y95{bottom:839.976000px;}
.y124{bottom:846.600000px;}
.y26{bottom:857.250000px;}
.y50{bottom:857.418000px;}
.y70{bottom:858.906000px;}
.y3{bottom:859.500000px;}
.ybd{bottom:860.718000px;}
.y123{bottom:861.300000px;}
.y94{bottom:861.882000px;}
.y122{bottom:876.000000px;}
.y25{bottom:880.200000px;}
.y4f{bottom:880.512000px;}
.y6f{bottom:881.562000px;}
.ydd{bottom:882.000000px;}
.ybc{bottom:882.912000px;}
.yfc{bottom:883.350000px;}
.y93{bottom:883.788000px;}
.y2{bottom:889.500000px;}
.y121{bottom:890.700000px;}
.y24{bottom:903.150000px;}
.y4e{bottom:903.606000px;}
.y6e{bottom:904.206000px;}
.ydc{bottom:904.500000px;}
.ybb{bottom:905.106000px;}
.yfb{bottom:905.400000px;}
.y92{bottom:905.694000px;}
.y120{bottom:920.100000px;}
.y23{bottom:926.100000px;}
.y4d{bottom:926.700000px;}
.y6d{bottom:926.850000px;}
.y48{bottom:927.000000px;}
.yba{bottom:927.300000px;}
.yfa{bottom:927.450000px;}
.y91{bottom:927.600000px;}
.y11f{bottom:934.800000px;}
.h9{height:30.313623px;}
.h12{height:39.072000px;}
.h1{height:39.990234px;}
.ha{height:40.757812px;}
.hb{height:48.840000px;}
.h4{height:50.580000px;}
.h6{height:50.947266px;}
.h5{height:61.136719px;}
.hc{height:66.243703px;}
.h11{height:66.339703px;}
.h10{height:66.411703px;}
.hd{height:66.507703px;}
.he{height:66.531703px;}
.h8{height:66.555703px;}
.hf{height:67.323703px;}
.h2{height:79.980469px;}
.h3{height:101.894531px;}
.h7{height:298.237380px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x5{left:67.500000px;}
.x9{left:80.630850px;}
.x8{left:82.386000px;}
.x2{left:112.500000px;}
.x4{left:127.377900px;}
.x6{left:135.000000px;}
.x3{left:156.915900px;}
.xc{left:180.541950px;}
.x7{left:256.185000px;}
.xa{left:260.375850px;}
.xb{left:440.120850px;}
.x1{left:625.781250px;}
@media print{
.v4{vertical-align:-14.960000pt;}
.v2{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.v1{vertical-align:161.067200pt;}
.ls48{letter-spacing:-6.080000pt;}
.ls4c{letter-spacing:-2.496000pt;}
.ls3e{letter-spacing:-2.240000pt;}
.ls4a{letter-spacing:-0.960000pt;}
.ls4b{letter-spacing:-0.832000pt;}
.ls25{letter-spacing:-0.704000pt;}
.ls3f{letter-spacing:-0.640000pt;}
.ls28{letter-spacing:-0.576000pt;}
.ls26{letter-spacing:-0.512000pt;}
.ls35{letter-spacing:-0.448000pt;}
.ls30{letter-spacing:-0.384000pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.256000pt;}
.ls40{letter-spacing:-0.224000pt;}
.lsa{letter-spacing:-0.213333pt;}
.lse{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000533pt;}
.ls3a{letter-spacing:0.064000pt;}
.ls22{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls23{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3d{letter-spacing:0.358400pt;}
.ls5{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.512000pt;}
.ls21{letter-spacing:0.576000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.704000pt;}
.ls6{letter-spacing:0.768000pt;}
.ls34{letter-spacing:0.832000pt;}
.ls33{letter-spacing:0.960000pt;}
.ls47{letter-spacing:1.088000pt;}
.ls46{letter-spacing:1.216000pt;}
.ls19{letter-spacing:1.344000pt;}
.ls31{letter-spacing:1.408000pt;}
.ls32{letter-spacing:1.600000pt;}
.ls37{letter-spacing:1.664000pt;}
.ls2c{letter-spacing:2.048000pt;}
.ls1b{letter-spacing:2.432000pt;}
.ls2b{letter-spacing:2.624000pt;}
.ls41{letter-spacing:3.200000pt;}
.ls3b{letter-spacing:3.264000pt;}
.ls2a{letter-spacing:3.392000pt;}
.ls29{letter-spacing:3.648000pt;}
.ls10{letter-spacing:3.786667pt;}
.ls1a{letter-spacing:3.904000pt;}
.ls2{letter-spacing:3.968000pt;}
.ls1c{letter-spacing:4.096000pt;}
.ls4e{letter-spacing:4.224000pt;}
.ls18{letter-spacing:4.256000pt;}
.ls12{letter-spacing:4.480000pt;}
.ls44{letter-spacing:4.531200pt;}
.ls39{letter-spacing:4.544000pt;}
.ls49{letter-spacing:4.800000pt;}
.ls17{letter-spacing:4.992000pt;}
.ls15{letter-spacing:5.312000pt;}
.ls1f{letter-spacing:5.504000pt;}
.ls24{letter-spacing:5.632000pt;}
.ls16{letter-spacing:5.760000pt;}
.ls27{letter-spacing:5.888000pt;}
.ls20{letter-spacing:5.952000pt;}
.ls2d{letter-spacing:6.144000pt;}
.ls45{letter-spacing:6.400000pt;}
.ls38{letter-spacing:7.052800pt;}
.ls0{letter-spacing:7.498667pt;}
.ls4d{letter-spacing:7.520000pt;}
.ls42{letter-spacing:7.744000pt;}
.ls43{letter-spacing:7.840000pt;}
.ls3{letter-spacing:9.467260pt;}
.ls36{letter-spacing:9.536000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls2e{letter-spacing:10.176000pt;}
.ls3c{letter-spacing:12.262667pt;}
.ls2f{letter-spacing:12.263200pt;}
.ls13{letter-spacing:28.654400pt;}
.ws59{word-spacing:-22.506667pt;}
.ws50{word-spacing:-21.440000pt;}
.ws46{word-spacing:-21.120000pt;}
.ws25{word-spacing:-20.800000pt;}
.ws22{word-spacing:-17.984000pt;}
.ws20{word-spacing:-16.512000pt;}
.ws3f{word-spacing:-16.256000pt;}
.ws4f{word-spacing:-16.128000pt;}
.ws1d{word-spacing:-15.808000pt;}
.ws45{word-spacing:-15.744000pt;}
.ws43{word-spacing:-15.680000pt;}
.ws24{word-spacing:-15.616000pt;}
.ws23{word-spacing:-15.488000pt;}
.ws36{word-spacing:-15.424000pt;}
.ws42{word-spacing:-15.168000pt;}
.ws1{word-spacing:-14.986667pt;}
.ws41{word-spacing:-13.568000pt;}
.ws5c{word-spacing:-13.173333pt;}
.ws40{word-spacing:-12.947200pt;}
.ws13{word-spacing:-12.588800pt;}
.ws44{word-spacing:-12.364800pt;}
.ws15{word-spacing:-10.538667pt;}
.ws49{word-spacing:-9.536000pt;}
.ws14{word-spacing:-8.917067pt;}
.ws56{word-spacing:-8.448000pt;}
.ws0{word-spacing:-7.552000pt;}
.ws3a{word-spacing:-6.144000pt;}
.ws2e{word-spacing:-5.952000pt;}
.ws32{word-spacing:-5.888000pt;}
.ws1b{word-spacing:-5.760000pt;}
.ws34{word-spacing:-5.632000pt;}
.ws2c{word-spacing:-5.504000pt;}
.ws19{word-spacing:-5.312000pt;}
.ws27{word-spacing:-4.992000pt;}
.ws52{word-spacing:-4.800000pt;}
.ws4d{word-spacing:-4.480000pt;}
.ws5a{word-spacing:-4.224000pt;}
.ws4e{word-spacing:-3.200000pt;}
.ws58{word-spacing:-3.136000pt;}
.ws39{word-spacing:-1.600000pt;}
.ws38{word-spacing:-1.408000pt;}
.ws57{word-spacing:-1.216000pt;}
.ws3b{word-spacing:-0.960000pt;}
.ws3c{word-spacing:-0.832000pt;}
.wsb{word-spacing:-0.768000pt;}
.ws10{word-spacing:-0.704000pt;}
.ws11{word-spacing:-0.640000pt;}
.ws31{word-spacing:-0.576000pt;}
.wsc{word-spacing:-0.512000pt;}
.wsf{word-spacing:-0.448000pt;}
.ws6{word-spacing:-0.426667pt;}
.wsa{word-spacing:-0.384000pt;}
.ws8{word-spacing:-0.320000pt;}
.ws2d{word-spacing:-0.256000pt;}
.ws9{word-spacing:-0.192000pt;}
.ws2f{word-spacing:-0.128000pt;}
.ws21{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.wsd{word-spacing:0.064000pt;}
.ws18{word-spacing:0.128000pt;}
.wse{word-spacing:0.192000pt;}
.ws7{word-spacing:0.213333pt;}
.ws29{word-spacing:0.256000pt;}
.ws26{word-spacing:0.320000pt;}
.ws3d{word-spacing:0.384000pt;}
.ws3e{word-spacing:0.448000pt;}
.ws2b{word-spacing:0.512000pt;}
.ws33{word-spacing:0.576000pt;}
.ws4c{word-spacing:0.640000pt;}
.ws2a{word-spacing:0.704000pt;}
.ws54{word-spacing:0.832000pt;}
.ws53{word-spacing:0.960000pt;}
.ws5b{word-spacing:1.280000pt;}
.ws5{word-spacing:1.600000pt;}
.ws1a{word-spacing:2.133333pt;}
.ws55{word-spacing:2.496000pt;}
.ws30{word-spacing:3.072000pt;}
.ws16{word-spacing:3.306667pt;}
.ws35{word-spacing:3.584000pt;}
.ws47{word-spacing:3.648000pt;}
.ws2{word-spacing:3.733333pt;}
.ws28{word-spacing:5.312000pt;}
.ws51{word-spacing:6.080000pt;}
.ws37{word-spacing:6.464000pt;}
.ws48{word-spacing:6.592000pt;}
.ws4b{word-spacing:6.784000pt;}
.ws4a{word-spacing:7.360000pt;}
.ws3{word-spacing:7.466667pt;}
.ws1c{word-spacing:9.472000pt;}
.ws17{word-spacing:66.826667pt;}
.ws12{word-spacing:129.952000pt;}
.ws1e{word-spacing:570.773333pt;}
.ws1f{word-spacing:684.106667pt;}
._0{margin-left:-843.396267pt;}
._11{margin-left:-17.856000pt;}
._d{margin-left:-12.394667pt;}
._10{margin-left:-10.466667pt;}
._21{margin-left:-9.576000pt;}
._1c{margin-left:-8.475733pt;}
._c{margin-left:-7.156267pt;}
._1b{margin-left:-6.200000pt;}
._1{margin-left:-5.301333pt;}
._1d{margin-left:-4.368000pt;}
._6{margin-left:-3.456000pt;}
._8{margin-left:-2.218667pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._4{width:3.424000pt;}
._7{width:4.486400pt;}
._e{width:5.427200pt;}
._5{width:6.741333pt;}
._9{width:8.165333pt;}
._a{width:9.412267pt;}
._b{width:10.532267pt;}
._f{width:11.653333pt;}
._1f{width:12.806400pt;}
._20{width:14.019200pt;}
._1e{width:18.117867pt;}
._12{width:28.129867pt;}
._15{width:508.826667pt;}
._13{width:510.266667pt;}
._17{width:525.034667pt;}
._16{width:585.760000pt;}
._14{width:599.093333pt;}
._18{width:703.498667pt;}
._1a{width:736.746667pt;}
._19{width:767.200000pt;}
.fs7{font-size:29.866667pt;}
.fs6{font-size:31.733333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:378.714133pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:49.333333pt;}
.y22{bottom:52.000000pt;}
.y1{bottom:64.000000pt;}
.y6c{bottom:104.000000pt;}
.yb6{bottom:104.069333pt;}
.y149{bottom:104.197333pt;}
.y4c{bottom:105.082667pt;}
.y11e{bottom:105.754667pt;}
.y20{bottom:106.988933pt;}
.y47{bottom:107.740000pt;}
.y90{bottom:117.333333pt;}
.y11d{bottom:118.682667pt;}
.y148{bottom:120.597333pt;}
.y6b{bottom:121.073333pt;}
.yb5{bottom:123.541333pt;}
.y46{bottom:124.000000pt;}
.y4b{bottom:124.810667pt;}
.y1f{bottom:127.116933pt;}
.y8f{bottom:130.666667pt;}
.y11c{bottom:131.621333pt;}
.y147{bottom:136.997333pt;}
.y45{bottom:137.333333pt;}
.ydb{bottom:141.073333pt;}
.yb4{bottom:143.013333pt;}
.yb9{bottom:143.184000pt;}
.y8e{bottom:144.000000pt;}
.y4a{bottom:144.538667pt;}
.y11b{bottom:144.549333pt;}
.y1e{bottom:147.244933pt;}
.y146{bottom:153.397333pt;}
.y44{bottom:154.406667pt;}
.y8d{bottom:157.333333pt;}
.y11a{bottom:157.477333pt;}
.y6a{bottom:161.090800pt;}
.yb3{bottom:162.485333pt;}
.yb8{bottom:162.656000pt;}
.yf9{bottom:164.000000pt;}
.y49{bottom:164.266667pt;}
.y1d{bottom:167.372933pt;}
.y119{bottom:170.405333pt;}
.y43{bottom:170.666667pt;}
.yda{bottom:174.406667pt;}
.y69{bottom:181.618800pt;}
.yb2{bottom:181.957333pt;}
.yb7{bottom:182.128000pt;}
.y118{bottom:183.333333pt;}
.y42{bottom:184.000000pt;}
.y145{bottom:186.197333pt;}
.y1c{bottom:187.500933pt;}
.y8c{bottom:187.740000pt;}
.y41{bottom:197.333333pt;}
.yb1{bottom:201.429333pt;}
.y117{bottom:201.936000pt;}
.y68{bottom:202.146800pt;}
.yf8{bottom:204.000000pt;}
.y1b{bottom:207.628933pt;}
.y8b{bottom:207.740000pt;}
.yd9{bottom:212.586667pt;}
.y40{bottom:214.406667pt;}
.yb0{bottom:220.901333pt;}
.y144{bottom:222.330667pt;}
.y67{bottom:222.674800pt;}
.yf7{bottom:224.000000pt;}
.y8a{bottom:227.740000pt;}
.y1a{bottom:227.756933pt;}
.yd8{bottom:232.314667pt;}
.y143{bottom:238.730667pt;}
.yaf{bottom:240.373333pt;}
.y116{bottom:241.136000pt;}
.y66{bottom:243.202800pt;}
.y89{bottom:244.000000pt;}
.y19{bottom:247.884933pt;}
.y3f{bottom:252.000000pt;}
.yd7{bottom:252.042667pt;}
.y115{bottom:254.064000pt;}
.y142{bottom:255.130667pt;}
.yae{bottom:259.845333pt;}
.y88{bottom:261.073333pt;}
.y65{bottom:263.730800pt;}
.yf6{bottom:264.000000pt;}
.y18{bottom:268.012933pt;}
.y141{bottom:271.530667pt;}
.yd6{bottom:271.770667pt;}
.y3e{bottom:272.400000pt;}
.y114{bottom:272.666667pt;}
.yad{bottom:279.317333pt;}
.y87{bottom:281.073333pt;}
.yf5{bottom:284.000000pt;}
.y64{bottom:284.258800pt;}
.y140{bottom:287.930667pt;}
.y17{bottom:288.140933pt;}
.yd5{bottom:291.498667pt;}
.y3d{bottom:292.800000pt;}
.yac{bottom:298.789333pt;}
.yf4{bottom:304.000000pt;}
.y13f{bottom:304.330667pt;}
.y16{bottom:308.268933pt;}
.yd4{bottom:311.226667pt;}
.y113{bottom:311.978667pt;}
.y3c{bottom:313.200000pt;}
.yab{bottom:318.261333pt;}
.y86{bottom:320.629333pt;}
.y13e{bottom:320.730667pt;}
.yf3{bottom:324.000000pt;}
.y63{bottom:327.880400pt;}
.y15{bottom:328.396933pt;}
.yd3{bottom:330.954667pt;}
.y112{bottom:331.706667pt;}
.y3b{bottom:333.600000pt;}
.y13d{bottom:337.130667pt;}
.yaa{bottom:337.733333pt;}
.y85{bottom:340.757333pt;}
.yf2{bottom:344.000000pt;}
.y14{bottom:348.524933pt;}
.yd2{bottom:350.682667pt;}
.y111{bottom:351.434667pt;}
.y62{bottom:351.867067pt;}
.y13c{bottom:353.530667pt;}
.y3a{bottom:354.000000pt;}
.ya9{bottom:357.205333pt;}
.y84{bottom:360.885333pt;}
.yf1{bottom:364.000000pt;}
.y13{bottom:368.652933pt;}
.y13b{bottom:369.930667pt;}
.yd1{bottom:370.410667pt;}
.y110{bottom:371.162667pt;}
.y39{bottom:374.400000pt;}
.y61{bottom:375.853733pt;}
.ya8{bottom:376.677333pt;}
.y83{bottom:381.013333pt;}
.yf0{bottom:384.000000pt;}
.y13a{bottom:386.330667pt;}
.y12{bottom:388.780933pt;}
.yd0{bottom:390.138667pt;}
.y10f{bottom:390.890667pt;}
.y38{bottom:394.800000pt;}
.ya7{bottom:396.149333pt;}
.y60{bottom:399.840400pt;}
.y82{bottom:401.141333pt;}
.y139{bottom:402.730667pt;}
.yef{bottom:404.000000pt;}
.y11{bottom:408.908933pt;}
.ycf{bottom:409.914667pt;}
.y10e{bottom:410.618667pt;}
.y37{bottom:415.200000pt;}
.ya6{bottom:415.621333pt;}
.y138{bottom:419.130667pt;}
.y81{bottom:421.269333pt;}
.yee{bottom:424.000000pt;}
.y5f{bottom:425.547067pt;}
.y10{bottom:429.036933pt;}
.yce{bottom:429.642667pt;}
.y10d{bottom:430.346667pt;}
.ya5{bottom:435.093333pt;}
.y137{bottom:435.530667pt;}
.y36{bottom:435.600000pt;}
.y80{bottom:441.397333pt;}
.yed{bottom:444.000000pt;}
.yf{bottom:449.164933pt;}
.ycd{bottom:449.370667pt;}
.y5e{bottom:449.533733pt;}
.y10c{bottom:450.074667pt;}
.y136{bottom:451.930667pt;}
.ya4{bottom:454.565333pt;}
.y35{bottom:456.000000pt;}
.y7f{bottom:461.525333pt;}
.yec{bottom:464.000000pt;}
.y135{bottom:468.330667pt;}
.ycc{bottom:469.098667pt;}
.ye{bottom:469.292933pt;}
.y10b{bottom:469.802667pt;}
.y5d{bottom:473.520400pt;}
.ya3{bottom:474.037333pt;}
.y34{bottom:476.400000pt;}
.y7e{bottom:481.653333pt;}
.yeb{bottom:484.000000pt;}
.y134{bottom:484.730667pt;}
.ycb{bottom:488.826667pt;}
.yd{bottom:489.420933pt;}
.y10a{bottom:489.530667pt;}
.ya2{bottom:493.509333pt;}
.y33{bottom:496.800000pt;}
.y5c{bottom:497.507067pt;}
.y133{bottom:501.130667pt;}
.y7d{bottom:501.781333pt;}
.yea{bottom:504.000000pt;}
.yca{bottom:508.554667pt;}
.y109{bottom:509.258667pt;}
.yc{bottom:509.548933pt;}
.ya1{bottom:512.981333pt;}
.y5b{bottom:514.173733pt;}
.y32{bottom:517.200000pt;}
.y132{bottom:517.530667pt;}
.y7c{bottom:521.909333pt;}
.ye9{bottom:524.000000pt;}
.yc9{bottom:528.282667pt;}
.y108{bottom:528.986667pt;}
.yb{bottom:529.676933pt;}
.ya0{bottom:532.453333pt;}
.y131{bottom:533.930667pt;}
.y31{bottom:537.600000pt;}
.y7b{bottom:542.037333pt;}
.ye8{bottom:544.000000pt;}
.yc8{bottom:548.010667pt;}
.y107{bottom:548.714667pt;}
.y8{bottom:549.794133pt;}
.ya{bottom:549.804933pt;}
.y130{bottom:550.330667pt;}
.y9f{bottom:551.925333pt;}
.y5a{bottom:556.869333pt;}
.y30{bottom:558.000000pt;}
.y7a{bottom:562.165333pt;}
.ye7{bottom:564.000000pt;}
.y12f{bottom:566.730667pt;}
.yc7{bottom:567.738667pt;}
.y106{bottom:568.442667pt;}
.y9{bottom:569.932933pt;}
.y9e{bottom:571.397333pt;}
.y59{bottom:577.397333pt;}
.y2f{bottom:578.400000pt;}
.y79{bottom:582.293333pt;}
.y12e{bottom:583.130667pt;}
.ye6{bottom:584.000000pt;}
.yc6{bottom:587.498667pt;}
.y105{bottom:588.170667pt;}
.y9d{bottom:590.869333pt;}
.y58{bottom:597.925333pt;}
.y2e{bottom:598.800000pt;}
.y12d{bottom:599.530667pt;}
.y78{bottom:602.421333pt;}
.ye5{bottom:604.000000pt;}
.yc5{bottom:607.226667pt;}
.y104{bottom:607.898667pt;}
.y9c{bottom:610.341333pt;}
.y57{bottom:618.453333pt;}
.y2d{bottom:619.200000pt;}
.y12c{bottom:621.600000pt;}
.y77{bottom:622.549333pt;}
.ye4{bottom:624.000000pt;}
.yc4{bottom:626.954667pt;}
.y103{bottom:627.626667pt;}
.y9b{bottom:629.813333pt;}
.y7{bottom:630.194267pt;}
.y56{bottom:638.981333pt;}
.y2c{bottom:639.600000pt;}
.y76{bottom:642.677333pt;}
.ye3{bottom:644.000000pt;}
.yc3{bottom:646.682667pt;}
.y6{bottom:646.860933pt;}
.y102{bottom:647.354667pt;}
.y9a{bottom:649.285333pt;}
.y55{bottom:659.509333pt;}
.y2b{bottom:660.000000pt;}
.y12b{bottom:661.066667pt;}
.y75{bottom:662.805333pt;}
.ye2{bottom:664.000000pt;}
.yc2{bottom:666.410667pt;}
.y101{bottom:667.082667pt;}
.y99{bottom:668.757333pt;}
.y12a{bottom:674.133333pt;}
.y54{bottom:680.037333pt;}
.y2a{bottom:680.400000pt;}
.y74{bottom:682.944000pt;}
.ye1{bottom:684.000000pt;}
.y5{bottom:684.314933pt;}
.yc1{bottom:686.138667pt;}
.y100{bottom:686.810667pt;}
.y129{bottom:687.200000pt;}
.y98{bottom:688.229333pt;}
.y128{bottom:700.266667pt;}
.y53{bottom:700.565333pt;}
.y29{bottom:700.800000pt;}
.y73{bottom:703.072000pt;}
.ye0{bottom:704.000000pt;}
.y4{bottom:704.314933pt;}
.yc0{bottom:705.898667pt;}
.yff{bottom:706.538667pt;}
.y97{bottom:707.701333pt;}
.y127{bottom:713.333333pt;}
.y52{bottom:721.093333pt;}
.y28{bottom:721.200000pt;}
.y72{bottom:723.210667pt;}
.ydf{bottom:724.000000pt;}
.ybf{bottom:725.626667pt;}
.yfe{bottom:726.266667pt;}
.y126{bottom:726.400000pt;}
.y96{bottom:727.173333pt;}
.y125{bottom:739.466667pt;}
.y27{bottom:741.600000pt;}
.y51{bottom:741.621333pt;}
.y71{bottom:743.338667pt;}
.yde{bottom:744.000000pt;}
.ybe{bottom:745.354667pt;}
.yfd{bottom:746.000000pt;}
.y95{bottom:746.645333pt;}
.y124{bottom:752.533333pt;}
.y26{bottom:762.000000pt;}
.y50{bottom:762.149333pt;}
.y70{bottom:763.472000pt;}
.y3{bottom:764.000000pt;}
.ybd{bottom:765.082667pt;}
.y123{bottom:765.600000pt;}
.y94{bottom:766.117333pt;}
.y122{bottom:778.666667pt;}
.y25{bottom:782.400000pt;}
.y4f{bottom:782.677333pt;}
.y6f{bottom:783.610667pt;}
.ydd{bottom:784.000000pt;}
.ybc{bottom:784.810667pt;}
.yfc{bottom:785.200000pt;}
.y93{bottom:785.589333pt;}
.y2{bottom:790.666667pt;}
.y121{bottom:791.733333pt;}
.y24{bottom:802.800000pt;}
.y4e{bottom:803.205333pt;}
.y6e{bottom:803.738667pt;}
.ydc{bottom:804.000000pt;}
.ybb{bottom:804.538667pt;}
.yfb{bottom:804.800000pt;}
.y92{bottom:805.061333pt;}
.y120{bottom:817.866667pt;}
.y23{bottom:823.200000pt;}
.y4d{bottom:823.733333pt;}
.y6d{bottom:823.866667pt;}
.y48{bottom:824.000000pt;}
.yba{bottom:824.266667pt;}
.yfa{bottom:824.400000pt;}
.y91{bottom:824.533333pt;}
.y11f{bottom:830.933333pt;}
.h9{height:26.945443pt;}
.h12{height:34.730667pt;}
.h1{height:35.546875pt;}
.ha{height:36.229167pt;}
.hb{height:43.413333pt;}
.h4{height:44.960000pt;}
.h6{height:45.286458pt;}
.h5{height:54.343750pt;}
.hc{height:58.883292pt;}
.h11{height:58.968625pt;}
.h10{height:59.032625pt;}
.hd{height:59.117958pt;}
.he{height:59.139292pt;}
.h8{height:59.160625pt;}
.hf{height:59.843292pt;}
.h2{height:71.093750pt;}
.h3{height:90.572917pt;}
.h7{height:265.099893pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x5{left:60.000000pt;}
.x9{left:71.671867pt;}
.x8{left:73.232000pt;}
.x2{left:100.000000pt;}
.x4{left:113.224800pt;}
.x6{left:120.000000pt;}
.x3{left:139.480800pt;}
.xc{left:160.481733pt;}
.x7{left:227.720000pt;}
.xa{left:231.445200pt;}
.xb{left:391.218533pt;}
.x1{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; }
  