
    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_01025762ca3a37a19229b6d6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.255859;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_cd5456b7a9a06e89039b79c7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.099609;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_876841eabd75d2c5acefcd38.woff')format("woff");}.ff3{font-family:ff3;line-height:1.099609;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_e677a44c6bb46aff6211df3b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.255859;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_23395042de4eeea1b2f824cc.woff')format("woff");}.ff5{font-family:ff5;line-height:1.120605;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_fa970b62f32ba99fca32fdb2.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_900b6a13a3f5b25c77ad7b11.woff')format("woff");}.ff7{font-family:ff7;line-height:1.325684;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_974bf1519e0863aff8ab6c0b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.325684;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:-83.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.120000px;}
.ls2c{letter-spacing:-1.008000px;}
.ls20{letter-spacing:-0.864000px;}
.ls2a{letter-spacing:-0.792000px;}
.ls23{letter-spacing:-0.648000px;}
.ls21{letter-spacing:-0.636000px;}
.ls1f{letter-spacing:-0.564600px;}
.ls29{letter-spacing:-0.432000px;}
.ls22{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.180000px;}
.ls27{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.112200px;}
.lse{letter-spacing:-0.072000px;}
.ls7{letter-spacing:-0.031680px;}
.ls28{letter-spacing:-0.000003px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012600px;}
.ls3{letter-spacing:0.026280px;}
.ls4{letter-spacing:0.027000px;}
.lsb{letter-spacing:0.027720px;}
.ls1e{letter-spacing:0.048000px;}
.ls9{letter-spacing:0.064800px;}
.ls19{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.083400px;}
.lsa{letter-spacing:0.116400px;}
.ls17{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.153600px;}
.ls1c{letter-spacing:0.155400px;}
.ls2{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.207720px;}
.ls14{letter-spacing:0.216000px;}
.ls2f{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.336000px;}
.ls30{letter-spacing:0.432000px;}
.ls1a{letter-spacing:1.296000px;}
.ls16{letter-spacing:2.016000px;}
.ls24{letter-spacing:3.096000px;}
.ls2d{letter-spacing:3.168000px;}
.ls13{letter-spacing:5.256000px;}
.ls25{letter-spacing:5.616000px;}
.ls31{letter-spacing:6.240000px;}
.ls15{letter-spacing:6.336000px;}
.ls26{letter-spacing:7.848000px;}
.ls10{letter-spacing:8.856000px;}
.ls2e{letter-spacing:9.000000px;}
.ls11{letter-spacing:9.576000px;}
.lsf{letter-spacing:10.296000px;}
.ls18{letter-spacing:11.016000px;}
.ls2b{letter-spacing:11.736000px;}
.ls1b{letter-spacing:17.496000px;}
.ls5{letter-spacing:38.186280px;}
.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;}
}
.ws17{word-spacing:-26.472000px;}
.ws3{word-spacing:-22.647600px;}
.ws18{word-spacing:-20.304000px;}
.ws7{word-spacing:-20.232000px;}
.ws10{word-spacing:-20.231997px;}
.ws16{word-spacing:-20.160000px;}
.wsf{word-spacing:-20.088000px;}
.ws4{word-spacing:-19.440000px;}
.ws6{word-spacing:-18.665880px;}
.ws2{word-spacing:-18.628680px;}
.ws5{word-spacing:-18.512280px;}
.ws14{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.784000px;}
.ws13{word-spacing:-17.712000px;}
.ws12{word-spacing:-17.640000px;}
.ws11{word-spacing:-17.136000px;}
.ws1{word-spacing:-16.893720px;}
.ws0{word-spacing:-16.713720px;}
.ws8{word-spacing:-16.232400px;}
.ws15{word-spacing:-16.128000px;}
.wsa{word-spacing:-11.991120px;}
.wsc{word-spacing:-11.919120px;}
.wsd{word-spacing:-11.271120px;}
.wse{word-spacing:-11.199720px;}
.ws9{word-spacing:0.000000px;}
._1a{margin-left:-16.992000px;}
._24{margin-left:-15.912000px;}
._25{margin-left:-7.680240px;}
._1f{margin-left:-5.971680px;}
._1e{margin-left:-4.166640px;}
._1d{margin-left:-2.977200px;}
._0{margin-left:-1.224720px;}
._3{width:1.065840px;}
._9{width:2.645280px;}
._a{width:3.743760px;}
._5{width:5.591160px;}
._b{width:6.666000px;}
._7{width:7.702680px;}
._6{width:9.198360px;}
._1{width:10.641240px;}
._19{width:11.800320px;}
._2{width:12.895680px;}
._4{width:14.505480px;}
._15{width:15.696000px;}
._10{width:16.776000px;}
._18{width:17.928000px;}
._c{width:18.997920px;}
._d{width:20.081640px;}
._20{width:21.528000px;}
._1c{width:22.848000px;}
._1b{width:24.240000px;}
._14{width:25.488000px;}
._16{width:27.360000px;}
._17{width:28.440000px;}
._11{width:29.736000px;}
._12{width:30.816000px;}
._22{width:32.328000px;}
._23{width:33.504000px;}
._21{width:36.304920px;}
._e{width:37.674360px;}
._f{width:39.041520px;}
._13{width:40.404960px;}
._26{width:41.904000px;}
._27{width:42.984000px;}
._8{width:959.466600px;}
.fc1{color:rgb(70,120,134);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.880000px;}
.fs6{font-size:36.000000px;}
.fs8{font-size:42.120000px;}
.fs7{font-size:47.880000px;}
.fs5{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5{bottom:20.430000px;}
.y4{bottom:37.170000px;}
.y3{bottom:53.820000px;}
.y2{bottom:70.470000px;}
.y74{bottom:76.230000px;}
.y10{bottom:93.420000px;}
.y73{bottom:95.220000px;}
.yf{bottom:113.670000px;}
.ycd{bottom:116.190000px;}
.ycc{bottom:121.410000px;}
.y40{bottom:132.660000px;}
.ycb{bottom:133.830000px;}
.y9b{bottom:136.080000px;}
.y8d{bottom:145.080000px;}
.ye{bottom:153.630000px;}
.y123{bottom:155.160000px;}
.y72{bottom:160.110000px;}
.y99{bottom:161.460000px;}
.y8c{bottom:165.060000px;}
.y13c{bottom:165.690000px;}
.yd{bottom:170.370000px;}
.yc4{bottom:171.090000px;}
.yca{bottom:175.140000px;}
.y71{bottom:180.090000px;}
.y98{bottom:183.240000px;}
.y8b{bottom:185.130000px;}
.y13b{bottom:185.670000px;}
.yc{bottom:187.020000px;}
.yc3{bottom:191.160000px;}
.yc9{bottom:195.120000px;}
.y122{bottom:195.210000px;}
.y70{bottom:200.160000px;}
.yb{bottom:203.670000px;}
.y8a{bottom:205.110000px;}
.y13a{bottom:205.650000px;}
.yf9{bottom:208.890000px;}
.yc2{bottom:211.140000px;}
.y121{bottom:215.220000px;}
.y6f{bottom:220.170000px;}
.ya{bottom:220.440000px;}
.yc8{bottom:225.120000px;}
.y89{bottom:225.210000px;}
.y139{bottom:225.750000px;}
.yf8{bottom:228.900000px;}
.yc1{bottom:231.240000px;}
.y120{bottom:235.290000px;}
.y9{bottom:237.090000px;}
.y6e{bottom:240.240000px;}
.y88{bottom:245.190000px;}
.y138{bottom:248.430000px;}
.yf7{bottom:248.970000px;}
.yc0{bottom:251.220000px;}
.y8{bottom:254.190000px;}
.y11f{bottom:255.270000px;}
.y6d{bottom:260.220000px;}
.y137{bottom:263.460000px;}
.y87{bottom:265.260000px;}
.yf6{bottom:268.950000px;}
.ybf{bottom:271.290000px;}
.y11e{bottom:275.250000px;}
.y136{bottom:278.400000px;}
.y6c{bottom:280.290000px;}
.y86{bottom:285.240000px;}
.y7{bottom:288.750000px;}
.yf5{bottom:289.020000px;}
.ybe{bottom:291.270000px;}
.y11d{bottom:295.320000px;}
.y6b{bottom:300.270000px;}
.y3d{bottom:304.140000px;}
.y85{bottom:305.310000px;}
.yf4{bottom:309.000000px;}
.y3c{bottom:309.360000px;}
.ybd{bottom:311.250000px;}
.y11c{bottom:315.300000px;}
.y6a{bottom:320.250000px;}
.y3b{bottom:321.780000px;}
.y84{bottom:325.290000px;}
.yf3{bottom:329.070000px;}
.ybc{bottom:331.320000px;}
.y11b{bottom:335.370000px;}
.y69{bottom:340.320000px;}
.y83{bottom:345.360000px;}
.yf2{bottom:349.050000px;}
.ybb{bottom:351.300000px;}
.y11a{bottom:355.350000px;}
.y135{bottom:359.850000px;}
.y68{bottom:360.300000px;}
.y82{bottom:365.340000px;}
.y3a{bottom:369.120000px;}
.yba{bottom:371.370000px;}
.yf1{bottom:373.620000px;}
.y119{bottom:375.420000px;}
.y134{bottom:379.920000px;}
.y67{bottom:380.370000px;}
.y81{bottom:385.320000px;}
.y39{bottom:389.190000px;}
.yb9{bottom:391.350000px;}
.yf0{bottom:393.600000px;}
.y118{bottom:399.900000px;}
.y66{bottom:400.350000px;}
.y80{bottom:405.390000px;}
.y9a{bottom:408.000000px;}
.y38{bottom:409.170000px;}
.yb8{bottom:411.420000px;}
.yef{bottom:413.580000px;}
.y117{bottom:419.970000px;}
.y65{bottom:420.420000px;}
.y13e{bottom:422.940000px;}
.y7f{bottom:425.370000px;}
.y37{bottom:428.430000px;}
.yb7{bottom:431.400000px;}
.yee{bottom:433.650000px;}
.y133{bottom:439.950000px;}
.y64{bottom:440.400000px;}
.y116{bottom:444.450000px;}
.y36{bottom:445.080000px;}
.y7e{bottom:445.440000px;}
.yb6{bottom:451.470000px;}
.yed{bottom:458.130000px;}
.y63{bottom:460.470000px;}
.y35{bottom:461.730000px;}
.y115{bottom:464.520000px;}
.y7d{bottom:465.420000px;}
.y97{bottom:470.550000px;}
.yb5{bottom:471.450000px;}
.yec{bottom:478.200000px;}
.y34{bottom:478.470000px;}
.y62{bottom:480.450000px;}
.y114{bottom:484.500000px;}
.y7c{bottom:485.490000px;}
.yb4{bottom:491.520000px;}
.y33{bottom:495.120000px;}
.y61{bottom:500.520000px;}
.yeb{bottom:502.680000px;}
.y113{bottom:504.570000px;}
.y7b{bottom:505.470000px;}
.yb3{bottom:511.500000px;}
.y32{bottom:511.860000px;}
.y60{bottom:520.500000px;}
.yea{bottom:522.750000px;}
.y112{bottom:524.550000px;}
.y7a{bottom:525.540000px;}
.y31{bottom:528.510000px;}
.yb2{bottom:531.570000px;}
.y5f{bottom:540.570000px;}
.y111{bottom:544.530000px;}
.y30{bottom:545.160000px;}
.y79{bottom:545.520000px;}
.ye9{bottom:547.230000px;}
.y132{bottom:549.030000px;}
.yb1{bottom:551.550000px;}
.y5e{bottom:560.550000px;}
.y2f{bottom:561.900000px;}
.y110{bottom:564.600000px;}
.y78{bottom:565.590000px;}
.ye8{bottom:567.300000px;}
.y131{bottom:569.100000px;}
.yb0{bottom:571.530000px;}
.y2e{bottom:578.550000px;}
.y5d{bottom:580.530000px;}
.y77{bottom:585.570000px;}
.y10f{bottom:589.080000px;}
.yaf{bottom:591.600000px;}
.ye7{bottom:591.780000px;}
.y130{bottom:593.580000px;}
.y2d{bottom:595.290000px;}
.y5c{bottom:600.600000px;}
.y96{bottom:605.640000px;}
.y76{bottom:608.250000px;}
.y10e{bottom:609.150000px;}
.yae{bottom:611.580000px;}
.ye6{bottom:611.850000px;}
.y2c{bottom:611.940000px;}
.y12f{bottom:613.650000px;}
.y5b{bottom:620.580000px;}
.y95{bottom:625.620000px;}
.y2b{bottom:628.590000px;}
.y10d{bottom:629.130000px;}
.yad{bottom:631.650000px;}
.ye5{bottom:631.830000px;}
.y12e{bottom:633.660000px;}
.y5a{bottom:640.680000px;}
.y2a{bottom:645.360000px;}
.y94{bottom:645.630000px;}
.yac{bottom:651.660000px;}
.y10c{bottom:653.730000px;}
.ye4{bottom:656.430000px;}
.y59{bottom:660.660000px;}
.y29{bottom:662.010000px;}
.y93{bottom:665.700000px;}
.yab{bottom:671.730000px;}
.y10b{bottom:673.710000px;}
.ye3{bottom:676.410000px;}
.y28{bottom:678.660000px;}
.y58{bottom:680.730000px;}
.y92{bottom:685.680000px;}
.yaa{bottom:691.710000px;}
.y10a{bottom:693.780000px;}
.y27{bottom:695.400000px;}
.y12d{bottom:698.280000px;}
.y57{bottom:700.710000px;}
.ye2{bottom:700.890000px;}
.y91{bottom:705.750000px;}
.ya9{bottom:711.780000px;}
.y26{bottom:712.050000px;}
.y109{bottom:713.760000px;}
.y12c{bottom:718.260000px;}
.y56{bottom:720.780000px;}
.ye1{bottom:720.960000px;}
.y90{bottom:725.730000px;}
.y25{bottom:728.790000px;}
.ya8{bottom:731.760000px;}
.y108{bottom:738.330000px;}
.y55{bottom:740.760000px;}
.ye0{bottom:740.940000px;}
.y24{bottom:745.440000px;}
.y8f{bottom:745.800000px;}
.ya7{bottom:751.830000px;}
.y107{bottom:758.310000px;}
.y54{bottom:760.830000px;}
.ydf{bottom:761.010000px;}
.y23{bottom:762.900000px;}
.yc7{bottom:765.780000px;}
.y8e{bottom:768.480000px;}
.ya6{bottom:771.810000px;}
.y12b{bottom:778.290000px;}
.y53{bottom:780.810000px;}
.y22{bottom:782.520000px;}
.y106{bottom:782.790000px;}
.yde{bottom:785.490000px;}
.yc6{bottom:788.460000px;}
.ya5{bottom:791.790000px;}
.y12a{bottom:798.360000px;}
.y52{bottom:800.790000px;}
.y21{bottom:800.880000px;}
.y105{bottom:802.860000px;}
.ydd{bottom:805.560000px;}
.ya4{bottom:811.860000px;}
.y129{bottom:818.340000px;}
.y20{bottom:819.240000px;}
.y51{bottom:820.860000px;}
.y104{bottom:822.840000px;}
.ydc{bottom:825.540000px;}
.ya3{bottom:831.840000px;}
.y1f{bottom:837.600000px;}
.y50{bottom:840.840000px;}
.y128{bottom:842.910000px;}
.y103{bottom:847.410000px;}
.ydb{bottom:850.110000px;}
.ya2{bottom:851.910000px;}
.y1e{bottom:855.960000px;}
.y4f{bottom:860.910000px;}
.y127{bottom:862.890000px;}
.y102{bottom:867.390000px;}
.yda{bottom:870.090000px;}
.ya1{bottom:871.890000px;}
.y1d{bottom:874.320000px;}
.y4e{bottom:880.890000px;}
.y126{bottom:882.960000px;}
.y101{bottom:887.460000px;}
.ya0{bottom:891.960000px;}
.y1c{bottom:892.680000px;}
.yd9{bottom:894.660000px;}
.y4d{bottom:900.960000px;}
.y100{bottom:907.440000px;}
.y1b{bottom:911.040000px;}
.y9f{bottom:911.940000px;}
.yd8{bottom:914.640000px;}
.y4c{bottom:920.940000px;}
.yff{bottom:927.510000px;}
.y1a{bottom:928.950000px;}
.y9e{bottom:932.010000px;}
.yd7{bottom:939.120000px;}
.y4b{bottom:941.010000px;}
.y19{bottom:946.500000px;}
.y125{bottom:947.490000px;}
.y9d{bottom:951.990000px;}
.yd6{bottom:959.190000px;}
.y4a{bottom:960.990000px;}
.y18{bottom:966.480000px;}
.yc5{bottom:967.020000px;}
.y9c{bottom:972.060000px;}
.yd5{bottom:979.170000px;}
.y49{bottom:981.060000px;}
.y17{bottom:986.550000px;}
.yfe{bottom:992.040000px;}
.y48{bottom:1001.040000px;}
.yd4{bottom:1003.740000px;}
.y15{bottom:1007.340000px;}
.yfd{bottom:1012.110000px;}
.y16{bottom:1014.090000px;}
.y47{bottom:1021.110000px;}
.yd3{bottom:1023.720000px;}
.y14{bottom:1030.650000px;}
.yfc{bottom:1032.090000px;}
.y124{bottom:1036.590000px;}
.y46{bottom:1041.090000px;}
.yd2{bottom:1048.290000px;}
.y13{bottom:1054.080000px;}
.yfb{bottom:1056.600000px;}
.y45{bottom:1061.100000px;}
.y13d{bottom:1066.140000px;}
.yd1{bottom:1068.300000px;}
.yfa{bottom:1076.670000px;}
.y12{bottom:1077.390000px;}
.y44{bottom:1081.170000px;}
.yd0{bottom:1092.870000px;}
.y11{bottom:1099.620000px;}
.y75{bottom:1101.150000px;}
.y43{bottom:1106.190000px;}
.ycf{bottom:1112.850000px;}
.y6{bottom:1118.520000px;}
.y42{bottom:1121.220000px;}
.yce{bottom:1130.130000px;}
.y1{bottom:1137.060000px;}
.y41{bottom:1141.200000px;}
.y3f{bottom:1181.250000px;}
.y3e{bottom:1203.210000px;}
.h11{height:25.809434px;}
.hd{height:36.826172px;}
.h10{height:43.086621px;}
.ha{height:44.155898px;}
.he{height:48.978809px;}
.h4{height:51.929824px;}
.h6{height:55.239258px;}
.h3{height:61.499707px;}
.h8{height:61.793886px;}
.hb{height:62.191406px;}
.h7{height:67.391895px;}
.h5{height:71.613281px;}
.h9{height:72.452988px;}
.hc{height:73.652344px;}
.hf{height:78.082031px;}
.h2{height:83.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:50.850000px;}
.w4{width:329.700000px;}
.w2{width:331.890000px;}
.w6{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x1{left:98.280000px;}
.x8{left:104.669987px;}
.x6{left:106.379987px;}
.xd{left:110.879987px;}
.xb{left:159.599987px;}
.x2{left:174.630000px;}
.x10{left:261.119987px;}
.xc{left:322.409987px;}
.x3{left:430.170000px;}
.x7{left:446.549987px;}
.x5{left:481.020000px;}
.x9{left:560.579973px;}
.xa{left:565.799987px;}
.xf{left:600.089987px;}
.x12{left:768.419987px;}
.xe{left:777.599987px;}
.x11{left:782.189987px;}
@media print{
.v1{vertical-align:-74.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.440000pt;}
.ls2c{letter-spacing:-0.896000pt;}
.ls20{letter-spacing:-0.768000pt;}
.ls2a{letter-spacing:-0.704000pt;}
.ls23{letter-spacing:-0.576000pt;}
.ls21{letter-spacing:-0.565333pt;}
.ls1f{letter-spacing:-0.501867pt;}
.ls29{letter-spacing:-0.384000pt;}
.ls22{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls27{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.099733pt;}
.lse{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:-0.028160pt;}
.ls28{letter-spacing:-0.000003pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.011200pt;}
.ls3{letter-spacing:0.023360pt;}
.ls4{letter-spacing:0.024000pt;}
.lsb{letter-spacing:0.024640pt;}
.ls1e{letter-spacing:0.042667pt;}
.ls9{letter-spacing:0.057600pt;}
.ls19{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.074133pt;}
.lsa{letter-spacing:0.103467pt;}
.ls17{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.136533pt;}
.ls1c{letter-spacing:0.138133pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.184640pt;}
.ls14{letter-spacing:0.192000pt;}
.ls2f{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.298667pt;}
.ls30{letter-spacing:0.384000pt;}
.ls1a{letter-spacing:1.152000pt;}
.ls16{letter-spacing:1.792000pt;}
.ls24{letter-spacing:2.752000pt;}
.ls2d{letter-spacing:2.816000pt;}
.ls13{letter-spacing:4.672000pt;}
.ls25{letter-spacing:4.992000pt;}
.ls31{letter-spacing:5.546667pt;}
.ls15{letter-spacing:5.632000pt;}
.ls26{letter-spacing:6.976000pt;}
.ls10{letter-spacing:7.872000pt;}
.ls2e{letter-spacing:8.000000pt;}
.ls11{letter-spacing:8.512000pt;}
.lsf{letter-spacing:9.152000pt;}
.ls18{letter-spacing:9.792000pt;}
.ls2b{letter-spacing:10.432000pt;}
.ls1b{letter-spacing:15.552000pt;}
.ls5{letter-spacing:33.943360pt;}
.ws17{word-spacing:-23.530667pt;}
.ws3{word-spacing:-20.131200pt;}
.ws18{word-spacing:-18.048000pt;}
.ws7{word-spacing:-17.984000pt;}
.ws10{word-spacing:-17.983997pt;}
.ws16{word-spacing:-17.920000pt;}
.wsf{word-spacing:-17.856000pt;}
.ws4{word-spacing:-17.280000pt;}
.ws6{word-spacing:-16.591893pt;}
.ws2{word-spacing:-16.558827pt;}
.ws5{word-spacing:-16.455360pt;}
.ws14{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws13{word-spacing:-15.744000pt;}
.ws12{word-spacing:-15.680000pt;}
.ws11{word-spacing:-15.232000pt;}
.ws1{word-spacing:-15.016640pt;}
.ws0{word-spacing:-14.856640pt;}
.ws8{word-spacing:-14.428800pt;}
.ws15{word-spacing:-14.336000pt;}
.wsa{word-spacing:-10.658773pt;}
.wsc{word-spacing:-10.594773pt;}
.wsd{word-spacing:-10.018773pt;}
.wse{word-spacing:-9.955307pt;}
.ws9{word-spacing:0.000000pt;}
._1a{margin-left:-15.104000pt;}
._24{margin-left:-14.144000pt;}
._25{margin-left:-6.826880pt;}
._1f{margin-left:-5.308160pt;}
._1e{margin-left:-3.703680pt;}
._1d{margin-left:-2.646400pt;}
._0{margin-left:-1.088640pt;}
._3{width:0.947413pt;}
._9{width:2.351360pt;}
._a{width:3.327787pt;}
._5{width:4.969920pt;}
._b{width:5.925333pt;}
._7{width:6.846827pt;}
._6{width:8.176320pt;}
._1{width:9.458880pt;}
._19{width:10.489173pt;}
._2{width:11.462827pt;}
._4{width:12.893760pt;}
._15{width:13.952000pt;}
._10{width:14.912000pt;}
._18{width:15.936000pt;}
._c{width:16.887040pt;}
._d{width:17.850347pt;}
._20{width:19.136000pt;}
._1c{width:20.309333pt;}
._1b{width:21.546667pt;}
._14{width:22.656000pt;}
._16{width:24.320000pt;}
._17{width:25.280000pt;}
._11{width:26.432000pt;}
._12{width:27.392000pt;}
._22{width:28.736000pt;}
._23{width:29.781333pt;}
._21{width:32.271040pt;}
._e{width:33.488320pt;}
._f{width:34.703573pt;}
._13{width:35.915520pt;}
._26{width:37.248000pt;}
._27{width:38.208000pt;}
._8{width:852.859200pt;}
.fs9{font-size:26.560000pt;}
.fs6{font-size:32.000000pt;}
.fs8{font-size:37.440000pt;}
.fs7{font-size:42.560000pt;}
.fs5{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:18.160000pt;}
.y4{bottom:33.040000pt;}
.y3{bottom:47.840000pt;}
.y2{bottom:62.640000pt;}
.y74{bottom:67.760000pt;}
.y10{bottom:83.040000pt;}
.y73{bottom:84.640000pt;}
.yf{bottom:101.040000pt;}
.ycd{bottom:103.280000pt;}
.ycc{bottom:107.920000pt;}
.y40{bottom:117.920000pt;}
.ycb{bottom:118.960000pt;}
.y9b{bottom:120.960000pt;}
.y8d{bottom:128.960000pt;}
.ye{bottom:136.560000pt;}
.y123{bottom:137.920000pt;}
.y72{bottom:142.320000pt;}
.y99{bottom:143.520000pt;}
.y8c{bottom:146.720000pt;}
.y13c{bottom:147.280000pt;}
.yd{bottom:151.440000pt;}
.yc4{bottom:152.080000pt;}
.yca{bottom:155.680000pt;}
.y71{bottom:160.080000pt;}
.y98{bottom:162.880000pt;}
.y8b{bottom:164.560000pt;}
.y13b{bottom:165.040000pt;}
.yc{bottom:166.240000pt;}
.yc3{bottom:169.920000pt;}
.yc9{bottom:173.440000pt;}
.y122{bottom:173.520000pt;}
.y70{bottom:177.920000pt;}
.yb{bottom:181.040000pt;}
.y8a{bottom:182.320000pt;}
.y13a{bottom:182.800000pt;}
.yf9{bottom:185.680000pt;}
.yc2{bottom:187.680000pt;}
.y121{bottom:191.306667pt;}
.y6f{bottom:195.706667pt;}
.ya{bottom:195.946667pt;}
.yc8{bottom:200.106667pt;}
.y89{bottom:200.186667pt;}
.y139{bottom:200.666667pt;}
.yf8{bottom:203.466667pt;}
.yc1{bottom:205.546667pt;}
.y120{bottom:209.146667pt;}
.y9{bottom:210.746667pt;}
.y6e{bottom:213.546667pt;}
.y88{bottom:217.946667pt;}
.y138{bottom:220.826667pt;}
.yf7{bottom:221.306667pt;}
.yc0{bottom:223.306667pt;}
.y8{bottom:225.946667pt;}
.y11f{bottom:226.906667pt;}
.y6d{bottom:231.306667pt;}
.y137{bottom:234.186667pt;}
.y87{bottom:235.786667pt;}
.yf6{bottom:239.066667pt;}
.ybf{bottom:241.146667pt;}
.y11e{bottom:244.666667pt;}
.y136{bottom:247.466667pt;}
.y6c{bottom:249.146667pt;}
.y86{bottom:253.546667pt;}
.y7{bottom:256.666667pt;}
.yf5{bottom:256.906667pt;}
.ybe{bottom:258.906667pt;}
.y11d{bottom:262.506667pt;}
.y6b{bottom:266.906667pt;}
.y3d{bottom:270.346667pt;}
.y85{bottom:271.386667pt;}
.yf4{bottom:274.666667pt;}
.y3c{bottom:274.986667pt;}
.ybd{bottom:276.666667pt;}
.y11c{bottom:280.266667pt;}
.y6a{bottom:284.666667pt;}
.y3b{bottom:286.026667pt;}
.y84{bottom:289.146667pt;}
.yf3{bottom:292.506667pt;}
.ybc{bottom:294.506667pt;}
.y11b{bottom:298.106667pt;}
.y69{bottom:302.506667pt;}
.y83{bottom:306.986667pt;}
.yf2{bottom:310.266667pt;}
.ybb{bottom:312.266667pt;}
.y11a{bottom:315.866667pt;}
.y135{bottom:319.866667pt;}
.y68{bottom:320.266667pt;}
.y82{bottom:324.746667pt;}
.y3a{bottom:328.106667pt;}
.yba{bottom:330.106667pt;}
.yf1{bottom:332.106667pt;}
.y119{bottom:333.706667pt;}
.y134{bottom:337.706667pt;}
.y67{bottom:338.106667pt;}
.y81{bottom:342.506667pt;}
.y39{bottom:345.946667pt;}
.yb9{bottom:347.866667pt;}
.yf0{bottom:349.866667pt;}
.y118{bottom:355.466667pt;}
.y66{bottom:355.866667pt;}
.y80{bottom:360.346667pt;}
.y9a{bottom:362.666667pt;}
.y38{bottom:363.706667pt;}
.yb8{bottom:365.706667pt;}
.yef{bottom:367.626667pt;}
.y117{bottom:373.306667pt;}
.y65{bottom:373.706667pt;}
.y13e{bottom:375.946667pt;}
.y7f{bottom:378.106667pt;}
.y37{bottom:380.826667pt;}
.yb7{bottom:383.466667pt;}
.yee{bottom:385.466667pt;}
.y133{bottom:391.066667pt;}
.y64{bottom:391.466667pt;}
.y116{bottom:395.066667pt;}
.y36{bottom:395.626667pt;}
.y7e{bottom:395.946667pt;}
.yb6{bottom:401.306667pt;}
.yed{bottom:407.226667pt;}
.y63{bottom:409.306667pt;}
.y35{bottom:410.426667pt;}
.y115{bottom:412.906667pt;}
.y7d{bottom:413.706667pt;}
.y97{bottom:418.266667pt;}
.yb5{bottom:419.066667pt;}
.yec{bottom:425.066667pt;}
.y34{bottom:425.306667pt;}
.y62{bottom:427.066667pt;}
.y114{bottom:430.666667pt;}
.y7c{bottom:431.546667pt;}
.yb4{bottom:436.906667pt;}
.y33{bottom:440.106667pt;}
.y61{bottom:444.906667pt;}
.yeb{bottom:446.826667pt;}
.y113{bottom:448.506667pt;}
.y7b{bottom:449.306667pt;}
.yb3{bottom:454.666667pt;}
.y32{bottom:454.986667pt;}
.y60{bottom:462.666667pt;}
.yea{bottom:464.666667pt;}
.y112{bottom:466.266667pt;}
.y7a{bottom:467.146667pt;}
.y31{bottom:469.786667pt;}
.yb2{bottom:472.506667pt;}
.y5f{bottom:480.506667pt;}
.y111{bottom:484.026667pt;}
.y30{bottom:484.586667pt;}
.y79{bottom:484.906667pt;}
.ye9{bottom:486.426667pt;}
.y132{bottom:488.026667pt;}
.yb1{bottom:490.266667pt;}
.y5e{bottom:498.266667pt;}
.y2f{bottom:499.466667pt;}
.y110{bottom:501.866667pt;}
.y78{bottom:502.746667pt;}
.ye8{bottom:504.266667pt;}
.y131{bottom:505.866667pt;}
.yb0{bottom:508.026667pt;}
.y2e{bottom:514.266667pt;}
.y5d{bottom:516.026667pt;}
.y77{bottom:520.506667pt;}
.y10f{bottom:523.626667pt;}
.yaf{bottom:525.866667pt;}
.ye7{bottom:526.026667pt;}
.y130{bottom:527.626667pt;}
.y2d{bottom:529.146667pt;}
.y5c{bottom:533.866667pt;}
.y96{bottom:538.346667pt;}
.y76{bottom:540.666667pt;}
.y10e{bottom:541.466667pt;}
.yae{bottom:543.626667pt;}
.ye6{bottom:543.866667pt;}
.y2c{bottom:543.946667pt;}
.y12f{bottom:545.466667pt;}
.y5b{bottom:551.626667pt;}
.y95{bottom:556.106667pt;}
.y2b{bottom:558.746667pt;}
.y10d{bottom:559.226667pt;}
.yad{bottom:561.466667pt;}
.ye5{bottom:561.626667pt;}
.y12e{bottom:563.253333pt;}
.y5a{bottom:569.493333pt;}
.y2a{bottom:573.653333pt;}
.y94{bottom:573.893333pt;}
.yac{bottom:579.253333pt;}
.y10c{bottom:581.093333pt;}
.ye4{bottom:583.493333pt;}
.y59{bottom:587.253333pt;}
.y29{bottom:588.453333pt;}
.y93{bottom:591.733333pt;}
.yab{bottom:597.093333pt;}
.y10b{bottom:598.853333pt;}
.ye3{bottom:601.253333pt;}
.y28{bottom:603.253333pt;}
.y58{bottom:605.093333pt;}
.y92{bottom:609.493333pt;}
.yaa{bottom:614.853333pt;}
.y10a{bottom:616.693333pt;}
.y27{bottom:618.133333pt;}
.y12d{bottom:620.693333pt;}
.y57{bottom:622.853333pt;}
.ye2{bottom:623.013333pt;}
.y91{bottom:627.333333pt;}
.ya9{bottom:632.693333pt;}
.y26{bottom:632.933333pt;}
.y109{bottom:634.453333pt;}
.y12c{bottom:638.453333pt;}
.y56{bottom:640.693333pt;}
.ye1{bottom:640.853333pt;}
.y90{bottom:645.093333pt;}
.y25{bottom:647.813333pt;}
.ya8{bottom:650.453333pt;}
.y108{bottom:656.293333pt;}
.y55{bottom:658.453333pt;}
.ye0{bottom:658.613333pt;}
.y24{bottom:662.613333pt;}
.y8f{bottom:662.933333pt;}
.ya7{bottom:668.293333pt;}
.y107{bottom:674.053333pt;}
.y54{bottom:676.293333pt;}
.ydf{bottom:676.453333pt;}
.y23{bottom:678.133333pt;}
.yc7{bottom:680.693333pt;}
.y8e{bottom:683.093333pt;}
.ya6{bottom:686.053333pt;}
.y12b{bottom:691.813333pt;}
.y53{bottom:694.053333pt;}
.y22{bottom:695.573333pt;}
.y106{bottom:695.813333pt;}
.yde{bottom:698.213333pt;}
.yc6{bottom:700.853333pt;}
.ya5{bottom:703.813333pt;}
.y12a{bottom:709.653333pt;}
.y52{bottom:711.813333pt;}
.y21{bottom:711.893333pt;}
.y105{bottom:713.653333pt;}
.ydd{bottom:716.053333pt;}
.ya4{bottom:721.653333pt;}
.y129{bottom:727.413333pt;}
.y20{bottom:728.213333pt;}
.y51{bottom:729.653333pt;}
.y104{bottom:731.413333pt;}
.ydc{bottom:733.813333pt;}
.ya3{bottom:739.413333pt;}
.y1f{bottom:744.533333pt;}
.y50{bottom:747.413333pt;}
.y128{bottom:749.253333pt;}
.y103{bottom:753.253333pt;}
.ydb{bottom:755.653333pt;}
.ya2{bottom:757.253333pt;}
.y1e{bottom:760.853333pt;}
.y4f{bottom:765.253333pt;}
.y127{bottom:767.013333pt;}
.y102{bottom:771.013333pt;}
.yda{bottom:773.413333pt;}
.ya1{bottom:775.013333pt;}
.y1d{bottom:777.173333pt;}
.y4e{bottom:783.013333pt;}
.y126{bottom:784.853333pt;}
.y101{bottom:788.853333pt;}
.ya0{bottom:792.853333pt;}
.y1c{bottom:793.493333pt;}
.yd9{bottom:795.253333pt;}
.y4d{bottom:800.853333pt;}
.y100{bottom:806.613333pt;}
.y1b{bottom:809.813333pt;}
.y9f{bottom:810.613333pt;}
.yd8{bottom:813.013333pt;}
.y4c{bottom:818.613333pt;}
.yff{bottom:824.453333pt;}
.y1a{bottom:825.733333pt;}
.y9e{bottom:828.453333pt;}
.yd7{bottom:834.773333pt;}
.y4b{bottom:836.453333pt;}
.y19{bottom:841.333333pt;}
.y125{bottom:842.213333pt;}
.y9d{bottom:846.213333pt;}
.yd6{bottom:852.613333pt;}
.y4a{bottom:854.213333pt;}
.y18{bottom:859.093333pt;}
.yc5{bottom:859.573333pt;}
.y9c{bottom:864.053333pt;}
.yd5{bottom:870.373333pt;}
.y49{bottom:872.053333pt;}
.y17{bottom:876.933333pt;}
.yfe{bottom:881.813333pt;}
.y48{bottom:889.813333pt;}
.yd4{bottom:892.213333pt;}
.y15{bottom:895.413333pt;}
.yfd{bottom:899.653333pt;}
.y16{bottom:901.413333pt;}
.y47{bottom:907.653333pt;}
.yd3{bottom:909.973333pt;}
.y14{bottom:916.133333pt;}
.yfc{bottom:917.413333pt;}
.y124{bottom:921.413333pt;}
.y46{bottom:925.413333pt;}
.yd2{bottom:931.813333pt;}
.y13{bottom:936.960000pt;}
.yfb{bottom:939.200000pt;}
.y45{bottom:943.200000pt;}
.y13d{bottom:947.680000pt;}
.yd1{bottom:949.600000pt;}
.yfa{bottom:957.040000pt;}
.y12{bottom:957.680000pt;}
.y44{bottom:961.040000pt;}
.yd0{bottom:971.440000pt;}
.y11{bottom:977.440000pt;}
.y75{bottom:978.800000pt;}
.y43{bottom:983.280000pt;}
.ycf{bottom:989.200000pt;}
.y6{bottom:994.240000pt;}
.y42{bottom:996.640000pt;}
.yce{bottom:1004.560000pt;}
.y1{bottom:1010.720000pt;}
.y41{bottom:1014.400000pt;}
.y3f{bottom:1050.000000pt;}
.y3e{bottom:1069.520000pt;}
.h11{height:22.941719pt;}
.hd{height:32.734375pt;}
.h10{height:38.299219pt;}
.ha{height:39.249688pt;}
.he{height:43.536719pt;}
.h4{height:46.159844pt;}
.h6{height:49.101562pt;}
.h3{height:54.666406pt;}
.h8{height:54.927899pt;}
.hb{height:55.281250pt;}
.h7{height:59.903906pt;}
.h5{height:63.656250pt;}
.h9{height:64.402656pt;}
.hc{height:65.468750pt;}
.hf{height:69.406250pt;}
.h2{height:74.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:45.200000pt;}
.w4{width:293.066667pt;}
.w2{width:295.013333pt;}
.w6{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x1{left:87.360000pt;}
.x8{left:93.039988pt;}
.x6{left:94.559988pt;}
.xd{left:98.559988pt;}
.xb{left:141.866655pt;}
.x2{left:155.226667pt;}
.x10{left:232.106655pt;}
.xc{left:286.586655pt;}
.x3{left:382.373333pt;}
.x7{left:396.933322pt;}
.x5{left:427.573333pt;}
.x9{left:498.293310pt;}
.xa{left:502.933322pt;}
.xf{left:533.413322pt;}
.x12{left:683.039988pt;}
.xe{left:691.199988pt;}
.x11{left:695.279988pt;}
}




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