
    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_915d8f3624f4c05c99c1c188.woff')format("woff");}.ff1{font-family:ff1;line-height:1.255859;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_4ee2b8f0658de51cfa35f0c7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.099609;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_d00b6028671cc88c8967c0b7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.255859;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_3c874b8140ce66cb4e79a7cb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9852749ec8cd8e1fe509b705.woff')format("woff");}.ff6{font-family:ff6;line-height:1.099609;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_7b2980cd77e756e687b5a459.woff')format("woff");}.ff7{font-family:ff7;line-height:1.263184;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_d0ab7956ebc8a9f73f084bdc.woff')format("woff");}.ff8{font-family:ff8;line-height:1.263184;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls1e{letter-spacing:-1.008000px;}
.ls3c{letter-spacing:-0.720000px;}
.ls48{letter-spacing:-0.648000px;}
.ls4e{letter-spacing:-0.576000px;}
.ls4b{letter-spacing:-0.504000px;}
.lsc{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.325200px;}
.ls11{letter-spacing:-0.295200px;}
.ls1c{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.256800px;}
.ls3b{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.207600px;}
.ls37{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.072000px;}
.ls49{letter-spacing:-0.000003px;}
.ls9{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.000001px;}
.ls2{letter-spacing:0.015840px;}
.ls46{letter-spacing:0.036000px;}
.ls20{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.063360px;}
.lsa{letter-spacing:0.063600px;}
.ls36{letter-spacing:0.072000px;}
.ls53{letter-spacing:0.126000px;}
.ls1b{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.154800px;}
.lsf{letter-spacing:0.178800px;}
.ls18{letter-spacing:0.216000px;}
.ls54{letter-spacing:0.259800px;}
.ls55{letter-spacing:0.265200px;}
.ls52{letter-spacing:0.269280px;}
.ls17{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.360720px;}
.ls1d{letter-spacing:0.432000px;}
.ls45{letter-spacing:0.468000px;}
.ls27{letter-spacing:0.648000px;}
.ls4a{letter-spacing:0.720000px;}
.ls2e{letter-spacing:0.773280px;}
.lsb{letter-spacing:0.786000px;}
.ls8{letter-spacing:0.846000px;}
.ls56{letter-spacing:1.008000px;}
.ls1a{letter-spacing:1.368000px;}
.ls58{letter-spacing:1.656000px;}
.ls3d{letter-spacing:2.088000px;}
.ls23{letter-spacing:2.808000px;}
.ls29{letter-spacing:3.528000px;}
.ls16{letter-spacing:4.248000px;}
.ls24{letter-spacing:4.968000px;}
.ls21{letter-spacing:5.664000px;}
.ls22{letter-spacing:5.688000px;}
.ls39{letter-spacing:5.868000px;}
.ls30{letter-spacing:6.408000px;}
.ls31{letter-spacing:7.128000px;}
.ls2c{letter-spacing:7.848000px;}
.ls3{letter-spacing:8.407440px;}
.ls51{letter-spacing:8.544000px;}
.ls34{letter-spacing:8.568000px;}
.ls4f{letter-spacing:9.288000px;}
.ls28{letter-spacing:10.008000px;}
.ls2f{letter-spacing:10.728000px;}
.ls2d{letter-spacing:11.448000px;}
.ls12{letter-spacing:12.168000px;}
.ls44{letter-spacing:12.888000px;}
.ls7{letter-spacing:13.447440px;}
.ls2a{letter-spacing:13.608000px;}
.ls50{letter-spacing:14.328000px;}
.ls26{letter-spacing:15.048000px;}
.ls2b{letter-spacing:15.768000px;}
.ls25{letter-spacing:16.488000px;}
.ls40{letter-spacing:16.668000px;}
.ls3f{letter-spacing:17.208000px;}
.ls35{letter-spacing:17.928000px;}
.ls47{letter-spacing:18.648000px;}
.ls38{letter-spacing:19.368000px;}
.ls32{letter-spacing:20.088000px;}
.ls4d{letter-spacing:22.248000px;}
.ls33{letter-spacing:22.944000px;}
.ls13{letter-spacing:25.128000px;}
.ls19{letter-spacing:28.008000px;}
.ls4c{letter-spacing:30.168000px;}
.ls42{letter-spacing:30.888000px;}
.ls43{letter-spacing:31.608000px;}
.ls14{letter-spacing:32.328000px;}
.ls41{letter-spacing:43.848000px;}
.ls3e{letter-spacing:48.168000px;}
.ls57{letter-spacing:151.128000px;}
.ls1f{letter-spacing:162.864000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-72.000000px;}
.ws3{word-spacing:-22.744800px;}
.ws1d{word-spacing:-20.952000px;}
.ws17{word-spacing:-20.592000px;}
.ws1a{word-spacing:-20.448000px;}
.ws15{word-spacing:-20.304000px;}
.ws1c{word-spacing:-20.232001px;}
.ws6{word-spacing:-20.232000px;}
.ws1e{word-spacing:-20.231997px;}
.ws1b{word-spacing:-20.160000px;}
.ws13{word-spacing:-20.088000px;}
.ws14{word-spacing:-20.016000px;}
.ws19{word-spacing:-19.944000px;}
.ws16{word-spacing:-19.584000px;}
.wsc{word-spacing:-19.440000px;}
.ws4{word-spacing:-18.613440px;}
.ws5{word-spacing:-18.288240px;}
.wsf{word-spacing:-18.072000px;}
.ws10{word-spacing:-18.000000px;}
.ws20{word-spacing:-17.928000px;}
.ws12{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.ws18{word-spacing:-17.783997px;}
.ws0{word-spacing:-17.152560px;}
.ws1f{word-spacing:-17.064000px;}
.ws23{word-spacing:-17.052360px;}
.ws7{word-spacing:-16.947360px;}
.ws1{word-spacing:-16.792560px;}
.wsa{word-spacing:-16.497360px;}
.ws2{word-spacing:-16.432560px;}
.ws8{word-spacing:-16.314000px;}
.wsb{word-spacing:-16.135200px;}
.ws9{word-spacing:-15.878400px;}
.ws22{word-spacing:-14.328000px;}
.ws24{word-spacing:-11.999760px;}
.ws21{word-spacing:-11.734560px;}
.wsd{word-spacing:0.000000px;}
._24{margin-left:-19.158480px;}
._27{margin-left:-6.649200px;}
._20{margin-left:-5.040000px;}
._c{margin-left:-3.597840px;}
._2{margin-left:-2.450160px;}
._1{margin-left:-1.284240px;}
._0{width:1.314720px;}
._5{width:2.442720px;}
._b{width:3.503280px;}
._7{width:5.049120px;}
._6{width:6.095520px;}
._1f{width:7.125840px;}
._a{width:8.270400px;}
._8{width:9.740880px;}
._9{width:11.095680px;}
._12{width:12.224160px;}
._3{width:13.983840px;}
._4{width:15.641760px;}
._23{width:17.052240px;}
._13{width:18.432000px;}
._28{width:19.829280px;}
._d{width:21.240000px;}
._22{width:22.486800px;}
._14{width:24.552000px;}
._15{width:25.632000px;}
._1e{width:27.360000px;}
._21{width:28.500240px;}
._e{width:30.144000px;}
._f{width:31.488000px;}
._1d{width:32.494800px;}
._17{width:35.208000px;}
._16{width:36.216000px;}
._18{width:37.296000px;}
._29{width:41.976000px;}
._26{width:43.848000px;}
._2a{width:46.584000px;}
._19{width:47.664000px;}
._25{width:48.883440px;}
._1a{width:50.328000px;}
._1b{width:52.056000px;}
._11{width:55.152000px;}
._10{width:56.448000px;}
._1c{width:63.432000px;}
._2c{width:149.700000px;}
._2b{width:151.056000px;}
.fc2{color:transparent;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.990000px;}
.y2{bottom:4.350000px;}
.y6a{bottom:19.260000px;}
.y80{bottom:19.290000px;}
.y76{bottom:19.305000px;}
.y74{bottom:19.440000px;}
.y89{bottom:19.485000px;}
.y5{bottom:25.410000px;}
.y87{bottom:25.785000px;}
.y78{bottom:38.160000px;}
.y4{bottom:47.010000px;}
.y86{bottom:50.625000px;}
.y3{bottom:68.430000px;}
.y71{bottom:75.780000px;}
.y11{bottom:76.176000px;}
.y10{bottom:95.256000px;}
.yf{bottom:116.136000px;}
.y10b{bottom:120.276000px;}
.y67{bottom:122.436000px;}
.y5a{bottom:128.196000px;}
.yb2{bottom:129.996000px;}
.yd2{bottom:135.216000px;}
.ye{bottom:137.736000px;}
.y10a{bottom:146.016000px;}
.y8e{bottom:146.736000px;}
.y7c{bottom:151.200000px;}
.y59{bottom:154.110000px;}
.y64{bottom:155.910000px;}
.yd{bottom:159.150000px;}
.yd1{bottom:161.130000px;}
.yb1{bottom:167.970000px;}
.y109{bottom:171.930000px;}
.y6d{bottom:176.265000px;}
.y58{bottom:179.850000px;}
.yc{bottom:180.750000px;}
.y63{bottom:181.650000px;}
.y8d{bottom:184.530000px;}
.yf2{bottom:186.510000px;}
.y66{bottom:189.390000px;}
.yd0{bottom:191.370000px;}
.yb0{bottom:193.710000px;}
.y108{bottom:197.670000px;}
.y6c{bottom:201.285000px;}
.yb{bottom:202.350000px;}
.y57{bottom:205.770000px;}
.y62{bottom:207.570000px;}
.yf1{bottom:212.430000px;}
.ycf{bottom:217.110000px;}
.yaf{bottom:219.630000px;}
.y8c{bottom:222.330000px;}
.y65{bottom:222.870000px;}
.y107{bottom:223.590000px;}
.ya{bottom:223.770000px;}
.y56{bottom:231.510000px;}
.y61{bottom:233.310000px;}
.yf0{bottom:238.170000px;}
.yce{bottom:243.030000px;}
.y9{bottom:245.370000px;}
.y106{bottom:249.330000px;}
.y55{bottom:257.430000px;}
.y60{bottom:259.230000px;}
.y8b{bottom:260.130000px;}
.yef{bottom:268.590000px;}
.yae{bottom:271.110000px;}
.ycd{bottom:273.270000px;}
.y105{bottom:275.070000px;}
.y54{bottom:283.170000px;}
.y8{bottom:284.070000px;}
.y5f{bottom:284.970000px;}
.y8a{bottom:293.970000px;}
.yee{bottom:294.330000px;}
.yad{bottom:297.030000px;}
.ycc{bottom:299.190000px;}
.y104{bottom:300.990000px;}
.y53{bottom:309.090000px;}
.y5e{bottom:310.890000px;}
.y32{bottom:319.890000px;}
.yed{bottom:320.070000px;}
.yac{bottom:322.770000px;}
.y103{bottom:326.730000px;}
.ycb{bottom:329.430000px;}
.y85{bottom:331.590000px;}
.y52{bottom:334.830000px;}
.y5d{bottom:336.675000px;}
.y31{bottom:345.675000px;}
.yab{bottom:348.735000px;}
.yec{bottom:350.535000px;}
.y102{bottom:352.695000px;}
.yca{bottom:355.395000px;}
.y51{bottom:360.615000px;}
.y88{bottom:369.435000px;}
.y30{bottom:371.415000px;}
.y5c{bottom:374.475000px;}
.yeb{bottom:376.275000px;}
.y101{bottom:378.435000px;}
.yc9{bottom:381.135000px;}
.y50{bottom:386.535000px;}
.y5b{bottom:400.215000px;}
.yaa{bottom:400.395000px;}
.yea{bottom:402.195000px;}
.y7b{bottom:407.055000px;}
.y2f{bottom:409.395000px;}
.y4f{bottom:412.275000px;}
.y100{bottom:416.235000px;}
.ya9{bottom:426.135000px;}
.ye9{bottom:432.435000px;}
.yc8{bottom:432.795000px;}
.y4e{bottom:438.195000px;}
.y84{bottom:444.675000px;}
.y2e{bottom:449.715000px;}
.ya8{bottom:452.055000px;}
.yff{bottom:454.035000px;}
.ye8{bottom:458.355000px;}
.yc7{bottom:463.215000px;}
.y4d{bottom:463.935000px;}
.y2d{bottom:471.315000px;}
.ya7{bottom:477.795000px;}
.y83{bottom:482.475000px;}
.ye7{bottom:484.095000px;}
.yc6{bottom:488.955000px;}
.y4c{bottom:489.855000px;}
.yfe{bottom:492.015000px;}
.y2c{bottom:492.735000px;}
.ya6{bottom:503.715000px;}
.ye6{bottom:510.015000px;}
.y2b{bottom:514.335000px;}
.yc5{bottom:514.695000px;}
.y4b{bottom:515.595000px;}
.y82{bottom:520.095000px;}
.yfd{bottom:522.255000px;}
.ya5{bottom:529.455000px;}
.y2a{bottom:535.755000px;}
.ye5{bottom:540.255000px;}
.y4a{bottom:541.515000px;}
.yc4{bottom:545.115000px;}
.yfc{bottom:552.675000px;}
.ya4{bottom:555.195000px;}
.y29{bottom:557.355000px;}
.y81{bottom:557.715000px;}
.ye4{bottom:566.175000px;}
.y49{bottom:567.255000px;}
.yc3{bottom:570.855000px;}
.y28{bottom:578.775000px;}
.ya3{bottom:581.115000px;}
.yfb{bottom:582.915000px;}
.ye3{bottom:591.915000px;}
.y48{bottom:593.175000px;}
.y7f{bottom:595.515000px;}
.y27{bottom:600.375000px;}
.yc2{bottom:601.275000px;}
.ya2{bottom:606.885000px;}
.yfa{bottom:608.685000px;}
.y47{bottom:618.945000px;}
.y26{bottom:622.005000px;}
.ye2{bottom:622.185000px;}
.yc1{bottom:627.045000px;}
.ya1{bottom:632.805000px;}
.y7e{bottom:633.165000px;}
.yf9{bottom:639.105000px;}
.y25{bottom:643.425000px;}
.y46{bottom:644.685000px;}
.ye1{bottom:648.105000px;}
.yc0{bottom:652.965000px;}
.ya0{bottom:658.545000px;}
.yf8{bottom:664.845000px;}
.y24{bottom:665.025000px;}
.y45{bottom:670.605000px;}
.y7d{bottom:670.785000px;}
.ye0{bottom:673.845000px;}
.ybf{bottom:683.205000px;}
.y9f{bottom:684.465000px;}
.y23{bottom:686.445000px;}
.yf7{bottom:690.765000px;}
.y44{bottom:696.345000px;}
.ydf{bottom:699.765000px;}
.y22{bottom:708.045000px;}
.y6b{bottom:708.585000px;}
.ybe{bottom:709.125000px;}
.y9e{bottom:710.205000px;}
.yf6{bottom:721.005000px;}
.y43{bottom:722.265000px;}
.yde{bottom:725.505000px;}
.y21{bottom:729.465000px;}
.y9d{bottom:736.125000px;}
.ybd{bottom:739.365000px;}
.y7a{bottom:746.205000px;}
.yf5{bottom:746.925000px;}
.y42{bottom:748.005000px;}
.y20{bottom:751.065000px;}
.ydd{bottom:755.925000px;}
.y9c{bottom:761.865000px;}
.ybc{bottom:765.285000px;}
.y1f{bottom:772.485000px;}
.y41{bottom:773.925000px;}
.yf4{bottom:777.165000px;}
.ydc{bottom:781.665000px;}
.y79{bottom:783.825000px;}
.y9b{bottom:787.785000px;}
.y1e{bottom:794.085000px;}
.ybb{bottom:795.525000px;}
.y40{bottom:799.665000px;}
.yf3{bottom:803.085000px;}
.ydb{bottom:807.585000px;}
.y9a{bottom:813.525000px;}
.y1d{bottom:816.405000px;}
.yba{bottom:821.265000px;}
.y77{bottom:821.445000px;}
.y3f{bottom:825.585000px;}
.yda{bottom:833.325000px;}
.y99{bottom:839.265000px;}
.y1c{bottom:841.785000px;}
.y3e{bottom:851.325000px;}
.yb9{bottom:851.685000px;}
.y75{bottom:859.245000px;}
.y98{bottom:865.185000px;}
.y1b{bottom:865.365000px;}
.y3d{bottom:877.290000px;}
.yb8{bottom:877.470000px;}
.y1a{bottom:889.170000px;}
.yd9{bottom:889.530000px;}
.y97{bottom:890.970000px;}
.y70{bottom:896.910000px;}
.y3c{bottom:903.030000px;}
.yb7{bottom:907.890000px;}
.y19{bottom:912.750000px;}
.yd8{bottom:915.450000px;}
.y96{bottom:916.890000px;}
.y3b{bottom:928.950000px;}
.yb6{bottom:933.630000px;}
.y73{bottom:934.530000px;}
.y18{bottom:936.510000px;}
.y95{bottom:942.630000px;}
.yd7{bottom:945.690000px;}
.y3a{bottom:954.690000px;}
.y17{bottom:960.090000px;}
.yb5{bottom:964.050000px;}
.y94{bottom:968.550000px;}
.yd6{bottom:971.430000px;}
.y72{bottom:972.330000px;}
.y39{bottom:980.430000px;}
.y16{bottom:983.490000px;}
.yb4{bottom:989.790000px;}
.y93{bottom:994.290000px;}
.yd5{bottom:1001.850000px;}
.y15{bottom:1005.810000px;}
.y38{bottom:1006.350000px;}
.y6f{bottom:1009.950000px;}
.yb3{bottom:1015.710000px;}
.y92{bottom:1020.210000px;}
.yd4{bottom:1027.590000px;}
.y37{bottom:1032.090000px;}
.y14{bottom:1032.270000px;}
.y91{bottom:1045.950000px;}
.y6e{bottom:1047.570000px;}
.yd3{bottom:1053.510000px;}
.y36{bottom:1058.010000px;}
.y13{bottom:1062.510000px;}
.y90{bottom:1071.870000px;}
.y35{bottom:1083.750000px;}
.y69{bottom:1085.370000px;}
.y12{bottom:1091.490000px;}
.y8f{bottom:1097.610000px;}
.y34{bottom:1109.670000px;}
.y7{bottom:1115.790000px;}
.y1{bottom:1134.330000px;}
.y33{bottom:1135.410000px;}
.y68{bottom:1138.860000px;}
.hd{height:36.900000px;}
.h11{height:36.936000px;}
.h10{height:37.080000px;}
.h16{height:37.116000px;}
.h7{height:43.506914px;}
.h4{height:51.618867px;}
.h6{height:55.239258px;}
.h3{height:61.131445px;}
.ha{height:62.191406px;}
.h5{height:62.402344px;}
.h8{height:67.760156px;}
.h9{height:72.763945px;}
.hb{height:73.652344px;}
.hc{height:73.968750px;}
.h13{height:74.520000px;}
.h15{height:74.700000px;}
.h12{height:74.736000px;}
.h2{height:86.076000px;}
.hf{height:149.940000px;}
.h14{height:300.630000px;}
.he{height:375.870000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:50.796000px;}
.w6{width:224.670000px;}
.w4{width:329.610000px;}
.w2{width:331.950000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.xd{left:48.054000px;}
.xf{left:54.180000px;}
.x11{left:80.820000px;}
.x8{left:104.615987px;}
.x1{left:106.416000px;}
.x12{left:148.895987px;}
.x9{left:160.409987px;}
.x2{left:176.799000px;}
.xc{left:258.149987px;}
.xe{left:332.535000px;}
.x3{left:438.375000px;}
.x7{left:446.474987px;}
.x5{left:489.165000px;}
.x10{left:557.925000px;}
.xb{left:767.489987px;}
.x6{left:777.209987px;}
.xa{left:786.749987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls1e{letter-spacing:-0.896000pt;}
.ls3c{letter-spacing:-0.640000pt;}
.ls48{letter-spacing:-0.576000pt;}
.ls4e{letter-spacing:-0.512000pt;}
.ls4b{letter-spacing:-0.448000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.289067pt;}
.ls11{letter-spacing:-0.262400pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.228267pt;}
.ls3b{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.184533pt;}
.ls37{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls49{letter-spacing:-0.000003pt;}
.ls9{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.000001pt;}
.ls2{letter-spacing:0.014080pt;}
.ls46{letter-spacing:0.032000pt;}
.ls20{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.056320pt;}
.lsa{letter-spacing:0.056533pt;}
.ls36{letter-spacing:0.064000pt;}
.ls53{letter-spacing:0.112000pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.137600pt;}
.lsf{letter-spacing:0.158933pt;}
.ls18{letter-spacing:0.192000pt;}
.ls54{letter-spacing:0.230933pt;}
.ls55{letter-spacing:0.235733pt;}
.ls52{letter-spacing:0.239360pt;}
.ls17{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.320640pt;}
.ls1d{letter-spacing:0.384000pt;}
.ls45{letter-spacing:0.416000pt;}
.ls27{letter-spacing:0.576000pt;}
.ls4a{letter-spacing:0.640000pt;}
.ls2e{letter-spacing:0.687360pt;}
.lsb{letter-spacing:0.698667pt;}
.ls8{letter-spacing:0.752000pt;}
.ls56{letter-spacing:0.896000pt;}
.ls1a{letter-spacing:1.216000pt;}
.ls58{letter-spacing:1.472000pt;}
.ls3d{letter-spacing:1.856000pt;}
.ls23{letter-spacing:2.496000pt;}
.ls29{letter-spacing:3.136000pt;}
.ls16{letter-spacing:3.776000pt;}
.ls24{letter-spacing:4.416000pt;}
.ls21{letter-spacing:5.034667pt;}
.ls22{letter-spacing:5.056000pt;}
.ls39{letter-spacing:5.216000pt;}
.ls30{letter-spacing:5.696000pt;}
.ls31{letter-spacing:6.336000pt;}
.ls2c{letter-spacing:6.976000pt;}
.ls3{letter-spacing:7.473280pt;}
.ls51{letter-spacing:7.594667pt;}
.ls34{letter-spacing:7.616000pt;}
.ls4f{letter-spacing:8.256000pt;}
.ls28{letter-spacing:8.896000pt;}
.ls2f{letter-spacing:9.536000pt;}
.ls2d{letter-spacing:10.176000pt;}
.ls12{letter-spacing:10.816000pt;}
.ls44{letter-spacing:11.456000pt;}
.ls7{letter-spacing:11.953280pt;}
.ls2a{letter-spacing:12.096000pt;}
.ls50{letter-spacing:12.736000pt;}
.ls26{letter-spacing:13.376000pt;}
.ls2b{letter-spacing:14.016000pt;}
.ls25{letter-spacing:14.656000pt;}
.ls40{letter-spacing:14.816000pt;}
.ls3f{letter-spacing:15.296000pt;}
.ls35{letter-spacing:15.936000pt;}
.ls47{letter-spacing:16.576000pt;}
.ls38{letter-spacing:17.216000pt;}
.ls32{letter-spacing:17.856000pt;}
.ls4d{letter-spacing:19.776000pt;}
.ls33{letter-spacing:20.394667pt;}
.ls13{letter-spacing:22.336000pt;}
.ls19{letter-spacing:24.896000pt;}
.ls4c{letter-spacing:26.816000pt;}
.ls42{letter-spacing:27.456000pt;}
.ls43{letter-spacing:28.096000pt;}
.ls14{letter-spacing:28.736000pt;}
.ls41{letter-spacing:38.976000pt;}
.ls3e{letter-spacing:42.816000pt;}
.ls57{letter-spacing:134.336000pt;}
.ls1f{letter-spacing:144.768000pt;}
.ws11{word-spacing:-64.000000pt;}
.ws3{word-spacing:-20.217600pt;}
.ws1d{word-spacing:-18.624000pt;}
.ws17{word-spacing:-18.304000pt;}
.ws1a{word-spacing:-18.176000pt;}
.ws15{word-spacing:-18.048000pt;}
.ws1c{word-spacing:-17.984001pt;}
.ws6{word-spacing:-17.984000pt;}
.ws1e{word-spacing:-17.983997pt;}
.ws1b{word-spacing:-17.920000pt;}
.ws13{word-spacing:-17.856000pt;}
.ws14{word-spacing:-17.792000pt;}
.ws19{word-spacing:-17.728000pt;}
.ws16{word-spacing:-17.408000pt;}
.wsc{word-spacing:-17.280000pt;}
.ws4{word-spacing:-16.545280pt;}
.ws5{word-spacing:-16.256213pt;}
.wsf{word-spacing:-16.064000pt;}
.ws10{word-spacing:-16.000000pt;}
.ws20{word-spacing:-15.936000pt;}
.ws12{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.ws18{word-spacing:-15.807997pt;}
.ws0{word-spacing:-15.246720pt;}
.ws1f{word-spacing:-15.168000pt;}
.ws23{word-spacing:-15.157653pt;}
.ws7{word-spacing:-15.064320pt;}
.ws1{word-spacing:-14.926720pt;}
.wsa{word-spacing:-14.664320pt;}
.ws2{word-spacing:-14.606720pt;}
.ws8{word-spacing:-14.501333pt;}
.wsb{word-spacing:-14.342400pt;}
.ws9{word-spacing:-14.114133pt;}
.ws22{word-spacing:-12.736000pt;}
.ws24{word-spacing:-10.666453pt;}
.ws21{word-spacing:-10.430720pt;}
.wsd{word-spacing:0.000000pt;}
._24{margin-left:-17.029760pt;}
._27{margin-left:-5.910400pt;}
._20{margin-left:-4.480000pt;}
._c{margin-left:-3.198080pt;}
._2{margin-left:-2.177920pt;}
._1{margin-left:-1.141547pt;}
._0{width:1.168640pt;}
._5{width:2.171307pt;}
._b{width:3.114027pt;}
._7{width:4.488107pt;}
._6{width:5.418240pt;}
._1f{width:6.334080pt;}
._a{width:7.351467pt;}
._8{width:8.658560pt;}
._9{width:9.862827pt;}
._12{width:10.865920pt;}
._3{width:12.430080pt;}
._4{width:13.903787pt;}
._23{width:15.157547pt;}
._13{width:16.384000pt;}
._28{width:17.626027pt;}
._d{width:18.880000pt;}
._22{width:19.988267pt;}
._14{width:21.824000pt;}
._15{width:22.784000pt;}
._1e{width:24.320000pt;}
._21{width:25.333547pt;}
._e{width:26.794667pt;}
._f{width:27.989333pt;}
._1d{width:28.884267pt;}
._17{width:31.296000pt;}
._16{width:32.192000pt;}
._18{width:33.152000pt;}
._29{width:37.312000pt;}
._26{width:38.976000pt;}
._2a{width:41.408000pt;}
._19{width:42.368000pt;}
._25{width:43.451947pt;}
._1a{width:44.736000pt;}
._1b{width:46.272000pt;}
._11{width:49.024000pt;}
._10{width:50.176000pt;}
._1c{width:56.384000pt;}
._2c{width:133.066667pt;}
._2b{width:134.272000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.546667pt;}
.y2{bottom:3.866667pt;}
.y6a{bottom:17.120000pt;}
.y80{bottom:17.146667pt;}
.y76{bottom:17.160000pt;}
.y74{bottom:17.280000pt;}
.y89{bottom:17.320000pt;}
.y5{bottom:22.586667pt;}
.y87{bottom:22.920000pt;}
.y78{bottom:33.920000pt;}
.y4{bottom:41.786667pt;}
.y86{bottom:45.000000pt;}
.y3{bottom:60.826667pt;}
.y71{bottom:67.360000pt;}
.y11{bottom:67.712000pt;}
.y10{bottom:84.672000pt;}
.yf{bottom:103.232000pt;}
.y10b{bottom:106.912000pt;}
.y67{bottom:108.832000pt;}
.y5a{bottom:113.952000pt;}
.yb2{bottom:115.552000pt;}
.yd2{bottom:120.192000pt;}
.ye{bottom:122.432000pt;}
.y10a{bottom:129.792000pt;}
.y8e{bottom:130.432000pt;}
.y7c{bottom:134.400000pt;}
.y59{bottom:136.986667pt;}
.y64{bottom:138.586667pt;}
.yd{bottom:141.466667pt;}
.yd1{bottom:143.226667pt;}
.yb1{bottom:149.306667pt;}
.y109{bottom:152.826667pt;}
.y6d{bottom:156.680000pt;}
.y58{bottom:159.866667pt;}
.yc{bottom:160.666667pt;}
.y63{bottom:161.466667pt;}
.y8d{bottom:164.026667pt;}
.yf2{bottom:165.786667pt;}
.y66{bottom:168.346667pt;}
.yd0{bottom:170.106667pt;}
.yb0{bottom:172.186667pt;}
.y108{bottom:175.706667pt;}
.y6c{bottom:178.920000pt;}
.yb{bottom:179.866667pt;}
.y57{bottom:182.906667pt;}
.y62{bottom:184.506667pt;}
.yf1{bottom:188.826667pt;}
.ycf{bottom:192.986667pt;}
.yaf{bottom:195.226667pt;}
.y8c{bottom:197.626667pt;}
.y65{bottom:198.106667pt;}
.y107{bottom:198.746667pt;}
.ya{bottom:198.906667pt;}
.y56{bottom:205.786667pt;}
.y61{bottom:207.386667pt;}
.yf0{bottom:211.706667pt;}
.yce{bottom:216.026667pt;}
.y9{bottom:218.106667pt;}
.y106{bottom:221.626667pt;}
.y55{bottom:228.826667pt;}
.y60{bottom:230.426667pt;}
.y8b{bottom:231.226667pt;}
.yef{bottom:238.746667pt;}
.yae{bottom:240.986667pt;}
.ycd{bottom:242.906667pt;}
.y105{bottom:244.506667pt;}
.y54{bottom:251.706667pt;}
.y8{bottom:252.506667pt;}
.y5f{bottom:253.306667pt;}
.y8a{bottom:261.306667pt;}
.yee{bottom:261.626667pt;}
.yad{bottom:264.026667pt;}
.ycc{bottom:265.946667pt;}
.y104{bottom:267.546667pt;}
.y53{bottom:274.746667pt;}
.y5e{bottom:276.346667pt;}
.y32{bottom:284.346667pt;}
.yed{bottom:284.506667pt;}
.yac{bottom:286.906667pt;}
.y103{bottom:290.426667pt;}
.ycb{bottom:292.826667pt;}
.y85{bottom:294.746667pt;}
.y52{bottom:297.626667pt;}
.y5d{bottom:299.266667pt;}
.y31{bottom:307.266667pt;}
.yab{bottom:309.986667pt;}
.yec{bottom:311.586667pt;}
.y102{bottom:313.506667pt;}
.yca{bottom:315.906667pt;}
.y51{bottom:320.546667pt;}
.y88{bottom:328.386667pt;}
.y30{bottom:330.146667pt;}
.y5c{bottom:332.866667pt;}
.yeb{bottom:334.466667pt;}
.y101{bottom:336.386667pt;}
.yc9{bottom:338.786667pt;}
.y50{bottom:343.586667pt;}
.y5b{bottom:355.746667pt;}
.yaa{bottom:355.906667pt;}
.yea{bottom:357.506667pt;}
.y7b{bottom:361.826667pt;}
.y2f{bottom:363.906667pt;}
.y4f{bottom:366.466667pt;}
.y100{bottom:369.986667pt;}
.ya9{bottom:378.786667pt;}
.ye9{bottom:384.386667pt;}
.yc8{bottom:384.706667pt;}
.y4e{bottom:389.506667pt;}
.y84{bottom:395.266667pt;}
.y2e{bottom:399.746667pt;}
.ya8{bottom:401.826667pt;}
.yff{bottom:403.586667pt;}
.ye8{bottom:407.426667pt;}
.yc7{bottom:411.746667pt;}
.y4d{bottom:412.386667pt;}
.y2d{bottom:418.946667pt;}
.ya7{bottom:424.706667pt;}
.y83{bottom:428.866667pt;}
.ye7{bottom:430.306667pt;}
.yc6{bottom:434.626667pt;}
.y4c{bottom:435.426667pt;}
.yfe{bottom:437.346667pt;}
.y2c{bottom:437.986667pt;}
.ya6{bottom:447.746667pt;}
.ye6{bottom:453.346667pt;}
.y2b{bottom:457.186667pt;}
.yc5{bottom:457.506667pt;}
.y4b{bottom:458.306667pt;}
.y82{bottom:462.306667pt;}
.yfd{bottom:464.226667pt;}
.ya5{bottom:470.626667pt;}
.y2a{bottom:476.226667pt;}
.ye5{bottom:480.226667pt;}
.y4a{bottom:481.346667pt;}
.yc4{bottom:484.546667pt;}
.yfc{bottom:491.266667pt;}
.ya4{bottom:493.506667pt;}
.y29{bottom:495.426667pt;}
.y81{bottom:495.746667pt;}
.ye4{bottom:503.266667pt;}
.y49{bottom:504.226667pt;}
.yc3{bottom:507.426667pt;}
.y28{bottom:514.466667pt;}
.ya3{bottom:516.546667pt;}
.yfb{bottom:518.146667pt;}
.ye3{bottom:526.146667pt;}
.y48{bottom:527.266667pt;}
.y7f{bottom:529.346667pt;}
.y27{bottom:533.666667pt;}
.yc2{bottom:534.466667pt;}
.ya2{bottom:539.453333pt;}
.yfa{bottom:541.053333pt;}
.y47{bottom:550.173333pt;}
.y26{bottom:552.893333pt;}
.ye2{bottom:553.053333pt;}
.yc1{bottom:557.373333pt;}
.ya1{bottom:562.493333pt;}
.y7e{bottom:562.813333pt;}
.yf9{bottom:568.093333pt;}
.y25{bottom:571.933333pt;}
.y46{bottom:573.053333pt;}
.ye1{bottom:576.093333pt;}
.yc0{bottom:580.413333pt;}
.ya0{bottom:585.373333pt;}
.yf8{bottom:590.973333pt;}
.y24{bottom:591.133333pt;}
.y45{bottom:596.093333pt;}
.y7d{bottom:596.253333pt;}
.ye0{bottom:598.973333pt;}
.ybf{bottom:607.293333pt;}
.y9f{bottom:608.413333pt;}
.y23{bottom:610.173333pt;}
.yf7{bottom:614.013333pt;}
.y44{bottom:618.973333pt;}
.ydf{bottom:622.013333pt;}
.y22{bottom:629.373333pt;}
.y6b{bottom:629.853333pt;}
.ybe{bottom:630.333333pt;}
.y9e{bottom:631.293333pt;}
.yf6{bottom:640.893333pt;}
.y43{bottom:642.013333pt;}
.yde{bottom:644.893333pt;}
.y21{bottom:648.413333pt;}
.y9d{bottom:654.333333pt;}
.ybd{bottom:657.213333pt;}
.y7a{bottom:663.293333pt;}
.yf5{bottom:663.933333pt;}
.y42{bottom:664.893333pt;}
.y20{bottom:667.613333pt;}
.ydd{bottom:671.933333pt;}
.y9c{bottom:677.213333pt;}
.ybc{bottom:680.253333pt;}
.y1f{bottom:686.653333pt;}
.y41{bottom:687.933333pt;}
.yf4{bottom:690.813333pt;}
.ydc{bottom:694.813333pt;}
.y79{bottom:696.733333pt;}
.y9b{bottom:700.253333pt;}
.y1e{bottom:705.853333pt;}
.ybb{bottom:707.133333pt;}
.y40{bottom:710.813333pt;}
.yf3{bottom:713.853333pt;}
.ydb{bottom:717.853333pt;}
.y9a{bottom:723.133333pt;}
.y1d{bottom:725.693333pt;}
.yba{bottom:730.013333pt;}
.y77{bottom:730.173333pt;}
.y3f{bottom:733.853333pt;}
.yda{bottom:740.733333pt;}
.y99{bottom:746.013333pt;}
.y1c{bottom:748.253333pt;}
.y3e{bottom:756.733333pt;}
.yb9{bottom:757.053333pt;}
.y75{bottom:763.773333pt;}
.y98{bottom:769.053333pt;}
.y1b{bottom:769.213333pt;}
.y3d{bottom:779.813333pt;}
.yb8{bottom:779.973333pt;}
.y1a{bottom:790.373333pt;}
.yd9{bottom:790.693333pt;}
.y97{bottom:791.973333pt;}
.y70{bottom:797.253333pt;}
.y3c{bottom:802.693333pt;}
.yb7{bottom:807.013333pt;}
.y19{bottom:811.333333pt;}
.yd8{bottom:813.733333pt;}
.y96{bottom:815.013333pt;}
.y3b{bottom:825.733333pt;}
.yb6{bottom:829.893333pt;}
.y73{bottom:830.693333pt;}
.y18{bottom:832.453333pt;}
.y95{bottom:837.893333pt;}
.yd7{bottom:840.613333pt;}
.y3a{bottom:848.613333pt;}
.y17{bottom:853.413333pt;}
.yb5{bottom:856.933333pt;}
.y94{bottom:860.933333pt;}
.yd6{bottom:863.493333pt;}
.y72{bottom:864.293333pt;}
.y39{bottom:871.493333pt;}
.y16{bottom:874.213333pt;}
.yb4{bottom:879.813333pt;}
.y93{bottom:883.813333pt;}
.yd5{bottom:890.533333pt;}
.y15{bottom:894.053333pt;}
.y38{bottom:894.533333pt;}
.y6f{bottom:897.733333pt;}
.yb3{bottom:902.853333pt;}
.y92{bottom:906.853333pt;}
.yd4{bottom:913.413333pt;}
.y37{bottom:917.413333pt;}
.y14{bottom:917.573333pt;}
.y91{bottom:929.733333pt;}
.y6e{bottom:931.173333pt;}
.yd3{bottom:936.453333pt;}
.y36{bottom:940.453333pt;}
.y13{bottom:944.453333pt;}
.y90{bottom:952.773333pt;}
.y35{bottom:963.333333pt;}
.y69{bottom:964.773333pt;}
.y12{bottom:970.213333pt;}
.y8f{bottom:975.653333pt;}
.y34{bottom:986.373333pt;}
.y7{bottom:991.813333pt;}
.y1{bottom:1008.293333pt;}
.y33{bottom:1009.253333pt;}
.y68{bottom:1012.320000pt;}
.hd{height:32.800000pt;}
.h11{height:32.832000pt;}
.h10{height:32.960000pt;}
.h16{height:32.992000pt;}
.h7{height:38.672812pt;}
.h4{height:45.883437pt;}
.h6{height:49.101562pt;}
.h3{height:54.339063pt;}
.ha{height:55.281250pt;}
.h5{height:55.468750pt;}
.h8{height:60.231250pt;}
.h9{height:64.679063pt;}
.hb{height:65.468750pt;}
.hc{height:65.750000pt;}
.h13{height:66.240000pt;}
.h15{height:66.400000pt;}
.h12{height:66.432000pt;}
.h2{height:76.512000pt;}
.hf{height:133.280000pt;}
.h14{height:267.226667pt;}
.he{height:334.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:45.152000pt;}
.w6{width:199.706667pt;}
.w4{width:292.986667pt;}
.w2{width:295.066667pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.xd{left:42.714667pt;}
.xf{left:48.160000pt;}
.x11{left:71.840000pt;}
.x8{left:92.991988pt;}
.x1{left:94.592000pt;}
.x12{left:132.351988pt;}
.x9{left:142.586655pt;}
.x2{left:157.154667pt;}
.xc{left:229.466655pt;}
.xe{left:295.586667pt;}
.x3{left:389.666667pt;}
.x7{left:396.866655pt;}
.x5{left:434.813333pt;}
.x10{left:495.933333pt;}
.xb{left:682.213322pt;}
.x6{left:690.853322pt;}
.xa{left:699.333322pt;}
}




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