
    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_6628daff2866f80e13fce923.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cd311d1e5f558b08b76d6e0f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_10ec9f75b58e07f326e978d5.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d8e6845e797dd41065ea4056.woff')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_07ce418341fa7cd0feb9aa30.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6a426f4f6fd126eee3df9b32.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_52eea97169339635584fdd04.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c2649c35f98d04cca90934a6.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_42983238fd060dc0f5b14129.woff')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_ae94a7ceb19b3a359bba7624.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b8e5fb4ff2ddd7b988c9b0b4.woff')format("woff");}.ffb{font-family:ffb;line-height:1.128000;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_07170e33cd7daa7315c7fc07.woff')format("woff");}.ffc{font-family:ffc;line-height:1.332520;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_15b85c1690be186875539e97.woff')format("woff");}.ffd{font-family:ffd;line-height:1.330078;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_37ce9b17ecbcc72c6737764d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.911000;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_09811059eed609f8b8716c78.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_992f92544f88fb62a108b62d.woff')format("woff");}.ff10{font-family:ff10;line-height:0.921387;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_76ec2db1910691595038350b.woff')format("woff");}.ff11{font-family:ff11;line-height:1.313477;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_3b5ef3b1f4fad34fbf427fbc.woff')format("woff");}.ff12{font-family:ff12;line-height:0.921387;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:ff13;src:url('chunks/assets/font_b041acabacd4d3e98c02ab0d.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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(0.257467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257467,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);}
.m4{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:-18.000000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.879880px;}
.ls17{letter-spacing:-0.702000px;}
.ls1d{letter-spacing:-0.666000px;}
.ls1c{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.460200px;}
.ls9{letter-spacing:-0.427118px;}
.ls5{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.263122px;}
.ls6{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.108000px;}
.ls25{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000060px;}
.ls10{letter-spacing:0.018000px;}
.ls23{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.057334px;}
.ls24{letter-spacing:0.106800px;}
.ls16{letter-spacing:0.126000px;}
.ls11{letter-spacing:0.126060px;}
.ls12{letter-spacing:0.179940px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.180120px;}
.ls1f{letter-spacing:0.206400px;}
.ls18{letter-spacing:0.233880px;}
.lsf{letter-spacing:0.233940px;}
.ls15{letter-spacing:0.234000px;}
.ls13{letter-spacing:0.234060px;}
.lsd{letter-spacing:0.259920px;}
.ls21{letter-spacing:0.298800px;}
.ls14{letter-spacing:0.324000px;}
.ls1a{letter-spacing:0.359880px;}
.ls2{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.360060px;}
.lsa{letter-spacing:0.447957px;}
.ls22{letter-spacing:0.540000px;}
.lsb{letter-spacing:1.202407px;}
.ls20{letter-spacing:16.506720px;}
.ls1e{letter-spacing:46.026720px;}
.ls3{letter-spacing:1091.976000px;}
.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;}
}
.ws1a{word-spacing:-48.240000px;}
.ws15{word-spacing:-18.000000px;}
.ws13{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.199920px;}
.ws1c{word-spacing:-15.046800px;}
.ws5{word-spacing:-15.012000px;}
.ws1d{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.580000px;}
.ws1b{word-spacing:-14.479800px;}
.ws17{word-spacing:-13.860000px;}
.ws16{word-spacing:-13.518000px;}
.ws6{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.392000px;}
.ws4{word-spacing:-13.284000px;}
.ws7{word-spacing:-13.030110px;}
.ws9{word-spacing:-12.865582px;}
.ws14{word-spacing:-12.798000px;}
.wsc{word-spacing:-11.872984px;}
.wsa{word-spacing:-11.788350px;}
.ws19{word-spacing:-11.700000px;}
.ws1{word-spacing:-9.720000px;}
.ws3{word-spacing:-9.000000px;}
.wsd{word-spacing:0.000000px;}
.ws10{word-spacing:2.942372px;}
.wsf{word-spacing:3.696827px;}
.wse{word-spacing:4.597450px;}
.wsb{word-spacing:8.250788px;}
.ws11{word-spacing:8.832435px;}
.ws8{word-spacing:618.361702px;}
._12{margin-left:-1118.976000px;}
._11{margin-left:-13.500000px;}
._d{margin-left:-2.973840px;}
._3{margin-left:-1.116000px;}
._2{width:1.436400px;}
._b{width:2.611260px;}
._8{width:3.654000px;}
._7{width:4.698000px;}
._13{width:5.724720px;}
._6{width:6.750000px;}
._a{width:8.262000px;}
._e{width:9.270480px;}
._5{width:10.422000px;}
._4{width:11.844000px;}
._15{width:12.908160px;}
._c{width:14.850000px;}
._14{width:16.075440px;}
._f{width:17.268480px;}
._10{width:18.348480px;}
._1{width:20.109600px;}
._0{width:21.833280px;}
._9{width:36.324000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs8{font-size:45.900000px;}
.fs9{font-size:47.153400px;}
.fsa{font-size:47.262600px;}
.fs0{font-size:48.240000px;}
.fs7{font-size:53.170800px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fsb{font-size:60.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y50{bottom:2.700015px;}
.y88{bottom:2.879970px;}
.ydc{bottom:2.879985px;}
.y68{bottom:2.880000px;}
.yb0{bottom:2.880015px;}
.y10b{bottom:2.880060px;}
.ya5{bottom:2.910000px;}
.yd3{bottom:3.059970px;}
.y10d{bottom:3.780030px;}
.yc8{bottom:4.680000px;}
.ybb{bottom:7.920000px;}
.y54{bottom:9.360015px;}
.y8e{bottom:10.620030px;}
.y7b{bottom:10.800000px;}
.y6a{bottom:11.160000px;}
.y6c{bottom:11.340000px;}
.y4e{bottom:11.520015px;}
.y30{bottom:11.528550px;}
.y52{bottom:12.420000px;}
.ycb{bottom:12.600030px;}
.y4f{bottom:14.040000px;}
.y6b{bottom:14.400000px;}
.y10a{bottom:15.480015px;}
.y6d{bottom:17.100000px;}
.y57{bottom:17.460000px;}
.y7c{bottom:18.000000px;}
.yc4{bottom:18.165000px;}
.y14c{bottom:18.210000px;}
.y87{bottom:18.359985px;}
.yc1{bottom:18.360000px;}
.yaf{bottom:18.360030px;}
.y67{bottom:18.389985px;}
.ya4{bottom:18.390015px;}
.yd2{bottom:18.539970px;}
.y79{bottom:18.540000px;}
.y7f{bottom:19.440030px;}
.y5a{bottom:19.650000px;}
.yc6{bottom:20.340000px;}
.y7e{bottom:20.699985px;}
.y55{bottom:21.420000px;}
.y5c{bottom:21.630000px;}
.y56{bottom:22.320015px;}
.y59{bottom:22.349985px;}
.y53{bottom:23.040000px;}
.y2e{bottom:24.887550px;}
.y2f{bottom:25.006605px;}
.ydd{bottom:26.100000px;}
.yac{bottom:26.100030px;}
.ybf{bottom:26.130015px;}
.yd5{bottom:26.279940px;}
.y74{bottom:26.280000px;}
.y8d{bottom:26.280030px;}
.y5b{bottom:27.929985px;}
.yca{bottom:28.080045px;}
.y6e{bottom:29.160000px;}
.y2d{bottom:29.506050px;}
.y70{bottom:30.060000px;}
.y71{bottom:30.780000px;}
.ya7{bottom:31.680030px;}
.y51{bottom:32.040000px;}
.ydb{bottom:33.840000px;}
.yc0{bottom:33.869985px;}
.y84{bottom:34.019985px;}
.y78{bottom:34.020000px;}
.yae{bottom:34.020030px;}
.y64{bottom:34.050000px;}
.ya3{bottom:34.050015px;}
.yc5{bottom:35.820015px;}
.y6f{bottom:36.720000px;}
.yd8{bottom:41.580000px;}
.ybe{bottom:41.610000px;}
.yce{bottom:41.759955px;}
.y73{bottom:41.760000px;}
.yab{bottom:41.760030px;}
.y8c{bottom:41.760045px;}
.yc9{bottom:43.560060px;}
.y1{bottom:44.820000px;}
.y77{bottom:49.500000px;}
.y62{bottom:49.530000px;}
.ya2{bottom:49.530015px;}
.yc7{bottom:51.300015px;}
.ya8{bottom:52.380015px;}
.y5d{bottom:53.310015px;}
.y5e{bottom:54.030000px;}
.y81{bottom:55.980015px;}
.y72{bottom:57.240000px;}
.yd7{bottom:57.240015px;}
.y80{bottom:57.240045px;}
.ybd{bottom:57.270000px;}
.ycd{bottom:57.419955px;}
.y90{bottom:61.410000px;}
.y5f{bottom:63.750000px;}
.y76{bottom:64.980000px;}
.y83{bottom:64.980015px;}
.y61{bottom:65.010000px;}
.ya1{bottom:65.010030px;}
.yd1{bottom:65.159910px;}
.y8b{bottom:72.719970px;}
.yaa{bottom:72.720015px;}
.y9a{bottom:72.750000px;}
.yd4{bottom:72.899955px;}
.y7a{bottom:72.900000px;}
.y29{bottom:77.760000px;}
.yda{bottom:80.459985px;}
.yc3{bottom:80.460000px;}
.y82{bottom:80.460015px;}
.y60{bottom:80.490000px;}
.yd0{bottom:80.639925px;}
.y75{bottom:80.640000px;}
.y108{bottom:81.180000px;}
.yc2{bottom:88.020000px;}
.ya9{bottom:88.200015px;}
.y8a{bottom:88.379970px;}
.y99{bottom:88.410000px;}
.y69{bottom:93.960000px;}
.y28{bottom:94.320000px;}
.y124{bottom:95.040000px;}
.yd9{bottom:95.940000px;}
.ycf{bottom:96.119940px;}
.yad{bottom:96.120015px;}
.y86{bottom:96.120030px;}
.y63{bottom:96.150000px;}
.y107{bottom:98.460000px;}
.yf7{bottom:101.520000px;}
.y89{bottom:103.859985px;}
.y98{bottom:103.890015px;}
.y85{bottom:111.600030px;}
.ye1{bottom:111.629970px;}
.y66{bottom:111.630000px;}
.y94{bottom:111.630015px;}
.y123{bottom:112.320000px;}
.y106{bottom:115.740000px;}
.yf6{bottom:118.800000px;}
.y91{bottom:119.370015px;}
.y27{bottom:120.960000px;}
.ye0{bottom:127.109985px;}
.y65{bottom:127.110000px;}
.y93{bottom:127.110030px;}
.y122{bottom:129.600000px;}
.y105{bottom:133.020000px;}
.y97{bottom:134.850030px;}
.yf5{bottom:136.080000px;}
.y26{bottom:138.060000px;}
.ydf{bottom:142.589985px;}
.y92{bottom:142.590030px;}
.y104{bottom:150.300000px;}
.y96{bottom:150.330000px;}
.yf4{bottom:153.180000px;}
.y25{bottom:155.340000px;}
.ya0{bottom:158.250000px;}
.y121{bottom:160.020000px;}
.y95{bottom:165.990000px;}
.y103{bottom:167.580000px;}
.yf3{bottom:170.460000px;}
.y14b{bottom:171.900000px;}
.y24{bottom:172.620000px;}
.y9f{bottom:173.730000px;}
.ybc{bottom:181.980000px;}
.y102{bottom:184.680000px;}
.yf2{bottom:187.740000px;}
.y58{bottom:187.920000px;}
.y9e{bottom:189.210015px;}
.y23{bottom:189.900000px;}
.y14a{bottom:193.680000px;}
.y101{bottom:201.960000px;}
.y9d{bottom:204.734985px;}
.yf1{bottom:205.050000px;}
.y120{bottom:205.410000px;}
.y22{bottom:207.210000px;}
.y149{bottom:210.990000px;}
.y100{bottom:219.269985px;}
.y9c{bottom:220.394985px;}
.y11f{bottom:220.889985px;}
.yf0{bottom:222.330000px;}
.y21{bottom:224.309985px;}
.y148{bottom:228.269985px;}
.y9b{bottom:235.875000px;}
.yff{bottom:236.550000px;}
.yef{bottom:239.610015px;}
.y20{bottom:241.590000px;}
.y147{bottom:250.050000px;}
.y11e{bottom:252.389985px;}
.yfe{bottom:253.830000px;}
.yee{bottom:256.710000px;}
.y1f{bottom:258.870000px;}
.y11d{bottom:269.670000px;}
.y146{bottom:271.650015px;}
.yed{bottom:273.990000px;}
.yba{bottom:275.790000px;}
.y1e{bottom:276.150015px;}
.yfd{bottom:284.250000px;}
.y11c{bottom:286.769985px;}
.y145{bottom:288.930000px;}
.yec{bottom:291.269985px;}
.y1d{bottom:293.430000px;}
.y11b{bottom:304.050000px;}
.y144{bottom:306.210000px;}
.yeb{bottom:308.550000px;}
.yb9{bottom:308.910000px;}
.y1c{bottom:310.710000px;}
.y11a{bottom:321.330000px;}
.yea{bottom:325.830000px;}
.y143{bottom:327.990000px;}
.y4d{bottom:328.349985px;}
.yfc{bottom:329.610015px;}
.yb8{bottom:333.750000px;}
.y119{bottom:338.610015px;}
.y1b{bottom:341.130000px;}
.ye9{bottom:343.110015px;}
.y142{bottom:345.269985px;}
.yb7{bottom:351.030000px;}
.yfb{bottom:351.210000px;}
.y118{bottom:355.889985px;}
.ye8{bottom:360.210000px;}
.y141{bottom:367.050000px;}
.yb6{bottom:368.309985px;}
.y117{bottom:372.990000px;}
.ye7{bottom:377.490000px;}
.y140{bottom:384.150015px;}
.yb5{bottom:385.590000px;}
.y116{bottom:390.269985px;}
.ye6{bottom:394.769985px;}
.y13f{bottom:401.474985px;}
.yb4{bottom:402.914985px;}
.y1a{bottom:403.635000px;}
.y115{bottom:407.595015px;}
.ye5{bottom:412.095015px;}
.y19{bottom:419.115000px;}
.yb3{bottom:419.474985px;}
.y13e{bottom:423.255015px;}
.y114{bottom:424.875000px;}
.ye4{bottom:429.375000px;}
.y4c{bottom:431.715000px;}
.yb2{bottom:433.154985px;}
.y18{bottom:434.595015px;}
.y13d{bottom:440.535000px;}
.y113{bottom:442.154985px;}
.ye3{bottom:446.654985px;}
.yb1{bottom:447.734985px;}
.y17{bottom:450.074985px;}
.y4b{bottom:456.555000px;}
.y13c{bottom:457.814985px;}
.y112{bottom:459.435015px;}
.ya6{bottom:462.494985px;}
.y16{bottom:465.734985px;}
.y4a{bottom:473.835015px;}
.y111{bottom:476.535000px;}
.ye2{bottom:477.074985px;}
.y13b{bottom:479.414985px;}
.y15{bottom:481.215000px;}
.y49{bottom:491.115000px;}
.y14{bottom:496.695000px;}
.y110{bottom:507.135000px;}
.y48{bottom:508.215000px;}
.y13{bottom:512.175015px;}
.y13a{bottom:513.974985px;}
.yde{bottom:520.275015px;}
.y47{bottom:525.494985px;}
.y12{bottom:527.835015px;}
.y139{bottom:535.755015px;}
.y46{bottom:542.775015px;}
.y11{bottom:543.314985px;}
.y10f{bottom:552.494985px;}
.y138{bottom:553.035000px;}
.y10{bottom:558.795000px;}
.y45{bottom:560.055000px;}
.y10e{bottom:568.335015px;}
.y137{bottom:570.314985px;}
.yf{bottom:574.275015px;}
.y44{bottom:577.335015px;}
.y8f{bottom:587.414985px;}
.ye{bottom:589.965000px;}
.y10c{bottom:591.404985px;}
.y136{bottom:591.945000px;}
.y43{bottom:594.644985px;}
.yd{bottom:605.445000px;}
.y135{bottom:609.224985px;}
.y42{bottom:611.744985px;}
.yc{bottom:620.925015px;}
.y134{bottom:626.505015px;}
.yfa{bottom:636.224985px;}
.yb{bottom:636.404985px;}
.y41{bottom:642.345015px;}
.y133{bottom:648.285000px;}
.yf9{bottom:653.505015px;}
.y132{bottom:665.564985px;}
.yf8{bottom:670.785000px;}
.yd6{bottom:676.365000px;}
.y131{bottom:682.845015px;}
.ya{bottom:686.085015px;}
.y40{bottom:688.064985px;}
.y130{bottom:704.445000px;}
.y3f{bottom:705.345015px;}
.y9{bottom:706.064985px;}
.y8{bottom:717.224985px;}
.y12f{bottom:721.724985px;}
.y3e{bottom:722.445000px;}
.y7{bottom:732.705000px;}
.y12e{bottom:739.005015px;}
.y3d{bottom:739.724985px;}
.y6{bottom:752.685015px;}
.y3c{bottom:757.005015px;}
.y12d{bottom:760.785000px;}
.y4{bottom:772.484985px;}
.y3b{bottom:774.285000px;}
.y5{bottom:777.704955px;}
.y12c{bottom:778.065030px;}
.ycc{bottom:785.670045px;}
.y3a{bottom:791.609985px;}
.y12b{bottom:795.210015px;}
.y109{bottom:796.829955px;}
.y39{bottom:808.710015px;}
.y12a{bottom:816.989955px;}
.y3{bottom:817.170045px;}
.y38{bottom:825.989955px;}
.y129{bottom:834.269985px;}
.y7d{bottom:836.609985px;}
.y37{bottom:843.269985px;}
.y2{bottom:844.710015px;}
.y128{bottom:851.550015px;}
.y36{bottom:860.550015px;}
.y127{bottom:873.329955px;}
.y35{bottom:877.829955px;}
.y126{bottom:890.609985px;}
.y34{bottom:895.109985px;}
.y125{bottom:907.710015px;}
.y33{bottom:912.210015px;}
.y32{bottom:929.489955px;}
.y31{bottom:946.769985px;}
.y2a{bottom:1007.820000px;}
.y2c{bottom:1016.490645px;}
.y2b{bottom:1035.674835px;}
.h1f{height:20.520000px;}
.h7{height:26.033203px;}
.h6{height:28.115859px;}
.h11{height:31.900500px;}
.h12{height:32.771613px;}
.h13{height:32.818773px;}
.h14{height:32.942007px;}
.h1e{height:33.683203px;}
.h3{height:34.884492px;}
.h18{height:37.705078px;}
.h15{height:38.100586px;}
.h8{height:39.049805px;}
.hd{height:40.335117px;}
.h9{height:40.605469px;}
.hb{height:41.726953px;}
.h26{height:42.164648px;}
.h2b{height:43.215117px;}
.h2a{height:43.506914px;}
.he{height:48.410156px;}
.h5{height:48.995739px;}
.h29{height:49.605469px;}
.h19{height:52.066180px;}
.hc{height:52.066406px;}
.ha{height:54.140625px;}
.hf{height:54.387630px;}
.h10{height:55.265625px;}
.h1b{height:60.410156px;}
.h22{height:65.700000px;}
.h4{height:72.007031px;}
.h16{height:90.756000px;}
.h21{height:93.060000px;}
.h20{height:93.096000px;}
.h1a{height:93.240000px;}
.h24{height:108.576000px;}
.h23{height:108.720000px;}
.h1c{height:124.200000px;}
.h17{height:139.716000px;}
.h25{height:155.190000px;}
.h27{height:163.980000px;}
.h28{height:205.410000px;}
.h1d{height:248.474985px;}
.h1{height:1062.750000px;}
.h2{height:1062.899878px;}
.h0{height:1062.900000px;}
.w6{width:32.220000px;}
.w5{width:40.356000px;}
.w4{width:94.500000px;}
.w8{width:95.760000px;}
.w7{width:100.296000px;}
.wa{width:139.176000px;}
.w9{width:149.292000px;}
.wb{width:167.430000px;}
.wc{width:233.670000px;}
.wd{width:276.555000px;}
.w3{width:722.879978px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x21{left:8.100000px;}
.x23{left:9.225030px;}
.x3d{left:10.260000px;}
.x1e{left:11.339985px;}
.x20{left:13.320015px;}
.x3e{left:14.760000px;}
.x29{left:15.885000px;}
.x1f{left:16.920000px;}
.x2a{left:18.045000px;}
.x2e{left:19.080000px;}
.x30{left:20.205000px;}
.x14{left:21.240015px;}
.x2b{left:23.265015px;}
.x12{left:25.200000px;}
.x3b{left:26.460015px;}
.x24{left:27.945000px;}
.x1d{left:29.339985px;}
.x9{left:30.403815px;}
.x28{left:32.220015px;}
.x2d{left:33.480000px;}
.x31{left:34.920000px;}
.x26{left:36.045000px;}
.x22{left:38.520000px;}
.x2f{left:40.185015px;}
.x25{left:42.165015px;}
.xf{left:44.100000px;}
.x1c{left:45.720000px;}
.x17{left:47.339985px;}
.x35{left:50.040000px;}
.x38{left:51.480015px;}
.xc{left:52.601625px;}
.xd{left:54.294765px;}
.x32{left:56.205000px;}
.x40{left:57.240015px;}
.x37{left:58.500000px;}
.x10{left:60.120000px;}
.xb{left:61.650315px;}
.x18{left:63.210000px;}
.x3a{left:64.800000px;}
.x3f{left:67.140000px;}
.x27{left:68.394000px;}
.x42{left:69.480015px;}
.x39{left:70.920000px;}
.xa{left:75.384915px;}
.x19{left:79.230000px;}
.x3c{left:80.640015px;}
.x1{left:84.995989px;}
.x41{left:86.580000px;}
.x4{left:89.315989px;}
.x7{left:91.655989px;}
.xe{left:106.235989px;}
.x47{left:111.995989px;}
.x45{left:130.359015px;}
.x5{left:157.349989px;}
.x11{left:180.750000px;}
.x33{left:182.009989px;}
.x2{left:213.734993px;}
.x3{left:218.594989px;}
.x13{left:221.474985px;}
.x34{left:225.615000px;}
.x46{left:231.705000px;}
.x15{left:254.055000px;}
.x44{left:271.688985px;}
.x16{left:286.635000px;}
.x6{left:301.034989px;}
.x2c{left:357.847500px;}
.x8{left:361.365000px;}
.x1a{left:387.285000px;}
.x36{left:393.404985px;}
.x1b{left:483.404985px;}
.x43{left:634.140004px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.559893pt;}
.ls17{letter-spacing:-0.624000pt;}
.ls1d{letter-spacing:-0.592000pt;}
.ls1c{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.409067pt;}
.ls9{letter-spacing:-0.379661pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.233886pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.096000pt;}
.ls25{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000053pt;}
.ls10{letter-spacing:0.016000pt;}
.ls23{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.050964pt;}
.ls24{letter-spacing:0.094933pt;}
.ls16{letter-spacing:0.112000pt;}
.ls11{letter-spacing:0.112053pt;}
.ls12{letter-spacing:0.159947pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.160107pt;}
.ls1f{letter-spacing:0.183467pt;}
.ls18{letter-spacing:0.207893pt;}
.lsf{letter-spacing:0.207947pt;}
.ls15{letter-spacing:0.208000pt;}
.ls13{letter-spacing:0.208053pt;}
.lsd{letter-spacing:0.231040pt;}
.ls21{letter-spacing:0.265600pt;}
.ls14{letter-spacing:0.288000pt;}
.ls1a{letter-spacing:0.319893pt;}
.ls2{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.320053pt;}
.lsa{letter-spacing:0.398184pt;}
.ls22{letter-spacing:0.480000pt;}
.lsb{letter-spacing:1.068806pt;}
.ls20{letter-spacing:14.672640pt;}
.ls1e{letter-spacing:40.912640pt;}
.ls3{letter-spacing:970.645333pt;}
.ws1a{word-spacing:-42.880000pt;}
.ws15{word-spacing:-16.000000pt;}
.ws13{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.511040pt;}
.ws1c{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.344000pt;}
.ws1d{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.960000pt;}
.ws1b{word-spacing:-12.870933pt;}
.ws17{word-spacing:-12.320000pt;}
.ws16{word-spacing:-12.016000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.904000pt;}
.ws4{word-spacing:-11.808000pt;}
.ws7{word-spacing:-11.582320pt;}
.ws9{word-spacing:-11.436073pt;}
.ws14{word-spacing:-11.376000pt;}
.wsc{word-spacing:-10.553764pt;}
.wsa{word-spacing:-10.478533pt;}
.ws19{word-spacing:-10.400000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws3{word-spacing:-8.000000pt;}
.wsd{word-spacing:0.000000pt;}
.ws10{word-spacing:2.615442pt;}
.wsf{word-spacing:3.286068pt;}
.wse{word-spacing:4.086623pt;}
.wsb{word-spacing:7.334034pt;}
.ws11{word-spacing:7.851053pt;}
.ws8{word-spacing:549.654846pt;}
._12{margin-left:-994.645333pt;}
._11{margin-left:-12.000000pt;}
._d{margin-left:-2.643413pt;}
._3{margin-left:-0.992000pt;}
._2{width:1.276800pt;}
._b{width:2.321120pt;}
._8{width:3.248000pt;}
._7{width:4.176000pt;}
._13{width:5.088640pt;}
._6{width:6.000000pt;}
._a{width:7.344000pt;}
._e{width:8.240427pt;}
._5{width:9.264000pt;}
._4{width:10.528000pt;}
._15{width:11.473920pt;}
._c{width:13.200000pt;}
._14{width:14.289280pt;}
._f{width:15.349760pt;}
._10{width:16.309760pt;}
._1{width:17.875200pt;}
._0{width:19.407360pt;}
._9{width:32.288000pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs8{font-size:40.800000pt;}
.fs9{font-size:41.914133pt;}
.fsa{font-size:42.011200pt;}
.fs0{font-size:42.880000pt;}
.fs7{font-size:47.262933pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fsb{font-size:53.333333pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:2.400013pt;}
.y88{bottom:2.559973pt;}
.ydc{bottom:2.559987pt;}
.y68{bottom:2.560000pt;}
.yb0{bottom:2.560013pt;}
.y10b{bottom:2.560053pt;}
.ya5{bottom:2.586667pt;}
.yd3{bottom:2.719973pt;}
.y10d{bottom:3.360027pt;}
.yc8{bottom:4.160000pt;}
.ybb{bottom:7.040000pt;}
.y54{bottom:8.320013pt;}
.y8e{bottom:9.440027pt;}
.y7b{bottom:9.600000pt;}
.y6a{bottom:9.920000pt;}
.y6c{bottom:10.080000pt;}
.y4e{bottom:10.240013pt;}
.y30{bottom:10.247600pt;}
.y52{bottom:11.040000pt;}
.ycb{bottom:11.200027pt;}
.y4f{bottom:12.480000pt;}
.y6b{bottom:12.800000pt;}
.y10a{bottom:13.760013pt;}
.y6d{bottom:15.200000pt;}
.y57{bottom:15.520000pt;}
.y7c{bottom:16.000000pt;}
.yc4{bottom:16.146667pt;}
.y14c{bottom:16.186667pt;}
.y87{bottom:16.319987pt;}
.yc1{bottom:16.320000pt;}
.yaf{bottom:16.320027pt;}
.y67{bottom:16.346653pt;}
.ya4{bottom:16.346680pt;}
.yd2{bottom:16.479973pt;}
.y79{bottom:16.480000pt;}
.y7f{bottom:17.280027pt;}
.y5a{bottom:17.466667pt;}
.yc6{bottom:18.080000pt;}
.y7e{bottom:18.399987pt;}
.y55{bottom:19.040000pt;}
.y5c{bottom:19.226667pt;}
.y56{bottom:19.840013pt;}
.y59{bottom:19.866653pt;}
.y53{bottom:20.480000pt;}
.y2e{bottom:22.122267pt;}
.y2f{bottom:22.228094pt;}
.ydd{bottom:23.200000pt;}
.yac{bottom:23.200027pt;}
.ybf{bottom:23.226680pt;}
.yd5{bottom:23.359947pt;}
.y74{bottom:23.360000pt;}
.y8d{bottom:23.360027pt;}
.y5b{bottom:24.826653pt;}
.yca{bottom:24.960040pt;}
.y6e{bottom:25.920000pt;}
.y2d{bottom:26.227600pt;}
.y70{bottom:26.720000pt;}
.y71{bottom:27.360000pt;}
.ya7{bottom:28.160027pt;}
.y51{bottom:28.480000pt;}
.ydb{bottom:30.080000pt;}
.yc0{bottom:30.106653pt;}
.y84{bottom:30.239987pt;}
.y78{bottom:30.240000pt;}
.yae{bottom:30.240027pt;}
.y64{bottom:30.266667pt;}
.ya3{bottom:30.266680pt;}
.yc5{bottom:31.840013pt;}
.y6f{bottom:32.640000pt;}
.yd8{bottom:36.960000pt;}
.ybe{bottom:36.986667pt;}
.yce{bottom:37.119960pt;}
.y73{bottom:37.120000pt;}
.yab{bottom:37.120027pt;}
.y8c{bottom:37.120040pt;}
.yc9{bottom:38.720053pt;}
.y1{bottom:39.840000pt;}
.y77{bottom:44.000000pt;}
.y62{bottom:44.026667pt;}
.ya2{bottom:44.026680pt;}
.yc7{bottom:45.600013pt;}
.ya8{bottom:46.560013pt;}
.y5d{bottom:47.386680pt;}
.y5e{bottom:48.026667pt;}
.y81{bottom:49.760013pt;}
.y72{bottom:50.880000pt;}
.yd7{bottom:50.880013pt;}
.y80{bottom:50.880040pt;}
.ybd{bottom:50.906667pt;}
.ycd{bottom:51.039960pt;}
.y90{bottom:54.586667pt;}
.y5f{bottom:56.666667pt;}
.y76{bottom:57.760000pt;}
.y83{bottom:57.760013pt;}
.y61{bottom:57.786667pt;}
.ya1{bottom:57.786693pt;}
.yd1{bottom:57.919920pt;}
.y8b{bottom:64.639973pt;}
.yaa{bottom:64.640013pt;}
.y9a{bottom:64.666667pt;}
.yd4{bottom:64.799960pt;}
.y7a{bottom:64.800000pt;}
.y29{bottom:69.120000pt;}
.yda{bottom:71.519987pt;}
.yc3{bottom:71.520000pt;}
.y82{bottom:71.520013pt;}
.y60{bottom:71.546667pt;}
.yd0{bottom:71.679933pt;}
.y75{bottom:71.680000pt;}
.y108{bottom:72.160000pt;}
.yc2{bottom:78.240000pt;}
.ya9{bottom:78.400013pt;}
.y8a{bottom:78.559973pt;}
.y99{bottom:78.586667pt;}
.y69{bottom:83.520000pt;}
.y28{bottom:83.840000pt;}
.y124{bottom:84.480000pt;}
.yd9{bottom:85.280000pt;}
.ycf{bottom:85.439947pt;}
.yad{bottom:85.440013pt;}
.y86{bottom:85.440027pt;}
.y63{bottom:85.466667pt;}
.y107{bottom:87.520000pt;}
.yf7{bottom:90.240000pt;}
.y89{bottom:92.319987pt;}
.y98{bottom:92.346680pt;}
.y85{bottom:99.200027pt;}
.ye1{bottom:99.226640pt;}
.y66{bottom:99.226667pt;}
.y94{bottom:99.226680pt;}
.y123{bottom:99.840000pt;}
.y106{bottom:102.880000pt;}
.yf6{bottom:105.600000pt;}
.y91{bottom:106.106680pt;}
.y27{bottom:107.520000pt;}
.ye0{bottom:112.986653pt;}
.y65{bottom:112.986667pt;}
.y93{bottom:112.986693pt;}
.y122{bottom:115.200000pt;}
.y105{bottom:118.240000pt;}
.y97{bottom:119.866693pt;}
.yf5{bottom:120.960000pt;}
.y26{bottom:122.720000pt;}
.ydf{bottom:126.746653pt;}
.y92{bottom:126.746693pt;}
.y104{bottom:133.600000pt;}
.y96{bottom:133.626667pt;}
.yf4{bottom:136.160000pt;}
.y25{bottom:138.080000pt;}
.ya0{bottom:140.666667pt;}
.y121{bottom:142.240000pt;}
.y95{bottom:147.546667pt;}
.y103{bottom:148.960000pt;}
.yf3{bottom:151.520000pt;}
.y14b{bottom:152.800000pt;}
.y24{bottom:153.440000pt;}
.y9f{bottom:154.426667pt;}
.ybc{bottom:161.760000pt;}
.y102{bottom:164.160000pt;}
.yf2{bottom:166.880000pt;}
.y58{bottom:167.040000pt;}
.y9e{bottom:168.186680pt;}
.y23{bottom:168.800000pt;}
.y14a{bottom:172.160000pt;}
.y101{bottom:179.520000pt;}
.y9d{bottom:181.986653pt;}
.yf1{bottom:182.266667pt;}
.y120{bottom:182.586667pt;}
.y22{bottom:184.186667pt;}
.y149{bottom:187.546667pt;}
.y100{bottom:194.906653pt;}
.y9c{bottom:195.906653pt;}
.y11f{bottom:196.346653pt;}
.yf0{bottom:197.626667pt;}
.y21{bottom:199.386653pt;}
.y148{bottom:202.906653pt;}
.y9b{bottom:209.666667pt;}
.yff{bottom:210.266667pt;}
.yef{bottom:212.986680pt;}
.y20{bottom:214.746667pt;}
.y147{bottom:222.266667pt;}
.y11e{bottom:224.346653pt;}
.yfe{bottom:225.626667pt;}
.yee{bottom:228.186667pt;}
.y1f{bottom:230.106667pt;}
.y11d{bottom:239.706667pt;}
.y146{bottom:241.466680pt;}
.yed{bottom:243.546667pt;}
.yba{bottom:245.146667pt;}
.y1e{bottom:245.466680pt;}
.yfd{bottom:252.666667pt;}
.y11c{bottom:254.906653pt;}
.y145{bottom:256.826667pt;}
.yec{bottom:258.906653pt;}
.y1d{bottom:260.826667pt;}
.y11b{bottom:270.266667pt;}
.y144{bottom:272.186667pt;}
.yeb{bottom:274.266667pt;}
.yb9{bottom:274.586667pt;}
.y1c{bottom:276.186667pt;}
.y11a{bottom:285.626667pt;}
.yea{bottom:289.626667pt;}
.y143{bottom:291.546667pt;}
.y4d{bottom:291.866653pt;}
.yfc{bottom:292.986680pt;}
.yb8{bottom:296.666667pt;}
.y119{bottom:300.986680pt;}
.y1b{bottom:303.226667pt;}
.ye9{bottom:304.986680pt;}
.y142{bottom:306.906653pt;}
.yb7{bottom:312.026667pt;}
.yfb{bottom:312.186667pt;}
.y118{bottom:316.346653pt;}
.ye8{bottom:320.186667pt;}
.y141{bottom:326.266667pt;}
.yb6{bottom:327.386653pt;}
.y117{bottom:331.546667pt;}
.ye7{bottom:335.546667pt;}
.y140{bottom:341.466680pt;}
.yb5{bottom:342.746667pt;}
.y116{bottom:346.906653pt;}
.ye6{bottom:350.906653pt;}
.y13f{bottom:356.866653pt;}
.yb4{bottom:358.146653pt;}
.y1a{bottom:358.786667pt;}
.y115{bottom:362.306680pt;}
.ye5{bottom:366.306680pt;}
.y19{bottom:372.546667pt;}
.yb3{bottom:372.866653pt;}
.y13e{bottom:376.226680pt;}
.y114{bottom:377.666667pt;}
.ye4{bottom:381.666667pt;}
.y4c{bottom:383.746667pt;}
.yb2{bottom:385.026653pt;}
.y18{bottom:386.306680pt;}
.y13d{bottom:391.586667pt;}
.y113{bottom:393.026653pt;}
.ye3{bottom:397.026653pt;}
.yb1{bottom:397.986653pt;}
.y17{bottom:400.066653pt;}
.y4b{bottom:405.826667pt;}
.y13c{bottom:406.946653pt;}
.y112{bottom:408.386680pt;}
.ya6{bottom:411.106653pt;}
.y16{bottom:413.986653pt;}
.y4a{bottom:421.186680pt;}
.y111{bottom:423.586667pt;}
.ye2{bottom:424.066653pt;}
.y13b{bottom:426.146653pt;}
.y15{bottom:427.746667pt;}
.y49{bottom:436.546667pt;}
.y14{bottom:441.506667pt;}
.y110{bottom:450.786667pt;}
.y48{bottom:451.746667pt;}
.y13{bottom:455.266680pt;}
.y13a{bottom:456.866653pt;}
.yde{bottom:462.466680pt;}
.y47{bottom:467.106653pt;}
.y12{bottom:469.186680pt;}
.y139{bottom:476.226680pt;}
.y46{bottom:482.466680pt;}
.y11{bottom:482.946653pt;}
.y10f{bottom:491.106653pt;}
.y138{bottom:491.586667pt;}
.y10{bottom:496.706667pt;}
.y45{bottom:497.826667pt;}
.y10e{bottom:505.186680pt;}
.y137{bottom:506.946653pt;}
.yf{bottom:510.466680pt;}
.y44{bottom:513.186680pt;}
.y8f{bottom:522.146653pt;}
.ye{bottom:524.413333pt;}
.y10c{bottom:525.693320pt;}
.y136{bottom:526.173333pt;}
.y43{bottom:528.573320pt;}
.yd{bottom:538.173333pt;}
.y135{bottom:541.533320pt;}
.y42{bottom:543.773320pt;}
.yc{bottom:551.933347pt;}
.y134{bottom:556.893347pt;}
.yfa{bottom:565.533320pt;}
.yb{bottom:565.693320pt;}
.y41{bottom:570.973347pt;}
.y133{bottom:576.253333pt;}
.yf9{bottom:580.893347pt;}
.y132{bottom:591.613320pt;}
.yf8{bottom:596.253333pt;}
.yd6{bottom:601.213333pt;}
.y131{bottom:606.973347pt;}
.ya{bottom:609.853347pt;}
.y40{bottom:611.613320pt;}
.y130{bottom:626.173333pt;}
.y3f{bottom:626.973347pt;}
.y9{bottom:627.613320pt;}
.y8{bottom:637.533320pt;}
.y12f{bottom:641.533320pt;}
.y3e{bottom:642.173333pt;}
.y7{bottom:651.293333pt;}
.y12e{bottom:656.893347pt;}
.y3d{bottom:657.533320pt;}
.y6{bottom:669.053347pt;}
.y3c{bottom:672.893347pt;}
.y12d{bottom:676.253333pt;}
.y4{bottom:686.653320pt;}
.y3b{bottom:688.253333pt;}
.y5{bottom:691.293293pt;}
.y12c{bottom:691.613360pt;}
.ycc{bottom:698.373373pt;}
.y3a{bottom:703.653320pt;}
.y12b{bottom:706.853347pt;}
.y109{bottom:708.293293pt;}
.y39{bottom:718.853347pt;}
.y12a{bottom:726.213293pt;}
.y3{bottom:726.373373pt;}
.y38{bottom:734.213293pt;}
.y129{bottom:741.573320pt;}
.y7d{bottom:743.653320pt;}
.y37{bottom:749.573320pt;}
.y2{bottom:750.853347pt;}
.y128{bottom:756.933347pt;}
.y36{bottom:764.933347pt;}
.y127{bottom:776.293293pt;}
.y35{bottom:780.293293pt;}
.y126{bottom:791.653320pt;}
.y34{bottom:795.653320pt;}
.y125{bottom:806.853347pt;}
.y33{bottom:810.853347pt;}
.y32{bottom:826.213293pt;}
.y31{bottom:841.573320pt;}
.y2a{bottom:895.840000pt;}
.y2c{bottom:903.547240pt;}
.y2b{bottom:920.599853pt;}
.h1f{height:18.240000pt;}
.h7{height:23.140625pt;}
.h6{height:24.991875pt;}
.h11{height:28.356000pt;}
.h12{height:29.130323pt;}
.h13{height:29.172243pt;}
.h14{height:29.281784pt;}
.h1e{height:29.940625pt;}
.h3{height:31.008437pt;}
.h18{height:33.515625pt;}
.h15{height:33.867188pt;}
.h8{height:34.710938pt;}
.hd{height:35.853438pt;}
.h9{height:36.093750pt;}
.hb{height:37.090625pt;}
.h26{height:37.479688pt;}
.h2b{height:38.413438pt;}
.h2a{height:38.672812pt;}
.he{height:43.031250pt;}
.h5{height:43.551768pt;}
.h29{height:44.093750pt;}
.h19{height:46.281049pt;}
.hc{height:46.281250pt;}
.ha{height:48.125000pt;}
.hf{height:48.344560pt;}
.h10{height:49.125000pt;}
.h1b{height:53.697917pt;}
.h22{height:58.400000pt;}
.h4{height:64.006250pt;}
.h16{height:80.672000pt;}
.h21{height:82.720000pt;}
.h20{height:82.752000pt;}
.h1a{height:82.880000pt;}
.h24{height:96.512000pt;}
.h23{height:96.640000pt;}
.h1c{height:110.400000pt;}
.h17{height:124.192000pt;}
.h25{height:137.946667pt;}
.h27{height:145.760000pt;}
.h28{height:182.586667pt;}
.h1d{height:220.866653pt;}
.h1{height:944.666667pt;}
.h2{height:944.799892pt;}
.h0{height:944.800000pt;}
.w6{width:28.640000pt;}
.w5{width:35.872000pt;}
.w4{width:84.000000pt;}
.w8{width:85.120000pt;}
.w7{width:89.152000pt;}
.wa{width:123.712000pt;}
.w9{width:132.704000pt;}
.wb{width:148.826667pt;}
.wc{width:207.706667pt;}
.wd{width:245.826667pt;}
.w3{width:642.559981pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x21{left:7.200000pt;}
.x23{left:8.200027pt;}
.x3d{left:9.120000pt;}
.x1e{left:10.079987pt;}
.x20{left:11.840013pt;}
.x3e{left:13.120000pt;}
.x29{left:14.120000pt;}
.x1f{left:15.040000pt;}
.x2a{left:16.040000pt;}
.x2e{left:16.960000pt;}
.x30{left:17.960000pt;}
.x14{left:18.880013pt;}
.x2b{left:20.680013pt;}
.x12{left:22.400000pt;}
.x3b{left:23.520013pt;}
.x24{left:24.840000pt;}
.x1d{left:26.079987pt;}
.x9{left:27.025613pt;}
.x28{left:28.640013pt;}
.x2d{left:29.760000pt;}
.x31{left:31.040000pt;}
.x26{left:32.040000pt;}
.x22{left:34.240000pt;}
.x2f{left:35.720013pt;}
.x25{left:37.480013pt;}
.xf{left:39.200000pt;}
.x1c{left:40.640000pt;}
.x17{left:42.079987pt;}
.x35{left:44.480000pt;}
.x38{left:45.760013pt;}
.xc{left:46.757000pt;}
.xd{left:48.262013pt;}
.x32{left:49.960000pt;}
.x40{left:50.880013pt;}
.x37{left:52.000000pt;}
.x10{left:53.440000pt;}
.xb{left:54.800280pt;}
.x18{left:56.186667pt;}
.x3a{left:57.600000pt;}
.x3f{left:59.680000pt;}
.x27{left:60.794667pt;}
.x42{left:61.760013pt;}
.x39{left:63.040000pt;}
.xa{left:67.008813pt;}
.x19{left:70.426667pt;}
.x3c{left:71.680013pt;}
.x1{left:75.551990pt;}
.x41{left:76.960000pt;}
.x4{left:79.391990pt;}
.x7{left:81.471990pt;}
.xe{left:94.431990pt;}
.x47{left:99.551990pt;}
.x45{left:115.874680pt;}
.x5{left:139.866657pt;}
.x11{left:160.666667pt;}
.x33{left:161.786657pt;}
.x2{left:189.986661pt;}
.x3{left:194.306657pt;}
.x13{left:196.866653pt;}
.x34{left:200.546667pt;}
.x46{left:205.960000pt;}
.x15{left:225.826667pt;}
.x44{left:241.501320pt;}
.x16{left:254.786667pt;}
.x6{left:267.586657pt;}
.x2c{left:318.086667pt;}
.x8{left:321.213333pt;}
.x1a{left:344.253333pt;}
.x36{left:349.693320pt;}
.x1b{left:429.693320pt;}
.x43{left:563.680004pt;}
}




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