
    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_008bf99fe68e31c32e00b4fe.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_471def476a0f7ed0626c0022.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_430c3217f7f49438547d1bd9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_beff3d630886c27f9116520c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6e956765c45054cf34cbb874.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b1b8bdf91f125a08d4181542.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_965eb1bb7ae7766f927c7e7d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_be4342dca7ab7cc36ae95013.woff')format("woff");}.ffb{font-family:ffb;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_386f4ce22381a674027e2516.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8d36adc17f5b614153ebfc44.woff')format("woff");}.ffd{font-family:ffd;line-height:0.886719;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_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.ffe{font-family:ffe;line-height:1.035156;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_eaba19c41fd1e9141d87333b.woff')format("woff");}.fff{font-family:fff;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3b1da1856bbb14854f924847.woff')format("woff");}.ff10{font-family:ff10;line-height:1.093262;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_ac5f05f6292d0ce4bf733940.woff')format("woff");}.ff11{font-family:ff11;line-height:1.172363;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_4f5e2b6092c4b5aa89a47e41.woff')format("woff");}.ff12{font-family:ff12;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.v1{vertical-align:33.120000px;}
.lsf{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.324000px;}
.ls10{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.190200px;}
.ls17{letter-spacing:-0.152400px;}
.lsa{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.114000px;}
.lsb{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.078000px;}
.ls13{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.ls12{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.576000px;}
.ls16{letter-spacing:6.785280px;}
.ls15{letter-spacing:39.905280px;}
.ls6{letter-spacing:199.416000px;}
.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;}
}
.wsa{word-spacing:-35.712000px;}
.wsf{word-spacing:-24.408000px;}
.ws10{word-spacing:-24.084000px;}
.ws9{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.ws7{word-spacing:-18.000000px;}
.wse{word-spacing:-16.822200px;}
.wsd{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.407600px;}
.ws4{word-spacing:-15.912000px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.ws6{word-spacing:-11.340000px;}
.wsb{word-spacing:-7.560000px;}
.wsc{word-spacing:-6.840000px;}
.ws8{word-spacing:0.000000px;}
._2{margin-left:-2.178000px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._7{width:2.661120px;}
._a{width:4.507920px;}
._9{width:6.071040px;}
._8{width:7.477200px;}
._1c{width:8.478720px;}
._4{width:9.632160px;}
._3{width:10.722960px;}
._d{width:11.907360px;}
._5{width:13.438800px;}
._6{width:15.219360px;}
._32{width:17.868960px;}
._14{width:18.878400px;}
._b{width:20.172240px;}
._c{width:21.769200px;}
._16{width:22.860720px;}
._2c{width:24.068880px;}
._1f{width:25.775280px;}
._11{width:26.893440px;}
._2a{width:28.077840px;}
._21{width:30.139200px;}
._22{width:31.327920px;}
._1e{width:32.356080px;}
._1d{width:33.420240px;}
._27{width:34.674240px;}
._23{width:35.840160px;}
._10{width:36.895680px;}
._12{width:38.154240px;}
._20{width:39.482640px;}
._15{width:40.936320px;}
._37{width:42.791040px;}
._33{width:44.088480px;}
._13{width:45.608400px;}
._43{width:46.629600px;}
._e{width:47.758080px;}
._f{width:48.892080px;}
._3d{width:50.224800px;}
._3c{width:51.395280px;}
._42{width:53.282880px;}
._17{width:54.648000px;}
._36{width:56.362320px;}
._2d{width:57.636720px;}
._34{width:59.351040px;}
._2f{width:60.543360px;}
._30{width:61.909920px;}
._45{width:63.590400px;}
._40{width:65.445120px;}
._28{width:67.432320px;}
._29{width:68.659920px;}
._38{width:71.149680px;}
._44{width:72.606960px;}
._19{width:73.826640px;}
._41{width:75.977280px;}
._35{width:77.999760px;}
._2b{width:80.489520px;}
._46{width:84.588480px;}
._47{width:85.833120px;}
._3b{width:89.490240px;}
._2e{width:90.491760px;}
._3e{width:92.131920px;}
._4c{width:95.127840px;}
._1b{width:96.297840px;}
._1a{width:97.961040px;}
._31{width:99.624960px;}
._4d{width:102.672000px;}
._53{width:103.905360px;}
._54{width:105.387840px;}
._4a{width:111.415680px;}
._39{width:112.475520px;}
._3f{width:131.862960px;}
._18{width:133.266960px;}
._4f{width:140.070720px;}
._50{width:141.878160px;}
._26{width:152.893440px;}
._52{width:168.307920px;}
._48{width:170.965440px;}
._24{width:189.617520px;}
._25{width:197.647200px;}
._4b{width:242.968320px;}
._51{width:245.352960px;}
._49{width:724.864320px;}
._4e{width:757.918080px;}
._3a{width:1738.356000px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fse{font-size:30.240000px;}
.fsb{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:45.360000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fsa{font-size:92.880000px;}
.fsf{font-size:108.000000px;}
.fsd{font-size:144.000000px;}
.ybc{bottom:-100.485000px;}
.ybb{bottom:-62.505000px;}
.yba{bottom:-24.480000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y19{bottom:1.440000px;}
.y11{bottom:1.800000px;}
.y3{bottom:3.420000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.yf{bottom:7.560000px;}
.y6{bottom:8.460000px;}
.yb9{bottom:13.320000px;}
.y8b{bottom:23.370000px;}
.y16{bottom:26.505000px;}
.y8a{bottom:31.110000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.y1{bottom:51.480000px;}
.y15{bottom:55.305000px;}
.y89{bottom:55.590000px;}
.y88{bottom:66.390000px;}
.y14{bottom:70.785000px;}
.y87{bottom:74.130000px;}
.y3f{bottom:75.240000px;}
.y7e{bottom:93.810000px;}
.y13{bottom:94.185000px;}
.y3b{bottom:115.380000px;}
.y7b{bottom:122.760000px;}
.yb7{bottom:128.700000px;}
.y86{bottom:130.785000px;}
.yc8{bottom:132.300000px;}
.y6a{bottom:134.100000px;}
.ya4{bottom:135.360000px;}
.y3a{bottom:140.040000px;}
.y85{bottom:141.585000px;}
.yf6{bottom:144.540000px;}
.yf8{bottom:145.440000px;}
.y7a{bottom:147.420000px;}
.y84{bottom:149.325000px;}
.yb6{bottom:153.540000px;}
.yc7{bottom:154.080000px;}
.y69{bottom:158.760000px;}
.ya3{bottom:160.020000px;}
.y83{bottom:162.255000px;}
.y39{bottom:164.700000px;}
.yf7{bottom:165.600000px;}
.yf5{bottom:166.320000px;}
.y82{bottom:169.995000px;}
.y79{bottom:172.080000px;}
.yc6{bottom:175.860000px;}
.y81{bottom:177.735000px;}
.yb5{bottom:178.200000px;}
.y68{bottom:183.420000px;}
.ya2{bottom:184.680000px;}
.y80{bottom:185.475000px;}
.yf4{bottom:188.100000px;}
.y38{bottom:189.360000px;}
.y7f{bottom:193.215000px;}
.y78{bottom:196.740000px;}
.yc5{bottom:197.640000px;}
.yb4{bottom:202.860000px;}
.y67{bottom:207.750000px;}
.y6d{bottom:208.110000px;}
.ya1{bottom:209.370000px;}
.yf3{bottom:210.090000px;}
.y37{bottom:214.050000px;}
.yc4{bottom:219.450000px;}
.y77{bottom:221.430000px;}
.yb3{bottom:227.550000px;}
.yf2{bottom:231.870000px;}
.y66{bottom:232.410000px;}
.y6c{bottom:232.770000px;}
.ya0{bottom:234.030000px;}
.y36{bottom:238.710000px;}
.yc3{bottom:241.410000px;}
.y76{bottom:246.090000px;}
.yb2{bottom:252.210000px;}
.yf1{bottom:253.650000px;}
.y65{bottom:257.070000px;}
.y6b{bottom:257.430000px;}
.ya8{bottom:258.330000px;}
.y9f{bottom:258.690000px;}
.yc2{bottom:263.190000px;}
.y35{bottom:263.370000px;}
.y75{bottom:270.750000px;}
.yf0{bottom:275.430000px;}
.yb1{bottom:276.870000px;}
.y64{bottom:282.090000px;}
.y9e{bottom:283.350000px;}
.yc1{bottom:284.970000px;}
.y34{bottom:288.030000px;}
.y74{bottom:295.410000px;}
.yef{bottom:297.390000px;}
.yb0{bottom:301.530000px;}
.yc0{bottom:306.390000px;}
.y63{bottom:306.750000px;}
.y9d{bottom:308.010000px;}
.y33{bottom:312.690000px;}
.yee{bottom:319.170000px;}
.y73{bottom:319.710000px;}
.y7c{bottom:320.070000px;}
.yaf{bottom:326.190000px;}
.ybf{bottom:331.050000px;}
.y62{bottom:331.410000px;}
.y9c{bottom:332.670000px;}
.y32{bottom:337.350000px;}
.yed{bottom:340.950000px;}
.y72{bottom:344.370000px;}
.yae{bottom:350.490000px;}
.y61{bottom:356.070000px;}
.y9b{bottom:357.330000px;}
.y31{bottom:362.010000px;}
.yec{bottom:362.730000px;}
.y71{bottom:369.210000px;}
.yad{bottom:375.510000px;}
.y60{bottom:380.730000px;}
.y9a{bottom:381.990000px;}
.yeb{bottom:384.510000px;}
.y7d{bottom:384.660000px;}
.y30{bottom:386.670000px;}
.y70{bottom:390.270000px;}
.yac{bottom:396.390000px;}
.y5f{bottom:405.390000px;}
.yea{bottom:406.470000px;}
.y99{bottom:406.650000px;}
.y2f{bottom:411.330000px;}
.ye9{bottom:428.250000px;}
.y5e{bottom:430.050000px;}
.y98{bottom:431.310000px;}
.y2e{bottom:435.990000px;}
.ye8{bottom:450.075000px;}
.y5d{bottom:454.755000px;}
.y97{bottom:456.015000px;}
.y2d{bottom:460.695000px;}
.ye7{bottom:471.855000px;}
.y5c{bottom:479.595000px;}
.y96{bottom:480.675000px;}
.yb8{bottom:481.575000px;}
.y2c{bottom:485.355000px;}
.ye6{bottom:493.815000px;}
.y5b{bottom:504.255000px;}
.y95{bottom:505.335000px;}
.y2b{bottom:510.015000px;}
.ye5{bottom:515.595000px;}
.y5a{bottom:528.915000px;}
.y94{bottom:529.995000px;}
.y2a{bottom:534.315000px;}
.y3c{bottom:534.675000px;}
.ye4{bottom:537.375000px;}
.y59{bottom:553.575000px;}
.y29{bottom:553.755000px;}
.y93{bottom:554.655000px;}
.ye3{bottom:559.155000px;}
.y28{bottom:577.335000px;}
.y58{bottom:578.235000px;}
.y92{bottom:579.315000px;}
.ye2{bottom:580.935000px;}
.y27{bottom:601.995000px;}
.y57{bottom:602.895000px;}
.ya7{bottom:603.615000px;}
.y91{bottom:603.975000px;}
.y26{bottom:623.775000px;}
.ye1{bottom:624.675000px;}
.y56{bottom:627.555000px;}
.ya6{bottom:628.275000px;}
.y90{bottom:628.635000px;}
.y25{bottom:645.555000px;}
.ye0{bottom:646.455000px;}
.y55{bottom:652.215000px;}
.ya5{bottom:652.935000px;}
.y8f{bottom:653.295000px;}
.y24{bottom:667.335000px;}
.ydf{bottom:668.235000px;}
.y54{bottom:676.905000px;}
.y8e{bottom:677.985000px;}
.y23{bottom:689.325000px;}
.yde{bottom:690.225000px;}
.y53{bottom:701.565000px;}
.y8d{bottom:702.285000px;}
.y22{bottom:711.105000px;}
.ydd{bottom:712.005000px;}
.y8c{bottom:723.525000px;}
.y52{bottom:726.225000px;}
.y21{bottom:732.885000px;}
.ydc{bottom:733.785000px;}
.y51{bottom:750.885000px;}
.y20{bottom:754.665000px;}
.ydb{bottom:755.565000px;}
.y50{bottom:775.545000px;}
.y1f{bottom:776.445000px;}
.yda{bottom:777.345000px;}
.y1e{bottom:798.405000px;}
.yd9{bottom:799.305000px;}
.y4f{bottom:800.205000px;}
.y1d{bottom:820.185000px;}
.yd8{bottom:821.085000px;}
.y4e{bottom:824.865000px;}
.y1c{bottom:841.965000px;}
.yd7{bottom:842.865000px;}
.y4d{bottom:849.525000px;}
.y1b{bottom:863.385000px;}
.yd6{bottom:864.645000px;}
.ya9{bottom:873.825000px;}
.y4c{bottom:874.185000px;}
.y1a{bottom:882.645000px;}
.yd5{bottom:886.425000px;}
.y18{bottom:891.285000px;}
.y12{bottom:898.665000px;}
.y4b{bottom:898.845000px;}
.y17{bottom:902.992996px;}
.yd4{bottom:908.385000px;}
.y4a{bottom:923.550000px;}
.yd3{bottom:930.210000px;}
.y6f{bottom:947.850000px;}
.y49{bottom:948.210000px;}
.yd2{bottom:951.990000px;}
.y6e{bottom:972.510000px;}
.y48{bottom:972.870000px;}
.yd1{bottom:973.770000px;}
.yd0{bottom:995.730000px;}
.ybe{bottom:997.170000px;}
.y47{bottom:997.530000px;}
.ycf{bottom:1017.510000px;}
.y10{bottom:1018.590000px;}
.ybd{bottom:1021.830000px;}
.y46{bottom:1022.190000px;}
.yd{bottom:1025.070000px;}
.yce{bottom:1039.290000px;}
.y45{bottom:1046.850000px;}
.ycd{bottom:1061.070000px;}
.y44{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.ycc{bottom:1082.850000px;}
.yab{bottom:1095.810000px;}
.y43{bottom:1096.170000px;}
.ycb{bottom:1104.810000px;}
.y2{bottom:1106.250000px;}
.yaa{bottom:1120.470000px;}
.y42{bottom:1120.830000px;}
.yca{bottom:1126.590000px;}
.y7{bottom:1128.570000px;}
.y41{bottom:1145.520000px;}
.yc9{bottom:1148.400000px;}
.y4{bottom:1156.860000px;}
.y40{bottom:1170.180000px;}
.y3e{bottom:1187.280000px;}
.y3d{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h18{height:7.380000px;}
.hd{height:13.324219px;}
.h19{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h24{height:30.476250px;}
.h1f{height:30.480469px;}
.h1a{height:36.861328px;}
.h25{height:39.045000px;}
.h15{height:44.496211px;}
.he{height:51.465000px;}
.h5{height:52.920000px;}
.h1c{height:54.596250px;}
.h9{height:56.084062px;}
.h21{height:58.121719px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h16{height:63.492188px;}
.h1b{height:64.978594px;}
.h1d{height:65.010937px;}
.h20{height:65.499609px;}
.h1e{height:66.757500px;}
.h29{height:67.803750px;}
.h28{height:67.837500px;}
.h27{height:68.084282px;}
.h14{height:70.628906px;}
.h6{height:71.324297px;}
.h17{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h13{height:81.736875px;}
.h3{height:103.530000px;}
.h26{height:107.419922px;}
.h12{height:119.902500px;}
.h23{height:145.125000px;}
.h22{height:208.620000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:95.616000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:8.089500px;}
.x5{left:10.965000px;}
.x30{left:13.140000px;}
.x13{left:15.649500px;}
.x10{left:20.685000px;}
.xb{left:34.185000px;}
.x2f{left:36.540000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.x17{left:66.403500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x31{left:135.036000px;}
.x1b{left:162.030000px;}
.x4{left:168.885000px;}
.x15{left:171.568500px;}
.x18{left:207.748500px;}
.x6{left:209.010000px;}
.x14{left:257.788500px;}
.x2b{left:290.595000px;}
.x16{left:297.748500px;}
.x29{left:312.630000px;}
.x27{left:315.870000px;}
.x28{left:318.750000px;}
.x19{left:324.965515px;}
.x12{left:335.578500px;}
.x2d{left:341.535000px;}
.x1e{left:347.655000px;}
.x1f{left:371.550000px;}
.x21{left:376.170000px;}
.x22{left:381.030000px;}
.x20{left:383.730000px;}
.x23{left:387.510000px;}
.x2e{left:398.775000px;}
.x25{left:442.950000px;}
.xa{left:445.620000px;}
.x26{left:446.910000px;}
.x24{left:448.890000px;}
.x1c{left:473.505000px;}
.x32{left:500.505000px;}
.x1d{left:527.505000px;}
.x2c{left:665.970000px;}
.x2a{left:699.630000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.v1{vertical-align:29.440000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.288000pt;}
.ls10{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.169067pt;}
.ls17{letter-spacing:-0.135467pt;}
.lsa{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.101333pt;}
.lsb{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.069333pt;}
.ls13{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.ls12{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.512000pt;}
.ls16{letter-spacing:6.031360pt;}
.ls15{letter-spacing:35.471360pt;}
.ls6{letter-spacing:177.258667pt;}
.wsa{word-spacing:-31.744000pt;}
.wsf{word-spacing:-21.696000pt;}
.ws10{word-spacing:-21.408000pt;}
.ws9{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.ws7{word-spacing:-16.000000pt;}
.wse{word-spacing:-14.953067pt;}
.wsd{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.584533pt;}
.ws4{word-spacing:-14.144000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws6{word-spacing:-10.080000pt;}
.wsb{word-spacing:-6.720000pt;}
.wsc{word-spacing:-6.080000pt;}
.ws8{word-spacing:0.000000pt;}
._2{margin-left:-1.936000pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._7{width:2.365440pt;}
._a{width:4.007040pt;}
._9{width:5.396480pt;}
._8{width:6.646400pt;}
._1c{width:7.536640pt;}
._4{width:8.561920pt;}
._3{width:9.531520pt;}
._d{width:10.584320pt;}
._5{width:11.945600pt;}
._6{width:13.528320pt;}
._32{width:15.883520pt;}
._14{width:16.780800pt;}
._b{width:17.930880pt;}
._c{width:19.350400pt;}
._16{width:20.320640pt;}
._2c{width:21.394560pt;}
._1f{width:22.911360pt;}
._11{width:23.905280pt;}
._2a{width:24.958080pt;}
._21{width:26.790400pt;}
._22{width:27.847040pt;}
._1e{width:28.760960pt;}
._1d{width:29.706880pt;}
._27{width:30.821547pt;}
._23{width:31.857920pt;}
._10{width:32.796160pt;}
._12{width:33.914880pt;}
._20{width:35.095680pt;}
._15{width:36.387840pt;}
._37{width:38.036480pt;}
._33{width:39.189760pt;}
._13{width:40.540800pt;}
._43{width:41.448533pt;}
._e{width:42.451627pt;}
._f{width:43.459627pt;}
._3d{width:44.644267pt;}
._3c{width:45.684693pt;}
._42{width:47.362560pt;}
._17{width:48.576000pt;}
._36{width:50.099840pt;}
._2d{width:51.232640pt;}
._34{width:52.756480pt;}
._2f{width:53.816320pt;}
._30{width:55.031040pt;}
._45{width:56.524800pt;}
._40{width:58.173440pt;}
._28{width:59.939840pt;}
._29{width:61.031040pt;}
._38{width:63.244160pt;}
._44{width:64.539520pt;}
._19{width:65.623680pt;}
._41{width:67.535360pt;}
._35{width:69.333120pt;}
._2b{width:71.546240pt;}
._46{width:75.189760pt;}
._47{width:76.296107pt;}
._3b{width:79.546880pt;}
._2e{width:80.437120pt;}
._3e{width:81.895040pt;}
._4c{width:84.558080pt;}
._1b{width:85.598080pt;}
._1a{width:87.076480pt;}
._31{width:88.555520pt;}
._4d{width:91.264000pt;}
._53{width:92.360320pt;}
._54{width:93.678080pt;}
._4a{width:99.036160pt;}
._39{width:99.978240pt;}
._3f{width:117.211520pt;}
._18{width:118.459520pt;}
._4f{width:124.507307pt;}
._50{width:126.113920pt;}
._26{width:135.905280pt;}
._52{width:149.607040pt;}
._48{width:151.969280pt;}
._24{width:168.548907pt;}
._25{width:175.686400pt;}
._4b{width:215.971840pt;}
._51{width:218.091520pt;}
._49{width:644.323840pt;}
._4e{width:673.704960pt;}
._3a{width:1545.205333pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fse{font-size:26.880000pt;}
.fsb{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:40.320000pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fsa{font-size:82.560000pt;}
.fsf{font-size:96.000000pt;}
.fsd{font-size:128.000000pt;}
.ybc{bottom:-89.320000pt;}
.ybb{bottom:-55.560000pt;}
.yba{bottom:-21.760000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y19{bottom:1.280000pt;}
.y11{bottom:1.600000pt;}
.y3{bottom:3.040000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.yf{bottom:6.720000pt;}
.y6{bottom:7.520000pt;}
.yb9{bottom:11.840000pt;}
.y8b{bottom:20.773333pt;}
.y16{bottom:23.560000pt;}
.y8a{bottom:27.653333pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.y1{bottom:45.760000pt;}
.y15{bottom:49.160000pt;}
.y89{bottom:49.413333pt;}
.y88{bottom:59.013333pt;}
.y14{bottom:62.920000pt;}
.y87{bottom:65.893333pt;}
.y3f{bottom:66.880000pt;}
.y7e{bottom:83.386667pt;}
.y13{bottom:83.720000pt;}
.y3b{bottom:102.560000pt;}
.y7b{bottom:109.120000pt;}
.yb7{bottom:114.400000pt;}
.y86{bottom:116.253333pt;}
.yc8{bottom:117.600000pt;}
.y6a{bottom:119.200000pt;}
.ya4{bottom:120.320000pt;}
.y3a{bottom:124.480000pt;}
.y85{bottom:125.853333pt;}
.yf6{bottom:128.480000pt;}
.yf8{bottom:129.280000pt;}
.y7a{bottom:131.040000pt;}
.y84{bottom:132.733333pt;}
.yb6{bottom:136.480000pt;}
.yc7{bottom:136.960000pt;}
.y69{bottom:141.120000pt;}
.ya3{bottom:142.240000pt;}
.y83{bottom:144.226667pt;}
.y39{bottom:146.400000pt;}
.yf7{bottom:147.200000pt;}
.yf5{bottom:147.840000pt;}
.y82{bottom:151.106667pt;}
.y79{bottom:152.960000pt;}
.yc6{bottom:156.320000pt;}
.y81{bottom:157.986667pt;}
.yb5{bottom:158.400000pt;}
.y68{bottom:163.040000pt;}
.ya2{bottom:164.160000pt;}
.y80{bottom:164.866667pt;}
.yf4{bottom:167.200000pt;}
.y38{bottom:168.320000pt;}
.y7f{bottom:171.746667pt;}
.y78{bottom:174.880000pt;}
.yc5{bottom:175.680000pt;}
.yb4{bottom:180.320000pt;}
.y67{bottom:184.666667pt;}
.y6d{bottom:184.986667pt;}
.ya1{bottom:186.106667pt;}
.yf3{bottom:186.746667pt;}
.y37{bottom:190.266667pt;}
.yc4{bottom:195.066667pt;}
.y77{bottom:196.826667pt;}
.yb3{bottom:202.266667pt;}
.yf2{bottom:206.106667pt;}
.y66{bottom:206.586667pt;}
.y6c{bottom:206.906667pt;}
.ya0{bottom:208.026667pt;}
.y36{bottom:212.186667pt;}
.yc3{bottom:214.586667pt;}
.y76{bottom:218.746667pt;}
.yb2{bottom:224.186667pt;}
.yf1{bottom:225.466667pt;}
.y65{bottom:228.506667pt;}
.y6b{bottom:228.826667pt;}
.ya8{bottom:229.626667pt;}
.y9f{bottom:229.946667pt;}
.yc2{bottom:233.946667pt;}
.y35{bottom:234.106667pt;}
.y75{bottom:240.666667pt;}
.yf0{bottom:244.826667pt;}
.yb1{bottom:246.106667pt;}
.y64{bottom:250.746667pt;}
.y9e{bottom:251.866667pt;}
.yc1{bottom:253.306667pt;}
.y34{bottom:256.026667pt;}
.y74{bottom:262.586667pt;}
.yef{bottom:264.346667pt;}
.yb0{bottom:268.026667pt;}
.yc0{bottom:272.346667pt;}
.y63{bottom:272.666667pt;}
.y9d{bottom:273.786667pt;}
.y33{bottom:277.946667pt;}
.yee{bottom:283.706667pt;}
.y73{bottom:284.186667pt;}
.y7c{bottom:284.506667pt;}
.yaf{bottom:289.946667pt;}
.ybf{bottom:294.266667pt;}
.y62{bottom:294.586667pt;}
.y9c{bottom:295.706667pt;}
.y32{bottom:299.866667pt;}
.yed{bottom:303.066667pt;}
.y72{bottom:306.106667pt;}
.yae{bottom:311.546667pt;}
.y61{bottom:316.506667pt;}
.y9b{bottom:317.626667pt;}
.y31{bottom:321.786667pt;}
.yec{bottom:322.426667pt;}
.y71{bottom:328.186667pt;}
.yad{bottom:333.786667pt;}
.y60{bottom:338.426667pt;}
.y9a{bottom:339.546667pt;}
.yeb{bottom:341.786667pt;}
.y7d{bottom:341.920000pt;}
.y30{bottom:343.706667pt;}
.y70{bottom:346.906667pt;}
.yac{bottom:352.346667pt;}
.y5f{bottom:360.346667pt;}
.yea{bottom:361.306667pt;}
.y99{bottom:361.466667pt;}
.y2f{bottom:365.626667pt;}
.ye9{bottom:380.666667pt;}
.y5e{bottom:382.266667pt;}
.y98{bottom:383.386667pt;}
.y2e{bottom:387.546667pt;}
.ye8{bottom:400.066667pt;}
.y5d{bottom:404.226667pt;}
.y97{bottom:405.346667pt;}
.y2d{bottom:409.506667pt;}
.ye7{bottom:419.426667pt;}
.y5c{bottom:426.306667pt;}
.y96{bottom:427.266667pt;}
.yb8{bottom:428.066667pt;}
.y2c{bottom:431.426667pt;}
.ye6{bottom:438.946667pt;}
.y5b{bottom:448.226667pt;}
.y95{bottom:449.186667pt;}
.y2b{bottom:453.346667pt;}
.ye5{bottom:458.306667pt;}
.y5a{bottom:470.146667pt;}
.y94{bottom:471.106667pt;}
.y2a{bottom:474.946667pt;}
.y3c{bottom:475.266667pt;}
.ye4{bottom:477.666667pt;}
.y59{bottom:492.066667pt;}
.y29{bottom:492.226667pt;}
.y93{bottom:493.026667pt;}
.ye3{bottom:497.026667pt;}
.y28{bottom:513.186667pt;}
.y58{bottom:513.986667pt;}
.y92{bottom:514.946667pt;}
.ye2{bottom:516.386667pt;}
.y27{bottom:535.106667pt;}
.y57{bottom:535.906667pt;}
.ya7{bottom:536.546667pt;}
.y91{bottom:536.866667pt;}
.y26{bottom:554.466667pt;}
.ye1{bottom:555.266667pt;}
.y56{bottom:557.826667pt;}
.ya6{bottom:558.466667pt;}
.y90{bottom:558.786667pt;}
.y25{bottom:573.826667pt;}
.ye0{bottom:574.626667pt;}
.y55{bottom:579.746667pt;}
.ya5{bottom:580.386667pt;}
.y8f{bottom:580.706667pt;}
.y24{bottom:593.186667pt;}
.ydf{bottom:593.986667pt;}
.y54{bottom:601.693333pt;}
.y8e{bottom:602.653333pt;}
.y23{bottom:612.733333pt;}
.yde{bottom:613.533333pt;}
.y53{bottom:623.613333pt;}
.y8d{bottom:624.253333pt;}
.y22{bottom:632.093333pt;}
.ydd{bottom:632.893333pt;}
.y8c{bottom:643.133333pt;}
.y52{bottom:645.533333pt;}
.y21{bottom:651.453333pt;}
.ydc{bottom:652.253333pt;}
.y51{bottom:667.453333pt;}
.y20{bottom:670.813333pt;}
.ydb{bottom:671.613333pt;}
.y50{bottom:689.373333pt;}
.y1f{bottom:690.173333pt;}
.yda{bottom:690.973333pt;}
.y1e{bottom:709.693333pt;}
.yd9{bottom:710.493333pt;}
.y4f{bottom:711.293333pt;}
.y1d{bottom:729.053333pt;}
.yd8{bottom:729.853333pt;}
.y4e{bottom:733.213333pt;}
.y1c{bottom:748.413333pt;}
.yd7{bottom:749.213333pt;}
.y4d{bottom:755.133333pt;}
.y1b{bottom:767.453333pt;}
.yd6{bottom:768.573333pt;}
.ya9{bottom:776.733333pt;}
.y4c{bottom:777.053333pt;}
.y1a{bottom:784.573333pt;}
.yd5{bottom:787.933333pt;}
.y18{bottom:792.253333pt;}
.y12{bottom:798.813333pt;}
.y4b{bottom:798.973333pt;}
.y17{bottom:802.660441pt;}
.yd4{bottom:807.453333pt;}
.y4a{bottom:820.933333pt;}
.yd3{bottom:826.853333pt;}
.y6f{bottom:842.533333pt;}
.y49{bottom:842.853333pt;}
.yd2{bottom:846.213333pt;}
.y6e{bottom:864.453333pt;}
.y48{bottom:864.773333pt;}
.yd1{bottom:865.573333pt;}
.yd0{bottom:885.093333pt;}
.ybe{bottom:886.373333pt;}
.y47{bottom:886.693333pt;}
.ycf{bottom:904.453333pt;}
.y10{bottom:905.413333pt;}
.ybd{bottom:908.293333pt;}
.y46{bottom:908.613333pt;}
.yd{bottom:911.173333pt;}
.yce{bottom:923.813333pt;}
.y45{bottom:930.533333pt;}
.ycd{bottom:943.173333pt;}
.y44{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.ycc{bottom:962.533333pt;}
.yab{bottom:974.053333pt;}
.y43{bottom:974.373333pt;}
.ycb{bottom:982.053333pt;}
.y2{bottom:983.333333pt;}
.yaa{bottom:995.973333pt;}
.y42{bottom:996.293333pt;}
.yca{bottom:1001.413333pt;}
.y7{bottom:1003.173333pt;}
.y41{bottom:1018.240000pt;}
.yc9{bottom:1020.800000pt;}
.y4{bottom:1028.320000pt;}
.y40{bottom:1040.160000pt;}
.y3e{bottom:1055.360000pt;}
.y3d{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h18{height:6.560000pt;}
.hd{height:11.843750pt;}
.h19{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h24{height:27.090000pt;}
.h1f{height:27.093750pt;}
.h1a{height:32.765625pt;}
.h25{height:34.706667pt;}
.h15{height:39.552188pt;}
.he{height:45.746667pt;}
.h5{height:47.040000pt;}
.h1c{height:48.530000pt;}
.h9{height:49.852500pt;}
.h21{height:51.663750pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h16{height:56.437500pt;}
.h1b{height:57.758750pt;}
.h1d{height:57.787500pt;}
.h20{height:58.221875pt;}
.h1e{height:59.340000pt;}
.h29{height:60.270000pt;}
.h28{height:60.300000pt;}
.h27{height:60.519362pt;}
.h14{height:62.781250pt;}
.h6{height:63.399375pt;}
.h17{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h13{height:72.655000pt;}
.h3{height:92.026667pt;}
.h26{height:95.484375pt;}
.h12{height:106.580000pt;}
.h23{height:129.000000pt;}
.h22{height:185.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:84.992000pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.190667pt;}
.x5{left:9.746667pt;}
.x30{left:11.680000pt;}
.x13{left:13.910667pt;}
.x10{left:18.386667pt;}
.xb{left:30.386667pt;}
.x2f{left:32.480000pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.x17{left:59.025333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x31{left:120.032000pt;}
.x1b{left:144.026667pt;}
.x4{left:150.120000pt;}
.x15{left:152.505333pt;}
.x18{left:184.665333pt;}
.x6{left:185.786667pt;}
.x14{left:229.145333pt;}
.x2b{left:258.306667pt;}
.x16{left:264.665333pt;}
.x29{left:277.893333pt;}
.x27{left:280.773333pt;}
.x28{left:283.333333pt;}
.x19{left:288.858236pt;}
.x12{left:298.292000pt;}
.x2d{left:303.586667pt;}
.x1e{left:309.026667pt;}
.x1f{left:330.266667pt;}
.x21{left:334.373333pt;}
.x22{left:338.693333pt;}
.x20{left:341.093333pt;}
.x23{left:344.453333pt;}
.x2e{left:354.466667pt;}
.x25{left:393.733333pt;}
.xa{left:396.106667pt;}
.x26{left:397.253333pt;}
.x24{left:399.013333pt;}
.x1c{left:420.893333pt;}
.x32{left:444.893333pt;}
.x1d{left:468.893333pt;}
.x2c{left:591.973333pt;}
.x2a{left:621.893333pt;}
.x7{left:642.213333pt;}
.x1{left:665.733333pt;}
}




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