
    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_eee9bede1df36b9580acab00.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_20e6bc1feed8b8dc0892ab4d.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_ac7430e2110eed28eba8382d.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_9fa19f391f67930d4339abd8.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_abc1103e8f623a5c76910c7d.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_8cda2170788df13cdb3c3ac5.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_39d144cad673cd3fa66343db.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_113640e4ef4385ff28a0c0cd.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_3267b8cbb156eaa51c593406.woff')format("woff");}.ffc{font-family:ffc;line-height:0.738770;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_5f7add5a92594b409fece731.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_bd4ee3bd086931113ee8e85a.woff')format("woff");}.ffe{font-family:ffe;line-height:0.892578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_21d1bb469a84800adc83a176.woff')format("woff");}.ff10{font-family:ff10;line-height:0.976562;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_bfcb480d5df60b7eb9d6c0e4.woff')format("woff");}.ff11{font-family:ff11;line-height:1.172852;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_d03d0cb34ccbcc18daa315ec.woff')format("woff");}.ff12{font-family:ff12;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_6ef2d9b279f75b04e9249179.woff')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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff14{font-family:ff14;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;}
.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:30.420000px;}
.v1{vertical-align:33.120000px;}
.v4{vertical-align:53.580000px;}
.lse{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.190200px;}
.ls9{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.114000px;}
.ls14{letter-spacing:-0.058320px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.078000px;}
.ls5{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.187200px;}
.lsa{letter-spacing:0.315600px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.576000px;}
.ls10{letter-spacing:28.800000px;}
.ls11{letter-spacing:30.240000px;}
.lsc{letter-spacing:39.905280px;}
.lsf{letter-spacing:59.345280px;}
.ls12{letter-spacing:199.416000px;}
.lsb{letter-spacing:199.440000px;}
.ls13{letter-spacing:230.334240px;}
.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:-66.240000px;}
.ws9{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.ws6{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.912000px;}
.wsb{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.wsc{word-spacing:-13.447440px;}
.ws7{word-spacing:-10.755600px;}
.ws8{word-spacing:0.000000px;}
._38{margin-left:-2.130480px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._5{width:2.474160px;}
._6{width:3.717840px;}
._8{width:5.135760px;}
._7{width:6.659280px;}
._9{width:8.397120px;}
._27{width:9.706320px;}
._4{width:10.898640px;}
._3{width:12.188160px;}
._14{width:13.217040px;}
._10{width:14.639040px;}
._3d{width:17.853840px;}
._a{width:18.878400px;}
._b{width:20.008800px;}
._c{width:21.523680px;}
._3c{width:22.615920px;}
._21{width:23.713920px;}
._2b{width:24.758640px;}
._12{width:25.767360px;}
._13{width:26.976240px;}
._34{width:28.416960px;}
._1c{width:29.574000px;}
._1b{width:30.638160px;}
._22{width:31.896720px;}
._16{width:33.621120px;}
._15{width:34.825680px;}
._31{width:35.984880px;}
._11{width:37.425600px;}
._2e{width:39.346560px;}
._1d{width:40.472640px;}
._e{width:42.714480px;}
._d{width:43.718400px;}
._39{width:45.120000px;}
._3a{width:46.169280px;}
._3b{width:47.208960px;}
._23{width:48.355200px;}
._24{width:49.878720px;}
._1a{width:51.137280px;}
._1f{width:55.014480px;}
._1e{width:56.171520px;}
._35{width:57.628800px;}
._2f{width:59.417280px;}
._f{width:61.934400px;}
._20{width:63.029520px;}
._25{width:64.584000px;}
._26{width:65.776320px;}
._32{width:67.138320px;}
._36{width:68.157120px;}
._2d{width:72.038160px;}
._2c{width:73.128960px;}
._29{width:74.723040px;}
._28{width:75.911040px;}
._2a{width:78.030720px;}
._42{width:79.090560px;}
._3f{width:81.673920px;}
._33{width:83.396160px;}
._3e{width:97.871760px;}
._30{width:108.006480px;}
._41{width:109.525680px;}
._19{width:152.893440px;}
._37{width:182.880000px;}
._17{width:189.617520px;}
._18{width:197.647200px;}
._2{width:199.416000px;}
._40{width:747.421200px;}
._43{width:847.596000px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(79,129,189);}
.fc3{color:rgb(17,85,204);}
.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;}
.fsb{font-size:36.000000px;}
.fsc{font-size:41.760000px;}
.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;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y1a{bottom:1.260000px;}
.y11{bottom:1.800000px;}
.y3{bottom:3.420000px;}
.y91{bottom:3.780000px;}
.y95{bottom:3.960000px;}
.y96{bottom:4.140000px;}
.y9e{bottom:4.170000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.yf{bottom:7.560000px;}
.y6{bottom:8.460000px;}
.yf8{bottom:10.725000px;}
.y93{bottom:23.400000px;}
.y9a{bottom:24.870000px;}
.yf7{bottom:29.085000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.y99{bottom:43.950000px;}
.ya2{bottom:44.640000px;}
.y1{bottom:51.480000px;}
.y16{bottom:55.485000px;}
.y98{bottom:62.850000px;}
.ya1{bottom:63.540000px;}
.y15{bottom:70.785000px;}
.y3f{bottom:75.240000px;}
.ya0{bottom:82.620000px;}
.yf6{bottom:89.715000px;}
.y14{bottom:101.205000px;}
.yf5{bottom:108.075000px;}
.yd1{bottom:111.600000px;}
.yc3{bottom:112.140000px;}
.yb4{bottom:115.560000px;}
.y13{bottom:116.145000px;}
.y3b{bottom:118.800000px;}
.y5a{bottom:120.240000px;}
.y5d{bottom:120.600000px;}
.yfa{bottom:126.900000px;}
.yd0{bottom:132.660000px;}
.y81{bottom:133.740000px;}
.y78{bottom:134.100000px;}
.yed{bottom:135.720000px;}
.yc2{bottom:136.800000px;}
.yb3{bottom:140.220000px;}
.y3a{bottom:143.460000px;}
.y59{bottom:144.900000px;}
.y5c{bottom:145.260000px;}
.yc1{bottom:157.860000px;}
.y80{bottom:158.400000px;}
.y77{bottom:158.760000px;}
.yec{bottom:160.380000px;}
.yb2{bottom:161.460000px;}
.yf9{bottom:163.620000px;}
.y39{bottom:168.120000px;}
.y58{bottom:169.920000px;}
.yf4{bottom:182.160000px;}
.y7f{bottom:183.060000px;}
.y76{bottom:183.420000px;}
.yeb{bottom:185.040000px;}
.yf3{bottom:187.125000px;}
.y38{bottom:192.960000px;}
.y57{bottom:194.580000px;}
.yf2{bottom:205.485000px;}
.y75{bottom:208.110000px;}
.yea{bottom:209.730000px;}
.y37{bottom:217.650000px;}
.y56{bottom:219.270000px;}
.yf1{bottom:223.845000px;}
.y74{bottom:232.770000px;}
.ye9{bottom:234.390000px;}
.y36{bottom:242.310000px;}
.y55{bottom:243.930000px;}
.yfb{bottom:244.905000px;}
.y73{bottom:257.430000px;}
.ye8{bottom:259.050000px;}
.y35{bottom:266.970000px;}
.y5b{bottom:268.230000px;}
.y54{bottom:268.590000px;}
.y72{bottom:282.090000px;}
.ye7{bottom:283.710000px;}
.y34{bottom:291.630000px;}
.y53{bottom:292.890000px;}
.y71{bottom:306.750000px;}
.ye6{bottom:308.370000px;}
.y52{bottom:314.130000px;}
.y33{bottom:316.290000px;}
.y7e{bottom:331.050000px;}
.y70{bottom:331.410000px;}
.ye5{bottom:333.030000px;}
.yb1{bottom:340.410000px;}
.y32{bottom:340.950000px;}
.y7d{bottom:355.710000px;}
.y6f{bottom:356.070000px;}
.ye4{bottom:357.690000px;}
.ycf{bottom:360.930000px;}
.yb0{bottom:365.070000px;}
.yae{bottom:365.430000px;}
.y31{bottom:365.610000px;}
.y6e{bottom:380.730000px;}
.ye3{bottom:382.350000px;}
.yce{bottom:385.590000px;}
.yaf{bottom:389.730000px;}
.yad{bottom:390.090000px;}
.y30{bottom:390.270000px;}
.y6d{bottom:405.390000px;}
.ye2{bottom:407.010000px;}
.ycd{bottom:410.250000px;}
.yac{bottom:414.750000px;}
.y2f{bottom:414.930000px;}
.yc0{bottom:428.610000px;}
.y6c{bottom:430.050000px;}
.ye1{bottom:431.670000px;}
.ycc{bottom:434.910000px;}
.yab{bottom:439.410000px;}
.y2e{bottom:439.590000px;}
.ybf{bottom:453.315000px;}
.y6b{bottom:454.755000px;}
.ye0{bottom:456.375000px;}
.ycb{bottom:459.255000px;}
.y2d{bottom:463.935000px;}
.yaa{bottom:464.115000px;}
.y3c{bottom:464.295000px;}
.ybe{bottom:478.335000px;}
.y6a{bottom:479.595000px;}
.yca{bottom:480.495000px;}
.ydf{bottom:481.035000px;}
.y2c{bottom:485.895000px;}
.ya9{bottom:488.775000px;}
.ybd{bottom:502.995000px;}
.y69{bottom:504.255000px;}
.yde{bottom:505.695000px;}
.y2b{bottom:511.995000px;}
.ya8{bottom:513.435000px;}
.ybc{bottom:527.655000px;}
.y68{bottom:528.915000px;}
.ydd{bottom:530.355000px;}
.y2a{bottom:536.475000px;}
.ya7{bottom:538.095000px;}
.ybb{bottom:552.315000px;}
.y7c{bottom:553.215000px;}
.y67{bottom:553.575000px;}
.y9f{bottom:553.755000px;}
.ydc{bottom:555.015000px;}
.y29{bottom:558.255000px;}
.ya6{bottom:573.555000px;}
.yba{bottom:576.615000px;}
.y7b{bottom:577.875000px;}
.y66{bottom:578.235000px;}
.yef{bottom:579.315000px;}
.ydb{bottom:579.675000px;}
.y28{bottom:580.035000px;}
.ya5{bottom:593.175000px;}
.yb9{bottom:597.855000px;}
.y27{bottom:601.995000px;}
.y65{bottom:602.895000px;}
.yda{bottom:603.975000px;}
.ya4{bottom:612.975000px;}
.y26{bottom:623.775000px;}
.y64{bottom:627.555000px;}
.yd9{bottom:628.635000px;}
.yee{bottom:628.995000px;}
.ya3{bottom:632.595000px;}
.y25{bottom:645.555000px;}
.y63{bottom:652.215000px;}
.y97{bottom:652.395000px;}
.yd8{bottom:653.655000px;}
.y24{bottom:667.335000px;}
.y9d{bottom:672.015000px;}
.y62{bottom:676.905000px;}
.yd7{bottom:678.345000px;}
.y23{bottom:689.325000px;}
.y9c{bottom:691.845000px;}
.y61{bottom:701.565000px;}
.yd6{bottom:703.005000px;}
.yc9{bottom:704.805000px;}
.y22{bottom:711.105000px;}
.y9b{bottom:711.645000px;}
.y60{bottom:726.225000px;}
.yd5{bottom:727.665000px;}
.yc8{bottom:729.825000px;}
.y92{bottom:731.265000px;}
.y21{bottom:732.885000px;}
.y7a{bottom:750.525000px;}
.y51{bottom:750.885000px;}
.y94{bottom:751.065000px;}
.yd4{bottom:752.325000px;}
.yc7{bottom:754.485000px;}
.y20{bottom:754.665000px;}
.y90{bottom:770.685000px;}
.y79{bottom:775.185000px;}
.y50{bottom:775.545000px;}
.y1f{bottom:776.445000px;}
.yd3{bottom:776.625000px;}
.yc6{bottom:779.145000px;}
.yd2{bottom:797.865000px;}
.yf0{bottom:797.940000px;}
.y1e{bottom:798.405000px;}
.y8f{bottom:799.845000px;}
.y4f{bottom:800.205000px;}
.yc5{bottom:803.805000px;}
.y1d{bottom:820.185000px;}
.y8e{bottom:824.505000px;}
.y4e{bottom:824.865000px;}
.yb8{bottom:826.485000px;}
.yc4{bottom:828.105000px;}
.y1c{bottom:841.605000px;}
.y8d{bottom:849.165000px;}
.y4d{bottom:849.525000px;}
.yb7{bottom:851.145000px;}
.y1b{bottom:860.865000px;}
.y19{bottom:869.505000px;}
.y4c{bottom:874.185000px;}
.yb6{bottom:875.445000px;}
.y12{bottom:876.705000px;}
.y18{bottom:880.489792px;}
.y8a{bottom:894.165000px;}
.yb5{bottom:896.505000px;}
.y4b{bottom:898.845000px;}
.y17{bottom:903.345000px;}
.y89{bottom:918.870000px;}
.y4a{bottom:923.550000px;}
.y88{bottom:944.610000px;}
.y49{bottom:948.210000px;}
.y87{bottom:969.450000px;}
.y48{bottom:972.870000px;}
.y86{bottom:995.190000px;}
.y47{bottom:997.530000px;}
.yfc{bottom:1000.050000px;}
.y10{bottom:1018.590000px;}
.y85{bottom:1020.030000px;}
.y8c{bottom:1021.830000px;}
.y46{bottom:1022.190000px;}
.yd{bottom:1025.070000px;}
.y84{bottom:1045.770000px;}
.y8b{bottom:1046.490000px;}
.y45{bottom:1046.850000px;}
.y83{bottom:1070.430000px;}
.y5f{bottom:1071.150000px;}
.y44{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.y5e{bottom:1095.810000px;}
.y43{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.y42{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.y41{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.y82{bottom:1169.820000px;}
.y40{bottom:1170.180000px;}
.y3e{bottom:1187.280000px;}
.y3d{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h18{height:7.200000px;}
.hd{height:13.324219px;}
.h19{height:17.587969px;}
.h28{height:18.885000px;}
.h25{height:18.900000px;}
.h11{height:19.008000px;}
.h2a{height:19.065000px;}
.h23{height:19.080000px;}
.h27{height:19.110000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h21{height:30.480469px;}
.h1a{height:36.861328px;}
.h24{height:38.700000px;}
.h14{height:44.496211px;}
.h20{height:46.251562px;}
.he{height:51.465000px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h2c{height:59.439023px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h16{height:63.492188px;}
.h1b{height:64.978594px;}
.h1f{height:65.010937px;}
.h1c{height:65.884219px;}
.h1d{height:66.757500px;}
.h15{height:67.803750px;}
.h22{height:68.084282px;}
.h6{height:71.324297px;}
.h1e{height:71.405156px;}
.h17{height:72.562500px;}
.h4{height:76.317188px;}
.h26{height:78.150000px;}
.hf{height:78.367500px;}
.h13{height:81.736875px;}
.h29{height:97.905000px;}
.h3{height:103.530000px;}
.h2d{height:113.019023px;}
.h12{height:141.862500px;}
.h2b{height:263.880000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.wa{width:134.625000px;}
.wb{width:140.961000px;}
.w9{width:168.510000px;}
.w8{width:168.679500px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.wc{width:430.920000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:8.089500px;}
.x5{left:10.965000px;}
.x13{left:14.929500px;}
.x17{left:19.429500px;}
.x10{left:20.685000px;}
.x2b{left:29.685000px;}
.x2d{left:31.530000px;}
.xb{left:34.185000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x29{left:55.260000px;}
.x2e{left:57.583500px;}
.x30{left:59.025000px;}
.x2{left:60.841500px;}
.x33{left:63.165000px;}
.x32{left:64.980000px;}
.x27{left:66.223500px;}
.x2f{left:67.320000px;}
.x34{left:69.120000px;}
.x31{left:70.363500px;}
.x47{left:78.585000px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x23{left:113.076000px;}
.x15{left:114.103500px;}
.x22{left:135.036000px;}
.x26{left:139.006500px;}
.x24{left:140.076000px;}
.x1c{left:162.030000px;}
.x4{left:168.885000px;}
.x45{left:182.445000px;}
.x46{left:187.485000px;}
.x6{left:209.010000px;}
.x42{left:210.240000px;}
.x25{left:226.830000px;}
.x41{left:230.940000px;}
.x3e{left:244.830000px;}
.x3f{left:269.355000px;}
.x1f{left:272.415000px;}
.x19{left:273.675010px;}
.x38{left:275.115000px;}
.x18{left:282.628500px;}
.x14{left:288.568500px;}
.x37{left:296.535000px;}
.x16{left:299.188500px;}
.x28{left:308.415000px;}
.x1a{left:324.965515px;}
.x3b{left:329.475000px;}
.x12{left:335.578500px;}
.x43{left:339.510000px;}
.x44{left:349.590000px;}
.xa{left:445.620000px;}
.x1d{left:473.505000px;}
.x2a{left:477.660000px;}
.x21{left:500.505000px;}
.x1e{left:527.505000px;}
.x36{left:591.225000px;}
.x2c{left:613.020000px;}
.x35{left:629.250000px;}
.x3d{left:632.850000px;}
.x39{left:640.950000px;}
.x3c{left:644.370000px;}
.x40{left:662.010000px;}
.x3a{left:696.030000px;}
.x20{left:711.330000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:27.040000pt;}
.v1{vertical-align:29.440000pt;}
.v4{vertical-align:47.626667pt;}
.lse{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.169067pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.101333pt;}
.ls14{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.069333pt;}
.ls5{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.166400pt;}
.lsa{letter-spacing:0.280533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.512000pt;}
.ls10{letter-spacing:25.600000pt;}
.ls11{letter-spacing:26.880000pt;}
.lsc{letter-spacing:35.471360pt;}
.lsf{letter-spacing:52.751360pt;}
.ls12{letter-spacing:177.258667pt;}
.lsb{letter-spacing:177.280000pt;}
.ls13{letter-spacing:204.741547pt;}
.wsa{word-spacing:-58.880000pt;}
.ws9{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.ws6{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.144000pt;}
.wsb{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.wsc{word-spacing:-11.953280pt;}
.ws7{word-spacing:-9.560533pt;}
.ws8{word-spacing:0.000000pt;}
._38{margin-left:-1.893760pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._5{width:2.199253pt;}
._6{width:3.304747pt;}
._8{width:4.565120pt;}
._7{width:5.919360pt;}
._9{width:7.464107pt;}
._27{width:8.627840pt;}
._4{width:9.687680pt;}
._3{width:10.833920pt;}
._14{width:11.748480pt;}
._10{width:13.012480pt;}
._3d{width:15.870080pt;}
._a{width:16.780800pt;}
._b{width:17.785600pt;}
._c{width:19.132160pt;}
._3c{width:20.103040pt;}
._21{width:21.079040pt;}
._2b{width:22.007680pt;}
._12{width:22.904320pt;}
._13{width:23.978880pt;}
._34{width:25.259520pt;}
._1c{width:26.288000pt;}
._1b{width:27.233920pt;}
._22{width:28.352640pt;}
._16{width:29.885440pt;}
._15{width:30.956160pt;}
._31{width:31.986560pt;}
._11{width:33.267200pt;}
._2e{width:34.974720pt;}
._1d{width:35.975680pt;}
._e{width:37.968427pt;}
._d{width:38.860800pt;}
._39{width:40.106667pt;}
._3a{width:41.039360pt;}
._3b{width:41.963520pt;}
._23{width:42.982400pt;}
._24{width:44.336640pt;}
._1a{width:45.455360pt;}
._1f{width:48.901760pt;}
._1e{width:49.930240pt;}
._35{width:51.225600pt;}
._2f{width:52.815360pt;}
._f{width:55.052800pt;}
._20{width:56.026240pt;}
._25{width:57.408000pt;}
._26{width:58.467840pt;}
._32{width:59.678507pt;}
._36{width:60.584107pt;}
._2d{width:64.033920pt;}
._2c{width:65.003520pt;}
._29{width:66.420480pt;}
._28{width:67.476480pt;}
._2a{width:69.360640pt;}
._42{width:70.302720pt;}
._3f{width:72.599040pt;}
._33{width:74.129920pt;}
._3e{width:86.997120pt;}
._30{width:96.005760pt;}
._41{width:97.356160pt;}
._19{width:135.905280pt;}
._37{width:162.560000pt;}
._17{width:168.548907pt;}
._18{width:175.686400pt;}
._2{width:177.258667pt;}
._40{width:664.374400pt;}
._43{width:753.418667pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fsb{font-size:32.000000pt;}
.fsc{font-size:37.120000pt;}
.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;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y1a{bottom:1.120000pt;}
.y11{bottom:1.600000pt;}
.y3{bottom:3.040000pt;}
.y91{bottom:3.360000pt;}
.y95{bottom:3.520000pt;}
.y96{bottom:3.680000pt;}
.y9e{bottom:3.706667pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.yf{bottom:6.720000pt;}
.y6{bottom:7.520000pt;}
.yf8{bottom:9.533333pt;}
.y93{bottom:20.800000pt;}
.y9a{bottom:22.106667pt;}
.yf7{bottom:25.853333pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.y99{bottom:39.066667pt;}
.ya2{bottom:39.680000pt;}
.y1{bottom:45.760000pt;}
.y16{bottom:49.320000pt;}
.y98{bottom:55.866667pt;}
.ya1{bottom:56.480000pt;}
.y15{bottom:62.920000pt;}
.y3f{bottom:66.880000pt;}
.ya0{bottom:73.440000pt;}
.yf6{bottom:79.746667pt;}
.y14{bottom:89.960000pt;}
.yf5{bottom:96.066667pt;}
.yd1{bottom:99.200000pt;}
.yc3{bottom:99.680000pt;}
.yb4{bottom:102.720000pt;}
.y13{bottom:103.240000pt;}
.y3b{bottom:105.600000pt;}
.y5a{bottom:106.880000pt;}
.y5d{bottom:107.200000pt;}
.yfa{bottom:112.800000pt;}
.yd0{bottom:117.920000pt;}
.y81{bottom:118.880000pt;}
.y78{bottom:119.200000pt;}
.yed{bottom:120.640000pt;}
.yc2{bottom:121.600000pt;}
.yb3{bottom:124.640000pt;}
.y3a{bottom:127.520000pt;}
.y59{bottom:128.800000pt;}
.y5c{bottom:129.120000pt;}
.yc1{bottom:140.320000pt;}
.y80{bottom:140.800000pt;}
.y77{bottom:141.120000pt;}
.yec{bottom:142.560000pt;}
.yb2{bottom:143.520000pt;}
.yf9{bottom:145.440000pt;}
.y39{bottom:149.440000pt;}
.y58{bottom:151.040000pt;}
.yf4{bottom:161.920000pt;}
.y7f{bottom:162.720000pt;}
.y76{bottom:163.040000pt;}
.yeb{bottom:164.480000pt;}
.yf3{bottom:166.333333pt;}
.y38{bottom:171.520000pt;}
.y57{bottom:172.960000pt;}
.yf2{bottom:182.653333pt;}
.y75{bottom:184.986667pt;}
.yea{bottom:186.426667pt;}
.y37{bottom:193.466667pt;}
.y56{bottom:194.906667pt;}
.yf1{bottom:198.973333pt;}
.y74{bottom:206.906667pt;}
.ye9{bottom:208.346667pt;}
.y36{bottom:215.386667pt;}
.y55{bottom:216.826667pt;}
.yfb{bottom:217.693333pt;}
.y73{bottom:228.826667pt;}
.ye8{bottom:230.266667pt;}
.y35{bottom:237.306667pt;}
.y5b{bottom:238.426667pt;}
.y54{bottom:238.746667pt;}
.y72{bottom:250.746667pt;}
.ye7{bottom:252.186667pt;}
.y34{bottom:259.226667pt;}
.y53{bottom:260.346667pt;}
.y71{bottom:272.666667pt;}
.ye6{bottom:274.106667pt;}
.y52{bottom:279.226667pt;}
.y33{bottom:281.146667pt;}
.y7e{bottom:294.266667pt;}
.y70{bottom:294.586667pt;}
.ye5{bottom:296.026667pt;}
.yb1{bottom:302.586667pt;}
.y32{bottom:303.066667pt;}
.y7d{bottom:316.186667pt;}
.y6f{bottom:316.506667pt;}
.ye4{bottom:317.946667pt;}
.ycf{bottom:320.826667pt;}
.yb0{bottom:324.506667pt;}
.yae{bottom:324.826667pt;}
.y31{bottom:324.986667pt;}
.y6e{bottom:338.426667pt;}
.ye3{bottom:339.866667pt;}
.yce{bottom:342.746667pt;}
.yaf{bottom:346.426667pt;}
.yad{bottom:346.746667pt;}
.y30{bottom:346.906667pt;}
.y6d{bottom:360.346667pt;}
.ye2{bottom:361.786667pt;}
.ycd{bottom:364.666667pt;}
.yac{bottom:368.666667pt;}
.y2f{bottom:368.826667pt;}
.yc0{bottom:380.986667pt;}
.y6c{bottom:382.266667pt;}
.ye1{bottom:383.706667pt;}
.ycc{bottom:386.586667pt;}
.yab{bottom:390.586667pt;}
.y2e{bottom:390.746667pt;}
.ybf{bottom:402.946667pt;}
.y6b{bottom:404.226667pt;}
.ye0{bottom:405.666667pt;}
.ycb{bottom:408.226667pt;}
.y2d{bottom:412.386667pt;}
.yaa{bottom:412.546667pt;}
.y3c{bottom:412.706667pt;}
.ybe{bottom:425.186667pt;}
.y6a{bottom:426.306667pt;}
.yca{bottom:427.106667pt;}
.ydf{bottom:427.586667pt;}
.y2c{bottom:431.906667pt;}
.ya9{bottom:434.466667pt;}
.ybd{bottom:447.106667pt;}
.y69{bottom:448.226667pt;}
.yde{bottom:449.506667pt;}
.y2b{bottom:455.106667pt;}
.ya8{bottom:456.386667pt;}
.ybc{bottom:469.026667pt;}
.y68{bottom:470.146667pt;}
.ydd{bottom:471.426667pt;}
.y2a{bottom:476.866667pt;}
.ya7{bottom:478.306667pt;}
.ybb{bottom:490.946667pt;}
.y7c{bottom:491.746667pt;}
.y67{bottom:492.066667pt;}
.y9f{bottom:492.226667pt;}
.ydc{bottom:493.346667pt;}
.y29{bottom:496.226667pt;}
.ya6{bottom:509.826667pt;}
.yba{bottom:512.546667pt;}
.y7b{bottom:513.666667pt;}
.y66{bottom:513.986667pt;}
.yef{bottom:514.946667pt;}
.ydb{bottom:515.266667pt;}
.y28{bottom:515.586667pt;}
.ya5{bottom:527.266667pt;}
.yb9{bottom:531.426667pt;}
.y27{bottom:535.106667pt;}
.y65{bottom:535.906667pt;}
.yda{bottom:536.866667pt;}
.ya4{bottom:544.866667pt;}
.y26{bottom:554.466667pt;}
.y64{bottom:557.826667pt;}
.yd9{bottom:558.786667pt;}
.yee{bottom:559.106667pt;}
.ya3{bottom:562.306667pt;}
.y25{bottom:573.826667pt;}
.y63{bottom:579.746667pt;}
.y97{bottom:579.906667pt;}
.yd8{bottom:581.026667pt;}
.y24{bottom:593.186667pt;}
.y9d{bottom:597.346667pt;}
.y62{bottom:601.693333pt;}
.yd7{bottom:602.973333pt;}
.y23{bottom:612.733333pt;}
.y9c{bottom:614.973333pt;}
.y61{bottom:623.613333pt;}
.yd6{bottom:624.893333pt;}
.yc9{bottom:626.493333pt;}
.y22{bottom:632.093333pt;}
.y9b{bottom:632.573333pt;}
.y60{bottom:645.533333pt;}
.yd5{bottom:646.813333pt;}
.yc8{bottom:648.733333pt;}
.y92{bottom:650.013333pt;}
.y21{bottom:651.453333pt;}
.y7a{bottom:667.133333pt;}
.y51{bottom:667.453333pt;}
.y94{bottom:667.613333pt;}
.yd4{bottom:668.733333pt;}
.yc7{bottom:670.653333pt;}
.y20{bottom:670.813333pt;}
.y90{bottom:685.053333pt;}
.y79{bottom:689.053333pt;}
.y50{bottom:689.373333pt;}
.y1f{bottom:690.173333pt;}
.yd3{bottom:690.333333pt;}
.yc6{bottom:692.573333pt;}
.yd2{bottom:709.213333pt;}
.yf0{bottom:709.280000pt;}
.y1e{bottom:709.693333pt;}
.y8f{bottom:710.973333pt;}
.y4f{bottom:711.293333pt;}
.yc5{bottom:714.493333pt;}
.y1d{bottom:729.053333pt;}
.y8e{bottom:732.893333pt;}
.y4e{bottom:733.213333pt;}
.yb8{bottom:734.653333pt;}
.yc4{bottom:736.093333pt;}
.y1c{bottom:748.093333pt;}
.y8d{bottom:754.813333pt;}
.y4d{bottom:755.133333pt;}
.yb7{bottom:756.573333pt;}
.y1b{bottom:765.213333pt;}
.y19{bottom:772.893333pt;}
.y4c{bottom:777.053333pt;}
.yb6{bottom:778.173333pt;}
.y12{bottom:779.293333pt;}
.y18{bottom:782.657593pt;}
.y8a{bottom:794.813333pt;}
.yb5{bottom:796.893333pt;}
.y4b{bottom:798.973333pt;}
.y17{bottom:802.973333pt;}
.y89{bottom:816.773333pt;}
.y4a{bottom:820.933333pt;}
.y88{bottom:839.653333pt;}
.y49{bottom:842.853333pt;}
.y87{bottom:861.733333pt;}
.y48{bottom:864.773333pt;}
.y86{bottom:884.613333pt;}
.y47{bottom:886.693333pt;}
.yfc{bottom:888.933333pt;}
.y10{bottom:905.413333pt;}
.y85{bottom:906.693333pt;}
.y8c{bottom:908.293333pt;}
.y46{bottom:908.613333pt;}
.yd{bottom:911.173333pt;}
.y84{bottom:929.573333pt;}
.y8b{bottom:930.213333pt;}
.y45{bottom:930.533333pt;}
.y83{bottom:951.493333pt;}
.y5f{bottom:952.133333pt;}
.y44{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.y5e{bottom:974.053333pt;}
.y43{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.y42{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.y41{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.y82{bottom:1039.840000pt;}
.y40{bottom:1040.160000pt;}
.y3e{bottom:1055.360000pt;}
.y3d{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h18{height:6.400000pt;}
.hd{height:11.843750pt;}
.h19{height:15.633750pt;}
.h28{height:16.786667pt;}
.h25{height:16.800000pt;}
.h11{height:16.896000pt;}
.h2a{height:16.946667pt;}
.h23{height:16.960000pt;}
.h27{height:16.986667pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h21{height:27.093750pt;}
.h1a{height:32.765625pt;}
.h24{height:34.400000pt;}
.h14{height:39.552188pt;}
.h20{height:41.112500pt;}
.he{height:45.746667pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h2c{height:52.834688pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h16{height:56.437500pt;}
.h1b{height:57.758750pt;}
.h1f{height:57.787500pt;}
.h1c{height:58.563750pt;}
.h1d{height:59.340000pt;}
.h15{height:60.270000pt;}
.h22{height:60.519362pt;}
.h6{height:63.399375pt;}
.h1e{height:63.471250pt;}
.h17{height:64.500000pt;}
.h4{height:67.837500pt;}
.h26{height:69.466667pt;}
.hf{height:69.660000pt;}
.h13{height:72.655000pt;}
.h29{height:87.026667pt;}
.h3{height:92.026667pt;}
.h2d{height:100.461354pt;}
.h12{height:126.100000pt;}
.h2b{height:234.560000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.wa{width:119.666667pt;}
.wb{width:125.298667pt;}
.w9{width:149.786667pt;}
.w8{width:149.937333pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.wc{width:383.040000pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:7.190667pt;}
.x5{left:9.746667pt;}
.x13{left:13.270667pt;}
.x17{left:17.270667pt;}
.x10{left:18.386667pt;}
.x2b{left:26.386667pt;}
.x2d{left:28.026667pt;}
.xb{left:30.386667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x29{left:49.120000pt;}
.x2e{left:51.185333pt;}
.x30{left:52.466667pt;}
.x2{left:54.081333pt;}
.x33{left:56.146667pt;}
.x32{left:57.760000pt;}
.x27{left:58.865333pt;}
.x2f{left:59.840000pt;}
.x34{left:61.440000pt;}
.x31{left:62.545333pt;}
.x47{left:69.853333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x23{left:100.512000pt;}
.x15{left:101.425333pt;}
.x22{left:120.032000pt;}
.x26{left:123.561333pt;}
.x24{left:124.512000pt;}
.x1c{left:144.026667pt;}
.x4{left:150.120000pt;}
.x45{left:162.173333pt;}
.x46{left:166.653333pt;}
.x6{left:185.786667pt;}
.x42{left:186.880000pt;}
.x25{left:201.626667pt;}
.x41{left:205.280000pt;}
.x3e{left:217.626667pt;}
.x3f{left:239.426667pt;}
.x1f{left:242.146667pt;}
.x19{left:243.266675pt;}
.x38{left:244.546667pt;}
.x18{left:251.225333pt;}
.x14{left:256.505333pt;}
.x37{left:263.586667pt;}
.x16{left:265.945333pt;}
.x28{left:274.146667pt;}
.x1a{left:288.858236pt;}
.x3b{left:292.866667pt;}
.x12{left:298.292000pt;}
.x43{left:301.786667pt;}
.x44{left:310.746667pt;}
.xa{left:396.106667pt;}
.x1d{left:420.893333pt;}
.x2a{left:424.586667pt;}
.x21{left:444.893333pt;}
.x1e{left:468.893333pt;}
.x36{left:525.533333pt;}
.x2c{left:544.906667pt;}
.x35{left:559.333333pt;}
.x3d{left:562.533333pt;}
.x39{left:569.733333pt;}
.x3c{left:572.773333pt;}
.x40{left:588.453333pt;}
.x3a{left:618.693333pt;}
.x20{left:632.293333pt;}
.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; }
  