
    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_8ef0f85081ef6c8c36cbea25.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.731445;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_d6ff791a96854788a63caf95.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a2c34346e8fcbaa722b892b3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.892578;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_77ae43ef7964ae1729a8eaaa.woff2')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_9797693bd2f6b58c8bd8fc03.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.693359;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_e1bb99a1686e009a2e93a8d0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_d591d9fa2bb5a04f37fa2782.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c65d1014964ea3f3de5ea2af.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m1{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-1.177200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.050400px;}
.v2{vertical-align:9.027000px;}
.ls12{letter-spacing:-2.553000px;}
.ls15{letter-spacing:-2.484000px;}
.ls16{letter-spacing:-2.139000px;}
.ls10{letter-spacing:-1.035000px;}
.ls11{letter-spacing:-0.897000px;}
.ls9{letter-spacing:-0.780000px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000600px;}
.ls1a{letter-spacing:0.000647px;}
.ls5{letter-spacing:0.010800px;}
.lsf{letter-spacing:0.010898px;}
.ls14{letter-spacing:0.011400px;}
.ls18{letter-spacing:0.207000px;}
.ls1b{letter-spacing:1.104000px;}
.ls1e{letter-spacing:1.587000px;}
.ls1c{letter-spacing:1.725000px;}
.ls1d{letter-spacing:2.001000px;}
.ls17{letter-spacing:3.519000px;}
.ls13{letter-spacing:5.768571px;}
.ls0{letter-spacing:7.317000px;}
.ls8{letter-spacing:8.891400px;}
.ls7{letter-spacing:10.253030px;}
.lsb{letter-spacing:11.216400px;}
.ls1{letter-spacing:11.827200px;}
.ls6{letter-spacing:14.404200px;}
.ls4{letter-spacing:15.297000px;}
.lsa{letter-spacing:16.897200px;}
.ls19{letter-spacing:24.757059px;}
.lsd{letter-spacing:28.685510px;}
.lse{letter-spacing:62.700612px;}
.ls3{letter-spacing:87.441600px;}
.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;}
}
.wse{word-spacing:-20.769000px;}
.wsd{word-spacing:-18.354000px;}
.ws5{word-spacing:-17.250000px;}
.wsa{word-spacing:-16.353000px;}
.ws9{word-spacing:-16.215000px;}
.ws4{word-spacing:-15.000000px;}
.ws8{word-spacing:-14.220000px;}
.ws10{word-spacing:-2.001000px;}
.wsf{word-spacing:-1.725000px;}
.ws12{word-spacing:-1.587000px;}
.ws11{word-spacing:-0.207000px;}
.ws2{word-spacing:-0.084000px;}
.ws6{word-spacing:-0.069000px;}
.ws1{word-spacing:-0.066000px;}
.ws3{word-spacing:-0.060000px;}
.ws7{word-spacing:0.000000px;}
.wsc{word-spacing:2.139000px;}
.wsb{word-spacing:2.484000px;}
.ws0{word-spacing:1508.274600px;}
._12{margin-left:-18.208200px;}
._18{margin-left:-17.111290px;}
._2e{margin-left:-14.593200px;}
._36{margin-left:-9.706500px;}
._17{margin-left:-8.630400px;}
._3{margin-left:-7.233000px;}
._4{margin-left:-5.317200px;}
._5{margin-left:-4.225200px;}
._0{margin-left:-2.501400px;}
._2{margin-left:-1.029600px;}
._1{width:1.663200px;}
._9{width:3.640800px;}
._e{width:5.155200px;}
._a{width:7.020000px;}
._c{width:8.891400px;}
._f{width:9.959700px;}
._d{width:11.764200px;}
._b{width:12.989400px;}
._10{width:14.835000px;}
._8{width:16.314000px;}
._2d{width:17.446800px;}
._7{width:18.840000px;}
._13{width:20.976000px;}
._14{width:22.887300px;}
._15{width:24.501900px;}
._2c{width:25.507200px;}
._2b{width:26.701500px;}
._1b{width:28.445100px;}
._29{width:29.473800px;}
._1f{width:30.953400px;}
._1e{width:31.983600px;}
._19{width:33.085500px;}
._1a{width:34.688700px;}
._1c{width:36.399600px;}
._16{width:37.625700px;}
._2f{width:38.867700px;}
._28{width:40.844400px;}
._11{width:42.165900px;}
._34{width:43.359600px;}
._21{width:44.903400px;}
._25{width:46.813200px;}
._6{width:47.820000px;}
._30{width:48.917700px;}
._22{width:54.109800px;}
._2a{width:58.360200px;}
._27{width:59.645400px;}
._24{width:60.947700px;}
._1d{width:62.486400px;}
._20{width:63.900900px;}
._26{width:69.318900px;}
._31{width:74.982300px;}
._23{width:87.450600px;}
._32{width:89.147353px;}
._33{width:122.612400px;}
._35{width:130.887900px;}
.fc1{color:rgb(238,35,43);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:110.681400px;}
.y1{bottom:110.975700px;}
.y3b{bottom:111.082050px;}
.yd1{bottom:113.232450px;}
.y3c{bottom:113.338800px;}
.y9f{bottom:140.955000px;}
.yb8{bottom:145.350900px;}
.y38{bottom:146.525550px;}
.y28{bottom:146.803500px;}
.y6a{bottom:147.713400px;}
.y98{bottom:147.730350px;}
.ybd{bottom:148.779750px;}
.yff{bottom:152.389650px;}
.y12c{bottom:152.406450px;}
.y9e{bottom:158.955000px;}
.yb7{bottom:163.350900px;}
.ybc{bottom:166.779750px;}
.y37{bottom:167.225550px;}
.y27{bottom:167.503500px;}
.y69{bottom:168.413400px;}
.y97{bottom:168.430350px;}
.yfe{bottom:173.089650px;}
.y12b{bottom:173.106450px;}
.y9d{bottom:176.955000px;}
.yb6{bottom:181.350900px;}
.ybb{bottom:184.779750px;}
.y36{bottom:187.925550px;}
.y26{bottom:188.203500px;}
.y68{bottom:189.113400px;}
.y96{bottom:189.130350px;}
.yfd{bottom:193.789650px;}
.y12a{bottom:193.806450px;}
.y9c{bottom:194.955000px;}
.yb5{bottom:199.350900px;}
.yba{bottom:202.779750px;}
.y35{bottom:208.625550px;}
.y25{bottom:208.903500px;}
.y67{bottom:209.813400px;}
.y95{bottom:209.830200px;}
.y9b{bottom:212.955000px;}
.yfc{bottom:214.489500px;}
.y129{bottom:214.506450px;}
.yb9{bottom:220.779750px;}
.y34{bottom:229.325550px;}
.y24{bottom:229.603500px;}
.y66{bottom:230.513550px;}
.y94{bottom:230.530350px;}
.y9a{bottom:230.955000px;}
.yfb{bottom:235.189650px;}
.y128{bottom:235.206450px;}
.y99{bottom:248.955000px;}
.y33{bottom:250.025550px;}
.y23{bottom:250.303500px;}
.y65{bottom:251.213400px;}
.y93{bottom:251.230350px;}
.yfa{bottom:255.889650px;}
.y127{bottom:255.906450px;}
.y32{bottom:270.725550px;}
.y22{bottom:271.003500px;}
.y64{bottom:271.913400px;}
.y92{bottom:271.930350px;}
.yf9{bottom:276.589650px;}
.y126{bottom:276.606450px;}
.y31{bottom:291.425550px;}
.y21{bottom:291.703500px;}
.y63{bottom:292.613400px;}
.y91{bottom:292.630350px;}
.yf8{bottom:297.289650px;}
.y125{bottom:297.306450px;}
.y30{bottom:312.125550px;}
.y20{bottom:312.403500px;}
.y62{bottom:313.313400px;}
.y90{bottom:313.330200px;}
.yf7{bottom:317.989500px;}
.y124{bottom:318.006450px;}
.y2f{bottom:332.825550px;}
.y1f{bottom:333.103500px;}
.y61{bottom:334.013550px;}
.y8f{bottom:334.030350px;}
.yf6{bottom:338.689650px;}
.y123{bottom:338.706450px;}
.y2e{bottom:353.525550px;}
.y1e{bottom:353.803500px;}
.y60{bottom:354.713400px;}
.y8e{bottom:354.730350px;}
.yf5{bottom:359.389650px;}
.y122{bottom:359.406450px;}
.y2d{bottom:374.225550px;}
.y1d{bottom:374.503500px;}
.y14b{bottom:374.664750px;}
.y5f{bottom:375.413400px;}
.y8d{bottom:375.430350px;}
.yf4{bottom:380.089650px;}
.y121{bottom:380.106450px;}
.y2c{bottom:394.925550px;}
.y1c{bottom:395.203500px;}
.y14a{bottom:395.364750px;}
.y5e{bottom:396.113400px;}
.y8c{bottom:396.130350px;}
.yf3{bottom:400.789650px;}
.y120{bottom:400.806450px;}
.y2b{bottom:415.625550px;}
.y1b{bottom:415.903500px;}
.y149{bottom:416.064750px;}
.y5d{bottom:416.813400px;}
.y8b{bottom:416.830350px;}
.yf2{bottom:421.489650px;}
.y11f{bottom:421.506450px;}
.y2a{bottom:436.325550px;}
.y1a{bottom:436.603500px;}
.y5c{bottom:437.513400px;}
.y8a{bottom:437.530350px;}
.yf1{bottom:442.189650px;}
.y12e{bottom:442.206450px;}
.y29{bottom:457.025550px;}
.y19{bottom:457.303500px;}
.y148{bottom:457.464750px;}
.y5b{bottom:458.213400px;}
.y89{bottom:458.230350px;}
.yf0{bottom:462.889650px;}
.y11e{bottom:462.906450px;}
.y18{bottom:478.003500px;}
.y147{bottom:478.164750px;}
.y5a{bottom:478.913400px;}
.y88{bottom:478.930350px;}
.yef{bottom:483.589650px;}
.y11d{bottom:483.606450px;}
.y59{bottom:499.613400px;}
.yee{bottom:504.289650px;}
.y11c{bottom:504.306450px;}
.y146{bottom:519.564750px;}
.y58{bottom:520.313400px;}
.y87{bottom:520.330350px;}
.y12f{bottom:524.989650px;}
.y11b{bottom:525.006450px;}
.y145{bottom:540.264750px;}
.y57{bottom:541.013400px;}
.y86{bottom:541.030350px;}
.y17{bottom:543.183150px;}
.yed{bottom:545.689650px;}
.y11a{bottom:545.706450px;}
.y144{bottom:560.964750px;}
.y16{bottom:561.183150px;}
.y56{bottom:561.713400px;}
.y85{bottom:561.730350px;}
.yec{bottom:566.389650px;}
.y119{bottom:566.406450px;}
.y15{bottom:579.183150px;}
.y143{bottom:581.664750px;}
.y55{bottom:582.413400px;}
.y84{bottom:582.430350px;}
.yeb{bottom:587.089650px;}
.y118{bottom:587.106450px;}
.y142{bottom:602.364750px;}
.y54{bottom:603.113400px;}
.y83{bottom:603.130350px;}
.yea{bottom:607.789650px;}
.y12d{bottom:607.806450px;}
.y14{bottom:615.183150px;}
.y141{bottom:623.064750px;}
.y82{bottom:623.830350px;}
.ye9{bottom:628.489650px;}
.y117{bottom:628.506450px;}
.y13{bottom:633.183150px;}
.y140{bottom:643.764750px;}
.y53{bottom:644.513400px;}
.y81{bottom:644.530350px;}
.ye8{bottom:649.189650px;}
.y116{bottom:649.206450px;}
.y13f{bottom:664.464750px;}
.y52{bottom:665.213400px;}
.y80{bottom:665.230350px;}
.y12{bottom:669.183150px;}
.ye7{bottom:669.889650px;}
.y115{bottom:669.906450px;}
.y13e{bottom:685.164750px;}
.y51{bottom:685.913400px;}
.y7f{bottom:685.930350px;}
.y11{bottom:687.183150px;}
.ye6{bottom:690.589650px;}
.y114{bottom:690.606450px;}
.y10{bottom:705.183150px;}
.y13d{bottom:705.864750px;}
.y50{bottom:706.613400px;}
.y7e{bottom:706.630350px;}
.ye5{bottom:711.289650px;}
.y113{bottom:711.306450px;}
.yf{bottom:723.183150px;}
.y13c{bottom:726.564750px;}
.y4f{bottom:727.313400px;}
.y7d{bottom:727.330350px;}
.ye4{bottom:731.989650px;}
.y112{bottom:732.006450px;}
.yb4{bottom:733.707300px;}
.ye{bottom:741.183150px;}
.y4e{bottom:748.013400px;}
.y7c{bottom:748.030350px;}
.ye3{bottom:752.689650px;}
.y111{bottom:752.706450px;}
.ycf{bottom:754.390500px;}
.yb3{bottom:754.407300px;}
.y13b{bottom:754.764750px;}
.yd{bottom:759.183150px;}
.y4d{bottom:768.713400px;}
.y7b{bottom:768.730350px;}
.ye2{bottom:773.389650px;}
.y110{bottom:773.406450px;}
.yce{bottom:775.090500px;}
.yb2{bottom:775.107300px;}
.yc{bottom:777.183150px;}
.y13a{bottom:782.964750px;}
.y4c{bottom:789.413400px;}
.y7a{bottom:789.430350px;}
.ye1{bottom:794.089650px;}
.y10f{bottom:794.106450px;}
.yb{bottom:795.183150px;}
.ycd{bottom:795.790500px;}
.yb1{bottom:795.807300px;}
.y4b{bottom:810.113400px;}
.y79{bottom:810.130350px;}
.ya{bottom:813.183150px;}
.ye0{bottom:814.789650px;}
.y10e{bottom:814.806450px;}
.ycc{bottom:816.490500px;}
.yb0{bottom:816.507300px;}
.y139{bottom:824.364750px;}
.y4a{bottom:830.813400px;}
.y78{bottom:830.830200px;}
.y9{bottom:831.183150px;}
.ydf{bottom:835.489500px;}
.y10d{bottom:835.506450px;}
.ycb{bottom:837.190500px;}
.yaf{bottom:837.207300px;}
.y138{bottom:845.064750px;}
.y8{bottom:849.183150px;}
.y49{bottom:851.513550px;}
.y77{bottom:851.530350px;}
.yde{bottom:856.189650px;}
.y10c{bottom:856.206450px;}
.yca{bottom:857.890500px;}
.yae{bottom:857.907300px;}
.y48{bottom:872.213400px;}
.y76{bottom:872.230350px;}
.ydd{bottom:876.889650px;}
.y10b{bottom:876.906450px;}
.yc9{bottom:878.590500px;}
.yad{bottom:878.607300px;}
.y7{bottom:886.326000px;}
.y137{bottom:886.464750px;}
.y47{bottom:892.913400px;}
.y75{bottom:892.930350px;}
.ydc{bottom:897.589650px;}
.y10a{bottom:897.606450px;}
.yc8{bottom:899.290500px;}
.yac{bottom:899.307300px;}
.y6{bottom:907.026000px;}
.y46{bottom:913.613400px;}
.y74{bottom:913.630350px;}
.ydb{bottom:918.289650px;}
.y109{bottom:918.306450px;}
.yc7{bottom:919.990500px;}
.yab{bottom:920.007300px;}
.y73{bottom:934.330200px;}
.yda{bottom:938.989500px;}
.y108{bottom:939.006450px;}
.yc6{bottom:940.690500px;}
.yaa{bottom:940.707300px;}
.y5{bottom:952.926000px;}
.y45{bottom:955.013550px;}
.y72{bottom:955.030350px;}
.yd9{bottom:959.689650px;}
.y107{bottom:959.706450px;}
.yc5{bottom:961.390500px;}
.ya9{bottom:961.407300px;}
.y44{bottom:975.713400px;}
.y71{bottom:975.730350px;}
.y4{bottom:978.126000px;}
.y136{bottom:980.307300px;}
.yd8{bottom:980.389650px;}
.y106{bottom:980.406450px;}
.yc4{bottom:982.090500px;}
.ya8{bottom:982.107300px;}
.y43{bottom:996.413400px;}
.y70{bottom:996.430350px;}
.y135{bottom:1001.007300px;}
.yd7{bottom:1001.089650px;}
.y105{bottom:1001.106450px;}
.yc3{bottom:1002.790500px;}
.ya7{bottom:1002.807300px;}
.y42{bottom:1017.113400px;}
.y6f{bottom:1017.130350px;}
.y134{bottom:1021.707300px;}
.yd6{bottom:1021.789650px;}
.y104{bottom:1021.806450px;}
.yc2{bottom:1023.490500px;}
.ya6{bottom:1023.507300px;}
.y3{bottom:1028.526000px;}
.y41{bottom:1037.813400px;}
.y6e{bottom:1037.830200px;}
.y133{bottom:1042.407300px;}
.yd5{bottom:1042.489500px;}
.y103{bottom:1042.506450px;}
.yc1{bottom:1044.190500px;}
.ya5{bottom:1044.207300px;}
.y40{bottom:1058.513550px;}
.y6d{bottom:1058.530350px;}
.y132{bottom:1063.107300px;}
.yd4{bottom:1063.189650px;}
.y102{bottom:1063.206450px;}
.yc0{bottom:1064.890500px;}
.ya4{bottom:1064.907300px;}
.y3a{bottom:1073.125050px;}
.y3f{bottom:1079.213400px;}
.y6c{bottom:1079.230350px;}
.yd3{bottom:1083.889650px;}
.y101{bottom:1083.906450px;}
.y131{bottom:1084.707300px;}
.ybf{bottom:1085.590500px;}
.ya3{bottom:1085.607300px;}
.y3e{bottom:1099.913400px;}
.y6b{bottom:1099.930350px;}
.yd2{bottom:1104.589650px;}
.y100{bottom:1104.606450px;}
.ybe{bottom:1106.290500px;}
.ya2{bottom:1106.307300px;}
.y39{bottom:1107.778050px;}
.y3d{bottom:1134.449850px;}
.yd0{bottom:1135.158750px;}
.ya1{bottom:1135.512750px;}
.y130{bottom:1136.437350px;}
.y2{bottom:1140.826950px;}
.h3{height:45.826172px;}
.hb{height:47.437500px;}
.h6{height:47.909180px;}
.h2{height:51.876572px;}
.h7{height:52.646484px;}
.hc{height:54.853172px;}
.h8{height:59.667480px;}
.h9{height:60.543457px;}
.ha{height:62.261719px;}
.hd{height:63.175781px;}
.h4{height:67.450195px;}
.h5{height:72.638672px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:63.779550px;}
.x16{left:65.055150px;}
.x11{left:76.090650px;}
.x12{left:89.291400px;}
.x1{left:106.299150px;}
.x2{left:108.000000px;}
.xb{left:131.811000px;}
.x18{left:142.347900px;}
.xa{left:148.181100px;}
.x7{left:157.453800px;}
.x6{left:167.538600px;}
.x1e{left:168.973800px;}
.x1b{left:181.005750px;}
.x8{left:230.449050px;}
.x1c{left:242.378850px;}
.x1d{left:275.720700px;}
.x5{left:277.496400px;}
.xe{left:299.458650px;}
.x15{left:318.789450px;}
.x9{left:355.528350px;}
.x13{left:435.826800px;}
.x14{left:461.338650px;}
.x3{left:473.924550px;}
.xd{left:478.771650px;}
.x4{left:497.684550px;}
.x17{left:501.732300px;}
.xc{left:504.283500px;}
.x19{left:514.395150px;}
.x1a{left:531.064950px;}
.xf{left:766.985550px;}
@media print{
.v3{vertical-align:-1.046400pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.378133pt;}
.v2{vertical-align:8.024000pt;}
.ls12{letter-spacing:-2.269333pt;}
.ls15{letter-spacing:-2.208000pt;}
.ls16{letter-spacing:-1.901333pt;}
.ls10{letter-spacing:-0.920000pt;}
.ls11{letter-spacing:-0.797333pt;}
.ls9{letter-spacing:-0.693333pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000533pt;}
.ls1a{letter-spacing:0.000575pt;}
.ls5{letter-spacing:0.009600pt;}
.lsf{letter-spacing:0.009687pt;}
.ls14{letter-spacing:0.010133pt;}
.ls18{letter-spacing:0.184000pt;}
.ls1b{letter-spacing:0.981333pt;}
.ls1e{letter-spacing:1.410667pt;}
.ls1c{letter-spacing:1.533333pt;}
.ls1d{letter-spacing:1.778667pt;}
.ls17{letter-spacing:3.128000pt;}
.ls13{letter-spacing:5.127619pt;}
.ls0{letter-spacing:6.504000pt;}
.ls8{letter-spacing:7.903467pt;}
.ls7{letter-spacing:9.113805pt;}
.lsb{letter-spacing:9.970133pt;}
.ls1{letter-spacing:10.513067pt;}
.ls6{letter-spacing:12.803733pt;}
.ls4{letter-spacing:13.597333pt;}
.lsa{letter-spacing:15.019733pt;}
.ls19{letter-spacing:22.006275pt;}
.lsd{letter-spacing:25.498231pt;}
.lse{letter-spacing:55.733878pt;}
.ls3{letter-spacing:77.725867pt;}
.wse{word-spacing:-18.461333pt;}
.wsd{word-spacing:-16.314667pt;}
.ws5{word-spacing:-15.333333pt;}
.wsa{word-spacing:-14.536000pt;}
.ws9{word-spacing:-14.413333pt;}
.ws4{word-spacing:-13.333333pt;}
.ws8{word-spacing:-12.640000pt;}
.ws10{word-spacing:-1.778667pt;}
.wsf{word-spacing:-1.533333pt;}
.ws12{word-spacing:-1.410667pt;}
.ws11{word-spacing:-0.184000pt;}
.ws2{word-spacing:-0.074667pt;}
.ws6{word-spacing:-0.061333pt;}
.ws1{word-spacing:-0.058667pt;}
.ws3{word-spacing:-0.053333pt;}
.ws7{word-spacing:0.000000pt;}
.wsc{word-spacing:1.901333pt;}
.wsb{word-spacing:2.208000pt;}
.ws0{word-spacing:1340.688533pt;}
._12{margin-left:-16.185067pt;}
._18{margin-left:-15.210035pt;}
._2e{margin-left:-12.971733pt;}
._36{margin-left:-8.628000pt;}
._17{margin-left:-7.671467pt;}
._3{margin-left:-6.429333pt;}
._4{margin-left:-4.726400pt;}
._5{margin-left:-3.755733pt;}
._0{margin-left:-2.223467pt;}
._2{margin-left:-0.915200pt;}
._1{width:1.478400pt;}
._9{width:3.236267pt;}
._e{width:4.582400pt;}
._a{width:6.240000pt;}
._c{width:7.903467pt;}
._f{width:8.853067pt;}
._d{width:10.457067pt;}
._b{width:11.546133pt;}
._10{width:13.186667pt;}
._8{width:14.501333pt;}
._2d{width:15.508267pt;}
._7{width:16.746667pt;}
._13{width:18.645333pt;}
._14{width:20.344267pt;}
._15{width:21.779467pt;}
._2c{width:22.673067pt;}
._2b{width:23.734667pt;}
._1b{width:25.284533pt;}
._29{width:26.198933pt;}
._1f{width:27.514133pt;}
._1e{width:28.429867pt;}
._19{width:29.409333pt;}
._1a{width:30.834400pt;}
._1c{width:32.355200pt;}
._16{width:33.445067pt;}
._2f{width:34.549067pt;}
._28{width:36.306133pt;}
._11{width:37.480800pt;}
._34{width:38.541867pt;}
._21{width:39.914133pt;}
._25{width:41.611733pt;}
._6{width:42.506667pt;}
._30{width:43.482400pt;}
._22{width:48.097600pt;}
._2a{width:51.875733pt;}
._27{width:53.018133pt;}
._24{width:54.175733pt;}
._1d{width:55.543467pt;}
._20{width:56.800800pt;}
._26{width:61.616800pt;}
._31{width:66.650933pt;}
._23{width:77.733867pt;}
._32{width:79.242092pt;}
._33{width:108.988800pt;}
._35{width:116.344800pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:98.383467pt;}
.y1{bottom:98.645067pt;}
.y3b{bottom:98.739600pt;}
.yd1{bottom:100.651067pt;}
.y3c{bottom:100.745600pt;}
.y9f{bottom:125.293333pt;}
.yb8{bottom:129.200800pt;}
.y38{bottom:130.244933pt;}
.y28{bottom:130.492000pt;}
.y6a{bottom:131.300800pt;}
.y98{bottom:131.315867pt;}
.ybd{bottom:132.248667pt;}
.yff{bottom:135.457467pt;}
.y12c{bottom:135.472400pt;}
.y9e{bottom:141.293333pt;}
.yb7{bottom:145.200800pt;}
.ybc{bottom:148.248667pt;}
.y37{bottom:148.644933pt;}
.y27{bottom:148.892000pt;}
.y69{bottom:149.700800pt;}
.y97{bottom:149.715867pt;}
.yfe{bottom:153.857467pt;}
.y12b{bottom:153.872400pt;}
.y9d{bottom:157.293333pt;}
.yb6{bottom:161.200800pt;}
.ybb{bottom:164.248667pt;}
.y36{bottom:167.044933pt;}
.y26{bottom:167.292000pt;}
.y68{bottom:168.100800pt;}
.y96{bottom:168.115867pt;}
.yfd{bottom:172.257467pt;}
.y12a{bottom:172.272400pt;}
.y9c{bottom:173.293333pt;}
.yb5{bottom:177.200800pt;}
.yba{bottom:180.248667pt;}
.y35{bottom:185.444933pt;}
.y25{bottom:185.692000pt;}
.y67{bottom:186.500800pt;}
.y95{bottom:186.515733pt;}
.y9b{bottom:189.293333pt;}
.yfc{bottom:190.657333pt;}
.y129{bottom:190.672400pt;}
.yb9{bottom:196.248667pt;}
.y34{bottom:203.844933pt;}
.y24{bottom:204.092000pt;}
.y66{bottom:204.900933pt;}
.y94{bottom:204.915867pt;}
.y9a{bottom:205.293333pt;}
.yfb{bottom:209.057467pt;}
.y128{bottom:209.072400pt;}
.y99{bottom:221.293333pt;}
.y33{bottom:222.244933pt;}
.y23{bottom:222.492000pt;}
.y65{bottom:223.300800pt;}
.y93{bottom:223.315867pt;}
.yfa{bottom:227.457467pt;}
.y127{bottom:227.472400pt;}
.y32{bottom:240.644933pt;}
.y22{bottom:240.892000pt;}
.y64{bottom:241.700800pt;}
.y92{bottom:241.715867pt;}
.yf9{bottom:245.857467pt;}
.y126{bottom:245.872400pt;}
.y31{bottom:259.044933pt;}
.y21{bottom:259.292000pt;}
.y63{bottom:260.100800pt;}
.y91{bottom:260.115867pt;}
.yf8{bottom:264.257467pt;}
.y125{bottom:264.272400pt;}
.y30{bottom:277.444933pt;}
.y20{bottom:277.692000pt;}
.y62{bottom:278.500800pt;}
.y90{bottom:278.515733pt;}
.yf7{bottom:282.657333pt;}
.y124{bottom:282.672400pt;}
.y2f{bottom:295.844933pt;}
.y1f{bottom:296.092000pt;}
.y61{bottom:296.900933pt;}
.y8f{bottom:296.915867pt;}
.yf6{bottom:301.057467pt;}
.y123{bottom:301.072400pt;}
.y2e{bottom:314.244933pt;}
.y1e{bottom:314.492000pt;}
.y60{bottom:315.300800pt;}
.y8e{bottom:315.315867pt;}
.yf5{bottom:319.457467pt;}
.y122{bottom:319.472400pt;}
.y2d{bottom:332.644933pt;}
.y1d{bottom:332.892000pt;}
.y14b{bottom:333.035333pt;}
.y5f{bottom:333.700800pt;}
.y8d{bottom:333.715867pt;}
.yf4{bottom:337.857467pt;}
.y121{bottom:337.872400pt;}
.y2c{bottom:351.044933pt;}
.y1c{bottom:351.292000pt;}
.y14a{bottom:351.435333pt;}
.y5e{bottom:352.100800pt;}
.y8c{bottom:352.115867pt;}
.yf3{bottom:356.257467pt;}
.y120{bottom:356.272400pt;}
.y2b{bottom:369.444933pt;}
.y1b{bottom:369.692000pt;}
.y149{bottom:369.835333pt;}
.y5d{bottom:370.500800pt;}
.y8b{bottom:370.515867pt;}
.yf2{bottom:374.657467pt;}
.y11f{bottom:374.672400pt;}
.y2a{bottom:387.844933pt;}
.y1a{bottom:388.092000pt;}
.y5c{bottom:388.900800pt;}
.y8a{bottom:388.915867pt;}
.yf1{bottom:393.057467pt;}
.y12e{bottom:393.072400pt;}
.y29{bottom:406.244933pt;}
.y19{bottom:406.492000pt;}
.y148{bottom:406.635333pt;}
.y5b{bottom:407.300800pt;}
.y89{bottom:407.315867pt;}
.yf0{bottom:411.457467pt;}
.y11e{bottom:411.472400pt;}
.y18{bottom:424.892000pt;}
.y147{bottom:425.035333pt;}
.y5a{bottom:425.700800pt;}
.y88{bottom:425.715867pt;}
.yef{bottom:429.857467pt;}
.y11d{bottom:429.872400pt;}
.y59{bottom:444.100800pt;}
.yee{bottom:448.257467pt;}
.y11c{bottom:448.272400pt;}
.y146{bottom:461.835333pt;}
.y58{bottom:462.500800pt;}
.y87{bottom:462.515867pt;}
.y12f{bottom:466.657467pt;}
.y11b{bottom:466.672400pt;}
.y145{bottom:480.235333pt;}
.y57{bottom:480.900800pt;}
.y86{bottom:480.915867pt;}
.y17{bottom:482.829467pt;}
.yed{bottom:485.057467pt;}
.y11a{bottom:485.072400pt;}
.y144{bottom:498.635333pt;}
.y16{bottom:498.829467pt;}
.y56{bottom:499.300800pt;}
.y85{bottom:499.315867pt;}
.yec{bottom:503.457467pt;}
.y119{bottom:503.472400pt;}
.y15{bottom:514.829467pt;}
.y143{bottom:517.035333pt;}
.y55{bottom:517.700800pt;}
.y84{bottom:517.715867pt;}
.yeb{bottom:521.857467pt;}
.y118{bottom:521.872400pt;}
.y142{bottom:535.435333pt;}
.y54{bottom:536.100800pt;}
.y83{bottom:536.115867pt;}
.yea{bottom:540.257467pt;}
.y12d{bottom:540.272400pt;}
.y14{bottom:546.829467pt;}
.y141{bottom:553.835333pt;}
.y82{bottom:554.515867pt;}
.ye9{bottom:558.657467pt;}
.y117{bottom:558.672400pt;}
.y13{bottom:562.829467pt;}
.y140{bottom:572.235333pt;}
.y53{bottom:572.900800pt;}
.y81{bottom:572.915867pt;}
.ye8{bottom:577.057467pt;}
.y116{bottom:577.072400pt;}
.y13f{bottom:590.635333pt;}
.y52{bottom:591.300800pt;}
.y80{bottom:591.315867pt;}
.y12{bottom:594.829467pt;}
.ye7{bottom:595.457467pt;}
.y115{bottom:595.472400pt;}
.y13e{bottom:609.035333pt;}
.y51{bottom:609.700800pt;}
.y7f{bottom:609.715867pt;}
.y11{bottom:610.829467pt;}
.ye6{bottom:613.857467pt;}
.y114{bottom:613.872400pt;}
.y10{bottom:626.829467pt;}
.y13d{bottom:627.435333pt;}
.y50{bottom:628.100800pt;}
.y7e{bottom:628.115867pt;}
.ye5{bottom:632.257467pt;}
.y113{bottom:632.272400pt;}
.yf{bottom:642.829467pt;}
.y13c{bottom:645.835333pt;}
.y4f{bottom:646.500800pt;}
.y7d{bottom:646.515867pt;}
.ye4{bottom:650.657467pt;}
.y112{bottom:650.672400pt;}
.yb4{bottom:652.184267pt;}
.ye{bottom:658.829467pt;}
.y4e{bottom:664.900800pt;}
.y7c{bottom:664.915867pt;}
.ye3{bottom:669.057467pt;}
.y111{bottom:669.072400pt;}
.ycf{bottom:670.569333pt;}
.yb3{bottom:670.584267pt;}
.y13b{bottom:670.902000pt;}
.yd{bottom:674.829467pt;}
.y4d{bottom:683.300800pt;}
.y7b{bottom:683.315867pt;}
.ye2{bottom:687.457467pt;}
.y110{bottom:687.472400pt;}
.yce{bottom:688.969333pt;}
.yb2{bottom:688.984267pt;}
.yc{bottom:690.829467pt;}
.y13a{bottom:695.968667pt;}
.y4c{bottom:701.700800pt;}
.y7a{bottom:701.715867pt;}
.ye1{bottom:705.857467pt;}
.y10f{bottom:705.872400pt;}
.yb{bottom:706.829467pt;}
.ycd{bottom:707.369333pt;}
.yb1{bottom:707.384267pt;}
.y4b{bottom:720.100800pt;}
.y79{bottom:720.115867pt;}
.ya{bottom:722.829467pt;}
.ye0{bottom:724.257467pt;}
.y10e{bottom:724.272400pt;}
.ycc{bottom:725.769333pt;}
.yb0{bottom:725.784267pt;}
.y139{bottom:732.768667pt;}
.y4a{bottom:738.500800pt;}
.y78{bottom:738.515733pt;}
.y9{bottom:738.829467pt;}
.ydf{bottom:742.657333pt;}
.y10d{bottom:742.672400pt;}
.ycb{bottom:744.169333pt;}
.yaf{bottom:744.184267pt;}
.y138{bottom:751.168667pt;}
.y8{bottom:754.829467pt;}
.y49{bottom:756.900933pt;}
.y77{bottom:756.915867pt;}
.yde{bottom:761.057467pt;}
.y10c{bottom:761.072400pt;}
.yca{bottom:762.569333pt;}
.yae{bottom:762.584267pt;}
.y48{bottom:775.300800pt;}
.y76{bottom:775.315867pt;}
.ydd{bottom:779.457467pt;}
.y10b{bottom:779.472400pt;}
.yc9{bottom:780.969333pt;}
.yad{bottom:780.984267pt;}
.y7{bottom:787.845333pt;}
.y137{bottom:787.968667pt;}
.y47{bottom:793.700800pt;}
.y75{bottom:793.715867pt;}
.ydc{bottom:797.857467pt;}
.y10a{bottom:797.872400pt;}
.yc8{bottom:799.369333pt;}
.yac{bottom:799.384267pt;}
.y6{bottom:806.245333pt;}
.y46{bottom:812.100800pt;}
.y74{bottom:812.115867pt;}
.ydb{bottom:816.257467pt;}
.y109{bottom:816.272400pt;}
.yc7{bottom:817.769333pt;}
.yab{bottom:817.784267pt;}
.y73{bottom:830.515733pt;}
.yda{bottom:834.657333pt;}
.y108{bottom:834.672400pt;}
.yc6{bottom:836.169333pt;}
.yaa{bottom:836.184267pt;}
.y5{bottom:847.045333pt;}
.y45{bottom:848.900933pt;}
.y72{bottom:848.915867pt;}
.yd9{bottom:853.057467pt;}
.y107{bottom:853.072400pt;}
.yc5{bottom:854.569333pt;}
.ya9{bottom:854.584267pt;}
.y44{bottom:867.300800pt;}
.y71{bottom:867.315867pt;}
.y4{bottom:869.445333pt;}
.y136{bottom:871.384267pt;}
.yd8{bottom:871.457467pt;}
.y106{bottom:871.472400pt;}
.yc4{bottom:872.969333pt;}
.ya8{bottom:872.984267pt;}
.y43{bottom:885.700800pt;}
.y70{bottom:885.715867pt;}
.y135{bottom:889.784267pt;}
.yd7{bottom:889.857467pt;}
.y105{bottom:889.872400pt;}
.yc3{bottom:891.369333pt;}
.ya7{bottom:891.384267pt;}
.y42{bottom:904.100800pt;}
.y6f{bottom:904.115867pt;}
.y134{bottom:908.184267pt;}
.yd6{bottom:908.257467pt;}
.y104{bottom:908.272400pt;}
.yc2{bottom:909.769333pt;}
.ya6{bottom:909.784267pt;}
.y3{bottom:914.245333pt;}
.y41{bottom:922.500800pt;}
.y6e{bottom:922.515733pt;}
.y133{bottom:926.584267pt;}
.yd5{bottom:926.657333pt;}
.y103{bottom:926.672400pt;}
.yc1{bottom:928.169333pt;}
.ya5{bottom:928.184267pt;}
.y40{bottom:940.900933pt;}
.y6d{bottom:940.915867pt;}
.y132{bottom:944.984267pt;}
.yd4{bottom:945.057467pt;}
.y102{bottom:945.072400pt;}
.yc0{bottom:946.569333pt;}
.ya4{bottom:946.584267pt;}
.y3a{bottom:953.888933pt;}
.y3f{bottom:959.300800pt;}
.y6c{bottom:959.315867pt;}
.yd3{bottom:963.457467pt;}
.y101{bottom:963.472400pt;}
.y131{bottom:964.184267pt;}
.ybf{bottom:964.969333pt;}
.ya3{bottom:964.984267pt;}
.y3e{bottom:977.700800pt;}
.y6b{bottom:977.715867pt;}
.yd2{bottom:981.857467pt;}
.y100{bottom:981.872400pt;}
.ybe{bottom:983.369333pt;}
.ya2{bottom:983.384267pt;}
.y39{bottom:984.691600pt;}
.y3d{bottom:1008.399867pt;}
.yd0{bottom:1009.030000pt;}
.ya1{bottom:1009.344667pt;}
.y130{bottom:1010.166533pt;}
.y2{bottom:1014.068400pt;}
.h3{height:40.734375pt;}
.hb{height:42.166667pt;}
.h6{height:42.585938pt;}
.h2{height:46.112508pt;}
.h7{height:46.796875pt;}
.hc{height:48.758375pt;}
.h8{height:53.037760pt;}
.h9{height:53.816406pt;}
.ha{height:55.343750pt;}
.hd{height:56.156250pt;}
.h4{height:59.955729pt;}
.h5{height:64.567708pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:56.692933pt;}
.x16{left:57.826800pt;}
.x11{left:67.636133pt;}
.x12{left:79.370133pt;}
.x1{left:94.488133pt;}
.x2{left:96.000000pt;}
.xb{left:117.165333pt;}
.x18{left:126.531467pt;}
.xa{left:131.716533pt;}
.x7{left:139.958933pt;}
.x6{left:148.923200pt;}
.x1e{left:150.198933pt;}
.x1b{left:160.894000pt;}
.x8{left:204.843600pt;}
.x1c{left:215.447867pt;}
.x1d{left:245.085067pt;}
.x5{left:246.663467pt;}
.xe{left:266.185467pt;}
.x15{left:283.368400pt;}
.x9{left:316.025200pt;}
.x13{left:387.401600pt;}
.x14{left:410.078800pt;}
.x3{left:421.266267pt;}
.xd{left:425.574800pt;}
.x4{left:442.386267pt;}
.x17{left:445.984267pt;}
.xc{left:448.252000pt;}
.x19{left:457.240133pt;}
.x1a{left:472.057733pt;}
.xf{left:681.764933pt;}
}




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