
    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_731595dbc71a3d3d8723081a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_356a08d4edcd65396fe9fbb9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006836;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_ec152cc1b984e83c70ed6fab.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_e2a282b715fe9360c8e31f71.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.011230;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_c2bf414ed81af4f2da2ba28e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3c271dd7f19d93a224df6b07.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b05c45093ef3d50b4a166092.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fdf59afe5220a1d12d9212e6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_65de0f4e0c6438117bfda0eb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0ae2626abcf70eed5c5d4904.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.978027;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_0986f7fce95ca50d3f5f2419.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.100098;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_fbd68e99aba47023daa0f318.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.100098;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_6193fc93719873dbca485474.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3d7a20f6ea16731ba4f22e58.woff2')format("woff");}.fff{font-family:fff;line-height:1.063477;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:-20.880000px;}
.v9{vertical-align:-12.240000px;}
.v5{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:8.640000px;}
.va{vertical-align:12.240000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v8{vertical-align:30.240000px;}
.v4{vertical-align:35.280000px;}
.v6{vertical-align:38.880000px;}
.vb{vertical-align:47.520000px;}
.ls6{letter-spacing:-0.774000px;}
.ls5{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls2b{letter-spacing:-0.206400px;}
.ls24{letter-spacing:-0.106800px;}
.ls28{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.012960px;}
.lsb{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.197280px;}
.ls25{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.298800px;}
.ls23{letter-spacing:0.301200px;}
.ls27{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.311040px;}
.ls1{letter-spacing:0.360000px;}
.ls1c{letter-spacing:1.620000px;}
.lsf{letter-spacing:2.052000px;}
.ls11{letter-spacing:2.412000px;}
.ls16{letter-spacing:3.180960px;}
.ls18{letter-spacing:3.360960px;}
.ls2{letter-spacing:5.940000px;}
.ls19{letter-spacing:9.540000px;}
.ls13{letter-spacing:13.491360px;}
.ls17{letter-spacing:16.140960px;}
.ls10{letter-spacing:16.559280px;}
.ls2a{letter-spacing:16.650720px;}
.ls1b{letter-spacing:16.703280px;}
.ls12{letter-spacing:17.423280px;}
.ls1a{letter-spacing:19.740960px;}
.ls20{letter-spacing:21.108960px;}
.ls15{letter-spacing:22.500000px;}
.ls26{letter-spacing:22.599360px;}
.lse{letter-spacing:25.199280px;}
.ls3{letter-spacing:46.026720px;}
.ls29{letter-spacing:46.170720px;}
.lsd{letter-spacing:49.626720px;}
.ls22{letter-spacing:53.460000px;}
.ls1f{letter-spacing:56.106720px;}
.ls1d{letter-spacing:59.220000px;}
.ls1e{letter-spacing:182.340000px;}
.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;}
}
.wse{word-spacing:-59.772960px;}
.ws13{word-spacing:-59.760000px;}
.ws10{word-spacing:-46.811040px;}
.ws11{word-spacing:-46.800720px;}
.ws12{word-spacing:-46.400400px;}
.wsf{word-spacing:-46.080720px;}
.ws9{word-spacing:-41.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.238800px;}
.ws14{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.120000px;}
.ws6{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.940000px;}
.ws18{word-spacing:-14.886720px;}
.ws19{word-spacing:-14.733600px;}
.ws1a{word-spacing:-14.580000px;}
.ws16{word-spacing:-10.991232px;}
.ws15{word-spacing:-10.962000px;}
.ws2{word-spacing:-10.440000px;}
.wsb{word-spacing:-4.621680px;}
.ws5{word-spacing:0.000000px;}
.wsc{word-spacing:2.040480px;}
.ws8{word-spacing:2.204640px;}
.wsd{word-spacing:3.473280px;}
.ws17{word-spacing:435.438000px;}
._a{margin-left:-1782.548640px;}
._9{margin-left:-1507.660320px;}
._6{margin-left:-681.448320px;}
._b{margin-left:-429.840000px;}
._7{margin-left:-262.517760px;}
._11{margin-left:-232.839360px;}
._f{margin-left:-231.264000px;}
._d{margin-left:-149.016000px;}
._8{margin-left:-140.955840px;}
._e{margin-left:-115.200000px;}
._c{margin-left:-99.360000px;}
._17{margin-left:-10.680480px;}
._27{margin-left:-7.764000px;}
._16{margin-left:-6.205680px;}
._15{margin-left:-5.075280px;}
._1{margin-left:-3.116880px;}
._0{margin-left:-1.347840px;}
._2{width:1.374720px;}
._18{width:2.442480px;}
._1c{width:3.704880px;}
._21{width:5.199120px;}
._1e{width:6.464640px;}
._1a{width:7.888320px;}
._1d{width:8.904240px;}
._22{width:10.338240px;}
._1b{width:11.420400px;}
._19{width:13.143600px;}
._26{width:14.396400px;}
._1f{width:16.819440px;}
._10{width:18.216000px;}
._2a{width:19.959120px;}
._20{width:21.155040px;}
._2f{width:22.649040px;}
._31{width:27.111600px;}
._30{width:28.203120px;}
._2e{width:29.341920px;}
._2c{width:30.358080px;}
._2d{width:31.626480px;}
._29{width:38.453040px;}
._2b{width:43.496880px;}
._14{width:44.624160px;}
._13{width:45.739200px;}
._12{width:47.305440px;}
._28{width:68.556000px;}
._25{width:105.996000px;}
._23{width:183.041040px;}
._24{width:201.060000px;}
._4{width:337.140000px;}
._3{width:715.653600px;}
._5{width:1275.429120px;}
.fc5{color:rgb(15,36,62);}
.fc4{color:rgb(84,141,212);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(47,84,150);}
.fc1{color:rgb(5,99,193);}
.fc7{color:rgb(89,89,89);}
.fc6{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs9{font-size:54.144000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y29{bottom:5.760000px;}
.y86{bottom:5.790000px;}
.y7c{bottom:5.940000px;}
.y3c{bottom:8.280000px;}
.y6c{bottom:8.640000px;}
.y78{bottom:9.000000px;}
.y83{bottom:9.900000px;}
.y13{bottom:10.260000px;}
.y10f{bottom:15.660000px;}
.yea{bottom:18.180000px;}
.y109{bottom:18.360000px;}
.y6d{bottom:22.320000px;}
.y76{bottom:22.500000px;}
.y128{bottom:22.935000px;}
.y6{bottom:23.760000px;}
.y6b{bottom:25.200000px;}
.y28{bottom:25.560000px;}
.y77{bottom:25.740000px;}
.y3b{bottom:28.260000px;}
.y27{bottom:45.360000px;}
.y3a{bottom:48.060000px;}
.y5{bottom:52.380000px;}
.ya{bottom:61.380000px;}
.y11c{bottom:62.790000px;}
.y26{bottom:65.340000px;}
.y39{bottom:67.860000px;}
.y4{bottom:81.000000px;}
.y11d{bottom:83.235000px;}
.y25{bottom:85.140000px;}
.y38{bottom:87.660000px;}
.y165{bottom:89.280000px;}
.ycb{bottom:90.360000px;}
.y127{bottom:97.020000px;}
.y8{bottom:102.090000px;}
.y4c{bottom:102.240000px;}
.y11e{bottom:103.650000px;}
.y9d{bottom:104.040000px;}
.y24{bottom:104.940000px;}
.y37{bottom:107.460000px;}
.y164{bottom:109.080000px;}
.y3{bottom:109.650000px;}
.yca{bottom:110.160000px;}
.y11a{bottom:118.980000px;}
.y14b{bottom:119.340000px;}
.y4b{bottom:122.040000px;}
.y9c{bottom:124.020000px;}
.y11f{bottom:124.095000px;}
.y23{bottom:124.740000px;}
.y36{bottom:127.440000px;}
.y163{bottom:129.060000px;}
.yc9{bottom:130.140000px;}
.y14a{bottom:137.520000px;}
.y119{bottom:138.780000px;}
.y2{bottom:140.610000px;}
.y7{bottom:140.790000px;}
.y4a{bottom:141.840000px;}
.y9b{bottom:143.820000px;}
.y120{bottom:144.510000px;}
.y22{bottom:144.540000px;}
.y35{bottom:147.240000px;}
.yc8{bottom:148.860000px;}
.yc7{bottom:156.450000px;}
.y118{bottom:158.790000px;}
.y49{bottom:161.670000px;}
.y149{bottom:162.750000px;}
.y9a{bottom:163.650000px;}
.y21{bottom:164.520000px;}
.y121{bottom:164.910000px;}
.y34{bottom:167.040000px;}
.y162{bottom:168.690000px;}
.y117{bottom:178.590000px;}
.yc6{bottom:179.850000px;}
.y48{bottom:181.470000px;}
.y99{bottom:181.830000px;}
.y20{bottom:184.320000px;}
.y122{bottom:185.370000px;}
.y33{bottom:186.840000px;}
.y148{bottom:187.050000px;}
.y161{bottom:188.490000px;}
.y116{bottom:198.390000px;}
.yc5{bottom:199.650000px;}
.y47{bottom:201.450000px;}
.y1f{bottom:204.120000px;}
.y123{bottom:205.770000px;}
.y98{bottom:206.130000px;}
.y32{bottom:206.640000px;}
.y160{bottom:208.290000px;}
.y147{bottom:211.350000px;}
.y74{bottom:217.830000px;}
.y115{bottom:218.190000px;}
.yc4{bottom:219.630000px;}
.y46{bottom:221.250000px;}
.y1e{bottom:223.920000px;}
.y124{bottom:226.230000px;}
.y31{bottom:226.620000px;}
.y15f{bottom:228.090000px;}
.y97{bottom:230.430000px;}
.y146{bottom:235.650000px;}
.y73{bottom:237.630000px;}
.y114{bottom:237.990000px;}
.yc3{bottom:239.430000px;}
.y45{bottom:241.050000px;}
.y1d{bottom:243.750000px;}
.y30{bottom:246.450000px;}
.y125{bottom:246.630000px;}
.y15e{bottom:248.070000px;}
.yf5{bottom:252.210000px;}
.y96{bottom:254.910000px;}
.y72{bottom:257.430000px;}
.y113{bottom:257.970000px;}
.yc2{bottom:259.230000px;}
.y145{bottom:259.950000px;}
.y44{bottom:260.850000px;}
.y1c{bottom:263.730000px;}
.y2f{bottom:266.250000px;}
.y126{bottom:267.090000px;}
.y15d{bottom:267.870000px;}
.yf4{bottom:272.010000px;}
.y71{bottom:277.410000px;}
.y112{bottom:277.770000px;}
.yc1{bottom:279.030000px;}
.y95{bottom:279.210000px;}
.y43{bottom:280.650000px;}
.y1b{bottom:283.530000px;}
.y144{bottom:284.430000px;}
.y2e{bottom:286.050000px;}
.y15c{bottom:287.670000px;}
.yf3{bottom:290.190000px;}
.y70{bottom:297.210000px;}
.y111{bottom:297.570000px;}
.yc0{bottom:297.930000px;}
.y42{bottom:300.630000px;}
.y1a{bottom:303.330000px;}
.y94{bottom:303.510000px;}
.ybf{bottom:305.490000px;}
.y2d{bottom:305.850000px;}
.y15b{bottom:307.470000px;}
.y143{bottom:308.730000px;}
.yf2{bottom:314.490000px;}
.y110{bottom:315.750000px;}
.y6f{bottom:317.010000px;}
.y41{bottom:320.430000px;}
.y19{bottom:323.130000px;}
.y2c{bottom:325.830000px;}
.y15a{bottom:327.270000px;}
.y93{bottom:327.810000px;}
.ybe{bottom:328.890000px;}
.y6e{bottom:331.050000px;}
.y142{bottom:333.750000px;}
.yf1{bottom:338.790000px;}
.y10e{bottom:340.050000px;}
.y40{bottom:340.230000px;}
.y18{bottom:342.930000px;}
.y2b{bottom:345.630000px;}
.y159{bottom:347.250000px;}
.ybd{bottom:348.690000px;}
.y6a{bottom:350.850000px;}
.y92{bottom:352.110000px;}
.y3f{bottom:360.030000px;}
.y17{bottom:362.910000px;}
.yf0{bottom:363.090000px;}
.y141{bottom:363.450000px;}
.y2a{bottom:365.430000px;}
.y158{bottom:367.050000px;}
.ybc{bottom:368.490000px;}
.y91{bottom:376.590000px;}
.y3e{bottom:379.830000px;}
.y16{bottom:382.710000px;}
.y140{bottom:383.430000px;}
.y10d{bottom:384.150000px;}
.y157{bottom:386.850000px;}
.yef{bottom:387.570000px;}
.ybb{bottom:388.290000px;}
.y3d{bottom:399.810000px;}
.y90{bottom:400.935000px;}
.y15{bottom:402.510000px;}
.y13f{bottom:403.275000px;}
.y156{bottom:406.695000px;}
.yba{bottom:408.495000px;}
.y10c{bottom:408.675000px;}
.yee{bottom:411.915000px;}
.y14{bottom:414.615000px;}
.y13e{bottom:423.075000px;}
.y8f{bottom:425.235000px;}
.y155{bottom:426.495000px;}
.yb9{bottom:428.475000px;}
.y10b{bottom:432.975000px;}
.yed{bottom:436.215000px;}
.y13d{bottom:442.875000px;}
.y154{bottom:446.475000px;}
.yb8{bottom:448.275000px;}
.y8e{bottom:449.535000px;}
.y108{bottom:457.995000px;}
.yec{bottom:460.515000px;}
.y13c{bottom:462.675000px;}
.y153{bottom:466.275000px;}
.yb7{bottom:468.075000px;}
.y8d{bottom:473.835000px;}
.y13b{bottom:482.655000px;}
.y10a{bottom:483.195000px;}
.ye9{bottom:485.715000px;}
.y152{bottom:486.075000px;}
.yb6{bottom:488.055000px;}
.y8c{bottom:498.315000px;}
.y13a{bottom:502.455000px;}
.y151{bottom:505.875000px;}
.yb5{bottom:507.855000px;}
.yeb{bottom:510.735000px;}
.y107{bottom:512.895000px;}
.y139{bottom:522.255000px;}
.y8b{bottom:522.615000px;}
.y150{bottom:525.675000px;}
.yb4{bottom:527.655000px;}
.y106{bottom:532.695000px;}
.ye8{bottom:540.435000px;}
.yb3{bottom:544.395000px;}
.y14f{bottom:545.655000px;}
.y8a{bottom:546.915000px;}
.y138{bottom:551.055000px;}
.yb2{bottom:551.955000px;}
.y105{bottom:552.495000px;}
.ye7{bottom:560.235000px;}
.y14e{bottom:565.455000px;}
.y137{bottom:570.855000px;}
.y89{bottom:571.215000px;}
.y104{bottom:572.295000px;}
.yb1{bottom:575.895000px;}
.ye6{bottom:580.215000px;}
.y14d{bottom:585.255000px;}
.y136{bottom:590.835000px;}
.y103{bottom:592.275000px;}
.y88{bottom:595.515000px;}
.yb0{bottom:595.695000px;}
.ye5{bottom:600.015000px;}
.y14c{bottom:605.055000px;}
.y135{bottom:610.635000px;}
.y102{bottom:612.075000px;}
.yaf{bottom:615.675000px;}
.ye4{bottom:619.815000px;}
.y87{bottom:619.995000px;}
.y69{bottom:624.855000px;}
.y134{bottom:630.435000px;}
.y101{bottom:631.875000px;}
.yae{bottom:635.475000px;}
.y85{bottom:644.295000px;}
.y68{bottom:644.835000px;}
.ye3{bottom:648.615000px;}
.y100{bottom:651.705000px;}
.yad{bottom:655.305000px;}
.y67{bottom:664.665000px;}
.ye2{bottom:668.445000px;}
.y84{bottom:668.625000px;}
.yff{bottom:671.505000px;}
.y133{bottom:672.945000px;}
.yac{bottom:675.105000px;}
.y66{bottom:684.465000px;}
.ye1{bottom:688.425000px;}
.yfe{bottom:691.485000px;}
.yab{bottom:691.845000px;}
.y82{bottom:692.925000px;}
.y132{bottom:697.245000px;}
.yaa{bottom:699.405000px;}
.y65{bottom:704.265000px;}
.ye0{bottom:708.225000px;}
.yfd{bottom:711.285000px;}
.y81{bottom:717.225000px;}
.y131{bottom:721.725000px;}
.ya9{bottom:722.985000px;}
.y64{bottom:724.065000px;}
.ydf{bottom:728.025000px;}
.yfc{bottom:731.085000px;}
.y80{bottom:741.705000px;}
.ya8{bottom:742.785000px;}
.y63{bottom:744.045000px;}
.y130{bottom:746.025000px;}
.yde{bottom:747.825000px;}
.yfb{bottom:750.885000px;}
.ya7{bottom:762.585000px;}
.y62{bottom:763.845000px;}
.y7f{bottom:766.005000px;}
.ydd{bottom:767.625000px;}
.y12f{bottom:770.325000px;}
.yfa{bottom:770.685000px;}
.ya6{bottom:782.385000px;}
.y61{bottom:783.645000px;}
.ydc{bottom:787.605000px;}
.y7e{bottom:790.305000px;}
.yf9{bottom:790.665000px;}
.y12e{bottom:794.625000px;}
.ya5{bottom:802.185000px;}
.y60{bottom:803.445000px;}
.ydb{bottom:807.405000px;}
.yf8{bottom:810.465000px;}
.y7d{bottom:814.605000px;}
.y12d{bottom:818.925000px;}
.ya4{bottom:822.165000px;}
.y5f{bottom:823.245000px;}
.yda{bottom:827.205000px;}
.yf7{bottom:830.265000px;}
.y12{bottom:831.885000px;}
.y7b{bottom:839.625000px;}
.ya3{bottom:842.865000px;}
.y5e{bottom:843.225000px;}
.y12c{bottom:844.125000px;}
.yd9{bottom:847.005000px;}
.yf6{bottom:850.065000px;}
.ya2{bottom:850.425000px;}
.y5d{bottom:863.025000px;}
.yd8{bottom:866.805000px;}
.y11{bottom:867.345000px;}
.y11b{bottom:867.600000px;}
.y7a{bottom:870.225000px;}
.ya1{bottom:873.825000px;}
.y5c{bottom:882.825000px;}
.yd7{bottom:886.785000px;}
.y10{bottom:887.145000px;}
.y79{bottom:890.025000px;}
.ya0{bottom:893.625000px;}
.y5b{bottom:902.670000px;}
.y75{bottom:904.110000px;}
.yd6{bottom:906.630000px;}
.yf{bottom:912.210000px;}
.y9f{bottom:913.470000px;}
.y5a{bottom:922.470000px;}
.yd5{bottom:926.430000px;}
.ye{bottom:927.330000px;}
.y9e{bottom:933.450000px;}
.y59{bottom:942.450000px;}
.yd4{bottom:943.170000px;}
.yd{bottom:948.750000px;}
.yd3{bottom:950.730000px;}
.y12b{bottom:953.250000px;}
.y58{bottom:962.250000px;}
.yc{bottom:972.150000px;}
.y12a{bottom:973.050000px;}
.yd2{bottom:974.130000px;}
.y57{bottom:982.050000px;}
.y129{bottom:992.850000px;}
.yd1{bottom:993.930000px;}
.y56{bottom:1001.850000px;}
.yb{bottom:1003.830000px;}
.yd0{bottom:1013.730000px;}
.y55{bottom:1021.650000px;}
.y9{bottom:1030.830000px;}
.ycf{bottom:1033.530000px;}
.y54{bottom:1041.630000px;}
.y1{bottom:1047.030000px;}
.yce{bottom:1053.510000px;}
.y53{bottom:1061.430000px;}
.ycd{bottom:1070.070000px;}
.ycc{bottom:1077.630000px;}
.y52{bottom:1081.230000px;}
.y51{bottom:1101.030000px;}
.y50{bottom:1120.830000px;}
.y4f{bottom:1140.810000px;}
.y4e{bottom:1170.540000px;}
.y4d{bottom:1193.580000px;}
.h14{height:19.800000px;}
.h17{height:19.836000px;}
.h16{height:19.980000px;}
.h20{height:20.016000px;}
.hb{height:27.147656px;}
.hd{height:28.800000px;}
.h21{height:39.600000px;}
.hc{height:41.726953px;}
.h9{height:42.164648px;}
.h11{height:43.506914px;}
.h1e{height:44.820000px;}
.h1f{height:45.000000px;}
.h10{height:45.549492px;}
.h23{height:46.801758px;}
.h24{height:46.926562px;}
.he{height:48.027656px;}
.h7{height:48.418594px;}
.h4{height:48.774375px;}
.h1c{height:50.364141px;}
.h12{height:51.706406px;}
.h25{height:51.793945px;}
.h5{height:53.015625px;}
.ha{height:53.224453px;}
.h6{height:57.410156px;}
.h3{height:62.028281px;}
.h1a{height:64.438594px;}
.h8{height:67.565039px;}
.h18{height:70.474219px;}
.h19{height:71.966953px;}
.h1b{height:80.604141px;}
.h1d{height:80.724141px;}
.h2{height:162.750000px;}
.h15{height:250.770000px;}
.h13{height:268.230000px;}
.h22{height:287.280000px;}
.hf{height:416.550000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1a{width:29.340000px;}
.w1f{width:52.020000px;}
.w19{width:60.480000px;}
.w17{width:61.416000px;}
.w18{width:61.560000px;}
.w1e{width:67.320000px;}
.w1d{width:69.336000px;}
.w16{width:72.180000px;}
.w10{width:82.800000px;}
.w13{width:89.820000px;}
.wd{width:90.000000px;}
.w11{width:92.376000px;}
.wf{width:93.456000px;}
.w3{width:129.636000px;}
.wc{width:168.870000px;}
.w7{width:181.650000px;}
.w1c{width:191.910000px;}
.w1b{width:242.130000px;}
.wa{width:262.470000px;}
.we{width:273.135000px;}
.wb{width:307.695000px;}
.w8{width:338.115000px;}
.w9{width:338.250000px;}
.w15{width:368.895000px;}
.w12{width:413.025000px;}
.w14{width:483.840000px;}
.w6{width:603.690000px;}
.w2{width:676.950000px;}
.w5{width:785.340000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:1.080000px;}
.x2{left:7.920000px;}
.x26{left:32.970000px;}
.x24{left:41.730000px;}
.x1{left:43.200000px;}
.x23{left:48.960000px;}
.x4{left:53.999987px;}
.x1d{left:56.340000px;}
.x31{left:59.039987px;}
.x10{left:80.999987px;}
.x32{left:86.075987px;}
.x13{left:91.115987px;}
.x15{left:96.875987px;}
.x14{left:99.035987px;}
.x11{left:101.015987px;}
.x7{left:108.035987px;}
.x12{left:110.195987px;}
.x2c{left:114.876000px;}
.x1c{left:129.635987px;}
.x2d{left:146.376000px;}
.x25{left:152.745000px;}
.xd{left:160.410000px;}
.x16{left:178.410000px;}
.x27{left:181.980000px;}
.x22{left:204.480000px;}
.x8{left:244.479000px;}
.xb{left:283.179000px;}
.xc{left:284.805000px;}
.xa{left:303.885000px;}
.x17{left:349.455000px;}
.x2e{left:390.675000px;}
.xf{left:425.055000px;}
.x18{left:441.615000px;}
.x9{left:446.505000px;}
.x1e{left:471.705000px;}
.x28{left:500.865000px;}
.x19{left:537.405000px;}
.x1f{left:563.685000px;}
.x29{left:575.385000px;}
.x2f{left:584.925000px;}
.x1a{left:622.365000px;}
.x2a{left:639.150000px;}
.x6{left:657.510000px;}
.x20{left:659.490000px;}
.x1b{left:688.469987px;}
.x2b{left:702.870000px;}
.x3{left:720.150000px;}
.x30{left:726.270000px;}
.x5{left:727.529987px;}
.x21{left:744.450000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v9{vertical-align:-10.880000pt;}
.v5{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:7.680000pt;}
.va{vertical-align:10.880000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v8{vertical-align:26.880000pt;}
.v4{vertical-align:31.360000pt;}
.v6{vertical-align:34.560000pt;}
.vb{vertical-align:42.240000pt;}
.ls6{letter-spacing:-0.688000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls2b{letter-spacing:-0.183467pt;}
.ls24{letter-spacing:-0.094933pt;}
.ls28{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.011520pt;}
.lsb{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.175360pt;}
.ls25{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.265600pt;}
.ls23{letter-spacing:0.267733pt;}
.ls27{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.276480pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:1.440000pt;}
.lsf{letter-spacing:1.824000pt;}
.ls11{letter-spacing:2.144000pt;}
.ls16{letter-spacing:2.827520pt;}
.ls18{letter-spacing:2.987520pt;}
.ls2{letter-spacing:5.280000pt;}
.ls19{letter-spacing:8.480000pt;}
.ls13{letter-spacing:11.992320pt;}
.ls17{letter-spacing:14.347520pt;}
.ls10{letter-spacing:14.719360pt;}
.ls2a{letter-spacing:14.800640pt;}
.ls1b{letter-spacing:14.847360pt;}
.ls12{letter-spacing:15.487360pt;}
.ls1a{letter-spacing:17.547520pt;}
.ls20{letter-spacing:18.763520pt;}
.ls15{letter-spacing:20.000000pt;}
.ls26{letter-spacing:20.088320pt;}
.lse{letter-spacing:22.399360pt;}
.ls3{letter-spacing:40.912640pt;}
.ls29{letter-spacing:41.040640pt;}
.lsd{letter-spacing:44.112640pt;}
.ls22{letter-spacing:47.520000pt;}
.ls1f{letter-spacing:49.872640pt;}
.ls1d{letter-spacing:52.640000pt;}
.ls1e{letter-spacing:162.080000pt;}
.wse{word-spacing:-53.131520pt;}
.ws13{word-spacing:-53.120000pt;}
.ws10{word-spacing:-41.609813pt;}
.ws11{word-spacing:-41.600640pt;}
.ws12{word-spacing:-41.244800pt;}
.wsf{word-spacing:-40.960640pt;}
.ws9{word-spacing:-37.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.545600pt;}
.ws14{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws18{word-spacing:-13.232640pt;}
.ws19{word-spacing:-13.096533pt;}
.ws1a{word-spacing:-12.960000pt;}
.ws16{word-spacing:-9.769984pt;}
.ws15{word-spacing:-9.744000pt;}
.ws2{word-spacing:-9.280000pt;}
.wsb{word-spacing:-4.108160pt;}
.ws5{word-spacing:0.000000pt;}
.wsc{word-spacing:1.813760pt;}
.ws8{word-spacing:1.959680pt;}
.wsd{word-spacing:3.087360pt;}
.ws17{word-spacing:387.056000pt;}
._a{margin-left:-1584.487680pt;}
._9{margin-left:-1340.142507pt;}
._6{margin-left:-605.731840pt;}
._b{margin-left:-382.080000pt;}
._7{margin-left:-233.349120pt;}
._11{margin-left:-206.968320pt;}
._f{margin-left:-205.568000pt;}
._d{margin-left:-132.458667pt;}
._8{margin-left:-125.294080pt;}
._e{margin-left:-102.400000pt;}
._c{margin-left:-88.320000pt;}
._17{margin-left:-9.493760pt;}
._27{margin-left:-6.901333pt;}
._16{margin-left:-5.516160pt;}
._15{margin-left:-4.511360pt;}
._1{margin-left:-2.770560pt;}
._0{margin-left:-1.198080pt;}
._2{width:1.221973pt;}
._18{width:2.171093pt;}
._1c{width:3.293227pt;}
._21{width:4.621440pt;}
._1e{width:5.746347pt;}
._1a{width:7.011840pt;}
._1d{width:7.914880pt;}
._22{width:9.189547pt;}
._1b{width:10.151467pt;}
._19{width:11.683200pt;}
._26{width:12.796800pt;}
._1f{width:14.950613pt;}
._10{width:16.192000pt;}
._2a{width:17.741440pt;}
._20{width:18.804480pt;}
._2f{width:20.132480pt;}
._31{width:24.099200pt;}
._30{width:25.069440pt;}
._2e{width:26.081707pt;}
._2c{width:26.984960pt;}
._2d{width:28.112427pt;}
._29{width:34.180480pt;}
._2b{width:38.663893pt;}
._14{width:39.665920pt;}
._13{width:40.657067pt;}
._12{width:42.049280pt;}
._28{width:60.938667pt;}
._25{width:94.218667pt;}
._23{width:162.703147pt;}
._24{width:178.720000pt;}
._4{width:299.680000pt;}
._3{width:636.136533pt;}
._5{width:1133.714773pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs9{font-size:48.128000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:5.120000pt;}
.y86{bottom:5.146667pt;}
.y7c{bottom:5.280000pt;}
.y3c{bottom:7.360000pt;}
.y6c{bottom:7.680000pt;}
.y78{bottom:8.000000pt;}
.y83{bottom:8.800000pt;}
.y13{bottom:9.120000pt;}
.y10f{bottom:13.920000pt;}
.yea{bottom:16.160000pt;}
.y109{bottom:16.320000pt;}
.y6d{bottom:19.840000pt;}
.y76{bottom:20.000000pt;}
.y128{bottom:20.386667pt;}
.y6{bottom:21.120000pt;}
.y6b{bottom:22.400000pt;}
.y28{bottom:22.720000pt;}
.y77{bottom:22.880000pt;}
.y3b{bottom:25.120000pt;}
.y27{bottom:40.320000pt;}
.y3a{bottom:42.720000pt;}
.y5{bottom:46.560000pt;}
.ya{bottom:54.560000pt;}
.y11c{bottom:55.813333pt;}
.y26{bottom:58.080000pt;}
.y39{bottom:60.320000pt;}
.y4{bottom:72.000000pt;}
.y11d{bottom:73.986667pt;}
.y25{bottom:75.680000pt;}
.y38{bottom:77.920000pt;}
.y165{bottom:79.360000pt;}
.ycb{bottom:80.320000pt;}
.y127{bottom:86.240000pt;}
.y8{bottom:90.746667pt;}
.y4c{bottom:90.880000pt;}
.y11e{bottom:92.133333pt;}
.y9d{bottom:92.480000pt;}
.y24{bottom:93.280000pt;}
.y37{bottom:95.520000pt;}
.y164{bottom:96.960000pt;}
.y3{bottom:97.466667pt;}
.yca{bottom:97.920000pt;}
.y11a{bottom:105.760000pt;}
.y14b{bottom:106.080000pt;}
.y4b{bottom:108.480000pt;}
.y9c{bottom:110.240000pt;}
.y11f{bottom:110.306667pt;}
.y23{bottom:110.880000pt;}
.y36{bottom:113.280000pt;}
.y163{bottom:114.720000pt;}
.yc9{bottom:115.680000pt;}
.y14a{bottom:122.240000pt;}
.y119{bottom:123.360000pt;}
.y2{bottom:124.986667pt;}
.y7{bottom:125.146667pt;}
.y4a{bottom:126.080000pt;}
.y9b{bottom:127.840000pt;}
.y120{bottom:128.453333pt;}
.y22{bottom:128.480000pt;}
.y35{bottom:130.880000pt;}
.yc8{bottom:132.320000pt;}
.yc7{bottom:139.066667pt;}
.y118{bottom:141.146667pt;}
.y49{bottom:143.706667pt;}
.y149{bottom:144.666667pt;}
.y9a{bottom:145.466667pt;}
.y21{bottom:146.240000pt;}
.y121{bottom:146.586667pt;}
.y34{bottom:148.480000pt;}
.y162{bottom:149.946667pt;}
.y117{bottom:158.746667pt;}
.yc6{bottom:159.866667pt;}
.y48{bottom:161.306667pt;}
.y99{bottom:161.626667pt;}
.y20{bottom:163.840000pt;}
.y122{bottom:164.773333pt;}
.y33{bottom:166.080000pt;}
.y148{bottom:166.266667pt;}
.y161{bottom:167.546667pt;}
.y116{bottom:176.346667pt;}
.yc5{bottom:177.466667pt;}
.y47{bottom:179.066667pt;}
.y1f{bottom:181.440000pt;}
.y123{bottom:182.906667pt;}
.y98{bottom:183.226667pt;}
.y32{bottom:183.680000pt;}
.y160{bottom:185.146667pt;}
.y147{bottom:187.866667pt;}
.y74{bottom:193.626667pt;}
.y115{bottom:193.946667pt;}
.yc4{bottom:195.226667pt;}
.y46{bottom:196.666667pt;}
.y1e{bottom:199.040000pt;}
.y124{bottom:201.093333pt;}
.y31{bottom:201.440000pt;}
.y15f{bottom:202.746667pt;}
.y97{bottom:204.826667pt;}
.y146{bottom:209.466667pt;}
.y73{bottom:211.226667pt;}
.y114{bottom:211.546667pt;}
.yc3{bottom:212.826667pt;}
.y45{bottom:214.266667pt;}
.y1d{bottom:216.666667pt;}
.y30{bottom:219.066667pt;}
.y125{bottom:219.226667pt;}
.y15e{bottom:220.506667pt;}
.yf5{bottom:224.186667pt;}
.y96{bottom:226.586667pt;}
.y72{bottom:228.826667pt;}
.y113{bottom:229.306667pt;}
.yc2{bottom:230.426667pt;}
.y145{bottom:231.066667pt;}
.y44{bottom:231.866667pt;}
.y1c{bottom:234.426667pt;}
.y2f{bottom:236.666667pt;}
.y126{bottom:237.413333pt;}
.y15d{bottom:238.106667pt;}
.yf4{bottom:241.786667pt;}
.y71{bottom:246.586667pt;}
.y112{bottom:246.906667pt;}
.yc1{bottom:248.026667pt;}
.y95{bottom:248.186667pt;}
.y43{bottom:249.466667pt;}
.y1b{bottom:252.026667pt;}
.y144{bottom:252.826667pt;}
.y2e{bottom:254.266667pt;}
.y15c{bottom:255.706667pt;}
.yf3{bottom:257.946667pt;}
.y70{bottom:264.186667pt;}
.y111{bottom:264.506667pt;}
.yc0{bottom:264.826667pt;}
.y42{bottom:267.226667pt;}
.y1a{bottom:269.626667pt;}
.y94{bottom:269.786667pt;}
.ybf{bottom:271.546667pt;}
.y2d{bottom:271.866667pt;}
.y15b{bottom:273.306667pt;}
.y143{bottom:274.426667pt;}
.yf2{bottom:279.546667pt;}
.y110{bottom:280.666667pt;}
.y6f{bottom:281.786667pt;}
.y41{bottom:284.826667pt;}
.y19{bottom:287.226667pt;}
.y2c{bottom:289.626667pt;}
.y15a{bottom:290.906667pt;}
.y93{bottom:291.386667pt;}
.ybe{bottom:292.346667pt;}
.y6e{bottom:294.266667pt;}
.y142{bottom:296.666667pt;}
.yf1{bottom:301.146667pt;}
.y10e{bottom:302.266667pt;}
.y40{bottom:302.426667pt;}
.y18{bottom:304.826667pt;}
.y2b{bottom:307.226667pt;}
.y159{bottom:308.666667pt;}
.ybd{bottom:309.946667pt;}
.y6a{bottom:311.866667pt;}
.y92{bottom:312.986667pt;}
.y3f{bottom:320.026667pt;}
.y17{bottom:322.586667pt;}
.yf0{bottom:322.746667pt;}
.y141{bottom:323.066667pt;}
.y2a{bottom:324.826667pt;}
.y158{bottom:326.266667pt;}
.ybc{bottom:327.546667pt;}
.y91{bottom:334.746667pt;}
.y3e{bottom:337.626667pt;}
.y16{bottom:340.186667pt;}
.y140{bottom:340.826667pt;}
.y10d{bottom:341.466667pt;}
.y157{bottom:343.866667pt;}
.yef{bottom:344.506667pt;}
.ybb{bottom:345.146667pt;}
.y3d{bottom:355.386667pt;}
.y90{bottom:356.386667pt;}
.y15{bottom:357.786667pt;}
.y13f{bottom:358.466667pt;}
.y156{bottom:361.506667pt;}
.yba{bottom:363.106667pt;}
.y10c{bottom:363.266667pt;}
.yee{bottom:366.146667pt;}
.y14{bottom:368.546667pt;}
.y13e{bottom:376.066667pt;}
.y8f{bottom:377.986667pt;}
.y155{bottom:379.106667pt;}
.yb9{bottom:380.866667pt;}
.y10b{bottom:384.866667pt;}
.yed{bottom:387.746667pt;}
.y13d{bottom:393.666667pt;}
.y154{bottom:396.866667pt;}
.yb8{bottom:398.466667pt;}
.y8e{bottom:399.586667pt;}
.y108{bottom:407.106667pt;}
.yec{bottom:409.346667pt;}
.y13c{bottom:411.266667pt;}
.y153{bottom:414.466667pt;}
.yb7{bottom:416.066667pt;}
.y8d{bottom:421.186667pt;}
.y13b{bottom:429.026667pt;}
.y10a{bottom:429.506667pt;}
.ye9{bottom:431.746667pt;}
.y152{bottom:432.066667pt;}
.yb6{bottom:433.826667pt;}
.y8c{bottom:442.946667pt;}
.y13a{bottom:446.626667pt;}
.y151{bottom:449.666667pt;}
.yb5{bottom:451.426667pt;}
.yeb{bottom:453.986667pt;}
.y107{bottom:455.906667pt;}
.y139{bottom:464.226667pt;}
.y8b{bottom:464.546667pt;}
.y150{bottom:467.266667pt;}
.yb4{bottom:469.026667pt;}
.y106{bottom:473.506667pt;}
.ye8{bottom:480.386667pt;}
.yb3{bottom:483.906667pt;}
.y14f{bottom:485.026667pt;}
.y8a{bottom:486.146667pt;}
.y138{bottom:489.826667pt;}
.yb2{bottom:490.626667pt;}
.y105{bottom:491.106667pt;}
.ye7{bottom:497.986667pt;}
.y14e{bottom:502.626667pt;}
.y137{bottom:507.426667pt;}
.y89{bottom:507.746667pt;}
.y104{bottom:508.706667pt;}
.yb1{bottom:511.906667pt;}
.ye6{bottom:515.746667pt;}
.y14d{bottom:520.226667pt;}
.y136{bottom:525.186667pt;}
.y103{bottom:526.466667pt;}
.y88{bottom:529.346667pt;}
.yb0{bottom:529.506667pt;}
.ye5{bottom:533.346667pt;}
.y14c{bottom:537.826667pt;}
.y135{bottom:542.786667pt;}
.y102{bottom:544.066667pt;}
.yaf{bottom:547.266667pt;}
.ye4{bottom:550.946667pt;}
.y87{bottom:551.106667pt;}
.y69{bottom:555.426667pt;}
.y134{bottom:560.386667pt;}
.y101{bottom:561.666667pt;}
.yae{bottom:564.866667pt;}
.y85{bottom:572.706667pt;}
.y68{bottom:573.186667pt;}
.ye3{bottom:576.546667pt;}
.y100{bottom:579.293333pt;}
.yad{bottom:582.493333pt;}
.y67{bottom:590.813333pt;}
.ye2{bottom:594.173333pt;}
.y84{bottom:594.333333pt;}
.yff{bottom:596.893333pt;}
.y133{bottom:598.173333pt;}
.yac{bottom:600.093333pt;}
.y66{bottom:608.413333pt;}
.ye1{bottom:611.933333pt;}
.yfe{bottom:614.653333pt;}
.yab{bottom:614.973333pt;}
.y82{bottom:615.933333pt;}
.y132{bottom:619.773333pt;}
.yaa{bottom:621.693333pt;}
.y65{bottom:626.013333pt;}
.ye0{bottom:629.533333pt;}
.yfd{bottom:632.253333pt;}
.y81{bottom:637.533333pt;}
.y131{bottom:641.533333pt;}
.ya9{bottom:642.653333pt;}
.y64{bottom:643.613333pt;}
.ydf{bottom:647.133333pt;}
.yfc{bottom:649.853333pt;}
.y80{bottom:659.293333pt;}
.ya8{bottom:660.253333pt;}
.y63{bottom:661.373333pt;}
.y130{bottom:663.133333pt;}
.yde{bottom:664.733333pt;}
.yfb{bottom:667.453333pt;}
.ya7{bottom:677.853333pt;}
.y62{bottom:678.973333pt;}
.y7f{bottom:680.893333pt;}
.ydd{bottom:682.333333pt;}
.y12f{bottom:684.733333pt;}
.yfa{bottom:685.053333pt;}
.ya6{bottom:695.453333pt;}
.y61{bottom:696.573333pt;}
.ydc{bottom:700.093333pt;}
.y7e{bottom:702.493333pt;}
.yf9{bottom:702.813333pt;}
.y12e{bottom:706.333333pt;}
.ya5{bottom:713.053333pt;}
.y60{bottom:714.173333pt;}
.ydb{bottom:717.693333pt;}
.yf8{bottom:720.413333pt;}
.y7d{bottom:724.093333pt;}
.y12d{bottom:727.933333pt;}
.ya4{bottom:730.813333pt;}
.y5f{bottom:731.773333pt;}
.yda{bottom:735.293333pt;}
.yf7{bottom:738.013333pt;}
.y12{bottom:739.453333pt;}
.y7b{bottom:746.333333pt;}
.ya3{bottom:749.213333pt;}
.y5e{bottom:749.533333pt;}
.y12c{bottom:750.333333pt;}
.yd9{bottom:752.893333pt;}
.yf6{bottom:755.613333pt;}
.ya2{bottom:755.933333pt;}
.y5d{bottom:767.133333pt;}
.yd8{bottom:770.493333pt;}
.y11{bottom:770.973333pt;}
.y11b{bottom:771.200000pt;}
.y7a{bottom:773.533333pt;}
.ya1{bottom:776.733333pt;}
.y5c{bottom:784.733333pt;}
.yd7{bottom:788.253333pt;}
.y10{bottom:788.573333pt;}
.y79{bottom:791.133333pt;}
.ya0{bottom:794.333333pt;}
.y5b{bottom:802.373333pt;}
.y75{bottom:803.653333pt;}
.yd6{bottom:805.893333pt;}
.yf{bottom:810.853333pt;}
.y9f{bottom:811.973333pt;}
.y5a{bottom:819.973333pt;}
.yd5{bottom:823.493333pt;}
.ye{bottom:824.293333pt;}
.y9e{bottom:829.733333pt;}
.y59{bottom:837.733333pt;}
.yd4{bottom:838.373333pt;}
.yd{bottom:843.333333pt;}
.yd3{bottom:845.093333pt;}
.y12b{bottom:847.333333pt;}
.y58{bottom:855.333333pt;}
.yc{bottom:864.133333pt;}
.y12a{bottom:864.933333pt;}
.yd2{bottom:865.893333pt;}
.y57{bottom:872.933333pt;}
.y129{bottom:882.533333pt;}
.yd1{bottom:883.493333pt;}
.y56{bottom:890.533333pt;}
.yb{bottom:892.293333pt;}
.yd0{bottom:901.093333pt;}
.y55{bottom:908.133333pt;}
.y9{bottom:916.293333pt;}
.ycf{bottom:918.693333pt;}
.y54{bottom:925.893333pt;}
.y1{bottom:930.693333pt;}
.yce{bottom:936.453333pt;}
.y53{bottom:943.493333pt;}
.ycd{bottom:951.173333pt;}
.ycc{bottom:957.893333pt;}
.y52{bottom:961.093333pt;}
.y51{bottom:978.693333pt;}
.y50{bottom:996.293333pt;}
.y4f{bottom:1014.053333pt;}
.y4e{bottom:1040.480000pt;}
.y4d{bottom:1060.960000pt;}
.h14{height:17.600000pt;}
.h17{height:17.632000pt;}
.h16{height:17.760000pt;}
.h20{height:17.792000pt;}
.hb{height:24.131250pt;}
.hd{height:25.600000pt;}
.h21{height:35.200000pt;}
.hc{height:37.090625pt;}
.h9{height:37.479688pt;}
.h11{height:38.672812pt;}
.h1e{height:39.840000pt;}
.h1f{height:40.000000pt;}
.h10{height:40.488438pt;}
.h23{height:41.601562pt;}
.h24{height:41.712500pt;}
.he{height:42.691250pt;}
.h7{height:43.038750pt;}
.h4{height:43.355000pt;}
.h1c{height:44.768125pt;}
.h12{height:45.961250pt;}
.h25{height:46.039063pt;}
.h5{height:47.125000pt;}
.ha{height:47.310625pt;}
.h6{height:51.031250pt;}
.h3{height:55.136250pt;}
.h1a{height:57.278750pt;}
.h8{height:60.057813pt;}
.h18{height:62.643750pt;}
.h19{height:63.970625pt;}
.h1b{height:71.648125pt;}
.h1d{height:71.754792pt;}
.h2{height:144.666667pt;}
.h15{height:222.906667pt;}
.h13{height:238.426667pt;}
.h22{height:255.360000pt;}
.hf{height:370.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1a{width:26.080000pt;}
.w1f{width:46.240000pt;}
.w19{width:53.760000pt;}
.w17{width:54.592000pt;}
.w18{width:54.720000pt;}
.w1e{width:59.840000pt;}
.w1d{width:61.632000pt;}
.w16{width:64.160000pt;}
.w10{width:73.600000pt;}
.w13{width:79.840000pt;}
.wd{width:80.000000pt;}
.w11{width:82.112000pt;}
.wf{width:83.072000pt;}
.w3{width:115.232000pt;}
.wc{width:150.106667pt;}
.w7{width:161.466667pt;}
.w1c{width:170.586667pt;}
.w1b{width:215.226667pt;}
.wa{width:233.306667pt;}
.we{width:242.786667pt;}
.wb{width:273.506667pt;}
.w8{width:300.546667pt;}
.w9{width:300.666667pt;}
.w15{width:327.906667pt;}
.w12{width:367.133333pt;}
.w14{width:430.080000pt;}
.w6{width:536.613333pt;}
.w2{width:601.733333pt;}
.w5{width:698.080000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:0.960000pt;}
.x2{left:7.040000pt;}
.x26{left:29.306667pt;}
.x24{left:37.093333pt;}
.x1{left:38.400000pt;}
.x23{left:43.520000pt;}
.x4{left:47.999988pt;}
.x1d{left:50.080000pt;}
.x31{left:52.479988pt;}
.x10{left:71.999988pt;}
.x32{left:76.511988pt;}
.x13{left:80.991988pt;}
.x15{left:86.111988pt;}
.x14{left:88.031988pt;}
.x11{left:89.791988pt;}
.x7{left:96.031988pt;}
.x12{left:97.951988pt;}
.x2c{left:102.112000pt;}
.x1c{left:115.231988pt;}
.x2d{left:130.112000pt;}
.x25{left:135.773333pt;}
.xd{left:142.586667pt;}
.x16{left:158.586667pt;}
.x27{left:161.760000pt;}
.x22{left:181.760000pt;}
.x8{left:217.314667pt;}
.xb{left:251.714667pt;}
.xc{left:253.160000pt;}
.xa{left:270.120000pt;}
.x17{left:310.626667pt;}
.x2e{left:347.266667pt;}
.xf{left:377.826667pt;}
.x18{left:392.546667pt;}
.x9{left:396.893333pt;}
.x1e{left:419.293333pt;}
.x28{left:445.213333pt;}
.x19{left:477.693333pt;}
.x1f{left:501.053333pt;}
.x29{left:511.453333pt;}
.x2f{left:519.933333pt;}
.x1a{left:553.213333pt;}
.x2a{left:568.133333pt;}
.x6{left:584.453333pt;}
.x20{left:586.213333pt;}
.x1b{left:611.973322pt;}
.x2b{left:624.773333pt;}
.x3{left:640.133333pt;}
.x30{left:645.573333pt;}
.x5{left:646.693322pt;}
.x21{left:661.733333pt;}
}




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