
    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_d14b0df4e1cee1e31d6eed56.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.021484;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_d8a2258c2fccd484e22f1b49.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.012695;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_3a7ab7f665fae598d4c7dc27.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_38a77121ed60ece5fac21cba.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106000;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_4c635a1ca23e670183b203c3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.992000;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_3810007bb1ce21eb429b8a72.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106000;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_678a91c232c427e1b37f4112.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.992000;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_8a8bc94f34cedc2fb46f6761.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_0724a54febc7e6d026441507.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_4fcb2445205937f177ec63bf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.992000;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_df26f9cc1dd8a33fe130b69a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.096000;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_8d0ddec43474b759835ee9c5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.752441;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_2b96b3fc9ebb6cf799bfd3ae.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.172363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c035396a15ea86532ca08f5d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.766602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8f5bf4f9c40c0b09506547fb.woff2')format("woff");}.fff{font-family:fff;line-height:0.792000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-105.720000px;}
.v7{vertical-align:-79.500000px;}
.v4{vertical-align:-66.960000px;}
.v5{vertical-align:-1.584000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.216000px;}
.v6{vertical-align:49.260000px;}
.v2{vertical-align:84.960000px;}
.ls7{letter-spacing:-0.388200px;}
.ls16{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.224400px;}
.ls11{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.133200px;}
.ls18{letter-spacing:-0.086400px;}
.lsb{letter-spacing:-0.051840px;}
.ls13{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000003px;}
.ls15{letter-spacing:0.000006px;}
.ls8{letter-spacing:0.099648px;}
.ls17{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.201600px;}
.ls9{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.466800px;}
.ls6{letter-spacing:9.969120px;}
.ls4{letter-spacing:12.942000px;}
.ls5{letter-spacing:28.044000px;}
.ls3{letter-spacing:28.296000px;}
.lsf{letter-spacing:49.328640px;}
.lsd{letter-spacing:62.894592px;}
.lsc{letter-spacing:63.008640px;}
.lse{letter-spacing:111.156480px;}
.ls12{letter-spacing:178.344000px;}
.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;}
}
.ws1e{word-spacing:-35.821923px;}
.ws23{word-spacing:-34.017984px;}
.ws16{word-spacing:-33.984000px;}
.ws21{word-spacing:-30.245760px;}
.ws4{word-spacing:-26.927856px;}
.ws1{word-spacing:-26.892000px;}
.ws14{word-spacing:-26.507520px;}
.ws18{word-spacing:-20.730240px;}
.wsf{word-spacing:-19.540800px;}
.ws15{word-spacing:-18.861120px;}
.ws8{word-spacing:-17.025984px;}
.wsa{word-spacing:-16.992000px;}
.ws6{word-spacing:-14.986944px;}
.ws9{word-spacing:-14.952960px;}
.wse{word-spacing:-12.744000px;}
.ws11{word-spacing:-11.384640px;}
.wsd{word-spacing:-10.535040px;}
.ws13{word-spacing:-2.776320px;}
.ws1f{word-spacing:-1.464000px;}
.ws20{word-spacing:-1.260000px;}
.ws12{word-spacing:-1.123200px;}
.ws10{word-spacing:-0.744000px;}
.wsb{word-spacing:-0.312000px;}
.ws19{word-spacing:-0.112320px;}
.ws1a{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws1b{word-spacing:0.036000px;}
.ws1c{word-spacing:0.954000px;}
.ws1d{word-spacing:162.995983px;}
.ws3{word-spacing:168.048000px;}
.ws26{word-spacing:212.256000px;}
.ws17{word-spacing:217.629600px;}
.ws24{word-spacing:246.815983px;}
.ws22{word-spacing:279.388416px;}
.ws25{word-spacing:544.175983px;}
.wsc{word-spacing:784.248000px;}
.ws2{word-spacing:1014.442608px;}
.ws7{word-spacing:4011.463200px;}
.ws5{word-spacing:4906.183200px;}
._c{margin-left:-3360.883200px;}
._b{margin-left:-2043.676320px;}
._19{margin-left:-1265.401920px;}
._2{margin-left:-933.650400px;}
._16{margin-left:-6.678664px;}
._4{margin-left:-2.903040px;}
._0{margin-left:-1.666080px;}
._1{width:1.089360px;}
._5{width:2.424960px;}
._17{width:5.005412px;}
._8{width:12.945600px;}
._e{width:20.662320px;}
._d{width:21.807360px;}
._9{width:25.454880px;}
._15{width:31.044000px;}
._18{width:33.924000px;}
._3{width:52.412640px;}
._11{width:180.344400px;}
._13{width:474.695760px;}
._12{width:532.501680px;}
._14{width:541.883280px;}
._7{width:595.727520px;}
._10{width:844.858032px;}
._6{width:969.739632px;}
._f{width:1015.894320px;}
._a{width:2084.758560px;}
.fc12{color:rgb(238,115,12);}
.fc10{color:rgb(242,242,242);}
.fcf{color:rgb(89,89,89);}
.fce{color:rgb(165,165,165);}
.fcd{color:rgb(238,116,0);}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc7{color:rgb(105,41,122);}
.fc8{color:rgb(127,127,127);}
.fc2{color:transparent;}
.fc6{color:rgb(228,172,72);}
.fc4{color:rgb(243,240,81);}
.fca{color:rgb(0,156,188);}
.fc5{color:rgb(40,57,204);}
.fc3{color:rgb(12,17,61);}
.fc9{color:rgb(196,136,29);}
.fcb{color:rgb(149,86,158);}
.fc11{color:rgb(0,102,122);}
.fcc{color:rgb(0,114,182);}
.fse{font-size:44.640000px;}
.fs11{font-size:44.784000px;}
.fsf{font-size:45.360000px;}
.fs10{font-size:45.504000px;}
.fs15{font-size:48.240000px;}
.fs13{font-size:51.120000px;}
.fs12{font-size:54.000000px;}
.fs19{font-size:56.160000px;}
.fsd{font-size:63.360000px;}
.fs7{font-size:63.504000px;}
.fs0{font-size:64.080000px;}
.fs1c{font-size:64.224000px;}
.fs1f{font-size:70.560000px;}
.fsc{font-size:72.000000px;}
.fs8{font-size:72.144000px;}
.fs1b{font-size:79.920000px;}
.fs1d{font-size:80.064000px;}
.fs6{font-size:82.800000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:84.384000px;}
.fs1e{font-size:87.840000px;}
.fs21{font-size:87.984000px;}
.fs14{font-size:95.760000px;}
.fs23{font-size:95.904000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:108.144000px;}
.fs17{font-size:112.320000px;}
.fs18{font-size:112.464000px;}
.fs24{font-size:126.000000px;}
.fs26{font-size:128.160000px;}
.fs27{font-size:128.304000px;}
.fs22{font-size:136.224000px;}
.fs20{font-size:144.000000px;}
.fs28{font-size:144.144000px;}
.fs25{font-size:151.787810px;}
.fs1a{font-size:167.760000px;}
.fs16{font-size:167.904000px;}
.fs3{font-size:208.224000px;}
.fsa{font-size:216.000000px;}
.fsb{font-size:216.144000px;}
.fs9{font-size:228.960000px;}
.y0{bottom:0.000000px;}
.ybd{bottom:2.808000px;}
.y5{bottom:12.492000px;}
.y9b{bottom:12.816000px;}
.y10{bottom:24.156000px;}
.ybc{bottom:26.784000px;}
.y90{bottom:29.232000px;}
.y2{bottom:29.304000px;}
.y17{bottom:30.960000px;}
.yf0{bottom:31.212000px;}
.y11{bottom:31.356000px;}
.yf1{bottom:34.164000px;}
.y4{bottom:37.692000px;}
.yc{bottom:41.760000px;}
.yae{bottom:44.316000px;}
.y1{bottom:48.564000px;}
.ybb{bottom:50.724000px;}
.y96{bottom:52.452000px;}
.yc1{bottom:58.500000px;}
.y3{bottom:62.928000px;}
.y102{bottom:64.476000px;}
.yf7{bottom:66.168000px;}
.yfb{bottom:67.608000px;}
.yad{bottom:70.776000px;}
.yba{bottom:74.844000px;}
.yc2{bottom:76.356000px;}
.ye3{bottom:76.788000px;}
.y4f{bottom:81.396000px;}
.yc0{bottom:82.476000px;}
.y93{bottom:83.844000px;}
.y95{bottom:86.112000px;}
.yac{bottom:97.236000px;}
.y5a{bottom:97.272000px;}
.yb9{bottom:98.784000px;}
.ybf{bottom:106.596000px;}
.yfa{bottom:106.884000px;}
.y59{bottom:112.572000px;}
.y101{bottom:112.644000px;}
.y94{bottom:119.808000px;}
.yab{bottom:123.516000px;}
.y92{bottom:129.564000px;}
.ye5{bottom:129.816000px;}
.ybe{bottom:130.536000px;}
.y4e{bottom:137.376000px;}
.yf9{bottom:145.944000px;}
.yaa{bottom:149.976000px;}
.yde{bottom:150.270000px;}
.y58{bottom:154.335000px;}
.y4d{bottom:155.235000px;}
.y61{bottom:157.470000px;}
.y4c{bottom:168.555000px;}
.y87{bottom:171.975000px;}
.y57{bottom:172.335000px;}
.y79{bottom:175.785000px;}
.ya9{bottom:176.430000px;}
.ydd{bottom:176.730000px;}
.y77{bottom:183.450000px;}
.yf8{bottom:185.190000px;}
.y4b{bottom:186.375000px;}
.y99{bottom:189.435000px;}
.y56{bottom:190.335000px;}
.y7b{bottom:190.770000px;}
.y86{bottom:190.875000px;}
.y4a{bottom:199.695000px;}
.y76{bottom:202.395000px;}
.ydc{bottom:203.190000px;}
.y55{bottom:203.835000px;}
.yef{bottom:203.970000px;}
.ya8{bottom:204.555000px;}
.y6d{bottom:209.445000px;}
.yd{bottom:213.300000px;}
.yc9{bottom:213.480000px;}
.y64{bottom:214.200000px;}
.y54{bottom:217.335000px;}
.y49{bottom:217.515000px;}
.ye1{bottom:227.700000px;}
.y6c{bottom:228.390000px;}
.ya7{bottom:228.705000px;}
.ydb{bottom:229.650000px;}
.y48{bottom:230.835000px;}
.y63{bottom:233.100000px;}
.y53{bottom:235.365000px;}
.yc8{bottom:239.760000px;}
.y82{bottom:242.610000px;}
.y75{bottom:246.090000px;}
.y6b{bottom:247.290000px;}
.yd5{bottom:247.350000px;}
.yee{bottom:250.770000px;}
.yb8{bottom:250.920000px;}
.yd9{bottom:251.070000px;}
.ya6{bottom:252.825000px;}
.yda{bottom:255.930000px;}
.y85{bottom:258.450000px;}
.y91{bottom:259.200000px;}
.y81{bottom:261.510000px;}
.y74{bottom:264.990000px;}
.y8e{bottom:269.355000px;}
.y47{bottom:270.975000px;}
.ycd{bottom:272.670000px;}
.ya{bottom:273.315000px;}
.yd4{bottom:273.810000px;}
.yb7{bottom:274.860000px;}
.y52{bottom:275.865000px;}
.ya5{bottom:276.585000px;}
.y84{bottom:277.350000px;}
.yd8{bottom:277.530000px;}
.y13{bottom:277.710000px;}
.y46{bottom:284.295000px;}
.y100{bottom:287.820000px;}
.y51{bottom:289.365000px;}
.y83{bottom:296.250000px;}
.ye0{bottom:297.150000px;}
.yb6{bottom:298.980000px;}
.ycc{bottom:299.160000px;}
.yed{bottom:299.550000px;}
.yd3{bottom:300.090000px;}
.yd7{bottom:304.020000px;}
.y9{bottom:305.745000px;}
.y12{bottom:309.240000px;}
.y1e{bottom:310.065000px;}
.y8b{bottom:322.380000px;}
.yb5{bottom:322.920000px;}
.ydf{bottom:323.430000px;}
.yf6{bottom:324.690000px;}
.y45{bottom:325.545000px;}
.ycb{bottom:325.620000px;}
.y80{bottom:326.160000px;}
.y32{bottom:327.855000px;}
.yd6{bottom:330.300000px;}
.y50{bottom:330.585000px;}
.y1d{bottom:337.965000px;}
.y8a{bottom:341.280000px;}
.y31{bottom:341.355000px;}
.ye2{bottom:342.720000px;}
.y7f{bottom:345.060000px;}
.ya4{bottom:350.790000px;}
.yca{bottom:351.900000px;}
.yff{bottom:352.695000px;}
.y1c{bottom:357.045000px;}
.y23{bottom:358.845000px;}
.y7e{bottom:363.960000px;}
.y14{bottom:365.475000px;}
.yf5{bottom:367.890000px;}
.yf{bottom:371.265000px;}
.yc3{bottom:371.850000px;}
.y22{bottom:372.345000px;}
.ya3{bottom:374.910000px;}
.y98{bottom:375.690000px;}
.y1b{bottom:376.170000px;}
.y67{bottom:378.180000px;}
.y30{bottom:389.235000px;}
.y70{bottom:394.890000px;}
.y1a{bottom:395.250000px;}
.y66{bottom:397.080000px;}
.y73{bottom:397.620000px;}
.ya2{bottom:399.030000px;}
.yec{bottom:399.675000px;}
.y21{bottom:400.785000px;}
.yd2{bottom:401.145000px;}
.y7d{bottom:401.865000px;}
.yb4{bottom:402.405000px;}
.y2f{bottom:402.735000px;}
.ye{bottom:404.025000px;}
.y97{bottom:409.350000px;}
.yf4{bottom:411.090000px;}
.y3d{bottom:412.125000px;}
.y6f{bottom:413.790000px;}
.y65{bottom:415.980000px;}
.y2e{bottom:416.235000px;}
.y72{bottom:416.520000px;}
.yc7{bottom:418.575000px;}
.y7c{bottom:420.765000px;}
.y20{bottom:422.385000px;}
.ya1{bottom:422.790000px;}
.y60{bottom:422.925000px;}
.yc6{bottom:423.795000px;}
.yb3{bottom:426.345000px;}
.yd1{bottom:427.605000px;}
.y19{bottom:429.375000px;}
.y6e{bottom:432.690000px;}
.y3c{bottom:433.725000px;}
.y71{bottom:435.420000px;}
.y39{bottom:436.530000px;}
.yfd{bottom:438.450000px;}
.y8d{bottom:440.175000px;}
.y1f{bottom:443.985000px;}
.yeb{bottom:448.455000px;}
.yc5{bottom:450.075000px;}
.yb2{bottom:450.465000px;}
.y18{bottom:450.975000px;}
.y3b{bottom:455.325000px;}
.y38{bottom:458.130000px;}
.y8c{bottom:459.075000px;}
.y8{bottom:459.930000px;}
.y6a{bottom:465.945000px;}
.yd0{bottom:473.760000px;}
.yb1{bottom:474.405000px;}
.y3a{bottom:476.970000px;}
.y37{bottom:479.730000px;}
.y69{bottom:484.845000px;}
.y27{bottom:485.310000px;}
.y7{bottom:492.375000px;}
.y8f{bottom:495.180000px;}
.ycf{bottom:497.880000px;}
.y2d{bottom:501.480000px;}
.ya0{bottom:505.980000px;}
.y26{bottom:506.910000px;}
.y68{bottom:510.045000px;}
.y36{bottom:518.070000px;}
.y5d{bottom:520.050000px;}
.y44{bottom:520.995000px;}
.yce{bottom:521.850000px;}
.y2c{bottom:523.080000px;}
.y5f{bottom:525.630000px;}
.y89{bottom:527.250000px;}
.y25{bottom:528.510000px;}
.y9f{bottom:529.950000px;}
.yf3{bottom:530.430000px;}
.y40{bottom:536.655000px;}
.y35{bottom:539.715000px;}
.y43{bottom:542.595000px;}
.ye4{bottom:543.030000px;}
.y2b{bottom:544.680000px;}
.y88{bottom:546.150000px;}
.yea{bottom:548.565000px;}
.y5c{bottom:549.075000px;}
.y24{bottom:550.155000px;}
.y7a{bottom:551.850000px;}
.y9e{bottom:554.070000px;}
.yb0{bottom:555.735000px;}
.yc4{bottom:556.815000px;}
.y3f{bottom:558.255000px;}
.y34{bottom:561.315000px;}
.y42{bottom:564.195000px;}
.y2a{bottom:566.280000px;}
.y62{bottom:572.145000px;}
.yf2{bottom:573.630000px;}
.y9d{bottom:577.830000px;}
.y5b{bottom:578.055000px;}
.yaf{bottom:579.675000px;}
.y3e{bottom:579.855000px;}
.y33{bottom:582.915000px;}
.y41{bottom:585.795000px;}
.y29{bottom:587.880000px;}
.yfe{bottom:593.490000px;}
.ye6{bottom:594.750000px;}
.yfc{bottom:595.470000px;}
.ye9{bottom:597.345000px;}
.y78{bottom:599.910000px;}
.y28{bottom:609.480000px;}
.yb{bottom:615.675000px;}
.y16{bottom:646.485000px;}
.y5e{bottom:678.705000px;}
.ye8{bottom:679.350000px;}
.y9a{bottom:689.910000px;}
.ye7{bottom:695.415000px;}
.y9c{bottom:701.925000px;}
.y6{bottom:707.655000px;}
.y15{bottom:711.105000px;}
.h1a{height:39.873600px;}
.h13{height:39.908160px;}
.h18{height:40.036896px;}
.h14{height:40.551840px;}
.h16{height:40.680576px;}
.h19{height:42.120000px;}
.h20{height:43.126560px;}
.h1b{height:48.276000px;}
.h1f{height:49.420800px;}
.hf{height:49.533120px;}
.h28{height:50.207040px;}
.h1{height:50.969883px;}
.h15{height:56.160000px;}
.h17{height:56.272320px;}
.h11{height:56.643840px;}
.h12{height:56.772576px;}
.h2a{height:62.337600px;}
.h10{height:64.368000px;}
.h9{height:64.496736px;}
.h3{height:66.552891px;}
.h2{height:66.666656px;}
.h2d{height:68.515200px;}
.h2b{height:71.448480px;}
.h2c{height:71.577216px;}
.h1c{height:74.023200px;}
.h1d{height:74.692800px;}
.h36{height:74.805120px;}
.h2e{height:78.528960px;}
.h32{height:78.657696px;}
.h8{height:83.988576px;}
.h21{height:84.651840px;}
.h34{height:84.843281px;}
.h6{height:85.324219px;}
.h35{height:85.371840px;}
.h5{height:85.437984px;}
.h26{height:87.609600px;}
.h2f{height:87.721920px;}
.hb{height:96.552000px;}
.ha{height:96.680736px;}
.h37{height:98.280000px;}
.h1e{height:98.680800px;}
.h23{height:99.290880px;}
.h24{height:99.418176px;}
.h3c{height:99.964800px;}
.h3d{height:100.077120px;}
.h27{height:100.414080px;}
.h25{height:100.542816px;}
.h30{height:112.320000px;}
.h39{height:112.644000px;}
.h3b{height:118.394492px;}
.h38{height:127.296000px;}
.h3a{height:128.736000px;}
.h3e{height:128.864736px;}
.h29{height:130.852800px;}
.h22{height:130.965120px;}
.h33{height:135.492328px;}
.h31{height:162.768960px;}
.hd{height:168.480000px;}
.he{height:168.592320px;}
.h7{height:170.284219px;}
.hc{height:178.588800px;}
.h4{height:217.171125px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2{left:11.339979px;}
.x68{left:14.759979px;}
.x5b{left:49.283979px;}
.xc{left:54.035979px;}
.x67{left:57.599979px;}
.x3b{left:60.659979px;}
.x3{left:61.739979px;}
.x6c{left:64.871979px;}
.x35{left:65.879979px;}
.x40{left:75.239979px;}
.x3f{left:76.859979px;}
.xa{left:81.035979px;}
.x41{left:82.979979px;}
.x5c{left:102.203979px;}
.x72{left:105.587979px;}
.x69{left:107.675979px;}
.x5d{left:108.863979px;}
.x7c{left:114.659979px;}
.x6a{left:118.475979px;}
.x7b{left:127.475979px;}
.x73{left:134.027979px;}
.x50{left:140.111979px;}
.x6b{left:146.915979px;}
.x77{left:161.429979px;}
.x76{left:166.469979px;}
.x91{left:179.309979px;}
.x74{left:187.124979px;}
.xf{left:197.639979px;}
.x3e{left:219.674979px;}
.x12{left:221.249979px;}
.x14{left:222.689979px;}
.x10{left:224.999979px;}
.x13{left:230.789979px;}
.x11{left:244.109979px;}
.x79{left:246.599979px;}
.x7a{left:250.199979px;}
.x92{left:270.209979px;}
.x43{left:311.144979px;}
.x78{left:319.214979px;}
.x97{left:332.999979px;}
.x8c{left:343.409979px;}
.x19{left:352.979979px;}
.x1b{left:354.059979px;}
.x16{left:356.609979px;}
.x1a{left:362.159979px;}
.x15{left:367.049979px;}
.x18{left:372.449979px;}
.x17{left:377.534979px;}
.x53{left:379.154979px;}
.x5e{left:390.134979px;}
.x44{left:403.634979px;}
.x45{left:415.514979px;}
.x46{left:428.114979px;}
.x95{left:436.064979px;}
.x5f{left:447.374979px;}
.x52{left:450.824979px;}
.x51{left:452.804979px;}
.x32{left:476.429979px;}
.x34{left:491.939979px;}
.x33{left:495.539979px;}
.x8d{left:507.599979px;}
.x2c{left:515.414979px;}
.x3c{left:518.009979px;}
.x2e{left:523.874979px;}
.x2d{left:527.114979px;}
.x8e{left:538.274979px;}
.x3d{left:550.229979px;}
.x83{left:557.099979px;}
.x84{left:558.899979px;}
.x7d{left:561.809979px;}
.x85{left:574.019979px;}
.x70{left:576.104979px;}
.x2b{left:577.334979px;}
.x7e{left:578.549979px;}
.x55{left:581.369979px;}
.x71{left:604.544979px;}
.x1{left:615.809979px;}
.x8f{left:635.549979px;}
.x2f{left:646.124979px;}
.x30{left:650.984979px;}
.x31{left:653.144979px;}
.x90{left:681.584979px;}
.x8a{left:694.154979px;}
.x4{left:696.854979px;}
.x80{left:700.949979px;}
.x7f{left:704.549979px;}
.x8b{left:706.754979px;}
.x81{left:707.969979px;}
.x48{left:739.439979px;}
.x5{left:740.489979px;}
.x61{left:741.779979px;}
.x6{left:752.069979px;}
.x47{left:756.359979px;}
.x49{left:761.039979px;}
.x60{left:780.839979px;}
.x27{left:781.949979px;}
.x65{left:786.779979px;}
.x25{left:790.049979px;}
.x66{left:792.179979px;}
.x26{left:798.149979px;}
.x62{left:799.379979px;}
.x28{left:808.949979px;}
.xb{left:831.704979px;}
.x87{left:834.044979px;}
.x89{left:846.869979px;}
.x82{left:847.979979px;}
.x7{left:859.964979px;}
.x56{left:862.739979px;}
.x88{left:869.189979px;}
.x86{left:875.309979px;}
.x94{left:893.879979px;}
.x42{left:903.494979px;}
.x96{left:912.089979px;}
.x1e{left:931.034979px;}
.x22{left:935.384979px;}
.x20{left:942.554979px;}
.x1f{left:947.414979px;}
.x1c{left:948.674979px;}
.x1d{left:951.014979px;}
.x21{left:957.704979px;}
.x6d{left:980.429979px;}
.xd{left:981.644979px;}
.x58{left:1006.769979px;}
.x6f{left:1020.134979px;}
.x6e{left:1023.479979px;}
.x4d{left:1033.559979px;}
.x4e{left:1064.339979px;}
.x75{left:1072.049979px;}
.x24{left:1084.499979px;}
.x23{left:1089.899979px;}
.x4b{left:1094.399979px;}
.x2a{left:1096.559979px;}
.x4a{left:1101.419979px;}
.x93{left:1102.469979px;}
.x29{left:1104.479979px;}
.x59{left:1112.939979px;}
.x36{left:1124.024979px;}
.x37{left:1135.004979px;}
.x64{left:1137.494979px;}
.x3a{left:1152.749979px;}
.x63{left:1167.764979px;}
.x4c{left:1182.314979px;}
.x54{left:1194.809979px;}
.x4f{left:1232.714979px;}
.x8{left:1233.794979px;}
.x57{left:1240.229979px;}
.x38{left:1241.429979px;}
.x39{left:1271.309979px;}
.x9{left:1275.689979px;}
.x5a{left:1339.274979px;}
.xe{left:1376.429979px;}
@media print{
.v1{vertical-align:-93.973333pt;}
.v7{vertical-align:-70.666667pt;}
.v4{vertical-align:-59.520000pt;}
.v5{vertical-align:-1.408000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.192000pt;}
.v6{vertical-align:43.786667pt;}
.v2{vertical-align:75.520000pt;}
.ls7{letter-spacing:-0.345067pt;}
.ls16{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.199467pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.118400pt;}
.ls18{letter-spacing:-0.076800pt;}
.lsb{letter-spacing:-0.046080pt;}
.ls13{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000003pt;}
.ls15{letter-spacing:0.000005pt;}
.ls8{letter-spacing:0.088576pt;}
.ls17{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.179200pt;}
.ls9{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.414933pt;}
.ls6{letter-spacing:8.861440pt;}
.ls4{letter-spacing:11.504000pt;}
.ls5{letter-spacing:24.928000pt;}
.ls3{letter-spacing:25.152000pt;}
.lsf{letter-spacing:43.847680pt;}
.lsd{letter-spacing:55.906304pt;}
.lsc{letter-spacing:56.007680pt;}
.lse{letter-spacing:98.805760pt;}
.ls12{letter-spacing:158.528000pt;}
.ws1e{word-spacing:-31.841709pt;}
.ws23{word-spacing:-30.238208pt;}
.ws16{word-spacing:-30.208000pt;}
.ws21{word-spacing:-26.885120pt;}
.ws4{word-spacing:-23.935872pt;}
.ws1{word-spacing:-23.904000pt;}
.ws14{word-spacing:-23.562240pt;}
.ws18{word-spacing:-18.426880pt;}
.wsf{word-spacing:-17.369600pt;}
.ws15{word-spacing:-16.765440pt;}
.ws8{word-spacing:-15.134208pt;}
.wsa{word-spacing:-15.104000pt;}
.ws6{word-spacing:-13.321728pt;}
.ws9{word-spacing:-13.291520pt;}
.wse{word-spacing:-11.328000pt;}
.ws11{word-spacing:-10.119680pt;}
.wsd{word-spacing:-9.364480pt;}
.ws13{word-spacing:-2.467840pt;}
.ws1f{word-spacing:-1.301333pt;}
.ws20{word-spacing:-1.120000pt;}
.ws12{word-spacing:-0.998400pt;}
.ws10{word-spacing:-0.661333pt;}
.wsb{word-spacing:-0.277333pt;}
.ws19{word-spacing:-0.099840pt;}
.ws1a{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.032000pt;}
.ws1c{word-spacing:0.848000pt;}
.ws1d{word-spacing:144.885318pt;}
.ws3{word-spacing:149.376000pt;}
.ws26{word-spacing:188.672000pt;}
.ws17{word-spacing:193.448533pt;}
.ws24{word-spacing:219.391985pt;}
.ws22{word-spacing:248.345259pt;}
.ws25{word-spacing:483.711985pt;}
.wsc{word-spacing:697.109333pt;}
.ws2{word-spacing:901.726763pt;}
.ws7{word-spacing:3565.745067pt;}
.ws5{word-spacing:4361.051733pt;}
._c{margin-left:-2987.451733pt;}
._b{margin-left:-1816.601173pt;}
._19{margin-left:-1124.801707pt;}
._2{margin-left:-829.911467pt;}
._16{margin-left:-5.936590pt;}
._4{margin-left:-2.580480pt;}
._0{margin-left:-1.480960pt;}
._1{width:0.968320pt;}
._5{width:2.155520pt;}
._17{width:4.449255pt;}
._8{width:11.507200pt;}
._e{width:18.366507pt;}
._d{width:19.384320pt;}
._9{width:22.626560pt;}
._15{width:27.594667pt;}
._18{width:30.154667pt;}
._3{width:46.589013pt;}
._11{width:160.306133pt;}
._13{width:421.951787pt;}
._12{width:473.334827pt;}
._14{width:481.674027pt;}
._7{width:529.535573pt;}
._10{width:750.984917pt;}
._6{width:861.990784pt;}
._f{width:903.017173pt;}
._a{width:1853.118720pt;}
.fse{font-size:39.680000pt;}
.fs11{font-size:39.808000pt;}
.fsf{font-size:40.320000pt;}
.fs10{font-size:40.448000pt;}
.fs15{font-size:42.880000pt;}
.fs13{font-size:45.440000pt;}
.fs12{font-size:48.000000pt;}
.fs19{font-size:49.920000pt;}
.fsd{font-size:56.320000pt;}
.fs7{font-size:56.448000pt;}
.fs0{font-size:56.960000pt;}
.fs1c{font-size:57.088000pt;}
.fs1f{font-size:62.720000pt;}
.fsc{font-size:64.000000pt;}
.fs8{font-size:64.128000pt;}
.fs1b{font-size:71.040000pt;}
.fs1d{font-size:71.168000pt;}
.fs6{font-size:73.600000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:75.008000pt;}
.fs1e{font-size:78.080000pt;}
.fs21{font-size:78.208000pt;}
.fs14{font-size:85.120000pt;}
.fs23{font-size:85.248000pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:96.128000pt;}
.fs17{font-size:99.840000pt;}
.fs18{font-size:99.968000pt;}
.fs24{font-size:112.000000pt;}
.fs26{font-size:113.920000pt;}
.fs27{font-size:114.048000pt;}
.fs22{font-size:121.088000pt;}
.fs20{font-size:128.000000pt;}
.fs28{font-size:128.128000pt;}
.fs25{font-size:134.922498pt;}
.fs1a{font-size:149.120000pt;}
.fs16{font-size:149.248000pt;}
.fs3{font-size:185.088000pt;}
.fsa{font-size:192.000000pt;}
.fsb{font-size:192.128000pt;}
.fs9{font-size:203.520000pt;}
.y0{bottom:0.000000pt;}
.ybd{bottom:2.496000pt;}
.y5{bottom:11.104000pt;}
.y9b{bottom:11.392000pt;}
.y10{bottom:21.472000pt;}
.ybc{bottom:23.808000pt;}
.y90{bottom:25.984000pt;}
.y2{bottom:26.048000pt;}
.y17{bottom:27.520000pt;}
.yf0{bottom:27.744000pt;}
.y11{bottom:27.872000pt;}
.yf1{bottom:30.368000pt;}
.y4{bottom:33.504000pt;}
.yc{bottom:37.120000pt;}
.yae{bottom:39.392000pt;}
.y1{bottom:43.168000pt;}
.ybb{bottom:45.088000pt;}
.y96{bottom:46.624000pt;}
.yc1{bottom:52.000000pt;}
.y3{bottom:55.936000pt;}
.y102{bottom:57.312000pt;}
.yf7{bottom:58.816000pt;}
.yfb{bottom:60.096000pt;}
.yad{bottom:62.912000pt;}
.yba{bottom:66.528000pt;}
.yc2{bottom:67.872000pt;}
.ye3{bottom:68.256000pt;}
.y4f{bottom:72.352000pt;}
.yc0{bottom:73.312000pt;}
.y93{bottom:74.528000pt;}
.y95{bottom:76.544000pt;}
.yac{bottom:86.432000pt;}
.y5a{bottom:86.464000pt;}
.yb9{bottom:87.808000pt;}
.ybf{bottom:94.752000pt;}
.yfa{bottom:95.008000pt;}
.y59{bottom:100.064000pt;}
.y101{bottom:100.128000pt;}
.y94{bottom:106.496000pt;}
.yab{bottom:109.792000pt;}
.y92{bottom:115.168000pt;}
.ye5{bottom:115.392000pt;}
.ybe{bottom:116.032000pt;}
.y4e{bottom:122.112000pt;}
.yf9{bottom:129.728000pt;}
.yaa{bottom:133.312000pt;}
.yde{bottom:133.573333pt;}
.y58{bottom:137.186667pt;}
.y4d{bottom:137.986667pt;}
.y61{bottom:139.973333pt;}
.y4c{bottom:149.826667pt;}
.y87{bottom:152.866667pt;}
.y57{bottom:153.186667pt;}
.y79{bottom:156.253333pt;}
.ya9{bottom:156.826667pt;}
.ydd{bottom:157.093333pt;}
.y77{bottom:163.066667pt;}
.yf8{bottom:164.613333pt;}
.y4b{bottom:165.666667pt;}
.y99{bottom:168.386667pt;}
.y56{bottom:169.186667pt;}
.y7b{bottom:169.573333pt;}
.y86{bottom:169.666667pt;}
.y4a{bottom:177.506667pt;}
.y76{bottom:179.906667pt;}
.ydc{bottom:180.613333pt;}
.y55{bottom:181.186667pt;}
.yef{bottom:181.306667pt;}
.ya8{bottom:181.826667pt;}
.y6d{bottom:186.173333pt;}
.yd{bottom:189.600000pt;}
.yc9{bottom:189.760000pt;}
.y64{bottom:190.400000pt;}
.y54{bottom:193.186667pt;}
.y49{bottom:193.346667pt;}
.ye1{bottom:202.400000pt;}
.y6c{bottom:203.013333pt;}
.ya7{bottom:203.293333pt;}
.ydb{bottom:204.133333pt;}
.y48{bottom:205.186667pt;}
.y63{bottom:207.200000pt;}
.y53{bottom:209.213333pt;}
.yc8{bottom:213.120000pt;}
.y82{bottom:215.653333pt;}
.y75{bottom:218.746667pt;}
.y6b{bottom:219.813333pt;}
.yd5{bottom:219.866667pt;}
.yee{bottom:222.906667pt;}
.yb8{bottom:223.040000pt;}
.yd9{bottom:223.173333pt;}
.ya6{bottom:224.733333pt;}
.yda{bottom:227.493333pt;}
.y85{bottom:229.733333pt;}
.y91{bottom:230.400000pt;}
.y81{bottom:232.453333pt;}
.y74{bottom:235.546667pt;}
.y8e{bottom:239.426667pt;}
.y47{bottom:240.866667pt;}
.ycd{bottom:242.373333pt;}
.ya{bottom:242.946667pt;}
.yd4{bottom:243.386667pt;}
.yb7{bottom:244.320000pt;}
.y52{bottom:245.213333pt;}
.ya5{bottom:245.853333pt;}
.y84{bottom:246.533333pt;}
.yd8{bottom:246.693333pt;}
.y13{bottom:246.853333pt;}
.y46{bottom:252.706667pt;}
.y100{bottom:255.840000pt;}
.y51{bottom:257.213333pt;}
.y83{bottom:263.333333pt;}
.ye0{bottom:264.133333pt;}
.yb6{bottom:265.760000pt;}
.ycc{bottom:265.920000pt;}
.yed{bottom:266.266667pt;}
.yd3{bottom:266.746667pt;}
.yd7{bottom:270.240000pt;}
.y9{bottom:271.773333pt;}
.y12{bottom:274.880000pt;}
.y1e{bottom:275.613333pt;}
.y8b{bottom:286.560000pt;}
.yb5{bottom:287.040000pt;}
.ydf{bottom:287.493333pt;}
.yf6{bottom:288.613333pt;}
.y45{bottom:289.373333pt;}
.ycb{bottom:289.440000pt;}
.y80{bottom:289.920000pt;}
.y32{bottom:291.426667pt;}
.yd6{bottom:293.600000pt;}
.y50{bottom:293.853333pt;}
.y1d{bottom:300.413333pt;}
.y8a{bottom:303.360000pt;}
.y31{bottom:303.426667pt;}
.ye2{bottom:304.640000pt;}
.y7f{bottom:306.720000pt;}
.ya4{bottom:311.813333pt;}
.yca{bottom:312.800000pt;}
.yff{bottom:313.506667pt;}
.y1c{bottom:317.373333pt;}
.y23{bottom:318.973333pt;}
.y7e{bottom:323.520000pt;}
.y14{bottom:324.866667pt;}
.yf5{bottom:327.013333pt;}
.yf{bottom:330.013333pt;}
.yc3{bottom:330.533333pt;}
.y22{bottom:330.973333pt;}
.ya3{bottom:333.253333pt;}
.y98{bottom:333.946667pt;}
.y1b{bottom:334.373333pt;}
.y67{bottom:336.160000pt;}
.y30{bottom:345.986667pt;}
.y70{bottom:351.013333pt;}
.y1a{bottom:351.333333pt;}
.y66{bottom:352.960000pt;}
.y73{bottom:353.440000pt;}
.ya2{bottom:354.693333pt;}
.yec{bottom:355.266667pt;}
.y21{bottom:356.253333pt;}
.yd2{bottom:356.573333pt;}
.y7d{bottom:357.213333pt;}
.yb4{bottom:357.693333pt;}
.y2f{bottom:357.986667pt;}
.ye{bottom:359.133333pt;}
.y97{bottom:363.866667pt;}
.yf4{bottom:365.413333pt;}
.y3d{bottom:366.333333pt;}
.y6f{bottom:367.813333pt;}
.y65{bottom:369.760000pt;}
.y2e{bottom:369.986667pt;}
.y72{bottom:370.240000pt;}
.yc7{bottom:372.066667pt;}
.y7c{bottom:374.013333pt;}
.y20{bottom:375.453333pt;}
.ya1{bottom:375.813333pt;}
.y60{bottom:375.933333pt;}
.yc6{bottom:376.706667pt;}
.yb3{bottom:378.973333pt;}
.yd1{bottom:380.093333pt;}
.y19{bottom:381.666667pt;}
.y6e{bottom:384.613333pt;}
.y3c{bottom:385.533333pt;}
.y71{bottom:387.040000pt;}
.y39{bottom:388.026667pt;}
.yfd{bottom:389.733333pt;}
.y8d{bottom:391.266667pt;}
.y1f{bottom:394.653333pt;}
.yeb{bottom:398.626667pt;}
.yc5{bottom:400.066667pt;}
.yb2{bottom:400.413333pt;}
.y18{bottom:400.866667pt;}
.y3b{bottom:404.733333pt;}
.y38{bottom:407.226667pt;}
.y8c{bottom:408.066667pt;}
.y8{bottom:408.826667pt;}
.y6a{bottom:414.173333pt;}
.yd0{bottom:421.120000pt;}
.yb1{bottom:421.693333pt;}
.y3a{bottom:423.973333pt;}
.y37{bottom:426.426667pt;}
.y69{bottom:430.973333pt;}
.y27{bottom:431.386667pt;}
.y7{bottom:437.666667pt;}
.y8f{bottom:440.160000pt;}
.ycf{bottom:442.560000pt;}
.y2d{bottom:445.760000pt;}
.ya0{bottom:449.760000pt;}
.y26{bottom:450.586667pt;}
.y68{bottom:453.373333pt;}
.y36{bottom:460.506667pt;}
.y5d{bottom:462.266667pt;}
.y44{bottom:463.106667pt;}
.yce{bottom:463.866667pt;}
.y2c{bottom:464.960000pt;}
.y5f{bottom:467.226667pt;}
.y89{bottom:468.666667pt;}
.y25{bottom:469.786667pt;}
.y9f{bottom:471.066667pt;}
.yf3{bottom:471.493333pt;}
.y40{bottom:477.026667pt;}
.y35{bottom:479.746667pt;}
.y43{bottom:482.306667pt;}
.ye4{bottom:482.693333pt;}
.y2b{bottom:484.160000pt;}
.y88{bottom:485.466667pt;}
.yea{bottom:487.613333pt;}
.y5c{bottom:488.066667pt;}
.y24{bottom:489.026667pt;}
.y7a{bottom:490.533333pt;}
.y9e{bottom:492.506667pt;}
.yb0{bottom:493.986667pt;}
.yc4{bottom:494.946667pt;}
.y3f{bottom:496.226667pt;}
.y34{bottom:498.946667pt;}
.y42{bottom:501.506667pt;}
.y2a{bottom:503.360000pt;}
.y62{bottom:508.573333pt;}
.yf2{bottom:509.893333pt;}
.y9d{bottom:513.626667pt;}
.y5b{bottom:513.826667pt;}
.yaf{bottom:515.266667pt;}
.y3e{bottom:515.426667pt;}
.y33{bottom:518.146667pt;}
.y41{bottom:520.706667pt;}
.y29{bottom:522.560000pt;}
.yfe{bottom:527.546667pt;}
.ye6{bottom:528.666667pt;}
.yfc{bottom:529.306667pt;}
.ye9{bottom:530.973333pt;}
.y78{bottom:533.253333pt;}
.y28{bottom:541.760000pt;}
.yb{bottom:547.266667pt;}
.y16{bottom:574.653333pt;}
.y5e{bottom:603.293333pt;}
.ye8{bottom:603.866667pt;}
.y9a{bottom:613.253333pt;}
.ye7{bottom:618.146667pt;}
.y9c{bottom:623.933333pt;}
.y6{bottom:629.026667pt;}
.y15{bottom:632.093333pt;}
.h1a{height:35.443200pt;}
.h13{height:35.473920pt;}
.h18{height:35.588352pt;}
.h14{height:36.046080pt;}
.h16{height:36.160512pt;}
.h19{height:37.440000pt;}
.h20{height:38.334720pt;}
.h1b{height:42.912000pt;}
.h1f{height:43.929600pt;}
.hf{height:44.029440pt;}
.h28{height:44.628480pt;}
.h1{height:45.306562pt;}
.h15{height:49.920000pt;}
.h17{height:50.019840pt;}
.h11{height:50.350080pt;}
.h12{height:50.464512pt;}
.h2a{height:55.411200pt;}
.h10{height:57.216000pt;}
.h9{height:57.330432pt;}
.h3{height:59.158125pt;}
.h2{height:59.259250pt;}
.h2d{height:60.902400pt;}
.h2b{height:63.509760pt;}
.h2c{height:63.624192pt;}
.h1c{height:65.798400pt;}
.h1d{height:66.393600pt;}
.h36{height:66.493440pt;}
.h2e{height:69.803520pt;}
.h32{height:69.917952pt;}
.h8{height:74.656512pt;}
.h21{height:75.246080pt;}
.h34{height:75.416250pt;}
.h6{height:75.843750pt;}
.h35{height:75.886080pt;}
.h5{height:75.944875pt;}
.h26{height:77.875200pt;}
.h2f{height:77.975040pt;}
.hb{height:85.824000pt;}
.ha{height:85.938432pt;}
.h37{height:87.360000pt;}
.h1e{height:87.716267pt;}
.h23{height:88.258560pt;}
.h24{height:88.371712pt;}
.h3c{height:88.857600pt;}
.h3d{height:88.957440pt;}
.h27{height:89.256960pt;}
.h25{height:89.371392pt;}
.h30{height:99.840000pt;}
.h39{height:100.128000pt;}
.h3b{height:105.239548pt;}
.h38{height:113.152000pt;}
.h3a{height:114.432000pt;}
.h3e{height:114.546432pt;}
.h29{height:116.313600pt;}
.h22{height:116.413440pt;}
.h33{height:120.437625pt;}
.h31{height:144.683520pt;}
.hd{height:149.760000pt;}
.he{height:149.859840pt;}
.h7{height:151.363750pt;}
.hc{height:158.745600pt;}
.h4{height:193.041000pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2{left:10.079981pt;}
.x68{left:13.119981pt;}
.x5b{left:43.807981pt;}
.xc{left:48.031981pt;}
.x67{left:51.199981pt;}
.x3b{left:53.919981pt;}
.x3{left:54.879981pt;}
.x6c{left:57.663981pt;}
.x35{left:58.559981pt;}
.x40{left:66.879981pt;}
.x3f{left:68.319981pt;}
.xa{left:72.031981pt;}
.x41{left:73.759981pt;}
.x5c{left:90.847981pt;}
.x72{left:93.855981pt;}
.x69{left:95.711981pt;}
.x5d{left:96.767981pt;}
.x7c{left:101.919981pt;}
.x6a{left:105.311981pt;}
.x7b{left:113.311981pt;}
.x73{left:119.135981pt;}
.x50{left:124.543981pt;}
.x6b{left:130.591981pt;}
.x77{left:143.493314pt;}
.x76{left:147.973314pt;}
.x91{left:159.386648pt;}
.x74{left:166.333314pt;}
.xf{left:175.679981pt;}
.x3e{left:195.266648pt;}
.x12{left:196.666648pt;}
.x14{left:197.946648pt;}
.x10{left:199.999981pt;}
.x13{left:205.146648pt;}
.x11{left:216.986648pt;}
.x79{left:219.199981pt;}
.x7a{left:222.399981pt;}
.x92{left:240.186648pt;}
.x43{left:276.573314pt;}
.x78{left:283.746648pt;}
.x97{left:295.999981pt;}
.x8c{left:305.253314pt;}
.x19{left:313.759981pt;}
.x1b{left:314.719981pt;}
.x16{left:316.986648pt;}
.x1a{left:321.919981pt;}
.x15{left:326.266648pt;}
.x18{left:331.066648pt;}
.x17{left:335.586648pt;}
.x53{left:337.026648pt;}
.x5e{left:346.786648pt;}
.x44{left:358.786648pt;}
.x45{left:369.346648pt;}
.x46{left:380.546648pt;}
.x95{left:387.613314pt;}
.x5f{left:397.666648pt;}
.x52{left:400.733314pt;}
.x51{left:402.493314pt;}
.x32{left:423.493314pt;}
.x34{left:437.279981pt;}
.x33{left:440.479981pt;}
.x8d{left:451.199981pt;}
.x2c{left:458.146648pt;}
.x3c{left:460.453314pt;}
.x2e{left:465.666648pt;}
.x2d{left:468.546648pt;}
.x8e{left:478.466648pt;}
.x3d{left:489.093314pt;}
.x83{left:495.199981pt;}
.x84{left:496.799981pt;}
.x7d{left:499.386648pt;}
.x85{left:510.239981pt;}
.x70{left:512.093314pt;}
.x2b{left:513.186648pt;}
.x7e{left:514.266648pt;}
.x55{left:516.773314pt;}
.x71{left:537.373314pt;}
.x1{left:547.386648pt;}
.x8f{left:564.933314pt;}
.x2f{left:574.333314pt;}
.x30{left:578.653314pt;}
.x31{left:580.573314pt;}
.x90{left:605.853314pt;}
.x8a{left:617.026648pt;}
.x4{left:619.426648pt;}
.x80{left:623.066648pt;}
.x7f{left:626.266648pt;}
.x8b{left:628.226648pt;}
.x81{left:629.306648pt;}
.x48{left:657.279981pt;}
.x5{left:658.213314pt;}
.x61{left:659.359981pt;}
.x6{left:668.506648pt;}
.x47{left:672.319981pt;}
.x49{left:676.479981pt;}
.x60{left:694.079981pt;}
.x27{left:695.066648pt;}
.x65{left:699.359981pt;}
.x25{left:702.266648pt;}
.x66{left:704.159981pt;}
.x26{left:709.466648pt;}
.x62{left:710.559981pt;}
.x28{left:719.066648pt;}
.xb{left:739.293314pt;}
.x87{left:741.373314pt;}
.x89{left:752.773314pt;}
.x82{left:753.759981pt;}
.x7{left:764.413314pt;}
.x56{left:766.879981pt;}
.x88{left:772.613314pt;}
.x86{left:778.053314pt;}
.x94{left:794.559981pt;}
.x42{left:803.106648pt;}
.x96{left:810.746648pt;}
.x1e{left:827.586648pt;}
.x22{left:831.453314pt;}
.x20{left:837.826648pt;}
.x1f{left:842.146648pt;}
.x1c{left:843.266648pt;}
.x1d{left:845.346648pt;}
.x21{left:851.293314pt;}
.x6d{left:871.493314pt;}
.xd{left:872.573314pt;}
.x58{left:894.906648pt;}
.x6f{left:906.786648pt;}
.x6e{left:909.759981pt;}
.x4d{left:918.719981pt;}
.x4e{left:946.079981pt;}
.x75{left:952.933314pt;}
.x24{left:963.999981pt;}
.x23{left:968.799981pt;}
.x4b{left:972.799981pt;}
.x2a{left:974.719981pt;}
.x4a{left:979.039981pt;}
.x93{left:979.973314pt;}
.x29{left:981.759981pt;}
.x59{left:989.279981pt;}
.x36{left:999.133314pt;}
.x37{left:1008.893314pt;}
.x64{left:1011.106648pt;}
.x3a{left:1024.666648pt;}
.x63{left:1038.013314pt;}
.x4c{left:1050.946648pt;}
.x54{left:1062.053314pt;}
.x4f{left:1095.746648pt;}
.x8{left:1096.706648pt;}
.x57{left:1102.426648pt;}
.x38{left:1103.493314pt;}
.x39{left:1130.053314pt;}
.x9{left:1133.946648pt;}
.x5a{left:1190.466648pt;}
.xe{left:1223.493314pt;}
}




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