
    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_6db482d64a9052e14b6b79c6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_ad57d11b6ab8b94badc901fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.075000;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_a3514532a7f96efe71ba3688.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_131a835fb400c98e8bf898c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.994000;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_eb2896b1347b28fcb0e8eb03.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e2749a150af3be3358f04b33.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_63557c2deac2febb43f4c05e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.075000;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_327bb4b7b532b4534ddf0506.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_5f44880f04246419f29d001e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093262;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_49d7dc4d3d16ee2d4f4f232d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_fa2262f4caa01e3085f8e387.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b9702b09e0b34877651d2cfd.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ebf13faa5025bb83123abbf8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.983398;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_40dd49ac582c19a961defe3a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.983398;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_d4f9922625dabee9776f75a5.woff2')format("woff");}.fff{font-family:fff;line-height:1.172852;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_01ce8cbd34e42b9a86a59126.woff2')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_c06ff2b62c5fd08b2b7ac342.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.981934;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_8bf23016550af06d3f6f0096.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.981934;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_f99908f3ac538eab5b1b4622.woff2')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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-204.480000px;}
.v2{vertical-align:-5.760000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.ls3{letter-spacing:-2.760420px;}
.ls2c{letter-spacing:-1.440000px;}
.ls15{letter-spacing:-1.368000px;}
.ls18{letter-spacing:-0.720000px;}
.ls30{letter-spacing:-0.648000px;}
.ls14{letter-spacing:-0.576000px;}
.ls25{letter-spacing:-0.504000px;}
.ls22{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.274200px;}
.ls31{letter-spacing:-0.240600px;}
.ls21{letter-spacing:-0.216000px;}
.ls3c{letter-spacing:-0.172200px;}
.ls12{letter-spacing:-0.144000px;}
.ls2d{letter-spacing:-0.109200px;}
.ls3a{letter-spacing:-0.107400px;}
.ls5{letter-spacing:-0.097800px;}
.ls2b{letter-spacing:-0.072000px;}
.ls2a{letter-spacing:-0.069600px;}
.ls26{letter-spacing:-0.058320px;}
.ls2{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.022320px;}
.ls34{letter-spacing:0.043920px;}
.ls3e{letter-spacing:0.060600px;}
.ls7{letter-spacing:0.063600px;}
.ls11{letter-spacing:0.072000px;}
.ls33{letter-spacing:0.100800px;}
.ls38{letter-spacing:0.140400px;}
.ls10{letter-spacing:0.144000px;}
.ls3d{letter-spacing:0.179280px;}
.ls36{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.256200px;}
.ls1a{letter-spacing:0.288000px;}
.ls37{letter-spacing:0.306000px;}
.ls4{letter-spacing:0.360000px;}
.ls32{letter-spacing:0.393600px;}
.ls3b{letter-spacing:0.433440px;}
.ls27{letter-spacing:0.504000px;}
.ls39{letter-spacing:0.648000px;}
.ls35{letter-spacing:0.660000px;}
.ls28{letter-spacing:5.328000px;}
.ls9{letter-spacing:5.345280px;}
.ls2f{letter-spacing:10.944000px;}
.ls1f{letter-spacing:13.104000px;}
.ls8{letter-spacing:15.425280px;}
.ls1e{letter-spacing:25.344000px;}
.ls1b{letter-spacing:26.784000px;}
.ls19{letter-spacing:28.224000px;}
.ls29{letter-spacing:29.664000px;}
.ls1c{letter-spacing:30.384000px;}
.ls1d{letter-spacing:31.104000px;}
.ls17{letter-spacing:31.824000px;}
.lse{letter-spacing:32.544000px;}
.ls23{letter-spacing:33.264000px;}
.lsc{letter-spacing:38.465280px;}
.ls2e{letter-spacing:48.384000px;}
.ls13{letter-spacing:54.864000px;}
.lsa{letter-spacing:63.665280px;}
.ls16{letter-spacing:94.464000px;}
.lsb{letter-spacing:197.429760px;}
.ls1{letter-spacing:846.300000px;}
.ls0{letter-spacing:1412.508000px;}
.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;}
}
.wsd{word-spacing:-72.000000px;}
.ws1{word-spacing:-63.360000px;}
.ws3{word-spacing:-16.632000px;}
.ws8{word-spacing:-16.488000px;}
.wsa{word-spacing:-16.416000px;}
.wsc{word-spacing:-16.344000px;}
.wsb{word-spacing:-16.272000px;}
.ws1a{word-spacing:-16.128000px;}
.wsf{word-spacing:-16.056000px;}
.wse{word-spacing:-15.984000px;}
.ws13{word-spacing:-15.912000px;}
.ws17{word-spacing:-15.768000px;}
.ws16{word-spacing:-15.696000px;}
.ws14{word-spacing:-15.552000px;}
.ws6{word-spacing:-15.226440px;}
.ws7{word-spacing:-14.970240px;}
.ws15{word-spacing:-14.760000px;}
.ws10{word-spacing:-14.688000px;}
.ws19{word-spacing:-14.328000px;}
.ws20{word-spacing:-14.165760px;}
.ws23{word-spacing:-14.153760px;}
.ws1e{word-spacing:-14.112000px;}
.ws1d{word-spacing:-13.899360px;}
.ws22{word-spacing:-13.811760px;}
.ws26{word-spacing:-13.685040px;}
.ws1f{word-spacing:-13.549680px;}
.ws11{word-spacing:-13.505760px;}
.ws12{word-spacing:-13.447440px;}
.ws18{word-spacing:-13.436160px;}
.ws24{word-spacing:-13.398360px;}
.ws1b{word-spacing:-13.396560px;}
.ws25{word-spacing:-13.333560px;}
.ws1c{word-spacing:-13.265160px;}
.ws2{word-spacing:-12.672000px;}
.ws4{word-spacing:-11.854200px;}
.ws5{word-spacing:-11.677800px;}
.ws9{word-spacing:-10.902240px;}
.ws21{word-spacing:-8.786880px;}
.ws0{word-spacing:0.000000px;}
._25{margin-left:-206.440800px;}
._27{margin-left:-197.893440px;}
._26{margin-left:-196.873440px;}
._1d{margin-left:-186.959520px;}
._32{margin-left:-118.085040px;}
._2b{margin-left:-112.407840px;}
._2e{margin-left:-78.545760px;}
._17{margin-left:-13.874400px;}
._28{margin-left:-10.128960px;}
._c{margin-left:-4.433280px;}
._b{margin-left:-3.312000px;}
._6{margin-left:-2.070720px;}
._2{margin-left:-1.013760px;}
._0{width:1.342080px;}
._a{width:2.583840px;}
._3e{width:4.176000px;}
._3f{width:5.256000px;}
._44{width:7.128000px;}
._8{width:9.037920px;}
._7{width:10.296000px;}
._9{width:12.270720px;}
._41{width:13.824000px;}
._40{width:14.976000px;}
._54{width:16.186320px;}
._16{width:17.422560px;}
._45{width:18.432000px;}
._43{width:19.596000px;}
._2f{width:20.901600px;}
._42{width:22.043520px;}
._4a{width:23.464800px;}
._1c{width:25.197600px;}
._29{width:26.789760px;}
._48{width:28.152000px;}
._51{width:29.646720px;}
._50{width:31.032000px;}
._52{width:32.688000px;}
._46{width:34.272000px;}
._47{width:35.588640px;}
._49{width:36.915840px;}
._31{width:38.026080px;}
._2c{width:39.093600px;}
._53{width:40.680000px;}
._4d{width:42.048000px;}
._4e{width:43.170720px;}
._4c{width:44.856000px;}
._4b{width:45.864000px;}
._12{width:48.073680px;}
._4{width:49.339200px;}
._3b{width:51.567120px;}
._19{width:57.235680px;}
._57{width:59.162400px;}
._56{width:61.074720px;}
._36{width:62.573760px;}
._15{width:64.899360px;}
._1b{width:68.263200px;}
._3{width:69.297600px;}
._58{width:78.616800px;}
._55{width:79.719840px;}
._3c{width:81.408240px;}
._3a{width:89.327520px;}
._d{width:91.189200px;}
._39{width:95.962080px;}
._21{width:101.647200px;}
._1e{width:109.035360px;}
._59{width:111.751200px;}
._f{width:115.842000px;}
._33{width:122.057760px;}
._20{width:123.186720px;}
._30{width:127.283040px;}
._37{width:136.699680px;}
._2a{width:139.150560px;}
._22{width:145.476000px;}
._24{width:149.394720px;}
._38{width:150.411360px;}
._14{width:152.284800px;}
._1a{width:155.604960px;}
._1f{width:157.701600px;}
._23{width:161.555520px;}
._18{width:164.112480px;}
._2d{width:172.127520px;}
._34{width:182.460960px;}
._35{width:184.516320px;}
._10{width:191.929680px;}
._11{width:195.451920px;}
._e{width:197.429760px;}
._13{width:198.556800px;}
._5{width:253.168320px;}
._1{width:270.120000px;}
._4f{width:848.028000px;}
._3d{width:849.185760px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc3{color:rgb(6,6,37);}
.fc2{color:rgb(62,116,144);}
.fc1{color:rgb(73,126,202);}
.fc6{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880000px;}
.fs4{font-size:48.000000px;}
.fs8{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs7{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:144.000000px;}
.fs1{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y36{bottom:3.060000px;}
.y23{bottom:3.240000px;}
.y33{bottom:4.860000px;}
.y2c{bottom:6.840000px;}
.y2a{bottom:9.540000px;}
.y22{bottom:22.140000px;}
.y32{bottom:26.820000px;}
.y29{bottom:28.800000px;}
.y21{bottom:41.040000px;}
.y28{bottom:48.105000px;}
.y31{bottom:48.780000px;}
.y3{bottom:57.996000px;}
.y20{bottom:59.970000px;}
.y27{bottom:66.465000px;}
.y30{bottom:70.740000px;}
.y1b{bottom:78.696000px;}
.y1f{bottom:78.870000px;}
.y2{bottom:79.956000px;}
.y2f{bottom:92.700000px;}
.y15a{bottom:101.376000px;}
.yc4{bottom:104.076000px;}
.ybf{bottom:105.336000px;}
.y98{bottom:105.876000px;}
.yfb{bottom:110.736000px;}
.y2e{bottom:114.660000px;}
.y159{bottom:119.556000px;}
.y78{bottom:122.076000px;}
.yd4{bottom:124.956000px;}
.yc3{bottom:125.136000px;}
.y44{bottom:130.716000px;}
.y110{bottom:130.896000px;}
.ybc{bottom:132.156000px;}
.y9c{bottom:134.856000px;}
.ybe{bottom:135.396000px;}
.ye5{bottom:135.936000px;}
.y158{bottom:137.916000px;}
.y97{bottom:138.816000px;}
.y77{bottom:142.236000px;}
.yc2{bottom:143.316000px;}
.yfa{bottom:143.676000px;}
.y122{bottom:145.296000px;}
.y1d{bottom:145.305000px;}
.y43{bottom:155.010000px;}
.y157{bottom:156.270000px;}
.yd3{bottom:157.890000px;}
.ybd{bottom:160.950000px;}
.y76{bottom:162.210000px;}
.y121{bottom:163.650000px;}
.y10f{bottom:163.830000px;}
.ybb{bottom:165.090000px;}
.y9b{bottom:168.870000px;}
.y96{bottom:171.750000px;}
.yc1{bottom:173.550000px;}
.y156{bottom:174.630000px;}
.yf9{bottom:176.610000px;}
.y120{bottom:181.830000px;}
.y75{bottom:182.370000px;}
.y42{bottom:187.410000px;}
.yd2{bottom:190.830000px;}
.y155{bottom:192.810000px;}
.y10e{bottom:196.770000px;}
.yba{bottom:198.030000px;}
.yc0{bottom:198.390000px;}
.y11f{bottom:200.190000px;}
.ye4{bottom:201.810000px;}
.y74{bottom:202.530000px;}
.y9a{bottom:202.710000px;}
.y95{bottom:204.690000px;}
.yf8{bottom:209.550000px;}
.y154{bottom:211.170000px;}
.y41{bottom:216.930000px;}
.y11e{bottom:218.550000px;}
.y73{bottom:222.690000px;}
.yd1{bottom:223.770000px;}
.y153{bottom:229.530000px;}
.y10d{bottom:229.710000px;}
.yb9{bottom:230.970000px;}
.ye3{bottom:234.930000px;}
.y99{bottom:236.730000px;}
.y94{bottom:237.810000px;}
.y40{bottom:242.130000px;}
.yf7{bottom:242.490000px;}
.y72{bottom:242.850000px;}
.y152{bottom:247.890000px;}
.y11d{bottom:255.090000px;}
.yd0{bottom:256.710000px;}
.y19{bottom:258.330000px;}
.y10c{bottom:262.650000px;}
.y71{bottom:263.010000px;}
.yb8{bottom:263.910000px;}
.y151{bottom:266.070000px;}
.ye2{bottom:267.870000px;}
.y93{bottom:270.750000px;}
.y11c{bottom:273.495000px;}
.y3f{bottom:273.675000px;}
.yf6{bottom:275.475000px;}
.y18{bottom:279.975000px;}
.y70{bottom:283.215000px;}
.y150{bottom:284.475000px;}
.ycf{bottom:289.875000px;}
.y10b{bottom:295.635000px;}
.yb7{bottom:297.075000px;}
.ye1{bottom:300.855000px;}
.y17{bottom:301.575000px;}
.y14f{bottom:302.835000px;}
.y6f{bottom:303.375000px;}
.y92{bottom:303.735000px;}
.y3e{bottom:305.175000px;}
.yf5{bottom:308.415000px;}
.y14e{bottom:321.015000px;}
.yce{bottom:322.815000px;}
.y16{bottom:323.175000px;}
.y6e{bottom:323.535000px;}
.y10a{bottom:328.575000px;}
.yb6{bottom:330.015000px;}
.ye0{bottom:333.795000px;}
.y91{bottom:336.675000px;}
.y14d{bottom:339.375000px;}
.y3d{bottom:341.175000px;}
.yf4{bottom:341.355000px;}
.y6d{bottom:343.515000px;}
.y15{bottom:344.775000px;}
.ycd{bottom:355.755000px;}
.y14c{bottom:357.735000px;}
.y109{bottom:361.695000px;}
.yb5{bottom:362.955000px;}
.y6c{bottom:363.675000px;}
.y14{bottom:366.375000px;}
.ydf{bottom:366.735000px;}
.y90{bottom:369.615000px;}
.y3c{bottom:372.675000px;}
.y11b{bottom:374.295000px;}
.yf3{bottom:374.475000px;}
.y15b{bottom:375.915000px;}
.y14b{bottom:376.095000px;}
.y6b{bottom:383.835000px;}
.y13{bottom:387.975000px;}
.ycc{bottom:388.695000px;}
.y14a{bottom:394.275000px;}
.y108{bottom:394.635000px;}
.yb4{bottom:395.895000px;}
.yde{bottom:399.675000px;}
.y8f{bottom:402.555000px;}
.y6a{bottom:403.995000px;}
.y3b{bottom:404.175000px;}
.y11a{bottom:407.235000px;}
.yf2{bottom:407.415000px;}
.y12{bottom:409.575000px;}
.y149{bottom:412.635000px;}
.ycb{bottom:421.635000px;}
.y69{bottom:424.155000px;}
.y107{bottom:427.575000px;}
.yb3{bottom:428.655000px;}
.y148{bottom:430.995000px;}
.y11{bottom:431.175000px;}
.ydd{bottom:432.615000px;}
.y8e{bottom:435.495000px;}
.y3a{bottom:435.675000px;}
.yf1{bottom:440.355000px;}
.y68{bottom:444.315000px;}
.y147{bottom:449.175000px;}
.yca{bottom:454.575000px;}
.y10{bottom:456.375000px;}
.y106{bottom:460.515000px;}
.yb2{bottom:462.675000px;}
.y67{bottom:464.475000px;}
.ydc{bottom:465.555000px;}
.y39{bottom:467.175000px;}
.y146{bottom:467.535000px;}
.y8d{bottom:468.435000px;}
.yf0{bottom:473.295000px;}
.y66{bottom:484.635000px;}
.y145{bottom:485.895000px;}
.yc9{bottom:487.515000px;}
.y105{bottom:493.455000px;}
.yb1{bottom:495.615000px;}
.ydb{bottom:498.495000px;}
.y38{bottom:499.575000px;}
.y8c{bottom:501.375000px;}
.y144{bottom:504.255000px;}
.yf{bottom:504.435000px;}
.y65{bottom:504.795000px;}
.yef{bottom:506.235000px;}
.yc8{bottom:520.455000px;}
.y143{bottom:522.435000px;}
.y64{bottom:524.955000px;}
.y104{bottom:526.395000px;}
.yb0{bottom:529.635000px;}
.y37{bottom:531.075000px;}
.yda{bottom:531.615000px;}
.y8b{bottom:534.315000px;}
.yee{bottom:539.175000px;}
.y142{bottom:540.795000px;}
.y63{bottom:544.935000px;}
.yc7{bottom:550.695000px;}
.ye{bottom:555.945000px;}
.y141{bottom:559.185000px;}
.y103{bottom:559.365000px;}
.yaf{bottom:562.425000px;}
.y35{bottom:562.605000px;}
.yd9{bottom:564.585000px;}
.y62{bottom:565.125000px;}
.y8a{bottom:567.465000px;}
.yed{bottom:572.145000px;}
.y140{bottom:577.545000px;}
.yc6{bottom:578.085000px;}
.y61{bottom:585.285000px;}
.y102{bottom:592.305000px;}
.y34{bottom:594.105000px;}
.y13f{bottom:595.725000px;}
.yae{bottom:596.445000px;}
.yd8{bottom:597.525000px;}
.y89{bottom:600.405000px;}
.yc5{bottom:602.745000px;}
.yec{bottom:605.085000px;}
.y60{bottom:605.445000px;}
.yd{bottom:607.425000px;}
.y101{bottom:613.365000px;}
.y13e{bottom:614.085000px;}
.y5f{bottom:625.605000px;}
.y2d{bottom:626.505000px;}
.yd7{bottom:630.285000px;}
.yad{bottom:630.465000px;}
.y100{bottom:631.725000px;}
.y13d{bottom:632.445000px;}
.y88{bottom:633.345000px;}
.yeb{bottom:638.025000px;}
.y5e{bottom:645.765000px;}
.yff{bottom:650.085000px;}
.y13c{bottom:650.625000px;}
.yc{bottom:658.905000px;}
.yac{bottom:663.225000px;}
.yd6{bottom:664.305000px;}
.y5d{bottom:665.925000px;}
.y87{bottom:666.285000px;}
.yfe{bottom:668.445000px;}
.y13b{bottom:668.985000px;}
.y119{bottom:670.965000px;}
.yea{bottom:671.145000px;}
.y5c{bottom:686.085000px;}
.yfd{bottom:686.625000px;}
.y13a{bottom:687.345000px;}
.ye9{bottom:692.205000px;}
.yab{bottom:697.245000px;}
.yd5{bottom:698.145000px;}
.y86{bottom:699.225000px;}
.y118{bottom:703.905000px;}
.y139{bottom:705.705000px;}
.y5b{bottom:706.245000px;}
.ye8{bottom:710.385000px;}
.yb{bottom:710.565000px;}
.yfc{bottom:712.005000px;}
.y138{bottom:723.885000px;}
.y5a{bottom:726.405000px;}
.ye7{bottom:728.745000px;}
.yaa{bottom:730.185000px;}
.y85{bottom:732.165000px;}
.y117{bottom:737.025000px;}
.y137{bottom:742.245000px;}
.y59{bottom:746.385000px;}
.ye6{bottom:754.125000px;}
.y136{bottom:760.605000px;}
.ya9{bottom:763.125000px;}
.y84{bottom:765.105000px;}
.y58{bottom:766.545000px;}
.y116{bottom:769.965000px;}
.y2b{bottom:771.765000px;}
.y135{bottom:778.965000px;}
.y57{bottom:786.705000px;}
.ya8{bottom:797.145000px;}
.y83{bottom:798.045000px;}
.y115{bottom:802.905000px;}
.y56{bottom:806.865000px;}
.y1c{bottom:807.765000px;}
.ya{bottom:813.165000px;}
.y134{bottom:815.505000px;}
.y114{bottom:823.965000px;}
.y55{bottom:827.025000px;}
.ya7{bottom:830.085000px;}
.y82{bottom:830.985000px;}
.y133{bottom:833.865000px;}
.y113{bottom:842.190000px;}
.y54{bottom:847.230000px;}
.y132{bottom:852.090000px;}
.ya6{bottom:863.070000px;}
.y81{bottom:864.150000px;}
.y9{bottom:867.030000px;}
.y53{bottom:867.390000px;}
.y131{bottom:870.450000px;}
.y112{bottom:872.430000px;}
.y52{bottom:887.550000px;}
.y130{bottom:888.810000px;}
.ya5{bottom:896.010000px;}
.y80{bottom:897.090000px;}
.y111{bottom:897.270000px;}
.y26{bottom:903.390000px;}
.y12f{bottom:907.170000px;}
.y51{bottom:907.710000px;}
.y8{bottom:920.850000px;}
.y12e{bottom:925.350000px;}
.y50{bottom:927.870000px;}
.ya4{bottom:928.950000px;}
.y7f{bottom:930.030000px;}
.y12d{bottom:943.710000px;}
.y4f{bottom:947.850000px;}
.y25{bottom:954.690000px;}
.ya3{bottom:962.070000px;}
.y7e{bottom:962.970000px;}
.y4e{bottom:968.010000px;}
.y7{bottom:974.490000px;}
.y12c{bottom:980.430000px;}
.y4d{bottom:988.170000px;}
.ya2{bottom:995.010000px;}
.y7d{bottom:995.910000px;}
.y12b{bottom:998.610000px;}
.y4c{bottom:1008.330000px;}
.y12a{bottom:1016.970000px;}
.y24{bottom:1024.890000px;}
.ya1{bottom:1027.950000px;}
.y6{bottom:1028.310000px;}
.y4b{bottom:1028.490000px;}
.y7c{bottom:1028.850000px;}
.y129{bottom:1035.330000px;}
.y4a{bottom:1048.650000px;}
.y128{bottom:1053.510000px;}
.ya0{bottom:1060.890000px;}
.y7b{bottom:1061.790000px;}
.y49{bottom:1068.810000px;}
.y127{bottom:1071.870000px;}
.y1e{bottom:1076.190000px;}
.y5{bottom:1082.130000px;}
.y48{bottom:1088.970000px;}
.y126{bottom:1090.230000px;}
.y9f{bottom:1093.830000px;}
.y7a{bottom:1094.730000px;}
.y125{bottom:1108.590000px;}
.y47{bottom:1109.130000px;}
.y9e{bottom:1126.800000px;}
.y79{bottom:1127.700000px;}
.y46{bottom:1129.140000px;}
.y4{bottom:1135.980000px;}
.y124{bottom:1145.160000px;}
.y9d{bottom:1159.740000px;}
.y45{bottom:1160.820000px;}
.y123{bottom:1163.520000px;}
.y1a{bottom:1202.880000px;}
.y1{bottom:1203.300000px;}
.h14{height:18.000000px;}
.h13{height:18.900000px;}
.h11{height:22.500000px;}
.hc{height:37.800000px;}
.h8{height:50.062500px;}
.he{height:50.371200px;}
.h15{height:51.811920px;}
.ha{height:54.933120px;}
.hd{height:56.700000px;}
.h16{height:57.240000px;}
.h1d{height:57.867188px;}
.h1e{height:57.937500px;}
.h20{height:59.439023px;}
.h10{height:60.328125px;}
.h6{height:62.424000px;}
.h1a{height:65.884219px;}
.h1b{height:67.824844px;}
.h19{height:68.084282px;}
.h18{height:68.956875px;}
.h2{height:71.613281px;}
.h1f{height:71.740898px;}
.h21{height:71.824219px;}
.h17{height:73.722656px;}
.h7{height:74.004654px;}
.h1c{height:74.953125px;}
.hf{height:82.116000px;}
.hb{height:94.536000px;}
.h5{height:114.480000px;}
.h12{height:131.760000px;}
.h3{height:145.447920px;}
.h4{height:174.968437px;}
.h9{height:362.955000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:44.820000px;}
.w9{width:101.016000px;}
.w6{width:117.180000px;}
.w5{width:145.476000px;}
.wf{width:147.996000px;}
.w7{width:154.110000px;}
.we{width:158.430000px;}
.wc{width:168.510000px;}
.w3{width:302.475000px;}
.w10{width:413.355000px;}
.w4{width:418.215000px;}
.wd{width:552.165000px;}
.wa{width:573.945000px;}
.w8{width:721.410000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:6.120000px;}
.x11{left:18.000000px;}
.x12{left:22.320000px;}
.x3{left:84.959987px;}
.x26{left:95.615987px;}
.x16{left:106.235987px;}
.x1b{left:111.995987px;}
.x19{left:117.035987px;}
.x6{left:118.295987px;}
.x1c{left:127.475987px;}
.x15{left:138.995987px;}
.x1a{left:144.035987px;}
.x2a{left:148.895987px;}
.x1e{left:163.469987px;}
.x2b{left:165.989987px;}
.xf{left:187.590000px;}
.x18{left:191.189987px;}
.x17{left:192.989987px;}
.x13{left:245.010000px;}
.x7{left:255.989987px;}
.xa{left:301.575000px;}
.x5{left:306.254987px;}
.xb{left:389.055000px;}
.x14{left:393.915000px;}
.x4{left:446.474987px;}
.xd{left:535.245000px;}
.x2c{left:610.664987px;}
.x1{left:637.844987px;}
.x25{left:640.904987px;}
.xe{left:653.145000px;}
.x8{left:678.000000px;}
.x23{left:708.629987px;}
.x22{left:725.549987px;}
.x28{left:733.649987px;}
.x29{left:741.209987px;}
.x10{left:762.450000px;}
.x24{left:777.569987px;}
.x27{left:779.189987px;}
.x1f{left:780.809987px;}
.x21{left:781.889987px;}
.x20{left:784.769987px;}
.x9{left:787.649987px;}
.x1d{left:788.909987px;}
.x2{left:798.809987px;}
@media print{
.v1{vertical-align:-181.760000pt;}
.v2{vertical-align:-5.120000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls3{letter-spacing:-2.453707pt;}
.ls2c{letter-spacing:-1.280000pt;}
.ls15{letter-spacing:-1.216000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls30{letter-spacing:-0.576000pt;}
.ls14{letter-spacing:-0.512000pt;}
.ls25{letter-spacing:-0.448000pt;}
.ls22{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.243733pt;}
.ls31{letter-spacing:-0.213867pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls3c{letter-spacing:-0.153067pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls2d{letter-spacing:-0.097067pt;}
.ls3a{letter-spacing:-0.095467pt;}
.ls5{letter-spacing:-0.086933pt;}
.ls2b{letter-spacing:-0.064000pt;}
.ls2a{letter-spacing:-0.061867pt;}
.ls26{letter-spacing:-0.051840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.019840pt;}
.ls34{letter-spacing:0.039040pt;}
.ls3e{letter-spacing:0.053867pt;}
.ls7{letter-spacing:0.056533pt;}
.ls11{letter-spacing:0.064000pt;}
.ls33{letter-spacing:0.089600pt;}
.ls38{letter-spacing:0.124800pt;}
.ls10{letter-spacing:0.128000pt;}
.ls3d{letter-spacing:0.159360pt;}
.ls36{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.227733pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls37{letter-spacing:0.272000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls32{letter-spacing:0.349867pt;}
.ls3b{letter-spacing:0.385280pt;}
.ls27{letter-spacing:0.448000pt;}
.ls39{letter-spacing:0.576000pt;}
.ls35{letter-spacing:0.586667pt;}
.ls28{letter-spacing:4.736000pt;}
.ls9{letter-spacing:4.751360pt;}
.ls2f{letter-spacing:9.728000pt;}
.ls1f{letter-spacing:11.648000pt;}
.ls8{letter-spacing:13.711360pt;}
.ls1e{letter-spacing:22.528000pt;}
.ls1b{letter-spacing:23.808000pt;}
.ls19{letter-spacing:25.088000pt;}
.ls29{letter-spacing:26.368000pt;}
.ls1c{letter-spacing:27.008000pt;}
.ls1d{letter-spacing:27.648000pt;}
.ls17{letter-spacing:28.288000pt;}
.lse{letter-spacing:28.928000pt;}
.ls23{letter-spacing:29.568000pt;}
.lsc{letter-spacing:34.191360pt;}
.ls2e{letter-spacing:43.008000pt;}
.ls13{letter-spacing:48.768000pt;}
.lsa{letter-spacing:56.591360pt;}
.ls16{letter-spacing:83.968000pt;}
.lsb{letter-spacing:175.493120pt;}
.ls1{letter-spacing:752.266667pt;}
.ls0{letter-spacing:1255.562667pt;}
.wsd{word-spacing:-64.000000pt;}
.ws1{word-spacing:-56.320000pt;}
.ws3{word-spacing:-14.784000pt;}
.ws8{word-spacing:-14.656000pt;}
.wsa{word-spacing:-14.592000pt;}
.wsc{word-spacing:-14.528000pt;}
.wsb{word-spacing:-14.464000pt;}
.ws1a{word-spacing:-14.336000pt;}
.wsf{word-spacing:-14.272000pt;}
.wse{word-spacing:-14.208000pt;}
.ws13{word-spacing:-14.144000pt;}
.ws17{word-spacing:-14.016000pt;}
.ws16{word-spacing:-13.952000pt;}
.ws14{word-spacing:-13.824000pt;}
.ws6{word-spacing:-13.534613pt;}
.ws7{word-spacing:-13.306880pt;}
.ws15{word-spacing:-13.120000pt;}
.ws10{word-spacing:-13.056000pt;}
.ws19{word-spacing:-12.736000pt;}
.ws20{word-spacing:-12.591787pt;}
.ws23{word-spacing:-12.581120pt;}
.ws1e{word-spacing:-12.544000pt;}
.ws1d{word-spacing:-12.354987pt;}
.ws22{word-spacing:-12.277120pt;}
.ws26{word-spacing:-12.164480pt;}
.ws1f{word-spacing:-12.044160pt;}
.ws11{word-spacing:-12.005120pt;}
.ws12{word-spacing:-11.953280pt;}
.ws18{word-spacing:-11.943253pt;}
.ws24{word-spacing:-11.909653pt;}
.ws1b{word-spacing:-11.908053pt;}
.ws25{word-spacing:-11.852053pt;}
.ws1c{word-spacing:-11.791253pt;}
.ws2{word-spacing:-11.264000pt;}
.ws4{word-spacing:-10.537067pt;}
.ws5{word-spacing:-10.380267pt;}
.ws9{word-spacing:-9.690880pt;}
.ws21{word-spacing:-7.810560pt;}
.ws0{word-spacing:0.000000pt;}
._25{margin-left:-183.502933pt;}
._27{margin-left:-175.905280pt;}
._26{margin-left:-174.998613pt;}
._1d{margin-left:-166.186240pt;}
._32{margin-left:-104.964480pt;}
._2b{margin-left:-99.918080pt;}
._2e{margin-left:-69.818453pt;}
._17{margin-left:-12.332800pt;}
._28{margin-left:-9.003520pt;}
._c{margin-left:-3.940693pt;}
._b{margin-left:-2.944000pt;}
._6{margin-left:-1.840640pt;}
._2{margin-left:-0.901120pt;}
._0{width:1.192960pt;}
._a{width:2.296747pt;}
._3e{width:3.712000pt;}
._3f{width:4.672000pt;}
._44{width:6.336000pt;}
._8{width:8.033707pt;}
._7{width:9.152000pt;}
._9{width:10.907307pt;}
._41{width:12.288000pt;}
._40{width:13.312000pt;}
._54{width:14.387840pt;}
._16{width:15.486720pt;}
._45{width:16.384000pt;}
._43{width:17.418667pt;}
._2f{width:18.579200pt;}
._42{width:19.594240pt;}
._4a{width:20.857600pt;}
._1c{width:22.397867pt;}
._29{width:23.813120pt;}
._48{width:25.024000pt;}
._51{width:26.352640pt;}
._50{width:27.584000pt;}
._52{width:29.056000pt;}
._46{width:30.464000pt;}
._47{width:31.634347pt;}
._49{width:32.814080pt;}
._31{width:33.800960pt;}
._2c{width:34.749867pt;}
._53{width:36.160000pt;}
._4d{width:37.376000pt;}
._4e{width:38.373973pt;}
._4c{width:39.872000pt;}
._4b{width:40.768000pt;}
._12{width:42.732160pt;}
._4{width:43.857067pt;}
._3b{width:45.837440pt;}
._19{width:50.876160pt;}
._57{width:52.588800pt;}
._56{width:54.288640pt;}
._36{width:55.621120pt;}
._15{width:57.688320pt;}
._1b{width:60.678400pt;}
._3{width:61.597867pt;}
._58{width:69.881600pt;}
._55{width:70.862080pt;}
._3c{width:72.362880pt;}
._3a{width:79.402240pt;}
._d{width:81.057067pt;}
._39{width:85.299627pt;}
._21{width:90.353067pt;}
._1e{width:96.920320pt;}
._59{width:99.334400pt;}
._f{width:102.970667pt;}
._33{width:108.495787pt;}
._20{width:109.499307pt;}
._30{width:113.140480pt;}
._37{width:121.510827pt;}
._2a{width:123.689387pt;}
._22{width:129.312000pt;}
._24{width:132.795307pt;}
._38{width:133.698987pt;}
._14{width:135.364267pt;}
._1a{width:138.315520pt;}
._1f{width:140.179200pt;}
._23{width:143.604907pt;}
._18{width:145.877760pt;}
._2d{width:153.002240pt;}
._34{width:162.187520pt;}
._35{width:164.014507pt;}
._10{width:170.604160pt;}
._11{width:173.735040pt;}
._e{width:175.493120pt;}
._13{width:176.494933pt;}
._5{width:225.038507pt;}
._1{width:240.106667pt;}
._4f{width:753.802667pt;}
._3d{width:754.831787pt;}
.fs9{font-size:34.560000pt;}
.fs4{font-size:42.666667pt;}
.fs8{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs7{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:128.000000pt;}
.fs1{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:2.720000pt;}
.y23{bottom:2.880000pt;}
.y33{bottom:4.320000pt;}
.y2c{bottom:6.080000pt;}
.y2a{bottom:8.480000pt;}
.y22{bottom:19.680000pt;}
.y32{bottom:23.840000pt;}
.y29{bottom:25.600000pt;}
.y21{bottom:36.480000pt;}
.y28{bottom:42.760000pt;}
.y31{bottom:43.360000pt;}
.y3{bottom:51.552000pt;}
.y20{bottom:53.306667pt;}
.y27{bottom:59.080000pt;}
.y30{bottom:62.880000pt;}
.y1b{bottom:69.952000pt;}
.y1f{bottom:70.106667pt;}
.y2{bottom:71.072000pt;}
.y2f{bottom:82.400000pt;}
.y15a{bottom:90.112000pt;}
.yc4{bottom:92.512000pt;}
.ybf{bottom:93.632000pt;}
.y98{bottom:94.112000pt;}
.yfb{bottom:98.432000pt;}
.y2e{bottom:101.920000pt;}
.y159{bottom:106.272000pt;}
.y78{bottom:108.512000pt;}
.yd4{bottom:111.072000pt;}
.yc3{bottom:111.232000pt;}
.y44{bottom:116.192000pt;}
.y110{bottom:116.352000pt;}
.ybc{bottom:117.472000pt;}
.y9c{bottom:119.872000pt;}
.ybe{bottom:120.352000pt;}
.ye5{bottom:120.832000pt;}
.y158{bottom:122.592000pt;}
.y97{bottom:123.392000pt;}
.y77{bottom:126.432000pt;}
.yc2{bottom:127.392000pt;}
.yfa{bottom:127.712000pt;}
.y122{bottom:129.152000pt;}
.y1d{bottom:129.160000pt;}
.y43{bottom:137.786667pt;}
.y157{bottom:138.906667pt;}
.yd3{bottom:140.346667pt;}
.ybd{bottom:143.066667pt;}
.y76{bottom:144.186667pt;}
.y121{bottom:145.466667pt;}
.y10f{bottom:145.626667pt;}
.ybb{bottom:146.746667pt;}
.y9b{bottom:150.106667pt;}
.y96{bottom:152.666667pt;}
.yc1{bottom:154.266667pt;}
.y156{bottom:155.226667pt;}
.yf9{bottom:156.986667pt;}
.y120{bottom:161.626667pt;}
.y75{bottom:162.106667pt;}
.y42{bottom:166.586667pt;}
.yd2{bottom:169.626667pt;}
.y155{bottom:171.386667pt;}
.y10e{bottom:174.906667pt;}
.yba{bottom:176.026667pt;}
.yc0{bottom:176.346667pt;}
.y11f{bottom:177.946667pt;}
.ye4{bottom:179.386667pt;}
.y74{bottom:180.026667pt;}
.y9a{bottom:180.186667pt;}
.y95{bottom:181.946667pt;}
.yf8{bottom:186.266667pt;}
.y154{bottom:187.706667pt;}
.y41{bottom:192.826667pt;}
.y11e{bottom:194.266667pt;}
.y73{bottom:197.946667pt;}
.yd1{bottom:198.906667pt;}
.y153{bottom:204.026667pt;}
.y10d{bottom:204.186667pt;}
.yb9{bottom:205.306667pt;}
.ye3{bottom:208.826667pt;}
.y99{bottom:210.426667pt;}
.y94{bottom:211.386667pt;}
.y40{bottom:215.226667pt;}
.yf7{bottom:215.546667pt;}
.y72{bottom:215.866667pt;}
.y152{bottom:220.346667pt;}
.y11d{bottom:226.746667pt;}
.yd0{bottom:228.186667pt;}
.y19{bottom:229.626667pt;}
.y10c{bottom:233.466667pt;}
.y71{bottom:233.786667pt;}
.yb8{bottom:234.586667pt;}
.y151{bottom:236.506667pt;}
.ye2{bottom:238.106667pt;}
.y93{bottom:240.666667pt;}
.y11c{bottom:243.106667pt;}
.y3f{bottom:243.266667pt;}
.yf6{bottom:244.866667pt;}
.y18{bottom:248.866667pt;}
.y70{bottom:251.746667pt;}
.y150{bottom:252.866667pt;}
.ycf{bottom:257.666667pt;}
.y10b{bottom:262.786667pt;}
.yb7{bottom:264.066667pt;}
.ye1{bottom:267.426667pt;}
.y17{bottom:268.066667pt;}
.y14f{bottom:269.186667pt;}
.y6f{bottom:269.666667pt;}
.y92{bottom:269.986667pt;}
.y3e{bottom:271.266667pt;}
.yf5{bottom:274.146667pt;}
.y14e{bottom:285.346667pt;}
.yce{bottom:286.946667pt;}
.y16{bottom:287.266667pt;}
.y6e{bottom:287.586667pt;}
.y10a{bottom:292.066667pt;}
.yb6{bottom:293.346667pt;}
.ye0{bottom:296.706667pt;}
.y91{bottom:299.266667pt;}
.y14d{bottom:301.666667pt;}
.y3d{bottom:303.266667pt;}
.yf4{bottom:303.426667pt;}
.y6d{bottom:305.346667pt;}
.y15{bottom:306.466667pt;}
.ycd{bottom:316.226667pt;}
.y14c{bottom:317.986667pt;}
.y109{bottom:321.506667pt;}
.yb5{bottom:322.626667pt;}
.y6c{bottom:323.266667pt;}
.y14{bottom:325.666667pt;}
.ydf{bottom:325.986667pt;}
.y90{bottom:328.546667pt;}
.y3c{bottom:331.266667pt;}
.y11b{bottom:332.706667pt;}
.yf3{bottom:332.866667pt;}
.y15b{bottom:334.146667pt;}
.y14b{bottom:334.306667pt;}
.y6b{bottom:341.186667pt;}
.y13{bottom:344.866667pt;}
.ycc{bottom:345.506667pt;}
.y14a{bottom:350.466667pt;}
.y108{bottom:350.786667pt;}
.yb4{bottom:351.906667pt;}
.yde{bottom:355.266667pt;}
.y8f{bottom:357.826667pt;}
.y6a{bottom:359.106667pt;}
.y3b{bottom:359.266667pt;}
.y11a{bottom:361.986667pt;}
.yf2{bottom:362.146667pt;}
.y12{bottom:364.066667pt;}
.y149{bottom:366.786667pt;}
.ycb{bottom:374.786667pt;}
.y69{bottom:377.026667pt;}
.y107{bottom:380.066667pt;}
.yb3{bottom:381.026667pt;}
.y148{bottom:383.106667pt;}
.y11{bottom:383.266667pt;}
.ydd{bottom:384.546667pt;}
.y8e{bottom:387.106667pt;}
.y3a{bottom:387.266667pt;}
.yf1{bottom:391.426667pt;}
.y68{bottom:394.946667pt;}
.y147{bottom:399.266667pt;}
.yca{bottom:404.066667pt;}
.y10{bottom:405.666667pt;}
.y106{bottom:409.346667pt;}
.yb2{bottom:411.266667pt;}
.y67{bottom:412.866667pt;}
.ydc{bottom:413.826667pt;}
.y39{bottom:415.266667pt;}
.y146{bottom:415.586667pt;}
.y8d{bottom:416.386667pt;}
.yf0{bottom:420.706667pt;}
.y66{bottom:430.786667pt;}
.y145{bottom:431.906667pt;}
.yc9{bottom:433.346667pt;}
.y105{bottom:438.626667pt;}
.yb1{bottom:440.546667pt;}
.ydb{bottom:443.106667pt;}
.y38{bottom:444.066667pt;}
.y8c{bottom:445.666667pt;}
.y144{bottom:448.226667pt;}
.yf{bottom:448.386667pt;}
.y65{bottom:448.706667pt;}
.yef{bottom:449.986667pt;}
.yc8{bottom:462.626667pt;}
.y143{bottom:464.386667pt;}
.y64{bottom:466.626667pt;}
.y104{bottom:467.906667pt;}
.yb0{bottom:470.786667pt;}
.y37{bottom:472.066667pt;}
.yda{bottom:472.546667pt;}
.y8b{bottom:474.946667pt;}
.yee{bottom:479.266667pt;}
.y142{bottom:480.706667pt;}
.y63{bottom:484.386667pt;}
.yc7{bottom:489.506667pt;}
.ye{bottom:494.173333pt;}
.y141{bottom:497.053333pt;}
.y103{bottom:497.213333pt;}
.yaf{bottom:499.933333pt;}
.y35{bottom:500.093333pt;}
.yd9{bottom:501.853333pt;}
.y62{bottom:502.333333pt;}
.y8a{bottom:504.413333pt;}
.yed{bottom:508.573333pt;}
.y140{bottom:513.373333pt;}
.yc6{bottom:513.853333pt;}
.y61{bottom:520.253333pt;}
.y102{bottom:526.493333pt;}
.y34{bottom:528.093333pt;}
.y13f{bottom:529.533333pt;}
.yae{bottom:530.173333pt;}
.yd8{bottom:531.133333pt;}
.y89{bottom:533.693333pt;}
.yc5{bottom:535.773333pt;}
.yec{bottom:537.853333pt;}
.y60{bottom:538.173333pt;}
.yd{bottom:539.933333pt;}
.y101{bottom:545.213333pt;}
.y13e{bottom:545.853333pt;}
.y5f{bottom:556.093333pt;}
.y2d{bottom:556.893333pt;}
.yd7{bottom:560.253333pt;}
.yad{bottom:560.413333pt;}
.y100{bottom:561.533333pt;}
.y13d{bottom:562.173333pt;}
.y88{bottom:562.973333pt;}
.yeb{bottom:567.133333pt;}
.y5e{bottom:574.013333pt;}
.yff{bottom:577.853333pt;}
.y13c{bottom:578.333333pt;}
.yc{bottom:585.693333pt;}
.yac{bottom:589.533333pt;}
.yd6{bottom:590.493333pt;}
.y5d{bottom:591.933333pt;}
.y87{bottom:592.253333pt;}
.yfe{bottom:594.173333pt;}
.y13b{bottom:594.653333pt;}
.y119{bottom:596.413333pt;}
.yea{bottom:596.573333pt;}
.y5c{bottom:609.853333pt;}
.yfd{bottom:610.333333pt;}
.y13a{bottom:610.973333pt;}
.ye9{bottom:615.293333pt;}
.yab{bottom:619.773333pt;}
.yd5{bottom:620.573333pt;}
.y86{bottom:621.533333pt;}
.y118{bottom:625.693333pt;}
.y139{bottom:627.293333pt;}
.y5b{bottom:627.773333pt;}
.ye8{bottom:631.453333pt;}
.yb{bottom:631.613333pt;}
.yfc{bottom:632.893333pt;}
.y138{bottom:643.453333pt;}
.y5a{bottom:645.693333pt;}
.ye7{bottom:647.773333pt;}
.yaa{bottom:649.053333pt;}
.y85{bottom:650.813333pt;}
.y117{bottom:655.133333pt;}
.y137{bottom:659.773333pt;}
.y59{bottom:663.453333pt;}
.ye6{bottom:670.333333pt;}
.y136{bottom:676.093333pt;}
.ya9{bottom:678.333333pt;}
.y84{bottom:680.093333pt;}
.y58{bottom:681.373333pt;}
.y116{bottom:684.413333pt;}
.y2b{bottom:686.013333pt;}
.y135{bottom:692.413333pt;}
.y57{bottom:699.293333pt;}
.ya8{bottom:708.573333pt;}
.y83{bottom:709.373333pt;}
.y115{bottom:713.693333pt;}
.y56{bottom:717.213333pt;}
.y1c{bottom:718.013333pt;}
.ya{bottom:722.813333pt;}
.y134{bottom:724.893333pt;}
.y114{bottom:732.413333pt;}
.y55{bottom:735.133333pt;}
.ya7{bottom:737.853333pt;}
.y82{bottom:738.653333pt;}
.y133{bottom:741.213333pt;}
.y113{bottom:748.613333pt;}
.y54{bottom:753.093333pt;}
.y132{bottom:757.413333pt;}
.ya6{bottom:767.173333pt;}
.y81{bottom:768.133333pt;}
.y9{bottom:770.693333pt;}
.y53{bottom:771.013333pt;}
.y131{bottom:773.733333pt;}
.y112{bottom:775.493333pt;}
.y52{bottom:788.933333pt;}
.y130{bottom:790.053333pt;}
.ya5{bottom:796.453333pt;}
.y80{bottom:797.413333pt;}
.y111{bottom:797.573333pt;}
.y26{bottom:803.013333pt;}
.y12f{bottom:806.373333pt;}
.y51{bottom:806.853333pt;}
.y8{bottom:818.533333pt;}
.y12e{bottom:822.533333pt;}
.y50{bottom:824.773333pt;}
.ya4{bottom:825.733333pt;}
.y7f{bottom:826.693333pt;}
.y12d{bottom:838.853333pt;}
.y4f{bottom:842.533333pt;}
.y25{bottom:848.613333pt;}
.ya3{bottom:855.173333pt;}
.y7e{bottom:855.973333pt;}
.y4e{bottom:860.453333pt;}
.y7{bottom:866.213333pt;}
.y12c{bottom:871.493333pt;}
.y4d{bottom:878.373333pt;}
.ya2{bottom:884.453333pt;}
.y7d{bottom:885.253333pt;}
.y12b{bottom:887.653333pt;}
.y4c{bottom:896.293333pt;}
.y12a{bottom:903.973333pt;}
.y24{bottom:911.013333pt;}
.ya1{bottom:913.733333pt;}
.y6{bottom:914.053333pt;}
.y4b{bottom:914.213333pt;}
.y7c{bottom:914.533333pt;}
.y129{bottom:920.293333pt;}
.y4a{bottom:932.133333pt;}
.y128{bottom:936.453333pt;}
.ya0{bottom:943.013333pt;}
.y7b{bottom:943.813333pt;}
.y49{bottom:950.053333pt;}
.y127{bottom:952.773333pt;}
.y1e{bottom:956.613333pt;}
.y5{bottom:961.893333pt;}
.y48{bottom:967.973333pt;}
.y126{bottom:969.093333pt;}
.y9f{bottom:972.293333pt;}
.y7a{bottom:973.093333pt;}
.y125{bottom:985.413333pt;}
.y47{bottom:985.893333pt;}
.y9e{bottom:1001.600000pt;}
.y79{bottom:1002.400000pt;}
.y46{bottom:1003.680000pt;}
.y4{bottom:1009.760000pt;}
.y124{bottom:1017.920000pt;}
.y9d{bottom:1030.880000pt;}
.y45{bottom:1031.840000pt;}
.y123{bottom:1034.240000pt;}
.y1a{bottom:1069.226667pt;}
.y1{bottom:1069.600000pt;}
.h14{height:16.000000pt;}
.h13{height:16.800000pt;}
.h11{height:20.000000pt;}
.hc{height:33.600000pt;}
.h8{height:44.500000pt;}
.he{height:44.774400pt;}
.h15{height:46.055040pt;}
.ha{height:48.829440pt;}
.hd{height:50.400000pt;}
.h16{height:50.880000pt;}
.h1d{height:51.437500pt;}
.h1e{height:51.500000pt;}
.h20{height:52.834688pt;}
.h10{height:53.625000pt;}
.h6{height:55.488000pt;}
.h1a{height:58.563750pt;}
.h1b{height:60.288750pt;}
.h19{height:60.519362pt;}
.h18{height:61.295000pt;}
.h2{height:63.656250pt;}
.h1f{height:63.769688pt;}
.h21{height:63.843750pt;}
.h17{height:65.531250pt;}
.h7{height:65.781915pt;}
.h1c{height:66.625000pt;}
.hf{height:72.992000pt;}
.hb{height:84.032000pt;}
.h5{height:101.760000pt;}
.h12{height:117.120000pt;}
.h3{height:129.287040pt;}
.h4{height:155.527500pt;}
.h9{height:322.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:39.840000pt;}
.w9{width:89.792000pt;}
.w6{width:104.160000pt;}
.w5{width:129.312000pt;}
.wf{width:131.552000pt;}
.w7{width:136.986667pt;}
.we{width:140.826667pt;}
.wc{width:149.786667pt;}
.w3{width:268.866667pt;}
.w10{width:367.426667pt;}
.w4{width:371.746667pt;}
.wd{width:490.813333pt;}
.wa{width:510.173333pt;}
.w8{width:641.253333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:5.440000pt;}
.x11{left:16.000000pt;}
.x12{left:19.840000pt;}
.x3{left:75.519988pt;}
.x26{left:84.991988pt;}
.x16{left:94.431988pt;}
.x1b{left:99.551988pt;}
.x19{left:104.031988pt;}
.x6{left:105.151988pt;}
.x1c{left:113.311988pt;}
.x15{left:123.551988pt;}
.x1a{left:128.031988pt;}
.x2a{left:132.351988pt;}
.x1e{left:145.306655pt;}
.x2b{left:147.546655pt;}
.xf{left:166.746667pt;}
.x18{left:169.946655pt;}
.x17{left:171.546655pt;}
.x13{left:217.786667pt;}
.x7{left:227.546655pt;}
.xa{left:268.066667pt;}
.x5{left:272.226655pt;}
.xb{left:345.826667pt;}
.x14{left:350.146667pt;}
.x4{left:396.866655pt;}
.xd{left:475.773333pt;}
.x2c{left:542.813322pt;}
.x1{left:566.973322pt;}
.x25{left:569.693322pt;}
.xe{left:580.573333pt;}
.x8{left:602.666667pt;}
.x23{left:629.893322pt;}
.x22{left:644.933322pt;}
.x28{left:652.133322pt;}
.x29{left:658.853322pt;}
.x10{left:677.733333pt;}
.x24{left:691.173322pt;}
.x27{left:692.613322pt;}
.x1f{left:694.053322pt;}
.x21{left:695.013322pt;}
.x20{left:697.573322pt;}
.x9{left:700.133322pt;}
.x1d{left:701.253322pt;}
.x2{left:710.053322pt;}
}




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