
    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_d6a286e2066e8dc950e36b61.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c8a171f76f8514b00a192776.woff')format("woff");}.ff2{font-family:ff2;line-height:0.856445;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_894d91981b30ba9c6f9ba829.woff')format("woff");}.ff3{font-family:ff3;line-height:0.695312;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_a2816982d4812d4096d9987b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_57076fc3444c344ef6da9275.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_03b9ea588dcd662f6089c341.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e32b21894ed78715c8545814.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ee0d20bc25b25bc4bc004295.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_441ef34ed76f741580f26a89.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_827855f6932090e312d95e94.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e4c177acb3f3a815029f8398.woff')format("woff");}.ffb{font-family:ffb;line-height:1.063477;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_d8d456ace27d455860bdb253.woff')format("woff");}.ffc{font-family:ffc;line-height:0.767578;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_acf722e2442eba5fda51e129.woff')format("woff");}.ffd{font-family:ffd;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-82.080000px;}
.v2{vertical-align:-76.320000px;}
.v1{vertical-align:-74.880000px;}
.v6{vertical-align:-70.560000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:44.640000px;}
.v3{vertical-align:50.400000px;}
.lsb{letter-spacing:-3.492000px;}
.ls11{letter-spacing:-2.880000px;}
.ls27{letter-spacing:-2.160000px;}
.ls10{letter-spacing:-1.440000px;}
.ls21{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.612000px;}
.ls1c{letter-spacing:-0.457800px;}
.lsa{letter-spacing:-0.305400px;}
.ls6{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.020160px;}
.ls3{letter-spacing:0.034560px;}
.ls8{letter-spacing:0.069000px;}
.ls4{letter-spacing:0.118080px;}
.ls22{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.178560px;}
.ls9{letter-spacing:0.190560px;}
.lse{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.339840px;}
.ls2{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.452160px;}
.ls1{letter-spacing:0.604800px;}
.ls24{letter-spacing:0.612000px;}
.ls5{letter-spacing:0.642720px;}
.lsc{letter-spacing:0.720000px;}
.ls1a{letter-spacing:0.828000px;}
.lsf{letter-spacing:1.134000px;}
.ls19{letter-spacing:1.440000px;}
.ls23{letter-spacing:2.424000px;}
.ls26{letter-spacing:5.040000px;}
.ls15{letter-spacing:7.344000px;}
.ls28{letter-spacing:11.998560px;}
.ls17{letter-spacing:34.865280px;}
.ls16{letter-spacing:37.745280px;}
.ls14{letter-spacing:40.625280px;}
.ls25{letter-spacing:40.798560px;}
.ls13{letter-spacing:43.505280px;}
.ls18{letter-spacing:44.945280px;}
.ls12{letter-spacing:91.596000px;}
.ls1e{letter-spacing:523.716000px;}
.ls20{letter-spacing:625.956000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-60.480000px;}
.ws0{word-spacing:-29.880000px;}
.ws2{word-spacing:-24.189000px;}
.ws1{word-spacing:-24.120000px;}
.ws6{word-spacing:-20.880000px;}
.ws3{word-spacing:-19.474560px;}
.wsd{word-spacing:-18.000000px;}
.wse{word-spacing:-17.388000px;}
.ws16{word-spacing:-17.172000px;}
.wsb{word-spacing:-16.865400px;}
.ws7{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.254600px;}
.ws11{word-spacing:-16.102200px;}
.wsf{word-spacing:-15.948000px;}
.ws4{word-spacing:-15.840000px;}
.ws15{word-spacing:-15.140160px;}
.ws10{word-spacing:-15.120000px;}
.ws17{word-spacing:-14.400000px;}
.ws14{word-spacing:-14.184000px;}
.wsc{word-spacing:-13.680000px;}
.wsa{word-spacing:-13.068000px;}
.ws8{word-spacing:0.000000px;}
.ws13{word-spacing:0.216000px;}
.ws12{word-spacing:5.251680px;}
._25{margin-left:-10.800000px;}
._2a{margin-left:-9.300480px;}
._3{margin-left:-8.285760px;}
._5{margin-left:-7.043040px;}
._c{margin-left:-5.080320px;}
._2{margin-left:-3.386880px;}
._0{margin-left:-1.995840px;}
._1{width:1.088640px;}
._4{width:2.914080px;}
._6{width:4.872000px;}
._8{width:5.987520px;}
._7{width:7.801920px;}
._9{width:8.837760px;}
._b{width:9.900480px;}
._a{width:11.076960px;}
._12{width:12.942720px;}
._13{width:14.091840px;}
._14{width:15.130560px;}
._d{width:16.269120px;}
._e{width:17.393280px;}
._16{width:18.438240px;}
._15{width:19.661760px;}
._19{width:20.666400px;}
._11{width:21.781440px;}
._10{width:23.040960px;}
._f{width:24.370560px;}
._18{width:25.784640px;}
._1d{width:26.985600px;}
._1c{width:28.198080px;}
._1a{width:29.211840px;}
._1b{width:31.080960px;}
._20{width:32.219040px;}
._1e{width:33.364800px;}
._1f{width:34.735680px;}
._29{width:36.332160px;}
._28{width:38.454240px;}
._2f{width:42.621120px;}
._21{width:43.856640px;}
._22{width:44.959680px;}
._17{width:49.648320px;}
._2e{width:55.823040px;}
._2d{width:57.153600px;}
._23{width:61.721760px;}
._2c{width:83.462400px;}
._2b{width:84.732480px;}
._27{width:216.283200px;}
._26{width:283.924800px;}
._24{width:343.104960px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:57.600000px;}
.fs0{font-size:60.480000px;}
.fs6{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs7{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.fs1{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.ycc{bottom:3.240000px;}
.yce{bottom:3.600000px;}
.yd5{bottom:15.120000px;}
.yd7{bottom:15.150000px;}
.ycd{bottom:20.880000px;}
.yd1{bottom:38.205000px;}
.y2{bottom:111.276000px;}
.yc9{bottom:138.996000px;}
.y99{bottom:139.716000px;}
.ye2{bottom:140.436000px;}
.y66{bottom:144.756000px;}
.y12f{bottom:146.556000px;}
.yf7{bottom:151.950000px;}
.y10c{bottom:153.030000px;}
.y33{bottom:155.910000px;}
.yc8{bottom:157.710000px;}
.y98{bottom:158.790000px;}
.y65{bottom:163.830000px;}
.y167{bottom:165.270000px;}
.yf6{bottom:169.230000px;}
.y10b{bottom:170.670000px;}
.y32{bottom:174.630000px;}
.yc7{bottom:176.790000px;}
.y97{bottom:177.510000px;}
.y12e{bottom:181.110000px;}
.y166{bottom:182.550000px;}
.y64{bottom:182.910000px;}
.y10a{bottom:185.430000px;}
.yf5{bottom:186.870000px;}
.ye1{bottom:191.910000px;}
.y31{bottom:193.755000px;}
.yc6{bottom:195.915000px;}
.y96{bottom:196.635000px;}
.y12d{bottom:198.435000px;}
.y165{bottom:199.875000px;}
.y63{bottom:202.035000px;}
.yf4{bottom:205.995000px;}
.y30{bottom:212.835000px;}
.yc5{bottom:214.275000px;}
.y12c{bottom:215.355000px;}
.y95{bottom:215.715000px;}
.y164{bottom:217.155000px;}
.y62{bottom:220.755000px;}
.yf3{bottom:224.355000px;}
.yc4{bottom:225.435000px;}
.y2f{bottom:231.555000px;}
.y12b{bottom:232.635000px;}
.y163{bottom:234.435000px;}
.y94{bottom:234.795000px;}
.y61{bottom:239.835000px;}
.yf2{bottom:241.635000px;}
.y12a{bottom:249.915000px;}
.y2e{bottom:250.635000px;}
.y162{bottom:251.355000px;}
.y93{bottom:253.515000px;}
.yc3{bottom:255.315000px;}
.y60{bottom:258.915000px;}
.yf1{bottom:259.275000px;}
.y129{bottom:267.195000px;}
.y161{bottom:268.635000px;}
.y2d{bottom:269.715000px;}
.y92{bottom:272.595000px;}
.yc2{bottom:274.395000px;}
.y5f{bottom:277.635000px;}
.y128{bottom:284.475000px;}
.y160{bottom:285.915000px;}
.y2c{bottom:288.795000px;}
.y91{bottom:291.675000px;}
.yc1{bottom:293.115000px;}
.y5e{bottom:296.715000px;}
.y127{bottom:301.755000px;}
.y15f{bottom:303.195000px;}
.y2b{bottom:307.515000px;}
.y90{bottom:310.395000px;}
.yc0{bottom:312.195000px;}
.y5d{bottom:315.795000px;}
.y126{bottom:319.035000px;}
.y15e{bottom:320.505000px;}
.y2a{bottom:326.625000px;}
.y8f{bottom:329.505000px;}
.ybf{bottom:331.305000px;}
.y5c{bottom:334.545000px;}
.y125{bottom:336.345000px;}
.y15d{bottom:337.785000px;}
.y29{bottom:345.705000px;}
.y8e{bottom:348.585000px;}
.ybe{bottom:350.385000px;}
.y5b{bottom:353.625000px;}
.y15c{bottom:355.065000px;}
.y28{bottom:364.425000px;}
.y8d{bottom:367.305000px;}
.ybd{bottom:369.105000px;}
.y124{bottom:370.905000px;}
.y15b{bottom:372.345000px;}
.y5a{bottom:372.705000px;}
.y27{bottom:383.505000px;}
.y8c{bottom:386.385000px;}
.ybc{bottom:388.185000px;}
.y15a{bottom:389.625000px;}
.y59{bottom:391.785000px;}
.y26{bottom:402.585000px;}
.y123{bottom:405.105000px;}
.y8b{bottom:405.465000px;}
.y159{bottom:406.905000px;}
.ybb{bottom:407.265000px;}
.y58{bottom:410.505000px;}
.y109{bottom:419.505000px;}
.y25{bottom:421.305000px;}
.y122{bottom:422.385000px;}
.y158{bottom:424.185000px;}
.y8a{bottom:424.545000px;}
.yba{bottom:425.985000px;}
.y57{bottom:429.585000px;}
.y108{bottom:438.225000px;}
.y121{bottom:439.305000px;}
.y24{bottom:440.385000px;}
.y157{bottom:441.105000px;}
.y89{bottom:443.265000px;}
.yb9{bottom:445.065000px;}
.y56{bottom:448.710000px;}
.y107{bottom:457.350000px;}
.y120{bottom:457.710000px;}
.y156{bottom:458.430000px;}
.y23{bottom:459.510000px;}
.y88{bottom:462.390000px;}
.yb8{bottom:464.190000px;}
.y55{bottom:467.430000px;}
.y155{bottom:475.710000px;}
.y106{bottom:476.430000px;}
.y11f{bottom:477.870000px;}
.y22{bottom:478.590000px;}
.y87{bottom:481.470000px;}
.yb7{bottom:482.910000px;}
.ye0{bottom:485.070000px;}
.y54{bottom:486.510000px;}
.y154{bottom:492.990000px;}
.y105{bottom:495.510000px;}
.y21{bottom:497.310000px;}
.y86{bottom:500.190000px;}
.yb6{bottom:501.990000px;}
.ydf{bottom:503.790000px;}
.y53{bottom:505.590000px;}
.y153{bottom:510.270000px;}
.y104{bottom:514.230000px;}
.y20{bottom:516.390000px;}
.y85{bottom:519.270000px;}
.yb5{bottom:521.070000px;}
.y52{bottom:524.310000px;}
.y152{bottom:527.550000px;}
.y103{bottom:532.950000px;}
.y11e{bottom:533.310000px;}
.y1f{bottom:536.190000px;}
.yde{bottom:537.990000px;}
.y84{bottom:538.350000px;}
.yb4{bottom:540.150000px;}
.y51{bottom:543.390000px;}
.y151{bottom:544.830000px;}
.y102{bottom:552.390000px;}
.ydd{bottom:555.270000px;}
.y83{bottom:557.430000px;}
.yb3{bottom:558.870000px;}
.y1e{bottom:559.590000px;}
.yf0{bottom:560.670000px;}
.y150{bottom:562.110000px;}
.y50{bottom:562.470000px;}
.y11d{bottom:571.110000px;}
.ydc{bottom:572.580000px;}
.y101{bottom:572.940000px;}
.y82{bottom:576.180000px;}
.y1d{bottom:577.980000px;}
.y14f{bottom:579.420000px;}
.yef{bottom:579.780000px;}
.y4f{bottom:581.580000px;}
.ydb{bottom:589.860000px;}
.y11c{bottom:590.220000px;}
.y100{bottom:592.020000px;}
.y1c{bottom:595.260000px;}
.y14e{bottom:596.700000px;}
.yb2{bottom:597.060000px;}
.yee{bottom:598.860000px;}
.y4e{bottom:600.300000px;}
.yda{bottom:607.140000px;}
.y11b{bottom:609.300000px;}
.yff{bottom:611.100000px;}
.y14d{bottom:613.980000px;}
.y81{bottom:614.340000px;}
.y1b{bottom:615.060000px;}
.yb1{bottom:615.780000px;}
.yed{bottom:617.580000px;}
.y4d{bottom:619.380000px;}
.yd9{bottom:626.580000px;}
.y11a{bottom:628.380000px;}
.yfe{bottom:629.820000px;}
.y14c{bottom:631.260000px;}
.y80{bottom:633.060000px;}
.yb0{bottom:634.860000px;}
.yec{bottom:636.660000px;}
.y1a{bottom:637.020000px;}
.y4c{bottom:638.460000px;}
.y119{bottom:647.100000px;}
.y14b{bottom:648.180000px;}
.yfd{bottom:648.900000px;}
.y7f{bottom:652.140000px;}
.y10f{bottom:653.940000px;}
.y19{bottom:655.740000px;}
.y4b{bottom:657.180000px;}
.y14a{bottom:665.460000px;}
.y118{bottom:666.180000px;}
.yd8{bottom:667.980000px;}
.y7e{bottom:671.220000px;}
.y18{bottom:673.020000px;}
.yeb{bottom:674.460000px;}
.y4a{bottom:676.260000px;}
.y149{bottom:682.740000px;}
.yd6{bottom:683.820000px;}
.y117{bottom:685.260000px;}
.yfc{bottom:686.700000px;}
.y7d{bottom:689.940000px;}
.y17{bottom:690.300000px;}
.yaf{bottom:691.740000px;}
.yea{bottom:693.540000px;}
.y49{bottom:695.340000px;}
.y148{bottom:700.050000px;}
.y116{bottom:703.650000px;}
.yfb{bottom:705.450000px;}
.y16{bottom:707.610000px;}
.y7c{bottom:709.050000px;}
.yae{bottom:710.850000px;}
.yd4{bottom:712.650000px;}
.y48{bottom:714.450000px;}
.y147{bottom:717.330000px;}
.yfa{bottom:723.090000px;}
.y115{bottom:723.810000px;}
.y15{bottom:724.890000px;}
.y7b{bottom:728.130000px;}
.yad{bottom:729.930000px;}
.ye9{bottom:731.370000px;}
.y47{bottom:733.170000px;}
.y146{bottom:734.610000px;}
.yf9{bottom:738.210000px;}
.yd3{bottom:741.450000px;}
.y14{bottom:742.170000px;}
.y7a{bottom:747.210000px;}
.yac{bottom:748.650000px;}
.y10e{bottom:749.010000px;}
.ye8{bottom:750.450000px;}
.y145{bottom:751.890000px;}
.y46{bottom:752.250000px;}
.yd2{bottom:758.730000px;}
.y13{bottom:759.450000px;}
.y79{bottom:765.930000px;}
.y114{bottom:766.290000px;}
.yab{bottom:767.730000px;}
.y144{bottom:769.170000px;}
.ye7{bottom:769.530000px;}
.y45{bottom:771.330000px;}
.y12{bottom:776.370000px;}
.y78{bottom:785.010000px;}
.y113{bottom:785.370000px;}
.y143{bottom:786.450000px;}
.yaa{bottom:786.810000px;}
.ye6{bottom:788.610000px;}
.y44{bottom:790.050000px;}
.yd0{bottom:793.290000px;}
.y11{bottom:793.650000px;}
.y142{bottom:803.730000px;}
.y77{bottom:804.090000px;}
.y9a{bottom:804.810000px;}
.ya9{bottom:805.890000px;}
.ye5{bottom:807.330000px;}
.y43{bottom:809.130000px;}
.y10{bottom:810.930000px;}
.y141{bottom:821.010000px;}
.y76{bottom:822.810000px;}
.y112{bottom:823.530000px;}
.ya8{bottom:826.455000px;}
.yf{bottom:828.255000px;}
.y140{bottom:837.975000px;}
.y75{bottom:841.935000px;}
.y111{bottom:843.375000px;}
.ycf{bottom:845.175000px;}
.ye{bottom:845.535000px;}
.y42{bottom:846.975000px;}
.y13f{bottom:855.255000px;}
.y74{bottom:861.015000px;}
.yd{bottom:863.175000px;}
.ya7{bottom:864.255000px;}
.y41{bottom:866.055000px;}
.y13e{bottom:872.535000px;}
.y110{bottom:876.135000px;}
.y73{bottom:879.735000px;}
.yc{bottom:882.615000px;}
.ye4{bottom:882.975000px;}
.ya6{bottom:883.335000px;}
.y40{bottom:885.135000px;}
.y13d{bottom:889.815000px;}
.y72{bottom:898.815000px;}
.ye3{bottom:902.415000px;}
.y3f{bottom:904.215000px;}
.yb{bottom:904.575000px;}
.y13c{bottom:907.095000px;}
.ycb{bottom:915.015000px;}
.y71{bottom:917.895000px;}
.ya5{bottom:921.135000px;}
.y3e{bottom:922.935000px;}
.ya{bottom:924.015000px;}
.y13b{bottom:924.375000px;}
.y70{bottom:936.975000px;}
.ya4{bottom:940.215000px;}
.y13a{bottom:941.655000px;}
.y3d{bottom:942.015000px;}
.y9{bottom:944.895000px;}
.y6f{bottom:955.725000px;}
.y139{bottom:958.965000px;}
.ya3{bottom:959.325000px;}
.y3c{bottom:961.125000px;}
.y8{bottom:965.445000px;}
.y6e{bottom:974.805000px;}
.y138{bottom:976.245000px;}
.ya2{bottom:978.405000px;}
.y3b{bottom:979.845000px;}
.y7{bottom:986.325000px;}
.y137{bottom:993.525000px;}
.y6d{bottom:993.885000px;}
.ya1{bottom:997.125000px;}
.y3a{bottom:998.925000px;}
.y6{bottom:1009.005000px;}
.y136{bottom:1010.805000px;}
.y6c{bottom:1012.605000px;}
.ya0{bottom:1016.205000px;}
.y39{bottom:1018.005000px;}
.y135{bottom:1028.085000px;}
.y6b{bottom:1031.685000px;}
.y5{bottom:1034.565000px;}
.y9f{bottom:1035.285000px;}
.y38{bottom:1036.725000px;}
.y134{bottom:1045.005000px;}
.y6a{bottom:1050.765000px;}
.y9e{bottom:1054.005000px;}
.y37{bottom:1055.805000px;}
.y133{bottom:1062.285000px;}
.y4{bottom:1068.045000px;}
.y69{bottom:1069.845000px;}
.y9d{bottom:1073.085000px;}
.y36{bottom:1074.885000px;}
.y132{bottom:1079.610000px;}
.yca{bottom:1088.250000px;}
.y68{bottom:1088.610000px;}
.yf8{bottom:1091.850000px;}
.y9c{bottom:1092.210000px;}
.y35{bottom:1094.010000px;}
.y131{bottom:1096.890000px;}
.y3{bottom:1101.930000px;}
.y67{bottom:1108.410000px;}
.y9b{bottom:1111.290000px;}
.y10d{bottom:1111.650000px;}
.y34{bottom:1112.730000px;}
.y130{bottom:1114.170000px;}
.y1{bottom:1141.170000px;}
.hf{height:17.280000px;}
.h13{height:28.800000px;}
.h14{height:28.836000px;}
.h11{height:34.560000px;}
.h17{height:44.860781px;}
.h16{height:50.229844px;}
.h12{height:51.876000px;}
.h19{height:54.219375px;}
.h8{height:59.328281px;}
.h2{height:59.357813px;}
.h10{height:60.952500px;}
.h18{height:62.163910px;}
.h6{height:65.010937px;}
.h9{height:66.757500px;}
.hc{height:68.084282px;}
.h5{height:70.664062px;}
.h15{height:72.562500px;}
.hb{height:74.953125px;}
.h7{height:76.279219px;}
.h4{height:76.317188px;}
.h3{height:80.944453px;}
.ha{height:86.945625px;}
.hd{height:106.225312px;}
.he{height:109.650937px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:130.032000px;}
.wa{width:130.752000px;}
.w3{width:153.075000px;}
.w7{width:153.795000px;}
.w4{width:172.515000px;}
.w8{width:173.235000px;}
.w5{width:177.195000px;}
.w9{width:177.915000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:8.640000px;}
.x19{left:9.720000px;}
.x1d{left:11.160000px;}
.x17{left:12.240000px;}
.x1f{left:13.680000px;}
.x15{left:17.280000px;}
.x16{left:19.116000px;}
.x27{left:24.120000px;}
.x28{left:26.280000px;}
.x1b{left:29.199000px;}
.x20{left:30.279000px;}
.x2c{left:31.719000px;}
.x2f{left:32.799000px;}
.x26{left:38.550000px;}
.x2a{left:41.079000px;}
.x11{left:42.159000px;}
.x31{left:47.190000px;}
.x21{left:50.079000px;}
.x18{left:52.965000px;}
.x29{left:58.710000px;}
.x1a{left:59.790000px;}
.x2b{left:61.950000px;}
.x2d{left:63.765000px;}
.x2e{left:65.910000px;}
.x1c{left:67.005000px;}
.x1e{left:69.150000px;}
.x30{left:70.950000px;}
.x23{left:84.285000px;}
.x24{left:86.805000px;}
.x25{left:88.950000px;}
.x1{left:123.155987px;}
.x2{left:125.315987px;}
.xb{left:126.395987px;}
.x10{left:129.276000px;}
.x4{left:144.071987px;}
.xc{left:150.194987px;}
.x32{left:155.234987px;}
.x9{left:172.154987px;}
.x5{left:176.114987px;}
.xd{left:177.194987px;}
.x7{left:204.554987px;}
.xe{left:234.824987px;}
.x35{left:267.944987px;}
.x6{left:270.104987px;}
.x37{left:280.544987px;}
.x12{left:283.065000px;}
.x39{left:299.264987px;}
.x3b{left:309.704987px;}
.xf{left:340.709987px;}
.x8{left:369.509987px;}
.x3{left:446.579987px;}
.x13{left:456.300000px;}
.x14{left:634.215000px;}
.x34{left:662.294987px;}
.x36{left:664.814987px;}
.x3a{left:673.124987px;}
.x38{left:674.924987px;}
.x33{left:686.084987px;}
.xa{left:754.844987px;}
@media print{
.v5{vertical-align:-72.960000pt;}
.v2{vertical-align:-67.840000pt;}
.v1{vertical-align:-66.560000pt;}
.v6{vertical-align:-62.720000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:39.680000pt;}
.v3{vertical-align:44.800000pt;}
.lsb{letter-spacing:-3.104000pt;}
.ls11{letter-spacing:-2.560000pt;}
.ls27{letter-spacing:-1.920000pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls21{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.544000pt;}
.ls1c{letter-spacing:-0.406933pt;}
.lsa{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.017920pt;}
.ls3{letter-spacing:0.030720pt;}
.ls8{letter-spacing:0.061333pt;}
.ls4{letter-spacing:0.104960pt;}
.ls22{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.158720pt;}
.ls9{letter-spacing:0.169387pt;}
.lse{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.302080pt;}
.ls2{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.401920pt;}
.ls1{letter-spacing:0.537600pt;}
.ls24{letter-spacing:0.544000pt;}
.ls5{letter-spacing:0.571307pt;}
.lsc{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.736000pt;}
.lsf{letter-spacing:1.008000pt;}
.ls19{letter-spacing:1.280000pt;}
.ls23{letter-spacing:2.154667pt;}
.ls26{letter-spacing:4.480000pt;}
.ls15{letter-spacing:6.528000pt;}
.ls28{letter-spacing:10.665387pt;}
.ls17{letter-spacing:30.991360pt;}
.ls16{letter-spacing:33.551360pt;}
.ls14{letter-spacing:36.111360pt;}
.ls25{letter-spacing:36.265387pt;}
.ls13{letter-spacing:38.671360pt;}
.ls18{letter-spacing:39.951360pt;}
.ls12{letter-spacing:81.418667pt;}
.ls1e{letter-spacing:465.525333pt;}
.ls20{letter-spacing:556.405333pt;}
.ws5{word-spacing:-53.760000pt;}
.ws0{word-spacing:-26.560000pt;}
.ws2{word-spacing:-21.501333pt;}
.ws1{word-spacing:-21.440000pt;}
.ws6{word-spacing:-18.560000pt;}
.ws3{word-spacing:-17.310720pt;}
.wsd{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.456000pt;}
.ws16{word-spacing:-15.264000pt;}
.wsb{word-spacing:-14.991467pt;}
.ws7{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.448533pt;}
.ws11{word-spacing:-14.313067pt;}
.wsf{word-spacing:-14.176000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws15{word-spacing:-13.457920pt;}
.ws10{word-spacing:-13.440000pt;}
.ws17{word-spacing:-12.800000pt;}
.ws14{word-spacing:-12.608000pt;}
.wsc{word-spacing:-12.160000pt;}
.wsa{word-spacing:-11.616000pt;}
.ws8{word-spacing:0.000000pt;}
.ws13{word-spacing:0.192000pt;}
.ws12{word-spacing:4.668160pt;}
._25{margin-left:-9.600000pt;}
._2a{margin-left:-8.267093pt;}
._3{margin-left:-7.365120pt;}
._5{margin-left:-6.260480pt;}
._c{margin-left:-4.515840pt;}
._2{margin-left:-3.010560pt;}
._0{margin-left:-1.774080pt;}
._1{width:0.967680pt;}
._4{width:2.590293pt;}
._6{width:4.330667pt;}
._8{width:5.322240pt;}
._7{width:6.935040pt;}
._9{width:7.855787pt;}
._b{width:8.800427pt;}
._a{width:9.846187pt;}
._12{width:11.504640pt;}
._13{width:12.526080pt;}
._14{width:13.449387pt;}
._d{width:14.461440pt;}
._e{width:15.460693pt;}
._16{width:16.389547pt;}
._15{width:17.477120pt;}
._19{width:18.370133pt;}
._11{width:19.361280pt;}
._10{width:20.480853pt;}
._f{width:21.662720pt;}
._18{width:22.919680pt;}
._1d{width:23.987200pt;}
._1c{width:25.064960pt;}
._1a{width:25.966080pt;}
._1b{width:27.627520pt;}
._20{width:28.639147pt;}
._1e{width:29.657600pt;}
._1f{width:30.876160pt;}
._29{width:32.295253pt;}
._28{width:34.181547pt;}
._2f{width:37.885440pt;}
._21{width:38.983680pt;}
._22{width:39.964160pt;}
._17{width:44.131840pt;}
._2e{width:49.620480pt;}
._2d{width:50.803200pt;}
._23{width:54.863787pt;}
._2c{width:74.188800pt;}
._2b{width:75.317760pt;}
._27{width:192.251733pt;}
._26{width:252.377600pt;}
._24{width:304.982187pt;}
.fs8{font-size:51.200000pt;}
.fs0{font-size:53.760000pt;}
.fs6{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs7{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.fs1{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.ycc{bottom:2.880000pt;}
.yce{bottom:3.200000pt;}
.yd5{bottom:13.440000pt;}
.yd7{bottom:13.466667pt;}
.ycd{bottom:18.560000pt;}
.yd1{bottom:33.960000pt;}
.y2{bottom:98.912000pt;}
.yc9{bottom:123.552000pt;}
.y99{bottom:124.192000pt;}
.ye2{bottom:124.832000pt;}
.y66{bottom:128.672000pt;}
.y12f{bottom:130.272000pt;}
.yf7{bottom:135.066667pt;}
.y10c{bottom:136.026667pt;}
.y33{bottom:138.586667pt;}
.yc8{bottom:140.186667pt;}
.y98{bottom:141.146667pt;}
.y65{bottom:145.626667pt;}
.y167{bottom:146.906667pt;}
.yf6{bottom:150.426667pt;}
.y10b{bottom:151.706667pt;}
.y32{bottom:155.226667pt;}
.yc7{bottom:157.146667pt;}
.y97{bottom:157.786667pt;}
.y12e{bottom:160.986667pt;}
.y166{bottom:162.266667pt;}
.y64{bottom:162.586667pt;}
.y10a{bottom:164.826667pt;}
.yf5{bottom:166.106667pt;}
.ye1{bottom:170.586667pt;}
.y31{bottom:172.226667pt;}
.yc6{bottom:174.146667pt;}
.y96{bottom:174.786667pt;}
.y12d{bottom:176.386667pt;}
.y165{bottom:177.666667pt;}
.y63{bottom:179.586667pt;}
.yf4{bottom:183.106667pt;}
.y30{bottom:189.186667pt;}
.yc5{bottom:190.466667pt;}
.y12c{bottom:191.426667pt;}
.y95{bottom:191.746667pt;}
.y164{bottom:193.026667pt;}
.y62{bottom:196.226667pt;}
.yf3{bottom:199.426667pt;}
.yc4{bottom:200.386667pt;}
.y2f{bottom:205.826667pt;}
.y12b{bottom:206.786667pt;}
.y163{bottom:208.386667pt;}
.y94{bottom:208.706667pt;}
.y61{bottom:213.186667pt;}
.yf2{bottom:214.786667pt;}
.y12a{bottom:222.146667pt;}
.y2e{bottom:222.786667pt;}
.y162{bottom:223.426667pt;}
.y93{bottom:225.346667pt;}
.yc3{bottom:226.946667pt;}
.y60{bottom:230.146667pt;}
.yf1{bottom:230.466667pt;}
.y129{bottom:237.506667pt;}
.y161{bottom:238.786667pt;}
.y2d{bottom:239.746667pt;}
.y92{bottom:242.306667pt;}
.yc2{bottom:243.906667pt;}
.y5f{bottom:246.786667pt;}
.y128{bottom:252.866667pt;}
.y160{bottom:254.146667pt;}
.y2c{bottom:256.706667pt;}
.y91{bottom:259.266667pt;}
.yc1{bottom:260.546667pt;}
.y5e{bottom:263.746667pt;}
.y127{bottom:268.226667pt;}
.y15f{bottom:269.506667pt;}
.y2b{bottom:273.346667pt;}
.y90{bottom:275.906667pt;}
.yc0{bottom:277.506667pt;}
.y5d{bottom:280.706667pt;}
.y126{bottom:283.586667pt;}
.y15e{bottom:284.893333pt;}
.y2a{bottom:290.333333pt;}
.y8f{bottom:292.893333pt;}
.ybf{bottom:294.493333pt;}
.y5c{bottom:297.373333pt;}
.y125{bottom:298.973333pt;}
.y15d{bottom:300.253333pt;}
.y29{bottom:307.293333pt;}
.y8e{bottom:309.853333pt;}
.ybe{bottom:311.453333pt;}
.y5b{bottom:314.333333pt;}
.y15c{bottom:315.613333pt;}
.y28{bottom:323.933333pt;}
.y8d{bottom:326.493333pt;}
.ybd{bottom:328.093333pt;}
.y124{bottom:329.693333pt;}
.y15b{bottom:330.973333pt;}
.y5a{bottom:331.293333pt;}
.y27{bottom:340.893333pt;}
.y8c{bottom:343.453333pt;}
.ybc{bottom:345.053333pt;}
.y15a{bottom:346.333333pt;}
.y59{bottom:348.253333pt;}
.y26{bottom:357.853333pt;}
.y123{bottom:360.093333pt;}
.y8b{bottom:360.413333pt;}
.y159{bottom:361.693333pt;}
.ybb{bottom:362.013333pt;}
.y58{bottom:364.893333pt;}
.y109{bottom:372.893333pt;}
.y25{bottom:374.493333pt;}
.y122{bottom:375.453333pt;}
.y158{bottom:377.053333pt;}
.y8a{bottom:377.373333pt;}
.yba{bottom:378.653333pt;}
.y57{bottom:381.853333pt;}
.y108{bottom:389.533333pt;}
.y121{bottom:390.493333pt;}
.y24{bottom:391.453333pt;}
.y157{bottom:392.093333pt;}
.y89{bottom:394.013333pt;}
.yb9{bottom:395.613333pt;}
.y56{bottom:398.853333pt;}
.y107{bottom:406.533333pt;}
.y120{bottom:406.853333pt;}
.y156{bottom:407.493333pt;}
.y23{bottom:408.453333pt;}
.y88{bottom:411.013333pt;}
.yb8{bottom:412.613333pt;}
.y55{bottom:415.493333pt;}
.y155{bottom:422.853333pt;}
.y106{bottom:423.493333pt;}
.y11f{bottom:424.773333pt;}
.y22{bottom:425.413333pt;}
.y87{bottom:427.973333pt;}
.yb7{bottom:429.253333pt;}
.ye0{bottom:431.173333pt;}
.y54{bottom:432.453333pt;}
.y154{bottom:438.213333pt;}
.y105{bottom:440.453333pt;}
.y21{bottom:442.053333pt;}
.y86{bottom:444.613333pt;}
.yb6{bottom:446.213333pt;}
.ydf{bottom:447.813333pt;}
.y53{bottom:449.413333pt;}
.y153{bottom:453.573333pt;}
.y104{bottom:457.093333pt;}
.y20{bottom:459.013333pt;}
.y85{bottom:461.573333pt;}
.yb5{bottom:463.173333pt;}
.y52{bottom:466.053333pt;}
.y152{bottom:468.933333pt;}
.y103{bottom:473.733333pt;}
.y11e{bottom:474.053333pt;}
.y1f{bottom:476.613333pt;}
.yde{bottom:478.213333pt;}
.y84{bottom:478.533333pt;}
.yb4{bottom:480.133333pt;}
.y51{bottom:483.013333pt;}
.y151{bottom:484.293333pt;}
.y102{bottom:491.013333pt;}
.ydd{bottom:493.573333pt;}
.y83{bottom:495.493333pt;}
.yb3{bottom:496.773333pt;}
.y1e{bottom:497.413333pt;}
.yf0{bottom:498.373333pt;}
.y150{bottom:499.653333pt;}
.y50{bottom:499.973333pt;}
.y11d{bottom:507.653333pt;}
.ydc{bottom:508.960000pt;}
.y101{bottom:509.280000pt;}
.y82{bottom:512.160000pt;}
.y1d{bottom:513.760000pt;}
.y14f{bottom:515.040000pt;}
.yef{bottom:515.360000pt;}
.y4f{bottom:516.960000pt;}
.ydb{bottom:524.320000pt;}
.y11c{bottom:524.640000pt;}
.y100{bottom:526.240000pt;}
.y1c{bottom:529.120000pt;}
.y14e{bottom:530.400000pt;}
.yb2{bottom:530.720000pt;}
.yee{bottom:532.320000pt;}
.y4e{bottom:533.600000pt;}
.yda{bottom:539.680000pt;}
.y11b{bottom:541.600000pt;}
.yff{bottom:543.200000pt;}
.y14d{bottom:545.760000pt;}
.y81{bottom:546.080000pt;}
.y1b{bottom:546.720000pt;}
.yb1{bottom:547.360000pt;}
.yed{bottom:548.960000pt;}
.y4d{bottom:550.560000pt;}
.yd9{bottom:556.960000pt;}
.y11a{bottom:558.560000pt;}
.yfe{bottom:559.840000pt;}
.y14c{bottom:561.120000pt;}
.y80{bottom:562.720000pt;}
.yb0{bottom:564.320000pt;}
.yec{bottom:565.920000pt;}
.y1a{bottom:566.240000pt;}
.y4c{bottom:567.520000pt;}
.y119{bottom:575.200000pt;}
.y14b{bottom:576.160000pt;}
.yfd{bottom:576.800000pt;}
.y7f{bottom:579.680000pt;}
.y10f{bottom:581.280000pt;}
.y19{bottom:582.880000pt;}
.y4b{bottom:584.160000pt;}
.y14a{bottom:591.520000pt;}
.y118{bottom:592.160000pt;}
.yd8{bottom:593.760000pt;}
.y7e{bottom:596.640000pt;}
.y18{bottom:598.240000pt;}
.yeb{bottom:599.520000pt;}
.y4a{bottom:601.120000pt;}
.y149{bottom:606.880000pt;}
.yd6{bottom:607.840000pt;}
.y117{bottom:609.120000pt;}
.yfc{bottom:610.400000pt;}
.y7d{bottom:613.280000pt;}
.y17{bottom:613.600000pt;}
.yaf{bottom:614.880000pt;}
.yea{bottom:616.480000pt;}
.y49{bottom:618.080000pt;}
.y148{bottom:622.266667pt;}
.y116{bottom:625.466667pt;}
.yfb{bottom:627.066667pt;}
.y16{bottom:628.986667pt;}
.y7c{bottom:630.266667pt;}
.yae{bottom:631.866667pt;}
.yd4{bottom:633.466667pt;}
.y48{bottom:635.066667pt;}
.y147{bottom:637.626667pt;}
.yfa{bottom:642.746667pt;}
.y115{bottom:643.386667pt;}
.y15{bottom:644.346667pt;}
.y7b{bottom:647.226667pt;}
.yad{bottom:648.826667pt;}
.ye9{bottom:650.106667pt;}
.y47{bottom:651.706667pt;}
.y146{bottom:652.986667pt;}
.yf9{bottom:656.186667pt;}
.yd3{bottom:659.066667pt;}
.y14{bottom:659.706667pt;}
.y7a{bottom:664.186667pt;}
.yac{bottom:665.466667pt;}
.y10e{bottom:665.786667pt;}
.ye8{bottom:667.066667pt;}
.y145{bottom:668.346667pt;}
.y46{bottom:668.666667pt;}
.yd2{bottom:674.426667pt;}
.y13{bottom:675.066667pt;}
.y79{bottom:680.826667pt;}
.y114{bottom:681.146667pt;}
.yab{bottom:682.426667pt;}
.y144{bottom:683.706667pt;}
.ye7{bottom:684.026667pt;}
.y45{bottom:685.626667pt;}
.y12{bottom:690.106667pt;}
.y78{bottom:697.786667pt;}
.y113{bottom:698.106667pt;}
.y143{bottom:699.066667pt;}
.yaa{bottom:699.386667pt;}
.ye6{bottom:700.986667pt;}
.y44{bottom:702.266667pt;}
.yd0{bottom:705.146667pt;}
.y11{bottom:705.466667pt;}
.y142{bottom:714.426667pt;}
.y77{bottom:714.746667pt;}
.y9a{bottom:715.386667pt;}
.ya9{bottom:716.346667pt;}
.ye5{bottom:717.626667pt;}
.y43{bottom:719.226667pt;}
.y10{bottom:720.826667pt;}
.y141{bottom:729.786667pt;}
.y76{bottom:731.386667pt;}
.y112{bottom:732.026667pt;}
.ya8{bottom:734.626667pt;}
.yf{bottom:736.226667pt;}
.y140{bottom:744.866667pt;}
.y75{bottom:748.386667pt;}
.y111{bottom:749.666667pt;}
.ycf{bottom:751.266667pt;}
.ye{bottom:751.586667pt;}
.y42{bottom:752.866667pt;}
.y13f{bottom:760.226667pt;}
.y74{bottom:765.346667pt;}
.yd{bottom:767.266667pt;}
.ya7{bottom:768.226667pt;}
.y41{bottom:769.826667pt;}
.y13e{bottom:775.586667pt;}
.y110{bottom:778.786667pt;}
.y73{bottom:781.986667pt;}
.yc{bottom:784.546667pt;}
.ye4{bottom:784.866667pt;}
.ya6{bottom:785.186667pt;}
.y40{bottom:786.786667pt;}
.y13d{bottom:790.946667pt;}
.y72{bottom:798.946667pt;}
.ye3{bottom:802.146667pt;}
.y3f{bottom:803.746667pt;}
.yb{bottom:804.066667pt;}
.y13c{bottom:806.306667pt;}
.ycb{bottom:813.346667pt;}
.y71{bottom:815.906667pt;}
.ya5{bottom:818.786667pt;}
.y3e{bottom:820.386667pt;}
.ya{bottom:821.346667pt;}
.y13b{bottom:821.666667pt;}
.y70{bottom:832.866667pt;}
.ya4{bottom:835.746667pt;}
.y13a{bottom:837.026667pt;}
.y3d{bottom:837.346667pt;}
.y9{bottom:839.906667pt;}
.y6f{bottom:849.533333pt;}
.y139{bottom:852.413333pt;}
.ya3{bottom:852.733333pt;}
.y3c{bottom:854.333333pt;}
.y8{bottom:858.173333pt;}
.y6e{bottom:866.493333pt;}
.y138{bottom:867.773333pt;}
.ya2{bottom:869.693333pt;}
.y3b{bottom:870.973333pt;}
.y7{bottom:876.733333pt;}
.y137{bottom:883.133333pt;}
.y6d{bottom:883.453333pt;}
.ya1{bottom:886.333333pt;}
.y3a{bottom:887.933333pt;}
.y6{bottom:896.893333pt;}
.y136{bottom:898.493333pt;}
.y6c{bottom:900.093333pt;}
.ya0{bottom:903.293333pt;}
.y39{bottom:904.893333pt;}
.y135{bottom:913.853333pt;}
.y6b{bottom:917.053333pt;}
.y5{bottom:919.613333pt;}
.y9f{bottom:920.253333pt;}
.y38{bottom:921.533333pt;}
.y134{bottom:928.893333pt;}
.y6a{bottom:934.013333pt;}
.y9e{bottom:936.893333pt;}
.y37{bottom:938.493333pt;}
.y133{bottom:944.253333pt;}
.y4{bottom:949.373333pt;}
.y69{bottom:950.973333pt;}
.y9d{bottom:953.853333pt;}
.y36{bottom:955.453333pt;}
.y132{bottom:959.653333pt;}
.yca{bottom:967.333333pt;}
.y68{bottom:967.653333pt;}
.yf8{bottom:970.533333pt;}
.y9c{bottom:970.853333pt;}
.y35{bottom:972.453333pt;}
.y131{bottom:975.013333pt;}
.y3{bottom:979.493333pt;}
.y67{bottom:985.253333pt;}
.y9b{bottom:987.813333pt;}
.y10d{bottom:988.133333pt;}
.y34{bottom:989.093333pt;}
.y130{bottom:990.373333pt;}
.y1{bottom:1014.373333pt;}
.hf{height:15.360000pt;}
.h13{height:25.600000pt;}
.h14{height:25.632000pt;}
.h11{height:30.720000pt;}
.h17{height:39.876250pt;}
.h16{height:44.648750pt;}
.h12{height:46.112000pt;}
.h19{height:48.195000pt;}
.h8{height:52.736250pt;}
.h2{height:52.762500pt;}
.h10{height:54.180000pt;}
.h18{height:55.256809pt;}
.h6{height:57.787500pt;}
.h9{height:59.340000pt;}
.hc{height:60.519362pt;}
.h5{height:62.812500pt;}
.h15{height:64.500000pt;}
.hb{height:66.625000pt;}
.h7{height:67.803750pt;}
.h4{height:67.837500pt;}
.h3{height:71.950625pt;}
.ha{height:77.285000pt;}
.hd{height:94.422500pt;}
.he{height:97.467500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:115.584000pt;}
.wa{width:116.224000pt;}
.w3{width:136.066667pt;}
.w7{width:136.706667pt;}
.w4{width:153.346667pt;}
.w8{width:153.986667pt;}
.w5{width:157.506667pt;}
.w9{width:158.146667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:7.680000pt;}
.x19{left:8.640000pt;}
.x1d{left:9.920000pt;}
.x17{left:10.880000pt;}
.x1f{left:12.160000pt;}
.x15{left:15.360000pt;}
.x16{left:16.992000pt;}
.x27{left:21.440000pt;}
.x28{left:23.360000pt;}
.x1b{left:25.954667pt;}
.x20{left:26.914667pt;}
.x2c{left:28.194667pt;}
.x2f{left:29.154667pt;}
.x26{left:34.266667pt;}
.x2a{left:36.514667pt;}
.x11{left:37.474667pt;}
.x31{left:41.946667pt;}
.x21{left:44.514667pt;}
.x18{left:47.080000pt;}
.x29{left:52.186667pt;}
.x1a{left:53.146667pt;}
.x2b{left:55.066667pt;}
.x2d{left:56.680000pt;}
.x2e{left:58.586667pt;}
.x1c{left:59.560000pt;}
.x1e{left:61.466667pt;}
.x30{left:63.066667pt;}
.x23{left:74.920000pt;}
.x24{left:77.160000pt;}
.x25{left:79.066667pt;}
.x1{left:109.471988pt;}
.x2{left:111.391988pt;}
.xb{left:112.351988pt;}
.x10{left:114.912000pt;}
.x4{left:128.063988pt;}
.xc{left:133.506655pt;}
.x32{left:137.986655pt;}
.x9{left:153.026655pt;}
.x5{left:156.546655pt;}
.xd{left:157.506655pt;}
.x7{left:181.826655pt;}
.xe{left:208.733322pt;}
.x35{left:238.173322pt;}
.x6{left:240.093322pt;}
.x37{left:249.373322pt;}
.x12{left:251.613333pt;}
.x39{left:266.013322pt;}
.x3b{left:275.293322pt;}
.xf{left:302.853322pt;}
.x8{left:328.453322pt;}
.x3{left:396.959988pt;}
.x13{left:405.600000pt;}
.x14{left:563.746667pt;}
.x34{left:588.706655pt;}
.x36{left:590.946655pt;}
.x3a{left:598.333322pt;}
.x38{left:599.933322pt;}
.x33{left:609.853322pt;}
.xa{left:670.973322pt;}
}




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