
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ae976cfbdc8f246cb1848788.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1caffbe218280b096f236a4b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.801000;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_d641db8fee34fb5f63aba41d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331543;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_8465cadb5e4183a228ca5687.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.331543;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_260b26bbac2fbd310c2dcb11.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5049b215e75974e608b3fc3f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.331543;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_46448410d19f8472eca100d9.woff2')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_2d6bfe0e2ee94af87bb8b4f9.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5f8a6353b1222bdecb60e50e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.331543;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_f426137ea1a078220b8e6cdc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_07df8cf891f577b62596ac60.woff2')format("woff");}.fff{font-family:fff;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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;}
.ls26{letter-spacing:-8.095350px;}
.ls2f{letter-spacing:-1.138409px;}
.ls21{letter-spacing:-1.050000px;}
.ls44{letter-spacing:-0.972000px;}
.ls35{letter-spacing:-0.853806px;}
.ls2d{letter-spacing:-0.752615px;}
.ls24{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.702000px;}
.ls37{letter-spacing:-0.638774px;}
.ls39{letter-spacing:-0.630000px;}
.ls4c{letter-spacing:-0.593400px;}
.ls28{letter-spacing:-0.524933px;}
.ls45{letter-spacing:-0.507000px;}
.ls46{letter-spacing:-0.466800px;}
.ls36{letter-spacing:-0.385794px;}
.ls25{letter-spacing:-0.360000px;}
.ls30{letter-spacing:-0.349112px;}
.ls2a{letter-spacing:-0.276380px;}
.ls3a{letter-spacing:-0.234006px;}
.ls2c{letter-spacing:-0.218827px;}
.ls34{letter-spacing:-0.194162px;}
.ls49{letter-spacing:-0.190200px;}
.ls2e{letter-spacing:-0.185308px;}
.ls23{letter-spacing:-0.089400px;}
.ls27{letter-spacing:-0.082218px;}
.ls38{letter-spacing:-0.072000px;}
.ls1e{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.020160px;}
.ls48{letter-spacing:0.032160px;}
.ls3e{letter-spacing:0.120000px;}
.ls32{letter-spacing:0.303576px;}
.ls29{letter-spacing:0.382632px;}
.ls0{letter-spacing:0.423360px;}
.ls1d{letter-spacing:0.466560px;}
.ls22{letter-spacing:0.466800px;}
.ls40{letter-spacing:0.586560px;}
.ls6{letter-spacing:0.661795px;}
.ls2b{letter-spacing:0.664072px;}
.ls33{letter-spacing:0.683045px;}
.ls1{letter-spacing:0.720000px;}
.ls1a{letter-spacing:0.788285px;}
.ls7{letter-spacing:0.851530px;}
.ls1f{letter-spacing:1.260000px;}
.ls42{letter-spacing:1.906560px;}
.ls8{letter-spacing:2.179673px;}
.lsa{letter-spacing:2.306163px;}
.lsb{letter-spacing:2.369408px;}
.ls41{letter-spacing:3.346560px;}
.ls9{letter-spacing:3.697551px;}
.ls31{letter-spacing:3.699828px;}
.lsd{letter-spacing:3.824041px;}
.lsc{letter-spacing:3.887286px;}
.ls43{letter-spacing:4.786560px;}
.lse{letter-spacing:5.215429px;}
.lsf{letter-spacing:5.341919px;}
.ls3b{letter-spacing:6.226560px;}
.ls15{letter-spacing:6.733307px;}
.ls4a{letter-spacing:7.666560px;}
.ls47{letter-spacing:9.106560px;}
.ls17{letter-spacing:9.769063px;}
.ls16{letter-spacing:11.286942px;}
.ls18{letter-spacing:11.413431px;}
.ls19{letter-spacing:11.476676px;}
.ls10{letter-spacing:12.804820px;}
.ls14{letter-spacing:12.931309px;}
.ls13{letter-spacing:12.994554px;}
.ls11{letter-spacing:14.322698px;}
.ls12{letter-spacing:14.449188px;}
.ls3{letter-spacing:15.840576px;}
.ls1b{letter-spacing:15.967066px;}
.ls1c{letter-spacing:16.030311px;}
.ls3f{letter-spacing:16.306560px;}
.ls2{letter-spacing:17.358454px;}
.ls4{letter-spacing:17.484944px;}
.ls5{letter-spacing:17.548189px;}
.ls4b{letter-spacing:40.786560px;}
.ls3c{letter-spacing:63.826560px;}
.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;}
}
.wse{word-spacing:-60.480000px;}
.wsd{word-spacing:-19.293120px;}
.ws8{word-spacing:-18.399718px;}
.wsf{word-spacing:-16.813440px;}
.ws13{word-spacing:-16.306440px;}
.ws9{word-spacing:-16.034864px;}
.ws7{word-spacing:-15.840702px;}
.ws0{word-spacing:-15.120000px;}
.wsb{word-spacing:-13.050000px;}
.ws4{word-spacing:-11.160000px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.wsa{word-spacing:-8.928000px;}
.ws3{word-spacing:-0.060480px;}
.wsc{word-spacing:0.000000px;}
.ws11{word-spacing:0.129720px;}
.ws10{word-spacing:0.446520px;}
.ws12{word-spacing:0.532920px;}
.ws1{word-spacing:0.641520px;}
.ws2{word-spacing:0.989520px;}
._5{margin-left:-24.276000px;}
._6{margin-left:-17.357760px;}
._13{margin-left:-10.056960px;}
._10{margin-left:-8.951040px;}
._8{margin-left:-7.760581px;}
._b{margin-left:-3.963022px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._f{width:4.758492px;}
._a{width:5.843375px;}
._9{width:7.555997px;}
._e{width:8.623208px;}
._c{width:10.570169px;}
._12{width:11.854080px;}
._14{width:13.063200px;}
._7{width:15.076592px;}
._d{width:16.227093px;}
._11{width:18.268963px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:5.760000px;}
.fs6{font-size:18.720000px;}
.fs3{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fsa{font-size:54.720000px;}
.fs8{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs4{font-size:96.480000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y40{bottom:1.065000px;}
.y5{bottom:3.960000px;}
.y37{bottom:4.320000px;}
.y51{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.y4b{bottom:9.345000px;}
.y4{bottom:21.240000px;}
.y36{bottom:24.840000px;}
.y4a{bottom:28.065000px;}
.y3f{bottom:30.585000px;}
.y3e{bottom:42.465000px;}
.y3{bottom:44.280000px;}
.y35{bottom:48.645000px;}
.y49{bottom:50.385000px;}
.y3d{bottom:55.425000px;}
.y7{bottom:57.636000px;}
.y3c{bottom:68.385000px;}
.y48{bottom:69.465000px;}
.y34{bottom:72.045000px;}
.y47{bottom:87.105000px;}
.y3b{bottom:88.185000px;}
.y4f{bottom:90.756000px;}
.y46{bottom:93.225000px;}
.y116{bottom:95.076000px;}
.y33{bottom:95.445000px;}
.yee{bottom:106.956000px;}
.yd0{bottom:107.316000px;}
.y45{bottom:109.095000px;}
.y4e{bottom:110.916000px;}
.ya3{bottom:111.996000px;}
.y115{bottom:115.236000px;}
.y32{bottom:119.205000px;}
.y44{bottom:124.575000px;}
.yed{bottom:127.116000px;}
.y4d{bottom:133.236000px;}
.ya2{bottom:135.036000px;}
.y114{bottom:135.396000px;}
.ycf{bottom:136.116000px;}
.y43{bottom:140.415000px;}
.y31{bottom:142.605000px;}
.y79{bottom:142.632000px;}
.yec{bottom:147.312000px;}
.y3a{bottom:150.135000px;}
.y42{bottom:155.895000px;}
.y4c{bottom:157.035000px;}
.ya1{bottom:158.475000px;}
.yce{bottom:159.195000px;}
.y39{bottom:160.935000px;}
.y113{bottom:164.595000px;}
.y30{bottom:166.005000px;}
.yeb{bottom:167.475000px;}
.y78{bottom:168.915000px;}
.y41{bottom:171.015000px;}
.y38{bottom:174.690000px;}
.y112{bottom:184.755000px;}
.ycd{bottom:185.475000px;}
.yea{bottom:187.275000px;}
.ya0{bottom:189.435000px;}
.y2f{bottom:189.795000px;}
.y77{bottom:195.195000px;}
.y111{bottom:204.555000px;}
.y9f{bottom:209.595000px;}
.ycc{bottom:211.395000px;}
.y2e{bottom:213.195000px;}
.ye9{bottom:216.435000px;}
.y76{bottom:221.115000px;}
.y110{bottom:224.715000px;}
.y9e{bottom:229.755000px;}
.ycb{bottom:234.795000px;}
.y2d{bottom:236.595000px;}
.ye8{bottom:239.475000px;}
.y10f{bottom:244.875000px;}
.y75{bottom:247.395000px;}
.y9d{bottom:249.555000px;}
.yca{bottom:254.955000px;}
.y1d{bottom:258.195000px;}
.y2c{bottom:260.355000px;}
.ye7{bottom:262.875000px;}
.y10e{bottom:265.035000px;}
.y9c{bottom:269.715000px;}
.y74{bottom:270.795000px;}
.yc9{bottom:275.145000px;}
.y1c{bottom:282.675000px;}
.y2b{bottom:283.755000px;}
.ye6{bottom:285.585000px;}
.y9b{bottom:289.905000px;}
.y134{bottom:292.425000px;}
.y73{bottom:293.505000px;}
.yc8{bottom:294.945000px;}
.y10d{bottom:296.745000px;}
.y1b{bottom:306.825000px;}
.y2a{bottom:307.185000px;}
.ye5{bottom:311.865000px;}
.yc7{bottom:315.105000px;}
.y133{bottom:318.705000px;}
.y9a{bottom:319.065000px;}
.y72{bottom:319.785000px;}
.y10c{bottom:320.145000px;}
.y1a{bottom:330.945000px;}
.yc6{bottom:335.265000px;}
.y99{bottom:339.225000px;}
.y10b{bottom:340.305000px;}
.y132{bottom:341.745000px;}
.y71{bottom:345.705000px;}
.y29{bottom:354.345000px;}
.y19{bottom:355.065000px;}
.yc5{bottom:355.425000px;}
.y10a{bottom:360.465000px;}
.y98{bottom:361.905000px;}
.ye4{bottom:364.065000px;}
.yd{bottom:365.145000px;}
.y131{bottom:368.025000px;}
.y70{bottom:369.105000px;}
.y28{bottom:377.745000px;}
.y18{bottom:379.185000px;}
.y109{bottom:380.625000px;}
.yc4{bottom:384.585000px;}
.y97{bottom:385.305000px;}
.ye3{bottom:387.105000px;}
.y130{bottom:393.945000px;}
.y6f{bottom:398.265000px;}
.y27{bottom:401.505000px;}
.y17{bottom:403.305000px;}
.yc3{bottom:404.745000px;}
.y96{bottom:405.510000px;}
.ye2{bottom:410.550000px;}
.y12f{bottom:420.270000px;}
.y6e{bottom:421.350000px;}
.yc2{bottom:424.590000px;}
.y26{bottom:424.905000px;}
.y108{bottom:426.750000px;}
.y16{bottom:427.425000px;}
.ye1{bottom:430.710000px;}
.y95{bottom:434.670000px;}
.yc1{bottom:444.750000px;}
.y12e{bottom:446.550000px;}
.y6d{bottom:447.270000px;}
.y25{bottom:448.350000px;}
.y15{bottom:451.590000px;}
.ye0{bottom:453.390000px;}
.y107{bottom:455.910000px;}
.y94{bottom:457.350000px;}
.yc0{bottom:464.910000px;}
.y12d{bottom:469.590000px;}
.y24{bottom:472.110000px;}
.y6c{bottom:473.550000px;}
.y14{bottom:475.710000px;}
.y106{bottom:476.070000px;}
.ydf{bottom:479.670000px;}
.y93{bottom:480.750000px;}
.y12c{bottom:492.630000px;}
.ybf{bottom:494.070000px;}
.y23{bottom:495.510000px;}
.y105{bottom:496.230000px;}
.y6b{bottom:499.470000px;}
.y13{bottom:499.830000px;}
.y92{bottom:500.910000px;}
.yde{bottom:503.070000px;}
.ybe{bottom:514.230000px;}
.y104{bottom:516.390000px;}
.y22{bottom:518.910000px;}
.y6a{bottom:522.870000px;}
.y12{bottom:523.950000px;}
.ydd{bottom:525.750000px;}
.ybd{bottom:534.390000px;}
.y103{bottom:536.190000px;}
.y21{bottom:542.670000px;}
.y12b{bottom:544.860000px;}
.y69{bottom:545.940000px;}
.y91{bottom:547.380000px;}
.y11{bottom:548.070000px;}
.ydc{bottom:552.060000px;}
.ybc{bottom:554.220000px;}
.y102{bottom:556.380000px;}
.y20{bottom:566.070000px;}
.y12a{bottom:568.260000px;}
.y68{bottom:571.860000px;}
.y10{bottom:572.220000px;}
.ybb{bottom:574.380000px;}
.ydb{bottom:575.460000px;}
.y90{bottom:576.180000px;}
.y101{bottom:585.540000px;}
.y1f{bottom:589.500000px;}
.yba{bottom:594.540000px;}
.yf{bottom:596.700000px;}
.y129{bottom:597.420000px;}
.y67{bottom:598.140000px;}
.y8f{bottom:599.220000px;}
.y100{bottom:605.700000px;}
.y1e{bottom:613.260000px;}
.yb9{bottom:614.700000px;}
.y128{bottom:620.100000px;}
.ye{bottom:620.820000px;}
.y66{bottom:621.540000px;}
.y8e{bottom:622.620000px;}
.yff{bottom:625.860000px;}
.yb8{bottom:634.860000px;}
.y65{bottom:641.700000px;}
.y8d{bottom:645.300000px;}
.yfe{bottom:645.660000px;}
.y127{bottom:646.380000px;}
.yb7{bottom:654.660000px;}
.y64{bottom:661.500000px;}
.yfd{bottom:665.820000px;}
.y126{bottom:669.810000px;}
.yda{bottom:670.890000px;}
.y8c{bottom:671.610000px;}
.y63{bottom:684.570000px;}
.yfc{bottom:686.010000px;}
.yb6{bottom:686.730000px;}
.yd9{bottom:691.050000px;}
.y125{bottom:692.490000px;}
.y8b{bottom:697.890000px;}
.yb5{bottom:710.130000px;}
.y62{bottom:710.850000px;}
.yfb{bottom:715.170000px;}
.y124{bottom:718.770000px;}
.y8a{bottom:720.930000px;}
.yb4{bottom:730.290000px;}
.yd8{bottom:733.890000px;}
.y61{bottom:736.770000px;}
.yfa{bottom:738.210000px;}
.y89{bottom:743.970000px;}
.y123{bottom:745.050000px;}
.yb3{bottom:750.450000px;}
.y60{bottom:760.170000px;}
.yf9{bottom:764.130000px;}
.y88{bottom:767.370000px;}
.yb2{bottom:770.250000px;}
.y122{bottom:770.970000px;}
.y5f{bottom:783.210000px;}
.yd7{bottom:786.090000px;}
.yf8{bottom:787.530000px;}
.y87{bottom:790.050000px;}
.y121{bottom:797.250000px;}
.yb1{bottom:799.410000px;}
.y5e{bottom:806.295000px;}
.yf7{bottom:807.735000px;}
.yd6{bottom:809.535000px;}
.y86{bottom:813.495000px;}
.yb0{bottom:819.615000px;}
.y120{bottom:823.215000px;}
.yf6{bottom:827.895000px;}
.y5d{bottom:829.335000px;}
.y85{bottom:836.535000px;}
.yaf{bottom:839.775000px;}
.yd5{bottom:841.575000px;}
.y11f{bottom:849.495000px;}
.y5c{bottom:855.615000px;}
.yf5{bottom:856.695000px;}
.yae{bottom:859.935000px;}
.y84{bottom:862.455000px;}
.yd4{bottom:867.495000px;}
.y11e{bottom:875.775000px;}
.yf4{bottom:876.855000px;}
.yad{bottom:880.095000px;}
.y5b{bottom:881.535000px;}
.y83{bottom:888.735000px;}
.yd3{bottom:893.775000px;}
.yf3{bottom:897.015000px;}
.yac{bottom:899.895000px;}
.y11d{bottom:901.695000px;}
.y5a{bottom:907.815000px;}
.y82{bottom:915.015000px;}
.yd2{bottom:917.175000px;}
.yab{bottom:920.055000px;}
.y11c{bottom:927.975000px;}
.y59{bottom:933.765000px;}
.yd1{bottom:937.005000px;}
.yf2{bottom:937.365000px;}
.y81{bottom:938.445000px;}
.yaa{bottom:940.245000px;}
.y11b{bottom:953.925000px;}
.y58{bottom:957.165000px;}
.yf1{bottom:957.525000px;}
.ya9{bottom:963.285000px;}
.y80{bottom:969.405000px;}
.y57{bottom:977.325000px;}
.y11a{bottom:980.205000px;}
.ya8{bottom:986.325000px;}
.y7f{bottom:989.565000px;}
.yc{bottom:998.925000px;}
.y56{bottom:1000.365000px;}
.y119{bottom:1006.125000px;}
.yf0{bottom:1006.485000px;}
.y7e{bottom:1009.365000px;}
.yb{bottom:1010.445000px;}
.ya7{bottom:1015.485000px;}
.y55{bottom:1026.285000px;}
.yef{bottom:1026.645000px;}
.y7d{bottom:1029.525000px;}
.y118{bottom:1032.405000px;}
.ya{bottom:1033.845000px;}
.ya6{bottom:1038.525000px;}
.y7c{bottom:1049.685000px;}
.y54{bottom:1052.565000px;}
.y117{bottom:1058.685000px;}
.y9{bottom:1060.125000px;}
.ya5{bottom:1061.925000px;}
.y7b{bottom:1072.770000px;}
.y53{bottom:1078.530000px;}
.ya4{bottom:1081.770000px;}
.y8{bottom:1086.450000px;}
.y50{bottom:1089.720000px;}
.y7a{bottom:1098.690000px;}
.y52{bottom:1101.930000px;}
.y6{bottom:1120.290000px;}
.y1{bottom:1127.130000px;}
.h15{height:5.650313px;}
.hb{height:13.537266px;}
.h16{height:27.720000px;}
.h12{height:29.678906px;}
.h6{height:30.077578px;}
.h11{height:35.332031px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.h13{height:53.677969px;}
.h14{height:55.147500px;}
.h5{height:59.357813px;}
.hf{height:61.143509px;}
.h17{height:63.455625px;}
.h9{height:64.112344px;}
.h3{height:65.884219px;}
.ha{height:70.218281px;}
.h7{height:77.280480px;}
.h2{height:81.390000px;}
.h8{height:88.536094px;}
.h4{height:116.640000px;}
.h10{height:189.720000px;}
.hc{height:630.165000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:6.876000px;}
.x16{left:8.266500px;}
.x4{left:13.305000px;}
.x14{left:14.746500px;}
.x19{left:18.346500px;}
.x5{left:19.425000px;}
.x15{left:26.626500px;}
.x1b{left:29.146500px;}
.x6{left:38.145000px;}
.xe{left:43.906500px;}
.x1a{left:47.542500px;}
.xf{left:50.782500px;}
.x13{left:54.022500px;}
.xd{left:55.102500px;}
.x1d{left:57.262500px;}
.x1c{left:66.265500px;}
.x12{left:73.105500px;}
.x11{left:75.265500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x24{left:91.836000px;}
.x2{left:95.425500px;}
.x1e{left:102.985500px;}
.x18{left:106.945500px;}
.x22{left:113.436000px;}
.x25{left:118.836000px;}
.x10{left:124.585500px;}
.x1f{left:130.380000px;}
.x23{left:140.472000px;}
.x26{left:172.875000px;}
.x3{left:182.250000px;}
.x17{left:218.970000px;}
.xb{left:328.110000px;}
.xa{left:561.450000px;}
.x20{left:588.840000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xc{left:807.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls26{letter-spacing:-7.195867pt;}
.ls2f{letter-spacing:-1.011919pt;}
.ls21{letter-spacing:-0.933333pt;}
.ls44{letter-spacing:-0.864000pt;}
.ls35{letter-spacing:-0.758939pt;}
.ls2d{letter-spacing:-0.668991pt;}
.ls24{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.624000pt;}
.ls37{letter-spacing:-0.567799pt;}
.ls39{letter-spacing:-0.560000pt;}
.ls4c{letter-spacing:-0.527467pt;}
.ls28{letter-spacing:-0.466607pt;}
.ls45{letter-spacing:-0.450667pt;}
.ls46{letter-spacing:-0.414933pt;}
.ls36{letter-spacing:-0.342928pt;}
.ls25{letter-spacing:-0.320000pt;}
.ls30{letter-spacing:-0.310322pt;}
.ls2a{letter-spacing:-0.245671pt;}
.ls3a{letter-spacing:-0.208006pt;}
.ls2c{letter-spacing:-0.194513pt;}
.ls34{letter-spacing:-0.172588pt;}
.ls49{letter-spacing:-0.169067pt;}
.ls2e{letter-spacing:-0.164718pt;}
.ls23{letter-spacing:-0.079467pt;}
.ls27{letter-spacing:-0.073083pt;}
.ls38{letter-spacing:-0.064000pt;}
.ls1e{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.017920pt;}
.ls48{letter-spacing:0.028587pt;}
.ls3e{letter-spacing:0.106667pt;}
.ls32{letter-spacing:0.269845pt;}
.ls29{letter-spacing:0.340117pt;}
.ls0{letter-spacing:0.376320pt;}
.ls1d{letter-spacing:0.414720pt;}
.ls22{letter-spacing:0.414933pt;}
.ls40{letter-spacing:0.521387pt;}
.ls6{letter-spacing:0.588262pt;}
.ls2b{letter-spacing:0.590286pt;}
.ls33{letter-spacing:0.607151pt;}
.ls1{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.700698pt;}
.ls7{letter-spacing:0.756915pt;}
.ls1f{letter-spacing:1.120000pt;}
.ls42{letter-spacing:1.694720pt;}
.ls8{letter-spacing:1.937487pt;}
.lsa{letter-spacing:2.049922pt;}
.lsb{letter-spacing:2.106140pt;}
.ls41{letter-spacing:2.974720pt;}
.ls9{letter-spacing:3.286712pt;}
.ls31{letter-spacing:3.288736pt;}
.lsd{letter-spacing:3.399147pt;}
.lsc{letter-spacing:3.455365pt;}
.ls43{letter-spacing:4.254720pt;}
.lse{letter-spacing:4.635937pt;}
.lsf{letter-spacing:4.748372pt;}
.ls3b{letter-spacing:5.534720pt;}
.ls15{letter-spacing:5.985162pt;}
.ls4a{letter-spacing:6.814720pt;}
.ls47{letter-spacing:8.094720pt;}
.ls17{letter-spacing:8.683612pt;}
.ls16{letter-spacing:10.032837pt;}
.ls18{letter-spacing:10.145272pt;}
.ls19{letter-spacing:10.201490pt;}
.ls10{letter-spacing:11.382062pt;}
.ls14{letter-spacing:11.494497pt;}
.ls13{letter-spacing:11.550715pt;}
.ls11{letter-spacing:12.731287pt;}
.ls12{letter-spacing:12.843722pt;}
.ls3{letter-spacing:14.080512pt;}
.ls1b{letter-spacing:14.192947pt;}
.ls1c{letter-spacing:14.249165pt;}
.ls3f{letter-spacing:14.494720pt;}
.ls2{letter-spacing:15.429737pt;}
.ls4{letter-spacing:15.542172pt;}
.ls5{letter-spacing:15.598390pt;}
.ls4b{letter-spacing:36.254720pt;}
.ls3c{letter-spacing:56.734720pt;}
.wse{word-spacing:-53.760000pt;}
.wsd{word-spacing:-17.149440pt;}
.ws8{word-spacing:-16.355305pt;}
.wsf{word-spacing:-14.945280pt;}
.ws13{word-spacing:-14.494613pt;}
.ws9{word-spacing:-14.253213pt;}
.ws7{word-spacing:-14.080624pt;}
.ws0{word-spacing:-13.440000pt;}
.wsb{word-spacing:-11.600000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.wsa{word-spacing:-7.936000pt;}
.ws3{word-spacing:-0.053760pt;}
.wsc{word-spacing:0.000000pt;}
.ws11{word-spacing:0.115307pt;}
.ws10{word-spacing:0.396907pt;}
.ws12{word-spacing:0.473707pt;}
.ws1{word-spacing:0.570240pt;}
.ws2{word-spacing:0.879573pt;}
._5{margin-left:-21.578667pt;}
._6{margin-left:-15.429120pt;}
._13{margin-left:-8.939520pt;}
._10{margin-left:-7.956480pt;}
._8{margin-left:-6.898294pt;}
._b{margin-left:-3.522686pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._f{width:4.229770pt;}
._a{width:5.194111pt;}
._9{width:6.716442pt;}
._e{width:7.665074pt;}
._c{width:9.395706pt;}
._12{width:10.536960pt;}
._14{width:11.611733pt;}
._7{width:13.401415pt;}
._d{width:14.424083pt;}
._11{width:16.239078pt;}
.fsb{font-size:5.120000pt;}
.fs6{font-size:16.640000pt;}
.fs3{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fsa{font-size:48.640000pt;}
.fs8{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs4{font-size:85.760000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:0.946667pt;}
.y5{bottom:3.520000pt;}
.y37{bottom:3.840000pt;}
.y51{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.y4b{bottom:8.306667pt;}
.y4{bottom:18.880000pt;}
.y36{bottom:22.080000pt;}
.y4a{bottom:24.946667pt;}
.y3f{bottom:27.186667pt;}
.y3e{bottom:37.746667pt;}
.y3{bottom:39.360000pt;}
.y35{bottom:43.240000pt;}
.y49{bottom:44.786667pt;}
.y3d{bottom:49.266667pt;}
.y7{bottom:51.232000pt;}
.y3c{bottom:60.786667pt;}
.y48{bottom:61.746667pt;}
.y34{bottom:64.040000pt;}
.y47{bottom:77.426667pt;}
.y3b{bottom:78.386667pt;}
.y4f{bottom:80.672000pt;}
.y46{bottom:82.866667pt;}
.y116{bottom:84.512000pt;}
.y33{bottom:84.840000pt;}
.yee{bottom:95.072000pt;}
.yd0{bottom:95.392000pt;}
.y45{bottom:96.973333pt;}
.y4e{bottom:98.592000pt;}
.ya3{bottom:99.552000pt;}
.y115{bottom:102.432000pt;}
.y32{bottom:105.960000pt;}
.y44{bottom:110.733333pt;}
.yed{bottom:112.992000pt;}
.y4d{bottom:118.432000pt;}
.ya2{bottom:120.032000pt;}
.y114{bottom:120.352000pt;}
.ycf{bottom:120.992000pt;}
.y43{bottom:124.813333pt;}
.y31{bottom:126.760000pt;}
.y79{bottom:126.784000pt;}
.yec{bottom:130.944000pt;}
.y3a{bottom:133.453333pt;}
.y42{bottom:138.573333pt;}
.y4c{bottom:139.586667pt;}
.ya1{bottom:140.866667pt;}
.yce{bottom:141.506667pt;}
.y39{bottom:143.053333pt;}
.y113{bottom:146.306667pt;}
.y30{bottom:147.560000pt;}
.yeb{bottom:148.866667pt;}
.y78{bottom:150.146667pt;}
.y41{bottom:152.013333pt;}
.y38{bottom:155.280000pt;}
.y112{bottom:164.226667pt;}
.ycd{bottom:164.866667pt;}
.yea{bottom:166.466667pt;}
.ya0{bottom:168.386667pt;}
.y2f{bottom:168.706667pt;}
.y77{bottom:173.506667pt;}
.y111{bottom:181.826667pt;}
.y9f{bottom:186.306667pt;}
.ycc{bottom:187.906667pt;}
.y2e{bottom:189.506667pt;}
.ye9{bottom:192.386667pt;}
.y76{bottom:196.546667pt;}
.y110{bottom:199.746667pt;}
.y9e{bottom:204.226667pt;}
.ycb{bottom:208.706667pt;}
.y2d{bottom:210.306667pt;}
.ye8{bottom:212.866667pt;}
.y10f{bottom:217.666667pt;}
.y75{bottom:219.906667pt;}
.y9d{bottom:221.826667pt;}
.yca{bottom:226.626667pt;}
.y1d{bottom:229.506667pt;}
.y2c{bottom:231.426667pt;}
.ye7{bottom:233.666667pt;}
.y10e{bottom:235.586667pt;}
.y9c{bottom:239.746667pt;}
.y74{bottom:240.706667pt;}
.yc9{bottom:244.573333pt;}
.y1c{bottom:251.266667pt;}
.y2b{bottom:252.226667pt;}
.ye6{bottom:253.853333pt;}
.y9b{bottom:257.693333pt;}
.y134{bottom:259.933333pt;}
.y73{bottom:260.893333pt;}
.yc8{bottom:262.173333pt;}
.y10d{bottom:263.773333pt;}
.y1b{bottom:272.733333pt;}
.y2a{bottom:273.053333pt;}
.ye5{bottom:277.213333pt;}
.yc7{bottom:280.093333pt;}
.y133{bottom:283.293333pt;}
.y9a{bottom:283.613333pt;}
.y72{bottom:284.253333pt;}
.y10c{bottom:284.573333pt;}
.y1a{bottom:294.173333pt;}
.yc6{bottom:298.013333pt;}
.y99{bottom:301.533333pt;}
.y10b{bottom:302.493333pt;}
.y132{bottom:303.773333pt;}
.y71{bottom:307.293333pt;}
.y29{bottom:314.973333pt;}
.y19{bottom:315.613333pt;}
.yc5{bottom:315.933333pt;}
.y10a{bottom:320.413333pt;}
.y98{bottom:321.693333pt;}
.ye4{bottom:323.613333pt;}
.yd{bottom:324.573333pt;}
.y131{bottom:327.133333pt;}
.y70{bottom:328.093333pt;}
.y28{bottom:335.773333pt;}
.y18{bottom:337.053333pt;}
.y109{bottom:338.333333pt;}
.yc4{bottom:341.853333pt;}
.y97{bottom:342.493333pt;}
.ye3{bottom:344.093333pt;}
.y130{bottom:350.173333pt;}
.y6f{bottom:354.013333pt;}
.y27{bottom:356.893333pt;}
.y17{bottom:358.493333pt;}
.yc3{bottom:359.773333pt;}
.y96{bottom:360.453333pt;}
.ye2{bottom:364.933333pt;}
.y12f{bottom:373.573333pt;}
.y6e{bottom:374.533333pt;}
.yc2{bottom:377.413333pt;}
.y26{bottom:377.693333pt;}
.y108{bottom:379.333333pt;}
.y16{bottom:379.933333pt;}
.ye1{bottom:382.853333pt;}
.y95{bottom:386.373333pt;}
.yc1{bottom:395.333333pt;}
.y12e{bottom:396.933333pt;}
.y6d{bottom:397.573333pt;}
.y25{bottom:398.533333pt;}
.y15{bottom:401.413333pt;}
.ye0{bottom:403.013333pt;}
.y107{bottom:405.253333pt;}
.y94{bottom:406.533333pt;}
.yc0{bottom:413.253333pt;}
.y12d{bottom:417.413333pt;}
.y24{bottom:419.653333pt;}
.y6c{bottom:420.933333pt;}
.y14{bottom:422.853333pt;}
.y106{bottom:423.173333pt;}
.ydf{bottom:426.373333pt;}
.y93{bottom:427.333333pt;}
.y12c{bottom:437.893333pt;}
.ybf{bottom:439.173333pt;}
.y23{bottom:440.453333pt;}
.y105{bottom:441.093333pt;}
.y6b{bottom:443.973333pt;}
.y13{bottom:444.293333pt;}
.y92{bottom:445.253333pt;}
.yde{bottom:447.173333pt;}
.ybe{bottom:457.093333pt;}
.y104{bottom:459.013333pt;}
.y22{bottom:461.253333pt;}
.y6a{bottom:464.773333pt;}
.y12{bottom:465.733333pt;}
.ydd{bottom:467.333333pt;}
.ybd{bottom:475.013333pt;}
.y103{bottom:476.613333pt;}
.y21{bottom:482.373333pt;}
.y12b{bottom:484.320000pt;}
.y69{bottom:485.280000pt;}
.y91{bottom:486.560000pt;}
.y11{bottom:487.173333pt;}
.ydc{bottom:490.720000pt;}
.ybc{bottom:492.640000pt;}
.y102{bottom:494.560000pt;}
.y20{bottom:503.173333pt;}
.y12a{bottom:505.120000pt;}
.y68{bottom:508.320000pt;}
.y10{bottom:508.640000pt;}
.ybb{bottom:510.560000pt;}
.ydb{bottom:511.520000pt;}
.y90{bottom:512.160000pt;}
.y101{bottom:520.480000pt;}
.y1f{bottom:524.000000pt;}
.yba{bottom:528.480000pt;}
.yf{bottom:530.400000pt;}
.y129{bottom:531.040000pt;}
.y67{bottom:531.680000pt;}
.y8f{bottom:532.640000pt;}
.y100{bottom:538.400000pt;}
.y1e{bottom:545.120000pt;}
.yb9{bottom:546.400000pt;}
.y128{bottom:551.200000pt;}
.ye{bottom:551.840000pt;}
.y66{bottom:552.480000pt;}
.y8e{bottom:553.440000pt;}
.yff{bottom:556.320000pt;}
.yb8{bottom:564.320000pt;}
.y65{bottom:570.400000pt;}
.y8d{bottom:573.600000pt;}
.yfe{bottom:573.920000pt;}
.y127{bottom:574.560000pt;}
.yb7{bottom:581.920000pt;}
.y64{bottom:588.000000pt;}
.yfd{bottom:591.840000pt;}
.y126{bottom:595.386667pt;}
.yda{bottom:596.346667pt;}
.y8c{bottom:596.986667pt;}
.y63{bottom:608.506667pt;}
.yfc{bottom:609.786667pt;}
.yb6{bottom:610.426667pt;}
.yd9{bottom:614.266667pt;}
.y125{bottom:615.546667pt;}
.y8b{bottom:620.346667pt;}
.yb5{bottom:631.226667pt;}
.y62{bottom:631.866667pt;}
.yfb{bottom:635.706667pt;}
.y124{bottom:638.906667pt;}
.y8a{bottom:640.826667pt;}
.yb4{bottom:649.146667pt;}
.yd8{bottom:652.346667pt;}
.y61{bottom:654.906667pt;}
.yfa{bottom:656.186667pt;}
.y89{bottom:661.306667pt;}
.y123{bottom:662.266667pt;}
.yb3{bottom:667.066667pt;}
.y60{bottom:675.706667pt;}
.yf9{bottom:679.226667pt;}
.y88{bottom:682.106667pt;}
.yb2{bottom:684.666667pt;}
.y122{bottom:685.306667pt;}
.y5f{bottom:696.186667pt;}
.yd7{bottom:698.746667pt;}
.yf8{bottom:700.026667pt;}
.y87{bottom:702.266667pt;}
.y121{bottom:708.666667pt;}
.yb1{bottom:710.586667pt;}
.y5e{bottom:716.706667pt;}
.yf7{bottom:717.986667pt;}
.yd6{bottom:719.586667pt;}
.y86{bottom:723.106667pt;}
.yb0{bottom:728.546667pt;}
.y120{bottom:731.746667pt;}
.yf6{bottom:735.906667pt;}
.y5d{bottom:737.186667pt;}
.y85{bottom:743.586667pt;}
.yaf{bottom:746.466667pt;}
.yd5{bottom:748.066667pt;}
.y11f{bottom:755.106667pt;}
.y5c{bottom:760.546667pt;}
.yf5{bottom:761.506667pt;}
.yae{bottom:764.386667pt;}
.y84{bottom:766.626667pt;}
.yd4{bottom:771.106667pt;}
.y11e{bottom:778.466667pt;}
.yf4{bottom:779.426667pt;}
.yad{bottom:782.306667pt;}
.y5b{bottom:783.586667pt;}
.y83{bottom:789.986667pt;}
.yd3{bottom:794.466667pt;}
.yf3{bottom:797.346667pt;}
.yac{bottom:799.906667pt;}
.y11d{bottom:801.506667pt;}
.y5a{bottom:806.946667pt;}
.y82{bottom:813.346667pt;}
.yd2{bottom:815.266667pt;}
.yab{bottom:817.826667pt;}
.y11c{bottom:824.866667pt;}
.y59{bottom:830.013333pt;}
.yd1{bottom:832.893333pt;}
.yf2{bottom:833.213333pt;}
.y81{bottom:834.173333pt;}
.yaa{bottom:835.773333pt;}
.y11b{bottom:847.933333pt;}
.y58{bottom:850.813333pt;}
.yf1{bottom:851.133333pt;}
.ya9{bottom:856.253333pt;}
.y80{bottom:861.693333pt;}
.y57{bottom:868.733333pt;}
.y11a{bottom:871.293333pt;}
.ya8{bottom:876.733333pt;}
.y7f{bottom:879.613333pt;}
.yc{bottom:887.933333pt;}
.y56{bottom:889.213333pt;}
.y119{bottom:894.333333pt;}
.yf0{bottom:894.653333pt;}
.y7e{bottom:897.213333pt;}
.yb{bottom:898.173333pt;}
.ya7{bottom:902.653333pt;}
.y55{bottom:912.253333pt;}
.yef{bottom:912.573333pt;}
.y7d{bottom:915.133333pt;}
.y118{bottom:917.693333pt;}
.ya{bottom:918.973333pt;}
.ya6{bottom:923.133333pt;}
.y7c{bottom:933.053333pt;}
.y54{bottom:935.613333pt;}
.y117{bottom:941.053333pt;}
.y9{bottom:942.333333pt;}
.ya5{bottom:943.933333pt;}
.y7b{bottom:953.573333pt;}
.y53{bottom:958.693333pt;}
.ya4{bottom:961.573333pt;}
.y8{bottom:965.733333pt;}
.y50{bottom:968.640000pt;}
.y7a{bottom:976.613333pt;}
.y52{bottom:979.493333pt;}
.y6{bottom:995.813333pt;}
.y1{bottom:1001.893333pt;}
.h15{height:5.022500pt;}
.hb{height:12.033125pt;}
.h16{height:24.640000pt;}
.h12{height:26.381250pt;}
.h6{height:26.735625pt;}
.h11{height:31.406250pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.h13{height:47.713750pt;}
.h14{height:49.020000pt;}
.h5{height:52.762500pt;}
.hf{height:54.349786pt;}
.h17{height:56.405000pt;}
.h9{height:56.988750pt;}
.h3{height:58.563750pt;}
.ha{height:62.416250pt;}
.h7{height:68.693760pt;}
.h2{height:72.346667pt;}
.h8{height:78.698750pt;}
.h4{height:103.680000pt;}
.h10{height:168.640000pt;}
.hc{height:560.146667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.112000pt;}
.x16{left:7.348000pt;}
.x4{left:11.826667pt;}
.x14{left:13.108000pt;}
.x19{left:16.308000pt;}
.x5{left:17.266667pt;}
.x15{left:23.668000pt;}
.x1b{left:25.908000pt;}
.x6{left:33.906667pt;}
.xe{left:39.028000pt;}
.x1a{left:42.260000pt;}
.xf{left:45.140000pt;}
.x13{left:48.020000pt;}
.xd{left:48.980000pt;}
.x1d{left:50.900000pt;}
.x1c{left:58.902667pt;}
.x12{left:64.982667pt;}
.x11{left:66.902667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x24{left:81.632000pt;}
.x2{left:84.822667pt;}
.x1e{left:91.542667pt;}
.x18{left:95.062667pt;}
.x22{left:100.832000pt;}
.x25{left:105.632000pt;}
.x10{left:110.742667pt;}
.x1f{left:115.893333pt;}
.x23{left:124.864000pt;}
.x26{left:153.666667pt;}
.x3{left:162.000000pt;}
.x17{left:194.640000pt;}
.xb{left:291.653333pt;}
.xa{left:499.066667pt;}
.x20{left:523.413333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xc{left:717.413333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  