
    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_c88f2b0927ade59c89d97c4c.woff2')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_1c1b6569f8c28f6dd261fc23.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ea3f193c771d5b4ce79f4054.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_48c1e564bc2032197b8e175a.woff2')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_ac4fa34d76f983dea53ad670.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_2462ddc5864a57153b98d843.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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_0a0c69b3b3359a588b0cea7e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.707031;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_4ec26edac6c750ce7aac0682.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a398269e4a515f5e79f1882e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.692871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.000000,-0.250140,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250140,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250140,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-15.119994px;}
.v2{vertical-align:-9.359996px;}
.v1{vertical-align:-7.919997px;}
.v3{vertical-align:-5.759998px;}
.v5{vertical-align:-4.319998px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:4.319998px;}
.v4{vertical-align:219.599912px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.076598px;}
.ls4{letter-spacing:6.018314px;}
.ls11{letter-spacing:6.741484px;}
.ls1d{letter-spacing:7.461088px;}
.ls9{letter-spacing:7.531628px;}
.lsb{letter-spacing:7.723635px;}
.lsa{letter-spacing:7.944499px;}
.ls5{letter-spacing:40.109888px;}
.ls18{letter-spacing:47.048244px;}
.lsc{letter-spacing:53.058683px;}
.ls1c{letter-spacing:53.476035px;}
.ls1a{letter-spacing:53.515740px;}
.ls1b{letter-spacing:60.782318px;}
.ls10{letter-spacing:61.195189px;}
.ls17{letter-spacing:66.407079px;}
.ls19{letter-spacing:72.883514px;}
.ls8{letter-spacing:97.846098px;}
.ls7{letter-spacing:106.159295px;}
.ls6{letter-spacing:119.849061px;}
.ls1{letter-spacing:120.059946px;}
.lsd{letter-spacing:210.327865px;}
.lsf{letter-spacing:232.635587px;}
.lse{letter-spacing:233.355190px;}
.ls16{letter-spacing:239.302120px;}
.ls15{letter-spacing:239.302182px;}
.ls2{letter-spacing:260.476586px;}
.ls3{letter-spacing:260.478985px;}
.ls1e{letter-spacing:263.572570px;}
.ls20{letter-spacing:263.577173px;}
.ls1f{letter-spacing:263.578556px;}
.ls13{letter-spacing:396.056150px;}
.ls12{letter-spacing:423.401099px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-84.095966px;}
.ws1e{word-spacing:-83.915966px;}
.wsf{word-spacing:-73.458691px;}
.ws5{word-spacing:-66.653253px;}
.ws21{word-spacing:-60.124574px;}
.ws3{word-spacing:-60.047976px;}
.ws2{word-spacing:-53.442699px;}
.ws12{word-spacing:-46.637261px;}
.wsb{word-spacing:-40.031984px;}
.ws9{word-spacing:-30.023988px;}
.ws2d{word-spacing:-19.944101px;}
.ws1d{word-spacing:-16.417717px;}
.ws1f{word-spacing:-15.011994px;}
.ws14{word-spacing:-1.744340px;}
.ws19{word-spacing:-1.362604px;}
.ws4{word-spacing:-0.611280px;}
.ws18{word-spacing:-0.190295px;}
.ws1a{word-spacing:-0.120916px;}
.ws11{word-spacing:-0.120828px;}
.ws13{word-spacing:-0.091674px;}
.ws1{word-spacing:0.000000px;}
.ws17{word-spacing:0.073152px;}
.ws8{word-spacing:0.073156px;}
.ws27{word-spacing:0.074271px;}
.ws28{word-spacing:0.074432px;}
.ws16{word-spacing:0.075430px;}
.ws15{word-spacing:0.076597px;}
.wsd{word-spacing:0.337342px;}
.ws25{word-spacing:0.416501px;}
.ws24{word-spacing:0.628153px;}
.ws0{word-spacing:0.731319px;}
.ws23{word-spacing:6.300284px;}
.ws2c{word-spacing:6.301181px;}
.ws29{word-spacing:6.624612px;}
.ws22{word-spacing:6.887690px;}
.ws26{word-spacing:6.890649px;}
.wse{word-spacing:7.342426px;}
.ws2b{word-spacing:7.344216px;}
.ws7{word-spacing:7.564266px;}
.ws1b{word-spacing:8.390347px;}
.ws6{word-spacing:9.448992px;}
.wsa{word-spacing:9.932751px;}
.ws10{word-spacing:347.710116px;}
.ws2a{word-spacing:371.729861px;}
.ws20{word-spacing:553.156780px;}
.ws1c{word-spacing:863.906038px;}
._1b{margin-left:-1589.780301px;}
._7{margin-left:-82.654383px;}
._18{margin-left:-4.498566px;}
._f{margin-left:-2.825078px;}
._0{margin-left:-1.625412px;}
._1{width:1.406522px;}
._17{width:3.425841px;}
._6{width:4.649537px;}
._3{width:6.113425px;}
._2{width:7.117016px;}
._b{width:8.266436px;}
._5{width:9.771474px;}
._e{width:12.905254px;}
._14{width:22.016417px;}
._10{width:31.699849px;}
._c{width:47.958176px;}
._4{width:51.684029px;}
._d{width:53.286246px;}
._15{width:176.324766px;}
._a{width:366.387088px;}
._16{width:753.626480px;}
._19{width:837.506314px;}
._13{width:881.574603px;}
._12{width:896.874259px;}
._9{width:902.690034px;}
._11{width:913.424819px;}
._8{width:990.478572px;}
._1c{width:2169.716850px;}
._1a{width:2217.625247px;}
.fca{color:rgb(0,0,153);}
.fc9{color:rgb(0,128,0);}
.fc8{color:transparent;}
.fc5{color:rgb(38,141,192);}
.fc6{color:rgb(85,142,213);}
.fc4{color:rgb(192,0,0);}
.fc2{color:rgb(252,213,181);}
.fc7{color:rgb(204,101,0);}
.fc3{color:rgb(192,192,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:53.999978px;}
.fsd{font-size:59.056536px;}
.fs10{font-size:71.741371px;}
.fsc{font-size:82.678767px;}
.fse{font-size:84.239966px;}
.fs1{font-size:95.759962px;}
.fsa{font-size:107.999957px;}
.fs0{font-size:120.239952px;}
.fs9{font-size:143.999942px;}
.fs2{font-size:167.759933px;}
.fs6{font-size:192.239923px;}
.fs3{font-size:215.999914px;}
.fs5{font-size:228.239909px;}
.fs8{font-size:239.759904px;}
.fs7{font-size:257.759897px;}
.fs4{font-size:264.239894px;}
.fsb{font-size:287.999885px;}
.y0{bottom:0.000000px;}
.yc2{bottom:11.520243px;}
.y6{bottom:61.800332px;}
.ya7{bottom:65.040331px;}
.y37{bottom:66.480330px;}
.y25{bottom:68.820329px;}
.ybc{bottom:72.960328px;}
.y1{bottom:73.860327px;}
.y6b{bottom:78.540326px;}
.ye6{bottom:83.940323px;}
.yf0{bottom:84.120323px;}
.y9b{bottom:85.740323px;}
.yed{bottom:85.920323px;}
.y9c{bottom:86.820322px;}
.y5{bottom:90.780321px;}
.ybb{bottom:98.160318px;}
.yd6{bottom:105.540315px;}
.y4{bottom:119.580309px;}
.ydc{bottom:122.100308px;}
.ye7{bottom:124.260307px;}
.y36{bottom:125.340307px;}
.y2e{bottom:130.740305px;}
.y2f{bottom:133.080304px;}
.y59{bottom:140.100301px;}
.y58{bottom:142.620300px;}
.y3b{bottom:147.660298px;}
.y24{bottom:149.460297px;}
.yaf{bottom:150.180297px;}
.yb8{bottom:155.400295px;}
.y64{bottom:157.740294px;}
.ya9{bottom:179.700285px;}
.y7b{bottom:187.620282px;}
.y2{bottom:188.700056px;}
.y84{bottom:189.240281px;}
.yaa{bottom:195.900279px;}
.y57{bottom:200.220277px;}
.y4a{bottom:200.400277px;}
.y10{bottom:200.940277px;}
.y4b{bottom:201.840276px;}
.y2c{bottom:202.740276px;}
.y1c{bottom:204.360275px;}
.y2d{bottom:205.080275px;}
.y3a{bottom:205.260275px;}
.yc{bottom:206.880274px;}
.ya3{bottom:209.220273px;}
.ya2{bottom:210.660273px;}
.yfe{bottom:231.900264px;}
.y7a{bottom:235.140263px;}
.y66{bottom:236.400262px;}
.ye4{bottom:236.940262px;}
.y83{bottom:239.460261px;}
.y82{bottom:240.900261px;}
.y23{bottom:245.760259px;}
.y8a{bottom:250.080257px;}
.y35{bottom:259.800253px;}
.yc1{bottom:273.300000px;}
.yc3{bottom:275.460000px;}
.yf{bottom:281.580244px;}
.y48{bottom:283.560244px;}
.y5f{bottom:284.640243px;}
.ybf{bottom:284.820243px;}
.y47{bottom:285.000243px;}
.y61{bottom:285.540243px;}
.y92{bottom:285.720243px;}
.y60{bottom:286.620242px;}
.yc0{bottom:286.980242px;}
.y15{bottom:288.960241px;}
.ya1{bottom:295.800239px;}
.y1b{bottom:297.600238px;}
.yd2{bottom:300.120237px;}
.yd9{bottom:301.200237px;}
.ybe{bottom:302.100236px;}
.yda{bottom:302.820236px;}
.ycc{bottom:303.900235px;}
.y3f{bottom:304.980235px;}
.ycd{bottom:305.880235px;}
.yab{bottom:306.600234px;}
.y5a{bottom:311.100233px;}
.y3{bottom:321.179600px;}
.yfd{bottom:322.080228px;}
.yee{bottom:332.700224px;}
.ye3{bottom:334.140223px;}
.y81{bottom:334.320223px;}
.yf5{bottom:338.280222px;}
.yf4{bottom:338.640222px;}
.yfc{bottom:340.440221px;}
.ya0{bottom:341.700220px;}
.y22{bottom:342.060220px;}
.y9f{bottom:343.140220px;}
.y29{bottom:345.660219px;}
.y93{bottom:352.500216px;}
.ye9{bottom:353.400216px;}
.y78{bottom:357.720214px;}
.y79{bottom:359.700213px;}
.ycb{bottom:363.480212px;}
.y70{bottom:367.080210px;}
.y46{bottom:367.980210px;}
.yc5{bottom:374.820207px;}
.y6a{bottom:375.540207px;}
.ye1{bottom:375.900207px;}
.yc6{bottom:376.980206px;}
.ye2{bottom:377.340206px;}
.y63{bottom:379.140205px;}
.y80{bottom:385.980203px;}
.y8e{bottom:387.420202px;}
.y1a{bottom:391.200201px;}
.yc4{bottom:392.280200px;}
.y4f{bottom:398.760197px;}
.y87{bottom:400.740197px;}
.y45{bottom:402.000196px;}
.y44{bottom:402.360196px;}
.y39{bottom:404.520195px;}
.y28{bottom:410.460193px;}
.yfb{bottom:412.440192px;}
.y77{bottom:417.300190px;}
.y55{bottom:420.000189px;}
.yca{bottom:421.080189px;}
.y99{bottom:427.200186px;}
.y6f{bottom:427.560186px;}
.y9a{bottom:428.640186px;}
.ye8{bottom:434.040183px;}
.y7f{bottom:437.820182px;}
.y1d{bottom:438.540182px;}
.yf3{bottom:441.240181px;}
.ye{bottom:442.860180px;}
.yff{bottom:447.000178px;}
.y42{bottom:449.160177px;}
.y43{bottom:450.240177px;}
.y41{bottom:450.600177px;}
.y8d{bottom:452.400176px;}
.y9{bottom:452.580176px;}
.ye5{bottom:453.300176px;}
.yd3{bottom:457.440174px;}
.y90{bottom:459.960173px;}
.y91{bottom:461.580172px;}
.yd8{bottom:467.160170px;}
.y14{bottom:470.580169px;}
.y62{bottom:474.360167px;}
.y27{bottom:475.440167px;}
.y98{bottom:476.160167px;}
.yc9{bottom:478.680166px;}
.y18{bottom:484.800163px;}
.y6e{bottom:488.220162px;}
.y56{bottom:489.840161px;}
.y65{bottom:493.800159px;}
.y38{bottom:504.060155px;}
.y8f{bottom:511.980152px;}
.ydd{bottom:519.360149px;}
.yde{bottom:520.800149px;}
.y86{bottom:522.420148px;}
.yd{bottom:523.500148px;}
.y73{bottom:525.840147px;}
.yac{bottom:528.180146px;}
.yd7{bottom:532.680144px;}
.y49{bottom:533.220144px;}
.yb3{bottom:537.720142px;}
.yf1{bottom:538.260142px;}
.yb4{bottom:538.800141px;}
.yf6{bottom:539.520141px;}
.yf2{bottom:539.880141px;}
.y26{bottom:540.240141px;}
.y88{bottom:545.640139px;}
.y89{bottom:547.620138px;}
.y1f{bottom:547.980138px;}
.y52{bottom:549.420137px;}
.yb9{bottom:551.760136px;}
.yba{bottom:553.380136px;}
.ya5{bottom:558.600134px;}
.ya4{bottom:560.040133px;}
.yb1{bottom:565.080131px;}
.y5b{bottom:572.640128px;}
.y85{bottom:574.080127px;}
.yb2{bottom:593.340120px;}
.y32{bottom:594.060119px;}
.yb0{bottom:594.600119px;}
.y94{bottom:595.320119px;}
.y3e{bottom:603.960115px;}
.y40{bottom:616.200111px;}
.ye0{bottom:617.100110px;}
.yb5{bottom:624.120107px;}
.yb6{bottom:625.200107px;}
.y101{bottom:633.480104px;}
.yad{bottom:638.880101px;}
.y100{bottom:655.080095px;}
.y33{bottom:656.880094px;}
.yf7{bottom:659.580093px;}
.yae{bottom:661.020093px;}
.yb7{bottom:662.100092px;}
.y13{bottom:664.440091px;}
.yd1{bottom:675.420087px;}
.y69{bottom:676.140087px;}
.y76{bottom:679.920085px;}
.y19{bottom:680.820085px;}
.y1e{bottom:683.520084px;}
.yd0{bottom:684.960083px;}
.ya8{bottom:685.140083px;}
.yea{bottom:699.000077px;}
.y50{bottom:699.540077px;}
.y51{bottom:702.240076px;}
.yef{bottom:707.640074px;}
.y2a{bottom:709.620073px;}
.y2b{bottom:711.960072px;}
.y5e{bottom:714.480071px;}
.yf8{bottom:715.020071px;}
.ybd{bottom:715.740071px;}
.ydf{bottom:717.180070px;}
.y97{bottom:720.060069px;}
.y7e{bottom:732.300064px;}
.ya{bottom:733.020064px;}
.y34{bottom:735.360063px;}
.yb{bottom:735.720063px;}
.y95{bottom:736.260062px;}
.ya6{bottom:737.700062px;}
.y96{bottom:738.240062px;}
.y4e{bottom:740.580061px;}
.y8{bottom:742.200060px;}
.y74{bottom:748.500058px;}
.y11{bottom:749.040057px;}
.y6c{bottom:749.760057px;}
.y75{bottom:750.660057px;}
.y6d{bottom:751.380056px;}
.y53{bottom:751.560056px;}
.y12{bottom:751.740056px;}
.yce{bottom:751.920056px;}
.y67{bottom:753.360056px;}
.y54{bottom:753.720056px;}
.ycf{bottom:753.900055px;}
.yf9{bottom:754.440055px;}
.y68{bottom:755.700055px;}
.yfa{bottom:756.060055px;}
.y3c{bottom:756.240055px;}
.yd4{bottom:756.960054px;}
.y3d{bottom:758.580054px;}
.yd5{bottom:758.940053px;}
.y20{bottom:765.240051px;}
.y21{bottom:767.400050px;}
.y16{bottom:767.580050px;}
.y8b{bottom:769.200049px;}
.y17{bottom:769.740049px;}
.y8c{bottom:771.180049px;}
.y5c{bottom:777.120046px;}
.yeb{bottom:777.840046px;}
.y71{bottom:779.100045px;}
.y5d{bottom:779.280045px;}
.yec{bottom:779.820045px;}
.y9d{bottom:781.080045px;}
.y72{bottom:781.440044px;}
.y7c{bottom:782.700044px;}
.ydb{bottom:783.060044px;}
.y9e{bottom:783.240044px;}
.y7d{bottom:784.140043px;}
.y4c{bottom:790.260041px;}
.y4d{bottom:792.240040px;}
.yc7{bottom:792.600040px;}
.y7{bottom:792.780040px;}
.yc8{bottom:794.220039px;}
.y30{bottom:800.520037px;}
.y31{bottom:802.500036px;}
.h14{height:56.320290px;}
.h15{height:60.480000px;}
.h11{height:61.594122px;}
.h13{height:73.142549px;}
.h1b{height:74.824008px;}
.h10{height:86.231370px;}
.h12{height:87.859652px;}
.h2{height:99.874648px;}
.h9{height:104.062458px;}
.hc{height:107.999957px;}
.hb{height:112.640580px;}
.h19{height:116.072180px;}
.h3{height:120.085968px;}
.h16{height:121.232764px;}
.h1{height:125.406512px;}
.ha{height:150.187440px;}
.h6{height:164.938997px;}
.h17{height:168.488370px;}
.hd{height:174.968368px;}
.h18{height:179.288366px;}
.h1a{height:189.148284px;}
.h7{height:200.500232px;}
.h4{height:225.281160px;}
.h8{height:250.062087px;}
.h5{height:275.593952px;}
.hf{height:300.374880px;}
.he{height:420.100144px;}
.h0{height:892.500000px;}
.w1{width:133.560000px;}
.w2{width:135.720000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.xbb{left:31.305887px;}
.x3c{left:34.725886px;}
.x4b{left:36.165886px;}
.x87{left:54.706976px;}
.x61{left:55.785878px;}
.x99{left:60.465876px;}
.xd6{left:66.945873px;}
.x35{left:69.285872px;}
.x8c{left:72.345871px;}
.xcb{left:75.045870px;}
.xdc{left:78.105869px;}
.xc6{left:81.166027px;}
.xc1{left:82.245867px;}
.xbf{left:84.405866px;}
.x3d{left:86.745865px;}
.x3e{left:88.185865px;}
.x68{left:89.810213px;}
.x7d{left:96.465861px;}
.x5c{left:98.985860px;}
.x36{left:100.785860px;}
.xba{left:104.745858px;}
.x7c{left:109.065856px;}
.xa5{left:113.205855px;}
.xd8{left:117.165853px;}
.xd7{left:118.785852px;}
.xbe{left:121.307910px;}
.x39{left:123.285851px;}
.x38{left:125.625850px;}
.x31{left:126.705849px;}
.x6c{left:129.045848px;}
.x13{left:130.665848px;}
.x5d{left:132.105847px;}
.x12{left:133.365847px;}
.x1b{left:136.068388px;}
.x17{left:138.586859px;}
.xc2{left:141.825843px;}
.x56{left:143.445849px;}
.x97{left:148.305841px;}
.x90{left:152.086439px;}
.x8d{left:154.246438px;}
.x93{left:155.686438px;}
.xcf{left:163.969460px;}
.xc{left:170.806432px;}
.x32{left:178.726429px;}
.x24{left:184.666426px;}
.x23{left:187.006425px;}
.x96{left:188.986424px;}
.xc5{left:191.505630px;}
.xc4{left:193.846422px;}
.xc3{left:195.286422px;}
.x11{left:196.726421px;}
.x60{left:199.966420px;}
.x37{left:207.346424px;}
.xda{left:211.126416px;}
.x4f{left:214.546414px;}
.x4e{left:216.526413px;}
.x16{left:220.846412px;}
.x2b{left:225.346410px;}
.x2a{left:227.326409px;}
.x15{left:229.486408px;}
.x14{left:231.646407px;}
.x8a{left:234.346406px;}
.xb4{left:237.226405px;}
.xb3{left:239.206404px;}
.x1f{left:240.466404px;}
.x73{left:244.246402px;}
.x72{left:246.226402px;}
.xd{left:248.206401px;}
.x7{left:251.626399px;}
.xd1{left:254.864441px;}
.xa6{left:257.746397px;}
.x54{left:262.426395px;}
.x53{left:264.586394px;}
.x20{left:266.746402px;}
.xb1{left:270.526392px;}
.xb{left:271.966391px;}
.xd9{left:273.586391px;}
.xa{left:274.666390px;}
.x86{left:277.186389px;}
.x94{left:278.626389px;}
.x26{left:282.046387px;}
.x25{left:284.386386px;}
.x66{left:287.266385px;}
.xf{left:289.966384px;}
.xe{left:292.666383px;}
.x8{left:300.406194px;}
.xdb{left:306.886377px;}
.x19{left:308.326377px;}
.xc7{left:315.526374px;}
.xc8{left:319.846347px;}
.x1d{left:324.166370px;}
.x5a{left:325.606370px;}
.x59{left:327.766369px;}
.x21{left:332.806298px;}
.xd3{left:334.426366px;}
.x22{left:341.806292px;}
.xb8{left:344.866362px;}
.xb7{left:346.306361px;}
.x91{left:353.866358px;}
.xd2{left:361.066356px;}
.x5{left:367.005989px;}
.x74{left:369.346352px;}
.x88{left:370.606352px;}
.x7e{left:371.686351px;}
.x6{left:374.026016px;}
.xb9{left:376.546349px;}
.x5f{left:377.986349px;}
.x81{left:382.306347px;}
.x75{left:385.366346px;}
.x64{left:392.746343px;}
.x69{left:395.988897px;}
.x89{left:399.946340px;}
.x1e{left:414.886340px;}
.x1a{left:416.326333px;}
.x30{left:418.306333px;}
.x50{left:419.566332px;}
.x63{left:421.726331px;}
.x62{left:424.066330px;}
.xcc{left:434.326326px;}
.x76{left:435.406326px;}
.xc9{left:437.386325px;}
.x82{left:442.786323px;}
.x84{left:450.346320px;}
.x83{left:452.506319px;}
.x51{left:453.766318px;}
.x4{left:455.026318px;}
.x29{left:463.846314px;}
.x28{left:466.186314px;}
.x6e{left:469.246312px;}
.x6d{left:471.406311px;}
.x9{left:476.626309px;}
.xb2{left:478.245096px;}
.x52{left:479.866308px;}
.x95{left:482.746307px;}
.x10{left:485.806306px;}
.x80{left:487.426305px;}
.x7f{left:489.406304px;}
.x78{left:494.806302px;}
.x92{left:501.646299px;}
.x3a{left:506.506297px;}
.x58{left:510.646296px;}
.xaf{left:517.486293px;}
.xae{left:519.106292px;}
.x7a{left:523.246291px;}
.x79{left:524.686290px;}
.x7b{left:527.386289px;}
.xce{left:529.006288px;}
.x2c{left:531.886287px;}
.x65{left:538.726285px;}
.x45{left:543.406283px;}
.xb5{left:552.406279px;}
.xbc{left:573.106271px;}
.x33{left:575.986270px;}
.x2e{left:578.686269px;}
.xd0{left:597.046261px;}
.x18{left:612.886255px;}
.x1c{left:615.406254px;}
.xd4{left:620.086252px;}
.x34{left:628.006249px;}
.x2f{left:630.706248px;}
.xbd{left:645.286242px;}
.x9f{left:649.786240px;}
.x9e{left:651.406239px;}
.xb0{left:659.866236px;}
.x27{left:665.266234px;}
.xa8{left:686.866225px;}
.xa7{left:689.026224px;}
.x6b{left:690.466224px;}
.x6a{left:692.806223px;}
.x67{left:698.206221px;}
.x77{left:700.726220px;}
.xc0{left:720.706212px;}
.xa0{left:721.966211px;}
.xa1{left:736.006206px;}
.x8e{left:746.266201px;}
.xcd{left:751.126200px;}
.xca{left:752.206199px;}
.x2d{left:784.786186px;}
.x85{left:785.866186px;}
.x4c{left:797.386181px;}
.xb6{left:805.306178px;}
.x3f{left:808.366177px;}
.x46{left:817.366173px;}
.x3b{left:823.306171px;}
.x6f{left:836.806165px;}
.x40{left:839.326164px;}
.x9c{left:841.126164px;}
.x9b{left:842.206163px;}
.x47{left:848.146161px;}
.x70{left:863.446155px;}
.xd5{left:864.886154px;}
.xdd{left:876.046150px;}
.x8f{left:878.026149px;}
.x71{left:879.466148px;}
.xad{left:892.426143px;}
.xac{left:894.586142px;}
.x57{left:900.526140px;}
.x5b{left:916.546133px;}
.xde{left:931.486145px;}
.xa2{left:935.806126px;}
.x9a{left:941.566123px;}
.xa3{left:949.846120px;}
.x55{left:951.106120px;}
.x41{left:964.426114px;}
.x8b{left:974.506110px;}
.x9d{left:1009.066096px;}
.x42{left:1026.346089px;}
.x5e{left:1031.206088px;}
.x43{left:1038.406085px;}
.xa4{left:1070.626072px;}
.x4d{left:1084.126066px;}
.x98{left:1099.782325px;}
.xab{left:1101.046060px;}
.xaa{left:1103.205600px;}
.xa9{left:1105.365600px;}
.x44{left:1114.186054px;}
.x48{left:1137.046045px;}
.x1{left:1143.886042px;}
.x2{left:1179.886028px;}
.x49{left:1198.786020px;}
.x4a{left:1210.846016px;}
.x3{left:1215.886014px;}
@media print{
.v7{vertical-align:-13.439995pt;}
.v2{vertical-align:-8.319997pt;}
.v1{vertical-align:-7.039997pt;}
.v3{vertical-align:-5.119998pt;}
.v5{vertical-align:-3.839998pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:3.839998pt;}
.v4{vertical-align:195.199922pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.068087pt;}
.ls4{letter-spacing:5.349612pt;}
.ls11{letter-spacing:5.992430pt;}
.ls1d{letter-spacing:6.632078pt;}
.ls9{letter-spacing:6.694780pt;}
.lsb{letter-spacing:6.865454pt;}
.lsa{letter-spacing:7.061777pt;}
.ls5{letter-spacing:35.653234pt;}
.ls18{letter-spacing:41.820661pt;}
.lsc{letter-spacing:47.163274pt;}
.ls1c{letter-spacing:47.534253pt;}
.ls1a{letter-spacing:47.569546pt;}
.ls1b{letter-spacing:54.028727pt;}
.ls10{letter-spacing:54.395724pt;}
.ls17{letter-spacing:59.028514pt;}
.ls19{letter-spacing:64.785346pt;}
.ls8{letter-spacing:86.974310pt;}
.ls7{letter-spacing:94.363818pt;}
.ls6{letter-spacing:106.532499pt;}
.ls1{letter-spacing:106.719952pt;}
.lsd{letter-spacing:186.958102pt;}
.lsf{letter-spacing:206.787188pt;}
.lse{letter-spacing:207.426836pt;}
.ls16{letter-spacing:212.712995pt;}
.ls15{letter-spacing:212.713051pt;}
.ls2{letter-spacing:231.534743pt;}
.ls3{letter-spacing:231.536876pt;}
.ls1e{letter-spacing:234.286729pt;}
.ls20{letter-spacing:234.290820pt;}
.ls1f{letter-spacing:234.292049pt;}
.ls13{letter-spacing:352.049911pt;}
.ls12{letter-spacing:376.356532pt;}
.wsc{word-spacing:-74.751970pt;}
.ws1e{word-spacing:-74.591970pt;}
.wsf{word-spacing:-65.296614pt;}
.ws5{word-spacing:-59.247336pt;}
.ws21{word-spacing:-53.444065pt;}
.ws3{word-spacing:-53.375979pt;}
.ws2{word-spacing:-47.504621pt;}
.ws12{word-spacing:-41.455343pt;}
.wsb{word-spacing:-35.583986pt;}
.ws9{word-spacing:-26.687989pt;}
.ws2d{word-spacing:-17.728090pt;}
.ws1d{word-spacing:-14.593526pt;}
.ws1f{word-spacing:-13.343995pt;}
.ws14{word-spacing:-1.550525pt;}
.ws19{word-spacing:-1.211203pt;}
.ws4{word-spacing:-0.543360pt;}
.ws18{word-spacing:-0.169151pt;}
.ws1a{word-spacing:-0.107481pt;}
.ws11{word-spacing:-0.107402pt;}
.ws13{word-spacing:-0.081488pt;}
.ws1{word-spacing:0.000000pt;}
.ws17{word-spacing:0.065024pt;}
.ws8{word-spacing:0.065028pt;}
.ws27{word-spacing:0.066018pt;}
.ws28{word-spacing:0.066161pt;}
.ws16{word-spacing:0.067049pt;}
.ws15{word-spacing:0.068086pt;}
.wsd{word-spacing:0.299859pt;}
.ws25{word-spacing:0.370223pt;}
.ws24{word-spacing:0.558359pt;}
.ws0{word-spacing:0.650061pt;}
.ws23{word-spacing:5.600252pt;}
.ws2c{word-spacing:5.601050pt;}
.ws29{word-spacing:5.888544pt;}
.ws22{word-spacing:6.122391pt;}
.ws26{word-spacing:6.125021pt;}
.wse{word-spacing:6.526601pt;}
.ws2b{word-spacing:6.528192pt;}
.ws7{word-spacing:6.723792pt;}
.ws1b{word-spacing:7.458087pt;}
.ws6{word-spacing:8.399104pt;}
.wsa{word-spacing:8.829112pt;}
.ws10{word-spacing:309.075659pt;}
.ws2a{word-spacing:330.426543pt;}
.ws20{word-spacing:491.694916pt;}
.ws1c{word-spacing:767.916478pt;}
._1b{margin-left:-1413.138045pt;}
._7{margin-left:-73.470563pt;}
._18{margin-left:-3.998726pt;}
._f{margin-left:-2.511181pt;}
._0{margin-left:-1.444810pt;}
._1{width:1.250242pt;}
._17{width:3.045192pt;}
._6{width:4.132922pt;}
._3{width:5.434156pt;}
._2{width:6.326236pt;}
._b{width:7.347943pt;}
._5{width:8.685754pt;}
._e{width:11.471337pt;}
._14{width:19.570148pt;}
._10{width:28.177643pt;}
._c{width:42.629490pt;}
._4{width:45.941359pt;}
._d{width:47.365552pt;}
._15{width:156.733125pt;}
._a{width:325.677411pt;}
._16{width:669.890205pt;}
._19{width:744.450057pt;}
._13{width:783.621870pt;}
._12{width:797.221564pt;}
._9{width:802.391141pt;}
._11{width:811.933172pt;}
._8{width:880.425397pt;}
._1c{width:1928.637200pt;}
._1a{width:1971.222442pt;}
.fsf{font-size:47.999981pt;}
.fsd{font-size:52.494699pt;}
.fs10{font-size:63.770108pt;}
.fsc{font-size:73.492237pt;}
.fse{font-size:74.879970pt;}
.fs1{font-size:85.119966pt;}
.fsa{font-size:95.999962pt;}
.fs0{font-size:106.879957pt;}
.fs9{font-size:127.999949pt;}
.fs2{font-size:149.119940pt;}
.fs6{font-size:170.879932pt;}
.fs3{font-size:191.999923pt;}
.fs5{font-size:202.879919pt;}
.fs8{font-size:213.119915pt;}
.fs7{font-size:229.119908pt;}
.fs4{font-size:234.879906pt;}
.fsb{font-size:255.999898pt;}
.y0{bottom:0.000000pt;}
.yc2{bottom:10.240216pt;}
.y6{bottom:54.933629pt;}
.ya7{bottom:57.813628pt;}
.y37{bottom:59.093627pt;}
.y25{bottom:61.173626pt;}
.ybc{bottom:64.853625pt;}
.y1{bottom:65.653624pt;}
.y6b{bottom:69.813623pt;}
.ye6{bottom:74.613621pt;}
.yf0{bottom:74.773621pt;}
.y9b{bottom:76.213620pt;}
.yed{bottom:76.373620pt;}
.y9c{bottom:77.173620pt;}
.y5{bottom:80.693618pt;}
.ybb{bottom:87.253616pt;}
.yd6{bottom:93.813613pt;}
.y4{bottom:106.293608pt;}
.ydc{bottom:108.533607pt;}
.ye7{bottom:110.453606pt;}
.y36{bottom:111.413606pt;}
.y2e{bottom:116.213604pt;}
.y2f{bottom:118.293603pt;}
.y59{bottom:124.533601pt;}
.y58{bottom:126.773600pt;}
.y3b{bottom:131.253598pt;}
.y24{bottom:132.853598pt;}
.yaf{bottom:133.493597pt;}
.yb8{bottom:138.133595pt;}
.y64{bottom:140.213595pt;}
.ya9{bottom:159.733587pt;}
.y7b{bottom:166.773584pt;}
.y2{bottom:167.733383pt;}
.y84{bottom:168.213583pt;}
.yaa{bottom:174.133581pt;}
.y57{bottom:177.973579pt;}
.y4a{bottom:178.133579pt;}
.y10{bottom:178.613579pt;}
.y4b{bottom:179.413579pt;}
.y2c{bottom:180.213579pt;}
.y1c{bottom:181.653578pt;}
.y2d{bottom:182.293578pt;}
.y3a{bottom:182.453578pt;}
.yc{bottom:183.893577pt;}
.ya3{bottom:185.973576pt;}
.ya2{bottom:187.253576pt;}
.yfe{bottom:206.133568pt;}
.y7a{bottom:209.013567pt;}
.y66{bottom:210.133567pt;}
.ye4{bottom:210.613566pt;}
.y83{bottom:212.853566pt;}
.y82{bottom:214.133565pt;}
.y23{bottom:218.453563pt;}
.y8a{bottom:222.293562pt;}
.y35{bottom:230.933558pt;}
.yc1{bottom:242.933333pt;}
.yc3{bottom:244.853333pt;}
.yf{bottom:250.293551pt;}
.y48{bottom:252.053550pt;}
.y5f{bottom:253.013549pt;}
.ybf{bottom:253.173549pt;}
.y47{bottom:253.333549pt;}
.y61{bottom:253.813549pt;}
.y92{bottom:253.973549pt;}
.y60{bottom:254.773549pt;}
.yc0{bottom:255.093549pt;}
.y15{bottom:256.853548pt;}
.ya1{bottom:262.933545pt;}
.y1b{bottom:264.533545pt;}
.yd2{bottom:266.773544pt;}
.yd9{bottom:267.733544pt;}
.ybe{bottom:268.533543pt;}
.yda{bottom:269.173543pt;}
.ycc{bottom:270.133543pt;}
.y3f{bottom:271.093542pt;}
.ycd{bottom:271.893542pt;}
.yab{bottom:272.533542pt;}
.y5a{bottom:276.533540pt;}
.y3{bottom:285.492978pt;}
.yfd{bottom:286.293536pt;}
.yee{bottom:295.733532pt;}
.ye3{bottom:297.013532pt;}
.y81{bottom:297.173532pt;}
.yf5{bottom:300.693530pt;}
.yf4{bottom:301.013530pt;}
.yfc{bottom:302.613530pt;}
.ya0{bottom:303.733529pt;}
.y22{bottom:304.053529pt;}
.y9f{bottom:305.013529pt;}
.y29{bottom:307.253528pt;}
.y93{bottom:313.333525pt;}
.ye9{bottom:314.133525pt;}
.y78{bottom:317.973523pt;}
.y79{bottom:319.733523pt;}
.ycb{bottom:323.093521pt;}
.y70{bottom:326.293520pt;}
.y46{bottom:327.093520pt;}
.yc5{bottom:333.173517pt;}
.y6a{bottom:333.813517pt;}
.ye1{bottom:334.133517pt;}
.yc6{bottom:335.093517pt;}
.ye2{bottom:335.413517pt;}
.y63{bottom:337.013516pt;}
.y80{bottom:343.093513pt;}
.y8e{bottom:344.373513pt;}
.y1a{bottom:347.733512pt;}
.yc4{bottom:348.693511pt;}
.y4f{bottom:354.453509pt;}
.y87{bottom:356.213508pt;}
.y45{bottom:357.333508pt;}
.y44{bottom:357.653508pt;}
.y39{bottom:359.573507pt;}
.y28{bottom:364.853505pt;}
.yfb{bottom:366.613504pt;}
.y77{bottom:370.933502pt;}
.y55{bottom:373.333501pt;}
.yca{bottom:374.293501pt;}
.y99{bottom:379.733499pt;}
.y6f{bottom:380.053499pt;}
.y9a{bottom:381.013498pt;}
.ye8{bottom:385.813496pt;}
.y7f{bottom:389.173495pt;}
.y1d{bottom:389.813495pt;}
.yf3{bottom:392.213494pt;}
.ye{bottom:393.653493pt;}
.yff{bottom:397.333492pt;}
.y42{bottom:399.253491pt;}
.y43{bottom:400.213491pt;}
.y41{bottom:400.533490pt;}
.y8d{bottom:402.133490pt;}
.y9{bottom:402.293490pt;}
.ye5{bottom:402.933489pt;}
.yd3{bottom:406.613488pt;}
.y90{bottom:408.853487pt;}
.y91{bottom:410.293487pt;}
.yd8{bottom:415.253485pt;}
.y14{bottom:418.293483pt;}
.y62{bottom:421.653482pt;}
.y27{bottom:422.613482pt;}
.y98{bottom:423.253481pt;}
.yc9{bottom:425.493480pt;}
.y18{bottom:430.933478pt;}
.y6e{bottom:433.973477pt;}
.y56{bottom:435.413477pt;}
.y65{bottom:438.933475pt;}
.y38{bottom:448.053471pt;}
.y8f{bottom:455.093469pt;}
.ydd{bottom:461.653466pt;}
.yde{bottom:462.933465pt;}
.y86{bottom:464.373465pt;}
.yd{bottom:465.333465pt;}
.y73{bottom:467.413464pt;}
.yac{bottom:469.493463pt;}
.yd7{bottom:473.493461pt;}
.y49{bottom:473.973461pt;}
.yb3{bottom:477.973459pt;}
.yf1{bottom:478.453459pt;}
.yb4{bottom:478.933459pt;}
.yf6{bottom:479.573459pt;}
.yf2{bottom:479.893459pt;}
.y26{bottom:480.213459pt;}
.y88{bottom:485.013457pt;}
.y89{bottom:486.773456pt;}
.y1f{bottom:487.093456pt;}
.y52{bottom:488.373455pt;}
.yb9{bottom:490.453454pt;}
.yba{bottom:491.893454pt;}
.ya5{bottom:496.533452pt;}
.ya4{bottom:497.813452pt;}
.yb1{bottom:502.293450pt;}
.y5b{bottom:509.013447pt;}
.y85{bottom:510.293447pt;}
.yb2{bottom:527.413440pt;}
.y32{bottom:528.053439pt;}
.yb0{bottom:528.533439pt;}
.y94{bottom:529.173439pt;}
.y3e{bottom:536.853436pt;}
.y40{bottom:547.733432pt;}
.ye0{bottom:548.533431pt;}
.yb5{bottom:554.773429pt;}
.yb6{bottom:555.733428pt;}
.y101{bottom:563.093425pt;}
.yad{bottom:567.893424pt;}
.y100{bottom:582.293418pt;}
.y33{bottom:583.893417pt;}
.yf7{bottom:586.293416pt;}
.yae{bottom:587.573416pt;}
.yb7{bottom:588.533415pt;}
.y13{bottom:590.613414pt;}
.yd1{bottom:600.373411pt;}
.y69{bottom:601.013410pt;}
.y76{bottom:604.373409pt;}
.y19{bottom:605.173409pt;}
.y1e{bottom:607.573408pt;}
.yd0{bottom:608.853407pt;}
.ya8{bottom:609.013407pt;}
.yea{bottom:621.333402pt;}
.y50{bottom:621.813402pt;}
.y51{bottom:624.213401pt;}
.yef{bottom:629.013399pt;}
.y2a{bottom:630.773398pt;}
.y2b{bottom:632.853398pt;}
.y5e{bottom:635.093397pt;}
.yf8{bottom:635.573396pt;}
.ybd{bottom:636.213396pt;}
.ydf{bottom:637.493396pt;}
.y97{bottom:640.053395pt;}
.y7e{bottom:650.933390pt;}
.ya{bottom:651.573390pt;}
.y34{bottom:653.653389pt;}
.yb{bottom:653.973389pt;}
.y95{bottom:654.453389pt;}
.ya6{bottom:655.733388pt;}
.y96{bottom:656.213388pt;}
.y4e{bottom:658.293387pt;}
.y8{bottom:659.733387pt;}
.y74{bottom:665.333385pt;}
.y11{bottom:665.813384pt;}
.y6c{bottom:666.453384pt;}
.y75{bottom:667.253384pt;}
.y6d{bottom:667.893384pt;}
.y53{bottom:668.053383pt;}
.y12{bottom:668.213383pt;}
.yce{bottom:668.373383pt;}
.y67{bottom:669.653383pt;}
.y54{bottom:669.973383pt;}
.ycf{bottom:670.133383pt;}
.yf9{bottom:670.613382pt;}
.y68{bottom:671.733382pt;}
.yfa{bottom:672.053382pt;}
.y3c{bottom:672.213382pt;}
.yd4{bottom:672.853382pt;}
.y3d{bottom:674.293381pt;}
.yd5{bottom:674.613381pt;}
.y20{bottom:680.213379pt;}
.y21{bottom:682.133378pt;}
.y16{bottom:682.293378pt;}
.y8b{bottom:683.733377pt;}
.y17{bottom:684.213377pt;}
.y8c{bottom:685.493376pt;}
.y5c{bottom:690.773374pt;}
.yeb{bottom:691.413374pt;}
.y71{bottom:692.533374pt;}
.y5d{bottom:692.693374pt;}
.yec{bottom:693.173373pt;}
.y9d{bottom:694.293373pt;}
.y72{bottom:694.613373pt;}
.y7c{bottom:695.733372pt;}
.ydb{bottom:696.053372pt;}
.y9e{bottom:696.213372pt;}
.y7d{bottom:697.013372pt;}
.y4c{bottom:702.453370pt;}
.y4d{bottom:704.213369pt;}
.yc7{bottom:704.533369pt;}
.y7{bottom:704.693369pt;}
.yc8{bottom:705.973368pt;}
.y30{bottom:711.573366pt;}
.y31{bottom:713.333365pt;}
.h14{height:50.062480pt;}
.h15{height:53.760000pt;}
.h11{height:54.750331pt;}
.h13{height:65.015599pt;}
.h1b{height:66.510230pt;}
.h10{height:76.650107pt;}
.h12{height:78.097469pt;}
.h2{height:88.777464pt;}
.h9{height:92.499963pt;}
.hc{height:95.999962pt;}
.hb{height:100.124960pt;}
.h19{height:103.175271pt;}
.h3{height:106.743082pt;}
.h16{height:107.762457pt;}
.h1{height:111.472455pt;}
.ha{height:133.499947pt;}
.h6{height:146.612441pt;}
.h17{height:149.767440pt;}
.hd{height:155.527438pt;}
.h18{height:159.367436pt;}
.h1a{height:168.131808pt;}
.h7{height:178.222429pt;}
.h4{height:200.249920pt;}
.h8{height:222.277411pt;}
.h5{height:244.972402pt;}
.hf{height:266.999893pt;}
.he{height:373.422351pt;}
.h0{height:793.333333pt;}
.w1{width:118.720000pt;}
.w2{width:120.640000pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xbb{left:27.827456pt;}
.x3c{left:30.867454pt;}
.x4b{left:32.147454pt;}
.x87{left:48.628423pt;}
.x61{left:49.587447pt;}
.x99{left:53.747445pt;}
.xd6{left:59.507443pt;}
.x35{left:61.587442pt;}
.x8c{left:64.307441pt;}
.xcb{left:66.707440pt;}
.xdc{left:69.427439pt;}
.xc6{left:72.147580pt;}
.xc1{left:73.107437pt;}
.xbf{left:75.027437pt;}
.x3d{left:77.107436pt;}
.x3e{left:78.387435pt;}
.x68{left:79.831301pt;}
.x7d{left:85.747432pt;}
.x5c{left:87.987431pt;}
.x36{left:89.587431pt;}
.xba{left:93.107429pt;}
.x7c{left:96.947428pt;}
.xa5{left:100.627426pt;}
.xd8{left:104.147425pt;}
.xd7{left:105.587424pt;}
.xbe{left:107.829253pt;}
.x39{left:109.587423pt;}
.x38{left:111.667422pt;}
.x31{left:112.627422pt;}
.x6c{left:114.707421pt;}
.x13{left:116.147420pt;}
.x5d{left:117.427420pt;}
.x12{left:118.547419pt;}
.x1b{left:120.949679pt;}
.x17{left:123.188319pt;}
.xc2{left:126.067416pt;}
.x56{left:127.507421pt;}
.x97{left:131.827414pt;}
.x90{left:135.187946pt;}
.x8d{left:137.107945pt;}
.x93{left:138.387945pt;}
.xcf{left:145.750631pt;}
.xc{left:151.827939pt;}
.x32{left:158.867936pt;}
.x24{left:164.147934pt;}
.x23{left:166.227934pt;}
.x96{left:167.987933pt;}
.xc5{left:170.227227pt;}
.xc4{left:172.307931pt;}
.xc3{left:173.587931pt;}
.x11{left:174.867930pt;}
.x60{left:177.747929pt;}
.x37{left:184.307932pt;}
.xda{left:187.667925pt;}
.x4f{left:190.707924pt;}
.x4e{left:192.467923pt;}
.x16{left:196.307921pt;}
.x2b{left:200.307920pt;}
.x2a{left:202.067919pt;}
.x15{left:203.987918pt;}
.x14{left:205.907918pt;}
.x8a{left:208.307917pt;}
.xb4{left:210.867916pt;}
.xb3{left:212.627915pt;}
.x1f{left:213.747915pt;}
.x73{left:217.107913pt;}
.x72{left:218.867912pt;}
.xd{left:220.627912pt;}
.x7{left:223.667911pt;}
.xd1{left:226.546170pt;}
.xa6{left:229.107908pt;}
.x54{left:233.267907pt;}
.x53{left:235.187906pt;}
.x20{left:237.107913pt;}
.xb1{left:240.467904pt;}
.xb{left:241.747903pt;}
.xd9{left:243.187903pt;}
.xa{left:244.147902pt;}
.x86{left:246.387901pt;}
.x94{left:247.667901pt;}
.x26{left:250.707900pt;}
.x25{left:252.787899pt;}
.x66{left:255.347898pt;}
.xf{left:257.747897pt;}
.xe{left:260.147896pt;}
.x8{left:267.027728pt;}
.xdb{left:272.787891pt;}
.x19{left:274.067890pt;}
.xc7{left:280.467888pt;}
.xc8{left:284.307864pt;}
.x1d{left:288.147885pt;}
.x5a{left:289.427884pt;}
.x59{left:291.347883pt;}
.x21{left:295.827821pt;}
.xd3{left:297.267881pt;}
.x22{left:303.827815pt;}
.xb8{left:306.547877pt;}
.xb7{left:307.827877pt;}
.x91{left:314.547874pt;}
.xd2{left:320.947872pt;}
.x5{left:326.227546pt;}
.x74{left:328.307869pt;}
.x88{left:329.427868pt;}
.x7e{left:330.387868pt;}
.x6{left:332.467569pt;}
.xb9{left:334.707866pt;}
.x5f{left:335.987866pt;}
.x81{left:339.827864pt;}
.x75{left:342.547863pt;}
.x64{left:349.107860pt;}
.x69{left:351.990130pt;}
.x89{left:355.507858pt;}
.x1e{left:368.787858pt;}
.x1a{left:370.067852pt;}
.x30{left:371.827851pt;}
.x50{left:372.947851pt;}
.x63{left:374.867850pt;}
.x62{left:376.947849pt;}
.xcc{left:386.067846pt;}
.x76{left:387.027845pt;}
.xc9{left:388.787844pt;}
.x82{left:393.587843pt;}
.x84{left:400.307840pt;}
.x83{left:402.227839pt;}
.x51{left:403.347839pt;}
.x4{left:404.467838pt;}
.x29{left:412.307835pt;}
.x28{left:414.387834pt;}
.x6e{left:417.107833pt;}
.x6d{left:419.027832pt;}
.x9{left:423.667831pt;}
.xb2{left:425.106752pt;}
.x52{left:426.547829pt;}
.x95{left:429.107828pt;}
.x10{left:431.827827pt;}
.x80{left:433.267827pt;}
.x7f{left:435.027826pt;}
.x78{left:439.827824pt;}
.x92{left:445.907822pt;}
.x3a{left:450.227820pt;}
.x58{left:453.907818pt;}
.xaf{left:459.987816pt;}
.xae{left:461.427815pt;}
.x7a{left:465.107814pt;}
.x79{left:466.387813pt;}
.x7b{left:468.787812pt;}
.xce{left:470.227812pt;}
.x2c{left:472.787811pt;}
.x65{left:478.867808pt;}
.x45{left:483.027807pt;}
.xb5{left:491.027804pt;}
.xbc{left:509.427796pt;}
.x33{left:511.987795pt;}
.x2e{left:514.387794pt;}
.xd0{left:530.707788pt;}
.x18{left:544.787782pt;}
.x1c{left:547.027781pt;}
.xd4{left:551.187780pt;}
.x34{left:558.227777pt;}
.x2f{left:560.627776pt;}
.xbd{left:573.587771pt;}
.x9f{left:577.587769pt;}
.x9e{left:579.027768pt;}
.xb0{left:586.547765pt;}
.x27{left:591.347763pt;}
.xa8{left:610.547756pt;}
.xa7{left:612.467755pt;}
.x6b{left:613.747755pt;}
.x6a{left:615.827754pt;}
.x67{left:620.627752pt;}
.x77{left:622.867751pt;}
.xc0{left:640.627744pt;}
.xa0{left:641.747743pt;}
.xa1{left:654.227738pt;}
.x8e{left:663.347735pt;}
.xcd{left:667.667733pt;}
.xca{left:668.627733pt;}
.x2d{left:697.587721pt;}
.x85{left:698.547721pt;}
.x4c{left:708.787716pt;}
.xb6{left:715.827714pt;}
.x3f{left:718.547713pt;}
.x46{left:726.547709pt;}
.x3b{left:731.827707pt;}
.x6f{left:743.827702pt;}
.x40{left:746.067702pt;}
.x9c{left:747.667701pt;}
.x9b{left:748.627701pt;}
.x47{left:753.907698pt;}
.x70{left:767.507693pt;}
.xd5{left:768.787692pt;}
.xdd{left:778.707689pt;}
.x8f{left:780.467688pt;}
.x71{left:781.747687pt;}
.xad{left:793.267683pt;}
.xac{left:795.187682pt;}
.x57{left:800.467680pt;}
.x5b{left:814.707674pt;}
.xde{left:827.987684pt;}
.xa2{left:831.827667pt;}
.x9a{left:836.947665pt;}
.xa3{left:844.307662pt;}
.x55{left:845.427662pt;}
.x41{left:857.267657pt;}
.x8b{left:866.227654pt;}
.x9d{left:896.947641pt;}
.x42{left:912.307635pt;}
.x5e{left:916.627633pt;}
.x43{left:923.027631pt;}
.xa4{left:951.667619pt;}
.x4d{left:963.667615pt;}
.x98{left:977.584289pt;}
.xab{left:978.707609pt;}
.xaa{left:980.627200pt;}
.xa9{left:982.547200pt;}
.x44{left:990.387604pt;}
.x48{left:1010.707596pt;}
.x1{left:1016.787593pt;}
.x2{left:1048.787580pt;}
.x49{left:1065.587574pt;}
.x4a{left:1076.307569pt;}
.x3{left:1080.787568pt;}
}




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