
    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_ab3443f6ad50220aa0879a3b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_9b954037e98579c9544d79b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_d2ee19ace8f9e7a63ff53e3c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_40750a74732d272090e055a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_0f236b7768ccb847a1f07d00.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_46bee9213fc9329d7ba9a06b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.751953;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ad9759e522f7184fbdee9d38.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.752441;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_a9030c9ba2630eeaf78f9d05.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.751953;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_850970f7f952b92bb5b63b23.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.747559;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_484334ece8ffa9ad828c441b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938965;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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v4{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.702000px;}
.ls9{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.108000px;}
.ls12{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012960px;}
.ls4{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.036000px;}
.ls13{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:4.481760px;}
.ls2{letter-spacing:4.500000px;}
.lse{letter-spacing:16.506720px;}
.ls5{letter-spacing:37.566720px;}
.ls3{letter-spacing:42.048000px;}
.lsc{letter-spacing:46.026720px;}
.lsd{letter-spacing:64.026720px;}
.ls14{letter-spacing:64.170720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-59.760000px;}
.ws6{word-spacing:-54.000000px;}
.ws0{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.ws10{word-spacing:-14.580000px;}
.wsa{word-spacing:-13.716000px;}
.ws8{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.392000px;}
.ws7{word-spacing:-13.140000px;}
.wsb{word-spacing:-12.798000px;}
.ws1{word-spacing:-12.060000px;}
.ws2{word-spacing:-10.440000px;}
.wsd{word-spacing:-9.732960px;}
.ws3{word-spacing:-9.720000px;}
.wsc{word-spacing:0.000000px;}
._4{margin-left:-1.315440px;}
._1{width:1.135440px;}
._5{width:2.696160px;}
._7{width:3.863520px;}
._a{width:5.019120px;}
._e{width:6.394320px;}
._c{width:8.067600px;}
._14{width:9.406800px;}
._9{width:10.704240px;}
._8{width:11.772720px;}
._1b{width:12.781200px;}
._13{width:13.808640px;}
._b{width:16.493760px;}
._d{width:17.569440px;}
._19{width:18.824400px;}
._18{width:20.796480px;}
._17{width:21.931920px;}
._1e{width:23.007600px;}
._1c{width:24.621120px;}
._12{width:25.696800px;}
._11{width:26.892000px;}
._16{width:27.907920px;}
._1f{width:29.043360px;}
._2b{width:30.059280px;}
._f{width:31.075200px;}
._10{width:32.748480px;}
._1a{width:33.943680px;}
._1d{width:35.915760px;}
._20{width:37.529280px;}
._24{width:38.724480px;}
._23{width:40.338000px;}
._27{width:41.353920px;}
._22{width:43.086960px;}
._26{width:44.222400px;}
._2c{width:45.955440px;}
._21{width:47.021040px;}
._2e{width:48.883680px;}
._2d{width:50.796000px;}
._28{width:51.931440px;}
._29{width:53.724240px;}
._25{width:57.011040px;}
._40{width:62.090640px;}
._15{width:70.686000px;}
._30{width:76.253760px;}
._3f{width:79.961280px;}
._3e{width:81.091920px;}
._38{width:88.517520px;}
._37{width:90.164880px;}
._3a{width:91.193760px;}
._39{width:92.269440px;}
._2a{width:106.014240px;}
._36{width:128.195280px;}
._35{width:130.092480px;}
._3{width:131.442960px;}
._3b{width:141.930000px;}
._42{width:157.228560px;}
._3d{width:225.295200px;}
._43{width:236.649600px;}
._31{width:284.479200px;}
._32{width:286.071120px;}
._2{width:342.981120px;}
._34{width:373.021920px;}
._2f{width:379.057680px;}
._3c{width:451.964880px;}
._41{width:482.681520px;}
._33{width:1054.465200px;}
._6{width:1226.033520px;}
._0{width:2857.020000px;}
.fc4{color:rgb(0,112,192);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(238,0,0);}
.fs4{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.520000px;}
.y4d{bottom:2.556000px;}
.y107{bottom:2.880000px;}
.y31{bottom:3.060000px;}
.y18{bottom:3.240000px;}
.y3c{bottom:5.940000px;}
.y7{bottom:8.316000px;}
.y4b{bottom:8.496000px;}
.y42{bottom:9.720000px;}
.yc{bottom:14.040000px;}
.y8{bottom:16.236000px;}
.y10e{bottom:16.380000px;}
.y4c{bottom:16.416000px;}
.y106{bottom:18.534000px;}
.y30{bottom:18.900000px;}
.y3a{bottom:19.440000px;}
.y100{bottom:20.520000px;}
.y41{bottom:25.200000px;}
.y10d{bottom:30.240000px;}
.y105{bottom:34.014000px;}
.ya{bottom:35.460000px;}
.y39{bottom:35.820000px;}
.y2f{bottom:36.000000px;}
.yff{bottom:37.800000px;}
.y40{bottom:40.680000px;}
.y4e{bottom:41.400000px;}
.y10c{bottom:43.920000px;}
.y44{bottom:48.960000px;}
.y104{bottom:49.494000px;}
.y38{bottom:51.300000px;}
.y2e{bottom:53.280000px;}
.yfe{bottom:55.080000px;}
.y3f{bottom:56.160000px;}
.y10b{bottom:57.780000px;}
.y6{bottom:58.140000px;}
.y4a{bottom:64.080000px;}
.y103{bottom:64.974000px;}
.y37{bottom:66.780000px;}
.y2d{bottom:70.560000px;}
.y3e{bottom:71.820000px;}
.yfd{bottom:72.360000px;}
.y102{bottom:80.814000px;}
.y36{bottom:82.440000px;}
.y2c{bottom:87.840000px;}
.yfc{bottom:89.505000px;}
.y35{bottom:97.920000px;}
.y2b{bottom:105.120000px;}
.yfb{bottom:106.785000px;}
.y8f{bottom:112.536000px;}
.y34{bottom:113.430000px;}
.ye4{bottom:114.156000px;}
.y49{bottom:115.596000px;}
.y2a{bottom:122.265000px;}
.yb8{bottom:124.596000px;}
.y108{bottom:126.396000px;}
.y83{bottom:126.576000px;}
.y33{bottom:128.910000px;}
.y8e{bottom:129.816000px;}
.y48{bottom:132.156000px;}
.ye3{bottom:134.136000px;}
.y29{bottom:139.545000px;}
.y101{bottom:140.436000px;}
.y82{bottom:143.856000px;}
.yb7{bottom:144.396000px;}
.y47{bottom:146.556000px;}
.y8d{bottom:147.096000px;}
.y43{bottom:152.325000px;}
.ye2{bottom:153.930000px;}
.y28{bottom:156.825000px;}
.y81{bottom:161.130000px;}
.y8c{bottom:164.190000px;}
.y46{bottom:164.370000px;}
.ye1{bottom:173.730000px;}
.y27{bottom:174.105000px;}
.y80{bottom:179.310000px;}
.y8b{bottom:181.470000px;}
.y45{bottom:183.450000px;}
.yb6{bottom:183.990000px;}
.y26{bottom:191.385000px;}
.ye0{bottom:193.530000px;}
.y7f{bottom:196.590000px;}
.y19{bottom:196.770000px;}
.y8a{bottom:198.750000px;}
.yb5{bottom:203.970000px;}
.y25{bottom:208.665000px;}
.ydf{bottom:213.330000px;}
.y7e{bottom:213.870000px;}
.y89{bottom:216.030000px;}
.yb4{bottom:223.770000px;}
.y24{bottom:225.765000px;}
.y7d{bottom:232.230000px;}
.y88{bottom:233.310000px;}
.yfa{bottom:236.010000px;}
.y23{bottom:243.045000px;}
.yb3{bottom:243.570000px;}
.y7c{bottom:249.510000px;}
.y87{bottom:250.590000px;}
.yde{bottom:253.110000px;}
.y22{bottom:260.325000px;}
.yb2{bottom:263.370000px;}
.y7b{bottom:266.610000px;}
.y86{bottom:267.690000px;}
.ydd{bottom:272.910000px;}
.y21{bottom:277.605000px;}
.yb1{bottom:283.170000px;}
.y7a{bottom:283.890000px;}
.y85{bottom:284.970000px;}
.ydc{bottom:292.710000px;}
.y20{bottom:294.885000px;}
.y79{bottom:301.170000px;}
.y84{bottom:302.250000px;}
.yb0{bottom:303.150000px;}
.y1f{bottom:312.165000px;}
.ydb{bottom:312.510000px;}
.y78{bottom:319.575000px;}
.yaf{bottom:322.995000px;}
.y1e{bottom:329.265000px;}
.yda{bottom:332.535000px;}
.y77{bottom:336.855000px;}
.yae{bottom:342.795000px;}
.y1d{bottom:346.545000px;}
.yd9{bottom:352.335000px;}
.y76{bottom:354.135000px;}
.yf9{bottom:360.075000px;}
.y3d{bottom:362.415000px;}
.yad{bottom:362.595000px;}
.y1c{bottom:363.825000px;}
.yf5{bottom:368.715000px;}
.y75{bottom:371.235000px;}
.yd8{bottom:372.135000px;}
.yf8{bottom:377.355000px;}
.y1b{bottom:381.135000px;}
.yac{bottom:382.395000px;}
.y74{bottom:388.515000px;}
.yd7{bottom:391.935000px;}
.yf7{bottom:394.635000px;}
.y1a{bottom:398.595000px;}
.yab{bottom:402.375000px;}
.y73{bottom:405.795000px;}
.yf4{bottom:408.315000px;}
.yd6{bottom:411.735000px;}
.yf6{bottom:411.915000px;}
.yaa{bottom:422.175000px;}
.y72{bottom:423.075000px;}
.yf3{bottom:428.115000px;}
.yd5{bottom:431.715000px;}
.y71{bottom:440.355000px;}
.ya9{bottom:441.975000px;}
.y3b{bottom:447.555000px;}
.yf2{bottom:448.095000px;}
.yd4{bottom:451.515000px;}
.y70{bottom:457.455000px;}
.ya8{bottom:461.775000px;}
.yf1{bottom:467.895000px;}
.y32{bottom:468.255000px;}
.yd3{bottom:471.315000px;}
.y6f{bottom:474.735000px;}
.ya7{bottom:481.575000px;}
.yf0{bottom:487.695000px;}
.yd2{bottom:491.115000px;}
.y6e{bottom:492.015000px;}
.ya6{bottom:501.555000px;}
.yef{bottom:507.495000px;}
.y6d{bottom:509.295000px;}
.yd1{bottom:510.915000px;}
.ya5{bottom:521.355000px;}
.y6c{bottom:526.575000px;}
.yee{bottom:527.295000px;}
.yd0{bottom:530.895000px;}
.ya4{bottom:541.155000px;}
.y6b{bottom:543.855000px;}
.yed{bottom:547.275000px;}
.ycf{bottom:550.695000px;}
.y6a{bottom:560.955000px;}
.yec{bottom:567.075000px;}
.yce{bottom:570.525000px;}
.y69{bottom:578.265000px;}
.ya3{bottom:580.785000px;}
.yeb{bottom:586.905000px;}
.ycd{bottom:590.325000px;}
.y68{bottom:595.545000px;}
.ya2{bottom:600.765000px;}
.yea{bottom:606.705000px;}
.ycc{bottom:610.125000px;}
.y17{bottom:610.665000px;}
.y67{bottom:612.825000px;}
.ya1{bottom:620.565000px;}
.ye9{bottom:626.505000px;}
.y66{bottom:630.105000px;}
.ya0{bottom:640.365000px;}
.y16{bottom:645.225000px;}
.ye8{bottom:646.485000px;}
.y65{bottom:647.385000px;}
.ycb{bottom:649.905000px;}
.y9f{bottom:660.165000px;}
.y64{bottom:664.485000px;}
.y15{bottom:665.025000px;}
.ye7{bottom:666.285000px;}
.yca{bottom:669.705000px;}
.y9e{bottom:679.965000px;}
.y63{bottom:681.765000px;}
.ye6{bottom:686.085000px;}
.yc9{bottom:689.505000px;}
.y14{bottom:698.685000px;}
.y62{bottom:699.045000px;}
.y9d{bottom:699.945000px;}
.ye5{bottom:705.885000px;}
.yc8{bottom:709.305000px;}
.y13{bottom:715.965000px;}
.y61{bottom:716.325000px;}
.y9c{bottom:719.745000px;}
.y10a{bottom:720.645000px;}
.y12{bottom:728.385000px;}
.yc7{bottom:729.285000px;}
.y60{bottom:733.605000px;}
.y9b{bottom:739.545000px;}
.yc6{bottom:749.085000px;}
.y11{bottom:749.625000px;}
.y5f{bottom:750.885000px;}
.y9a{bottom:759.345000px;}
.y5e{bottom:767.985000px;}
.yc5{bottom:768.885000px;}
.y99{bottom:779.145000px;}
.y10{bottom:780.585000px;}
.y5d{bottom:785.265000px;}
.yc4{bottom:788.685000px;}
.y109{bottom:790.485000px;}
.y98{bottom:799.125000px;}
.y5c{bottom:802.545000px;}
.yc3{bottom:808.485000px;}
.yf{bottom:811.725000px;}
.y97{bottom:818.925000px;}
.y5b{bottom:819.870000px;}
.yc2{bottom:828.510000px;}
.y5a{bottom:837.150000px;}
.y96{bottom:838.770000px;}
.ye{bottom:842.730000px;}
.yc1{bottom:848.310000px;}
.y59{bottom:854.250000px;}
.y95{bottom:858.570000px;}
.yc0{bottom:868.110000px;}
.y58{bottom:871.530000px;}
.yd{bottom:871.710000px;}
.y94{bottom:878.370000px;}
.yb{bottom:887.010000px;}
.ybf{bottom:887.910000px;}
.y57{bottom:888.810000px;}
.y93{bottom:898.350000px;}
.y56{bottom:906.090000px;}
.ybe{bottom:907.710000px;}
.y92{bottom:918.150000px;}
.y55{bottom:923.370000px;}
.ybd{bottom:927.690000px;}
.y91{bottom:937.950000px;}
.y54{bottom:940.650000px;}
.ybc{bottom:947.490000px;}
.y53{bottom:957.750000px;}
.ybb{bottom:967.290000px;}
.y52{bottom:975.030000px;}
.yba{bottom:987.090000px;}
.y51{bottom:992.310000px;}
.y90{bottom:997.530000px;}
.yb9{bottom:1006.890000px;}
.y50{bottom:1009.590000px;}
.y4f{bottom:1026.870000px;}
.y5{bottom:1044.150000px;}
.y4{bottom:1061.250000px;}
.y3{bottom:1078.560000px;}
.y2{bottom:1096.560000px;}
.y1{bottom:1117.260000px;}
.h20{height:13.680000px;}
.hf{height:17.100000px;}
.h17{height:19.980000px;}
.h4{height:27.576000px;}
.hd{height:28.115859px;}
.h21{height:34.036523px;}
.h6{height:34.884492px;}
.h1a{height:38.100586px;}
.h13{height:39.049805px;}
.h7{height:39.336328px;}
.h12{height:39.972656px;}
.h15{height:39.999023px;}
.h10{height:42.164648px;}
.h5{height:43.215117px;}
.h1c{height:43.506914px;}
.h1b{height:44.236406px;}
.h16{height:44.265586px;}
.h9{height:47.901094px;}
.h2{height:48.496641px;}
.h1d{height:48.995859px;}
.h3{height:50.800781px;}
.hc{height:53.224453px;}
.ha{height:53.755312px;}
.h1{height:58.429688px;}
.h22{height:69.120000px;}
.hb{height:76.201172px;}
.he{height:78.099609px;}
.h18{height:84.420000px;}
.h1f{height:94.860000px;}
.h1e{height:120.816000px;}
.h14{height:141.516000px;}
.h8{height:153.900000px;}
.h19{height:164.910000px;}
.h11{height:412.995000px;}
.h0{height:1188.000000px;}
.w2{width:45.036000px;}
.w6{width:211.710000px;}
.w8{width:329.250000px;}
.w5{width:596.805000px;}
.w3{width:783.510000px;}
.w7{width:800.790000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:6.480000px;}
.x14{left:7.560000px;}
.x5{left:8.640000px;}
.x20{left:12.420000px;}
.x11{left:19.980000px;}
.x16{left:23.265000px;}
.x13{left:29.745000px;}
.x15{left:31.725000px;}
.x8{left:45.540000px;}
.x4{left:53.999986px;}
.x1e{left:58.680000px;}
.x3{left:60.659986px;}
.x17{left:65.519986px;}
.xb{left:68.579986px;}
.x21{left:80.094000px;}
.x18{left:86.759986px;}
.x6{left:100.836000px;}
.x7{left:108.035986px;}
.x1{left:150.509986px;}
.x1b{left:162.029986px;}
.x2{left:220.709986px;}
.x1f{left:295.635000px;}
.xe{left:302.834986px;}
.xc{left:376.094986px;}
.xa{left:459.074986px;}
.xd{left:464.294986px;}
.xf{left:465.374986px;}
.x1a{left:478.334986px;}
.x19{left:505.364986px;}
.x1d{left:526.604986px;}
.x1c{left:580.604986px;}
.x10{left:650.805000px;}
.x9{left:812.490000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v4{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.624000pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011520pt;}
.ls4{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls13{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:3.983787pt;}
.ls2{letter-spacing:4.000000pt;}
.lse{letter-spacing:14.672640pt;}
.ls5{letter-spacing:33.392640pt;}
.ls3{letter-spacing:37.376000pt;}
.lsc{letter-spacing:40.912640pt;}
.lsd{letter-spacing:56.912640pt;}
.ls14{letter-spacing:57.040640pt;}
.ws5{word-spacing:-53.120000pt;}
.ws6{word-spacing:-48.000000pt;}
.ws0{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.ws10{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.192000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.904000pt;}
.ws7{word-spacing:-11.680000pt;}
.wsb{word-spacing:-11.376000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws2{word-spacing:-9.280000pt;}
.wsd{word-spacing:-8.651520pt;}
.ws3{word-spacing:-8.640000pt;}
.wsc{word-spacing:0.000000pt;}
._4{margin-left:-1.169280pt;}
._1{width:1.009280pt;}
._5{width:2.396587pt;}
._7{width:3.434240pt;}
._a{width:4.461440pt;}
._e{width:5.683840pt;}
._c{width:7.171200pt;}
._14{width:8.361600pt;}
._9{width:9.514880pt;}
._8{width:10.464640pt;}
._1b{width:11.361067pt;}
._13{width:12.274347pt;}
._b{width:14.661120pt;}
._d{width:15.617280pt;}
._19{width:16.732800pt;}
._18{width:18.485760pt;}
._17{width:19.495040pt;}
._1e{width:20.451200pt;}
._1c{width:21.885440pt;}
._12{width:22.841600pt;}
._11{width:23.904000pt;}
._16{width:24.807040pt;}
._1f{width:25.816320pt;}
._2b{width:26.719360pt;}
._f{width:27.622400pt;}
._10{width:29.109760pt;}
._1a{width:30.172160pt;}
._1d{width:31.925120pt;}
._20{width:33.359360pt;}
._24{width:34.421760pt;}
._23{width:35.856000pt;}
._27{width:36.759040pt;}
._22{width:38.299520pt;}
._26{width:39.308800pt;}
._2c{width:40.849280pt;}
._21{width:41.796480pt;}
._2e{width:43.452160pt;}
._2d{width:45.152000pt;}
._28{width:46.161280pt;}
._29{width:47.754880pt;}
._25{width:50.676480pt;}
._40{width:55.191680pt;}
._15{width:62.832000pt;}
._30{width:67.781120pt;}
._3f{width:71.076693pt;}
._3e{width:72.081707pt;}
._38{width:78.682240pt;}
._37{width:80.146560pt;}
._3a{width:81.061120pt;}
._39{width:82.017280pt;}
._2a{width:94.234880pt;}
._36{width:113.951360pt;}
._35{width:115.637760pt;}
._3{width:116.838187pt;}
._3b{width:126.160000pt;}
._42{width:139.758720pt;}
._3d{width:200.262400pt;}
._43{width:210.355200pt;}
._31{width:252.870400pt;}
._32{width:254.285440pt;}
._2{width:304.872107pt;}
._34{width:331.575040pt;}
._2f{width:336.940160pt;}
._3c{width:401.746560pt;}
._41{width:429.050240pt;}
._33{width:937.302400pt;}
._6{width:1089.807573pt;}
._0{width:2539.573333pt;}
.fs4{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.240000pt;}
.y4d{bottom:2.272000pt;}
.y107{bottom:2.560000pt;}
.y31{bottom:2.720000pt;}
.y18{bottom:2.880000pt;}
.y3c{bottom:5.280000pt;}
.y7{bottom:7.392000pt;}
.y4b{bottom:7.552000pt;}
.y42{bottom:8.640000pt;}
.yc{bottom:12.480000pt;}
.y8{bottom:14.432000pt;}
.y10e{bottom:14.560000pt;}
.y4c{bottom:14.592000pt;}
.y106{bottom:16.474667pt;}
.y30{bottom:16.800000pt;}
.y3a{bottom:17.280000pt;}
.y100{bottom:18.240000pt;}
.y41{bottom:22.400000pt;}
.y10d{bottom:26.880000pt;}
.y105{bottom:30.234667pt;}
.ya{bottom:31.520000pt;}
.y39{bottom:31.840000pt;}
.y2f{bottom:32.000000pt;}
.yff{bottom:33.600000pt;}
.y40{bottom:36.160000pt;}
.y4e{bottom:36.800000pt;}
.y10c{bottom:39.040000pt;}
.y44{bottom:43.520000pt;}
.y104{bottom:43.994667pt;}
.y38{bottom:45.600000pt;}
.y2e{bottom:47.360000pt;}
.yfe{bottom:48.960000pt;}
.y3f{bottom:49.920000pt;}
.y10b{bottom:51.360000pt;}
.y6{bottom:51.680000pt;}
.y4a{bottom:56.960000pt;}
.y103{bottom:57.754667pt;}
.y37{bottom:59.360000pt;}
.y2d{bottom:62.720000pt;}
.y3e{bottom:63.840000pt;}
.yfd{bottom:64.320000pt;}
.y102{bottom:71.834667pt;}
.y36{bottom:73.280000pt;}
.y2c{bottom:78.080000pt;}
.yfc{bottom:79.560000pt;}
.y35{bottom:87.040000pt;}
.y2b{bottom:93.440000pt;}
.yfb{bottom:94.920000pt;}
.y8f{bottom:100.032000pt;}
.y34{bottom:100.826667pt;}
.ye4{bottom:101.472000pt;}
.y49{bottom:102.752000pt;}
.y2a{bottom:108.680000pt;}
.yb8{bottom:110.752000pt;}
.y108{bottom:112.352000pt;}
.y83{bottom:112.512000pt;}
.y33{bottom:114.586667pt;}
.y8e{bottom:115.392000pt;}
.y48{bottom:117.472000pt;}
.ye3{bottom:119.232000pt;}
.y29{bottom:124.040000pt;}
.y101{bottom:124.832000pt;}
.y82{bottom:127.872000pt;}
.yb7{bottom:128.352000pt;}
.y47{bottom:130.272000pt;}
.y8d{bottom:130.752000pt;}
.y43{bottom:135.400000pt;}
.ye2{bottom:136.826667pt;}
.y28{bottom:139.400000pt;}
.y81{bottom:143.226667pt;}
.y8c{bottom:145.946667pt;}
.y46{bottom:146.106667pt;}
.ye1{bottom:154.426667pt;}
.y27{bottom:154.760000pt;}
.y80{bottom:159.386667pt;}
.y8b{bottom:161.306667pt;}
.y45{bottom:163.066667pt;}
.yb6{bottom:163.546667pt;}
.y26{bottom:170.120000pt;}
.ye0{bottom:172.026667pt;}
.y7f{bottom:174.746667pt;}
.y19{bottom:174.906667pt;}
.y8a{bottom:176.666667pt;}
.yb5{bottom:181.306667pt;}
.y25{bottom:185.480000pt;}
.ydf{bottom:189.626667pt;}
.y7e{bottom:190.106667pt;}
.y89{bottom:192.026667pt;}
.yb4{bottom:198.906667pt;}
.y24{bottom:200.680000pt;}
.y7d{bottom:206.426667pt;}
.y88{bottom:207.386667pt;}
.yfa{bottom:209.786667pt;}
.y23{bottom:216.040000pt;}
.yb3{bottom:216.506667pt;}
.y7c{bottom:221.786667pt;}
.y87{bottom:222.746667pt;}
.yde{bottom:224.986667pt;}
.y22{bottom:231.400000pt;}
.yb2{bottom:234.106667pt;}
.y7b{bottom:236.986667pt;}
.y86{bottom:237.946667pt;}
.ydd{bottom:242.586667pt;}
.y21{bottom:246.760000pt;}
.yb1{bottom:251.706667pt;}
.y7a{bottom:252.346667pt;}
.y85{bottom:253.306667pt;}
.ydc{bottom:260.186667pt;}
.y20{bottom:262.120000pt;}
.y79{bottom:267.706667pt;}
.y84{bottom:268.666667pt;}
.yb0{bottom:269.466667pt;}
.y1f{bottom:277.480000pt;}
.ydb{bottom:277.786667pt;}
.y78{bottom:284.066667pt;}
.yaf{bottom:287.106667pt;}
.y1e{bottom:292.680000pt;}
.yda{bottom:295.586667pt;}
.y77{bottom:299.426667pt;}
.yae{bottom:304.706667pt;}
.y1d{bottom:308.040000pt;}
.yd9{bottom:313.186667pt;}
.y76{bottom:314.786667pt;}
.yf9{bottom:320.066667pt;}
.y3d{bottom:322.146667pt;}
.yad{bottom:322.306667pt;}
.y1c{bottom:323.400000pt;}
.yf5{bottom:327.746667pt;}
.y75{bottom:329.986667pt;}
.yd8{bottom:330.786667pt;}
.yf8{bottom:335.426667pt;}
.y1b{bottom:338.786667pt;}
.yac{bottom:339.906667pt;}
.y74{bottom:345.346667pt;}
.yd7{bottom:348.386667pt;}
.yf7{bottom:350.786667pt;}
.y1a{bottom:354.306667pt;}
.yab{bottom:357.666667pt;}
.y73{bottom:360.706667pt;}
.yf4{bottom:362.946667pt;}
.yd6{bottom:365.986667pt;}
.yf6{bottom:366.146667pt;}
.yaa{bottom:375.266667pt;}
.y72{bottom:376.066667pt;}
.yf3{bottom:380.546667pt;}
.yd5{bottom:383.746667pt;}
.y71{bottom:391.426667pt;}
.ya9{bottom:392.866667pt;}
.y3b{bottom:397.826667pt;}
.yf2{bottom:398.306667pt;}
.yd4{bottom:401.346667pt;}
.y70{bottom:406.626667pt;}
.ya8{bottom:410.466667pt;}
.yf1{bottom:415.906667pt;}
.y32{bottom:416.226667pt;}
.yd3{bottom:418.946667pt;}
.y6f{bottom:421.986667pt;}
.ya7{bottom:428.066667pt;}
.yf0{bottom:433.506667pt;}
.yd2{bottom:436.546667pt;}
.y6e{bottom:437.346667pt;}
.ya6{bottom:445.826667pt;}
.yef{bottom:451.106667pt;}
.y6d{bottom:452.706667pt;}
.yd1{bottom:454.146667pt;}
.ya5{bottom:463.426667pt;}
.y6c{bottom:468.066667pt;}
.yee{bottom:468.706667pt;}
.yd0{bottom:471.906667pt;}
.ya4{bottom:481.026667pt;}
.y6b{bottom:483.426667pt;}
.yed{bottom:486.466667pt;}
.ycf{bottom:489.506667pt;}
.y6a{bottom:498.626667pt;}
.yec{bottom:504.066667pt;}
.yce{bottom:507.133333pt;}
.y69{bottom:514.013333pt;}
.ya3{bottom:516.253333pt;}
.yeb{bottom:521.693333pt;}
.ycd{bottom:524.733333pt;}
.y68{bottom:529.373333pt;}
.ya2{bottom:534.013333pt;}
.yea{bottom:539.293333pt;}
.ycc{bottom:542.333333pt;}
.y17{bottom:542.813333pt;}
.y67{bottom:544.733333pt;}
.ya1{bottom:551.613333pt;}
.ye9{bottom:556.893333pt;}
.y66{bottom:560.093333pt;}
.ya0{bottom:569.213333pt;}
.y16{bottom:573.533333pt;}
.ye8{bottom:574.653333pt;}
.y65{bottom:575.453333pt;}
.ycb{bottom:577.693333pt;}
.y9f{bottom:586.813333pt;}
.y64{bottom:590.653333pt;}
.y15{bottom:591.133333pt;}
.ye7{bottom:592.253333pt;}
.yca{bottom:595.293333pt;}
.y9e{bottom:604.413333pt;}
.y63{bottom:606.013333pt;}
.ye6{bottom:609.853333pt;}
.yc9{bottom:612.893333pt;}
.y14{bottom:621.053333pt;}
.y62{bottom:621.373333pt;}
.y9d{bottom:622.173333pt;}
.ye5{bottom:627.453333pt;}
.yc8{bottom:630.493333pt;}
.y13{bottom:636.413333pt;}
.y61{bottom:636.733333pt;}
.y9c{bottom:639.773333pt;}
.y10a{bottom:640.573333pt;}
.y12{bottom:647.453333pt;}
.yc7{bottom:648.253333pt;}
.y60{bottom:652.093333pt;}
.y9b{bottom:657.373333pt;}
.yc6{bottom:665.853333pt;}
.y11{bottom:666.333333pt;}
.y5f{bottom:667.453333pt;}
.y9a{bottom:674.973333pt;}
.y5e{bottom:682.653333pt;}
.yc5{bottom:683.453333pt;}
.y99{bottom:692.573333pt;}
.y10{bottom:693.853333pt;}
.y5d{bottom:698.013333pt;}
.yc4{bottom:701.053333pt;}
.y109{bottom:702.653333pt;}
.y98{bottom:710.333333pt;}
.y5c{bottom:713.373333pt;}
.yc3{bottom:718.653333pt;}
.yf{bottom:721.533333pt;}
.y97{bottom:727.933333pt;}
.y5b{bottom:728.773333pt;}
.yc2{bottom:736.453333pt;}
.y5a{bottom:744.133333pt;}
.y96{bottom:745.573333pt;}
.ye{bottom:749.093333pt;}
.yc1{bottom:754.053333pt;}
.y59{bottom:759.333333pt;}
.y95{bottom:763.173333pt;}
.yc0{bottom:771.653333pt;}
.y58{bottom:774.693333pt;}
.yd{bottom:774.853333pt;}
.y94{bottom:780.773333pt;}
.yb{bottom:788.453333pt;}
.ybf{bottom:789.253333pt;}
.y57{bottom:790.053333pt;}
.y93{bottom:798.533333pt;}
.y56{bottom:805.413333pt;}
.ybe{bottom:806.853333pt;}
.y92{bottom:816.133333pt;}
.y55{bottom:820.773333pt;}
.ybd{bottom:824.613333pt;}
.y91{bottom:833.733333pt;}
.y54{bottom:836.133333pt;}
.ybc{bottom:842.213333pt;}
.y53{bottom:851.333333pt;}
.ybb{bottom:859.813333pt;}
.y52{bottom:866.693333pt;}
.yba{bottom:877.413333pt;}
.y51{bottom:882.053333pt;}
.y90{bottom:886.693333pt;}
.yb9{bottom:895.013333pt;}
.y50{bottom:897.413333pt;}
.y4f{bottom:912.773333pt;}
.y5{bottom:928.133333pt;}
.y4{bottom:943.333333pt;}
.y3{bottom:958.720000pt;}
.y2{bottom:974.720000pt;}
.y1{bottom:993.120000pt;}
.h20{height:12.160000pt;}
.hf{height:15.200000pt;}
.h17{height:17.760000pt;}
.h4{height:24.512000pt;}
.hd{height:24.991875pt;}
.h21{height:30.254687pt;}
.h6{height:31.008437pt;}
.h1a{height:33.867188pt;}
.h13{height:34.710938pt;}
.h7{height:34.965625pt;}
.h12{height:35.531250pt;}
.h15{height:35.554688pt;}
.h10{height:37.479688pt;}
.h5{height:38.413438pt;}
.h1c{height:38.672812pt;}
.h1b{height:39.321250pt;}
.h16{height:39.347188pt;}
.h9{height:42.578750pt;}
.h2{height:43.108125pt;}
.h1d{height:43.551875pt;}
.h3{height:45.156250pt;}
.hc{height:47.310625pt;}
.ha{height:47.782500pt;}
.h1{height:51.937500pt;}
.h22{height:61.440000pt;}
.hb{height:67.734375pt;}
.he{height:69.421875pt;}
.h18{height:75.040000pt;}
.h1f{height:84.320000pt;}
.h1e{height:107.392000pt;}
.h14{height:125.792000pt;}
.h8{height:136.800000pt;}
.h19{height:146.586667pt;}
.h11{height:367.106667pt;}
.h0{height:1056.000000pt;}
.w2{width:40.032000pt;}
.w6{width:188.186667pt;}
.w8{width:292.666667pt;}
.w5{width:530.493333pt;}
.w3{width:696.453333pt;}
.w7{width:711.813333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:5.760000pt;}
.x14{left:6.720000pt;}
.x5{left:7.680000pt;}
.x20{left:11.040000pt;}
.x11{left:17.760000pt;}
.x16{left:20.680000pt;}
.x13{left:26.440000pt;}
.x15{left:28.200000pt;}
.x8{left:40.480000pt;}
.x4{left:47.999988pt;}
.x1e{left:52.160000pt;}
.x3{left:53.919988pt;}
.x17{left:58.239988pt;}
.xb{left:60.959988pt;}
.x21{left:71.194667pt;}
.x18{left:77.119988pt;}
.x6{left:89.632000pt;}
.x7{left:96.031988pt;}
.x1{left:133.786655pt;}
.x1b{left:144.026655pt;}
.x2{left:196.186655pt;}
.x1f{left:262.786667pt;}
.xe{left:269.186655pt;}
.xc{left:334.306655pt;}
.xa{left:408.066655pt;}
.xd{left:412.706655pt;}
.xf{left:413.666655pt;}
.x1a{left:425.186655pt;}
.x19{left:449.213321pt;}
.x1d{left:468.093321pt;}
.x1c{left:516.093321pt;}
.x10{left:578.493333pt;}
.x9{left:722.213333pt;}
}




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