
    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_b5b672406f1597f01ddda08c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_0f7442e848a3da17d9c56861.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7d070a3c02b21d24ebd9b273.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_9fa19f391f67930d4339abd8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_e9a480c353240161cc4f6efa.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_8d06a139d6b34794a936ebae.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a8e680c4532ca0177c51691d.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_48d5ddd873e6361871061a16.woff')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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_d19a4f7c0319eccb5e8611f5.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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_dadfe3f30e3709b6aa0a3ae7.woff')format("woff");}.ffd{font-family:ffd;line-height:0.892578;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_2c5896193fa9a4a48eac7f6e.woff')format("woff");}.ffe{font-family:ffe;line-height:1.040039;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_843e2f6258fd48ddf61c5440.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_cb6cdfe711948a0e91dfc707.woff')format("woff");}.ff11{font-family:ff11;line-height:0.745117;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:ff12;src:url('chunks/assets/font_f1ea54c89803b9af882f392a.woff')format("woff");}.ff12{font-family:ff12;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;}
.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);}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls1d{letter-spacing:-1.026000px;}
.ls14{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.612000px;}
.ls1f{letter-spacing:-0.305400px;}
.lsf{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.190200px;}
.lse{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.114000px;}
.lsb{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.078000px;}
.ls1c{letter-spacing:0.109200px;}
.ls5{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.152400px;}
.ls6{letter-spacing:0.152640px;}
.ls1{letter-spacing:0.187200px;}
.ls9{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.576000px;}
.ls11{letter-spacing:4.320000px;}
.ls8{letter-spacing:11.520000px;}
.ls19{letter-spacing:12.960000px;}
.ls7{letter-spacing:22.320000px;}
.ls16{letter-spacing:31.680000px;}
.ls1a{letter-spacing:36.720000px;}
.ls1e{letter-spacing:39.881280px;}
.ls12{letter-spacing:39.905280px;}
.ls18{letter-spacing:48.240000px;}
.ls17{letter-spacing:58.320000px;}
.lsa{letter-spacing:59.345280px;}
.ls15{letter-spacing:847.596000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-66.240000px;}
.wsd{word-spacing:-24.176880px;}
.wsb{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.ws6{word-spacing:-18.000000px;}
.ws8{word-spacing:-16.822200px;}
.wse{word-spacing:-16.712400px;}
.wsf{word-spacing:-16.669200px;}
.ws7{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.912000px;}
.wsc{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.wsa{word-spacing:0.000000px;}
._37{margin-left:-48.545280px;}
._40{margin-left:-2.115360px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._2{width:2.200800px;}
._a{width:3.563040px;}
._7{width:5.100480px;}
._8{width:6.129360px;}
._9{width:7.197600px;}
._14{width:8.615520px;}
._4{width:10.267200px;}
._3{width:11.459520px;}
._d{width:13.115520px;}
._e{width:14.307840px;}
._22{width:15.355200px;}
._b{width:18.317520px;}
._c{width:19.638000px;}
._30{width:20.998080px;}
._f{width:22.074960px;}
._1c{width:23.581440px;}
._23{width:24.641280px;}
._5{width:25.966080px;}
._6{width:27.025920px;}
._1e{width:28.331280px;}
._1d{width:29.512080px;}
._1b{width:30.934080px;}
._33{width:32.045040px;}
._2c{width:33.170400px;}
._25{width:34.407360px;}
._24{width:36.233280px;}
._27{width:37.466640px;}
._15{width:38.678400px;}
._16{width:39.852000px;}
._36{width:40.872240px;}
._35{width:41.929920px;}
._39{width:43.056000px;}
._21{width:45.374400px;}
._2a{width:47.295360px;}
._1f{width:48.885120px;}
._20{width:50.032560px;}
._31{width:51.098880px;}
._17{width:52.594560px;}
._32{width:55.244160px;}
._28{width:57.177360px;}
._29{width:58.224960px;}
._2e{width:59.386320px;}
._2d{width:60.742080px;}
._3a{width:62.234640px;}
._13{width:64.319040px;}
._3d{width:65.686320px;}
._34{width:66.836160px;}
._3b{width:70.183440px;}
._26{width:73.460160px;}
._10{width:76.996800px;}
._2f{width:79.752960px;}
._3c{width:81.416160px;}
._3f{width:86.977680px;}
._12{width:88.562640px;}
._38{width:108.169920px;}
._3e{width:122.477760px;}
._2b{width:139.669200px;}
._1a{width:152.893440px;}
._11{width:171.530640px;}
._18{width:189.617520px;}
._19{width:197.647200px;}
._41{width:847.596000px;}
.fc5{color:rgb(17,85,204);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(192,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:2.880000px;}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:48.240000px;}
.fs8{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs9{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y19{bottom:1.260000px;}
.y10{bottom:1.620000px;}
.y3{bottom:3.420000px;}
.ydd{bottom:3.600000px;}
.y7b{bottom:3.780000px;}
.yec{bottom:3.945000px;}
.y7d{bottom:3.960000px;}
.yea{bottom:4.125000px;}
.y7f{bottom:4.140000px;}
.ybc{bottom:4.170000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.y6{bottom:8.460000px;}
.ycb{bottom:9.345000px;}
.yce{bottom:9.705000px;}
.yd3{bottom:9.720000px;}
.y93{bottom:13.140000px;}
.ycc{bottom:21.585000px;}
.y92{bottom:22.680000px;}
.ye{bottom:22.860000px;}
.yef{bottom:23.025000px;}
.ye1{bottom:23.040000px;}
.yf5{bottom:23.070000px;}
.y16{bottom:26.505000px;}
.y5{bottom:33.120000px;}
.yca{bottom:34.005000px;}
.y1{bottom:51.480000px;}
.ya6{bottom:51.484758px;}
.y15{bottom:56.025000px;}
.y14{bottom:71.685000px;}
.y4a{bottom:75.240000px;}
.y13{bottom:102.645000px;}
.y3a{bottom:115.380000px;}
.y12{bottom:118.125000px;}
.yf8{bottom:120.600000px;}
.yd6{bottom:121.860000px;}
.y47{bottom:134.100000px;}
.y39{bottom:140.040000px;}
.yf7{bottom:145.620000px;}
.yd5{bottom:146.520000px;}
.y73{bottom:158.400000px;}
.y46{bottom:158.760000px;}
.yf6{bottom:162.900000px;}
.y38{bottom:164.700000px;}
.yd4{bottom:171.180000px;}
.y45{bottom:183.420000px;}
.yf4{bottom:185.580000px;}
.yd2{bottom:188.100000px;}
.y37{bottom:189.360000px;}
.ya5{bottom:205.380000px;}
.y72{bottom:208.110000px;}
.y44{bottom:208.290000px;}
.y36{bottom:214.050000px;}
.yd1{bottom:216.045000px;}
.yf3{bottom:227.385000px;}
.ya4{bottom:230.430000px;}
.y71{bottom:232.770000px;}
.y43{bottom:234.030000px;}
.y35{bottom:238.710000px;}
.yd0{bottom:244.125000px;}
.ya3{bottom:255.090000px;}
.y70{bottom:257.430000px;}
.y42{bottom:258.870000px;}
.y34{bottom:263.370000px;}
.yf2{bottom:268.965000px;}
.ycf{bottom:272.025000px;}
.ya2{bottom:279.750000px;}
.y6f{bottom:282.090000px;}
.y41{bottom:284.610000px;}
.y33{bottom:288.030000px;}
.yf1{bottom:291.825000px;}
.ycd{bottom:299.925000px;}
.ya1{bottom:304.410000px;}
.y79{bottom:306.390000px;}
.y6e{bottom:306.750000px;}
.y40{bottom:310.350000px;}
.y32{bottom:312.690000px;}
.yf0{bottom:314.505000px;}
.yc9{bottom:328.005000px;}
.ya0{bottom:329.070000px;}
.y78{bottom:331.050000px;}
.y6d{bottom:331.410000px;}
.y3f{bottom:335.010000px;}
.yee{bottom:337.185000px;}
.y31{bottom:337.350000px;}
.y9f{bottom:353.730000px;}
.y6c{bottom:356.070000px;}
.y3e{bottom:359.850000px;}
.y30{bottom:362.010000px;}
.y9e{bottom:378.390000px;}
.yed{bottom:378.945000px;}
.y6b{bottom:380.730000px;}
.y3d{bottom:385.590000px;}
.y2f{bottom:386.670000px;}
.yc8{bottom:389.010000px;}
.yeb{bottom:401.625000px;}
.y9d{bottom:403.050000px;}
.y6a{bottom:405.390000px;}
.y3c{bottom:410.430000px;}
.y2e{bottom:411.510000px;}
.yc7{bottom:413.670000px;}
.ye9{bottom:424.305000px;}
.y9c{bottom:427.710000px;}
.y69{bottom:430.050000px;}
.y2d{bottom:436.170000px;}
.yc6{bottom:438.330000px;}
.ye8{bottom:447.195000px;}
.y9b{bottom:452.415000px;}
.y68{bottom:454.755000px;}
.y2c{bottom:460.515000px;}
.y3b{bottom:460.875000px;}
.yc5{bottom:463.035000px;}
.y9a{bottom:469.515000px;}
.y67{bottom:479.595000px;}
.y2b{bottom:485.175000px;}
.yc4{bottom:487.695000px;}
.ye7{bottom:488.775000px;}
.yda{bottom:503.895000px;}
.y66{bottom:504.255000px;}
.y2a{bottom:509.115000px;}
.y99{bottom:510.735000px;}
.yc3{bottom:512.355000px;}
.y65{bottom:528.915000px;}
.ye6{bottom:530.535000px;}
.y29{bottom:531.075000px;}
.y98{bottom:532.875000px;}
.yc2{bottom:537.015000px;}
.ye5{bottom:553.215000px;}
.y64{bottom:553.575000px;}
.y97{bottom:555.195000px;}
.y28{bottom:557.715000px;}
.yc1{bottom:561.675000px;}
.ye4{bottom:575.895000px;}
.y96{bottom:577.515000px;}
.y63{bottom:578.235000px;}
.y27{bottom:579.495000px;}
.yc0{bottom:586.335000px;}
.y95{bottom:599.835000px;}
.y26{bottom:601.275000px;}
.y62{bottom:602.895000px;}
.ybf{bottom:610.995000px;}
.ye3{bottom:617.655000px;}
.y94{bottom:621.975000px;}
.y25{bottom:623.055000px;}
.y61{bottom:627.555000px;}
.ybe{bottom:628.095000px;}
.ye2{bottom:640.335000px;}
.y91{bottom:644.295000px;}
.y24{bottom:645.015000px;}
.ybd{bottom:650.235000px;}
.y60{bottom:652.215000px;}
.y23{bottom:666.795000px;}
.ybb{bottom:672.555000px;}
.y5f{bottom:676.905000px;}
.ye0{bottom:682.125000px;}
.y22{bottom:688.605000px;}
.y90{bottom:693.645000px;}
.yba{bottom:694.905000px;}
.y5e{bottom:701.565000px;}
.y21{bottom:710.385000px;}
.yb9{bottom:717.225000px;}
.y8f{bottom:718.665000px;}
.ydf{bottom:723.705000px;}
.y5d{bottom:726.225000px;}
.y20{bottom:732.345000px;}
.yb8{bottom:739.365000px;}
.y8e{bottom:743.325000px;}
.yde{bottom:746.565000px;}
.y5c{bottom:750.885000px;}
.y1f{bottom:754.125000px;}
.y8d{bottom:767.985000px;}
.ydc{bottom:769.245000px;}
.yb7{bottom:769.785000px;}
.y5b{bottom:775.545000px;}
.y1e{bottom:775.905000px;}
.y8c{bottom:792.645000px;}
.yb6{bottom:794.805000px;}
.y1d{bottom:797.685000px;}
.ydb{bottom:799.845000px;}
.y5a{bottom:800.205000px;}
.y8b{bottom:817.305000px;}
.y1c{bottom:819.465000px;}
.y59{bottom:824.505000px;}
.y77{bottom:824.865000px;}
.y1b{bottom:841.425000px;}
.y8a{bottom:841.965000px;}
.yb3{bottom:844.125000px;}
.y58{bottom:849.165000px;}
.y76{bottom:849.525000px;}
.y1a{bottom:862.845000px;}
.y89{bottom:866.625000px;}
.yb2{bottom:868.785000px;}
.y57{bottom:874.185000px;}
.y18{bottom:878.145000px;}
.y11{bottom:885.345000px;}
.y17{bottom:889.491074px;}
.y88{bottom:891.285000px;}
.yb1{bottom:893.085000px;}
.yb5{bottom:893.445000px;}
.y75{bottom:898.485000px;}
.y56{bottom:898.845000px;}
.y87{bottom:916.170000px;}
.yb0{bottom:917.790000px;}
.yb4{bottom:918.150000px;}
.yd9{bottom:923.190000px;}
.y55{bottom:923.550000px;}
.y86{bottom:940.830000px;}
.yaf{bottom:942.810000px;}
.y54{bottom:948.210000px;}
.y85{bottom:965.490000px;}
.yae{bottom:967.470000px;}
.y53{bottom:972.870000px;}
.y84{bottom:982.410000px;}
.yad{bottom:992.130000px;}
.yd7{bottom:997.170000px;}
.y52{bottom:997.530000px;}
.y83{bottom:1004.910000px;}
.yac{bottom:1009.230000px;}
.y51{bottom:1022.190000px;}
.y82{bottom:1027.230000px;}
.yf{bottom:1029.210000px;}
.yab{bottom:1031.370000px;}
.yd{bottom:1035.510000px;}
.y50{bottom:1046.850000px;}
.y81{bottom:1049.730000px;}
.yaa{bottom:1053.690000px;}
.y4f{bottom:1071.510000px;}
.y80{bottom:1072.230000px;}
.ya9{bottom:1076.010000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.y7e{bottom:1094.550000px;}
.y4e{bottom:1096.170000px;}
.ya8{bottom:1098.330000px;}
.y2{bottom:1106.250000px;}
.y7c{bottom:1117.050000px;}
.ya7{bottom:1120.470000px;}
.y4d{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.y7a{bottom:1139.370000px;}
.yd8{bottom:1145.130000px;}
.y4c{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.y74{bottom:1169.820000px;}
.y4b{bottom:1170.180000px;}
.y49{bottom:1187.280000px;}
.y48{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.285000px;}
.h18{height:7.200000px;}
.hd{height:13.324219px;}
.h19{height:17.587969px;}
.h21{height:18.885000px;}
.h26{height:18.900000px;}
.h11{height:19.008000px;}
.h22{height:19.065000px;}
.h25{height:19.080000px;}
.h2d{height:19.101000px;}
.h20{height:19.110000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h28{height:24.645000px;}
.h29{height:24.696000px;}
.h7{height:28.290000px;}
.h1e{height:30.480469px;}
.h24{height:37.785000px;}
.h2c{height:37.965000px;}
.h2a{height:37.980000px;}
.h23{height:38.010000px;}
.h2e{height:38.016000px;}
.he{height:41.025000px;}
.h2b{height:46.251562px;}
.h14{height:48.616875px;}
.h27{height:49.305000px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h1f{height:58.621992px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h16{height:63.492188px;}
.h1a{height:64.978594px;}
.h1c{height:65.010937px;}
.h1b{height:66.757500px;}
.h15{height:67.803750px;}
.h1d{height:68.084282px;}
.h6{height:71.324297px;}
.h17{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h13{height:81.736875px;}
.h3{height:103.530000px;}
.h12{height:143.842500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:48.585000px;}
.w10{width:49.305000px;}
.w18{width:50.565000px;}
.w8{width:55.245000px;}
.w1c{width:59.614500px;}
.w14{width:66.585000px;}
.wb{width:85.665000px;}
.w13{width:88.185000px;}
.w17{width:103.485000px;}
.w1b{width:107.841000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.wf{width:126.885000px;}
.we{width:137.361000px;}
.w1a{width:137.505000px;}
.w12{width:154.095000px;}
.w16{width:180.255000px;}
.wa{width:182.535000px;}
.w15{width:198.915000px;}
.w19{width:219.300000px;}
.w9{width:250.080000px;}
.w1e{width:262.320000px;}
.wd{width:270.960000px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w11{width:281.040000px;}
.w1d{width:405.604500px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:1.605000px;}
.x24{left:3.045000px;}
.x41{left:5.040000px;}
.x28{left:6.285000px;}
.x1a{left:8.089500px;}
.x5{left:10.965000px;}
.x31{left:12.225000px;}
.x30{left:14.025000px;}
.x34{left:17.265000px;}
.x10{left:20.685000px;}
.x2a{left:23.385000px;}
.x37{left:24.480000px;}
.x3e{left:25.725000px;}
.x2d{left:27.720000px;}
.x43{left:28.980000px;}
.x44{left:33.120000px;}
.xb{left:34.185000px;}
.x35{left:36.885000px;}
.x4e{left:38.730000px;}
.x3f{left:45.345000px;}
.x39{left:48.240000px;}
.xe{left:49.714500px;}
.x26{left:51.510000px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.x38{left:64.425000px;}
.x42{left:72.885000px;}
.xc{left:81.525000px;}
.x2c{left:82.785000px;}
.xf{left:85.125000px;}
.x2e{left:86.925000px;}
.x3c{left:92.910000px;}
.xd{left:95.925000px;}
.x32{left:99.570000px;}
.x13{left:102.763500px;}
.x17{left:106.723500px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x15{left:113.743500px;}
.x4f{left:135.036000px;}
.x52{left:142.426500px;}
.x53{left:145.108500px;}
.x14{left:155.728500px;}
.x23{left:158.625000px;}
.x1b{left:162.030000px;}
.x4{left:168.885000px;}
.x46{left:170.865000px;}
.x16{left:182.188500px;}
.x4a{left:187.965000px;}
.x18{left:190.648500px;}
.x6{left:209.010000px;}
.x25{left:214.785000px;}
.x47{left:238.185000px;}
.x4b{left:239.265000px;}
.x22{left:259.590000px;}
.x45{left:261.210000px;}
.x2f{left:275.475000px;}
.x3b{left:284.655000px;}
.x49{left:322.455000px;}
.x19{left:324.965515px;}
.x12{left:335.578500px;}
.x51{left:404.175000px;}
.x48{left:437.835000px;}
.xa{left:445.620000px;}
.x4c{left:459.300000px;}
.x27{left:465.600000px;}
.x1c{left:473.505000px;}
.x33{left:480.720000px;}
.x20{left:488.985000px;}
.x3d{left:491.160000px;}
.x50{left:500.505000px;}
.x1d{left:505.005000px;}
.x21{left:515.985000px;}
.x1f{left:527.505000px;}
.x1e{left:532.005000px;}
.x54{left:548.760000px;}
.x4d{left:597.540000px;}
.x36{left:618.810000px;}
.x40{left:645.990000px;}
.x29{left:648.870000px;}
.x7{left:722.490000px;}
.x1{left:761.010000px;}
.x3a{left:773.045929px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls1d{letter-spacing:-0.912000pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.544000pt;}
.ls1f{letter-spacing:-0.271467pt;}
.lsf{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.169067pt;}
.lse{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.101333pt;}
.lsb{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.069333pt;}
.ls1c{letter-spacing:0.097067pt;}
.ls5{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.135467pt;}
.ls6{letter-spacing:0.135680pt;}
.ls1{letter-spacing:0.166400pt;}
.ls9{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.512000pt;}
.ls11{letter-spacing:3.840000pt;}
.ls8{letter-spacing:10.240000pt;}
.ls19{letter-spacing:11.520000pt;}
.ls7{letter-spacing:19.840000pt;}
.ls16{letter-spacing:28.160000pt;}
.ls1a{letter-spacing:32.640000pt;}
.ls1e{letter-spacing:35.450027pt;}
.ls12{letter-spacing:35.471360pt;}
.ls18{letter-spacing:42.880000pt;}
.ls17{letter-spacing:51.840000pt;}
.lsa{letter-spacing:52.751360pt;}
.ls15{letter-spacing:753.418667pt;}
.ws9{word-spacing:-58.880000pt;}
.wsd{word-spacing:-21.490560pt;}
.wsb{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.ws6{word-spacing:-16.000000pt;}
.ws8{word-spacing:-14.953067pt;}
.wse{word-spacing:-14.855467pt;}
.wsf{word-spacing:-14.817067pt;}
.ws7{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.448533pt;}
.ws4{word-spacing:-14.144000pt;}
.wsc{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.wsa{word-spacing:0.000000pt;}
._37{margin-left:-43.151360pt;}
._40{margin-left:-1.880320pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._2{width:1.956267pt;}
._a{width:3.167147pt;}
._7{width:4.533760pt;}
._8{width:5.448320pt;}
._9{width:6.397867pt;}
._14{width:7.658240pt;}
._4{width:9.126400pt;}
._3{width:10.186240pt;}
._d{width:11.658240pt;}
._e{width:12.718080pt;}
._22{width:13.649067pt;}
._b{width:16.282240pt;}
._c{width:17.456000pt;}
._30{width:18.664960pt;}
._f{width:19.622187pt;}
._1c{width:20.961280pt;}
._23{width:21.903360pt;}
._5{width:23.080960pt;}
._6{width:24.023040pt;}
._1e{width:25.183360pt;}
._1d{width:26.232960pt;}
._1b{width:27.496960pt;}
._33{width:28.484480pt;}
._2c{width:29.484800pt;}
._25{width:30.584320pt;}
._24{width:32.207360pt;}
._27{width:33.303680pt;}
._15{width:34.380800pt;}
._16{width:35.424000pt;}
._36{width:36.330880pt;}
._35{width:37.271040pt;}
._39{width:38.272000pt;}
._21{width:40.332800pt;}
._2a{width:42.040320pt;}
._1f{width:43.453440pt;}
._20{width:44.473387pt;}
._31{width:45.421227pt;}
._17{width:46.750720pt;}
._32{width:49.105920pt;}
._28{width:50.824320pt;}
._29{width:51.755520pt;}
._2e{width:52.787840pt;}
._2d{width:53.992960pt;}
._3a{width:55.319680pt;}
._13{width:57.172480pt;}
._3d{width:58.387840pt;}
._34{width:59.409920pt;}
._3b{width:62.385280pt;}
._26{width:65.297920pt;}
._10{width:68.441600pt;}
._2f{width:70.891520pt;}
._3c{width:72.369920pt;}
._3f{width:77.313493pt;}
._12{width:78.722347pt;}
._38{width:96.151040pt;}
._3e{width:108.869120pt;}
._2b{width:124.150400pt;}
._1a{width:135.905280pt;}
._11{width:152.471680pt;}
._18{width:168.548907pt;}
._19{width:175.686400pt;}
._41{width:753.418667pt;}
.fsb{font-size:2.560000pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:42.880000pt;}
.fs8{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs9{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y19{bottom:1.120000pt;}
.y10{bottom:1.440000pt;}
.y3{bottom:3.040000pt;}
.ydd{bottom:3.200000pt;}
.y7b{bottom:3.360000pt;}
.yec{bottom:3.506667pt;}
.y7d{bottom:3.520000pt;}
.yea{bottom:3.666667pt;}
.y7f{bottom:3.680000pt;}
.ybc{bottom:3.706667pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.y6{bottom:7.520000pt;}
.ycb{bottom:8.306667pt;}
.yce{bottom:8.626667pt;}
.yd3{bottom:8.640000pt;}
.y93{bottom:11.680000pt;}
.ycc{bottom:19.186667pt;}
.y92{bottom:20.160000pt;}
.ye{bottom:20.320000pt;}
.yef{bottom:20.466667pt;}
.ye1{bottom:20.480000pt;}
.yf5{bottom:20.506667pt;}
.y16{bottom:23.560000pt;}
.y5{bottom:29.440000pt;}
.yca{bottom:30.226667pt;}
.y1{bottom:45.760000pt;}
.ya6{bottom:45.764229pt;}
.y15{bottom:49.800000pt;}
.y14{bottom:63.720000pt;}
.y4a{bottom:66.880000pt;}
.y13{bottom:91.240000pt;}
.y3a{bottom:102.560000pt;}
.y12{bottom:105.000000pt;}
.yf8{bottom:107.200000pt;}
.yd6{bottom:108.320000pt;}
.y47{bottom:119.200000pt;}
.y39{bottom:124.480000pt;}
.yf7{bottom:129.440000pt;}
.yd5{bottom:130.240000pt;}
.y73{bottom:140.800000pt;}
.y46{bottom:141.120000pt;}
.yf6{bottom:144.800000pt;}
.y38{bottom:146.400000pt;}
.yd4{bottom:152.160000pt;}
.y45{bottom:163.040000pt;}
.yf4{bottom:164.960000pt;}
.yd2{bottom:167.200000pt;}
.y37{bottom:168.320000pt;}
.ya5{bottom:182.560000pt;}
.y72{bottom:184.986667pt;}
.y44{bottom:185.146667pt;}
.y36{bottom:190.266667pt;}
.yd1{bottom:192.040000pt;}
.yf3{bottom:202.120000pt;}
.ya4{bottom:204.826667pt;}
.y71{bottom:206.906667pt;}
.y43{bottom:208.026667pt;}
.y35{bottom:212.186667pt;}
.yd0{bottom:217.000000pt;}
.ya3{bottom:226.746667pt;}
.y70{bottom:228.826667pt;}
.y42{bottom:230.106667pt;}
.y34{bottom:234.106667pt;}
.yf2{bottom:239.080000pt;}
.ycf{bottom:241.800000pt;}
.ya2{bottom:248.666667pt;}
.y6f{bottom:250.746667pt;}
.y41{bottom:252.986667pt;}
.y33{bottom:256.026667pt;}
.yf1{bottom:259.400000pt;}
.ycd{bottom:266.600000pt;}
.ya1{bottom:270.586667pt;}
.y79{bottom:272.346667pt;}
.y6e{bottom:272.666667pt;}
.y40{bottom:275.866667pt;}
.y32{bottom:277.946667pt;}
.yf0{bottom:279.560000pt;}
.yc9{bottom:291.560000pt;}
.ya0{bottom:292.506667pt;}
.y78{bottom:294.266667pt;}
.y6d{bottom:294.586667pt;}
.y3f{bottom:297.786667pt;}
.yee{bottom:299.720000pt;}
.y31{bottom:299.866667pt;}
.y9f{bottom:314.426667pt;}
.y6c{bottom:316.506667pt;}
.y3e{bottom:319.866667pt;}
.y30{bottom:321.786667pt;}
.y9e{bottom:336.346667pt;}
.yed{bottom:336.840000pt;}
.y6b{bottom:338.426667pt;}
.y3d{bottom:342.746667pt;}
.y2f{bottom:343.706667pt;}
.yc8{bottom:345.786667pt;}
.yeb{bottom:357.000000pt;}
.y9d{bottom:358.266667pt;}
.y6a{bottom:360.346667pt;}
.y3c{bottom:364.826667pt;}
.y2e{bottom:365.786667pt;}
.yc7{bottom:367.706667pt;}
.ye9{bottom:377.160000pt;}
.y9c{bottom:380.186667pt;}
.y69{bottom:382.266667pt;}
.y2d{bottom:387.706667pt;}
.yc6{bottom:389.626667pt;}
.ye8{bottom:397.506667pt;}
.y9b{bottom:402.146667pt;}
.y68{bottom:404.226667pt;}
.y2c{bottom:409.346667pt;}
.y3b{bottom:409.666667pt;}
.yc5{bottom:411.586667pt;}
.y9a{bottom:417.346667pt;}
.y67{bottom:426.306667pt;}
.y2b{bottom:431.266667pt;}
.yc4{bottom:433.506667pt;}
.ye7{bottom:434.466667pt;}
.yda{bottom:447.906667pt;}
.y66{bottom:448.226667pt;}
.y2a{bottom:452.546667pt;}
.y99{bottom:453.986667pt;}
.yc3{bottom:455.426667pt;}
.y65{bottom:470.146667pt;}
.ye6{bottom:471.586667pt;}
.y29{bottom:472.066667pt;}
.y98{bottom:473.666667pt;}
.yc2{bottom:477.346667pt;}
.ye5{bottom:491.746667pt;}
.y64{bottom:492.066667pt;}
.y97{bottom:493.506667pt;}
.y28{bottom:495.746667pt;}
.yc1{bottom:499.266667pt;}
.ye4{bottom:511.906667pt;}
.y96{bottom:513.346667pt;}
.y63{bottom:513.986667pt;}
.y27{bottom:515.106667pt;}
.yc0{bottom:521.186667pt;}
.y95{bottom:533.186667pt;}
.y26{bottom:534.466667pt;}
.y62{bottom:535.906667pt;}
.ybf{bottom:543.106667pt;}
.ye3{bottom:549.026667pt;}
.y94{bottom:552.866667pt;}
.y25{bottom:553.826667pt;}
.y61{bottom:557.826667pt;}
.ybe{bottom:558.306667pt;}
.ye2{bottom:569.186667pt;}
.y91{bottom:572.706667pt;}
.y24{bottom:573.346667pt;}
.ybd{bottom:577.986667pt;}
.y60{bottom:579.746667pt;}
.y23{bottom:592.706667pt;}
.ybb{bottom:597.826667pt;}
.y5f{bottom:601.693333pt;}
.ye0{bottom:606.333333pt;}
.y22{bottom:612.093333pt;}
.y90{bottom:616.573333pt;}
.yba{bottom:617.693333pt;}
.y5e{bottom:623.613333pt;}
.y21{bottom:631.453333pt;}
.yb9{bottom:637.533333pt;}
.y8f{bottom:638.813333pt;}
.ydf{bottom:643.293333pt;}
.y5d{bottom:645.533333pt;}
.y20{bottom:650.973333pt;}
.yb8{bottom:657.213333pt;}
.y8e{bottom:660.733333pt;}
.yde{bottom:663.613333pt;}
.y5c{bottom:667.453333pt;}
.y1f{bottom:670.333333pt;}
.y8d{bottom:682.653333pt;}
.ydc{bottom:683.773333pt;}
.yb7{bottom:684.253333pt;}
.y5b{bottom:689.373333pt;}
.y1e{bottom:689.693333pt;}
.y8c{bottom:704.573333pt;}
.yb6{bottom:706.493333pt;}
.y1d{bottom:709.053333pt;}
.ydb{bottom:710.973333pt;}
.y5a{bottom:711.293333pt;}
.y8b{bottom:726.493333pt;}
.y1c{bottom:728.413333pt;}
.y59{bottom:732.893333pt;}
.y77{bottom:733.213333pt;}
.y1b{bottom:747.933333pt;}
.y8a{bottom:748.413333pt;}
.yb3{bottom:750.333333pt;}
.y58{bottom:754.813333pt;}
.y76{bottom:755.133333pt;}
.y1a{bottom:766.973333pt;}
.y89{bottom:770.333333pt;}
.yb2{bottom:772.253333pt;}
.y57{bottom:777.053333pt;}
.y18{bottom:780.573333pt;}
.y11{bottom:786.973333pt;}
.y17{bottom:790.658732pt;}
.y88{bottom:792.253333pt;}
.yb1{bottom:793.853333pt;}
.yb5{bottom:794.173333pt;}
.y75{bottom:798.653333pt;}
.y56{bottom:798.973333pt;}
.y87{bottom:814.373333pt;}
.yb0{bottom:815.813333pt;}
.yb4{bottom:816.133333pt;}
.yd9{bottom:820.613333pt;}
.y55{bottom:820.933333pt;}
.y86{bottom:836.293333pt;}
.yaf{bottom:838.053333pt;}
.y54{bottom:842.853333pt;}
.y85{bottom:858.213333pt;}
.yae{bottom:859.973333pt;}
.y53{bottom:864.773333pt;}
.y84{bottom:873.253333pt;}
.yad{bottom:881.893333pt;}
.yd7{bottom:886.373333pt;}
.y52{bottom:886.693333pt;}
.y83{bottom:893.253333pt;}
.yac{bottom:897.093333pt;}
.y51{bottom:908.613333pt;}
.y82{bottom:913.093333pt;}
.yf{bottom:914.853333pt;}
.yab{bottom:916.773333pt;}
.yd{bottom:920.453333pt;}
.y50{bottom:930.533333pt;}
.y81{bottom:933.093333pt;}
.yaa{bottom:936.613333pt;}
.y4f{bottom:952.453333pt;}
.y80{bottom:953.093333pt;}
.ya9{bottom:956.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.y7e{bottom:972.933333pt;}
.y4e{bottom:974.373333pt;}
.ya8{bottom:976.293333pt;}
.y2{bottom:983.333333pt;}
.y7c{bottom:992.933333pt;}
.ya7{bottom:995.973333pt;}
.y4d{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.y7a{bottom:1012.773333pt;}
.yd8{bottom:1017.893333pt;}
.y4c{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.y74{bottom:1039.840000pt;}
.y4b{bottom:1040.160000pt;}
.y49{bottom:1055.360000pt;}
.y48{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.586667pt;}
.h18{height:6.400000pt;}
.hd{height:11.843750pt;}
.h19{height:15.633750pt;}
.h21{height:16.786667pt;}
.h26{height:16.800000pt;}
.h11{height:16.896000pt;}
.h22{height:16.946667pt;}
.h25{height:16.960000pt;}
.h2d{height:16.978667pt;}
.h20{height:16.986667pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h28{height:21.906667pt;}
.h29{height:21.952000pt;}
.h7{height:25.146667pt;}
.h1e{height:27.093750pt;}
.h24{height:33.586667pt;}
.h2c{height:33.746667pt;}
.h2a{height:33.760000pt;}
.h23{height:33.786667pt;}
.h2e{height:33.792000pt;}
.he{height:36.466667pt;}
.h2b{height:41.112500pt;}
.h14{height:43.215000pt;}
.h27{height:43.826667pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h1f{height:52.108438pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h16{height:56.437500pt;}
.h1a{height:57.758750pt;}
.h1c{height:57.787500pt;}
.h1b{height:59.340000pt;}
.h15{height:60.270000pt;}
.h1d{height:60.519362pt;}
.h6{height:63.399375pt;}
.h17{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h13{height:72.655000pt;}
.h3{height:92.026667pt;}
.h12{height:127.860000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:43.186667pt;}
.w10{width:43.826667pt;}
.w18{width:44.946667pt;}
.w8{width:49.106667pt;}
.w1c{width:52.990667pt;}
.w14{width:59.186667pt;}
.wb{width:76.146667pt;}
.w13{width:78.386667pt;}
.w17{width:91.986667pt;}
.w1b{width:95.858667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.wf{width:112.786667pt;}
.we{width:122.098667pt;}
.w1a{width:122.226667pt;}
.w12{width:136.973333pt;}
.w16{width:160.226667pt;}
.wa{width:162.253333pt;}
.w15{width:176.813333pt;}
.w19{width:194.933333pt;}
.w9{width:222.293333pt;}
.w1e{width:233.173333pt;}
.wd{width:240.853333pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w11{width:249.813333pt;}
.w1d{width:360.537333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:1.426667pt;}
.x24{left:2.706667pt;}
.x41{left:4.480000pt;}
.x28{left:5.586667pt;}
.x1a{left:7.190667pt;}
.x5{left:9.746667pt;}
.x31{left:10.866667pt;}
.x30{left:12.466667pt;}
.x34{left:15.346667pt;}
.x10{left:18.386667pt;}
.x2a{left:20.786667pt;}
.x37{left:21.760000pt;}
.x3e{left:22.866667pt;}
.x2d{left:24.640000pt;}
.x43{left:25.760000pt;}
.x44{left:29.440000pt;}
.xb{left:30.386667pt;}
.x35{left:32.786667pt;}
.x4e{left:34.426667pt;}
.x3f{left:40.306667pt;}
.x39{left:42.880000pt;}
.xe{left:44.190667pt;}
.x26{left:45.786667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.x38{left:57.266667pt;}
.x42{left:64.786667pt;}
.xc{left:72.466667pt;}
.x2c{left:73.586667pt;}
.xf{left:75.666667pt;}
.x2e{left:77.266667pt;}
.x3c{left:82.586667pt;}
.xd{left:85.266667pt;}
.x32{left:88.506667pt;}
.x13{left:91.345333pt;}
.x17{left:94.865333pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x15{left:101.105333pt;}
.x4f{left:120.032000pt;}
.x52{left:126.601333pt;}
.x53{left:128.985333pt;}
.x14{left:138.425333pt;}
.x23{left:141.000000pt;}
.x1b{left:144.026667pt;}
.x4{left:150.120000pt;}
.x46{left:151.880000pt;}
.x16{left:161.945333pt;}
.x4a{left:167.080000pt;}
.x18{left:169.465333pt;}
.x6{left:185.786667pt;}
.x25{left:190.920000pt;}
.x47{left:211.720000pt;}
.x4b{left:212.680000pt;}
.x22{left:230.746667pt;}
.x45{left:232.186667pt;}
.x2f{left:244.866667pt;}
.x3b{left:253.026667pt;}
.x49{left:286.626667pt;}
.x19{left:288.858236pt;}
.x12{left:298.292000pt;}
.x51{left:359.266667pt;}
.x48{left:389.186667pt;}
.xa{left:396.106667pt;}
.x4c{left:408.266667pt;}
.x27{left:413.866667pt;}
.x1c{left:420.893333pt;}
.x33{left:427.306667pt;}
.x20{left:434.653333pt;}
.x3d{left:436.586667pt;}
.x50{left:444.893333pt;}
.x1d{left:448.893333pt;}
.x21{left:458.653333pt;}
.x1f{left:468.893333pt;}
.x1e{left:472.893333pt;}
.x54{left:487.786667pt;}
.x4d{left:531.146667pt;}
.x36{left:550.053333pt;}
.x40{left:574.213333pt;}
.x29{left:576.773333pt;}
.x7{left:642.213333pt;}
.x1{left:676.453333pt;}
.x3a{left:687.151937pt;}
}




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