
    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_6b06f54facf21e4a951b7c19.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_2be10febc137190b050c8f91.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937012;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_01f527bbdf8a6db2ae769941.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_78a5e07aa163d11da06d7e40.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_cf31576e481474def6baf9fe.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_346f971954c85cb5c18b832d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_387a6b80cbf8b10ab1d80b9e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ffe94af1d61c2517204514d6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.072266;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_91294cabe3733ced06b3a84d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.072266;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_8ed56ffbd9cd1fab33b6e21b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.946777;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_16341156f2524abc75124bc4.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ec09c498f05bf779a35c94bb.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.104004;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_5f4058f03123b5918cc595ee.woff2')format("woff");}.fff{font-family:fff;line-height:1.088867;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_5f95a2ca9a6d7ac303ed5eea.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_8384fd7e386830bbede987cf.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_9677241268ff01287bdc5c0d.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_a044e434bc1cf8fe9481c429.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.956543;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);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.494000px;}
.ls11{letter-spacing:-0.924000px;}
.ls6{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.460200px;}
.ls9{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.303600px;}
.lse{letter-spacing:-0.206400px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.106560px;}
.ls13{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.109200px;}
.lsd{letter-spacing:0.144720px;}
.ls3{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.259920px;}
.ls1d{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.826560px;}
.lsf{letter-spacing:0.900000px;}
.ls1a{letter-spacing:1.020000px;}
.ls1c{letter-spacing:4.500000px;}
.ls18{letter-spacing:5.220000px;}
.ls14{letter-spacing:5.940000px;}
.ls19{letter-spacing:8.820000px;}
.ls16{letter-spacing:12.420000px;}
.ls1b{letter-spacing:21.060000px;}
.ls4{letter-spacing:778.680000px;}
.lsb{letter-spacing:1500.834720px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws1{word-spacing:-31.105680px;}
.ws3{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.580000px;}
.wsc{word-spacing:-14.479800px;}
.wsf{word-spacing:-14.400000px;}
.wsa{word-spacing:-14.328000px;}
.wsb{word-spacing:-14.016000px;}
.ws2{word-spacing:-13.734480px;}
.ws8{word-spacing:-13.625280px;}
.ws7{word-spacing:-13.446000px;}
.wse{word-spacing:-12.060000px;}
.ws0{word-spacing:0.000000px;}
._8{margin-left:-2.574720px;}
._2{margin-left:-1.010880px;}
._0{width:1.203360px;}
._10{width:2.329680px;}
._5{width:3.525840px;}
._3{width:4.840560px;}
._4{width:6.279120px;}
._b{width:7.695840px;}
._11{width:9.040080px;}
._e{width:10.151040px;}
._7{width:11.772720px;}
._6{width:12.833280px;}
._f{width:13.899120px;}
._1e{width:16.179840px;}
._a{width:17.215920px;}
._9{width:18.535680px;}
._d{width:19.614240px;}
._12{width:20.689920px;}
._1b{width:21.825120px;}
._c{width:22.883040px;}
._16{width:24.743760px;}
._14{width:25.987440px;}
._13{width:27.728640px;}
._15{width:29.696640px;}
._21{width:30.750240px;}
._17{width:31.852080px;}
._1a{width:32.927760px;}
._23{width:35.432640px;}
._22{width:36.632880px;}
._1c{width:37.828080px;}
._1d{width:39.246000px;}
._19{width:40.509120px;}
._18{width:41.533200px;}
._20{width:43.086960px;}
._1f{width:44.894880px;}
._26{width:46.074960px;}
._25{width:47.688480px;}
._27{width:55.208160px;}
._24{width:65.406960px;}
._1{width:1620.355440px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,111,192);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs9{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y55{bottom:0.180000px;}
.y14c{bottom:2.865000px;}
.y156{bottom:2.880000px;}
.yae{bottom:3.045000px;}
.ya5{bottom:3.060000px;}
.y23{bottom:10.980000px;}
.y22{bottom:11.520000px;}
.yad{bottom:16.725000px;}
.y155{bottom:16.740000px;}
.ycb{bottom:16.905000px;}
.ya4{bottom:16.920000px;}
.y15f{bottom:17.445000px;}
.yac{bottom:30.585000px;}
.ya3{bottom:30.780000px;}
.yab{bottom:44.445000px;}
.yf9{bottom:44.985000px;}
.yaa{bottom:58.125000px;}
.yca{bottom:58.305000px;}
.ya9{bottom:71.985000px;}
.ya8{bottom:85.890000px;}
.y4{bottom:97.125005px;}
.y20{bottom:139.264499px;}
.y17{bottom:196.933500px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y25{bottom:278.310000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y52{bottom:324.390000px;}
.yc9{bottom:325.305000px;}
.yf6{bottom:326.190000px;}
.y15c{bottom:327.990000px;}
.ya7{bottom:331.605000px;}
.y81{bottom:333.210000px;}
.y149{bottom:335.190000px;}
.ya0{bottom:335.550000px;}
.yc7{bottom:336.270000px;}
.y11e{bottom:339.885000px;}
.y11a{bottom:341.490000px;}
.y51{bottom:341.670000px;}
.yf5{bottom:343.470000px;}
.y15b{bottom:345.270000px;}
.ye{bottom:348.133500px;}
.y80{bottom:350.490000px;}
.y148{bottom:352.470000px;}
.y9f{bottom:352.650000px;}
.yc6{bottom:353.550000px;}
.y119{bottom:358.770000px;}
.y50{bottom:358.950000px;}
.yf4{bottom:360.570000px;}
.y15a{bottom:362.550000px;}
.y7f{bottom:367.770000px;}
.y147{bottom:369.570000px;}
.y9e{bottom:369.930000px;}
.yc5{bottom:370.650000px;}
.y4f{bottom:376.050000px;}
.yf3{bottom:377.850000px;}
.yd2{bottom:378.930000px;}
.y159{bottom:379.650000px;}
.y7e{bottom:385.050000px;}
.yd{bottom:386.785499px;}
.y146{bottom:386.850000px;}
.y9d{bottom:387.210000px;}
.yc4{bottom:387.930000px;}
.yf2{bottom:395.130000px;}
.yd1{bottom:396.210000px;}
.y158{bottom:396.930000px;}
.yc8{bottom:400.350000px;}
.y11d{bottom:401.070000px;}
.y7d{bottom:402.150000px;}
.y4e{bottom:402.330000px;}
.y118{bottom:403.410000px;}
.y145{bottom:404.130000px;}
.y9c{bottom:404.490000px;}
.yc3{bottom:405.210000px;}
.yc{bottom:408.044999px;}
.yd0{bottom:413.535000px;}
.y157{bottom:414.255000px;}
.y7c{bottom:419.475000px;}
.y4d{bottom:419.655000px;}
.y117{bottom:420.735000px;}
.y144{bottom:421.455000px;}
.y9b{bottom:421.815000px;}
.yc2{bottom:422.535000px;}
.ycf{bottom:430.815000px;}
.y152{bottom:431.535000px;}
.ya6{bottom:434.235000px;}
.y7b{bottom:436.755000px;}
.y4c{bottom:436.935000px;}
.y116{bottom:438.015000px;}
.y143{bottom:438.735000px;}
.y9a{bottom:439.095000px;}
.yc1{bottom:439.815000px;}
.yce{bottom:448.095000px;}
.y151{bottom:448.815000px;}
.y7a{bottom:454.035000px;}
.y4b{bottom:454.215000px;}
.y115{bottom:455.115000px;}
.y142{bottom:456.015000px;}
.y99{bottom:456.195000px;}
.yc0{bottom:457.095000px;}
.ycd{bottom:465.195000px;}
.y150{bottom:466.095000px;}
.y79{bottom:471.315000px;}
.y4a{bottom:471.495000px;}
.y114{bottom:472.395000px;}
.y141{bottom:473.115000px;}
.ybf{bottom:474.195000px;}
.y98{bottom:482.475000px;}
.y14f{bottom:483.195000px;}
.y49{bottom:488.595000px;}
.y113{bottom:489.675000px;}
.y140{bottom:490.395000px;}
.ybe{bottom:491.475000px;}
.y97{bottom:499.755000px;}
.yf1{bottom:500.475000px;}
.yb{bottom:502.864502px;}
.y78{bottom:505.695000px;}
.y48{bottom:505.875000px;}
.y112{bottom:506.955000px;}
.y13f{bottom:507.675000px;}
.ybd{bottom:508.755000px;}
.y96{bottom:517.035000px;}
.yf0{bottom:517.755000px;}
.ya{bottom:520.864502px;}
.y77{bottom:522.975000px;}
.y47{bottom:523.155000px;}
.ybc{bottom:526.035000px;}
.y111{bottom:533.235000px;}
.y13e{bottom:533.955000px;}
.y95{bottom:534.315000px;}
.yef{bottom:535.035000px;}
.y9{bottom:538.864499px;}
.y76{bottom:540.255000px;}
.y46{bottom:540.435000px;}
.ybb{bottom:543.315000px;}
.y110{bottom:550.515000px;}
.y13d{bottom:551.235000px;}
.y94{bottom:551.595000px;}
.yee{bottom:552.315000px;}
.y8{bottom:556.864499px;}
.y75{bottom:557.535000px;}
.y45{bottom:557.715000px;}
.yba{bottom:560.595000px;}
.y10f{bottom:567.615000px;}
.y13c{bottom:568.515000px;}
.y93{bottom:568.695000px;}
.yed{bottom:569.595000px;}
.y44{bottom:574.815000px;}
.yb9{bottom:577.695000px;}
.y74{bottom:583.815000px;}
.y10e{bottom:584.895000px;}
.y13b{bottom:585.615000px;}
.y92{bottom:585.975000px;}
.yec{bottom:586.695000px;}
.y54{bottom:587.055000px;}
.y43{bottom:592.095000px;}
.yb8{bottom:594.975000px;}
.y73{bottom:601.095000px;}
.y10d{bottom:602.175000px;}
.y13a{bottom:602.895000px;}
.y91{bottom:603.255000px;}
.yeb{bottom:603.975000px;}
.y42{bottom:609.375000px;}
.yb7{bottom:612.255000px;}
.y72{bottom:618.195000px;}
.y10c{bottom:619.455000px;}
.y90{bottom:620.535000px;}
.yea{bottom:621.255000px;}
.y41{bottom:626.655000px;}
.y139{bottom:629.175000px;}
.yb6{bottom:629.535000px;}
.y71{bottom:635.475000px;}
.y10b{bottom:636.735000px;}
.y53{bottom:637.095000px;}
.y8f{bottom:637.815000px;}
.ye9{bottom:638.535000px;}
.y40{bottom:643.935000px;}
.y7{bottom:645.510000px;}
.y138{bottom:646.455000px;}
.yb5{bottom:646.815000px;}
.y70{bottom:652.575000px;}
.y8e{bottom:654.945000px;}
.ye8{bottom:655.845000px;}
.y3f{bottom:661.245000px;}
.y10a{bottom:662.865000px;}
.y137{bottom:663.765000px;}
.yb4{bottom:663.945000px;}
.y6{bottom:666.771000px;}
.y6f{bottom:672.225000px;}
.ye7{bottom:672.945000px;}
.y3e{bottom:678.345000px;}
.y109{bottom:680.145000px;}
.y136{bottom:680.865000px;}
.yb3{bottom:681.225000px;}
.y6e{bottom:689.505000px;}
.ye6{bottom:690.225000px;}
.y3d{bottom:695.625000px;}
.y108{bottom:697.425000px;}
.y135{bottom:698.145000px;}
.yb2{bottom:698.505000px;}
.y14e{bottom:699.225000px;}
.y14b{bottom:705.000000px;}
.y8d{bottom:706.785000px;}
.y3c{bottom:712.905000px;}
.y107{bottom:714.705000px;}
.y134{bottom:715.425000px;}
.y6d{bottom:715.785000px;}
.ye5{bottom:716.505000px;}
.y8c{bottom:724.065000px;}
.yb1{bottom:724.785000px;}
.y5{bottom:726.298500px;}
.y3b{bottom:730.185000px;}
.y106{bottom:731.985000px;}
.y133{bottom:732.705000px;}
.y6c{bottom:733.065000px;}
.ye4{bottom:733.785000px;}
.y14a{bottom:738.465000px;}
.yb0{bottom:742.065000px;}
.y3a{bottom:747.465000px;}
.y105{bottom:749.265000px;}
.y132{bottom:749.985000px;}
.y6b{bottom:750.345000px;}
.ye3{bottom:751.065000px;}
.y3{bottom:752.599495px;}
.yf8{bottom:753.240000px;}
.yaf{bottom:759.345000px;}
.y39{bottom:764.745000px;}
.y104{bottom:766.365000px;}
.y131{bottom:767.265000px;}
.y6a{bottom:767.445000px;}
.ye2{bottom:768.345000px;}
.y15e{bottom:772.140000px;}
.y8b{bottom:776.445000px;}
.y38{bottom:781.845000px;}
.y103{bottom:783.645000px;}
.y11c{bottom:784.365000px;}
.y69{bottom:784.725000px;}
.ye1{bottom:785.445000px;}
.y8a{bottom:793.725000px;}
.y37{bottom:799.125000px;}
.y130{bottom:801.645000px;}
.y68{bottom:802.005000px;}
.ye0{bottom:802.725000px;}
.y15d{bottom:809.205000px;}
.y102{bottom:809.925000px;}
.y89{bottom:811.005000px;}
.ya2{bottom:813.525000px;}
.y154{bottom:813.705000px;}
.yf7{bottom:817.845000px;}
.y11b{bottom:818.025000px;}
.y12f{bottom:818.925000px;}
.ycc{bottom:819.285000px;}
.ydf{bottom:820.005000px;}
.y101{bottom:827.205000px;}
.y67{bottom:828.285000px;}
.y36{bottom:833.685000px;}
.y12e{bottom:836.205000px;}
.yde{bottom:837.285000px;}
.y100{bottom:844.485000px;}
.y66{bottom:845.565000px;}
.y153{bottom:847.185000px;}
.y35{bottom:850.965000px;}
.y12d{bottom:853.485000px;}
.ydd{bottom:854.565000px;}
.ya1{bottom:861.045000px;}
.yff{bottom:861.765000px;}
.y65{bottom:862.845000px;}
.y34{bottom:869.865000px;}
.y12c{bottom:870.765000px;}
.ydc{bottom:871.845000px;}
.yfe{bottom:878.865000px;}
.y2{bottom:879.369000px;}
.y64{bottom:879.945000px;}
.y33{bottom:887.325000px;}
.y12b{bottom:887.865000px;}
.ydb{bottom:888.945000px;}
.yfd{bottom:896.145000px;}
.y63{bottom:897.225000px;}
.y32{bottom:905.010000px;}
.y12a{bottom:905.190000px;}
.yda{bottom:906.270000px;}
.yfc{bottom:913.470000px;}
.y62{bottom:914.550000px;}
.y31{bottom:922.110000px;}
.y129{bottom:922.470000px;}
.yd9{bottom:923.550000px;}
.y61{bottom:931.830000px;}
.y30{bottom:939.030000px;}
.y128{bottom:939.750000px;}
.yd8{bottom:940.830000px;}
.y60{bottom:949.110000px;}
.y2f{bottom:956.310000px;}
.y127{bottom:957.030000px;}
.yfb{bottom:958.110000px;}
.y5f{bottom:966.390000px;}
.y1{bottom:966.726000px;}
.yd7{bottom:967.110000px;}
.y126{bottom:974.310000px;}
.yfa{bottom:975.390000px;}
.y2e{bottom:975.930000px;}
.y88{bottom:983.490000px;}
.yd6{bottom:984.390000px;}
.y125{bottom:991.410000px;}
.y14d{bottom:992.130000px;}
.y5e{bottom:992.490000px;}
.y2d{bottom:993.750000px;}
.y87{bottom:1000.770000px;}
.yd5{bottom:1001.490000px;}
.y124{bottom:1008.690000px;}
.y5d{bottom:1009.770000px;}
.y2c{bottom:1012.650000px;}
.y86{bottom:1018.050000px;}
.yd4{bottom:1018.770000px;}
.y123{bottom:1025.970000px;}
.y5c{bottom:1027.050000px;}
.y2b{bottom:1031.370000px;}
.yd3{bottom:1036.050000px;}
.y122{bottom:1043.250000px;}
.y85{bottom:1044.330000px;}
.y2a{bottom:1051.170000px;}
.y5b{bottom:1053.330000px;}
.y121{bottom:1060.530000px;}
.y84{bottom:1061.610000px;}
.y5a{bottom:1070.610000px;}
.y29{bottom:1071.870000px;}
.y120{bottom:1077.630000px;}
.y83{bottom:1078.710000px;}
.y59{bottom:1087.710000px;}
.y11f{bottom:1094.910000px;}
.y82{bottom:1095.990000px;}
.y28{bottom:1097.430000px;}
.y58{bottom:1104.990000px;}
.y27{bottom:1121.910000px;}
.y57{bottom:1122.270000px;}
.y26{bottom:1139.190000px;}
.y56{bottom:1139.550000px;}
.y24{bottom:1157.580000px;}
.y21{bottom:1175.220000px;}
.h9{height:32.040000px;}
.h7{height:32.130000px;}
.h29{height:33.465000px;}
.h2b{height:33.475500px;}
.h24{height:33.655500px;}
.h2d{height:37.065000px;}
.h22{height:42.068672px;}
.hb{height:43.506914px;}
.h6{height:45.900000px;}
.h1a{height:47.321367px;}
.h25{height:47.344922px;}
.h19{height:47.515500px;}
.h3{height:48.195000px;}
.h14{height:50.040000px;}
.h16{height:52.114922px;}
.h17{height:52.435898px;}
.h2{height:55.080000px;}
.h12{height:58.621992px;}
.h11{height:58.651172px;}
.hd{height:60.226875px;}
.h27{height:61.185000px;}
.h1f{height:61.423863px;}
.ha{height:63.824414px;}
.h21{height:64.605000px;}
.h10{height:64.978594px;}
.hf{height:66.757500px;}
.he{height:67.992539px;}
.h15{height:69.715898px;}
.hc{height:70.664062px;}
.h1e{height:75.045000px;}
.h5{height:78.030000px;}
.h1c{height:102.621000px;}
.h4{height:119.055004px;}
.h20{height:147.627000px;}
.h2a{height:156.270000px;}
.h1b{height:169.560000px;}
.h18{height:175.350000px;}
.h13{height:192.630000px;}
.h28{height:212.430000px;}
.h2c{height:221.610000px;}
.h26{height:253.875000px;}
.h23{height:269.850000px;}
.h1d{height:288.615000px;}
.h8{height:1262.700000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w9{width:74.865000px;}
.w5{width:75.585000px;}
.wf{width:139.176000px;}
.w10{width:161.850000px;}
.wd{width:165.270000px;}
.we{width:169.050000px;}
.w13{width:191.010000px;}
.w7{width:191.730000px;}
.wb{width:206.130000px;}
.w12{width:234.390000px;}
.wa{width:237.990000px;}
.wc{width:244.290000px;}
.w11{width:301.035000px;}
.w6{width:493.470000px;}
.w8{width:494.190000px;}
.w2{width:637.794021px;}
.w4{width:892.500000px;}
.w3{width:892.800000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:1.620000px;}
.x27{left:2.880000px;}
.x21{left:3.960000px;}
.x6{left:8.085000px;}
.x18{left:13.140000px;}
.x22{left:14.220000px;}
.x14{left:16.740000px;}
.x1f{left:18.360000px;}
.x1c{left:19.980000px;}
.x19{left:21.240000px;}
.x2d{left:23.040000px;}
.x1d{left:27.360000px;}
.x1e{left:30.060000px;}
.x1b{left:33.480000px;}
.x1a{left:36.900000px;}
.x2b{left:41.220000px;}
.x29{left:43.020000px;}
.x32{left:56.550000px;}
.x2e{left:59.985000px;}
.x37{left:66.060000px;}
.x23{left:70.920000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x30{left:139.350000px;}
.x5{left:162.045000px;}
.x8{left:164.550000px;}
.x12{left:167.625000px;}
.x9{left:170.130000px;}
.x11{left:183.645000px;}
.x36{left:187.785000px;}
.x4{left:203.484001px;}
.x24{left:212.610000px;}
.x15{left:223.230000px;}
.x17{left:229.905000px;}
.x34{left:234.405000px;}
.xf{left:235.650000px;}
.x7{left:237.645000px;}
.x26{left:241.425000px;}
.xa{left:272.595000px;}
.xc{left:319.935000px;}
.xe{left:361.875000px;}
.x10{left:368.535000px;}
.x2f{left:421.815000px;}
.xb{left:444.705000px;}
.x3{left:454.959000px;}
.x25{left:478.545000px;}
.x33{left:488.445000px;}
.x16{left:492.945000px;}
.xd{left:497.805000px;}
.x20{left:516.705000px;}
.x35{left:531.825000px;}
.x2c{left:553.785000px;}
.x2a{left:557.565000px;}
.x31{left:560.985000px;}
.x13{left:656.250000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.328000pt;}
.ls11{letter-spacing:-0.821333pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.409067pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.269867pt;}
.lse{letter-spacing:-0.183467pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.094720pt;}
.ls13{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.097067pt;}
.lsd{letter-spacing:0.128640pt;}
.ls3{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.231040pt;}
.ls1d{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.734720pt;}
.lsf{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:0.906667pt;}
.ls1c{letter-spacing:4.000000pt;}
.ls18{letter-spacing:4.640000pt;}
.ls14{letter-spacing:5.280000pt;}
.ls19{letter-spacing:7.840000pt;}
.ls16{letter-spacing:11.040000pt;}
.ls1b{letter-spacing:18.720000pt;}
.ls4{letter-spacing:692.160000pt;}
.lsb{letter-spacing:1334.075307pt;}
.wsd{word-spacing:-53.120000pt;}
.ws1{word-spacing:-27.649493pt;}
.ws3{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.870933pt;}
.wsf{word-spacing:-12.800000pt;}
.wsa{word-spacing:-12.736000pt;}
.wsb{word-spacing:-12.458667pt;}
.ws2{word-spacing:-12.208427pt;}
.ws8{word-spacing:-12.111360pt;}
.ws7{word-spacing:-11.952000pt;}
.wse{word-spacing:-10.720000pt;}
.ws0{word-spacing:0.000000pt;}
._8{margin-left:-2.288640pt;}
._2{margin-left:-0.898560pt;}
._0{width:1.069653pt;}
._10{width:2.070827pt;}
._5{width:3.134080pt;}
._3{width:4.302720pt;}
._4{width:5.581440pt;}
._b{width:6.840747pt;}
._11{width:8.035627pt;}
._e{width:9.023147pt;}
._7{width:10.464640pt;}
._6{width:11.407360pt;}
._f{width:12.354773pt;}
._1e{width:14.382080pt;}
._a{width:15.303040pt;}
._9{width:16.476160pt;}
._d{width:17.434880pt;}
._12{width:18.391040pt;}
._1b{width:19.400107pt;}
._c{width:20.340480pt;}
._16{width:21.994453pt;}
._14{width:23.099947pt;}
._13{width:24.647680pt;}
._15{width:26.397013pt;}
._21{width:27.333547pt;}
._17{width:28.312960pt;}
._1a{width:29.269120pt;}
._23{width:31.495680pt;}
._22{width:32.562560pt;}
._1c{width:33.624960pt;}
._1d{width:34.885333pt;}
._19{width:36.008107pt;}
._18{width:36.918400pt;}
._20{width:38.299520pt;}
._1f{width:39.906560pt;}
._26{width:40.955520pt;}
._25{width:42.389760pt;}
._27{width:49.073920pt;}
._24{width:58.139520pt;}
._1{width:1440.315947pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:0.160000pt;}
.y14c{bottom:2.546667pt;}
.y156{bottom:2.560000pt;}
.yae{bottom:2.706667pt;}
.ya5{bottom:2.720000pt;}
.y23{bottom:9.760000pt;}
.y22{bottom:10.240000pt;}
.yad{bottom:14.866667pt;}
.y155{bottom:14.880000pt;}
.ycb{bottom:15.026667pt;}
.ya4{bottom:15.040000pt;}
.y15f{bottom:15.506667pt;}
.yac{bottom:27.186667pt;}
.ya3{bottom:27.360000pt;}
.yab{bottom:39.506667pt;}
.yf9{bottom:39.986667pt;}
.yaa{bottom:51.666667pt;}
.yca{bottom:51.826667pt;}
.ya9{bottom:63.986667pt;}
.ya8{bottom:76.346667pt;}
.y4{bottom:86.333337pt;}
.y20{bottom:123.790666pt;}
.y17{bottom:175.052000pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y25{bottom:247.386667pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y52{bottom:288.346667pt;}
.yc9{bottom:289.160000pt;}
.yf6{bottom:289.946667pt;}
.y15c{bottom:291.546667pt;}
.ya7{bottom:294.760000pt;}
.y81{bottom:296.186667pt;}
.y149{bottom:297.946667pt;}
.ya0{bottom:298.266667pt;}
.yc7{bottom:298.906667pt;}
.y11e{bottom:302.120000pt;}
.y11a{bottom:303.546667pt;}
.y51{bottom:303.706667pt;}
.yf5{bottom:305.306667pt;}
.y15b{bottom:306.906667pt;}
.ye{bottom:309.452000pt;}
.y80{bottom:311.546667pt;}
.y148{bottom:313.306667pt;}
.y9f{bottom:313.466667pt;}
.yc6{bottom:314.266667pt;}
.y119{bottom:318.906667pt;}
.y50{bottom:319.066667pt;}
.yf4{bottom:320.506667pt;}
.y15a{bottom:322.266667pt;}
.y7f{bottom:326.906667pt;}
.y147{bottom:328.506667pt;}
.y9e{bottom:328.826667pt;}
.yc5{bottom:329.466667pt;}
.y4f{bottom:334.266667pt;}
.yf3{bottom:335.866667pt;}
.yd2{bottom:336.826667pt;}
.y159{bottom:337.466667pt;}
.y7e{bottom:342.266667pt;}
.yd{bottom:343.809333pt;}
.y146{bottom:343.866667pt;}
.y9d{bottom:344.186667pt;}
.yc4{bottom:344.826667pt;}
.yf2{bottom:351.226667pt;}
.yd1{bottom:352.186667pt;}
.y158{bottom:352.826667pt;}
.yc8{bottom:355.866667pt;}
.y11d{bottom:356.506667pt;}
.y7d{bottom:357.466667pt;}
.y4e{bottom:357.626667pt;}
.y118{bottom:358.586667pt;}
.y145{bottom:359.226667pt;}
.y9c{bottom:359.546667pt;}
.yc3{bottom:360.186667pt;}
.yc{bottom:362.706666pt;}
.yd0{bottom:367.586667pt;}
.y157{bottom:368.226667pt;}
.y7c{bottom:372.866667pt;}
.y4d{bottom:373.026667pt;}
.y117{bottom:373.986667pt;}
.y144{bottom:374.626667pt;}
.y9b{bottom:374.946667pt;}
.yc2{bottom:375.586667pt;}
.ycf{bottom:382.946667pt;}
.y152{bottom:383.586667pt;}
.ya6{bottom:385.986667pt;}
.y7b{bottom:388.226667pt;}
.y4c{bottom:388.386667pt;}
.y116{bottom:389.346667pt;}
.y143{bottom:389.986667pt;}
.y9a{bottom:390.306667pt;}
.yc1{bottom:390.946667pt;}
.yce{bottom:398.306667pt;}
.y151{bottom:398.946667pt;}
.y7a{bottom:403.586667pt;}
.y4b{bottom:403.746667pt;}
.y115{bottom:404.546667pt;}
.y142{bottom:405.346667pt;}
.y99{bottom:405.506667pt;}
.yc0{bottom:406.306667pt;}
.ycd{bottom:413.506667pt;}
.y150{bottom:414.306667pt;}
.y79{bottom:418.946667pt;}
.y4a{bottom:419.106667pt;}
.y114{bottom:419.906667pt;}
.y141{bottom:420.546667pt;}
.ybf{bottom:421.506667pt;}
.y98{bottom:428.866667pt;}
.y14f{bottom:429.506667pt;}
.y49{bottom:434.306667pt;}
.y113{bottom:435.266667pt;}
.y140{bottom:435.906667pt;}
.ybe{bottom:436.866667pt;}
.y97{bottom:444.226667pt;}
.yf1{bottom:444.866667pt;}
.yb{bottom:446.990669pt;}
.y78{bottom:449.506667pt;}
.y48{bottom:449.666667pt;}
.y112{bottom:450.626667pt;}
.y13f{bottom:451.266667pt;}
.ybd{bottom:452.226667pt;}
.y96{bottom:459.586667pt;}
.yf0{bottom:460.226667pt;}
.ya{bottom:462.990669pt;}
.y77{bottom:464.866667pt;}
.y47{bottom:465.026667pt;}
.ybc{bottom:467.586667pt;}
.y111{bottom:473.986667pt;}
.y13e{bottom:474.626667pt;}
.y95{bottom:474.946667pt;}
.yef{bottom:475.586667pt;}
.y9{bottom:478.990666pt;}
.y76{bottom:480.226667pt;}
.y46{bottom:480.386667pt;}
.ybb{bottom:482.946667pt;}
.y110{bottom:489.346667pt;}
.y13d{bottom:489.986667pt;}
.y94{bottom:490.306667pt;}
.yee{bottom:490.946667pt;}
.y8{bottom:494.990666pt;}
.y75{bottom:495.586667pt;}
.y45{bottom:495.746667pt;}
.yba{bottom:498.306667pt;}
.y10f{bottom:504.546667pt;}
.y13c{bottom:505.346667pt;}
.y93{bottom:505.506667pt;}
.yed{bottom:506.306667pt;}
.y44{bottom:510.946667pt;}
.yb9{bottom:513.506667pt;}
.y74{bottom:518.946667pt;}
.y10e{bottom:519.906667pt;}
.y13b{bottom:520.546667pt;}
.y92{bottom:520.866667pt;}
.yec{bottom:521.506667pt;}
.y54{bottom:521.826667pt;}
.y43{bottom:526.306667pt;}
.yb8{bottom:528.866667pt;}
.y73{bottom:534.306667pt;}
.y10d{bottom:535.266667pt;}
.y13a{bottom:535.906667pt;}
.y91{bottom:536.226667pt;}
.yeb{bottom:536.866667pt;}
.y42{bottom:541.666667pt;}
.yb7{bottom:544.226667pt;}
.y72{bottom:549.506667pt;}
.y10c{bottom:550.626667pt;}
.y90{bottom:551.586667pt;}
.yea{bottom:552.226667pt;}
.y41{bottom:557.026667pt;}
.y139{bottom:559.266667pt;}
.yb6{bottom:559.586667pt;}
.y71{bottom:564.866667pt;}
.y10b{bottom:565.986667pt;}
.y53{bottom:566.306667pt;}
.y8f{bottom:566.946667pt;}
.ye9{bottom:567.586667pt;}
.y40{bottom:572.386667pt;}
.y7{bottom:573.786667pt;}
.y138{bottom:574.626667pt;}
.yb5{bottom:574.946667pt;}
.y70{bottom:580.066667pt;}
.y8e{bottom:582.173333pt;}
.ye8{bottom:582.973333pt;}
.y3f{bottom:587.773333pt;}
.y10a{bottom:589.213333pt;}
.y137{bottom:590.013333pt;}
.yb4{bottom:590.173333pt;}
.y6{bottom:592.685334pt;}
.y6f{bottom:597.533333pt;}
.ye7{bottom:598.173333pt;}
.y3e{bottom:602.973333pt;}
.y109{bottom:604.573333pt;}
.y136{bottom:605.213333pt;}
.yb3{bottom:605.533333pt;}
.y6e{bottom:612.893333pt;}
.ye6{bottom:613.533333pt;}
.y3d{bottom:618.333333pt;}
.y108{bottom:619.933333pt;}
.y135{bottom:620.573333pt;}
.yb2{bottom:620.893333pt;}
.y14e{bottom:621.533333pt;}
.y14b{bottom:626.666667pt;}
.y8d{bottom:628.253333pt;}
.y3c{bottom:633.693333pt;}
.y107{bottom:635.293333pt;}
.y134{bottom:635.933333pt;}
.y6d{bottom:636.253333pt;}
.ye5{bottom:636.893333pt;}
.y8c{bottom:643.613333pt;}
.yb1{bottom:644.253333pt;}
.y5{bottom:645.598667pt;}
.y3b{bottom:649.053333pt;}
.y106{bottom:650.653333pt;}
.y133{bottom:651.293333pt;}
.y6c{bottom:651.613333pt;}
.ye4{bottom:652.253333pt;}
.y14a{bottom:656.413333pt;}
.yb0{bottom:659.613333pt;}
.y3a{bottom:664.413333pt;}
.y105{bottom:666.013333pt;}
.y132{bottom:666.653333pt;}
.y6b{bottom:666.973333pt;}
.ye3{bottom:667.613333pt;}
.y3{bottom:668.977329pt;}
.yf8{bottom:669.546667pt;}
.yaf{bottom:674.973333pt;}
.y39{bottom:679.773333pt;}
.y104{bottom:681.213333pt;}
.y131{bottom:682.013333pt;}
.y6a{bottom:682.173333pt;}
.ye2{bottom:682.973333pt;}
.y15e{bottom:686.346667pt;}
.y8b{bottom:690.173333pt;}
.y38{bottom:694.973333pt;}
.y103{bottom:696.573333pt;}
.y11c{bottom:697.213333pt;}
.y69{bottom:697.533333pt;}
.ye1{bottom:698.173333pt;}
.y8a{bottom:705.533333pt;}
.y37{bottom:710.333333pt;}
.y130{bottom:712.573333pt;}
.y68{bottom:712.893333pt;}
.ye0{bottom:713.533333pt;}
.y15d{bottom:719.293333pt;}
.y102{bottom:719.933333pt;}
.y89{bottom:720.893333pt;}
.ya2{bottom:723.133333pt;}
.y154{bottom:723.293333pt;}
.yf7{bottom:726.973333pt;}
.y11b{bottom:727.133333pt;}
.y12f{bottom:727.933333pt;}
.ycc{bottom:728.253333pt;}
.ydf{bottom:728.893333pt;}
.y101{bottom:735.293333pt;}
.y67{bottom:736.253333pt;}
.y36{bottom:741.053333pt;}
.y12e{bottom:743.293333pt;}
.yde{bottom:744.253333pt;}
.y100{bottom:750.653333pt;}
.y66{bottom:751.613333pt;}
.y153{bottom:753.053333pt;}
.y35{bottom:756.413333pt;}
.y12d{bottom:758.653333pt;}
.ydd{bottom:759.613333pt;}
.ya1{bottom:765.373333pt;}
.yff{bottom:766.013333pt;}
.y65{bottom:766.973333pt;}
.y34{bottom:773.213333pt;}
.y12c{bottom:774.013333pt;}
.ydc{bottom:774.973333pt;}
.yfe{bottom:781.213333pt;}
.y2{bottom:781.661334pt;}
.y64{bottom:782.173333pt;}
.y33{bottom:788.733333pt;}
.y12b{bottom:789.213333pt;}
.ydb{bottom:790.173333pt;}
.yfd{bottom:796.573333pt;}
.y63{bottom:797.533333pt;}
.y32{bottom:804.453333pt;}
.y12a{bottom:804.613333pt;}
.yda{bottom:805.573333pt;}
.yfc{bottom:811.973333pt;}
.y62{bottom:812.933333pt;}
.y31{bottom:819.653333pt;}
.y129{bottom:819.973333pt;}
.yd9{bottom:820.933333pt;}
.y61{bottom:828.293333pt;}
.y30{bottom:834.693333pt;}
.y128{bottom:835.333333pt;}
.yd8{bottom:836.293333pt;}
.y60{bottom:843.653333pt;}
.y2f{bottom:850.053333pt;}
.y127{bottom:850.693333pt;}
.yfb{bottom:851.653333pt;}
.y5f{bottom:859.013333pt;}
.y1{bottom:859.312000pt;}
.yd7{bottom:859.653333pt;}
.y126{bottom:866.053333pt;}
.yfa{bottom:867.013333pt;}
.y2e{bottom:867.493333pt;}
.y88{bottom:874.213333pt;}
.yd6{bottom:875.013333pt;}
.y125{bottom:881.253333pt;}
.y14d{bottom:881.893333pt;}
.y5e{bottom:882.213333pt;}
.y2d{bottom:883.333333pt;}
.y87{bottom:889.573333pt;}
.yd5{bottom:890.213333pt;}
.y124{bottom:896.613333pt;}
.y5d{bottom:897.573333pt;}
.y2c{bottom:900.133333pt;}
.y86{bottom:904.933333pt;}
.yd4{bottom:905.573333pt;}
.y123{bottom:911.973333pt;}
.y5c{bottom:912.933333pt;}
.y2b{bottom:916.773333pt;}
.yd3{bottom:920.933333pt;}
.y122{bottom:927.333333pt;}
.y85{bottom:928.293333pt;}
.y2a{bottom:934.373333pt;}
.y5b{bottom:936.293333pt;}
.y121{bottom:942.693333pt;}
.y84{bottom:943.653333pt;}
.y5a{bottom:951.653333pt;}
.y29{bottom:952.773333pt;}
.y120{bottom:957.893333pt;}
.y83{bottom:958.853333pt;}
.y59{bottom:966.853333pt;}
.y11f{bottom:973.253333pt;}
.y82{bottom:974.213333pt;}
.y28{bottom:975.493333pt;}
.y58{bottom:982.213333pt;}
.y27{bottom:997.253333pt;}
.y57{bottom:997.573333pt;}
.y26{bottom:1012.613333pt;}
.y56{bottom:1012.933333pt;}
.y24{bottom:1028.960000pt;}
.y21{bottom:1044.640000pt;}
.h9{height:28.480000pt;}
.h7{height:28.560000pt;}
.h29{height:29.746667pt;}
.h2b{height:29.756000pt;}
.h24{height:29.916000pt;}
.h2d{height:32.946667pt;}
.h22{height:37.394375pt;}
.hb{height:38.672812pt;}
.h6{height:40.800000pt;}
.h1a{height:42.063437pt;}
.h25{height:42.084375pt;}
.h19{height:42.236000pt;}
.h3{height:42.840000pt;}
.h14{height:44.480000pt;}
.h16{height:46.324375pt;}
.h17{height:46.609688pt;}
.h2{height:48.960000pt;}
.h12{height:52.108438pt;}
.h11{height:52.134375pt;}
.hd{height:53.535000pt;}
.h27{height:54.386667pt;}
.h1f{height:54.598989pt;}
.ha{height:56.732813pt;}
.h21{height:57.426667pt;}
.h10{height:57.758750pt;}
.hf{height:59.340000pt;}
.he{height:60.437812pt;}
.h15{height:61.969687pt;}
.hc{height:62.812500pt;}
.h1e{height:66.706667pt;}
.h5{height:69.360000pt;}
.h1c{height:91.218667pt;}
.h4{height:105.826671pt;}
.h20{height:131.224000pt;}
.h2a{height:138.906667pt;}
.h1b{height:150.720000pt;}
.h18{height:155.866667pt;}
.h13{height:171.226667pt;}
.h28{height:188.826667pt;}
.h2c{height:196.986667pt;}
.h26{height:225.666667pt;}
.h23{height:239.866667pt;}
.h1d{height:256.546667pt;}
.h8{height:1122.400000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w9{width:66.546667pt;}
.w5{width:67.186667pt;}
.wf{width:123.712000pt;}
.w10{width:143.866667pt;}
.wd{width:146.906667pt;}
.we{width:150.266667pt;}
.w13{width:169.786667pt;}
.w7{width:170.426667pt;}
.wb{width:183.226667pt;}
.w12{width:208.346667pt;}
.wa{width:211.546667pt;}
.wc{width:217.146667pt;}
.w11{width:267.586667pt;}
.w6{width:438.640000pt;}
.w8{width:439.280000pt;}
.w2{width:566.928019pt;}
.w4{width:793.333333pt;}
.w3{width:793.600000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:1.440000pt;}
.x27{left:2.560000pt;}
.x21{left:3.520000pt;}
.x6{left:7.186667pt;}
.x18{left:11.680000pt;}
.x22{left:12.640000pt;}
.x14{left:14.880000pt;}
.x1f{left:16.320000pt;}
.x1c{left:17.760000pt;}
.x19{left:18.880000pt;}
.x2d{left:20.480000pt;}
.x1d{left:24.320000pt;}
.x1e{left:26.720000pt;}
.x1b{left:29.760000pt;}
.x1a{left:32.800000pt;}
.x2b{left:36.640000pt;}
.x29{left:38.240000pt;}
.x32{left:50.266667pt;}
.x2e{left:53.320000pt;}
.x37{left:58.720000pt;}
.x23{left:63.040000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x30{left:123.866667pt;}
.x5{left:144.040000pt;}
.x8{left:146.266667pt;}
.x12{left:149.000000pt;}
.x9{left:151.226667pt;}
.x11{left:163.240000pt;}
.x36{left:166.920000pt;}
.x4{left:180.874667pt;}
.x24{left:188.986667pt;}
.x15{left:198.426667pt;}
.x17{left:204.360000pt;}
.x34{left:208.360000pt;}
.xf{left:209.466667pt;}
.x7{left:211.240000pt;}
.x26{left:214.600000pt;}
.xa{left:242.306667pt;}
.xc{left:284.386667pt;}
.xe{left:321.666667pt;}
.x10{left:327.586667pt;}
.x2f{left:374.946667pt;}
.xb{left:395.293333pt;}
.x3{left:404.408000pt;}
.x25{left:425.373333pt;}
.x33{left:434.173333pt;}
.x16{left:438.173333pt;}
.xd{left:442.493333pt;}
.x20{left:459.293333pt;}
.x35{left:472.733333pt;}
.x2c{left:492.253333pt;}
.x2a{left:495.613333pt;}
.x31{left:498.653333pt;}
.x13{left:583.333333pt;}
}




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