
    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_d0bd99be19ceb057a0c0e1db.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.171387;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_5e7d1e0e08eae299dc4c86db.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006348;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_04ebe78d9620dfda0e739469.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.006348;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_4a56c175b61b1e4e9c8c7319.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_f2f10e157f3ce82469ee0d0d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9979cc1bb992667a18177664.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.111328;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_2fd5f3f85461f986a42888ef.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_0b422989c441b098db90bc2e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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_38a753b18d14d8067f157faa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.678711;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_5f5481d8020499b721c30a69.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5482863f210cc61cb19be6e7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_edeaffa5fab217ac10f0f680.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_4100910429df8ca98096696c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9a30afa9187e7423b13d817e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.932129;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_cef1f0e0767cc189d4cabfbb.woff2')format("woff");}.fff{font-family:fff;line-height:1.005371;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:ff10;src:url('chunks/assets/font_d0eeca49bf0f6751fb80129a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006348;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.249940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v7{vertical-align:-39.462000px;}
.v1{vertical-align:-26.532000px;}
.v3{vertical-align:-25.002000px;}
.v6{vertical-align:-20.580000px;}
.v2{vertical-align:-17.520000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:33.165431px;}
.v4{vertical-align:36.134584px;}
.lsa{letter-spacing:-0.598779px;}
.ls9{letter-spacing:-0.178149px;}
.lsb{letter-spacing:-0.148458px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.078066px;}
.ls7{letter-spacing:0.178149px;}
.ls0{letter-spacing:0.192018px;}
.ls8{letter-spacing:0.207841px;}
.ls6{letter-spacing:0.217738px;}
.lsc{letter-spacing:63.420252px;}
.lsd{letter-spacing:63.426252px;}
.ls5{letter-spacing:72.068148px;}
.ls4{letter-spacing:76.255704px;}
.lse{letter-spacing:118.765200px;}
.ls3{letter-spacing:121.200840px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-123.275556px;}
.ws1f{word-spacing:-53.939556px;}
.ws1{word-spacing:-33.261606px;}
.ws5{word-spacing:-26.570394px;}
.ws3{word-spacing:-24.921690px;}
.ws6{word-spacing:-23.272986px;}
.ws2{word-spacing:-21.624282px;}
.ws7{word-spacing:-19.929042px;}
.ws1d{word-spacing:-18.278676px;}
.ws8{word-spacing:-16.629972px;}
.wsc{word-spacing:-8.432393px;}
.wsd{word-spacing:-8.254243px;}
.wse{word-spacing:-8.076094px;}
.wsb{word-spacing:-7.566390px;}
.ws1c{word-spacing:-1.850772px;}
.ws18{word-spacing:-1.333644px;}
.ws16{word-spacing:-0.843734px;}
.ws12{word-spacing:-0.623522px;}
.ws15{word-spacing:-0.353824px;}
.ws17{word-spacing:-0.217738px;}
.ws19{word-spacing:-0.178149px;}
.ws1e{word-spacing:-0.095922px;}
.wsa{word-spacing:-0.084018px;}
.ws0{word-spacing:0.000000px;}
.ws13{word-spacing:0.356298px;}
.ws1a{word-spacing:0.831363px;}
.ws14{word-spacing:0.952603px;}
.ws1b{word-spacing:1.336119px;}
.ws10{word-spacing:235.662609px;}
.ws11{word-spacing:238.631761px;}
.wsf{word-spacing:254.036465px;}
.ws9{word-spacing:389.174634px;}
._c{margin-left:-15.169422px;}
._7{margin-left:-10.802430px;}
._d{margin-left:-9.285732px;}
._b{margin-left:-8.056404px;}
._4{margin-left:-6.536106px;}
._6{margin-left:-5.187300px;}
._5{margin-left:-3.598920px;}
._2{margin-left:-2.243694px;}
._0{margin-left:-1.152108px;}
._1{width:1.152108px;}
._3{width:3.499374px;}
._8{width:5.532672px;}
._a{width:119.663024px;}
._9{width:142.081195px;}
.fcc{color:transparent;}
.fc9{color:rgb(55,99,95);}
.fc6{color:rgb(0,0,205);}
.fc5{color:rgb(0,0,128);}
.fc8{color:rgb(33,171,136);}
.fc4{color:rgb(0,128,128);}
.fc3{color:rgb(0,139,139);}
.fc2{color:rgb(32,178,170);}
.fcb{color:rgb(255,255,255);}
.fca{color:rgb(89,89,89);}
.fc7{color:rgb(65,105,225);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(26,26,26);}
.fs16{font-size:27.217230px;}
.fs15{font-size:29.691523px;}
.fse{font-size:32.484000px;}
.fs11{font-size:37.758000px;}
.fsa{font-size:40.140000px;}
.fs18{font-size:43.200000px;}
.fs17{font-size:48.642000px;}
.fsc{font-size:54.084000px;}
.fsf{font-size:60.036000px;}
.fs13{font-size:65.988000px;}
.fs14{font-size:69.280221px;}
.fs5{font-size:71.946000px;}
.fs8{font-size:78.066000px;}
.fsd{font-size:84.018000px;}
.fs9{font-size:89.970000px;}
.fs2{font-size:95.922000px;}
.fs1{font-size:102.048000px;}
.fs10{font-size:108.000000px;}
.fs7{font-size:120.078000px;}
.fs3{font-size:131.982000px;}
.fs4{font-size:144.054000px;}
.fs12{font-size:155.964000px;}
.fs6{font-size:162.084000px;}
.fs19{font-size:168.036000px;}
.fsb{font-size:179.946000px;}
.fs0{font-size:192.018000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.yca{bottom:12.969000px;}
.y8d{bottom:13.734000px;}
.yb5{bottom:15.424066px;}
.y20{bottom:19.516500px;}
.yd{bottom:19.560000px;}
.ybc{bottom:21.609985px;}
.yb4{bottom:23.711712px;}
.y7a{bottom:25.470000px;}
.y55{bottom:29.424000px;}
.yb3{bottom:31.754404px;}
.y21{bottom:32.995500px;}
.yb2{bottom:43.880916px;}
.y28{bottom:44.943000px;}
.y4e{bottom:45.793500px;}
.ydb{bottom:48.175500px;}
.y45{bottom:52.512000px;}
.yb1{bottom:52.662184px;}
.y39{bottom:52.852500px;}
.y79{bottom:55.276500px;}
.y69{bottom:57.147000px;}
.y8c{bottom:64.927500px;}
.y3f{bottom:67.224000px;}
.y19{bottom:70.200000px;}
.y27{bottom:72.070500px;}
.y78{bottom:75.387000px;}
.y38{bottom:76.026000px;}
.yb0{bottom:79.447650px;}
.y4d{bottom:79.512000px;}
.yab{bottom:80.034243px;}
.y3e{bottom:83.976000px;}
.yba{bottom:84.704472px;}
.ybb{bottom:85.632518px;}
.y44{bottom:86.230500px;}
.yaf{bottom:87.735296px;}
.yaa{bottom:88.076934px;}
.y8b{bottom:91.587000px;}
.y6{bottom:92.949000px;}
.yae{bottom:95.900465px;}
.ya9{bottom:96.364581px;}
.yc8{bottom:96.690000px;}
.y37{bottom:99.198000px;}
.y3d{bottom:100.729500px;}
.yd4{bottom:103.450500px;}
.y18{bottom:104.769000px;}
.y77{bottom:105.492000px;}
.y5a{bottom:106.809000px;}
.y43{bottom:107.235000px;}
.yad{bottom:107.900789px;}
.ya8{bottom:108.367379px;}
.y4c{bottom:113.230500px;}
.yac{bottom:116.808246px;}
.ya7{bottom:117.148647px;}
.y68{bottom:119.268000px;}
.y65{bottom:123.052500px;}
.y36{bottom:127.219500px;}
.ycb{bottom:132.916500px;}
.yd3{bottom:135.553500px;}
.y3c{bottom:136.615500px;}
.y76{bottom:136.786500px;}
.y5{bottom:138.912000px;}
.y64{bottom:139.422000px;}
.y17{bottom:140.358000px;}
.y42{bottom:141.549000px;}
.y2a{bottom:145.503000px;}
.ya6{bottom:146.930234px;}
.y4b{bottom:146.949000px;}
.ya5{bottom:147.672522px;}
.y35{bottom:154.347000px;}
.ya4{bottom:156.706168px;}
.y66{bottom:159.576000px;}
.yd2{bottom:167.655000px;}
.ye6{bottom:171.015000px;}
.y29{bottom:172.630500px;}
.y4a{bottom:175.011000px;}
.y16{bottom:175.947000px;}
.yc{bottom:179.050500px;}
.y63{bottom:179.731500px;}
.y59{bottom:184.918500px;}
.y24{bottom:187.087500px;}
.ya3{bottom:192.117021px;}
.ye2{bottom:197.292000px;}
.y70{bottom:198.738000px;}
.y67{bottom:199.885500px;}
.y85{bottom:200.310000px;}
.ya2{bottom:201.150667px;}
.yda{bottom:201.160500px;}
.yd1{bottom:202.351500px;}
.y8a{bottom:203.754000px;}
.y75{bottom:209.707500px;}
.y3b{bottom:212.259000px;}
.y23{bottom:213.747000px;}
.y48{bottom:213.960000px;}
.y6f{bottom:222.336000px;}
.y84{bottom:227.437500px;}
.y14{bottom:227.905500px;}
.y89{bottom:230.881500px;}
.y74{bottom:233.305500px;}
.y4{bottom:235.729500px;}
.y3a{bottom:239.386500px;}
.y22{bottom:240.406500px;}
.y47{bottom:240.619500px;}
.y9b{bottom:241.315132px;}
.ye1{bottom:244.488000px;}
.y9f{bottom:246.584697px;}
.yb9{bottom:248.796345px;}
.yc7{bottom:249.123000px;}
.y9a{bottom:249.480301px;}
.y2c{bottom:249.888000px;}
.yd9{bottom:250.993500px;}
.y62{bottom:251.376000px;}
.y9e{bottom:255.492154px;}
.y99{bottom:257.645470px;}
.yb{bottom:258.477000px;}
.y58{bottom:264.217500px;}
.y9d{bottom:264.399611px;}
.y98{bottom:265.810639px;}
.y46{bottom:267.279000px;}
.ye0{bottom:268.087500px;}
.yd0{bottom:270.595500px;}
.y9c{bottom:273.307068px;}
.y97{bottom:273.975808px;}
.y2b{bottom:277.015500px;}
.y7e{bottom:278.334000px;}
.y5f{bottom:281.608500px;}
.yc2{bottom:283.606500px;}
.y13{bottom:285.094500px;}
.y88{bottom:285.732000px;}
.yc6{bottom:285.859500px;}
.y96{bottom:286.099846px;}
.y61{bottom:291.685500px;}
.ydf{bottom:294.193500px;}
.y95{bottom:295.007303px;}
.y34{bottom:297.127500px;}
.y6e{bottom:297.171000px;}
.yd8{bottom:300.826500px;}
.ycf{bottom:302.698500px;}
.y7d{bottom:305.461500px;}
.yc1{bottom:307.204500px;}
.y60{bottom:311.839500px;}
.y12{bottom:314.008500px;}
.y33{bottom:320.301000px;}
.y1e{bottom:322.681500px;}
.yb7{bottom:323.696366px;}
.y6d{bottom:324.298500px;}
.y53{bottom:326.296500px;}
.y73{bottom:329.272500px;}
.y57{bottom:331.441500px;}
.ye5{bottom:333.184500px;}
.yce{bottom:334.800000px;}
.y87{bottom:336.841500px;}
.yc5{bottom:337.309500px;}
.ya{bottom:337.903500px;}
.yc0{bottom:339.307500px;}
.y32{bottom:339.817500px;}
.y2e{bottom:339.859500px;}
.y3{bottom:347.725500px;}
.yd7{bottom:350.659500px;}
.y52{bottom:351.298500px;}
.y11{bottom:355.465500px;}
.ya1{bottom:356.069714px;}
.y40{bottom:357.336000px;}
.y1d{bottom:360.354000px;}
.y5e{bottom:361.332000px;}
.y83{bottom:362.013000px;}
.y86{bottom:363.969000px;}
.ye{bottom:364.861500px;}
.ya0{bottom:365.105835px;}
.y31{bottom:366.945000px;}
.y2d{bottom:366.987000px;}
.ycd{bottom:369.496500px;}
.yc4{bottom:371.580000px;}
.ybf{bottom:372.643500px;}
.yde{bottom:373.960500px;}
.y51{bottom:376.299000px;}
.y6a{bottom:378.553500px;}
.y5c{bottom:381.487500px;}
.yd6{bottom:388.714500px;}
.y82{bottom:389.140500px;}
.y1c{bottom:393.265500px;}
.y10{bottom:396.921000px;}
.y5d{bottom:401.641500px;}
.y6c{bottom:401.683500px;}
.y56{bottom:403.639500px;}
.y72{bottom:404.235000px;}
.y94{bottom:404.318439px;}
.y2{bottom:405.382500px;}
.ydd{bottom:406.531500px;}
.ybe{bottom:411.378000px;}
.y93{bottom:413.352085px;}
.y9{bottom:417.331500px;}
.ye4{bottom:420.009000px;}
.y81{bottom:420.520500px;}
.ycc{bottom:422.773500px;}
.yd5{bottom:424.432500px;}
.y30{bottom:424.857000px;}
.y26{bottom:427.620000px;}
.y71{bottom:427.833000px;}
.y6b{bottom:428.811000px;}
.y1b{bottom:430.938000px;}
.yf{bottom:438.378000px;}
.yb6{bottom:444.318179px;}
.y7c{bottom:444.883500px;}
.y80{bottom:447.648000px;}
.ybd{bottom:450.114000px;}
.y2f{bottom:451.984500px;}
.y25{bottom:454.749000px;}
.y1a{bottom:463.848000px;}
.y5b{bottom:471.373500px;}
.yb8{bottom:471.482768px;}
.y7b{bottom:472.011000px;}
.y92{bottom:472.240273px;}
.y7f{bottom:474.775500px;}
.y41{bottom:482.641500px;}
.y91{bottom:484.985359px;}
.y49{bottom:485.404500px;}
.y54{bottom:487.318500px;}
.y90{bottom:515.292981px;}
.y8f{bottom:524.200438px;}
.y50{bottom:528.222000px;}
.y8e{bottom:539.912202px;}
.yc3{bottom:548.802000px;}
.y15{bottom:551.013000px;}
.y8{bottom:551.055000px;}
.yc9{bottom:551.863500px;}
.y1f{bottom:554.074500px;}
.ydc{bottom:554.925000px;}
.ye3{bottom:557.773500px;}
.y4f{bottom:559.984500px;}
.y7{bottom:561.855000px;}
.h25{height:28.386720px;}
.h23{height:30.967331px;}
.h2b{height:34.025118px;}
.h17{height:34.893785px;}
.h18{height:34.899785px;}
.h1c{height:36.206426px;}
.he{height:39.012551px;}
.h2a{height:40.628426px;}
.h13{height:41.434471px;}
.h29{height:43.502648px;}
.h1a{height:43.737164px;}
.h20{height:48.073289px;}
.h1e{height:52.413785px;}
.h28{height:52.657688px;}
.h2c{height:53.249118px;}
.h1f{height:54.085166px;}
.h10{height:54.514075px;}
.h11{height:54.520075px;}
.h9{height:55.118786px;}
.h30{height:60.880230px;}
.h19{height:61.208426px;}
.h26{height:64.132762px;}
.h2d{height:64.367306px;}
.hf{height:65.544551px;}
.h24{height:67.101914px;}
.h15{height:69.880676px;}
.hc{height:70.328013px;}
.h22{height:72.257105px;}
.h5{height:73.487118px;}
.h16{height:75.690044px;}
.h4{height:78.180328px;}
.h27{height:78.679688px;}
.hd{height:81.052075px;}
.h14{height:86.414106px;}
.hb{height:87.478699px;}
.h2f{height:89.317995px;}
.h1b{height:97.294922px;}
.h1d{height:119.486092px;}
.h6{height:122.895349px;}
.h2e{height:128.734611px;}
.h8{height:134.136220px;}
.h12{height:137.859021px;}
.h7{height:147.107540px;}
.ha{height:150.924896px;}
.h3{height:178.798011px;}
.h21{height:593.785500px;}
.h2{height:607.477500px;}
.h1{height:607.500000px;}
.h0{height:607.521260px;}
.w2{width:333.949491px;}
.w1{width:1079.956500px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x5c{left:8.009902px;}
.x3d{left:10.800000px;}
.x1f{left:12.543000px;}
.x17{left:14.839500px;}
.x13{left:16.753500px;}
.x50{left:21.151680px;}
.x52{left:26.761413px;}
.x55{left:28.371174px;}
.x54{left:30.350752px;}
.x12{left:31.890000px;}
.x53{left:33.071822px;}
.x10{left:38.863500px;}
.x3a{left:40.819500px;}
.x45{left:42.771138px;}
.x34{left:44.391000px;}
.x46{left:47.223797px;}
.x21{left:49.365000px;}
.x43{left:50.615611px;}
.xd{left:53.319000px;}
.x47{left:54.890412px;}
.x48{left:57.114887px;}
.x40{left:58.404055px;}
.x3f{left:60.514431px;}
.xe{left:66.075000px;}
.x5{left:74.580000px;}
.x14{left:76.323000px;}
.x62{left:78.661500px;}
.x4d{left:86.717406px;}
.x4f{left:91.534628px;}
.x1{left:95.839500px;}
.x4e{left:98.842247px;}
.x15{left:99.921000px;}
.x5d{left:101.701163px;}
.x42{left:103.284702px;}
.xf{left:104.343000px;}
.x59{left:105.528039px;}
.x6{left:107.319000px;}
.x41{left:108.741375px;}
.x5b{left:122.712523px;}
.x51{left:123.811155px;}
.x64{left:125.602500px;}
.x3{left:128.580000px;}
.x18{left:133.597500px;}
.x60{left:141.505500px;}
.x7{left:145.885500px;}
.x5a{left:149.684820px;}
.xb{left:157.068000px;}
.x32{left:159.619500px;}
.x33{left:170.164500px;}
.x5e{left:182.962500px;}
.x68{left:187.725000px;}
.xc{left:195.336000px;}
.x4b{left:196.668421px;}
.x44{left:199.140575px;}
.x49{left:201.121081px;}
.x56{left:208.579286px;}
.x4a{left:212.007834px;}
.x58{left:215.506264px;}
.x38{left:216.637500px;}
.x57{left:220.329361px;}
.x67{left:229.989000px;}
.x4c{left:231.918645px;}
.x1e{left:247.719000px;}
.x20{left:255.118500px;}
.x1c{left:256.692000px;}
.x1a{left:264.090000px;}
.x66{left:265.747500px;}
.x23{left:294.066000px;}
.x37{left:305.716500px;}
.x1d{left:321.534000px;}
.x65{left:345.558000px;}
.x6a{left:359.589000px;}
.x19{left:381.147000px;}
.x22{left:382.209000px;}
.x63{left:390.288000px;}
.x2e{left:406.360500px;}
.xa{left:427.153500px;}
.x24{left:431.872500px;}
.x2a{left:442.375500px;}
.x8{left:447.817500px;}
.x69{left:471.756000px;}
.x2{left:491.442000px;}
.x5f{left:551.991000px;}
.x16{left:584.646000px;}
.x36{left:630.907500px;}
.x35{left:633.373500px;}
.x39{left:650.211000px;}
.x3b{left:652.125000px;}
.x3c{left:654.675000px;}
.x25{left:663.903000px;}
.x27{left:665.391000px;}
.x26{left:670.408500px;}
.x2f{left:688.435500px;}
.x3e{left:722.835000px;}
.x2d{left:788.995500px;}
.x30{left:793.503000px;}
.x11{left:797.413500px;}
.x9{left:820.545000px;}
.x2b{left:821.991000px;}
.x29{left:830.494500px;}
.x61{left:833.428500px;}
.x2c{left:837.000000px;}
.x28{left:850.521000px;}
.x31{left:857.026500px;}
.x1b{left:1009.800000px;}
.x4{left:1014.945000px;}
@media print{
.v7{vertical-align:-35.077333pt;}
.v1{vertical-align:-23.584000pt;}
.v3{vertical-align:-22.224000pt;}
.v6{vertical-align:-18.293333pt;}
.v2{vertical-align:-15.573333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:29.480383pt;}
.v4{vertical-align:32.119630pt;}
.lsa{letter-spacing:-0.532248pt;}
.ls9{letter-spacing:-0.158355pt;}
.lsb{letter-spacing:-0.131962pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.069392pt;}
.ls7{letter-spacing:0.158355pt;}
.ls0{letter-spacing:0.170683pt;}
.ls8{letter-spacing:0.184747pt;}
.ls6{letter-spacing:0.193545pt;}
.lsc{letter-spacing:56.373557pt;}
.lsd{letter-spacing:56.378891pt;}
.ls5{letter-spacing:64.060576pt;}
.ls4{letter-spacing:67.782848pt;}
.lse{letter-spacing:105.569067pt;}
.ls3{letter-spacing:107.734080pt;}
.ws4{word-spacing:-109.578272pt;}
.ws1f{word-spacing:-47.946272pt;}
.ws1{word-spacing:-29.565872pt;}
.ws5{word-spacing:-23.618128pt;}
.ws3{word-spacing:-22.152613pt;}
.ws6{word-spacing:-20.687099pt;}
.ws2{word-spacing:-19.221584pt;}
.ws7{word-spacing:-17.714704pt;}
.ws1d{word-spacing:-16.247712pt;}
.ws8{word-spacing:-14.782197pt;}
.wsc{word-spacing:-7.495460pt;}
.wsd{word-spacing:-7.337105pt;}
.wse{word-spacing:-7.178750pt;}
.wsb{word-spacing:-6.725680pt;}
.ws1c{word-spacing:-1.645130pt;}
.ws18{word-spacing:-1.185462pt;}
.ws16{word-spacing:-0.749986pt;}
.ws12{word-spacing:-0.554242pt;}
.ws15{word-spacing:-0.314510pt;}
.ws17{word-spacing:-0.193545pt;}
.ws19{word-spacing:-0.158355pt;}
.ws1e{word-spacing:-0.085264pt;}
.wsa{word-spacing:-0.074683pt;}
.ws0{word-spacing:0.000000pt;}
.ws13{word-spacing:0.316710pt;}
.ws1a{word-spacing:0.738989pt;}
.ws14{word-spacing:0.846758pt;}
.ws1b{word-spacing:1.187661pt;}
.ws10{word-spacing:209.477874pt;}
.ws11{word-spacing:212.117121pt;}
.wsf{word-spacing:225.810191pt;}
.ws9{word-spacing:345.933008pt;}
._c{margin-left:-13.483931pt;}
._7{margin-left:-9.602160pt;}
._d{margin-left:-8.253984pt;}
._b{margin-left:-7.161248pt;}
._4{margin-left:-5.809872pt;}
._6{margin-left:-4.610933pt;}
._5{margin-left:-3.199040pt;}
._2{margin-left:-1.994395pt;}
._0{margin-left:-1.024096pt;}
._1{width:1.024096pt;}
._3{width:3.110555pt;}
._8{width:4.917931pt;}
._a{width:106.367132pt;}
._9{width:126.294396pt;}
.fs16{font-size:24.193093pt;}
.fs15{font-size:26.392465pt;}
.fse{font-size:28.874667pt;}
.fs11{font-size:33.562667pt;}
.fsa{font-size:35.680000pt;}
.fs18{font-size:38.400000pt;}
.fs17{font-size:43.237333pt;}
.fsc{font-size:48.074667pt;}
.fsf{font-size:53.365333pt;}
.fs13{font-size:58.656000pt;}
.fs14{font-size:61.582418pt;}
.fs5{font-size:63.952000pt;}
.fs8{font-size:69.392000pt;}
.fsd{font-size:74.682667pt;}
.fs9{font-size:79.973333pt;}
.fs2{font-size:85.264000pt;}
.fs1{font-size:90.709333pt;}
.fs10{font-size:96.000000pt;}
.fs7{font-size:106.736000pt;}
.fs3{font-size:117.317333pt;}
.fs4{font-size:128.048000pt;}
.fs12{font-size:138.634667pt;}
.fs6{font-size:144.074667pt;}
.fs19{font-size:149.365333pt;}
.fsb{font-size:159.952000pt;}
.fs0{font-size:170.682667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.yca{bottom:11.528000pt;}
.y8d{bottom:12.208000pt;}
.yb5{bottom:13.710281pt;}
.y20{bottom:17.348000pt;}
.yd{bottom:17.386667pt;}
.ybc{bottom:19.208876pt;}
.yb4{bottom:21.077078pt;}
.y7a{bottom:22.640000pt;}
.y55{bottom:26.154667pt;}
.yb3{bottom:28.226136pt;}
.y21{bottom:29.329333pt;}
.yb2{bottom:39.005259pt;}
.y28{bottom:39.949333pt;}
.y4e{bottom:40.705333pt;}
.ydb{bottom:42.822667pt;}
.y45{bottom:46.677333pt;}
.yb1{bottom:46.810831pt;}
.y39{bottom:46.980000pt;}
.y79{bottom:49.134667pt;}
.y69{bottom:50.797333pt;}
.y8c{bottom:57.713333pt;}
.y3f{bottom:59.754667pt;}
.y19{bottom:62.400000pt;}
.y27{bottom:64.062667pt;}
.y78{bottom:67.010667pt;}
.y38{bottom:67.578667pt;}
.yb0{bottom:70.620133pt;}
.y4d{bottom:70.677333pt;}
.yab{bottom:71.141549pt;}
.y3e{bottom:74.645333pt;}
.yba{bottom:75.292864pt;}
.ybb{bottom:76.117793pt;}
.y44{bottom:76.649333pt;}
.yaf{bottom:77.986930pt;}
.yaa{bottom:78.290608pt;}
.y8b{bottom:81.410667pt;}
.y6{bottom:82.621333pt;}
.yae{bottom:85.244858pt;}
.ya9{bottom:85.657405pt;}
.yc8{bottom:85.946667pt;}
.y37{bottom:88.176000pt;}
.y3d{bottom:89.537333pt;}
.yd4{bottom:91.956000pt;}
.y18{bottom:93.128000pt;}
.y77{bottom:93.770667pt;}
.y5a{bottom:94.941333pt;}
.y43{bottom:95.320000pt;}
.yad{bottom:95.911812pt;}
.ya8{bottom:96.326559pt;}
.y4c{bottom:100.649333pt;}
.yac{bottom:103.829552pt;}
.ya7{bottom:104.132130pt;}
.y68{bottom:106.016000pt;}
.y65{bottom:109.380000pt;}
.y36{bottom:113.084000pt;}
.ycb{bottom:118.148000pt;}
.yd3{bottom:120.492000pt;}
.y3c{bottom:121.436000pt;}
.y76{bottom:121.588000pt;}
.y5{bottom:123.477333pt;}
.y64{bottom:123.930667pt;}
.y17{bottom:124.762667pt;}
.y42{bottom:125.821333pt;}
.y2a{bottom:129.336000pt;}
.ya6{bottom:130.604653pt;}
.y4b{bottom:130.621333pt;}
.ya5{bottom:131.264464pt;}
.y35{bottom:137.197333pt;}
.ya4{bottom:139.294372pt;}
.y66{bottom:141.845333pt;}
.yd2{bottom:149.026667pt;}
.ye6{bottom:152.013333pt;}
.y29{bottom:153.449333pt;}
.y4a{bottom:155.565333pt;}
.y16{bottom:156.397333pt;}
.yc{bottom:159.156000pt;}
.y63{bottom:159.761333pt;}
.y59{bottom:164.372000pt;}
.y24{bottom:166.300000pt;}
.ya3{bottom:170.770685pt;}
.ye2{bottom:175.370667pt;}
.y70{bottom:176.656000pt;}
.y67{bottom:177.676000pt;}
.y85{bottom:178.053333pt;}
.ya2{bottom:178.800593pt;}
.yda{bottom:178.809333pt;}
.yd1{bottom:179.868000pt;}
.y8a{bottom:181.114667pt;}
.y75{bottom:186.406667pt;}
.y3b{bottom:188.674667pt;}
.y23{bottom:189.997333pt;}
.y48{bottom:190.186667pt;}
.y6f{bottom:197.632000pt;}
.y84{bottom:202.166667pt;}
.y14{bottom:202.582667pt;}
.y89{bottom:205.228000pt;}
.y74{bottom:207.382667pt;}
.y4{bottom:209.537333pt;}
.y3a{bottom:212.788000pt;}
.y22{bottom:213.694667pt;}
.y47{bottom:213.884000pt;}
.y9b{bottom:214.502340pt;}
.ye1{bottom:217.322667pt;}
.y9f{bottom:219.186398pt;}
.yb9{bottom:221.152306pt;}
.yc7{bottom:221.442667pt;}
.y9a{bottom:221.760268pt;}
.y2c{bottom:222.122667pt;}
.yd9{bottom:223.105333pt;}
.y62{bottom:223.445333pt;}
.y9e{bottom:227.104137pt;}
.y99{bottom:229.018196pt;}
.yb{bottom:229.757333pt;}
.y58{bottom:234.860000pt;}
.y9d{bottom:235.021876pt;}
.y98{bottom:236.276123pt;}
.y46{bottom:237.581333pt;}
.ye0{bottom:238.300000pt;}
.yd0{bottom:240.529333pt;}
.y9c{bottom:242.939616pt;}
.y97{bottom:243.534051pt;}
.y2b{bottom:246.236000pt;}
.y7e{bottom:247.408000pt;}
.y5f{bottom:250.318667pt;}
.yc2{bottom:252.094667pt;}
.y13{bottom:253.417333pt;}
.y88{bottom:253.984000pt;}
.yc6{bottom:254.097333pt;}
.y96{bottom:254.310974pt;}
.y61{bottom:259.276000pt;}
.ydf{bottom:261.505333pt;}
.y95{bottom:262.228714pt;}
.y34{bottom:264.113333pt;}
.y6e{bottom:264.152000pt;}
.yd8{bottom:267.401333pt;}
.ycf{bottom:269.065333pt;}
.y7d{bottom:271.521333pt;}
.yc1{bottom:273.070667pt;}
.y60{bottom:277.190667pt;}
.y12{bottom:279.118667pt;}
.y33{bottom:284.712000pt;}
.y1e{bottom:286.828000pt;}
.yb7{bottom:287.730103pt;}
.y6d{bottom:288.265333pt;}
.y53{bottom:290.041333pt;}
.y73{bottom:292.686667pt;}
.y57{bottom:294.614667pt;}
.ye5{bottom:296.164000pt;}
.yce{bottom:297.600000pt;}
.y87{bottom:299.414667pt;}
.yc5{bottom:299.830667pt;}
.ya{bottom:300.358667pt;}
.yc0{bottom:301.606667pt;}
.y32{bottom:302.060000pt;}
.y2e{bottom:302.097333pt;}
.y3{bottom:309.089333pt;}
.yd7{bottom:311.697333pt;}
.y52{bottom:312.265333pt;}
.y11{bottom:315.969333pt;}
.ya1{bottom:316.506413pt;}
.y40{bottom:317.632000pt;}
.y1d{bottom:320.314667pt;}
.y5e{bottom:321.184000pt;}
.y83{bottom:321.789333pt;}
.y86{bottom:323.528000pt;}
.ye{bottom:324.321333pt;}
.ya0{bottom:324.538520pt;}
.y31{bottom:326.173333pt;}
.y2d{bottom:326.210667pt;}
.ycd{bottom:328.441333pt;}
.yc4{bottom:330.293333pt;}
.ybf{bottom:331.238667pt;}
.yde{bottom:332.409333pt;}
.y51{bottom:334.488000pt;}
.y6a{bottom:336.492000pt;}
.y5c{bottom:339.100000pt;}
.yd6{bottom:345.524000pt;}
.y82{bottom:345.902667pt;}
.y1c{bottom:349.569333pt;}
.y10{bottom:352.818667pt;}
.y5d{bottom:357.014667pt;}
.y6c{bottom:357.052000pt;}
.y56{bottom:358.790667pt;}
.y72{bottom:359.320000pt;}
.y94{bottom:359.394168pt;}
.y2{bottom:360.340000pt;}
.ydd{bottom:361.361333pt;}
.ybe{bottom:365.669333pt;}
.y93{bottom:367.424076pt;}
.y9{bottom:370.961333pt;}
.ye4{bottom:373.341333pt;}
.y81{bottom:373.796000pt;}
.ycc{bottom:375.798667pt;}
.yd5{bottom:377.273333pt;}
.y30{bottom:377.650667pt;}
.y26{bottom:380.106667pt;}
.y71{bottom:380.296000pt;}
.y6b{bottom:381.165333pt;}
.y1b{bottom:383.056000pt;}
.yf{bottom:389.669333pt;}
.yb6{bottom:394.949492pt;}
.y7c{bottom:395.452000pt;}
.y80{bottom:397.909333pt;}
.ybd{bottom:400.101333pt;}
.y2f{bottom:401.764000pt;}
.y25{bottom:404.221333pt;}
.y1a{bottom:412.309333pt;}
.y5b{bottom:418.998667pt;}
.yb8{bottom:419.095794pt;}
.y7b{bottom:419.565333pt;}
.y92{bottom:419.769131pt;}
.y7f{bottom:422.022667pt;}
.y41{bottom:429.014667pt;}
.y91{bottom:431.098097pt;}
.y49{bottom:431.470667pt;}
.y54{bottom:433.172000pt;}
.y90{bottom:458.038206pt;}
.y8f{bottom:465.955945pt;}
.y50{bottom:469.530667pt;}
.y8e{bottom:479.921958pt;}
.yc3{bottom:487.824000pt;}
.y15{bottom:489.789333pt;}
.y8{bottom:489.826667pt;}
.yc9{bottom:490.545333pt;}
.y1f{bottom:492.510667pt;}
.ydc{bottom:493.266667pt;}
.ye3{bottom:495.798667pt;}
.y4f{bottom:497.764000pt;}
.y7{bottom:499.426667pt;}
.h25{height:25.232640pt;}
.h23{height:27.526516pt;}
.h2b{height:30.244549pt;}
.h17{height:31.016698pt;}
.h18{height:31.022031pt;}
.h1c{height:32.183490pt;}
.he{height:34.677823pt;}
.h2a{height:36.114156pt;}
.h13{height:36.830641pt;}
.h29{height:38.669021pt;}
.h1a{height:38.877479pt;}
.h20{height:42.731812pt;}
.h1e{height:46.590031pt;}
.h28{height:46.806833pt;}
.h2c{height:47.332549pt;}
.h1f{height:48.075703pt;}
.h10{height:48.456956pt;}
.h11{height:48.462289pt;}
.h9{height:48.994477pt;}
.h30{height:54.115760pt;}
.h19{height:54.407490pt;}
.h26{height:57.006900pt;}
.h2d{height:57.215383pt;}
.hf{height:58.261823pt;}
.h24{height:59.646146pt;}
.h15{height:62.116156pt;}
.hc{height:62.513789pt;}
.h22{height:64.228538pt;}
.h5{height:65.321883pt;}
.h16{height:67.280039pt;}
.h4{height:69.493625pt;}
.h27{height:69.937500pt;}
.hd{height:72.046289pt;}
.h14{height:76.812539pt;}
.hb{height:77.758844pt;}
.h2f{height:79.393773pt;}
.h1b{height:86.484375pt;}
.h1d{height:106.209859pt;}
.h6{height:109.240310pt;}
.h2e{height:114.430766pt;}
.h8{height:119.232195pt;}
.h12{height:122.541352pt;}
.h7{height:130.762258pt;}
.ha{height:134.155464pt;}
.h3{height:158.931565pt;}
.h21{height:527.809333pt;}
.h2{height:539.980000pt;}
.h1{height:540.000000pt;}
.h0{height:540.018898pt;}
.w2{width:296.843992pt;}
.w1{width:959.961333pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x5c{left:7.119913pt;}
.x3d{left:9.600000pt;}
.x1f{left:11.149333pt;}
.x17{left:13.190667pt;}
.x13{left:14.892000pt;}
.x50{left:18.801494pt;}
.x52{left:23.787923pt;}
.x55{left:25.218821pt;}
.x54{left:26.978446pt;}
.x12{left:28.346667pt;}
.x53{left:29.397175pt;}
.x10{left:34.545333pt;}
.x3a{left:36.284000pt;}
.x45{left:38.018789pt;}
.x34{left:39.458667pt;}
.x46{left:41.976709pt;}
.x21{left:43.880000pt;}
.x43{left:44.991654pt;}
.xd{left:47.394667pt;}
.x47{left:48.791477pt;}
.x48{left:50.768788pt;}
.x40{left:51.914716pt;}
.x3f{left:53.790605pt;}
.xe{left:58.733333pt;}
.x5{left:66.293333pt;}
.x14{left:67.842667pt;}
.x62{left:69.921333pt;}
.x4d{left:77.082139pt;}
.x4f{left:81.364114pt;}
.x1{left:85.190667pt;}
.x4e{left:87.859775pt;}
.x15{left:88.818667pt;}
.x5d{left:90.401034pt;}
.x42{left:91.808624pt;}
.xf{left:92.749333pt;}
.x59{left:93.802701pt;}
.x6{left:95.394667pt;}
.x41{left:96.659000pt;}
.x5b{left:109.077798pt;}
.x51{left:110.054360pt;}
.x64{left:111.646667pt;}
.x3{left:114.293333pt;}
.x18{left:118.753333pt;}
.x60{left:125.782667pt;}
.x7{left:129.676000pt;}
.x5a{left:133.053173pt;}
.xb{left:139.616000pt;}
.x32{left:141.884000pt;}
.x33{left:151.257333pt;}
.x5e{left:162.633333pt;}
.x68{left:166.866667pt;}
.xc{left:173.632000pt;}
.x4b{left:174.816374pt;}
.x44{left:177.013844pt;}
.x49{left:178.774294pt;}
.x56{left:185.403810pt;}
.x4a{left:188.451408pt;}
.x58{left:191.561124pt;}
.x38{left:192.566667pt;}
.x57{left:195.848321pt;}
.x67{left:204.434667pt;}
.x4c{left:206.149907pt;}
.x1e{left:220.194667pt;}
.x20{left:226.772000pt;}
.x1c{left:228.170667pt;}
.x1a{left:234.746667pt;}
.x66{left:236.220000pt;}
.x23{left:261.392000pt;}
.x37{left:271.748000pt;}
.x1d{left:285.808000pt;}
.x65{left:307.162667pt;}
.x6a{left:319.634667pt;}
.x19{left:338.797333pt;}
.x22{left:339.741333pt;}
.x63{left:346.922667pt;}
.x2e{left:361.209333pt;}
.xa{left:379.692000pt;}
.x24{left:383.886667pt;}
.x2a{left:393.222667pt;}
.x8{left:398.060000pt;}
.x69{left:419.338667pt;}
.x2{left:436.837333pt;}
.x5f{left:490.658667pt;}
.x16{left:519.685333pt;}
.x36{left:560.806667pt;}
.x35{left:562.998667pt;}
.x39{left:577.965333pt;}
.x3b{left:579.666667pt;}
.x3c{left:581.933333pt;}
.x25{left:590.136000pt;}
.x27{left:591.458667pt;}
.x26{left:595.918667pt;}
.x2f{left:611.942667pt;}
.x3e{left:642.520000pt;}
.x2d{left:701.329333pt;}
.x30{left:705.336000pt;}
.x11{left:708.812000pt;}
.x9{left:729.373333pt;}
.x2b{left:730.658667pt;}
.x29{left:738.217333pt;}
.x61{left:740.825333pt;}
.x2c{left:744.000000pt;}
.x28{left:756.018667pt;}
.x31{left:761.801333pt;}
.x1b{left:897.600000pt;}
.x4{left:902.173333pt;}
}




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