
    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_1f612b101b2655476bd802ff.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.868000;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_3bacd68e9b97c427a1841036.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.068000;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_06e0c7dea0eb1c1fbb91d25b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.019000;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_df3ccd53ac36b6c5849cae3a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.214000;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_60c8ea29ac7006d067ce0d89.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.052734;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_d6284a7cab73877c0960889f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.947000;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_a7fb50729e794b7b3c424fb8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e6f47e0dfff9af338906df20.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.214000;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_31cb40ccb073518923879c33.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.771484;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_85620f4f0c400fc91815be4b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910000;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;}
.m4{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);}
.m3{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.195000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.003333px;}
.ls1{letter-spacing:0.271800px;}
.ls5{letter-spacing:1.048800px;}
.ls7{letter-spacing:14.264132px;}
.ls4{letter-spacing:19.832047px;}
.ls0{letter-spacing:19.834165px;}
.ls6{letter-spacing:28.759800px;}
.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;}
}
.ws4{word-spacing:-53.460000px;}
.ws36{word-spacing:-43.722000px;}
.ws51{word-spacing:-43.602000px;}
.ws8d{word-spacing:-43.566000px;}
.ws8f{word-spacing:-43.554000px;}
.ws56{word-spacing:-43.540200px;}
.ws90{word-spacing:-43.530000px;}
.ws87{word-spacing:-43.484400px;}
.ws8c{word-spacing:-43.356000px;}
.ws72{word-spacing:-43.260000px;}
.ws9f{word-spacing:-43.204800px;}
.ws89{word-spacing:-43.167600px;}
.ws9{word-spacing:-43.156200px;}
.ws4d{word-spacing:-43.101000px;}
.ws76{word-spacing:-43.050600px;}
.ws6b{word-spacing:-43.022400px;}
.ws92{word-spacing:-43.008000px;}
.wsb{word-spacing:-42.964200px;}
.ws7c{word-spacing:-42.922800px;}
.ws30{word-spacing:-42.871200px;}
.ws88{word-spacing:-42.757200px;}
.ws2a{word-spacing:-42.741600px;}
.ws99{word-spacing:-42.731400px;}
.ws2d{word-spacing:-42.703200px;}
.ws8{word-spacing:-42.666600px;}
.wsa1{word-spacing:-42.577200px;}
.ws39{word-spacing:-42.561600px;}
.ws71{word-spacing:-42.534000px;}
.wsc{word-spacing:-42.511200px;}
.ws73{word-spacing:-42.451800px;}
.ws13{word-spacing:-42.450000px;}
.ws70{word-spacing:-42.228000px;}
.ws5c{word-spacing:-42.040800px;}
.ws4b{word-spacing:-42.006600px;}
.ws28{word-spacing:-41.967600px;}
.ws5d{word-spacing:-41.967000px;}
.ws93{word-spacing:-41.946000px;}
.wsa{word-spacing:-41.884800px;}
.ws41{word-spacing:-41.865000px;}
.wse{word-spacing:-41.709000px;}
.ws69{word-spacing:-41.685600px;}
.ws4f{word-spacing:-41.635800px;}
.ws61{word-spacing:-41.598000px;}
.ws83{word-spacing:-41.530800px;}
.ws60{word-spacing:-41.460000px;}
.ws67{word-spacing:-41.362200px;}
.ws50{word-spacing:-41.357400px;}
.ws6f{word-spacing:-41.190000px;}
.ws3d{word-spacing:-40.621800px;}
.ws7d{word-spacing:-40.534800px;}
.ws6a{word-spacing:-40.475400px;}
.ws8b{word-spacing:-40.474800px;}
.ws5f{word-spacing:-40.346400px;}
.ws3f{word-spacing:-40.317000px;}
.ws6e{word-spacing:-40.255800px;}
.ws74{word-spacing:-40.218600px;}
.ws52{word-spacing:-40.056600px;}
.ws86{word-spacing:-40.040400px;}
.ws9c{word-spacing:-39.888000px;}
.ws54{word-spacing:-39.714000px;}
.ws3e{word-spacing:-39.528600px;}
.ws84{word-spacing:-39.249000px;}
.ws5a{word-spacing:-39.184200px;}
.ws96{word-spacing:-39.060600px;}
.ws21{word-spacing:-38.930400px;}
.ws47{word-spacing:-38.752200px;}
.ws15{word-spacing:-38.717400px;}
.ws45{word-spacing:-38.694600px;}
.ws68{word-spacing:-38.614800px;}
.ws22{word-spacing:-38.607600px;}
.ws31{word-spacing:-38.541600px;}
.ws91{word-spacing:-38.532000px;}
.ws3b{word-spacing:-38.462400px;}
.ws11{word-spacing:-38.337000px;}
.ws63{word-spacing:-38.127000px;}
.ws17{word-spacing:-38.116800px;}
.ws6{word-spacing:-38.055600px;}
.ws3c{word-spacing:-37.987800px;}
.ws1a{word-spacing:-37.956600px;}
.ws42{word-spacing:-37.889400px;}
.ws57{word-spacing:-37.487400px;}
.ws32{word-spacing:-37.453800px;}
.ws7b{word-spacing:-37.434600px;}
.ws14{word-spacing:-37.410000px;}
.ws6c{word-spacing:-37.348800px;}
.ws2e{word-spacing:-37.262400px;}
.ws44{word-spacing:-37.215600px;}
.ws82{word-spacing:-37.082400px;}
.ws5b{word-spacing:-37.043400px;}
.ws27{word-spacing:-37.029000px;}
.ws80{word-spacing:-36.757800px;}
.ws3a{word-spacing:-36.555600px;}
.ws43{word-spacing:-36.453000px;}
.ws66{word-spacing:-36.380400px;}
.ws48{word-spacing:-36.119400px;}
.ws59{word-spacing:-36.098400px;}
.ws78{word-spacing:-35.763000px;}
.ws5e{word-spacing:-35.567400px;}
.ws40{word-spacing:-35.478000px;}
.ws53{word-spacing:-35.471400px;}
.ws1c{word-spacing:-35.413800px;}
.ws19{word-spacing:-35.395200px;}
.ws10{word-spacing:-35.365800px;}
.ws12{word-spacing:-35.169600px;}
.ws6d{word-spacing:-35.038200px;}
.ws58{word-spacing:-35.029200px;}
.ws9e{word-spacing:-35.016000px;}
.ws94{word-spacing:-34.212000px;}
.ws7f{word-spacing:-34.210800px;}
.ws7e{word-spacing:-34.210200px;}
.ws16{word-spacing:-34.209000px;}
.wsa0{word-spacing:-33.977400px;}
.ws1e{word-spacing:-33.924000px;}
.ws3{word-spacing:-33.922800px;}
.ws2f{word-spacing:-33.922200px;}
.ws24{word-spacing:-33.693600px;}
.ws7{word-spacing:-33.413400px;}
.ws34{word-spacing:-33.378600px;}
.ws2b{word-spacing:-33.373800px;}
.ws2{word-spacing:-32.842200px;}
.ws0{word-spacing:-32.643600px;}
.ws1d{word-spacing:-32.588400px;}
.ws9b{word-spacing:-31.704000px;}
.ws85{word-spacing:-31.338600px;}
.ws55{word-spacing:-31.062600px;}
.ws38{word-spacing:-30.510600px;}
.wsf{word-spacing:-30.379800px;}
.ws62{word-spacing:-30.270000px;}
.ws97{word-spacing:-30.046200px;}
.ws77{word-spacing:-29.392800px;}
.ws9d{word-spacing:-29.216400px;}
.ws46{word-spacing:-28.414200px;}
.ws29{word-spacing:-27.415200px;}
.ws25{word-spacing:-26.520600px;}
.ws4a{word-spacing:-26.073600px;}
.ws37{word-spacing:-25.355400px;}
.ws8a{word-spacing:-24.583200px;}
.ws26{word-spacing:-23.866800px;}
.ws65{word-spacing:-23.126400px;}
.ws98{word-spacing:-22.773000px;}
.ws95{word-spacing:-22.770000px;}
.ws64{word-spacing:-20.571600px;}
.ws7a{word-spacing:-18.162000px;}
.wsd{word-spacing:-15.181200px;}
.ws23{word-spacing:-13.740000px;}
.ws1b{word-spacing:-13.733400px;}
.ws4c{word-spacing:-13.020000px;}
.ws49{word-spacing:-11.103000px;}
.ws5{word-spacing:-6.335400px;}
.ws2c{word-spacing:-2.730600px;}
.ws75{word-spacing:-2.019600px;}
.ws20{word-spacing:0.000000px;}
.ws33{word-spacing:1.962600px;}
.ws18{word-spacing:5.804400px;}
.ws35{word-spacing:6.156600px;}
.ws8e{word-spacing:8.634000px;}
.ws9a{word-spacing:11.046000px;}
.ws81{word-spacing:15.113400px;}
.ws4e{word-spacing:18.613200px;}
.ws1f{word-spacing:19.539000px;}
.ws1{word-spacing:20.778000px;}
.ws79{word-spacing:35.455800px;}
._d{margin-left:-10.637400px;}
._8{margin-left:-9.571200px;}
._15{margin-left:-8.339424px;}
._c{margin-left:-6.786000px;}
._6{margin-left:-5.162400px;}
._7{margin-left:-3.949800px;}
._4{margin-left:-2.569800px;}
._1{margin-left:-1.123200px;}
._2{width:1.090800px;}
._5{width:2.320200px;}
._9{width:3.752400px;}
._a{width:5.205000px;}
._b{width:6.413400px;}
._e{width:8.049000px;}
._13{width:9.603600px;}
._14{width:10.932000px;}
._16{width:11.971200px;}
._f{width:15.557400px;}
._1c{width:16.989000px;}
._19{width:18.065400px;}
._10{width:19.854000px;}
._3{width:21.126000px;}
._1a{width:23.216400px;}
._17{width:24.799200px;}
._12{width:30.291600px;}
._1f{width:32.335200px;}
._18{width:33.543000px;}
._1d{width:35.215200px;}
._1b{width:38.373600px;}
._11{width:74.083800px;}
._0{width:2018.908800px;}
._1e{width:2230.017847px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:38.880000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:67.200000px;}
.fs4{font-size:81.000000px;}
.fs5{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y44{bottom:30.312750px;}
.y16c{bottom:55.346700px;}
.y1{bottom:56.019000px;}
.y4d{bottom:114.829050px;}
.y4c{bottom:131.329050px;}
.y4b{bottom:147.829050px;}
.y4a{bottom:164.329050px;}
.y186{bottom:175.736400px;}
.y169{bottom:176.243634px;}
.y132{bottom:176.243706px;}
.yfb{bottom:176.243778px;}
.y49{bottom:180.829050px;}
.y185{bottom:192.236400px;}
.y168{bottom:192.743634px;}
.y131{bottom:192.743706px;}
.yfa{bottom:192.743778px;}
.y48{bottom:197.329050px;}
.y184{bottom:208.736400px;}
.y167{bottom:209.243634px;}
.y130{bottom:209.243706px;}
.yf9{bottom:209.243778px;}
.y47{bottom:213.829050px;}
.y183{bottom:225.236400px;}
.y166{bottom:225.743634px;}
.y12f{bottom:225.743706px;}
.yf8{bottom:225.743778px;}
.y182{bottom:241.736400px;}
.y165{bottom:242.243634px;}
.y12e{bottom:242.243706px;}
.yf7{bottom:242.243778px;}
.y181{bottom:258.236400px;}
.y164{bottom:258.743634px;}
.y12d{bottom:258.743706px;}
.yf6{bottom:258.743778px;}
.y180{bottom:274.736400px;}
.y163{bottom:275.243634px;}
.y12c{bottom:275.243706px;}
.yf5{bottom:275.243778px;}
.y17f{bottom:291.236400px;}
.y162{bottom:291.743634px;}
.y12b{bottom:291.743706px;}
.yf4{bottom:291.743778px;}
.y4e{bottom:295.605000px;}
.y17e{bottom:307.736400px;}
.y161{bottom:308.243634px;}
.y12a{bottom:308.243706px;}
.yf3{bottom:308.243778px;}
.y17d{bottom:324.236400px;}
.y160{bottom:324.743634px;}
.y129{bottom:324.743706px;}
.yf2{bottom:324.743778px;}
.y17c{bottom:340.736400px;}
.y15f{bottom:341.243634px;}
.y128{bottom:341.243706px;}
.yf1{bottom:341.243778px;}
.y17b{bottom:357.236400px;}
.y15e{bottom:357.743634px;}
.y127{bottom:357.743706px;}
.yf0{bottom:357.743778px;}
.y17a{bottom:373.736400px;}
.y15d{bottom:374.243634px;}
.y126{bottom:374.243706px;}
.yef{bottom:374.243778px;}
.y179{bottom:390.236400px;}
.y15c{bottom:390.743634px;}
.y125{bottom:390.743706px;}
.yee{bottom:390.743778px;}
.y178{bottom:406.736400px;}
.y15b{bottom:407.243634px;}
.y124{bottom:407.243706px;}
.yed{bottom:407.243778px;}
.y177{bottom:423.236400px;}
.y15a{bottom:423.743634px;}
.y123{bottom:423.743706px;}
.yec{bottom:423.743778px;}
.y176{bottom:439.736400px;}
.y159{bottom:440.243634px;}
.y122{bottom:440.243706px;}
.yeb{bottom:440.243778px;}
.y175{bottom:456.236400px;}
.y158{bottom:456.743634px;}
.y121{bottom:456.743706px;}
.yea{bottom:456.743778px;}
.y77{bottom:470.597778px;}
.y9f{bottom:470.597856px;}
.y174{bottom:472.736400px;}
.y157{bottom:473.243634px;}
.y120{bottom:473.243706px;}
.ye9{bottom:473.243778px;}
.y76{bottom:487.097778px;}
.y9e{bottom:487.097856px;}
.y173{bottom:489.236400px;}
.y156{bottom:489.743484px;}
.y11f{bottom:489.743556px;}
.ye8{bottom:489.743628px;}
.y75{bottom:503.597778px;}
.y9d{bottom:503.597856px;}
.y172{bottom:505.736400px;}
.y155{bottom:506.243484px;}
.y11e{bottom:506.243556px;}
.ye7{bottom:506.243628px;}
.y74{bottom:520.097778px;}
.y9c{bottom:520.097856px;}
.yc4{bottom:520.097934px;}
.y171{bottom:522.236400px;}
.y154{bottom:522.743484px;}
.y11d{bottom:522.743556px;}
.ye6{bottom:522.743628px;}
.y42{bottom:527.597292px;}
.y30{bottom:527.597328px;}
.y1e{bottom:527.597364px;}
.y4f{bottom:532.215000px;}
.y73{bottom:536.597778px;}
.y9b{bottom:536.597856px;}
.yc3{bottom:536.597934px;}
.y170{bottom:538.736400px;}
.y153{bottom:539.243484px;}
.y11c{bottom:539.243556px;}
.ye5{bottom:539.243628px;}
.y41{bottom:544.097292px;}
.y2f{bottom:544.097328px;}
.y1d{bottom:544.097364px;}
.y72{bottom:553.097778px;}
.y9a{bottom:553.097856px;}
.yc2{bottom:553.097934px;}
.y16f{bottom:555.236400px;}
.y152{bottom:555.743484px;}
.y11b{bottom:555.743556px;}
.ye4{bottom:555.743628px;}
.y40{bottom:560.597292px;}
.y2e{bottom:560.597328px;}
.y1c{bottom:560.597364px;}
.y71{bottom:569.597778px;}
.y99{bottom:569.597856px;}
.yc1{bottom:569.597934px;}
.y16e{bottom:571.736400px;}
.y151{bottom:572.243484px;}
.y11a{bottom:572.243556px;}
.ye3{bottom:572.243628px;}
.y3f{bottom:577.097292px;}
.y2d{bottom:577.097328px;}
.y1b{bottom:577.097364px;}
.y70{bottom:586.097778px;}
.y98{bottom:586.097856px;}
.yc0{bottom:586.097934px;}
.y16d{bottom:588.236400px;}
.y150{bottom:588.743484px;}
.y119{bottom:588.743556px;}
.ye2{bottom:588.743628px;}
.y3e{bottom:593.597292px;}
.y2c{bottom:593.597328px;}
.y1a{bottom:593.597364px;}
.y6f{bottom:602.597778px;}
.y97{bottom:602.597856px;}
.ybf{bottom:602.597934px;}
.y14f{bottom:605.243484px;}
.y118{bottom:605.243556px;}
.ye1{bottom:605.243628px;}
.y3d{bottom:610.097292px;}
.y2b{bottom:610.097328px;}
.y19{bottom:610.097364px;}
.y6e{bottom:619.097778px;}
.y96{bottom:619.097856px;}
.ybe{bottom:619.097934px;}
.y14e{bottom:621.743484px;}
.y117{bottom:621.743556px;}
.ye0{bottom:621.743628px;}
.y3c{bottom:626.597292px;}
.y2a{bottom:626.597328px;}
.y18{bottom:626.597364px;}
.y6d{bottom:635.597778px;}
.y95{bottom:635.597856px;}
.ybd{bottom:635.597934px;}
.y14d{bottom:638.243484px;}
.y116{bottom:638.243556px;}
.ydf{bottom:638.243628px;}
.y187{bottom:640.912800px;}
.y3b{bottom:643.097292px;}
.y29{bottom:643.097328px;}
.y17{bottom:643.097364px;}
.y6c{bottom:652.097778px;}
.y94{bottom:652.097856px;}
.ybc{bottom:652.097934px;}
.y14c{bottom:654.743484px;}
.y115{bottom:654.743556px;}
.yde{bottom:654.743628px;}
.y3a{bottom:659.597292px;}
.y28{bottom:659.597328px;}
.y16{bottom:659.597364px;}
.y6b{bottom:668.597778px;}
.y93{bottom:668.597856px;}
.ybb{bottom:668.597934px;}
.y14b{bottom:671.243484px;}
.y114{bottom:671.243556px;}
.ydd{bottom:671.243628px;}
.y15{bottom:676.097364px;}
.y6a{bottom:685.097778px;}
.y92{bottom:685.097856px;}
.yba{bottom:685.097934px;}
.y14a{bottom:687.743484px;}
.y113{bottom:687.743556px;}
.ydc{bottom:687.743628px;}
.y14{bottom:692.597364px;}
.y69{bottom:701.597778px;}
.y91{bottom:701.597856px;}
.yb9{bottom:701.597934px;}
.y149{bottom:704.243484px;}
.y112{bottom:704.243556px;}
.ydb{bottom:704.243628px;}
.y13{bottom:709.097364px;}
.y68{bottom:718.097778px;}
.y90{bottom:718.097856px;}
.yb8{bottom:718.097934px;}
.y148{bottom:720.743484px;}
.y111{bottom:720.743556px;}
.yda{bottom:720.743628px;}
.y12{bottom:725.597364px;}
.y67{bottom:734.597778px;}
.y8f{bottom:734.597856px;}
.yb7{bottom:734.597934px;}
.y147{bottom:737.243484px;}
.y110{bottom:737.243556px;}
.yd9{bottom:737.243628px;}
.y11{bottom:742.097364px;}
.y66{bottom:751.097778px;}
.y8e{bottom:751.097856px;}
.yb6{bottom:751.097934px;}
.y146{bottom:753.743484px;}
.y10f{bottom:753.743556px;}
.yd8{bottom:753.743628px;}
.y10{bottom:758.597364px;}
.y65{bottom:767.597778px;}
.y8d{bottom:767.597856px;}
.yb5{bottom:767.597934px;}
.y145{bottom:770.243484px;}
.y10e{bottom:770.243556px;}
.yd7{bottom:770.243628px;}
.yf{bottom:775.097364px;}
.y64{bottom:784.097778px;}
.y8c{bottom:784.097856px;}
.yb4{bottom:784.097934px;}
.y144{bottom:786.743484px;}
.y10d{bottom:786.743556px;}
.yd6{bottom:786.743628px;}
.ye{bottom:791.597364px;}
.y63{bottom:800.597778px;}
.y8b{bottom:800.597856px;}
.yb3{bottom:800.597934px;}
.y143{bottom:803.243484px;}
.y10c{bottom:803.243556px;}
.yd5{bottom:803.243628px;}
.yd{bottom:808.097364px;}
.y62{bottom:817.097778px;}
.y8a{bottom:817.097856px;}
.yb2{bottom:817.097934px;}
.y142{bottom:819.743484px;}
.y10b{bottom:819.743556px;}
.yd4{bottom:819.743628px;}
.yc{bottom:824.597364px;}
.y61{bottom:833.597778px;}
.y89{bottom:833.597856px;}
.yb1{bottom:833.597934px;}
.y141{bottom:836.243484px;}
.y10a{bottom:836.243556px;}
.yd3{bottom:836.243628px;}
.yb{bottom:841.097364px;}
.y60{bottom:850.097778px;}
.y88{bottom:850.097856px;}
.yb0{bottom:850.097934px;}
.y140{bottom:852.743484px;}
.y109{bottom:852.743556px;}
.yd2{bottom:852.743628px;}
.y39{bottom:857.597292px;}
.y27{bottom:857.597328px;}
.ya{bottom:857.597364px;}
.y5f{bottom:866.597778px;}
.y87{bottom:866.597856px;}
.yaf{bottom:866.597934px;}
.y13f{bottom:869.243484px;}
.y108{bottom:869.243556px;}
.yd1{bottom:869.243628px;}
.y38{bottom:874.097292px;}
.y26{bottom:874.097328px;}
.y9{bottom:874.097364px;}
.y5e{bottom:883.097778px;}
.y86{bottom:883.097856px;}
.yae{bottom:883.097934px;}
.y13e{bottom:885.743484px;}
.y107{bottom:885.743556px;}
.yd0{bottom:885.743628px;}
.y37{bottom:890.597292px;}
.y25{bottom:890.597328px;}
.y8{bottom:890.597364px;}
.y5d{bottom:899.597778px;}
.y85{bottom:899.597856px;}
.yad{bottom:899.597934px;}
.y13d{bottom:902.243484px;}
.y106{bottom:902.243556px;}
.ycf{bottom:902.243628px;}
.y36{bottom:907.097292px;}
.y24{bottom:907.097328px;}
.y7{bottom:907.097364px;}
.y5c{bottom:916.097778px;}
.y84{bottom:916.097856px;}
.yac{bottom:916.097934px;}
.y13c{bottom:918.743484px;}
.y105{bottom:918.743556px;}
.yce{bottom:918.743628px;}
.y35{bottom:923.597292px;}
.y23{bottom:923.597328px;}
.y6{bottom:923.597364px;}
.y5b{bottom:932.597778px;}
.y83{bottom:932.597856px;}
.yab{bottom:932.597934px;}
.y13b{bottom:935.243484px;}
.y104{bottom:935.243556px;}
.ycd{bottom:935.243628px;}
.y34{bottom:940.097292px;}
.y22{bottom:940.097328px;}
.y5{bottom:940.097364px;}
.y5a{bottom:949.097778px;}
.y82{bottom:949.097856px;}
.yaa{bottom:949.097934px;}
.y13a{bottom:951.743484px;}
.y103{bottom:951.743556px;}
.ycc{bottom:951.743628px;}
.y33{bottom:956.597292px;}
.y21{bottom:956.597328px;}
.y4{bottom:956.597364px;}
.y59{bottom:965.597778px;}
.y81{bottom:965.597856px;}
.ya9{bottom:965.597934px;}
.y139{bottom:968.243520px;}
.y102{bottom:968.243592px;}
.ycb{bottom:968.243664px;}
.y32{bottom:973.097328px;}
.y20{bottom:973.097364px;}
.y3{bottom:973.097400px;}
.y46{bottom:975.568200px;}
.y58{bottom:982.097814px;}
.y80{bottom:982.097892px;}
.ya8{bottom:982.097970px;}
.y138{bottom:984.743520px;}
.y101{bottom:984.743592px;}
.yca{bottom:984.743664px;}
.y31{bottom:989.597328px;}
.y1f{bottom:989.597364px;}
.y2{bottom:989.597400px;}
.y57{bottom:998.597814px;}
.y7f{bottom:998.597892px;}
.ya7{bottom:998.597970px;}
.y137{bottom:1001.243520px;}
.y100{bottom:1001.243592px;}
.yc9{bottom:1001.243664px;}
.y56{bottom:1015.097814px;}
.y7e{bottom:1015.097892px;}
.ya6{bottom:1015.097970px;}
.y136{bottom:1017.743520px;}
.yff{bottom:1017.743592px;}
.yc8{bottom:1017.743664px;}
.y45{bottom:1025.217600px;}
.y55{bottom:1031.597814px;}
.y7d{bottom:1031.597892px;}
.ya5{bottom:1031.597970px;}
.y135{bottom:1034.243520px;}
.yfe{bottom:1034.243592px;}
.yc7{bottom:1034.243664px;}
.y54{bottom:1048.097814px;}
.y7c{bottom:1048.097892px;}
.ya4{bottom:1048.097970px;}
.y16b{bottom:1049.833500px;}
.y134{bottom:1050.743556px;}
.yfd{bottom:1050.743628px;}
.yc6{bottom:1050.743700px;}
.y53{bottom:1064.597850px;}
.y7b{bottom:1064.597928px;}
.ya3{bottom:1064.598006px;}
.y133{bottom:1067.243556px;}
.yfc{bottom:1067.243628px;}
.yc5{bottom:1067.243700px;}
.y43{bottom:1071.303000px;}
.y52{bottom:1081.097850px;}
.y7a{bottom:1081.097928px;}
.ya2{bottom:1081.098006px;}
.y51{bottom:1097.597850px;}
.y79{bottom:1097.597928px;}
.ya1{bottom:1097.598006px;}
.y16a{bottom:1101.147900px;}
.y50{bottom:1114.097850px;}
.y78{bottom:1114.097928px;}
.ya0{bottom:1114.098006px;}
.hc{height:39.528000px;}
.h7{height:42.180000px;}
.h9{height:45.720000px;}
.hb{height:47.374453px;}
.h2{height:48.660000px;}
.h3{height:48.660456px;}
.h1{height:50.588280px;}
.h8{height:58.886719px;}
.h5{height:78.084000px;}
.h4{height:83.697000px;}
.h6{height:121.640625px;}
.ha{height:138.816000px;}
.h0{height:1201.500000px;}
.w1{width:731.542500px;}
.w0{width:904.500000px;}
.x0{left:0.000000px;}
.x20{left:15.000000px;}
.x21{left:27.000000px;}
.x8{left:74.996496px;}
.x1{left:76.493250px;}
.x2{left:91.879350px;}
.x3{left:94.500000px;}
.xc{left:96.483600px;}
.xa{left:101.028600px;}
.x22{left:112.499250px;}
.xb{left:116.342100px;}
.x9{left:155.994600px;}
.xe{left:290.263650px;}
.xf{left:308.490150px;}
.x11{left:321.040650px;}
.x4{left:328.500000px;}
.x7{left:332.571000px;}
.x5{left:346.499100px;}
.x10{left:361.557150px;}
.x25{left:364.471965px;}
.xd{left:365.916150px;}
.x13{left:457.664100px;}
.x18{left:460.933500px;}
.x15{left:468.016950px;}
.x14{left:482.837250px;}
.x16{left:501.617250px;}
.x17{left:515.584950px;}
.x12{left:524.820750px;}
.x6{left:580.498950px;}
.x24{left:598.499694px;}
.x23{left:616.499844px;}
.x1b{left:642.105900px;}
.x1a{left:659.575800px;}
.x1c{left:668.118900px;}
.x1d{left:675.308550px;}
.x1e{left:682.705650px;}
.x1f{left:691.523550px;}
.x19{left:710.016750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.840000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.002963pt;}
.ls1{letter-spacing:0.241600pt;}
.ls5{letter-spacing:0.932267pt;}
.ls7{letter-spacing:12.679228pt;}
.ls4{letter-spacing:17.628486pt;}
.ls0{letter-spacing:17.630369pt;}
.ls6{letter-spacing:25.564267pt;}
.ws4{word-spacing:-47.520000pt;}
.ws36{word-spacing:-38.864000pt;}
.ws51{word-spacing:-38.757333pt;}
.ws8d{word-spacing:-38.725333pt;}
.ws8f{word-spacing:-38.714667pt;}
.ws56{word-spacing:-38.702400pt;}
.ws90{word-spacing:-38.693333pt;}
.ws87{word-spacing:-38.652800pt;}
.ws8c{word-spacing:-38.538667pt;}
.ws72{word-spacing:-38.453333pt;}
.ws9f{word-spacing:-38.404267pt;}
.ws89{word-spacing:-38.371200pt;}
.ws9{word-spacing:-38.361067pt;}
.ws4d{word-spacing:-38.312000pt;}
.ws76{word-spacing:-38.267200pt;}
.ws6b{word-spacing:-38.242133pt;}
.ws92{word-spacing:-38.229333pt;}
.wsb{word-spacing:-38.190400pt;}
.ws7c{word-spacing:-38.153600pt;}
.ws30{word-spacing:-38.107733pt;}
.ws88{word-spacing:-38.006400pt;}
.ws2a{word-spacing:-37.992533pt;}
.ws99{word-spacing:-37.983467pt;}
.ws2d{word-spacing:-37.958400pt;}
.ws8{word-spacing:-37.925867pt;}
.wsa1{word-spacing:-37.846400pt;}
.ws39{word-spacing:-37.832533pt;}
.ws71{word-spacing:-37.808000pt;}
.wsc{word-spacing:-37.787733pt;}
.ws73{word-spacing:-37.734933pt;}
.ws13{word-spacing:-37.733333pt;}
.ws70{word-spacing:-37.536000pt;}
.ws5c{word-spacing:-37.369600pt;}
.ws4b{word-spacing:-37.339200pt;}
.ws28{word-spacing:-37.304533pt;}
.ws5d{word-spacing:-37.304000pt;}
.ws93{word-spacing:-37.285333pt;}
.wsa{word-spacing:-37.230933pt;}
.ws41{word-spacing:-37.213333pt;}
.wse{word-spacing:-37.074667pt;}
.ws69{word-spacing:-37.053867pt;}
.ws4f{word-spacing:-37.009600pt;}
.ws61{word-spacing:-36.976000pt;}
.ws83{word-spacing:-36.916267pt;}
.ws60{word-spacing:-36.853333pt;}
.ws67{word-spacing:-36.766400pt;}
.ws50{word-spacing:-36.762133pt;}
.ws6f{word-spacing:-36.613333pt;}
.ws3d{word-spacing:-36.108267pt;}
.ws7d{word-spacing:-36.030933pt;}
.ws6a{word-spacing:-35.978133pt;}
.ws8b{word-spacing:-35.977600pt;}
.ws5f{word-spacing:-35.863467pt;}
.ws3f{word-spacing:-35.837333pt;}
.ws6e{word-spacing:-35.782933pt;}
.ws74{word-spacing:-35.749867pt;}
.ws52{word-spacing:-35.605867pt;}
.ws86{word-spacing:-35.591467pt;}
.ws9c{word-spacing:-35.456000pt;}
.ws54{word-spacing:-35.301333pt;}
.ws3e{word-spacing:-35.136533pt;}
.ws84{word-spacing:-34.888000pt;}
.ws5a{word-spacing:-34.830400pt;}
.ws96{word-spacing:-34.720533pt;}
.ws21{word-spacing:-34.604800pt;}
.ws47{word-spacing:-34.446400pt;}
.ws15{word-spacing:-34.415467pt;}
.ws45{word-spacing:-34.395200pt;}
.ws68{word-spacing:-34.324267pt;}
.ws22{word-spacing:-34.317867pt;}
.ws31{word-spacing:-34.259200pt;}
.ws91{word-spacing:-34.250667pt;}
.ws3b{word-spacing:-34.188800pt;}
.ws11{word-spacing:-34.077333pt;}
.ws63{word-spacing:-33.890667pt;}
.ws17{word-spacing:-33.881600pt;}
.ws6{word-spacing:-33.827200pt;}
.ws3c{word-spacing:-33.766933pt;}
.ws1a{word-spacing:-33.739200pt;}
.ws42{word-spacing:-33.679467pt;}
.ws57{word-spacing:-33.322133pt;}
.ws32{word-spacing:-33.292267pt;}
.ws7b{word-spacing:-33.275200pt;}
.ws14{word-spacing:-33.253333pt;}
.ws6c{word-spacing:-33.198933pt;}
.ws2e{word-spacing:-33.122133pt;}
.ws44{word-spacing:-33.080533pt;}
.ws82{word-spacing:-32.962133pt;}
.ws5b{word-spacing:-32.927467pt;}
.ws27{word-spacing:-32.914667pt;}
.ws80{word-spacing:-32.673600pt;}
.ws3a{word-spacing:-32.493867pt;}
.ws43{word-spacing:-32.402667pt;}
.ws66{word-spacing:-32.338133pt;}
.ws48{word-spacing:-32.106133pt;}
.ws59{word-spacing:-32.087467pt;}
.ws78{word-spacing:-31.789333pt;}
.ws5e{word-spacing:-31.615467pt;}
.ws40{word-spacing:-31.536000pt;}
.ws53{word-spacing:-31.530133pt;}
.ws1c{word-spacing:-31.478933pt;}
.ws19{word-spacing:-31.462400pt;}
.ws10{word-spacing:-31.436267pt;}
.ws12{word-spacing:-31.261867pt;}
.ws6d{word-spacing:-31.145067pt;}
.ws58{word-spacing:-31.137067pt;}
.ws9e{word-spacing:-31.125333pt;}
.ws94{word-spacing:-30.410667pt;}
.ws7f{word-spacing:-30.409600pt;}
.ws7e{word-spacing:-30.409067pt;}
.ws16{word-spacing:-30.408000pt;}
.wsa0{word-spacing:-30.202133pt;}
.ws1e{word-spacing:-30.154667pt;}
.ws3{word-spacing:-30.153600pt;}
.ws2f{word-spacing:-30.153067pt;}
.ws24{word-spacing:-29.949867pt;}
.ws7{word-spacing:-29.700800pt;}
.ws34{word-spacing:-29.669867pt;}
.ws2b{word-spacing:-29.665600pt;}
.ws2{word-spacing:-29.193067pt;}
.ws0{word-spacing:-29.016533pt;}
.ws1d{word-spacing:-28.967467pt;}
.ws9b{word-spacing:-28.181333pt;}
.ws85{word-spacing:-27.856533pt;}
.ws55{word-spacing:-27.611200pt;}
.ws38{word-spacing:-27.120533pt;}
.wsf{word-spacing:-27.004267pt;}
.ws62{word-spacing:-26.906667pt;}
.ws97{word-spacing:-26.707733pt;}
.ws77{word-spacing:-26.126933pt;}
.ws9d{word-spacing:-25.970133pt;}
.ws46{word-spacing:-25.257067pt;}
.ws29{word-spacing:-24.369067pt;}
.ws25{word-spacing:-23.573867pt;}
.ws4a{word-spacing:-23.176533pt;}
.ws37{word-spacing:-22.538133pt;}
.ws8a{word-spacing:-21.851733pt;}
.ws26{word-spacing:-21.214933pt;}
.ws65{word-spacing:-20.556800pt;}
.ws98{word-spacing:-20.242667pt;}
.ws95{word-spacing:-20.240000pt;}
.ws64{word-spacing:-18.285867pt;}
.ws7a{word-spacing:-16.144000pt;}
.wsd{word-spacing:-13.494400pt;}
.ws23{word-spacing:-12.213333pt;}
.ws1b{word-spacing:-12.207467pt;}
.ws4c{word-spacing:-11.573333pt;}
.ws49{word-spacing:-9.869333pt;}
.ws5{word-spacing:-5.631467pt;}
.ws2c{word-spacing:-2.427200pt;}
.ws75{word-spacing:-1.795200pt;}
.ws20{word-spacing:0.000000pt;}
.ws33{word-spacing:1.744533pt;}
.ws18{word-spacing:5.159467pt;}
.ws35{word-spacing:5.472533pt;}
.ws8e{word-spacing:7.674667pt;}
.ws9a{word-spacing:9.818667pt;}
.ws81{word-spacing:13.434133pt;}
.ws4e{word-spacing:16.545067pt;}
.ws1f{word-spacing:17.368000pt;}
.ws1{word-spacing:18.469333pt;}
.ws79{word-spacing:31.516267pt;}
._d{margin-left:-9.455467pt;}
._8{margin-left:-8.507733pt;}
._15{margin-left:-7.412821pt;}
._c{margin-left:-6.032000pt;}
._6{margin-left:-4.588800pt;}
._7{margin-left:-3.510933pt;}
._4{margin-left:-2.284267pt;}
._1{margin-left:-0.998400pt;}
._2{width:0.969600pt;}
._5{width:2.062400pt;}
._9{width:3.335467pt;}
._a{width:4.626667pt;}
._b{width:5.700800pt;}
._e{width:7.154667pt;}
._13{width:8.536533pt;}
._14{width:9.717333pt;}
._16{width:10.641067pt;}
._f{width:13.828800pt;}
._1c{width:15.101333pt;}
._19{width:16.058133pt;}
._10{width:17.648000pt;}
._3{width:18.778667pt;}
._1a{width:20.636800pt;}
._17{width:22.043733pt;}
._12{width:26.925867pt;}
._1f{width:28.742400pt;}
._18{width:29.816000pt;}
._1d{width:31.302400pt;}
._1b{width:34.109867pt;}
._11{width:65.852267pt;}
._0{width:1794.585600pt;}
._1e{width:1982.238086pt;}
.fs1{font-size:34.560000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:59.733333pt;}
.fs4{font-size:72.000000pt;}
.fs5{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:26.944667pt;}
.y16c{bottom:49.197067pt;}
.y1{bottom:49.794667pt;}
.y4d{bottom:102.070267pt;}
.y4c{bottom:116.736933pt;}
.y4b{bottom:131.403600pt;}
.y4a{bottom:146.070267pt;}
.y186{bottom:156.210133pt;}
.y169{bottom:156.661008pt;}
.y132{bottom:156.661072pt;}
.yfb{bottom:156.661136pt;}
.y49{bottom:160.736933pt;}
.y185{bottom:170.876800pt;}
.y168{bottom:171.327675pt;}
.y131{bottom:171.327739pt;}
.yfa{bottom:171.327803pt;}
.y48{bottom:175.403600pt;}
.y184{bottom:185.543467pt;}
.y167{bottom:185.994341pt;}
.y130{bottom:185.994405pt;}
.yf9{bottom:185.994469pt;}
.y47{bottom:190.070267pt;}
.y183{bottom:200.210133pt;}
.y166{bottom:200.661008pt;}
.y12f{bottom:200.661072pt;}
.yf8{bottom:200.661136pt;}
.y182{bottom:214.876800pt;}
.y165{bottom:215.327675pt;}
.y12e{bottom:215.327739pt;}
.yf7{bottom:215.327803pt;}
.y181{bottom:229.543467pt;}
.y164{bottom:229.994341pt;}
.y12d{bottom:229.994405pt;}
.yf6{bottom:229.994469pt;}
.y180{bottom:244.210133pt;}
.y163{bottom:244.661008pt;}
.y12c{bottom:244.661072pt;}
.yf5{bottom:244.661136pt;}
.y17f{bottom:258.876800pt;}
.y162{bottom:259.327675pt;}
.y12b{bottom:259.327739pt;}
.yf4{bottom:259.327803pt;}
.y4e{bottom:262.760000pt;}
.y17e{bottom:273.543467pt;}
.y161{bottom:273.994341pt;}
.y12a{bottom:273.994405pt;}
.yf3{bottom:273.994469pt;}
.y17d{bottom:288.210133pt;}
.y160{bottom:288.661008pt;}
.y129{bottom:288.661072pt;}
.yf2{bottom:288.661136pt;}
.y17c{bottom:302.876800pt;}
.y15f{bottom:303.327675pt;}
.y128{bottom:303.327739pt;}
.yf1{bottom:303.327803pt;}
.y17b{bottom:317.543467pt;}
.y15e{bottom:317.994341pt;}
.y127{bottom:317.994405pt;}
.yf0{bottom:317.994469pt;}
.y17a{bottom:332.210133pt;}
.y15d{bottom:332.661008pt;}
.y126{bottom:332.661072pt;}
.yef{bottom:332.661136pt;}
.y179{bottom:346.876800pt;}
.y15c{bottom:347.327675pt;}
.y125{bottom:347.327739pt;}
.yee{bottom:347.327803pt;}
.y178{bottom:361.543467pt;}
.y15b{bottom:361.994341pt;}
.y124{bottom:361.994405pt;}
.yed{bottom:361.994469pt;}
.y177{bottom:376.210133pt;}
.y15a{bottom:376.661008pt;}
.y123{bottom:376.661072pt;}
.yec{bottom:376.661136pt;}
.y176{bottom:390.876800pt;}
.y159{bottom:391.327675pt;}
.y122{bottom:391.327739pt;}
.yeb{bottom:391.327803pt;}
.y175{bottom:405.543467pt;}
.y158{bottom:405.994341pt;}
.y121{bottom:405.994405pt;}
.yea{bottom:405.994469pt;}
.y77{bottom:418.309136pt;}
.y9f{bottom:418.309205pt;}
.y174{bottom:420.210133pt;}
.y157{bottom:420.661008pt;}
.y120{bottom:420.661072pt;}
.ye9{bottom:420.661136pt;}
.y76{bottom:432.975803pt;}
.y9e{bottom:432.975872pt;}
.y173{bottom:434.876800pt;}
.y156{bottom:435.327541pt;}
.y11f{bottom:435.327605pt;}
.ye8{bottom:435.327669pt;}
.y75{bottom:447.642469pt;}
.y9d{bottom:447.642539pt;}
.y172{bottom:449.543467pt;}
.y155{bottom:449.994208pt;}
.y11e{bottom:449.994272pt;}
.ye7{bottom:449.994336pt;}
.y74{bottom:462.309136pt;}
.y9c{bottom:462.309205pt;}
.yc4{bottom:462.309275pt;}
.y171{bottom:464.210133pt;}
.y154{bottom:464.660875pt;}
.y11d{bottom:464.660939pt;}
.ye6{bottom:464.661003pt;}
.y42{bottom:468.975371pt;}
.y30{bottom:468.975403pt;}
.y1e{bottom:468.975435pt;}
.y4f{bottom:473.080000pt;}
.y73{bottom:476.975803pt;}
.y9b{bottom:476.975872pt;}
.yc3{bottom:476.975941pt;}
.y170{bottom:478.876800pt;}
.y153{bottom:479.327541pt;}
.y11c{bottom:479.327605pt;}
.ye5{bottom:479.327669pt;}
.y41{bottom:483.642037pt;}
.y2f{bottom:483.642069pt;}
.y1d{bottom:483.642101pt;}
.y72{bottom:491.642469pt;}
.y9a{bottom:491.642539pt;}
.yc2{bottom:491.642608pt;}
.y16f{bottom:493.543467pt;}
.y152{bottom:493.994208pt;}
.y11b{bottom:493.994272pt;}
.ye4{bottom:493.994336pt;}
.y40{bottom:498.308704pt;}
.y2e{bottom:498.308736pt;}
.y1c{bottom:498.308768pt;}
.y71{bottom:506.309136pt;}
.y99{bottom:506.309205pt;}
.yc1{bottom:506.309275pt;}
.y16e{bottom:508.210133pt;}
.y151{bottom:508.660875pt;}
.y11a{bottom:508.660939pt;}
.ye3{bottom:508.661003pt;}
.y3f{bottom:512.975371pt;}
.y2d{bottom:512.975403pt;}
.y1b{bottom:512.975435pt;}
.y70{bottom:520.975803pt;}
.y98{bottom:520.975872pt;}
.yc0{bottom:520.975941pt;}
.y16d{bottom:522.876800pt;}
.y150{bottom:523.327541pt;}
.y119{bottom:523.327605pt;}
.ye2{bottom:523.327669pt;}
.y3e{bottom:527.642037pt;}
.y2c{bottom:527.642069pt;}
.y1a{bottom:527.642101pt;}
.y6f{bottom:535.642469pt;}
.y97{bottom:535.642539pt;}
.ybf{bottom:535.642608pt;}
.y14f{bottom:537.994208pt;}
.y118{bottom:537.994272pt;}
.ye1{bottom:537.994336pt;}
.y3d{bottom:542.308704pt;}
.y2b{bottom:542.308736pt;}
.y19{bottom:542.308768pt;}
.y6e{bottom:550.309136pt;}
.y96{bottom:550.309205pt;}
.ybe{bottom:550.309275pt;}
.y14e{bottom:552.660875pt;}
.y117{bottom:552.660939pt;}
.ye0{bottom:552.661003pt;}
.y3c{bottom:556.975371pt;}
.y2a{bottom:556.975403pt;}
.y18{bottom:556.975435pt;}
.y6d{bottom:564.975803pt;}
.y95{bottom:564.975872pt;}
.ybd{bottom:564.975941pt;}
.y14d{bottom:567.327541pt;}
.y116{bottom:567.327605pt;}
.ydf{bottom:567.327669pt;}
.y187{bottom:569.700267pt;}
.y3b{bottom:571.642037pt;}
.y29{bottom:571.642069pt;}
.y17{bottom:571.642101pt;}
.y6c{bottom:579.642469pt;}
.y94{bottom:579.642539pt;}
.ybc{bottom:579.642608pt;}
.y14c{bottom:581.994208pt;}
.y115{bottom:581.994272pt;}
.yde{bottom:581.994336pt;}
.y3a{bottom:586.308704pt;}
.y28{bottom:586.308736pt;}
.y16{bottom:586.308768pt;}
.y6b{bottom:594.309136pt;}
.y93{bottom:594.309205pt;}
.ybb{bottom:594.309275pt;}
.y14b{bottom:596.660875pt;}
.y114{bottom:596.660939pt;}
.ydd{bottom:596.661003pt;}
.y15{bottom:600.975435pt;}
.y6a{bottom:608.975803pt;}
.y92{bottom:608.975872pt;}
.yba{bottom:608.975941pt;}
.y14a{bottom:611.327541pt;}
.y113{bottom:611.327605pt;}
.ydc{bottom:611.327669pt;}
.y14{bottom:615.642101pt;}
.y69{bottom:623.642469pt;}
.y91{bottom:623.642539pt;}
.yb9{bottom:623.642608pt;}
.y149{bottom:625.994208pt;}
.y112{bottom:625.994272pt;}
.ydb{bottom:625.994336pt;}
.y13{bottom:630.308768pt;}
.y68{bottom:638.309136pt;}
.y90{bottom:638.309205pt;}
.yb8{bottom:638.309275pt;}
.y148{bottom:640.660875pt;}
.y111{bottom:640.660939pt;}
.yda{bottom:640.661003pt;}
.y12{bottom:644.975435pt;}
.y67{bottom:652.975803pt;}
.y8f{bottom:652.975872pt;}
.yb7{bottom:652.975941pt;}
.y147{bottom:655.327541pt;}
.y110{bottom:655.327605pt;}
.yd9{bottom:655.327669pt;}
.y11{bottom:659.642101pt;}
.y66{bottom:667.642469pt;}
.y8e{bottom:667.642539pt;}
.yb6{bottom:667.642608pt;}
.y146{bottom:669.994208pt;}
.y10f{bottom:669.994272pt;}
.yd8{bottom:669.994336pt;}
.y10{bottom:674.308768pt;}
.y65{bottom:682.309136pt;}
.y8d{bottom:682.309205pt;}
.yb5{bottom:682.309275pt;}
.y145{bottom:684.660875pt;}
.y10e{bottom:684.660939pt;}
.yd7{bottom:684.661003pt;}
.yf{bottom:688.975435pt;}
.y64{bottom:696.975803pt;}
.y8c{bottom:696.975872pt;}
.yb4{bottom:696.975941pt;}
.y144{bottom:699.327541pt;}
.y10d{bottom:699.327605pt;}
.yd6{bottom:699.327669pt;}
.ye{bottom:703.642101pt;}
.y63{bottom:711.642469pt;}
.y8b{bottom:711.642539pt;}
.yb3{bottom:711.642608pt;}
.y143{bottom:713.994208pt;}
.y10c{bottom:713.994272pt;}
.yd5{bottom:713.994336pt;}
.yd{bottom:718.308768pt;}
.y62{bottom:726.309136pt;}
.y8a{bottom:726.309205pt;}
.yb2{bottom:726.309275pt;}
.y142{bottom:728.660875pt;}
.y10b{bottom:728.660939pt;}
.yd4{bottom:728.661003pt;}
.yc{bottom:732.975435pt;}
.y61{bottom:740.975803pt;}
.y89{bottom:740.975872pt;}
.yb1{bottom:740.975941pt;}
.y141{bottom:743.327541pt;}
.y10a{bottom:743.327605pt;}
.yd3{bottom:743.327669pt;}
.yb{bottom:747.642101pt;}
.y60{bottom:755.642469pt;}
.y88{bottom:755.642539pt;}
.yb0{bottom:755.642608pt;}
.y140{bottom:757.994208pt;}
.y109{bottom:757.994272pt;}
.yd2{bottom:757.994336pt;}
.y39{bottom:762.308704pt;}
.y27{bottom:762.308736pt;}
.ya{bottom:762.308768pt;}
.y5f{bottom:770.309136pt;}
.y87{bottom:770.309205pt;}
.yaf{bottom:770.309275pt;}
.y13f{bottom:772.660875pt;}
.y108{bottom:772.660939pt;}
.yd1{bottom:772.661003pt;}
.y38{bottom:776.975371pt;}
.y26{bottom:776.975403pt;}
.y9{bottom:776.975435pt;}
.y5e{bottom:784.975803pt;}
.y86{bottom:784.975872pt;}
.yae{bottom:784.975941pt;}
.y13e{bottom:787.327541pt;}
.y107{bottom:787.327605pt;}
.yd0{bottom:787.327669pt;}
.y37{bottom:791.642037pt;}
.y25{bottom:791.642069pt;}
.y8{bottom:791.642101pt;}
.y5d{bottom:799.642469pt;}
.y85{bottom:799.642539pt;}
.yad{bottom:799.642608pt;}
.y13d{bottom:801.994208pt;}
.y106{bottom:801.994272pt;}
.ycf{bottom:801.994336pt;}
.y36{bottom:806.308704pt;}
.y24{bottom:806.308736pt;}
.y7{bottom:806.308768pt;}
.y5c{bottom:814.309136pt;}
.y84{bottom:814.309205pt;}
.yac{bottom:814.309275pt;}
.y13c{bottom:816.660875pt;}
.y105{bottom:816.660939pt;}
.yce{bottom:816.661003pt;}
.y35{bottom:820.975371pt;}
.y23{bottom:820.975403pt;}
.y6{bottom:820.975435pt;}
.y5b{bottom:828.975803pt;}
.y83{bottom:828.975872pt;}
.yab{bottom:828.975941pt;}
.y13b{bottom:831.327541pt;}
.y104{bottom:831.327605pt;}
.ycd{bottom:831.327669pt;}
.y34{bottom:835.642037pt;}
.y22{bottom:835.642069pt;}
.y5{bottom:835.642101pt;}
.y5a{bottom:843.642469pt;}
.y82{bottom:843.642539pt;}
.yaa{bottom:843.642608pt;}
.y13a{bottom:845.994208pt;}
.y103{bottom:845.994272pt;}
.ycc{bottom:845.994336pt;}
.y33{bottom:850.308704pt;}
.y21{bottom:850.308736pt;}
.y4{bottom:850.308768pt;}
.y59{bottom:858.309136pt;}
.y81{bottom:858.309205pt;}
.ya9{bottom:858.309275pt;}
.y139{bottom:860.660907pt;}
.y102{bottom:860.660971pt;}
.ycb{bottom:860.661035pt;}
.y32{bottom:864.975403pt;}
.y20{bottom:864.975435pt;}
.y3{bottom:864.975467pt;}
.y46{bottom:867.171733pt;}
.y58{bottom:872.975835pt;}
.y80{bottom:872.975904pt;}
.ya8{bottom:872.975973pt;}
.y138{bottom:875.327573pt;}
.y101{bottom:875.327637pt;}
.yca{bottom:875.327701pt;}
.y31{bottom:879.642069pt;}
.y1f{bottom:879.642101pt;}
.y2{bottom:879.642133pt;}
.y57{bottom:887.642501pt;}
.y7f{bottom:887.642571pt;}
.ya7{bottom:887.642640pt;}
.y137{bottom:889.994240pt;}
.y100{bottom:889.994304pt;}
.yc9{bottom:889.994368pt;}
.y56{bottom:902.309168pt;}
.y7e{bottom:902.309237pt;}
.ya6{bottom:902.309307pt;}
.y136{bottom:904.660907pt;}
.yff{bottom:904.660971pt;}
.yc8{bottom:904.661035pt;}
.y45{bottom:911.304533pt;}
.y55{bottom:916.975835pt;}
.y7d{bottom:916.975904pt;}
.ya5{bottom:916.975973pt;}
.y135{bottom:919.327573pt;}
.yfe{bottom:919.327637pt;}
.yc7{bottom:919.327701pt;}
.y54{bottom:931.642501pt;}
.y7c{bottom:931.642571pt;}
.ya4{bottom:931.642640pt;}
.y16b{bottom:933.185333pt;}
.y134{bottom:933.994272pt;}
.yfd{bottom:933.994336pt;}
.yc6{bottom:933.994400pt;}
.y53{bottom:946.309200pt;}
.y7b{bottom:946.309269pt;}
.ya3{bottom:946.309339pt;}
.y133{bottom:948.660939pt;}
.yfc{bottom:948.661003pt;}
.yc5{bottom:948.661067pt;}
.y43{bottom:952.269333pt;}
.y52{bottom:960.975867pt;}
.y7a{bottom:960.975936pt;}
.ya2{bottom:960.976005pt;}
.y51{bottom:975.642533pt;}
.y79{bottom:975.642603pt;}
.ya1{bottom:975.642672pt;}
.y16a{bottom:978.798133pt;}
.y50{bottom:990.309200pt;}
.y78{bottom:990.309269pt;}
.ya0{bottom:990.309339pt;}
.hc{height:35.136000pt;}
.h7{height:37.493333pt;}
.h9{height:40.640000pt;}
.hb{height:42.110625pt;}
.h2{height:43.253333pt;}
.h3{height:43.253739pt;}
.h1{height:44.967360pt;}
.h8{height:52.343750pt;}
.h5{height:69.408000pt;}
.h4{height:74.397333pt;}
.h6{height:108.125000pt;}
.ha{height:123.392000pt;}
.h0{height:1068.000000pt;}
.w1{width:650.260000pt;}
.w0{width:804.000000pt;}
.x0{left:0.000000pt;}
.x20{left:13.333333pt;}
.x21{left:24.000000pt;}
.x8{left:66.663552pt;}
.x1{left:67.994000pt;}
.x2{left:81.670533pt;}
.x3{left:84.000000pt;}
.xc{left:85.763200pt;}
.xa{left:89.803200pt;}
.x22{left:99.999333pt;}
.xb{left:103.415200pt;}
.x9{left:138.661867pt;}
.xe{left:258.012133pt;}
.xf{left:274.213467pt;}
.x11{left:285.369467pt;}
.x4{left:292.000000pt;}
.x7{left:295.618667pt;}
.x5{left:307.999200pt;}
.x10{left:321.384133pt;}
.x25{left:323.975080pt;}
.xd{left:325.258800pt;}
.x13{left:406.812533pt;}
.x18{left:409.718667pt;}
.x15{left:416.015067pt;}
.x14{left:429.188667pt;}
.x16{left:445.882000pt;}
.x17{left:458.297733pt;}
.x12{left:466.507333pt;}
.x6{left:515.999067pt;}
.x24{left:531.999728pt;}
.x23{left:547.999861pt;}
.x1b{left:570.760800pt;}
.x1a{left:586.289600pt;}
.x1c{left:593.883467pt;}
.x1d{left:600.274267pt;}
.x1e{left:606.849467pt;}
.x1f{left:614.687600pt;}
.x19{left:631.126000pt;}
}




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