
    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_18750282bb5e3e7d604fb0e8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f1d835ca8f362253602e45d6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.089844;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_eb86997c5b18085c82ac6c2c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.089844;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_4317f2fb184d3ac2425baaea.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0a45db191963607c6f5fe579.woff')format("woff");}.ff5{font-family:ff5;line-height:0.959961;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_843dddea80d73494271b5e7e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.959961;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_2288d461e40f31acec4d1670.woff')format("woff");}.ff7{font-family:ff7;line-height:0.959961;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_f531aa202305ec873d5ccc5a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6e95c04f7de6699474786d19.woff')format("woff");}.ff9{font-family:ff9;line-height:2.549805;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_c399eb652dbddda9edef9560.woff')format("woff");}.ffa{font-family:ffa;line-height:1.030273;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_7d26a482b3debe8de22acdab.woff')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_85a4ed8205cdbb3e13f9e07c.woff')format("woff");}.ffc{font-family:ffc;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2f8d8a5530c8c6a83f2b2d35.woff')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.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);}
.v2{vertical-align:-45.000000px;}
.v3{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:14.820000px;}
.v4{vertical-align:27.000000px;}
.v1{vertical-align:58.500000px;}
.ls4{letter-spacing:-1.590000px;}
.ls5{letter-spacing:-1.398000px;}
.lse{letter-spacing:-1.284000px;}
.lsc{letter-spacing:-0.137400px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.012600px;}
.lsb{letter-spacing:0.227400px;}
.ls0{letter-spacing:0.384000px;}
.ls1{letter-spacing:0.597000px;}
.ls9{letter-spacing:0.792000px;}
.ls8{letter-spacing:1.224000px;}
.lsa{letter-spacing:1.446000px;}
.ls3{letter-spacing:1.458000px;}
.ls7{letter-spacing:1.548000px;}
.ls6{letter-spacing:1.584000px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(151,4,67),0 0.015em rgb(151,4,67),0.015em 0 rgb(151,4,67),0 -0.015em  rgb(151,4,67);}
.sc4{text-shadow:-0.015em 0 rgb(58,91,99),0 0.015em rgb(58,91,99),0.015em 0 rgb(58,91,99),0 -0.015em  rgb(58,91,99);}
.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(2,115,134),0 0.015em rgb(2,115,134),0.015em 0 rgb(2,115,134),0 -0.015em  rgb(2,115,134);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(151,4,67);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(58,91,99);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(2,115,134);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-144.150000px;}
.wsa{word-spacing:-144.000000px;}
.ws6{word-spacing:-121.500000px;}
.ws8{word-spacing:-103.650000px;}
.ws9{word-spacing:-103.500000px;}
.wse{word-spacing:-73.809000px;}
.wsd{word-spacing:-66.344700px;}
.wsc{word-spacing:-66.303000px;}
.ws1{word-spacing:-56.631300px;}
.ws2{word-spacing:-56.592000px;}
.ws12{word-spacing:-53.793000px;}
.ws11{word-spacing:-46.287000px;}
.ws1a{word-spacing:-43.662300px;}
.ws13{word-spacing:-43.623000px;}
.ws0{word-spacing:-37.767300px;}
.ws15{word-spacing:-33.777000px;}
.ws14{word-spacing:-33.318300px;}
.ws3{word-spacing:-31.872300px;}
.ws5{word-spacing:-31.833000px;}
.ws19{word-spacing:-30.024000px;}
.ws1b{word-spacing:-28.296000px;}
.ws4{word-spacing:-21.261300px;}
.ws7{word-spacing:-21.222000px;}
.wsf{word-spacing:-1.788000px;}
.ws10{word-spacing:-0.216000px;}
.ws1c{word-spacing:0.000000px;}
.ws18{word-spacing:58.418700px;}
.ws17{word-spacing:352.989000px;}
.ws16{word-spacing:489.309000px;}
._12{margin-left:-2899.236300px;}
._9{margin-left:-25.272000px;}
._8{margin-left:-16.140450px;}
._6{margin-left:-14.080950px;}
._e{margin-left:-10.415400px;}
._7{margin-left:-7.987950px;}
._d{margin-left:-6.844950px;}
._4{margin-left:-5.121450px;}
._5{margin-left:-3.748800px;}
._0{margin-left:-2.408250px;}
._3{margin-left:-1.065900px;}
._2{width:1.444950px;}
._1{width:2.889900px;}
._c{width:3.891300px;}
._b{width:5.250000px;}
._a{width:6.418950px;}
._11{width:7.944450px;}
._f{width:9.083700px;}
._10{width:10.692600px;}
._15{width:29.999100px;}
._14{width:40.139100px;}
._13{width:3246.457350px;}
.fc8{color:transparent;}
.fc6{color:rgb(41,40,52);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(151,4,67);}
.fc2{color:rgb(2,115,134);}
.fc7{color:rgb(58,91,99);}
.fc5{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,96,102);}
.fsc{font-size:81.000000px;}
.fsb{font-size:81.150000px;}
.fs4{font-size:94.500000px;}
.fse{font-size:103.500000px;}
.fsd{font-size:103.650000px;}
.fs14{font-size:108.000000px;}
.fs15{font-size:108.150000px;}
.fs9{font-size:121.500000px;}
.fsa{font-size:121.650000px;}
.fs3{font-size:126.000000px;}
.fs6{font-size:144.000000px;}
.fs5{font-size:144.150000px;}
.fsf{font-size:166.500000px;}
.fs13{font-size:166.650000px;}
.fs1{font-size:193.500000px;}
.fs2{font-size:193.650000px;}
.fs7{font-size:216.000000px;}
.fs8{font-size:216.150000px;}
.fs10{font-size:238.500000px;}
.fs11{font-size:238.650000px;}
.fs12{font-size:265.500000px;}
.fs0{font-size:481.650000px;}
.yb4{bottom:-17.280000px;}
.ya3{bottom:-17.130000px;}
.y94{bottom:-9.900000px;}
.y53{bottom:-9.270000px;}
.y78{bottom:-9.225000px;}
.y4f{bottom:-9.000000px;}
.y72{bottom:-8.850000px;}
.ya1{bottom:-5.625000px;}
.y66{bottom:-5.355000px;}
.y41{bottom:-5.295000px;}
.y6e{bottom:-0.975000px;}
.y92{bottom:-0.900000px;}
.y68{bottom:-0.855000px;}
.yae{bottom:-0.720000px;}
.yc5{bottom:-0.600000px;}
.y74{bottom:-0.480000px;}
.y5e{bottom:-0.450000px;}
.yb6{bottom:-0.405000px;}
.ybe{bottom:-0.345000px;}
.y86{bottom:-0.300000px;}
.y45{bottom:-0.270000px;}
.ya7{bottom:-0.255000px;}
.y7a{bottom:-0.225000px;}
.y57{bottom:-0.180000px;}
.yba{bottom:-0.150000px;}
.yb2{bottom:-0.030000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:0.150000px;}
.y5c{bottom:0.195000px;}
.y8a{bottom:0.225000px;}
.y4a{bottom:0.270000px;}
.y7d{bottom:0.300000px;}
.y3d{bottom:0.330000px;}
.y43{bottom:0.345000px;}
.y51{bottom:0.405000px;}
.y60{bottom:0.675000px;}
.y4c{bottom:0.855000px;}
.yb0{bottom:0.870000px;}
.y7f{bottom:0.900000px;}
.y5a{bottom:0.945000px;}
.y76{bottom:1.275000px;}
.y47{bottom:1.470000px;}
.yc1{bottom:1.845000px;}
.y88{bottom:1.950000px;}
.y55{bottom:1.980000px;}
.y96{bottom:4.725000px;}
.y70{bottom:5.145000px;}
.y90{bottom:5.250000px;}
.y64{bottom:5.295000px;}
.y3f{bottom:5.355000px;}
.y81{bottom:5.895000px;}
.y7c{bottom:5.925000px;}
.yac{bottom:6.030000px;}
.yc7{bottom:6.150000px;}
.ybc{bottom:6.405000px;}
.ya5{bottom:6.495000px;}
.ya9{bottom:6.750000px;}
.y8e{bottom:6.975000px;}
.y62{bottom:7.020000px;}
.yc3{bottom:7.470000px;}
.yb8{bottom:7.725000px;}
.y8c{bottom:8.100000px;}
.yf9{bottom:14.025000px;}
.y84{bottom:35.100000px;}
.y6a{bottom:35.145000px;}
.y103{bottom:91.800000px;}
.y7{bottom:103.800000px;}
.y101{bottom:130.680000px;}
.yff{bottom:135.525000px;}
.y6{bottom:161.175000px;}
.y102{bottom:169.575000px;}
.yfe{bottom:171.525000px;}
.y5{bottom:218.595000px;}
.y100{bottom:247.350000px;}
.yfb{bottom:267.855000px;}
.y4{bottom:277.095000px;}
.yfa{bottom:279.105000px;}
.y105{bottom:336.930000px;}
.yfd{bottom:337.455000px;}
.y104{bottom:369.555000px;}
.yfc{bottom:373.455000px;}
.y31{bottom:464.130000px;}
.y2c{bottom:470.400000px;}
.y30{bottom:528.255000px;}
.y2b{bottom:534.525000px;}
.y2f{bottom:593.550000px;}
.y2a{bottom:599.820000px;}
.y2e{bottom:658.800000px;}
.y29{bottom:663.945000px;}
.y2d{bottom:722.970000px;}
.y28{bottom:729.195000px;}
.y27{bottom:794.475000px;}
.y26{bottom:858.600000px;}
.yd4{bottom:923.670000px;}
.yc6{bottom:1027.125000px;}
.yf3{bottom:1031.925000px;}
.yc4{bottom:1033.875000px;}
.y9e{bottom:1039.020000px;}
.yf2{bottom:1082.595000px;}
.ybf{bottom:1086.750000px;}
.y9d{bottom:1111.020000px;}
.ybb{bottom:1122.750000px;}
.ybd{bottom:1129.500000px;}
.yf1{bottom:1133.220000px;}
.yc2{bottom:1144.125000px;}
.y9c{bottom:1147.020000px;}
.yc0{bottom:1149.750000px;}
.yb5{bottom:1152.000000px;}
.yb3{bottom:1168.875000px;}
.yb7{bottom:1171.125000px;}
.yb9{bottom:1179.000000px;}
.y9f{bottom:1181.250000px;}
.yf0{bottom:1182.705000px;}
.y9b{bottom:1183.005000px;}
.ya0{bottom:1186.875000px;}
.yef{bottom:1233.375000px;}
.y9a{bottom:1255.050000px;}
.yb1{bottom:1257.750000px;}
.yab{bottom:1274.625000px;}
.yad{bottom:1281.375000px;}
.yee{bottom:1284.000000px;}
.y99{bottom:1291.050000px;}
.ya4{bottom:1298.250000px;}
.yaf{bottom:1303.875000px;}
.ya6{bottom:1305.000000px;}
.ya2{bottom:1321.875000px;}
.ya8{bottom:1325.250000px;}
.y98{bottom:1327.050000px;}
.yaa{bottom:1332.000000px;}
.yed{bottom:1334.625000px;}
.yec{bottom:1386.405000px;}
.yc8{bottom:1399.950000px;}
.ye4{bottom:1494.345000px;}
.ye3{bottom:1496.400000px;}
.y83{bottom:1526.625000px;}
.y8f{bottom:1532.250000px;}
.y8b{bottom:1536.750000px;}
.y8d{bottom:1537.875000px;}
.y95{bottom:1540.125000px;}
.y3b{bottom:1541.220000px;}
.y89{bottom:1544.625000px;}
.y91{bottom:1545.750000px;}
.y93{bottom:1554.750000px;}
.y80{bottom:1555.875000px;}
.y82{bottom:1567.125000px;}
.ye5{bottom:1571.550000px;}
.y87{bottom:1585.125000px;}
.y85{bottom:1587.375000px;}
.y3a{bottom:1595.250000px;}
.y39{bottom:1649.250000px;}
.y7b{bottom:1665.000000px;}
.y69{bottom:1670.625000px;}
.y7e{bottom:1677.375000px;}
.y79{bottom:1678.500000px;}
.y77{bottom:1687.500000px;}
.y63{bottom:1693.125000px;}
.y61{bottom:1698.750000px;}
.y38{bottom:1703.250000px;}
.y67{bottom:1706.625000px;}
.y65{bottom:1711.125000px;}
.y6f{bottom:1722.375000px;}
.y73{bottom:1728.000000px;}
.y75{bottom:1733.625000px;}
.y6b{bottom:1734.750000px;}
.y6d{bottom:1735.875000px;}
.y71{bottom:1743.750000px;}
.y37{bottom:1757.280000px;}
.y5b{bottom:1794.375000px;}
.y36{bottom:1811.280000px;}
.y5f{bottom:1818.000000px;}
.y5d{bottom:1819.125000px;}
.y58{bottom:1838.250000px;}
.y59{bottom:1845.000000px;}
.y56{bottom:1846.125000px;}
.y35{bottom:1865.280000px;}
.y3e{bottom:1875.375000px;}
.y50{bottom:1881.000000px;}
.y3c{bottom:1887.750000px;}
.y40{bottom:1893.375000px;}
.y49{bottom:1897.875000px;}
.y54{bottom:1903.500000px;}
.y4b{bottom:1904.625000px;}
.y48{bottom:1905.750000px;}
.y52{bottom:1914.750000px;}
.y34{bottom:1919.325000px;}
.y4d{bottom:1932.750000px;}
.y4e{bottom:1941.750000px;}
.y44{bottom:1969.875000px;}
.y33{bottom:1973.325000px;}
.y46{bottom:1975.500000px;}
.y42{bottom:1976.625000px;}
.y32{bottom:2027.325000px;}
.y97{bottom:2088.030000px;}
.ye6{bottom:2141.250000px;}
.y10a{bottom:2186.400000px;}
.y109{bottom:2219.025000px;}
.yd1{bottom:2290.080000px;}
.ycc{bottom:2308.800000px;}
.yd0{bottom:2332.845000px;}
.ycb{bottom:2351.595000px;}
.ycf{bottom:2376.750000px;}
.yca{bottom:2394.330000px;}
.yc9{bottom:2438.205000px;}
.yce{bottom:2439.750000px;}
.ycd{bottom:2530.905000px;}
.y25{bottom:2617.950000px;}
.y24{bottom:2682.075000px;}
.y23{bottom:2747.370000px;}
.y22{bottom:2811.495000px;}
.y21{bottom:2942.025000px;}
.y20{bottom:3006.150000px;}
.y1f{bottom:3071.445000px;}
.y1e{bottom:3135.555000px;}
.yeb{bottom:3206.925000px;}
.yea{bottom:3257.550000px;}
.y1d{bottom:3266.100000px;}
.ye9{bottom:3308.205000px;}
.y1c{bottom:3330.255000px;}
.ye8{bottom:3358.830000px;}
.ye7{bottom:3410.580000px;}
.yd2{bottom:3441.855000px;}
.y1b{bottom:3503.925000px;}
.yf7{bottom:3526.950000px;}
.ye2{bottom:3541.755000px;}
.yf6{bottom:3562.950000px;}
.y1a{bottom:3568.050000px;}
.yf5{bottom:3598.950000px;}
.ye1{bottom:3607.005000px;}
.y19{bottom:3633.300000px;}
.yf4{bottom:3634.950000px;}
.ye0{bottom:3672.300000px;}
.yf8{bottom:3682.125000px;}
.y18{bottom:3698.580000px;}
.ydf{bottom:3736.425000px;}
.y17{bottom:3762.705000px;}
.yde{bottom:3801.675000px;}
.ydd{bottom:3865.830000px;}
.ydc{bottom:3931.080000px;}
.ydb{bottom:3996.375000px;}
.y16{bottom:4022.655000px;}
.yda{bottom:4060.500000px;}
.y15{bottom:4086.780000px;}
.yd9{bottom:4125.780000px;}
.y14{bottom:4152.075000px;}
.yd8{bottom:4189.905000px;}
.y13{bottom:4216.200000px;}
.yd7{bottom:4255.155000px;}
.y108{bottom:4264.380000px;}
.y12{bottom:4281.480000px;}
.y107{bottom:4312.800000px;}
.yd6{bottom:4320.450000px;}
.y11{bottom:4346.730000px;}
.y106{bottom:4364.550000px;}
.yd5{bottom:4384.575000px;}
.y10{bottom:4410.855000px;}
.yd3{bottom:4454.475000px;}
.yf{bottom:4519.725000px;}
.y3{bottom:4551.030000px;}
.ye{bottom:4574.850000px;}
.yd{bottom:4606.380000px;}
.yc{bottom:4649.130000px;}
.y2{bottom:4695.075000px;}
.yb{bottom:4704.255000px;}
.ya{bottom:4735.755000px;}
.y9{bottom:4790.925000px;}
.y1{bottom:4839.105000px;}
.y8{bottom:4861.800000px;}
.h19{height:3.375000px;}
.h1d{height:5.625000px;}
.h26{height:9.000000px;}
.h23{height:10.125000px;}
.h10{height:11.250000px;}
.h12{height:13.500000px;}
.h17{height:14.625000px;}
.he{height:19.125000px;}
.h1b{height:20.250000px;}
.h1a{height:21.375000px;}
.h24{height:22.500000px;}
.h18{height:23.625000px;}
.h16{height:24.750000px;}
.hc{height:25.875000px;}
.h15{height:27.000000px;}
.h1f{height:30.375000px;}
.h27{height:31.500000px;}
.h28{height:33.750000px;}
.h21{height:34.875000px;}
.h5{height:70.875000px;}
.h36{height:81.000000px;}
.h37{height:81.112500px;}
.ha{height:91.125000px;}
.hb{height:91.237500px;}
.h1c{height:92.250000px;}
.h22{height:99.984375px;}
.h20{height:100.088525px;}
.h6{height:108.000000px;}
.h7{height:108.112500px;}
.h35{height:112.640625px;}
.h14{height:121.710938px;}
.h1e{height:121.837720px;}
.h29{height:124.875000px;}
.h30{height:124.987500px;}
.h34{height:126.720703px;}
.h33{height:126.877148px;}
.h25{height:145.125000px;}
.h13{height:161.567139px;}
.hf{height:161.801294px;}
.h8{height:162.000000px;}
.h9{height:162.112500px;}
.h2{height:167.611816px;}
.h3{height:167.741748px;}
.h2f{height:170.483643px;}
.h31{height:170.637231px;}
.h2d{height:173.654297px;}
.h4{height:201.814453px;}
.h2e{height:216.634453px;}
.h11{height:224.789062px;}
.hd{height:225.023218px;}
.h2a{height:248.748047px;}
.h2b{height:248.904492px;}
.h2c{height:276.908203px;}
.h1{height:502.345898px;}
.h32{height:549.000000px;}
.h0{height:5060.250000px;}
.w10{width:4.500000px;}
.w1e{width:5.625000px;}
.w17{width:6.750000px;}
.w6{width:10.125000px;}
.w9{width:11.250000px;}
.wd{width:12.375000px;}
.w12{width:13.500000px;}
.w8{width:15.750000px;}
.wc{width:16.875000px;}
.w7{width:18.000000px;}
.wa{width:19.125000px;}
.w3{width:20.250000px;}
.w5{width:22.500000px;}
.wb{width:23.625000px;}
.we{width:36.000000px;}
.w13{width:37.125000px;}
.w11{width:42.750000px;}
.w4{width:43.875000px;}
.wf{width:52.875000px;}
.w1c{width:54.000000px;}
.w1f{width:55.125000px;}
.w1b{width:56.250000px;}
.w16{width:64.125000px;}
.w18{width:70.875000px;}
.w19{width:81.000000px;}
.w20{width:86.625000px;}
.w1a{width:93.375000px;}
.w14{width:102.375000px;}
.w15{width:103.500000px;}
.w1d{width:156.375000px;}
.w21{width:1140.750000px;}
.w2{width:3571.874947px;}
.w0{width:3571.875000px;}
.w1{width:3572.250000px;}
.x37{left:-3.030000px;}
.x15{left:-1.950000px;}
.x0{left:0.000000px;}
.x99{left:7.950000px;}
.x6a{left:81.000000px;}
.x10{left:83.662447px;}
.xe{left:86.212447px;}
.x33{left:87.750000px;}
.xa4{left:93.374947px;}
.x6b{left:102.375000px;}
.x13{left:103.500000px;}
.xa{left:106.724947px;}
.x7{left:120.487447px;}
.x8{left:123.374947px;}
.xb{left:144.674947px;}
.x6c{left:153.000000px;}
.x34{left:157.500000px;}
.x14{left:160.875000px;}
.xf{left:174.179947px;}
.x35{left:194.625000px;}
.x4f{left:198.000000px;}
.x1c{left:220.500000px;}
.x36{left:230.625000px;}
.x1d{left:239.625000px;}
.x6d{left:243.000000px;}
.x1e{left:263.250000px;}
.x38{left:270.000000px;}
.x1f{left:297.000000px;}
.x9a{left:298.920000px;}
.x7b{left:304.875000px;}
.x50{left:315.000000px;}
.x20{left:326.250000px;}
.x22{left:328.500000px;}
.x39{left:333.000000px;}
.x2d{left:343.125000px;}
.xd{left:344.774947px;}
.x51{left:351.000000px;}
.x62{left:356.669947px;}
.x21{left:360.000000px;}
.x2e{left:362.250000px;}
.x6e{left:365.625000px;}
.x48{left:371.250000px;}
.x57{left:376.875000px;}
.x16{left:381.375000px;}
.x2f{left:385.875000px;}
.x32{left:388.125000px;}
.x23{left:397.125000px;}
.x17{left:399.375000px;}
.x3a{left:417.375000px;}
.x30{left:418.500000px;}
.x49{left:424.125000px;}
.x3b{left:425.250000px;}
.x31{left:436.500000px;}
.x24{left:451.125000px;}
.x6f{left:456.750000px;}
.x3c{left:461.250000px;}
.x25{left:469.125000px;}
.x58{left:472.500000px;}
.x8b{left:478.274947px;}
.x4a{left:481.500000px;}
.x59{left:490.500000px;}
.x26{left:492.750000px;}
.x7c{left:493.875000px;}
.x71{left:497.250000px;}
.x3d{left:517.500000px;}
.x27{left:526.500000px;}
.x9{left:528.254947px;}
.x8d{left:531.569947px;}
.x7f{left:534.375000px;}
.x3e{left:535.500000px;}
.x5a{left:541.125000px;}
.x28{left:544.500000px;}
.x52{left:545.625000px;}
.x4b{left:562.500000px;}
.x9b{left:565.380000px;}
.x70{left:572.625000px;}
.x5b{left:574.875000px;}
.x7d{left:582.750000px;}
.x5c{left:588.375000px;}
.x3f{left:590.625000px;}
.x81{left:605.250000px;}
.x7e{left:609.750000px;}
.x88{left:615.375000px;}
.x72{left:616.500000px;}
.x29{left:617.625000px;}
.x40{left:623.250000px;}
.x7a{left:637.875000px;}
.x41{left:642.375000px;}
.x89{left:649.125000px;}
.x4c{left:650.250000px;}
.x2a{left:652.500000px;}
.x80{left:653.625000px;}
.x18{left:654.750000px;}
.x5d{left:658.125000px;}
.x73{left:666.000000px;}
.x4d{left:669.375000px;}
.x5e{left:677.250000px;}
.x19{left:681.750000px;}
.x5f{left:691.875000px;}
.xc{left:698.594947px;}
.x74{left:702.000000px;}
.x82{left:703.125000px;}
.x60{left:707.625000px;}
.x1a{left:712.125000px;}
.x2b{left:718.875000px;}
.x75{left:722.250000px;}
.x61{left:725.625000px;}
.x8a{left:726.750000px;}
.x76{left:730.125000px;}
.x83{left:740.250000px;}
.x42{left:747.000000px;}
.x1b{left:749.250000px;}
.x77{left:756.000000px;}
.x84{left:759.375000px;}
.x85{left:767.250000px;}
.x43{left:779.625000px;}
.x53{left:785.250000px;}
.x2c{left:786.375000px;}
.x9c{left:791.595000px;}
.x86{left:794.250000px;}
.x44{left:797.625000px;}
.x4e{left:798.750000px;}
.x9e{left:805.200000px;}
.x54{left:812.250000px;}
.x78{left:823.500000px;}
.x55{left:842.625000px;}
.x45{left:855.000000px;}
.x87{left:859.500000px;}
.x9d{left:861.645000px;}
.x56{left:885.375000px;}
.x46{left:891.000000px;}
.x9f{left:900.045000px;}
.x79{left:901.125000px;}
.x47{left:909.000000px;}
.x12{left:939.344947px;}
.x8c{left:963.704947px;}
.xa0{left:975.750000px;}
.xa2{left:1008.405000px;}
.xa1{left:1032.630000px;}
.xa3{left:1041.420000px;}
.x67{left:1049.549947px;}
.x69{left:1055.999947px;}
.x63{left:1066.724947px;}
.x64{left:1071.524947px;}
.x90{left:1127.444947px;}
.x66{left:1130.819947px;}
.x8e{left:1156.079947px;}
.x68{left:1286.249947px;}
.x65{left:1313.444947px;}
.x98{left:1536.750000px;}
.x11{left:1539.899947px;}
.x96{left:1552.769947px;}
.x1{left:1570.799947px;}
.x95{left:1644.374947px;}
.x2{left:1654.349947px;}
.x4{left:1730.699947px;}
.x3{left:1754.324947px;}
.x5{left:1801.169947px;}
.x6{left:1895.444947px;}
.x94{left:2024.204947px;}
.x93{left:2232.704947px;}
.x92{left:2655.749947px;}
.x91{left:2709.719947px;}
.x97{left:3089.249947px;}
.x8f{left:3188.294947px;}
@media print{
.v2{vertical-align:-40.000000pt;}
.v3{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.173333pt;}
.v4{vertical-align:24.000000pt;}
.v1{vertical-align:52.000000pt;}
.ls4{letter-spacing:-1.413333pt;}
.ls5{letter-spacing:-1.242667pt;}
.lse{letter-spacing:-1.141333pt;}
.lsc{letter-spacing:-0.122133pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.011200pt;}
.lsb{letter-spacing:0.202133pt;}
.ls0{letter-spacing:0.341333pt;}
.ls1{letter-spacing:0.530667pt;}
.ls9{letter-spacing:0.704000pt;}
.ls8{letter-spacing:1.088000pt;}
.lsa{letter-spacing:1.285333pt;}
.ls3{letter-spacing:1.296000pt;}
.ls7{letter-spacing:1.376000pt;}
.ls6{letter-spacing:1.408000pt;}
.wsb{word-spacing:-128.133333pt;}
.wsa{word-spacing:-128.000000pt;}
.ws6{word-spacing:-108.000000pt;}
.ws8{word-spacing:-92.133333pt;}
.ws9{word-spacing:-92.000000pt;}
.wse{word-spacing:-65.608000pt;}
.wsd{word-spacing:-58.973067pt;}
.wsc{word-spacing:-58.936000pt;}
.ws1{word-spacing:-50.338933pt;}
.ws2{word-spacing:-50.304000pt;}
.ws12{word-spacing:-47.816000pt;}
.ws11{word-spacing:-41.144000pt;}
.ws1a{word-spacing:-38.810933pt;}
.ws13{word-spacing:-38.776000pt;}
.ws0{word-spacing:-33.570933pt;}
.ws15{word-spacing:-30.024000pt;}
.ws14{word-spacing:-29.616267pt;}
.ws3{word-spacing:-28.330933pt;}
.ws5{word-spacing:-28.296000pt;}
.ws19{word-spacing:-26.688000pt;}
.ws1b{word-spacing:-25.152000pt;}
.ws4{word-spacing:-18.898933pt;}
.ws7{word-spacing:-18.864000pt;}
.wsf{word-spacing:-1.589333pt;}
.ws10{word-spacing:-0.192000pt;}
.ws1c{word-spacing:0.000000pt;}
.ws18{word-spacing:51.927733pt;}
.ws17{word-spacing:313.768000pt;}
.ws16{word-spacing:434.941333pt;}
._12{margin-left:-2577.098933pt;}
._9{margin-left:-22.464000pt;}
._8{margin-left:-14.347067pt;}
._6{margin-left:-12.516400pt;}
._e{margin-left:-9.258133pt;}
._7{margin-left:-7.100400pt;}
._d{margin-left:-6.084400pt;}
._4{margin-left:-4.552400pt;}
._5{margin-left:-3.332267pt;}
._0{margin-left:-2.140667pt;}
._3{margin-left:-0.947467pt;}
._2{width:1.284400pt;}
._1{width:2.568800pt;}
._c{width:3.458933pt;}
._b{width:4.666667pt;}
._a{width:5.705733pt;}
._11{width:7.061733pt;}
._f{width:8.074400pt;}
._10{width:9.504533pt;}
._15{width:26.665867pt;}
._14{width:35.679200pt;}
._13{width:2885.739867pt;}
.fsc{font-size:72.000000pt;}
.fsb{font-size:72.133333pt;}
.fs4{font-size:84.000000pt;}
.fse{font-size:92.000000pt;}
.fsd{font-size:92.133333pt;}
.fs14{font-size:96.000000pt;}
.fs15{font-size:96.133333pt;}
.fs9{font-size:108.000000pt;}
.fsa{font-size:108.133333pt;}
.fs3{font-size:112.000000pt;}
.fs6{font-size:128.000000pt;}
.fs5{font-size:128.133333pt;}
.fsf{font-size:148.000000pt;}
.fs13{font-size:148.133333pt;}
.fs1{font-size:172.000000pt;}
.fs2{font-size:172.133333pt;}
.fs7{font-size:192.000000pt;}
.fs8{font-size:192.133333pt;}
.fs10{font-size:212.000000pt;}
.fs11{font-size:212.133333pt;}
.fs12{font-size:236.000000pt;}
.fs0{font-size:428.133333pt;}
.yb4{bottom:-15.360000pt;}
.ya3{bottom:-15.226667pt;}
.y94{bottom:-8.800000pt;}
.y53{bottom:-8.240000pt;}
.y78{bottom:-8.200000pt;}
.y4f{bottom:-8.000000pt;}
.y72{bottom:-7.866667pt;}
.ya1{bottom:-5.000000pt;}
.y66{bottom:-4.760000pt;}
.y41{bottom:-4.706667pt;}
.y6e{bottom:-0.866667pt;}
.y92{bottom:-0.800000pt;}
.y68{bottom:-0.760000pt;}
.yae{bottom:-0.640000pt;}
.yc5{bottom:-0.533333pt;}
.y74{bottom:-0.426667pt;}
.y5e{bottom:-0.400000pt;}
.yb6{bottom:-0.360000pt;}
.ybe{bottom:-0.306667pt;}
.y86{bottom:-0.266667pt;}
.y45{bottom:-0.240000pt;}
.ya7{bottom:-0.226667pt;}
.y7a{bottom:-0.200000pt;}
.y57{bottom:-0.160000pt;}
.yba{bottom:-0.133333pt;}
.yb2{bottom:-0.026667pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:0.133333pt;}
.y5c{bottom:0.173333pt;}
.y8a{bottom:0.200000pt;}
.y4a{bottom:0.240000pt;}
.y7d{bottom:0.266667pt;}
.y3d{bottom:0.293333pt;}
.y43{bottom:0.306667pt;}
.y51{bottom:0.360000pt;}
.y60{bottom:0.600000pt;}
.y4c{bottom:0.760000pt;}
.yb0{bottom:0.773333pt;}
.y7f{bottom:0.800000pt;}
.y5a{bottom:0.840000pt;}
.y76{bottom:1.133333pt;}
.y47{bottom:1.306667pt;}
.yc1{bottom:1.640000pt;}
.y88{bottom:1.733333pt;}
.y55{bottom:1.760000pt;}
.y96{bottom:4.200000pt;}
.y70{bottom:4.573333pt;}
.y90{bottom:4.666667pt;}
.y64{bottom:4.706667pt;}
.y3f{bottom:4.760000pt;}
.y81{bottom:5.240000pt;}
.y7c{bottom:5.266667pt;}
.yac{bottom:5.360000pt;}
.yc7{bottom:5.466667pt;}
.ybc{bottom:5.693333pt;}
.ya5{bottom:5.773333pt;}
.ya9{bottom:6.000000pt;}
.y8e{bottom:6.200000pt;}
.y62{bottom:6.240000pt;}
.yc3{bottom:6.640000pt;}
.yb8{bottom:6.866667pt;}
.y8c{bottom:7.200000pt;}
.yf9{bottom:12.466667pt;}
.y84{bottom:31.200000pt;}
.y6a{bottom:31.240000pt;}
.y103{bottom:81.600000pt;}
.y7{bottom:92.266667pt;}
.y101{bottom:116.160000pt;}
.yff{bottom:120.466667pt;}
.y6{bottom:143.266667pt;}
.y102{bottom:150.733333pt;}
.yfe{bottom:152.466667pt;}
.y5{bottom:194.306667pt;}
.y100{bottom:219.866667pt;}
.yfb{bottom:238.093333pt;}
.y4{bottom:246.306667pt;}
.yfa{bottom:248.093333pt;}
.y105{bottom:299.493333pt;}
.yfd{bottom:299.960000pt;}
.y104{bottom:328.493333pt;}
.yfc{bottom:331.960000pt;}
.y31{bottom:412.560000pt;}
.y2c{bottom:418.133333pt;}
.y30{bottom:469.560000pt;}
.y2b{bottom:475.133333pt;}
.y2f{bottom:527.600000pt;}
.y2a{bottom:533.173333pt;}
.y2e{bottom:585.600000pt;}
.y29{bottom:590.173333pt;}
.y2d{bottom:642.640000pt;}
.y28{bottom:648.173333pt;}
.y27{bottom:706.200000pt;}
.y26{bottom:763.200000pt;}
.yd4{bottom:821.040000pt;}
.yc6{bottom:913.000000pt;}
.yf3{bottom:917.266667pt;}
.yc4{bottom:919.000000pt;}
.y9e{bottom:923.573333pt;}
.yf2{bottom:962.306667pt;}
.ybf{bottom:966.000000pt;}
.y9d{bottom:987.573333pt;}
.ybb{bottom:998.000000pt;}
.ybd{bottom:1004.000000pt;}
.yf1{bottom:1007.306667pt;}
.yc2{bottom:1017.000000pt;}
.y9c{bottom:1019.573333pt;}
.yc0{bottom:1022.000000pt;}
.yb5{bottom:1024.000000pt;}
.yb3{bottom:1039.000000pt;}
.yb7{bottom:1041.000000pt;}
.yb9{bottom:1048.000000pt;}
.y9f{bottom:1050.000000pt;}
.yf0{bottom:1051.293333pt;}
.y9b{bottom:1051.560000pt;}
.ya0{bottom:1055.000000pt;}
.yef{bottom:1096.333333pt;}
.y9a{bottom:1115.600000pt;}
.yb1{bottom:1118.000000pt;}
.yab{bottom:1133.000000pt;}
.yad{bottom:1139.000000pt;}
.yee{bottom:1141.333333pt;}
.y99{bottom:1147.600000pt;}
.ya4{bottom:1154.000000pt;}
.yaf{bottom:1159.000000pt;}
.ya6{bottom:1160.000000pt;}
.ya2{bottom:1175.000000pt;}
.ya8{bottom:1178.000000pt;}
.y98{bottom:1179.600000pt;}
.yaa{bottom:1184.000000pt;}
.yed{bottom:1186.333333pt;}
.yec{bottom:1232.360000pt;}
.yc8{bottom:1244.400000pt;}
.ye4{bottom:1328.306667pt;}
.ye3{bottom:1330.133333pt;}
.y83{bottom:1357.000000pt;}
.y8f{bottom:1362.000000pt;}
.y8b{bottom:1366.000000pt;}
.y8d{bottom:1367.000000pt;}
.y95{bottom:1369.000000pt;}
.y3b{bottom:1369.973333pt;}
.y89{bottom:1373.000000pt;}
.y91{bottom:1374.000000pt;}
.y93{bottom:1382.000000pt;}
.y80{bottom:1383.000000pt;}
.y82{bottom:1393.000000pt;}
.ye5{bottom:1396.933333pt;}
.y87{bottom:1409.000000pt;}
.y85{bottom:1411.000000pt;}
.y3a{bottom:1418.000000pt;}
.y39{bottom:1466.000000pt;}
.y7b{bottom:1480.000000pt;}
.y69{bottom:1485.000000pt;}
.y7e{bottom:1491.000000pt;}
.y79{bottom:1492.000000pt;}
.y77{bottom:1500.000000pt;}
.y63{bottom:1505.000000pt;}
.y61{bottom:1510.000000pt;}
.y38{bottom:1514.000000pt;}
.y67{bottom:1517.000000pt;}
.y65{bottom:1521.000000pt;}
.y6f{bottom:1531.000000pt;}
.y73{bottom:1536.000000pt;}
.y75{bottom:1541.000000pt;}
.y6b{bottom:1542.000000pt;}
.y6d{bottom:1543.000000pt;}
.y71{bottom:1550.000000pt;}
.y37{bottom:1562.026667pt;}
.y5b{bottom:1595.000000pt;}
.y36{bottom:1610.026667pt;}
.y5f{bottom:1616.000000pt;}
.y5d{bottom:1617.000000pt;}
.y58{bottom:1634.000000pt;}
.y59{bottom:1640.000000pt;}
.y56{bottom:1641.000000pt;}
.y35{bottom:1658.026667pt;}
.y3e{bottom:1667.000000pt;}
.y50{bottom:1672.000000pt;}
.y3c{bottom:1678.000000pt;}
.y40{bottom:1683.000000pt;}
.y49{bottom:1687.000000pt;}
.y54{bottom:1692.000000pt;}
.y4b{bottom:1693.000000pt;}
.y48{bottom:1694.000000pt;}
.y52{bottom:1702.000000pt;}
.y34{bottom:1706.066667pt;}
.y4d{bottom:1718.000000pt;}
.y4e{bottom:1726.000000pt;}
.y44{bottom:1751.000000pt;}
.y33{bottom:1754.066667pt;}
.y46{bottom:1756.000000pt;}
.y42{bottom:1757.000000pt;}
.y32{bottom:1802.066667pt;}
.y97{bottom:1856.026667pt;}
.ye6{bottom:1903.333333pt;}
.y10a{bottom:1943.466667pt;}
.y109{bottom:1972.466667pt;}
.yd1{bottom:2035.626667pt;}
.ycc{bottom:2052.266667pt;}
.yd0{bottom:2073.640000pt;}
.ycb{bottom:2090.306667pt;}
.ycf{bottom:2112.666667pt;}
.yca{bottom:2128.293333pt;}
.yc9{bottom:2167.293333pt;}
.yce{bottom:2168.666667pt;}
.ycd{bottom:2249.693333pt;}
.y25{bottom:2327.066667pt;}
.y24{bottom:2384.066667pt;}
.y23{bottom:2442.106667pt;}
.y22{bottom:2499.106667pt;}
.y21{bottom:2615.133333pt;}
.y20{bottom:2672.133333pt;}
.y1f{bottom:2730.173333pt;}
.y1e{bottom:2787.160000pt;}
.yeb{bottom:2850.600000pt;}
.yea{bottom:2895.600000pt;}
.y1d{bottom:2903.200000pt;}
.ye9{bottom:2940.626667pt;}
.y1c{bottom:2960.226667pt;}
.ye8{bottom:2985.626667pt;}
.ye7{bottom:3031.626667pt;}
.yd2{bottom:3059.426667pt;}
.y1b{bottom:3114.600000pt;}
.yf7{bottom:3135.066667pt;}
.ye2{bottom:3148.226667pt;}
.yf6{bottom:3167.066667pt;}
.y1a{bottom:3171.600000pt;}
.yf5{bottom:3199.066667pt;}
.ye1{bottom:3206.226667pt;}
.y19{bottom:3229.600000pt;}
.yf4{bottom:3231.066667pt;}
.ye0{bottom:3264.266667pt;}
.yf8{bottom:3273.000000pt;}
.y18{bottom:3287.626667pt;}
.ydf{bottom:3321.266667pt;}
.y17{bottom:3344.626667pt;}
.yde{bottom:3379.266667pt;}
.ydd{bottom:3436.293333pt;}
.ydc{bottom:3494.293333pt;}
.ydb{bottom:3552.333333pt;}
.y16{bottom:3575.693333pt;}
.yda{bottom:3609.333333pt;}
.y15{bottom:3632.693333pt;}
.yd9{bottom:3667.360000pt;}
.y14{bottom:3690.733333pt;}
.yd8{bottom:3724.360000pt;}
.y13{bottom:3747.733333pt;}
.yd7{bottom:3782.360000pt;}
.y108{bottom:3790.560000pt;}
.y12{bottom:3805.760000pt;}
.y107{bottom:3833.600000pt;}
.yd6{bottom:3840.400000pt;}
.y11{bottom:3863.760000pt;}
.y106{bottom:3879.600000pt;}
.yd5{bottom:3897.400000pt;}
.y10{bottom:3920.760000pt;}
.yd3{bottom:3959.533333pt;}
.yf{bottom:4017.533333pt;}
.y3{bottom:4045.360000pt;}
.ye{bottom:4066.533333pt;}
.yd{bottom:4094.560000pt;}
.yc{bottom:4132.560000pt;}
.y2{bottom:4173.400000pt;}
.yb{bottom:4181.560000pt;}
.ya{bottom:4209.560000pt;}
.y9{bottom:4258.600000pt;}
.y1{bottom:4301.426667pt;}
.y8{bottom:4321.600000pt;}
.h19{height:3.000000pt;}
.h1d{height:5.000000pt;}
.h26{height:8.000000pt;}
.h23{height:9.000000pt;}
.h10{height:10.000000pt;}
.h12{height:12.000000pt;}
.h17{height:13.000000pt;}
.he{height:17.000000pt;}
.h1b{height:18.000000pt;}
.h1a{height:19.000000pt;}
.h24{height:20.000000pt;}
.h18{height:21.000000pt;}
.h16{height:22.000000pt;}
.hc{height:23.000000pt;}
.h15{height:24.000000pt;}
.h1f{height:27.000000pt;}
.h27{height:28.000000pt;}
.h28{height:30.000000pt;}
.h21{height:31.000000pt;}
.h5{height:63.000000pt;}
.h36{height:72.000000pt;}
.h37{height:72.100000pt;}
.ha{height:81.000000pt;}
.hb{height:81.100000pt;}
.h1c{height:82.000000pt;}
.h22{height:88.875000pt;}
.h20{height:88.967578pt;}
.h6{height:96.000000pt;}
.h7{height:96.100000pt;}
.h35{height:100.125000pt;}
.h14{height:108.187500pt;}
.h1e{height:108.300195pt;}
.h29{height:111.000000pt;}
.h30{height:111.100000pt;}
.h34{height:112.640625pt;}
.h33{height:112.779687pt;}
.h25{height:129.000000pt;}
.h13{height:143.615234pt;}
.hf{height:143.823372pt;}
.h8{height:144.000000pt;}
.h9{height:144.100000pt;}
.h2{height:148.988281pt;}
.h3{height:149.103776pt;}
.h2f{height:151.541016pt;}
.h31{height:151.677539pt;}
.h2d{height:154.359375pt;}
.h4{height:179.390625pt;}
.h2e{height:192.563958pt;}
.h11{height:199.812500pt;}
.hd{height:200.020638pt;}
.h2a{height:221.109375pt;}
.h2b{height:221.248438pt;}
.h2c{height:246.140625pt;}
.h1{height:446.529687pt;}
.h32{height:488.000000pt;}
.h0{height:4498.000000pt;}
.w10{width:4.000000pt;}
.w1e{width:5.000000pt;}
.w17{width:6.000000pt;}
.w6{width:9.000000pt;}
.w9{width:10.000000pt;}
.wd{width:11.000000pt;}
.w12{width:12.000000pt;}
.w8{width:14.000000pt;}
.wc{width:15.000000pt;}
.w7{width:16.000000pt;}
.wa{width:17.000000pt;}
.w3{width:18.000000pt;}
.w5{width:20.000000pt;}
.wb{width:21.000000pt;}
.we{width:32.000000pt;}
.w13{width:33.000000pt;}
.w11{width:38.000000pt;}
.w4{width:39.000000pt;}
.wf{width:47.000000pt;}
.w1c{width:48.000000pt;}
.w1f{width:49.000000pt;}
.w1b{width:50.000000pt;}
.w16{width:57.000000pt;}
.w18{width:63.000000pt;}
.w19{width:72.000000pt;}
.w20{width:77.000000pt;}
.w1a{width:83.000000pt;}
.w14{width:91.000000pt;}
.w15{width:92.000000pt;}
.w1d{width:139.000000pt;}
.w21{width:1014.000000pt;}
.w2{width:3174.999953pt;}
.w0{width:3175.000000pt;}
.w1{width:3175.333333pt;}
.x37{left:-2.693333pt;}
.x15{left:-1.733333pt;}
.x0{left:0.000000pt;}
.x99{left:7.066667pt;}
.x6a{left:72.000000pt;}
.x10{left:74.366619pt;}
.xe{left:76.633286pt;}
.x33{left:78.000000pt;}
.xa4{left:82.999953pt;}
.x6b{left:91.000000pt;}
.x13{left:92.000000pt;}
.xa{left:94.866619pt;}
.x7{left:107.099953pt;}
.x8{left:109.666619pt;}
.xb{left:128.599953pt;}
.x6c{left:136.000000pt;}
.x34{left:140.000000pt;}
.x14{left:143.000000pt;}
.xf{left:154.826619pt;}
.x35{left:173.000000pt;}
.x4f{left:176.000000pt;}
.x1c{left:196.000000pt;}
.x36{left:205.000000pt;}
.x1d{left:213.000000pt;}
.x6d{left:216.000000pt;}
.x1e{left:234.000000pt;}
.x38{left:240.000000pt;}
.x1f{left:264.000000pt;}
.x9a{left:265.706667pt;}
.x7b{left:271.000000pt;}
.x50{left:280.000000pt;}
.x20{left:290.000000pt;}
.x22{left:292.000000pt;}
.x39{left:296.000000pt;}
.x2d{left:305.000000pt;}
.xd{left:306.466619pt;}
.x51{left:312.000000pt;}
.x62{left:317.039953pt;}
.x21{left:320.000000pt;}
.x2e{left:322.000000pt;}
.x6e{left:325.000000pt;}
.x48{left:330.000000pt;}
.x57{left:335.000000pt;}
.x16{left:339.000000pt;}
.x2f{left:343.000000pt;}
.x32{left:345.000000pt;}
.x23{left:353.000000pt;}
.x17{left:355.000000pt;}
.x3a{left:371.000000pt;}
.x30{left:372.000000pt;}
.x49{left:377.000000pt;}
.x3b{left:378.000000pt;}
.x31{left:388.000000pt;}
.x24{left:401.000000pt;}
.x6f{left:406.000000pt;}
.x3c{left:410.000000pt;}
.x25{left:417.000000pt;}
.x58{left:420.000000pt;}
.x8b{left:425.133286pt;}
.x4a{left:428.000000pt;}
.x59{left:436.000000pt;}
.x26{left:438.000000pt;}
.x7c{left:439.000000pt;}
.x71{left:442.000000pt;}
.x3d{left:460.000000pt;}
.x27{left:468.000000pt;}
.x9{left:469.559953pt;}
.x8d{left:472.506619pt;}
.x7f{left:475.000000pt;}
.x3e{left:476.000000pt;}
.x5a{left:481.000000pt;}
.x28{left:484.000000pt;}
.x52{left:485.000000pt;}
.x4b{left:500.000000pt;}
.x9b{left:502.560000pt;}
.x70{left:509.000000pt;}
.x5b{left:511.000000pt;}
.x7d{left:518.000000pt;}
.x5c{left:523.000000pt;}
.x3f{left:525.000000pt;}
.x81{left:538.000000pt;}
.x7e{left:542.000000pt;}
.x88{left:547.000000pt;}
.x72{left:548.000000pt;}
.x29{left:549.000000pt;}
.x40{left:554.000000pt;}
.x7a{left:567.000000pt;}
.x41{left:571.000000pt;}
.x89{left:577.000000pt;}
.x4c{left:578.000000pt;}
.x2a{left:580.000000pt;}
.x80{left:581.000000pt;}
.x18{left:582.000000pt;}
.x5d{left:585.000000pt;}
.x73{left:592.000000pt;}
.x4d{left:595.000000pt;}
.x5e{left:602.000000pt;}
.x19{left:606.000000pt;}
.x5f{left:615.000000pt;}
.xc{left:620.973286pt;}
.x74{left:624.000000pt;}
.x82{left:625.000000pt;}
.x60{left:629.000000pt;}
.x1a{left:633.000000pt;}
.x2b{left:639.000000pt;}
.x75{left:642.000000pt;}
.x61{left:645.000000pt;}
.x8a{left:646.000000pt;}
.x76{left:649.000000pt;}
.x83{left:658.000000pt;}
.x42{left:664.000000pt;}
.x1b{left:666.000000pt;}
.x77{left:672.000000pt;}
.x84{left:675.000000pt;}
.x85{left:682.000000pt;}
.x43{left:693.000000pt;}
.x53{left:698.000000pt;}
.x2c{left:699.000000pt;}
.x9c{left:703.640000pt;}
.x86{left:706.000000pt;}
.x44{left:709.000000pt;}
.x4e{left:710.000000pt;}
.x9e{left:715.733333pt;}
.x54{left:722.000000pt;}
.x78{left:732.000000pt;}
.x55{left:749.000000pt;}
.x45{left:760.000000pt;}
.x87{left:764.000000pt;}
.x9d{left:765.906667pt;}
.x56{left:787.000000pt;}
.x46{left:792.000000pt;}
.x9f{left:800.040000pt;}
.x79{left:801.000000pt;}
.x47{left:808.000000pt;}
.x12{left:834.973286pt;}
.x8c{left:856.626619pt;}
.xa0{left:867.333333pt;}
.xa2{left:896.360000pt;}
.xa1{left:917.893333pt;}
.xa3{left:925.706667pt;}
.x67{left:932.933286pt;}
.x69{left:938.666619pt;}
.x63{left:948.199953pt;}
.x64{left:952.466619pt;}
.x90{left:1002.173286pt;}
.x66{left:1005.173286pt;}
.x8e{left:1027.626619pt;}
.x68{left:1143.333286pt;}
.x65{left:1167.506619pt;}
.x98{left:1366.000000pt;}
.x11{left:1368.799953pt;}
.x96{left:1380.239953pt;}
.x1{left:1396.266619pt;}
.x95{left:1461.666619pt;}
.x2{left:1470.533286pt;}
.x4{left:1538.399953pt;}
.x3{left:1559.399953pt;}
.x5{left:1601.039953pt;}
.x6{left:1684.839953pt;}
.x94{left:1799.293286pt;}
.x93{left:1984.626619pt;}
.x92{left:2360.666619pt;}
.x91{left:2408.639953pt;}
.x97{left:2745.999953pt;}
.x8f{left:2834.039953pt;}
}




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