
    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_c34875a3c189c0a1cbc70bb6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_7901ea197995e4568f1618f3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2413b8e7d15b8370ff4c7c22.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_709d688709f678b6b745e1e2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_f5a54f4e3bae8ff58b66a79e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c397a87f9c4bc53f76f32907.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e14c461437e4b873c6ccfc7c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_33b2770457bfa6e3c03c9d1c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.704590;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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7385913014facfd8d2cc8dc7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.747559;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_170a77ebadd271976f27e2e4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.649414;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_cc02d1536af74abc8b9a43a8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.894510;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_31c08b146ee9ee43b4ce8595.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.649414;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_37ea80638b65ebf8006b54aa.woff2')format("woff");}.fff{font-family:fff;line-height:1.115234;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);}
.v3{vertical-align:-18.000000px;}
.v7{vertical-align:-7.200000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.600000px;}
.v6{vertical-align:7.200000px;}
.v1{vertical-align:14.400000px;}
.v2{vertical-align:25.260000px;}
.vb{vertical-align:28.980000px;}
.v5{vertical-align:36.000000px;}
.v8{vertical-align:39.600000px;}
.ve{vertical-align:61.260000px;}
.vc{vertical-align:68.400000px;}
.vd{vertical-align:72.000000px;}
.v9{vertical-align:75.600000px;}
.va{vertical-align:79.380000px;}
.ls1c{letter-spacing:-1.728000px;}
.ls6{letter-spacing:-1.584000px;}
.ls2b{letter-spacing:-1.440000px;}
.ls30{letter-spacing:-1.326000px;}
.ls7{letter-spacing:-1.224000px;}
.lsc{letter-spacing:-1.008000px;}
.ls5{letter-spacing:-0.468000px;}
.ls2e{letter-spacing:-0.453600px;}
.ls31{letter-spacing:-0.432000px;}
.ls32{letter-spacing:-0.365400px;}
.ls2f{letter-spacing:-0.282000px;}
.ls2c{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.187200px;}
.ls25{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.372000px;}
.ls1f{letter-spacing:0.374400px;}
.lsb{letter-spacing:0.432000px;}
.ls23{letter-spacing:0.492000px;}
.ls22{letter-spacing:0.552000px;}
.ls17{letter-spacing:0.612000px;}
.lse{letter-spacing:0.648000px;}
.ls8{letter-spacing:0.792000px;}
.ls21{letter-spacing:0.864000px;}
.ls18{letter-spacing:0.876000px;}
.ls0{letter-spacing:0.912000px;}
.ls26{letter-spacing:0.984000px;}
.ls9{letter-spacing:1.224000px;}
.ls1a{letter-spacing:1.236000px;}
.ls2a{letter-spacing:1.266000px;}
.ls1e{letter-spacing:1.284000px;}
.lsa{letter-spacing:1.296000px;}
.ls1b{letter-spacing:1.326000px;}
.ls24{letter-spacing:1.344000px;}
.lsd{letter-spacing:1.404000px;}
.ls19{letter-spacing:1.440000px;}
.ls29{letter-spacing:1.464000px;}
.ls12{letter-spacing:1.524000px;}
.ls2d{letter-spacing:1.584000px;}
.ls27{letter-spacing:1.644000px;}
.ls2{letter-spacing:1.800000px;}
.ls28{letter-spacing:3.540000px;}
.ls15{letter-spacing:3.600000px;}
.ls10{letter-spacing:11.508000px;}
.ls11{letter-spacing:37.296000px;}
.ls14{letter-spacing:44.784000px;}
.ls20{letter-spacing:126.122400px;}
.ls16{letter-spacing:129.158850px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws13{word-spacing:-22.743000px;}
.ws11{word-spacing:-22.653000px;}
.ws1e{word-spacing:-20.057700px;}
.ws20{word-spacing:-20.016000px;}
.ws1c{word-spacing:-19.584000px;}
.ws18{word-spacing:-19.382400px;}
.ws17{word-spacing:-19.008000px;}
.ws5{word-spacing:-18.792000px;}
.wsa{word-spacing:-18.432000px;}
.ws6{word-spacing:-18.000000px;}
.ws15{word-spacing:-17.640000px;}
.ws12{word-spacing:-17.424000px;}
.wsf{word-spacing:-17.280000px;}
.ws4{word-spacing:-16.776000px;}
.ws3{word-spacing:-16.416000px;}
.ws10{word-spacing:-16.272000px;}
.ws9{word-spacing:-15.840000px;}
.ws1b{word-spacing:-15.696000px;}
.ws1d{word-spacing:-14.191200px;}
.ws16{word-spacing:-14.112000px;}
.ws1{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.032000px;}
.wse{word-spacing:-11.964000px;}
.wsb{word-spacing:-11.088000px;}
.wsc{word-spacing:-10.296000px;}
.ws8{word-spacing:-0.072000px;}
.ws7{word-spacing:0.000000px;}
.ws19{word-spacing:2.520000px;}
.ws21{word-spacing:96.444000px;}
.ws1f{word-spacing:96.504000px;}
.wsd{word-spacing:135.859200px;}
.ws14{word-spacing:182.843700px;}
.ws1a{word-spacing:229.317600px;}
._c{margin-left:-7.560000px;}
._b{margin-left:-6.241200px;}
._a{margin-left:-4.414800px;}
._6{margin-left:-2.520000px;}
._1{margin-left:-1.512000px;}
._0{width:1.440000px;}
._3{width:2.676000px;}
._2{width:3.810000px;}
._f{width:5.238000px;}
._4{width:6.264000px;}
._5{width:7.416000px;}
._8{width:9.852000px;}
._7{width:11.424000px;}
._9{width:13.356000px;}
._10{width:14.616000px;}
._17{width:15.630150px;}
._16{width:16.794000px;}
._13{width:17.853600px;}
._24{width:20.376000px;}
._e{width:21.528000px;}
._14{width:23.412000px;}
._d{width:25.128000px;}
._1c{width:26.328000px;}
._11{width:28.368000px;}
._2e{width:29.664000px;}
._20{width:31.992000px;}
._12{width:33.264000px;}
._15{width:35.712000px;}
._1f{width:40.596000px;}
._1d{width:44.052000px;}
._1e{width:46.308000px;}
._22{width:90.360000px;}
._21{width:93.384000px;}
._23{width:97.344000px;}
._1a{width:122.724000px;}
._1b{width:124.368000px;}
._18{width:125.928000px;}
._19{width:133.656000px;}
._26{width:163.032000px;}
._27{width:165.312000px;}
._28{width:166.320000px;}
._25{width:169.632000px;}
._30{width:202.248000px;}
._31{width:206.136000px;}
._32{width:208.020000px;}
._2f{width:216.504000px;}
._2a{width:306.072000px;}
._2d{width:310.812000px;}
._29{width:313.776000px;}
._2c{width:314.976000px;}
._2b{width:316.584000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:25.200000px;}
.fs3{font-size:36.000000px;}
.fs6{font-size:39.600000px;}
.fs4{font-size:46.800000px;}
.fs8{font-size:50.400000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:61.200000px;}
.fs7{font-size:64.800000px;}
.fs1{font-size:72.000000px;}
.fsd{font-size:72.150000px;}
.fsa{font-size:79.200000px;}
.fsc{font-size:86.400000px;}
.fs9{font-size:97.350000px;}
.fsb{font-size:118.950000px;}
.y0{bottom:0.000000px;}
.ye4{bottom:16.875000px;}
.ydc{bottom:17.100000px;}
.y38{bottom:56.737500px;}
.yde{bottom:72.750000px;}
.y37{bottom:77.437500px;}
.yd7{bottom:82.095000px;}
.y33{bottom:90.037500px;}
.yff{bottom:98.175000px;}
.ydf{bottom:99.900000px;}
.yc9{bottom:101.775000px;}
.y32{bottom:110.775000px;}
.yd8{bottom:111.480000px;}
.y8b{bottom:111.675000px;}
.y120{bottom:115.275000px;}
.yfe{bottom:118.875000px;}
.y79{bottom:123.375000px;}
.yd5{bottom:124.275000px;}
.y5b{bottom:125.175000px;}
.y31{bottom:131.475000px;}
.yc8{bottom:132.375000px;}
.yfd{bottom:139.575000px;}
.ya9{bottom:141.375000px;}
.y7d{bottom:142.275000px;}
.y8a{bottom:143.175000px;}
.y11f{bottom:144.975000px;}
.y30{bottom:152.220000px;}
.y78{bottom:154.905000px;}
.ye3{bottom:155.055000px;}
.y5a{bottom:155.805000px;}
.y7c{bottom:162.105000px;}
.yc7{bottom:163.905000px;}
.y11e{bottom:165.720000px;}
.yfc{bottom:169.305000px;}
.y2f{bottom:172.920000px;}
.y89{bottom:173.805000px;}
.ye2{bottom:175.800000px;}
.y7b{bottom:178.305000px;}
.ydb{bottom:184.800000px;}
.y77{bottom:185.505000px;}
.yd4{bottom:186.420000px;}
.y59{bottom:187.305000px;}
.yfb{bottom:190.005000px;}
.y2e{bottom:193.620000px;}
.yc6{bottom:194.505000px;}
.y11d{bottom:195.405000px;}
.ye1{bottom:196.500000px;}
.ya8{bottom:203.550000px;}
.y7a{bottom:205.350000px;}
.yda{bottom:205.500000px;}
.y2d{bottom:214.350000px;}
.y11c{bottom:216.150000px;}
.y76{bottom:217.050000px;}
.ye0{bottom:217.200000px;}
.y58{bottom:217.950000px;}
.yfa{bottom:219.750000px;}
.yc5{bottom:226.050000px;}
.yd9{bottom:226.200000px;}
.y2c{bottom:235.050000px;}
.y88{bottom:235.950000px;}
.yf9{bottom:240.450000px;}
.y11b{bottom:245.850000px;}
.y75{bottom:247.650000px;}
.yd3{bottom:248.550000px;}
.y57{bottom:249.450000px;}
.yc4{bottom:256.680000px;}
.y87{bottom:257.595000px;}
.y2b{bottom:264.795000px;}
.ya7{bottom:265.695000px;}
.y11a{bottom:266.580000px;}
.yf8{bottom:270.180000px;}
.y86{bottom:278.295000px;}
.y74{bottom:279.195000px;}
.y56{bottom:280.080000px;}
.y2a{bottom:285.495000px;}
.yc3{bottom:288.195000px;}
.yf7{bottom:290.880000px;}
.y119{bottom:296.280000px;}
.ya6{bottom:297.180000px;}
.y73{bottom:309.825000px;}
.yd2{bottom:310.725000px;}
.y55{bottom:311.625000px;}
.y29{bottom:315.225000px;}
.y118{bottom:317.025000px;}
.yc2{bottom:319.725000px;}
.yf6{bottom:320.625000px;}
.ya5{bottom:327.825000px;}
.y85{bottom:340.425000px;}
.y72{bottom:341.325000px;}
.y54{bottom:342.225000px;}
.y28{bottom:344.925000px;}
.y117{bottom:346.725000px;}
.yc1{bottom:350.325000px;}
.ya4{bottom:359.370000px;}
.yf5{bottom:362.070000px;}
.y27{bottom:365.670000px;}
.y116{bottom:367.455000px;}
.y71{bottom:371.970000px;}
.yd1{bottom:372.870000px;}
.y53{bottom:373.755000px;}
.y84{bottom:374.655000px;}
.yc0{bottom:381.870000px;}
.y26{bottom:386.370000px;}
.y115{bottom:388.155000px;}
.ya3{bottom:389.955000px;}
.yf4{bottom:391.755000px;}
.y70{bottom:403.455000px;}
.y52{bottom:404.370000px;}
.y25{bottom:407.070000px;}
.y114{bottom:408.900000px;}
.yf3{bottom:412.500000px;}
.ybf{bottom:414.300000px;}
.ya2{bottom:421.500000px;}
.y24{bottom:427.800000px;}
.y6f{bottom:434.100000px;}
.yd0{bottom:435.000000px;}
.y51{bottom:435.900000px;}
.y83{bottom:437.700000px;}
.y113{bottom:438.600000px;}
.yf2{bottom:442.200000px;}
.ybe{bottom:444.900000px;}
.y23{bottom:448.500000px;}
.ya1{bottom:452.100000px;}
.y112{bottom:459.300000px;}
.yf1{bottom:462.945000px;}
.y6e{bottom:465.630000px;}
.y50{bottom:466.545000px;}
.y22{bottom:469.230000px;}
.ybd{bottom:476.445000px;}
.ya0{bottom:483.630000px;}
.y111{bottom:489.030000px;}
.y21{bottom:489.945000px;}
.yf0{bottom:492.630000px;}
.y6d{bottom:496.230000px;}
.ycf{bottom:497.130000px;}
.y4f{bottom:498.030000px;}
.y82{bottom:499.830000px;}
.ybc{bottom:507.945000px;}
.y110{bottom:509.730000px;}
.y20{bottom:510.630000px;}
.yef{bottom:513.375000px;}
.y9f{bottom:515.175000px;}
.y6c{bottom:527.775000px;}
.y4e{bottom:528.675000px;}
.y1f{bottom:531.375000px;}
.ybb{bottom:539.475000px;}
.yee{bottom:543.075000px;}
.y9e{bottom:546.675000px;}
.y1e{bottom:552.075000px;}
.y6b{bottom:558.375000px;}
.yce{bottom:559.275000px;}
.y4d{bottom:560.175000px;}
.y81{bottom:561.975000px;}
.yed{bottom:563.775000px;}
.yba{bottom:571.005000px;}
.y1d{bottom:572.805000px;}
.y9d{bottom:582.705000px;}
.yec{bottom:584.505000px;}
.y6a{bottom:589.905000px;}
.y4c{bottom:590.820000px;}
.y1c{bottom:593.505000px;}
.y9a{bottom:599.805000px;}
.yb9{bottom:602.505000px;}
.y10f{bottom:610.620000px;}
.y9c{bottom:612.405000px;}
.y80{bottom:613.305000px;}
.y1b{bottom:614.220000px;}
.y69{bottom:620.550000px;}
.ycd{bottom:621.450000px;}
.y4b{bottom:622.350000px;}
.y7f{bottom:629.550000px;}
.y9b{bottom:630.450000px;}
.yb8{bottom:634.050000px;}
.y1a{bottom:634.950000px;}
.y10e{bottom:640.350000px;}
.y68{bottom:652.050000px;}
.y4a{bottom:652.950000px;}
.yeb{bottom:655.650000px;}
.y7e{bottom:656.550000px;}
.y99{bottom:661.050000px;}
.y19{bottom:664.650000px;}
.yb7{bottom:665.550000px;}
.yea{bottom:676.380000px;}
.y10d{bottom:681.780000px;}
.y67{bottom:682.680000px;}
.ycc{bottom:683.595000px;}
.y49{bottom:684.480000px;}
.y98{bottom:692.580000px;}
.y18{bottom:695.280000px;}
.yb6{bottom:697.095000px;}
.ye9{bottom:706.080000px;}
.y10c{bottom:711.480000px;}
.y66{bottom:714.195000px;}
.y48{bottom:715.080000px;}
.y97{bottom:723.225000px;}
.y17{bottom:724.125000px;}
.ye8{bottom:726.825000px;}
.yb5{bottom:728.625000px;}
.y10b{bottom:732.225000px;}
.y65{bottom:744.825000px;}
.ycb{bottom:745.725000px;}
.y47{bottom:746.625000px;}
.ye7{bottom:747.525000px;}
.y16{bottom:754.725000px;}
.yb4{bottom:760.125000px;}
.y10a{bottom:761.925000px;}
.y15{bottom:776.355000px;}
.y46{bottom:777.255000px;}
.y109{bottom:782.655000px;}
.y96{bottom:785.355000px;}
.yb3{bottom:792.570000px;}
.ye6{bottom:797.955000px;}
.y14{bottom:806.070000px;}
.y64{bottom:806.955000px;}
.yca{bottom:807.870000px;}
.y45{bottom:808.755000px;}
.y108{bottom:812.355000px;}
.y95{bottom:816.855000px;}
.yb2{bottom:824.100000px;}
.y13{bottom:827.700000px;}
.y107{bottom:833.100000px;}
.y63{bottom:838.500000px;}
.y44{bottom:839.400000px;}
.y94{bottom:847.500000px;}
.ye5{bottom:848.400000px;}
.yd6{bottom:849.600000px;}
.yb1{bottom:854.700000px;}
.ydd{bottom:857.700000px;}
.y12{bottom:858.300000px;}
.y106{bottom:862.800000px;}
.y62{bottom:869.100000px;}
.y43{bottom:870.900000px;}
.y93{bottom:879.030000px;}
.y11{bottom:881.730000px;}
.y105{bottom:883.545000px;}
.yb0{bottom:886.245000px;}
.y61{bottom:900.630000px;}
.y42{bottom:901.545000px;}
.y10{bottom:902.445000px;}
.y92{bottom:909.630000px;}
.y104{bottom:913.245000px;}
.yaf{bottom:916.830000px;}
.yf{bottom:923.130000px;}
.y60{bottom:931.275000px;}
.y41{bottom:933.075000px;}
.y103{bottom:933.975000px;}
.y91{bottom:941.175000px;}
.ye{bottom:943.875000px;}
.yae{bottom:948.375000px;}
.y102{bottom:954.675000px;}
.y5f{bottom:962.775000px;}
.y40{bottom:963.675000px;}
.yd{bottom:964.575000px;}
.y90{bottom:972.675000px;}
.yad{bottom:983.505000px;}
.y3f{bottom:984.405000px;}
.y5e{bottom:993.420000px;}
.y8f{bottom:994.320000px;}
.yc{bottom:996.105000px;}
.yaa{bottom:998.820000px;}
.y101{bottom:1005.120000px;}
.yac{bottom:1010.505000px;}
.y3e{bottom:1014.105000px;}
.y8e{bottom:1015.005000px;}
.yb{bottom:1016.820000px;}
.y5d{bottom:1024.905000px;}
.y100{bottom:1025.820000px;}
.yab{bottom:1026.705000px;}
.y3d{bottom:1034.850000px;}
.ya{bottom:1037.550000px;}
.y8d{bottom:1042.950000px;}
.y8c{bottom:1051.950000px;}
.y3c{bottom:1055.550000px;}
.y9{bottom:1058.250000px;}
.y3b{bottom:1076.250000px;}
.y5c{bottom:1087.080000px;}
.y8{bottom:1088.880000px;}
.y3a{bottom:1096.995000px;}
.y7{bottom:1109.580000px;}
.y39{bottom:1117.695000px;}
.y6{bottom:1127.580000px;}
.y5{bottom:1135.725000px;}
.y4{bottom:1150.125000px;}
.y3{bottom:1165.425000px;}
.y36{bottom:1169.925000px;}
.y2{bottom:1183.425000px;}
.y35{bottom:1187.955000px;}
.y34{bottom:1196.070000px;}
.y1{bottom:1202.370000px;}
.h2{height:22.000781px;}
.hb{height:36.864844px;}
.h5{height:40.858594px;}
.h4{height:47.144531px;}
.hf{height:48.410156px;}
.h6{height:53.430469px;}
.hc{height:54.864844px;}
.hd{height:56.573438px;}
.h9{height:58.429688px;}
.h3{height:62.859375px;}
.h7{height:63.949219px;}
.he{height:64.451953px;}
.h8{height:64.546875px;}
.h1d{height:65.144531px;}
.h1e{height:65.280249px;}
.ha{height:67.215469px;}
.h14{height:71.613281px;}
.h10{height:79.980469px;}
.h16{height:87.978516px;}
.h11{height:98.787305px;}
.h13{height:100.546875px;}
.h1a{height:121.236562px;}
.h12{height:131.586328px;}
.h18{height:132.946875px;}
.h17{height:137.120259px;}
.h1b{height:141.240469px;}
.h19{height:171.516563px;}
.h15{height:191.120259px;}
.h1c{height:245.700000px;}
.h1f{height:246.600000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:296.100000px;}
.w3{width:321.300000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2b{left:49.380000px;}
.x31{left:53.325000px;}
.x2a{left:55.680000px;}
.x30{left:74.970000px;}
.x33{left:81.345000px;}
.x2d{left:93.450000px;}
.x2c{left:105.225000px;}
.x32{left:108.300000px;}
.x2f{left:117.000000px;}
.x29{left:122.355000px;}
.xd{left:127.949987px;}
.x27{left:140.400000px;}
.x7{left:141.449987px;}
.x6{left:145.949987px;}
.xa{left:154.049987px;}
.x9{left:157.649987px;}
.x28{left:164.850000px;}
.x13{left:170.279987px;}
.x26{left:172.979987px;}
.x1f{left:181.079987px;}
.x1a{left:197.279987px;}
.xc{left:245.069987px;}
.x20{left:283.799987px;}
.x18{left:287.399987px;}
.x25{left:298.199987px;}
.x22{left:302.699987px;}
.x8{left:316.244987px;}
.x2{left:324.329987px;}
.x15{left:326.129987px;}
.x5{left:340.544987px;}
.x1c{left:358.574987px;}
.x21{left:360.374987px;}
.x1b{left:371.174987px;}
.xb{left:407.219987px;}
.x4{left:412.619987px;}
.x3{left:418.949987px;}
.x1e{left:424.349987px;}
.x16{left:427.949987px;}
.x11{left:434.249987px;}
.x10{left:436.949987px;}
.x1d{left:449.549987px;}
.x1{left:468.494987px;}
.x24{left:476.579987px;}
.x19{left:479.279987px;}
.x2e{left:506.700000px;}
.xe{left:681.119987px;}
.x14{left:726.149987px;}
.x17{left:774.794987px;}
.x23{left:792.824987px;}
.x12{left:800.924987px;}
.xf{left:809.024987px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v7{vertical-align:-6.400000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.200000pt;}
.v6{vertical-align:6.400000pt;}
.v1{vertical-align:12.800000pt;}
.v2{vertical-align:22.453333pt;}
.vb{vertical-align:25.760000pt;}
.v5{vertical-align:32.000000pt;}
.v8{vertical-align:35.200000pt;}
.ve{vertical-align:54.453333pt;}
.vc{vertical-align:60.800000pt;}
.vd{vertical-align:64.000000pt;}
.v9{vertical-align:67.200000pt;}
.va{vertical-align:70.560000pt;}
.ls1c{letter-spacing:-1.536000pt;}
.ls6{letter-spacing:-1.408000pt;}
.ls2b{letter-spacing:-1.280000pt;}
.ls30{letter-spacing:-1.178667pt;}
.ls7{letter-spacing:-1.088000pt;}
.lsc{letter-spacing:-0.896000pt;}
.ls5{letter-spacing:-0.416000pt;}
.ls2e{letter-spacing:-0.403200pt;}
.ls31{letter-spacing:-0.384000pt;}
.ls32{letter-spacing:-0.324800pt;}
.ls2f{letter-spacing:-0.250667pt;}
.ls2c{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.166400pt;}
.ls25{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.330667pt;}
.ls1f{letter-spacing:0.332800pt;}
.lsb{letter-spacing:0.384000pt;}
.ls23{letter-spacing:0.437333pt;}
.ls22{letter-spacing:0.490667pt;}
.ls17{letter-spacing:0.544000pt;}
.lse{letter-spacing:0.576000pt;}
.ls8{letter-spacing:0.704000pt;}
.ls21{letter-spacing:0.768000pt;}
.ls18{letter-spacing:0.778667pt;}
.ls0{letter-spacing:0.810667pt;}
.ls26{letter-spacing:0.874667pt;}
.ls9{letter-spacing:1.088000pt;}
.ls1a{letter-spacing:1.098667pt;}
.ls2a{letter-spacing:1.125333pt;}
.ls1e{letter-spacing:1.141333pt;}
.lsa{letter-spacing:1.152000pt;}
.ls1b{letter-spacing:1.178667pt;}
.ls24{letter-spacing:1.194667pt;}
.lsd{letter-spacing:1.248000pt;}
.ls19{letter-spacing:1.280000pt;}
.ls29{letter-spacing:1.301333pt;}
.ls12{letter-spacing:1.354667pt;}
.ls2d{letter-spacing:1.408000pt;}
.ls27{letter-spacing:1.461333pt;}
.ls2{letter-spacing:1.600000pt;}
.ls28{letter-spacing:3.146667pt;}
.ls15{letter-spacing:3.200000pt;}
.ls10{letter-spacing:10.229333pt;}
.ls11{letter-spacing:33.152000pt;}
.ls14{letter-spacing:39.808000pt;}
.ls20{letter-spacing:112.108800pt;}
.ls16{letter-spacing:114.807867pt;}
.ws2{word-spacing:-64.000000pt;}
.ws13{word-spacing:-20.216000pt;}
.ws11{word-spacing:-20.136000pt;}
.ws1e{word-spacing:-17.829067pt;}
.ws20{word-spacing:-17.792000pt;}
.ws1c{word-spacing:-17.408000pt;}
.ws18{word-spacing:-17.228800pt;}
.ws17{word-spacing:-16.896000pt;}
.ws5{word-spacing:-16.704000pt;}
.wsa{word-spacing:-16.384000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.680000pt;}
.ws12{word-spacing:-15.488000pt;}
.wsf{word-spacing:-15.360000pt;}
.ws4{word-spacing:-14.912000pt;}
.ws3{word-spacing:-14.592000pt;}
.ws10{word-spacing:-14.464000pt;}
.ws9{word-spacing:-14.080000pt;}
.ws1b{word-spacing:-13.952000pt;}
.ws1d{word-spacing:-12.614400pt;}
.ws16{word-spacing:-12.544000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.584000pt;}
.wse{word-spacing:-10.634667pt;}
.wsb{word-spacing:-9.856000pt;}
.wsc{word-spacing:-9.152000pt;}
.ws8{word-spacing:-0.064000pt;}
.ws7{word-spacing:0.000000pt;}
.ws19{word-spacing:2.240000pt;}
.ws21{word-spacing:85.728000pt;}
.ws1f{word-spacing:85.781333pt;}
.wsd{word-spacing:120.763733pt;}
.ws14{word-spacing:162.527733pt;}
.ws1a{word-spacing:203.837867pt;}
._c{margin-left:-6.720000pt;}
._b{margin-left:-5.547733pt;}
._a{margin-left:-3.924267pt;}
._6{margin-left:-2.240000pt;}
._1{margin-left:-1.344000pt;}
._0{width:1.280000pt;}
._3{width:2.378667pt;}
._2{width:3.386667pt;}
._f{width:4.656000pt;}
._4{width:5.568000pt;}
._5{width:6.592000pt;}
._8{width:8.757333pt;}
._7{width:10.154667pt;}
._9{width:11.872000pt;}
._10{width:12.992000pt;}
._17{width:13.893467pt;}
._16{width:14.928000pt;}
._13{width:15.869867pt;}
._24{width:18.112000pt;}
._e{width:19.136000pt;}
._14{width:20.810667pt;}
._d{width:22.336000pt;}
._1c{width:23.402667pt;}
._11{width:25.216000pt;}
._2e{width:26.368000pt;}
._20{width:28.437333pt;}
._12{width:29.568000pt;}
._15{width:31.744000pt;}
._1f{width:36.085333pt;}
._1d{width:39.157333pt;}
._1e{width:41.162667pt;}
._22{width:80.320000pt;}
._21{width:83.008000pt;}
._23{width:86.528000pt;}
._1a{width:109.088000pt;}
._1b{width:110.549333pt;}
._18{width:111.936000pt;}
._19{width:118.805333pt;}
._26{width:144.917333pt;}
._27{width:146.944000pt;}
._28{width:147.840000pt;}
._25{width:150.784000pt;}
._30{width:179.776000pt;}
._31{width:183.232000pt;}
._32{width:184.906667pt;}
._2f{width:192.448000pt;}
._2a{width:272.064000pt;}
._2d{width:276.277333pt;}
._29{width:278.912000pt;}
._2c{width:279.978667pt;}
._2b{width:281.408000pt;}
.fs0{font-size:22.400000pt;}
.fs3{font-size:32.000000pt;}
.fs6{font-size:35.200000pt;}
.fs4{font-size:41.600000pt;}
.fs8{font-size:44.800000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:54.400000pt;}
.fs7{font-size:57.600000pt;}
.fs1{font-size:64.000000pt;}
.fsd{font-size:64.133333pt;}
.fsa{font-size:70.400000pt;}
.fsc{font-size:76.800000pt;}
.fs9{font-size:86.533333pt;}
.fsb{font-size:105.733333pt;}
.y0{bottom:0.000000pt;}
.ye4{bottom:15.000000pt;}
.ydc{bottom:15.200000pt;}
.y38{bottom:50.433333pt;}
.yde{bottom:64.666667pt;}
.y37{bottom:68.833333pt;}
.yd7{bottom:72.973333pt;}
.y33{bottom:80.033333pt;}
.yff{bottom:87.266667pt;}
.ydf{bottom:88.800000pt;}
.yc9{bottom:90.466667pt;}
.y32{bottom:98.466667pt;}
.yd8{bottom:99.093333pt;}
.y8b{bottom:99.266667pt;}
.y120{bottom:102.466667pt;}
.yfe{bottom:105.666667pt;}
.y79{bottom:109.666667pt;}
.yd5{bottom:110.466667pt;}
.y5b{bottom:111.266667pt;}
.y31{bottom:116.866667pt;}
.yc8{bottom:117.666667pt;}
.yfd{bottom:124.066667pt;}
.ya9{bottom:125.666667pt;}
.y7d{bottom:126.466667pt;}
.y8a{bottom:127.266667pt;}
.y11f{bottom:128.866667pt;}
.y30{bottom:135.306667pt;}
.y78{bottom:137.693333pt;}
.ye3{bottom:137.826667pt;}
.y5a{bottom:138.493333pt;}
.y7c{bottom:144.093333pt;}
.yc7{bottom:145.693333pt;}
.y11e{bottom:147.306667pt;}
.yfc{bottom:150.493333pt;}
.y2f{bottom:153.706667pt;}
.y89{bottom:154.493333pt;}
.ye2{bottom:156.266667pt;}
.y7b{bottom:158.493333pt;}
.ydb{bottom:164.266667pt;}
.y77{bottom:164.893333pt;}
.yd4{bottom:165.706667pt;}
.y59{bottom:166.493333pt;}
.yfb{bottom:168.893333pt;}
.y2e{bottom:172.106667pt;}
.yc6{bottom:172.893333pt;}
.y11d{bottom:173.693333pt;}
.ye1{bottom:174.666667pt;}
.ya8{bottom:180.933333pt;}
.y7a{bottom:182.533333pt;}
.yda{bottom:182.666667pt;}
.y2d{bottom:190.533333pt;}
.y11c{bottom:192.133333pt;}
.y76{bottom:192.933333pt;}
.ye0{bottom:193.066667pt;}
.y58{bottom:193.733333pt;}
.yfa{bottom:195.333333pt;}
.yc5{bottom:200.933333pt;}
.yd9{bottom:201.066667pt;}
.y2c{bottom:208.933333pt;}
.y88{bottom:209.733333pt;}
.yf9{bottom:213.733333pt;}
.y11b{bottom:218.533333pt;}
.y75{bottom:220.133333pt;}
.yd3{bottom:220.933333pt;}
.y57{bottom:221.733333pt;}
.yc4{bottom:228.160000pt;}
.y87{bottom:228.973333pt;}
.y2b{bottom:235.373333pt;}
.ya7{bottom:236.173333pt;}
.y11a{bottom:236.960000pt;}
.yf8{bottom:240.160000pt;}
.y86{bottom:247.373333pt;}
.y74{bottom:248.173333pt;}
.y56{bottom:248.960000pt;}
.y2a{bottom:253.773333pt;}
.yc3{bottom:256.173333pt;}
.yf7{bottom:258.560000pt;}
.y119{bottom:263.360000pt;}
.ya6{bottom:264.160000pt;}
.y73{bottom:275.400000pt;}
.yd2{bottom:276.200000pt;}
.y55{bottom:277.000000pt;}
.y29{bottom:280.200000pt;}
.y118{bottom:281.800000pt;}
.yc2{bottom:284.200000pt;}
.yf6{bottom:285.000000pt;}
.ya5{bottom:291.400000pt;}
.y85{bottom:302.600000pt;}
.y72{bottom:303.400000pt;}
.y54{bottom:304.200000pt;}
.y28{bottom:306.600000pt;}
.y117{bottom:308.200000pt;}
.yc1{bottom:311.400000pt;}
.ya4{bottom:319.440000pt;}
.yf5{bottom:321.840000pt;}
.y27{bottom:325.040000pt;}
.y116{bottom:326.626667pt;}
.y71{bottom:330.640000pt;}
.yd1{bottom:331.440000pt;}
.y53{bottom:332.226667pt;}
.y84{bottom:333.026667pt;}
.yc0{bottom:339.440000pt;}
.y26{bottom:343.440000pt;}
.y115{bottom:345.026667pt;}
.ya3{bottom:346.626667pt;}
.yf4{bottom:348.226667pt;}
.y70{bottom:358.626667pt;}
.y52{bottom:359.440000pt;}
.y25{bottom:361.840000pt;}
.y114{bottom:363.466667pt;}
.yf3{bottom:366.666667pt;}
.ybf{bottom:368.266667pt;}
.ya2{bottom:374.666667pt;}
.y24{bottom:380.266667pt;}
.y6f{bottom:385.866667pt;}
.yd0{bottom:386.666667pt;}
.y51{bottom:387.466667pt;}
.y83{bottom:389.066667pt;}
.y113{bottom:389.866667pt;}
.yf2{bottom:393.066667pt;}
.ybe{bottom:395.466667pt;}
.y23{bottom:398.666667pt;}
.ya1{bottom:401.866667pt;}
.y112{bottom:408.266667pt;}
.yf1{bottom:411.506667pt;}
.y6e{bottom:413.893333pt;}
.y50{bottom:414.706667pt;}
.y22{bottom:417.093333pt;}
.ybd{bottom:423.506667pt;}
.ya0{bottom:429.893333pt;}
.y111{bottom:434.693333pt;}
.y21{bottom:435.506667pt;}
.yf0{bottom:437.893333pt;}
.y6d{bottom:441.093333pt;}
.ycf{bottom:441.893333pt;}
.y4f{bottom:442.693333pt;}
.y82{bottom:444.293333pt;}
.ybc{bottom:451.506667pt;}
.y110{bottom:453.093333pt;}
.y20{bottom:453.893333pt;}
.yef{bottom:456.333333pt;}
.y9f{bottom:457.933333pt;}
.y6c{bottom:469.133333pt;}
.y4e{bottom:469.933333pt;}
.y1f{bottom:472.333333pt;}
.ybb{bottom:479.533333pt;}
.yee{bottom:482.733333pt;}
.y9e{bottom:485.933333pt;}
.y1e{bottom:490.733333pt;}
.y6b{bottom:496.333333pt;}
.yce{bottom:497.133333pt;}
.y4d{bottom:497.933333pt;}
.y81{bottom:499.533333pt;}
.yed{bottom:501.133333pt;}
.yba{bottom:507.560000pt;}
.y1d{bottom:509.160000pt;}
.y9d{bottom:517.960000pt;}
.yec{bottom:519.560000pt;}
.y6a{bottom:524.360000pt;}
.y4c{bottom:525.173333pt;}
.y1c{bottom:527.560000pt;}
.y9a{bottom:533.160000pt;}
.yb9{bottom:535.560000pt;}
.y10f{bottom:542.773333pt;}
.y9c{bottom:544.360000pt;}
.y80{bottom:545.160000pt;}
.y1b{bottom:545.973333pt;}
.y69{bottom:551.600000pt;}
.ycd{bottom:552.400000pt;}
.y4b{bottom:553.200000pt;}
.y7f{bottom:559.600000pt;}
.y9b{bottom:560.400000pt;}
.yb8{bottom:563.600000pt;}
.y1a{bottom:564.400000pt;}
.y10e{bottom:569.200000pt;}
.y68{bottom:579.600000pt;}
.y4a{bottom:580.400000pt;}
.yeb{bottom:582.800000pt;}
.y7e{bottom:583.600000pt;}
.y99{bottom:587.600000pt;}
.y19{bottom:590.800000pt;}
.yb7{bottom:591.600000pt;}
.yea{bottom:601.226667pt;}
.y10d{bottom:606.026667pt;}
.y67{bottom:606.826667pt;}
.ycc{bottom:607.640000pt;}
.y49{bottom:608.426667pt;}
.y98{bottom:615.626667pt;}
.y18{bottom:618.026667pt;}
.yb6{bottom:619.640000pt;}
.ye9{bottom:627.626667pt;}
.y10c{bottom:632.426667pt;}
.y66{bottom:634.840000pt;}
.y48{bottom:635.626667pt;}
.y97{bottom:642.866667pt;}
.y17{bottom:643.666667pt;}
.ye8{bottom:646.066667pt;}
.yb5{bottom:647.666667pt;}
.y10b{bottom:650.866667pt;}
.y65{bottom:662.066667pt;}
.ycb{bottom:662.866667pt;}
.y47{bottom:663.666667pt;}
.ye7{bottom:664.466667pt;}
.y16{bottom:670.866667pt;}
.yb4{bottom:675.666667pt;}
.y10a{bottom:677.266667pt;}
.y15{bottom:690.093333pt;}
.y46{bottom:690.893333pt;}
.y109{bottom:695.693333pt;}
.y96{bottom:698.093333pt;}
.yb3{bottom:704.506667pt;}
.ye6{bottom:709.293333pt;}
.y14{bottom:716.506667pt;}
.y64{bottom:717.293333pt;}
.yca{bottom:718.106667pt;}
.y45{bottom:718.893333pt;}
.y108{bottom:722.093333pt;}
.y95{bottom:726.093333pt;}
.yb2{bottom:732.533333pt;}
.y13{bottom:735.733333pt;}
.y107{bottom:740.533333pt;}
.y63{bottom:745.333333pt;}
.y44{bottom:746.133333pt;}
.y94{bottom:753.333333pt;}
.ye5{bottom:754.133333pt;}
.yd6{bottom:755.200000pt;}
.yb1{bottom:759.733333pt;}
.ydd{bottom:762.400000pt;}
.y12{bottom:762.933333pt;}
.y106{bottom:766.933333pt;}
.y62{bottom:772.533333pt;}
.y43{bottom:774.133333pt;}
.y93{bottom:781.360000pt;}
.y11{bottom:783.760000pt;}
.y105{bottom:785.373333pt;}
.yb0{bottom:787.773333pt;}
.y61{bottom:800.560000pt;}
.y42{bottom:801.373333pt;}
.y10{bottom:802.173333pt;}
.y92{bottom:808.560000pt;}
.y104{bottom:811.773333pt;}
.yaf{bottom:814.960000pt;}
.yf{bottom:820.560000pt;}
.y60{bottom:827.800000pt;}
.y41{bottom:829.400000pt;}
.y103{bottom:830.200000pt;}
.y91{bottom:836.600000pt;}
.ye{bottom:839.000000pt;}
.yae{bottom:843.000000pt;}
.y102{bottom:848.600000pt;}
.y5f{bottom:855.800000pt;}
.y40{bottom:856.600000pt;}
.yd{bottom:857.400000pt;}
.y90{bottom:864.600000pt;}
.yad{bottom:874.226667pt;}
.y3f{bottom:875.026667pt;}
.y5e{bottom:883.040000pt;}
.y8f{bottom:883.840000pt;}
.yc{bottom:885.426667pt;}
.yaa{bottom:887.840000pt;}
.y101{bottom:893.440000pt;}
.yac{bottom:898.226667pt;}
.y3e{bottom:901.426667pt;}
.y8e{bottom:902.226667pt;}
.yb{bottom:903.840000pt;}
.y5d{bottom:911.026667pt;}
.y100{bottom:911.840000pt;}
.yab{bottom:912.626667pt;}
.y3d{bottom:919.866667pt;}
.ya{bottom:922.266667pt;}
.y8d{bottom:927.066667pt;}
.y8c{bottom:935.066667pt;}
.y3c{bottom:938.266667pt;}
.y9{bottom:940.666667pt;}
.y3b{bottom:956.666667pt;}
.y5c{bottom:966.293333pt;}
.y8{bottom:967.893333pt;}
.y3a{bottom:975.106667pt;}
.y7{bottom:986.293333pt;}
.y39{bottom:993.506667pt;}
.y6{bottom:1002.293333pt;}
.y5{bottom:1009.533333pt;}
.y4{bottom:1022.333333pt;}
.y3{bottom:1035.933333pt;}
.y36{bottom:1039.933333pt;}
.y2{bottom:1051.933333pt;}
.y35{bottom:1055.960000pt;}
.y34{bottom:1063.173333pt;}
.y1{bottom:1068.773333pt;}
.h2{height:19.556250pt;}
.hb{height:32.768750pt;}
.h5{height:36.318750pt;}
.h4{height:41.906250pt;}
.hf{height:43.031250pt;}
.h6{height:47.493750pt;}
.hc{height:48.768750pt;}
.hd{height:50.287500pt;}
.h9{height:51.937500pt;}
.h3{height:55.875000pt;}
.h7{height:56.843750pt;}
.he{height:57.290625pt;}
.h8{height:57.375000pt;}
.h1d{height:57.906250pt;}
.h1e{height:58.026888pt;}
.ha{height:59.747083pt;}
.h14{height:63.656250pt;}
.h10{height:71.093750pt;}
.h16{height:78.203125pt;}
.h11{height:87.810938pt;}
.h13{height:89.375000pt;}
.h1a{height:107.765833pt;}
.h12{height:116.965625pt;}
.h18{height:118.175000pt;}
.h17{height:121.884674pt;}
.h1b{height:125.547083pt;}
.h19{height:152.459167pt;}
.h15{height:169.884674pt;}
.h1c{height:218.400000pt;}
.h1f{height:219.200000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:263.200000pt;}
.w3{width:285.600000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2b{left:43.893333pt;}
.x31{left:47.400000pt;}
.x2a{left:49.493333pt;}
.x30{left:66.640000pt;}
.x33{left:72.306667pt;}
.x2d{left:83.066667pt;}
.x2c{left:93.533333pt;}
.x32{left:96.266667pt;}
.x2f{left:104.000000pt;}
.x29{left:108.760000pt;}
.xd{left:113.733322pt;}
.x27{left:124.800000pt;}
.x7{left:125.733322pt;}
.x6{left:129.733322pt;}
.xa{left:136.933322pt;}
.x9{left:140.133322pt;}
.x28{left:146.533333pt;}
.x13{left:151.359988pt;}
.x26{left:153.759988pt;}
.x1f{left:160.959988pt;}
.x1a{left:175.359988pt;}
.xc{left:217.839988pt;}
.x20{left:252.266655pt;}
.x18{left:255.466655pt;}
.x25{left:265.066655pt;}
.x22{left:269.066655pt;}
.x8{left:281.106655pt;}
.x2{left:288.293322pt;}
.x15{left:289.893322pt;}
.x5{left:302.706655pt;}
.x1c{left:318.733322pt;}
.x21{left:320.333322pt;}
.x1b{left:329.933322pt;}
.xb{left:361.973322pt;}
.x4{left:366.773322pt;}
.x3{left:372.399988pt;}
.x1e{left:377.199988pt;}
.x16{left:380.399988pt;}
.x11{left:385.999988pt;}
.x10{left:388.399988pt;}
.x1d{left:399.599988pt;}
.x1{left:416.439988pt;}
.x24{left:423.626655pt;}
.x19{left:426.026655pt;}
.x2e{left:450.400000pt;}
.xe{left:605.439988pt;}
.x14{left:645.466655pt;}
.x17{left:688.706655pt;}
.x23{left:704.733322pt;}
.x12{left:711.933322pt;}
.xf{left:719.133322pt;}
}




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