
    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_403821455df99b153d13291a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_c17722fba531750340d4c187.woff')format("woff");}.ff2{font-family:ff2;line-height:0.880859;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_f88c0d5c54124c0952648a57.woff')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_19663b8a1d64940cb7e35d63.woff')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_e91134d66454a14cc8e2b8f5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_130301694ab792f9947e2b7d.woff')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_10c05e0343bdadaabdfa1377.woff')format("woff");}.ff8{font-family:ff8;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_51d7697c73b3f292a1678398.woff')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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_79681ef8ff6ebebc9942b324.woff')format("woff");}.ffa{font-family:ffa;line-height:1.123047;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);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.324600px;}
.ls7{letter-spacing:-0.180000px;}
.ls2{letter-spacing:-0.109200px;}
.lsc{letter-spacing:-0.028080px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.028080px;}
.lsa{letter-spacing:0.092880px;}
.lse{letter-spacing:0.125280px;}
.ls5{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.256320px;}
.lsf{letter-spacing:0.258480px;}
.ls3{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.402480px;}
.lsd{letter-spacing:0.532080px;}
.ls4{letter-spacing:0.540000px;}
.ls6{letter-spacing:55.386720px;}
.ls0{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sce{text-shadow:-0.015em 0 rgb(49,210,247),0 0.015em rgb(49,210,247),0.015em 0 rgb(49,210,247),0 -0.015em  rgb(49,210,247);}
.scd{text-shadow:-0.015em 0 rgb(240,58,23),0 0.015em rgb(240,58,23),0.015em 0 rgb(240,58,23),0 -0.015em  rgb(240,58,23);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc3{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.scf{text-shadow:-0.015em 0 rgb(0,120,215),0 0.015em rgb(0,120,215),0.015em 0 rgb(0,120,215),0 -0.015em  rgb(0,120,215);}
.sc4{text-shadow:-0.015em 0 rgb(204,204,204),0 0.015em rgb(204,204,204),0.015em 0 rgb(204,204,204),0 -0.015em  rgb(204,204,204);}
.sc7{text-shadow:-0.015em 0 rgb(117,117,117),0 0.015em rgb(117,117,117),0.015em 0 rgb(117,117,117),0 -0.015em  rgb(117,117,117);}
.sc8{text-shadow:-0.015em 0 rgb(229,229,229),0 0.015em rgb(229,229,229),0.015em 0 rgb(229,229,229),0 -0.015em  rgb(229,229,229);}
.sc5{text-shadow:-0.015em 0 rgb(242,242,242),0 0.015em rgb(242,242,242),0.015em 0 rgb(242,242,242),0 -0.015em  rgb(242,242,242);}
.sc2{text-shadow:-0.015em 0 rgb(22,198,12),0 0.015em rgb(22,198,12),0.015em 0 rgb(22,198,12),0 -0.015em  rgb(22,198,12);}
.sca{text-shadow:-0.015em 0 rgb(160,174,178),0 0.015em rgb(160,174,178),0.015em 0 rgb(160,174,178),0 -0.015em  rgb(160,174,178);}
.scb{text-shadow:-0.015em 0 rgb(74,84,89),0 0.015em rgb(74,84,89),0.015em 0 rgb(74,84,89),0 -0.015em  rgb(74,84,89);}
.scc{text-shadow:-0.015em 0 rgb(186,200,204),0 0.015em rgb(186,200,204),0.015em 0 rgb(186,200,204),0 -0.015em  rgb(186,200,204);}
.sc6{text-shadow:-0.015em 0 rgb(105,234,255),0 0.015em rgb(105,234,255),0.015em 0 rgb(105,234,255),0 -0.015em  rgb(105,234,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc9{text-shadow:-0.015em 0 rgb(105,121,126),0 0.015em rgb(105,121,126),0.015em 0 rgb(105,121,126),0 -0.015em  rgb(105,121,126);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sce{-webkit-text-stroke:0.015em rgb(49,210,247);text-shadow:none;}
.scd{-webkit-text-stroke:0.015em rgb(240,58,23);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.scf{-webkit-text-stroke:0.015em rgb(0,120,215);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(204,204,204);text-shadow:none;}
.sc7{-webkit-text-stroke:0.015em rgb(117,117,117);text-shadow:none;}
.sc8{-webkit-text-stroke:0.015em rgb(229,229,229);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(242,242,242);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(22,198,12);text-shadow:none;}
.sca{-webkit-text-stroke:0.015em rgb(160,174,178);text-shadow:none;}
.scb{-webkit-text-stroke:0.015em rgb(74,84,89);text-shadow:none;}
.scc{-webkit-text-stroke:0.015em rgb(186,200,204);text-shadow:none;}
.sc6{-webkit-text-stroke:0.015em rgb(105,234,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc9{-webkit-text-stroke:0.015em rgb(105,121,126);text-shadow:none;}
}
.ws6{word-spacing:-115.661520px;}
.ws3{word-spacing:-59.760000px;}
.ws1{word-spacing:-41.940000px;}
.ws0{word-spacing:-24.331344px;}
.ws5{word-spacing:-21.060000px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:0.000000px;}
._13{margin-left:-115.661520px;}
._14{margin-left:-112.207680px;}
._15{margin-left:-104.012880px;}
._18{margin-left:-52.818480px;}
._16{margin-left:-22.613280px;}
._17{margin-left:-12.972960px;}
._12{margin-left:-2.611440px;}
._1{margin-left:-1.516320px;}
._0{width:1.560960px;}
._2{width:2.562240px;}
._f{width:3.993840px;}
._8{width:5.045760px;}
._7{width:6.832080px;}
._b{width:8.424000px;}
._5{width:11.119680px;}
._4{width:14.152320px;}
._3{width:15.500160px;}
._e{width:16.848000px;}
._6{width:20.049120px;}
._c{width:26.872560px;}
._d{width:27.967680px;}
._9{width:31.084560px;}
._a{width:32.263920px;}
._1a{width:39.873600px;}
._19{width:53.155440px;}
._10{width:68.234400px;}
._11{width:69.666480px;}
._1b{width:843.240000px;}
.fc13{color:rgb(49,210,247);}
.fc12{color:rgb(240,58,23);}
.fc11{color:rgb(186,200,204);}
.fc10{color:rgb(74,84,89);}
.fcd{color:rgb(229,229,229);}
.fce{color:rgb(105,121,126);}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc7{color:rgb(255,200,61);}
.fc14{color:rgb(0,120,215);}
.fc9{color:rgb(204,204,204);}
.fcc{color:rgb(117,117,117);}
.fc2{color:transparent;}
.fcf{color:rgb(160,174,178);}
.fc3{color:rgb(91,155,213);}
.fc4{color:rgb(31,77,120);}
.fca{color:rgb(242,242,242);}
.fc5{color:rgb(22,198,12);}
.fc6{color:rgb(142,86,46);}
.fcb{color:rgb(105,234,255);}
.fc8{color:rgb(247,137,74);}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:108.144000px;}
.fs2{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:0.035981px;}
.y52{bottom:4.500000px;}
.y55{bottom:4.680000px;}
.yaa{bottom:6.300000px;}
.ya0{bottom:6.480000px;}
.y6{bottom:6.660000px;}
.y4{bottom:7.056000px;}
.y8{bottom:11.700000px;}
.ya6{bottom:19.440000px;}
.y136{bottom:19.485000px;}
.ya2{bottom:19.620000px;}
.y3{bottom:21.960000px;}
.y7{bottom:23.796000px;}
.y139{bottom:32.394000px;}
.ya5{bottom:32.400000px;}
.ya9{bottom:32.445000px;}
.ya3{bottom:32.580000px;}
.y13a{bottom:93.096000px;}
.y5f{bottom:103.896000px;}
.y85{bottom:104.796000px;}
.y15c{bottom:107.856000px;}
.yd8{bottom:108.216000px;}
.y33{bottom:108.396000px;}
.y117{bottom:111.816000px;}
.yae{bottom:115.416000px;}
.yf8{bottom:119.196000px;}
.y138{bottom:123.696000px;}
.y5e{bottom:128.016000px;}
.y84{bottom:128.916000px;}
.y15b{bottom:132.156000px;}
.yd7{bottom:132.336000px;}
.y32{bottom:132.516000px;}
.y116{bottom:136.656000px;}
.yad{bottom:142.416000px;}
.yf7{bottom:143.316000px;}
.y5d{bottom:152.310000px;}
.y83{bottom:153.750000px;}
.y31{bottom:156.630000px;}
.yd6{bottom:158.430000px;}
.y15a{bottom:159.150000px;}
.y115{bottom:163.830000px;}
.yf6{bottom:167.610000px;}
.yac{bottom:168.510000px;}
.y5c{bottom:176.430000px;}
.y137{bottom:180.210000px;}
.y30{bottom:180.750000px;}
.y82{bottom:180.930000px;}
.y159{bottom:183.810000px;}
.yd5{bottom:185.610000px;}
.y114{bottom:187.950000px;}
.yf5{bottom:194.610000px;}
.y5b{bottom:200.550000px;}
.y2f{bottom:204.870000px;}
.y81{bottom:205.050000px;}
.yd4{bottom:210.090000px;}
.y113{bottom:212.070000px;}
.y158{bottom:212.430000px;}
.yf4{bottom:219.270000px;}
.y5a{bottom:224.670000px;}
.yab{bottom:225.210000px;}
.y2e{bottom:229.170000px;}
.y157{bottom:236.550000px;}
.y112{bottom:236.910000px;}
.yd3{bottom:238.890000px;}
.yf3{bottom:247.890000px;}
.y59{bottom:248.790000px;}
.y2d{bottom:253.290000px;}
.y80{bottom:254.190000px;}
.ya8{bottom:255.810000px;}
.y156{bottom:260.670000px;}
.yd2{bottom:264.810000px;}
.y111{bottom:267.150000px;}
.y135{bottom:267.510000px;}
.y58{bottom:271.830000px;}
.yf2{bottom:272.010000px;}
.y2c{bottom:277.410000px;}
.y7f{bottom:281.370000px;}
.y155{bottom:287.895000px;}
.yd1{bottom:290.955000px;}
.y110{bottom:291.855000px;}
.yf1{bottom:296.175000px;}
.y57{bottom:300.495000px;}
.y2b{bottom:301.575000px;}
.y7e{bottom:305.535000px;}
.ya7{bottom:312.375000px;}
.yd0{bottom:317.055000px;}
.yf0{bottom:320.295000px;}
.y10f{bottom:320.475000px;}
.y134{bottom:324.075000px;}
.y2a{bottom:325.695000px;}
.y56{bottom:329.115000px;}
.y7d{bottom:330.375000px;}
.y154{bottom:341.175000px;}
.ya4{bottom:342.975000px;}
.ycf{bottom:343.155000px;}
.yef{bottom:344.595000px;}
.y29{bottom:349.815000px;}
.y7c{bottom:357.555000px;}
.y54{bottom:357.735000px;}
.y133{bottom:360.975000px;}
.y153{bottom:365.295000px;}
.yee{bottom:368.715000px;}
.yce{bottom:370.155000px;}
.y28{bottom:373.935000px;}
.y7b{bottom:381.675000px;}
.y132{bottom:385.635000px;}
.y53{bottom:386.535000px;}
.y152{bottom:389.415000px;}
.yed{bottom:392.835000px;}
.ycd{bottom:394.815000px;}
.y27{bottom:398.235000px;}
.ya1{bottom:399.495000px;}
.y7a{bottom:405.975000px;}
.y151{bottom:413.535000px;}
.y51{bottom:415.155000px;}
.y131{bottom:416.235000px;}
.yec{bottom:416.955000px;}
.y10e{bottom:417.135000px;}
.y26{bottom:422.355000px;}
.ycc{bottom:423.435000px;}
.y79{bottom:430.095000px;}
.y150{bottom:437.655000px;}
.y130{bottom:440.355000px;}
.yeb{bottom:441.075000px;}
.y10d{bottom:444.135000px;}
.y25{bottom:446.475000px;}
.y50{bottom:447.195000px;}
.ycb{bottom:447.555000px;}
.y78{bottom:454.935000px;}
.y9f{bottom:456.195000px;}
.y14f{bottom:461.775000px;}
.y12f{bottom:464.475000px;}
.yea{bottom:465.195000px;}
.y10c{bottom:468.795000px;}
.y24{bottom:470.595000px;}
.y4f{bottom:471.315000px;}
.yca{bottom:471.675000px;}
.y77{bottom:482.115000px;}
.y14e{bottom:486.075000px;}
.y12e{bottom:488.595000px;}
.ye9{bottom:489.495000px;}
.y9e{bottom:493.095000px;}
.y23{bottom:494.715000px;}
.y4e{bottom:495.435000px;}
.yc9{bottom:495.975000px;}
.y10b{bottom:499.395000px;}
.y76{bottom:506.235000px;}
.y14d{bottom:510.195000px;}
.y12d{bottom:512.895000px;}
.ye8{bottom:513.615000px;}
.y9d{bottom:517.755000px;}
.y22{bottom:518.835000px;}
.y4d{bottom:519.555000px;}
.yc8{bottom:522.975000px;}
.y10a{bottom:525.315000px;}
.y75{bottom:530.355000px;}
.y14c{bottom:534.315000px;}
.y12c{bottom:537.015000px;}
.ye7{bottom:537.735000px;}
.y21{bottom:543.135000px;}
.y4c{bottom:543.675000px;}
.y9c{bottom:546.375000px;}
.yc7{bottom:547.635000px;}
.y109{bottom:550.155000px;}
.y74{bottom:554.475000px;}
.y14b{bottom:558.435000px;}
.ye6{bottom:561.855000px;}
.y12b{bottom:564.015000px;}
.y20{bottom:567.285000px;}
.y4b{bottom:568.005000px;}
.y9b{bottom:570.525000px;}
.y108{bottom:574.845000px;}
.yc6{bottom:576.285000px;}
.y73{bottom:579.525000px;}
.y14a{bottom:582.585000px;}
.ye5{bottom:586.005000px;}
.y12a{bottom:588.705000px;}
.y1f{bottom:591.405000px;}
.y4a{bottom:592.125000px;}
.y9a{bottom:594.645000px;}
.yc5{bottom:600.405000px;}
.y107{bottom:605.445000px;}
.y72{bottom:608.505000px;}
.y149{bottom:609.765000px;}
.ye4{bottom:613.185000px;}
.y1e{bottom:615.525000px;}
.y49{bottom:616.245000px;}
.y129{bottom:617.325000px;}
.y99{bottom:618.765000px;}
.yc4{bottom:624.525000px;}
.y71{bottom:630.105000px;}
.y106{bottom:631.545000px;}
.y148{bottom:634.245000px;}
.ye3{bottom:637.665000px;}
.y1d{bottom:639.645000px;}
.y48{bottom:640.365000px;}
.y128{bottom:642.165000px;}
.y98{bottom:643.065000px;}
.yc3{bottom:648.645000px;}
.y105{bottom:657.645000px;}
.y70{bottom:658.725000px;}
.y1c{bottom:663.765000px;}
.y47{bottom:664.485000px;}
.y147{bottom:664.845000px;}
.y167{bottom:667.185000px;}
.ye2{bottom:668.265000px;}
.y97{bottom:668.985000px;}
.y127{bottom:669.345000px;}
.yc2{bottom:672.945000px;}
.y6f{bottom:683.025000px;}
.y104{bottom:683.565000px;}
.y1b{bottom:687.885000px;}
.y46{bottom:688.605000px;}
.y146{bottom:692.025000px;}
.y166{bottom:693.105000px;}
.y126{bottom:693.645000px;}
.ye1{bottom:695.445000px;}
.y96{bottom:696.165000px;}
.yc1{bottom:699.945000px;}
.y6e{bottom:707.145000px;}
.y103{bottom:707.865000px;}
.y1a{bottom:712.185000px;}
.y45{bottom:712.905000px;}
.y145{bottom:717.945000px;}
.y125{bottom:718.485000px;}
.y165{bottom:719.205000px;}
.y95{bottom:720.825000px;}
.ye0{bottom:721.365000px;}
.yc0{bottom:724.605000px;}
.y6d{bottom:731.265000px;}
.y102{bottom:733.785000px;}
.y19{bottom:736.305000px;}
.y44{bottom:737.025000px;}
.y164{bottom:743.325000px;}
.y124{bottom:745.665000px;}
.y94{bottom:749.445000px;}
.ybf{bottom:753.225000px;}
.y6c{bottom:755.385000px;}
.y101{bottom:759.885000px;}
.y18{bottom:760.425000px;}
.y43{bottom:761.145000px;}
.y163{bottom:767.625000px;}
.y123{bottom:769.785000px;}
.y93{bottom:773.565000px;}
.y144{bottom:774.645000px;}
.ybe{bottom:777.345000px;}
.ydf{bottom:778.065000px;}
.y6b{bottom:779.505000px;}
.y17{bottom:784.545000px;}
.y42{bottom:785.265000px;}
.y100{bottom:785.985000px;}
.y162{bottom:791.745000px;}
.y122{bottom:793.905000px;}
.y92{bottom:797.685000px;}
.ybd{bottom:801.465000px;}
.y6a{bottom:803.625000px;}
.yff{bottom:807.585000px;}
.y16{bottom:808.665000px;}
.y41{bottom:809.385000px;}
.y161{bottom:815.865000px;}
.y121{bottom:821.085000px;}
.y91{bottom:821.805000px;}
.ybc{bottom:825.585000px;}
.y69{bottom:827.745000px;}
.y143{bottom:831.345000px;}
.y40{bottom:833.505000px;}
.y15{bottom:834.765000px;}
.yfe{bottom:838.005000px;}
.y160{bottom:839.985000px;}
.y120{bottom:845.565000px;}
.y90{bottom:845.925000px;}
.ybb{bottom:849.930000px;}
.y68{bottom:852.090000px;}
.y3f{bottom:857.670000px;}
.y14{bottom:860.910000px;}
.y142{bottom:861.810000px;}
.yfd{bottom:864.150000px;}
.yde{bottom:865.230000px;}
.y15f{bottom:866.130000px;}
.y8f{bottom:870.090000px;}
.yba{bottom:874.050000px;}
.y11f{bottom:874.410000px;}
.y67{bottom:876.210000px;}
.y3e{bottom:881.970000px;}
.y13{bottom:887.010000px;}
.yfc{bottom:890.250000px;}
.y141{bottom:892.410000px;}
.y15e{bottom:893.130000px;}
.ydd{bottom:895.830000px;}
.y8e{bottom:897.270000px;}
.yb9{bottom:898.170000px;}
.y11e{bottom:898.530000px;}
.y66{bottom:900.330000px;}
.y3d{bottom:906.090000px;}
.y12{bottom:912.930000px;}
.yfb{bottom:917.250000px;}
.y15d{bottom:917.790000px;}
.y8d{bottom:921.930000px;}
.yb8{bottom:922.290000px;}
.y11d{bottom:922.650000px;}
.y65{bottom:926.430000px;}
.y3c{bottom:930.210000px;}
.y11{bottom:939.030000px;}
.yfa{bottom:941.910000px;}
.yb7{bottom:946.410000px;}
.y11c{bottom:946.770000px;}
.y64{bottom:947.850000px;}
.y140{bottom:949.110000px;}
.y8c{bottom:950.550000px;}
.ydc{bottom:952.530000px;}
.y3b{bottom:954.330000px;}
.y10{bottom:965.130000px;}
.yb6{bottom:970.530000px;}
.y11b{bottom:971.610000px;}
.y8b{bottom:974.670000px;}
.y63{bottom:976.650000px;}
.y3a{bottom:978.450000px;}
.y13f{bottom:986.010000px;}
.yf{bottom:991.230000px;}
.yb5{bottom:994.650000px;}
.y8a{bottom:998.790000px;}
.y62{bottom:1000.770000px;}
.y39{bottom:1002.570000px;}
.ydb{bottom:1009.050000px;}
.y13e{bottom:1010.490000px;}
.ye{bottom:1017.150000px;}
.yb4{bottom:1018.950000px;}
.y89{bottom:1022.910000px;}
.y11a{bottom:1023.090000px;}
.y61{bottom:1024.890000px;}
.y38{bottom:1026.870000px;}
.y13d{bottom:1041.090000px;}
.yb3{bottom:1043.070000px;}
.yd{bottom:1043.250000px;}
.yda{bottom:1045.950000px;}
.y88{bottom:1047.030000px;}
.y119{bottom:1047.210000px;}
.y60{bottom:1049.010000px;}
.y37{bottom:1050.990000px;}
.yb2{bottom:1067.190000px;}
.yc{bottom:1069.350000px;}
.yf9{bottom:1070.070000px;}
.yd9{bottom:1070.610000px;}
.y118{bottom:1072.050000px;}
.y87{bottom:1073.130000px;}
.y36{bottom:1075.110000px;}
.yb1{bottom:1091.310000px;}
.y13c{bottom:1094.190000px;}
.y86{bottom:1094.730000px;}
.yb{bottom:1095.450000px;}
.y35{bottom:1099.230000px;}
.yb0{bottom:1118.490000px;}
.y13b{bottom:1118.850000px;}
.ya{bottom:1121.550000px;}
.y34{bottom:1123.350000px;}
.yaf{bottom:1143.000000px;}
.y9{bottom:1147.500000px;}
.y1{bottom:1175.040000px;}
.y5{bottom:1200.600000px;}
.hb{height:24.120000px;}
.hd{height:24.156000px;}
.hc{height:24.300000px;}
.h13{height:25.920000px;}
.h14{height:25.956000px;}
.hf{height:26.100000px;}
.h7{height:28.440000px;}
.h3{height:39.420000px;}
.h5{height:45.900000px;}
.h11{height:52.020000px;}
.h12{height:52.056000px;}
.h10{height:52.200000px;}
.h8{height:62.261719px;}
.h2{height:65.884219px;}
.h9{height:72.846211px;}
.ha{height:75.067383px;}
.he{height:76.877227px;}
.h4{height:81.688852px;}
.h6{height:145.069805px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:71.820000px;}
.w6{width:114.336000px;}
.wf{width:117.756000px;}
.w9{width:190.290000px;}
.wc{width:204.330000px;}
.wb{width:251.130000px;}
.we{width:264.090000px;}
.w7{width:265.890000px;}
.wd{width:266.790000px;}
.w8{width:268.815000px;}
.wa{width:293.655000px;}
.w10{width:296.175000px;}
.w11{width:321.150000px;}
.w5{width:356.835000px;}
.w4{width:610.740000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:1.080000px;}
.x5{left:3.960000px;}
.x22{left:12.996000px;}
.x11{left:19.656000px;}
.x6{left:20.700000px;}
.x4{left:38.130000px;}
.x20{left:42.300000px;}
.x1e{left:43.416000px;}
.x1a{left:49.356000px;}
.x15{left:66.450000px;}
.x1d{left:70.020000px;}
.x13{left:76.680000px;}
.xd{left:84.959987px;}
.x10{left:87.300000px;}
.x26{left:91.440000px;}
.x24{left:92.565000px;}
.xe{left:111.995987px;}
.xf{left:138.995987px;}
.x18{left:149.975987px;}
.xb{left:162.749987px;}
.x17{left:165.989987px;}
.x12{left:203.790000px;}
.x23{left:207.390000px;}
.x8{left:221.609987px;}
.x1b{left:279.930000px;}
.x1f{left:294.015000px;}
.x9{left:310.394987px;}
.xa{left:321.194987px;}
.x7{left:434.955000px;}
.xc{left:457.094987px;}
.x14{left:472.035000px;}
.x25{left:505.905000px;}
.x21{left:562.965000px;}
.x1c{left:575.925000px;}
.x3{left:794.160000px;}
.x19{left:829.229987px;}
.x1{left:891.899987px;}
.x2{left:901.079987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.288533pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:-0.097067pt;}
.lsc{letter-spacing:-0.024960pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.024960pt;}
.lsa{letter-spacing:0.082560pt;}
.lse{letter-spacing:0.111360pt;}
.ls5{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.227840pt;}
.lsf{letter-spacing:0.229760pt;}
.ls3{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.357760pt;}
.lsd{letter-spacing:0.472960pt;}
.ls4{letter-spacing:0.480000pt;}
.ls6{letter-spacing:49.232640pt;}
.ls0{letter-spacing:56.912640pt;}
.ws6{word-spacing:-102.810240pt;}
.ws3{word-spacing:-53.120000pt;}
.ws1{word-spacing:-37.280000pt;}
.ws0{word-spacing:-21.627861pt;}
.ws5{word-spacing:-18.720000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:0.000000pt;}
._13{margin-left:-102.810240pt;}
._14{margin-left:-99.740160pt;}
._15{margin-left:-92.455893pt;}
._18{margin-left:-46.949760pt;}
._16{margin-left:-20.100693pt;}
._17{margin-left:-11.531520pt;}
._12{margin-left:-2.321280pt;}
._1{margin-left:-1.347840pt;}
._0{width:1.387520pt;}
._2{width:2.277547pt;}
._f{width:3.550080pt;}
._8{width:4.485120pt;}
._7{width:6.072960pt;}
._b{width:7.488000pt;}
._5{width:9.884160pt;}
._4{width:12.579840pt;}
._3{width:13.777920pt;}
._e{width:14.976000pt;}
._6{width:17.821440pt;}
._c{width:23.886720pt;}
._d{width:24.860160pt;}
._9{width:27.630720pt;}
._a{width:28.679040pt;}
._1a{width:35.443200pt;}
._19{width:47.249280pt;}
._10{width:60.652800pt;}
._11{width:61.925760pt;}
._1b{width:749.546667pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:96.128000pt;}
.fs2{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:0.031983pt;}
.y52{bottom:4.000000pt;}
.y55{bottom:4.160000pt;}
.yaa{bottom:5.600000pt;}
.ya0{bottom:5.760000pt;}
.y6{bottom:5.920000pt;}
.y4{bottom:6.272000pt;}
.y8{bottom:10.400000pt;}
.ya6{bottom:17.280000pt;}
.y136{bottom:17.320000pt;}
.ya2{bottom:17.440000pt;}
.y3{bottom:19.520000pt;}
.y7{bottom:21.152000pt;}
.y139{bottom:28.794667pt;}
.ya5{bottom:28.800000pt;}
.ya9{bottom:28.840000pt;}
.ya3{bottom:28.960000pt;}
.y13a{bottom:82.752000pt;}
.y5f{bottom:92.352000pt;}
.y85{bottom:93.152000pt;}
.y15c{bottom:95.872000pt;}
.yd8{bottom:96.192000pt;}
.y33{bottom:96.352000pt;}
.y117{bottom:99.392000pt;}
.yae{bottom:102.592000pt;}
.yf8{bottom:105.952000pt;}
.y138{bottom:109.952000pt;}
.y5e{bottom:113.792000pt;}
.y84{bottom:114.592000pt;}
.y15b{bottom:117.472000pt;}
.yd7{bottom:117.632000pt;}
.y32{bottom:117.792000pt;}
.y116{bottom:121.472000pt;}
.yad{bottom:126.592000pt;}
.yf7{bottom:127.392000pt;}
.y5d{bottom:135.386667pt;}
.y83{bottom:136.666667pt;}
.y31{bottom:139.226667pt;}
.yd6{bottom:140.826667pt;}
.y15a{bottom:141.466667pt;}
.y115{bottom:145.626667pt;}
.yf6{bottom:148.986667pt;}
.yac{bottom:149.786667pt;}
.y5c{bottom:156.826667pt;}
.y137{bottom:160.186667pt;}
.y30{bottom:160.666667pt;}
.y82{bottom:160.826667pt;}
.y159{bottom:163.386667pt;}
.yd5{bottom:164.986667pt;}
.y114{bottom:167.066667pt;}
.yf5{bottom:172.986667pt;}
.y5b{bottom:178.266667pt;}
.y2f{bottom:182.106667pt;}
.y81{bottom:182.266667pt;}
.yd4{bottom:186.746667pt;}
.y113{bottom:188.506667pt;}
.y158{bottom:188.826667pt;}
.yf4{bottom:194.906667pt;}
.y5a{bottom:199.706667pt;}
.yab{bottom:200.186667pt;}
.y2e{bottom:203.706667pt;}
.y157{bottom:210.266667pt;}
.y112{bottom:210.586667pt;}
.yd3{bottom:212.346667pt;}
.yf3{bottom:220.346667pt;}
.y59{bottom:221.146667pt;}
.y2d{bottom:225.146667pt;}
.y80{bottom:225.946667pt;}
.ya8{bottom:227.386667pt;}
.y156{bottom:231.706667pt;}
.yd2{bottom:235.386667pt;}
.y111{bottom:237.466667pt;}
.y135{bottom:237.786667pt;}
.y58{bottom:241.626667pt;}
.yf2{bottom:241.786667pt;}
.y2c{bottom:246.586667pt;}
.y7f{bottom:250.106667pt;}
.y155{bottom:255.906667pt;}
.yd1{bottom:258.626667pt;}
.y110{bottom:259.426667pt;}
.yf1{bottom:263.266667pt;}
.y57{bottom:267.106667pt;}
.y2b{bottom:268.066667pt;}
.y7e{bottom:271.586667pt;}
.ya7{bottom:277.666667pt;}
.yd0{bottom:281.826667pt;}
.yf0{bottom:284.706667pt;}
.y10f{bottom:284.866667pt;}
.y134{bottom:288.066667pt;}
.y2a{bottom:289.506667pt;}
.y56{bottom:292.546667pt;}
.y7d{bottom:293.666667pt;}
.y154{bottom:303.266667pt;}
.ya4{bottom:304.866667pt;}
.ycf{bottom:305.026667pt;}
.yef{bottom:306.306667pt;}
.y29{bottom:310.946667pt;}
.y7c{bottom:317.826667pt;}
.y54{bottom:317.986667pt;}
.y133{bottom:320.866667pt;}
.y153{bottom:324.706667pt;}
.yee{bottom:327.746667pt;}
.yce{bottom:329.026667pt;}
.y28{bottom:332.386667pt;}
.y7b{bottom:339.266667pt;}
.y132{bottom:342.786667pt;}
.y53{bottom:343.586667pt;}
.y152{bottom:346.146667pt;}
.yed{bottom:349.186667pt;}
.ycd{bottom:350.946667pt;}
.y27{bottom:353.986667pt;}
.ya1{bottom:355.106667pt;}
.y7a{bottom:360.866667pt;}
.y151{bottom:367.586667pt;}
.y51{bottom:369.026667pt;}
.y131{bottom:369.986667pt;}
.yec{bottom:370.626667pt;}
.y10e{bottom:370.786667pt;}
.y26{bottom:375.426667pt;}
.ycc{bottom:376.386667pt;}
.y79{bottom:382.306667pt;}
.y150{bottom:389.026667pt;}
.y130{bottom:391.426667pt;}
.yeb{bottom:392.066667pt;}
.y10d{bottom:394.786667pt;}
.y25{bottom:396.866667pt;}
.y50{bottom:397.506667pt;}
.ycb{bottom:397.826667pt;}
.y78{bottom:404.386667pt;}
.y9f{bottom:405.506667pt;}
.y14f{bottom:410.466667pt;}
.y12f{bottom:412.866667pt;}
.yea{bottom:413.506667pt;}
.y10c{bottom:416.706667pt;}
.y24{bottom:418.306667pt;}
.y4f{bottom:418.946667pt;}
.yca{bottom:419.266667pt;}
.y77{bottom:428.546667pt;}
.y14e{bottom:432.066667pt;}
.y12e{bottom:434.306667pt;}
.ye9{bottom:435.106667pt;}
.y9e{bottom:438.306667pt;}
.y23{bottom:439.746667pt;}
.y4e{bottom:440.386667pt;}
.yc9{bottom:440.866667pt;}
.y10b{bottom:443.906667pt;}
.y76{bottom:449.986667pt;}
.y14d{bottom:453.506667pt;}
.y12d{bottom:455.906667pt;}
.ye8{bottom:456.546667pt;}
.y9d{bottom:460.226667pt;}
.y22{bottom:461.186667pt;}
.y4d{bottom:461.826667pt;}
.yc8{bottom:464.866667pt;}
.y10a{bottom:466.946667pt;}
.y75{bottom:471.426667pt;}
.y14c{bottom:474.946667pt;}
.y12c{bottom:477.346667pt;}
.ye7{bottom:477.986667pt;}
.y21{bottom:482.786667pt;}
.y4c{bottom:483.266667pt;}
.y9c{bottom:485.666667pt;}
.yc7{bottom:486.786667pt;}
.y109{bottom:489.026667pt;}
.y74{bottom:492.866667pt;}
.y14b{bottom:496.386667pt;}
.ye6{bottom:499.426667pt;}
.y12b{bottom:501.346667pt;}
.y20{bottom:504.253333pt;}
.y4b{bottom:504.893333pt;}
.y9b{bottom:507.133333pt;}
.y108{bottom:510.973333pt;}
.yc6{bottom:512.253333pt;}
.y73{bottom:515.133333pt;}
.y14a{bottom:517.853333pt;}
.ye5{bottom:520.893333pt;}
.y12a{bottom:523.293333pt;}
.y1f{bottom:525.693333pt;}
.y4a{bottom:526.333333pt;}
.y9a{bottom:528.573333pt;}
.yc5{bottom:533.693333pt;}
.y107{bottom:538.173333pt;}
.y72{bottom:540.893333pt;}
.y149{bottom:542.013333pt;}
.ye4{bottom:545.053333pt;}
.y1e{bottom:547.133333pt;}
.y49{bottom:547.773333pt;}
.y129{bottom:548.733333pt;}
.y99{bottom:550.013333pt;}
.yc4{bottom:555.133333pt;}
.y71{bottom:560.093333pt;}
.y106{bottom:561.373333pt;}
.y148{bottom:563.773333pt;}
.ye3{bottom:566.813333pt;}
.y1d{bottom:568.573333pt;}
.y48{bottom:569.213333pt;}
.y128{bottom:570.813333pt;}
.y98{bottom:571.613333pt;}
.yc3{bottom:576.573333pt;}
.y105{bottom:584.573333pt;}
.y70{bottom:585.533333pt;}
.y1c{bottom:590.013333pt;}
.y47{bottom:590.653333pt;}
.y147{bottom:590.973333pt;}
.y167{bottom:593.053333pt;}
.ye2{bottom:594.013333pt;}
.y97{bottom:594.653333pt;}
.y127{bottom:594.973333pt;}
.yc2{bottom:598.173333pt;}
.y6f{bottom:607.133333pt;}
.y104{bottom:607.613333pt;}
.y1b{bottom:611.453333pt;}
.y46{bottom:612.093333pt;}
.y146{bottom:615.133333pt;}
.y166{bottom:616.093333pt;}
.y126{bottom:616.573333pt;}
.ye1{bottom:618.173333pt;}
.y96{bottom:618.813333pt;}
.yc1{bottom:622.173333pt;}
.y6e{bottom:628.573333pt;}
.y103{bottom:629.213333pt;}
.y1a{bottom:633.053333pt;}
.y45{bottom:633.693333pt;}
.y145{bottom:638.173333pt;}
.y125{bottom:638.653333pt;}
.y165{bottom:639.293333pt;}
.y95{bottom:640.733333pt;}
.ye0{bottom:641.213333pt;}
.yc0{bottom:644.093333pt;}
.y6d{bottom:650.013333pt;}
.y102{bottom:652.253333pt;}
.y19{bottom:654.493333pt;}
.y44{bottom:655.133333pt;}
.y164{bottom:660.733333pt;}
.y124{bottom:662.813333pt;}
.y94{bottom:666.173333pt;}
.ybf{bottom:669.533333pt;}
.y6c{bottom:671.453333pt;}
.y101{bottom:675.453333pt;}
.y18{bottom:675.933333pt;}
.y43{bottom:676.573333pt;}
.y163{bottom:682.333333pt;}
.y123{bottom:684.253333pt;}
.y93{bottom:687.613333pt;}
.y144{bottom:688.573333pt;}
.ybe{bottom:690.973333pt;}
.ydf{bottom:691.613333pt;}
.y6b{bottom:692.893333pt;}
.y17{bottom:697.373333pt;}
.y42{bottom:698.013333pt;}
.y100{bottom:698.653333pt;}
.y162{bottom:703.773333pt;}
.y122{bottom:705.693333pt;}
.y92{bottom:709.053333pt;}
.ybd{bottom:712.413333pt;}
.y6a{bottom:714.333333pt;}
.yff{bottom:717.853333pt;}
.y16{bottom:718.813333pt;}
.y41{bottom:719.453333pt;}
.y161{bottom:725.213333pt;}
.y121{bottom:729.853333pt;}
.y91{bottom:730.493333pt;}
.ybc{bottom:733.853333pt;}
.y69{bottom:735.773333pt;}
.y143{bottom:738.973333pt;}
.y40{bottom:740.893333pt;}
.y15{bottom:742.013333pt;}
.yfe{bottom:744.893333pt;}
.y160{bottom:746.653333pt;}
.y120{bottom:751.613333pt;}
.y90{bottom:751.933333pt;}
.ybb{bottom:755.493333pt;}
.y68{bottom:757.413333pt;}
.y3f{bottom:762.373333pt;}
.y14{bottom:765.253333pt;}
.y142{bottom:766.053333pt;}
.yfd{bottom:768.133333pt;}
.yde{bottom:769.093333pt;}
.y15f{bottom:769.893333pt;}
.y8f{bottom:773.413333pt;}
.yba{bottom:776.933333pt;}
.y11f{bottom:777.253333pt;}
.y67{bottom:778.853333pt;}
.y3e{bottom:783.973333pt;}
.y13{bottom:788.453333pt;}
.yfc{bottom:791.333333pt;}
.y141{bottom:793.253333pt;}
.y15e{bottom:793.893333pt;}
.ydd{bottom:796.293333pt;}
.y8e{bottom:797.573333pt;}
.yb9{bottom:798.373333pt;}
.y11e{bottom:798.693333pt;}
.y66{bottom:800.293333pt;}
.y3d{bottom:805.413333pt;}
.y12{bottom:811.493333pt;}
.yfb{bottom:815.333333pt;}
.y15d{bottom:815.813333pt;}
.y8d{bottom:819.493333pt;}
.yb8{bottom:819.813333pt;}
.y11d{bottom:820.133333pt;}
.y65{bottom:823.493333pt;}
.y3c{bottom:826.853333pt;}
.y11{bottom:834.693333pt;}
.yfa{bottom:837.253333pt;}
.yb7{bottom:841.253333pt;}
.y11c{bottom:841.573333pt;}
.y64{bottom:842.533333pt;}
.y140{bottom:843.653333pt;}
.y8c{bottom:844.933333pt;}
.ydc{bottom:846.693333pt;}
.y3b{bottom:848.293333pt;}
.y10{bottom:857.893333pt;}
.yb6{bottom:862.693333pt;}
.y11b{bottom:863.653333pt;}
.y8b{bottom:866.373333pt;}
.y63{bottom:868.133333pt;}
.y3a{bottom:869.733333pt;}
.y13f{bottom:876.453333pt;}
.yf{bottom:881.093333pt;}
.yb5{bottom:884.133333pt;}
.y8a{bottom:887.813333pt;}
.y62{bottom:889.573333pt;}
.y39{bottom:891.173333pt;}
.ydb{bottom:896.933333pt;}
.y13e{bottom:898.213333pt;}
.ye{bottom:904.133333pt;}
.yb4{bottom:905.733333pt;}
.y89{bottom:909.253333pt;}
.y11a{bottom:909.413333pt;}
.y61{bottom:911.013333pt;}
.y38{bottom:912.773333pt;}
.y13d{bottom:925.413333pt;}
.yb3{bottom:927.173333pt;}
.yd{bottom:927.333333pt;}
.yda{bottom:929.733333pt;}
.y88{bottom:930.693333pt;}
.y119{bottom:930.853333pt;}
.y60{bottom:932.453333pt;}
.y37{bottom:934.213333pt;}
.yb2{bottom:948.613333pt;}
.yc{bottom:950.533333pt;}
.yf9{bottom:951.173333pt;}
.yd9{bottom:951.653333pt;}
.y118{bottom:952.933333pt;}
.y87{bottom:953.893333pt;}
.y36{bottom:955.653333pt;}
.yb1{bottom:970.053333pt;}
.y13c{bottom:972.613333pt;}
.y86{bottom:973.093333pt;}
.yb{bottom:973.733333pt;}
.y35{bottom:977.093333pt;}
.yb0{bottom:994.213333pt;}
.y13b{bottom:994.533333pt;}
.ya{bottom:996.933333pt;}
.y34{bottom:998.533333pt;}
.yaf{bottom:1016.000000pt;}
.y9{bottom:1020.000000pt;}
.y1{bottom:1044.480000pt;}
.y5{bottom:1067.200000pt;}
.hb{height:21.440000pt;}
.hd{height:21.472000pt;}
.hc{height:21.600000pt;}
.h13{height:23.040000pt;}
.h14{height:23.072000pt;}
.hf{height:23.200000pt;}
.h7{height:25.280000pt;}
.h3{height:35.040000pt;}
.h5{height:40.800000pt;}
.h11{height:46.240000pt;}
.h12{height:46.272000pt;}
.h10{height:46.400000pt;}
.h8{height:55.343750pt;}
.h2{height:58.563750pt;}
.h9{height:64.752187pt;}
.ha{height:66.726562pt;}
.he{height:68.335313pt;}
.h4{height:72.612313pt;}
.h6{height:128.950937pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:63.840000pt;}
.w6{width:101.632000pt;}
.wf{width:104.672000pt;}
.w9{width:169.146667pt;}
.wc{width:181.626667pt;}
.wb{width:223.226667pt;}
.we{width:234.746667pt;}
.w7{width:236.346667pt;}
.wd{width:237.146667pt;}
.w8{width:238.946667pt;}
.wa{width:261.026667pt;}
.w10{width:263.266667pt;}
.w11{width:285.466667pt;}
.w5{width:317.186667pt;}
.w4{width:542.880000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:0.960000pt;}
.x5{left:3.520000pt;}
.x22{left:11.552000pt;}
.x11{left:17.472000pt;}
.x6{left:18.400000pt;}
.x4{left:33.893333pt;}
.x20{left:37.600000pt;}
.x1e{left:38.592000pt;}
.x1a{left:43.872000pt;}
.x15{left:59.066667pt;}
.x1d{left:62.240000pt;}
.x13{left:68.160000pt;}
.xd{left:75.519988pt;}
.x10{left:77.600000pt;}
.x26{left:81.280000pt;}
.x24{left:82.280000pt;}
.xe{left:99.551988pt;}
.xf{left:123.551988pt;}
.x18{left:133.311988pt;}
.xb{left:144.666655pt;}
.x17{left:147.546655pt;}
.x12{left:181.146667pt;}
.x23{left:184.346667pt;}
.x8{left:196.986655pt;}
.x1b{left:248.826667pt;}
.x1f{left:261.346667pt;}
.x9{left:275.906655pt;}
.xa{left:285.506655pt;}
.x7{left:386.626667pt;}
.xc{left:406.306655pt;}
.x14{left:419.586667pt;}
.x25{left:449.693333pt;}
.x21{left:500.413333pt;}
.x1c{left:511.933333pt;}
.x3{left:705.920000pt;}
.x19{left:737.093322pt;}
.x1{left:792.799988pt;}
.x2{left:800.959988pt;}
}




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