
    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_a846f7b83dcd926907edc379.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.859863;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_450bdcae4ef3037135667785.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_48d6f9c0d82032ba0cf3b537.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bd7abdd212208163d9d03afd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9d28c0dc8cd516b6bab670b9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_894a69772b0c5c0af2ff82d3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_d5a8e70916778902570235f6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.884277;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_19bcee01d11ec296d71dcdb6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_41e3b79f84c4418981409ac5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_0ebf147c94fa6a768dd96284.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.959961;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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.281250;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_ef3266e02fb10fc91d7e9f1d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ef23eac20b1bbfa7638288a4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5ed95d91db1399d715b9b0fe.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d1e30b7da6409b82214537a2.woff2')format("woff");}.fff{font-family:fff;line-height:0.776855;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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.864000px;}
.lsc{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.576000px;}
.ls18{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.223800px;}
.ls1a{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.181200px;}
.ls3{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.078156px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.245280px;}
.ls15{letter-spacing:0.256200px;}
.ls9{letter-spacing:0.269280px;}
.ls8{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.305280px;}
.ls16{letter-spacing:0.864000px;}
.ls12{letter-spacing:0.989280px;}
.ls11{letter-spacing:3.869280px;}
.lsf{letter-spacing:4.589280px;}
.lse{letter-spacing:5.309280px;}
.lsd{letter-spacing:6.749280px;}
.ls19{letter-spacing:8.064000px;}
.ls14{letter-spacing:11.069280px;}
.ls17{letter-spacing:99.360000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-20.304000px;}
.ws4{word-spacing:-20.232000px;}
.wsd{word-spacing:-20.160000px;}
.ws3{word-spacing:-20.016000px;}
.ws0{word-spacing:-19.872000px;}
.wse{word-spacing:-19.800000px;}
.wsc{word-spacing:-19.512000px;}
.wsb{word-spacing:-19.440000px;}
.ws7{word-spacing:-19.296000px;}
.ws1{word-spacing:-16.680000px;}
.ws9{word-spacing:-15.226440px;}
.wsa{word-spacing:-13.410720px;}
.ws8{word-spacing:-13.229520px;}
.ws6{word-spacing:-13.186920px;}
.ws2{word-spacing:0.000000px;}
._17{margin-left:-5.760000px;}
._16{margin-left:-4.752000px;}
._c{margin-left:-3.696000px;}
._0{margin-left:-1.944000px;}
._1{width:1.080000px;}
._5{width:2.100024px;}
._4{width:3.252000px;}
._9{width:4.296000px;}
._2{width:6.264000px;}
._3{width:7.272000px;}
._21{width:8.292000px;}
._12{width:9.360000px;}
._11{width:11.016000px;}
._e{width:12.120000px;}
._d{width:13.224000px;}
._f{width:14.688000px;}
._19{width:15.912000px;}
._18{width:16.920000px;}
._1e{width:18.000000px;}
._1d{width:19.008000px;}
._10{width:21.384000px;}
._a{width:22.608000px;}
._25{width:23.688000px;}
._b{width:24.828000px;}
._22{width:26.208000px;}
._13{width:27.576000px;}
._14{width:28.944000px;}
._1c{width:30.396000px;}
._8{width:31.944000px;}
._20{width:33.408000px;}
._1f{width:34.488000px;}
._2d{width:35.640000px;}
._33{width:39.312000px;}
._32{width:40.536000px;}
._2e{width:41.616000px;}
._27{width:49.476000px;}
._26{width:51.192000px;}
._28{width:55.512000px;}
._6{width:58.680000px;}
._7{width:59.988000px;}
._35{width:65.544000px;}
._34{width:66.792000px;}
._24{width:75.096000px;}
._23{width:76.104000px;}
._1b{width:93.144000px;}
._1a{width:94.608000px;}
._2b{width:108.936000px;}
._2c{width:111.480000px;}
._2a{width:113.040000px;}
._29{width:114.264000px;}
._2f{width:152.796000px;}
._31{width:174.012000px;}
._30{width:175.176000px;}
._15{width:844.284000px;}
.fc6{color:rgb(34,31,31);}
.fc5{color:rgb(60,66,69);}
.fc3{color:rgb(255,0,0);}
.fc4{color:rgb(83,129,53);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,255);}
.fc7{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:60.120000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y115{bottom:24.840000px;}
.y119{bottom:24.855000px;}
.y113{bottom:25.200000px;}
.y12d{bottom:25.560000px;}
.y72{bottom:33.783000px;}
.y11c{bottom:45.540000px;}
.y116{bottom:45.900000px;}
.y71{bottom:50.702250px;}
.y15{bottom:57.636000px;}
.y117{bottom:66.240000px;}
.y132{bottom:66.285000px;}
.y112{bottom:66.600000px;}
.y120{bottom:66.960000px;}
.y70{bottom:67.711650px;}
.y1{bottom:77.796000px;}
.y6f{bottom:84.721200px;}
.y125{bottom:87.300000px;}
.y6e{bottom:101.730600px;}
.yb4{bottom:106.776000px;}
.y127{bottom:108.360000px;}
.yd0{bottom:112.176000px;}
.y6d{bottom:118.740000px;}
.ya2{bottom:118.836000px;}
.yc7{bottom:119.376000px;}
.y30{bottom:124.236000px;}
.y10d{bottom:127.656000px;}
.y6c{bottom:135.659250px;}
.yce{bottom:142.776000px;}
.y100{bottom:145.116000px;}
.yb3{bottom:148.176000px;}
.y6b{bottom:152.668800px;}
.y82{bottom:153.570000px;}
.yc5{bottom:154.830000px;}
.y94{bottom:160.230000px;}
.ye7{bottom:163.110000px;}
.y2f{bottom:165.630000px;}
.y10c{bottom:169.050000px;}
.y6a{bottom:169.678200px;}
.ycd{bottom:184.170000px;}
.yff{bottom:186.510000px;}
.y69{bottom:186.687750px;}
.yb2{bottom:189.570000px;}
.y81{bottom:194.970000px;}
.yc6{bottom:196.230000px;}
.yf9{bottom:198.570000px;}
.y93{bottom:201.630000px;}
.yc4{bottom:202.170000px;}
.y68{bottom:203.697150px;}
.ye6{bottom:204.510000px;}
.ycf{bottom:207.030000px;}
.y110{bottom:210.450000px;}
.y2e{bottom:219.090000px;}
.y67{bottom:220.616400px;}
.y10b{bottom:222.510000px;}
.ycc{bottom:225.570000px;}
.yb1{bottom:230.970000px;}
.y66{bottom:237.625800px;}
.yc3{bottom:237.630000px;}
.yf8{bottom:239.970000px;}
.y92{bottom:243.030000px;}
.ye5{bottom:245.910000px;}
.y80{bottom:248.430000px;}
.y10f{bottom:251.850000px;}
.y65{bottom:254.635350px;}
.y2d{bottom:260.490000px;}
.y10a{bottom:263.910000px;}
.ycb{bottom:266.970000px;}
.y64{bottom:271.644750px;}
.yb0{bottom:278.355000px;}
.yc2{bottom:279.075000px;}
.yf7{bottom:281.415000px;}
.y91{bottom:284.475000px;}
.y11{bottom:287.895000px;}
.y63{bottom:288.654150px;}
.y7f{bottom:289.875000px;}
.y10e{bottom:293.295000px;}
.ye4{bottom:299.415000px;}
.y2c{bottom:301.935000px;}
.y109{bottom:305.355000px;}
.y62{bottom:305.573400px;}
.yca{bottom:308.415000px;}
.yaf{bottom:313.815000px;}
.yc1{bottom:320.475000px;}
.y61{bottom:322.582950px;}
.yfe{bottom:322.815000px;}
.y90{bottom:325.875000px;}
.y10{bottom:329.295000px;}
.y7e{bottom:331.275000px;}
.yf6{bottom:334.695000px;}
.y60{bottom:339.592350px;}
.ye3{bottom:340.815000px;}
.y2b{bottom:343.335000px;}
.y108{bottom:346.755000px;}
.yc9{bottom:349.815000px;}
.yae{bottom:355.215000px;}
.y5f{bottom:356.601750px;}
.yc0{bottom:361.875000px;}
.y8f{bottom:367.275000px;}
.yf{bottom:370.695000px;}
.y7d{bottom:372.675000px;}
.y5e{bottom:373.611300px;}
.yf5{bottom:376.095000px;}
.ya5{bottom:379.335000px;}
.ye2{bottom:382.035000px;}
.y2a{bottom:384.735000px;}
.y107{bottom:388.155000px;}
.y5d{bottom:390.620700px;}
.yc8{bottom:391.215000px;}
.ybf{bottom:403.275000px;}
.y5c{bottom:407.539950px;}
.y8e{bottom:408.675000px;}
.y7c{bottom:414.075000px;}
.yf4{bottom:417.495000px;}
.ya4{bottom:420.735000px;}
.ye1{bottom:423.435000px;}
.y5b{bottom:424.549500px;}
.y29{bottom:426.135000px;}
.y106{bottom:441.435000px;}
.y5a{bottom:441.558900px;}
.ybe{bottom:444.675000px;}
.y8d{bottom:450.075000px;}
.ye{bottom:453.495000px;}
.y7b{bottom:455.475000px;}
.y59{bottom:458.568300px;}
.yf3{bottom:458.895000px;}
.ya1{bottom:462.135000px;}
.y28{bottom:467.535000px;}
.y58{bottom:475.577850px;}
.ye0{bottom:476.895000px;}
.y105{bottom:482.835000px;}
.ybd{bottom:486.075000px;}
.y8c{bottom:491.475000px;}
.y57{bottom:492.497100px;}
.yd{bottom:494.895000px;}
.y7a{bottom:496.875000px;}
.yf2{bottom:500.295000px;}
.ya0{bottom:503.535000px;}
.y27{bottom:508.935000px;}
.y56{bottom:509.506500px;}
.yfd{bottom:512.355000px;}
.ydf{bottom:518.295000px;}
.y104{bottom:524.235000px;}
.y55{bottom:526.516050px;}
.ybc{bottom:527.475000px;}
.yad{bottom:532.875000px;}
.y54{bottom:543.525450px;}
.y8b{bottom:544.935000px;}
.y26{bottom:550.335000px;}
.yf1{bottom:553.755000px;}
.yde{bottom:559.725000px;}
.y53{bottom:560.534850px;}
.y103{bottom:565.665000px;}
.ybb{bottom:568.905000px;}
.yac{bottom:574.305000px;}
.y52{bottom:577.454100px;}
.yc{bottom:577.725000px;}
.y8a{bottom:586.365000px;}
.y79{bottom:591.765000px;}
.y51{bottom:594.463650px;}
.yf0{bottom:595.185000px;}
.ydd{bottom:601.125000px;}
.y25{bottom:603.645000px;}
.yfc{bottom:607.065000px;}
.yba{bottom:610.305000px;}
.y50{bottom:611.473050px;}
.yab{bottom:615.705000px;}
.yb{bottom:619.125000px;}
.y89{bottom:627.765000px;}
.y4f{bottom:628.482450px;}
.yef{bottom:636.585000px;}
.y9f{bottom:639.645000px;}
.y24{bottom:645.045000px;}
.y4e{bottom:645.492000px;}
.yfb{bottom:648.465000px;}
.yb9{bottom:651.705000px;}
.ydc{bottom:654.585000px;}
.yaa{bottom:657.105000px;}
.y102{bottom:660.525000px;}
.y4d{bottom:662.411250px;}
.y11f{bottom:667.545000px;}
.y88{bottom:669.165000px;}
.y4c{bottom:679.420650px;}
.y9e{bottom:681.045000px;}
.y11e{bottom:684.645000px;}
.y78{bottom:686.445000px;}
.yee{bottom:689.865000px;}
.yb8{bottom:693.105000px;}
.ydb{bottom:695.985000px;}
.y4b{bottom:696.430050px;}
.y23{bottom:698.505000px;}
.ya{bottom:701.925000px;}
.y12b{bottom:708.945000px;}
.y87{bottom:710.565000px;}
.y4a{bottom:713.439600px;}
.y9d{bottom:722.445000px;}
.y12a{bottom:726.045000px;}
.y77{bottom:727.845000px;}
.y49{bottom:730.449000px;}
.yed{bottom:731.265000px;}
.yb7{bottom:734.505000px;}
.yda{bottom:737.385000px;}
.y22{bottom:739.905000px;}
.y9{bottom:743.325000px;}
.y48{bottom:747.369750px;}
.y86{bottom:751.965000px;}
.y9c{bottom:763.845000px;}
.y47{bottom:764.379300px;}
.y123{bottom:767.445000px;}
.y11d{bottom:768.165000px;}
.yec{bottom:772.665000px;}
.yb6{bottom:775.905000px;}
.yd9{bottom:778.785000px;}
.y21{bottom:781.305000px;}
.y46{bottom:781.388700px;}
.y8{bottom:784.725000px;}
.y133{bottom:792.285000px;}
.y85{bottom:793.185000px;}
.y45{bottom:798.398100px;}
.ya9{bottom:805.245000px;}
.y129{bottom:809.565000px;}
.y44{bottom:815.407650px;}
.y9b{bottom:817.305000px;}
.yd8{bottom:820.185000px;}
.y76{bottom:822.705000px;}
.yeb{bottom:826.125000px;}
.y43{bottom:832.326900px;}
.y20{bottom:834.585000px;}
.y101{bottom:838.185000px;}
.ya8{bottom:846.690000px;}
.y42{bottom:849.336300px;}
.y131{bottom:850.995000px;}
.y122{bottom:851.010000px;}
.y11b{bottom:851.730000px;}
.y9a{bottom:858.750000px;}
.y75{bottom:864.150000px;}
.y41{bottom:866.345700px;}
.yea{bottom:867.570000px;}
.yd7{bottom:873.510000px;}
.y1f{bottom:876.030000px;}
.y7{bottom:879.630000px;}
.y40{bottom:883.355250px;}
.ya7{bottom:888.090000px;}
.y121{bottom:893.130000px;}
.y128{bottom:893.850000px;}
.y99{bottom:900.150000px;}
.y3f{bottom:900.364650px;}
.y74{bottom:905.550000px;}
.ye9{bottom:908.970000px;}
.yd6{bottom:914.910000px;}
.y3e{bottom:917.285400px;}
.y1e{bottom:917.430000px;}
.y6{bottom:921.030000px;}
.ya6{bottom:929.490000px;}
.y3d{bottom:934.294950px;}
.y130{bottom:934.530000px;}
.y11a{bottom:935.250000px;}
.y124{bottom:935.970000px;}
.y98{bottom:941.550000px;}
.y3c{bottom:951.304350px;}
.yd5{bottom:956.310000px;}
.y1d{bottom:958.830000px;}
.y18{bottom:962.430000px;}
.y3b{bottom:968.313750px;}
.ya3{bottom:970.890000px;}
.yfa{bottom:974.310000px;}
.y12f{bottom:976.650000px;}
.y118{bottom:977.355000px;}
.y111{bottom:977.370000px;}
.y126{bottom:978.090000px;}
.y97{bottom:982.950000px;}
.y3a{bottom:985.323300px;}
.yd4{bottom:997.710000px;}
.y1c{bottom:1000.230000px;}
.y39{bottom:1002.244050px;}
.ye8{bottom:1003.830000px;}
.y73{bottom:1012.290000px;}
.y5{bottom:1015.710000px;}
.y17{bottom:1015.890000px;}
.y12c{bottom:1018.770000px;}
.y38{bottom:1019.253450px;}
.y114{bottom:1019.490000px;}
.y96{bottom:1024.350000px;}
.y37{bottom:1036.262850px;}
.y84{bottom:1041.630000px;}
.yd3{bottom:1051.170000px;}
.y36{bottom:1053.272400px;}
.y1b{bottom:1053.690000px;}
.y4{bottom:1057.110000px;}
.y16{bottom:1057.290000px;}
.y12e{bottom:1060.890000px;}
.y95{bottom:1065.750000px;}
.y35{bottom:1070.281800px;}
.y34{bottom:1087.201050px;}
.yd2{bottom:1092.570000px;}
.y83{bottom:1095.090000px;}
.y3{bottom:1098.510000px;}
.y33{bottom:1104.210600px;}
.y1a{bottom:1107.150000px;}
.y32{bottom:1121.220000px;}
.yd1{bottom:1133.820000px;}
.y2{bottom:1139.940000px;}
.y19{bottom:1148.580000px;}
.yb5{bottom:1154.520000px;}
.y14{bottom:1201.012500px;}
.y13{bottom:1219.012500px;}
.y12{bottom:1237.012500px;}
.y31{bottom:1244.880000px;}
.hd{height:41.385000px;}
.h15{height:41.422500px;}
.h4{height:43.681641px;}
.h5{height:45.000000px;}
.h2{height:50.229844px;}
.h8{height:51.153750px;}
.h9{height:51.333750px;}
.h7{height:58.975137px;}
.ha{height:64.546875px;}
.h3{height:75.093750px;}
.h10{height:82.785000px;}
.h16{height:82.791000px;}
.h12{height:82.795500px;}
.h13{height:82.800000px;}
.h11{height:82.822500px;}
.hc{height:83.505000px;}
.he{height:83.511000px;}
.hf{height:83.520000px;}
.hb{height:121.359375px;}
.h14{height:124.905000px;}
.h6{height:1188.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:55.620000px;}
.w1b{width:70.740000px;}
.w1c{width:70.920000px;}
.w1a{width:70.941000px;}
.w1d{width:73.476000px;}
.w5{width:86.076000px;}
.w9{width:86.436000px;}
.w15{width:94.176000px;}
.w16{width:94.305000px;}
.w3{width:104.061000px;}
.wa{width:104.241000px;}
.w7{width:104.242500px;}
.w10{width:110.145000px;}
.wf{width:110.196000px;}
.w4{width:111.960000px;}
.w6{width:122.385000px;}
.wc{width:132.321000px;}
.w12{width:141.681000px;}
.w1f{width:142.761000px;}
.w2{width:146.511000px;}
.wb{width:146.520000px;}
.w20{width:151.005000px;}
.w19{width:151.011000px;}
.w21{width:151.020000px;}
.w17{width:156.765000px;}
.w11{width:156.771000px;}
.w18{width:156.780000px;}
.we{width:176.595000px;}
.w14{width:189.015000px;}
.w13{width:189.210000px;}
.wd{width:221.070000px;}
.w1e{width:237.795000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.500000px;}
.x27{left:9.171000px;}
.x20{left:10.260000px;}
.x48{left:11.511000px;}
.x14{left:12.771000px;}
.x29{left:15.285000px;}
.x1f{left:17.640000px;}
.x21{left:20.700000px;}
.xf{left:21.976500px;}
.x47{left:23.205000px;}
.x22{left:24.330000px;}
.x46{left:25.545000px;}
.x12{left:27.000000px;}
.x16{left:29.145000px;}
.x24{left:31.125000px;}
.x2f{left:35.445000px;}
.x32{left:37.425000px;}
.x25{left:38.685000px;}
.x37{left:41.040000px;}
.x1e{left:42.105000px;}
.x30{left:43.185000px;}
.x33{left:45.000000px;}
.x1c{left:46.650000px;}
.x2d{left:49.500000px;}
.x1a{left:52.185000px;}
.x31{left:56.190000px;}
.x28{left:61.185000px;}
.x3b{left:64.245000px;}
.x49{left:71.310000px;}
.x23{left:74.685000px;}
.x1d{left:78.825000px;}
.x2c{left:82.605000px;}
.x44{left:83.865000px;}
.x3c{left:84.945000px;}
.x34{left:88.050000px;}
.x3a{left:89.085000px;}
.x26{left:91.785000px;}
.x3e{left:94.485000px;}
.x10{left:97.740000px;}
.x3d{left:102.045000px;}
.x2{left:106.416000px;}
.xd{left:118.296000px;}
.x6{left:134.676000px;}
.xb{left:176.790000px;}
.xe{left:208.110000px;}
.x9{left:214.770000px;}
.x4{left:216.390000px;}
.x15{left:254.385000px;}
.x3f{left:258.885000px;}
.x35{left:264.645000px;}
.xc{left:304.095000px;}
.x5{left:328.935000px;}
.x40{left:330.735000px;}
.xa{left:335.055000px;}
.x8{left:342.975000px;}
.x17{left:359.175000px;}
.x3{left:360.435000px;}
.x2a{left:387.435000px;}
.x41{left:402.375000px;}
.x36{left:407.055000px;}
.x7{left:416.055000px;}
.x13{left:438.015000px;}
.x1{left:442.335000px;}
.x18{left:471.855000px;}
.x42{left:474.015000px;}
.x2e{left:498.360000px;}
.x39{left:501.960000px;}
.x43{left:548.220000px;}
.x19{left:558.660000px;}
.x38{left:597.000000px;}
.x2b{left:609.420000px;}
.x45{left:643.260000px;}
.x1b{left:681.780000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.768000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.512000pt;}
.ls18{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.198933pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.161067pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.069472pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.218027pt;}
.ls15{letter-spacing:0.227733pt;}
.ls9{letter-spacing:0.239360pt;}
.ls8{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.271360pt;}
.ls16{letter-spacing:0.768000pt;}
.ls12{letter-spacing:0.879360pt;}
.ls11{letter-spacing:3.439360pt;}
.lsf{letter-spacing:4.079360pt;}
.lse{letter-spacing:4.719360pt;}
.lsd{letter-spacing:5.999360pt;}
.ls19{letter-spacing:7.168000pt;}
.ls14{letter-spacing:9.839360pt;}
.ls17{letter-spacing:88.320000pt;}
.ws5{word-spacing:-18.048000pt;}
.ws4{word-spacing:-17.984000pt;}
.wsd{word-spacing:-17.920000pt;}
.ws3{word-spacing:-17.792000pt;}
.ws0{word-spacing:-17.664000pt;}
.wse{word-spacing:-17.600000pt;}
.wsc{word-spacing:-17.344000pt;}
.wsb{word-spacing:-17.280000pt;}
.ws7{word-spacing:-17.152000pt;}
.ws1{word-spacing:-14.826667pt;}
.ws9{word-spacing:-13.534613pt;}
.wsa{word-spacing:-11.920640pt;}
.ws8{word-spacing:-11.759573pt;}
.ws6{word-spacing:-11.721707pt;}
.ws2{word-spacing:0.000000pt;}
._17{margin-left:-5.120000pt;}
._16{margin-left:-4.224000pt;}
._c{margin-left:-3.285333pt;}
._0{margin-left:-1.728000pt;}
._1{width:0.960000pt;}
._5{width:1.866688pt;}
._4{width:2.890667pt;}
._9{width:3.818667pt;}
._2{width:5.568000pt;}
._3{width:6.464000pt;}
._21{width:7.370667pt;}
._12{width:8.320000pt;}
._11{width:9.792000pt;}
._e{width:10.773333pt;}
._d{width:11.754667pt;}
._f{width:13.056000pt;}
._19{width:14.144000pt;}
._18{width:15.040000pt;}
._1e{width:16.000000pt;}
._1d{width:16.896000pt;}
._10{width:19.008000pt;}
._a{width:20.096000pt;}
._25{width:21.056000pt;}
._b{width:22.069333pt;}
._22{width:23.296000pt;}
._13{width:24.512000pt;}
._14{width:25.728000pt;}
._1c{width:27.018667pt;}
._8{width:28.394667pt;}
._20{width:29.696000pt;}
._1f{width:30.656000pt;}
._2d{width:31.680000pt;}
._33{width:34.944000pt;}
._32{width:36.032000pt;}
._2e{width:36.992000pt;}
._27{width:43.978667pt;}
._26{width:45.504000pt;}
._28{width:49.344000pt;}
._6{width:52.160000pt;}
._7{width:53.322667pt;}
._35{width:58.261333pt;}
._34{width:59.370667pt;}
._24{width:66.752000pt;}
._23{width:67.648000pt;}
._1b{width:82.794667pt;}
._1a{width:84.096000pt;}
._2b{width:96.832000pt;}
._2c{width:99.093333pt;}
._2a{width:100.480000pt;}
._29{width:101.568000pt;}
._2f{width:135.818667pt;}
._31{width:154.677333pt;}
._30{width:155.712000pt;}
._15{width:750.474667pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:53.440000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y115{bottom:22.080000pt;}
.y119{bottom:22.093333pt;}
.y113{bottom:22.400000pt;}
.y12d{bottom:22.720000pt;}
.y72{bottom:30.029333pt;}
.y11c{bottom:40.480000pt;}
.y116{bottom:40.800000pt;}
.y71{bottom:45.068667pt;}
.y15{bottom:51.232000pt;}
.y117{bottom:58.880000pt;}
.y132{bottom:58.920000pt;}
.y112{bottom:59.200000pt;}
.y120{bottom:59.520000pt;}
.y70{bottom:60.188133pt;}
.y1{bottom:69.152000pt;}
.y6f{bottom:75.307733pt;}
.y125{bottom:77.600000pt;}
.y6e{bottom:90.427200pt;}
.yb4{bottom:94.912000pt;}
.y127{bottom:96.320000pt;}
.yd0{bottom:99.712000pt;}
.y6d{bottom:105.546667pt;}
.ya2{bottom:105.632000pt;}
.yc7{bottom:106.112000pt;}
.y30{bottom:110.432000pt;}
.y10d{bottom:113.472000pt;}
.y6c{bottom:120.586000pt;}
.yce{bottom:126.912000pt;}
.y100{bottom:128.992000pt;}
.yb3{bottom:131.712000pt;}
.y6b{bottom:135.705600pt;}
.y82{bottom:136.506667pt;}
.yc5{bottom:137.626667pt;}
.y94{bottom:142.426667pt;}
.ye7{bottom:144.986667pt;}
.y2f{bottom:147.226667pt;}
.y10c{bottom:150.266667pt;}
.y6a{bottom:150.825067pt;}
.ycd{bottom:163.706667pt;}
.yff{bottom:165.786667pt;}
.y69{bottom:165.944667pt;}
.yb2{bottom:168.506667pt;}
.y81{bottom:173.306667pt;}
.yc6{bottom:174.426667pt;}
.yf9{bottom:176.506667pt;}
.y93{bottom:179.226667pt;}
.yc4{bottom:179.706667pt;}
.y68{bottom:181.064133pt;}
.ye6{bottom:181.786667pt;}
.ycf{bottom:184.026667pt;}
.y110{bottom:187.066667pt;}
.y2e{bottom:194.746667pt;}
.y67{bottom:196.103467pt;}
.y10b{bottom:197.786667pt;}
.ycc{bottom:200.506667pt;}
.yb1{bottom:205.306667pt;}
.y66{bottom:211.222933pt;}
.yc3{bottom:211.226667pt;}
.yf8{bottom:213.306667pt;}
.y92{bottom:216.026667pt;}
.ye5{bottom:218.586667pt;}
.y80{bottom:220.826667pt;}
.y10f{bottom:223.866667pt;}
.y65{bottom:226.342533pt;}
.y2d{bottom:231.546667pt;}
.y10a{bottom:234.586667pt;}
.ycb{bottom:237.306667pt;}
.y64{bottom:241.462000pt;}
.yb0{bottom:247.426667pt;}
.yc2{bottom:248.066667pt;}
.yf7{bottom:250.146667pt;}
.y91{bottom:252.866667pt;}
.y11{bottom:255.906667pt;}
.y63{bottom:256.581467pt;}
.y7f{bottom:257.666667pt;}
.y10e{bottom:260.706667pt;}
.ye4{bottom:266.146667pt;}
.y2c{bottom:268.386667pt;}
.y109{bottom:271.426667pt;}
.y62{bottom:271.620800pt;}
.yca{bottom:274.146667pt;}
.yaf{bottom:278.946667pt;}
.yc1{bottom:284.866667pt;}
.y61{bottom:286.740400pt;}
.yfe{bottom:286.946667pt;}
.y90{bottom:289.666667pt;}
.y10{bottom:292.706667pt;}
.y7e{bottom:294.466667pt;}
.yf6{bottom:297.506667pt;}
.y60{bottom:301.859867pt;}
.ye3{bottom:302.946667pt;}
.y2b{bottom:305.186667pt;}
.y108{bottom:308.226667pt;}
.yc9{bottom:310.946667pt;}
.yae{bottom:315.746667pt;}
.y5f{bottom:316.979333pt;}
.yc0{bottom:321.666667pt;}
.y8f{bottom:326.466667pt;}
.yf{bottom:329.506667pt;}
.y7d{bottom:331.266667pt;}
.y5e{bottom:332.098933pt;}
.yf5{bottom:334.306667pt;}
.ya5{bottom:337.186667pt;}
.ye2{bottom:339.586667pt;}
.y2a{bottom:341.986667pt;}
.y107{bottom:345.026667pt;}
.y5d{bottom:347.218400pt;}
.yc8{bottom:347.746667pt;}
.ybf{bottom:358.466667pt;}
.y5c{bottom:362.257733pt;}
.y8e{bottom:363.266667pt;}
.y7c{bottom:368.066667pt;}
.yf4{bottom:371.106667pt;}
.ya4{bottom:373.986667pt;}
.ye1{bottom:376.386667pt;}
.y5b{bottom:377.377333pt;}
.y29{bottom:378.786667pt;}
.y106{bottom:392.386667pt;}
.y5a{bottom:392.496800pt;}
.ybe{bottom:395.266667pt;}
.y8d{bottom:400.066667pt;}
.ye{bottom:403.106667pt;}
.y7b{bottom:404.866667pt;}
.y59{bottom:407.616267pt;}
.yf3{bottom:407.906667pt;}
.ya1{bottom:410.786667pt;}
.y28{bottom:415.586667pt;}
.y58{bottom:422.735867pt;}
.ye0{bottom:423.906667pt;}
.y105{bottom:429.186667pt;}
.ybd{bottom:432.066667pt;}
.y8c{bottom:436.866667pt;}
.y57{bottom:437.775200pt;}
.yd{bottom:439.906667pt;}
.y7a{bottom:441.666667pt;}
.yf2{bottom:444.706667pt;}
.ya0{bottom:447.586667pt;}
.y27{bottom:452.386667pt;}
.y56{bottom:452.894667pt;}
.yfd{bottom:455.426667pt;}
.ydf{bottom:460.706667pt;}
.y104{bottom:465.986667pt;}
.y55{bottom:468.014267pt;}
.ybc{bottom:468.866667pt;}
.yad{bottom:473.666667pt;}
.y54{bottom:483.133733pt;}
.y8b{bottom:484.386667pt;}
.y26{bottom:489.186667pt;}
.yf1{bottom:492.226667pt;}
.yde{bottom:497.533333pt;}
.y53{bottom:498.253200pt;}
.y103{bottom:502.813333pt;}
.ybb{bottom:505.693333pt;}
.yac{bottom:510.493333pt;}
.y52{bottom:513.292533pt;}
.yc{bottom:513.533333pt;}
.y8a{bottom:521.213333pt;}
.y79{bottom:526.013333pt;}
.y51{bottom:528.412133pt;}
.yf0{bottom:529.053333pt;}
.ydd{bottom:534.333333pt;}
.y25{bottom:536.573333pt;}
.yfc{bottom:539.613333pt;}
.yba{bottom:542.493333pt;}
.y50{bottom:543.531600pt;}
.yab{bottom:547.293333pt;}
.yb{bottom:550.333333pt;}
.y89{bottom:558.013333pt;}
.y4f{bottom:558.651067pt;}
.yef{bottom:565.853333pt;}
.y9f{bottom:568.573333pt;}
.y24{bottom:573.373333pt;}
.y4e{bottom:573.770667pt;}
.yfb{bottom:576.413333pt;}
.yb9{bottom:579.293333pt;}
.ydc{bottom:581.853333pt;}
.yaa{bottom:584.093333pt;}
.y102{bottom:587.133333pt;}
.y4d{bottom:588.810000pt;}
.y11f{bottom:593.373333pt;}
.y88{bottom:594.813333pt;}
.y4c{bottom:603.929467pt;}
.y9e{bottom:605.373333pt;}
.y11e{bottom:608.573333pt;}
.y78{bottom:610.173333pt;}
.yee{bottom:613.213333pt;}
.yb8{bottom:616.093333pt;}
.ydb{bottom:618.653333pt;}
.y4b{bottom:619.048933pt;}
.y23{bottom:620.893333pt;}
.ya{bottom:623.933333pt;}
.y12b{bottom:630.173333pt;}
.y87{bottom:631.613333pt;}
.y4a{bottom:634.168533pt;}
.y9d{bottom:642.173333pt;}
.y12a{bottom:645.373333pt;}
.y77{bottom:646.973333pt;}
.y49{bottom:649.288000pt;}
.yed{bottom:650.013333pt;}
.yb7{bottom:652.893333pt;}
.yda{bottom:655.453333pt;}
.y22{bottom:657.693333pt;}
.y9{bottom:660.733333pt;}
.y48{bottom:664.328667pt;}
.y86{bottom:668.413333pt;}
.y9c{bottom:678.973333pt;}
.y47{bottom:679.448267pt;}
.y123{bottom:682.173333pt;}
.y11d{bottom:682.813333pt;}
.yec{bottom:686.813333pt;}
.yb6{bottom:689.693333pt;}
.yd9{bottom:692.253333pt;}
.y21{bottom:694.493333pt;}
.y46{bottom:694.567733pt;}
.y8{bottom:697.533333pt;}
.y133{bottom:704.253333pt;}
.y85{bottom:705.053333pt;}
.y45{bottom:709.687200pt;}
.ya9{bottom:715.773333pt;}
.y129{bottom:719.613333pt;}
.y44{bottom:724.806800pt;}
.y9b{bottom:726.493333pt;}
.yd8{bottom:729.053333pt;}
.y76{bottom:731.293333pt;}
.yeb{bottom:734.333333pt;}
.y43{bottom:739.846133pt;}
.y20{bottom:741.853333pt;}
.y101{bottom:745.053333pt;}
.ya8{bottom:752.613333pt;}
.y42{bottom:754.965600pt;}
.y131{bottom:756.440000pt;}
.y122{bottom:756.453333pt;}
.y11b{bottom:757.093333pt;}
.y9a{bottom:763.333333pt;}
.y75{bottom:768.133333pt;}
.y41{bottom:770.085067pt;}
.yea{bottom:771.173333pt;}
.yd7{bottom:776.453333pt;}
.y1f{bottom:778.693333pt;}
.y7{bottom:781.893333pt;}
.y40{bottom:785.204667pt;}
.ya7{bottom:789.413333pt;}
.y121{bottom:793.893333pt;}
.y128{bottom:794.533333pt;}
.y99{bottom:800.133333pt;}
.y3f{bottom:800.324133pt;}
.y74{bottom:804.933333pt;}
.ye9{bottom:807.973333pt;}
.yd6{bottom:813.253333pt;}
.y3e{bottom:815.364800pt;}
.y1e{bottom:815.493333pt;}
.y6{bottom:818.693333pt;}
.ya6{bottom:826.213333pt;}
.y3d{bottom:830.484400pt;}
.y130{bottom:830.693333pt;}
.y11a{bottom:831.333333pt;}
.y124{bottom:831.973333pt;}
.y98{bottom:836.933333pt;}
.y3c{bottom:845.603867pt;}
.yd5{bottom:850.053333pt;}
.y1d{bottom:852.293333pt;}
.y18{bottom:855.493333pt;}
.y3b{bottom:860.723333pt;}
.ya3{bottom:863.013333pt;}
.yfa{bottom:866.053333pt;}
.y12f{bottom:868.133333pt;}
.y118{bottom:868.760000pt;}
.y111{bottom:868.773333pt;}
.y126{bottom:869.413333pt;}
.y97{bottom:873.733333pt;}
.y3a{bottom:875.842933pt;}
.yd4{bottom:886.853333pt;}
.y1c{bottom:889.093333pt;}
.y39{bottom:890.883600pt;}
.ye8{bottom:892.293333pt;}
.y73{bottom:899.813333pt;}
.y5{bottom:902.853333pt;}
.y17{bottom:903.013333pt;}
.y12c{bottom:905.573333pt;}
.y38{bottom:906.003067pt;}
.y114{bottom:906.213333pt;}
.y96{bottom:910.533333pt;}
.y37{bottom:921.122533pt;}
.y84{bottom:925.893333pt;}
.yd3{bottom:934.373333pt;}
.y36{bottom:936.242133pt;}
.y1b{bottom:936.613333pt;}
.y4{bottom:939.653333pt;}
.y16{bottom:939.813333pt;}
.y12e{bottom:943.013333pt;}
.y95{bottom:947.333333pt;}
.y35{bottom:951.361600pt;}
.y34{bottom:966.400933pt;}
.yd2{bottom:971.173333pt;}
.y83{bottom:973.413333pt;}
.y3{bottom:976.453333pt;}
.y33{bottom:981.520533pt;}
.y1a{bottom:984.133333pt;}
.y32{bottom:996.640000pt;}
.yd1{bottom:1007.840000pt;}
.y2{bottom:1013.280000pt;}
.y19{bottom:1020.960000pt;}
.yb5{bottom:1026.240000pt;}
.y14{bottom:1067.566667pt;}
.y13{bottom:1083.566667pt;}
.y12{bottom:1099.566667pt;}
.y31{bottom:1106.560000pt;}
.hd{height:36.786667pt;}
.h15{height:36.820000pt;}
.h4{height:38.828125pt;}
.h5{height:40.000000pt;}
.h2{height:44.648750pt;}
.h8{height:45.470000pt;}
.h9{height:45.630000pt;}
.h7{height:52.422344pt;}
.ha{height:57.375000pt;}
.h3{height:66.750000pt;}
.h10{height:73.586667pt;}
.h16{height:73.592000pt;}
.h12{height:73.596000pt;}
.h13{height:73.600000pt;}
.h11{height:73.620000pt;}
.hc{height:74.226667pt;}
.he{height:74.232000pt;}
.hf{height:74.240000pt;}
.hb{height:107.875000pt;}
.h14{height:111.026667pt;}
.h6{height:1056.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:49.440000pt;}
.w1b{width:62.880000pt;}
.w1c{width:63.040000pt;}
.w1a{width:63.058667pt;}
.w1d{width:65.312000pt;}
.w5{width:76.512000pt;}
.w9{width:76.832000pt;}
.w15{width:83.712000pt;}
.w16{width:83.826667pt;}
.w3{width:92.498667pt;}
.wa{width:92.658667pt;}
.w7{width:92.660000pt;}
.w10{width:97.906667pt;}
.wf{width:97.952000pt;}
.w4{width:99.520000pt;}
.w6{width:108.786667pt;}
.wc{width:117.618667pt;}
.w12{width:125.938667pt;}
.w1f{width:126.898667pt;}
.w2{width:130.232000pt;}
.wb{width:130.240000pt;}
.w20{width:134.226667pt;}
.w19{width:134.232000pt;}
.w21{width:134.240000pt;}
.w17{width:139.346667pt;}
.w11{width:139.352000pt;}
.w18{width:139.360000pt;}
.we{width:156.973333pt;}
.w14{width:168.013333pt;}
.w13{width:168.186667pt;}
.wd{width:196.506667pt;}
.w1e{width:211.373333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.666667pt;}
.x27{left:8.152000pt;}
.x20{left:9.120000pt;}
.x48{left:10.232000pt;}
.x14{left:11.352000pt;}
.x29{left:13.586667pt;}
.x1f{left:15.680000pt;}
.x21{left:18.400000pt;}
.xf{left:19.534667pt;}
.x47{left:20.626667pt;}
.x22{left:21.626667pt;}
.x46{left:22.706667pt;}
.x12{left:24.000000pt;}
.x16{left:25.906667pt;}
.x24{left:27.666667pt;}
.x2f{left:31.506667pt;}
.x32{left:33.266667pt;}
.x25{left:34.386667pt;}
.x37{left:36.480000pt;}
.x1e{left:37.426667pt;}
.x30{left:38.386667pt;}
.x33{left:40.000000pt;}
.x1c{left:41.466667pt;}
.x2d{left:44.000000pt;}
.x1a{left:46.386667pt;}
.x31{left:49.946667pt;}
.x28{left:54.386667pt;}
.x3b{left:57.106667pt;}
.x49{left:63.386667pt;}
.x23{left:66.386667pt;}
.x1d{left:70.066667pt;}
.x2c{left:73.426667pt;}
.x44{left:74.546667pt;}
.x3c{left:75.506667pt;}
.x34{left:78.266667pt;}
.x3a{left:79.186667pt;}
.x26{left:81.586667pt;}
.x3e{left:83.986667pt;}
.x10{left:86.880000pt;}
.x3d{left:90.706667pt;}
.x2{left:94.592000pt;}
.xd{left:105.152000pt;}
.x6{left:119.712000pt;}
.xb{left:157.146667pt;}
.xe{left:184.986667pt;}
.x9{left:190.906667pt;}
.x4{left:192.346667pt;}
.x15{left:226.120000pt;}
.x3f{left:230.120000pt;}
.x35{left:235.240000pt;}
.xc{left:270.306667pt;}
.x5{left:292.386667pt;}
.x40{left:293.986667pt;}
.xa{left:297.826667pt;}
.x8{left:304.866667pt;}
.x17{left:319.266667pt;}
.x3{left:320.386667pt;}
.x2a{left:344.386667pt;}
.x41{left:357.666667pt;}
.x36{left:361.826667pt;}
.x7{left:369.826667pt;}
.x13{left:389.346667pt;}
.x1{left:393.186667pt;}
.x18{left:419.426667pt;}
.x42{left:421.346667pt;}
.x2e{left:442.986667pt;}
.x39{left:446.186667pt;}
.x43{left:487.306667pt;}
.x19{left:496.586667pt;}
.x38{left:530.666667pt;}
.x2b{left:541.706667pt;}
.x45{left:571.786667pt;}
.x1b{left:606.026667pt;}
}




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