
    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_019aeb2e30934dae56a594f2.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_10d1f343fad6927fbd0ef0e8.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_1ce3e62fbc8bff0b92c63c26.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_79c4299e33299f150a880ee1.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_c9dc2c16333cbbf1116188fc.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_68ba94bd0b5d4f9f6661c63d.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_f6e0fbd31336bab014e3b053.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_771b32768c8d9551f9b4d66b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9f2c2237a70ed092da0aaa8b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e33d0bf2262bcc26d1681ef4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_18e01fb9da6973a796d5ebb4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ae9860d7f21d33cc121bb9a2.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_968f432e02fdb31d43a183d9.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_706e316d17e5b520c0a7f165.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.435059;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_fcf75d7836a3906ca41377cb.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-70.560000px;}
.v3{vertical-align:-68.400000px;}
.v2{vertical-align:-15.300000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls2c{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.100200px;}
.ls16{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.ls15{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.132600px;}
.ls20{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.298800px;}
.ls13{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.447840px;}
.ls0{letter-spacing:0.756000px;}
.ls4{letter-spacing:0.786240px;}
.ls6{letter-spacing:0.894240px;}
.ls2b{letter-spacing:0.924000px;}
.ls2a{letter-spacing:3.780000px;}
.ls2e{letter-spacing:15.786720px;}
.lse{letter-spacing:37.386720px;}
.ls10{letter-spacing:40.986720px;}
.lsb{letter-spacing:42.426720px;}
.lsf{letter-spacing:43.866720px;}
.lsa{letter-spacing:45.306720px;}
.lsc{letter-spacing:48.906720px;}
.lsd{letter-spacing:53.946720px;}
.ls11{letter-spacing:55.386720px;}
.ls24{letter-spacing:84.564000px;}
.ls19{letter-spacing:100.404000px;}
.ls27{letter-spacing:101.124000px;}
.ls21{letter-spacing:121.284000px;}
.ls26{letter-spacing:127.764000px;}
.ls1a{letter-spacing:135.684000px;}
.ls29{letter-spacing:146.484000px;}
.ls22{letter-spacing:249.444000px;}
.ls23{letter-spacing:306.300000px;}
.ls1e{letter-spacing:317.820000px;}
.ls1d{letter-spacing:324.300000px;}
.ls25{letter-spacing:378.300000px;}
.ls1c{letter-spacing:380.460000px;}
.ls1b{letter-spacing:384.780000px;}
.ls28{letter-spacing:412.140000px;}
.ls18{letter-spacing:615.180000px;}
.ls14{letter-spacing:689.340000px;}
.ls2d{letter-spacing:1245.360000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.626360px;}
.ws1{word-spacing:-16.493760px;}
.wse{word-spacing:-15.864000px;}
.ws9{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.839800px;}
.ws8{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.580000px;}
.ws5{word-spacing:-13.505760px;}
.ws2{word-spacing:-8.786880px;}
.ws3{word-spacing:-8.136000px;}
.ws7{word-spacing:0.000000px;}
._1f{margin-left:-7.891680px;}
._4{margin-left:-5.580000px;}
._15{margin-left:-4.556400px;}
._3{margin-left:-3.369600px;}
._2{margin-left:-2.358720px;}
._0{margin-left:-1.026000px;}
._1{width:1.110000px;}
._6{width:2.211120px;}
._7{width:3.346560px;}
._12{width:5.127840px;}
._8{width:6.236880px;}
._16{width:7.332240px;}
._9{width:8.366400px;}
._c{width:10.304160px;}
._d{width:11.473920px;}
._e{width:12.549600px;}
._11{width:13.780320px;}
._5{width:16.809120px;}
._1d{width:17.860560px;}
._10{width:18.884160px;}
._17{width:19.905840px;}
._a{width:21.001200px;}
._b{width:22.529520px;}
._1e{width:23.853120px;}
._1b{width:24.945360px;}
._1c{width:26.747040px;}
._14{width:28.029120px;}
._13{width:29.111040px;}
._19{width:30.178800px;}
._f{width:42.336000px;}
._1a{width:51.299520px;}
._18{width:380.623680px;}
.fc5{color:rgb(227,108,10);}
.fc7{color:rgb(5,99,193);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc6{color:rgb(13,13,13);}
.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;}
.y1d{bottom:0.180000px;}
.y3{bottom:3.600000px;}
.y98{bottom:3.780000px;}
.y42{bottom:3.825000px;}
.y47{bottom:4.140000px;}
.y1b{bottom:4.860000px;}
.ye{bottom:9.540000px;}
.y45{bottom:10.620000px;}
.y1e{bottom:12.600000px;}
.yc{bottom:14.040000px;}
.y4{bottom:17.496000px;}
.y2{bottom:20.196000px;}
.y10c{bottom:20.874000px;}
.y41{bottom:20.925000px;}
.ye1{bottom:21.060000px;}
.y46{bottom:22.500000px;}
.y44{bottom:25.380000px;}
.y1a{bottom:29.340000px;}
.yb{bottom:30.420000px;}
.y5{bottom:33.480000px;}
.y40{bottom:38.205000px;}
.y19{bottom:45.900000px;}
.ya{bottom:46.800000px;}
.y1{bottom:54.360000px;}
.y3f{bottom:55.485000px;}
.y18{bottom:62.280000px;}
.y3e{bottom:72.765000px;}
.y9{bottom:73.440000px;}
.y17{bottom:78.885000px;}
.y3d{bottom:90.045000px;}
.y8{bottom:93.270000px;}
.y16{bottom:94.545000px;}
.ydc{bottom:99.036000px;}
.y10d{bottom:100.656000px;}
.y90{bottom:101.016000px;}
.ya8{bottom:103.536000px;}
.y15{bottom:105.165000px;}
.y3c{bottom:107.325000px;}
.y124{bottom:109.656000px;}
.y52{bottom:110.916000px;}
.y7{bottom:111.450000px;}
.y12c{bottom:112.716000px;}
.ydb{bottom:117.036000px;}
.y8f{bottom:118.656000px;}
.ya7{bottom:121.536000px;}
.y14{bottom:123.525000px;}
.y3b{bottom:124.425000px;}
.y123{bottom:126.396000px;}
.y12b{bottom:126.576000px;}
.y51{bottom:128.196000px;}
.y14f{bottom:129.816000px;}
.yda{bottom:135.036000px;}
.y8e{bottom:135.936000px;}
.y10b{bottom:136.656000px;}
.ya6{bottom:139.536000px;}
.y122{bottom:140.436000px;}
.y13{bottom:141.705000px;}
.y50{bottom:145.476000px;}
.y14e{bottom:147.096000px;}
.y8d{bottom:153.030000px;}
.ya5{bottom:157.530000px;}
.y3a{bottom:158.985000px;}
.y12{bottom:160.245000px;}
.y4f{bottom:162.750000px;}
.y14d{bottom:164.370000px;}
.y8c{bottom:170.310000px;}
.yd9{bottom:173.730000px;}
.y10a{bottom:175.170000px;}
.y39{bottom:176.265000px;}
.y4e{bottom:179.850000px;}
.y14c{bottom:181.650000px;}
.y11{bottom:185.985000px;}
.y8b{bottom:187.590000px;}
.yd8{bottom:191.370000px;}
.y38{bottom:193.545000px;}
.ya4{bottom:196.590000px;}
.y4d{bottom:197.130000px;}
.y14b{bottom:198.750000px;}
.y8a{bottom:204.870000px;}
.yd7{bottom:205.590000px;}
.y109{bottom:210.090000px;}
.y10{bottom:210.645000px;}
.ya3{bottom:213.870000px;}
.y4c{bottom:214.410000px;}
.y14a{bottom:216.030000px;}
.y2b{bottom:217.125000px;}
.y89{bottom:222.150000px;}
.yd6{bottom:223.590000px;}
.y108{bottom:227.370000px;}
.y37{bottom:227.925000px;}
.ya2{bottom:231.150000px;}
.y4b{bottom:231.690000px;}
.y2a{bottom:232.425000px;}
.y149{bottom:233.310000px;}
.y88{bottom:239.430000px;}
.yd5{bottom:241.590000px;}
.y36{bottom:245.205000px;}
.ya1{bottom:245.370000px;}
.y4a{bottom:248.970000px;}
.y29{bottom:250.425000px;}
.y148{bottom:250.590000px;}
.y87{bottom:256.530000px;}
.yd4{bottom:259.590000px;}
.y35{bottom:262.485000px;}
.ya0{bottom:263.370000px;}
.y49{bottom:265.710000px;}
.y28{bottom:267.705000px;}
.y147{bottom:267.870000px;}
.y86{bottom:273.810000px;}
.y107{bottom:277.590000px;}
.y34{bottom:279.795000px;}
.y9f{bottom:281.370000px;}
.y48{bottom:283.350000px;}
.y27{bottom:285.015000px;}
.y146{bottom:285.150000px;}
.y85{bottom:291.090000px;}
.y106{bottom:295.590000px;}
.y43{bottom:296.850000px;}
.y33{bottom:297.075000px;}
.yd3{bottom:298.290000px;}
.y9e{bottom:299.370000px;}
.y145{bottom:302.250000px;}
.y26{bottom:302.475000px;}
.y84{bottom:308.370000px;}
.y105{bottom:313.590000px;}
.y32{bottom:314.175000px;}
.yd2{bottom:315.930000px;}
.y9d{bottom:317.370000px;}
.y144{bottom:319.530000px;}
.y25{bottom:319.755000px;}
.y83{bottom:325.650000px;}
.yd1{bottom:330.150000px;}
.y31{bottom:331.455000px;}
.y104{bottom:331.590000px;}
.y1f{bottom:333.570000px;}
.y9c{bottom:335.370000px;}
.y143{bottom:336.855000px;}
.y24{bottom:337.215000px;}
.y82{bottom:342.975000px;}
.yd0{bottom:348.195000px;}
.y30{bottom:348.735000px;}
.y9b{bottom:353.415000px;}
.y142{bottom:354.135000px;}
.y23{bottom:354.495000px;}
.y81{bottom:360.075000px;}
.y2f{bottom:366.015000px;}
.ycf{bottom:366.195000px;}
.y103{bottom:370.695000px;}
.y9a{bottom:371.415000px;}
.y22{bottom:374.835000px;}
.y80{bottom:377.355000px;}
.y2e{bottom:383.295000px;}
.yce{bottom:384.195000px;}
.y102{bottom:387.975000px;}
.y141{bottom:388.695000px;}
.y99{bottom:389.415000px;}
.y7f{bottom:394.635000px;}
.y2d{bottom:400.575000px;}
.y101{bottom:402.195000px;}
.y21{bottom:402.375000px;}
.y140{bottom:405.795000px;}
.y97{bottom:407.415000px;}
.y7e{bottom:411.915000px;}
.y2c{bottom:417.675000px;}
.y20{bottom:419.835000px;}
.y100{bottom:420.195000px;}
.ycd{bottom:423.075000px;}
.y7d{bottom:429.195000px;}
.yff{bottom:438.195000px;}
.ycc{bottom:440.355000px;}
.y96{bottom:445.935000px;}
.y7c{bottom:446.295000px;}
.ycb{bottom:454.575000px;}
.yfe{bottom:456.195000px;}
.y13f{bottom:457.635000px;}
.y7b{bottom:463.575000px;}
.yca{bottom:472.575000px;}
.yfd{bottom:474.195000px;}
.y13e{bottom:474.915000px;}
.y7a{bottom:480.855000px;}
.yc9{bottom:490.575000px;}
.y13d{bottom:492.015000px;}
.yfc{bottom:492.195000px;}
.y79{bottom:498.135000px;}
.y12a{bottom:499.215000px;}
.yc8{bottom:508.575000px;}
.y13c{bottom:509.295000px;}
.y78{bottom:515.415000px;}
.y129{bottom:516.135000px;}
.y13b{bottom:526.575000px;}
.y128{bottom:530.175000px;}
.yfb{bottom:531.075000px;}
.y95{bottom:532.335000px;}
.y77{bottom:532.695000px;}
.y13a{bottom:543.855000px;}
.y121{bottom:546.915000px;}
.yc7{bottom:547.635000px;}
.yfa{bottom:548.355000px;}
.y76{bottom:549.795000px;}
.y139{bottom:561.135000px;}
.y120{bottom:564.195000px;}
.yc6{bottom:564.915000px;}
.yf9{bottom:565.635000px;}
.y75{bottom:567.075000px;}
.y11f{bottom:578.415000px;}
.yf8{bottom:579.855000px;}
.yc5{bottom:582.195000px;}
.y74{bottom:584.355000px;}
.y138{bottom:595.515000px;}
.yc4{bottom:596.415000px;}
.yf7{bottom:597.855000px;}
.y94{bottom:601.275000px;}
.y73{bottom:601.635000px;}
.y137{bottom:612.825000px;}
.yc3{bottom:614.445000px;}
.yf6{bottom:615.885000px;}
.y72{bottom:618.945000px;}
.y136{bottom:630.105000px;}
.yc2{bottom:632.445000px;}
.yf5{bottom:633.885000px;}
.y71{bottom:636.225000px;}
.y135{bottom:647.385000px;}
.yc1{bottom:650.445000px;}
.yf4{bottom:651.885000px;}
.y70{bottom:653.325000px;}
.y134{bottom:664.665000px;}
.yc0{bottom:668.445000px;}
.yf3{bottom:669.885000px;}
.y6f{bottom:670.605000px;}
.y133{bottom:681.945000px;}
.ybf{bottom:686.445000px;}
.y6e{bottom:687.885000px;}
.y132{bottom:699.045000px;}
.ybe{bottom:704.445000px;}
.y6d{bottom:705.165000px;}
.y11e{bottom:707.325000px;}
.yf2{bottom:708.945000px;}
.y131{bottom:715.965000px;}
.y6c{bottom:722.445000px;}
.y11d{bottom:724.605000px;}
.yf1{bottom:726.225000px;}
.y130{bottom:733.605000px;}
.y11c{bottom:738.825000px;}
.y93{bottom:739.365000px;}
.y6b{bottom:739.725000px;}
.yf0{bottom:740.445000px;}
.y12f{bottom:750.525000px;}
.y6a{bottom:756.825000px;}
.yef{bottom:758.445000px;}
.ybd{bottom:761.325000px;}
.y12e{bottom:764.565000px;}
.y1c{bottom:764.745000px;}
.y69{bottom:774.105000px;}
.y11b{bottom:774.825000px;}
.yee{bottom:776.445000px;}
.ybc{bottom:778.605000px;}
.y151{bottom:791.025000px;}
.y68{bottom:791.385000px;}
.ybb{bottom:792.825000px;}
.yf{bottom:794.445000px;}
.y127{bottom:801.105000px;}
.y67{bottom:808.665000px;}
.yba{bottom:810.825000px;}
.yed{bottom:812.445000px;}
.y126{bottom:818.025000px;}
.y66{bottom:825.945000px;}
.yb9{bottom:828.825000px;}
.yec{bottom:830.445000px;}
.y125{bottom:831.885000px;}
.y65{bottom:843.045000px;}
.yb8{bottom:846.825000px;}
.y64{bottom:860.325000px;}
.yb7{bottom:864.825000px;}
.y11a{bottom:867.885000px;}
.yeb{bottom:869.325000px;}
.y63{bottom:877.650000px;}
.yb6{bottom:882.870000px;}
.y119{bottom:885.210000px;}
.yea{bottom:886.650000px;}
.y62{bottom:894.930000px;}
.y118{bottom:899.430000px;}
.yb5{bottom:900.870000px;}
.ye9{bottom:903.930000px;}
.y61{bottom:912.210000px;}
.y117{bottom:917.430000px;}
.ye8{bottom:918.150000px;}
.yb4{bottom:922.290000px;}
.y150{bottom:929.130000px;}
.y60{bottom:929.490000px;}
.y116{bottom:935.430000px;}
.ye7{bottom:936.150000px;}
.y5f{bottom:946.590000px;}
.y115{bottom:953.430000px;}
.ye6{bottom:954.150000px;}
.yb3{bottom:957.210000px;}
.y5e{bottom:963.870000px;}
.y114{bottom:971.430000px;}
.ye5{bottom:972.150000px;}
.yb2{bottom:974.490000px;}
.y92{bottom:980.790000px;}
.y5d{bottom:981.150000px;}
.yb1{bottom:988.710000px;}
.y113{bottom:989.430000px;}
.ye4{bottom:990.150000px;}
.y5c{bottom:998.430000px;}
.yb0{bottom:1006.710000px;}
.ye3{bottom:1008.150000px;}
.y5b{bottom:1015.710000px;}
.yd{bottom:1020.390000px;}
.yaf{bottom:1024.710000px;}
.ye2{bottom:1026.150000px;}
.y112{bottom:1028.490000px;}
.y5a{bottom:1032.990000px;}
.yae{bottom:1042.710000px;}
.ye0{bottom:1044.150000px;}
.y6{bottom:1045.590000px;}
.y59{bottom:1050.090000px;}
.yad{bottom:1060.710000px;}
.y111{bottom:1062.870000px;}
.y58{bottom:1067.370000px;}
.y110{bottom:1077.090000px;}
.ydf{bottom:1082.850000px;}
.y91{bottom:1084.290000px;}
.y57{bottom:1084.650000px;}
.y10f{bottom:1095.090000px;}
.yac{bottom:1099.590000px;}
.y56{bottom:1101.930000px;}
.y10e{bottom:1113.090000px;}
.yab{bottom:1116.870000px;}
.yde{bottom:1117.230000px;}
.y55{bottom:1119.210000px;}
.yaa{bottom:1131.090000px;}
.ydd{bottom:1134.870000px;}
.y54{bottom:1136.490000px;}
.ya9{bottom:1149.120000px;}
.y12d{bottom:1153.260000px;}
.y53{bottom:1153.620000px;}
.h25{height:17.100000px;}
.h22{height:17.280000px;}
.h23{height:17.316000px;}
.hc{height:24.840000px;}
.h13{height:28.968750px;}
.h14{height:29.700000px;}
.h2{height:32.976000px;}
.h26{height:34.380000px;}
.h24{height:34.560000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1e{height:36.720000px;}
.h1b{height:38.818125px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h19{height:45.770625px;}
.h17{height:47.980898px;}
.h1f{height:48.088125px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h1a{height:58.621992px;}
.h1d{height:58.651172px;}
.h10{height:59.439023px;}
.h1c{height:60.226875px;}
.h11{height:61.189805px;}
.h21{height:61.423863px;}
.h20{height:62.211094px;}
.hf{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:225.930000px;}
.h16{height:431.175000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w29{width:65.916000px;}
.w3{width:74.880000px;}
.wb{width:78.336000px;}
.w25{width:80.316000px;}
.w27{width:83.556000px;}
.wf{width:84.816000px;}
.wd{width:88.776000px;}
.w34{width:98.280000px;}
.w35{width:107.676000px;}
.w28{width:109.800000px;}
.w33{width:109.836000px;}
.w26{width:109.980000px;}
.w32{width:111.636000px;}
.we{width:115.200000px;}
.w10{width:120.240000px;}
.wc{width:121.680000px;}
.w2a{width:123.660000px;}
.wa{width:133.236000px;}
.w36{width:138.600000px;}
.w5{width:155.370000px;}
.w24{width:168.870000px;}
.w31{width:176.970000px;}
.w19{width:180.570000px;}
.w16{width:182.910000px;}
.w1c{width:195.690000px;}
.w18{width:196.770000px;}
.w39{width:200.010000px;}
.w11{width:212.295000px;}
.w2c{width:217.290000px;}
.w8{width:220.935000px;}
.w1f{width:222.915000px;}
.w2f{width:224.895000px;}
.w38{width:226.470000px;}
.w13{width:235.695000px;}
.w2e{width:237.270000px;}
.w21{width:248.115000px;}
.w22{width:248.430000px;}
.w23{width:248.610000px;}
.w14{width:254.730000px;}
.w30{width:260.130000px;}
.w20{width:261.030000px;}
.w12{width:266.430000px;}
.w2d{width:270.615000px;}
.w1e{width:274.710000px;}
.w1d{width:274.755000px;}
.w1b{width:282.270000px;}
.w1a{width:282.315000px;}
.w2b{width:310.215000px;}
.w37{width:318.675000px;}
.w17{width:351.615000px;}
.w15{width:379.155000px;}
.w9{width:526.395000px;}
.w6{width:591.945000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:7.560000px;}
.x2{left:8.640000px;}
.x16{left:12.600000px;}
.xc{left:25.776000px;}
.xe{left:54.396000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x17{left:107.855987px;}
.x11{left:159.150000px;}
.x10{left:171.390000px;}
.x12{left:175.890000px;}
.x13{left:184.350000px;}
.xd{left:201.630000px;}
.x18{left:207.210000px;}
.x14{left:215.175000px;}
.x6{left:228.270000px;}
.x47{left:229.529987px;}
.x40{left:233.669987px;}
.x2f{left:242.850000px;}
.x39{left:250.950000px;}
.x26{left:254.550000px;}
.x49{left:257.249987px;}
.x28{left:269.670000px;}
.x9{left:285.015000px;}
.x19{left:286.275000px;}
.x15{left:293.835000px;}
.x2a{left:297.075000px;}
.x38{left:298.875000px;}
.x1f{left:309.675000px;}
.x42{left:316.154987px;}
.x2c{left:322.095000px;}
.x30{left:323.895000px;}
.xf{left:330.735000px;}
.x45{left:334.694987px;}
.x7{left:344.775000px;}
.x2e{left:361.154987px;}
.x8{left:364.035000px;}
.xb{left:373.575000px;}
.x35{left:384.375000px;}
.x3d{left:392.655000px;}
.x1a{left:408.675000px;}
.x21{left:414.434987px;}
.x24{left:425.595000px;}
.x31{left:434.595000px;}
.x43{left:446.474987px;}
.xa{left:452.280000px;}
.x3a{left:473.865000px;}
.x1b{left:498.165000px;}
.x32{left:518.865000px;}
.x27{left:537.585000px;}
.x29{left:545.145000px;}
.x1e{left:553.425000px;}
.x2b{left:558.825000px;}
.x20{left:565.125000px;}
.x2d{left:571.245000px;}
.x3b{left:572.865000px;}
.x37{left:582.585000px;}
.x36{left:602.565000px;}
.x46{left:607.784987px;}
.x41{left:611.564987px;}
.x1c{left:614.085000px;}
.x3e{left:619.845000px;}
.x25{left:623.085000px;}
.x48{left:627.224987px;}
.x33{left:629.565000px;}
.x22{left:636.945000px;}
.x44{left:652.424987px;}
.x3c{left:681.270000px;}
.x3f{left:694.049987px;}
.x34{left:696.210000px;}
.x1d{left:699.630000px;}
.x3{left:745.890000px;}
@media print{
.v4{vertical-align:-62.720000pt;}
.v3{vertical-align:-60.800000pt;}
.v2{vertical-align:-13.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls2c{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.089067pt;}
.ls16{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls15{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.117867pt;}
.ls20{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.265600pt;}
.ls13{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.398080pt;}
.ls0{letter-spacing:0.672000pt;}
.ls4{letter-spacing:0.698880pt;}
.ls6{letter-spacing:0.794880pt;}
.ls2b{letter-spacing:0.821333pt;}
.ls2a{letter-spacing:3.360000pt;}
.ls2e{letter-spacing:14.032640pt;}
.lse{letter-spacing:33.232640pt;}
.ls10{letter-spacing:36.432640pt;}
.lsb{letter-spacing:37.712640pt;}
.lsf{letter-spacing:38.992640pt;}
.lsa{letter-spacing:40.272640pt;}
.lsc{letter-spacing:43.472640pt;}
.lsd{letter-spacing:47.952640pt;}
.ls11{letter-spacing:49.232640pt;}
.ls24{letter-spacing:75.168000pt;}
.ls19{letter-spacing:89.248000pt;}
.ls27{letter-spacing:89.888000pt;}
.ls21{letter-spacing:107.808000pt;}
.ls26{letter-spacing:113.568000pt;}
.ls1a{letter-spacing:120.608000pt;}
.ls29{letter-spacing:130.208000pt;}
.ls22{letter-spacing:221.728000pt;}
.ls23{letter-spacing:272.266667pt;}
.ls1e{letter-spacing:282.506667pt;}
.ls1d{letter-spacing:288.266667pt;}
.ls25{letter-spacing:336.266667pt;}
.ls1c{letter-spacing:338.186667pt;}
.ls1b{letter-spacing:342.026667pt;}
.ls28{letter-spacing:366.346667pt;}
.ls18{letter-spacing:546.826667pt;}
.ls14{letter-spacing:612.746667pt;}
.ls2d{letter-spacing:1106.986667pt;}
.ws0{word-spacing:-14.778987pt;}
.ws1{word-spacing:-14.661120pt;}
.wse{word-spacing:-14.101333pt;}
.ws9{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.190933pt;}
.ws8{word-spacing:-13.185067pt;}
.wsd{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.005120pt;}
.ws2{word-spacing:-7.810560pt;}
.ws3{word-spacing:-7.232000pt;}
.ws7{word-spacing:0.000000pt;}
._1f{margin-left:-7.014827pt;}
._4{margin-left:-4.960000pt;}
._15{margin-left:-4.050133pt;}
._3{margin-left:-2.995200pt;}
._2{margin-left:-2.096640pt;}
._0{margin-left:-0.912000pt;}
._1{width:0.986667pt;}
._6{width:1.965440pt;}
._7{width:2.974720pt;}
._12{width:4.558080pt;}
._8{width:5.543893pt;}
._16{width:6.517547pt;}
._9{width:7.436800pt;}
._c{width:9.159253pt;}
._d{width:10.199040pt;}
._e{width:11.155200pt;}
._11{width:12.249173pt;}
._5{width:14.941440pt;}
._1d{width:15.876053pt;}
._10{width:16.785920pt;}
._17{width:17.694080pt;}
._a{width:18.667733pt;}
._b{width:20.026240pt;}
._1e{width:21.202773pt;}
._1b{width:22.173653pt;}
._1c{width:23.775147pt;}
._14{width:24.914773pt;}
._13{width:25.876480pt;}
._19{width:26.825600pt;}
._f{width:37.632000pt;}
._1a{width:45.599573pt;}
._18{width:338.332160pt;}
.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;}
.y1d{bottom:0.160000pt;}
.y3{bottom:3.200000pt;}
.y98{bottom:3.360000pt;}
.y42{bottom:3.400000pt;}
.y47{bottom:3.680000pt;}
.y1b{bottom:4.320000pt;}
.ye{bottom:8.480000pt;}
.y45{bottom:9.440000pt;}
.y1e{bottom:11.200000pt;}
.yc{bottom:12.480000pt;}
.y4{bottom:15.552000pt;}
.y2{bottom:17.952000pt;}
.y10c{bottom:18.554667pt;}
.y41{bottom:18.600000pt;}
.ye1{bottom:18.720000pt;}
.y46{bottom:20.000000pt;}
.y44{bottom:22.560000pt;}
.y1a{bottom:26.080000pt;}
.yb{bottom:27.040000pt;}
.y5{bottom:29.760000pt;}
.y40{bottom:33.960000pt;}
.y19{bottom:40.800000pt;}
.ya{bottom:41.600000pt;}
.y1{bottom:48.320000pt;}
.y3f{bottom:49.320000pt;}
.y18{bottom:55.360000pt;}
.y3e{bottom:64.680000pt;}
.y9{bottom:65.280000pt;}
.y17{bottom:70.120000pt;}
.y3d{bottom:80.040000pt;}
.y8{bottom:82.906667pt;}
.y16{bottom:84.040000pt;}
.ydc{bottom:88.032000pt;}
.y10d{bottom:89.472000pt;}
.y90{bottom:89.792000pt;}
.ya8{bottom:92.032000pt;}
.y15{bottom:93.480000pt;}
.y3c{bottom:95.400000pt;}
.y124{bottom:97.472000pt;}
.y52{bottom:98.592000pt;}
.y7{bottom:99.066667pt;}
.y12c{bottom:100.192000pt;}
.ydb{bottom:104.032000pt;}
.y8f{bottom:105.472000pt;}
.ya7{bottom:108.032000pt;}
.y14{bottom:109.800000pt;}
.y3b{bottom:110.600000pt;}
.y123{bottom:112.352000pt;}
.y12b{bottom:112.512000pt;}
.y51{bottom:113.952000pt;}
.y14f{bottom:115.392000pt;}
.yda{bottom:120.032000pt;}
.y8e{bottom:120.832000pt;}
.y10b{bottom:121.472000pt;}
.ya6{bottom:124.032000pt;}
.y122{bottom:124.832000pt;}
.y13{bottom:125.960000pt;}
.y50{bottom:129.312000pt;}
.y14e{bottom:130.752000pt;}
.y8d{bottom:136.026667pt;}
.ya5{bottom:140.026667pt;}
.y3a{bottom:141.320000pt;}
.y12{bottom:142.440000pt;}
.y4f{bottom:144.666667pt;}
.y14d{bottom:146.106667pt;}
.y8c{bottom:151.386667pt;}
.yd9{bottom:154.426667pt;}
.y10a{bottom:155.706667pt;}
.y39{bottom:156.680000pt;}
.y4e{bottom:159.866667pt;}
.y14c{bottom:161.466667pt;}
.y11{bottom:165.320000pt;}
.y8b{bottom:166.746667pt;}
.yd8{bottom:170.106667pt;}
.y38{bottom:172.040000pt;}
.ya4{bottom:174.746667pt;}
.y4d{bottom:175.226667pt;}
.y14b{bottom:176.666667pt;}
.y8a{bottom:182.106667pt;}
.yd7{bottom:182.746667pt;}
.y109{bottom:186.746667pt;}
.y10{bottom:187.240000pt;}
.ya3{bottom:190.106667pt;}
.y4c{bottom:190.586667pt;}
.y14a{bottom:192.026667pt;}
.y2b{bottom:193.000000pt;}
.y89{bottom:197.466667pt;}
.yd6{bottom:198.746667pt;}
.y108{bottom:202.106667pt;}
.y37{bottom:202.600000pt;}
.ya2{bottom:205.466667pt;}
.y4b{bottom:205.946667pt;}
.y2a{bottom:206.600000pt;}
.y149{bottom:207.386667pt;}
.y88{bottom:212.826667pt;}
.yd5{bottom:214.746667pt;}
.y36{bottom:217.960000pt;}
.ya1{bottom:218.106667pt;}
.y4a{bottom:221.306667pt;}
.y29{bottom:222.600000pt;}
.y148{bottom:222.746667pt;}
.y87{bottom:228.026667pt;}
.yd4{bottom:230.746667pt;}
.y35{bottom:233.320000pt;}
.ya0{bottom:234.106667pt;}
.y49{bottom:236.186667pt;}
.y28{bottom:237.960000pt;}
.y147{bottom:238.106667pt;}
.y86{bottom:243.386667pt;}
.y107{bottom:246.746667pt;}
.y34{bottom:248.706667pt;}
.y9f{bottom:250.106667pt;}
.y48{bottom:251.866667pt;}
.y27{bottom:253.346667pt;}
.y146{bottom:253.466667pt;}
.y85{bottom:258.746667pt;}
.y106{bottom:262.746667pt;}
.y43{bottom:263.866667pt;}
.y33{bottom:264.066667pt;}
.yd3{bottom:265.146667pt;}
.y9e{bottom:266.106667pt;}
.y145{bottom:268.666667pt;}
.y26{bottom:268.866667pt;}
.y84{bottom:274.106667pt;}
.y105{bottom:278.746667pt;}
.y32{bottom:279.266667pt;}
.yd2{bottom:280.826667pt;}
.y9d{bottom:282.106667pt;}
.y144{bottom:284.026667pt;}
.y25{bottom:284.226667pt;}
.y83{bottom:289.466667pt;}
.yd1{bottom:293.466667pt;}
.y31{bottom:294.626667pt;}
.y104{bottom:294.746667pt;}
.y1f{bottom:296.506667pt;}
.y9c{bottom:298.106667pt;}
.y143{bottom:299.426667pt;}
.y24{bottom:299.746667pt;}
.y82{bottom:304.866667pt;}
.yd0{bottom:309.506667pt;}
.y30{bottom:309.986667pt;}
.y9b{bottom:314.146667pt;}
.y142{bottom:314.786667pt;}
.y23{bottom:315.106667pt;}
.y81{bottom:320.066667pt;}
.y2f{bottom:325.346667pt;}
.ycf{bottom:325.506667pt;}
.y103{bottom:329.506667pt;}
.y9a{bottom:330.146667pt;}
.y22{bottom:333.186667pt;}
.y80{bottom:335.426667pt;}
.y2e{bottom:340.706667pt;}
.yce{bottom:341.506667pt;}
.y102{bottom:344.866667pt;}
.y141{bottom:345.506667pt;}
.y99{bottom:346.146667pt;}
.y7f{bottom:350.786667pt;}
.y2d{bottom:356.066667pt;}
.y101{bottom:357.506667pt;}
.y21{bottom:357.666667pt;}
.y140{bottom:360.706667pt;}
.y97{bottom:362.146667pt;}
.y7e{bottom:366.146667pt;}
.y2c{bottom:371.266667pt;}
.y20{bottom:373.186667pt;}
.y100{bottom:373.506667pt;}
.ycd{bottom:376.066667pt;}
.y7d{bottom:381.506667pt;}
.yff{bottom:389.506667pt;}
.ycc{bottom:391.426667pt;}
.y96{bottom:396.386667pt;}
.y7c{bottom:396.706667pt;}
.ycb{bottom:404.066667pt;}
.yfe{bottom:405.506667pt;}
.y13f{bottom:406.786667pt;}
.y7b{bottom:412.066667pt;}
.yca{bottom:420.066667pt;}
.yfd{bottom:421.506667pt;}
.y13e{bottom:422.146667pt;}
.y7a{bottom:427.426667pt;}
.yc9{bottom:436.066667pt;}
.y13d{bottom:437.346667pt;}
.yfc{bottom:437.506667pt;}
.y79{bottom:442.786667pt;}
.y12a{bottom:443.746667pt;}
.yc8{bottom:452.066667pt;}
.y13c{bottom:452.706667pt;}
.y78{bottom:458.146667pt;}
.y129{bottom:458.786667pt;}
.y13b{bottom:468.066667pt;}
.y128{bottom:471.266667pt;}
.yfb{bottom:472.066667pt;}
.y95{bottom:473.186667pt;}
.y77{bottom:473.506667pt;}
.y13a{bottom:483.426667pt;}
.y121{bottom:486.146667pt;}
.yc7{bottom:486.786667pt;}
.yfa{bottom:487.426667pt;}
.y76{bottom:488.706667pt;}
.y139{bottom:498.786667pt;}
.y120{bottom:501.506667pt;}
.yc6{bottom:502.146667pt;}
.yf9{bottom:502.786667pt;}
.y75{bottom:504.066667pt;}
.y11f{bottom:514.146667pt;}
.yf8{bottom:515.426667pt;}
.yc5{bottom:517.506667pt;}
.y74{bottom:519.426667pt;}
.y138{bottom:529.346667pt;}
.yc4{bottom:530.146667pt;}
.yf7{bottom:531.426667pt;}
.y94{bottom:534.466667pt;}
.y73{bottom:534.786667pt;}
.y137{bottom:544.733333pt;}
.yc3{bottom:546.173333pt;}
.yf6{bottom:547.453333pt;}
.y72{bottom:550.173333pt;}
.y136{bottom:560.093333pt;}
.yc2{bottom:562.173333pt;}
.yf5{bottom:563.453333pt;}
.y71{bottom:565.533333pt;}
.y135{bottom:575.453333pt;}
.yc1{bottom:578.173333pt;}
.yf4{bottom:579.453333pt;}
.y70{bottom:580.733333pt;}
.y134{bottom:590.813333pt;}
.yc0{bottom:594.173333pt;}
.yf3{bottom:595.453333pt;}
.y6f{bottom:596.093333pt;}
.y133{bottom:606.173333pt;}
.ybf{bottom:610.173333pt;}
.y6e{bottom:611.453333pt;}
.y132{bottom:621.373333pt;}
.ybe{bottom:626.173333pt;}
.y6d{bottom:626.813333pt;}
.y11e{bottom:628.733333pt;}
.yf2{bottom:630.173333pt;}
.y131{bottom:636.413333pt;}
.y6c{bottom:642.173333pt;}
.y11d{bottom:644.093333pt;}
.yf1{bottom:645.533333pt;}
.y130{bottom:652.093333pt;}
.y11c{bottom:656.733333pt;}
.y93{bottom:657.213333pt;}
.y6b{bottom:657.533333pt;}
.yf0{bottom:658.173333pt;}
.y12f{bottom:667.133333pt;}
.y6a{bottom:672.733333pt;}
.yef{bottom:674.173333pt;}
.ybd{bottom:676.733333pt;}
.y12e{bottom:679.613333pt;}
.y1c{bottom:679.773333pt;}
.y69{bottom:688.093333pt;}
.y11b{bottom:688.733333pt;}
.yee{bottom:690.173333pt;}
.ybc{bottom:692.093333pt;}
.y151{bottom:703.133333pt;}
.y68{bottom:703.453333pt;}
.ybb{bottom:704.733333pt;}
.yf{bottom:706.173333pt;}
.y127{bottom:712.093333pt;}
.y67{bottom:718.813333pt;}
.yba{bottom:720.733333pt;}
.yed{bottom:722.173333pt;}
.y126{bottom:727.133333pt;}
.y66{bottom:734.173333pt;}
.yb9{bottom:736.733333pt;}
.yec{bottom:738.173333pt;}
.y125{bottom:739.453333pt;}
.y65{bottom:749.373333pt;}
.yb8{bottom:752.733333pt;}
.y64{bottom:764.733333pt;}
.yb7{bottom:768.733333pt;}
.y11a{bottom:771.453333pt;}
.yeb{bottom:772.733333pt;}
.y63{bottom:780.133333pt;}
.yb6{bottom:784.773333pt;}
.y119{bottom:786.853333pt;}
.yea{bottom:788.133333pt;}
.y62{bottom:795.493333pt;}
.y118{bottom:799.493333pt;}
.yb5{bottom:800.773333pt;}
.ye9{bottom:803.493333pt;}
.y61{bottom:810.853333pt;}
.y117{bottom:815.493333pt;}
.ye8{bottom:816.133333pt;}
.yb4{bottom:819.813333pt;}
.y150{bottom:825.893333pt;}
.y60{bottom:826.213333pt;}
.y116{bottom:831.493333pt;}
.ye7{bottom:832.133333pt;}
.y5f{bottom:841.413333pt;}
.y115{bottom:847.493333pt;}
.ye6{bottom:848.133333pt;}
.yb3{bottom:850.853333pt;}
.y5e{bottom:856.773333pt;}
.y114{bottom:863.493333pt;}
.ye5{bottom:864.133333pt;}
.yb2{bottom:866.213333pt;}
.y92{bottom:871.813333pt;}
.y5d{bottom:872.133333pt;}
.yb1{bottom:878.853333pt;}
.y113{bottom:879.493333pt;}
.ye4{bottom:880.133333pt;}
.y5c{bottom:887.493333pt;}
.yb0{bottom:894.853333pt;}
.ye3{bottom:896.133333pt;}
.y5b{bottom:902.853333pt;}
.yd{bottom:907.013333pt;}
.yaf{bottom:910.853333pt;}
.ye2{bottom:912.133333pt;}
.y112{bottom:914.213333pt;}
.y5a{bottom:918.213333pt;}
.yae{bottom:926.853333pt;}
.ye0{bottom:928.133333pt;}
.y6{bottom:929.413333pt;}
.y59{bottom:933.413333pt;}
.yad{bottom:942.853333pt;}
.y111{bottom:944.773333pt;}
.y58{bottom:948.773333pt;}
.y110{bottom:957.413333pt;}
.ydf{bottom:962.533333pt;}
.y91{bottom:963.813333pt;}
.y57{bottom:964.133333pt;}
.y10f{bottom:973.413333pt;}
.yac{bottom:977.413333pt;}
.y56{bottom:979.493333pt;}
.y10e{bottom:989.413333pt;}
.yab{bottom:992.773333pt;}
.yde{bottom:993.093333pt;}
.y55{bottom:994.853333pt;}
.yaa{bottom:1005.413333pt;}
.ydd{bottom:1008.773333pt;}
.y54{bottom:1010.213333pt;}
.ya9{bottom:1021.440000pt;}
.y12d{bottom:1025.120000pt;}
.y53{bottom:1025.440000pt;}
.h25{height:15.200000pt;}
.h22{height:15.360000pt;}
.h23{height:15.392000pt;}
.hc{height:22.080000pt;}
.h13{height:25.750000pt;}
.h14{height:26.400000pt;}
.h2{height:29.312000pt;}
.h26{height:30.560000pt;}
.h24{height:30.720000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1e{height:32.640000pt;}
.h1b{height:34.505000pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h19{height:40.685000pt;}
.h17{height:42.649687pt;}
.h1f{height:42.745000pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h1a{height:52.108438pt;}
.h1d{height:52.134375pt;}
.h10{height:52.834688pt;}
.h1c{height:53.535000pt;}
.h11{height:54.390938pt;}
.h21{height:54.598989pt;}
.h20{height:55.298750pt;}
.hf{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:200.826667pt;}
.h16{height:383.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w29{width:58.592000pt;}
.w3{width:66.560000pt;}
.wb{width:69.632000pt;}
.w25{width:71.392000pt;}
.w27{width:74.272000pt;}
.wf{width:75.392000pt;}
.wd{width:78.912000pt;}
.w34{width:87.360000pt;}
.w35{width:95.712000pt;}
.w28{width:97.600000pt;}
.w33{width:97.632000pt;}
.w26{width:97.760000pt;}
.w32{width:99.232000pt;}
.we{width:102.400000pt;}
.w10{width:106.880000pt;}
.wc{width:108.160000pt;}
.w2a{width:109.920000pt;}
.wa{width:118.432000pt;}
.w36{width:123.200000pt;}
.w5{width:138.106667pt;}
.w24{width:150.106667pt;}
.w31{width:157.306667pt;}
.w19{width:160.506667pt;}
.w16{width:162.586667pt;}
.w1c{width:173.946667pt;}
.w18{width:174.906667pt;}
.w39{width:177.786667pt;}
.w11{width:188.706667pt;}
.w2c{width:193.146667pt;}
.w8{width:196.386667pt;}
.w1f{width:198.146667pt;}
.w2f{width:199.906667pt;}
.w38{width:201.306667pt;}
.w13{width:209.506667pt;}
.w2e{width:210.906667pt;}
.w21{width:220.546667pt;}
.w22{width:220.826667pt;}
.w23{width:220.986667pt;}
.w14{width:226.426667pt;}
.w30{width:231.226667pt;}
.w20{width:232.026667pt;}
.w12{width:236.826667pt;}
.w2d{width:240.546667pt;}
.w1e{width:244.186667pt;}
.w1d{width:244.226667pt;}
.w1b{width:250.906667pt;}
.w1a{width:250.946667pt;}
.w2b{width:275.746667pt;}
.w37{width:283.266667pt;}
.w17{width:312.546667pt;}
.w15{width:337.026667pt;}
.w9{width:467.906667pt;}
.w6{width:526.173333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.720000pt;}
.x2{left:7.680000pt;}
.x16{left:11.200000pt;}
.xc{left:22.912000pt;}
.xe{left:48.352000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x17{left:95.871988pt;}
.x11{left:141.466667pt;}
.x10{left:152.346667pt;}
.x12{left:156.346667pt;}
.x13{left:163.866667pt;}
.xd{left:179.226667pt;}
.x18{left:184.186667pt;}
.x14{left:191.266667pt;}
.x6{left:202.906667pt;}
.x47{left:204.026655pt;}
.x40{left:207.706655pt;}
.x2f{left:215.866667pt;}
.x39{left:223.066667pt;}
.x26{left:226.266667pt;}
.x49{left:228.666655pt;}
.x28{left:239.706667pt;}
.x9{left:253.346667pt;}
.x19{left:254.466667pt;}
.x15{left:261.186667pt;}
.x2a{left:264.066667pt;}
.x38{left:265.666667pt;}
.x1f{left:275.266667pt;}
.x42{left:281.026655pt;}
.x2c{left:286.306667pt;}
.x30{left:287.906667pt;}
.xf{left:293.986667pt;}
.x45{left:297.506655pt;}
.x7{left:306.466667pt;}
.x2e{left:321.026655pt;}
.x8{left:323.586667pt;}
.xb{left:332.066667pt;}
.x35{left:341.666667pt;}
.x3d{left:349.026667pt;}
.x1a{left:363.266667pt;}
.x21{left:368.386655pt;}
.x24{left:378.306667pt;}
.x31{left:386.306667pt;}
.x43{left:396.866655pt;}
.xa{left:402.026667pt;}
.x3a{left:421.213333pt;}
.x1b{left:442.813333pt;}
.x32{left:461.213333pt;}
.x27{left:477.853333pt;}
.x29{left:484.573333pt;}
.x1e{left:491.933333pt;}
.x2b{left:496.733333pt;}
.x20{left:502.333333pt;}
.x2d{left:507.773333pt;}
.x3b{left:509.213333pt;}
.x37{left:517.853333pt;}
.x36{left:535.613333pt;}
.x46{left:540.253322pt;}
.x41{left:543.613322pt;}
.x1c{left:545.853333pt;}
.x3e{left:550.973333pt;}
.x25{left:553.853333pt;}
.x48{left:557.533322pt;}
.x33{left:559.613333pt;}
.x22{left:566.173333pt;}
.x44{left:579.933322pt;}
.x3c{left:605.573333pt;}
.x3f{left:616.933322pt;}
.x34{left:618.853333pt;}
.x1d{left:621.893333pt;}
.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; }
  