
    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_fdc2e2aee488b8b7cd776d75.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.052734;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_ce41a199ecfb190f5e9e0f02.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_8fd7382b28728560f309fc47.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_93fcc3e270df7ea3172abe39.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_6e2ee37c8c251c4b051f164d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.681641;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_921521b819dc47d92e0b031f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_fa7f997b568b4b587dab71cf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.078613;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);}
.v7{vertical-align:-28.200000px;}
.v2{vertical-align:-23.400000px;}
.v5{vertical-align:-15.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:14.400000px;}
.v6{vertical-align:24.000000px;}
.v1{vertical-align:25.800000px;}
.v3{vertical-align:28.200000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.228000px;}
.ls3{letter-spacing:0.451200px;}
.ls5{letter-spacing:1.728000px;}
.ls4{letter-spacing:100.051200px;}
.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;}
}
.wsa{word-spacing:-19.944000px;}
.ws7{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.620000px;}
.wsd{word-spacing:-16.500000px;}
.ws2{word-spacing:-15.000000px;}
.ws0{word-spacing:-12.000000px;}
.ws8{word-spacing:-10.500000px;}
.wsc{word-spacing:-9.639600px;}
.ws3{word-spacing:-9.600000px;}
.ws4{word-spacing:-8.700000px;}
.ws6{word-spacing:0.000000px;}
.wsb{word-spacing:227.220000px;}
.ws9{word-spacing:580.320000px;}
._5{margin-left:-10.140000px;}
._19{margin-left:-8.928000px;}
._17{margin-left:-7.680000px;}
._4{margin-left:-6.318000px;}
._2{margin-left:-4.500000px;}
._10{margin-left:-3.408000px;}
._1{margin-left:-2.400000px;}
._3{margin-left:-1.020000px;}
._0{width:1.584000px;}
._8{width:2.706000px;}
._c{width:3.708000px;}
._b{width:4.860000px;}
._1a{width:5.862000px;}
._9{width:6.864000px;}
._a{width:8.184000px;}
._d{width:10.116000px;}
._7{width:11.748000px;}
._f{width:12.840000px;}
._e{width:13.872000px;}
._6{width:15.048000px;}
._14{width:16.140000px;}
._26{width:19.224000px;}
._20{width:20.268000px;}
._1f{width:21.888000px;}
._15{width:23.292000px;}
._18{width:24.408000px;}
._23{width:25.464000px;}
._16{width:27.240000px;}
._13{width:30.960000px;}
._11{width:33.420000px;}
._12{width:34.440000px;}
._21{width:36.288000px;}
._22{width:37.416000px;}
._25{width:39.168000px;}
._24{width:40.536000px;}
._1e{width:296.880000px;}
._1c{width:315.180000px;}
._1d{width:340.380000px;}
._1b{width:750.384000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(163,163,163);}
.fc1{color:rgb(162,162,162);}
.fc0{color:rgb(127,127,127);}
.fs2{font-size:33.000000px;}
.fs8{font-size:34.800000px;}
.fs3{font-size:36.000000px;}
.fs7{font-size:38.400000px;}
.fs9{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y4d{bottom:87.541500px;}
.y61{bottom:89.641500px;}
.yc6{bottom:131.041500px;}
.y100{bottom:132.691500px;}
.y4c{bottom:138.391500px;}
.y88{bottom:138.841500px;}
.y72{bottom:146.533500px;}
.yc5{bottom:148.291500px;}
.yff{bottom:149.941500px;}
.y87{bottom:156.091500px;}
.y6e{bottom:156.391500px;}
.y4b{bottom:158.191500px;}
.yc4{bottom:165.541500px;}
.yfe{bottom:167.191500px;}
.y71{bottom:170.983500px;}
.y86{bottom:173.341500px;}
.y124{bottom:173.791500px;}
.y4a{bottom:178.141500px;}
.y108{bottom:178.441500px;}
.yc3{bottom:182.791500px;}
.y6d{bottom:187.441500px;}
.y85{bottom:190.591500px;}
.y123{bottom:197.641500px;}
.y49{bottom:197.941500px;}
.yc2{bottom:200.041500px;}
.yfd{bottom:204.241500px;}
.y84{bottom:207.841500px;}
.y107{bottom:209.491500px;}
.y149{bottom:215.491500px;}
.yc1{bottom:217.291500px;}
.y48{bottom:217.891500px;}
.y6c{bottom:218.491500px;}
.y122{bottom:221.341500px;}
.yfc{bottom:221.491500px;}
.y83{bottom:225.091500px;}
.yc0{bottom:234.541500px;}
.y47{bottom:237.691500px;}
.yfb{bottom:238.741500px;}
.y148{bottom:239.341500px;}
.y106{bottom:240.541500px;}
.y82{bottom:242.341500px;}
.y121{bottom:245.191500px;}
.y6b{bottom:249.541500px;}
.ybf{bottom:251.791500px;}
.yfa{bottom:255.991500px;}
.y46{bottom:257.641500px;}
.y70{bottom:257.683500px;}
.y81{bottom:259.591500px;}
.y147{bottom:263.041500px;}
.y120{bottom:268.891500px;}
.ybe{bottom:269.041500px;}
.y105{bottom:271.591500px;}
.yf9{bottom:273.241500px;}
.y6f{bottom:274.783500px;}
.y80{bottom:276.841500px;}
.y45{bottom:277.441500px;}
.y6a{bottom:280.591500px;}
.ybd{bottom:286.291500px;}
.y146{bottom:286.891500px;}
.yf8{bottom:290.491500px;}
.y11f{bottom:292.741500px;}
.y7f{bottom:294.091500px;}
.y44{bottom:297.391500px;}
.y104{bottom:302.641500px;}
.yf7{bottom:307.741500px;}
.y145{bottom:310.591500px;}
.y7e{bottom:311.341500px;}
.y69{bottom:311.641500px;}
.y11e{bottom:316.441500px;}
.y43{bottom:317.191500px;}
.ybc{bottom:323.191500px;}
.yf6{bottom:324.991500px;}
.y7d{bottom:328.591500px;}
.y103{bottom:333.691500px;}
.y144{bottom:334.441500px;}
.y42{bottom:337.141500px;}
.y11d{bottom:340.291500px;}
.ybb{bottom:340.441500px;}
.yf5{bottom:342.241500px;}
.y68{bottom:342.691500px;}
.y7c{bottom:345.841500px;}
.y41{bottom:356.941500px;}
.yba{bottom:357.691500px;}
.y143{bottom:358.141500px;}
.yf4{bottom:359.491500px;}
.y7b{bottom:363.091500px;}
.y11c{bottom:363.991500px;}
.y67{bottom:373.741500px;}
.yb9{bottom:374.941500px;}
.yf3{bottom:376.741500px;}
.y40{bottom:376.891500px;}
.y7a{bottom:380.341500px;}
.y142{bottom:381.991500px;}
.y11b{bottom:387.841500px;}
.y102{bottom:391.891500px;}
.yb8{bottom:392.191500px;}
.yf2{bottom:393.991500px;}
.y3f{bottom:396.691500px;}
.y79{bottom:397.591500px;}
.y66{bottom:404.791500px;}
.y141{bottom:405.691500px;}
.yb7{bottom:409.441500px;}
.yf1{bottom:411.241500px;}
.y11a{bottom:411.541500px;}
.y78{bottom:414.841500px;}
.y3e{bottom:416.641500px;}
.y1e{bottom:426.691500px;}
.yf0{bottom:428.491500px;}
.y140{bottom:429.541500px;}
.y77{bottom:432.091500px;}
.y119{bottom:435.391500px;}
.y65{bottom:435.841500px;}
.y3d{bottom:436.441500px;}
.y1d{bottom:443.941500px;}
.yef{bottom:445.741500px;}
.y76{bottom:449.341500px;}
.y13f{bottom:453.241500px;}
.y3c{bottom:456.391500px;}
.y118{bottom:459.091500px;}
.yb6{bottom:461.191500px;}
.y1c{bottom:461.341500px;}
.yee{bottom:462.991500px;}
.y75{bottom:466.591500px;}
.y64{bottom:466.891500px;}
.y3b{bottom:476.191500px;}
.y13e{bottom:477.091500px;}
.yb5{bottom:478.441500px;}
.y1b{bottom:478.591500px;}
.yed{bottom:480.241500px;}
.y117{bottom:482.941500px;}
.y74{bottom:483.841500px;}
.yb4{bottom:495.691500px;}
.y1a{bottom:495.991500px;}
.y3a{bottom:496.141500px;}
.yec{bottom:497.491500px;}
.y63{bottom:497.941500px;}
.y13d{bottom:500.791500px;}
.y116{bottom:506.641500px;}
.yb3{bottom:512.941500px;}
.y19{bottom:513.241500px;}
.yeb{bottom:514.741500px;}
.y39{bottom:515.941500px;}
.y13c{bottom:524.641500px;}
.y60{bottom:528.991500px;}
.yb2{bottom:530.191500px;}
.y115{bottom:530.491500px;}
.y18{bottom:530.641500px;}
.y73{bottom:530.941500px;}
.yea{bottom:531.991500px;}
.y38{bottom:535.891500px;}
.yb1{bottom:547.441500px;}
.y17{bottom:547.891500px;}
.y13b{bottom:548.341500px;}
.ye9{bottom:549.241500px;}
.y114{bottom:554.191500px;}
.y37{bottom:555.691500px;}
.y62{bottom:560.041500px;}
.yb0{bottom:564.691500px;}
.y16{bottom:565.291500px;}
.ye8{bottom:566.491500px;}
.y13a{bottom:572.191500px;}
.y36{bottom:575.641500px;}
.y113{bottom:578.041500px;}
.yaf{bottom:581.941500px;}
.y15{bottom:582.541500px;}
.ye7{bottom:583.741500px;}
.y5f{bottom:591.091500px;}
.y35{bottom:595.441500px;}
.y139{bottom:595.891500px;}
.yae{bottom:599.191500px;}
.y14{bottom:599.941500px;}
.ye6{bottom:600.991500px;}
.y112{bottom:601.741500px;}
.y34{bottom:615.391500px;}
.yad{bottom:616.441500px;}
.y13{bottom:617.191500px;}
.ye5{bottom:618.241500px;}
.y138{bottom:619.741500px;}
.y5e{bottom:622.141500px;}
.y111{bottom:625.591500px;}
.yac{bottom:633.691500px;}
.y12{bottom:634.591500px;}
.y33{bottom:635.191500px;}
.ye4{bottom:635.491500px;}
.y137{bottom:643.441500px;}
.y110{bottom:649.291500px;}
.yab{bottom:650.941500px;}
.y11{bottom:651.841500px;}
.ye3{bottom:652.741500px;}
.y5d{bottom:653.191500px;}
.y32{bottom:655.141500px;}
.y136{bottom:667.291500px;}
.y10{bottom:669.241500px;}
.ye2{bottom:669.991500px;}
.y10f{bottom:673.141500px;}
.y31{bottom:674.941500px;}
.y5c{bottom:684.241500px;}
.yf{bottom:686.491500px;}
.ye1{bottom:687.241500px;}
.yaa{bottom:687.991500px;}
.y135{bottom:690.991500px;}
.y10e{bottom:696.841500px;}
.y30{bottom:703.291500px;}
.ye0{bottom:704.491500px;}
.ya9{bottom:705.241500px;}
.y134{bottom:714.841500px;}
.y5b{bottom:715.291500px;}
.y10d{bottom:720.691500px;}
.ydf{bottom:721.741500px;}
.ya8{bottom:722.491500px;}
.ye{bottom:724.291500px;}
.y133{bottom:738.541500px;}
.yde{bottom:738.991500px;}
.ya7{bottom:739.741500px;}
.yd{bottom:741.691500px;}
.y10c{bottom:744.391500px;}
.y2f{bottom:744.841500px;}
.y5a{bottom:746.341500px;}
.ydd{bottom:756.241500px;}
.ya6{bottom:756.991500px;}
.y2e{bottom:758.791500px;}
.y132{bottom:762.391500px;}
.y10b{bottom:768.241500px;}
.yd9{bottom:771.691500px;}
.ydc{bottom:773.491500px;}
.ya5{bottom:774.241500px;}
.yc{bottom:776.341500px;}
.y59{bottom:777.391500px;}
.y2d{bottom:784.591500px;}
.y131{bottom:786.091500px;}
.yd8{bottom:788.941500px;}
.ydb{bottom:790.741500px;}
.ya4{bottom:791.491500px;}
.y10a{bottom:791.941500px;}
.y2c{bottom:798.541500px;}
.yda{bottom:807.991500px;}
.y58{bottom:808.441500px;}
.ya3{bottom:808.741500px;}
.y130{bottom:809.941500px;}
.yb{bottom:810.841500px;}
.y91{bottom:812.383500px;}
.y109{bottom:815.791500px;}
.y2b{bottom:824.341500px;}
.y101{bottom:825.241500px;}
.ya2{bottom:825.991500px;}
.ya{bottom:828.241500px;}
.y90{bottom:833.083500px;}
.y12f{bottom:833.641500px;}
.y57{bottom:839.491500px;}
.ya1{bottom:843.241500px;}
.y2a{bottom:844.141500px;}
.yd7{bottom:844.891500px;}
.y12e{bottom:857.491500px;}
.y29{bottom:859.291500px;}
.ya0{bottom:860.491500px;}
.yd6{bottom:862.141500px;}
.y9{bottom:862.741500px;}
.y56{bottom:870.541500px;}
.y9f{bottom:877.741500px;}
.yd5{bottom:879.391500px;}
.y8{bottom:879.991500px;}
.y12d{bottom:881.191500px;}
.y28{bottom:888.391500px;}
.y8f{bottom:891.883500px;}
.y9e{bottom:894.991500px;}
.yd4{bottom:896.641500px;}
.y7{bottom:897.391500px;}
.y55{bottom:901.591500px;}
.y27{bottom:902.941500px;}
.y12c{bottom:905.041500px;}
.y9d{bottom:912.241500px;}
.y8d{bottom:912.583500px;}
.yd3{bottom:913.891500px;}
.y26{bottom:924.691500px;}
.y12b{bottom:928.741500px;}
.y9c{bottom:929.491500px;}
.yd2{bottom:931.141500px;}
.y6{bottom:931.891500px;}
.y54{bottom:932.641500px;}
.y8e{bottom:933.283500px;}
.y25{bottom:946.441500px;}
.y9b{bottom:946.741500px;}
.yd1{bottom:948.391500px;}
.y5{bottom:949.291500px;}
.y12a{bottom:952.591500px;}
.y53{bottom:963.691500px;}
.y9a{bottom:963.991500px;}
.yd0{bottom:965.641500px;}
.y24{bottom:968.191500px;}
.y129{bottom:976.291500px;}
.y99{bottom:981.241500px;}
.ycf{bottom:982.891500px;}
.y23{bottom:989.941500px;}
.y52{bottom:994.741500px;}
.y98{bottom:998.491500px;}
.yce{bottom:1000.141500px;}
.y22{bottom:1012.741500px;}
.y97{bottom:1015.741500px;}
.ycd{bottom:1017.391500px;}
.y128{bottom:1023.841500px;}
.y51{bottom:1025.791500px;}
.y8b{bottom:1026.283500px;}
.y96{bottom:1032.991500px;}
.ycc{bottom:1034.641500px;}
.y21{bottom:1038.541500px;}
.y8a{bottom:1046.983500px;}
.y127{bottom:1047.691500px;}
.y95{bottom:1050.241500px;}
.y8c{bottom:1051.633500px;}
.ycb{bottom:1051.891500px;}
.y50{bottom:1056.841500px;}
.y20{bottom:1064.191500px;}
.y94{bottom:1067.491500px;}
.y89{bottom:1067.683500px;}
.yca{bottom:1069.141500px;}
.y126{bottom:1071.391500px;}
.y93{bottom:1084.741500px;}
.yc9{bottom:1086.391500px;}
.y4f{bottom:1087.891500px;}
.y1f{bottom:1089.991500px;}
.y125{bottom:1095.241500px;}
.y92{bottom:1101.991500px;}
.yc8{bottom:1103.641500px;}
.y4e{bottom:1118.941500px;}
.yc7{bottom:1120.891500px;}
.y4{bottom:1131.991500px;}
.y3{bottom:1145.791500px;}
.y2{bottom:1160.941500px;}
.ha{height:30.534961px;}
.hd{height:40.171875px;}
.h4{height:43.031250px;}
.h11{height:43.681641px;}
.h13{height:48.735352px;}
.h12{height:49.335352px;}
.h7{height:52.646484px;}
.h5{height:53.291016px;}
.h6{height:53.789062px;}
.h14{height:58.620117px;}
.h9{height:59.493750px;}
.h3{height:60.257812px;}
.h15{height:61.769531px;}
.hb{height:63.175781px;}
.hc{height:63.949219px;}
.h10{height:64.546875px;}
.he{height:65.052539px;}
.h8{height:69.278320px;}
.hf{height:78.946875px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.200000px;}
.x6{left:87.300000px;}
.x6b{left:94.050000px;}
.xd{left:102.300000px;}
.x61{left:106.500000px;}
.x8{left:108.600000px;}
.x37{left:111.000000px;}
.x4b{left:112.350000px;}
.x30{left:114.900000px;}
.xc{left:117.300000px;}
.x31{left:124.500000px;}
.x59{left:129.150000px;}
.xe{left:131.550000px;}
.xa{left:134.550000px;}
.x7{left:140.550000px;}
.x6c{left:228.600000px;}
.xf{left:230.700000px;}
.x12{left:232.650000px;}
.x3b{left:235.200000px;}
.x38{left:236.400000px;}
.x10{left:238.050000px;}
.x3d{left:239.850000px;}
.x5a{left:241.050000px;}
.x3a{left:242.700000px;}
.x5b{left:244.350000px;}
.x11{left:246.900000px;}
.x39{left:248.550000px;}
.x70{left:251.400000px;}
.x6d{left:252.750000px;}
.x4c{left:253.950000px;}
.x13{left:257.250000px;}
.x5c{left:258.900000px;}
.x3c{left:263.100000px;}
.x5{left:347.400000px;}
.x3{left:349.500000px;}
.x76{left:356.700000px;}
.x1f{left:363.900000px;}
.x19{left:365.100000px;}
.x3f{left:366.750000px;}
.x40{left:368.100000px;}
.x3e{left:369.300000px;}
.x16{left:370.500000px;}
.x6e{left:371.850000px;}
.x15{left:373.500000px;}
.x1c{left:375.600000px;}
.x1d{left:376.800000px;}
.x2{left:377.850000px;}
.x71{left:379.350000px;}
.x17{left:380.550000px;}
.x18{left:382.200000px;}
.x14{left:383.850000px;}
.x1b{left:386.400000px;}
.x4f{left:387.600000px;}
.x4d{left:389.250000px;}
.x1a{left:390.600000px;}
.x4e{left:392.250000px;}
.x5d{left:393.900000px;}
.x72{left:395.100000px;}
.x1e{left:403.050000px;}
.x34{left:406.950000px;}
.x9{left:409.050000px;}
.x73{left:410.100000px;}
.x2e{left:411.750000px;}
.x33{left:414.900000px;}
.x2f{left:422.700000px;}
.x32{left:426.450000px;}
.x36{left:428.100000px;}
.x35{left:431.700000px;}
.xb{left:475.050000px;}
.x4{left:499.050000px;}
.x62{left:500.700000px;}
.x64{left:503.100000px;}
.x63{left:504.450000px;}
.x41{left:506.100000px;}
.x51{left:507.300000px;}
.x20{left:509.400000px;}
.x65{left:511.500000px;}
.x52{left:512.700000px;}
.x67{left:515.250000px;}
.x44{left:517.350000px;}
.x43{left:519.750000px;}
.x21{left:521.850000px;}
.x22{left:523.950000px;}
.x53{left:526.500000px;}
.x66{left:527.700000px;}
.x42{left:529.350000px;}
.x50{left:530.700000px;}
.x74{left:534.450000px;}
.x5f{left:633.900000px;}
.x25{left:635.250000px;}
.x2c{left:636.450000px;}
.x23{left:638.100000px;}
.x26{left:639.750000px;}
.x4a{left:641.400000px;}
.x45{left:643.050000px;}
.x49{left:645.150000px;}
.x2a{left:646.800000px;}
.x55{left:648.450000px;}
.x24{left:649.800000px;}
.x2b{left:651.900000px;}
.x57{left:653.550000px;}
.x56{left:654.750000px;}
.x75{left:656.400000px;}
.x47{left:657.750000px;}
.x54{left:658.950000px;}
.x29{left:661.050000px;}
.x6f{left:662.250000px;}
.x2d{left:663.450000px;}
.x46{left:665.550000px;}
.x69{left:667.650000px;}
.x58{left:669.300000px;}
.x5e{left:670.950000px;}
.x28{left:672.300000px;}
.x68{left:674.850000px;}
.x27{left:676.050000px;}
.x6a{left:679.350000px;}
.x60{left:680.550000px;}
.x48{left:684.000000px;}
@media print{
.v7{vertical-align:-25.066667pt;}
.v2{vertical-align:-20.800000pt;}
.v5{vertical-align:-13.333333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.800000pt;}
.v6{vertical-align:21.333333pt;}
.v1{vertical-align:22.933333pt;}
.v3{vertical-align:25.066667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.202667pt;}
.ls3{letter-spacing:0.401067pt;}
.ls5{letter-spacing:1.536000pt;}
.ls4{letter-spacing:88.934400pt;}
.wsa{word-spacing:-17.728000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.773333pt;}
.wsd{word-spacing:-14.666667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws0{word-spacing:-10.666667pt;}
.ws8{word-spacing:-9.333333pt;}
.wsc{word-spacing:-8.568533pt;}
.ws3{word-spacing:-8.533333pt;}
.ws4{word-spacing:-7.733333pt;}
.ws6{word-spacing:0.000000pt;}
.wsb{word-spacing:201.973333pt;}
.ws9{word-spacing:515.840000pt;}
._5{margin-left:-9.013333pt;}
._19{margin-left:-7.936000pt;}
._17{margin-left:-6.826667pt;}
._4{margin-left:-5.616000pt;}
._2{margin-left:-4.000000pt;}
._10{margin-left:-3.029333pt;}
._1{margin-left:-2.133333pt;}
._3{margin-left:-0.906667pt;}
._0{width:1.408000pt;}
._8{width:2.405333pt;}
._c{width:3.296000pt;}
._b{width:4.320000pt;}
._1a{width:5.210667pt;}
._9{width:6.101333pt;}
._a{width:7.274667pt;}
._d{width:8.992000pt;}
._7{width:10.442667pt;}
._f{width:11.413333pt;}
._e{width:12.330667pt;}
._6{width:13.376000pt;}
._14{width:14.346667pt;}
._26{width:17.088000pt;}
._20{width:18.016000pt;}
._1f{width:19.456000pt;}
._15{width:20.704000pt;}
._18{width:21.696000pt;}
._23{width:22.634667pt;}
._16{width:24.213333pt;}
._13{width:27.520000pt;}
._11{width:29.706667pt;}
._12{width:30.613333pt;}
._21{width:32.256000pt;}
._22{width:33.258667pt;}
._25{width:34.816000pt;}
._24{width:36.032000pt;}
._1e{width:263.893333pt;}
._1c{width:280.160000pt;}
._1d{width:302.560000pt;}
._1b{width:667.008000pt;}
.fs2{font-size:29.333333pt;}
.fs8{font-size:30.933333pt;}
.fs3{font-size:32.000000pt;}
.fs7{font-size:34.133333pt;}
.fs9{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y4d{bottom:77.814667pt;}
.y61{bottom:79.681333pt;}
.yc6{bottom:116.481333pt;}
.y100{bottom:117.948000pt;}
.y4c{bottom:123.014667pt;}
.y88{bottom:123.414667pt;}
.y72{bottom:130.252000pt;}
.yc5{bottom:131.814667pt;}
.yff{bottom:133.281333pt;}
.y87{bottom:138.748000pt;}
.y6e{bottom:139.014667pt;}
.y4b{bottom:140.614667pt;}
.yc4{bottom:147.148000pt;}
.yfe{bottom:148.614667pt;}
.y71{bottom:151.985333pt;}
.y86{bottom:154.081333pt;}
.y124{bottom:154.481333pt;}
.y4a{bottom:158.348000pt;}
.y108{bottom:158.614667pt;}
.yc3{bottom:162.481333pt;}
.y6d{bottom:166.614667pt;}
.y85{bottom:169.414667pt;}
.y123{bottom:175.681333pt;}
.y49{bottom:175.948000pt;}
.yc2{bottom:177.814667pt;}
.yfd{bottom:181.548000pt;}
.y84{bottom:184.748000pt;}
.y107{bottom:186.214667pt;}
.y149{bottom:191.548000pt;}
.yc1{bottom:193.148000pt;}
.y48{bottom:193.681333pt;}
.y6c{bottom:194.214667pt;}
.y122{bottom:196.748000pt;}
.yfc{bottom:196.881333pt;}
.y83{bottom:200.081333pt;}
.yc0{bottom:208.481333pt;}
.y47{bottom:211.281333pt;}
.yfb{bottom:212.214667pt;}
.y148{bottom:212.748000pt;}
.y106{bottom:213.814667pt;}
.y82{bottom:215.414667pt;}
.y121{bottom:217.948000pt;}
.y6b{bottom:221.814667pt;}
.ybf{bottom:223.814667pt;}
.yfa{bottom:227.548000pt;}
.y46{bottom:229.014667pt;}
.y70{bottom:229.052000pt;}
.y81{bottom:230.748000pt;}
.y147{bottom:233.814667pt;}
.y120{bottom:239.014667pt;}
.ybe{bottom:239.148000pt;}
.y105{bottom:241.414667pt;}
.yf9{bottom:242.881333pt;}
.y6f{bottom:244.252000pt;}
.y80{bottom:246.081333pt;}
.y45{bottom:246.614667pt;}
.y6a{bottom:249.414667pt;}
.ybd{bottom:254.481333pt;}
.y146{bottom:255.014667pt;}
.yf8{bottom:258.214667pt;}
.y11f{bottom:260.214667pt;}
.y7f{bottom:261.414667pt;}
.y44{bottom:264.348000pt;}
.y104{bottom:269.014667pt;}
.yf7{bottom:273.548000pt;}
.y145{bottom:276.081333pt;}
.y7e{bottom:276.748000pt;}
.y69{bottom:277.014667pt;}
.y11e{bottom:281.281333pt;}
.y43{bottom:281.948000pt;}
.ybc{bottom:287.281333pt;}
.yf6{bottom:288.881333pt;}
.y7d{bottom:292.081333pt;}
.y103{bottom:296.614667pt;}
.y144{bottom:297.281333pt;}
.y42{bottom:299.681333pt;}
.y11d{bottom:302.481333pt;}
.ybb{bottom:302.614667pt;}
.yf5{bottom:304.214667pt;}
.y68{bottom:304.614667pt;}
.y7c{bottom:307.414667pt;}
.y41{bottom:317.281333pt;}
.yba{bottom:317.948000pt;}
.y143{bottom:318.348000pt;}
.yf4{bottom:319.548000pt;}
.y7b{bottom:322.748000pt;}
.y11c{bottom:323.548000pt;}
.y67{bottom:332.214667pt;}
.yb9{bottom:333.281333pt;}
.yf3{bottom:334.881333pt;}
.y40{bottom:335.014667pt;}
.y7a{bottom:338.081333pt;}
.y142{bottom:339.548000pt;}
.y11b{bottom:344.748000pt;}
.y102{bottom:348.348000pt;}
.yb8{bottom:348.614667pt;}
.yf2{bottom:350.214667pt;}
.y3f{bottom:352.614667pt;}
.y79{bottom:353.414667pt;}
.y66{bottom:359.814667pt;}
.y141{bottom:360.614667pt;}
.yb7{bottom:363.948000pt;}
.yf1{bottom:365.548000pt;}
.y11a{bottom:365.814667pt;}
.y78{bottom:368.748000pt;}
.y3e{bottom:370.348000pt;}
.y1e{bottom:379.281333pt;}
.yf0{bottom:380.881333pt;}
.y140{bottom:381.814667pt;}
.y77{bottom:384.081333pt;}
.y119{bottom:387.014667pt;}
.y65{bottom:387.414667pt;}
.y3d{bottom:387.948000pt;}
.y1d{bottom:394.614667pt;}
.yef{bottom:396.214667pt;}
.y76{bottom:399.414667pt;}
.y13f{bottom:402.881333pt;}
.y3c{bottom:405.681333pt;}
.y118{bottom:408.081333pt;}
.yb6{bottom:409.948000pt;}
.y1c{bottom:410.081333pt;}
.yee{bottom:411.548000pt;}
.y75{bottom:414.748000pt;}
.y64{bottom:415.014667pt;}
.y3b{bottom:423.281333pt;}
.y13e{bottom:424.081333pt;}
.yb5{bottom:425.281333pt;}
.y1b{bottom:425.414667pt;}
.yed{bottom:426.881333pt;}
.y117{bottom:429.281333pt;}
.y74{bottom:430.081333pt;}
.yb4{bottom:440.614667pt;}
.y1a{bottom:440.881333pt;}
.y3a{bottom:441.014667pt;}
.yec{bottom:442.214667pt;}
.y63{bottom:442.614667pt;}
.y13d{bottom:445.148000pt;}
.y116{bottom:450.348000pt;}
.yb3{bottom:455.948000pt;}
.y19{bottom:456.214667pt;}
.yeb{bottom:457.548000pt;}
.y39{bottom:458.614667pt;}
.y13c{bottom:466.348000pt;}
.y60{bottom:470.214667pt;}
.yb2{bottom:471.281333pt;}
.y115{bottom:471.548000pt;}
.y18{bottom:471.681333pt;}
.y73{bottom:471.948000pt;}
.yea{bottom:472.881333pt;}
.y38{bottom:476.348000pt;}
.yb1{bottom:486.614667pt;}
.y17{bottom:487.014667pt;}
.y13b{bottom:487.414667pt;}
.ye9{bottom:488.214667pt;}
.y114{bottom:492.614667pt;}
.y37{bottom:493.948000pt;}
.y62{bottom:497.814667pt;}
.yb0{bottom:501.948000pt;}
.y16{bottom:502.481333pt;}
.ye8{bottom:503.548000pt;}
.y13a{bottom:508.614667pt;}
.y36{bottom:511.681333pt;}
.y113{bottom:513.814667pt;}
.yaf{bottom:517.281333pt;}
.y15{bottom:517.814667pt;}
.ye7{bottom:518.881333pt;}
.y5f{bottom:525.414667pt;}
.y35{bottom:529.281333pt;}
.y139{bottom:529.681333pt;}
.yae{bottom:532.614667pt;}
.y14{bottom:533.281333pt;}
.ye6{bottom:534.214667pt;}
.y112{bottom:534.881333pt;}
.y34{bottom:547.014667pt;}
.yad{bottom:547.948000pt;}
.y13{bottom:548.614667pt;}
.ye5{bottom:549.548000pt;}
.y138{bottom:550.881333pt;}
.y5e{bottom:553.014667pt;}
.y111{bottom:556.081333pt;}
.yac{bottom:563.281333pt;}
.y12{bottom:564.081333pt;}
.y33{bottom:564.614667pt;}
.ye4{bottom:564.881333pt;}
.y137{bottom:571.948000pt;}
.y110{bottom:577.148000pt;}
.yab{bottom:578.614667pt;}
.y11{bottom:579.414667pt;}
.ye3{bottom:580.214667pt;}
.y5d{bottom:580.614667pt;}
.y32{bottom:582.348000pt;}
.y136{bottom:593.148000pt;}
.y10{bottom:594.881333pt;}
.ye2{bottom:595.548000pt;}
.y10f{bottom:598.348000pt;}
.y31{bottom:599.948000pt;}
.y5c{bottom:608.214667pt;}
.yf{bottom:610.214667pt;}
.ye1{bottom:610.881333pt;}
.yaa{bottom:611.548000pt;}
.y135{bottom:614.214667pt;}
.y10e{bottom:619.414667pt;}
.y30{bottom:625.148000pt;}
.ye0{bottom:626.214667pt;}
.ya9{bottom:626.881333pt;}
.y134{bottom:635.414667pt;}
.y5b{bottom:635.814667pt;}
.y10d{bottom:640.614667pt;}
.ydf{bottom:641.548000pt;}
.ya8{bottom:642.214667pt;}
.ye{bottom:643.814667pt;}
.y133{bottom:656.481333pt;}
.yde{bottom:656.881333pt;}
.ya7{bottom:657.548000pt;}
.yd{bottom:659.281333pt;}
.y10c{bottom:661.681333pt;}
.y2f{bottom:662.081333pt;}
.y5a{bottom:663.414667pt;}
.ydd{bottom:672.214667pt;}
.ya6{bottom:672.881333pt;}
.y2e{bottom:674.481333pt;}
.y132{bottom:677.681333pt;}
.y10b{bottom:682.881333pt;}
.yd9{bottom:685.948000pt;}
.ydc{bottom:687.548000pt;}
.ya5{bottom:688.214667pt;}
.yc{bottom:690.081333pt;}
.y59{bottom:691.014667pt;}
.y2d{bottom:697.414667pt;}
.y131{bottom:698.748000pt;}
.yd8{bottom:701.281333pt;}
.ydb{bottom:702.881333pt;}
.ya4{bottom:703.548000pt;}
.y10a{bottom:703.948000pt;}
.y2c{bottom:709.814667pt;}
.yda{bottom:718.214667pt;}
.y58{bottom:718.614667pt;}
.ya3{bottom:718.881333pt;}
.y130{bottom:719.948000pt;}
.yb{bottom:720.748000pt;}
.y91{bottom:722.118667pt;}
.y109{bottom:725.148000pt;}
.y2b{bottom:732.748000pt;}
.y101{bottom:733.548000pt;}
.ya2{bottom:734.214667pt;}
.ya{bottom:736.214667pt;}
.y90{bottom:740.518667pt;}
.y12f{bottom:741.014667pt;}
.y57{bottom:746.214667pt;}
.ya1{bottom:749.548000pt;}
.y2a{bottom:750.348000pt;}
.yd7{bottom:751.014667pt;}
.y12e{bottom:762.214667pt;}
.y29{bottom:763.814667pt;}
.ya0{bottom:764.881333pt;}
.yd6{bottom:766.348000pt;}
.y9{bottom:766.881333pt;}
.y56{bottom:773.814667pt;}
.y9f{bottom:780.214667pt;}
.yd5{bottom:781.681333pt;}
.y8{bottom:782.214667pt;}
.y12d{bottom:783.281333pt;}
.y28{bottom:789.681333pt;}
.y8f{bottom:792.785333pt;}
.y9e{bottom:795.548000pt;}
.yd4{bottom:797.014667pt;}
.y7{bottom:797.681333pt;}
.y55{bottom:801.414667pt;}
.y27{bottom:802.614667pt;}
.y12c{bottom:804.481333pt;}
.y9d{bottom:810.881333pt;}
.y8d{bottom:811.185333pt;}
.yd3{bottom:812.348000pt;}
.y26{bottom:821.948000pt;}
.y12b{bottom:825.548000pt;}
.y9c{bottom:826.214667pt;}
.yd2{bottom:827.681333pt;}
.y6{bottom:828.348000pt;}
.y54{bottom:829.014667pt;}
.y8e{bottom:829.585333pt;}
.y25{bottom:841.281333pt;}
.y9b{bottom:841.548000pt;}
.yd1{bottom:843.014667pt;}
.y5{bottom:843.814667pt;}
.y12a{bottom:846.748000pt;}
.y53{bottom:856.614667pt;}
.y9a{bottom:856.881333pt;}
.yd0{bottom:858.348000pt;}
.y24{bottom:860.614667pt;}
.y129{bottom:867.814667pt;}
.y99{bottom:872.214667pt;}
.ycf{bottom:873.681333pt;}
.y23{bottom:879.948000pt;}
.y52{bottom:884.214667pt;}
.y98{bottom:887.548000pt;}
.yce{bottom:889.014667pt;}
.y22{bottom:900.214667pt;}
.y97{bottom:902.881333pt;}
.ycd{bottom:904.348000pt;}
.y128{bottom:910.081333pt;}
.y51{bottom:911.814667pt;}
.y8b{bottom:912.252000pt;}
.y96{bottom:918.214667pt;}
.ycc{bottom:919.681333pt;}
.y21{bottom:923.148000pt;}
.y8a{bottom:930.652000pt;}
.y127{bottom:931.281333pt;}
.y95{bottom:933.548000pt;}
.y8c{bottom:934.785333pt;}
.ycb{bottom:935.014667pt;}
.y50{bottom:939.414667pt;}
.y20{bottom:945.948000pt;}
.y94{bottom:948.881333pt;}
.y89{bottom:949.052000pt;}
.yca{bottom:950.348000pt;}
.y126{bottom:952.348000pt;}
.y93{bottom:964.214667pt;}
.yc9{bottom:965.681333pt;}
.y4f{bottom:967.014667pt;}
.y1f{bottom:968.881333pt;}
.y125{bottom:973.548000pt;}
.y92{bottom:979.548000pt;}
.yc8{bottom:981.014667pt;}
.y4e{bottom:994.614667pt;}
.yc7{bottom:996.348000pt;}
.y4{bottom:1006.214667pt;}
.y3{bottom:1018.481333pt;}
.y2{bottom:1031.948000pt;}
.ha{height:27.142187pt;}
.hd{height:35.708333pt;}
.h4{height:38.250000pt;}
.h11{height:38.828125pt;}
.h13{height:43.320313pt;}
.h12{height:43.853646pt;}
.h7{height:46.796875pt;}
.h5{height:47.369792pt;}
.h6{height:47.812500pt;}
.h14{height:52.106771pt;}
.h9{height:52.883333pt;}
.h3{height:53.562500pt;}
.h15{height:54.906250pt;}
.hb{height:56.156250pt;}
.hc{height:56.843750pt;}
.h10{height:57.375000pt;}
.he{height:57.824479pt;}
.h8{height:61.580729pt;}
.hf{height:70.175000pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.733333pt;}
.x6{left:77.600000pt;}
.x6b{left:83.600000pt;}
.xd{left:90.933333pt;}
.x61{left:94.666667pt;}
.x8{left:96.533333pt;}
.x37{left:98.666667pt;}
.x4b{left:99.866667pt;}
.x30{left:102.133333pt;}
.xc{left:104.266667pt;}
.x31{left:110.666667pt;}
.x59{left:114.800000pt;}
.xe{left:116.933333pt;}
.xa{left:119.600000pt;}
.x7{left:124.933333pt;}
.x6c{left:203.200000pt;}
.xf{left:205.066667pt;}
.x12{left:206.800000pt;}
.x3b{left:209.066667pt;}
.x38{left:210.133333pt;}
.x10{left:211.600000pt;}
.x3d{left:213.200000pt;}
.x5a{left:214.266667pt;}
.x3a{left:215.733333pt;}
.x5b{left:217.200000pt;}
.x11{left:219.466667pt;}
.x39{left:220.933333pt;}
.x70{left:223.466667pt;}
.x6d{left:224.666667pt;}
.x4c{left:225.733333pt;}
.x13{left:228.666667pt;}
.x5c{left:230.133333pt;}
.x3c{left:233.866667pt;}
.x5{left:308.800000pt;}
.x3{left:310.666667pt;}
.x76{left:317.066667pt;}
.x1f{left:323.466667pt;}
.x19{left:324.533333pt;}
.x3f{left:326.000000pt;}
.x40{left:327.200000pt;}
.x3e{left:328.266667pt;}
.x16{left:329.333333pt;}
.x6e{left:330.533333pt;}
.x15{left:332.000000pt;}
.x1c{left:333.866667pt;}
.x1d{left:334.933333pt;}
.x2{left:335.866667pt;}
.x71{left:337.200000pt;}
.x17{left:338.266667pt;}
.x18{left:339.733333pt;}
.x14{left:341.200000pt;}
.x1b{left:343.466667pt;}
.x4f{left:344.533333pt;}
.x4d{left:346.000000pt;}
.x1a{left:347.200000pt;}
.x4e{left:348.666667pt;}
.x5d{left:350.133333pt;}
.x72{left:351.200000pt;}
.x1e{left:358.266667pt;}
.x34{left:361.733333pt;}
.x9{left:363.600000pt;}
.x73{left:364.533333pt;}
.x2e{left:366.000000pt;}
.x33{left:368.800000pt;}
.x2f{left:375.733333pt;}
.x32{left:379.066667pt;}
.x36{left:380.533333pt;}
.x35{left:383.733333pt;}
.xb{left:422.266667pt;}
.x4{left:443.600000pt;}
.x62{left:445.066667pt;}
.x64{left:447.200000pt;}
.x63{left:448.400000pt;}
.x41{left:449.866667pt;}
.x51{left:450.933333pt;}
.x20{left:452.800000pt;}
.x65{left:454.666667pt;}
.x52{left:455.733333pt;}
.x67{left:458.000000pt;}
.x44{left:459.866667pt;}
.x43{left:462.000000pt;}
.x21{left:463.866667pt;}
.x22{left:465.733333pt;}
.x53{left:468.000000pt;}
.x66{left:469.066667pt;}
.x42{left:470.533333pt;}
.x50{left:471.733333pt;}
.x74{left:475.066667pt;}
.x5f{left:563.466667pt;}
.x25{left:564.666667pt;}
.x2c{left:565.733333pt;}
.x23{left:567.200000pt;}
.x26{left:568.666667pt;}
.x4a{left:570.133333pt;}
.x45{left:571.600000pt;}
.x49{left:573.466667pt;}
.x2a{left:574.933333pt;}
.x55{left:576.400000pt;}
.x24{left:577.600000pt;}
.x2b{left:579.466667pt;}
.x57{left:580.933333pt;}
.x56{left:582.000000pt;}
.x75{left:583.466667pt;}
.x47{left:584.666667pt;}
.x54{left:585.733333pt;}
.x29{left:587.600000pt;}
.x6f{left:588.666667pt;}
.x2d{left:589.733333pt;}
.x46{left:591.600000pt;}
.x69{left:593.466667pt;}
.x58{left:594.933333pt;}
.x5e{left:596.400000pt;}
.x28{left:597.600000pt;}
.x68{left:599.866667pt;}
.x27{left:600.933333pt;}
.x6a{left:603.866667pt;}
.x60{left:604.933333pt;}
.x48{left:608.000000pt;}
}




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