
    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_72ebb92bb292f102111b3995.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_5bc6ff7f9f1fef05bb88f002.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.732000;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_5557e6c91a4e66620c496869.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_2bf7abdf31fb51a2cb8905b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.769000;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_997ed85f16995d1405c9da96.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.304000;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_f19984d96816f2ef40afdf4a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.431000;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_efccad829d34d721a33087c6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.684000;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_6edefb498a7be80c3b9e8f94.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.115000;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_2a74ab4e250a9a52e39b1552.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900000;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_c2036bbcf4efbd91473bad45.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.889000;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_d842921d8feb64d5a583692c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_e0980665ffe954f8d27b096a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.773000;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_166ab83f34b656695275042b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.854000;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);}
.v2{vertical-align:-26.034000px;}
.v5{vertical-align:-12.912000px;}
.v3{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:23.754000px;}
.v1{vertical-align:26.028000px;}
.v7{vertical-align:34.404000px;}
.v6{vertical-align:44.280000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000141px;}
.lsd{letter-spacing:0.002338px;}
.ls6{letter-spacing:0.002700px;}
.ls13{letter-spacing:0.002712px;}
.ls0{letter-spacing:0.002915px;}
.ls16{letter-spacing:0.006141px;}
.ls3{letter-spacing:2.984525px;}
.ls2{letter-spacing:2.984915px;}
.lse{letter-spacing:2.986200px;}
.lsb{letter-spacing:2.990915px;}
.ls7{letter-spacing:2.991056px;}
.lsc{letter-spacing:3.460878px;}
.ls12{letter-spacing:14.540712px;}
.ls11{letter-spacing:14.543412px;}
.ls14{letter-spacing:14.549412px;}
.ls9{letter-spacing:16.604692px;}
.ls1c{letter-spacing:16.940692px;}
.ls8{letter-spacing:18.338692px;}
.ls17{letter-spacing:19.034915px;}
.ls19{letter-spacing:19.346915px;}
.ls5{letter-spacing:19.460525px;}
.lsf{letter-spacing:21.170915px;}
.ls1a{letter-spacing:21.224915px;}
.ls10{letter-spacing:25.355412px;}
.ls1b{letter-spacing:27.266915px;}
.lsa{letter-spacing:32.728890px;}
.ls18{letter-spacing:36.386915px;}
.ls15{letter-spacing:821.366712px;}
.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;}
}
.ws53{word-spacing:-65.454600px;}
.ws49{word-spacing:-21.519300px;}
.ws3{word-spacing:-17.932800px;}
.ws23{word-spacing:-16.363650px;}
.ws5{word-spacing:-14.943900px;}
.ws4c{word-spacing:-11.955150px;}
.ws3e{word-spacing:-3.927276px;}
.ws50{word-spacing:-3.403639px;}
.ws20{word-spacing:-3.207275px;}
.ws45{word-spacing:-2.814548px;}
.ws2e{word-spacing:-2.552729px;}
.ws2f{word-spacing:-2.487275px;}
.ws5e{word-spacing:-2.356366px;}
.ws7{word-spacing:-1.972595px;}
.ws1f{word-spacing:-1.767274px;}
.ws1e{word-spacing:-1.701820px;}
.ws6c{word-spacing:-1.636365px;}
.ws29{word-spacing:-1.243637px;}
.ws43{word-spacing:-1.112728px;}
.ws15{word-spacing:-1.075961px;}
.wsd{word-spacing:-0.956410px;}
.ws60{word-spacing:-0.850910px;}
.ws6d{word-spacing:-0.654546px;}
.ws71{word-spacing:-0.523637px;}
.ws3f{word-spacing:-0.327273px;}
.ws26{word-spacing:-0.261818px;}
.ws4a{word-spacing:-0.065455px;}
.ws48{word-spacing:-0.059776px;}
.ws3c{word-spacing:-0.047821px;}
.ws14{word-spacing:-0.041843px;}
.ws52{word-spacing:-0.010151px;}
.ws76{word-spacing:-0.007500px;}
.ws79{word-spacing:-0.005872px;}
.ws7d{word-spacing:-0.003716px;}
.ws73{word-spacing:-0.003539px;}
.ws0{word-spacing:0.000000px;}
.ws6f{word-spacing:0.000297px;}
.ws72{word-spacing:0.001500px;}
.ws7f{word-spacing:0.001503px;}
.ws33{word-spacing:0.065455px;}
.ws3b{word-spacing:0.327273px;}
.wsf{word-spacing:0.478205px;}
.ws5f{word-spacing:0.589091px;}
.ws4e{word-spacing:0.785455px;}
.ws2c{word-spacing:0.850910px;}
.ws7e{word-spacing:1.243637px;}
.ws5b{word-spacing:1.309092px;}
.ws19{word-spacing:1.494390px;}
.ws7c{word-spacing:1.570910px;}
.ws38{word-spacing:1.701820px;}
.ws31{word-spacing:1.832729px;}
.ws64{word-spacing:1.898183px;}
.ws61{word-spacing:2.029093px;}
.ws68{word-spacing:2.094547px;}
.ws46{word-spacing:2.160002px;}
.ws35{word-spacing:2.225456px;}
.ws5a{word-spacing:2.334326px;}
.ws58{word-spacing:2.356366px;}
.ws6b{word-spacing:2.421820px;}
.ws44{word-spacing:2.487275px;}
.ws41{word-spacing:2.552729px;}
.ws6{word-spacing:2.613394px;}
.ws6a{word-spacing:2.683639px;}
.ws63{word-spacing:2.814548px;}
.ws30{word-spacing:2.880002px;}
.ws4d{word-spacing:2.945457px;}
.ws1b{word-spacing:2.988780px;}
.ws28{word-spacing:3.076366px;}
.ws8{word-spacing:3.466985px;}
.ws40{word-spacing:3.534548px;}
.ws65{word-spacing:3.600003px;}
.ws21{word-spacing:3.665458px;}
.ws25{word-spacing:3.796367px;}
.ws7a{word-spacing:4.058185px;}
.ws69{word-spacing:4.254549px;}
.ws4{word-spacing:4.297555px;}
.ws2{word-spacing:4.301722px;}
.ws1{word-spacing:4.303872px;}
.wse{word-spacing:4.548934px;}
.ws2b{word-spacing:4.581822px;}
.ws37{word-spacing:4.647277px;}
.ws3a{word-spacing:4.909095px;}
.ws22{word-spacing:4.974550px;}
.ws67{word-spacing:5.040004px;}
.ws32{word-spacing:5.105459px;}
.ws42{word-spacing:5.236368px;}
.ws74{word-spacing:5.563641px;}
.ws4b{word-spacing:5.579777px;}
.ws6e{word-spacing:5.694550px;}
.ws2a{word-spacing:5.825459px;}
.ws13{word-spacing:5.917784px;}
.ws4f{word-spacing:6.349096px;}
.ws3d{word-spacing:6.676369px;}
.ws24{word-spacing:6.807278px;}
.ws1d{word-spacing:6.872733px;}
.ws2d{word-spacing:6.938188px;}
.ws36{word-spacing:7.069097px;}
.wsc{word-spacing:7.113296px;}
.ws12{word-spacing:7.651277px;}
.ws27{word-spacing:7.789097px;}
.ws66{word-spacing:7.920007px;}
.ws18{word-spacing:8.009930px;}
.ws10{word-spacing:8.189257px;}
.ws47{word-spacing:8.247280px;}
.ws78{word-spacing:8.509098px;}
.ws75{word-spacing:8.705462px;}
.wsa{word-spacing:8.966340px;}
.ws1a{word-spacing:9.561296px;}
.ws59{word-spacing:9.731777px;}
.ws56{word-spacing:9.818190px;}
.ws5d{word-spacing:10.210918px;}
.ws34{word-spacing:10.341827px;}
.ws5c{word-spacing:10.407281px;}
.ws11{word-spacing:10.460730px;}
.ws17{word-spacing:10.879159px;}
.ws77{word-spacing:13.090920px;}
.ws70{word-spacing:16.298195px;}
.wsb{word-spacing:17.790042px;}
.ws7b{word-spacing:20.356381px;}
.ws39{word-spacing:21.240182px;}
.ws55{word-spacing:21.272745px;}
.ws9{word-spacing:21.484621px;}
.ws16{word-spacing:25.296524px;}
.ws54{word-spacing:38.029123px;}
.ws62{word-spacing:53.798400px;}
.ws51{word-spacing:55.374592px;}
.ws1c{word-spacing:64.557900px;}
.ws57{word-spacing:177.512875px;}
._49{margin-left:-2999.030962px;}
._48{margin-left:-2961.973255px;}
._52{margin-left:-2841.632032px;}
._4d{margin-left:-2840.034471px;}
._89{margin-left:-2837.809130px;}
._24{margin-left:-2821.422703px;}
._23{margin-left:-2820.247915px;}
._4{margin-left:-2798.599781px;}
._43{margin-left:-2767.531927px;}
._8a{margin-left:-2755.448335px;}
._40{margin-left:-2733.786961px;}
._42{margin-left:-2725.967448px;}
._74{margin-left:-2702.882135px;}
._72{margin-left:-2690.339740px;}
._1b{margin-left:-2658.147626px;}
._11{margin-left:-2656.863398px;}
._41{margin-left:-2622.287539px;}
._77{margin-left:-2609.917606px;}
._2{margin-left:-2589.533192px;}
._3c{margin-left:-2526.356376px;}
._35{margin-left:-2430.465772px;}
._65{margin-left:-2414.447030px;}
._80{margin-left:-2365.030568px;}
._30{margin-left:-2360.008456px;}
._8e{margin-left:-2319.596908px;}
._14{margin-left:-2300.139350px;}
._13{margin-left:-2266.551647px;}
._8d{margin-left:-2244.640637px;}
._9{margin-left:-2232.725846px;}
._81{margin-left:-2230.232999px;}
._c{margin-left:-2105.487895px;}
._45{margin-left:-2080.224163px;}
._54{margin-left:-2042.075811px;}
._7e{margin-left:-2033.764708px;}
._31{margin-left:-2020.256880px;}
._4a{margin-left:-1995.306892px;}
._7{margin-left:-1985.971190px;}
._2c{margin-left:-1950.606467px;}
._1d{margin-left:-1926.882769px;}
._73{margin-left:-1919.390573px;}
._a{margin-left:-1893.155088px;}
._67{margin-left:-1869.197473px;}
._20{margin-left:-1844.111279px;}
._53{margin-left:-1783.673436px;}
._57{margin-left:-1741.078271px;}
._32{margin-left:-1719.524441px;}
._44{margin-left:-1710.360797px;}
._e{margin-left:-1703.999498px;}
._56{margin-left:-1693.964931px;}
._4b{margin-left:-1691.733732px;}
._55{margin-left:-1690.233763px;}
._51{margin-left:-1685.686577px;}
._f{margin-left:-1665.333098px;}
._33{margin-left:-1621.316006px;}
._8f{margin-left:-1608.310050px;}
._10{margin-left:-1571.501008px;}
._87{margin-left:-1556.292194px;}
._3e{margin-left:-1535.152087px;}
._19{margin-left:-1531.969334px;}
._36{margin-left:-1528.148158px;}
._92{margin-left:-1468.903465px;}
._94{margin-left:-1434.422069px;}
._37{margin-left:-1416.567101px;}
._8b{margin-left:-1368.291992px;}
._34{margin-left:-1365.622173px;}
._29{margin-left:-1363.255053px;}
._75{margin-left:-1350.209935px;}
._66{margin-left:-1346.284177px;}
._2e{margin-left:-1338.314110px;}
._39{margin-left:-1306.991839px;}
._90{margin-left:-1283.465380px;}
._4f{margin-left:-1223.110781px;}
._59{margin-left:-1207.992552px;}
._7a{margin-left:-1171.547461px;}
._88{margin-left:-1169.063984px;}
._50{margin-left:-1135.780665px;}
._2a{margin-left:-1050.447520px;}
._93{margin-left:-988.333082px;}
._91{margin-left:-953.706095px;}
._83{margin-left:-933.800155px;}
._95{margin-left:-875.042033px;}
._6f{margin-left:-846.706617px;}
._76{margin-left:-822.999895px;}
._7f{margin-left:-786.841622px;}
._21{margin-left:-756.380924px;}
._7d{margin-left:-741.298058px;}
._8c{margin-left:-728.280453px;}
._22{margin-left:-695.600891px;}
._78{margin-left:-693.560770px;}
._3b{margin-left:-677.814482px;}
._3d{margin-left:-661.424297px;}
._70{margin-left:-636.147277px;}
._82{margin-left:-616.061131px;}
._58{margin-left:-539.462725px;}
._84{margin-left:-534.138353px;}
._86{margin-left:-519.202798px;}
._96{margin-left:-514.750537px;}
._7c{margin-left:-426.841892px;}
._4e{margin-left:-425.009164px;}
._7b{margin-left:-378.762826px;}
._26{margin-left:-341.377838px;}
._79{margin-left:-299.598150px;}
._85{margin-left:-270.470853px;}
._5a{margin-left:-225.045361px;}
._0{margin-left:-9.502901px;}
._2f{margin-left:-7.854552px;}
._d{margin-left:-6.599270px;}
._b{margin-left:-5.379840px;}
._5{margin-left:-4.303872px;}
._6{margin-left:-2.869248px;}
._1{margin-left:-1.859263px;}
._3f{width:2.981830px;}
._47{width:13.821323px;}
._17{width:15.183022px;}
._27{width:17.161668px;}
._18{width:18.530436px;}
._1a{width:20.329962px;}
._8{width:22.236672px;}
._1f{width:24.041663px;}
._16{width:25.583957px;}
._3a{width:26.940635px;}
._12{width:28.034776px;}
._4c{width:29.586212px;}
._25{width:30.631464px;}
._3{width:32.020644px;}
._15{width:33.367224px;}
._38{width:34.421300px;}
._1c{width:36.828018px;}
._46{width:39.612952px;}
._1e{width:41.550262px;}
._28{width:43.592764px;}
._71{width:51.120043px;}
._2d{width:71.731200px;}
._5f{width:76.385518px;}
._6c{width:83.650979px;}
._2b{width:86.077200px;}
._63{width:99.255708px;}
._5e{width:104.609014px;}
._6a{width:111.102991px;}
._64{width:125.083741px;}
._60{width:140.400117px;}
._5d{width:144.601186px;}
._61{width:155.389220px;}
._62{width:158.989223px;}
._69{width:172.992107px;}
._6d{width:176.656621px;}
._5b{width:190.041238px;}
._5c{width:202.647442px;}
._6b{width:211.183074px;}
._6e{width:352.209460px;}
._68{width:732.829702px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs6{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs7{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1c{bottom:61.467000px;}
.y1b{bottom:106.299000px;}
.yb8{bottom:110.238000px;}
.y3b{bottom:133.993500px;}
.y1a{bottom:135.315000px;}
.yce{bottom:139.183500px;}
.y54{bottom:144.966000px;}
.y87{bottom:149.949000px;}
.yb7{bottom:154.167000px;}
.y6c{bottom:156.820500px;}
.y19{bottom:164.329500px;}
.y3a{bottom:166.876500px;}
.ya1{bottom:181.660500px;}
.y86{bottom:182.833500px;}
.ycd{bottom:183.603000px;}
.y6b{bottom:189.705000px;}
.y53{bottom:191.299500px;}
.y18{bottom:193.344000px;}
.y39{bottom:199.761000px;}
.yb6{bottom:211.950000px;}
.ya0{bottom:214.543500px;}
.y17{bottom:222.360000px;}
.y6a{bottom:222.588000px;}
.ycc{bottom:228.024000px;}
.y38{bottom:232.644000px;}
.y52{bottom:237.633000px;}
.y85{bottom:240.937500px;}
.y9f{bottom:247.428000px;}
.y16{bottom:251.374500px;}
.yb5{bottom:255.879000px;}
.ycb{bottom:260.908500px;}
.y84{bottom:261.261000px;}
.y69{bottom:272.409000px;}
.y37{bottom:276.574500px;}
.y9e{bottom:280.312500px;}
.y15{bottom:280.390500px;}
.y83{bottom:281.584500px;}
.y51{bottom:283.966500px;}
.y82{bottom:301.908000px;}
.yca{bottom:305.328000px;}
.y14{bottom:309.405000px;}
.yb4{bottom:313.662000px;}
.y81{bottom:322.231500px;}
.y9d{bottom:324.241500px;}
.y50{bottom:330.300000px;}
.y36{bottom:334.356000px;}
.yc9{bottom:338.212500px;}
.y13{bottom:338.421000px;}
.y68{bottom:341.704500px;}
.y80{bottom:342.556500px;}
.yb3{bottom:357.591000px;}
.y7f{bottom:362.880000px;}
.y35{bottom:367.240500px;}
.y12{bottom:367.435500px;}
.y67{bottom:374.587500px;}
.y4f{bottom:381.115500px;}
.y9c{bottom:382.024500px;}
.yc8{bottom:382.633500px;}
.y7e{bottom:383.203500px;}
.y11{bottom:396.450000px;}
.y34{bottom:400.123500px;}
.y7d{bottom:403.527000px;}
.y66{bottom:407.472000px;}
.y4e{bottom:414.000000px;}
.y9b{bottom:414.907500px;}
.yb2{bottom:415.374000px;}
.yc7{bottom:415.516500px;}
.y7c{bottom:423.850500px;}
.y10{bottom:425.466000px;}
.y33{bottom:433.008000px;}
.y65{bottom:440.355000px;}
.y4d{bottom:446.883000px;}
.y9a{bottom:447.792000px;}
.y7b{bottom:452.383500px;}
.yf{bottom:454.480500px;}
.yb1{bottom:459.303000px;}
.yc6{bottom:459.937500px;}
.y32{bottom:465.891000px;}
.y7a{bottom:477.528000px;}
.y99{bottom:480.675000px;}
.ye{bottom:483.496500px;}
.y64{bottom:484.284000px;}
.y4c{bottom:490.813500px;}
.yc5{bottom:492.822000px;}
.y31{bottom:509.821500px;}
.yd{bottom:512.511000px;}
.y98{bottom:513.559500px;}
.yb0{bottom:517.086000px;}
.y79{bottom:524.427000px;}
.yc4{bottom:525.705000px;}
.yc{bottom:541.525500px;}
.y63{bottom:542.067000px;}
.y97{bottom:546.442500px;}
.y4b{bottom:548.595000px;}
.yaf{bottom:549.970500px;}
.y78{bottom:557.311500px;}
.y30{bottom:560.608500px;}
.yc3{bottom:570.126000px;}
.yb{bottom:570.541500px;}
.y62{bottom:574.951500px;}
.y96{bottom:579.327000px;}
.y4a{bottom:581.479500px;}
.yae{bottom:593.899500px;}
.yc2{bottom:603.009000px;}
.ya{bottom:604.404000px;}
.y77{bottom:607.131000px;}
.y61{bottom:607.834500px;}
.y95{bottom:612.210000px;}
.y49{bottom:614.364000px;}
.y2f{bottom:629.904000px;}
.y60{bottom:640.719000px;}
.yad{bottom:644.686500px;}
.y94{bottom:645.094500px;}
.y48{bottom:647.247000px;}
.yc1{bottom:647.430000px;}
.y2e{bottom:662.787000px;}
.y9{bottom:670.284000px;}
.y5f{bottom:673.602000px;}
.y76{bottom:676.426500px;}
.y93{bottom:677.977500px;}
.y47{bottom:680.131500px;}
.yc0{bottom:680.314500px;}
.yd9{bottom:695.628000px;}
.y2d{bottom:695.671500px;}
.y8{bottom:703.168500px;}
.y5e{bottom:706.486500px;}
.y75{bottom:709.311000px;}
.y46{bottom:713.014500px;}
.yac{bottom:713.982000px;}
.yd8{bottom:724.642500px;}
.ybf{bottom:724.734000px;}
.y92{bottom:727.798500px;}
.y2c{bottom:728.554500px;}
.y7{bottom:737.019000px;}
.y5d{bottom:739.369500px;}
.y74{bottom:742.194000px;}
.y45{bottom:745.899000px;}
.yab{bottom:746.865000px;}
.yd7{bottom:753.658500px;}
.y2b{bottom:761.439000px;}
.ybe{bottom:769.155000px;}
.y5c{bottom:772.254000px;}
.y73{bottom:775.078500px;}
.yaa{bottom:779.749500px;}
.yd6{bottom:782.673000px;}
.y44{bottom:789.828000px;}
.y2a{bottom:794.322000px;}
.y91{bottom:797.094000px;}
.ybd{bottom:802.039500px;}
.y6{bottom:806.736000px;}
.y72{bottom:807.961500px;}
.yd5{bottom:811.687500px;}
.ya9{bottom:812.634000px;}
.y5b{bottom:816.183000px;}
.y29{bottom:827.206500px;}
.y90{bottom:829.977000px;}
.y43{bottom:840.615000px;}
.yd4{bottom:840.703500px;}
.y71{bottom:840.846000px;}
.ya8{bottom:845.517000px;}
.ybc{bottom:846.459000px;}
.y5{bottom:847.093500px;}
.y28{bottom:860.091000px;}
.y5a{bottom:873.966000px;}
.y70{bottom:878.221500px;}
.ya7{bottom:878.401500px;}
.ybb{bottom:879.343500px;}
.y8f{bottom:887.467500px;}
.y6f{bottom:889.446000px;}
.y27{bottom:892.974000px;}
.y4{bottom:898.878000px;}
.yd3{bottom:902.445000px;}
.y59{bottom:906.850500px;}
.y8e{bottom:907.791000px;}
.y42{bottom:909.910500px;}
.ya6{bottom:911.284500px;}
.y26{bottom:925.858500px;}
.y8d{bottom:928.114500px;}
.yba{bottom:929.163000px;}
.yd2{bottom:935.329500px;}
.y58{bottom:939.733500px;}
.y3{bottom:942.585000px;}
.y41{bottom:942.793500px;}
.y8c{bottom:948.439500px;}
.y6e{bottom:955.213500px;}
.y25{bottom:958.741500px;}
.ya5{bottom:961.105500px;}
.y8b{bottom:968.763000px;}
.y57{bottom:972.618000px;}
.y40{bottom:975.678000px;}
.yd1{bottom:981.663000px;}
.y8a{bottom:989.086500px;}
.y24{bottom:991.626000px;}
.yb9{bottom:997.516500px;}
.y2{bottom:1000.981500px;}
.y6d{bottom:1005.034500px;}
.y56{bottom:1005.501000px;}
.y3f{bottom:1008.562500px;}
.y89{bottom:1017.619500px;}
.y23{bottom:1024.509000px;}
.yd0{bottom:1027.996500px;}
.ya4{bottom:1030.399500px;}
.y3e{bottom:1041.445500px;}
.y88{bottom:1042.764000px;}
.y55{bottom:1049.430000px;}
.y20{bottom:1053.051000px;}
.y1{bottom:1054.176000px;}
.y22{bottom:1057.393500px;}
.ycf{bottom:1060.879500px;}
.ya3{bottom:1063.284000px;}
.y3d{bottom:1074.330000px;}
.y1f{bottom:1082.067000px;}
.y21{bottom:1090.276500px;}
.ya2{bottom:1096.168500px;}
.y3c{bottom:1107.213000px;}
.y1e{bottom:1111.081500px;}
.y1d{bottom:1140.097500px;}
.h6{height:23.323066px;}
.h4{height:25.428710px;}
.h5{height:31.800699px;}
.h13{height:39.930101px;}
.ha{height:41.125613px;}
.h9{height:41.484266px;}
.hb{height:45.032765px;}
.hd{height:45.425492px;}
.h10{height:45.990579px;}
.hf{height:46.210948px;}
.h7{height:49.351066px;}
.h8{height:49.781453px;}
.he{height:55.554699px;}
.h3{height:57.828699px;}
.hc{height:59.737577px;}
.h2{height:71.684926px;}
.h12{height:89.930765px;}
.h11{height:93.370950px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:76.399500px;}
.x4{left:86.370000px;}
.x2{left:107.079000px;}
.x17{left:122.569500px;}
.xe{left:131.704500px;}
.xf{left:133.299000px;}
.xc{left:147.208500px;}
.x1{left:159.163500px;}
.x12{left:174.144000px;}
.x16{left:212.992500px;}
.x13{left:240.493500px;}
.x6{left:248.365500px;}
.x15{left:254.047500px;}
.x10{left:265.069500px;}
.x8{left:279.979500px;}
.x5{left:310.054500px;}
.x7{left:333.436500px;}
.x3{left:349.855500px;}
.x9{left:380.401500px;}
.xa{left:390.067500px;}
.x14{left:397.302000px;}
.x11{left:401.326500px;}
.xb{left:418.654500px;}
.x19{left:438.274500px;}
.xd{left:442.366500px;}
@media print{
.v2{vertical-align:-23.141333pt;}
.v5{vertical-align:-11.477333pt;}
.v3{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.114667pt;}
.v1{vertical-align:23.136000pt;}
.v7{vertical-align:30.581333pt;}
.v6{vertical-align:39.360000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000125pt;}
.lsd{letter-spacing:0.002079pt;}
.ls6{letter-spacing:0.002400pt;}
.ls13{letter-spacing:0.002411pt;}
.ls0{letter-spacing:0.002591pt;}
.ls16{letter-spacing:0.005459pt;}
.ls3{letter-spacing:2.652911pt;}
.ls2{letter-spacing:2.653258pt;}
.lse{letter-spacing:2.654400pt;}
.lsb{letter-spacing:2.658591pt;}
.ls7{letter-spacing:2.658717pt;}
.lsc{letter-spacing:3.076336pt;}
.ls12{letter-spacing:12.925077pt;}
.ls11{letter-spacing:12.927477pt;}
.ls14{letter-spacing:12.932811pt;}
.ls9{letter-spacing:14.759727pt;}
.ls1c{letter-spacing:15.058393pt;}
.ls8{letter-spacing:16.301060pt;}
.ls17{letter-spacing:16.919925pt;}
.ls19{letter-spacing:17.197258pt;}
.ls5{letter-spacing:17.298245pt;}
.lsf{letter-spacing:18.818591pt;}
.ls1a{letter-spacing:18.866591pt;}
.ls10{letter-spacing:22.538144pt;}
.ls1b{letter-spacing:24.237258pt;}
.lsa{letter-spacing:29.092347pt;}
.ls18{letter-spacing:32.343925pt;}
.ls15{letter-spacing:730.103744pt;}
.ws53{word-spacing:-58.181867pt;}
.ws49{word-spacing:-19.128267pt;}
.ws3{word-spacing:-15.940267pt;}
.ws23{word-spacing:-14.545467pt;}
.ws5{word-spacing:-13.283467pt;}
.ws4c{word-spacing:-10.626800pt;}
.ws3e{word-spacing:-3.490912pt;}
.ws50{word-spacing:-3.025457pt;}
.ws20{word-spacing:-2.850911pt;}
.ws45{word-spacing:-2.501820pt;}
.ws2e{word-spacing:-2.269093pt;}
.ws2f{word-spacing:-2.210911pt;}
.ws5e{word-spacing:-2.094547pt;}
.ws7{word-spacing:-1.753418pt;}
.ws1f{word-spacing:-1.570910pt;}
.ws1e{word-spacing:-1.512729pt;}
.ws6c{word-spacing:-1.454547pt;}
.ws29{word-spacing:-1.105455pt;}
.ws43{word-spacing:-0.989092pt;}
.ws15{word-spacing:-0.956410pt;}
.wsd{word-spacing:-0.850142pt;}
.ws60{word-spacing:-0.756364pt;}
.ws6d{word-spacing:-0.581819pt;}
.ws71{word-spacing:-0.465455pt;}
.ws3f{word-spacing:-0.290909pt;}
.ws26{word-spacing:-0.232727pt;}
.ws4a{word-spacing:-0.058182pt;}
.ws48{word-spacing:-0.053134pt;}
.ws3c{word-spacing:-0.042507pt;}
.ws14{word-spacing:-0.037194pt;}
.ws52{word-spacing:-0.009023pt;}
.ws76{word-spacing:-0.006667pt;}
.ws79{word-spacing:-0.005220pt;}
.ws7d{word-spacing:-0.003303pt;}
.ws73{word-spacing:-0.003146pt;}
.ws0{word-spacing:0.000000pt;}
.ws6f{word-spacing:0.000264pt;}
.ws72{word-spacing:0.001333pt;}
.ws7f{word-spacing:0.001336pt;}
.ws33{word-spacing:0.058182pt;}
.ws3b{word-spacing:0.290909pt;}
.wsf{word-spacing:0.425071pt;}
.ws5f{word-spacing:0.523637pt;}
.ws4e{word-spacing:0.698182pt;}
.ws2c{word-spacing:0.756364pt;}
.ws7e{word-spacing:1.105455pt;}
.ws5b{word-spacing:1.163637pt;}
.ws19{word-spacing:1.328347pt;}
.ws7c{word-spacing:1.396365pt;}
.ws38{word-spacing:1.512729pt;}
.ws31{word-spacing:1.629092pt;}
.ws64{word-spacing:1.687274pt;}
.ws61{word-spacing:1.803638pt;}
.ws68{word-spacing:1.861820pt;}
.ws46{word-spacing:1.920002pt;}
.ws35{word-spacing:1.978183pt;}
.ws5a{word-spacing:2.074956pt;}
.ws58{word-spacing:2.094547pt;}
.ws6b{word-spacing:2.152729pt;}
.ws44{word-spacing:2.210911pt;}
.ws41{word-spacing:2.269093pt;}
.ws6{word-spacing:2.323017pt;}
.ws6a{word-spacing:2.385457pt;}
.ws63{word-spacing:2.501820pt;}
.ws30{word-spacing:2.560002pt;}
.ws4d{word-spacing:2.618184pt;}
.ws1b{word-spacing:2.656693pt;}
.ws28{word-spacing:2.734548pt;}
.ws8{word-spacing:3.081764pt;}
.ws40{word-spacing:3.141821pt;}
.ws65{word-spacing:3.200003pt;}
.ws21{word-spacing:3.258185pt;}
.ws25{word-spacing:3.374548pt;}
.ws7a{word-spacing:3.607276pt;}
.ws69{word-spacing:3.781821pt;}
.ws4{word-spacing:3.820049pt;}
.ws2{word-spacing:3.823753pt;}
.ws1{word-spacing:3.825664pt;}
.wse{word-spacing:4.043497pt;}
.ws2b{word-spacing:4.072731pt;}
.ws37{word-spacing:4.130913pt;}
.ws3a{word-spacing:4.363640pt;}
.ws22{word-spacing:4.421822pt;}
.ws67{word-spacing:4.480004pt;}
.ws32{word-spacing:4.538186pt;}
.ws42{word-spacing:4.654549pt;}
.ws74{word-spacing:4.945459pt;}
.ws4b{word-spacing:4.959802pt;}
.ws6e{word-spacing:5.061822pt;}
.ws2a{word-spacing:5.178186pt;}
.ws13{word-spacing:5.260253pt;}
.ws4f{word-spacing:5.643641pt;}
.ws3d{word-spacing:5.934550pt;}
.ws24{word-spacing:6.050914pt;}
.ws1d{word-spacing:6.109096pt;}
.ws2d{word-spacing:6.167278pt;}
.ws36{word-spacing:6.283642pt;}
.wsc{word-spacing:6.322930pt;}
.ws12{word-spacing:6.801135pt;}
.ws27{word-spacing:6.923642pt;}
.ws66{word-spacing:7.040006pt;}
.ws18{word-spacing:7.119938pt;}
.ws10{word-spacing:7.279340pt;}
.ws47{word-spacing:7.330915pt;}
.ws78{word-spacing:7.563643pt;}
.ws75{word-spacing:7.738188pt;}
.wsa{word-spacing:7.970080pt;}
.ws1a{word-spacing:8.498930pt;}
.ws59{word-spacing:8.650468pt;}
.ws56{word-spacing:8.727280pt;}
.ws5d{word-spacing:9.076371pt;}
.ws34{word-spacing:9.192735pt;}
.ws5c{word-spacing:9.250917pt;}
.ws11{word-spacing:9.298427pt;}
.ws17{word-spacing:9.670364pt;}
.ws77{word-spacing:11.636373pt;}
.ws70{word-spacing:14.487285pt;}
.wsb{word-spacing:15.813371pt;}
.ws7b{word-spacing:18.094561pt;}
.ws39{word-spacing:18.880162pt;}
.ws55{word-spacing:18.909107pt;}
.ws9{word-spacing:19.097441pt;}
.ws16{word-spacing:22.485799pt;}
.ws54{word-spacing:33.803665pt;}
.ws62{word-spacing:47.820800pt;}
.ws51{word-spacing:49.221859pt;}
.ws1c{word-spacing:57.384800pt;}
.ws57{word-spacing:157.789222pt;}
._49{margin-left:-2665.805299pt;}
._48{margin-left:-2632.865116pt;}
._52{margin-left:-2525.895139pt;}
._4d{margin-left:-2524.475085pt;}
._89{margin-left:-2522.497005pt;}
._24{margin-left:-2507.931292pt;}
._23{margin-left:-2506.887035pt;}
._4{margin-left:-2487.644250pt;}
._43{margin-left:-2460.028380pt;}
._8a{margin-left:-2449.287409pt;}
._40{margin-left:-2430.032854pt;}
._42{margin-left:-2423.082176pt;}
._74{margin-left:-2402.561898pt;}
._72{margin-left:-2391.413102pt;}
._1b{margin-left:-2362.797890pt;}
._11{margin-left:-2361.656354pt;}
._41{margin-left:-2330.922257pt;}
._77{margin-left:-2319.926761pt;}
._2{margin-left:-2301.807282pt;}
._3c{margin-left:-2245.650112pt;}
._35{margin-left:-2160.414019pt;}
._65{margin-left:-2146.175138pt;}
._80{margin-left:-2102.249394pt;}
._30{margin-left:-2097.785294pt;}
._8e{margin-left:-2061.863918pt;}
._14{margin-left:-2044.568311pt;}
._13{margin-left:-2014.712575pt;}
._8d{margin-left:-1995.236122pt;}
._9{margin-left:-1984.645197pt;}
._81{margin-left:-1982.429332pt;}
._c{margin-left:-1871.544796pt;}
._45{margin-left:-1849.088145pt;}
._54{margin-left:-1815.178499pt;}
._7e{margin-left:-1807.790852pt;}
._31{margin-left:-1795.783893pt;}
._4a{margin-left:-1773.606126pt;}
._7{margin-left:-1765.307725pt;}
._2c{margin-left:-1733.872415pt;}
._1d{margin-left:-1712.784684pt;}
._73{margin-left:-1706.124954pt;}
._a{margin-left:-1682.804523pt;}
._67{margin-left:-1661.508865pt;}
._20{margin-left:-1639.210026pt;}
._53{margin-left:-1585.487499pt;}
._57{margin-left:-1547.625130pt;}
._32{margin-left:-1528.466170pt;}
._44{margin-left:-1520.320708pt;}
._e{margin-left:-1514.666221pt;}
._56{margin-left:-1505.746605pt;}
._4b{margin-left:-1503.763317pt;}
._55{margin-left:-1502.430012pt;}
._51{margin-left:-1498.388068pt;}
._f{margin-left:-1480.296087pt;}
._33{margin-left:-1441.169783pt;}
._8f{margin-left:-1429.608933pt;}
._10{margin-left:-1396.889785pt;}
._87{margin-left:-1383.370839pt;}
._3e{margin-left:-1364.579633pt;}
._19{margin-left:-1361.750519pt;}
._36{margin-left:-1358.353918pt;}
._92{margin-left:-1305.691969pt;}
._94{margin-left:-1275.041839pt;}
._37{margin-left:-1259.170756pt;}
._8b{margin-left:-1216.259549pt;}
._34{margin-left:-1213.886376pt;}
._29{margin-left:-1211.782269pt;}
._75{margin-left:-1200.186609pt;}
._66{margin-left:-1196.697046pt;}
._2e{margin-left:-1189.612542pt;}
._39{margin-left:-1161.770524pt;}
._90{margin-left:-1140.858116pt;}
._4f{margin-left:-1087.209583pt;}
._59{margin-left:-1073.771157pt;}
._7a{margin-left:-1041.375521pt;}
._88{margin-left:-1039.167986pt;}
._50{margin-left:-1009.582813pt;}
._2a{margin-left:-933.731129pt;}
._93{margin-left:-878.518295pt;}
._91{margin-left:-847.738751pt;}
._83{margin-left:-830.044582pt;}
._95{margin-left:-777.815140pt;}
._6f{margin-left:-752.628104pt;}
._76{margin-left:-731.555462pt;}
._7f{margin-left:-699.414775pt;}
._21{margin-left:-672.338599pt;}
._7d{margin-left:-658.931607pt;}
._8c{margin-left:-647.360403pt;}
._22{margin-left:-618.311903pt;}
._78{margin-left:-616.498462pt;}
._3b{margin-left:-602.501762pt;}
._3d{margin-left:-587.932709pt;}
._70{margin-left:-565.464246pt;}
._82{margin-left:-547.609894pt;}
._58{margin-left:-479.522422pt;}
._84{margin-left:-474.789647pt;}
._86{margin-left:-461.513598pt;}
._96{margin-left:-457.556033pt;}
._7c{margin-left:-379.415015pt;}
._4e{margin-left:-377.785923pt;}
._7b{margin-left:-336.678067pt;}
._26{margin-left:-303.446967pt;}
._79{margin-left:-266.309467pt;}
._85{margin-left:-240.418536pt;}
._5a{margin-left:-200.040321pt;}
._0{margin-left:-8.447023pt;}
._2f{margin-left:-6.981824pt;}
._d{margin-left:-5.866018pt;}
._b{margin-left:-4.782080pt;}
._5{margin-left:-3.825664pt;}
._6{margin-left:-2.550443pt;}
._1{margin-left:-1.652678pt;}
._3f{width:2.650516pt;}
._47{width:12.285621pt;}
._17{width:13.496019pt;}
._27{width:15.254816pt;}
._18{width:16.471499pt;}
._1a{width:18.071077pt;}
._8{width:19.765931pt;}
._1f{width:21.370367pt;}
._16{width:22.741295pt;}
._3a{width:23.947231pt;}
._12{width:24.919801pt;}
._4c{width:26.298855pt;}
._25{width:27.227968pt;}
._3{width:28.462795pt;}
._15{width:29.659755pt;}
._38{width:30.596711pt;}
._1c{width:32.736016pt;}
._46{width:35.211513pt;}
._1e{width:36.933566pt;}
._28{width:38.749123pt;}
._71{width:45.440038pt;}
._2d{width:63.761067pt;}
._5f{width:67.898238pt;}
._6c{width:74.356426pt;}
._2b{width:76.513067pt;}
._63{width:88.227296pt;}
._5e{width:92.985790pt;}
._6a{width:98.758214pt;}
._64{width:111.185547pt;}
._60{width:124.800104pt;}
._5d{width:128.534388pt;}
._61{width:138.123751pt;}
._62{width:141.323754pt;}
._69{width:153.770762pt;}
._6d{width:157.028108pt;}
._5b{width:168.925545pt;}
._5c{width:180.131059pt;}
._6b{width:187.718288pt;}
._6e{width:313.075076pt;}
._68{width:651.404179pt;}
.fs1{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs6{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs7{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:54.637333pt;}
.y1b{bottom:94.488000pt;}
.yb8{bottom:97.989333pt;}
.y3b{bottom:119.105333pt;}
.y1a{bottom:120.280000pt;}
.yce{bottom:123.718667pt;}
.y54{bottom:128.858667pt;}
.y87{bottom:133.288000pt;}
.yb7{bottom:137.037333pt;}
.y6c{bottom:139.396000pt;}
.y19{bottom:146.070667pt;}
.y3a{bottom:148.334667pt;}
.ya1{bottom:161.476000pt;}
.y86{bottom:162.518667pt;}
.ycd{bottom:163.202667pt;}
.y6b{bottom:168.626667pt;}
.y53{bottom:170.044000pt;}
.y18{bottom:171.861333pt;}
.y39{bottom:177.565333pt;}
.yb6{bottom:188.400000pt;}
.ya0{bottom:190.705333pt;}
.y17{bottom:197.653333pt;}
.y6a{bottom:197.856000pt;}
.ycc{bottom:202.688000pt;}
.y38{bottom:206.794667pt;}
.y52{bottom:211.229333pt;}
.y85{bottom:214.166667pt;}
.y9f{bottom:219.936000pt;}
.y16{bottom:223.444000pt;}
.yb5{bottom:227.448000pt;}
.ycb{bottom:231.918667pt;}
.y84{bottom:232.232000pt;}
.y69{bottom:242.141333pt;}
.y37{bottom:245.844000pt;}
.y9e{bottom:249.166667pt;}
.y15{bottom:249.236000pt;}
.y83{bottom:250.297333pt;}
.y51{bottom:252.414667pt;}
.y82{bottom:268.362667pt;}
.yca{bottom:271.402667pt;}
.y14{bottom:275.026667pt;}
.yb4{bottom:278.810667pt;}
.y81{bottom:286.428000pt;}
.y9d{bottom:288.214667pt;}
.y50{bottom:293.600000pt;}
.y36{bottom:297.205333pt;}
.yc9{bottom:300.633333pt;}
.y13{bottom:300.818667pt;}
.y68{bottom:303.737333pt;}
.y80{bottom:304.494667pt;}
.yb3{bottom:317.858667pt;}
.y7f{bottom:322.560000pt;}
.y35{bottom:326.436000pt;}
.y12{bottom:326.609333pt;}
.y67{bottom:332.966667pt;}
.y4f{bottom:338.769333pt;}
.y9c{bottom:339.577333pt;}
.yc8{bottom:340.118667pt;}
.y7e{bottom:340.625333pt;}
.y11{bottom:352.400000pt;}
.y34{bottom:355.665333pt;}
.y7d{bottom:358.690667pt;}
.y66{bottom:362.197333pt;}
.y4e{bottom:368.000000pt;}
.y9b{bottom:368.806667pt;}
.yb2{bottom:369.221333pt;}
.yc7{bottom:369.348000pt;}
.y7c{bottom:376.756000pt;}
.y10{bottom:378.192000pt;}
.y33{bottom:384.896000pt;}
.y65{bottom:391.426667pt;}
.y4d{bottom:397.229333pt;}
.y9a{bottom:398.037333pt;}
.y7b{bottom:402.118667pt;}
.yf{bottom:403.982667pt;}
.yb1{bottom:408.269333pt;}
.yc6{bottom:408.833333pt;}
.y32{bottom:414.125333pt;}
.y7a{bottom:424.469333pt;}
.y99{bottom:427.266667pt;}
.ye{bottom:429.774667pt;}
.y64{bottom:430.474667pt;}
.y4c{bottom:436.278667pt;}
.yc5{bottom:438.064000pt;}
.y31{bottom:453.174667pt;}
.yd{bottom:455.565333pt;}
.y98{bottom:456.497333pt;}
.yb0{bottom:459.632000pt;}
.y79{bottom:466.157333pt;}
.yc4{bottom:467.293333pt;}
.yc{bottom:481.356000pt;}
.y63{bottom:481.837333pt;}
.y97{bottom:485.726667pt;}
.y4b{bottom:487.640000pt;}
.yaf{bottom:488.862667pt;}
.y78{bottom:495.388000pt;}
.y30{bottom:498.318667pt;}
.yc3{bottom:506.778667pt;}
.yb{bottom:507.148000pt;}
.y62{bottom:511.068000pt;}
.y96{bottom:514.957333pt;}
.y4a{bottom:516.870667pt;}
.yae{bottom:527.910667pt;}
.yc2{bottom:536.008000pt;}
.ya{bottom:537.248000pt;}
.y77{bottom:539.672000pt;}
.y61{bottom:540.297333pt;}
.y95{bottom:544.186667pt;}
.y49{bottom:546.101333pt;}
.y2f{bottom:559.914667pt;}
.y60{bottom:569.528000pt;}
.yad{bottom:573.054667pt;}
.y94{bottom:573.417333pt;}
.y48{bottom:575.330667pt;}
.yc1{bottom:575.493333pt;}
.y2e{bottom:589.144000pt;}
.y9{bottom:595.808000pt;}
.y5f{bottom:598.757333pt;}
.y76{bottom:601.268000pt;}
.y93{bottom:602.646667pt;}
.y47{bottom:604.561333pt;}
.yc0{bottom:604.724000pt;}
.yd9{bottom:618.336000pt;}
.y2d{bottom:618.374667pt;}
.y8{bottom:625.038667pt;}
.y5e{bottom:627.988000pt;}
.y75{bottom:630.498667pt;}
.y46{bottom:633.790667pt;}
.yac{bottom:634.650667pt;}
.yd8{bottom:644.126667pt;}
.ybf{bottom:644.208000pt;}
.y92{bottom:646.932000pt;}
.y2c{bottom:647.604000pt;}
.y7{bottom:655.128000pt;}
.y5d{bottom:657.217333pt;}
.y74{bottom:659.728000pt;}
.y45{bottom:663.021333pt;}
.yab{bottom:663.880000pt;}
.yd7{bottom:669.918667pt;}
.y2b{bottom:676.834667pt;}
.ybe{bottom:683.693333pt;}
.y5c{bottom:686.448000pt;}
.y73{bottom:688.958667pt;}
.yaa{bottom:693.110667pt;}
.yd6{bottom:695.709333pt;}
.y44{bottom:702.069333pt;}
.y2a{bottom:706.064000pt;}
.y91{bottom:708.528000pt;}
.ybd{bottom:712.924000pt;}
.y6{bottom:717.098667pt;}
.y72{bottom:718.188000pt;}
.yd5{bottom:721.500000pt;}
.ya9{bottom:722.341333pt;}
.y5b{bottom:725.496000pt;}
.y29{bottom:735.294667pt;}
.y90{bottom:737.757333pt;}
.y43{bottom:747.213333pt;}
.yd4{bottom:747.292000pt;}
.y71{bottom:747.418667pt;}
.ya8{bottom:751.570667pt;}
.ybc{bottom:752.408000pt;}
.y5{bottom:752.972000pt;}
.y28{bottom:764.525333pt;}
.y5a{bottom:776.858667pt;}
.y70{bottom:780.641333pt;}
.ya7{bottom:780.801333pt;}
.ybb{bottom:781.638667pt;}
.y8f{bottom:788.860000pt;}
.y6f{bottom:790.618667pt;}
.y27{bottom:793.754667pt;}
.y4{bottom:799.002667pt;}
.yd3{bottom:802.173333pt;}
.y59{bottom:806.089333pt;}
.y8e{bottom:806.925333pt;}
.y42{bottom:808.809333pt;}
.ya6{bottom:810.030667pt;}
.y26{bottom:822.985333pt;}
.y8d{bottom:824.990667pt;}
.yba{bottom:825.922667pt;}
.yd2{bottom:831.404000pt;}
.y58{bottom:835.318667pt;}
.y3{bottom:837.853333pt;}
.y41{bottom:838.038667pt;}
.y8c{bottom:843.057333pt;}
.y6e{bottom:849.078667pt;}
.y25{bottom:852.214667pt;}
.ya5{bottom:854.316000pt;}
.y8b{bottom:861.122667pt;}
.y57{bottom:864.549333pt;}
.y40{bottom:867.269333pt;}
.yd1{bottom:872.589333pt;}
.y8a{bottom:879.188000pt;}
.y24{bottom:881.445333pt;}
.yb9{bottom:886.681333pt;}
.y2{bottom:889.761333pt;}
.y6d{bottom:893.364000pt;}
.y56{bottom:893.778667pt;}
.y3f{bottom:896.500000pt;}
.y89{bottom:904.550667pt;}
.y23{bottom:910.674667pt;}
.yd0{bottom:913.774667pt;}
.ya4{bottom:915.910667pt;}
.y3e{bottom:925.729333pt;}
.y88{bottom:926.901333pt;}
.y55{bottom:932.826667pt;}
.y20{bottom:936.045333pt;}
.y1{bottom:937.045333pt;}
.y22{bottom:939.905333pt;}
.ycf{bottom:943.004000pt;}
.ya3{bottom:945.141333pt;}
.y3d{bottom:954.960000pt;}
.y1f{bottom:961.837333pt;}
.y21{bottom:969.134667pt;}
.ya2{bottom:974.372000pt;}
.y3c{bottom:984.189333pt;}
.y1e{bottom:987.628000pt;}
.y1d{bottom:1013.420000pt;}
.h6{height:20.731614pt;}
.h4{height:22.603298pt;}
.h5{height:28.267288pt;}
.h13{height:35.493423pt;}
.ha{height:36.556100pt;}
.h9{height:36.874903pt;}
.hb{height:40.029124pt;}
.hd{height:40.378215pt;}
.h10{height:40.880515pt;}
.hf{height:41.076398pt;}
.h7{height:43.867614pt;}
.h8{height:44.250180pt;}
.he{height:49.381955pt;}
.h3{height:51.403288pt;}
.hc{height:53.100068pt;}
.h2{height:63.719934pt;}
.h12{height:79.938458pt;}
.h11{height:82.996400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:67.910667pt;}
.x4{left:76.773333pt;}
.x2{left:95.181333pt;}
.x17{left:108.950667pt;}
.xe{left:117.070667pt;}
.xf{left:118.488000pt;}
.xc{left:130.852000pt;}
.x1{left:141.478667pt;}
.x12{left:154.794667pt;}
.x16{left:189.326667pt;}
.x13{left:213.772000pt;}
.x6{left:220.769333pt;}
.x15{left:225.820000pt;}
.x10{left:235.617333pt;}
.x8{left:248.870667pt;}
.x5{left:275.604000pt;}
.x7{left:296.388000pt;}
.x3{left:310.982667pt;}
.x9{left:338.134667pt;}
.xa{left:346.726667pt;}
.x14{left:353.157333pt;}
.x11{left:356.734667pt;}
.xb{left:372.137333pt;}
.x19{left:389.577333pt;}
.xd{left:393.214667pt;}
}




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