
    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_cb831bfc45030f6d94299355.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_9a10f21d6ff4e912e8e3aa6e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_89e8000999e858b5e76256af.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_089d050dd37b2f69af69ffb9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.736816;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_abdd9c6a6eebf09a9f1a8ab3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_ff1462274d72275ef87089d9.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_ca01918a987b38b9f23f681b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c382eb5517b4cfefec28e172.woff')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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_d18ddad622837ea6a3ac4f39.woff')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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_4cb43708a44d957542848e80.woff')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_722804358035d57d450ec795.woff')format("woff");}.ffe{font-family:ffe;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-77.760000px;}
.v3{vertical-align:-69.120000px;}
.v2{vertical-align:-60.600000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.630000px;}
.ls12{letter-spacing:-0.466800px;}
.ls7{letter-spacing:-0.409200px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.089400px;}
.lsc{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.020160px;}
.ls4{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.486600px;}
.ls0{letter-spacing:0.720000px;}
.ls8{letter-spacing:1.032000px;}
.ls1{letter-spacing:1.080000px;}
.ls6{letter-spacing:1.686000px;}
.ls3{letter-spacing:8.280000px;}
.lse{letter-spacing:9.360000px;}
.lsf{letter-spacing:13.680000px;}
.ls14{letter-spacing:20.880000px;}
.ls15{letter-spacing:58.066560px;}
.ls10{letter-spacing:63.826560px;}
.ls2{letter-spacing:171.144000px;}
.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;}
}
.wsb{word-spacing:-60.480000px;}
.ws1{word-spacing:-26.825520px;}
.ws3{word-spacing:-26.171520px;}
.ws2{word-spacing:-24.730320px;}
.ws0{word-spacing:-16.560000px;}
.wse{word-spacing:-15.606600px;}
.wsd{word-spacing:-15.140160px;}
.ws4{word-spacing:-15.120000px;}
.wsc{word-spacing:-14.653200px;}
.ws9{word-spacing:-13.050000px;}
.ws5{word-spacing:-11.160000px;}
.ws6{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.720000px;}
.ws8{word-spacing:-8.928000px;}
.wsa{word-spacing:0.000000px;}
._15{margin-left:-3.263040px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._a{width:4.700160px;}
._b{width:5.800320px;}
._9{width:6.822720px;}
._e{width:8.084160px;}
._d{width:9.138240px;}
._25{width:10.143360px;}
._c{width:11.148480px;}
._16{width:12.161280px;}
._6{width:13.407360px;}
._5{width:14.616000px;}
._7{width:15.654240px;}
._f{width:16.718400px;}
._14{width:18.062880px;}
._10{width:19.109280px;}
._24{width:20.165760px;}
._13{width:21.409920px;}
._11{width:22.769280px;}
._12{width:24.252480px;}
._1a{width:28.486080px;}
._22{width:32.155200px;}
._21{width:34.047360px;}
._23{width:35.335680px;}
._17{width:44.778240px;}
._18{width:47.459520px;}
._1c{width:52.012800px;}
._1b{width:53.311680px;}
._1e{width:54.336960px;}
._1d{width:57.000960px;}
._1f{width:76.268160px;}
._20{width:77.567040px;}
._19{width:201.060000px;}
._26{width:708.676800px;}
._8{width:1720.934880px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsa{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.720000px;}
.fs3{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fsb{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:1.075500px;}
.y42{bottom:3.960000px;}
.y5{bottom:4.320000px;}
.y88{bottom:4.680000px;}
.y9a{bottom:5.025000px;}
.y8c{bottom:5.040000px;}
.ya8{bottom:5.085000px;}
.y5a{bottom:5.370000px;}
.y95{bottom:5.385000px;}
.y90{bottom:5.400000px;}
.y2{bottom:10.080000px;}
.y57{bottom:10.795500px;}
.yae{bottom:16.545000px;}
.yb3{bottom:16.905000px;}
.yb8{bottom:16.915500px;}
.yc0{bottom:16.920000px;}
.ybc{bottom:16.965000px;}
.y41{bottom:21.240000px;}
.y4{bottom:23.400000px;}
.y87{bottom:23.445000px;}
.y99{bottom:23.745000px;}
.y8b{bottom:23.760000px;}
.y9f{bottom:23.790000px;}
.ya7{bottom:23.805000px;}
.y94{bottom:24.105000px;}
.y8f{bottom:24.120000px;}
.y56{bottom:26.275500px;}
.y4a{bottom:30.631500px;}
.ybe{bottom:35.280000px;}
.yb6{bottom:35.311500px;}
.yb4{bottom:35.625000px;}
.ybf{bottom:35.640000px;}
.yb7{bottom:35.671500px;}
.yba{bottom:35.685000px;}
.yb2{bottom:35.985000px;}
.ybb{bottom:36.045000px;}
.y40{bottom:38.520000px;}
.y97{bottom:42.465000px;}
.y8a{bottom:42.480000px;}
.y49{bottom:42.514500px;}
.y93{bottom:42.825000px;}
.y8e{bottom:42.840000px;}
.y55{bottom:43.594500px;}
.y3{bottom:47.880000px;}
.yb0{bottom:54.345000px;}
.yb1{bottom:54.705000px;}
.y48{bottom:55.474500px;}
.y3f{bottom:55.800000px;}
.y7{bottom:57.636000px;}
.y54{bottom:59.434500px;}
.y92{bottom:61.185000px;}
.y47{bottom:68.434500px;}
.y3e{bottom:73.080000px;}
.y53{bottom:75.274500px;}
.y52{bottom:87.874500px;}
.y46{bottom:90.034500px;}
.y3d{bottom:90.360000px;}
.y51{bottom:94.354500px;}
.y70{bottom:96.876000px;}
.y58{bottom:98.316000px;}
.y84{bottom:104.796000px;}
.y3c{bottom:107.685000px;}
.y50{bottom:110.194500px;}
.yb5{bottom:110.920500px;}
.y43{bottom:112.360500px;}
.y119{bottom:114.156000px;}
.yf0{bottom:115.236000px;}
.y83{bottom:122.076000px;}
.y3b{bottom:124.965000px;}
.y4f{bottom:125.674500px;}
.y118{bottom:131.436000px;}
.y82{bottom:139.356000px;}
.y4e{bottom:141.154500px;}
.yef{bottom:141.552000px;}
.y3a{bottom:142.245000px;}
.y117{bottom:148.752000px;}
.y45{bottom:152.314500px;}
.y4d{bottom:156.634500px;}
.y81{bottom:156.675000px;}
.yee{bottom:158.835000px;}
.y39{bottom:159.525000px;}
.yaf{bottom:160.650000px;}
.y44{bottom:163.144500px;}
.y116{bottom:166.035000px;}
.y4c{bottom:171.784500px;}
.y80{bottom:173.955000px;}
.yed{bottom:176.115000px;}
.y38{bottom:176.445000px;}
.y115{bottom:183.315000px;}
.y7f{bottom:191.235000px;}
.yec{bottom:193.395000px;}
.y37{bottom:193.725000px;}
.y114{bottom:200.595000px;}
.y7e{bottom:208.515000px;}
.yeb{bottom:210.675000px;}
.y36{bottom:211.005000px;}
.y113{bottom:217.515000px;}
.y7d{bottom:225.795000px;}
.yea{bottom:227.955000px;}
.y35{bottom:228.285000px;}
.yad{bottom:229.410000px;}
.y112{bottom:234.795000px;}
.y7c{bottom:242.715000px;}
.ye9{bottom:244.875000px;}
.y34{bottom:245.595000px;}
.y111{bottom:252.075000px;}
.y33{bottom:262.875000px;}
.yac{bottom:264.315000px;}
.y110{bottom:269.355000px;}
.ye8{bottom:271.515000px;}
.y32{bottom:279.795000px;}
.y10f{bottom:286.305000px;}
.yab{bottom:287.745000px;}
.ye7{bottom:288.825000px;}
.ye{bottom:305.025000px;}
.y1d{bottom:305.715000px;}
.ye6{bottom:306.105000px;}
.y10e{bottom:312.945000px;}
.y31{bottom:321.195000px;}
.ye5{bottom:323.385000px;}
.yaa{bottom:325.905000px;}
.y1c{bottom:329.835000px;}
.y10d{bottom:330.225000px;}
.y30{bottom:336.675000px;}
.ye4{bottom:340.665000px;}
.y10c{bottom:347.505000px;}
.y2f{bottom:352.155000px;}
.y1b{bottom:353.955000px;}
.ye3{bottom:357.585000px;}
.ya9{bottom:363.705000px;}
.y10b{bottom:364.785000px;}
.y2e{bottom:368.025000px;}
.ye2{bottom:374.505000px;}
.y1a{bottom:378.105000px;}
.y10a{bottom:382.065000px;}
.y2d{bottom:383.505000px;}
.y2c{bottom:398.985000px;}
.y109{bottom:399.345000px;}
.ye1{bottom:401.145000px;}
.ya6{bottom:401.865000px;}
.y19{bottom:402.225000px;}
.y2b{bottom:414.465000px;}
.y108{bottom:416.670000px;}
.ye0{bottom:418.470000px;}
.y18{bottom:426.345000px;}
.y2a{bottom:429.945000px;}
.y107{bottom:433.590000px;}
.ydf{bottom:435.750000px;}
.ya5{bottom:439.710000px;}
.y29{bottom:445.425000px;}
.y17{bottom:450.465000px;}
.y106{bottom:450.870000px;}
.yde{bottom:453.030000px;}
.y28{bottom:460.905000px;}
.y105{bottom:468.150000px;}
.ydd{bottom:470.310000px;}
.y16{bottom:474.585000px;}
.y27{bottom:476.385000px;}
.ya4{bottom:481.110000px;}
.y104{bottom:485.430000px;}
.ydc{bottom:487.590000px;}
.y26{bottom:492.225000px;}
.y15{bottom:498.750000px;}
.y103{bottom:502.710000px;}
.ya3{bottom:504.510000px;}
.ydb{bottom:504.870000px;}
.y25{bottom:507.750000px;}
.y102{bottom:519.990000px;}
.yda{bottom:521.790000px;}
.y14{bottom:522.870000px;}
.y24{bottom:523.230000px;}
.y101{bottom:537.300000px;}
.y23{bottom:538.710000px;}
.ya2{bottom:542.700000px;}
.y13{bottom:546.990000px;}
.yd9{bottom:548.460000px;}
.y22{bottom:554.190000px;}
.y100{bottom:554.580000px;}
.yd8{bottom:565.380000px;}
.y21{bottom:569.670000px;}
.y12{bottom:571.110000px;}
.yff{bottom:571.860000px;}
.ya1{bottom:580.500000px;}
.yd7{bottom:582.660000px;}
.y7b{bottom:584.820000px;}
.y20{bottom:585.150000px;}
.yfe{bottom:588.780000px;}
.y11{bottom:595.230000px;}
.yd6{bottom:599.940000px;}
.y1f{bottom:600.630000px;}
.y7a{bottom:602.100000px;}
.yfd{bottom:615.420000px;}
.yd5{bottom:617.220000px;}
.ya0{bottom:618.660000px;}
.y79{bottom:619.380000px;}
.y10{bottom:619.710000px;}
.y1e{bottom:631.620000px;}
.yfc{bottom:632.340000px;}
.yd4{bottom:634.500000px;}
.y78{bottom:636.300000px;}
.yf{bottom:643.860000px;}
.yfb{bottom:649.620000px;}
.yd3{bottom:651.780000px;}
.y77{bottom:654.660000px;}
.y9e{bottom:656.460000px;}
.yfa{bottom:666.900000px;}
.yd2{bottom:668.700000px;}
.y76{bottom:673.050000px;}
.yf9{bottom:684.210000px;}
.y75{bottom:691.410000px;}
.yd1{bottom:695.370000px;}
.y9d{bottom:698.250000px;}
.yf8{bottom:701.490000px;}
.y74{bottom:709.770000px;}
.yd0{bottom:712.650000px;}
.yf7{bottom:718.770000px;}
.y9c{bottom:724.890000px;}
.y73{bottom:727.050000px;}
.ycf{bottom:729.930000px;}
.y6f{bottom:736.050000px;}
.y9b{bottom:742.170000px;}
.y72{bottom:744.330000px;}
.yce{bottom:747.210000px;}
.y6e{bottom:753.330000px;}
.y71{bottom:761.250000px;}
.ycd{bottom:764.490000px;}
.y98{bottom:765.225000px;}
.y6d{bottom:770.610000px;}
.ycc{bottom:781.410000px;}
.y6c{bottom:787.890000px;}
.ycb{bottom:798.690000px;}
.y96{bottom:803.070000px;}
.y6b{bottom:805.215000px;}
.yca{bottom:815.655000px;}
.y6a{bottom:822.495000px;}
.y69{bottom:839.415000px;}
.yc9{bottom:842.295000px;}
.yf6{bottom:856.335000px;}
.y68{bottom:856.695000px;}
.yc8{bottom:859.575000px;}
.y91{bottom:859.590000px;}
.y67{bottom:873.975000px;}
.yc7{bottom:876.855000px;}
.yf5{bottom:882.975000px;}
.y66{bottom:891.255000px;}
.yc6{bottom:894.135000px;}
.yf4{bottom:900.255000px;}
.y65{bottom:908.535000px;}
.yc5{bottom:911.415000px;}
.yf3{bottom:917.535000px;}
.y64{bottom:925.815000px;}
.yc4{bottom:928.695000px;}
.y8d{bottom:934.845000px;}
.y63{bottom:943.125000px;}
.yc3{bottom:946.005000px;}
.yf2{bottom:952.125000px;}
.y62{bottom:960.045000px;}
.yd{bottom:960.765000px;}
.yc2{bottom:963.285000px;}
.yc{bottom:966.165000px;}
.yf1{bottom:969.405000px;}
.yc1{bottom:979.845000px;}
.yb{bottom:983.445000px;}
.y61{bottom:986.685000px;}
.y89{bottom:991.725000px;}
.ybd{bottom:1003.605000px;}
.y60{bottom:1003.965000px;}
.ya{bottom:1019.805000px;}
.y5f{bottom:1021.245000px;}
.y5e{bottom:1038.165000px;}
.y9{bottom:1044.285000px;}
.y86{bottom:1048.245000px;}
.yb9{bottom:1053.285000px;}
.y5d{bottom:1055.445000px;}
.y8{bottom:1072.050000px;}
.y5c{bottom:1072.770000px;}
.y59{bottom:1075.320000px;}
.y85{bottom:1089.690000px;}
.y5b{bottom:1090.050000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h9{height:4.165313px;}
.h16{height:5.650313px;}
.h17{height:27.720000px;}
.h14{height:29.678906px;}
.h25{height:30.585000px;}
.h24{height:37.065000px;}
.h21{height:37.080000px;}
.h1f{height:37.101000px;}
.h1b{height:37.110000px;}
.h22{height:37.440000px;}
.h23{height:37.470000px;}
.h20{height:37.476000px;}
.hc{height:40.985156px;}
.hb{height:42.086250px;}
.h10{height:42.229688px;}
.h29{height:48.945000px;}
.h27{height:48.991500px;}
.h28{height:49.350000px;}
.hd{height:53.677969px;}
.h15{height:55.147500px;}
.h1c{height:55.785000px;}
.h1d{height:56.145000px;}
.he{height:56.243537px;}
.h7{height:58.050000px;}
.h2a{height:59.328281px;}
.h6{height:59.357813px;}
.h11{height:60.155156px;}
.h19{height:60.952500px;}
.h1a{height:62.163910px;}
.hf{height:62.960625px;}
.h18{height:63.565031px;}
.h8{height:63.577969px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h26{height:68.025000px;}
.h13{height:70.664062px;}
.h1e{height:74.520000px;}
.h2{height:84.990000px;}
.h4{height:116.640000px;}
.h12{height:191.925000px;}
.ha{height:653.205000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:105.142500px;}
.wf{width:128.542500px;}
.w4{width:132.502500px;}
.wa{width:138.630000px;}
.we{width:153.390000px;}
.w16{width:158.430000px;}
.w6{width:163.080000px;}
.wb{width:169.245000px;}
.w12{width:174.645000px;}
.w14{width:177.195000px;}
.w8{width:194.835000px;}
.w15{width:200.250000px;}
.wc{width:203.475000px;}
.w9{width:208.530000px;}
.w7{width:209.565000px;}
.w13{width:220.365000px;}
.w10{width:221.850000px;}
.wd{width:227.250000px;}
.w11{width:229.035000px;}
.w5{width:596.745000px;}
.w3{width:631.305000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:6.876000px;}
.x19{left:8.295000px;}
.x31{left:9.706500px;}
.x14{left:14.386500px;}
.x17{left:16.186500px;}
.x4{left:17.625000px;}
.x16{left:19.426500px;}
.x15{left:26.266500px;}
.x25{left:28.125000px;}
.x1d{left:29.146500px;}
.x2a{left:30.226500px;}
.x6{left:33.105000px;}
.x34{left:35.280000px;}
.xe{left:43.906500px;}
.x1c{left:47.542500px;}
.x23{left:49.306500px;}
.xf{left:50.782500px;}
.x13{left:53.302500px;}
.xd{left:55.102500px;}
.x2e{left:60.150000px;}
.x1a{left:62.295000px;}
.x36{left:64.815000px;}
.x1e{left:66.265500px;}
.x26{left:72.045000px;}
.x12{left:75.985500px;}
.x1{left:78.529500px;}
.x2c{left:80.685000px;}
.x7{left:86.436000px;}
.x11{left:92.905500px;}
.x2{left:96.145500px;}
.x1f{left:102.985500px;}
.x1b{left:106.945500px;}
.x3b{left:116.316000px;}
.x10{left:124.585500px;}
.x5{left:145.860000px;}
.xa{left:181.155000px;}
.x3{left:183.690000px;}
.x22{left:200.235000px;}
.x37{left:205.275000px;}
.x32{left:208.530000px;}
.x21{left:217.875000px;}
.x18{left:218.970000px;}
.x29{left:245.265000px;}
.x2b{left:248.865000px;}
.x30{left:275.865000px;}
.x24{left:289.545000px;}
.x38{left:299.985000px;}
.x33{left:431.100000px;}
.x2d{left:453.060000px;}
.x39{left:477.900000px;}
.x27{left:485.100000px;}
.xb{left:631.335000px;}
.x35{left:660.870000px;}
.x3a{left:678.885000px;}
.x2f{left:681.045000px;}
.x28{left:694.725000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xc{left:807.090000px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v3{vertical-align:-61.440000pt;}
.v2{vertical-align:-53.866667pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.560000pt;}
.ls12{letter-spacing:-0.414933pt;}
.ls7{letter-spacing:-0.363733pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.079467pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.017920pt;}
.ls4{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.432533pt;}
.ls0{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.917333pt;}
.ls1{letter-spacing:0.960000pt;}
.ls6{letter-spacing:1.498667pt;}
.ls3{letter-spacing:7.360000pt;}
.lse{letter-spacing:8.320000pt;}
.lsf{letter-spacing:12.160000pt;}
.ls14{letter-spacing:18.560000pt;}
.ls15{letter-spacing:51.614720pt;}
.ls10{letter-spacing:56.734720pt;}
.ls2{letter-spacing:152.128000pt;}
.wsb{word-spacing:-53.760000pt;}
.ws1{word-spacing:-23.844907pt;}
.ws3{word-spacing:-23.263573pt;}
.ws2{word-spacing:-21.982507pt;}
.ws0{word-spacing:-14.720000pt;}
.wse{word-spacing:-13.872533pt;}
.wsd{word-spacing:-13.457920pt;}
.ws4{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.025067pt;}
.ws9{word-spacing:-11.600000pt;}
.ws5{word-spacing:-9.920000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.640000pt;}
.ws8{word-spacing:-7.936000pt;}
.wsa{word-spacing:0.000000pt;}
._15{margin-left:-2.900480pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._a{width:4.177920pt;}
._b{width:5.155840pt;}
._9{width:6.064640pt;}
._e{width:7.185920pt;}
._d{width:8.122880pt;}
._25{width:9.016320pt;}
._c{width:9.909760pt;}
._16{width:10.810027pt;}
._6{width:11.917653pt;}
._5{width:12.992000pt;}
._7{width:13.914880pt;}
._f{width:14.860800pt;}
._14{width:16.055893pt;}
._10{width:16.986027pt;}
._24{width:17.925120pt;}
._13{width:19.031040pt;}
._11{width:20.239360pt;}
._12{width:21.557760pt;}
._1a{width:25.320960pt;}
._22{width:28.582400pt;}
._21{width:30.264320pt;}
._23{width:31.409493pt;}
._17{width:39.802880pt;}
._18{width:42.186240pt;}
._1c{width:46.233600pt;}
._1b{width:47.388160pt;}
._1e{width:48.299520pt;}
._1d{width:50.667520pt;}
._1f{width:67.793920pt;}
._20{width:68.948480pt;}
._19{width:178.720000pt;}
._26{width:629.934933pt;}
._8{width:1529.719893pt;}
.fs5{font-size:5.120000pt;}
.fsa{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.640000pt;}
.fs3{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fsb{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:0.956000pt;}
.y42{bottom:3.520000pt;}
.y5{bottom:3.840000pt;}
.y88{bottom:4.160000pt;}
.y9a{bottom:4.466667pt;}
.y8c{bottom:4.480000pt;}
.ya8{bottom:4.520000pt;}
.y5a{bottom:4.773333pt;}
.y95{bottom:4.786667pt;}
.y90{bottom:4.800000pt;}
.y2{bottom:8.960000pt;}
.y57{bottom:9.596000pt;}
.yae{bottom:14.706667pt;}
.yb3{bottom:15.026667pt;}
.yb8{bottom:15.036000pt;}
.yc0{bottom:15.040000pt;}
.ybc{bottom:15.080000pt;}
.y41{bottom:18.880000pt;}
.y4{bottom:20.800000pt;}
.y87{bottom:20.840000pt;}
.y99{bottom:21.106667pt;}
.y8b{bottom:21.120000pt;}
.y9f{bottom:21.146667pt;}
.ya7{bottom:21.160000pt;}
.y94{bottom:21.426667pt;}
.y8f{bottom:21.440000pt;}
.y56{bottom:23.356000pt;}
.y4a{bottom:27.228000pt;}
.ybe{bottom:31.360000pt;}
.yb6{bottom:31.388000pt;}
.yb4{bottom:31.666667pt;}
.ybf{bottom:31.680000pt;}
.yb7{bottom:31.708000pt;}
.yba{bottom:31.720000pt;}
.yb2{bottom:31.986667pt;}
.ybb{bottom:32.040000pt;}
.y40{bottom:34.240000pt;}
.y97{bottom:37.746667pt;}
.y8a{bottom:37.760000pt;}
.y49{bottom:37.790667pt;}
.y93{bottom:38.066667pt;}
.y8e{bottom:38.080000pt;}
.y55{bottom:38.750667pt;}
.y3{bottom:42.560000pt;}
.yb0{bottom:48.306667pt;}
.yb1{bottom:48.626667pt;}
.y48{bottom:49.310667pt;}
.y3f{bottom:49.600000pt;}
.y7{bottom:51.232000pt;}
.y54{bottom:52.830667pt;}
.y92{bottom:54.386667pt;}
.y47{bottom:60.830667pt;}
.y3e{bottom:64.960000pt;}
.y53{bottom:66.910667pt;}
.y52{bottom:78.110667pt;}
.y46{bottom:80.030667pt;}
.y3d{bottom:80.320000pt;}
.y51{bottom:83.870667pt;}
.y70{bottom:86.112000pt;}
.y58{bottom:87.392000pt;}
.y84{bottom:93.152000pt;}
.y3c{bottom:95.720000pt;}
.y50{bottom:97.950667pt;}
.yb5{bottom:98.596000pt;}
.y43{bottom:99.876000pt;}
.y119{bottom:101.472000pt;}
.yf0{bottom:102.432000pt;}
.y83{bottom:108.512000pt;}
.y3b{bottom:111.080000pt;}
.y4f{bottom:111.710667pt;}
.y118{bottom:116.832000pt;}
.y82{bottom:123.872000pt;}
.y4e{bottom:125.470667pt;}
.yef{bottom:125.824000pt;}
.y3a{bottom:126.440000pt;}
.y117{bottom:132.224000pt;}
.y45{bottom:135.390667pt;}
.y4d{bottom:139.230667pt;}
.y81{bottom:139.266667pt;}
.yee{bottom:141.186667pt;}
.y39{bottom:141.800000pt;}
.yaf{bottom:142.800000pt;}
.y44{bottom:145.017333pt;}
.y116{bottom:147.586667pt;}
.y4c{bottom:152.697333pt;}
.y80{bottom:154.626667pt;}
.yed{bottom:156.546667pt;}
.y38{bottom:156.840000pt;}
.y115{bottom:162.946667pt;}
.y7f{bottom:169.986667pt;}
.yec{bottom:171.906667pt;}
.y37{bottom:172.200000pt;}
.y114{bottom:178.306667pt;}
.y7e{bottom:185.346667pt;}
.yeb{bottom:187.266667pt;}
.y36{bottom:187.560000pt;}
.y113{bottom:193.346667pt;}
.y7d{bottom:200.706667pt;}
.yea{bottom:202.626667pt;}
.y35{bottom:202.920000pt;}
.yad{bottom:203.920000pt;}
.y112{bottom:208.706667pt;}
.y7c{bottom:215.746667pt;}
.ye9{bottom:217.666667pt;}
.y34{bottom:218.306667pt;}
.y111{bottom:224.066667pt;}
.y33{bottom:233.666667pt;}
.yac{bottom:234.946667pt;}
.y110{bottom:239.426667pt;}
.ye8{bottom:241.346667pt;}
.y32{bottom:248.706667pt;}
.y10f{bottom:254.493333pt;}
.yab{bottom:255.773333pt;}
.ye7{bottom:256.733333pt;}
.ye{bottom:271.133333pt;}
.y1d{bottom:271.746667pt;}
.ye6{bottom:272.093333pt;}
.y10e{bottom:278.173333pt;}
.y31{bottom:285.506667pt;}
.ye5{bottom:287.453333pt;}
.yaa{bottom:289.693333pt;}
.y1c{bottom:293.186667pt;}
.y10d{bottom:293.533333pt;}
.y30{bottom:299.266667pt;}
.ye4{bottom:302.813333pt;}
.y10c{bottom:308.893333pt;}
.y2f{bottom:313.026667pt;}
.y1b{bottom:314.626667pt;}
.ye3{bottom:317.853333pt;}
.ya9{bottom:323.293333pt;}
.y10b{bottom:324.253333pt;}
.y2e{bottom:327.133333pt;}
.ye2{bottom:332.893333pt;}
.y1a{bottom:336.093333pt;}
.y10a{bottom:339.613333pt;}
.y2d{bottom:340.893333pt;}
.y2c{bottom:354.653333pt;}
.y109{bottom:354.973333pt;}
.ye1{bottom:356.573333pt;}
.ya6{bottom:357.213333pt;}
.y19{bottom:357.533333pt;}
.y2b{bottom:368.413333pt;}
.y108{bottom:370.373333pt;}
.ye0{bottom:371.973333pt;}
.y18{bottom:378.973333pt;}
.y2a{bottom:382.173333pt;}
.y107{bottom:385.413333pt;}
.ydf{bottom:387.333333pt;}
.ya5{bottom:390.853333pt;}
.y29{bottom:395.933333pt;}
.y17{bottom:400.413333pt;}
.y106{bottom:400.773333pt;}
.yde{bottom:402.693333pt;}
.y28{bottom:409.693333pt;}
.y105{bottom:416.133333pt;}
.ydd{bottom:418.053333pt;}
.y16{bottom:421.853333pt;}
.y27{bottom:423.453333pt;}
.ya4{bottom:427.653333pt;}
.y104{bottom:431.493333pt;}
.ydc{bottom:433.413333pt;}
.y26{bottom:437.533333pt;}
.y15{bottom:443.333333pt;}
.y103{bottom:446.853333pt;}
.ya3{bottom:448.453333pt;}
.ydb{bottom:448.773333pt;}
.y25{bottom:451.333333pt;}
.y102{bottom:462.213333pt;}
.yda{bottom:463.813333pt;}
.y14{bottom:464.773333pt;}
.y24{bottom:465.093333pt;}
.y101{bottom:477.600000pt;}
.y23{bottom:478.853333pt;}
.ya2{bottom:482.400000pt;}
.y13{bottom:486.213333pt;}
.yd9{bottom:487.520000pt;}
.y22{bottom:492.613333pt;}
.y100{bottom:492.960000pt;}
.yd8{bottom:502.560000pt;}
.y21{bottom:506.373333pt;}
.y12{bottom:507.653333pt;}
.yff{bottom:508.320000pt;}
.ya1{bottom:516.000000pt;}
.yd7{bottom:517.920000pt;}
.y7b{bottom:519.840000pt;}
.y20{bottom:520.133333pt;}
.yfe{bottom:523.360000pt;}
.y11{bottom:529.093333pt;}
.yd6{bottom:533.280000pt;}
.y1f{bottom:533.893333pt;}
.y7a{bottom:535.200000pt;}
.yfd{bottom:547.040000pt;}
.yd5{bottom:548.640000pt;}
.ya0{bottom:549.920000pt;}
.y79{bottom:550.560000pt;}
.y10{bottom:550.853333pt;}
.y1e{bottom:561.440000pt;}
.yfc{bottom:562.080000pt;}
.yd4{bottom:564.000000pt;}
.y78{bottom:565.600000pt;}
.yf{bottom:572.320000pt;}
.yfb{bottom:577.440000pt;}
.yd3{bottom:579.360000pt;}
.y77{bottom:581.920000pt;}
.y9e{bottom:583.520000pt;}
.yfa{bottom:592.800000pt;}
.yd2{bottom:594.400000pt;}
.y76{bottom:598.266667pt;}
.yf9{bottom:608.186667pt;}
.y75{bottom:614.586667pt;}
.yd1{bottom:618.106667pt;}
.y9d{bottom:620.666667pt;}
.yf8{bottom:623.546667pt;}
.y74{bottom:630.906667pt;}
.yd0{bottom:633.466667pt;}
.yf7{bottom:638.906667pt;}
.y9c{bottom:644.346667pt;}
.y73{bottom:646.266667pt;}
.ycf{bottom:648.826667pt;}
.y6f{bottom:654.266667pt;}
.y9b{bottom:659.706667pt;}
.y72{bottom:661.626667pt;}
.yce{bottom:664.186667pt;}
.y6e{bottom:669.626667pt;}
.y71{bottom:676.666667pt;}
.ycd{bottom:679.546667pt;}
.y98{bottom:680.200000pt;}
.y6d{bottom:684.986667pt;}
.ycc{bottom:694.586667pt;}
.y6c{bottom:700.346667pt;}
.ycb{bottom:709.946667pt;}
.y96{bottom:713.840000pt;}
.y6b{bottom:715.746667pt;}
.yca{bottom:725.026667pt;}
.y6a{bottom:731.106667pt;}
.y69{bottom:746.146667pt;}
.yc9{bottom:748.706667pt;}
.yf6{bottom:761.186667pt;}
.y68{bottom:761.506667pt;}
.yc8{bottom:764.066667pt;}
.y91{bottom:764.080000pt;}
.y67{bottom:776.866667pt;}
.yc7{bottom:779.426667pt;}
.yf5{bottom:784.866667pt;}
.y66{bottom:792.226667pt;}
.yc6{bottom:794.786667pt;}
.yf4{bottom:800.226667pt;}
.y65{bottom:807.586667pt;}
.yc5{bottom:810.146667pt;}
.yf3{bottom:815.586667pt;}
.y64{bottom:822.946667pt;}
.yc4{bottom:825.506667pt;}
.y8d{bottom:830.973333pt;}
.y63{bottom:838.333333pt;}
.yc3{bottom:840.893333pt;}
.yf2{bottom:846.333333pt;}
.y62{bottom:853.373333pt;}
.yd{bottom:854.013333pt;}
.yc2{bottom:856.253333pt;}
.yc{bottom:858.813333pt;}
.yf1{bottom:861.693333pt;}
.yc1{bottom:870.973333pt;}
.yb{bottom:874.173333pt;}
.y61{bottom:877.053333pt;}
.y89{bottom:881.533333pt;}
.ybd{bottom:892.093333pt;}
.y60{bottom:892.413333pt;}
.ya{bottom:906.493333pt;}
.y5f{bottom:907.773333pt;}
.y5e{bottom:922.813333pt;}
.y9{bottom:928.253333pt;}
.y86{bottom:931.773333pt;}
.yb9{bottom:936.253333pt;}
.y5d{bottom:938.173333pt;}
.y8{bottom:952.933333pt;}
.y5c{bottom:953.573333pt;}
.y59{bottom:955.840000pt;}
.y85{bottom:968.613333pt;}
.y5b{bottom:968.933333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h9{height:3.702500pt;}
.h16{height:5.022500pt;}
.h17{height:24.640000pt;}
.h14{height:26.381250pt;}
.h25{height:27.186667pt;}
.h24{height:32.946667pt;}
.h21{height:32.960000pt;}
.h1f{height:32.978667pt;}
.h1b{height:32.986667pt;}
.h22{height:33.280000pt;}
.h23{height:33.306667pt;}
.h20{height:33.312000pt;}
.hc{height:36.431250pt;}
.hb{height:37.410000pt;}
.h10{height:37.537500pt;}
.h29{height:43.506667pt;}
.h27{height:43.548000pt;}
.h28{height:43.866667pt;}
.hd{height:47.713750pt;}
.h15{height:49.020000pt;}
.h1c{height:49.586667pt;}
.h1d{height:49.906667pt;}
.he{height:49.994255pt;}
.h7{height:51.600000pt;}
.h2a{height:52.736250pt;}
.h6{height:52.762500pt;}
.h11{height:53.471250pt;}
.h19{height:54.180000pt;}
.h1a{height:55.256809pt;}
.hf{height:55.965000pt;}
.h18{height:56.502250pt;}
.h8{height:56.513750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h26{height:60.466667pt;}
.h13{height:62.812500pt;}
.h1e{height:66.240000pt;}
.h2{height:75.546667pt;}
.h4{height:103.680000pt;}
.h12{height:170.600000pt;}
.ha{height:580.626667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:93.460000pt;}
.wf{width:114.260000pt;}
.w4{width:117.780000pt;}
.wa{width:123.226667pt;}
.we{width:136.346667pt;}
.w16{width:140.826667pt;}
.w6{width:144.960000pt;}
.wb{width:150.440000pt;}
.w12{width:155.240000pt;}
.w14{width:157.506667pt;}
.w8{width:173.186667pt;}
.w15{width:178.000000pt;}
.wc{width:180.866667pt;}
.w9{width:185.360000pt;}
.w7{width:186.280000pt;}
.w13{width:195.880000pt;}
.w10{width:197.200000pt;}
.wd{width:202.000000pt;}
.w11{width:203.586667pt;}
.w5{width:530.440000pt;}
.w3{width:561.160000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:6.112000pt;}
.x19{left:7.373333pt;}
.x31{left:8.628000pt;}
.x14{left:12.788000pt;}
.x17{left:14.388000pt;}
.x4{left:15.666667pt;}
.x16{left:17.268000pt;}
.x15{left:23.348000pt;}
.x25{left:25.000000pt;}
.x1d{left:25.908000pt;}
.x2a{left:26.868000pt;}
.x6{left:29.426667pt;}
.x34{left:31.360000pt;}
.xe{left:39.028000pt;}
.x1c{left:42.260000pt;}
.x23{left:43.828000pt;}
.xf{left:45.140000pt;}
.x13{left:47.380000pt;}
.xd{left:48.980000pt;}
.x2e{left:53.466667pt;}
.x1a{left:55.373333pt;}
.x36{left:57.613333pt;}
.x1e{left:58.902667pt;}
.x26{left:64.040000pt;}
.x12{left:67.542667pt;}
.x1{left:69.804000pt;}
.x2c{left:71.720000pt;}
.x7{left:76.832000pt;}
.x11{left:82.582667pt;}
.x2{left:85.462667pt;}
.x1f{left:91.542667pt;}
.x1b{left:95.062667pt;}
.x3b{left:103.392000pt;}
.x10{left:110.742667pt;}
.x5{left:129.653333pt;}
.xa{left:161.026667pt;}
.x3{left:163.280000pt;}
.x22{left:177.986667pt;}
.x37{left:182.466667pt;}
.x32{left:185.360000pt;}
.x21{left:193.666667pt;}
.x18{left:194.640000pt;}
.x29{left:218.013333pt;}
.x2b{left:221.213333pt;}
.x30{left:245.213333pt;}
.x24{left:257.373333pt;}
.x38{left:266.653333pt;}
.x33{left:383.200000pt;}
.x2d{left:402.720000pt;}
.x39{left:424.800000pt;}
.x27{left:431.200000pt;}
.xb{left:561.186667pt;}
.x35{left:587.440000pt;}
.x3a{left:603.453333pt;}
.x2f{left:605.373333pt;}
.x28{left:617.533333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xc{left:717.413333pt;}
}




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