
    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_7efe94e6f93c2958b4f46b6a.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_c6cfa0df6e8a6fd446c60a9c.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_db0fc97d2180b3eb7cf480cd.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_dd92c5ac65c90b61ccd47985.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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b87444467a102aee52b375a9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d74b4ace65817fba3430d716.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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9e7f1bab65ced2531403c1eb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_bc6c6b0a084d274b6c5b2ae0.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3d920e38a07772e3284a88a0.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ff5eec3b649fa774c5bef4ca.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_682030f5cff642cf96743365.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_056019fa553c2a7955dd8373.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_11115cbb701d0201b16bb236.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_5df0080907855bcd53e9ffdd.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_5187239627bb0dff3d8cbdf7.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_b01297dce4c41381d04c5b71.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_6193fc93719873dbca485474.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.739746;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_01ce8cbd34e42b9a86a59126.woff2')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;}
@font-face{font-family:ff15;src:url('chunks/assets/font_b338cbaf071cce5e96d47a9c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.891113;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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.lsc{letter-spacing:0.206640px;}
.ls2{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.lse{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.786240px;}
.ls10{letter-spacing:16.506720px;}
.lsa{letter-spacing:46.026720px;}
.lsb{letter-spacing:64.170720px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.wsc{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.220000px;}
.ws9{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._e{margin-left:-8.007840px;}
._12{margin-left:-6.917280px;}
._4{margin-left:-5.557680px;}
._11{margin-left:-4.349280px;}
._2{margin-left:-3.126000px;}
._3{margin-left:-2.096880px;}
._0{margin-left:-1.086000px;}
._1{width:1.008000px;}
._7{width:2.282400px;}
._a{width:3.751680px;}
._6{width:5.617440px;}
._5{width:6.647760px;}
._f{width:8.120880px;}
._b{width:9.348000px;}
._9{width:10.585440px;}
._c{width:11.824560px;}
._d{width:12.886320px;}
._14{width:13.891680px;}
._10{width:16.800480px;}
._13{width:18.321120px;}
._17{width:19.739520px;}
._8{width:25.577280px;}
._15{width:34.429680px;}
._16{width:35.501760px;}
.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);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y52{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y57{bottom:3.960000px;}
.y1c{bottom:4.860000px;}
.ye{bottom:9.540000px;}
.y55{bottom:10.620000px;}
.y1e{bottom:12.420000px;}
.y106{bottom:13.500000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.316000px;}
.yfa{bottom:17.640000px;}
.y2{bottom:20.196000px;}
.y51{bottom:20.340000px;}
.yd2{bottom:20.520000px;}
.y56{bottom:22.320000px;}
.y54{bottom:25.380000px;}
.y1b{bottom:25.560000px;}
.yb{bottom:30.240000px;}
.y5{bottom:31.680000px;}
.y50{bottom:37.620000px;}
.y1a{bottom:45.720000px;}
.ya{bottom:46.440000px;}
.y1{bottom:54.180000px;}
.y4f{bottom:54.900000px;}
.y19{bottom:58.500000px;}
.y4e{bottom:72.180000px;}
.y9{bottom:73.440000px;}
.y18{bottom:78.840000px;}
.y4d{bottom:89.460000px;}
.y17{bottom:91.440000px;}
.y8{bottom:93.060000px;}
.y95{bottom:98.316000px;}
.y58{bottom:100.656000px;}
.yd0{bottom:102.996000px;}
.y4c{bottom:106.740000px;}
.y109{bottom:107.136000px;}
.y7{bottom:111.270000px;}
.y16{bottom:111.825000px;}
.y53{bottom:114.696000px;}
.y94{bottom:115.596000px;}
.y129{bottom:116.856000px;}
.ycf{bottom:120.276000px;}
.y133{bottom:122.976000px;}
.y4b{bottom:123.840000px;}
.y108{bottom:125.136000px;}
.y15{bottom:127.485000px;}
.y93{bottom:132.696000px;}
.y128{bottom:134.136000px;}
.yce{bottom:137.556000px;}
.y14{bottom:137.925000px;}
.y132{bottom:140.256000px;}
.y4a{bottom:141.120000px;}
.y107{bottom:143.136000px;}
.y92{bottom:149.976000px;}
.y1f{bottom:151.410000px;}
.ycd{bottom:154.830000px;}
.y13{bottom:156.285000px;}
.y131{bottom:157.530000px;}
.y49{bottom:158.400000px;}
.y105{bottom:161.130000px;}
.y91{bottom:168.330000px;}
.y127{bottom:168.690000px;}
.ycc{bottom:171.930000px;}
.y130{bottom:174.810000px;}
.y12{bottom:175.365000px;}
.y48{bottom:175.680000px;}
.y126{bottom:185.970000px;}
.y90{bottom:186.690000px;}
.ycb{bottom:189.210000px;}
.y12f{bottom:192.090000px;}
.y104{bottom:192.630000px;}
.y47{bottom:193.005000px;}
.y11{bottom:201.105000px;}
.y125{bottom:203.070000px;}
.yca{bottom:203.970000px;}
.y8f{bottom:205.050000px;}
.y12e{bottom:209.370000px;}
.y103{bottom:209.910000px;}
.y46{bottom:210.285000px;}
.y124{bottom:220.350000px;}
.yc9{bottom:221.970000px;}
.y8e{bottom:223.230000px;}
.y10{bottom:225.405000px;}
.y12d{bottom:226.470000px;}
.y102{bottom:227.190000px;}
.y45{bottom:227.385000px;}
.y123{bottom:237.630000px;}
.yc8{bottom:239.970000px;}
.y8d{bottom:240.510000px;}
.y12c{bottom:243.750000px;}
.y101{bottom:244.470000px;}
.y44{bottom:244.665000px;}
.y122{bottom:254.910000px;}
.yc7{bottom:257.970000px;}
.y8c{bottom:258.870000px;}
.y12b{bottom:261.030000px;}
.y100{bottom:261.570000px;}
.y43{bottom:261.945000px;}
.y121{bottom:272.190000px;}
.yc6{bottom:275.970000px;}
.y8b{bottom:277.230000px;}
.y12a{bottom:278.310000px;}
.yff{bottom:278.850000px;}
.y42{bottom:279.225000px;}
.y30{bottom:287.325000px;}
.y120{bottom:289.290000px;}
.yfe{bottom:293.610000px;}
.y8a{bottom:295.590000px;}
.y41{bottom:296.505000px;}
.yc5{bottom:297.210000px;}
.y2f{bottom:302.625000px;}
.y11f{bottom:306.570000px;}
.yfd{bottom:311.610000px;}
.y89{bottom:312.870000px;}
.y40{bottom:313.605000px;}
.yc4{bottom:314.490000px;}
.y2e{bottom:320.265000px;}
.y11e{bottom:323.850000px;}
.yfc{bottom:329.610000px;}
.y88{bottom:329.970000px;}
.y3f{bottom:330.885000px;}
.yc3{bottom:331.770000px;}
.y2d{bottom:337.545000px;}
.y11d{bottom:341.175000px;}
.y87{bottom:347.295000px;}
.yfb{bottom:347.655000px;}
.y3e{bottom:348.165000px;}
.yc2{bottom:349.095000px;}
.y2c{bottom:354.645000px;}
.y11c{bottom:358.455000px;}
.y86{bottom:364.575000px;}
.y3d{bottom:365.445000px;}
.yf9{bottom:365.655000px;}
.yc1{bottom:366.195000px;}
.y2b{bottom:372.465000px;}
.y11b{bottom:375.735000px;}
.y85{bottom:381.855000px;}
.y3c{bottom:382.725000px;}
.yc0{bottom:383.475000px;}
.y2a{bottom:389.205000px;}
.y11a{bottom:392.835000px;}
.y84{bottom:399.135000px;}
.y3b{bottom:400.005000px;}
.ybf{bottom:400.755000px;}
.yf8{bottom:401.295000px;}
.y29{bottom:405.585000px;}
.y119{bottom:410.115000px;}
.ybe{bottom:415.515000px;}
.y83{bottom:416.415000px;}
.y3a{bottom:417.105000px;}
.yf7{bottom:418.575000px;}
.y28{bottom:422.685000px;}
.y118{bottom:427.395000px;}
.y82{bottom:433.515000px;}
.y39{bottom:434.385000px;}
.yf6{bottom:435.855000px;}
.y27{bottom:440.145000px;}
.y117{bottom:444.675000px;}
.y81{bottom:450.795000px;}
.ybd{bottom:451.515000px;}
.y38{bottom:451.665000px;}
.yf5{bottom:453.135000px;}
.y26{bottom:457.455000px;}
.y116{bottom:461.955000px;}
.y80{bottom:468.075000px;}
.y37{bottom:468.975000px;}
.ybc{bottom:469.515000px;}
.yf4{bottom:470.235000px;}
.y25{bottom:474.915000px;}
.y115{bottom:479.235000px;}
.y7f{bottom:485.355000px;}
.y36{bottom:486.255000px;}
.yf3{bottom:487.515000px;}
.ybb{bottom:490.755000px;}
.y24{bottom:492.195000px;}
.y114{bottom:496.335000px;}
.yf2{bottom:502.275000px;}
.y7e{bottom:502.635000px;}
.y35{bottom:503.535000px;}
.yba{bottom:508.035000px;}
.y23{bottom:509.655000px;}
.y113{bottom:513.615000px;}
.y7d{bottom:519.735000px;}
.yf1{bottom:520.275000px;}
.y34{bottom:520.635000px;}
.yb9{bottom:525.315000px;}
.y22{bottom:529.995000px;}
.y112{bottom:530.895000px;}
.y7c{bottom:537.015000px;}
.y33{bottom:537.915000px;}
.yf0{bottom:538.275000px;}
.yb8{bottom:542.595000px;}
.y111{bottom:548.175000px;}
.y7b{bottom:554.295000px;}
.y32{bottom:555.195000px;}
.yef{bottom:556.275000px;}
.y21{bottom:557.355000px;}
.yb7{bottom:559.695000px;}
.y110{bottom:565.455000px;}
.y7a{bottom:571.575000px;}
.y31{bottom:572.475000px;}
.y20{bottom:575.175000px;}
.yb6{bottom:576.975000px;}
.y10f{bottom:579.315000px;}
.y79{bottom:588.855000px;}
.yb5{bottom:594.255000px;}
.yee{bottom:594.795000px;}
.y78{bottom:606.165000px;}
.yb4{bottom:609.045000px;}
.yed{bottom:612.105000px;}
.y77{bottom:623.265000px;}
.yb3{bottom:627.045000px;}
.yec{bottom:629.385000px;}
.y76{bottom:640.545000px;}
.yb2{bottom:645.045000px;}
.yeb{bottom:646.665000px;}
.y75{bottom:657.825000px;}
.yb1{bottom:663.045000px;}
.yea{bottom:663.765000px;}
.y74{bottom:675.105000px;}
.ye9{bottom:678.525000px;}
.yb0{bottom:681.045000px;}
.y73{bottom:692.385000px;}
.ye8{bottom:696.525000px;}
.yaf{bottom:699.045000px;}
.y72{bottom:709.665000px;}
.ye7{bottom:714.525000px;}
.yae{bottom:717.045000px;}
.y71{bottom:726.765000px;}
.ye6{bottom:732.525000px;}
.yad{bottom:735.045000px;}
.y1d{bottom:737.925000px;}
.y70{bottom:744.045000px;}
.yac{bottom:753.045000px;}
.y6f{bottom:761.325000px;}
.yf{bottom:767.445000px;}
.ye5{bottom:771.045000px;}
.yab{bottom:774.285000px;}
.y6e{bottom:778.605000px;}
.ye4{bottom:788.325000px;}
.yaa{bottom:791.565000px;}
.y6d{bottom:795.885000px;}
.ye3{bottom:805.605000px;}
.ya9{bottom:808.845000px;}
.y6c{bottom:812.985000px;}
.ye2{bottom:822.885000px;}
.ya8{bottom:825.945000px;}
.y6b{bottom:830.265000px;}
.ye1{bottom:839.985000px;}
.ya7{bottom:843.225000px;}
.y6a{bottom:847.545000px;}
.ye0{bottom:857.265000px;}
.ya6{bottom:860.505000px;}
.y69{bottom:864.825000px;}
.ydf{bottom:872.070000px;}
.ya5{bottom:877.830000px;}
.y68{bottom:882.150000px;}
.yde{bottom:890.070000px;}
.ya4{bottom:895.110000px;}
.y67{bottom:899.430000px;}
.ydd{bottom:908.070000px;}
.ya3{bottom:912.390000px;}
.y66{bottom:916.530000px;}
.ydc{bottom:929.310000px;}
.ya2{bottom:929.490000px;}
.y65{bottom:933.810000px;}
.ydb{bottom:946.590000px;}
.ya1{bottom:946.770000px;}
.y64{bottom:951.090000px;}
.yda{bottom:963.870000px;}
.ya0{bottom:964.050000px;}
.y63{bottom:968.370000px;}
.yd9{bottom:981.150000px;}
.y9f{bottom:981.330000px;}
.y62{bottom:985.650000px;}
.yd8{bottom:998.430000px;}
.y9e{bottom:998.610000px;}
.y61{bottom:1002.930000px;}
.yd{bottom:1007.970000px;}
.y10e{bottom:1014.630000px;}
.yd7{bottom:1015.530000px;}
.y9d{bottom:1015.710000px;}
.y60{bottom:1020.030000px;}
.yd6{bottom:1030.290000px;}
.y10d{bottom:1031.910000px;}
.y9c{bottom:1032.990000px;}
.y6{bottom:1033.350000px;}
.y5f{bottom:1037.310000px;}
.yd5{bottom:1048.290000px;}
.y9b{bottom:1050.270000px;}
.y5e{bottom:1054.590000px;}
.yd4{bottom:1066.290000px;}
.y9a{bottom:1067.550000px;}
.y10c{bottom:1068.630000px;}
.y5d{bottom:1071.870000px;}
.yd3{bottom:1084.290000px;}
.y99{bottom:1084.830000px;}
.y10b{bottom:1086.990000px;}
.y5c{bottom:1089.150000px;}
.yd1{bottom:1102.290000px;}
.y98{bottom:1103.190000px;}
.y10a{bottom:1105.350000px;}
.y5b{bottom:1106.430000px;}
.y97{bottom:1121.370000px;}
.y5a{bottom:1123.530000px;}
.y96{bottom:1139.760000px;}
.y59{bottom:1140.840000px;}
.h26{height:17.100000px;}
.h21{height:17.280000px;}
.h24{height:17.316000px;}
.hb{height:25.020000px;}
.h25{height:27.540000px;}
.h12{height:28.968750px;}
.h13{height:29.520000px;}
.h23{height:31.680000px;}
.h2{height:32.976000px;}
.h22{height:34.560000px;}
.h11{height:35.806641px;}
.h8{height:36.180000px;}
.h1e{height:36.720000px;}
.h1b{height:38.818125px;}
.h18{height:41.576836px;}
.h1d{height:41.726953px;}
.h1c{height:42.164648px;}
.h4{height:43.453125px;}
.h20{height:43.506914px;}
.h1a{height:43.681992px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h19{height:45.770625px;}
.h16{height:47.980898px;}
.h1f{height:48.088125px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:240.510000px;}
.h15{height:586.515000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w23{width:72.360000px;}
.w3{width:73.080000px;}
.w19{width:76.320000px;}
.w1d{width:86.076000px;}
.w14{width:95.940000px;}
.w1b{width:105.156000px;}
.w28{width:113.760000px;}
.w25{width:114.120000px;}
.w1c{width:115.920000px;}
.w26{width:116.136000px;}
.w12{width:120.096000px;}
.w20{width:124.560000px;}
.w18{width:126.216000px;}
.w27{width:129.276000px;}
.w1a{width:141.876000px;}
.w2c{width:142.020000px;}
.w11{width:144.540000px;}
.we{width:144.576000px;}
.wc{width:147.420000px;}
.w13{width:147.636000px;}
.w22{width:149.436000px;}
.w5{width:151.950000px;}
.w17{width:167.970000px;}
.wd{width:173.730000px;}
.w16{width:174.810000px;}
.w15{width:181.110000px;}
.w21{width:184.170000px;}
.w2a{width:191.190000px;}
.w1f{width:196.275000px;}
.wb{width:214.275000px;}
.w10{width:218.415000px;}
.w2b{width:219.855000px;}
.w8{width:223.455000px;}
.w24{width:253.155000px;}
.wf{width:264.630000px;}
.w1e{width:277.590000px;}
.w29{width:345.495000px;}
.wa{width:366.375000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.560000px;}
.x2{left:8.676000px;}
.x13{left:12.600000px;}
.xb{left:15.516000px;}
.x10{left:20.916000px;}
.xe{left:26.676000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x39{left:108.035987px;}
.x2d{left:161.489987px;}
.xd{left:170.670000px;}
.x14{left:184.529987px;}
.x21{left:201.809987px;}
.x11{left:215.175000px;}
.x1c{left:217.829987px;}
.x33{left:220.889987px;}
.x26{left:224.310000px;}
.x18{left:227.909987px;}
.x5{left:232.950000px;}
.xf{left:239.115000px;}
.x19{left:256.170000px;}
.x29{left:261.569987px;}
.x22{left:263.550000px;}
.x25{left:264.809987px;}
.x8{left:272.235000px;}
.x2a{left:278.715000px;}
.x1d{left:300.855000px;}
.x34{left:302.295000px;}
.x12{left:304.455000px;}
.xc{left:327.855000px;}
.x27{left:330.195000px;}
.x6{left:331.995000px;}
.x2e{left:335.595000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x38{left:396.074987px;}
.x1a{left:401.475000px;}
.x2b{left:403.995000px;}
.x31{left:428.115000px;}
.x9{left:439.500000px;}
.x35{left:445.035000px;}
.x1e{left:446.115000px;}
.x15{left:448.815000px;}
.x2f{left:450.615000px;}
.x28{left:533.805000px;}
.x1b{left:546.765000px;}
.x1f{left:567.105000px;}
.x2c{left:588.885000px;}
.x23{left:608.145000px;}
.x32{left:620.205000px;}
.x16{left:663.990000px;}
.x36{left:669.390000px;}
.x30{left:697.650000px;}
.x20{left:715.470000px;}
.x24{left:735.090000px;}
.x3{left:739.050000px;}
.x37{left:753.989987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.lsc{letter-spacing:0.183680pt;}
.ls2{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.lse{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls10{letter-spacing:14.672640pt;}
.lsa{letter-spacing:40.912640pt;}
.lsb{letter-spacing:57.040640pt;}
.wsb{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.wsc{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._e{margin-left:-7.118080pt;}
._12{margin-left:-6.148693pt;}
._4{margin-left:-4.940160pt;}
._11{margin-left:-3.866027pt;}
._2{margin-left:-2.778667pt;}
._3{margin-left:-1.863893pt;}
._0{margin-left:-0.965333pt;}
._1{width:0.896000pt;}
._7{width:2.028800pt;}
._a{width:3.334827pt;}
._6{width:4.993280pt;}
._5{width:5.909120pt;}
._f{width:7.218560pt;}
._b{width:8.309333pt;}
._9{width:9.409280pt;}
._c{width:10.510720pt;}
._d{width:11.454507pt;}
._14{width:12.348160pt;}
._10{width:14.933760pt;}
._13{width:16.285440pt;}
._17{width:17.546240pt;}
._8{width:22.735360pt;}
._15{width:30.604160pt;}
._16{width:31.557120pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y57{bottom:3.520000pt;}
.y1c{bottom:4.320000pt;}
.ye{bottom:8.480000pt;}
.y55{bottom:9.440000pt;}
.y1e{bottom:11.040000pt;}
.y106{bottom:12.000000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.392000pt;}
.yfa{bottom:15.680000pt;}
.y2{bottom:17.952000pt;}
.y51{bottom:18.080000pt;}
.yd2{bottom:18.240000pt;}
.y56{bottom:19.840000pt;}
.y54{bottom:22.560000pt;}
.y1b{bottom:22.720000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:28.160000pt;}
.y50{bottom:33.440000pt;}
.y1a{bottom:40.640000pt;}
.ya{bottom:41.280000pt;}
.y1{bottom:48.160000pt;}
.y4f{bottom:48.800000pt;}
.y19{bottom:52.000000pt;}
.y4e{bottom:64.160000pt;}
.y9{bottom:65.280000pt;}
.y18{bottom:70.080000pt;}
.y4d{bottom:79.520000pt;}
.y17{bottom:81.280000pt;}
.y8{bottom:82.720000pt;}
.y95{bottom:87.392000pt;}
.y58{bottom:89.472000pt;}
.yd0{bottom:91.552000pt;}
.y4c{bottom:94.880000pt;}
.y109{bottom:95.232000pt;}
.y7{bottom:98.906667pt;}
.y16{bottom:99.400000pt;}
.y53{bottom:101.952000pt;}
.y94{bottom:102.752000pt;}
.y129{bottom:103.872000pt;}
.ycf{bottom:106.912000pt;}
.y133{bottom:109.312000pt;}
.y4b{bottom:110.080000pt;}
.y108{bottom:111.232000pt;}
.y15{bottom:113.320000pt;}
.y93{bottom:117.952000pt;}
.y128{bottom:119.232000pt;}
.yce{bottom:122.272000pt;}
.y14{bottom:122.600000pt;}
.y132{bottom:124.672000pt;}
.y4a{bottom:125.440000pt;}
.y107{bottom:127.232000pt;}
.y92{bottom:133.312000pt;}
.y1f{bottom:134.586667pt;}
.ycd{bottom:137.626667pt;}
.y13{bottom:138.920000pt;}
.y131{bottom:140.026667pt;}
.y49{bottom:140.800000pt;}
.y105{bottom:143.226667pt;}
.y91{bottom:149.626667pt;}
.y127{bottom:149.946667pt;}
.ycc{bottom:152.826667pt;}
.y130{bottom:155.386667pt;}
.y12{bottom:155.880000pt;}
.y48{bottom:156.160000pt;}
.y126{bottom:165.306667pt;}
.y90{bottom:165.946667pt;}
.ycb{bottom:168.186667pt;}
.y12f{bottom:170.746667pt;}
.y104{bottom:171.226667pt;}
.y47{bottom:171.560000pt;}
.y11{bottom:178.760000pt;}
.y125{bottom:180.506667pt;}
.yca{bottom:181.306667pt;}
.y8f{bottom:182.266667pt;}
.y12e{bottom:186.106667pt;}
.y103{bottom:186.586667pt;}
.y46{bottom:186.920000pt;}
.y124{bottom:195.866667pt;}
.yc9{bottom:197.306667pt;}
.y8e{bottom:198.426667pt;}
.y10{bottom:200.360000pt;}
.y12d{bottom:201.306667pt;}
.y102{bottom:201.946667pt;}
.y45{bottom:202.120000pt;}
.y123{bottom:211.226667pt;}
.yc8{bottom:213.306667pt;}
.y8d{bottom:213.786667pt;}
.y12c{bottom:216.666667pt;}
.y101{bottom:217.306667pt;}
.y44{bottom:217.480000pt;}
.y122{bottom:226.586667pt;}
.yc7{bottom:229.306667pt;}
.y8c{bottom:230.106667pt;}
.y12b{bottom:232.026667pt;}
.y100{bottom:232.506667pt;}
.y43{bottom:232.840000pt;}
.y121{bottom:241.946667pt;}
.yc6{bottom:245.306667pt;}
.y8b{bottom:246.426667pt;}
.y12a{bottom:247.386667pt;}
.yff{bottom:247.866667pt;}
.y42{bottom:248.200000pt;}
.y30{bottom:255.400000pt;}
.y120{bottom:257.146667pt;}
.yfe{bottom:260.986667pt;}
.y8a{bottom:262.746667pt;}
.y41{bottom:263.560000pt;}
.yc5{bottom:264.186667pt;}
.y2f{bottom:269.000000pt;}
.y11f{bottom:272.506667pt;}
.yfd{bottom:276.986667pt;}
.y89{bottom:278.106667pt;}
.y40{bottom:278.760000pt;}
.yc4{bottom:279.546667pt;}
.y2e{bottom:284.680000pt;}
.y11e{bottom:287.866667pt;}
.yfc{bottom:292.986667pt;}
.y88{bottom:293.306667pt;}
.y3f{bottom:294.120000pt;}
.yc3{bottom:294.906667pt;}
.y2d{bottom:300.040000pt;}
.y11d{bottom:303.266667pt;}
.y87{bottom:308.706667pt;}
.yfb{bottom:309.026667pt;}
.y3e{bottom:309.480000pt;}
.yc2{bottom:310.306667pt;}
.y2c{bottom:315.240000pt;}
.y11c{bottom:318.626667pt;}
.y86{bottom:324.066667pt;}
.y3d{bottom:324.840000pt;}
.yf9{bottom:325.026667pt;}
.yc1{bottom:325.506667pt;}
.y2b{bottom:331.080000pt;}
.y11b{bottom:333.986667pt;}
.y85{bottom:339.426667pt;}
.y3c{bottom:340.200000pt;}
.yc0{bottom:340.866667pt;}
.y2a{bottom:345.960000pt;}
.y11a{bottom:349.186667pt;}
.y84{bottom:354.786667pt;}
.y3b{bottom:355.560000pt;}
.ybf{bottom:356.226667pt;}
.yf8{bottom:356.706667pt;}
.y29{bottom:360.520000pt;}
.y119{bottom:364.546667pt;}
.ybe{bottom:369.346667pt;}
.y83{bottom:370.146667pt;}
.y3a{bottom:370.760000pt;}
.yf7{bottom:372.066667pt;}
.y28{bottom:375.720000pt;}
.y118{bottom:379.906667pt;}
.y82{bottom:385.346667pt;}
.y39{bottom:386.120000pt;}
.yf6{bottom:387.426667pt;}
.y27{bottom:391.240000pt;}
.y117{bottom:395.266667pt;}
.y81{bottom:400.706667pt;}
.ybd{bottom:401.346667pt;}
.y38{bottom:401.480000pt;}
.yf5{bottom:402.786667pt;}
.y26{bottom:406.626667pt;}
.y116{bottom:410.626667pt;}
.y80{bottom:416.066667pt;}
.y37{bottom:416.866667pt;}
.ybc{bottom:417.346667pt;}
.yf4{bottom:417.986667pt;}
.y25{bottom:422.146667pt;}
.y115{bottom:425.986667pt;}
.y7f{bottom:431.426667pt;}
.y36{bottom:432.226667pt;}
.yf3{bottom:433.346667pt;}
.ybb{bottom:436.226667pt;}
.y24{bottom:437.506667pt;}
.y114{bottom:441.186667pt;}
.yf2{bottom:446.466667pt;}
.y7e{bottom:446.786667pt;}
.y35{bottom:447.586667pt;}
.yba{bottom:451.586667pt;}
.y23{bottom:453.026667pt;}
.y113{bottom:456.546667pt;}
.y7d{bottom:461.986667pt;}
.yf1{bottom:462.466667pt;}
.y34{bottom:462.786667pt;}
.yb9{bottom:466.946667pt;}
.y22{bottom:471.106667pt;}
.y112{bottom:471.906667pt;}
.y7c{bottom:477.346667pt;}
.y33{bottom:478.146667pt;}
.yf0{bottom:478.466667pt;}
.yb8{bottom:482.306667pt;}
.y111{bottom:487.266667pt;}
.y7b{bottom:492.706667pt;}
.y32{bottom:493.506667pt;}
.yef{bottom:494.466667pt;}
.y21{bottom:495.426667pt;}
.yb7{bottom:497.506667pt;}
.y110{bottom:502.626667pt;}
.y7a{bottom:508.066667pt;}
.y31{bottom:508.866667pt;}
.y20{bottom:511.266667pt;}
.yb6{bottom:512.866667pt;}
.y10f{bottom:514.946667pt;}
.y79{bottom:523.426667pt;}
.yb5{bottom:528.226667pt;}
.yee{bottom:528.706667pt;}
.y78{bottom:538.813333pt;}
.yb4{bottom:541.373333pt;}
.yed{bottom:544.093333pt;}
.y77{bottom:554.013333pt;}
.yb3{bottom:557.373333pt;}
.yec{bottom:559.453333pt;}
.y76{bottom:569.373333pt;}
.yb2{bottom:573.373333pt;}
.yeb{bottom:574.813333pt;}
.y75{bottom:584.733333pt;}
.yb1{bottom:589.373333pt;}
.yea{bottom:590.013333pt;}
.y74{bottom:600.093333pt;}
.ye9{bottom:603.133333pt;}
.yb0{bottom:605.373333pt;}
.y73{bottom:615.453333pt;}
.ye8{bottom:619.133333pt;}
.yaf{bottom:621.373333pt;}
.y72{bottom:630.813333pt;}
.ye7{bottom:635.133333pt;}
.yae{bottom:637.373333pt;}
.y71{bottom:646.013333pt;}
.ye6{bottom:651.133333pt;}
.yad{bottom:653.373333pt;}
.y1d{bottom:655.933333pt;}
.y70{bottom:661.373333pt;}
.yac{bottom:669.373333pt;}
.y6f{bottom:676.733333pt;}
.yf{bottom:682.173333pt;}
.ye5{bottom:685.373333pt;}
.yab{bottom:688.253333pt;}
.y6e{bottom:692.093333pt;}
.ye4{bottom:700.733333pt;}
.yaa{bottom:703.613333pt;}
.y6d{bottom:707.453333pt;}
.ye3{bottom:716.093333pt;}
.ya9{bottom:718.973333pt;}
.y6c{bottom:722.653333pt;}
.ye2{bottom:731.453333pt;}
.ya8{bottom:734.173333pt;}
.y6b{bottom:738.013333pt;}
.ye1{bottom:746.653333pt;}
.ya7{bottom:749.533333pt;}
.y6a{bottom:753.373333pt;}
.ye0{bottom:762.013333pt;}
.ya6{bottom:764.893333pt;}
.y69{bottom:768.733333pt;}
.ydf{bottom:775.173333pt;}
.ya5{bottom:780.293333pt;}
.y68{bottom:784.133333pt;}
.yde{bottom:791.173333pt;}
.ya4{bottom:795.653333pt;}
.y67{bottom:799.493333pt;}
.ydd{bottom:807.173333pt;}
.ya3{bottom:811.013333pt;}
.y66{bottom:814.693333pt;}
.ydc{bottom:826.053333pt;}
.ya2{bottom:826.213333pt;}
.y65{bottom:830.053333pt;}
.ydb{bottom:841.413333pt;}
.ya1{bottom:841.573333pt;}
.y64{bottom:845.413333pt;}
.yda{bottom:856.773333pt;}
.ya0{bottom:856.933333pt;}
.y63{bottom:860.773333pt;}
.yd9{bottom:872.133333pt;}
.y9f{bottom:872.293333pt;}
.y62{bottom:876.133333pt;}
.yd8{bottom:887.493333pt;}
.y9e{bottom:887.653333pt;}
.y61{bottom:891.493333pt;}
.yd{bottom:895.973333pt;}
.y10e{bottom:901.893333pt;}
.yd7{bottom:902.693333pt;}
.y9d{bottom:902.853333pt;}
.y60{bottom:906.693333pt;}
.yd6{bottom:915.813333pt;}
.y10d{bottom:917.253333pt;}
.y9c{bottom:918.213333pt;}
.y6{bottom:918.533333pt;}
.y5f{bottom:922.053333pt;}
.yd5{bottom:931.813333pt;}
.y9b{bottom:933.573333pt;}
.y5e{bottom:937.413333pt;}
.yd4{bottom:947.813333pt;}
.y9a{bottom:948.933333pt;}
.y10c{bottom:949.893333pt;}
.y5d{bottom:952.773333pt;}
.yd3{bottom:963.813333pt;}
.y99{bottom:964.293333pt;}
.y10b{bottom:966.213333pt;}
.y5c{bottom:968.133333pt;}
.yd1{bottom:979.813333pt;}
.y98{bottom:980.613333pt;}
.y10a{bottom:982.533333pt;}
.y5b{bottom:983.493333pt;}
.y97{bottom:996.773333pt;}
.y5a{bottom:998.693333pt;}
.y96{bottom:1013.120000pt;}
.y59{bottom:1014.080000pt;}
.h26{height:15.200000pt;}
.h21{height:15.360000pt;}
.h24{height:15.392000pt;}
.hb{height:22.240000pt;}
.h25{height:24.480000pt;}
.h12{height:25.750000pt;}
.h13{height:26.240000pt;}
.h23{height:28.160000pt;}
.h2{height:29.312000pt;}
.h22{height:30.720000pt;}
.h11{height:31.828125pt;}
.h8{height:32.160000pt;}
.h1e{height:32.640000pt;}
.h1b{height:34.505000pt;}
.h18{height:36.957187pt;}
.h1d{height:37.090625pt;}
.h1c{height:37.479688pt;}
.h4{height:38.625000pt;}
.h20{height:38.672812pt;}
.h1a{height:38.828437pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h19{height:40.685000pt;}
.h16{height:42.649687pt;}
.h1f{height:42.745000pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:213.786667pt;}
.h15{height:521.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w23{width:64.320000pt;}
.w3{width:64.960000pt;}
.w19{width:67.840000pt;}
.w1d{width:76.512000pt;}
.w14{width:85.280000pt;}
.w1b{width:93.472000pt;}
.w28{width:101.120000pt;}
.w25{width:101.440000pt;}
.w1c{width:103.040000pt;}
.w26{width:103.232000pt;}
.w12{width:106.752000pt;}
.w20{width:110.720000pt;}
.w18{width:112.192000pt;}
.w27{width:114.912000pt;}
.w1a{width:126.112000pt;}
.w2c{width:126.240000pt;}
.w11{width:128.480000pt;}
.we{width:128.512000pt;}
.wc{width:131.040000pt;}
.w13{width:131.232000pt;}
.w22{width:132.832000pt;}
.w5{width:135.066667pt;}
.w17{width:149.306667pt;}
.wd{width:154.426667pt;}
.w16{width:155.386667pt;}
.w15{width:160.986667pt;}
.w21{width:163.706667pt;}
.w2a{width:169.946667pt;}
.w1f{width:174.466667pt;}
.wb{width:190.466667pt;}
.w10{width:194.146667pt;}
.w2b{width:195.426667pt;}
.w8{width:198.626667pt;}
.w24{width:225.026667pt;}
.wf{width:235.226667pt;}
.w1e{width:246.746667pt;}
.w29{width:307.106667pt;}
.wa{width:325.666667pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.720000pt;}
.x2{left:7.712000pt;}
.x13{left:11.200000pt;}
.xb{left:13.792000pt;}
.x10{left:18.592000pt;}
.xe{left:23.712000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x39{left:96.031988pt;}
.x2d{left:143.546655pt;}
.xd{left:151.706667pt;}
.x14{left:164.026655pt;}
.x21{left:179.386655pt;}
.x11{left:191.266667pt;}
.x1c{left:193.626655pt;}
.x33{left:196.346655pt;}
.x26{left:199.386667pt;}
.x18{left:202.586655pt;}
.x5{left:207.066667pt;}
.xf{left:212.546667pt;}
.x19{left:227.706667pt;}
.x29{left:232.506655pt;}
.x22{left:234.266667pt;}
.x25{left:235.386655pt;}
.x8{left:241.986667pt;}
.x2a{left:247.746667pt;}
.x1d{left:267.426667pt;}
.x34{left:268.706667pt;}
.x12{left:270.626667pt;}
.xc{left:291.426667pt;}
.x27{left:293.506667pt;}
.x6{left:295.106667pt;}
.x2e{left:298.306667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x38{left:352.066655pt;}
.x1a{left:356.866667pt;}
.x2b{left:359.106667pt;}
.x31{left:380.546667pt;}
.x9{left:390.666667pt;}
.x35{left:395.586667pt;}
.x1e{left:396.546667pt;}
.x15{left:398.946667pt;}
.x2f{left:400.546667pt;}
.x28{left:474.493333pt;}
.x1b{left:486.013333pt;}
.x1f{left:504.093333pt;}
.x2c{left:523.453333pt;}
.x23{left:540.573333pt;}
.x32{left:551.293333pt;}
.x16{left:590.213333pt;}
.x36{left:595.013333pt;}
.x30{left:620.133333pt;}
.x20{left:635.973333pt;}
.x24{left:653.413333pt;}
.x3{left:656.933333pt;}
.x37{left:670.213322pt;}
}




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