
    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_0fba84100d4d575a2661f31f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_2f79884fd14f97a5b973e32e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d59ca1e84be39370bffd8c49.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_61b033487ff205cfaf24873b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_19c6fadb59a0fb05d37279c9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_b87444467a102aee52b375a9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_d74b4ace65817fba3430d716.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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_73e8aa107f6e5dd48ff5240a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.944336;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_91ab33f8afde192b100fdd66.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;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_6a92c90d73d70934e61dd20a.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_1df36737c6f4e53011053ec0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_84c1b88cb0219d2ee9231f7b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_1c3091a741892acc1e5875c1.woff2')format("woff");}.fff{font-family:fff;line-height:0.921387;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_01c1b6922968e803f37b720d.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_bd58db4240b966f8af49ffb7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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_8cd65504a360e3f87df00d7d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.921387;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_f069ec91d30580ea8f3398f5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.962402;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_fc7d9166896e033e526477b6.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.941406;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);}
.v4{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.ls15{letter-spacing:-0.774000px;}
.ls1d{letter-spacing:-0.708000px;}
.ls2e{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.513600px;}
.ls20{letter-spacing:-0.460200px;}
.ls12{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.106800px;}
.ls25{letter-spacing:-0.100200px;}
.ls24{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.053280px;}
.ls11{letter-spacing:-0.018000px;}
.ls10{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls1a{letter-spacing:0.053280px;}
.ls1c{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.132600px;}
.ls8{letter-spacing:0.174240px;}
.lse{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.206400px;}
.ls1{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.306600px;}
.ls7{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.447840px;}
.lsb{letter-spacing:0.540000px;}
.ls2c{letter-spacing:0.666000px;}
.ls2d{letter-spacing:0.732000px;}
.ls4{letter-spacing:0.786240px;}
.ls26{letter-spacing:0.924000px;}
.ls22{letter-spacing:1.620000px;}
.ls19{letter-spacing:2.316000px;}
.ls28{letter-spacing:2.340000px;}
.ls9{letter-spacing:3.060000px;}
.lsd{letter-spacing:3.780000px;}
.ls1b{letter-spacing:4.500000px;}
.lsc{letter-spacing:5.220000px;}
.ls23{letter-spacing:7.380000px;}
.ls18{letter-spacing:8.100000px;}
.ls16{letter-spacing:9.540000px;}
.ls29{letter-spacing:10.260000px;}
.ls17{letter-spacing:10.980000px;}
.ls27{letter-spacing:14.580000px;}
.ls2a{letter-spacing:15.300000px;}
.ls2f{letter-spacing:16.506720px;}
.ls2b{letter-spacing:46.026720px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.ws19{word-spacing:-17.928000px;}
.ws1e{word-spacing:-17.537280px;}
.ws1f{word-spacing:-16.819680px;}
.ws1a{word-spacing:-16.666560px;}
.ws2{word-spacing:-16.626360px;}
.ws1b{word-spacing:-16.613280px;}
.ws1d{word-spacing:-16.513080px;}
.ws1c{word-spacing:-16.506480px;}
.ws3{word-spacing:-16.493760px;}
.ws1{word-spacing:-16.488000px;}
.ws20{word-spacing:-15.606000px;}
.ws6{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.246600px;}
.ws16{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.146400px;}
.ws12{word-spacing:-15.046800px;}
.ws15{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws18{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.580000px;}
.ws17{word-spacing:-14.479800px;}
.ws14{word-spacing:-14.426400px;}
.wse{word-spacing:-14.166000px;}
.wsa{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.ws21{word-spacing:-10.452000px;}
.wsd{word-spacing:-9.732960px;}
.wsf{word-spacing:-9.720000px;}
.ws13{word-spacing:-9.012000px;}
.ws4{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.ws11{word-spacing:0.000000px;}
._4{margin-left:-4.267440px;}
._2{margin-left:-2.274480px;}
._0{margin-left:-1.080000px;}
._1{width:1.002000px;}
._3{width:2.184000px;}
._13{width:3.277920px;}
._12{width:4.829760px;}
._f{width:6.046560px;}
._10{width:7.828560px;}
._9{width:9.853200px;}
._a{width:11.593200px;}
._7{width:12.742800px;}
._8{width:16.089360px;}
._11{width:17.762640px;}
._16{width:18.948960px;}
._e{width:20.093280px;}
._14{width:21.618000px;}
._15{width:22.730640px;}
._6{width:31.655760px;}
._5{width:33.048960px;}
._b{width:34.495440px;}
._c{width:35.975520px;}
._d{width:37.709040px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.yc1{bottom:-8.100000px;}
.y0{bottom:0.000000px;}
.y46{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.yb8{bottom:3.960000px;}
.yb6{bottom:4.140000px;}
.ya1{bottom:4.320000px;}
.ya7{bottom:4.500000px;}
.y9f{bottom:4.680000px;}
.y19{bottom:4.860000px;}
.yb9{bottom:6.660000px;}
.yb1{bottom:8.280000px;}
.y9a{bottom:8.460000px;}
.ye{bottom:9.540000px;}
.y1b{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y49{bottom:14.940000px;}
.y4{bottom:15.876000px;}
.y9c{bottom:17.820000px;}
.y48{bottom:18.000000px;}
.y2{bottom:20.016000px;}
.yb3{bottom:20.340000px;}
.y9d{bottom:20.520000px;}
.y45{bottom:20.565000px;}
.y18{bottom:29.385000px;}
.yb{bottom:30.240000px;}
.y5{bottom:33.840000px;}
.y44{bottom:37.665000px;}
.y17{bottom:45.765000px;}
.ya{bottom:46.440000px;}
.y43{bottom:54.945000px;}
.y1{bottom:55.980000px;}
.y16{bottom:58.545000px;}
.y42{bottom:72.225000px;}
.y9{bottom:73.470000px;}
.y15{bottom:78.165000px;}
.y14{bottom:87.885000px;}
.y41{bottom:89.505000px;}
.y8{bottom:93.090000px;}
.y13{bottom:103.185000px;}
.y40{bottom:106.785000px;}
.y7{bottom:111.270000px;}
.yca{bottom:111.816000px;}
.yaf{bottom:113.436000px;}
.y54{bottom:115.416000px;}
.y12{bottom:122.265000px;}
.y3f{bottom:124.065000px;}
.yc8{bottom:129.096000px;}
.yae{bottom:130.716000px;}
.y53{bottom:132.696000px;}
.y3e{bottom:141.165000px;}
.yc7{bottom:146.376000px;}
.yad{bottom:147.996000px;}
.y11{bottom:148.005000px;}
.y52{bottom:149.976000px;}
.y3d{bottom:158.445000px;}
.yc6{bottom:163.470000px;}
.yac{bottom:165.270000px;}
.y51{bottom:167.070000px;}
.y91{bottom:171.030000px;}
.y10{bottom:172.305000px;}
.y3c{bottom:175.725000px;}
.yc5{bottom:180.750000px;}
.y50{bottom:184.350000px;}
.yab{bottom:185.610000px;}
.y90{bottom:188.310000px;}
.y3b{bottom:193.005000px;}
.yc4{bottom:198.030000px;}
.y4f{bottom:201.630000px;}
.y8f{bottom:202.170000px;}
.y3a{bottom:210.285000px;}
.yc3{bottom:215.310000px;}
.y4e{bottom:218.910000px;}
.y39{bottom:227.385000px;}
.yaa{bottom:232.410000px;}
.yc2{bottom:232.590000px;}
.y4d{bottom:236.190000px;}
.y38{bottom:244.665000px;}
.y8b{bottom:249.870000px;}
.y4c{bottom:253.470000px;}
.y37{bottom:261.945000px;}
.ya9{bottom:263.190000px;}
.y8a{bottom:266.970000px;}
.y29{bottom:269.505000px;}
.y4b{bottom:270.570000px;}
.y36{bottom:279.255000px;}
.y28{bottom:284.115000px;}
.y89{bottom:284.250000px;}
.y4a{bottom:287.850000px;}
.y35{bottom:296.535000px;}
.y27{bottom:301.395000px;}
.y88{bottom:301.530000px;}
.y47{bottom:301.890000px;}
.ya8{bottom:310.170000px;}
.y34{bottom:313.815000px;}
.y26{bottom:318.675000px;}
.y87{bottom:318.810000px;}
.y33{bottom:330.915000px;}
.y1c{bottom:331.230000px;}
.y86{bottom:336.090000px;}
.y25{bottom:336.495000px;}
.ya6{bottom:340.815000px;}
.y32{bottom:348.195000px;}
.y85{bottom:353.415000px;}
.y24{bottom:353.955000px;}
.y31{bottom:365.475000px;}
.y84{bottom:370.515000px;}
.y23{bottom:371.235000px;}
.ya5{bottom:371.595000px;}
.y30{bottom:382.755000px;}
.y83{bottom:387.795000px;}
.y22{bottom:388.695000px;}
.y2f{bottom:400.035000px;}
.ya4{bottom:402.375000px;}
.y82{bottom:405.075000px;}
.y21{bottom:405.975000px;}
.y2e{bottom:417.315000px;}
.y81{bottom:422.355000px;}
.y20{bottom:423.435000px;}
.ya3{bottom:433.155000px;}
.y2d{bottom:434.415000px;}
.y80{bottom:439.635000px;}
.y1f{bottom:443.775000px;}
.y2c{bottom:451.695000px;}
.y7f{bottom:456.915000px;}
.ya2{bottom:463.935000px;}
.y2b{bottom:468.975000px;}
.y1e{bottom:471.135000px;}
.y7e{bottom:474.015000px;}
.y2a{bottom:486.255000px;}
.y1d{bottom:488.955000px;}
.y7d{bottom:491.295000px;}
.ya0{bottom:494.715000px;}
.y7c{bottom:508.575000px;}
.y9e{bottom:525.315000px;}
.y7b{bottom:525.855000px;}
.yc9{bottom:531.075000px;}
.y7a{bottom:543.135000px;}
.y9b{bottom:557.175000px;}
.y79{bottom:560.235000px;}
.y78{bottom:577.515000px;}
.y77{bottom:594.795000px;}
.y99{bottom:604.005000px;}
.y76{bottom:612.105000px;}
.y75{bottom:629.385000px;}
.y98{bottom:642.885000px;}
.y74{bottom:646.665000px;}
.y97{bottom:659.985000px;}
.y73{bottom:663.765000px;}
.y8e{bottom:668.985000px;}
.y96{bottom:677.265000px;}
.y72{bottom:681.045000px;}
.y8d{bottom:686.265000px;}
.y95{bottom:694.545000px;}
.y71{bottom:698.325000px;}
.y8c{bottom:700.305000px;}
.y94{bottom:711.825000px;}
.y70{bottom:715.605000px;}
.y93{bottom:729.105000px;}
.y6f{bottom:732.885000px;}
.y92{bottom:742.965000px;}
.y6e{bottom:750.165000px;}
.yc0{bottom:757.905000px;}
.y6d{bottom:767.265000px;}
.y6c{bottom:784.545000px;}
.ybf{bottom:788.325000px;}
.y6b{bottom:801.825000px;}
.ybe{bottom:818.745000px;}
.y6a{bottom:819.105000px;}
.y1a{bottom:831.525000px;}
.y69{bottom:836.385000px;}
.y68{bottom:853.485000px;}
.yf{bottom:861.045000px;}
.ybd{bottom:865.725000px;}
.y67{bottom:870.810000px;}
.y66{bottom:888.090000px;}
.ybc{bottom:896.190000px;}
.y65{bottom:905.370000px;}
.y64{bottom:922.650000px;}
.ybb{bottom:926.610000px;}
.y63{bottom:939.930000px;}
.y62{bottom:957.030000px;}
.y61{bottom:974.310000px;}
.yba{bottom:987.450000px;}
.y60{bottom:991.590000px;}
.y5f{bottom:1008.870000px;}
.yb7{bottom:1018.050000px;}
.y5e{bottom:1026.150000px;}
.y5d{bottom:1043.430000px;}
.yd{bottom:1048.470000px;}
.yb5{bottom:1050.990000px;}
.y5c{bottom:1060.530000px;}
.y6{bottom:1073.850000px;}
.y5b{bottom:1077.810000px;}
.yb4{bottom:1081.590000px;}
.y5a{bottom:1095.090000px;}
.y59{bottom:1112.370000px;}
.yb2{bottom:1113.090000px;}
.y58{bottom:1129.650000px;}
.y57{bottom:1146.960000px;}
.yb0{bottom:1159.920000px;}
.y56{bottom:1164.060000px;}
.y55{bottom:1181.340000px;}
.h26{height:18.000000px;}
.h27{height:18.036000px;}
.h24{height:18.180000px;}
.h22{height:18.360000px;}
.h21{height:18.720000px;}
.h25{height:20.700000px;}
.hc{height:25.020000px;}
.h2a{height:27.147656px;}
.h13{height:28.968750px;}
.h1d{height:29.340000px;}
.h14{height:29.520000px;}
.h2{height:32.976000px;}
.h23{height:34.416000px;}
.h1f{height:34.560000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1a{height:38.818125px;}
.h1c{height:41.726953px;}
.h1b{height:42.164648px;}
.h4{height:43.453125px;}
.h19{height:43.681992px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h20{height:44.936719px;}
.h18{height:45.770625px;}
.h16{height:47.980898px;}
.h29{height:48.003656px;}
.h1e{height:48.027656px;}
.h6{height:50.273438px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h8{height:71.613281px;}
.h5{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:187.410000px;}
.h28{height:452.415000px;}
.h15{height:500.295000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:27.396000px;}
.wb{width:27.756000px;}
.w1f{width:47.160000px;}
.w17{width:47.700000px;}
.w18{width:47.736000px;}
.wd{width:47.880000px;}
.w19{width:65.700000px;}
.w11{width:66.996000px;}
.w1a{width:69.480000px;}
.w3{width:73.080000px;}
.w10{width:80.820000px;}
.w1b{width:102.276000px;}
.w14{width:105.300000px;}
.wc{width:105.660000px;}
.we{width:107.496000px;}
.w1c{width:110.736000px;}
.w1e{width:125.496000px;}
.w16{width:125.856000px;}
.w12{width:135.540000px;}
.w1d{width:136.800000px;}
.wf{width:148.536000px;}
.w5{width:151.950000px;}
.w8{width:216.075000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w15{width:708.630000px;}
.wa{width:723.030000px;}
.w20{width:727.350000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x37{left:2.160000px;}
.x1a{left:5.940000px;}
.x2{left:8.676000px;}
.x13{left:12.600000px;}
.x21{left:13.716000px;}
.x26{left:15.120000px;}
.x22{left:25.200000px;}
.x27{left:33.660000px;}
.xe{left:43.776000px;}
.x10{left:45.756000px;}
.x34{left:51.480000px;}
.x31{left:55.440000px;}
.xb{left:60.156000px;}
.x25{left:66.600000px;}
.x32{left:79.590000px;}
.x1{left:81.000000px;}
.x23{left:84.825000px;}
.x2a{left:88.200000px;}
.x28{left:93.285000px;}
.x35{left:96.660000px;}
.x4{left:98.130000px;}
.x38{left:108.035987px;}
.x1b{left:109.476000px;}
.x33{left:114.120000px;}
.x36{left:122.580000px;}
.x19{left:124.590000px;}
.x24{left:126.030000px;}
.x29{left:134.490000px;}
.xd{left:195.690000px;}
.x11{left:215.175000px;}
.x2b{left:221.295000px;}
.x5{left:232.950000px;}
.x15{left:246.089987px;}
.x2c{left:262.290000px;}
.x1c{left:263.730000px;}
.xc{left:270.435000px;}
.x8{left:272.235000px;}
.x12{left:297.075000px;}
.xf{left:306.075000px;}
.x2d{left:310.395000px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x1d{left:371.415000px;}
.x2e{left:376.275000px;}
.x9{left:439.500000px;}
.x16{left:446.474987px;}
.x1e{left:520.305000px;}
.x2f{left:548.745000px;}
.x1f{left:601.305000px;}
.x30{left:659.850000px;}
.x20{left:668.490000px;}
.x3{left:739.050000px;}
.x17{left:772.889987px;}
.x14{left:779.549987px;}
.x18{left:803.849987px;}
@media print{
.v4{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.ls15{letter-spacing:-0.688000pt;}
.ls1d{letter-spacing:-0.629333pt;}
.ls2e{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.456533pt;}
.ls20{letter-spacing:-0.409067pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.094933pt;}
.ls25{letter-spacing:-0.089067pt;}
.ls24{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls11{letter-spacing:-0.016000pt;}
.ls10{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1a{letter-spacing:0.047360pt;}
.ls1c{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.117867pt;}
.ls8{letter-spacing:0.154880pt;}
.lse{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.183467pt;}
.ls1{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.272533pt;}
.ls7{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.398080pt;}
.lsb{letter-spacing:0.480000pt;}
.ls2c{letter-spacing:0.592000pt;}
.ls2d{letter-spacing:0.650667pt;}
.ls4{letter-spacing:0.698880pt;}
.ls26{letter-spacing:0.821333pt;}
.ls22{letter-spacing:1.440000pt;}
.ls19{letter-spacing:2.058667pt;}
.ls28{letter-spacing:2.080000pt;}
.ls9{letter-spacing:2.720000pt;}
.lsd{letter-spacing:3.360000pt;}
.ls1b{letter-spacing:4.000000pt;}
.lsc{letter-spacing:4.640000pt;}
.ls23{letter-spacing:6.560000pt;}
.ls18{letter-spacing:7.200000pt;}
.ls16{letter-spacing:8.480000pt;}
.ls29{letter-spacing:9.120000pt;}
.ls17{letter-spacing:9.760000pt;}
.ls27{letter-spacing:12.960000pt;}
.ls2a{letter-spacing:13.600000pt;}
.ls2f{letter-spacing:14.672640pt;}
.ls2b{letter-spacing:40.912640pt;}
.ws9{word-spacing:-53.120000pt;}
.ws19{word-spacing:-15.936000pt;}
.ws1e{word-spacing:-15.588693pt;}
.ws1f{word-spacing:-14.950827pt;}
.ws1a{word-spacing:-14.814720pt;}
.ws2{word-spacing:-14.778987pt;}
.ws1b{word-spacing:-14.767360pt;}
.ws1d{word-spacing:-14.678293pt;}
.ws1c{word-spacing:-14.672427pt;}
.ws3{word-spacing:-14.661120pt;}
.ws1{word-spacing:-14.656000pt;}
.ws20{word-spacing:-13.872000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.552533pt;}
.ws16{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.463467pt;}
.ws12{word-spacing:-13.374933pt;}
.ws15{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws18{word-spacing:-13.185067pt;}
.ws8{word-spacing:-12.960000pt;}
.ws17{word-spacing:-12.870933pt;}
.ws14{word-spacing:-12.823467pt;}
.wse{word-spacing:-12.592000pt;}
.wsa{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.ws21{word-spacing:-9.290667pt;}
.wsd{word-spacing:-8.651520pt;}
.wsf{word-spacing:-8.640000pt;}
.ws13{word-spacing:-8.010667pt;}
.ws4{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.ws11{word-spacing:0.000000pt;}
._4{margin-left:-3.793280pt;}
._2{margin-left:-2.021760pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.890667pt;}
._3{width:1.941333pt;}
._13{width:2.913707pt;}
._12{width:4.293120pt;}
._f{width:5.374720pt;}
._10{width:6.958720pt;}
._9{width:8.758400pt;}
._a{width:10.305067pt;}
._7{width:11.326933pt;}
._8{width:14.301653pt;}
._11{width:15.789013pt;}
._16{width:16.843520pt;}
._e{width:17.860693pt;}
._14{width:19.216000pt;}
._15{width:20.205013pt;}
._6{width:28.138453pt;}
._5{width:29.376853pt;}
._b{width:30.662613pt;}
._c{width:31.978240pt;}
._d{width:33.519147pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.yc1{bottom:-7.200000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.yb8{bottom:3.520000pt;}
.yb6{bottom:3.680000pt;}
.ya1{bottom:3.840000pt;}
.ya7{bottom:4.000000pt;}
.y9f{bottom:4.160000pt;}
.y19{bottom:4.320000pt;}
.yb9{bottom:5.920000pt;}
.yb1{bottom:7.360000pt;}
.y9a{bottom:7.520000pt;}
.ye{bottom:8.480000pt;}
.y1b{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y49{bottom:13.280000pt;}
.y4{bottom:14.112000pt;}
.y9c{bottom:15.840000pt;}
.y48{bottom:16.000000pt;}
.y2{bottom:17.792000pt;}
.yb3{bottom:18.080000pt;}
.y9d{bottom:18.240000pt;}
.y45{bottom:18.280000pt;}
.y18{bottom:26.120000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:30.080000pt;}
.y44{bottom:33.480000pt;}
.y17{bottom:40.680000pt;}
.ya{bottom:41.280000pt;}
.y43{bottom:48.840000pt;}
.y1{bottom:49.760000pt;}
.y16{bottom:52.040000pt;}
.y42{bottom:64.200000pt;}
.y9{bottom:65.306667pt;}
.y15{bottom:69.480000pt;}
.y14{bottom:78.120000pt;}
.y41{bottom:79.560000pt;}
.y8{bottom:82.746667pt;}
.y13{bottom:91.720000pt;}
.y40{bottom:94.920000pt;}
.y7{bottom:98.906667pt;}
.yca{bottom:99.392000pt;}
.yaf{bottom:100.832000pt;}
.y54{bottom:102.592000pt;}
.y12{bottom:108.680000pt;}
.y3f{bottom:110.280000pt;}
.yc8{bottom:114.752000pt;}
.yae{bottom:116.192000pt;}
.y53{bottom:117.952000pt;}
.y3e{bottom:125.480000pt;}
.yc7{bottom:130.112000pt;}
.yad{bottom:131.552000pt;}
.y11{bottom:131.560000pt;}
.y52{bottom:133.312000pt;}
.y3d{bottom:140.840000pt;}
.yc6{bottom:145.306667pt;}
.yac{bottom:146.906667pt;}
.y51{bottom:148.506667pt;}
.y91{bottom:152.026667pt;}
.y10{bottom:153.160000pt;}
.y3c{bottom:156.200000pt;}
.yc5{bottom:160.666667pt;}
.y50{bottom:163.866667pt;}
.yab{bottom:164.986667pt;}
.y90{bottom:167.386667pt;}
.y3b{bottom:171.560000pt;}
.yc4{bottom:176.026667pt;}
.y4f{bottom:179.226667pt;}
.y8f{bottom:179.706667pt;}
.y3a{bottom:186.920000pt;}
.yc3{bottom:191.386667pt;}
.y4e{bottom:194.586667pt;}
.y39{bottom:202.120000pt;}
.yaa{bottom:206.586667pt;}
.yc2{bottom:206.746667pt;}
.y4d{bottom:209.946667pt;}
.y38{bottom:217.480000pt;}
.y8b{bottom:222.106667pt;}
.y4c{bottom:225.306667pt;}
.y37{bottom:232.840000pt;}
.ya9{bottom:233.946667pt;}
.y8a{bottom:237.306667pt;}
.y29{bottom:239.560000pt;}
.y4b{bottom:240.506667pt;}
.y36{bottom:248.226667pt;}
.y28{bottom:252.546667pt;}
.y89{bottom:252.666667pt;}
.y4a{bottom:255.866667pt;}
.y35{bottom:263.586667pt;}
.y27{bottom:267.906667pt;}
.y88{bottom:268.026667pt;}
.y47{bottom:268.346667pt;}
.ya8{bottom:275.706667pt;}
.y34{bottom:278.946667pt;}
.y26{bottom:283.266667pt;}
.y87{bottom:283.386667pt;}
.y33{bottom:294.146667pt;}
.y1c{bottom:294.426667pt;}
.y86{bottom:298.746667pt;}
.y25{bottom:299.106667pt;}
.ya6{bottom:302.946667pt;}
.y32{bottom:309.506667pt;}
.y85{bottom:314.146667pt;}
.y24{bottom:314.626667pt;}
.y31{bottom:324.866667pt;}
.y84{bottom:329.346667pt;}
.y23{bottom:329.986667pt;}
.ya5{bottom:330.306667pt;}
.y30{bottom:340.226667pt;}
.y83{bottom:344.706667pt;}
.y22{bottom:345.506667pt;}
.y2f{bottom:355.586667pt;}
.ya4{bottom:357.666667pt;}
.y82{bottom:360.066667pt;}
.y21{bottom:360.866667pt;}
.y2e{bottom:370.946667pt;}
.y81{bottom:375.426667pt;}
.y20{bottom:376.386667pt;}
.ya3{bottom:385.026667pt;}
.y2d{bottom:386.146667pt;}
.y80{bottom:390.786667pt;}
.y1f{bottom:394.466667pt;}
.y2c{bottom:401.506667pt;}
.y7f{bottom:406.146667pt;}
.ya2{bottom:412.386667pt;}
.y2b{bottom:416.866667pt;}
.y1e{bottom:418.786667pt;}
.y7e{bottom:421.346667pt;}
.y2a{bottom:432.226667pt;}
.y1d{bottom:434.626667pt;}
.y7d{bottom:436.706667pt;}
.ya0{bottom:439.746667pt;}
.y7c{bottom:452.066667pt;}
.y9e{bottom:466.946667pt;}
.y7b{bottom:467.426667pt;}
.yc9{bottom:472.066667pt;}
.y7a{bottom:482.786667pt;}
.y9b{bottom:495.266667pt;}
.y79{bottom:497.986667pt;}
.y78{bottom:513.346667pt;}
.y77{bottom:528.706667pt;}
.y99{bottom:536.893333pt;}
.y76{bottom:544.093333pt;}
.y75{bottom:559.453333pt;}
.y98{bottom:571.453333pt;}
.y74{bottom:574.813333pt;}
.y97{bottom:586.653333pt;}
.y73{bottom:590.013333pt;}
.y8e{bottom:594.653333pt;}
.y96{bottom:602.013333pt;}
.y72{bottom:605.373333pt;}
.y8d{bottom:610.013333pt;}
.y95{bottom:617.373333pt;}
.y71{bottom:620.733333pt;}
.y8c{bottom:622.493333pt;}
.y94{bottom:632.733333pt;}
.y70{bottom:636.093333pt;}
.y93{bottom:648.093333pt;}
.y6f{bottom:651.453333pt;}
.y92{bottom:660.413333pt;}
.y6e{bottom:666.813333pt;}
.yc0{bottom:673.693333pt;}
.y6d{bottom:682.013333pt;}
.y6c{bottom:697.373333pt;}
.ybf{bottom:700.733333pt;}
.y6b{bottom:712.733333pt;}
.ybe{bottom:727.773333pt;}
.y6a{bottom:728.093333pt;}
.y1a{bottom:739.133333pt;}
.y69{bottom:743.453333pt;}
.y68{bottom:758.653333pt;}
.yf{bottom:765.373333pt;}
.ybd{bottom:769.533333pt;}
.y67{bottom:774.053333pt;}
.y66{bottom:789.413333pt;}
.ybc{bottom:796.613333pt;}
.y65{bottom:804.773333pt;}
.y64{bottom:820.133333pt;}
.ybb{bottom:823.653333pt;}
.y63{bottom:835.493333pt;}
.y62{bottom:850.693333pt;}
.y61{bottom:866.053333pt;}
.yba{bottom:877.733333pt;}
.y60{bottom:881.413333pt;}
.y5f{bottom:896.773333pt;}
.yb7{bottom:904.933333pt;}
.y5e{bottom:912.133333pt;}
.y5d{bottom:927.493333pt;}
.yd{bottom:931.973333pt;}
.yb5{bottom:934.213333pt;}
.y5c{bottom:942.693333pt;}
.y6{bottom:954.533333pt;}
.y5b{bottom:958.053333pt;}
.yb4{bottom:961.413333pt;}
.y5a{bottom:973.413333pt;}
.y59{bottom:988.773333pt;}
.yb2{bottom:989.413333pt;}
.y58{bottom:1004.133333pt;}
.y57{bottom:1019.520000pt;}
.yb0{bottom:1031.040000pt;}
.y56{bottom:1034.720000pt;}
.y55{bottom:1050.080000pt;}
.h26{height:16.000000pt;}
.h27{height:16.032000pt;}
.h24{height:16.160000pt;}
.h22{height:16.320000pt;}
.h21{height:16.640000pt;}
.h25{height:18.400000pt;}
.hc{height:22.240000pt;}
.h2a{height:24.131250pt;}
.h13{height:25.750000pt;}
.h1d{height:26.080000pt;}
.h14{height:26.240000pt;}
.h2{height:29.312000pt;}
.h23{height:30.592000pt;}
.h1f{height:30.720000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1a{height:34.505000pt;}
.h1c{height:37.090625pt;}
.h1b{height:37.479688pt;}
.h4{height:38.625000pt;}
.h19{height:38.828437pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h20{height:39.943750pt;}
.h18{height:40.685000pt;}
.h16{height:42.649687pt;}
.h29{height:42.669917pt;}
.h1e{height:42.691250pt;}
.h6{height:44.687500pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h8{height:63.656250pt;}
.h5{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:166.586667pt;}
.h28{height:402.146667pt;}
.h15{height:444.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:24.352000pt;}
.wb{width:24.672000pt;}
.w1f{width:41.920000pt;}
.w17{width:42.400000pt;}
.w18{width:42.432000pt;}
.wd{width:42.560000pt;}
.w19{width:58.400000pt;}
.w11{width:59.552000pt;}
.w1a{width:61.760000pt;}
.w3{width:64.960000pt;}
.w10{width:71.840000pt;}
.w1b{width:90.912000pt;}
.w14{width:93.600000pt;}
.wc{width:93.920000pt;}
.we{width:95.552000pt;}
.w1c{width:98.432000pt;}
.w1e{width:111.552000pt;}
.w16{width:111.872000pt;}
.w12{width:120.480000pt;}
.w1d{width:121.600000pt;}
.wf{width:132.032000pt;}
.w5{width:135.066667pt;}
.w8{width:192.066667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w15{width:629.893333pt;}
.wa{width:642.693333pt;}
.w20{width:646.533333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x37{left:1.920000pt;}
.x1a{left:5.280000pt;}
.x2{left:7.712000pt;}
.x13{left:11.200000pt;}
.x21{left:12.192000pt;}
.x26{left:13.440000pt;}
.x22{left:22.400000pt;}
.x27{left:29.920000pt;}
.xe{left:38.912000pt;}
.x10{left:40.672000pt;}
.x34{left:45.760000pt;}
.x31{left:49.280000pt;}
.xb{left:53.472000pt;}
.x25{left:59.200000pt;}
.x32{left:70.746667pt;}
.x1{left:72.000000pt;}
.x23{left:75.400000pt;}
.x2a{left:78.400000pt;}
.x28{left:82.920000pt;}
.x35{left:85.920000pt;}
.x4{left:87.226667pt;}
.x38{left:96.031988pt;}
.x1b{left:97.312000pt;}
.x33{left:101.440000pt;}
.x36{left:108.960000pt;}
.x19{left:110.746667pt;}
.x24{left:112.026667pt;}
.x29{left:119.546667pt;}
.xd{left:173.946667pt;}
.x11{left:191.266667pt;}
.x2b{left:196.706667pt;}
.x5{left:207.066667pt;}
.x15{left:218.746655pt;}
.x2c{left:233.146667pt;}
.x1c{left:234.426667pt;}
.xc{left:240.386667pt;}
.x8{left:241.986667pt;}
.x12{left:264.066667pt;}
.xf{left:272.066667pt;}
.x2d{left:275.906667pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x1d{left:330.146667pt;}
.x2e{left:334.466667pt;}
.x9{left:390.666667pt;}
.x16{left:396.866655pt;}
.x1e{left:462.493333pt;}
.x2f{left:487.773333pt;}
.x1f{left:534.493333pt;}
.x30{left:586.533333pt;}
.x20{left:594.213333pt;}
.x3{left:656.933333pt;}
.x17{left:687.013322pt;}
.x14{left:692.933322pt;}
.x18{left:714.533322pt;}
}




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