
    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_db9a3469ccd0d65be638e0ef.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_a312fbdd6f5f059abb3d18bd.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_9b337644e1f9186992cb6850.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_6acb63b3b977a96624bb1ca2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f0fdf2fec2179b70abfc3c04.woff2')format("woff");}.ff5{font-family:ff5;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: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_a897018ac87a27b232bd89d2.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_d2621b937987f48a88a8862d.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_1297f1671341eaf4f9b8da32.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_05282486801dfeadc7ead581.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.923340;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_4d3afd8c7d9744aba0af6e8c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_2bf92f835b222385f6dacd82.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_0208e20d53621c5ba7fced54.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_7eeed10f74d7b251ace06655.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_6193fc93719873dbca485474.woff2')format("woff");}.ff10{font-family:ff10;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;}
.m2{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);}
.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;}
.lsf{letter-spacing:-0.648000px;}
.lsd{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.091200px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls13{letter-spacing:0.052980px;}
.lsc{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.066240px;}
.lse{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.lsa{letter-spacing:0.206400px;}
.ls2{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls7{letter-spacing:5.940000px;}
.lsb{letter-spacing:6.660000px;}
.ls15{letter-spacing:16.506720px;}
.ls11{letter-spacing:36.028992px;}
.ls14{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;}
}
.ws4{word-spacing:-84.240000px;}
.ws0{word-spacing:-54.000000px;}
.ws15{word-spacing:-48.265536px;}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.ws7{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.146400px;}
.wse{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.292000px;}
.ws18{word-spacing:-13.538304px;}
.ws9{word-spacing:-13.505760px;}
.ws17{word-spacing:-12.289524px;}
.ws1{word-spacing:-12.186000px;}
.ws16{word-spacing:-12.145344px;}
.wsa{word-spacing:-9.720000px;}
.ws5{word-spacing:-8.786880px;}
.ws6{word-spacing:-8.136000px;}
.ws14{word-spacing:-1.938000px;}
.ws13{word-spacing:-1.686000px;}
.wsc{word-spacing:0.000000px;}
.ws12{word-spacing:25.638000px;}
.ws10{word-spacing:87.648000px;}
.ws19{word-spacing:133.728000px;}
.ws11{word-spacing:134.148000px;}
.ws1a{word-spacing:336.648000px;}
._14{margin-left:-13.440000px;}
._d{margin-left:-5.532720px;}
._4{margin-left:-4.144080px;}
._3{margin-left:-2.262000px;}
._0{margin-left:-1.080000px;}
._1{width:1.038000px;}
._5{width:2.694000px;}
._f{width:3.728400px;}
._2{width:4.764000px;}
._c{width:6.768960px;}
._a{width:8.290560px;}
._b{width:9.299520px;}
._9{width:11.062800px;}
._6{width:12.191040px;}
._e{width:13.591440px;}
._19{width:16.012800px;}
._17{width:17.055360px;}
._8{width:23.286480px;}
._7{width:24.621120px;}
._18{width:41.570880px;}
._10{width:90.840000px;}
._15{width:104.214000px;}
._1b{width:117.402000px;}
._11{width:132.774000px;}
._1a{width:145.962000px;}
._13{width:186.900000px;}
._16{width:362.514000px;}
._12{width:578.668320px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc6{color:rgb(89,89,89);}
.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;}
.fs9{font-size:54.144000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fsa{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fsb{font-size:84.384000px;}
.y0{bottom:0.000000px;}
.y43{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y1a{bottom:7.380000px;}
.ye{bottom:9.540000px;}
.y1c{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y46{bottom:14.940000px;}
.y4{bottom:17.316000px;}
.ye7{bottom:17.604000px;}
.ya6{bottom:17.670000px;}
.ycc{bottom:17.715000px;}
.yd7{bottom:17.745000px;}
.y45{bottom:17.820000px;}
.y2{bottom:20.016000px;}
.y42{bottom:20.520000px;}
.y19{bottom:23.940000px;}
.yb{bottom:30.240000px;}
.yd3{bottom:36.645000px;}
.y41{bottom:37.800000px;}
.y18{bottom:40.545000px;}
.y5{bottom:41.400000px;}
.ya{bottom:46.440000px;}
.y40{bottom:55.080000px;}
.ye5{bottom:56.880000px;}
.y17{bottom:56.925000px;}
.ya4{bottom:56.955000px;}
.yae{bottom:56.985000px;}
.yca{bottom:57.030000px;}
.yd5{bottom:57.060000px;}
.y1{bottom:62.460000px;}
.y10d{bottom:70.230000px;}
.y3f{bottom:72.360000px;}
.y9{bottom:73.440000px;}
.y16{bottom:73.485000px;}
.yd4{bottom:74.445000px;}
.ye3{bottom:79.305000px;}
.ya2{bottom:79.380000px;}
.yac{bottom:79.410000px;}
.yc8{bottom:79.455000px;}
.yd2{bottom:79.485000px;}
.ydc{bottom:81.645000px;}
.yc9{bottom:82.110000px;}
.y15{bottom:89.145000px;}
.y3e{bottom:89.460000px;}
.ye4{bottom:91.260000px;}
.yb5{bottom:92.265000px;}
.y8{bottom:93.090000px;}
.ydf{bottom:96.870000px;}
.y9e{bottom:96.945000px;}
.yc3{bottom:96.990000px;}
.yce{bottom:97.020000px;}
.y14{bottom:99.585000px;}
.y3d{bottom:106.740000px;}
.ya3{bottom:108.435000px;}
.yad{bottom:109.590000px;}
.yc1{bottom:110.916000px;}
.y7{bottom:111.270000px;}
.y93{bottom:115.596000px;}
.ycf{bottom:116.850000px;}
.y13{bottom:117.945000px;}
.yb1{bottom:118.545000px;}
.y55{bottom:121.716000px;}
.yd9{bottom:122.220000px;}
.yc4{bottom:123.660000px;}
.ya8{bottom:123.990000px;}
.y3c{bottom:124.020000px;}
.yc0{bottom:124.776000px;}
.yde{bottom:125.100000px;}
.ye0{bottom:125.310000px;}
.y10b{bottom:129.090000px;}
.y9f{bottom:132.120000px;}
.y2c{bottom:132.480000px;}
.y92{bottom:132.876000px;}
.yd0{bottom:136.650000px;}
.y12{bottom:137.025000px;}
.y54{bottom:138.996000px;}
.yb2{bottom:140.115000px;}
.y3b{bottom:141.300000px;}
.yda{bottom:147.450000px;}
.y2b{bottom:147.780000px;}
.y91{bottom:149.976000px;}
.yc5{bottom:150.330000px;}
.ya9{bottom:150.990000px;}
.ye1{bottom:153.750000px;}
.y53{bottom:156.270000px;}
.yd1{bottom:156.495000px;}
.y3a{bottom:158.580000px;}
.y10c{bottom:161.175000px;}
.yb3{bottom:161.670000px;}
.y11{bottom:162.765000px;}
.y2a{bottom:165.420000px;}
.y90{bottom:167.250000px;}
.ya0{bottom:167.295000px;}
.ydb{bottom:172.725000px;}
.y52{bottom:173.550000px;}
.y39{bottom:175.860000px;}
.yc6{bottom:177.045000px;}
.yaa{bottom:178.020000px;}
.ye2{bottom:182.190000px;}
.y29{bottom:182.520000px;}
.yb4{bottom:183.270000px;}
.y8f{bottom:184.530000px;}
.yd6{bottom:184.680000px;}
.y10{bottom:187.065000px;}
.y51{bottom:190.650000px;}
.y38{bottom:192.960000px;}
.y28{bottom:199.830000px;}
.ydd{bottom:200.910000px;}
.y8e{bottom:201.810000px;}
.ya1{bottom:202.470000px;}
.yc7{bottom:203.730000px;}
.yab{bottom:205.020000px;}
.y50{bottom:207.930000px;}
.y37{bottom:210.270000px;}
.ye6{bottom:210.420000px;}
.yb6{bottom:211.470000px;}
.y10e{bottom:215.025000px;}
.y27{bottom:217.650000px;}
.y8d{bottom:219.090000px;}
.y4f{bottom:225.210000px;}
.y36{bottom:227.550000px;}
.ya5{bottom:230.655000px;}
.ycb{bottom:231.915000px;}
.yaf{bottom:233.250000px;}
.y26{bottom:234.390000px;}
.y8c{bottom:236.370000px;}
.y4e{bottom:242.490000px;}
.y35{bottom:244.830000px;}
.y25{bottom:250.770000px;}
.y8b{bottom:253.470000px;}
.y4d{bottom:259.770000px;}
.y34{bottom:262.110000px;}
.y24{bottom:267.870000px;}
.y8a{bottom:270.750000px;}
.y4c{bottom:277.050000px;}
.y33{bottom:279.390000px;}
.y23{bottom:285.150000px;}
.y89{bottom:288.030000px;}
.y4b{bottom:294.150000px;}
.y32{bottom:296.490000px;}
.y22{bottom:302.610000px;}
.y88{bottom:305.310000px;}
.y4a{bottom:311.430000px;}
.y9c{bottom:311.970000px;}
.y31{bottom:313.770000px;}
.y21{bottom:320.070000px;}
.y87{bottom:322.590000px;}
.y49{bottom:328.710000px;}
.y9b{bottom:329.250000px;}
.y30{bottom:331.050000px;}
.y86{bottom:339.915000px;}
.y20{bottom:340.230000px;}
.y9a{bottom:343.335000px;}
.yb0{bottom:343.440000px;}
.y48{bottom:346.035000px;}
.y2f{bottom:348.330000px;}
.y109{bottom:352.155000px;}
.y85{bottom:357.015000px;}
.y47{bottom:363.315000px;}
.y2e{bottom:365.610000px;}
.y1f{bottom:367.770000px;}
.y108{bottom:369.435000px;}
.ybf{bottom:369.975000px;}
.y84{bottom:374.295000px;}
.y44{bottom:377.355000px;}
.y2d{bottom:382.710000px;}
.y1e{bottom:385.410000px;}
.y107{bottom:386.715000px;}
.ybe{bottom:387.255000px;}
.y83{bottom:391.575000px;}
.ybd{bottom:401.295000px;}
.yd8{bottom:401.400000px;}
.y106{bottom:403.995000px;}
.y1d{bottom:406.515000px;}
.y82{bottom:408.855000px;}
.y105{bottom:421.095000px;}
.y81{bottom:426.135000px;}
.y104{bottom:438.375000px;}
.y80{bottom:443.415000px;}
.y103{bottom:455.655000px;}
.y7f{bottom:460.515000px;}
.y102{bottom:472.935000px;}
.y7e{bottom:477.795000px;}
.y101{bottom:490.215000px;}
.y7d{bottom:495.075000px;}
.y100{bottom:507.495000px;}
.y7c{bottom:512.355000px;}
.yff{bottom:524.595000px;}
.y7b{bottom:529.635000px;}
.yfe{bottom:541.875000px;}
.y7a{bottom:546.735000px;}
.yfd{bottom:559.155000px;}
.y79{bottom:564.015000px;}
.yfc{bottom:576.435000px;}
.y78{bottom:581.295000px;}
.y99{bottom:589.395000px;}
.yfb{bottom:593.715000px;}
.y77{bottom:598.575000px;}
.y98{bottom:606.705000px;}
.yfa{bottom:611.025000px;}
.y76{bottom:615.885000px;}
.y97{bottom:620.745000px;}
.ya7{bottom:620.820000px;}
.yf9{bottom:628.125000px;}
.y75{bottom:633.165000px;}
.ybc{bottom:636.765000px;}
.yf8{bottom:645.405000px;}
.y74{bottom:650.265000px;}
.ybb{bottom:654.045000px;}
.yf7{bottom:662.685000px;}
.y73{bottom:667.545000px;}
.yba{bottom:668.085000px;}
.ycd{bottom:668.160000px;}
.yf6{bottom:679.965000px;}
.y72{bottom:684.825000px;}
.yf5{bottom:697.245000px;}
.y71{bottom:702.105000px;}
.yf4{bottom:714.525000px;}
.y70{bottom:719.385000px;}
.yf3{bottom:731.625000px;}
.y6f{bottom:736.665000px;}
.yf2{bottom:748.905000px;}
.y6e{bottom:753.765000px;}
.yf1{bottom:766.185000px;}
.y6d{bottom:771.045000px;}
.yf0{bottom:783.465000px;}
.y6c{bottom:788.325000px;}
.yef{bottom:800.745000px;}
.y1b{bottom:803.265000px;}
.y6b{bottom:805.605000px;}
.yee{bottom:817.845000px;}
.y6a{bottom:822.885000px;}
.yf{bottom:832.785000px;}
.yed{bottom:835.125000px;}
.y69{bottom:839.985000px;}
.yec{bottom:852.405000px;}
.y68{bottom:857.265000px;}
.yeb{bottom:869.685000px;}
.y67{bottom:874.590000px;}
.yea{bottom:887.010000px;}
.yb9{bottom:887.370000px;}
.y96{bottom:888.630000px;}
.y66{bottom:891.870000px;}
.ye9{bottom:904.290000px;}
.yb8{bottom:904.650000px;}
.y95{bottom:905.730000px;}
.y65{bottom:909.150000px;}
.ye8{bottom:918.150000px;}
.y10a{bottom:918.360000px;}
.yb7{bottom:918.510000px;}
.yc2{bottom:918.720000px;}
.y94{bottom:919.770000px;}
.y9d{bottom:919.980000px;}
.y64{bottom:926.430000px;}
.y63{bottom:943.530000px;}
.y62{bottom:960.810000px;}
.y61{bottom:978.090000px;}
.y60{bottom:995.370000px;}
.y5f{bottom:1012.650000px;}
.y5e{bottom:1029.930000px;}
.yd{bottom:1034.970000px;}
.y5d{bottom:1047.030000px;}
.y6{bottom:1060.350000px;}
.y5c{bottom:1064.310000px;}
.y5b{bottom:1081.590000px;}
.y5a{bottom:1098.870000px;}
.y59{bottom:1116.150000px;}
.y58{bottom:1133.430000px;}
.y57{bottom:1150.560000px;}
.y56{bottom:1167.840000px;}
.hc{height:25.020000px;}
.h13{height:28.968750px;}
.h1f{height:29.160000px;}
.h14{height:29.520000px;}
.h2{height:32.976000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1c{height:38.818125px;}
.h19{height:40.243711px;}
.h1e{height:41.726953px;}
.h1d{height:42.164648px;}
.h1b{height:42.281367px;}
.h2c{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h1a{height:45.770625px;}
.h17{height:47.980898px;}
.h20{height:48.027656px;}
.h4{height:53.709961px;}
.h22{height:53.853187px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h10{height:59.439023px;}
.h23{height:59.582250px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h24{height:83.787539px;}
.h26{height:83.930766px;}
.h7{height:121.536000px;}
.hd{height:202.170000px;}
.h29{height:216.000000px;}
.h2a{height:232.200000px;}
.h2b{height:241.740000px;}
.h27{height:242.820000px;}
.h2d{height:246.240000px;}
.h21{height:261.900000px;}
.h28{height:263.160000px;}
.h25{height:264.600000px;}
.h16{height:396.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w5{width:151.950000px;}
.w8{width:223.275000px;}
.w10{width:409.500000px;}
.w11{width:412.920000px;}
.wa{width:422.820000px;}
.wb{width:424.620000px;}
.wc{width:433.620000px;}
.wf{width:464.040000px;}
.w9{width:524.055000px;}
.wd{width:548.280000px;}
.we{width:553.680000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x13{left:12.600000px;}
.x1b{left:33.015000px;}
.xd{left:42.516000px;}
.x1a{left:48.450000px;}
.x30{left:51.405000px;}
.x2f{left:59.970000px;}
.x10{left:61.776000px;}
.x2e{left:66.810000px;}
.x1{left:72.360000px;}
.x2d{left:73.650000px;}
.x2a{left:79.560000px;}
.x4{left:80.999987px;}
.xf{left:85.710000px;}
.x3e{left:88.275000px;}
.x3f{left:94.215000px;}
.x5{left:98.130000px;}
.x3c{left:108.035987px;}
.x37{left:113.145000px;}
.xe{left:119.010000px;}
.x20{left:128.985000px;}
.x22{left:141.045000px;}
.x1d{left:142.275000px;}
.x23{left:146.985000px;}
.x3a{left:157.500000px;}
.x40{left:159.300000px;}
.x39{left:162.540000px;}
.x1e{left:164.160000px;}
.x24{left:169.560000px;}
.x29{left:172.260000px;}
.x34{left:183.345000px;}
.x35{left:184.860000px;}
.x38{left:196.095000px;}
.x1c{left:204.990000px;}
.x1f{left:206.820000px;}
.x11{left:215.175000px;}
.x33{left:217.620000px;}
.x6{left:224.850000px;}
.x2c{left:228.030000px;}
.x21{left:229.680000px;}
.x32{left:231.195000px;}
.x19{left:235.080000px;}
.x3d{left:239.940000px;}
.x36{left:241.740000px;}
.x2b{left:254.595000px;}
.x31{left:265.965000px;}
.x9{left:288.615000px;}
.x12{left:296.175000px;}
.x7{left:346.575000px;}
.x8{left:367.815000px;}
.xb{left:370.155000px;}
.xc{left:373.575000px;}
.x15{left:421.994987px;}
.x17{left:423.794987px;}
.x16{left:446.474987px;}
.xa{left:455.880000px;}
.x28{left:651.344987px;}
.x3b{left:652.964987px;}
.x14{left:658.049987px;}
.x18{left:663.269987px;}
.x27{left:678.569987px;}
.x25{left:720.689987px;}
.x26{left:723.389987px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsf{letter-spacing:-0.576000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.081067pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls13{letter-spacing:0.047093pt;}
.lsc{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.058880pt;}
.lse{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.lsa{letter-spacing:0.183467pt;}
.ls2{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls7{letter-spacing:5.280000pt;}
.lsb{letter-spacing:5.920000pt;}
.ls15{letter-spacing:14.672640pt;}
.ls11{letter-spacing:32.025771pt;}
.ls14{letter-spacing:40.912640pt;}
.ws4{word-spacing:-74.880000pt;}
.ws0{word-spacing:-48.000000pt;}
.ws15{word-spacing:-42.902699pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.ws7{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.463467pt;}
.wse{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.wsd{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.704000pt;}
.ws18{word-spacing:-12.034048pt;}
.ws9{word-spacing:-12.005120pt;}
.ws17{word-spacing:-10.924021pt;}
.ws1{word-spacing:-10.832000pt;}
.ws16{word-spacing:-10.795861pt;}
.wsa{word-spacing:-8.640000pt;}
.ws5{word-spacing:-7.810560pt;}
.ws6{word-spacing:-7.232000pt;}
.ws14{word-spacing:-1.722667pt;}
.ws13{word-spacing:-1.498667pt;}
.wsc{word-spacing:0.000000pt;}
.ws12{word-spacing:22.789333pt;}
.ws10{word-spacing:77.909333pt;}
.ws19{word-spacing:118.869333pt;}
.ws11{word-spacing:119.242667pt;}
.ws1a{word-spacing:299.242667pt;}
._14{margin-left:-11.946667pt;}
._d{margin-left:-4.917973pt;}
._4{margin-left:-3.683627pt;}
._3{margin-left:-2.010667pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.922667pt;}
._5{width:2.394667pt;}
._f{width:3.314133pt;}
._2{width:4.234667pt;}
._c{width:6.016853pt;}
._a{width:7.369387pt;}
._b{width:8.266240pt;}
._9{width:9.833600pt;}
._6{width:10.836480pt;}
._e{width:12.081280pt;}
._19{width:14.233600pt;}
._17{width:15.160320pt;}
._8{width:20.699093pt;}
._7{width:21.885440pt;}
._18{width:36.951893pt;}
._10{width:80.746667pt;}
._15{width:92.634667pt;}
._1b{width:104.357333pt;}
._11{width:118.021333pt;}
._1a{width:129.744000pt;}
._13{width:166.133333pt;}
._16{width:322.234667pt;}
._12{width:514.371840pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:48.128000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fsa{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fsb{font-size:75.008000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y1a{bottom:6.560000pt;}
.ye{bottom:8.480000pt;}
.y1c{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y46{bottom:13.280000pt;}
.y4{bottom:15.392000pt;}
.ye7{bottom:15.648000pt;}
.ya6{bottom:15.706667pt;}
.ycc{bottom:15.746667pt;}
.yd7{bottom:15.773333pt;}
.y45{bottom:15.840000pt;}
.y2{bottom:17.792000pt;}
.y42{bottom:18.240000pt;}
.y19{bottom:21.280000pt;}
.yb{bottom:26.880000pt;}
.yd3{bottom:32.573333pt;}
.y41{bottom:33.600000pt;}
.y18{bottom:36.040000pt;}
.y5{bottom:36.800000pt;}
.ya{bottom:41.280000pt;}
.y40{bottom:48.960000pt;}
.ye5{bottom:50.560000pt;}
.y17{bottom:50.600000pt;}
.ya4{bottom:50.626667pt;}
.yae{bottom:50.653333pt;}
.yca{bottom:50.693333pt;}
.yd5{bottom:50.720000pt;}
.y1{bottom:55.520000pt;}
.y10d{bottom:62.426667pt;}
.y3f{bottom:64.320000pt;}
.y9{bottom:65.280000pt;}
.y16{bottom:65.320000pt;}
.yd4{bottom:66.173333pt;}
.ye3{bottom:70.493333pt;}
.ya2{bottom:70.560000pt;}
.yac{bottom:70.586667pt;}
.yc8{bottom:70.626667pt;}
.yd2{bottom:70.653333pt;}
.ydc{bottom:72.573333pt;}
.yc9{bottom:72.986667pt;}
.y15{bottom:79.240000pt;}
.y3e{bottom:79.520000pt;}
.ye4{bottom:81.120000pt;}
.yb5{bottom:82.013333pt;}
.y8{bottom:82.746667pt;}
.ydf{bottom:86.106667pt;}
.y9e{bottom:86.173333pt;}
.yc3{bottom:86.213333pt;}
.yce{bottom:86.240000pt;}
.y14{bottom:88.520000pt;}
.y3d{bottom:94.880000pt;}
.ya3{bottom:96.386667pt;}
.yad{bottom:97.413333pt;}
.yc1{bottom:98.592000pt;}
.y7{bottom:98.906667pt;}
.y93{bottom:102.752000pt;}
.ycf{bottom:103.866667pt;}
.y13{bottom:104.840000pt;}
.yb1{bottom:105.373333pt;}
.y55{bottom:108.192000pt;}
.yd9{bottom:108.640000pt;}
.yc4{bottom:109.920000pt;}
.ya8{bottom:110.213333pt;}
.y3c{bottom:110.240000pt;}
.yc0{bottom:110.912000pt;}
.yde{bottom:111.200000pt;}
.ye0{bottom:111.386667pt;}
.y10b{bottom:114.746667pt;}
.y9f{bottom:117.440000pt;}
.y2c{bottom:117.760000pt;}
.y92{bottom:118.112000pt;}
.yd0{bottom:121.466667pt;}
.y12{bottom:121.800000pt;}
.y54{bottom:123.552000pt;}
.yb2{bottom:124.546667pt;}
.y3b{bottom:125.600000pt;}
.yda{bottom:131.066667pt;}
.y2b{bottom:131.360000pt;}
.y91{bottom:133.312000pt;}
.yc5{bottom:133.626667pt;}
.ya9{bottom:134.213333pt;}
.ye1{bottom:136.666667pt;}
.y53{bottom:138.906667pt;}
.yd1{bottom:139.106667pt;}
.y3a{bottom:140.960000pt;}
.y10c{bottom:143.266667pt;}
.yb3{bottom:143.706667pt;}
.y11{bottom:144.680000pt;}
.y2a{bottom:147.040000pt;}
.y90{bottom:148.666667pt;}
.ya0{bottom:148.706667pt;}
.ydb{bottom:153.533333pt;}
.y52{bottom:154.266667pt;}
.y39{bottom:156.320000pt;}
.yc6{bottom:157.373333pt;}
.yaa{bottom:158.240000pt;}
.ye2{bottom:161.946667pt;}
.y29{bottom:162.240000pt;}
.yb4{bottom:162.906667pt;}
.y8f{bottom:164.026667pt;}
.yd6{bottom:164.160000pt;}
.y10{bottom:166.280000pt;}
.y51{bottom:169.466667pt;}
.y38{bottom:171.520000pt;}
.y28{bottom:177.626667pt;}
.ydd{bottom:178.586667pt;}
.y8e{bottom:179.386667pt;}
.ya1{bottom:179.973333pt;}
.yc7{bottom:181.093333pt;}
.yab{bottom:182.240000pt;}
.y50{bottom:184.826667pt;}
.y37{bottom:186.906667pt;}
.ye6{bottom:187.040000pt;}
.yb6{bottom:187.973333pt;}
.y10e{bottom:191.133333pt;}
.y27{bottom:193.466667pt;}
.y8d{bottom:194.746667pt;}
.y4f{bottom:200.186667pt;}
.y36{bottom:202.266667pt;}
.ya5{bottom:205.026667pt;}
.ycb{bottom:206.146667pt;}
.yaf{bottom:207.333333pt;}
.y26{bottom:208.346667pt;}
.y8c{bottom:210.106667pt;}
.y4e{bottom:215.546667pt;}
.y35{bottom:217.626667pt;}
.y25{bottom:222.906667pt;}
.y8b{bottom:225.306667pt;}
.y4d{bottom:230.906667pt;}
.y34{bottom:232.986667pt;}
.y24{bottom:238.106667pt;}
.y8a{bottom:240.666667pt;}
.y4c{bottom:246.266667pt;}
.y33{bottom:248.346667pt;}
.y23{bottom:253.466667pt;}
.y89{bottom:256.026667pt;}
.y4b{bottom:261.466667pt;}
.y32{bottom:263.546667pt;}
.y22{bottom:268.986667pt;}
.y88{bottom:271.386667pt;}
.y4a{bottom:276.826667pt;}
.y9c{bottom:277.306667pt;}
.y31{bottom:278.906667pt;}
.y21{bottom:284.506667pt;}
.y87{bottom:286.746667pt;}
.y49{bottom:292.186667pt;}
.y9b{bottom:292.666667pt;}
.y30{bottom:294.266667pt;}
.y86{bottom:302.146667pt;}
.y20{bottom:302.426667pt;}
.y9a{bottom:305.186667pt;}
.yb0{bottom:305.280000pt;}
.y48{bottom:307.586667pt;}
.y2f{bottom:309.626667pt;}
.y109{bottom:313.026667pt;}
.y85{bottom:317.346667pt;}
.y47{bottom:322.946667pt;}
.y2e{bottom:324.986667pt;}
.y1f{bottom:326.906667pt;}
.y108{bottom:328.386667pt;}
.ybf{bottom:328.866667pt;}
.y84{bottom:332.706667pt;}
.y44{bottom:335.426667pt;}
.y2d{bottom:340.186667pt;}
.y1e{bottom:342.586667pt;}
.y107{bottom:343.746667pt;}
.ybe{bottom:344.226667pt;}
.y83{bottom:348.066667pt;}
.ybd{bottom:356.706667pt;}
.yd8{bottom:356.800000pt;}
.y106{bottom:359.106667pt;}
.y1d{bottom:361.346667pt;}
.y82{bottom:363.426667pt;}
.y105{bottom:374.306667pt;}
.y81{bottom:378.786667pt;}
.y104{bottom:389.666667pt;}
.y80{bottom:394.146667pt;}
.y103{bottom:405.026667pt;}
.y7f{bottom:409.346667pt;}
.y102{bottom:420.386667pt;}
.y7e{bottom:424.706667pt;}
.y101{bottom:435.746667pt;}
.y7d{bottom:440.066667pt;}
.y100{bottom:451.106667pt;}
.y7c{bottom:455.426667pt;}
.yff{bottom:466.306667pt;}
.y7b{bottom:470.786667pt;}
.yfe{bottom:481.666667pt;}
.y7a{bottom:485.986667pt;}
.yfd{bottom:497.026667pt;}
.y79{bottom:501.346667pt;}
.yfc{bottom:512.386667pt;}
.y78{bottom:516.706667pt;}
.y99{bottom:523.906667pt;}
.yfb{bottom:527.746667pt;}
.y77{bottom:532.066667pt;}
.y98{bottom:539.293333pt;}
.yfa{bottom:543.133333pt;}
.y76{bottom:547.453333pt;}
.y97{bottom:551.773333pt;}
.ya7{bottom:551.840000pt;}
.yf9{bottom:558.333333pt;}
.y75{bottom:562.813333pt;}
.ybc{bottom:566.013333pt;}
.yf8{bottom:573.693333pt;}
.y74{bottom:578.013333pt;}
.ybb{bottom:581.373333pt;}
.yf7{bottom:589.053333pt;}
.y73{bottom:593.373333pt;}
.yba{bottom:593.853333pt;}
.ycd{bottom:593.920000pt;}
.yf6{bottom:604.413333pt;}
.y72{bottom:608.733333pt;}
.yf5{bottom:619.773333pt;}
.y71{bottom:624.093333pt;}
.yf4{bottom:635.133333pt;}
.y70{bottom:639.453333pt;}
.yf3{bottom:650.333333pt;}
.y6f{bottom:654.813333pt;}
.yf2{bottom:665.693333pt;}
.y6e{bottom:670.013333pt;}
.yf1{bottom:681.053333pt;}
.y6d{bottom:685.373333pt;}
.yf0{bottom:696.413333pt;}
.y6c{bottom:700.733333pt;}
.yef{bottom:711.773333pt;}
.y1b{bottom:714.013333pt;}
.y6b{bottom:716.093333pt;}
.yee{bottom:726.973333pt;}
.y6a{bottom:731.453333pt;}
.yf{bottom:740.253333pt;}
.yed{bottom:742.333333pt;}
.y69{bottom:746.653333pt;}
.yec{bottom:757.693333pt;}
.y68{bottom:762.013333pt;}
.yeb{bottom:773.053333pt;}
.y67{bottom:777.413333pt;}
.yea{bottom:788.453333pt;}
.yb9{bottom:788.773333pt;}
.y96{bottom:789.893333pt;}
.y66{bottom:792.773333pt;}
.ye9{bottom:803.813333pt;}
.yb8{bottom:804.133333pt;}
.y95{bottom:805.093333pt;}
.y65{bottom:808.133333pt;}
.ye8{bottom:816.133333pt;}
.y10a{bottom:816.320000pt;}
.yb7{bottom:816.453333pt;}
.yc2{bottom:816.640000pt;}
.y94{bottom:817.573333pt;}
.y9d{bottom:817.760000pt;}
.y64{bottom:823.493333pt;}
.y63{bottom:838.693333pt;}
.y62{bottom:854.053333pt;}
.y61{bottom:869.413333pt;}
.y60{bottom:884.773333pt;}
.y5f{bottom:900.133333pt;}
.y5e{bottom:915.493333pt;}
.yd{bottom:919.973333pt;}
.y5d{bottom:930.693333pt;}
.y6{bottom:942.533333pt;}
.y5c{bottom:946.053333pt;}
.y5b{bottom:961.413333pt;}
.y5a{bottom:976.773333pt;}
.y59{bottom:992.133333pt;}
.y58{bottom:1007.493333pt;}
.y57{bottom:1022.720000pt;}
.y56{bottom:1038.080000pt;}
.hc{height:22.240000pt;}
.h13{height:25.750000pt;}
.h1f{height:25.920000pt;}
.h14{height:26.240000pt;}
.h2{height:29.312000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1c{height:34.505000pt;}
.h19{height:35.772188pt;}
.h1e{height:37.090625pt;}
.h1d{height:37.479688pt;}
.h1b{height:37.583438pt;}
.h2c{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h1a{height:40.685000pt;}
.h17{height:42.649687pt;}
.h20{height:42.691250pt;}
.h4{height:47.742188pt;}
.h22{height:47.869500pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h10{height:52.834688pt;}
.h23{height:52.962000pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h24{height:74.477812pt;}
.h26{height:74.605125pt;}
.h7{height:108.032000pt;}
.hd{height:179.706667pt;}
.h29{height:192.000000pt;}
.h2a{height:206.400000pt;}
.h2b{height:214.880000pt;}
.h27{height:215.840000pt;}
.h2d{height:218.880000pt;}
.h21{height:232.800000pt;}
.h28{height:233.920000pt;}
.h25{height:235.200000pt;}
.h16{height:352.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w5{width:135.066667pt;}
.w8{width:198.466667pt;}
.w10{width:364.000000pt;}
.w11{width:367.040000pt;}
.wa{width:375.840000pt;}
.wb{width:377.440000pt;}
.wc{width:385.440000pt;}
.wf{width:412.480000pt;}
.w9{width:465.826667pt;}
.wd{width:487.360000pt;}
.we{width:492.160000pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x13{left:11.200000pt;}
.x1b{left:29.346667pt;}
.xd{left:37.792000pt;}
.x1a{left:43.066667pt;}
.x30{left:45.693333pt;}
.x2f{left:53.306667pt;}
.x10{left:54.912000pt;}
.x2e{left:59.386667pt;}
.x1{left:64.320000pt;}
.x2d{left:65.466667pt;}
.x2a{left:70.720000pt;}
.x4{left:71.999988pt;}
.xf{left:76.186667pt;}
.x3e{left:78.466667pt;}
.x3f{left:83.746667pt;}
.x5{left:87.226667pt;}
.x3c{left:96.031988pt;}
.x37{left:100.573333pt;}
.xe{left:105.786667pt;}
.x20{left:114.653333pt;}
.x22{left:125.373333pt;}
.x1d{left:126.466667pt;}
.x23{left:130.653333pt;}
.x3a{left:140.000000pt;}
.x40{left:141.600000pt;}
.x39{left:144.480000pt;}
.x1e{left:145.920000pt;}
.x24{left:150.720000pt;}
.x29{left:153.120000pt;}
.x34{left:162.973333pt;}
.x35{left:164.320000pt;}
.x38{left:174.306667pt;}
.x1c{left:182.213333pt;}
.x1f{left:183.840000pt;}
.x11{left:191.266667pt;}
.x33{left:193.440000pt;}
.x6{left:199.866667pt;}
.x2c{left:202.693333pt;}
.x21{left:204.160000pt;}
.x32{left:205.506667pt;}
.x19{left:208.960000pt;}
.x3d{left:213.280000pt;}
.x36{left:214.880000pt;}
.x2b{left:226.306667pt;}
.x31{left:236.413333pt;}
.x9{left:256.546667pt;}
.x12{left:263.266667pt;}
.x7{left:308.066667pt;}
.x8{left:326.946667pt;}
.xb{left:329.026667pt;}
.xc{left:332.066667pt;}
.x15{left:375.106655pt;}
.x17{left:376.706655pt;}
.x16{left:396.866655pt;}
.xa{left:405.226667pt;}
.x28{left:578.973322pt;}
.x3b{left:580.413322pt;}
.x14{left:584.933322pt;}
.x18{left:589.573322pt;}
.x27{left:603.173322pt;}
.x25{left:640.613322pt;}
.x26{left:643.013322pt;}
.x3{left:663.013333pt;}
}




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