
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e9898b262cb7a2127e2c58c6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_0745c888e1547281a86102ad.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_b96413d590eefbc8d4e85346.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_f602992b834ff8c42634107f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_fb0770249154fb8c49ed7c7c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_daf4ce78c86054c71b3d0010.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_02b7a2b65358705b8470fe6c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.854492;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_7cdabbc386bb73823463dc14.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_71abc4917f3b8f7b3a962357.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1ff1d4bb91e7bfb86d277335.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682617;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_4012db21fa0667402992c273.woff2')format("woff");}.ffd{font-family:ffd;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.520000px;}
.v2{vertical-align:15.120000px;}
.v8{vertical-align:30.240000px;}
.v7{vertical-align:35.280000px;}
.v6{vertical-align:40.320000px;}
.v4{vertical-align:45.360000px;}
.v5{vertical-align:47.880000px;}
.ls1b{letter-spacing:-0.232800px;}
.lse{letter-spacing:-0.186600px;}
.ls6{letter-spacing:-0.135000px;}
.ls8{letter-spacing:-0.121200px;}
.ls23{letter-spacing:-0.094800px;}
.ls5{letter-spacing:-0.090000px;}
.ls7{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.064800px;}
.lsf{letter-spacing:-0.063600px;}
.ls1d{letter-spacing:-0.049680px;}
.ls28{letter-spacing:-0.037800px;}
.ls1f{letter-spacing:-0.029880px;}
.ls1e{letter-spacing:-0.011160px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsb{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls1c{letter-spacing:0.053280px;}
.ls18{letter-spacing:0.060480px;}
.ls10{letter-spacing:0.060600px;}
.ls16{letter-spacing:0.064800px;}
.ls20{letter-spacing:0.068400px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls21{letter-spacing:0.113400px;}
.ls1a{letter-spacing:0.115800px;}
.ls15{letter-spacing:0.133200px;}
.ls24{letter-spacing:0.168600px;}
.lsd{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.376800px;}
.ls25{letter-spacing:2.880000px;}
.ls13{letter-spacing:9.934920px;}
.ls11{letter-spacing:16.090200px;}
.ls12{letter-spacing:16.650360px;}
.ls27{letter-spacing:47.726640px;}
.ls19{letter-spacing:55.286640px;}
.ls17{letter-spacing:63.566640px;}
.ls26{letter-spacing:80.846640px;}
.ls14{letter-spacing:84.610200px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.ws16{word-spacing:-13.395000px;}
.wsc{word-spacing:-13.342200px;}
.ws14{word-spacing:-13.339800px;}
.ws13{word-spacing:-13.294800px;}
.wse{word-spacing:-13.279680px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.215240px;}
.wsf{word-spacing:-13.176720px;}
.wsa{word-spacing:-13.162800px;}
.ws7{word-spacing:-13.039800px;}
.wsd{word-spacing:-12.993600px;}
.ws15{word-spacing:-10.910400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws11{word-spacing:-9.236520px;}
.wsb{word-spacing:-8.614200px;}
.ws12{word-spacing:-0.060120px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._8{margin-left:-3.377999px;}
._7{margin-left:-2.337000px;}
._0{margin-left:-1.026000px;}
._1{width:1.174152px;}
._4{width:2.344800px;}
._6{width:3.520750px;}
._5{width:5.283597px;}
._2{width:6.973800px;}
._3{width:8.860323px;}
._a{width:10.235154px;}
._b{width:12.161886px;}
._11{width:14.789520px;}
._13{width:15.961680px;}
._14{width:17.024520px;}
._f{width:18.181079px;}
._e{width:19.242600px;}
._9{width:20.560800px;}
._12{width:28.797480px;}
._c{width:31.262400px;}
._d{width:32.464800px;}
._19{width:36.035640px;}
._17{width:43.406640px;}
._18{width:44.428680px;}
._15{width:57.414600px;}
._16{width:58.751760px;}
._10{width:286.204440px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y84{bottom:7.830000px;}
.y82{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y80{bottom:113.790000px;}
.yef{bottom:117.390000px;}
.yc5{bottom:121.080000px;}
.ya7{bottom:121.260000px;}
.y57{bottom:131.070000px;}
.ya6{bottom:133.500000px;}
.yee{bottom:134.940000px;}
.yc4{bottom:138.720000px;}
.y29{bottom:142.500000px;}
.y113{bottom:143.580000px;}
.y7f{bottom:149.340000px;}
.yed{bottom:152.490000px;}
.yc3{bottom:156.270000px;}
.y28{bottom:160.050000px;}
.ya5{bottom:160.860000px;}
.y112{bottom:161.130000px;}
.y56{bottom:166.620000px;}
.yc2{bottom:173.820000px;}
.y27{bottom:177.600000px;}
.y111{bottom:178.680000px;}
.yec{bottom:179.130000px;}
.y7e{bottom:184.980000px;}
.ya4{bottom:188.130000px;}
.yc1{bottom:191.460000px;}
.y26{bottom:195.240000px;}
.yeb{bottom:196.680000px;}
.y55{bottom:202.260000px;}
.y110{bottom:205.320000px;}
.yc0{bottom:209.010000px;}
.y25{bottom:212.790000px;}
.yea{bottom:214.320000px;}
.ya3{bottom:215.490000px;}
.y54{bottom:219.810000px;}
.y7d{bottom:220.530000px;}
.y10f{bottom:222.870000px;}
.ybf{bottom:226.650000px;}
.y24{bottom:230.340000px;}
.y53{bottom:237.360000px;}
.y7c{bottom:238.080000px;}
.y10e{bottom:240.510000px;}
.ye9{bottom:240.870000px;}
.ya2{bottom:242.850000px;}
.ybe{bottom:244.200000px;}
.y23{bottom:247.980000px;}
.y52{bottom:255.000000px;}
.y7b{bottom:255.720000px;}
.ye8{bottom:258.420000px;}
.ybd{bottom:261.750000px;}
.y22{bottom:265.530000px;}
.y10d{bottom:267.060000px;}
.ya1{bottom:270.120000px;}
.y7a{bottom:273.270000px;}
.ye7{bottom:276.060000px;}
.ybc{bottom:279.390000px;}
.y51{bottom:281.550000px;}
.y21{bottom:283.170000px;}
.y10c{bottom:284.610000px;}
.y79{bottom:290.910000px;}
.ybb{bottom:296.940000px;}
.ya0{bottom:297.480000px;}
.y20{bottom:300.720000px;}
.ye6{bottom:302.970000px;}
.y10b{bottom:311.250000px;}
.yba{bottom:314.490000px;}
.y50{bottom:317.190000px;}
.y1f{bottom:318.270000px;}
.y9f{bottom:324.840000px;}
.y78{bottom:326.460000px;}
.y10a{bottom:328.800000px;}
.yb9{bottom:332.130000px;}
.y4f{bottom:334.740000px;}
.y1e{bottom:335.910000px;}
.y77{bottom:344.010000px;}
.y109{bottom:346.440000px;}
.yb8{bottom:349.680000px;}
.ye5{bottom:351.210000px;}
.y9e{bottom:352.200000px;}
.y4e{bottom:361.290000px;}
.y1d{bottom:362.820000px;}
.yb7{bottom:367.320000px;}
.y76{bottom:370.650000px;}
.y108{bottom:372.990000px;}
.ye4{bottom:378.120000px;}
.yb6{bottom:384.870000px;}
.y75{bottom:388.200000px;}
.y107{bottom:390.540000px;}
.y4d{bottom:393.870000px;}
.y9d{bottom:400.890000px;}
.yb5{bottom:402.420000px;}
.y106{bottom:408.180000px;}
.y1c{bottom:411.420000px;}
.ye3{bottom:415.110000px;}
.y9c{bottom:418.440000px;}
.yb4{bottom:420.060000px;}
.y74{bottom:424.110000px;}
.y4c{bottom:429.510000px;}
.ye2{bottom:432.750000px;}
.y105{bottom:434.730000px;}
.yb3{bottom:437.610000px;}
.y1b{bottom:448.410000px;}
.y104{bottom:452.370000px;}
.y9b{bottom:454.080000px;}
.yb2{bottom:455.250000px;}
.ye1{bottom:459.660000px;}
.y4b{bottom:465.060000px;}
.y1a{bottom:466.050000px;}
.y73{bottom:472.470000px;}
.yb1{bottom:472.830000px;}
.y103{bottom:478.950000px;}
.y4a{bottom:482.730000px;}
.y19{bottom:483.630000px;}
.y9a{bottom:489.660000px;}
.y72{bottom:490.020000px;}
.y102{bottom:496.500000px;}
.ye0{bottom:497.040000px;}
.y49{bottom:500.280000px;}
.y18{bottom:501.180000px;}
.y99{bottom:507.210000px;}
.y71{bottom:507.570000px;}
.yb0{bottom:508.380000px;}
.y101{bottom:514.140000px;}
.y48{bottom:517.830000px;}
.y17{bottom:518.820000px;}
.yaf{bottom:526.020000px;}
.y98{bottom:533.850000px;}
.y70{bottom:534.210000px;}
.y47{bottom:535.470000px;}
.y16{bottom:536.370000px;}
.y100{bottom:540.690000px;}
.ydf{bottom:545.280000px;}
.yae{bottom:552.570000px;}
.y46{bottom:553.020000px;}
.y15{bottom:553.920000px;}
.yff{bottom:558.330000px;}
.yde{bottom:562.830000px;}
.y97{bottom:569.400000px;}
.y6f{bottom:569.760000px;}
.y45{bottom:570.660000px;}
.y14{bottom:571.560000px;}
.yfe{bottom:575.880000px;}
.ydd{bottom:580.470000px;}
.y96{bottom:586.950000px;}
.y6e{bottom:587.400000px;}
.yad{bottom:588.480000px;}
.y13{bottom:589.110000px;}
.ydc{bottom:598.020000px;}
.yfd{bottom:602.430000px;}
.y95{bottom:604.590000px;}
.y6d{bottom:604.950000px;}
.y44{bottom:606.210000px;}
.y12{bottom:606.750000px;}
.yfc{bottom:620.070000px;}
.y43{bottom:623.760000px;}
.y11{bottom:624.300000px;}
.ydb{bottom:624.930000px;}
.y11f{bottom:628.620000px;}
.y94{bottom:631.140000px;}
.y6c{bottom:631.500000px;}
.yac{bottom:636.000000px;}
.yfb{bottom:637.620000px;}
.y42{bottom:641.400000px;}
.y10{bottom:641.850000px;}
.y11e{bottom:646.260000px;}
.yf{bottom:659.490000px;}
.y11d{bottom:663.810000px;}
.yfa{bottom:664.260000px;}
.y93{bottom:666.780000px;}
.y6b{bottom:667.140000px;}
.y41{bottom:667.950000px;}
.yab{bottom:668.850000px;}
.yda{bottom:673.260000px;}
.ye{bottom:677.040000px;}
.y11c{bottom:681.360000px;}
.yf9{bottom:681.810000px;}
.y92{bottom:684.330000px;}
.y6a{bottom:684.690000px;}
.yd9{bottom:690.810000px;}
.yd{bottom:694.680000px;}
.yf8{bottom:699.360000px;}
.yaa{bottom:701.070000px;}
.y69{bottom:702.330000px;}
.y40{bottom:703.590000px;}
.y11b{bottom:708.000000px;}
.yd8{bottom:708.360000px;}
.y91{bottom:710.880000px;}
.yc{bottom:712.230000px;}
.yf7{bottom:717.000000px;}
.y68{bottom:719.880000px;}
.y3f{bottom:721.140000px;}
.y11a{bottom:725.550000px;}
.yd7{bottom:726.000000px;}
.y67{bottom:737.430000px;}
.y3e{bottom:738.690000px;}
.yb{bottom:739.140000px;}
.yd6{bottom:743.550000px;}
.y90{bottom:746.520000px;}
.y119{bottom:752.190000px;}
.y66{bottom:754.980000px;}
.y3d{bottom:756.330000px;}
.yd5{bottom:761.190000px;}
.y8f{bottom:764.070000px;}
.y118{bottom:769.740000px;}
.y65{bottom:773.430000px;}
.y3c{bottom:773.880000px;}
.yd4{bottom:778.740000px;}
.y117{bottom:787.290000px;}
.ya{bottom:787.380000px;}
.y8e{bottom:790.710000px;}
.y64{bottom:790.980000px;}
.yd3{bottom:796.290000px;}
.y3b{bottom:800.520000px;}
.y8d{bottom:808.260000px;}
.yd2{bottom:813.930000px;}
.y63{bottom:818.430000px;}
.yf6{bottom:822.930000px;}
.y9{bottom:823.200000px;}
.yd1{bottom:831.480000px;}
.y3a{bottom:836.070000px;}
.yf5{bottom:840.480000px;}
.y8c{bottom:843.090000px;}
.y116{bottom:849.030000px;}
.y62{bottom:850.740000px;}
.y39{bottom:853.620000px;}
.y8b{bottom:855.330000px;}
.yf4{bottom:858.030000px;}
.y61{bottom:858.300000px;}
.y8{bottom:859.200000px;}
.yd0{bottom:867.030000px;}
.y38{bottom:871.260000px;}
.yf3{bottom:875.670000px;}
.y8a{bottom:882.600000px;}
.ycf{bottom:884.670000px;}
.y37{bottom:888.810000px;}
.y115{bottom:893.220000px;}
.y7{bottom:895.200000px;}
.y60{bottom:898.170000px;}
.yce{bottom:902.220000px;}
.y89{bottom:909.960000px;}
.y6{bottom:913.200000px;}
.y36{bottom:915.450000px;}
.ycd{bottom:919.860000px;}
.y5f{bottom:933.720000px;}
.y88{bottom:937.320000px;}
.ycc{bottom:937.410000px;}
.y5{bottom:949.290000px;}
.y35{bottom:951.270000px;}
.ycb{bottom:954.960000px;}
.yf2{bottom:963.960000px;}
.y87{bottom:964.680000px;}
.y5e{bottom:969.270000px;}
.ya9{bottom:972.150000px;}
.yca{bottom:972.600000px;}
.y5d{bottom:979.350000px;}
.yf1{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.ya8{bottom:989.790000px;}
.y86{bottom:991.950000px;}
.yf0{bottom:999.150000px;}
.y34{bottom:999.600000px;}
.yc9{bottom:1008.150000px;}
.y3{bottom:1012.320000px;}
.y114{bottom:1016.820000px;}
.y33{bottom:1017.180000px;}
.y85{bottom:1019.340000px;}
.y5c{bottom:1025.370000px;}
.yc8{bottom:1025.820000px;}
.y32{bottom:1034.820000px;}
.y5b{bottom:1042.920000px;}
.yc7{bottom:1043.370000px;}
.y83{bottom:1046.700000px;}
.y31{bottom:1052.370000px;}
.yc6{bottom:1060.920000px;}
.y30{bottom:1069.920000px;}
.y81{bottom:1073.970000px;}
.y5a{bottom:1078.560000px;}
.y2f{bottom:1087.560000px;}
.y59{bottom:1096.110000px;}
.y2e{bottom:1105.110000px;}
.y58{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h13{height:26.550000px;}
.h12{height:26.640000px;}
.h14{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h15{height:41.661211px;}
.hc{height:50.902383px;}
.h6{height:52.311445px;}
.h7{height:55.779258px;}
.h5{height:57.323320px;}
.hb{height:59.973223px;}
.h8{height:60.960938px;}
.h11{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.hf{height:70.777617px;}
.h4{height:72.985430px;}
.h16{height:74.004654px;}
.h10{height:82.551445px;}
.he{height:92.631445px;}
.hd{height:98.547539px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:77.400000px;}
.w7{width:105.300000px;}
.w6{width:106.200000px;}
.w8{width:129.990000px;}
.w9{width:137.880000px;}
.w4{width:212.220000px;}
.w5{width:268.590000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.650000px;}
.x1{left:68.040000px;}
.x8{left:95.039987px;}
.x15{left:102.869987px;}
.x16{left:111.239987px;}
.x9{left:122.039987px;}
.x14{left:137.879987px;}
.xa{left:149.039987px;}
.xb{left:166.800000px;}
.x12{left:197.759987px;}
.x2{left:201.539987px;}
.x11{left:210.359987px;}
.x6{left:212.699987px;}
.xd{left:245.010000px;}
.x7{left:346.529987px;}
.xf{left:351.930000px;}
.x4{left:373.169987px;}
.xe{left:457.950000px;}
.x5{left:463.079987px;}
.x10{left:588.660000px;}
.x13{left:697.559987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.240000pt;}
.v2{vertical-align:13.440000pt;}
.v8{vertical-align:26.880000pt;}
.v7{vertical-align:31.360000pt;}
.v6{vertical-align:35.840000pt;}
.v4{vertical-align:40.320000pt;}
.v5{vertical-align:42.560000pt;}
.ls1b{letter-spacing:-0.206933pt;}
.lse{letter-spacing:-0.165867pt;}
.ls6{letter-spacing:-0.120000pt;}
.ls8{letter-spacing:-0.107733pt;}
.ls23{letter-spacing:-0.084267pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls7{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.057600pt;}
.lsf{letter-spacing:-0.056533pt;}
.ls1d{letter-spacing:-0.044160pt;}
.ls28{letter-spacing:-0.033600pt;}
.ls1f{letter-spacing:-0.026560pt;}
.ls1e{letter-spacing:-0.009920pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsb{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls1c{letter-spacing:0.047360pt;}
.ls18{letter-spacing:0.053760pt;}
.ls10{letter-spacing:0.053867pt;}
.ls16{letter-spacing:0.057600pt;}
.ls20{letter-spacing:0.060800pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls21{letter-spacing:0.100800pt;}
.ls1a{letter-spacing:0.102933pt;}
.ls15{letter-spacing:0.118400pt;}
.ls24{letter-spacing:0.149867pt;}
.lsd{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.334933pt;}
.ls25{letter-spacing:2.560000pt;}
.ls13{letter-spacing:8.831040pt;}
.ls11{letter-spacing:14.302400pt;}
.ls12{letter-spacing:14.800320pt;}
.ls27{letter-spacing:42.423680pt;}
.ls19{letter-spacing:49.143680pt;}
.ls17{letter-spacing:56.503680pt;}
.ls26{letter-spacing:71.863680pt;}
.ls14{letter-spacing:75.209067pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.ws16{word-spacing:-11.906667pt;}
.wsc{word-spacing:-11.859733pt;}
.ws14{word-spacing:-11.857600pt;}
.ws13{word-spacing:-11.817600pt;}
.wse{word-spacing:-11.804160pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.746880pt;}
.wsf{word-spacing:-11.712640pt;}
.wsa{word-spacing:-11.700267pt;}
.ws7{word-spacing:-11.590933pt;}
.wsd{word-spacing:-11.549867pt;}
.ws15{word-spacing:-9.698133pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws11{word-spacing:-8.210240pt;}
.wsb{word-spacing:-7.657067pt;}
.ws12{word-spacing:-0.053440pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._8{margin-left:-3.002666pt;}
._7{margin-left:-2.077334pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.043691pt;}
._4{width:2.084267pt;}
._6{width:3.129556pt;}
._5{width:4.696531pt;}
._2{width:6.198933pt;}
._3{width:7.875843pt;}
._a{width:9.097914pt;}
._b{width:10.810566pt;}
._11{width:13.146240pt;}
._13{width:14.188160pt;}
._14{width:15.132907pt;}
._f{width:16.160959pt;}
._e{width:17.104534pt;}
._9{width:18.276266pt;}
._12{width:25.597760pt;}
._c{width:27.788800pt;}
._d{width:28.857600pt;}
._19{width:32.031680pt;}
._17{width:38.583680pt;}
._18{width:39.492160pt;}
._15{width:51.035200pt;}
._16{width:52.223787pt;}
._10{width:254.403947pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:6.960000pt;}
.y82{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y80{bottom:101.146667pt;}
.yef{bottom:104.346667pt;}
.yc5{bottom:107.626667pt;}
.ya7{bottom:107.786667pt;}
.y57{bottom:116.506667pt;}
.ya6{bottom:118.666667pt;}
.yee{bottom:119.946667pt;}
.yc4{bottom:123.306667pt;}
.y29{bottom:126.666667pt;}
.y113{bottom:127.626667pt;}
.y7f{bottom:132.746667pt;}
.yed{bottom:135.546667pt;}
.yc3{bottom:138.906667pt;}
.y28{bottom:142.266667pt;}
.ya5{bottom:142.986667pt;}
.y112{bottom:143.226667pt;}
.y56{bottom:148.106667pt;}
.yc2{bottom:154.506667pt;}
.y27{bottom:157.866667pt;}
.y111{bottom:158.826667pt;}
.yec{bottom:159.226667pt;}
.y7e{bottom:164.426667pt;}
.ya4{bottom:167.226667pt;}
.yc1{bottom:170.186667pt;}
.y26{bottom:173.546667pt;}
.yeb{bottom:174.826667pt;}
.y55{bottom:179.786667pt;}
.y110{bottom:182.506667pt;}
.yc0{bottom:185.786667pt;}
.y25{bottom:189.146667pt;}
.yea{bottom:190.506667pt;}
.ya3{bottom:191.546667pt;}
.y54{bottom:195.386667pt;}
.y7d{bottom:196.026667pt;}
.y10f{bottom:198.106667pt;}
.ybf{bottom:201.466667pt;}
.y24{bottom:204.746667pt;}
.y53{bottom:210.986667pt;}
.y7c{bottom:211.626667pt;}
.y10e{bottom:213.786667pt;}
.ye9{bottom:214.106667pt;}
.ya2{bottom:215.866667pt;}
.ybe{bottom:217.066667pt;}
.y23{bottom:220.426667pt;}
.y52{bottom:226.666667pt;}
.y7b{bottom:227.306667pt;}
.ye8{bottom:229.706667pt;}
.ybd{bottom:232.666667pt;}
.y22{bottom:236.026667pt;}
.y10d{bottom:237.386667pt;}
.ya1{bottom:240.106667pt;}
.y7a{bottom:242.906667pt;}
.ye7{bottom:245.386667pt;}
.ybc{bottom:248.346667pt;}
.y51{bottom:250.266667pt;}
.y21{bottom:251.706667pt;}
.y10c{bottom:252.986667pt;}
.y79{bottom:258.586667pt;}
.ybb{bottom:263.946667pt;}
.ya0{bottom:264.426667pt;}
.y20{bottom:267.306667pt;}
.ye6{bottom:269.306667pt;}
.y10b{bottom:276.666667pt;}
.yba{bottom:279.546667pt;}
.y50{bottom:281.946667pt;}
.y1f{bottom:282.906667pt;}
.y9f{bottom:288.746667pt;}
.y78{bottom:290.186667pt;}
.y10a{bottom:292.266667pt;}
.yb9{bottom:295.226667pt;}
.y4f{bottom:297.546667pt;}
.y1e{bottom:298.586667pt;}
.y77{bottom:305.786667pt;}
.y109{bottom:307.946667pt;}
.yb8{bottom:310.826667pt;}
.ye5{bottom:312.186667pt;}
.y9e{bottom:313.066667pt;}
.y4e{bottom:321.146667pt;}
.y1d{bottom:322.506667pt;}
.yb7{bottom:326.506667pt;}
.y76{bottom:329.466667pt;}
.y108{bottom:331.546667pt;}
.ye4{bottom:336.106667pt;}
.yb6{bottom:342.106667pt;}
.y75{bottom:345.066667pt;}
.y107{bottom:347.146667pt;}
.y4d{bottom:350.106667pt;}
.y9d{bottom:356.346667pt;}
.yb5{bottom:357.706667pt;}
.y106{bottom:362.826667pt;}
.y1c{bottom:365.706667pt;}
.ye3{bottom:368.986667pt;}
.y9c{bottom:371.946667pt;}
.yb4{bottom:373.386667pt;}
.y74{bottom:376.986667pt;}
.y4c{bottom:381.786667pt;}
.ye2{bottom:384.666667pt;}
.y105{bottom:386.426667pt;}
.yb3{bottom:388.986667pt;}
.y1b{bottom:398.586667pt;}
.y104{bottom:402.106667pt;}
.y9b{bottom:403.626667pt;}
.yb2{bottom:404.666667pt;}
.ye1{bottom:408.586667pt;}
.y4b{bottom:413.386667pt;}
.y1a{bottom:414.266667pt;}
.y73{bottom:419.973333pt;}
.yb1{bottom:420.293333pt;}
.y103{bottom:425.733333pt;}
.y4a{bottom:429.093333pt;}
.y19{bottom:429.893333pt;}
.y9a{bottom:435.253333pt;}
.y72{bottom:435.573333pt;}
.y102{bottom:441.333333pt;}
.ye0{bottom:441.813333pt;}
.y49{bottom:444.693333pt;}
.y18{bottom:445.493333pt;}
.y99{bottom:450.853333pt;}
.y71{bottom:451.173333pt;}
.yb0{bottom:451.893333pt;}
.y101{bottom:457.013333pt;}
.y48{bottom:460.293333pt;}
.y17{bottom:461.173333pt;}
.yaf{bottom:467.573333pt;}
.y98{bottom:474.533333pt;}
.y70{bottom:474.853333pt;}
.y47{bottom:475.973333pt;}
.y16{bottom:476.773333pt;}
.y100{bottom:480.613333pt;}
.ydf{bottom:484.693333pt;}
.yae{bottom:491.173333pt;}
.y46{bottom:491.573333pt;}
.y15{bottom:492.373333pt;}
.yff{bottom:496.293333pt;}
.yde{bottom:500.293333pt;}
.y97{bottom:506.133333pt;}
.y6f{bottom:506.453333pt;}
.y45{bottom:507.253333pt;}
.y14{bottom:508.053333pt;}
.yfe{bottom:511.893333pt;}
.ydd{bottom:515.973333pt;}
.y96{bottom:521.733333pt;}
.y6e{bottom:522.133333pt;}
.yad{bottom:523.093333pt;}
.y13{bottom:523.653333pt;}
.ydc{bottom:531.573333pt;}
.yfd{bottom:535.493333pt;}
.y95{bottom:537.413333pt;}
.y6d{bottom:537.733333pt;}
.y44{bottom:538.853333pt;}
.y12{bottom:539.333333pt;}
.yfc{bottom:551.173333pt;}
.y43{bottom:554.453333pt;}
.y11{bottom:554.933333pt;}
.ydb{bottom:555.493333pt;}
.y11f{bottom:558.773333pt;}
.y94{bottom:561.013333pt;}
.y6c{bottom:561.333333pt;}
.yac{bottom:565.333333pt;}
.yfb{bottom:566.773333pt;}
.y42{bottom:570.133333pt;}
.y10{bottom:570.533333pt;}
.y11e{bottom:574.453333pt;}
.yf{bottom:586.213333pt;}
.y11d{bottom:590.053333pt;}
.yfa{bottom:590.453333pt;}
.y93{bottom:592.693333pt;}
.y6b{bottom:593.013333pt;}
.y41{bottom:593.733333pt;}
.yab{bottom:594.533333pt;}
.yda{bottom:598.453333pt;}
.ye{bottom:601.813333pt;}
.y11c{bottom:605.653333pt;}
.yf9{bottom:606.053333pt;}
.y92{bottom:608.293333pt;}
.y6a{bottom:608.613333pt;}
.yd9{bottom:614.053333pt;}
.yd{bottom:617.493333pt;}
.yf8{bottom:621.653333pt;}
.yaa{bottom:623.173333pt;}
.y69{bottom:624.293333pt;}
.y40{bottom:625.413333pt;}
.y11b{bottom:629.333333pt;}
.yd8{bottom:629.653333pt;}
.y91{bottom:631.893333pt;}
.yc{bottom:633.093333pt;}
.yf7{bottom:637.333333pt;}
.y68{bottom:639.893333pt;}
.y3f{bottom:641.013333pt;}
.y11a{bottom:644.933333pt;}
.yd7{bottom:645.333333pt;}
.y67{bottom:655.493333pt;}
.y3e{bottom:656.613333pt;}
.yb{bottom:657.013333pt;}
.yd6{bottom:660.933333pt;}
.y90{bottom:663.573333pt;}
.y119{bottom:668.613333pt;}
.y66{bottom:671.093333pt;}
.y3d{bottom:672.293333pt;}
.yd5{bottom:676.613333pt;}
.y8f{bottom:679.173333pt;}
.y118{bottom:684.213333pt;}
.y65{bottom:687.493333pt;}
.y3c{bottom:687.893333pt;}
.yd4{bottom:692.213333pt;}
.y117{bottom:699.813333pt;}
.ya{bottom:699.893333pt;}
.y8e{bottom:702.853333pt;}
.y64{bottom:703.093333pt;}
.yd3{bottom:707.813333pt;}
.y3b{bottom:711.573333pt;}
.y8d{bottom:718.453333pt;}
.yd2{bottom:723.493333pt;}
.y63{bottom:727.493333pt;}
.yf6{bottom:731.493333pt;}
.y9{bottom:731.733333pt;}
.yd1{bottom:739.093333pt;}
.y3a{bottom:743.173333pt;}
.yf5{bottom:747.093333pt;}
.y8c{bottom:749.413333pt;}
.y116{bottom:754.693333pt;}
.y62{bottom:756.213333pt;}
.y39{bottom:758.773333pt;}
.y8b{bottom:760.293333pt;}
.yf4{bottom:762.693333pt;}
.y61{bottom:762.933333pt;}
.y8{bottom:763.733333pt;}
.yd0{bottom:770.693333pt;}
.y38{bottom:774.453333pt;}
.yf3{bottom:778.373333pt;}
.y8a{bottom:784.533333pt;}
.ycf{bottom:786.373333pt;}
.y37{bottom:790.053333pt;}
.y115{bottom:793.973333pt;}
.y7{bottom:795.733333pt;}
.y60{bottom:798.373333pt;}
.yce{bottom:801.973333pt;}
.y89{bottom:808.853333pt;}
.y6{bottom:811.733333pt;}
.y36{bottom:813.733333pt;}
.ycd{bottom:817.653333pt;}
.y5f{bottom:829.973333pt;}
.y88{bottom:833.173333pt;}
.ycc{bottom:833.253333pt;}
.y5{bottom:843.813333pt;}
.y35{bottom:845.573333pt;}
.ycb{bottom:848.853333pt;}
.yf2{bottom:856.853333pt;}
.y87{bottom:857.493333pt;}
.y5e{bottom:861.573333pt;}
.ya9{bottom:864.133333pt;}
.yca{bottom:864.533333pt;}
.y5d{bottom:870.533333pt;}
.yf1{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.ya8{bottom:879.813333pt;}
.y86{bottom:881.733333pt;}
.yf0{bottom:888.133333pt;}
.y34{bottom:888.533333pt;}
.yc9{bottom:896.133333pt;}
.y3{bottom:899.840000pt;}
.y114{bottom:903.840000pt;}
.y33{bottom:904.160000pt;}
.y85{bottom:906.080000pt;}
.y5c{bottom:911.440000pt;}
.yc8{bottom:911.840000pt;}
.y32{bottom:919.840000pt;}
.y5b{bottom:927.040000pt;}
.yc7{bottom:927.440000pt;}
.y83{bottom:930.400000pt;}
.y31{bottom:935.440000pt;}
.yc6{bottom:943.040000pt;}
.y30{bottom:951.040000pt;}
.y81{bottom:954.640000pt;}
.y5a{bottom:958.720000pt;}
.y2f{bottom:966.720000pt;}
.y59{bottom:974.320000pt;}
.y2e{bottom:982.320000pt;}
.y58{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h13{height:23.600000pt;}
.h12{height:23.680000pt;}
.h14{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h15{height:37.032187pt;}
.hc{height:45.246562pt;}
.h6{height:46.499062pt;}
.h7{height:49.581562pt;}
.h5{height:50.954062pt;}
.hb{height:53.309531pt;}
.h8{height:54.187500pt;}
.h11{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.hf{height:62.913438pt;}
.h4{height:64.875937pt;}
.h16{height:65.781915pt;}
.h10{height:73.379063pt;}
.he{height:82.339062pt;}
.hd{height:87.597813pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:68.800000pt;}
.w7{width:93.600000pt;}
.w6{width:94.400000pt;}
.w8{width:115.546667pt;}
.w9{width:122.560000pt;}
.w4{width:188.640000pt;}
.w5{width:238.746667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.800000pt;}
.x1{left:60.480000pt;}
.x8{left:84.479988pt;}
.x15{left:91.439988pt;}
.x16{left:98.879988pt;}
.x9{left:108.479988pt;}
.x14{left:122.559988pt;}
.xa{left:132.479988pt;}
.xb{left:148.266667pt;}
.x12{left:175.786655pt;}
.x2{left:179.146655pt;}
.x11{left:186.986655pt;}
.x6{left:189.066655pt;}
.xd{left:217.786667pt;}
.x7{left:308.026655pt;}
.xf{left:312.826667pt;}
.x4{left:331.706655pt;}
.xe{left:407.066667pt;}
.x5{left:411.626655pt;}
.x10{left:523.253333pt;}
.x13{left:620.053322pt;}
.x3{left:704.053322pt;}
}




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