
    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_ccf5af6b1906acdf3feba6dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_d18a197abf1f94f45154f360.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3ec019f753763b647cad7fe8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_8d85a6d5f51aac7f923009bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_37c07c654dd316ddfe448d3c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_df29a62290d4e6969a40d961.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-1.800000px;}
.ls11{letter-spacing:-1.422000px;}
.ls1f{letter-spacing:-0.936000px;}
.ls9{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.518400px;}
.ls16{letter-spacing:-0.507000px;}
.lsd{letter-spacing:-0.501000px;}
.ls8{letter-spacing:-0.486600px;}
.ls10{letter-spacing:-0.466800px;}
.lsa{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.250800px;}
.ls21{letter-spacing:-0.234600px;}
.ls12{letter-spacing:-0.020400px;}
.lse{letter-spacing:-0.015600px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.015840px;}
.ls5{letter-spacing:0.020160px;}
.ls14{letter-spacing:0.032160px;}
.ls1a{letter-spacing:0.250560px;}
.lsf{letter-spacing:0.250800px;}
.ls4{letter-spacing:0.426720px;}
.ls15{letter-spacing:0.466800px;}
.ls6{letter-spacing:0.486600px;}
.ls13{letter-spacing:0.665280px;}
.ls1{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.840000px;}
.ls0{letter-spacing:1.080000px;}
.ls19{letter-spacing:2.520000px;}
.ls1e{letter-spacing:3.960000px;}
.ls1d{letter-spacing:6.840000px;}
.ls1b{letter-spacing:11.269440px;}
.ls18{letter-spacing:35.749440px;}
.ls2{letter-spacing:38.520000px;}
.ls17{letter-spacing:40.786560px;}
.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;}
}
.ws11{word-spacing:-60.480000px;}
.ws3{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.606600px;}
.wse{word-spacing:-15.586800px;}
.ws1{word-spacing:-15.120000px;}
.wsf{word-spacing:-14.653200px;}
.ws0{word-spacing:-14.633400px;}
.ws10{word-spacing:-14.184000px;}
.ws4{word-spacing:-13.680000px;}
.ws5{word-spacing:-12.600000px;}
.ws13{word-spacing:-12.545280px;}
.ws8{word-spacing:-12.130800px;}
.ws2{word-spacing:-11.880000px;}
.ws7{word-spacing:-11.864400px;}
.ws15{word-spacing:-11.645400px;}
.ws14{word-spacing:-11.629200px;}
.ws6{word-spacing:-11.379000px;}
.ws12{word-spacing:-11.160000px;}
.wsd{word-spacing:0.000000px;}
.ws9{word-spacing:2.412960px;}
.wsa{word-spacing:12.453840px;}
.wsc{word-spacing:14.441040px;}
._1f{margin-left:-5.001176px;}
._d{margin-left:-3.618255px;}
._0{margin-left:-2.056199px;}
._3{margin-left:-1.040125px;}
._1{width:1.269596px;}
._2{width:2.423055px;}
._2b{width:3.441604px;}
._8{width:4.541760px;}
._1a{width:5.942947px;}
._7{width:7.325404px;}
._6{width:8.513433px;}
._28{width:9.516616px;}
._4{width:10.561234px;}
._5{width:11.608874px;}
._e{width:12.642518px;}
._1b{width:13.889521px;}
._12{width:15.175215px;}
._1c{width:16.220428px;}
._19{width:17.409686px;}
._10{width:18.494977px;}
._f{width:19.863634px;}
._11{width:21.262810px;}
._9{width:22.763465px;}
._a{width:24.640906px;}
._b{width:25.816199px;}
._c{width:27.217545px;}
._21{width:29.283364px;}
._20{width:30.593280px;}
._14{width:32.042923px;}
._13{width:33.301264px;}
._15{width:34.546205px;}
._22{width:35.561718px;}
._1e{width:37.836639px;}
._1d{width:39.360099px;}
._2d{width:41.287692px;}
._2e{width:42.985901px;}
._2c{width:44.858880px;}
._23{width:57.878997px;}
._17{width:63.668555px;}
._18{width:64.860288px;}
._27{width:76.084566px;}
._26{width:77.596082px;}
._24{width:86.546759px;}
._25{width:88.010244px;}
._29{width:100.661760px;}
._2a{width:101.741276px;}
._16{width:122.950439px;}
.fc4{color:rgb(31,73,125);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(0,0,204);}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(30,30,30);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:11.520000px;}
.fs6{font-size:24.480000px;}
.fs1{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:119.520000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:2.520000px;}
.y9{bottom:5.436000px;}
.yc{bottom:10.800000px;}
.y4{bottom:11.196000px;}
.y7{bottom:16.560000px;}
.y3{bottom:19.116000px;}
.yb{bottom:24.840000px;}
.y6{bottom:30.240000px;}
.ya{bottom:38.520000px;}
.y5{bottom:43.920000px;}
.y68{bottom:84.276000px;}
.yd5{bottom:87.876000px;}
.y11f{bottom:89.676000px;}
.y99{bottom:96.156000px;}
.y47{bottom:99.396000px;}
.yd4{bottom:101.556000px;}
.y67{bottom:102.276000px;}
.y11e{bottom:103.356000px;}
.y46{bottom:113.076000px;}
.y98{bottom:114.516000px;}
.yd3{bottom:115.236000px;}
.y11d{bottom:117.396000px;}
.y66{bottom:120.636000px;}
.y45{bottom:127.116000px;}
.yd2{bottom:129.276000px;}
.y7f{bottom:131.112000px;}
.y97{bottom:132.552000px;}
.y65{bottom:138.672000px;}
.yd1{bottom:142.992000px;}
.y11c{bottom:144.792000px;}
.y7e{bottom:149.112000px;}
.y96{bottom:150.555000px;}
.y44{bottom:154.515000px;}
.y64{bottom:156.675000px;}
.y11b{bottom:158.835000px;}
.y43{bottom:168.555000px;}
.yd0{bottom:170.715000px;}
.y11a{bottom:172.515000px;}
.y7d{bottom:175.755000px;}
.y95{bottom:176.835000px;}
.y63{bottom:178.635000px;}
.y42{bottom:182.235000px;}
.ycf{bottom:184.395000px;}
.y119{bottom:186.195000px;}
.y41{bottom:195.915000px;}
.yce{bottom:198.075000px;}
.y118{bottom:200.235000px;}
.y62{bottom:204.555000px;}
.y40{bottom:209.955000px;}
.y7c{bottom:210.675000px;}
.ycd{bottom:212.115000px;}
.y94{bottom:213.195000px;}
.y117{bottom:213.915000px;}
.y3f{bottom:223.635000px;}
.ycc{bottom:225.795000px;}
.y116{bottom:227.595000px;}
.y7b{bottom:230.835000px;}
.y93{bottom:231.195000px;}
.y3e{bottom:237.315000px;}
.ycb{bottom:239.475000px;}
.y115{bottom:241.635000px;}
.y92{bottom:249.195000px;}
.y3d{bottom:251.355000px;}
.yca{bottom:253.515000px;}
.y114{bottom:255.315000px;}
.y3c{bottom:265.065000px;}
.yc9{bottom:267.225000px;}
.y91{bottom:267.585000px;}
.y113{bottom:269.025000px;}
.y3b{bottom:278.745000px;}
.yc8{bottom:280.905000px;}
.y112{bottom:283.065000px;}
.y90{bottom:285.585000px;}
.y3a{bottom:292.785000px;}
.yc7{bottom:294.945000px;}
.y111{bottom:296.745000px;}
.y8f{bottom:303.585000px;}
.y39{bottom:306.465000px;}
.yc6{bottom:308.625000px;}
.y110{bottom:310.425000px;}
.y38{bottom:320.145000px;}
.y8e{bottom:321.585000px;}
.yc5{bottom:322.305000px;}
.y10f{bottom:324.465000px;}
.y37{bottom:334.185000px;}
.yc4{bottom:336.345000px;}
.y10e{bottom:338.145000px;}
.y8d{bottom:339.945000px;}
.y36{bottom:347.865000px;}
.yc3{bottom:350.025000px;}
.y10d{bottom:351.825000px;}
.y35{bottom:361.545000px;}
.yc2{bottom:363.705000px;}
.y10c{bottom:365.865000px;}
.y8c{bottom:366.225000px;}
.y34{bottom:375.585000px;}
.yc1{bottom:377.745000px;}
.y10b{bottom:379.545000px;}
.y33{bottom:389.265000px;}
.yc0{bottom:391.425000px;}
.y10a{bottom:393.225000px;}
.y8b{bottom:401.190000px;}
.y32{bottom:402.990000px;}
.ybf{bottom:405.150000px;}
.y109{bottom:407.310000px;}
.y31{bottom:417.390000px;}
.ybe{bottom:419.190000px;}
.y108{bottom:420.990000px;}
.y8a{bottom:421.350000px;}
.ybd{bottom:432.870000px;}
.y30{bottom:434.310000px;}
.y107{bottom:434.670000px;}
.ybc{bottom:446.550000px;}
.y61{bottom:447.990000px;}
.y106{bottom:448.710000px;}
.y2f{bottom:450.150000px;}
.ybb{bottom:460.590000px;}
.y105{bottom:462.390000px;}
.y2e{bottom:465.630000px;}
.y60{bottom:466.350000px;}
.yba{bottom:474.270000px;}
.y104{bottom:476.070000px;}
.y2d{bottom:481.110000px;}
.y5f{bottom:484.350000px;}
.yb9{bottom:487.950000px;}
.y103{bottom:490.110000px;}
.y2c{bottom:496.590000px;}
.y5e{bottom:502.350000px;}
.y102{bottom:503.790000px;}
.yb8{bottom:511.350000px;}
.y2b{bottom:512.070000px;}
.y101{bottom:517.470000px;}
.y5d{bottom:520.710000px;}
.y100{bottom:531.510000px;}
.y5c{bottom:538.740000px;}
.yff{bottom:545.220000px;}
.yb7{bottom:546.660000px;}
.y5b{bottom:556.740000px;}
.yfe{bottom:558.900000px;}
.y7a{bottom:563.940000px;}
.yfd{bottom:572.940000px;}
.y5a{bottom:574.740000px;}
.yb6{bottom:581.220000px;}
.y141{bottom:582.660000px;}
.y79{bottom:584.100000px;}
.yfc{bottom:586.620000px;}
.y89{bottom:592.380000px;}
.y59{bottom:596.700000px;}
.y2a{bottom:597.780000px;}
.yb5{bottom:598.500000px;}
.yfb{bottom:600.300000px;}
.y88{bottom:612.900000px;}
.y29{bottom:613.260000px;}
.yfa{bottom:614.340000px;}
.yb4{bottom:615.780000px;}
.y140{bottom:617.220000px;}
.y58{bottom:622.980000px;}
.yf9{bottom:628.020000px;}
.y28{bottom:628.740000px;}
.yb3{bottom:633.060000px;}
.yf8{bottom:641.700000px;}
.y27{bottom:650.340000px;}
.y13f{bottom:652.140000px;}
.yf7{bottom:655.740000px;}
.y57{bottom:658.980000px;}
.y26{bottom:665.850000px;}
.yb2{bottom:667.650000px;}
.yf6{bottom:670.170000px;}
.y56{bottom:677.010000px;}
.y25{bottom:681.330000px;}
.yb1{bottom:684.570000px;}
.y13e{bottom:685.650000px;}
.yf5{bottom:687.450000px;}
.y55{bottom:695.370000px;}
.y24{bottom:696.810000px;}
.yb0{bottom:701.850000px;}
.yf4{bottom:704.010000px;}
.y13d{bottom:704.730000px;}
.y23{bottom:712.650000px;}
.y54{bottom:713.370000px;}
.yf3{bottom:717.690000px;}
.yaf{bottom:719.130000px;}
.y13c{bottom:722.010000px;}
.y22{bottom:728.130000px;}
.y53{bottom:731.370000px;}
.yf2{bottom:731.730000px;}
.yae{bottom:736.410000px;}
.y13b{bottom:739.290000px;}
.y21{bottom:743.610000px;}
.yf1{bottom:745.410000px;}
.y52{bottom:749.730000px;}
.yad{bottom:753.690000px;}
.y13a{bottom:756.570000px;}
.y20{bottom:759.090000px;}
.y51{bottom:767.730000px;}
.yac{bottom:770.970000px;}
.yf0{bottom:773.130000px;}
.y139{bottom:773.850000px;}
.y1f{bottom:774.570000px;}
.y50{bottom:785.730000px;}
.yef{bottom:786.810000px;}
.yab{bottom:788.250000px;}
.y1e{bottom:790.050000px;}
.y138{bottom:791.130000px;}
.yee{bottom:800.535000px;}
.y4f{bottom:804.135000px;}
.y1d{bottom:805.575000px;}
.y87{bottom:808.095000px;}
.y137{bottom:808.455000px;}
.yed{bottom:814.215000px;}
.y78{bottom:816.015000px;}
.y1c{bottom:821.055000px;}
.y4e{bottom:822.135000px;}
.yaa{bottom:822.855000px;}
.y136{bottom:825.735000px;}
.y86{bottom:826.455000px;}
.yec{bottom:828.255000px;}
.y77{bottom:836.175000px;}
.y1b{bottom:836.895000px;}
.y4d{bottom:840.135000px;}
.yeb{bottom:841.935000px;}
.y135{bottom:842.655000px;}
.y85{bottom:844.455000px;}
.y1a{bottom:852.375000px;}
.ya9{bottom:857.415000px;}
.y4c{bottom:858.135000px;}
.y84{bottom:862.455000px;}
.yea{bottom:865.335000px;}
.y19{bottom:867.855000px;}
.y4b{bottom:876.495000px;}
.y134{bottom:876.855000px;}
.y83{bottom:880.815000px;}
.y18{bottom:883.335000px;}
.y133{bottom:890.535000px;}
.y4a{bottom:894.495000px;}
.y17{bottom:898.815000px;}
.ye9{bottom:899.895000px;}
.y132{bottom:904.215000px;}
.ye8{bottom:913.935000px;}
.y16{bottom:914.295000px;}
.y49{bottom:916.815000px;}
.y131{bottom:918.255000px;}
.ya8{bottom:919.695000px;}
.y82{bottom:921.855000px;}
.ye7{bottom:927.615000px;}
.y15{bottom:929.775000px;}
.y130{bottom:931.935000px;}
.ya7{bottom:937.725000px;}
.ye6{bottom:941.325000px;}
.y81{bottom:942.045000px;}
.y14{bottom:945.285000px;}
.y12f{bottom:945.645000px;}
.ye5{bottom:955.365000px;}
.ya6{bottom:955.725000px;}
.y48{bottom:957.165000px;}
.y12e{bottom:959.685000px;}
.y13{bottom:961.125000px;}
.ye4{bottom:969.045000px;}
.y76{bottom:972.645000px;}
.y12d{bottom:973.365000px;}
.ya5{bottom:974.085000px;}
.y12{bottom:976.605000px;}
.y75{bottom:982.365000px;}
.ye3{bottom:982.725000px;}
.y12c{bottom:987.045000px;}
.ya4{bottom:992.085000px;}
.ye2{bottom:996.765000px;}
.y74{bottom:1000.725000px;}
.y12b{bottom:1001.085000px;}
.ya3{bottom:1010.085000px;}
.y11{bottom:1010.445000px;}
.y12a{bottom:1014.765000px;}
.y73{bottom:1018.725000px;}
.ye1{bottom:1024.125000px;}
.ya2{bottom:1028.445000px;}
.y10{bottom:1029.525000px;}
.y72{bottom:1036.725000px;}
.ye0{bottom:1038.165000px;}
.y129{bottom:1042.485000px;}
.ya1{bottom:1046.445000px;}
.ydf{bottom:1051.845000px;}
.y71{bottom:1055.085000px;}
.y128{bottom:1056.165000px;}
.ya0{bottom:1064.445000px;}
.yde{bottom:1065.525000px;}
.y127{bottom:1069.890000px;}
.yf{bottom:1070.970000px;}
.y70{bottom:1073.130000px;}
.ydd{bottom:1079.610000px;}
.y9f{bottom:1082.490000px;}
.y126{bottom:1083.930000px;}
.y6f{bottom:1091.130000px;}
.ydc{bottom:1093.290000px;}
.y125{bottom:1097.610000px;}
.y9e{bottom:1100.850000px;}
.ydb{bottom:1106.970000px;}
.y6e{bottom:1109.490000px;}
.y124{bottom:1111.290000px;}
.ye{bottom:1112.370000px;}
.y9d{bottom:1118.850000px;}
.yda{bottom:1121.010000px;}
.y123{bottom:1125.330000px;}
.y6d{bottom:1127.490000px;}
.yd9{bottom:1134.690000px;}
.y9c{bottom:1136.850000px;}
.y80{bottom:1138.650000px;}
.y122{bottom:1139.010000px;}
.y6c{bottom:1145.490000px;}
.yd8{bottom:1148.370000px;}
.y121{bottom:1152.690000px;}
.yd{bottom:1153.770000px;}
.y9b{bottom:1155.210000px;}
.yd7{bottom:1162.410000px;}
.y6b{bottom:1163.850000px;}
.y120{bottom:1166.730000px;}
.y9a{bottom:1173.210000px;}
.yd6{bottom:1176.090000px;}
.y6a{bottom:1181.490000px;}
.y69{bottom:1200.210000px;}
.y2{bottom:1217.520000px;}
.y1{bottom:1234.800000px;}
.h11{height:10.108125px;}
.h10{height:21.479766px;}
.h5{height:36.150469px;}
.ha{height:38.608594px;}
.hc{height:41.696016px;}
.h2{height:42.672656px;}
.h9{height:44.406562px;}
.h12{height:44.798906px;}
.h8{height:46.736719px;}
.hb{height:48.013594px;}
.he{height:49.080938px;}
.h6{height:49.680000px;}
.h3{height:53.067656px;}
.h4{height:55.080000px;}
.hf{height:55.825312px;}
.hd{height:104.871797px;}
.h7{height:126.351562px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:193.425000px;}
.w3{width:243.465000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:10.800000px;}
.x6{left:67.356000px;}
.xd{left:70.236000px;}
.x8{left:73.836000px;}
.xa{left:78.876000px;}
.xc{left:81.036000px;}
.x18{left:83.195987px;}
.x1a{left:87.155987px;}
.x28{left:91.475987px;}
.x14{left:95.435987px;}
.x7{left:96.876000px;}
.x27{left:102.275987px;}
.x1d{left:126.395987px;}
.x1c{left:145.151987px;}
.x26{left:147.671987px;}
.x2e{left:155.234987px;}
.x25{left:272.984987px;}
.x16{left:274.784987px;}
.x9{left:311.190000px;}
.x1{left:350.790000px;}
.x15{left:415.979987px;}
.x2{left:423.180000px;}
.xb{left:428.220000px;}
.x1b{left:430.739987px;}
.x19{left:431.819987px;}
.x17{left:432.899987px;}
.x3{left:433.983000px;}
.x13{left:446.579987px;}
.x11{left:450.900000px;}
.x10{left:457.380000px;}
.x4{left:461.700000px;}
.xf{left:468.180000px;}
.x12{left:473.940000px;}
.x29{left:478.619987px;}
.x1f{left:481.529987px;}
.x24{left:513.929987px;}
.x2c{left:530.489987px;}
.x2b{left:531.929987px;}
.x22{left:533.009987px;}
.x2d{left:537.329987px;}
.x2a{left:565.409987px;}
.xe{left:570.495000px;}
.x23{left:571.934987px;}
.x21{left:813.209987px;}
.x1e{left:818.969987px;}
.x20{left:820.049987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.600000pt;}
.ls11{letter-spacing:-1.264000pt;}
.ls1f{letter-spacing:-0.832000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.460800pt;}
.ls16{letter-spacing:-0.450667pt;}
.lsd{letter-spacing:-0.445333pt;}
.ls8{letter-spacing:-0.432533pt;}
.ls10{letter-spacing:-0.414933pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.222933pt;}
.ls21{letter-spacing:-0.208533pt;}
.ls12{letter-spacing:-0.018133pt;}
.lse{letter-spacing:-0.013867pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.014080pt;}
.ls5{letter-spacing:0.017920pt;}
.ls14{letter-spacing:0.028587pt;}
.ls1a{letter-spacing:0.222720pt;}
.lsf{letter-spacing:0.222933pt;}
.ls4{letter-spacing:0.379307pt;}
.ls15{letter-spacing:0.414933pt;}
.ls6{letter-spacing:0.432533pt;}
.ls13{letter-spacing:0.591360pt;}
.ls1{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.746667pt;}
.ls0{letter-spacing:0.960000pt;}
.ls19{letter-spacing:2.240000pt;}
.ls1e{letter-spacing:3.520000pt;}
.ls1d{letter-spacing:6.080000pt;}
.ls1b{letter-spacing:10.017280pt;}
.ls18{letter-spacing:31.777280pt;}
.ls2{letter-spacing:34.240000pt;}
.ls17{letter-spacing:36.254720pt;}
.ws11{word-spacing:-53.760000pt;}
.ws3{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.872533pt;}
.wse{word-spacing:-13.854933pt;}
.ws1{word-spacing:-13.440000pt;}
.wsf{word-spacing:-13.025067pt;}
.ws0{word-spacing:-13.007467pt;}
.ws10{word-spacing:-12.608000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws5{word-spacing:-11.200000pt;}
.ws13{word-spacing:-11.151360pt;}
.ws8{word-spacing:-10.782933pt;}
.ws2{word-spacing:-10.560000pt;}
.ws7{word-spacing:-10.546133pt;}
.ws15{word-spacing:-10.351467pt;}
.ws14{word-spacing:-10.337067pt;}
.ws6{word-spacing:-10.114667pt;}
.ws12{word-spacing:-9.920000pt;}
.wsd{word-spacing:0.000000pt;}
.ws9{word-spacing:2.144853pt;}
.wsa{word-spacing:11.070080pt;}
.wsc{word-spacing:12.836480pt;}
._1f{margin-left:-4.445489pt;}
._d{margin-left:-3.216227pt;}
._0{margin-left:-1.827732pt;}
._3{margin-left:-0.924556pt;}
._1{width:1.128530pt;}
._2{width:2.153827pt;}
._2b{width:3.059203pt;}
._8{width:4.037120pt;}
._1a{width:5.282620pt;}
._7{width:6.511470pt;}
._6{width:7.567496pt;}
._28{width:8.459215pt;}
._4{width:9.387763pt;}
._5{width:10.318999pt;}
._e{width:11.237794pt;}
._1b{width:12.346241pt;}
._12{width:13.489080pt;}
._1c{width:14.418158pt;}
._19{width:15.475277pt;}
._10{width:16.439980pt;}
._f{width:17.656563pt;}
._11{width:18.900275pt;}
._9{width:20.234191pt;}
._a{width:21.903027pt;}
._b{width:22.947732pt;}
._c{width:24.193373pt;}
._21{width:26.029657pt;}
._20{width:27.194027pt;}
._14{width:28.482598pt;}
._13{width:29.601124pt;}
._15{width:30.707738pt;}
._22{width:31.610416pt;}
._1e{width:33.632568pt;}
._1d{width:34.986755pt;}
._2d{width:36.700170pt;}
._2e{width:38.209690pt;}
._2c{width:39.874560pt;}
._23{width:51.447997pt;}
._17{width:56.594271pt;}
._18{width:57.653589pt;}
._27{width:67.630725pt;}
._26{width:68.974295pt;}
._24{width:76.930452pt;}
._25{width:78.231328pt;}
._29{width:89.477120pt;}
._2a{width:90.436690pt;}
._16{width:109.289279pt;}
.fs7{font-size:10.240000pt;}
.fs6{font-size:21.760000pt;}
.fs1{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:106.240000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.240000pt;}
.y9{bottom:4.832000pt;}
.yc{bottom:9.600000pt;}
.y4{bottom:9.952000pt;}
.y7{bottom:14.720000pt;}
.y3{bottom:16.992000pt;}
.yb{bottom:22.080000pt;}
.y6{bottom:26.880000pt;}
.ya{bottom:34.240000pt;}
.y5{bottom:39.040000pt;}
.y68{bottom:74.912000pt;}
.yd5{bottom:78.112000pt;}
.y11f{bottom:79.712000pt;}
.y99{bottom:85.472000pt;}
.y47{bottom:88.352000pt;}
.yd4{bottom:90.272000pt;}
.y67{bottom:90.912000pt;}
.y11e{bottom:91.872000pt;}
.y46{bottom:100.512000pt;}
.y98{bottom:101.792000pt;}
.yd3{bottom:102.432000pt;}
.y11d{bottom:104.352000pt;}
.y66{bottom:107.232000pt;}
.y45{bottom:112.992000pt;}
.yd2{bottom:114.912000pt;}
.y7f{bottom:116.544000pt;}
.y97{bottom:117.824000pt;}
.y65{bottom:123.264000pt;}
.yd1{bottom:127.104000pt;}
.y11c{bottom:128.704000pt;}
.y7e{bottom:132.544000pt;}
.y96{bottom:133.826667pt;}
.y44{bottom:137.346667pt;}
.y64{bottom:139.266667pt;}
.y11b{bottom:141.186667pt;}
.y43{bottom:149.826667pt;}
.yd0{bottom:151.746667pt;}
.y11a{bottom:153.346667pt;}
.y7d{bottom:156.226667pt;}
.y95{bottom:157.186667pt;}
.y63{bottom:158.786667pt;}
.y42{bottom:161.986667pt;}
.ycf{bottom:163.906667pt;}
.y119{bottom:165.506667pt;}
.y41{bottom:174.146667pt;}
.yce{bottom:176.066667pt;}
.y118{bottom:177.986667pt;}
.y62{bottom:181.826667pt;}
.y40{bottom:186.626667pt;}
.y7c{bottom:187.266667pt;}
.ycd{bottom:188.546667pt;}
.y94{bottom:189.506667pt;}
.y117{bottom:190.146667pt;}
.y3f{bottom:198.786667pt;}
.ycc{bottom:200.706667pt;}
.y116{bottom:202.306667pt;}
.y7b{bottom:205.186667pt;}
.y93{bottom:205.506667pt;}
.y3e{bottom:210.946667pt;}
.ycb{bottom:212.866667pt;}
.y115{bottom:214.786667pt;}
.y92{bottom:221.506667pt;}
.y3d{bottom:223.426667pt;}
.yca{bottom:225.346667pt;}
.y114{bottom:226.946667pt;}
.y3c{bottom:235.613333pt;}
.yc9{bottom:237.533333pt;}
.y91{bottom:237.853333pt;}
.y113{bottom:239.133333pt;}
.y3b{bottom:247.773333pt;}
.yc8{bottom:249.693333pt;}
.y112{bottom:251.613333pt;}
.y90{bottom:253.853333pt;}
.y3a{bottom:260.253333pt;}
.yc7{bottom:262.173333pt;}
.y111{bottom:263.773333pt;}
.y8f{bottom:269.853333pt;}
.y39{bottom:272.413333pt;}
.yc6{bottom:274.333333pt;}
.y110{bottom:275.933333pt;}
.y38{bottom:284.573333pt;}
.y8e{bottom:285.853333pt;}
.yc5{bottom:286.493333pt;}
.y10f{bottom:288.413333pt;}
.y37{bottom:297.053333pt;}
.yc4{bottom:298.973333pt;}
.y10e{bottom:300.573333pt;}
.y8d{bottom:302.173333pt;}
.y36{bottom:309.213333pt;}
.yc3{bottom:311.133333pt;}
.y10d{bottom:312.733333pt;}
.y35{bottom:321.373333pt;}
.yc2{bottom:323.293333pt;}
.y10c{bottom:325.213333pt;}
.y8c{bottom:325.533333pt;}
.y34{bottom:333.853333pt;}
.yc1{bottom:335.773333pt;}
.y10b{bottom:337.373333pt;}
.y33{bottom:346.013333pt;}
.yc0{bottom:347.933333pt;}
.y10a{bottom:349.533333pt;}
.y8b{bottom:356.613333pt;}
.y32{bottom:358.213333pt;}
.ybf{bottom:360.133333pt;}
.y109{bottom:362.053333pt;}
.y31{bottom:371.013333pt;}
.ybe{bottom:372.613333pt;}
.y108{bottom:374.213333pt;}
.y8a{bottom:374.533333pt;}
.ybd{bottom:384.773333pt;}
.y30{bottom:386.053333pt;}
.y107{bottom:386.373333pt;}
.ybc{bottom:396.933333pt;}
.y61{bottom:398.213333pt;}
.y106{bottom:398.853333pt;}
.y2f{bottom:400.133333pt;}
.ybb{bottom:409.413333pt;}
.y105{bottom:411.013333pt;}
.y2e{bottom:413.893333pt;}
.y60{bottom:414.533333pt;}
.yba{bottom:421.573333pt;}
.y104{bottom:423.173333pt;}
.y2d{bottom:427.653333pt;}
.y5f{bottom:430.533333pt;}
.yb9{bottom:433.733333pt;}
.y103{bottom:435.653333pt;}
.y2c{bottom:441.413333pt;}
.y5e{bottom:446.533333pt;}
.y102{bottom:447.813333pt;}
.yb8{bottom:454.533333pt;}
.y2b{bottom:455.173333pt;}
.y101{bottom:459.973333pt;}
.y5d{bottom:462.853333pt;}
.y100{bottom:472.453333pt;}
.y5c{bottom:478.880000pt;}
.yff{bottom:484.640000pt;}
.yb7{bottom:485.920000pt;}
.y5b{bottom:494.880000pt;}
.yfe{bottom:496.800000pt;}
.y7a{bottom:501.280000pt;}
.yfd{bottom:509.280000pt;}
.y5a{bottom:510.880000pt;}
.yb6{bottom:516.640000pt;}
.y141{bottom:517.920000pt;}
.y79{bottom:519.200000pt;}
.yfc{bottom:521.440000pt;}
.y89{bottom:526.560000pt;}
.y59{bottom:530.400000pt;}
.y2a{bottom:531.360000pt;}
.yb5{bottom:532.000000pt;}
.yfb{bottom:533.600000pt;}
.y88{bottom:544.800000pt;}
.y29{bottom:545.120000pt;}
.yfa{bottom:546.080000pt;}
.yb4{bottom:547.360000pt;}
.y140{bottom:548.640000pt;}
.y58{bottom:553.760000pt;}
.yf9{bottom:558.240000pt;}
.y28{bottom:558.880000pt;}
.yb3{bottom:562.720000pt;}
.yf8{bottom:570.400000pt;}
.y27{bottom:578.080000pt;}
.y13f{bottom:579.680000pt;}
.yf7{bottom:582.880000pt;}
.y57{bottom:585.760000pt;}
.y26{bottom:591.866667pt;}
.yb2{bottom:593.466667pt;}
.yf6{bottom:595.706667pt;}
.y56{bottom:601.786667pt;}
.y25{bottom:605.626667pt;}
.yb1{bottom:608.506667pt;}
.y13e{bottom:609.466667pt;}
.yf5{bottom:611.066667pt;}
.y55{bottom:618.106667pt;}
.y24{bottom:619.386667pt;}
.yb0{bottom:623.866667pt;}
.yf4{bottom:625.786667pt;}
.y13d{bottom:626.426667pt;}
.y23{bottom:633.466667pt;}
.y54{bottom:634.106667pt;}
.yf3{bottom:637.946667pt;}
.yaf{bottom:639.226667pt;}
.y13c{bottom:641.786667pt;}
.y22{bottom:647.226667pt;}
.y53{bottom:650.106667pt;}
.yf2{bottom:650.426667pt;}
.yae{bottom:654.586667pt;}
.y13b{bottom:657.146667pt;}
.y21{bottom:660.986667pt;}
.yf1{bottom:662.586667pt;}
.y52{bottom:666.426667pt;}
.yad{bottom:669.946667pt;}
.y13a{bottom:672.506667pt;}
.y20{bottom:674.746667pt;}
.y51{bottom:682.426667pt;}
.yac{bottom:685.306667pt;}
.yf0{bottom:687.226667pt;}
.y139{bottom:687.866667pt;}
.y1f{bottom:688.506667pt;}
.y50{bottom:698.426667pt;}
.yef{bottom:699.386667pt;}
.yab{bottom:700.666667pt;}
.y1e{bottom:702.266667pt;}
.y138{bottom:703.226667pt;}
.yee{bottom:711.586667pt;}
.y4f{bottom:714.786667pt;}
.y1d{bottom:716.066667pt;}
.y87{bottom:718.306667pt;}
.y137{bottom:718.626667pt;}
.yed{bottom:723.746667pt;}
.y78{bottom:725.346667pt;}
.y1c{bottom:729.826667pt;}
.y4e{bottom:730.786667pt;}
.yaa{bottom:731.426667pt;}
.y136{bottom:733.986667pt;}
.y86{bottom:734.626667pt;}
.yec{bottom:736.226667pt;}
.y77{bottom:743.266667pt;}
.y1b{bottom:743.906667pt;}
.y4d{bottom:746.786667pt;}
.yeb{bottom:748.386667pt;}
.y135{bottom:749.026667pt;}
.y85{bottom:750.626667pt;}
.y1a{bottom:757.666667pt;}
.ya9{bottom:762.146667pt;}
.y4c{bottom:762.786667pt;}
.y84{bottom:766.626667pt;}
.yea{bottom:769.186667pt;}
.y19{bottom:771.426667pt;}
.y4b{bottom:779.106667pt;}
.y134{bottom:779.426667pt;}
.y83{bottom:782.946667pt;}
.y18{bottom:785.186667pt;}
.y133{bottom:791.586667pt;}
.y4a{bottom:795.106667pt;}
.y17{bottom:798.946667pt;}
.ye9{bottom:799.906667pt;}
.y132{bottom:803.746667pt;}
.ye8{bottom:812.386667pt;}
.y16{bottom:812.706667pt;}
.y49{bottom:814.946667pt;}
.y131{bottom:816.226667pt;}
.ya8{bottom:817.506667pt;}
.y82{bottom:819.426667pt;}
.ye7{bottom:824.546667pt;}
.y15{bottom:826.466667pt;}
.y130{bottom:828.386667pt;}
.ya7{bottom:833.533333pt;}
.ye6{bottom:836.733333pt;}
.y81{bottom:837.373333pt;}
.y14{bottom:840.253333pt;}
.y12f{bottom:840.573333pt;}
.ye5{bottom:849.213333pt;}
.ya6{bottom:849.533333pt;}
.y48{bottom:850.813333pt;}
.y12e{bottom:853.053333pt;}
.y13{bottom:854.333333pt;}
.ye4{bottom:861.373333pt;}
.y76{bottom:864.573333pt;}
.y12d{bottom:865.213333pt;}
.ya5{bottom:865.853333pt;}
.y12{bottom:868.093333pt;}
.y75{bottom:873.213333pt;}
.ye3{bottom:873.533333pt;}
.y12c{bottom:877.373333pt;}
.ya4{bottom:881.853333pt;}
.ye2{bottom:886.013333pt;}
.y74{bottom:889.533333pt;}
.y12b{bottom:889.853333pt;}
.ya3{bottom:897.853333pt;}
.y11{bottom:898.173333pt;}
.y12a{bottom:902.013333pt;}
.y73{bottom:905.533333pt;}
.ye1{bottom:910.333333pt;}
.ya2{bottom:914.173333pt;}
.y10{bottom:915.133333pt;}
.y72{bottom:921.533333pt;}
.ye0{bottom:922.813333pt;}
.y129{bottom:926.653333pt;}
.ya1{bottom:930.173333pt;}
.ydf{bottom:934.973333pt;}
.y71{bottom:937.853333pt;}
.y128{bottom:938.813333pt;}
.ya0{bottom:946.173333pt;}
.yde{bottom:947.133333pt;}
.y127{bottom:951.013333pt;}
.yf{bottom:951.973333pt;}
.y70{bottom:953.893333pt;}
.ydd{bottom:959.653333pt;}
.y9f{bottom:962.213333pt;}
.y126{bottom:963.493333pt;}
.y6f{bottom:969.893333pt;}
.ydc{bottom:971.813333pt;}
.y125{bottom:975.653333pt;}
.y9e{bottom:978.533333pt;}
.ydb{bottom:983.973333pt;}
.y6e{bottom:986.213333pt;}
.y124{bottom:987.813333pt;}
.ye{bottom:988.773333pt;}
.y9d{bottom:994.533333pt;}
.yda{bottom:996.453333pt;}
.y123{bottom:1000.293333pt;}
.y6d{bottom:1002.213333pt;}
.yd9{bottom:1008.613333pt;}
.y9c{bottom:1010.533333pt;}
.y80{bottom:1012.133333pt;}
.y122{bottom:1012.453333pt;}
.y6c{bottom:1018.213333pt;}
.yd8{bottom:1020.773333pt;}
.y121{bottom:1024.613333pt;}
.yd{bottom:1025.573333pt;}
.y9b{bottom:1026.853333pt;}
.yd7{bottom:1033.253333pt;}
.y6b{bottom:1034.533333pt;}
.y120{bottom:1037.093333pt;}
.y9a{bottom:1042.853333pt;}
.yd6{bottom:1045.413333pt;}
.y6a{bottom:1050.213333pt;}
.y69{bottom:1066.853333pt;}
.y2{bottom:1082.240000pt;}
.y1{bottom:1097.600000pt;}
.h11{height:8.985000pt;}
.h10{height:19.093125pt;}
.h5{height:32.133750pt;}
.ha{height:34.318750pt;}
.hc{height:37.063125pt;}
.h2{height:37.931250pt;}
.h9{height:39.472500pt;}
.h12{height:39.821250pt;}
.h8{height:41.543750pt;}
.hb{height:42.678750pt;}
.he{height:43.627500pt;}
.h6{height:44.160000pt;}
.h3{height:47.171250pt;}
.h4{height:48.960000pt;}
.hf{height:49.622500pt;}
.hd{height:93.219375pt;}
.h7{height:112.312500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:171.933333pt;}
.w3{width:216.413333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.600000pt;}
.x6{left:59.872000pt;}
.xd{left:62.432000pt;}
.x8{left:65.632000pt;}
.xa{left:70.112000pt;}
.xc{left:72.032000pt;}
.x18{left:73.951988pt;}
.x1a{left:77.471988pt;}
.x28{left:81.311988pt;}
.x14{left:84.831988pt;}
.x7{left:86.112000pt;}
.x27{left:90.911988pt;}
.x1d{left:112.351988pt;}
.x1c{left:129.023988pt;}
.x26{left:131.263988pt;}
.x2e{left:137.986655pt;}
.x25{left:242.653322pt;}
.x16{left:244.253322pt;}
.x9{left:276.613333pt;}
.x1{left:311.813333pt;}
.x15{left:369.759988pt;}
.x2{left:376.160000pt;}
.xb{left:380.640000pt;}
.x1b{left:382.879988pt;}
.x19{left:383.839988pt;}
.x17{left:384.799988pt;}
.x3{left:385.762667pt;}
.x13{left:396.959988pt;}
.x11{left:400.800000pt;}
.x10{left:406.560000pt;}
.x4{left:410.400000pt;}
.xf{left:416.160000pt;}
.x12{left:421.280000pt;}
.x29{left:425.439988pt;}
.x1f{left:428.026655pt;}
.x24{left:456.826655pt;}
.x2c{left:471.546655pt;}
.x2b{left:472.826655pt;}
.x22{left:473.786655pt;}
.x2d{left:477.626655pt;}
.x2a{left:502.586655pt;}
.xe{left:507.106667pt;}
.x23{left:508.386655pt;}
.x21{left:722.853322pt;}
.x1e{left:727.973322pt;}
.x20{left:728.933322pt;}
}




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