
    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_3a776e92d5765ddb641dec58.woff')format("woff");}.ff1{font-family:ff1;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5405b528521db698061500c7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.675781;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_c5c766a93c864c4e0587e7cd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_9ef1193bfc214dc37f7597ad.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ebbea300bfaf0ffb047b93f3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_89c12bfe6feadba62c4c4fd7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_d08deef1ca19c3bb35f9a2e5.woff')format("woff");}.ff7{font-family:ff7;line-height:0.850586;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_4d3ceeb70302f20bf75ec6f7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.841309;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_9e0025e541c20cbc3a4446af.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_fb1084144b5cf58249db6958.woff')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_7478c959b7bf28fbfd2bcaa0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.959473;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_0cd2dd34209c50c31c20aff2.woff')format("woff");}.ffc{font-family:ffc;line-height:0.850586;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_f1d4c23850ec827165410384.woff')format("woff");}.ffd{font-family:ffd;line-height:0.949707;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_ae3ed59938c3ad7fe00c8f46.woff')format("woff");}.ffe{font-family:ffe;line-height:0.958008;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_b749b7fa5bfc098dd09dbe33.woff')format("woff");}.fff{font-family:fff;line-height:0.949707;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.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);}
.m1{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m3{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,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);}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-0.405216px;}
.ls29{letter-spacing:-0.368928px;}
.ls2b{letter-spacing:-0.362880px;}
.ls25{letter-spacing:-0.350784px;}
.ls27{letter-spacing:-0.338688px;}
.ls26{letter-spacing:-0.314496px;}
.ls28{letter-spacing:-0.296352px;}
.lsb{letter-spacing:-0.290304px;}
.ls1f{letter-spacing:-0.278208px;}
.lsd{letter-spacing:-0.266112px;}
.ls8{letter-spacing:-0.260064px;}
.lse{letter-spacing:-0.254016px;}
.ls9{letter-spacing:-0.247968px;}
.ls22{letter-spacing:-0.241920px;}
.ls7{letter-spacing:-0.217728px;}
.lsa{letter-spacing:-0.157248px;}
.ls24{letter-spacing:-0.145152px;}
.ls21{letter-spacing:-0.139104px;}
.lsc{letter-spacing:-0.127008px;}
.ls2a{letter-spacing:-0.108864px;}
.ls23{letter-spacing:-0.090720px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.125280px;}
.ls1c{letter-spacing:0.137808px;}
.ls15{letter-spacing:0.185328px;}
.ls18{letter-spacing:0.194832px;}
.ls1e{letter-spacing:0.204336px;}
.ls5{letter-spacing:0.225504px;}
.ls17{letter-spacing:0.256608px;}
.ls0{letter-spacing:0.257760px;}
.ls14{letter-spacing:0.261360px;}
.ls1{letter-spacing:0.266112px;}
.ls11{letter-spacing:0.270864px;}
.ls1d{letter-spacing:0.275616px;}
.ls2{letter-spacing:0.280368px;}
.ls12{letter-spacing:0.285120px;}
.lsf{letter-spacing:0.289872px;}
.ls13{letter-spacing:0.294624px;}
.ls10{letter-spacing:0.299376px;}
.ls4{letter-spacing:0.300672px;}
.ls1b{letter-spacing:0.332640px;}
.ls1a{letter-spacing:0.342144px;}
.ls19{letter-spacing:0.346896px;}
.ls16{letter-spacing:0.384912px;}
.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;}
}
.ws0{word-spacing:-17.180064px;}
.ws28{word-spacing:-16.677481px;}
.ws27{word-spacing:-15.002656px;}
.ws15{word-spacing:-12.277440px;}
.ws16{word-spacing:-12.138336px;}
.ws17{word-spacing:-12.132288px;}
.ws1a{word-spacing:-12.059712px;}
.ws1d{word-spacing:-12.035520px;}
.ws1b{word-spacing:-12.029472px;}
.ws1{word-spacing:-12.017376px;}
.ws14{word-spacing:-11.999232px;}
.ws19{word-spacing:-11.962944px;}
.ws1e{word-spacing:-11.938752px;}
.ws18{word-spacing:-11.926656px;}
.ws1c{word-spacing:-11.908512px;}
.ws20{word-spacing:-11.872224px;}
.ws1f{word-spacing:-10.448609px;}
.ws6{word-spacing:-10.031472px;}
.wsa{word-spacing:-9.993456px;}
.wsb{word-spacing:-9.988704px;}
.wsc{word-spacing:-9.979200px;}
.ws3{word-spacing:-9.941184px;}
.ws12{word-spacing:-9.936432px;}
.ws9{word-spacing:-9.931680px;}
.wse{word-spacing:-9.926928px;}
.ws10{word-spacing:-9.922176px;}
.wsd{word-spacing:-9.912672px;}
.ws4{word-spacing:-9.907920px;}
.ws7{word-spacing:-9.903168px;}
.ws11{word-spacing:-9.850896px;}
.ws8{word-spacing:-9.841392px;}
.ws5{word-spacing:-9.831888px;}
.wsf{word-spacing:-9.784368px;}
.ws2{word-spacing:-9.646560px;}
.ws23{word-spacing:-8.961528px;}
.ws13{word-spacing:0.000000px;}
.ws22{word-spacing:79.461035px;}
.ws26{word-spacing:104.121356px;}
.ws25{word-spacing:127.556720px;}
.ws21{word-spacing:188.030920px;}
.ws24{word-spacing:194.585515px;}
._c{margin-left:-9.360000px;}
._a{margin-left:-6.475967px;}
._2{margin-left:-5.346157px;}
._5{margin-left:-3.868286px;}
._9{margin-left:-2.363208px;}
._1{margin-left:-1.043280px;}
._0{width:1.014048px;}
._b{width:2.640000px;}
._4{width:103.379935px;}
._3{width:115.307149px;}
._8{width:128.040256px;}
._7{width:151.421894px;}
._6{width:175.319303px;}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(77,77,77);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:32.235714px;}
.fs4{font-size:37.584924px;}
.fs5{font-size:41.787036px;}
.fs8{font-size:42.980952px;}
.fs3{font-size:47.520000px;}
.fs6{font-size:50.144443px;}
.fs9{font-size:53.726190px;}
.fsc{font-size:53.966390px;}
.fsb{font-size:54.000000px;}
.fs7{font-size:54.323147px;}
.fsf{font-size:59.990939px;}
.fs10{font-size:60.000000px;}
.fs2{font-size:60.480000px;}
.fsd{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fse{font-size:78.000000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y99{bottom:3.398179px;}
.ya7{bottom:3.398182px;}
.y1d{bottom:3.660000px;}
.y17{bottom:3.840000px;}
.y22{bottom:4.320000px;}
.y25{bottom:4.440000px;}
.y14{bottom:4.500000px;}
.y1a{bottom:4.680000px;}
.y11{bottom:4.740000px;}
.y2c{bottom:4.860000px;}
.y2a{bottom:4.920000px;}
.y4{bottom:5.340000px;}
.y6{bottom:6.000000px;}
.ya2{bottom:6.742655px;}
.yb0{bottom:6.742658px;}
.y60{bottom:7.020000px;}
.y51{bottom:7.080000px;}
.y4d{bottom:7.140000px;}
.y7f{bottom:7.187370px;}
.y38{bottom:7.380000px;}
.y34{bottom:7.440000px;}
.y57{bottom:7.560000px;}
.y53{bottom:7.620000px;}
.y42{bottom:7.800000px;}
.y3e{bottom:7.860000px;}
.y4f{bottom:8.040000px;}
.y4b{bottom:8.100000px;}
.y3a{bottom:8.280000px;}
.y36{bottom:8.340000px;}
.y83{bottom:8.430535px;}
.y59{bottom:8.460000px;}
.y55{bottom:8.520000px;}
.y40{bottom:8.760000px;}
.y3c{bottom:8.820000px;}
.ybc{bottom:10.320000px;}
.yce{bottom:10.560000px;}
.y65{bottom:10.680000px;}
.y63{bottom:10.800000px;}
.y61{bottom:10.920000px;}
.yd{bottom:13.740000px;}
.y7e{bottom:14.416527px;}
.ya1{bottom:16.373074px;}
.yaf{bottom:16.373077px;}
.y20{bottom:18.240000px;}
.y1c{bottom:18.420000px;}
.y16{bottom:18.600000px;}
.y24{bottom:18.840000px;}
.y19{bottom:19.080000px;}
.y13{bottom:19.260000px;}
.ya4{bottom:19.462312px;}
.y10{bottom:19.500000px;}
.y5{bottom:21.000000px;}
.y2b{bottom:22.500000px;}
.ya0{bottom:26.003494px;}
.yae{bottom:26.003497px;}
.y81{bottom:28.080888px;}
.y5f{bottom:28.260000px;}
.y33{bottom:28.680000px;}
.y4a{bottom:28.980000px;}
.y84{bottom:29.647902px;}
.yf{bottom:33.900000px;}
.y9f{bottom:35.633914px;}
.yad{bottom:35.633917px;}
.y82{bottom:37.608332px;}
.ybe{bottom:40.320000px;}
.ybf{bottom:42.570000px;}
.yd0{bottom:43.875000px;}
.y9e{bottom:45.264333px;}
.yac{bottom:45.264336px;}
.yd1{bottom:46.380000px;}
.yb1{bottom:50.220556px;}
.y80{bottom:51.324927px;}
.ya5{bottom:53.269517px;}
.y9d{bottom:54.894753px;}
.yab{bottom:54.894756px;}
.y2{bottom:57.960000px;}
.y28{bottom:58.320000px;}
.y9c{bottom:64.525172px;}
.yaa{bottom:64.525175px;}
.ybd{bottom:73.695000px;}
.ycf{bottom:80.970000px;}
.y85{bottom:106.974812px;}
.y8c{bottom:107.685192px;}
.y9a{bottom:110.407317px;}
.ya8{bottom:110.407320px;}
.y8a{bottom:129.550258px;}
.yb7{bottom:133.125000px;}
.yd2{bottom:140.760000px;}
.y86{bottom:154.779181px;}
.y8d{bottom:165.006558px;}
.y87{bottom:202.593997px;}
.y69{bottom:218.880000px;}
.y8e{bottom:222.317478px;}
.y68{bottom:244.080000px;}
.yb8{bottom:246.300000px;}
.y88{bottom:250.408813px;}
.yc8{bottom:255.780000px;}
.y67{bottom:261.000000px;}
.yd3{bottom:265.245000px;}
.yd6{bottom:272.550000px;}
.y8f{bottom:279.628398px;}
.yc7{bottom:281.700000px;}
.y66{bottom:285.000000px;}
.yc0{bottom:293.820000px;}
.y89{bottom:298.223629px;}
.yc6{bottom:307.620000px;}
.y64{bottom:309.000000px;}
.y98{bottom:309.476283px;}
.ya6{bottom:309.476286px;}
.y8b{bottom:323.003342px;}
.y94{bottom:327.240000px;}
.y62{bottom:333.000000px;}
.yc5{bottom:333.540000px;}
.y26{bottom:340.560000px;}
.y6f{bottom:345.662362px;}
.y73{bottom:346.905526px;}
.y93{bottom:352.440000px;}
.y6e{bottom:352.891519px;}
.y23{bottom:357.000000px;}
.y95{bottom:357.937309px;}
.yb9{bottom:359.460000px;}
.y71{bottom:366.555880px;}
.y74{bottom:368.122894px;}
.y72{bottom:376.083324px;}
.y92{bottom:376.200000px;}
.y5e{bottom:382.500000px;}
.yc4{bottom:385.380000px;}
.y96{bottom:385.834633px;}
.y21{bottom:387.000000px;}
.yd4{bottom:389.730000px;}
.y70{bottom:389.799919px;}
.ya3{bottom:392.792175px;}
.y91{bottom:397.440000px;}
.yc3{bottom:411.300000px;}
.y1f{bottom:417.000000px;}
.y90{bottom:418.320000px;}
.ycd{bottom:419.400000px;}
.yb6{bottom:419.760000px;}
.y79{bottom:425.684536px;}
.y5d{bottom:432.360000px;}
.yc2{bottom:437.220000px;}
.y6c{bottom:439.560000px;}
.ycc{bottom:444.600000px;}
.yb5{bottom:444.960000px;}
.y1e{bottom:445.500000px;}
.y5c{bottom:453.600000px;}
.y6b{bottom:460.440000px;}
.yc1{bottom:463.140000px;}
.y77{bottom:468.025250px;}
.ycb{bottom:468.360000px;}
.yb4{bottom:469.080000px;}
.yba{bottom:472.620000px;}
.y1b{bottom:475.500000px;}
.y5b{bottom:475.920000px;}
.y7a{bottom:476.831868px;}
.y6a{bottom:477.720000px;}
.y6d{bottom:477.930000px;}
.yca{bottom:489.600000px;}
.yb3{bottom:489.960000px;}
.y75{bottom:493.818298px;}
.y5a{bottom:501.120000px;}
.y18{bottom:504.000000px;}
.yb2{bottom:506.880000px;}
.yd5{bottom:514.230000px;}
.y58{bottom:517.500000px;}
.ya9{bottom:526.283550px;}
.y7b{bottom:527.968753px;}
.y15{bottom:534.000000px;}
.y56{bottom:540.000000px;}
.y54{bottom:561.000000px;}
.y12{bottom:562.500000px;}
.y76{bottom:574.916488px;}
.y7c{bottom:579.116085px;}
.y52{bottom:583.500000px;}
.ybb{bottom:585.795000px;}
.ye{bottom:592.500000px;}
.y50{bottom:606.000000px;}
.yc9{bottom:625.785000px;}
.y4e{bottom:627.000000px;}
.y7d{bottom:630.252970px;}
.yc{bottom:637.500000px;}
.y4c{bottom:649.500000px;}
.y78{bottom:661.478333px;}
.yb{bottom:669.600000px;}
.y49{bottom:670.500000px;}
.ya{bottom:690.840000px;}
.y9{bottom:713.160000px;}
.y48{bottom:721.440000px;}
.y8{bottom:738.360000px;}
.y47{bottom:742.320000px;}
.y46{bottom:763.560000px;}
.y7{bottom:765.000000px;}
.y45{bottom:784.440000px;}
.y44{bottom:806.760000px;}
.y97{bottom:816.405000px;}
.y1{bottom:822.960000px;}
.y43{bottom:832.320000px;}
.y3{bottom:847.500000px;}
.y41{bottom:849.000000px;}
.y9b{bottom:864.758550px;}
.y3f{bottom:870.000000px;}
.y3d{bottom:892.500000px;}
.y3b{bottom:913.500000px;}
.y39{bottom:936.000000px;}
.y37{bottom:958.500000px;}
.y35{bottom:979.500000px;}
.y32{bottom:1002.000000px;}
.y31{bottom:1052.280000px;}
.y30{bottom:1073.520000px;}
.y2f{bottom:1094.400000px;}
.y2e{bottom:1115.640000px;}
.y2d{bottom:1137.960000px;}
.y27{bottom:1193.040000px;}
.y29{bottom:1218.000000px;}
.hf{height:21.000000px;}
.h3{height:22.500000px;}
.h19{height:23.751803px;}
.h4{height:24.000000px;}
.h7{height:25.500000px;}
.h11{height:27.693189px;}
.hb{height:30.000000px;}
.h12{height:30.789374px;}
.ha{height:31.500000px;}
.h15{height:31.669071px;}
.h8{height:31.672266px;}
.h13{height:36.947248px;}
.h1c{height:39.684269px;}
.h1b{height:39.708984px;}
.h1e{height:39.788086px;}
.h17{height:39.848673px;}
.h14{height:40.026186px;}
.h6{height:40.310156px;}
.he{height:43.500000px;}
.h20{height:44.114431px;}
.h21{height:44.121094px;}
.h9{height:46.500000px;}
.h2{height:47.988281px;}
.h1d{height:48.533203px;}
.h22{height:52.945312px;}
.h5{height:55.666406px;}
.h1f{height:57.357422px;}
.h18{height:241.767900px;}
.h16{height:338.475000px;}
.h1a{height:648.000000px;}
.h10{height:676.950000px;}
.h1{height:892.500000px;}
.h0{height:892.800000px;}
.hc{height:1262.880000px;}
.hd{height:1263.000000px;}
.w8{width:55.500000px;}
.wc{width:57.000000px;}
.wa{width:58.500000px;}
.wf{width:60.000000px;}
.wd{width:63.000000px;}
.w18{width:64.500000px;}
.w2{width:67.500000px;}
.w9{width:70.500000px;}
.wb{width:72.000000px;}
.we{width:78.000000px;}
.w14{width:84.000000px;}
.w3{width:85.500000px;}
.w17{width:90.000000px;}
.w16{width:91.500000px;}
.w15{width:96.000000px;}
.w13{width:102.000000px;}
.w1b{width:105.000000px;}
.w12{width:108.000000px;}
.w19{width:111.000000px;}
.w1d{width:123.000000px;}
.w1a{width:147.000000px;}
.w1c{width:198.000000px;}
.w5{width:235.500000px;}
.w4{width:237.000000px;}
.w20{width:241.767900px;}
.w6{width:244.500000px;}
.w7{width:252.000000px;}
.w1f{width:338.475000px;}
.w21{width:648.000000px;}
.w1e{width:676.950000px;}
.w11{width:892.500000px;}
.w10{width:892.800000px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x3{left:1.320000px;}
.x3a{left:5.212933px;}
.xd{left:7.920036px;}
.x14{left:8.963364px;}
.x10{left:11.505636px;}
.xf{left:13.286880px;}
.x17{left:14.390760px;}
.x15{left:16.152816px;}
.x18{left:17.712840px;}
.x12{left:20.150388px;}
.x24{left:21.467280px;}
.x25{left:22.786920px;}
.x20{left:23.810280px;}
.x23{left:25.582032px;}
.x60{left:27.810000px;}
.x56{left:29.092732px;}
.x41{left:31.308937px;}
.x3b{left:39.843939px;}
.x4{left:42.382332px;}
.x4c{left:46.623885px;}
.x67{left:57.465000px;}
.x64{left:61.470000px;}
.x6{left:82.361220px;}
.x8{left:84.484080px;}
.xa{left:92.270160px;}
.xc{left:96.330600px;}
.x1{left:108.000000px;}
.x57{left:124.456719px;}
.x3c{left:125.852106px;}
.x5d{left:128.566770px;}
.x4d{left:131.420228px;}
.x3d{left:144.468230px;}
.x4e{left:148.824529px;}
.x58{left:156.353550px;}
.x59{left:161.527811px;}
.x61{left:167.595000px;}
.x5{left:192.000000px;}
.xe{left:193.500000px;}
.x3e{left:195.876731px;}
.x4f{left:199.021206px;}
.x2e{left:204.000000px;}
.x3f{left:208.559097px;}
.x50{left:210.502194px;}
.x62{left:213.390000px;}
.x27{left:214.500000px;}
.x35{left:217.500000px;}
.x11{left:247.500000px;}
.x65{left:256.470000px;}
.x40{left:271.647074px;}
.x2f{left:294.000000px;}
.x28{left:315.000000px;}
.x13{left:316.500000px;}
.x51{left:351.679695px;}
.x4a{left:353.204922px;}
.x42{left:356.997095px;}
.x49{left:358.825278px;}
.x36{left:363.000000px;}
.x5b{left:367.567729px;}
.x16{left:370.500000px;}
.x55{left:378.496525px;}
.x4b{left:384.304923px;}
.x30{left:385.500000px;}
.x43{left:389.622324px;}
.x26{left:412.500000px;}
.x29{left:417.000000px;}
.x5a{left:420.783520px;}
.x7{left:427.500000px;}
.x5c{left:446.475000px;}
.x63{left:452.775000px;}
.x37{left:466.500000px;}
.x52{left:469.895220px;}
.x44{left:473.603819px;}
.x31{left:475.500000px;}
.x19{left:481.500000px;}
.x2a{left:487.500000px;}
.x45{left:490.203719px;}
.x5e{left:494.828550px;}
.x66{left:499.185000px;}
.x53{left:537.496197px;}
.x46{left:539.595996px;}
.x54{left:548.977185px;}
.x47{left:550.262137px;}
.x1a{left:552.000000px;}
.x2b{left:559.500000px;}
.x32{left:565.500000px;}
.x2{left:597.000000px;}
.x1b{left:606.000000px;}
.x48{left:611.323443px;}
.x2c{left:630.000000px;}
.x33{left:657.000000px;}
.x9{left:661.500000px;}
.x38{left:663.000000px;}
.x2d{left:712.500000px;}
.x34{left:720.000000px;}
.x1c{left:723.000000px;}
.x5f{left:756.000000px;}
.x39{left:784.800000px;}
.x1d{left:793.500000px;}
.x1e{left:847.500000px;}
.xb{left:904.500000px;}
.x1f{left:966.000000px;}
.x21{left:1042.500000px;}
.x22{left:1096.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-0.360192pt;}
.ls29{letter-spacing:-0.327936pt;}
.ls2b{letter-spacing:-0.322560pt;}
.ls25{letter-spacing:-0.311808pt;}
.ls27{letter-spacing:-0.301056pt;}
.ls26{letter-spacing:-0.279552pt;}
.ls28{letter-spacing:-0.263424pt;}
.lsb{letter-spacing:-0.258048pt;}
.ls1f{letter-spacing:-0.247296pt;}
.lsd{letter-spacing:-0.236544pt;}
.ls8{letter-spacing:-0.231168pt;}
.lse{letter-spacing:-0.225792pt;}
.ls9{letter-spacing:-0.220416pt;}
.ls22{letter-spacing:-0.215040pt;}
.ls7{letter-spacing:-0.193536pt;}
.lsa{letter-spacing:-0.139776pt;}
.ls24{letter-spacing:-0.129024pt;}
.ls21{letter-spacing:-0.123648pt;}
.lsc{letter-spacing:-0.112896pt;}
.ls2a{letter-spacing:-0.096768pt;}
.ls23{letter-spacing:-0.080640pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.111360pt;}
.ls1c{letter-spacing:0.122496pt;}
.ls15{letter-spacing:0.164736pt;}
.ls18{letter-spacing:0.173184pt;}
.ls1e{letter-spacing:0.181632pt;}
.ls5{letter-spacing:0.200448pt;}
.ls17{letter-spacing:0.228096pt;}
.ls0{letter-spacing:0.229120pt;}
.ls14{letter-spacing:0.232320pt;}
.ls1{letter-spacing:0.236544pt;}
.ls11{letter-spacing:0.240768pt;}
.ls1d{letter-spacing:0.244992pt;}
.ls2{letter-spacing:0.249216pt;}
.ls12{letter-spacing:0.253440pt;}
.lsf{letter-spacing:0.257664pt;}
.ls13{letter-spacing:0.261888pt;}
.ls10{letter-spacing:0.266112pt;}
.ls4{letter-spacing:0.267264pt;}
.ls1b{letter-spacing:0.295680pt;}
.ls1a{letter-spacing:0.304128pt;}
.ls19{letter-spacing:0.308352pt;}
.ls16{letter-spacing:0.342144pt;}
.ws0{word-spacing:-15.271168pt;}
.ws28{word-spacing:-14.824428pt;}
.ws27{word-spacing:-13.335694pt;}
.ws15{word-spacing:-10.913280pt;}
.ws16{word-spacing:-10.789632pt;}
.ws17{word-spacing:-10.784256pt;}
.ws1a{word-spacing:-10.719744pt;}
.ws1d{word-spacing:-10.698240pt;}
.ws1b{word-spacing:-10.692864pt;}
.ws1{word-spacing:-10.682112pt;}
.ws14{word-spacing:-10.665984pt;}
.ws19{word-spacing:-10.633728pt;}
.ws1e{word-spacing:-10.612224pt;}
.ws18{word-spacing:-10.601472pt;}
.ws1c{word-spacing:-10.585344pt;}
.ws20{word-spacing:-10.553088pt;}
.ws1f{word-spacing:-9.287652pt;}
.ws6{word-spacing:-8.916864pt;}
.wsa{word-spacing:-8.883072pt;}
.wsb{word-spacing:-8.878848pt;}
.wsc{word-spacing:-8.870400pt;}
.ws3{word-spacing:-8.836608pt;}
.ws12{word-spacing:-8.832384pt;}
.ws9{word-spacing:-8.828160pt;}
.wse{word-spacing:-8.823936pt;}
.ws10{word-spacing:-8.819712pt;}
.wsd{word-spacing:-8.811264pt;}
.ws4{word-spacing:-8.807040pt;}
.ws7{word-spacing:-8.802816pt;}
.ws11{word-spacing:-8.756352pt;}
.ws8{word-spacing:-8.747904pt;}
.ws5{word-spacing:-8.739456pt;}
.wsf{word-spacing:-8.697216pt;}
.ws2{word-spacing:-8.574720pt;}
.ws23{word-spacing:-7.965803pt;}
.ws13{word-spacing:0.000000pt;}
.ws22{word-spacing:70.632031pt;}
.ws26{word-spacing:92.552317pt;}
.ws25{word-spacing:113.383751pt;}
.ws21{word-spacing:167.138595pt;}
.ws24{word-spacing:172.964902pt;}
._c{margin-left:-8.320000pt;}
._a{margin-left:-5.756415pt;}
._2{margin-left:-4.752140pt;}
._5{margin-left:-3.438476pt;}
._9{margin-left:-2.100629pt;}
._1{margin-left:-0.927360pt;}
._0{width:0.901376pt;}
._b{width:2.346667pt;}
._4{width:91.893275pt;}
._3{width:102.495244pt;}
._8{width:113.813561pt;}
._7{width:134.597239pt;}
._6{width:155.839381pt;}
.fsa{font-size:28.653968pt;}
.fs4{font-size:33.408822pt;}
.fs5{font-size:37.144032pt;}
.fs8{font-size:38.205291pt;}
.fs3{font-size:42.240000pt;}
.fs6{font-size:44.572838pt;}
.fs9{font-size:47.756613pt;}
.fsc{font-size:47.970124pt;}
.fsb{font-size:48.000000pt;}
.fs7{font-size:48.287242pt;}
.fsf{font-size:53.325279pt;}
.fs10{font-size:53.333333pt;}
.fs2{font-size:53.760000pt;}
.fsd{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fse{font-size:69.333333pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:3.020603pt;}
.ya7{bottom:3.020606pt;}
.y1d{bottom:3.253333pt;}
.y17{bottom:3.413333pt;}
.y22{bottom:3.840000pt;}
.y25{bottom:3.946667pt;}
.y14{bottom:4.000000pt;}
.y1a{bottom:4.160000pt;}
.y11{bottom:4.213333pt;}
.y2c{bottom:4.320000pt;}
.y2a{bottom:4.373333pt;}
.y4{bottom:4.746667pt;}
.y6{bottom:5.333333pt;}
.ya2{bottom:5.993471pt;}
.yb0{bottom:5.993474pt;}
.y60{bottom:6.240000pt;}
.y51{bottom:6.293333pt;}
.y4d{bottom:6.346667pt;}
.y7f{bottom:6.388774pt;}
.y38{bottom:6.560000pt;}
.y34{bottom:6.613333pt;}
.y57{bottom:6.720000pt;}
.y53{bottom:6.773333pt;}
.y42{bottom:6.933333pt;}
.y3e{bottom:6.986667pt;}
.y4f{bottom:7.146667pt;}
.y4b{bottom:7.200000pt;}
.y3a{bottom:7.360000pt;}
.y36{bottom:7.413333pt;}
.y83{bottom:7.493808pt;}
.y59{bottom:7.520000pt;}
.y55{bottom:7.573333pt;}
.y40{bottom:7.786667pt;}
.y3c{bottom:7.840000pt;}
.ybc{bottom:9.173333pt;}
.yce{bottom:9.386667pt;}
.y65{bottom:9.493333pt;}
.y63{bottom:9.600000pt;}
.y61{bottom:9.706667pt;}
.yd{bottom:12.213333pt;}
.y7e{bottom:12.814691pt;}
.ya1{bottom:14.553844pt;}
.yaf{bottom:14.553847pt;}
.y20{bottom:16.213333pt;}
.y1c{bottom:16.373333pt;}
.y16{bottom:16.533333pt;}
.y24{bottom:16.746667pt;}
.y19{bottom:16.960000pt;}
.y13{bottom:17.120000pt;}
.ya4{bottom:17.299833pt;}
.y10{bottom:17.333333pt;}
.y5{bottom:18.666667pt;}
.y2b{bottom:20.000000pt;}
.ya0{bottom:23.114217pt;}
.yae{bottom:23.114220pt;}
.y81{bottom:24.960790pt;}
.y5f{bottom:25.120000pt;}
.y33{bottom:25.493333pt;}
.y4a{bottom:25.760000pt;}
.y84{bottom:26.353691pt;}
.yf{bottom:30.133333pt;}
.y9f{bottom:31.674590pt;}
.yad{bottom:31.674592pt;}
.y82{bottom:33.429629pt;}
.ybe{bottom:35.840000pt;}
.ybf{bottom:37.840000pt;}
.yd0{bottom:39.000000pt;}
.y9e{bottom:40.234963pt;}
.yac{bottom:40.234965pt;}
.yd1{bottom:41.226667pt;}
.yb1{bottom:44.640494pt;}
.y80{bottom:45.622157pt;}
.ya5{bottom:47.350682pt;}
.y9d{bottom:48.795336pt;}
.yab{bottom:48.795338pt;}
.y2{bottom:51.520000pt;}
.y28{bottom:51.840000pt;}
.y9c{bottom:57.355709pt;}
.yaa{bottom:57.355711pt;}
.ybd{bottom:65.506667pt;}
.ycf{bottom:71.973333pt;}
.y85{bottom:95.088722pt;}
.y8c{bottom:95.720170pt;}
.y9a{bottom:98.139838pt;}
.ya8{bottom:98.139840pt;}
.y8a{bottom:115.155785pt;}
.yb7{bottom:118.333333pt;}
.yd2{bottom:125.120000pt;}
.y86{bottom:137.581495pt;}
.y8d{bottom:146.672496pt;}
.y87{bottom:180.083553pt;}
.y69{bottom:194.560000pt;}
.y8e{bottom:197.615536pt;}
.y68{bottom:216.960000pt;}
.yb8{bottom:218.933333pt;}
.y88{bottom:222.585612pt;}
.yc8{bottom:227.360000pt;}
.y67{bottom:232.000000pt;}
.yd3{bottom:235.773333pt;}
.yd6{bottom:242.266667pt;}
.y8f{bottom:248.558576pt;}
.yc7{bottom:250.400000pt;}
.y66{bottom:253.333333pt;}
.yc0{bottom:261.173333pt;}
.y89{bottom:265.087670pt;}
.yc6{bottom:273.440000pt;}
.y64{bottom:274.666667pt;}
.y98{bottom:275.090029pt;}
.ya6{bottom:275.090032pt;}
.y8b{bottom:287.114081pt;}
.y94{bottom:290.880000pt;}
.y62{bottom:296.000000pt;}
.yc5{bottom:296.480000pt;}
.y26{bottom:302.720000pt;}
.y6f{bottom:307.255433pt;}
.y73{bottom:308.360468pt;}
.y93{bottom:313.280000pt;}
.y6e{bottom:313.681350pt;}
.y23{bottom:317.333333pt;}
.y95{bottom:318.166497pt;}
.yb9{bottom:319.520000pt;}
.y71{bottom:325.827449pt;}
.y74{bottom:327.220350pt;}
.y72{bottom:334.296288pt;}
.y92{bottom:334.400000pt;}
.y5e{bottom:340.000000pt;}
.yc4{bottom:342.560000pt;}
.y96{bottom:342.964119pt;}
.y21{bottom:344.000000pt;}
.yd4{bottom:346.426667pt;}
.y70{bottom:346.488817pt;}
.ya3{bottom:349.148600pt;}
.y91{bottom:353.280000pt;}
.yc3{bottom:365.600000pt;}
.y1f{bottom:370.666667pt;}
.y90{bottom:371.840000pt;}
.ycd{bottom:372.800000pt;}
.yb6{bottom:373.120000pt;}
.y79{bottom:378.386254pt;}
.y5d{bottom:384.320000pt;}
.yc2{bottom:388.640000pt;}
.y6c{bottom:390.720000pt;}
.ycc{bottom:395.200000pt;}
.yb5{bottom:395.520000pt;}
.y1e{bottom:396.000000pt;}
.y5c{bottom:403.200000pt;}
.y6b{bottom:409.280000pt;}
.yc1{bottom:411.680000pt;}
.y77{bottom:416.022444pt;}
.ycb{bottom:416.320000pt;}
.yb4{bottom:416.960000pt;}
.yba{bottom:420.106667pt;}
.y1b{bottom:422.666667pt;}
.y5b{bottom:423.040000pt;}
.y7a{bottom:423.850549pt;}
.y6a{bottom:424.640000pt;}
.y6d{bottom:424.826667pt;}
.yca{bottom:435.200000pt;}
.yb3{bottom:435.520000pt;}
.y75{bottom:438.949598pt;}
.y5a{bottom:445.440000pt;}
.y18{bottom:448.000000pt;}
.yb2{bottom:450.560000pt;}
.yd5{bottom:457.093333pt;}
.y58{bottom:460.000000pt;}
.ya9{bottom:467.807600pt;}
.y7b{bottom:469.305558pt;}
.y15{bottom:474.666667pt;}
.y56{bottom:480.000000pt;}
.y54{bottom:498.666667pt;}
.y12{bottom:500.000000pt;}
.y76{bottom:511.036878pt;}
.y7c{bottom:514.769853pt;}
.y52{bottom:518.666667pt;}
.ybb{bottom:520.706667pt;}
.ye{bottom:526.666667pt;}
.y50{bottom:538.666667pt;}
.yc9{bottom:556.253333pt;}
.y4e{bottom:557.333333pt;}
.y7d{bottom:560.224863pt;}
.yc{bottom:566.666667pt;}
.y4c{bottom:577.333333pt;}
.y78{bottom:587.980741pt;}
.yb{bottom:595.200000pt;}
.y49{bottom:596.000000pt;}
.ya{bottom:614.080000pt;}
.y9{bottom:633.920000pt;}
.y48{bottom:641.280000pt;}
.y8{bottom:656.320000pt;}
.y47{bottom:659.840000pt;}
.y46{bottom:678.720000pt;}
.y7{bottom:680.000000pt;}
.y45{bottom:697.280000pt;}
.y44{bottom:717.120000pt;}
.y97{bottom:725.693333pt;}
.y1{bottom:731.520000pt;}
.y43{bottom:739.840000pt;}
.y3{bottom:753.333333pt;}
.y41{bottom:754.666667pt;}
.y9b{bottom:768.674267pt;}
.y3f{bottom:773.333333pt;}
.y3d{bottom:793.333333pt;}
.y3b{bottom:812.000000pt;}
.y39{bottom:832.000000pt;}
.y37{bottom:852.000000pt;}
.y35{bottom:870.666667pt;}
.y32{bottom:890.666667pt;}
.y31{bottom:935.360000pt;}
.y30{bottom:954.240000pt;}
.y2f{bottom:972.800000pt;}
.y2e{bottom:991.680000pt;}
.y2d{bottom:1011.520000pt;}
.y27{bottom:1060.480000pt;}
.y29{bottom:1082.666667pt;}
.hf{height:18.666667pt;}
.h3{height:20.000000pt;}
.h19{height:21.112714pt;}
.h4{height:21.333333pt;}
.h7{height:22.666667pt;}
.h11{height:24.616168pt;}
.hb{height:26.666667pt;}
.h12{height:27.368332pt;}
.ha{height:28.000000pt;}
.h15{height:28.150285pt;}
.h8{height:28.153125pt;}
.h13{height:32.841999pt;}
.h1c{height:35.274906pt;}
.h1b{height:35.296875pt;}
.h1e{height:35.367188pt;}
.h17{height:35.421043pt;}
.h14{height:35.578832pt;}
.h6{height:35.831250pt;}
.he{height:38.666667pt;}
.h20{height:39.212828pt;}
.h21{height:39.218750pt;}
.h9{height:41.333333pt;}
.h2{height:42.656250pt;}
.h1d{height:43.140625pt;}
.h22{height:47.062500pt;}
.h5{height:49.481250pt;}
.h1f{height:50.984375pt;}
.h18{height:214.904800pt;}
.h16{height:300.866667pt;}
.h1a{height:576.000000pt;}
.h10{height:601.733333pt;}
.h1{height:793.333333pt;}
.h0{height:793.600000pt;}
.hc{height:1122.560000pt;}
.hd{height:1122.666667pt;}
.w8{width:49.333333pt;}
.wc{width:50.666667pt;}
.wa{width:52.000000pt;}
.wf{width:53.333333pt;}
.wd{width:56.000000pt;}
.w18{width:57.333333pt;}
.w2{width:60.000000pt;}
.w9{width:62.666667pt;}
.wb{width:64.000000pt;}
.we{width:69.333333pt;}
.w14{width:74.666667pt;}
.w3{width:76.000000pt;}
.w17{width:80.000000pt;}
.w16{width:81.333333pt;}
.w15{width:85.333333pt;}
.w13{width:90.666667pt;}
.w1b{width:93.333333pt;}
.w12{width:96.000000pt;}
.w19{width:98.666667pt;}
.w1d{width:109.333333pt;}
.w1a{width:130.666667pt;}
.w1c{width:176.000000pt;}
.w5{width:209.333333pt;}
.w4{width:210.666667pt;}
.w20{width:214.904800pt;}
.w6{width:217.333333pt;}
.w7{width:224.000000pt;}
.w1f{width:300.866667pt;}
.w21{width:576.000000pt;}
.w1e{width:601.733333pt;}
.w11{width:793.333333pt;}
.w10{width:793.600000pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3{left:1.173333pt;}
.x3a{left:4.633718pt;}
.xd{left:7.040032pt;}
.x14{left:7.967435pt;}
.x10{left:10.227232pt;}
.xf{left:11.810560pt;}
.x17{left:12.791787pt;}
.x15{left:14.358059pt;}
.x18{left:15.744747pt;}
.x12{left:17.911456pt;}
.x24{left:19.082027pt;}
.x25{left:20.255040pt;}
.x20{left:21.164693pt;}
.x23{left:22.739584pt;}
.x60{left:24.720000pt;}
.x56{left:25.860206pt;}
.x41{left:27.830166pt;}
.x3b{left:35.416835pt;}
.x4{left:37.673184pt;}
.x4c{left:41.443454pt;}
.x67{left:51.080000pt;}
.x64{left:54.640000pt;}
.x6{left:73.209973pt;}
.x8{left:75.096960pt;}
.xa{left:82.017920pt;}
.xc{left:85.627200pt;}
.x1{left:96.000000pt;}
.x57{left:110.628195pt;}
.x3c{left:111.868538pt;}
.x5d{left:114.281573pt;}
.x4d{left:116.817981pt;}
.x3d{left:128.416205pt;}
.x4e{left:132.288470pt;}
.x58{left:138.980933pt;}
.x59{left:143.580277pt;}
.x61{left:148.973333pt;}
.x5{left:170.666667pt;}
.xe{left:172.000000pt;}
.x3e{left:174.112650pt;}
.x4f{left:176.907738pt;}
.x2e{left:181.333333pt;}
.x3f{left:185.385864pt;}
.x50{left:187.113061pt;}
.x62{left:189.680000pt;}
.x27{left:190.666667pt;}
.x35{left:193.333333pt;}
.x11{left:220.000000pt;}
.x65{left:227.973333pt;}
.x40{left:241.464066pt;}
.x2f{left:261.333333pt;}
.x28{left:280.000000pt;}
.x13{left:281.333333pt;}
.x51{left:312.604173pt;}
.x4a{left:313.959930pt;}
.x42{left:317.330751pt;}
.x49{left:318.955803pt;}
.x36{left:322.666667pt;}
.x5b{left:326.726870pt;}
.x16{left:329.333333pt;}
.x55{left:336.441356pt;}
.x4b{left:341.604376pt;}
.x30{left:342.666667pt;}
.x43{left:346.330954pt;}
.x26{left:366.666667pt;}
.x29{left:370.666667pt;}
.x5a{left:374.029796pt;}
.x7{left:380.000000pt;}
.x5c{left:396.866667pt;}
.x63{left:402.466667pt;}
.x37{left:414.666667pt;}
.x52{left:417.684640pt;}
.x44{left:420.981173pt;}
.x31{left:422.666667pt;}
.x19{left:428.000000pt;}
.x2a{left:433.333333pt;}
.x45{left:435.736639pt;}
.x5e{left:439.847600pt;}
.x66{left:443.720000pt;}
.x53{left:477.774398pt;}
.x46{left:479.640885pt;}
.x54{left:487.979720pt;}
.x47{left:489.121899pt;}
.x1a{left:490.666667pt;}
.x2b{left:497.333333pt;}
.x32{left:502.666667pt;}
.x2{left:530.666667pt;}
.x1b{left:538.666667pt;}
.x48{left:543.398616pt;}
.x2c{left:560.000000pt;}
.x33{left:584.000000pt;}
.x9{left:588.000000pt;}
.x38{left:589.333333pt;}
.x2d{left:633.333333pt;}
.x34{left:640.000000pt;}
.x1c{left:642.666667pt;}
.x5f{left:672.000000pt;}
.x39{left:697.600000pt;}
.x1d{left:705.333333pt;}
.x1e{left:753.333333pt;}
.xb{left:804.000000pt;}
.x1f{left:858.666667pt;}
.x21{left:926.666667pt;}
.x22{left:974.666667pt;}
}




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