
    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_e3469ce6b370407ea39b7061.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_9cc89907bee9fc39b599d047.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_1e6a354cb54bf0edcf21cba6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_fb71a4a7a9b8af55b3640abf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_756b1835a45c3db84c8ef103.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_d50af0d8b7fc4d20497bafe5.woff2')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;}
.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);}
.v5{vertical-align:-68.400000px;}
.v3{vertical-align:-64.800000px;}
.v1{vertical-align:-62.640000px;}
.v4{vertical-align:-61.200000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:61.920000px;}
.v7{vertical-align:65.520000px;}
.ls11{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.220800px;}
.ls1f{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.027360px;}
.ls15{letter-spacing:-0.018000px;}
.ls9{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.109200px;}
.ls1{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.504000px;}
.ls14{letter-spacing:0.738000px;}
.ls23{letter-spacing:2.988000px;}
.ls5{letter-spacing:3.900000px;}
.ls4{letter-spacing:4.500000px;}
.ls3{letter-spacing:21.060000px;}
.ls22{letter-spacing:30.348000px;}
.ls12{letter-spacing:51.120000px;}
.ls6{letter-spacing:52.560000px;}
.ls8{letter-spacing:55.620000px;}
.ls0{letter-spacing:154.980000px;}
.ls17{letter-spacing:306.360000px;}
.ls1c{letter-spacing:395.580000px;}
.lse{letter-spacing:905.100000px;}
.ls1a{letter-spacing:936.300000px;}
.ls1b{letter-spacing:1205.700000px;}
.ls16{letter-spacing:1207.500000px;}
.ls19{letter-spacing:1220.700000px;}
.ls18{letter-spacing:1221.900000px;}
.ls21{letter-spacing:1248.300000px;}
.ls20{letter-spacing:1309.500000px;}
.ls7{letter-spacing:1367.340000px;}
.ls1e{letter-spacing:1410.900000px;}
.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;}
}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.822200px;}
.wsb{word-spacing:-16.669200px;}
.ws3{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.238000px;}
.ws6{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws5{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.500000px;}
.wse{word-spacing:-13.392000px;}
.ws9{word-spacing:-13.140000px;}
.ws7{word-spacing:-9.000000px;}
.wsa{word-spacing:0.000000px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.078560px;}
._a{width:2.268000px;}
._7{width:3.738000px;}
._8{width:5.077440px;}
._3{width:6.534000px;}
._4{width:7.626000px;}
._d{width:9.013440px;}
._e{width:10.872000px;}
._b{width:12.456000px;}
._10{width:14.704320px;}
._c{width:15.756000px;}
._9{width:16.794000px;}
._5{width:20.748000px;}
._6{width:22.038000px;}
._2b{width:197.766000px;}
._32{width:212.238000px;}
._11{width:226.440000px;}
._2c{width:234.901440px;}
._15{width:242.977440px;}
._20{width:244.783440px;}
._2a{width:264.978000px;}
._22{width:273.954000px;}
._1f{width:292.320000px;}
._23{width:299.340000px;}
._21{width:305.640000px;}
._33{width:307.620000px;}
._28{width:312.690000px;}
._34{width:339.798000px;}
._1c{width:358.536000px;}
._2f{width:368.892000px;}
._1d{width:385.740000px;}
._30{width:402.420000px;}
._14{width:403.434000px;}
._1e{width:407.424000px;}
._31{width:415.080000px;}
._2d{width:421.308000px;}
._2e{width:427.500000px;}
._12{width:429.960000px;}
._13{width:440.460000px;}
._18{width:477.032880px;}
._1a{width:531.468000px;}
._17{width:544.788000px;}
._19{width:590.934000px;}
._16{width:604.734000px;}
._27{width:810.660000px;}
._26{width:863.082000px;}
._25{width:867.606000px;}
._f{width:1041.240000px;}
._29{width:1209.288000px;}
._35{width:1358.166000px;}
._1b{width:1378.020000px;}
._24{width:1396.764000px;}
.fc5{color:transparent;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:12.240000px;}
.fs9{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.yca{bottom:-12.300000px;}
.yc4{bottom:-12.150000px;}
.y0{bottom:0.000000px;}
.y9f{bottom:2.850000px;}
.ya2{bottom:3.000000px;}
.y6e{bottom:43.215000px;}
.y1{bottom:52.095000px;}
.yd5{bottom:53.160000px;}
.y96{bottom:54.480000px;}
.y3d{bottom:57.885000px;}
.yd6{bottom:57.900000px;}
.y70{bottom:57.930000px;}
.y98{bottom:57.960000px;}
.y2{bottom:57.961500px;}
.y116{bottom:57.969000px;}
.y115{bottom:63.360000px;}
.y97{bottom:76.860000px;}
.y114{bottom:102.360000px;}
.y6d{bottom:102.585000px;}
.y39{bottom:104.070000px;}
.y95{bottom:104.700000px;}
.yd4{bottom:108.159000px;}
.y113{bottom:117.840000px;}
.y6c{bottom:118.245000px;}
.y38{bottom:119.550000px;}
.y94{bottom:120.360000px;}
.yd3{bottom:123.999000px;}
.y6f{bottom:128.610000px;}
.y112{bottom:133.500000px;}
.y6b{bottom:133.545000px;}
.y37{bottom:135.060000px;}
.y93{bottom:135.690000px;}
.yd2{bottom:136.455000px;}
.y111{bottom:149.010000px;}
.y6a{bottom:149.055000px;}
.y36{bottom:150.540000px;}
.y92{bottom:151.170000px;}
.y69{bottom:164.715000px;}
.y35{bottom:166.200000px;}
.y91{bottom:167.190000px;}
.y110{bottom:180.150000px;}
.y68{bottom:180.375000px;}
.y34{bottom:181.680000px;}
.y90{bottom:182.850000px;}
.y10f{bottom:195.810000px;}
.y67{bottom:195.855000px;}
.y33{bottom:197.160000px;}
.y8f{bottom:198.330000px;}
.y3c{bottom:200.610000px;}
.y10e{bottom:211.290000px;}
.y66{bottom:211.875000px;}
.y32{bottom:212.640000px;}
.y8e{bottom:215.070000px;}
.y10d{bottom:226.770000px;}
.y65{bottom:227.355000px;}
.y31{bottom:228.300000px;}
.y8d{bottom:231.450000px;}
.y10c{bottom:242.430000px;}
.y30{bottom:243.780000px;}
.y10b{bottom:257.910000px;}
.y64{bottom:258.315000px;}
.y2f{bottom:259.440000px;}
.y10a{bottom:273.210000px;}
.y63{bottom:274.155000px;}
.y2e{bottom:274.920000px;}
.y109{bottom:289.050000px;}
.y62{bottom:289.815000px;}
.y2d{bottom:290.400000px;}
.y108{bottom:302.100000px;}
.y61{bottom:305.115000px;}
.y107{bottom:305.550000px;}
.y2c{bottom:305.880000px;}
.y60{bottom:320.595000px;}
.y2b{bottom:321.540000px;}
.y106{bottom:334.650000px;}
.y5f{bottom:336.255000px;}
.y2a{bottom:337.020000px;}
.y105{bottom:338.100000px;}
.y8c{bottom:351.690000px;}
.y5e{bottom:352.095000px;}
.y29{bottom:352.500000px;}
.yd1{bottom:362.505000px;}
.y104{bottom:367.200000px;}
.y5d{bottom:367.575000px;}
.y28{bottom:367.980000px;}
.y103{bottom:370.500000px;}
.yd0{bottom:377.985000px;}
.y5c{bottom:383.235000px;}
.y27{bottom:383.640000px;}
.ycf{bottom:393.510000px;}
.y5b{bottom:398.760000px;}
.y100{bottom:402.750000px;}
.yce{bottom:409.170000px;}
.y5a{bottom:414.420000px;}
.y26{bottom:414.465000px;}
.y102{bottom:418.230000px;}
.ycd{bottom:424.650000px;}
.y59{bottom:429.720000px;}
.y101{bottom:433.890000px;}
.y8b{bottom:434.895000px;}
.y58{bottom:445.200000px;}
.y25{bottom:445.425000px;}
.ycc{bottom:455.430000px;}
.y57{bottom:461.220000px;}
.y24{bottom:463.605000px;}
.yff{bottom:466.110000px;}
.ycb{bottom:471.450000px;}
.y56{bottom:476.700000px;}
.yfe{bottom:481.590000px;}
.yc9{bottom:484.500000px;}
.yc8{bottom:487.920000px;}
.y55{bottom:492.180000px;}
.y23{bottom:492.585000px;}
.yfd{bottom:497.070000px;}
.yc7{bottom:503.400000px;}
.y54{bottom:508.560000px;}
.y22{bottom:510.945000px;}
.yfc{bottom:512.730000px;}
.yc6{bottom:519.600000px;}
.y21{bottom:526.425000px;}
.y53{bottom:528.180000px;}
.yc5{bottom:535.650000px;}
.y20{bottom:541.905000px;}
.yfb{bottom:543.510000px;}
.y52{bottom:543.840000px;}
.yc3{bottom:548.850000px;}
.yc2{bottom:552.120000px;}
.y8a{bottom:556.575000px;}
.y1f{bottom:557.385000px;}
.y51{bottom:559.680000px;}
.yfa{bottom:560.250000px;}
.yc1{bottom:567.600000px;}
.y1e{bottom:573.045000px;}
.y50{bottom:575.340000px;}
.yf9{bottom:580.800000px;}
.yc0{bottom:583.950000px;}
.y1d{bottom:588.525000px;}
.y4f{bottom:590.820000px;}
.yf8{bottom:598.050000px;}
.y138{bottom:598.194000px;}
.ybf{bottom:599.850000px;}
.y1c{bottom:604.005000px;}
.y4e{bottom:606.480000px;}
.y137{bottom:613.854000px;}
.yf7{bottom:615.150000px;}
.ybe{bottom:615.990000px;}
.y1b{bottom:619.665000px;}
.y4d{bottom:621.780000px;}
.yf5{bottom:628.950000px;}
.y136{bottom:629.334000px;}
.yf6{bottom:631.950000px;}
.y4c{bottom:637.620000px;}
.y1a{bottom:641.835000px;}
.y135{bottom:645.024000px;}
.yf4{bottom:649.620000px;}
.y4b{bottom:652.950000px;}
.y89{bottom:653.265000px;}
.y134{bottom:660.504000px;}
.ybd{bottom:663.900000px;}
.y4a{bottom:668.610000px;}
.y19{bottom:668.655000px;}
.y133{bottom:676.164000px;}
.ybc{bottom:679.380000px;}
.yf3{bottom:680.580000px;}
.y49{bottom:684.090000px;}
.y18{bottom:684.135000px;}
.y132{bottom:691.644000px;}
.ybb{bottom:694.860000px;}
.yf2{bottom:696.240000px;}
.y17{bottom:699.615000px;}
.y48{bottom:700.110000px;}
.y131{bottom:707.304000px;}
.yba{bottom:710.520000px;}
.yf1{bottom:711.720000px;}
.y47{bottom:712.350000px;}
.y130{bottom:722.784000px;}
.yb9{bottom:726.000000px;}
.yf0{bottom:727.200000px;}
.y16{bottom:734.355000px;}
.y12f{bottom:738.444000px;}
.yb8{bottom:741.660000px;}
.yef{bottom:742.860000px;}
.y12e{bottom:753.924000px;}
.y15{bottom:754.335000px;}
.yb7{bottom:756.960000px;}
.yee{bottom:758.340000px;}
.y12d{bottom:769.584000px;}
.yb6{bottom:772.800000px;}
.yed{bottom:773.640000px;}
.y88{bottom:780.705000px;}
.y12c{bottom:785.064000px;}
.y14{bottom:786.735000px;}
.yb5{bottom:789.210000px;}
.yec{bottom:789.300000px;}
.y87{bottom:796.185000px;}
.y12b{bottom:800.724000px;}
.y13{bottom:804.555000px;}
.yb4{bottom:804.690000px;}
.yeb{bottom:805.800000px;}
.y86{bottom:811.665000px;}
.y12a{bottom:816.204000px;}
.y12{bottom:817.695000px;}
.yb3{bottom:820.170000px;}
.yea{bottom:823.650000px;}
.y85{bottom:827.145000px;}
.y129{bottom:831.864000px;}
.yb2{bottom:835.650000px;}
.ye9{bottom:841.500000px;}
.y84{bottom:842.625000px;}
.y11{bottom:843.075000px;}
.y128{bottom:847.164000px;}
.yb1{bottom:852.015000px;}
.y83{bottom:858.285000px;}
.ye6{bottom:858.705000px;}
.yb0{bottom:867.495000px;}
.y82{bottom:873.765000px;}
.ye8{bottom:874.365000px;}
.y46{bottom:876.450000px;}
.y127{bottom:878.664000px;}
.y10{bottom:882.315000px;}
.yaf{bottom:882.975000px;}
.y81{bottom:889.245000px;}
.ye7{bottom:889.845000px;}
.y45{bottom:892.110000px;}
.y126{bottom:894.189000px;}
.yae{bottom:898.500000px;}
.y80{bottom:904.770000px;}
.yf{bottom:906.480000px;}
.y44{bottom:907.635000px;}
.y125{bottom:909.849000px;}
.yad{bottom:914.550000px;}
.y43{bottom:920.055000px;}
.y7f{bottom:920.430000px;}
.ye5{bottom:922.110000px;}
.y124{bottom:924.969000px;}
.ye{bottom:930.600000px;}
.yac{bottom:933.330000px;}
.y7e{bottom:935.910000px;}
.ye4{bottom:937.590000px;}
.y123{bottom:940.629000px;}
.yab{bottom:948.990000px;}
.y7d{bottom:951.390000px;}
.ye3{bottom:953.070000px;}
.y122{bottom:956.469000px;}
.yaa{bottom:964.470000px;}
.y7c{bottom:966.870000px;}
.ye2{bottom:968.730000px;}
.y121{bottom:972.129000px;}
.yd{bottom:973.980000px;}
.ya9{bottom:979.950000px;}
.y7b{bottom:982.530000px;}
.ye1{bottom:984.210000px;}
.y120{bottom:987.609000px;}
.ya8{bottom:996.030000px;}
.y7a{bottom:998.190000px;}
.ye0{bottom:999.690000px;}
.ya7{bottom:1011.690000px;}
.ydf{bottom:1015.170000px;}
.yc{bottom:1016.100000px;}
.y11f{bottom:1018.929000px;}
.ya6{bottom:1027.170000px;}
.y79{bottom:1030.410000px;}
.yde{bottom:1030.830000px;}
.y9{bottom:1034.100000px;}
.y11e{bottom:1034.409000px;}
.yb{bottom:1039.320000px;}
.ya5{bottom:1042.650000px;}
.y78{bottom:1049.670000px;}
.y11d{bottom:1050.069000px;}
.y8{bottom:1057.320000px;}
.ya4{bottom:1058.700000px;}
.ydd{bottom:1061.610000px;}
.y77{bottom:1065.330000px;}
.y11c{bottom:1065.549000px;}
.ya{bottom:1071.360000px;}
.ya1{bottom:1074.150000px;}
.y9b{bottom:1077.060000px;}
.ya3{bottom:1077.150000px;}
.ydc{bottom:1077.450000px;}
.y76{bottom:1081.170000px;}
.y7{bottom:1086.660000px;}
.y9d{bottom:1092.540000px;}
.ydb{bottom:1093.800000px;}
.y42{bottom:1096.605000px;}
.y75{bottom:1096.650000px;}
.y11b{bottom:1096.689000px;}
.y6{bottom:1105.740000px;}
.y9e{bottom:1106.100000px;}
.y9c{bottom:1108.200000px;}
.ya0{bottom:1108.950000px;}
.yda{bottom:1110.000000px;}
.y41{bottom:1112.085000px;}
.y74{bottom:1112.130000px;}
.y11a{bottom:1112.169000px;}
.y5{bottom:1123.020000px;}
.yd9{bottom:1126.200000px;}
.y40{bottom:1127.745000px;}
.y73{bottom:1127.790000px;}
.y119{bottom:1127.829000px;}
.y4{bottom:1140.300000px;}
.yd8{bottom:1142.160000px;}
.y3f{bottom:1143.225000px;}
.y72{bottom:1143.270000px;}
.y9a{bottom:1143.300000px;}
.y118{bottom:1143.309000px;}
.y3{bottom:1158.300000px;}
.y3e{bottom:1158.735000px;}
.yd7{bottom:1158.750000px;}
.y71{bottom:1158.780000px;}
.y99{bottom:1158.810000px;}
.y117{bottom:1158.819000px;}
.y3b{bottom:1175.160000px;}
.y3a{bottom:1193.700000px;}
.ha{height:12.335625px;}
.h1a{height:15.480000px;}
.h1c{height:15.660000px;}
.h18{height:16.410000px;}
.h13{height:17.640000px;}
.h14{height:30.960000px;}
.h17{height:31.140000px;}
.hc{height:35.314453px;}
.hf{height:38.158594px;}
.h10{height:47.344922px;}
.h6{height:48.616875px;}
.hb{height:52.971680px;}
.h11{height:52.998047px;}
.hd{height:54.421875px;}
.h1d{height:55.503491px;}
.h7{height:55.796836px;}
.h8{height:58.621992px;}
.h3{height:60.226875px;}
.he{height:62.153438px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.h12{height:70.664062px;}
.h2{height:72.562500px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.h15{height:116.341875px;}
.h16{height:117.061875px;}
.h1b{height:117.798047px;}
.h19{height:118.518047px;}
.h0{height:1263.000000px;}
.w6{width:115.380000px;}
.w4{width:120.270000px;}
.w5{width:120.420000px;}
.w3{width:183.600000px;}
.w2{width:192.450000px;}
.w1{width:287.550000px;}
.w0{width:894.000000px;}
.x19{left:-237.210000px;}
.x12{left:-147.210000px;}
.x0{left:0.000000px;}
.x45{left:15.300000px;}
.x47{left:25.050000px;}
.x2{left:30.090000px;}
.xe{left:46.680000px;}
.x11{left:47.745000px;}
.x10{left:50.055000px;}
.x29{left:55.950000px;}
.x52{left:57.750000px;}
.xa{left:58.860000px;}
.x9{left:74.490000px;}
.xd{left:83.970000px;}
.x59{left:90.705000px;}
.x34{left:92.100000px;}
.x27{left:100.350000px;}
.xc{left:111.900000px;}
.x55{left:144.570000px;}
.x51{left:146.910000px;}
.x20{left:162.090000px;}
.x32{left:173.250000px;}
.x53{left:177.300000px;}
.x33{left:208.170000px;}
.x3b{left:222.900000px;}
.x23{left:227.400000px;}
.x2f{left:229.320000px;}
.x3c{left:232.050000px;}
.x2e{left:233.280000px;}
.x2d{left:234.900000px;}
.x30{left:238.140000px;}
.x5{left:244.050000px;}
.x42{left:256.950000px;}
.x41{left:258.000000px;}
.x37{left:260.970000px;}
.x3a{left:267.150000px;}
.x3{left:270.300000px;}
.x3d{left:273.300000px;}
.x4{left:290.610000px;}
.x16{left:325.770000px;}
.x44{left:332.550000px;}
.x24{left:334.005000px;}
.x25{left:337.245000px;}
.x14{left:346.590000px;}
.x17{left:355.650000px;}
.x43{left:356.760000px;}
.x39{left:374.355000px;}
.x4a{left:376.800000px;}
.x49{left:378.750000px;}
.x1a{left:383.385000px;}
.x35{left:387.300000px;}
.x2c{left:401.550000px;}
.x58{left:403.605000px;}
.x26{left:410.250000px;}
.xf{left:412.260000px;}
.x18{left:414.750000px;}
.x57{left:418.125000px;}
.xb{left:419.760000px;}
.x56{left:421.500000px;}
.x21{left:430.500000px;}
.x1{left:433.950000px;}
.x38{left:435.015000px;}
.x46{left:437.550000px;}
.x54{left:438.750000px;}
.x22{left:440.640000px;}
.x8{left:449.040000px;}
.x3f{left:450.405000px;}
.x1f{left:452.850000px;}
.x3e{left:456.390000px;}
.x6{left:478.845000px;}
.x40{left:504.765000px;}
.x7{left:506.340000px;}
.x4b{left:520.215000px;}
.x4d{left:537.315000px;}
.x4c{left:541.815000px;}
.x2a{left:547.200000px;}
.x48{left:549.150000px;}
.x13{left:561.540000px;}
.x15{left:567.120000px;}
.x31{left:594.915000px;}
.x28{left:597.900000px;}
.x2b{left:623.385000px;}
.x50{left:650.220000px;}
.x4f{left:673.980000px;}
.x4e{left:675.960000px;}
.x1e{left:681.150000px;}
.x1b{left:691.770000px;}
.x1d{left:694.290000px;}
.x1c{left:702.570000px;}
.x36{left:711.720000px;}
@media print{
.v5{vertical-align:-60.800000pt;}
.v3{vertical-align:-57.600000pt;}
.v1{vertical-align:-55.680000pt;}
.v4{vertical-align:-54.400000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:55.040000pt;}
.v7{vertical-align:58.240000pt;}
.ls11{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.196267pt;}
.ls1f{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.024320pt;}
.ls15{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.097067pt;}
.ls1{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.448000pt;}
.ls14{letter-spacing:0.656000pt;}
.ls23{letter-spacing:2.656000pt;}
.ls5{letter-spacing:3.466667pt;}
.ls4{letter-spacing:4.000000pt;}
.ls3{letter-spacing:18.720000pt;}
.ls22{letter-spacing:26.976000pt;}
.ls12{letter-spacing:45.440000pt;}
.ls6{letter-spacing:46.720000pt;}
.ls8{letter-spacing:49.440000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls17{letter-spacing:272.320000pt;}
.ls1c{letter-spacing:351.626667pt;}
.lse{letter-spacing:804.533333pt;}
.ls1a{letter-spacing:832.266667pt;}
.ls1b{letter-spacing:1071.733333pt;}
.ls16{letter-spacing:1073.333333pt;}
.ls19{letter-spacing:1085.066667pt;}
.ls18{letter-spacing:1086.133333pt;}
.ls21{letter-spacing:1109.600000pt;}
.ls20{letter-spacing:1164.000000pt;}
.ls7{letter-spacing:1215.413333pt;}
.ls1e{letter-spacing:1254.133333pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.953067pt;}
.wsb{word-spacing:-14.817067pt;}
.ws3{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.656000pt;}
.ws6{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws5{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.904000pt;}
.ws9{word-spacing:-11.680000pt;}
.ws7{word-spacing:-8.000000pt;}
.wsa{word-spacing:0.000000pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:0.958720pt;}
._a{width:2.016000pt;}
._7{width:3.322667pt;}
._8{width:4.513280pt;}
._3{width:5.808000pt;}
._4{width:6.778667pt;}
._d{width:8.011947pt;}
._e{width:9.664000pt;}
._b{width:11.072000pt;}
._10{width:13.070507pt;}
._c{width:14.005333pt;}
._9{width:14.928000pt;}
._5{width:18.442667pt;}
._6{width:19.589333pt;}
._2b{width:175.792000pt;}
._32{width:188.656000pt;}
._11{width:201.280000pt;}
._2c{width:208.801280pt;}
._15{width:215.979947pt;}
._20{width:217.585280pt;}
._2a{width:235.536000pt;}
._22{width:243.514667pt;}
._1f{width:259.840000pt;}
._23{width:266.080000pt;}
._21{width:271.680000pt;}
._33{width:273.440000pt;}
._28{width:277.946667pt;}
._34{width:302.042667pt;}
._1c{width:318.698667pt;}
._2f{width:327.904000pt;}
._1d{width:342.880000pt;}
._30{width:357.706667pt;}
._14{width:358.608000pt;}
._1e{width:362.154667pt;}
._31{width:368.960000pt;}
._2d{width:374.496000pt;}
._2e{width:380.000000pt;}
._12{width:382.186667pt;}
._13{width:391.520000pt;}
._18{width:424.029227pt;}
._1a{width:472.416000pt;}
._17{width:484.256000pt;}
._19{width:525.274667pt;}
._16{width:537.541333pt;}
._27{width:720.586667pt;}
._26{width:767.184000pt;}
._25{width:771.205333pt;}
._f{width:925.546667pt;}
._29{width:1074.922667pt;}
._35{width:1207.258667pt;}
._1b{width:1224.906667pt;}
._24{width:1241.568000pt;}
.fs7{font-size:10.880000pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.yca{bottom:-10.933333pt;}
.yc4{bottom:-10.800000pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:2.533333pt;}
.ya2{bottom:2.666667pt;}
.y6e{bottom:38.413333pt;}
.y1{bottom:46.306667pt;}
.yd5{bottom:47.253333pt;}
.y96{bottom:48.426667pt;}
.y3d{bottom:51.453333pt;}
.yd6{bottom:51.466667pt;}
.y70{bottom:51.493333pt;}
.y98{bottom:51.520000pt;}
.y2{bottom:51.521333pt;}
.y116{bottom:51.528000pt;}
.y115{bottom:56.320000pt;}
.y97{bottom:68.320000pt;}
.y114{bottom:90.986667pt;}
.y6d{bottom:91.186667pt;}
.y39{bottom:92.506667pt;}
.y95{bottom:93.066667pt;}
.yd4{bottom:96.141333pt;}
.y113{bottom:104.746667pt;}
.y6c{bottom:105.106667pt;}
.y38{bottom:106.266667pt;}
.y94{bottom:106.986667pt;}
.yd3{bottom:110.221333pt;}
.y6f{bottom:114.320000pt;}
.y112{bottom:118.666667pt;}
.y6b{bottom:118.706667pt;}
.y37{bottom:120.053333pt;}
.y93{bottom:120.613333pt;}
.yd2{bottom:121.293333pt;}
.y111{bottom:132.453333pt;}
.y6a{bottom:132.493333pt;}
.y36{bottom:133.813333pt;}
.y92{bottom:134.373333pt;}
.y69{bottom:146.413333pt;}
.y35{bottom:147.733333pt;}
.y91{bottom:148.613333pt;}
.y110{bottom:160.133333pt;}
.y68{bottom:160.333333pt;}
.y34{bottom:161.493333pt;}
.y90{bottom:162.533333pt;}
.y10f{bottom:174.053333pt;}
.y67{bottom:174.093333pt;}
.y33{bottom:175.253333pt;}
.y8f{bottom:176.293333pt;}
.y3c{bottom:178.320000pt;}
.y10e{bottom:187.813333pt;}
.y66{bottom:188.333333pt;}
.y32{bottom:189.013333pt;}
.y8e{bottom:191.173333pt;}
.y10d{bottom:201.573333pt;}
.y65{bottom:202.093333pt;}
.y31{bottom:202.933333pt;}
.y8d{bottom:205.733333pt;}
.y10c{bottom:215.493333pt;}
.y30{bottom:216.693333pt;}
.y10b{bottom:229.253333pt;}
.y64{bottom:229.613333pt;}
.y2f{bottom:230.613333pt;}
.y10a{bottom:242.853333pt;}
.y63{bottom:243.693333pt;}
.y2e{bottom:244.373333pt;}
.y109{bottom:256.933333pt;}
.y62{bottom:257.613333pt;}
.y2d{bottom:258.133333pt;}
.y108{bottom:268.533333pt;}
.y61{bottom:271.213333pt;}
.y107{bottom:271.600000pt;}
.y2c{bottom:271.893333pt;}
.y60{bottom:284.973333pt;}
.y2b{bottom:285.813333pt;}
.y106{bottom:297.466667pt;}
.y5f{bottom:298.893333pt;}
.y2a{bottom:299.573333pt;}
.y105{bottom:300.533333pt;}
.y8c{bottom:312.613333pt;}
.y5e{bottom:312.973333pt;}
.y29{bottom:313.333333pt;}
.yd1{bottom:322.226667pt;}
.y104{bottom:326.400000pt;}
.y5d{bottom:326.733333pt;}
.y28{bottom:327.093333pt;}
.y103{bottom:329.333333pt;}
.yd0{bottom:335.986667pt;}
.y5c{bottom:340.653333pt;}
.y27{bottom:341.013333pt;}
.ycf{bottom:349.786667pt;}
.y5b{bottom:354.453333pt;}
.y100{bottom:358.000000pt;}
.yce{bottom:363.706667pt;}
.y5a{bottom:368.373333pt;}
.y26{bottom:368.413333pt;}
.y102{bottom:371.760000pt;}
.ycd{bottom:377.466667pt;}
.y59{bottom:381.973333pt;}
.y101{bottom:385.680000pt;}
.y8b{bottom:386.573333pt;}
.y58{bottom:395.733333pt;}
.y25{bottom:395.933333pt;}
.ycc{bottom:404.826667pt;}
.y57{bottom:409.973333pt;}
.y24{bottom:412.093333pt;}
.yff{bottom:414.320000pt;}
.ycb{bottom:419.066667pt;}
.y56{bottom:423.733333pt;}
.yfe{bottom:428.080000pt;}
.yc9{bottom:430.666667pt;}
.yc8{bottom:433.706667pt;}
.y55{bottom:437.493333pt;}
.y23{bottom:437.853333pt;}
.yfd{bottom:441.840000pt;}
.yc7{bottom:447.466667pt;}
.y54{bottom:452.053333pt;}
.y22{bottom:454.173333pt;}
.yfc{bottom:455.760000pt;}
.yc6{bottom:461.866667pt;}
.y21{bottom:467.933333pt;}
.y53{bottom:469.493333pt;}
.yc5{bottom:476.133333pt;}
.y20{bottom:481.693333pt;}
.yfb{bottom:483.120000pt;}
.y52{bottom:483.413333pt;}
.yc3{bottom:487.866667pt;}
.yc2{bottom:490.773333pt;}
.y8a{bottom:494.733333pt;}
.y1f{bottom:495.453333pt;}
.y51{bottom:497.493333pt;}
.yfa{bottom:498.000000pt;}
.yc1{bottom:504.533333pt;}
.y1e{bottom:509.373333pt;}
.y50{bottom:511.413333pt;}
.yf9{bottom:516.266667pt;}
.yc0{bottom:519.066667pt;}
.y1d{bottom:523.133333pt;}
.y4f{bottom:525.173333pt;}
.yf8{bottom:531.600000pt;}
.y138{bottom:531.728000pt;}
.ybf{bottom:533.200000pt;}
.y1c{bottom:536.893333pt;}
.y4e{bottom:539.093333pt;}
.y137{bottom:545.648000pt;}
.yf7{bottom:546.800000pt;}
.ybe{bottom:547.546667pt;}
.y1b{bottom:550.813333pt;}
.y4d{bottom:552.693333pt;}
.yf5{bottom:559.066667pt;}
.y136{bottom:559.408000pt;}
.yf6{bottom:561.733333pt;}
.y4c{bottom:566.773333pt;}
.y1a{bottom:570.520000pt;}
.y135{bottom:573.354667pt;}
.yf4{bottom:577.440000pt;}
.y4b{bottom:580.400000pt;}
.y89{bottom:580.680000pt;}
.y134{bottom:587.114667pt;}
.ybd{bottom:590.133333pt;}
.y4a{bottom:594.320000pt;}
.y19{bottom:594.360000pt;}
.y133{bottom:601.034667pt;}
.ybc{bottom:603.893333pt;}
.yf3{bottom:604.960000pt;}
.y49{bottom:608.080000pt;}
.y18{bottom:608.120000pt;}
.y132{bottom:614.794667pt;}
.ybb{bottom:617.653333pt;}
.yf2{bottom:618.880000pt;}
.y17{bottom:621.880000pt;}
.y48{bottom:622.320000pt;}
.y131{bottom:628.714667pt;}
.yba{bottom:631.573333pt;}
.yf1{bottom:632.640000pt;}
.y47{bottom:633.200000pt;}
.y130{bottom:642.474667pt;}
.yb9{bottom:645.333333pt;}
.yf0{bottom:646.400000pt;}
.y16{bottom:652.760000pt;}
.y12f{bottom:656.394667pt;}
.yb8{bottom:659.253333pt;}
.yef{bottom:660.320000pt;}
.y12e{bottom:670.154667pt;}
.y15{bottom:670.520000pt;}
.yb7{bottom:672.853333pt;}
.yee{bottom:674.080000pt;}
.y12d{bottom:684.074667pt;}
.yb6{bottom:686.933333pt;}
.yed{bottom:687.680000pt;}
.y88{bottom:693.960000pt;}
.y12c{bottom:697.834667pt;}
.y14{bottom:699.320000pt;}
.yb5{bottom:701.520000pt;}
.yec{bottom:701.600000pt;}
.y87{bottom:707.720000pt;}
.y12b{bottom:711.754667pt;}
.y13{bottom:715.160000pt;}
.yb4{bottom:715.280000pt;}
.yeb{bottom:716.266667pt;}
.y86{bottom:721.480000pt;}
.y12a{bottom:725.514667pt;}
.y12{bottom:726.840000pt;}
.yb3{bottom:729.040000pt;}
.yea{bottom:732.133333pt;}
.y85{bottom:735.240000pt;}
.y129{bottom:739.434667pt;}
.yb2{bottom:742.800000pt;}
.ye9{bottom:748.000000pt;}
.y84{bottom:749.000000pt;}
.y11{bottom:749.400000pt;}
.y128{bottom:753.034667pt;}
.yb1{bottom:757.346667pt;}
.y83{bottom:762.920000pt;}
.ye6{bottom:763.293333pt;}
.yb0{bottom:771.106667pt;}
.y82{bottom:776.680000pt;}
.ye8{bottom:777.213333pt;}
.y46{bottom:779.066667pt;}
.y127{bottom:781.034667pt;}
.y10{bottom:784.280000pt;}
.yaf{bottom:784.866667pt;}
.y81{bottom:790.440000pt;}
.ye7{bottom:790.973333pt;}
.y45{bottom:792.986667pt;}
.y126{bottom:794.834667pt;}
.yae{bottom:798.666667pt;}
.y80{bottom:804.240000pt;}
.yf{bottom:805.760000pt;}
.y44{bottom:806.786667pt;}
.y125{bottom:808.754667pt;}
.yad{bottom:812.933333pt;}
.y43{bottom:817.826667pt;}
.y7f{bottom:818.160000pt;}
.ye5{bottom:819.653333pt;}
.y124{bottom:822.194667pt;}
.ye{bottom:827.200000pt;}
.yac{bottom:829.626667pt;}
.y7e{bottom:831.920000pt;}
.ye4{bottom:833.413333pt;}
.y123{bottom:836.114667pt;}
.yab{bottom:843.546667pt;}
.y7d{bottom:845.680000pt;}
.ye3{bottom:847.173333pt;}
.y122{bottom:850.194667pt;}
.yaa{bottom:857.306667pt;}
.y7c{bottom:859.440000pt;}
.ye2{bottom:861.093333pt;}
.y121{bottom:864.114667pt;}
.yd{bottom:865.760000pt;}
.ya9{bottom:871.066667pt;}
.y7b{bottom:873.360000pt;}
.ye1{bottom:874.853333pt;}
.y120{bottom:877.874667pt;}
.ya8{bottom:885.360000pt;}
.y7a{bottom:887.280000pt;}
.ye0{bottom:888.613333pt;}
.ya7{bottom:899.280000pt;}
.ydf{bottom:902.373333pt;}
.yc{bottom:903.200000pt;}
.y11f{bottom:905.714667pt;}
.ya6{bottom:913.040000pt;}
.y79{bottom:915.920000pt;}
.yde{bottom:916.293333pt;}
.y9{bottom:919.200000pt;}
.y11e{bottom:919.474667pt;}
.yb{bottom:923.840000pt;}
.ya5{bottom:926.800000pt;}
.y78{bottom:933.040000pt;}
.y11d{bottom:933.394667pt;}
.y8{bottom:939.840000pt;}
.ya4{bottom:941.066667pt;}
.ydd{bottom:943.653333pt;}
.y77{bottom:946.960000pt;}
.y11c{bottom:947.154667pt;}
.ya{bottom:952.320000pt;}
.ya1{bottom:954.800000pt;}
.y9b{bottom:957.386667pt;}
.ya3{bottom:957.466667pt;}
.ydc{bottom:957.733333pt;}
.y76{bottom:961.040000pt;}
.y7{bottom:965.920000pt;}
.y9d{bottom:971.146667pt;}
.ydb{bottom:972.266667pt;}
.y42{bottom:974.760000pt;}
.y75{bottom:974.800000pt;}
.y11b{bottom:974.834667pt;}
.y6{bottom:982.880000pt;}
.y9e{bottom:983.200000pt;}
.y9c{bottom:985.066667pt;}
.ya0{bottom:985.733333pt;}
.yda{bottom:986.666667pt;}
.y41{bottom:988.520000pt;}
.y74{bottom:988.560000pt;}
.y11a{bottom:988.594667pt;}
.y5{bottom:998.240000pt;}
.yd9{bottom:1001.066667pt;}
.y40{bottom:1002.440000pt;}
.y73{bottom:1002.480000pt;}
.y119{bottom:1002.514667pt;}
.y4{bottom:1013.600000pt;}
.yd8{bottom:1015.253333pt;}
.y3f{bottom:1016.200000pt;}
.y72{bottom:1016.240000pt;}
.y9a{bottom:1016.266667pt;}
.y118{bottom:1016.274667pt;}
.y3{bottom:1029.600000pt;}
.y3e{bottom:1029.986667pt;}
.yd7{bottom:1030.000000pt;}
.y71{bottom:1030.026667pt;}
.y99{bottom:1030.053333pt;}
.y117{bottom:1030.061333pt;}
.y3b{bottom:1044.586667pt;}
.y3a{bottom:1061.066667pt;}
.ha{height:10.965000pt;}
.h1a{height:13.760000pt;}
.h1c{height:13.920000pt;}
.h18{height:14.586667pt;}
.h13{height:15.680000pt;}
.h14{height:27.520000pt;}
.h17{height:27.680000pt;}
.hc{height:31.390625pt;}
.hf{height:33.918750pt;}
.h10{height:42.084375pt;}
.h6{height:43.215000pt;}
.hb{height:47.085938pt;}
.h11{height:47.109375pt;}
.hd{height:48.375000pt;}
.h1d{height:49.336436pt;}
.h7{height:49.597187pt;}
.h8{height:52.108438pt;}
.h3{height:53.535000pt;}
.he{height:55.247500pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.h12{height:62.812500pt;}
.h2{height:64.500000pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.h15{height:103.415000pt;}
.h16{height:104.055000pt;}
.h1b{height:104.709375pt;}
.h19{height:105.349375pt;}
.h0{height:1122.666667pt;}
.w6{width:102.560000pt;}
.w4{width:106.906667pt;}
.w5{width:107.040000pt;}
.w3{width:163.200000pt;}
.w2{width:171.066667pt;}
.w1{width:255.600000pt;}
.w0{width:794.666667pt;}
.x19{left:-210.853333pt;}
.x12{left:-130.853333pt;}
.x0{left:0.000000pt;}
.x45{left:13.600000pt;}
.x47{left:22.266667pt;}
.x2{left:26.746667pt;}
.xe{left:41.493333pt;}
.x11{left:42.440000pt;}
.x10{left:44.493333pt;}
.x29{left:49.733333pt;}
.x52{left:51.333333pt;}
.xa{left:52.320000pt;}
.x9{left:66.213333pt;}
.xd{left:74.640000pt;}
.x59{left:80.626667pt;}
.x34{left:81.866667pt;}
.x27{left:89.200000pt;}
.xc{left:99.466667pt;}
.x55{left:128.506667pt;}
.x51{left:130.586667pt;}
.x20{left:144.080000pt;}
.x32{left:154.000000pt;}
.x53{left:157.600000pt;}
.x33{left:185.040000pt;}
.x3b{left:198.133333pt;}
.x23{left:202.133333pt;}
.x2f{left:203.840000pt;}
.x3c{left:206.266667pt;}
.x2e{left:207.360000pt;}
.x2d{left:208.800000pt;}
.x30{left:211.680000pt;}
.x5{left:216.933333pt;}
.x42{left:228.400000pt;}
.x41{left:229.333333pt;}
.x37{left:231.973333pt;}
.x3a{left:237.466667pt;}
.x3{left:240.266667pt;}
.x3d{left:242.933333pt;}
.x4{left:258.320000pt;}
.x16{left:289.573333pt;}
.x44{left:295.600000pt;}
.x24{left:296.893333pt;}
.x25{left:299.773333pt;}
.x14{left:308.080000pt;}
.x17{left:316.133333pt;}
.x43{left:317.120000pt;}
.x39{left:332.760000pt;}
.x4a{left:334.933333pt;}
.x49{left:336.666667pt;}
.x1a{left:340.786667pt;}
.x35{left:344.266667pt;}
.x2c{left:356.933333pt;}
.x58{left:358.760000pt;}
.x26{left:364.666667pt;}
.xf{left:366.453333pt;}
.x18{left:368.666667pt;}
.x57{left:371.666667pt;}
.xb{left:373.120000pt;}
.x56{left:374.666667pt;}
.x21{left:382.666667pt;}
.x1{left:385.733333pt;}
.x38{left:386.680000pt;}
.x46{left:388.933333pt;}
.x54{left:390.000000pt;}
.x22{left:391.680000pt;}
.x8{left:399.146667pt;}
.x3f{left:400.360000pt;}
.x1f{left:402.533333pt;}
.x3e{left:405.680000pt;}
.x6{left:425.640000pt;}
.x40{left:448.680000pt;}
.x7{left:450.080000pt;}
.x4b{left:462.413333pt;}
.x4d{left:477.613333pt;}
.x4c{left:481.613333pt;}
.x2a{left:486.400000pt;}
.x48{left:488.133333pt;}
.x13{left:499.146667pt;}
.x15{left:504.106667pt;}
.x31{left:528.813333pt;}
.x28{left:531.466667pt;}
.x2b{left:554.120000pt;}
.x50{left:577.973333pt;}
.x4f{left:599.093333pt;}
.x4e{left:600.853333pt;}
.x1e{left:605.466667pt;}
.x1b{left:614.906667pt;}
.x1d{left:617.146667pt;}
.x1c{left:624.506667pt;}
.x36{left:632.640000pt;}
}




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