
    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_46ab0a9beb32b5a3b3a1714a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.235000;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_459bd6f324e470be185aa6c9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.832057;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_e08ffaa52f72c29cf6e77434.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.235000;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_722b4f4588fcb5a70d433698.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.204500;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_ebdeae0c8eef2238ba798b0c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.204500;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_853dbc051df5aa24658eef04.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080000;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_7077674ebea2f0d4c46d3e8d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.080000;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_70ce9460237cf6bd932e02f2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.160000;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_e6eecf401439cf656c44c81f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.970000;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_02e9e20b5e8eb9f72d91aca0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.169000;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_7b6a5733e64a9ed0ad2abc7a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.976000;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_8fb6e464741e2c82f81cc70a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.748000;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_47664229556eed34c6a3fa05.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.736000;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_bf9d8cffd0a8cba112db3e1b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.022000;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_3ed155ae9262d5f77f776f16.woff2')format("woff");}.fff{font-family:fff;line-height:0.962000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.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);}
.v3{vertical-align:-4.908000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:52.692000px;}
.v1{vertical-align:57.599400px;}
.ls6{letter-spacing:-2.160000px;}
.lsb{letter-spacing:-1.800000px;}
.ls11{letter-spacing:-0.960000px;}
.lsc{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.624000px;}
.ls5{letter-spacing:-0.480000px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000300px;}
.lsa{letter-spacing:1.800000px;}
.ls4{letter-spacing:4.800000px;}
.ls2{letter-spacing:5.779620px;}
.ls9{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.742890px;}
.ls8{letter-spacing:8.400000px;}
.ls0{letter-spacing:11.559240px;}
.lsf{letter-spacing:596.835502px;}
.ls10{letter-spacing:1222.848727px;}
.lsd{letter-spacing:1248.351098px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-27.356868px;}
.wsc{word-spacing:-25.620000px;}
.wse{word-spacing:-18.300000px;}
.ws16{word-spacing:-14.640000px;}
.wsf{word-spacing:-12.300000px;}
.ws45{word-spacing:-11.520000px;}
.ws44{word-spacing:-11.136000px;}
.ws4{word-spacing:-9.840000px;}
.ws24{word-spacing:-9.540000px;}
.ws1a{word-spacing:-9.468000px;}
.ws34{word-spacing:-9.216000px;}
.ws3b{word-spacing:-9.120000px;}
.ws51{word-spacing:-8.778000px;}
.ws2{word-spacing:-5.779620px;}
.ws35{word-spacing:-4.800000px;}
.ws5{word-spacing:-2.400000px;}
.ws26{word-spacing:-1.800000px;}
.ws52{word-spacing:-1.050000px;}
.ws2d{word-spacing:-0.900000px;}
.ws53{word-spacing:-0.630000px;}
.ws2a{word-spacing:-0.288000px;}
.ws10{word-spacing:-0.240000px;}
.ws13{word-spacing:-0.180000px;}
.ws25{word-spacing:-0.096000px;}
.ws12{word-spacing:-0.060000px;}
.ws4e{word-spacing:-0.056843px;}
.ws4f{word-spacing:-0.042632px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:0.480000px;}
.ws9{word-spacing:0.624000px;}
.ws1f{word-spacing:1.800000px;}
.ws8{word-spacing:2.160000px;}
.ws19{word-spacing:90.046200px;}
.ws1b{word-spacing:96.566400px;}
.ws42{word-spacing:116.387400px;}
.ws6{word-spacing:206.160000px;}
.ws4b{word-spacing:238.594800px;}
.ws28{word-spacing:408.046200px;}
.ws17{word-spacing:487.786200px;}
.ws50{word-spacing:522.965002px;}
.ws3{word-spacing:708.415200px;}
.wsb{word-spacing:840.741000px;}
.ws23{word-spacing:995.997000px;}
.ws3f{word-spacing:1772.491200px;}
.ws3c{word-spacing:1823.851200px;}
.ws39{word-spacing:1852.795200px;}
.ws2c{word-spacing:1932.235200px;}
.ws37{word-spacing:2059.675200px;}
.ws55{word-spacing:2932.155000px;}
.ws59{word-spacing:3429.717000px;}
.ws5a{word-spacing:4527.229200px;}
.ws46{word-spacing:4566.877200px;}
.ws43{word-spacing:4569.565200px;}
.ws33{word-spacing:4569.996600px;}
.ws41{word-spacing:4571.293800px;}
.ws57{word-spacing:4571.581200px;}
.ws32{word-spacing:4572.061200px;}
.ws58{word-spacing:4573.165800px;}
.ws31{word-spacing:4573.789800px;}
.ws56{word-spacing:4574.269200px;}
.ws40{word-spacing:4575.661200px;}
.ws2f{word-spacing:4575.997200px;}
.ws4d{word-spacing:4576.765200px;}
.ws4c{word-spacing:4576.957200px;}
.ws22{word-spacing:4577.149200px;}
.ws3e{word-spacing:4577.917800px;}
.ws30{word-spacing:4578.157200px;}
.ws2e{word-spacing:4578.877200px;}
.ws4a{word-spacing:4579.645200px;}
.ws21{word-spacing:4579.837200px;}
.ws54{word-spacing:4580.365200px;}
.ws3d{word-spacing:4580.605200px;}
.ws1c{word-spacing:4581.085200px;}
.ws20{word-spacing:4581.565200px;}
.ws47{word-spacing:4582.141200px;}
.ws1d{word-spacing:4582.332600px;}
.ws3a{word-spacing:4583.053800px;}
.ws36{word-spacing:4583.101200px;}
.ws2b{word-spacing:4583.293800px;}
.ws18{word-spacing:4583.773200px;}
.ws27{word-spacing:4584.061200px;}
.ws48{word-spacing:4585.741200px;}
.ws1e{word-spacing:4585.933200px;}
.ws14{word-spacing:4586.269200px;}
.ws38{word-spacing:4586.701800px;}
.ws29{word-spacing:4587.661200px;}
.ws49{word-spacing:4587.853200px;}
.ws15{word-spacing:4589.869200px;}
.ws11{word-spacing:4626.781200px;}
.wsd{word-spacing:4629.468600px;}
.wsa{word-spacing:4631.197200px;}
._e{margin-left:-3696.233400px;}
._3{margin-left:-3694.783860px;}
._a{margin-left:-3233.223000px;}
._19{margin-left:-2734.039860px;}
._32{margin-left:-2502.990120px;}
._2a{margin-left:-1990.732860px;}
._2b{margin-left:-1777.551060px;}
._25{margin-left:-1498.551660px;}
._15{margin-left:-1421.506860px;}
._30{margin-left:-701.451502px;}
._2f{margin-left:-700.388873px;}
._7{margin-left:-206.164800px;}
._14{margin-left:-15.612000px;}
._13{margin-left:-14.584500px;}
._18{margin-left:-13.506060px;}
._1{margin-left:-12.109606px;}
._b{margin-left:-10.685460px;}
._31{margin-left:-9.302400px;}
._d{margin-left:-7.710660px;}
._12{margin-left:-6.475200px;}
._8{margin-left:-5.232000px;}
._5{margin-left:-3.508800px;}
._0{margin-left:-1.926540px;}
._4{width:1.200000px;}
._c{width:2.303880px;}
._10{width:3.306000px;}
._16{width:5.226600px;}
._f{width:8.367600px;}
._6{width:206.160000px;}
._9{width:208.560000px;}
._21{width:368.206800px;}
._1f{width:387.940740px;}
._22{width:411.086940px;}
._20{width:517.637340px;}
._29{width:666.076620px;}
._24{width:802.126740px;}
._2{width:846.315540px;}
._23{width:1011.592200px;}
._26{width:1150.072200px;}
._1b{width:1170.731340px;}
._27{width:1175.176200px;}
._1a{width:1177.251540px;}
._1e{width:1203.651540px;}
._1d{width:1218.641880px;}
._1c{width:1225.162080px;}
._28{width:1320.184200px;}
._2c{width:1442.660940px;}
._2d{width:1563.669540px;}
._17{width:1645.312800px;}
._2e{width:2282.647740px;}
._11{width:2474.162340px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:36.000000px;}
.fs2{font-size:38.530800px;}
.fs9{font-size:42.000000px;}
.fs8{font-size:42.632400px;}
.fs1{font-size:44.952600px;}
.fs3{font-size:48.000000px;}
.fs7{font-size:56.843400px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:77.061600px;}
.fs5{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y63{bottom:62.233950px;}
.y5f{bottom:63.779550px;}
.y72{bottom:63.783750px;}
.y5d{bottom:64.913250px;}
.yf7{bottom:64.913400px;}
.y90{bottom:72.284400px;}
.y5c{bottom:82.913250px;}
.yf6{bottom:82.913400px;}
.y8f{bottom:88.784400px;}
.y5b{bottom:100.913250px;}
.yf5{bottom:100.913400px;}
.y8e{bottom:105.284400px;}
.y6f{bottom:114.430350px;}
.y5a{bottom:118.913250px;}
.y28{bottom:118.913400px;}
.y8d{bottom:121.784400px;}
.y59{bottom:136.913250px;}
.y27{bottom:136.913400px;}
.y8c{bottom:138.284400px;}
.ycf{bottom:153.181050px;}
.y8b{bottom:154.784400px;}
.y58{bottom:154.913250px;}
.yf4{bottom:154.913400px;}
.ybe{bottom:157.613100px;}
.y62{bottom:159.041250px;}
.y61{bottom:159.041400px;}
.yce{bottom:169.681050px;}
.y8a{bottom:171.284400px;}
.y74{bottom:171.450600px;}
.y57{bottom:172.913250px;}
.y26{bottom:172.913400px;}
.ybd{bottom:174.113100px;}
.ycd{bottom:186.181050px;}
.y89{bottom:187.784400px;}
.y75{bottom:188.636100px;}
.ybc{bottom:190.613100px;}
.y56{bottom:190.913250px;}
.y25{bottom:190.913400px;}
.y6b{bottom:196.489050px;}
.ycc{bottom:202.681050px;}
.y88{bottom:204.284400px;}
.ybb{bottom:207.113100px;}
.y55{bottom:208.913250px;}
.y24{bottom:208.913400px;}
.y73{bottom:215.400900px;}
.ycb{bottom:219.181050px;}
.y87{bottom:220.784400px;}
.yba{bottom:223.613100px;}
.y54{bottom:226.913250px;}
.y23{bottom:226.913400px;}
.yca{bottom:235.681050px;}
.y86{bottom:237.284400px;}
.yb3{bottom:237.922050px;}
.yb9{bottom:240.113100px;}
.y53{bottom:244.913250px;}
.y22{bottom:244.913400px;}
.yc9{bottom:252.181050px;}
.y85{bottom:253.784400px;}
.y67{bottom:254.303100px;}
.yb2{bottom:254.422050px;}
.yb8{bottom:256.613100px;}
.y52{bottom:262.913250px;}
.y21{bottom:262.913400px;}
.y66{bottom:267.874050px;}
.yc8{bottom:268.681050px;}
.y84{bottom:270.284400px;}
.yb1{bottom:270.922050px;}
.yb7{bottom:273.113100px;}
.yf0{bottom:274.894050px;}
.yd2{bottom:279.730050px;}
.y51{bottom:280.913250px;}
.yf3{bottom:280.913400px;}
.yc7{bottom:285.181050px;}
.y83{bottom:286.784400px;}
.yb0{bottom:287.422050px;}
.yb6{bottom:289.613100px;}
.yef{bottom:289.894050px;}
.y50{bottom:298.913250px;}
.y20{bottom:298.913400px;}
.yc6{bottom:301.681050px;}
.y82{bottom:303.284400px;}
.yaf{bottom:303.922050px;}
.yee{bottom:304.894050px;}
.yb5{bottom:306.113100px;}
.y6d{bottom:316.810950px;}
.y4f{bottom:316.913250px;}
.y1f{bottom:316.913400px;}
.yc5{bottom:318.181050px;}
.y81{bottom:319.784400px;}
.yed{bottom:319.894050px;}
.yae{bottom:320.422050px;}
.yb4{bottom:322.613100px;}
.y71{bottom:325.204650px;}
.yc4{bottom:334.681050px;}
.yec{bottom:334.894050px;}
.y4e{bottom:334.913250px;}
.y1e{bottom:334.913400px;}
.y80{bottom:336.284400px;}
.yad{bottom:336.922050px;}
.y68{bottom:349.564950px;}
.yc3{bottom:351.181050px;}
.y7f{bottom:352.784400px;}
.y4d{bottom:352.913250px;}
.y1d{bottom:352.913400px;}
.yac{bottom:353.422050px;}
.yd6{bottom:358.934850px;}
.y41{bottom:361.894050px;}
.y10e{bottom:362.911200px;}
.yeb{bottom:364.894050px;}
.yd0{bottom:365.934750px;}
.yc2{bottom:367.681050px;}
.y7e{bottom:369.284400px;}
.yab{bottom:369.922050px;}
.y4c{bottom:370.913250px;}
.y1c{bottom:370.913400px;}
.y10d{bottom:373.711200px;}
.y40{bottom:379.894050px;}
.yc1{bottom:384.181050px;}
.y7d{bottom:385.784400px;}
.yaa{bottom:386.422050px;}
.y4b{bottom:388.913250px;}
.y1b{bottom:388.913400px;}
.yea{bottom:394.894050px;}
.y3f{bottom:397.894050px;}
.yc0{bottom:400.681050px;}
.y7c{bottom:402.284400px;}
.ya9{bottom:402.922050px;}
.y4a{bottom:406.913250px;}
.y1a{bottom:406.913400px;}
.ye9{bottom:409.894050px;}
.yd3{bottom:415.824600px;}
.y3e{bottom:415.894050px;}
.ybf{bottom:417.181050px;}
.y7b{bottom:418.784400px;}
.ya8{bottom:419.422050px;}
.ye8{bottom:424.894050px;}
.y19{bottom:424.913400px;}
.y10c{bottom:424.972350px;}
.y3d{bottom:433.894050px;}
.y7a{bottom:435.284400px;}
.y10b{bottom:435.772350px;}
.ya7{bottom:435.922050px;}
.yd1{bottom:437.275050px;}
.y18{bottom:442.913400px;}
.y65{bottom:444.826650px;}
.y64{bottom:444.826800px;}
.y79{bottom:451.784400px;}
.y3c{bottom:451.894050px;}
.ya6{bottom:452.422050px;}
.ye7{bottom:454.894050px;}
.y10a{bottom:457.372350px;}
.y17{bottom:460.913400px;}
.yf8{bottom:462.218100px;}
.y109{bottom:468.172350px;}
.y78{bottom:468.284400px;}
.ya5{bottom:468.922050px;}
.y3b{bottom:469.894050px;}
.y16{bottom:478.913400px;}
.yf9{bottom:480.034650px;}
.y77{bottom:484.784400px;}
.ye6{bottom:484.894050px;}
.ya4{bottom:485.422050px;}
.y3a{bottom:487.894050px;}
.y108{bottom:489.772350px;}
.y15{bottom:496.913400px;}
.y70{bottom:498.306000px;}
.yd4{bottom:498.907200px;}
.ye5{bottom:499.894050px;}
.y107{bottom:500.572200px;}
.y76{bottom:501.284400px;}
.ya3{bottom:501.922050px;}
.y39{bottom:505.894050px;}
.y106{bottom:511.372350px;}
.ye4{bottom:514.894050px;}
.y14{bottom:514.913400px;}
.ya2{bottom:518.422050px;}
.y105{bottom:522.172350px;}
.y38{bottom:523.894050px;}
.y13{bottom:532.913400px;}
.ya1{bottom:534.922050px;}
.y6a{bottom:540.088650px;}
.y60{bottom:540.939900px;}
.y37{bottom:541.894050px;}
.y104{bottom:543.772350px;}
.ye3{bottom:544.894050px;}
.y12{bottom:550.913400px;}
.ya0{bottom:551.422050px;}
.y103{bottom:554.572200px;}
.y36{bottom:559.894050px;}
.y9f{bottom:567.922050px;}
.y11{bottom:568.913400px;}
.y6e{bottom:569.842500px;}
.ye2{bottom:574.894050px;}
.y102{bottom:576.172350px;}
.y35{bottom:577.894050px;}
.y9e{bottom:584.422050px;}
.y10{bottom:586.913400px;}
.y101{bottom:586.972350px;}
.ye1{bottom:589.894050px;}
.y34{bottom:595.894050px;}
.y4{bottom:598.095450px;}
.y3{bottom:600.130500px;}
.y1{bottom:600.152100px;}
.y2{bottom:600.173700px;}
.y9d{bottom:600.922050px;}
.yf{bottom:604.913400px;}
.y100{bottom:608.572200px;}
.y33{bottom:613.894050px;}
.y9c{bottom:617.422050px;}
.yff{bottom:619.372200px;}
.ye0{bottom:619.894050px;}
.ye{bottom:622.913400px;}
.y32{bottom:631.894050px;}
.y9b{bottom:633.922050px;}
.ydf{bottom:634.894050px;}
.y69{bottom:635.350350px;}
.yd{bottom:640.913400px;}
.yfe{bottom:640.972200px;}
.y6c{bottom:644.723100px;}
.y31{bottom:649.894050px;}
.y9a{bottom:650.422050px;}
.yfd{bottom:651.772200px;}
.yc{bottom:658.913400px;}
.yde{bottom:664.894050px;}
.y99{bottom:666.922050px;}
.y30{bottom:667.894050px;}
.yfc{bottom:673.372200px;}
.yd5{bottom:676.453500px;}
.y49{bottom:676.913400px;}
.ydd{bottom:679.894050px;}
.y98{bottom:683.422050px;}
.yfb{bottom:684.172200px;}
.y2f{bottom:685.894050px;}
.ydc{bottom:694.894050px;}
.yb{bottom:694.913400px;}
.y97{bottom:699.922050px;}
.y2e{bottom:703.894050px;}
.yfa{bottom:705.772200px;}
.ydb{bottom:709.894050px;}
.y48{bottom:712.913250px;}
.yf2{bottom:712.913400px;}
.y96{bottom:716.422050px;}
.y2d{bottom:721.894050px;}
.y5{bottom:721.912650px;}
.y6{bottom:728.446200px;}
.y47{bottom:730.913250px;}
.ya{bottom:730.913400px;}
.y95{bottom:732.922050px;}
.y44{bottom:736.568550px;}
.y2c{bottom:739.894050px;}
.y46{bottom:748.913250px;}
.yf1{bottom:748.913400px;}
.y94{bottom:749.422050px;}
.yda{bottom:754.894050px;}
.y2b{bottom:757.894050px;}
.y43{bottom:761.768550px;}
.y93{bottom:765.922050px;}
.y45{bottom:766.913250px;}
.y9{bottom:766.913400px;}
.yd9{bottom:769.894050px;}
.y2a{bottom:775.894050px;}
.y92{bottom:782.422050px;}
.yd8{bottom:784.894050px;}
.y8{bottom:784.913400px;}
.y42{bottom:786.968400px;}
.y29{bottom:793.894050px;}
.y91{bottom:798.922050px;}
.yd7{bottom:799.894050px;}
.y5e{bottom:830.020800px;}
.y7{bottom:844.420650px;}
.h11{height:30.324000px;}
.h10{height:30.534000px;}
.h4{height:31.441133px;}
.hf{height:33.012000px;}
.ha{height:33.588000px;}
.he{height:39.960910px;}
.h3{height:43.648975px;}
.hd{height:44.736000px;}
.h5{height:46.608000px;}
.h6{height:55.500000px;}
.h8{height:58.260000px;}
.h2{height:74.826814px;}
.h7{height:81.564000px;}
.hc{height:99.300000px;}
.h9{height:104.207400px;}
.hb{height:104.208000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.292000px;}
.w3{width:1258.500000px;}
.w2{width:1258.582500px;}
.x0{left:0.000000px;}
.x17{left:27.232800px;}
.x9a{left:38.458800px;}
.xd{left:42.519750px;}
.x40{left:56.032800px;}
.x91{left:57.813300px;}
.x13{left:60.519750px;}
.x1{left:73.178700px;}
.x92{left:76.592700px;}
.x96{left:84.162000px;}
.x2{left:97.260450px;}
.x67{left:114.292950px;}
.x3{left:121.342200px;}
.x4e{left:125.092950px;}
.x4f{left:135.892950px;}
.x4{left:144.020700px;}
.x50{left:146.692950px;}
.x11{left:167.952750px;}
.x79{left:174.792750px;}
.x7a{left:185.592750px;}
.x5{left:188.505600px;}
.x71{left:196.525950px;}
.x6{left:202.954650px;}
.x72{left:207.325950px;}
.x73{left:218.125950px;}
.x74{left:228.925950px;}
.x22{left:233.185950px;}
.x93{left:238.074900px;}
.x75{left:239.725950px;}
.x23{left:243.985950px;}
.x97{left:245.386050px;}
.x76{left:250.525950px;}
.x24{left:254.785950px;}
.x77{left:261.325950px;}
.x25{left:265.585950px;}
.x78{left:272.125950px;}
.x7b{left:294.123900px;}
.x1a{left:299.971350px;}
.x1b{left:310.771350px;}
.x26{left:321.825750px;}
.x27{left:332.625750px;}
.x69{left:354.358950px;}
.x6a{left:365.158950px;}
.x4b{left:375.959100px;}
.x4c{left:386.759100px;}
.x95{left:388.680450px;}
.x4d{left:397.559100px;}
.x7{left:407.757300px;}
.x2c{left:425.658900px;}
.x94{left:427.864200px;}
.x2d{left:436.458900px;}
.x2e{left:447.258750px;}
.x35{left:458.058900px;}
.x36{left:468.858750px;}
.x52{left:545.104200px;}
.x61{left:546.654300px;}
.x18{left:547.832100px;}
.x6e{left:551.091900px;}
.x53{left:555.904200px;}
.x62{left:557.454300px;}
.x19{left:558.632100px;}
.x6f{left:561.891900px;}
.x54{left:566.704200px;}
.x63{left:568.254300px;}
.x20{left:569.432100px;}
.x70{left:572.691900px;}
.x55{left:577.504200px;}
.x64{left:579.054300px;}
.x21{left:580.232100px;}
.x89{left:583.146000px;}
.x56{left:588.304200px;}
.x65{left:589.854300px;}
.x8a{left:593.946000px;}
.x57{left:599.104200px;}
.x66{left:600.654300px;}
.x8b{left:604.746000px;}
.x58{left:609.904200px;}
.x33{left:614.871450px;}
.x41{left:618.060450px;}
.x28{left:620.186400px;}
.x3c{left:622.403250px;}
.x34{left:625.671450px;}
.x42{left:628.860450px;}
.x29{left:630.986400px;}
.x3d{left:633.203250px;}
.x48{left:635.211000px;}
.x37{left:636.471450px;}
.x43{left:639.660450px;}
.x2a{left:641.786400px;}
.x3e{left:644.003100px;}
.x49{left:646.011000px;}
.x44{left:650.460450px;}
.x2b{left:652.586400px;}
.x3f{left:654.803250px;}
.x4a{left:656.811000px;}
.x8c{left:659.990550px;}
.x45{left:661.260450px;}
.x59{left:666.303750px;}
.x8d{left:670.790550px;}
.x5a{left:677.103750px;}
.x8e{left:681.590550px;}
.x86{left:685.028850px;}
.x5b{left:687.903600px;}
.x8f{left:692.390550px;}
.x87{left:695.829000px;}
.x5c{left:698.703750px;}
.x1e{left:703.850550px;}
.x88{left:706.628850px;}
.x2f{left:709.503750px;}
.x1f{left:714.650550px;}
.x30{left:720.303750px;}
.x90{left:724.790550px;}
.x14{left:731.371350px;}
.xe{left:734.292750px;}
.x8{left:735.590550px;}
.x10{left:753.590550px;}
.x38{left:807.363900px;}
.x39{left:818.163900px;}
.x3a{left:828.963900px;}
.x3b{left:839.763900px;}
.x7e{left:867.863550px;}
.x7f{left:878.663550px;}
.x80{left:889.463550px;}
.x81{left:900.263550px;}
.x51{left:902.942250px;}
.x82{left:911.063550px;}
.x98{left:915.335250px;}
.xf{left:921.815100px;}
.x15{left:928.846950px;}
.x83{left:932.663550px;}
.x16{left:935.045700px;}
.x84{left:943.463550px;}
.x12{left:953.314200px;}
.x6c{left:954.396750px;}
.x6d{left:965.196750px;}
.x85{left:975.863550px;}
.x1c{left:977.633100px;}
.x31{left:993.296700px;}
.x32{left:1004.096700px;}
.x99{left:1060.564200px;}
.x5e{left:1118.729700px;}
.x5f{left:1129.529700px;}
.x60{left:1140.329700px;}
.x68{left:1151.129850px;}
.x7c{left:1161.929850px;}
.x7d{left:1172.729700px;}
.xc{left:1201.627200px;}
.xb{left:1202.863200px;}
.xa{left:1204.147050px;}
.x9{left:1208.887200px;}
.x46{left:1213.883100px;}
.x47{left:1228.282950px;}
.x6b{left:1242.068850px;}
.x1d{left:1243.295850px;}
.x5d{left:1245.409650px;}
@media print{
.v3{vertical-align:-4.362667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:46.837333pt;}
.v1{vertical-align:51.199467pt;}
.ls6{letter-spacing:-1.920000pt;}
.lsb{letter-spacing:-1.600000pt;}
.ls11{letter-spacing:-0.853333pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.554667pt;}
.ls5{letter-spacing:-0.426667pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000267pt;}
.lsa{letter-spacing:1.600000pt;}
.ls4{letter-spacing:4.266667pt;}
.ls2{letter-spacing:5.137440pt;}
.ls9{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.993680pt;}
.ls8{letter-spacing:7.466667pt;}
.ls0{letter-spacing:10.274880pt;}
.lsf{letter-spacing:530.520446pt;}
.ls10{letter-spacing:1086.976646pt;}
.lsd{letter-spacing:1109.645421pt;}
.ws0{word-spacing:-24.317216pt;}
.wsc{word-spacing:-22.773333pt;}
.wse{word-spacing:-16.266667pt;}
.ws16{word-spacing:-13.013333pt;}
.wsf{word-spacing:-10.933333pt;}
.ws45{word-spacing:-10.240000pt;}
.ws44{word-spacing:-9.898667pt;}
.ws4{word-spacing:-8.746667pt;}
.ws24{word-spacing:-8.480000pt;}
.ws1a{word-spacing:-8.416000pt;}
.ws34{word-spacing:-8.192000pt;}
.ws3b{word-spacing:-8.106667pt;}
.ws51{word-spacing:-7.802667pt;}
.ws2{word-spacing:-5.137440pt;}
.ws35{word-spacing:-4.266667pt;}
.ws5{word-spacing:-2.133333pt;}
.ws26{word-spacing:-1.600000pt;}
.ws52{word-spacing:-0.933333pt;}
.ws2d{word-spacing:-0.800000pt;}
.ws53{word-spacing:-0.560000pt;}
.ws2a{word-spacing:-0.256000pt;}
.ws10{word-spacing:-0.213333pt;}
.ws13{word-spacing:-0.160000pt;}
.ws25{word-spacing:-0.085333pt;}
.ws12{word-spacing:-0.053333pt;}
.ws4e{word-spacing:-0.050527pt;}
.ws4f{word-spacing:-0.037895pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:0.426667pt;}
.ws9{word-spacing:0.554667pt;}
.ws1f{word-spacing:1.600000pt;}
.ws8{word-spacing:1.920000pt;}
.ws19{word-spacing:80.041067pt;}
.ws1b{word-spacing:85.836800pt;}
.ws42{word-spacing:103.455467pt;}
.ws6{word-spacing:183.253333pt;}
.ws4b{word-spacing:212.084267pt;}
.ws28{word-spacing:362.707733pt;}
.ws17{word-spacing:433.587733pt;}
.ws50{word-spacing:464.857779pt;}
.ws3{word-spacing:629.702400pt;}
.wsb{word-spacing:747.325333pt;}
.ws23{word-spacing:885.330667pt;}
.ws3f{word-spacing:1575.547733pt;}
.ws3c{word-spacing:1621.201067pt;}
.ws39{word-spacing:1646.929067pt;}
.ws2c{word-spacing:1717.542400pt;}
.ws37{word-spacing:1830.822400pt;}
.ws55{word-spacing:2606.360000pt;}
.ws59{word-spacing:3048.637333pt;}
.ws5a{word-spacing:4024.203733pt;}
.ws46{word-spacing:4059.446400pt;}
.ws43{word-spacing:4061.835733pt;}
.ws33{word-spacing:4062.219200pt;}
.ws41{word-spacing:4063.372267pt;}
.ws57{word-spacing:4063.627733pt;}
.ws32{word-spacing:4064.054400pt;}
.ws58{word-spacing:4065.036267pt;}
.ws31{word-spacing:4065.590933pt;}
.ws56{word-spacing:4066.017067pt;}
.ws40{word-spacing:4067.254400pt;}
.ws2f{word-spacing:4067.553067pt;}
.ws4d{word-spacing:4068.235733pt;}
.ws4c{word-spacing:4068.406400pt;}
.ws22{word-spacing:4068.577067pt;}
.ws3e{word-spacing:4069.260267pt;}
.ws30{word-spacing:4069.473067pt;}
.ws2e{word-spacing:4070.113067pt;}
.ws4a{word-spacing:4070.795733pt;}
.ws21{word-spacing:4070.966400pt;}
.ws54{word-spacing:4071.435733pt;}
.ws3d{word-spacing:4071.649067pt;}
.ws1c{word-spacing:4072.075733pt;}
.ws20{word-spacing:4072.502400pt;}
.ws47{word-spacing:4073.014400pt;}
.ws1d{word-spacing:4073.184533pt;}
.ws3a{word-spacing:4073.825600pt;}
.ws36{word-spacing:4073.867733pt;}
.ws2b{word-spacing:4074.038933pt;}
.ws18{word-spacing:4074.465067pt;}
.ws27{word-spacing:4074.721067pt;}
.ws48{word-spacing:4076.214400pt;}
.ws1e{word-spacing:4076.385067pt;}
.ws14{word-spacing:4076.683733pt;}
.ws38{word-spacing:4077.068267pt;}
.ws29{word-spacing:4077.921067pt;}
.ws49{word-spacing:4078.091733pt;}
.ws15{word-spacing:4079.883733pt;}
.ws11{word-spacing:4112.694400pt;}
.wsd{word-spacing:4115.083200pt;}
.wsa{word-spacing:4116.619733pt;}
._e{margin-left:-3285.540800pt;}
._3{margin-left:-3284.252320pt;}
._a{margin-left:-2873.976000pt;}
._19{margin-left:-2430.257653pt;}
._32{margin-left:-2224.880107pt;}
._2a{margin-left:-1769.540320pt;}
._2b{margin-left:-1580.045387pt;}
._25{margin-left:-1332.045920pt;}
._15{margin-left:-1263.561653pt;}
._30{margin-left:-623.512446pt;}
._2f{margin-left:-622.567887pt;}
._7{margin-left:-183.257600pt;}
._14{margin-left:-13.877333pt;}
._13{margin-left:-12.964000pt;}
._18{margin-left:-12.005387pt;}
._1{margin-left:-10.764094pt;}
._b{margin-left:-9.498187pt;}
._31{margin-left:-8.268800pt;}
._d{margin-left:-6.853920pt;}
._12{margin-left:-5.755733pt;}
._8{margin-left:-4.650667pt;}
._5{margin-left:-3.118933pt;}
._0{margin-left:-1.712480pt;}
._4{width:1.066667pt;}
._c{width:2.047893pt;}
._10{width:2.938667pt;}
._16{width:4.645867pt;}
._f{width:7.437867pt;}
._6{width:183.253333pt;}
._9{width:185.386667pt;}
._21{width:327.294933pt;}
._1f{width:344.836213pt;}
._22{width:365.410613pt;}
._20{width:460.122080pt;}
._29{width:592.068107pt;}
._24{width:713.001547pt;}
._2{width:752.280480pt;}
._23{width:899.193067pt;}
._26{width:1022.286400pt;}
._1b{width:1040.650080pt;}
._27{width:1044.601067pt;}
._1a{width:1046.445813pt;}
._1e{width:1069.912480pt;}
._1d{width:1083.237227pt;}
._1c{width:1089.032960pt;}
._28{width:1173.497067pt;}
._2c{width:1282.365280pt;}
._2d{width:1389.928480pt;}
._17{width:1462.500267pt;}
._2e{width:2029.020213pt;}
._11{width:2199.255413pt;}
.fs6{font-size:32.000000pt;}
.fs2{font-size:34.249600pt;}
.fs9{font-size:37.333333pt;}
.fs8{font-size:37.895467pt;}
.fs1{font-size:39.957867pt;}
.fs3{font-size:42.666667pt;}
.fs7{font-size:50.527467pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:68.499200pt;}
.fs5{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:55.319067pt;}
.y5f{bottom:56.692933pt;}
.y72{bottom:56.696667pt;}
.y5d{bottom:57.700667pt;}
.yf7{bottom:57.700800pt;}
.y90{bottom:64.252800pt;}
.y5c{bottom:73.700667pt;}
.yf6{bottom:73.700800pt;}
.y8f{bottom:78.919467pt;}
.y5b{bottom:89.700667pt;}
.yf5{bottom:89.700800pt;}
.y8e{bottom:93.586133pt;}
.y6f{bottom:101.715867pt;}
.y5a{bottom:105.700667pt;}
.y28{bottom:105.700800pt;}
.y8d{bottom:108.252800pt;}
.y59{bottom:121.700667pt;}
.y27{bottom:121.700800pt;}
.y8c{bottom:122.919467pt;}
.ycf{bottom:136.160933pt;}
.y8b{bottom:137.586133pt;}
.y58{bottom:137.700667pt;}
.yf4{bottom:137.700800pt;}
.ybe{bottom:140.100533pt;}
.y62{bottom:141.370000pt;}
.y61{bottom:141.370133pt;}
.yce{bottom:150.827600pt;}
.y8a{bottom:152.252800pt;}
.y74{bottom:152.400533pt;}
.y57{bottom:153.700667pt;}
.y26{bottom:153.700800pt;}
.ybd{bottom:154.767200pt;}
.ycd{bottom:165.494267pt;}
.y89{bottom:166.919467pt;}
.y75{bottom:167.676533pt;}
.ybc{bottom:169.433867pt;}
.y56{bottom:169.700667pt;}
.y25{bottom:169.700800pt;}
.y6b{bottom:174.656933pt;}
.ycc{bottom:180.160933pt;}
.y88{bottom:181.586133pt;}
.ybb{bottom:184.100533pt;}
.y55{bottom:185.700667pt;}
.y24{bottom:185.700800pt;}
.y73{bottom:191.467467pt;}
.ycb{bottom:194.827600pt;}
.y87{bottom:196.252800pt;}
.yba{bottom:198.767200pt;}
.y54{bottom:201.700667pt;}
.y23{bottom:201.700800pt;}
.yca{bottom:209.494267pt;}
.y86{bottom:210.919467pt;}
.yb3{bottom:211.486267pt;}
.yb9{bottom:213.433867pt;}
.y53{bottom:217.700667pt;}
.y22{bottom:217.700800pt;}
.yc9{bottom:224.160933pt;}
.y85{bottom:225.586133pt;}
.y67{bottom:226.047200pt;}
.yb2{bottom:226.152933pt;}
.yb8{bottom:228.100533pt;}
.y52{bottom:233.700667pt;}
.y21{bottom:233.700800pt;}
.y66{bottom:238.110267pt;}
.yc8{bottom:238.827600pt;}
.y84{bottom:240.252800pt;}
.yb1{bottom:240.819600pt;}
.yb7{bottom:242.767200pt;}
.yf0{bottom:244.350267pt;}
.yd2{bottom:248.648933pt;}
.y51{bottom:249.700667pt;}
.yf3{bottom:249.700800pt;}
.yc7{bottom:253.494267pt;}
.y83{bottom:254.919467pt;}
.yb0{bottom:255.486267pt;}
.yb6{bottom:257.433867pt;}
.yef{bottom:257.683600pt;}
.y50{bottom:265.700667pt;}
.y20{bottom:265.700800pt;}
.yc6{bottom:268.160933pt;}
.y82{bottom:269.586133pt;}
.yaf{bottom:270.152933pt;}
.yee{bottom:271.016933pt;}
.yb5{bottom:272.100533pt;}
.y6d{bottom:281.609733pt;}
.y4f{bottom:281.700667pt;}
.y1f{bottom:281.700800pt;}
.yc5{bottom:282.827600pt;}
.y81{bottom:284.252800pt;}
.yed{bottom:284.350267pt;}
.yae{bottom:284.819600pt;}
.yb4{bottom:286.767200pt;}
.y71{bottom:289.070800pt;}
.yc4{bottom:297.494267pt;}
.yec{bottom:297.683600pt;}
.y4e{bottom:297.700667pt;}
.y1e{bottom:297.700800pt;}
.y80{bottom:298.919467pt;}
.yad{bottom:299.486267pt;}
.y68{bottom:310.724400pt;}
.yc3{bottom:312.160933pt;}
.y7f{bottom:313.586133pt;}
.y4d{bottom:313.700667pt;}
.y1d{bottom:313.700800pt;}
.yac{bottom:314.152933pt;}
.yd6{bottom:319.053200pt;}
.y41{bottom:321.683600pt;}
.y10e{bottom:322.587733pt;}
.yeb{bottom:324.350267pt;}
.yd0{bottom:325.275333pt;}
.yc2{bottom:326.827600pt;}
.y7e{bottom:328.252800pt;}
.yab{bottom:328.819600pt;}
.y4c{bottom:329.700667pt;}
.y1c{bottom:329.700800pt;}
.y10d{bottom:332.187733pt;}
.y40{bottom:337.683600pt;}
.yc1{bottom:341.494267pt;}
.y7d{bottom:342.919467pt;}
.yaa{bottom:343.486267pt;}
.y4b{bottom:345.700667pt;}
.y1b{bottom:345.700800pt;}
.yea{bottom:351.016933pt;}
.y3f{bottom:353.683600pt;}
.yc0{bottom:356.160933pt;}
.y7c{bottom:357.586133pt;}
.ya9{bottom:358.152933pt;}
.y4a{bottom:361.700667pt;}
.y1a{bottom:361.700800pt;}
.ye9{bottom:364.350267pt;}
.yd3{bottom:369.621867pt;}
.y3e{bottom:369.683600pt;}
.ybf{bottom:370.827600pt;}
.y7b{bottom:372.252800pt;}
.ya8{bottom:372.819600pt;}
.ye8{bottom:377.683600pt;}
.y19{bottom:377.700800pt;}
.y10c{bottom:377.753200pt;}
.y3d{bottom:385.683600pt;}
.y7a{bottom:386.919467pt;}
.y10b{bottom:387.353200pt;}
.ya7{bottom:387.486267pt;}
.yd1{bottom:388.688933pt;}
.y18{bottom:393.700800pt;}
.y65{bottom:395.401467pt;}
.y64{bottom:395.401600pt;}
.y79{bottom:401.586133pt;}
.y3c{bottom:401.683600pt;}
.ya6{bottom:402.152933pt;}
.ye7{bottom:404.350267pt;}
.y10a{bottom:406.553200pt;}
.y17{bottom:409.700800pt;}
.yf8{bottom:410.860533pt;}
.y109{bottom:416.153200pt;}
.y78{bottom:416.252800pt;}
.ya5{bottom:416.819600pt;}
.y3b{bottom:417.683600pt;}
.y16{bottom:425.700800pt;}
.yf9{bottom:426.697467pt;}
.y77{bottom:430.919467pt;}
.ye6{bottom:431.016933pt;}
.ya4{bottom:431.486267pt;}
.y3a{bottom:433.683600pt;}
.y108{bottom:435.353200pt;}
.y15{bottom:441.700800pt;}
.y70{bottom:442.938667pt;}
.yd4{bottom:443.473067pt;}
.ye5{bottom:444.350267pt;}
.y107{bottom:444.953067pt;}
.y76{bottom:445.586133pt;}
.ya3{bottom:446.152933pt;}
.y39{bottom:449.683600pt;}
.y106{bottom:454.553200pt;}
.ye4{bottom:457.683600pt;}
.y14{bottom:457.700800pt;}
.ya2{bottom:460.819600pt;}
.y105{bottom:464.153200pt;}
.y38{bottom:465.683600pt;}
.y13{bottom:473.700800pt;}
.ya1{bottom:475.486267pt;}
.y6a{bottom:480.078800pt;}
.y60{bottom:480.835467pt;}
.y37{bottom:481.683600pt;}
.y104{bottom:483.353200pt;}
.ye3{bottom:484.350267pt;}
.y12{bottom:489.700800pt;}
.ya0{bottom:490.152933pt;}
.y103{bottom:492.953067pt;}
.y36{bottom:497.683600pt;}
.y9f{bottom:504.819600pt;}
.y11{bottom:505.700800pt;}
.y6e{bottom:506.526667pt;}
.ye2{bottom:511.016933pt;}
.y102{bottom:512.153200pt;}
.y35{bottom:513.683600pt;}
.y9e{bottom:519.486267pt;}
.y10{bottom:521.700800pt;}
.y101{bottom:521.753200pt;}
.ye1{bottom:524.350267pt;}
.y34{bottom:529.683600pt;}
.y4{bottom:531.640400pt;}
.y3{bottom:533.449333pt;}
.y1{bottom:533.468533pt;}
.y2{bottom:533.487733pt;}
.y9d{bottom:534.152933pt;}
.yf{bottom:537.700800pt;}
.y100{bottom:540.953067pt;}
.y33{bottom:545.683600pt;}
.y9c{bottom:548.819600pt;}
.yff{bottom:550.553067pt;}
.ye0{bottom:551.016933pt;}
.ye{bottom:553.700800pt;}
.y32{bottom:561.683600pt;}
.y9b{bottom:563.486267pt;}
.ydf{bottom:564.350267pt;}
.y69{bottom:564.755867pt;}
.yd{bottom:569.700800pt;}
.yfe{bottom:569.753067pt;}
.y6c{bottom:573.087200pt;}
.y31{bottom:577.683600pt;}
.y9a{bottom:578.152933pt;}
.yfd{bottom:579.353067pt;}
.yc{bottom:585.700800pt;}
.yde{bottom:591.016933pt;}
.y99{bottom:592.819600pt;}
.y30{bottom:593.683600pt;}
.yfc{bottom:598.553067pt;}
.yd5{bottom:601.292000pt;}
.y49{bottom:601.700800pt;}
.ydd{bottom:604.350267pt;}
.y98{bottom:607.486267pt;}
.yfb{bottom:608.153067pt;}
.y2f{bottom:609.683600pt;}
.ydc{bottom:617.683600pt;}
.yb{bottom:617.700800pt;}
.y97{bottom:622.152933pt;}
.y2e{bottom:625.683600pt;}
.yfa{bottom:627.353067pt;}
.ydb{bottom:631.016933pt;}
.y48{bottom:633.700667pt;}
.yf2{bottom:633.700800pt;}
.y96{bottom:636.819600pt;}
.y2d{bottom:641.683600pt;}
.y5{bottom:641.700133pt;}
.y6{bottom:647.507733pt;}
.y47{bottom:649.700667pt;}
.ya{bottom:649.700800pt;}
.y95{bottom:651.486267pt;}
.y44{bottom:654.727600pt;}
.y2c{bottom:657.683600pt;}
.y46{bottom:665.700667pt;}
.yf1{bottom:665.700800pt;}
.y94{bottom:666.152933pt;}
.yda{bottom:671.016933pt;}
.y2b{bottom:673.683600pt;}
.y43{bottom:677.127600pt;}
.y93{bottom:680.819600pt;}
.y45{bottom:681.700667pt;}
.y9{bottom:681.700800pt;}
.yd9{bottom:684.350267pt;}
.y2a{bottom:689.683600pt;}
.y92{bottom:695.486267pt;}
.yd8{bottom:697.683600pt;}
.y8{bottom:697.700800pt;}
.y42{bottom:699.527467pt;}
.y29{bottom:705.683600pt;}
.y91{bottom:710.152933pt;}
.yd7{bottom:711.016933pt;}
.y5e{bottom:737.796267pt;}
.y7{bottom:750.596133pt;}
.h11{height:26.954667pt;}
.h10{height:27.141333pt;}
.h4{height:27.947674pt;}
.hf{height:29.344000pt;}
.ha{height:29.856000pt;}
.he{height:35.520809pt;}
.h3{height:38.799089pt;}
.hd{height:39.765333pt;}
.h5{height:41.429333pt;}
.h6{height:49.333333pt;}
.h8{height:51.786667pt;}
.h2{height:66.512723pt;}
.h7{height:72.501333pt;}
.hc{height:88.266667pt;}
.h9{height:92.628800pt;}
.hb{height:92.629333pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.370667pt;}
.w3{width:1118.666667pt;}
.w2{width:1118.740000pt;}
.x0{left:0.000000pt;}
.x17{left:24.206933pt;}
.x9a{left:34.185600pt;}
.xd{left:37.795333pt;}
.x40{left:49.806933pt;}
.x91{left:51.389600pt;}
.x13{left:53.795333pt;}
.x1{left:65.047733pt;}
.x92{left:68.082400pt;}
.x96{left:74.810667pt;}
.x2{left:86.453733pt;}
.x67{left:101.593733pt;}
.x3{left:107.859733pt;}
.x4e{left:111.193733pt;}
.x4f{left:120.793733pt;}
.x4{left:128.018400pt;}
.x50{left:130.393733pt;}
.x11{left:149.291333pt;}
.x79{left:155.371333pt;}
.x7a{left:164.971333pt;}
.x5{left:167.560533pt;}
.x71{left:174.689733pt;}
.x6{left:180.404133pt;}
.x72{left:184.289733pt;}
.x73{left:193.889733pt;}
.x74{left:203.489733pt;}
.x22{left:207.276400pt;}
.x93{left:211.622133pt;}
.x75{left:213.089733pt;}
.x23{left:216.876400pt;}
.x97{left:218.120933pt;}
.x76{left:222.689733pt;}
.x24{left:226.476400pt;}
.x77{left:232.289733pt;}
.x25{left:236.076400pt;}
.x78{left:241.889733pt;}
.x7b{left:261.443467pt;}
.x1a{left:266.641200pt;}
.x1b{left:276.241200pt;}
.x26{left:286.067333pt;}
.x27{left:295.667333pt;}
.x69{left:314.985733pt;}
.x6a{left:324.585733pt;}
.x4b{left:334.185867pt;}
.x4c{left:343.785867pt;}
.x95{left:345.493733pt;}
.x4d{left:353.385867pt;}
.x7{left:362.450933pt;}
.x2c{left:378.363467pt;}
.x94{left:380.323733pt;}
.x2d{left:387.963467pt;}
.x2e{left:397.563333pt;}
.x35{left:407.163467pt;}
.x36{left:416.763333pt;}
.x52{left:484.537067pt;}
.x61{left:485.914933pt;}
.x18{left:486.961867pt;}
.x6e{left:489.859467pt;}
.x53{left:494.137067pt;}
.x62{left:495.514933pt;}
.x19{left:496.561867pt;}
.x6f{left:499.459467pt;}
.x54{left:503.737067pt;}
.x63{left:505.114933pt;}
.x20{left:506.161867pt;}
.x70{left:509.059467pt;}
.x55{left:513.337067pt;}
.x64{left:514.714933pt;}
.x21{left:515.761867pt;}
.x89{left:518.352000pt;}
.x56{left:522.937067pt;}
.x65{left:524.314933pt;}
.x8a{left:527.952000pt;}
.x57{left:532.537067pt;}
.x66{left:533.914933pt;}
.x8b{left:537.552000pt;}
.x58{left:542.137067pt;}
.x33{left:546.552400pt;}
.x41{left:549.387067pt;}
.x28{left:551.276800pt;}
.x3c{left:553.247333pt;}
.x34{left:556.152400pt;}
.x42{left:558.987067pt;}
.x29{left:560.876800pt;}
.x3d{left:562.847333pt;}
.x48{left:564.632000pt;}
.x37{left:565.752400pt;}
.x43{left:568.587067pt;}
.x2a{left:570.476800pt;}
.x3e{left:572.447200pt;}
.x49{left:574.232000pt;}
.x44{left:578.187067pt;}
.x2b{left:580.076800pt;}
.x3f{left:582.047333pt;}
.x4a{left:583.832000pt;}
.x8c{left:586.658267pt;}
.x45{left:587.787067pt;}
.x59{left:592.270000pt;}
.x8d{left:596.258267pt;}
.x5a{left:601.870000pt;}
.x8e{left:605.858267pt;}
.x86{left:608.914533pt;}
.x5b{left:611.469867pt;}
.x8f{left:615.458267pt;}
.x87{left:618.514667pt;}
.x5c{left:621.070000pt;}
.x1e{left:625.644933pt;}
.x88{left:628.114533pt;}
.x2f{left:630.670000pt;}
.x1f{left:635.244933pt;}
.x30{left:640.270000pt;}
.x90{left:644.258267pt;}
.x14{left:650.107867pt;}
.xe{left:652.704667pt;}
.x8{left:653.858267pt;}
.x10{left:669.858267pt;}
.x38{left:717.656800pt;}
.x39{left:727.256800pt;}
.x3a{left:736.856800pt;}
.x3b{left:746.456800pt;}
.x7e{left:771.434267pt;}
.x7f{left:781.034267pt;}
.x80{left:790.634267pt;}
.x81{left:800.234267pt;}
.x51{left:802.615333pt;}
.x82{left:809.834267pt;}
.x98{left:813.631333pt;}
.xf{left:819.391200pt;}
.x15{left:825.641733pt;}
.x83{left:829.034267pt;}
.x16{left:831.151733pt;}
.x84{left:838.634267pt;}
.x12{left:847.390400pt;}
.x6c{left:848.352667pt;}
.x6d{left:857.952667pt;}
.x85{left:867.434267pt;}
.x1c{left:869.007200pt;}
.x31{left:882.930400pt;}
.x32{left:892.530400pt;}
.x99{left:942.723733pt;}
.x5e{left:994.426400pt;}
.x5f{left:1004.026400pt;}
.x60{left:1013.626400pt;}
.x68{left:1023.226533pt;}
.x7c{left:1032.826533pt;}
.x7d{left:1042.426400pt;}
.xc{left:1068.113067pt;}
.xb{left:1069.211733pt;}
.xa{left:1070.352933pt;}
.x9{left:1074.566400pt;}
.x46{left:1079.007200pt;}
.x47{left:1091.807067pt;}
.x6b{left:1104.061200pt;}
.x1d{left:1105.151867pt;}
.x5d{left:1107.030800pt;}
}




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