
    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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_abdd9abadaff957579a38ce7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.049000;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_7ac5546079789b8dbc5e2de5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_ec975071da8e7f0015e6db68.woff')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_3f9ad96732ff468453499e8b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.920000;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_57f1568d7cc901924b49682c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.920000;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_838046e727c51e9274ee0110.woff')format("woff");}.ff7{font-family:ff7;line-height:1.049000;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_6c324f307b1a221bffc16014.woff')format("woff");}.ff8{font-family:ff8;line-height:1.112000;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_073490ec56ba912939eab873.woff')format("woff");}.ff9{font-family:ff9;line-height:1.073000;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_4725b5b2c5595a29b276d6a4.woff')format("woff");}.ffa{font-family:ffa;line-height:1.073000;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_610e9e62b0bd40cbe6685d7e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.902000;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_07dbcbf5a0eb28c747bf12a1.woff')format("woff");}.ffc{font-family:ffc;line-height:1.112000;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_1ad22971e057170be38a6111.woff')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a88bbe05889b2101b40ff16a.woff')format("woff");}.ffe{font-family:ffe;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_583dc7c4c1128bf61a8bfdd9.woff')format("woff");}.fff{font-family:fff;line-height:0.902000;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;}
.m1{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);}
.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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m6{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-2.880002px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-0.443400px;}
.lsf{letter-spacing:-0.414600px;}
.ls32{letter-spacing:-0.392400px;}
.ls30{letter-spacing:-0.385800px;}
.lsa{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.252000px;}
.ls12{letter-spacing:-0.216000px;}
.ls2c{letter-spacing:-0.171600px;}
.ls28{letter-spacing:-0.162000px;}
.ls2d{letter-spacing:-0.144000px;}
.ls2e{letter-spacing:-0.136800px;}
.ls19{letter-spacing:-0.108000px;}
.ls33{letter-spacing:-0.103200px;}
.ls11{letter-spacing:-0.072000px;}
.ls2f{letter-spacing:-0.067200px;}
.ls1a{letter-spacing:-0.036000px;}
.ls16{letter-spacing:-0.013680px;}
.lsd{letter-spacing:-0.008640px;}
.ls8{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.ls34{letter-spacing:0.040320px;}
.lsb{letter-spacing:0.072000px;}
.ls2a{letter-spacing:0.073440px;}
.ls14{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.150000px;}
.ls15{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.198000px;}
.ls20{letter-spacing:0.201000px;}
.ls0{letter-spacing:0.216000px;}
.ls2b{letter-spacing:0.221760px;}
.ls2{letter-spacing:0.256320px;}
.lse{letter-spacing:0.276600px;}
.ls1b{letter-spacing:0.306000px;}
.ls1f{letter-spacing:0.340560px;}
.ls29{letter-spacing:0.342000px;}
.ls1d{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.377280px;}
.ls17{letter-spacing:0.378000px;}
.ls1{letter-spacing:0.378720px;}
.ls31{letter-spacing:0.406800px;}
.ls21{letter-spacing:0.468000px;}
.ls5{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.828000px;}
.ls27{letter-spacing:1.062515px;}
.ls1c{letter-spacing:13.176000px;}
.ls1e{letter-spacing:20.866320px;}
.ls13{letter-spacing:26.784000px;}
.ls24{letter-spacing:26.856000px;}
.ls7{letter-spacing:33.264000px;}
.ls23{letter-spacing:39.096000px;}
.ls6{letter-spacing:48.384000px;}
.ls25{letter-spacing:54.216000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(145,25,56),0 0.015em rgb(145,25,56),0.015em 0 rgb(145,25,56),0 -0.015em  rgb(145,25,56);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(145,25,56);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-19.944000px;}
.ws1{word-spacing:-19.872000px;}
.ws18{word-spacing:-19.504734px;}
.wse{word-spacing:-19.051200px;}
.ws1f{word-spacing:-18.864000px;}
.wsb{word-spacing:-18.648000px;}
.wsa{word-spacing:-18.504000px;}
.wsc{word-spacing:-18.432000px;}
.ws20{word-spacing:-18.360000px;}
.wsd{word-spacing:-18.288000px;}
.ws11{word-spacing:-18.216000px;}
.ws8{word-spacing:-17.300280px;}
.ws7{word-spacing:-17.040960px;}
.ws3{word-spacing:-17.023680px;}
.ws6{word-spacing:-17.015040px;}
.ws9{word-spacing:-16.609080px;}
.ws5{word-spacing:-16.580280px;}
.ws1a{word-spacing:-16.188929px;}
.ws15{word-spacing:-14.256000px;}
.ws19{word-spacing:-14.076000px;}
.ws14{word-spacing:-13.986000px;}
.ws12{word-spacing:-13.878000px;}
.ws1b{word-spacing:-13.842000px;}
.ws13{word-spacing:-13.770000px;}
.ws1c{word-spacing:-13.716000px;}
.ws21{word-spacing:-13.590000px;}
.ws17{word-spacing:-12.598680px;}
.ws16{word-spacing:-12.397680px;}
.ws2{word-spacing:-10.732320px;}
.ws1d{word-spacing:-8.511840px;}
.ws1e{word-spacing:-8.340240px;}
.ws0{word-spacing:-0.156240px;}
.ws10{word-spacing:-0.142560px;}
.wsf{word-spacing:0.000000px;}
._26{margin-left:-5.153858px;}
._1b{margin-left:-3.912000px;}
._1c{margin-left:-2.280000px;}
._1{margin-left:-1.157760px;}
._2{width:1.127520px;}
._d{width:2.470560px;}
._b{width:4.327680px;}
._12{width:5.328000px;}
._13{width:6.624000px;}
._15{width:7.656000px;}
._14{width:8.712000px;}
._8{width:10.024320px;}
._7{width:11.053440px;}
._11{width:12.274560px;}
._18{width:13.656000px;}
._23{width:14.775840px;}
._f{width:16.280160px;}
._e{width:17.363520px;}
._6{width:18.609600px;}
._24{width:20.067840px;}
._22{width:21.772800px;}
._c{width:23.250240px;}
._3{width:25.243200px;}
._21{width:26.464320px;}
._10{width:27.567840px;}
._5{width:28.741920px;}
._4{width:29.835840px;}
._16{width:30.960000px;}
._9{width:32.869440px;}
._a{width:34.193280px;}
._1f{width:35.634240px;}
._1e{width:36.653760px;}
._17{width:38.496000px;}
._29{width:39.600000px;}
._19{width:46.872000px;}
._1a{width:47.952000px;}
._20{width:49.710240px;}
._25{width:51.264000px;}
._27{width:52.848000px;}
._28{width:54.360000px;}
._2a{width:58.392000px;}
._1d{width:67.464000px;}
._0{width:1481.489760px;}
.fc5{color:rgb(21,27,28);}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(145,25,56);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:18.000000px;}
.fs8{font-size:30.240000px;}
.fsf{font-size:33.120000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fse{font-size:56.920429px;}
.fsc{font-size:59.760000px;}
.fsa{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:74.880000px;}
.fsd{font-size:75.893905px;}
.fs9{font-size:77.760000px;}
.fs10{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.yd{bottom:-5.940000px;}
.y0{bottom:0.000000px;}
.y8d{bottom:3.420000px;}
.y112{bottom:3.600000px;}
.ydb{bottom:3.780000px;}
.y8f{bottom:3.960000px;}
.y8{bottom:4.320000px;}
.yc{bottom:5.400000px;}
.y6d{bottom:5.760000px;}
.y82{bottom:5.940000px;}
.y42{bottom:6.660000px;}
.yc4{bottom:6.840000px;}
.yc2{bottom:7.770000px;}
.y94{bottom:8.820000px;}
.y92{bottom:10.620000px;}
.ydd{bottom:14.220000px;}
.yb6{bottom:15.120000px;}
.yb9{bottom:15.300000px;}
.yb{bottom:16.740000px;}
.ydc{bottom:18.360000px;}
.yde{bottom:19.620000px;}
.y6{bottom:19.650000px;}
.y8c{bottom:19.980000px;}
.ye0{bottom:20.520000px;}
.ye9{bottom:22.140000px;}
.yf0{bottom:23.580000px;}
.ya{bottom:24.156000px;}
.yec{bottom:24.480000px;}
.y73{bottom:24.660000px;}
.y70{bottom:24.840000px;}
.ydf{bottom:26.100000px;}
.y7{bottom:26.820000px;}
.ye8{bottom:29.340000px;}
.ye4{bottom:29.520000px;}
.y41{bottom:30.450000px;}
.yea{bottom:30.600000px;}
.ye7{bottom:31.860000px;}
.ye6{bottom:32.040000px;}
.yed{bottom:32.760000px;}
.ye5{bottom:32.940000px;}
.yb5{bottom:34.065000px;}
.ye2{bottom:34.200000px;}
.ye3{bottom:34.560000px;}
.ye1{bottom:34.920000px;}
.y43{bottom:39.450000px;}
.yef{bottom:40.140000px;}
.yeb{bottom:41.040000px;}
.y72{bottom:43.560000px;}
.yb7{bottom:43.605000px;}
.y6f{bottom:43.785000px;}
.y9{bottom:47.520000px;}
.y40{bottom:54.210000px;}
.y4{bottom:58.320000px;}
.y3{bottom:78.156000px;}
.y2{bottom:98.676000px;}
.y7d{bottom:117.396000px;}
.y7c{bottom:121.896000px;}
.y3e{bottom:126.036000px;}
.y5{bottom:131.220000px;}
.y7b{bottom:131.976000px;}
.yd9{bottom:133.416000px;}
.y7a{bottom:136.476000px;}
.y79{bottom:146.736000px;}
.y3d{bottom:147.996000px;}
.y78{bottom:151.230000px;}
.y77{bottom:162.750000px;}
.y114{bottom:169.410000px;}
.y3c{bottom:169.950000px;}
.yd8{bottom:179.670000px;}
.y113{bottom:186.690000px;}
.y76{bottom:190.290000px;}
.y3b{bottom:191.910000px;}
.yb1{bottom:197.850000px;}
.yd7{bottom:200.910000px;}
.y111{bottom:203.790000px;}
.y75{bottom:208.470000px;}
.y3a{bottom:213.690000px;}
.yd6{bottom:219.270000px;}
.yb0{bottom:219.810000px;}
.y110{bottom:221.070000px;}
.y74{bottom:226.830000px;}
.y39{bottom:235.650000px;}
.yd5{bottom:237.450000px;}
.yaf{bottom:241.770000px;}
.y71{bottom:242.130000px;}
.y10f{bottom:242.850000px;}
.yd4{bottom:256.530000px;}
.y38{bottom:257.610000px;}
.yae{bottom:263.730000px;}
.y10e{bottom:263.910000px;}
.yd3{bottom:278.490000px;}
.y37{bottom:279.570000px;}
.y10d{bottom:282.990000px;}
.yad{bottom:285.510000px;}
.y6e{bottom:299.550000px;}
.yd2{bottom:300.450000px;}
.y36{bottom:301.530000px;}
.y10c{bottom:304.950000px;}
.yac{bottom:307.470000px;}
.yd1{bottom:322.230000px;}
.y35{bottom:323.490000px;}
.y10b{bottom:326.910000px;}
.yab{bottom:329.430000px;}
.yd0{bottom:344.235000px;}
.y34{bottom:345.495000px;}
.y10a{bottom:348.915000px;}
.yaa{bottom:351.435000px;}
.y6c{bottom:357.195000px;}
.ycf{bottom:366.195000px;}
.y33{bottom:367.455000px;}
.y109{bottom:370.875000px;}
.ya9{bottom:373.395000px;}
.y6b{bottom:380.595000px;}
.yce{bottom:388.155000px;}
.y32{bottom:389.415000px;}
.y108{bottom:392.655000px;}
.ya7{bottom:395.355000px;}
.y6a{bottom:398.955000px;}
.ya8{bottom:401.295000px;}
.ycd{bottom:410.115000px;}
.y31{bottom:411.375000px;}
.y107{bottom:414.615000px;}
.y69{bottom:417.135000px;}
.ya6{bottom:417.315000px;}
.ycc{bottom:432.075000px;}
.y30{bottom:433.155000px;}
.y68{bottom:436.215000px;}
.y106{bottom:436.575000px;}
.ya5{bottom:439.275000px;}
.yca{bottom:454.035000px;}
.y2f{bottom:455.115000px;}
.y67{bottom:458.175000px;}
.y105{bottom:458.535000px;}
.ycb{bottom:459.975000px;}
.ya4{bottom:461.235000px;}
.yc9{bottom:475.995000px;}
.y2e{bottom:477.075000px;}
.y66{bottom:480.135000px;}
.y104{bottom:480.495000px;}
.ya3{bottom:483.195000px;}
.yc8{bottom:497.955000px;}
.y2d{bottom:499.035000px;}
.y64{bottom:502.095000px;}
.y103{bottom:502.455000px;}
.ya2{bottom:504.975000px;}
.y65{bottom:508.035000px;}
.yc7{bottom:519.735000px;}
.y2c{bottom:520.995000px;}
.y63{bottom:524.055000px;}
.y102{bottom:524.415000px;}
.ya1{bottom:526.935000px;}
.yc6{bottom:541.695000px;}
.y2b{bottom:542.955000px;}
.y62{bottom:545.835000px;}
.y101{bottom:546.375000px;}
.ya0{bottom:548.895000px;}
.yc5{bottom:559.875000px;}
.y125{bottom:563.655000px;}
.y2a{bottom:564.915000px;}
.y60{bottom:567.795000px;}
.y100{bottom:568.335000px;}
.y9f{bottom:570.855000px;}
.y61{bottom:573.735000px;}
.yc3{bottom:579.675000px;}
.y124{bottom:585.615000px;}
.y29{bottom:586.875000px;}
.y5f{bottom:589.755000px;}
.yff{bottom:590.295000px;}
.y9e{bottom:592.815000px;}
.yc1{bottom:600.375000px;}
.y123{bottom:607.605000px;}
.y28{bottom:608.865000px;}
.y5e{bottom:611.745000px;}
.yfe{bottom:612.105000px;}
.y9d{bottom:614.805000px;}
.yc0{bottom:626.505000px;}
.y27{bottom:630.825000px;}
.y122{bottom:632.445000px;}
.y5d{bottom:633.705000px;}
.yfd{bottom:634.065000px;}
.y9b{bottom:636.765000px;}
.y9c{bottom:642.705000px;}
.ybf{bottom:647.745000px;}
.y26{bottom:652.605000px;}
.y5c{bottom:655.665000px;}
.yfc{bottom:656.025000px;}
.y121{bottom:657.285000px;}
.y9a{bottom:658.725000px;}
.ybe{bottom:665.925000px;}
.y25{bottom:674.205000px;}
.y5a{bottom:677.625000px;}
.yfb{bottom:677.985000px;}
.y99{bottom:680.685000px;}
.y120{bottom:682.125000px;}
.y5b{bottom:683.565000px;}
.ybd{bottom:685.005000px;}
.y24{bottom:695.805000px;}
.y59{bottom:699.585000px;}
.yfa{bottom:699.945000px;}
.y98{bottom:702.645000px;}
.ybc{bottom:703.185000px;}
.y11f{bottom:704.085000px;}
.y23{bottom:707.325000px;}
.y58{bottom:721.545000px;}
.yf9{bottom:721.905000px;}
.ybb{bottom:722.805000px;}
.y97{bottom:724.425000px;}
.y22{bottom:727.305000px;}
.y11e{bottom:728.925000px;}
.y57{bottom:743.505000px;}
.yf8{bottom:743.865000px;}
.y96{bottom:746.385000px;}
.y21{bottom:747.465000px;}
.y11d{bottom:753.765000px;}
.yba{bottom:761.505000px;}
.y56{bottom:765.285000px;}
.y95{bottom:765.465000px;}
.yf7{bottom:765.825000px;}
.y20{bottom:767.625000px;}
.y11c{bottom:778.605000px;}
.y93{bottom:784.185000px;}
.y55{bottom:787.245000px;}
.y1f{bottom:787.785000px;}
.yb8{bottom:800.025000px;}
.y11b{bottom:800.565000px;}
.y1e{bottom:807.765000px;}
.y91{bottom:808.305000px;}
.y54{bottom:809.205000px;}
.yf6{bottom:809.745000px;}
.y11a{bottom:825.405000px;}
.y1d{bottom:827.925000px;}
.y53{bottom:831.165000px;}
.yf5{bottom:831.525000px;}
.y90{bottom:834.045000px;}
.yb4{bottom:838.725000px;}
.y119{bottom:847.365000px;}
.y1c{bottom:848.085000px;}
.y52{bottom:853.125000px;}
.yf3{bottom:853.485000px;}
.y8e{bottom:855.285000px;}
.yf4{bottom:859.425000px;}
.y1b{bottom:868.245000px;}
.y118{bottom:869.325000px;}
.y8b{bottom:874.590000px;}
.y51{bottom:875.130000px;}
.yf2{bottom:875.490000px;}
.y1a{bottom:888.270000px;}
.y117{bottom:894.210000px;}
.y50{bottom:897.090000px;}
.yf1{bottom:897.450000px;}
.yb3{bottom:900.690000px;}
.y19{bottom:905.550000px;}
.y18{bottom:914.370000px;}
.y116{bottom:916.170000px;}
.yee{bottom:916.350000px;}
.y4f{bottom:919.050000px;}
.yb2{bottom:921.930000px;}
.y17{bottom:933.450000px;}
.y8a{bottom:935.610000px;}
.y115{bottom:938.130000px;}
.y4e{bottom:941.010000px;}
.y16{bottom:946.410000px;}
.y89{bottom:953.790000px;}
.y15{bottom:958.290000px;}
.y4d{bottom:962.970000px;}
.y88{bottom:972.870000px;}
.y14{bottom:980.250000px;}
.y4c{bottom:984.750000px;}
.y87{bottom:991.770000px;}
.y13{bottom:1002.210000px;}
.y4b{bottom:1006.710000px;}
.y86{bottom:1013.010000px;}
.y4a{bottom:1028.670000px;}
.y85{bottom:1034.250000px;}
.y12{bottom:1045.230000px;}
.y49{bottom:1050.630000px;}
.y84{bottom:1055.490000px;}
.y11{bottom:1068.090000px;}
.yda{bottom:1069.170000px;}
.y48{bottom:1072.590000px;}
.y83{bottom:1076.730000px;}
.y47{bottom:1094.550000px;}
.y81{bottom:1097.970000px;}
.y3f{bottom:1114.710000px;}
.y46{bottom:1116.510000px;}
.y10{bottom:1121.910000px;}
.y80{bottom:1123.710000px;}
.y45{bottom:1138.500000px;}
.yf{bottom:1142.100000px;}
.y7f{bottom:1144.980000px;}
.y44{bottom:1160.460000px;}
.ye{bottom:1162.260000px;}
.y7e{bottom:1163.340000px;}
.y1{bottom:1193.220000px;}
.ha{height:15.336000px;}
.h26{height:16.380000px;}
.h10{height:16.398000px;}
.h30{height:16.560000px;}
.h23{height:16.956000px;}
.h6{height:17.280000px;}
.h1b{height:18.900000px;}
.h21{height:19.080000px;}
.h2c{height:19.980000px;}
.h2b{height:20.916000px;}
.h25{height:21.780000px;}
.h24{height:23.580000px;}
.h13{height:26.460000px;}
.hf{height:27.548640px;}
.hc{height:30.672000px;}
.h22{height:32.940000px;}
.hb{height:35.579520px;}
.h8{height:35.676000px;}
.h9{height:36.228240px;}
.h19{height:36.540000px;}
.h29{height:37.800000px;}
.h7{height:39.315600px;}
.h20{height:42.210000px;}
.h1c{height:47.250000px;}
.h2a{height:49.805375px;}
.h1f{height:52.290000px;}
.h18{height:53.928000px;}
.h1a{height:55.117948px;}
.hd{height:56.234880px;}
.h3{height:56.436480px;}
.h1e{height:56.700000px;}
.h28{height:56.736000px;}
.h1d{height:56.916000px;}
.h11{height:57.960000px;}
.h12{height:60.344640px;}
.h14{height:63.000000px;}
.h17{height:63.374400px;}
.he{height:65.592000px;}
.h2{height:65.884219px;}
.h27{height:66.407167px;}
.h2f{height:73.080000px;}
.h16{height:73.116000px;}
.h31{height:73.710000px;}
.h15{height:74.004654px;}
.h2e{height:75.060000px;}
.h32{height:86.585445px;}
.h2d{height:106.416000px;}
.h5{height:121.070742px;}
.h4{height:210.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w28{width:27.360000px;}
.w2a{width:30.996000px;}
.w27{width:36.900000px;}
.w24{width:36.936000px;}
.w25{width:37.080000px;}
.w26{width:37.116000px;}
.w29{width:42.120000px;}
.w3{width:43.380000px;}
.w23{width:52.020000px;}
.w2c{width:73.836000px;}
.w10{width:81.900000px;}
.w22{width:83.520000px;}
.w2d{width:85.680000px;}
.wa{width:95.076000px;}
.w9{width:105.480000px;}
.w1a{width:113.940000px;}
.w1e{width:116.280000px;}
.wf{width:133.776000px;}
.w16{width:136.476000px;}
.w17{width:136.656000px;}
.wb{width:137.340000px;}
.w15{width:144.756000px;}
.w18{width:147.096000px;}
.we{width:161.130000px;}
.wd{width:169.920000px;}
.w14{width:170.820000px;}
.w11{width:177.480000px;}
.w20{width:190.650000px;}
.w1f{width:201.270000px;}
.w1b{width:207.750000px;}
.w21{width:230.970000px;}
.w2b{width:286.230000px;}
.w4{width:317.415000px;}
.w8{width:371.415000px;}
.w1c{width:416.955000px;}
.w6{width:438.195000px;}
.w12{width:551.415000px;}
.w19{width:593.025000px;}
.wc{width:730.545000px;}
.w1d{width:740.265000px;}
.w13{width:741.570000px;}
.w5{width:797.400000px;}
.w7{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6b{left:4.680000px;}
.x3{left:5.910000px;}
.x21{left:8.280000px;}
.x6a{left:10.440000px;}
.x24{left:11.520000px;}
.x28{left:12.780000px;}
.x3f{left:14.400000px;}
.x10{left:17.640000px;}
.x1c{left:19.440000px;}
.x3a{left:21.060000px;}
.x4f{left:22.680000px;}
.x1e{left:23.760000px;}
.x41{left:25.785000px;}
.x11{left:28.080000px;}
.x46{left:29.385000px;}
.x5a{left:30.960000px;}
.x31{left:33.705000px;}
.x25{left:35.280000px;}
.x29{left:36.540000px;}
.x38{left:37.665000px;}
.x23{left:39.600000px;}
.x48{left:41.040000px;}
.x37{left:42.330000px;}
.x47{left:43.740000px;}
.x39{left:45.750000px;}
.x26{left:47.700000px;}
.x2f{left:51.654000px;}
.x33{left:53.670000px;}
.x43{left:55.110000px;}
.x36{left:60.660000px;}
.x3c{left:61.740000px;}
.x6{left:70.740000px;}
.x1{left:80.999987px;}
.x2b{left:83.699987px;}
.x2c{left:85.319987px;}
.x4d{left:92.016000px;}
.x73{left:98.135987px;}
.x2e{left:102.996000px;}
.x5{left:105.165000px;}
.xe{left:108.035987px;}
.x1a{left:113.436000px;}
.xd{left:127.475987px;}
.x20{left:130.854000px;}
.xc{left:134.135987px;}
.x15{left:139.715987px;}
.xa{left:142.955987px;}
.x12{left:146.880000px;}
.x27{left:149.394000px;}
.x71{left:151.769987px;}
.x22{left:156.954000px;}
.x74{left:158.069987px;}
.x72{left:170.849987px;}
.x6e{left:177.150000px;}
.x51{left:194.430000px;}
.x59{left:198.750000px;}
.x9{left:205.410000px;}
.x4e{left:206.670000px;}
.xb{left:208.469987px;}
.x3d{left:219.269987px;}
.x49{left:226.289973px;}
.x3b{left:233.319000px;}
.x5b{left:252.390000px;}
.x30{left:274.530000px;}
.x2d{left:276.149987px;}
.xf{left:285.735000px;}
.x5c{left:290.955000px;}
.x2a{left:297.074987px;}
.x6c{left:303.914987px;}
.x40{left:324.579000px;}
.x5d{left:329.475000px;}
.x58{left:366.194987px;}
.x5e{left:367.995000px;}
.x6d{left:377.894987px;}
.x4a{left:381.314973px;}
.x4b{left:387.074987px;}
.x18{left:400.214987px;}
.x5f{left:406.515000px;}
.x54{left:411.015000px;}
.x50{left:415.155000px;}
.x42{left:421.455000px;}
.x52{left:424.694987px;}
.x32{left:437.115000px;}
.x60{left:445.035000px;}
.x3e{left:451.154987px;}
.x19{left:461.054987px;}
.x6f{left:464.115000px;}
.x61{left:483.765000px;}
.x1b{left:485.565000px;}
.x62{left:522.285000px;}
.x70{left:538.665000px;}
.x16{left:546.044973px;}
.x17{left:551.804987px;}
.x4{left:554.145000px;}
.x44{left:559.365000px;}
.x63{left:560.805000px;}
.x34{left:572.505000px;}
.x1d{left:591.765000px;}
.x64{left:599.325000px;}
.x55{left:602.385000px;}
.x53{left:617.684987px;}
.x65{left:628.305000px;}
.x35{left:656.070000px;}
.x66{left:666.870000px;}
.x1f{left:687.570000px;}
.x45{left:697.470000px;}
.x67{left:705.390000px;}
.x7{left:716.730000px;}
.x13{left:740.129973px;}
.x14{left:743.909987px;}
.x56{left:757.769973px;}
.x57{left:764.069987px;}
.x4c{left:770.369987px;}
.x68{left:782.430000px;}
.x8{left:786.600000px;}
.x69{left:825.990000px;}
.x2{left:829.260000px;}
@media print{
.v2{vertical-align:-2.560001pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.394133pt;}
.lsf{letter-spacing:-0.368533pt;}
.ls32{letter-spacing:-0.348800pt;}
.ls30{letter-spacing:-0.342933pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.224000pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls2c{letter-spacing:-0.152533pt;}
.ls28{letter-spacing:-0.144000pt;}
.ls2d{letter-spacing:-0.128000pt;}
.ls2e{letter-spacing:-0.121600pt;}
.ls19{letter-spacing:-0.096000pt;}
.ls33{letter-spacing:-0.091733pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls2f{letter-spacing:-0.059733pt;}
.ls1a{letter-spacing:-0.032000pt;}
.ls16{letter-spacing:-0.012160pt;}
.lsd{letter-spacing:-0.007680pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.ls34{letter-spacing:0.035840pt;}
.lsb{letter-spacing:0.064000pt;}
.ls2a{letter-spacing:0.065280pt;}
.ls14{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.133333pt;}
.ls15{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.176000pt;}
.ls20{letter-spacing:0.178667pt;}
.ls0{letter-spacing:0.192000pt;}
.ls2b{letter-spacing:0.197120pt;}
.ls2{letter-spacing:0.227840pt;}
.lse{letter-spacing:0.245867pt;}
.ls1b{letter-spacing:0.272000pt;}
.ls1f{letter-spacing:0.302720pt;}
.ls29{letter-spacing:0.304000pt;}
.ls1d{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.335360pt;}
.ls17{letter-spacing:0.336000pt;}
.ls1{letter-spacing:0.336640pt;}
.ls31{letter-spacing:0.361600pt;}
.ls21{letter-spacing:0.416000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.736000pt;}
.ls27{letter-spacing:0.944457pt;}
.ls1c{letter-spacing:11.712000pt;}
.ls1e{letter-spacing:18.547840pt;}
.ls13{letter-spacing:23.808000pt;}
.ls24{letter-spacing:23.872000pt;}
.ls7{letter-spacing:29.568000pt;}
.ls23{letter-spacing:34.752000pt;}
.ls6{letter-spacing:43.008000pt;}
.ls25{letter-spacing:48.192000pt;}
.ws4{word-spacing:-17.728000pt;}
.ws1{word-spacing:-17.664000pt;}
.ws18{word-spacing:-17.337541pt;}
.wse{word-spacing:-16.934400pt;}
.ws1f{word-spacing:-16.768000pt;}
.wsb{word-spacing:-16.576000pt;}
.wsa{word-spacing:-16.448000pt;}
.wsc{word-spacing:-16.384000pt;}
.ws20{word-spacing:-16.320000pt;}
.wsd{word-spacing:-16.256000pt;}
.ws11{word-spacing:-16.192000pt;}
.ws8{word-spacing:-15.378027pt;}
.ws7{word-spacing:-15.147520pt;}
.ws3{word-spacing:-15.132160pt;}
.ws6{word-spacing:-15.124480pt;}
.ws9{word-spacing:-14.763627pt;}
.ws5{word-spacing:-14.738027pt;}
.ws1a{word-spacing:-14.390159pt;}
.ws15{word-spacing:-12.672000pt;}
.ws19{word-spacing:-12.512000pt;}
.ws14{word-spacing:-12.432000pt;}
.ws12{word-spacing:-12.336000pt;}
.ws1b{word-spacing:-12.304000pt;}
.ws13{word-spacing:-12.240000pt;}
.ws1c{word-spacing:-12.192000pt;}
.ws21{word-spacing:-12.080000pt;}
.ws17{word-spacing:-11.198827pt;}
.ws16{word-spacing:-11.020160pt;}
.ws2{word-spacing:-9.539840pt;}
.ws1d{word-spacing:-7.566080pt;}
.ws1e{word-spacing:-7.413547pt;}
.ws0{word-spacing:-0.138880pt;}
.ws10{word-spacing:-0.126720pt;}
.wsf{word-spacing:0.000000pt;}
._26{margin-left:-4.581207pt;}
._1b{margin-left:-3.477333pt;}
._1c{margin-left:-2.026667pt;}
._1{margin-left:-1.029120pt;}
._2{width:1.002240pt;}
._d{width:2.196053pt;}
._b{width:3.846827pt;}
._12{width:4.736000pt;}
._13{width:5.888000pt;}
._15{width:6.805333pt;}
._14{width:7.744000pt;}
._8{width:8.910507pt;}
._7{width:9.825280pt;}
._11{width:10.910720pt;}
._18{width:12.138667pt;}
._23{width:13.134080pt;}
._f{width:14.471253pt;}
._e{width:15.434240pt;}
._6{width:16.541867pt;}
._24{width:17.838080pt;}
._22{width:19.353600pt;}
._c{width:20.666880pt;}
._3{width:22.438400pt;}
._21{width:23.523840pt;}
._10{width:24.504747pt;}
._5{width:25.548373pt;}
._4{width:26.520747pt;}
._16{width:27.520000pt;}
._9{width:29.217280pt;}
._a{width:30.394027pt;}
._1f{width:31.674880pt;}
._1e{width:32.581120pt;}
._17{width:34.218667pt;}
._29{width:35.200000pt;}
._19{width:41.664000pt;}
._1a{width:42.624000pt;}
._20{width:44.186880pt;}
._25{width:45.568000pt;}
._27{width:46.976000pt;}
._28{width:48.320000pt;}
._2a{width:51.904000pt;}
._1d{width:59.968000pt;}
._0{width:1316.879787pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:26.880000pt;}
.fsf{font-size:29.440000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fse{font-size:50.595937pt;}
.fsc{font-size:53.120000pt;}
.fsa{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:66.560000pt;}
.fsd{font-size:67.461249pt;}
.fs9{font-size:69.120000pt;}
.fs10{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.yd{bottom:-5.280000pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:3.040000pt;}
.y112{bottom:3.200000pt;}
.ydb{bottom:3.360000pt;}
.y8f{bottom:3.520000pt;}
.y8{bottom:3.840000pt;}
.yc{bottom:4.800000pt;}
.y6d{bottom:5.120000pt;}
.y82{bottom:5.280000pt;}
.y42{bottom:5.920000pt;}
.yc4{bottom:6.080000pt;}
.yc2{bottom:6.906667pt;}
.y94{bottom:7.840000pt;}
.y92{bottom:9.440000pt;}
.ydd{bottom:12.640000pt;}
.yb6{bottom:13.440000pt;}
.yb9{bottom:13.600000pt;}
.yb{bottom:14.880000pt;}
.ydc{bottom:16.320000pt;}
.yde{bottom:17.440000pt;}
.y6{bottom:17.466667pt;}
.y8c{bottom:17.760000pt;}
.ye0{bottom:18.240000pt;}
.ye9{bottom:19.680000pt;}
.yf0{bottom:20.960000pt;}
.ya{bottom:21.472000pt;}
.yec{bottom:21.760000pt;}
.y73{bottom:21.920000pt;}
.y70{bottom:22.080000pt;}
.ydf{bottom:23.200000pt;}
.y7{bottom:23.840000pt;}
.ye8{bottom:26.080000pt;}
.ye4{bottom:26.240000pt;}
.y41{bottom:27.066667pt;}
.yea{bottom:27.200000pt;}
.ye7{bottom:28.320000pt;}
.ye6{bottom:28.480000pt;}
.yed{bottom:29.120000pt;}
.ye5{bottom:29.280000pt;}
.yb5{bottom:30.280000pt;}
.ye2{bottom:30.400000pt;}
.ye3{bottom:30.720000pt;}
.ye1{bottom:31.040000pt;}
.y43{bottom:35.066667pt;}
.yef{bottom:35.680000pt;}
.yeb{bottom:36.480000pt;}
.y72{bottom:38.720000pt;}
.yb7{bottom:38.760000pt;}
.y6f{bottom:38.920000pt;}
.y9{bottom:42.240000pt;}
.y40{bottom:48.186667pt;}
.y4{bottom:51.840000pt;}
.y3{bottom:69.472000pt;}
.y2{bottom:87.712000pt;}
.y7d{bottom:104.352000pt;}
.y7c{bottom:108.352000pt;}
.y3e{bottom:112.032000pt;}
.y5{bottom:116.640000pt;}
.y7b{bottom:117.312000pt;}
.yd9{bottom:118.592000pt;}
.y7a{bottom:121.312000pt;}
.y79{bottom:130.432000pt;}
.y3d{bottom:131.552000pt;}
.y78{bottom:134.426667pt;}
.y77{bottom:144.666667pt;}
.y114{bottom:150.586667pt;}
.y3c{bottom:151.066667pt;}
.yd8{bottom:159.706667pt;}
.y113{bottom:165.946667pt;}
.y76{bottom:169.146667pt;}
.y3b{bottom:170.586667pt;}
.yb1{bottom:175.866667pt;}
.yd7{bottom:178.586667pt;}
.y111{bottom:181.146667pt;}
.y75{bottom:185.306667pt;}
.y3a{bottom:189.946667pt;}
.yd6{bottom:194.906667pt;}
.yb0{bottom:195.386667pt;}
.y110{bottom:196.506667pt;}
.y74{bottom:201.626667pt;}
.y39{bottom:209.466667pt;}
.yd5{bottom:211.066667pt;}
.yaf{bottom:214.906667pt;}
.y71{bottom:215.226667pt;}
.y10f{bottom:215.866667pt;}
.yd4{bottom:228.026667pt;}
.y38{bottom:228.986667pt;}
.yae{bottom:234.426667pt;}
.y10e{bottom:234.586667pt;}
.yd3{bottom:247.546667pt;}
.y37{bottom:248.506667pt;}
.y10d{bottom:251.546667pt;}
.yad{bottom:253.786667pt;}
.y6e{bottom:266.266667pt;}
.yd2{bottom:267.066667pt;}
.y36{bottom:268.026667pt;}
.y10c{bottom:271.066667pt;}
.yac{bottom:273.306667pt;}
.yd1{bottom:286.426667pt;}
.y35{bottom:287.546667pt;}
.y10b{bottom:290.586667pt;}
.yab{bottom:292.826667pt;}
.yd0{bottom:305.986667pt;}
.y34{bottom:307.106667pt;}
.y10a{bottom:310.146667pt;}
.yaa{bottom:312.386667pt;}
.y6c{bottom:317.506667pt;}
.ycf{bottom:325.506667pt;}
.y33{bottom:326.626667pt;}
.y109{bottom:329.666667pt;}
.ya9{bottom:331.906667pt;}
.y6b{bottom:338.306667pt;}
.yce{bottom:345.026667pt;}
.y32{bottom:346.146667pt;}
.y108{bottom:349.026667pt;}
.ya7{bottom:351.426667pt;}
.y6a{bottom:354.626667pt;}
.ya8{bottom:356.706667pt;}
.ycd{bottom:364.546667pt;}
.y31{bottom:365.666667pt;}
.y107{bottom:368.546667pt;}
.y69{bottom:370.786667pt;}
.ya6{bottom:370.946667pt;}
.ycc{bottom:384.066667pt;}
.y30{bottom:385.026667pt;}
.y68{bottom:387.746667pt;}
.y106{bottom:388.066667pt;}
.ya5{bottom:390.466667pt;}
.yca{bottom:403.586667pt;}
.y2f{bottom:404.546667pt;}
.y67{bottom:407.266667pt;}
.y105{bottom:407.586667pt;}
.ycb{bottom:408.866667pt;}
.ya4{bottom:409.986667pt;}
.yc9{bottom:423.106667pt;}
.y2e{bottom:424.066667pt;}
.y66{bottom:426.786667pt;}
.y104{bottom:427.106667pt;}
.ya3{bottom:429.506667pt;}
.yc8{bottom:442.626667pt;}
.y2d{bottom:443.586667pt;}
.y64{bottom:446.306667pt;}
.y103{bottom:446.626667pt;}
.ya2{bottom:448.866667pt;}
.y65{bottom:451.586667pt;}
.yc7{bottom:461.986667pt;}
.y2c{bottom:463.106667pt;}
.y63{bottom:465.826667pt;}
.y102{bottom:466.146667pt;}
.ya1{bottom:468.386667pt;}
.yc6{bottom:481.506667pt;}
.y2b{bottom:482.626667pt;}
.y62{bottom:485.186667pt;}
.y101{bottom:485.666667pt;}
.ya0{bottom:487.906667pt;}
.yc5{bottom:497.666667pt;}
.y125{bottom:501.026667pt;}
.y2a{bottom:502.146667pt;}
.y60{bottom:504.706667pt;}
.y100{bottom:505.186667pt;}
.y9f{bottom:507.426667pt;}
.y61{bottom:509.986667pt;}
.yc3{bottom:515.266667pt;}
.y124{bottom:520.546667pt;}
.y29{bottom:521.666667pt;}
.y5f{bottom:524.226667pt;}
.yff{bottom:524.706667pt;}
.y9e{bottom:526.946667pt;}
.yc1{bottom:533.666667pt;}
.y123{bottom:540.093333pt;}
.y28{bottom:541.213333pt;}
.y5e{bottom:543.773333pt;}
.yfe{bottom:544.093333pt;}
.y9d{bottom:546.493333pt;}
.yc0{bottom:556.893333pt;}
.y27{bottom:560.733333pt;}
.y122{bottom:562.173333pt;}
.y5d{bottom:563.293333pt;}
.yfd{bottom:563.613333pt;}
.y9b{bottom:566.013333pt;}
.y9c{bottom:571.293333pt;}
.ybf{bottom:575.773333pt;}
.y26{bottom:580.093333pt;}
.y5c{bottom:582.813333pt;}
.yfc{bottom:583.133333pt;}
.y121{bottom:584.253333pt;}
.y9a{bottom:585.533333pt;}
.ybe{bottom:591.933333pt;}
.y25{bottom:599.293333pt;}
.y5a{bottom:602.333333pt;}
.yfb{bottom:602.653333pt;}
.y99{bottom:605.053333pt;}
.y120{bottom:606.333333pt;}
.y5b{bottom:607.613333pt;}
.ybd{bottom:608.893333pt;}
.y24{bottom:618.493333pt;}
.y59{bottom:621.853333pt;}
.yfa{bottom:622.173333pt;}
.y98{bottom:624.573333pt;}
.ybc{bottom:625.053333pt;}
.y11f{bottom:625.853333pt;}
.y23{bottom:628.733333pt;}
.y58{bottom:641.373333pt;}
.yf9{bottom:641.693333pt;}
.ybb{bottom:642.493333pt;}
.y97{bottom:643.933333pt;}
.y22{bottom:646.493333pt;}
.y11e{bottom:647.933333pt;}
.y57{bottom:660.893333pt;}
.yf8{bottom:661.213333pt;}
.y96{bottom:663.453333pt;}
.y21{bottom:664.413333pt;}
.y11d{bottom:670.013333pt;}
.yba{bottom:676.893333pt;}
.y56{bottom:680.253333pt;}
.y95{bottom:680.413333pt;}
.yf7{bottom:680.733333pt;}
.y20{bottom:682.333333pt;}
.y11c{bottom:692.093333pt;}
.y93{bottom:697.053333pt;}
.y55{bottom:699.773333pt;}
.y1f{bottom:700.253333pt;}
.yb8{bottom:711.133333pt;}
.y11b{bottom:711.613333pt;}
.y1e{bottom:718.013333pt;}
.y91{bottom:718.493333pt;}
.y54{bottom:719.293333pt;}
.yf6{bottom:719.773333pt;}
.y11a{bottom:733.693333pt;}
.y1d{bottom:735.933333pt;}
.y53{bottom:738.813333pt;}
.yf5{bottom:739.133333pt;}
.y90{bottom:741.373333pt;}
.yb4{bottom:745.533333pt;}
.y119{bottom:753.213333pt;}
.y1c{bottom:753.853333pt;}
.y52{bottom:758.333333pt;}
.yf3{bottom:758.653333pt;}
.y8e{bottom:760.253333pt;}
.yf4{bottom:763.933333pt;}
.y1b{bottom:771.773333pt;}
.y118{bottom:772.733333pt;}
.y8b{bottom:777.413333pt;}
.y51{bottom:777.893333pt;}
.yf2{bottom:778.213333pt;}
.y1a{bottom:789.573333pt;}
.y117{bottom:794.853333pt;}
.y50{bottom:797.413333pt;}
.yf1{bottom:797.733333pt;}
.yb3{bottom:800.613333pt;}
.y19{bottom:804.933333pt;}
.y18{bottom:812.773333pt;}
.y116{bottom:814.373333pt;}
.yee{bottom:814.533333pt;}
.y4f{bottom:816.933333pt;}
.yb2{bottom:819.493333pt;}
.y17{bottom:829.733333pt;}
.y8a{bottom:831.653333pt;}
.y115{bottom:833.893333pt;}
.y4e{bottom:836.453333pt;}
.y16{bottom:841.253333pt;}
.y89{bottom:847.813333pt;}
.y15{bottom:851.813333pt;}
.y4d{bottom:855.973333pt;}
.y88{bottom:864.773333pt;}
.y14{bottom:871.333333pt;}
.y4c{bottom:875.333333pt;}
.y87{bottom:881.573333pt;}
.y13{bottom:890.853333pt;}
.y4b{bottom:894.853333pt;}
.y86{bottom:900.453333pt;}
.y4a{bottom:914.373333pt;}
.y85{bottom:919.333333pt;}
.y12{bottom:929.093333pt;}
.y49{bottom:933.893333pt;}
.y84{bottom:938.213333pt;}
.y11{bottom:949.413333pt;}
.yda{bottom:950.373333pt;}
.y48{bottom:953.413333pt;}
.y83{bottom:957.093333pt;}
.y47{bottom:972.933333pt;}
.y81{bottom:975.973333pt;}
.y3f{bottom:990.853333pt;}
.y46{bottom:992.453333pt;}
.y10{bottom:997.253333pt;}
.y80{bottom:998.853333pt;}
.y45{bottom:1012.000000pt;}
.yf{bottom:1015.200000pt;}
.y7f{bottom:1017.760000pt;}
.y44{bottom:1031.520000pt;}
.ye{bottom:1033.120000pt;}
.y7e{bottom:1034.080000pt;}
.y1{bottom:1060.640000pt;}
.ha{height:13.632000pt;}
.h26{height:14.560000pt;}
.h10{height:14.576000pt;}
.h30{height:14.720000pt;}
.h23{height:15.072000pt;}
.h6{height:15.360000pt;}
.h1b{height:16.800000pt;}
.h21{height:16.960000pt;}
.h2c{height:17.760000pt;}
.h2b{height:18.592000pt;}
.h25{height:19.360000pt;}
.h24{height:20.960000pt;}
.h13{height:23.520000pt;}
.hf{height:24.487680pt;}
.hc{height:27.264000pt;}
.h22{height:29.280000pt;}
.hb{height:31.626240pt;}
.h8{height:31.712000pt;}
.h9{height:32.202880pt;}
.h19{height:32.480000pt;}
.h29{height:33.600000pt;}
.h7{height:34.947200pt;}
.h20{height:37.520000pt;}
.h1c{height:42.000000pt;}
.h2a{height:44.271445pt;}
.h1f{height:46.480000pt;}
.h18{height:47.936000pt;}
.h1a{height:48.993732pt;}
.hd{height:49.986560pt;}
.h3{height:50.165760pt;}
.h1e{height:50.400000pt;}
.h28{height:50.432000pt;}
.h1d{height:50.592000pt;}
.h11{height:51.520000pt;}
.h12{height:53.639680pt;}
.h14{height:56.000000pt;}
.h17{height:56.332800pt;}
.he{height:58.304000pt;}
.h2{height:58.563750pt;}
.h27{height:59.028593pt;}
.h2f{height:64.960000pt;}
.h16{height:64.992000pt;}
.h31{height:65.520000pt;}
.h15{height:65.781915pt;}
.h2e{height:66.720000pt;}
.h32{height:76.964840pt;}
.h2d{height:94.592000pt;}
.h5{height:107.618438pt;}
.h4{height:187.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w28{width:24.320000pt;}
.w2a{width:27.552000pt;}
.w27{width:32.800000pt;}
.w24{width:32.832000pt;}
.w25{width:32.960000pt;}
.w26{width:32.992000pt;}
.w29{width:37.440000pt;}
.w3{width:38.560000pt;}
.w23{width:46.240000pt;}
.w2c{width:65.632000pt;}
.w10{width:72.800000pt;}
.w22{width:74.240000pt;}
.w2d{width:76.160000pt;}
.wa{width:84.512000pt;}
.w9{width:93.760000pt;}
.w1a{width:101.280000pt;}
.w1e{width:103.360000pt;}
.wf{width:118.912000pt;}
.w16{width:121.312000pt;}
.w17{width:121.472000pt;}
.wb{width:122.080000pt;}
.w15{width:128.672000pt;}
.w18{width:130.752000pt;}
.we{width:143.226667pt;}
.wd{width:151.040000pt;}
.w14{width:151.840000pt;}
.w11{width:157.760000pt;}
.w20{width:169.466667pt;}
.w1f{width:178.906667pt;}
.w1b{width:184.666667pt;}
.w21{width:205.306667pt;}
.w2b{width:254.426667pt;}
.w4{width:282.146667pt;}
.w8{width:330.146667pt;}
.w1c{width:370.626667pt;}
.w6{width:389.506667pt;}
.w12{width:490.146667pt;}
.w19{width:527.133333pt;}
.wc{width:649.373333pt;}
.w1d{width:658.013333pt;}
.w13{width:659.173333pt;}
.w5{width:708.800000pt;}
.w7{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6b{left:4.160000pt;}
.x3{left:5.253333pt;}
.x21{left:7.360000pt;}
.x6a{left:9.280000pt;}
.x24{left:10.240000pt;}
.x28{left:11.360000pt;}
.x3f{left:12.800000pt;}
.x10{left:15.680000pt;}
.x1c{left:17.280000pt;}
.x3a{left:18.720000pt;}
.x4f{left:20.160000pt;}
.x1e{left:21.120000pt;}
.x41{left:22.920000pt;}
.x11{left:24.960000pt;}
.x46{left:26.120000pt;}
.x5a{left:27.520000pt;}
.x31{left:29.960000pt;}
.x25{left:31.360000pt;}
.x29{left:32.480000pt;}
.x38{left:33.480000pt;}
.x23{left:35.200000pt;}
.x48{left:36.480000pt;}
.x37{left:37.626667pt;}
.x47{left:38.880000pt;}
.x39{left:40.666667pt;}
.x26{left:42.400000pt;}
.x2f{left:45.914667pt;}
.x33{left:47.706667pt;}
.x43{left:48.986667pt;}
.x36{left:53.920000pt;}
.x3c{left:54.880000pt;}
.x6{left:62.880000pt;}
.x1{left:71.999988pt;}
.x2b{left:74.399988pt;}
.x2c{left:75.839988pt;}
.x4d{left:81.792000pt;}
.x73{left:87.231988pt;}
.x2e{left:91.552000pt;}
.x5{left:93.480000pt;}
.xe{left:96.031988pt;}
.x1a{left:100.832000pt;}
.xd{left:113.311988pt;}
.x20{left:116.314667pt;}
.xc{left:119.231988pt;}
.x15{left:124.191988pt;}
.xa{left:127.071988pt;}
.x12{left:130.560000pt;}
.x27{left:132.794667pt;}
.x71{left:134.906655pt;}
.x22{left:139.514667pt;}
.x74{left:140.506655pt;}
.x72{left:151.866655pt;}
.x6e{left:157.466667pt;}
.x51{left:172.826667pt;}
.x59{left:176.666667pt;}
.x9{left:182.586667pt;}
.x4e{left:183.706667pt;}
.xb{left:185.306655pt;}
.x3d{left:194.906655pt;}
.x49{left:201.146643pt;}
.x3b{left:207.394667pt;}
.x5b{left:224.346667pt;}
.x30{left:244.026667pt;}
.x2d{left:245.466655pt;}
.xf{left:253.986667pt;}
.x5c{left:258.626667pt;}
.x2a{left:264.066655pt;}
.x6c{left:270.146655pt;}
.x40{left:288.514667pt;}
.x5d{left:292.866667pt;}
.x58{left:325.506655pt;}
.x5e{left:327.106667pt;}
.x6d{left:335.906655pt;}
.x4a{left:338.946643pt;}
.x4b{left:344.066655pt;}
.x18{left:355.746655pt;}
.x5f{left:361.346667pt;}
.x54{left:365.346667pt;}
.x50{left:369.026667pt;}
.x42{left:374.626667pt;}
.x52{left:377.506655pt;}
.x32{left:388.546667pt;}
.x60{left:395.586667pt;}
.x3e{left:401.026655pt;}
.x19{left:409.826655pt;}
.x6f{left:412.546667pt;}
.x61{left:430.013333pt;}
.x1b{left:431.613333pt;}
.x62{left:464.253333pt;}
.x70{left:478.813333pt;}
.x16{left:485.373310pt;}
.x17{left:490.493322pt;}
.x4{left:492.573333pt;}
.x44{left:497.213333pt;}
.x63{left:498.493333pt;}
.x34{left:508.893333pt;}
.x1d{left:526.013333pt;}
.x64{left:532.733333pt;}
.x55{left:535.453333pt;}
.x53{left:549.053322pt;}
.x65{left:558.493333pt;}
.x35{left:583.173333pt;}
.x66{left:592.773333pt;}
.x1f{left:611.173333pt;}
.x45{left:619.973333pt;}
.x67{left:627.013333pt;}
.x7{left:637.093333pt;}
.x13{left:657.893310pt;}
.x14{left:661.253322pt;}
.x56{left:673.573310pt;}
.x57{left:679.173322pt;}
.x4c{left:684.773322pt;}
.x68{left:695.493333pt;}
.x8{left:699.200000pt;}
.x69{left:734.213333pt;}
.x2{left:737.120000pt;}
}




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