
    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_33a75adb00286d9a52db186a.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_047d8513d7cc9fd2cee7dd8b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_11ff18d78b56e5ae6398ae8e.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ed3fd336e4eace34bcd77668.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921000;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_3ac469f7b78216f8978e3d87.woff')format("woff");}.ff5{font-family:ff5;line-height:0.771000;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_3530f6cf54868d118a58d161.woff')format("woff");}.ff6{font-family:ff6;line-height:0.919000;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_ccd40148180ea84ceaf2175a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.704000;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_4fcd8285b5fb9106138be575.woff')format("woff");}.ff8{font-family:ff8;line-height:0.677000;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_23ce9f573adb747b2eb47b3d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.001000;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_9a081461c9d0a3551fb7781c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.708000;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_873c81760680864bce8e15d8.woff')format("woff");}.ffb{font-family:ffb;line-height:0.897000;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_b43ae751f387c07ec4cde715.woff')format("woff");}.ffc{font-family:ffc;line-height:1.626000;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_94a02b98303ca10c40716f72.woff')format("woff");}.ffd{font-family:ffd;line-height:0.704000;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_1dc59d384356befacfec35d7.woff')format("woff");}.ffe{font-family:ffe;line-height:0.918000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v9{vertical-align:-68.940000px;}
.v2{vertical-align:-26.034000px;}
.v4{vertical-align:-10.764000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:26.028000px;}
.v5{vertical-align:29.616000px;}
.v1{vertical-align:31.236000px;}
.v6{vertical-align:48.528000px;}
.vb{vertical-align:58.578000px;}
.va{vertical-align:60.732000px;}
.v8{vertical-align:86.970000px;}
.v7{vertical-align:97.734000px;}
.vc{vertical-align:107.106000px;}
.ls3{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.000163px;}
.ls2d{letter-spacing:0.002450px;}
.ls11{letter-spacing:0.002759px;}
.ls3c{letter-spacing:0.004391px;}
.ls40{letter-spacing:0.005226px;}
.ls3a{letter-spacing:0.007300px;}
.ls10{letter-spacing:0.012257px;}
.ls2b{letter-spacing:0.018628px;}
.ls13{letter-spacing:0.029034px;}
.ls27{letter-spacing:0.031459px;}
.ls22{letter-spacing:0.034936px;}
.ls1{letter-spacing:2.984915px;}
.ls28{letter-spacing:2.986200px;}
.ls2{letter-spacing:2.989895px;}
.ls6{letter-spacing:9.683712px;}
.ls7{letter-spacing:9.755443px;}
.ls33{letter-spacing:9.757697px;}
.ls39{letter-spacing:11.907379px;}
.ls9{letter-spacing:15.924326px;}
.lsf{letter-spacing:15.996058px;}
.ls3e{letter-spacing:17.215488px;}
.lse{letter-spacing:19.869542px;}
.lsd{letter-spacing:19.941274px;}
.ls2c{letter-spacing:20.371661px;}
.ls43{letter-spacing:21.519360px;}
.ls34{letter-spacing:22.910915px;}
.ls1c{letter-spacing:22.912200px;}
.ls32{letter-spacing:23.107473px;}
.ls35{letter-spacing:23.110404px;}
.ls19{letter-spacing:23.111073px;}
.ls1e{letter-spacing:23.116404px;}
.ls1a{letter-spacing:23.384371px;}
.ls15{letter-spacing:23.456102px;}
.ls2e{letter-spacing:23.671296px;}
.ls12{letter-spacing:24.316877px;}
.ls5{letter-spacing:26.315971px;}
.ls42{letter-spacing:26.396915px;}
.ls37{letter-spacing:26.399971px;}
.ls1b{letter-spacing:26.404200px;}
.ls1d{letter-spacing:27.095518px;}
.ls29{letter-spacing:27.257856px;}
.ls14{letter-spacing:27.314915px;}
.ls17{letter-spacing:27.329587px;}
.ls41{letter-spacing:27.401318px;}
.ls4{letter-spacing:28.080023px;}
.ls3f{letter-spacing:28.322915px;}
.ls3d{letter-spacing:28.835942px;}
.ls8{letter-spacing:29.696717px;}
.ls24{letter-spacing:31.274803px;}
.ls16{letter-spacing:31.705190px;}
.lsa{letter-spacing:33.139814px;}
.lsc{letter-spacing:33.211546px;}
.ls2f{letter-spacing:33.426739px;}
.ls25{letter-spacing:33.857126px;}
.ls26{letter-spacing:34.215782px;}
.ls23{letter-spacing:34.233056px;}
.ls2a{letter-spacing:35.937331px;}
.ls21{letter-spacing:39.011487px;}
.lsb{letter-spacing:39.093504px;}
.ls20{letter-spacing:41.833114px;}
.ls31{letter-spacing:52.380163px;}
.ls38{letter-spacing:56.364163px;}
.ls30{letter-spacing:58.934450px;}
.ls36{letter-spacing:66.119464px;}
.ls18{letter-spacing:97.307318px;}
.ls3b{letter-spacing:181.682807px;}
.ls0{letter-spacing:251.884200px;}
.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;}
}
.ws64{word-spacing:-71.731200px;}
.ws50{word-spacing:-51.789926px;}
.ws34{word-spacing:-45.664082px;}
.ws56{word-spacing:-23.786066px;}
.ws57{word-spacing:-22.526108px;}
.ws3{word-spacing:-19.510886px;}
.ws29{word-spacing:-3.730022px;}
.ws5e{word-spacing:-3.586560px;}
.ws2e{word-spacing:-3.514829px;}
.ws20{word-spacing:-2.367130px;}
.ws5a{word-spacing:-2.223667px;}
.ws2d{word-spacing:-2.008474px;}
.ws38{word-spacing:-1.936742px;}
.ws39{word-spacing:-1.865011px;}
.ws22{word-spacing:-1.793280px;}
.ws61{word-spacing:-1.506355px;}
.ws21{word-spacing:-0.717312px;}
.wsd{word-spacing:-0.510546px;}
.ws48{word-spacing:-0.286925px;}
.ws7{word-spacing:-0.117818px;}
.ws12{word-spacing:-0.103292px;}
.ws71{word-spacing:-0.071731px;}
.ws49{word-spacing:-0.047821px;}
.ws4{word-spacing:0.000000px;}
.ws23{word-spacing:0.215194px;}
.ws26{word-spacing:0.358656px;}
.ws3a{word-spacing:0.430387px;}
.wsb{word-spacing:0.798546px;}
.ws3e{word-spacing:1.506355px;}
.ws63{word-spacing:1.649818px;}
.ws8{word-spacing:1.911274px;}
.ws51{word-spacing:2.295398px;}
.ws37{word-spacing:2.438861px;}
.ws6b{word-spacing:2.510592px;}
.wse{word-spacing:2.565820px;}
.ws78{word-spacing:2.654054px;}
.ws72{word-spacing:2.869248px;}
.ws1c{word-spacing:3.012710px;}
.ws19{word-spacing:3.084442px;}
.ws10{word-spacing:3.285821px;}
.ws3b{word-spacing:3.593136px;}
.ws11{word-spacing:3.613094px;}
.ws59{word-spacing:3.658291px;}
.ws1b{word-spacing:3.801754px;}
.ws2{word-spacing:3.873485px;}
.ws3d{word-spacing:3.945216px;}
.ws28{word-spacing:4.016947px;}
.ws4d{word-spacing:4.088678px;}
.ws4e{word-spacing:4.160410px;}
.ws70{word-spacing:4.447334px;}
.ws6{word-spacing:4.529458px;}
.ws1{word-spacing:4.648169px;}
.ws35{word-spacing:4.805990px;}
.ws9{word-spacing:4.922186px;}
.ws18{word-spacing:5.092915px;}
.ws2c{word-spacing:5.308109px;}
.ws17{word-spacing:5.738496px;}
.ws5c{word-spacing:5.810227px;}
.ws58{word-spacing:5.881958px;}
.ws46{word-spacing:6.671002px;}
.ws27{word-spacing:6.814464px;}
.ws55{word-spacing:6.957926px;}
.ws6d{word-spacing:7.029658px;}
.ws24{word-spacing:7.101389px;}
.wsf{word-spacing:7.213097px;}
.ws30{word-spacing:7.388314px;}
.ws1a{word-spacing:7.460045px;}
.ws6a{word-spacing:7.818701px;}
.ws6f{word-spacing:7.962163px;}
.ws7b{word-spacing:8.105626px;}
.ws66{word-spacing:8.177357px;}
.ws31{word-spacing:8.320819px;}
.wsc{word-spacing:8.456734px;}
.ws68{word-spacing:8.822938px;}
.ws5{word-spacing:8.914917px;}
.ws32{word-spacing:8.966400px;}
.ws25{word-spacing:9.038131px;}
.ws7a{word-spacing:9.540250px;}
.ws2f{word-spacing:9.683712px;}
.ws33{word-spacing:9.755443px;}
.ws4a{word-spacing:10.329293px;}
.ws53{word-spacing:10.544486px;}
.ws1e{word-spacing:10.616218px;}
.ws2b{word-spacing:10.831411px;}
.ws3f{word-spacing:10.903142px;}
.ws1f{word-spacing:10.974874px;}
.ws65{word-spacing:11.118336px;}
.ws75{word-spacing:11.333530px;}
.ws6e{word-spacing:11.476992px;}
.ws7c{word-spacing:11.620454px;}
.ws40{word-spacing:11.692186px;}
.ws41{word-spacing:11.763917px;}
.ws62{word-spacing:11.907379px;}
.ws6c{word-spacing:12.050842px;}
.wsa{word-spacing:12.056737px;}
.ws43{word-spacing:12.122573px;}
.ws42{word-spacing:12.194304px;}
.ws77{word-spacing:13.413734px;}
.ws69{word-spacing:13.485466px;}
.ws1d{word-spacing:13.628928px;}
.ws60{word-spacing:13.772390px;}
.ws67{word-spacing:15.207014px;}
.ws15{word-spacing:16.354714px;}
.ws4c{word-spacing:22.872682px;}
.ws79{word-spacing:23.886490px;}
.ws73{word-spacing:24.029952px;}
.ws74{word-spacing:25.034189px;}
.ws5d{word-spacing:26.154682px;}
.ws5f{word-spacing:26.352010px;}
.ws14{word-spacing:26.827469px;}
.ws4b{word-spacing:26.918453px;}
.ws5b{word-spacing:28.278010px;}
.ws3c{word-spacing:30.864931px;}
.ws76{word-spacing:31.848653px;}
.ws47{word-spacing:32.192873px;}
.ws54{word-spacing:34.242285px;}
.ws0{word-spacing:37.316475px;}
.ws36{word-spacing:38.631358px;}
.ws2a{word-spacing:52.220314px;}
.ws44{word-spacing:63.715845px;}
.ws45{word-spacing:63.721845px;}
.ws13{word-spacing:64.916736px;}
.ws16{word-spacing:116.100658px;}
.ws52{word-spacing:769.416530px;}
.ws4f{word-spacing:854.463009px;}
._1{margin-left:-9.670050px;}
._20{margin-left:-6.766646px;}
._1f{margin-left:-5.165051px;}
._2{margin-left:-3.347325px;}
._3{margin-left:-2.303235px;}
._5{margin-left:-1.162633px;}
._6{width:1.881088px;}
._0{width:3.099375px;}
._4{width:4.627319px;}
._30{width:5.666765px;}
._2e{width:7.151672px;}
._2f{width:18.728271px;}
._29{width:19.869542px;}
._37{width:22.237077px;}
._13{width:23.384371px;}
._22{width:24.396316px;}
._36{width:25.966694px;}
._21{width:27.616512px;}
._1e{width:29.680640px;}
._1c{width:31.656331px;}
._7{width:33.459624px;}
._1a{width:34.646170px;}
._1d{width:35.793869px;}
._32{width:37.810179px;}
._9{width:39.682583px;}
._1b{width:41.977281px;}
._8{width:44.259633px;}
._34{width:45.669138px;}
._14{width:47.772979px;}
._17{width:50.936988px;}
._2b{width:52.292045px;}
._33{width:53.334723px;}
._31{width:54.722260px;}
._2c{width:55.942500px;}
._35{width:59.321702px;}
._16{width:63.410381px;}
._d{width:64.988467px;}
._12{width:71.802931px;}
._23{width:76.098562px;}
._2d{width:96.836850px;}
._2a{width:116.203950px;}
._24{width:123.377664px;}
._28{width:130.622515px;}
._15{width:143.175475px;}
._25{width:207.255350px;}
._26{width:240.442982px;}
._27{width:354.567322px;}
._e{width:1243.826844px;}
._f{width:1458.295296px;}
._11{width:1686.902630px;}
._10{width:1893.775411px;}
._c{width:2099.269222px;}
._a{width:2118.285826px;}
._19{width:2175.965952px;}
._18{width:2193.898752px;}
._b{width:2390.272932px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs6{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y9{bottom:63.168000px;}
.y5d{bottom:108.000000px;}
.y37{bottom:114.034500px;}
.ybb{bottom:120.438000px;}
.y5c{bottom:129.669000px;}
.y36{bottom:135.703500px;}
.y78{bottom:137.508000px;}
.yba{bottom:142.107000px;}
.y5b{bottom:151.930500px;}
.yb9{bottom:163.776000px;}
.y5a{bottom:164.232000px;}
.y35{bottom:175.131000px;}
.y77{bottom:177.109500px;}
.yb8{bottom:185.445000px;}
.y99{bottom:187.975500px;}
.y59{bottom:203.109000px;}
.y98{bottom:209.644500px;}
.y76{bottom:216.711000px;}
.yb7{bottom:222.057000px;}
.y58{bottom:224.776500px;}
.y97{bottom:231.313500px;}
.y34{bottom:235.030500px;}
.y75{bottom:238.380000px;}
.yb6{bottom:243.726000px;}
.y57{bottom:246.445500px;}
.y33{bottom:256.699500px;}
.y96{bottom:270.915000px;}
.y74{bottom:271.629000px;}
.y32{bottom:278.368500px;}
.yb5{bottom:280.339500px;}
.y56{bottom:285.873000px;}
.y31{bottom:300.037500px;}
.yb4{bottom:302.007000px;}
.y95{bottom:310.516500px;}
.y73{bottom:316.287000px;}
.y30{bottom:321.706500px;}
.y94{bottom:332.185500px;}
.yb3{bottom:338.620500px;}
.y2f{bottom:343.374000px;}
.y55{bottom:344.353500px;}
.y92{bottom:361.509000px;}
.y93{bottom:363.852000px;}
.y2e{bottom:365.043000px;}
.y54{bottom:366.022500px;}
.yb2{bottom:375.232500px;}
.y91{bottom:376.153500px;}
.y2d{bottom:386.712000px;}
.y53{bottom:396.006000px;}
.yb1{bottom:396.901500px;}
.y72{bottom:400.123500px;}
.y90{bottom:402.034500px;}
.y71{bottom:421.791000px;}
.y8f{bottom:423.702000px;}
.y52{bottom:425.988000px;}
.y2c{bottom:435.802500px;}
.yb0{bottom:436.329000px;}
.y8e{bottom:445.371000px;}
.y51{bottom:447.657000px;}
.y2b{bottom:457.471500px;}
.y6f{bottom:457.756500px;}
.y50{bottom:469.326000px;}
.y8d{bottom:478.621500px;}
.y66{bottom:485.500500px;}
.y4f{bottom:490.995000px;}
.yaf{bottom:496.230000px;}
.y4e{bottom:512.664000px;}
.yae{bottom:517.897500px;}
.y67{bottom:520.779000px;}
.y8c{bottom:530.614500px;}
.y4d{bottom:534.331500px;}
.yad{bottom:539.566500px;}
.y8b{bottom:552.283500px;}
.y68{bottom:553.533000px;}
.y4c{bottom:556.000500px;}
.yac{bottom:561.235500px;}
.ycb{bottom:575.233500px;}
.yab{bottom:582.904500px;}
.y4b{bottom:583.261500px;}
.y69{bottom:586.285500px;}
.y70{bottom:586.498500px;}
.y8a{bottom:591.885000px;}
.yca{bottom:596.902500px;}
.yaa{bottom:604.573500px;}
.y4a{bottom:604.930500px;}
.y6a{bottom:618.292500px;}
.ya9{bottom:626.242500px;}
.y49{bottom:626.598000px;}
.y89{bottom:631.486500px;}
.yc9{bottom:633.514500px;}
.ya8{bottom:647.910000px;}
.y48{bottom:648.267000px;}
.y6b{bottom:651.046500px;}
.y88{bottom:655.147500px;}
.yc8{bottom:655.183500px;}
.ya7{bottom:669.579000px;}
.y47{bottom:669.936000px;}
.y6c{bottom:683.800500px;}
.ya6{bottom:691.248000px;}
.yc7{bottom:691.795500px;}
.y87{bottom:696.814500px;}
.y24{bottom:696.978000px;}
.y46{bottom:709.363500px;}
.ya5{bottom:712.917000px;}
.y6d{bottom:716.554500px;}
.yc6{bottom:728.409000px;}
.y86{bottom:728.695500px;}
.ya4{bottom:734.586000px;}
.y23{bottom:736.206000px;}
.y6e{bottom:749.308500px;}
.yc5{bottom:750.078000px;}
.y85{bottom:753.127500px;}
.ya3{bottom:756.255000px;}
.y22{bottom:775.434000px;}
.ya2{bottom:777.922500px;}
.yc4{bottom:786.690000px;}
.y84{bottom:788.296500px;}
.y8{bottom:790.135500px;}
.y45{bottom:790.776000px;}
.y21{bottom:797.101500px;}
.y65{bottom:799.119000px;}
.y83{bottom:809.965500px;}
.y7{bottom:811.804500px;}
.y44{bottom:812.445000px;}
.ya1{bottom:817.350000px;}
.y20{bottom:818.770500px;}
.y64{bottom:820.788000px;}
.yc3{bottom:823.303500px;}
.y6{bottom:826.965000px;}
.y82{bottom:831.633000px;}
.y43{bottom:834.114000px;}
.y1f{bottom:840.439500px;}
.yc2{bottom:844.971000px;}
.y42{bottom:855.781500px;}
.y63{bottom:860.215500px;}
.y1e{bottom:862.108500px;}
.y17{bottom:862.674000px;}
.y81{bottom:864.510000px;}
.ya0{bottom:877.251000px;}
.y41{bottom:877.450500px;}
.yc1{bottom:881.584500px;}
.y16{bottom:882.999000px;}
.y80{bottom:888.943500px;}
.y5{bottom:894.399000px;}
.y9f{bottom:898.920000px;}
.y40{bottom:899.119500px;}
.y1d{bottom:901.336500px;}
.yc0{bottom:903.253500px;}
.y15{bottom:903.322500px;}
.y62{bottom:920.115000px;}
.y9e{bottom:920.587500px;}
.y3f{bottom:920.788500px;}
.y14{bottom:923.646000px;}
.y7f{bottom:924.111000px;}
.y4{bottom:936.466500px;}
.ybf{bottom:939.865500px;}
.y1c{bottom:940.564500px;}
.y61{bottom:941.784000px;}
.y3e{bottom:942.457500px;}
.y13{bottom:943.969500px;}
.y7e{bottom:949.531500px;}
.y9d{bottom:957.201000px;}
.y60{bottom:963.453000px;}
.y12{bottom:964.293000px;}
.y2a{bottom:967.462500px;}
.y3d{bottom:973.110000px;}
.ybe{bottom:976.479000px;}
.y1b{bottom:979.791000px;}
.y11{bottom:984.616500px;}
.y29{bottom:989.131500px;}
.y3{bottom:989.704500px;}
.y7d{bottom:991.198500px;}
.y9c{bottom:993.813000px;}
.y5f{bottom:995.334000px;}
.ybd{bottom:998.146500px;}
.y10{bottom:1004.941500px;}
.y5e{bottom:1007.634000px;}
.y28{bottom:1010.800500px;}
.y7c{bottom:1012.867500px;}
.y3c{bottom:1016.146500px;}
.y1a{bottom:1019.019000px;}
.yf{bottom:1025.265000px;}
.y2{bottom:1027.063500px;}
.y9b{bottom:1030.426500px;}
.y27{bottom:1032.468000px;}
.ybc{bottom:1037.574000px;}
.y7b{bottom:1044.748500px;}
.ye{bottom:1045.588500px;}
.y3b{bottom:1050.226500px;}
.y26{bottom:1054.137000px;}
.y7a{bottom:1057.050000px;}
.y19{bottom:1058.247000px;}
.y1{bottom:1064.424000px;}
.yd{bottom:1065.912000px;}
.y9a{bottom:1067.038500px;}
.y3a{bottom:1071.895500px;}
.y25{bottom:1075.806000px;}
.yc{bottom:1086.235500px;}
.y39{bottom:1093.564500px;}
.y18{bottom:1097.475000px;}
.y79{bottom:1103.652000px;}
.yb{bottom:1106.560500px;}
.y38{bottom:1115.233500px;}
.ya{bottom:1136.902500px;}
.h7{height:33.713523px;}
.h6{height:35.865450px;}
.h8{height:45.687311px;}
.h9{height:49.090950px;}
.h14{height:50.498765px;}
.h5{height:53.798400px;}
.hb{height:61.893450px;}
.h18{height:61.899450px;}
.h4{height:64.557900px;}
.hc{height:65.481450px;}
.h17{height:66.747450px;}
.h3{height:76.067700px;}
.ha{height:77.469300px;}
.h2{height:87.030450px;}
.h12{height:99.698765px;}
.hf{height:99.704765px;}
.h13{height:102.320400px;}
.hd{height:102.326400px;}
.h15{height:114.687450px;}
.h10{height:148.226765px;}
.h11{height:151.526400px;}
.he{height:151.532400px;}
.h16{height:160.904400px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:108.000000px;}
.x2{left:119.191500px;}
.x2a{left:125.559000px;}
.x29{left:129.460500px;}
.x6{left:134.338500px;}
.x1{left:150.349500px;}
.xb{left:151.897500px;}
.xa{left:176.443500px;}
.x19{left:183.532500px;}
.x15{left:200.019000px;}
.x17{left:213.966000px;}
.x16{left:222.745500px;}
.x4{left:253.557000px;}
.x14{left:257.205000px;}
.xd{left:315.732000px;}
.x28{left:320.686500px;}
.x1a{left:327.262500px;}
.x25{left:331.824000px;}
.x24{left:344.391000px;}
.x21{left:346.989000px;}
.xe{left:348.645000px;}
.x22{left:354.304500px;}
.x23{left:356.061000px;}
.x5{left:373.002000px;}
.xc{left:381.964500px;}
.x1d{left:389.416500px;}
.x3{left:395.815500px;}
.x1b{left:398.323500px;}
.x9{left:410.455500px;}
.x26{left:413.080500px;}
.x11{left:424.546500px;}
.xf{left:427.018500px;}
.x1e{left:440.386500px;}
.x8{left:442.066500px;}
.x12{left:454.546500px;}
.x18{left:457.260000px;}
.x1c{left:471.618000px;}
.x20{left:487.111500px;}
.x1f{left:489.741000px;}
.x13{left:493.563000px;}
.x10{left:504.793500px;}
.x27{left:542.763000px;}
@media print{
.v9{vertical-align:-61.280000pt;}
.v2{vertical-align:-23.141333pt;}
.v4{vertical-align:-9.568000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:23.136000pt;}
.v5{vertical-align:26.325333pt;}
.v1{vertical-align:27.765333pt;}
.v6{vertical-align:43.136000pt;}
.vb{vertical-align:52.069333pt;}
.va{vertical-align:53.984000pt;}
.v8{vertical-align:77.306667pt;}
.v7{vertical-align:86.874667pt;}
.vc{vertical-align:95.205333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.000145pt;}
.ls2d{letter-spacing:0.002178pt;}
.ls11{letter-spacing:0.002452pt;}
.ls3c{letter-spacing:0.003903pt;}
.ls40{letter-spacing:0.004646pt;}
.ls3a{letter-spacing:0.006489pt;}
.ls10{letter-spacing:0.010895pt;}
.ls2b{letter-spacing:0.016558pt;}
.ls13{letter-spacing:0.025808pt;}
.ls27{letter-spacing:0.027964pt;}
.ls22{letter-spacing:0.031055pt;}
.ls1{letter-spacing:2.653258pt;}
.ls28{letter-spacing:2.654400pt;}
.ls2{letter-spacing:2.657684pt;}
.ls6{letter-spacing:8.607744pt;}
.ls7{letter-spacing:8.671505pt;}
.ls33{letter-spacing:8.673509pt;}
.ls39{letter-spacing:10.584337pt;}
.ls9{letter-spacing:14.154957pt;}
.lsf{letter-spacing:14.218718pt;}
.ls3e{letter-spacing:15.302656pt;}
.lse{letter-spacing:17.661815pt;}
.lsd{letter-spacing:17.725577pt;}
.ls2c{letter-spacing:18.108143pt;}
.ls43{letter-spacing:19.128320pt;}
.ls34{letter-spacing:20.365258pt;}
.ls1c{letter-spacing:20.366400pt;}
.ls32{letter-spacing:20.539976pt;}
.ls35{letter-spacing:20.542582pt;}
.ls19{letter-spacing:20.543176pt;}
.ls1e{letter-spacing:20.547915pt;}
.ls1a{letter-spacing:20.786108pt;}
.ls15{letter-spacing:20.849869pt;}
.ls2e{letter-spacing:21.041152pt;}
.ls12{letter-spacing:21.615002pt;}
.ls5{letter-spacing:23.391975pt;}
.ls42{letter-spacing:23.463925pt;}
.ls37{letter-spacing:23.466641pt;}
.ls1b{letter-spacing:23.470400pt;}
.ls1d{letter-spacing:24.084905pt;}
.ls29{letter-spacing:24.229205pt;}
.ls14{letter-spacing:24.279925pt;}
.ls17{letter-spacing:24.292966pt;}
.ls41{letter-spacing:24.356727pt;}
.ls4{letter-spacing:24.960021pt;}
.ls3f{letter-spacing:25.175925pt;}
.ls3d{letter-spacing:25.631949pt;}
.ls8{letter-spacing:26.397082pt;}
.ls24{letter-spacing:27.799825pt;}
.ls16{letter-spacing:28.182391pt;}
.lsa{letter-spacing:29.457613pt;}
.lsc{letter-spacing:29.521374pt;}
.ls2f{letter-spacing:29.712657pt;}
.ls25{letter-spacing:30.095223pt;}
.ls26{letter-spacing:30.414029pt;}
.ls23{letter-spacing:30.429383pt;}
.ls2a{letter-spacing:31.944294pt;}
.ls21{letter-spacing:34.676878pt;}
.lsb{letter-spacing:34.749781pt;}
.ls20{letter-spacing:37.184990pt;}
.ls31{letter-spacing:46.560145pt;}
.ls38{letter-spacing:50.101478pt;}
.ls30{letter-spacing:52.386178pt;}
.ls36{letter-spacing:58.772857pt;}
.ls18{letter-spacing:86.495394pt;}
.ls3b{letter-spacing:161.495828pt;}
.ls0{letter-spacing:223.897067pt;}
.ws64{word-spacing:-63.761067pt;}
.ws50{word-spacing:-46.035490pt;}
.ws34{word-spacing:-40.590295pt;}
.ws56{word-spacing:-21.143170pt;}
.ws57{word-spacing:-20.023207pt;}
.ws3{word-spacing:-17.343010pt;}
.ws29{word-spacing:-3.315575pt;}
.ws5e{word-spacing:-3.188053pt;}
.ws2e{word-spacing:-3.124292pt;}
.ws20{word-spacing:-2.104115pt;}
.ws5a{word-spacing:-1.976593pt;}
.ws2d{word-spacing:-1.785310pt;}
.ws38{word-spacing:-1.721549pt;}
.ws39{word-spacing:-1.657788pt;}
.ws22{word-spacing:-1.594027pt;}
.ws61{word-spacing:-1.338982pt;}
.ws21{word-spacing:-0.637611pt;}
.wsd{word-spacing:-0.453819pt;}
.ws48{word-spacing:-0.255044pt;}
.ws7{word-spacing:-0.104727pt;}
.ws12{word-spacing:-0.091815pt;}
.ws71{word-spacing:-0.063761pt;}
.ws49{word-spacing:-0.042507pt;}
.ws4{word-spacing:0.000000pt;}
.ws23{word-spacing:0.191283pt;}
.ws26{word-spacing:0.318805pt;}
.ws3a{word-spacing:0.382566pt;}
.wsb{word-spacing:0.709819pt;}
.ws3e{word-spacing:1.338982pt;}
.ws63{word-spacing:1.466505pt;}
.ws8{word-spacing:1.698911pt;}
.ws51{word-spacing:2.040354pt;}
.ws37{word-spacing:2.167876pt;}
.ws6b{word-spacing:2.231637pt;}
.wse{word-spacing:2.280729pt;}
.ws78{word-spacing:2.359159pt;}
.ws72{word-spacing:2.550443pt;}
.ws1c{word-spacing:2.677965pt;}
.ws19{word-spacing:2.741726pt;}
.ws10{word-spacing:2.920730pt;}
.ws3b{word-spacing:3.193899pt;}
.ws11{word-spacing:3.211639pt;}
.ws59{word-spacing:3.251814pt;}
.ws1b{word-spacing:3.379337pt;}
.ws2{word-spacing:3.443098pt;}
.ws3d{word-spacing:3.506859pt;}
.ws28{word-spacing:3.570620pt;}
.ws4d{word-spacing:3.634381pt;}
.ws4e{word-spacing:3.698142pt;}
.ws70{word-spacing:3.953186pt;}
.ws6{word-spacing:4.026185pt;}
.ws1{word-spacing:4.131706pt;}
.ws35{word-spacing:4.271991pt;}
.ws9{word-spacing:4.375276pt;}
.ws18{word-spacing:4.527036pt;}
.ws2c{word-spacing:4.718319pt;}
.ws17{word-spacing:5.100885pt;}
.ws5c{word-spacing:5.164646pt;}
.ws58{word-spacing:5.228407pt;}
.ws46{word-spacing:5.929779pt;}
.ws27{word-spacing:6.057301pt;}
.ws55{word-spacing:6.184823pt;}
.ws6d{word-spacing:6.248585pt;}
.ws24{word-spacing:6.312346pt;}
.wsf{word-spacing:6.411642pt;}
.ws30{word-spacing:6.567390pt;}
.ws1a{word-spacing:6.631151pt;}
.ws6a{word-spacing:6.949956pt;}
.ws6f{word-spacing:7.077478pt;}
.ws7b{word-spacing:7.205001pt;}
.ws66{word-spacing:7.268762pt;}
.ws31{word-spacing:7.396284pt;}
.wsc{word-spacing:7.517097pt;}
.ws68{word-spacing:7.842611pt;}
.ws5{word-spacing:7.924370pt;}
.ws32{word-spacing:7.970133pt;}
.ws25{word-spacing:8.033894pt;}
.ws7a{word-spacing:8.480222pt;}
.ws2f{word-spacing:8.607744pt;}
.ws33{word-spacing:8.671505pt;}
.ws4a{word-spacing:9.181594pt;}
.ws53{word-spacing:9.372877pt;}
.ws1e{word-spacing:9.436638pt;}
.ws2b{word-spacing:9.627921pt;}
.ws3f{word-spacing:9.691682pt;}
.ws1f{word-spacing:9.755443pt;}
.ws65{word-spacing:9.882965pt;}
.ws75{word-spacing:10.074249pt;}
.ws6e{word-spacing:10.201771pt;}
.ws7c{word-spacing:10.329293pt;}
.ws40{word-spacing:10.393054pt;}
.ws41{word-spacing:10.456815pt;}
.ws62{word-spacing:10.584337pt;}
.ws6c{word-spacing:10.711859pt;}
.wsa{word-spacing:10.717100pt;}
.ws43{word-spacing:10.775620pt;}
.ws42{word-spacing:10.839381pt;}
.ws77{word-spacing:11.923319pt;}
.ws69{word-spacing:11.987081pt;}
.ws1d{word-spacing:12.114603pt;}
.ws60{word-spacing:12.242125pt;}
.ws67{word-spacing:13.517346pt;}
.ws15{word-spacing:14.537523pt;}
.ws4c{word-spacing:20.331273pt;}
.ws79{word-spacing:21.232435pt;}
.ws73{word-spacing:21.359957pt;}
.ws74{word-spacing:22.252612pt;}
.ws5d{word-spacing:23.248607pt;}
.ws5f{word-spacing:23.424009pt;}
.ws14{word-spacing:23.846639pt;}
.ws4b{word-spacing:23.927514pt;}
.ws5b{word-spacing:25.136009pt;}
.ws3c{word-spacing:27.435494pt;}
.ws76{word-spacing:28.309914pt;}
.ws47{word-spacing:28.615887pt;}
.ws54{word-spacing:30.437587pt;}
.ws0{word-spacing:33.170200pt;}
.ws36{word-spacing:34.338985pt;}
.ws2a{word-spacing:46.418057pt;}
.ws44{word-spacing:56.636307pt;}
.ws45{word-spacing:56.641640pt;}
.ws13{word-spacing:57.703765pt;}
.ws16{word-spacing:103.200585pt;}
.ws52{word-spacing:683.925804pt;}
.ws4f{word-spacing:759.522674pt;}
._1{margin-left:-8.595600pt;}
._20{margin-left:-6.014797pt;}
._1f{margin-left:-4.591157pt;}
._2{margin-left:-2.975400pt;}
._3{margin-left:-2.047320pt;}
._5{margin-left:-1.033451pt;}
._6{width:1.672079pt;}
._0{width:2.755000pt;}
._4{width:4.113172pt;}
._30{width:5.037124pt;}
._2e{width:6.357041pt;}
._2f{width:16.647352pt;}
._29{width:17.661815pt;}
._37{width:19.766290pt;}
._13{width:20.786108pt;}
._22{width:21.685615pt;}
._36{width:23.081506pt;}
._21{width:24.548011pt;}
._1e{width:26.382791pt;}
._1c{width:28.138961pt;}
._7{width:29.741888pt;}
._1a{width:30.796595pt;}
._1d{width:31.816772pt;}
._32{width:33.609048pt;}
._9{width:35.273407pt;}
._1b{width:37.313138pt;}
._8{width:39.341896pt;}
._34{width:40.594789pt;}
._14{width:42.464870pt;}
._17{width:45.277323pt;}
._2b{width:46.481818pt;}
._33{width:47.408643pt;}
._31{width:48.642009pt;}
._2c{width:49.726666pt;}
._35{width:52.730402pt;}
._16{width:56.364783pt;}
._d{width:57.767526pt;}
._12{width:63.824828pt;}
._23{width:67.643166pt;}
._2d{width:86.077200pt;}
._2a{width:103.292400pt;}
._24{width:109.669035pt;}
._28{width:116.108902pt;}
._15{width:127.267089pt;}
._25{width:184.226978pt;}
._26{width:213.727095pt;}
._27{width:315.170953pt;}
._e{width:1105.623862pt;}
._f{width:1296.262485pt;}
._11{width:1499.469005pt;}
._10{width:1683.355921pt;}
._c{width:1866.017086pt;}
._a{width:1882.920734pt;}
._19{width:1934.191957pt;}
._18{width:1950.132224pt;}
._b{width:2124.687051pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs6{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:56.149333pt;}
.y5d{bottom:96.000000pt;}
.y37{bottom:101.364000pt;}
.ybb{bottom:107.056000pt;}
.y5c{bottom:115.261333pt;}
.y36{bottom:120.625333pt;}
.y78{bottom:122.229333pt;}
.yba{bottom:126.317333pt;}
.y5b{bottom:135.049333pt;}
.yb9{bottom:145.578667pt;}
.y5a{bottom:145.984000pt;}
.y35{bottom:155.672000pt;}
.y77{bottom:157.430667pt;}
.yb8{bottom:164.840000pt;}
.y99{bottom:167.089333pt;}
.y59{bottom:180.541333pt;}
.y98{bottom:186.350667pt;}
.y76{bottom:192.632000pt;}
.yb7{bottom:197.384000pt;}
.y58{bottom:199.801333pt;}
.y97{bottom:205.612000pt;}
.y34{bottom:208.916000pt;}
.y75{bottom:211.893333pt;}
.yb6{bottom:216.645333pt;}
.y57{bottom:219.062667pt;}
.y33{bottom:228.177333pt;}
.y96{bottom:240.813333pt;}
.y74{bottom:241.448000pt;}
.y32{bottom:247.438667pt;}
.yb5{bottom:249.190667pt;}
.y56{bottom:254.109333pt;}
.y31{bottom:266.700000pt;}
.yb4{bottom:268.450667pt;}
.y95{bottom:276.014667pt;}
.y73{bottom:281.144000pt;}
.y30{bottom:285.961333pt;}
.y94{bottom:295.276000pt;}
.yb3{bottom:300.996000pt;}
.y2f{bottom:305.221333pt;}
.y55{bottom:306.092000pt;}
.y92{bottom:321.341333pt;}
.y93{bottom:323.424000pt;}
.y2e{bottom:324.482667pt;}
.y54{bottom:325.353333pt;}
.yb2{bottom:333.540000pt;}
.y91{bottom:334.358667pt;}
.y2d{bottom:343.744000pt;}
.y53{bottom:352.005333pt;}
.yb1{bottom:352.801333pt;}
.y72{bottom:355.665333pt;}
.y90{bottom:357.364000pt;}
.y71{bottom:374.925333pt;}
.y8f{bottom:376.624000pt;}
.y52{bottom:378.656000pt;}
.y2c{bottom:387.380000pt;}
.yb0{bottom:387.848000pt;}
.y8e{bottom:395.885333pt;}
.y51{bottom:397.917333pt;}
.y2b{bottom:406.641333pt;}
.y6f{bottom:406.894667pt;}
.y50{bottom:417.178667pt;}
.y8d{bottom:425.441333pt;}
.y66{bottom:431.556000pt;}
.y4f{bottom:436.440000pt;}
.yaf{bottom:441.093333pt;}
.y4e{bottom:455.701333pt;}
.yae{bottom:460.353333pt;}
.y67{bottom:462.914667pt;}
.y8c{bottom:471.657333pt;}
.y4d{bottom:474.961333pt;}
.yad{bottom:479.614667pt;}
.y8b{bottom:490.918667pt;}
.y68{bottom:492.029333pt;}
.y4c{bottom:494.222667pt;}
.yac{bottom:498.876000pt;}
.ycb{bottom:511.318667pt;}
.yab{bottom:518.137333pt;}
.y4b{bottom:518.454667pt;}
.y69{bottom:521.142667pt;}
.y70{bottom:521.332000pt;}
.y8a{bottom:526.120000pt;}
.yca{bottom:530.580000pt;}
.yaa{bottom:537.398667pt;}
.y4a{bottom:537.716000pt;}
.y6a{bottom:549.593333pt;}
.ya9{bottom:556.660000pt;}
.y49{bottom:556.976000pt;}
.y89{bottom:561.321333pt;}
.yc9{bottom:563.124000pt;}
.ya8{bottom:575.920000pt;}
.y48{bottom:576.237333pt;}
.y6b{bottom:578.708000pt;}
.y88{bottom:582.353333pt;}
.yc8{bottom:582.385333pt;}
.ya7{bottom:595.181333pt;}
.y47{bottom:595.498667pt;}
.y6c{bottom:607.822667pt;}
.ya6{bottom:614.442667pt;}
.yc7{bottom:614.929333pt;}
.y87{bottom:619.390667pt;}
.y24{bottom:619.536000pt;}
.y46{bottom:630.545333pt;}
.ya5{bottom:633.704000pt;}
.y6d{bottom:636.937333pt;}
.yc6{bottom:647.474667pt;}
.y86{bottom:647.729333pt;}
.ya4{bottom:652.965333pt;}
.y23{bottom:654.405333pt;}
.y6e{bottom:666.052000pt;}
.yc5{bottom:666.736000pt;}
.y85{bottom:669.446667pt;}
.ya3{bottom:672.226667pt;}
.y22{bottom:689.274667pt;}
.ya2{bottom:691.486667pt;}
.yc4{bottom:699.280000pt;}
.y84{bottom:700.708000pt;}
.y8{bottom:702.342667pt;}
.y45{bottom:702.912000pt;}
.y21{bottom:708.534667pt;}
.y65{bottom:710.328000pt;}
.y83{bottom:719.969333pt;}
.y7{bottom:721.604000pt;}
.y44{bottom:722.173333pt;}
.ya1{bottom:726.533333pt;}
.y20{bottom:727.796000pt;}
.y64{bottom:729.589333pt;}
.yc3{bottom:731.825333pt;}
.y6{bottom:735.080000pt;}
.y82{bottom:739.229333pt;}
.y43{bottom:741.434667pt;}
.y1f{bottom:747.057333pt;}
.yc2{bottom:751.085333pt;}
.y42{bottom:760.694667pt;}
.y63{bottom:764.636000pt;}
.y1e{bottom:766.318667pt;}
.y17{bottom:766.821333pt;}
.y81{bottom:768.453333pt;}
.ya0{bottom:779.778667pt;}
.y41{bottom:779.956000pt;}
.yc1{bottom:783.630667pt;}
.y16{bottom:784.888000pt;}
.y80{bottom:790.172000pt;}
.y5{bottom:795.021333pt;}
.y9f{bottom:799.040000pt;}
.y40{bottom:799.217333pt;}
.y1d{bottom:801.188000pt;}
.yc0{bottom:802.892000pt;}
.y15{bottom:802.953333pt;}
.y62{bottom:817.880000pt;}
.y9e{bottom:818.300000pt;}
.y3f{bottom:818.478667pt;}
.y14{bottom:821.018667pt;}
.y7f{bottom:821.432000pt;}
.y4{bottom:832.414667pt;}
.ybf{bottom:835.436000pt;}
.y1c{bottom:836.057333pt;}
.y61{bottom:837.141333pt;}
.y3e{bottom:837.740000pt;}
.y13{bottom:839.084000pt;}
.y7e{bottom:844.028000pt;}
.y9d{bottom:850.845333pt;}
.y60{bottom:856.402667pt;}
.y12{bottom:857.149333pt;}
.y2a{bottom:859.966667pt;}
.y3d{bottom:864.986667pt;}
.ybe{bottom:867.981333pt;}
.y1b{bottom:870.925333pt;}
.y11{bottom:875.214667pt;}
.y29{bottom:879.228000pt;}
.y3{bottom:879.737333pt;}
.y7d{bottom:881.065333pt;}
.y9c{bottom:883.389333pt;}
.y5f{bottom:884.741333pt;}
.ybd{bottom:887.241333pt;}
.y10{bottom:893.281333pt;}
.y5e{bottom:895.674667pt;}
.y28{bottom:898.489333pt;}
.y7c{bottom:900.326667pt;}
.y3c{bottom:903.241333pt;}
.y1a{bottom:905.794667pt;}
.yf{bottom:911.346667pt;}
.y2{bottom:912.945333pt;}
.y9b{bottom:915.934667pt;}
.y27{bottom:917.749333pt;}
.ybc{bottom:922.288000pt;}
.y7b{bottom:928.665333pt;}
.ye{bottom:929.412000pt;}
.y3b{bottom:933.534667pt;}
.y26{bottom:937.010667pt;}
.y7a{bottom:939.600000pt;}
.y19{bottom:940.664000pt;}
.y1{bottom:946.154667pt;}
.yd{bottom:947.477333pt;}
.y9a{bottom:948.478667pt;}
.y3a{bottom:952.796000pt;}
.y25{bottom:956.272000pt;}
.yc{bottom:965.542667pt;}
.y39{bottom:972.057333pt;}
.y18{bottom:975.533333pt;}
.y79{bottom:981.024000pt;}
.yb{bottom:983.609333pt;}
.y38{bottom:991.318667pt;}
.ya{bottom:1010.580000pt;}
.h7{height:29.967576pt;}
.h6{height:31.880400pt;}
.h8{height:40.610943pt;}
.h9{height:43.636400pt;}
.h14{height:44.887791pt;}
.h5{height:47.820800pt;}
.hb{height:55.016400pt;}
.h18{height:55.021733pt;}
.h4{height:57.384800pt;}
.hc{height:58.205733pt;}
.h17{height:59.331067pt;}
.h3{height:67.615733pt;}
.ha{height:68.861600pt;}
.h2{height:77.360400pt;}
.h12{height:88.621124pt;}
.hf{height:88.626458pt;}
.h13{height:90.951467pt;}
.hd{height:90.956800pt;}
.h15{height:101.944400pt;}
.h10{height:131.757124pt;}
.h11{height:134.690133pt;}
.he{height:134.695467pt;}
.h16{height:143.026133pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:96.000000pt;}
.x2{left:105.948000pt;}
.x2a{left:111.608000pt;}
.x29{left:115.076000pt;}
.x6{left:119.412000pt;}
.x1{left:133.644000pt;}
.xb{left:135.020000pt;}
.xa{left:156.838667pt;}
.x19{left:163.140000pt;}
.x15{left:177.794667pt;}
.x17{left:190.192000pt;}
.x16{left:197.996000pt;}
.x4{left:225.384000pt;}
.x14{left:228.626667pt;}
.xd{left:280.650667pt;}
.x28{left:285.054667pt;}
.x1a{left:290.900000pt;}
.x25{left:294.954667pt;}
.x24{left:306.125333pt;}
.x21{left:308.434667pt;}
.xe{left:309.906667pt;}
.x22{left:314.937333pt;}
.x23{left:316.498667pt;}
.x5{left:331.557333pt;}
.xc{left:339.524000pt;}
.x1d{left:346.148000pt;}
.x3{left:351.836000pt;}
.x1b{left:354.065333pt;}
.x9{left:364.849333pt;}
.x26{left:367.182667pt;}
.x11{left:377.374667pt;}
.xf{left:379.572000pt;}
.x1e{left:391.454667pt;}
.x8{left:392.948000pt;}
.x12{left:404.041333pt;}
.x18{left:406.453333pt;}
.x1c{left:419.216000pt;}
.x20{left:432.988000pt;}
.x1f{left:435.325333pt;}
.x13{left:438.722667pt;}
.x10{left:448.705333pt;}
.x27{left:482.456000pt;}
}




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