
    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_f9b16a03c5e5ceefced5f99f.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2426c16dce5fdf711b722566.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f5bacf3169f61775c473320f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_51dea9c188edfd75b073e16f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_30688515f12e80abd7edbeff.woff')format("woff");}.ff5{font-family:ff5;line-height:2.979492;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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:35.856000px;}
.ls3{letter-spacing:41.616000px;}
.ls5{letter-spacing:56.016000px;}
.ls6{letter-spacing:56.874000px;}
.ls2{letter-spacing:81.222000px;}
.ls1{letter-spacing:179.136000px;}
.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;}
}
.wsb{word-spacing:-55.944000px;}
.ws1b{word-spacing:-41.736600px;}
.ws18{word-spacing:-41.540100px;}
.ws1f{word-spacing:-41.538300px;}
.ws14{word-spacing:-41.536500px;}
.ws5e{word-spacing:-40.318800px;}
.ws15{word-spacing:-39.586500px;}
.ws8c{word-spacing:-39.384000px;}
.ws13{word-spacing:-39.370500px;}
.ws60{word-spacing:-38.876400px;}
.ws83{word-spacing:-38.865600px;}
.ws82{word-spacing:-38.807100px;}
.ws48{word-spacing:-38.661000px;}
.ws6b{word-spacing:-38.660400px;}
.ws6{word-spacing:-38.657700px;}
.wsa2{word-spacing:-38.655900px;}
.ws72{word-spacing:-38.653200px;}
.ws22{word-spacing:-38.652000px;}
.wsc{word-spacing:-38.650500px;}
.ws5{word-spacing:-38.647800px;}
.ws78{word-spacing:-38.646600px;}
.ws59{word-spacing:-38.639700px;}
.ws4f{word-spacing:-38.454000px;}
.ws6e{word-spacing:-38.445000px;}
.ws70{word-spacing:-38.439600px;}
.ws69{word-spacing:-38.437200px;}
.ws3a{word-spacing:-38.436600px;}
.ws3c{word-spacing:-38.431800px;}
.wsb7{word-spacing:-38.431200px;}
.ws34{word-spacing:-38.424000px;}
.ws3{word-spacing:-38.374200px;}
.wsb8{word-spacing:-38.359800px;}
.wsa1{word-spacing:-38.162400px;}
.ws9b{word-spacing:-38.160000px;}
.wsbd{word-spacing:-38.154000px;}
.ws47{word-spacing:-38.149200px;}
.ws3d{word-spacing:-38.147400px;}
.ws7e{word-spacing:-38.143800px;}
.ws7b{word-spacing:-38.137800px;}
.ws65{word-spacing:-38.134800px;}
.wsa{word-spacing:-38.087100px;}
.ws8b{word-spacing:-38.082000px;}
.ws29{word-spacing:-37.946400px;}
.ws0{word-spacing:-37.944000px;}
.wsd{word-spacing:-37.941300px;}
.ws4{word-spacing:-37.938600px;}
.ws33{word-spacing:-37.935000px;}
.ws80{word-spacing:-37.934100px;}
.ws35{word-spacing:-37.933200px;}
.ws2{word-spacing:-37.931400px;}
.ws81{word-spacing:-37.930200px;}
.ws7f{word-spacing:-37.923600px;}
.ws79{word-spacing:-37.726200px;}
.ws9{word-spacing:-37.717800px;}
.ws9d{word-spacing:-37.717200px;}
.ws26{word-spacing:-37.710000px;}
.ws66{word-spacing:-37.440000px;}
.ws67{word-spacing:-37.209600px;}
.ws1c{word-spacing:-37.182600px;}
.ws9c{word-spacing:-36.711000px;}
.ws75{word-spacing:-36.510000px;}
.ws49{word-spacing:-36.501300px;}
.wsb2{word-spacing:-36.500100px;}
.ws74{word-spacing:-36.483300px;}
.ws9a{word-spacing:-36.363600px;}
.ws1e{word-spacing:-36.269100px;}
.ws5d{word-spacing:-36.000000px;}
.ws7d{word-spacing:-35.928000px;}
.wsa4{word-spacing:-35.782200px;}
.wsba{word-spacing:-35.775900px;}
.ws52{word-spacing:-35.560800px;}
.ws84{word-spacing:-35.276400px;}
.wsa0{word-spacing:-35.062200px;}
.ws2e{word-spacing:-35.056800px;}
.ws6c{word-spacing:-34.848600px;}
.ws21{word-spacing:-34.848000px;}
.ws50{word-spacing:-34.843200px;}
.ws62{word-spacing:-34.560000px;}
.ws20{word-spacing:-34.551900px;}
.wsb9{word-spacing:-34.343100px;}
.ws17{word-spacing:-34.337700px;}
.ws63{word-spacing:-34.335000px;}
.ws7a{word-spacing:-34.120800px;}
.ws85{word-spacing:-33.767100px;}
.ws6d{word-spacing:-33.622200px;}
.ws6a{word-spacing:-33.618600px;}
.ws8{word-spacing:-33.547800px;}
.wsa8{word-spacing:-33.401700px;}
.ws73{word-spacing:-33.400800px;}
.ws37{word-spacing:-33.388200px;}
.ws54{word-spacing:-33.120000px;}
.ws99{word-spacing:-32.904000px;}
.ws42{word-spacing:-32.184000px;}
.wsaa{word-spacing:-32.171400px;}
.wsb5{word-spacing:-32.167200px;}
.ws71{word-spacing:-32.166900px;}
.ws89{word-spacing:-31.957200px;}
.ws8a{word-spacing:-31.664400px;}
.ws97{word-spacing:-31.464000px;}
.wsbb{word-spacing:-31.462200px;}
.ws9f{word-spacing:-31.451400px;}
.ws46{word-spacing:-30.888000px;}
.ws28{word-spacing:-30.736800px;}
.ws5c{word-spacing:-30.240000px;}
.ws44{word-spacing:-30.226200px;}
.wsab{word-spacing:-30.024000px;}
.ws27{word-spacing:-30.010800px;}
.wsbf{word-spacing:-29.300400px;}
.ws11{word-spacing:-29.298300px;}
.ws86{word-spacing:-29.288700px;}
.wsb0{word-spacing:-28.800000px;}
.wsaf{word-spacing:-28.348200px;}
.ws1a{word-spacing:-28.050300px;}
.ws5a{word-spacing:-27.139200px;}
.wsae{word-spacing:-26.418600px;}
.ws68{word-spacing:-26.416800px;}
.ws39{word-spacing:-26.406000px;}
.ws36{word-spacing:-26.202600px;}
.wsbc{word-spacing:-25.910400px;}
.ws87{word-spacing:-25.909200px;}
.ws4c{word-spacing:-25.710000px;}
.ws4a{word-spacing:-25.704000px;}
.ws4e{word-spacing:-25.702200px;}
.ws3f{word-spacing:-25.696800px;}
.ws3e{word-spacing:-25.200000px;}
.ws41{word-spacing:-25.172400px;}
.ws58{word-spacing:-24.472800px;}
.ws5b{word-spacing:-23.760000px;}
.ws43{word-spacing:-23.751600px;}
.wsf{word-spacing:-23.743800px;}
.ws8f{word-spacing:-22.968000px;}
.ws5f{word-spacing:-22.962000px;}
.ws57{word-spacing:-22.102200px;}
.ws10{word-spacing:-22.091400px;}
.ws93{word-spacing:-21.600000px;}
.ws91{word-spacing:-21.384000px;}
.wse{word-spacing:-20.867100px;}
.ws88{word-spacing:-20.813100px;}
.wsbe{word-spacing:-20.663100px;}
.ws2d{word-spacing:-20.145600px;}
.wsa7{word-spacing:-19.721400px;}
.ws61{word-spacing:-19.437300px;}
.ws24{word-spacing:-19.218600px;}
.wsa9{word-spacing:-19.216800px;}
.ws25{word-spacing:-19.008000px;}
.ws7{word-spacing:-18.472500px;}
.wsb1{word-spacing:-17.989200px;}
.ws12{word-spacing:-17.775900px;}
.wsb6{word-spacing:-17.546400px;}
.ws2c{word-spacing:-17.261400px;}
.wsa5{word-spacing:-16.831800px;}
.wsac{word-spacing:-16.328700px;}
.ws9e{word-spacing:-15.827400px;}
.wsad{word-spacing:-15.820200px;}
.ws19{word-spacing:-15.617700px;}
.ws98{word-spacing:-15.121800px;}
.ws55{word-spacing:-14.904000px;}
.ws51{word-spacing:-14.398200px;}
.ws45{word-spacing:-14.187300px;}
.ws8e{word-spacing:-11.520000px;}
.ws64{word-spacing:-10.800000px;}
.ws6f{word-spacing:-9.853200px;}
.ws56{word-spacing:-9.846900px;}
.ws8d{word-spacing:-8.928000px;}
.ws38{word-spacing:-8.410500px;}
.ws2f{word-spacing:-7.686600px;}
.ws23{word-spacing:-7.682400px;}
.ws16{word-spacing:-6.458100px;}
.ws90{word-spacing:-5.761800px;}
.ws4d{word-spacing:-5.760900px;}
.ws4b{word-spacing:-5.754900px;}
.ws77{word-spacing:-4.100400px;}
.ws53{word-spacing:-4.084200px;}
.ws40{word-spacing:-2.951700px;}
.ws92{word-spacing:-2.889600px;}
.wsa6{word-spacing:-1.414200px;}
.ws96{word-spacing:-0.726000px;}
.ws94{word-spacing:-0.504000px;}
.ws3b{word-spacing:0.000000px;}
.wsa3{word-spacing:0.454200px;}
.ws32{word-spacing:1.440000px;}
.ws30{word-spacing:1.666800px;}
.ws31{word-spacing:1.872000px;}
.wsb4{word-spacing:2.403000px;}
.ws1d{word-spacing:4.779000px;}
.ws76{word-spacing:8.856000px;}
.ws2b{word-spacing:8.872200px;}
.ws2a{word-spacing:9.376200px;}
.ws95{word-spacing:19.433100px;}
.wsb3{word-spacing:22.545000px;}
.ws7c{word-spacing:23.256300px;}
.ws1{word-spacing:455.092800px;}
._2c{margin-left:-3.642600px;}
._5{margin-left:-2.424900px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._25{width:2.293800px;}
._29{width:7.234200px;}
._9{width:15.529500px;}
._24{width:16.891200px;}
._4{width:18.775800px;}
._e{width:20.082300px;}
._10{width:21.152700px;}
._b{width:22.620900px;}
._18{width:23.757000px;}
._17{width:24.892200px;}
._13{width:26.275200px;}
._7{width:28.094100px;}
._d{width:29.274900px;}
._16{width:30.894000px;}
._28{width:31.945200px;}
._6{width:33.231600px;}
._21{width:34.700100px;}
._1{width:36.000000px;}
._12{width:37.950000px;}
._8{width:39.836700px;}
._c{width:41.722800px;}
._1e{width:43.203300px;}
._20{width:45.048600px;}
._23{width:46.296000px;}
._1b{width:47.664000px;}
._11{width:49.369200px;}
._a{width:50.629200px;}
._1f{width:53.211600px;}
._1d{width:54.283800px;}
._2f{width:55.846200px;}
._2d{width:57.049800px;}
._f{width:59.001000px;}
._1a{width:60.984000px;}
._19{width:63.786000px;}
._14{width:66.280200px;}
._2b{width:71.811900px;}
._1c{width:73.293000px;}
._27{width:80.368500px;}
._26{width:81.647700px;}
._22{width:91.008000px;}
._2e{width:94.191300px;}
._15{width:162.000000px;}
._2a{width:188.672100px;}
._0{width:612.144000px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:46.800000px;}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y93{bottom:103.215000px;}
.y92{bottom:123.915000px;}
.y65{bottom:130.755000px;}
.y77{bottom:136.696500px;}
.y91{bottom:144.615000px;}
.y64{bottom:151.455000px;}
.y82{bottom:160.275000px;}
.y90{bottom:165.315000px;}
.y47{bottom:165.675000px;}
.y63{bottom:172.155000px;}
.y76{bottom:178.455000px;}
.y81{bottom:180.975000px;}
.y29{bottom:183.136500px;}
.y46{bottom:186.375000px;}
.y75{bottom:199.155000px;}
.y80{bottom:201.675000px;}
.y28{bottom:203.836500px;}
.y8f{bottom:206.896500px;}
.y45{bottom:207.075000px;}
.y62{bottom:213.915000px;}
.y7f{bottom:222.375000px;}
.y27{bottom:224.536500px;}
.y8e{bottom:227.596500px;}
.y61{bottom:234.615000px;}
.y74{bottom:240.915000px;}
.y7e{bottom:243.075000px;}
.y26{bottom:245.236500px;}
.y8d{bottom:248.295000px;}
.y73{bottom:261.615000px;}
.y25{bottom:265.936500px;}
.y8c{bottom:268.996500px;}
.y60{bottom:276.375000px;}
.y7d{bottom:284.836500px;}
.y24{bottom:286.636500px;}
.y8b{bottom:289.696500px;}
.y44{bottom:290.415000px;}
.y5f{bottom:297.075000px;}
.y23{bottom:307.336500px;}
.y8a{bottom:310.396500px;}
.y89{bottom:331.096500px;}
.y5e{bottom:338.655000px;}
.y22{bottom:349.096500px;}
.y5d{bottom:359.355000px;}
.y39{bottom:363.855000px;}
.y21{bottom:369.795000px;}
.y88{bottom:372.855000px;}
.y5c{bottom:380.055000px;}
.y38{bottom:405.615000px;}
.y20{bottom:411.375000px;}
.y87{bottom:414.615000px;}
.y37{bottom:426.315000px;}
.y1f{bottom:432.075000px;}
.y86{bottom:435.315000px;}
.y36{bottom:447.015000px;}
.y1e{bottom:452.775000px;}
.y85{bottom:456.015000px;}
.y35{bottom:467.715000px;}
.y1d{bottom:473.475000px;}
.y84{bottom:476.715000px;}
.y34{bottom:488.415000px;}
.y1c{bottom:515.236500px;}
.ya3{bottom:515.775000px;}
.y83{bottom:518.296500px;}
.y43{bottom:519.195000px;}
.y33{bottom:530.175000px;}
.y1b{bottom:535.936500px;}
.ya2{bottom:536.475000px;}
.y42{bottom:539.896500px;}
.y32{bottom:550.875000px;}
.y1a{bottom:556.636500px;}
.ya1{bottom:557.175000px;}
.y41{bottom:560.596500px;}
.y19{bottom:577.336500px;}
.y40{bottom:581.295000px;}
.y31{bottom:592.455000px;}
.y18{bottom:598.036500px;}
.ya0{bottom:598.936500px;}
.y3f{bottom:601.996500px;}
.y30{bottom:613.155000px;}
.y17{bottom:618.736500px;}
.y9f{bottom:619.636500px;}
.y3e{bottom:623.055000px;}
.y2f{bottom:633.855000px;}
.y9e{bottom:640.336500px;}
.y3d{bottom:643.936500px;}
.y2e{bottom:654.555000px;}
.y72{bottom:660.315000px;}
.y16{bottom:660.496500px;}
.y5b{bottom:661.936500px;}
.y3c{bottom:664.815000px;}
.y71{bottom:681.015000px;}
.y15{bottom:681.195000px;}
.y9d{bottom:682.096500px;}
.y5a{bottom:682.636500px;}
.y2d{bottom:696.315000px;}
.y70{bottom:701.715000px;}
.y14{bottom:701.896500px;}
.y9c{bottom:702.795000px;}
.y59{bottom:703.336500px;}
.y3b{bottom:706.575000px;}
.y2c{bottom:717.015000px;}
.y13{bottom:722.596500px;}
.y58{bottom:724.036500px;}
.y3a{bottom:727.275000px;}
.y2b{bottom:737.715000px;}
.y12{bottom:743.295000px;}
.y9b{bottom:744.375000px;}
.y57{bottom:744.555000px;}
.y2a{bottom:758.415000px;}
.y11{bottom:763.996500px;}
.y9a{bottom:765.075000px;}
.y10{bottom:784.695000px;}
.y56{bottom:786.315000px;}
.yf{bottom:805.395000px;}
.y6f{bottom:805.755000px;}
.y99{bottom:806.836500px;}
.y55{bottom:807.195000px;}
.y6e{bottom:826.815000px;}
.y54{bottom:828.075000px;}
.ye{bottom:846.975000px;}
.y6d{bottom:847.515000px;}
.y98{bottom:848.596500px;}
.y53{bottom:848.775000px;}
.y6c{bottom:868.215000px;}
.y97{bottom:869.295000px;}
.y52{bottom:869.475000px;}
.yd{bottom:888.736500px;}
.y6b{bottom:889.095000px;}
.y96{bottom:889.995000px;}
.y51{bottom:890.175000px;}
.y6a{bottom:909.975000px;}
.y7c{bottom:910.155000px;}
.y95{bottom:910.695000px;}
.y50{bottom:910.875000px;}
.yc{bottom:930.495000px;}
.y7b{bottom:931.036500px;}
.y94{bottom:931.395000px;}
.y4f{bottom:931.575000px;}
.y69{bottom:951.736500px;}
.y7a{bottom:952.095000px;}
.y4e{bottom:952.275000px;}
.yb{bottom:972.075000px;}
.y68{bottom:972.436500px;}
.y79{bottom:972.795000px;}
.y4d{bottom:972.975000px;}
.y78{bottom:993.495000px;}
.y4c{bottom:993.675000px;}
.ya{bottom:1013.836500px;}
.y67{bottom:1014.195000px;}
.y4b{bottom:1014.375000px;}
.y66{bottom:1034.895000px;}
.y4a{bottom:1035.075000px;}
.y9{bottom:1055.595000px;}
.y49{bottom:1055.775000px;}
.y48{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.h8{height:56.277773px;}
.h9{height:166.359375px;}
.h7{height:167.073375px;}
.h6{height:167.085375px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x13{left:132.120000px;}
.xe{left:137.700000px;}
.xc{left:162.720000px;}
.xb{left:170.820000px;}
.x5{left:191.520000px;}
.x4{left:195.660000px;}
.x11{left:198.360000px;}
.xf{left:285.300000px;}
.xd{left:316.980000px;}
.x10{left:324.180000px;}
.x8{left:428.220000px;}
.x6{left:437.400000px;}
.x12{left:440.820000px;}
.x3{left:465.825000px;}
.x9{left:543.238500px;}
.x7{left:588.600000px;}
.xa{left:711.000000px;}
.x2{left:731.160000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:31.872000pt;}
.ls3{letter-spacing:36.992000pt;}
.ls5{letter-spacing:49.792000pt;}
.ls6{letter-spacing:50.554667pt;}
.ls2{letter-spacing:72.197333pt;}
.ls1{letter-spacing:159.232000pt;}
.wsb{word-spacing:-49.728000pt;}
.ws1b{word-spacing:-37.099200pt;}
.ws18{word-spacing:-36.924533pt;}
.ws1f{word-spacing:-36.922933pt;}
.ws14{word-spacing:-36.921333pt;}
.ws5e{word-spacing:-35.838933pt;}
.ws15{word-spacing:-35.188000pt;}
.ws8c{word-spacing:-35.008000pt;}
.ws13{word-spacing:-34.996000pt;}
.ws60{word-spacing:-34.556800pt;}
.ws83{word-spacing:-34.547200pt;}
.ws82{word-spacing:-34.495200pt;}
.ws48{word-spacing:-34.365333pt;}
.ws6b{word-spacing:-34.364800pt;}
.ws6{word-spacing:-34.362400pt;}
.wsa2{word-spacing:-34.360800pt;}
.ws72{word-spacing:-34.358400pt;}
.ws22{word-spacing:-34.357333pt;}
.wsc{word-spacing:-34.356000pt;}
.ws5{word-spacing:-34.353600pt;}
.ws78{word-spacing:-34.352533pt;}
.ws59{word-spacing:-34.346400pt;}
.ws4f{word-spacing:-34.181333pt;}
.ws6e{word-spacing:-34.173333pt;}
.ws70{word-spacing:-34.168533pt;}
.ws69{word-spacing:-34.166400pt;}
.ws3a{word-spacing:-34.165867pt;}
.ws3c{word-spacing:-34.161600pt;}
.wsb7{word-spacing:-34.161067pt;}
.ws34{word-spacing:-34.154667pt;}
.ws3{word-spacing:-34.110400pt;}
.wsb8{word-spacing:-34.097600pt;}
.wsa1{word-spacing:-33.922133pt;}
.ws9b{word-spacing:-33.920000pt;}
.wsbd{word-spacing:-33.914667pt;}
.ws47{word-spacing:-33.910400pt;}
.ws3d{word-spacing:-33.908800pt;}
.ws7e{word-spacing:-33.905600pt;}
.ws7b{word-spacing:-33.900267pt;}
.ws65{word-spacing:-33.897600pt;}
.wsa{word-spacing:-33.855200pt;}
.ws8b{word-spacing:-33.850667pt;}
.ws29{word-spacing:-33.730133pt;}
.ws0{word-spacing:-33.728000pt;}
.wsd{word-spacing:-33.725600pt;}
.ws4{word-spacing:-33.723200pt;}
.ws33{word-spacing:-33.720000pt;}
.ws80{word-spacing:-33.719200pt;}
.ws35{word-spacing:-33.718400pt;}
.ws2{word-spacing:-33.716800pt;}
.ws81{word-spacing:-33.715733pt;}
.ws7f{word-spacing:-33.709867pt;}
.ws79{word-spacing:-33.534400pt;}
.ws9{word-spacing:-33.526933pt;}
.ws9d{word-spacing:-33.526400pt;}
.ws26{word-spacing:-33.520000pt;}
.ws66{word-spacing:-33.280000pt;}
.ws67{word-spacing:-33.075200pt;}
.ws1c{word-spacing:-33.051200pt;}
.ws9c{word-spacing:-32.632000pt;}
.ws75{word-spacing:-32.453333pt;}
.ws49{word-spacing:-32.445600pt;}
.wsb2{word-spacing:-32.444533pt;}
.ws74{word-spacing:-32.429600pt;}
.ws9a{word-spacing:-32.323200pt;}
.ws1e{word-spacing:-32.239200pt;}
.ws5d{word-spacing:-32.000000pt;}
.ws7d{word-spacing:-31.936000pt;}
.wsa4{word-spacing:-31.806400pt;}
.wsba{word-spacing:-31.800800pt;}
.ws52{word-spacing:-31.609600pt;}
.ws84{word-spacing:-31.356800pt;}
.wsa0{word-spacing:-31.166400pt;}
.ws2e{word-spacing:-31.161600pt;}
.ws6c{word-spacing:-30.976533pt;}
.ws21{word-spacing:-30.976000pt;}
.ws50{word-spacing:-30.971733pt;}
.ws62{word-spacing:-30.720000pt;}
.ws20{word-spacing:-30.712800pt;}
.wsb9{word-spacing:-30.527200pt;}
.ws17{word-spacing:-30.522400pt;}
.ws63{word-spacing:-30.520000pt;}
.ws7a{word-spacing:-30.329600pt;}
.ws85{word-spacing:-30.015200pt;}
.ws6d{word-spacing:-29.886400pt;}
.ws6a{word-spacing:-29.883200pt;}
.ws8{word-spacing:-29.820267pt;}
.wsa8{word-spacing:-29.690400pt;}
.ws73{word-spacing:-29.689600pt;}
.ws37{word-spacing:-29.678400pt;}
.ws54{word-spacing:-29.440000pt;}
.ws99{word-spacing:-29.248000pt;}
.ws42{word-spacing:-28.608000pt;}
.wsaa{word-spacing:-28.596800pt;}
.wsb5{word-spacing:-28.593067pt;}
.ws71{word-spacing:-28.592800pt;}
.ws89{word-spacing:-28.406400pt;}
.ws8a{word-spacing:-28.146133pt;}
.ws97{word-spacing:-27.968000pt;}
.wsbb{word-spacing:-27.966400pt;}
.ws9f{word-spacing:-27.956800pt;}
.ws46{word-spacing:-27.456000pt;}
.ws28{word-spacing:-27.321600pt;}
.ws5c{word-spacing:-26.880000pt;}
.ws44{word-spacing:-26.867733pt;}
.wsab{word-spacing:-26.688000pt;}
.ws27{word-spacing:-26.676267pt;}
.wsbf{word-spacing:-26.044800pt;}
.ws11{word-spacing:-26.042933pt;}
.ws86{word-spacing:-26.034400pt;}
.wsb0{word-spacing:-25.600000pt;}
.wsaf{word-spacing:-25.198400pt;}
.ws1a{word-spacing:-24.933600pt;}
.ws5a{word-spacing:-24.123733pt;}
.wsae{word-spacing:-23.483200pt;}
.ws68{word-spacing:-23.481600pt;}
.ws39{word-spacing:-23.472000pt;}
.ws36{word-spacing:-23.291200pt;}
.wsbc{word-spacing:-23.031467pt;}
.ws87{word-spacing:-23.030400pt;}
.ws4c{word-spacing:-22.853333pt;}
.ws4a{word-spacing:-22.848000pt;}
.ws4e{word-spacing:-22.846400pt;}
.ws3f{word-spacing:-22.841600pt;}
.ws3e{word-spacing:-22.400000pt;}
.ws41{word-spacing:-22.375467pt;}
.ws58{word-spacing:-21.753600pt;}
.ws5b{word-spacing:-21.120000pt;}
.ws43{word-spacing:-21.112533pt;}
.wsf{word-spacing:-21.105600pt;}
.ws8f{word-spacing:-20.416000pt;}
.ws5f{word-spacing:-20.410667pt;}
.ws57{word-spacing:-19.646400pt;}
.ws10{word-spacing:-19.636800pt;}
.ws93{word-spacing:-19.200000pt;}
.ws91{word-spacing:-19.008000pt;}
.wse{word-spacing:-18.548533pt;}
.ws88{word-spacing:-18.500533pt;}
.wsbe{word-spacing:-18.367200pt;}
.ws2d{word-spacing:-17.907200pt;}
.wsa7{word-spacing:-17.530133pt;}
.ws61{word-spacing:-17.277600pt;}
.ws24{word-spacing:-17.083200pt;}
.wsa9{word-spacing:-17.081600pt;}
.ws25{word-spacing:-16.896000pt;}
.ws7{word-spacing:-16.420000pt;}
.wsb1{word-spacing:-15.990400pt;}
.ws12{word-spacing:-15.800800pt;}
.wsb6{word-spacing:-15.596800pt;}
.ws2c{word-spacing:-15.343467pt;}
.wsa5{word-spacing:-14.961600pt;}
.wsac{word-spacing:-14.514400pt;}
.ws9e{word-spacing:-14.068800pt;}
.wsad{word-spacing:-14.062400pt;}
.ws19{word-spacing:-13.882400pt;}
.ws98{word-spacing:-13.441600pt;}
.ws55{word-spacing:-13.248000pt;}
.ws51{word-spacing:-12.798400pt;}
.ws45{word-spacing:-12.610933pt;}
.ws8e{word-spacing:-10.240000pt;}
.ws64{word-spacing:-9.600000pt;}
.ws6f{word-spacing:-8.758400pt;}
.ws56{word-spacing:-8.752800pt;}
.ws8d{word-spacing:-7.936000pt;}
.ws38{word-spacing:-7.476000pt;}
.ws2f{word-spacing:-6.832533pt;}
.ws23{word-spacing:-6.828800pt;}
.ws16{word-spacing:-5.740533pt;}
.ws90{word-spacing:-5.121600pt;}
.ws4d{word-spacing:-5.120800pt;}
.ws4b{word-spacing:-5.115467pt;}
.ws77{word-spacing:-3.644800pt;}
.ws53{word-spacing:-3.630400pt;}
.ws40{word-spacing:-2.623733pt;}
.ws92{word-spacing:-2.568533pt;}
.wsa6{word-spacing:-1.257067pt;}
.ws96{word-spacing:-0.645333pt;}
.ws94{word-spacing:-0.448000pt;}
.ws3b{word-spacing:0.000000pt;}
.wsa3{word-spacing:0.403733pt;}
.ws32{word-spacing:1.280000pt;}
.ws30{word-spacing:1.481600pt;}
.ws31{word-spacing:1.664000pt;}
.wsb4{word-spacing:2.136000pt;}
.ws1d{word-spacing:4.248000pt;}
.ws76{word-spacing:7.872000pt;}
.ws2b{word-spacing:7.886400pt;}
.ws2a{word-spacing:8.334400pt;}
.ws95{word-spacing:17.273867pt;}
.wsb3{word-spacing:20.040000pt;}
.ws7c{word-spacing:20.672267pt;}
.ws1{word-spacing:404.526933pt;}
._2c{margin-left:-3.237867pt;}
._5{margin-left:-2.155467pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._25{width:2.038933pt;}
._29{width:6.430400pt;}
._9{width:13.804000pt;}
._24{width:15.014400pt;}
._4{width:16.689600pt;}
._e{width:17.850933pt;}
._10{width:18.802400pt;}
._b{width:20.107467pt;}
._18{width:21.117333pt;}
._17{width:22.126400pt;}
._13{width:23.355733pt;}
._7{width:24.972533pt;}
._d{width:26.022133pt;}
._16{width:27.461333pt;}
._28{width:28.395733pt;}
._6{width:29.539200pt;}
._21{width:30.844533pt;}
._1{width:32.000000pt;}
._12{width:33.733333pt;}
._8{width:35.410400pt;}
._c{width:37.086933pt;}
._1e{width:38.402933pt;}
._20{width:40.043200pt;}
._23{width:41.152000pt;}
._1b{width:42.368000pt;}
._11{width:43.883733pt;}
._a{width:45.003733pt;}
._1f{width:47.299200pt;}
._1d{width:48.252267pt;}
._2f{width:49.641067pt;}
._2d{width:50.710933pt;}
._f{width:52.445333pt;}
._1a{width:54.208000pt;}
._19{width:56.698667pt;}
._14{width:58.915733pt;}
._2b{width:63.832800pt;}
._1c{width:65.149333pt;}
._27{width:71.438667pt;}
._26{width:72.575733pt;}
._22{width:80.896000pt;}
._2e{width:83.725600pt;}
._15{width:144.000000pt;}
._2a{width:167.708533pt;}
._0{width:544.128000pt;}
.fs2{font-size:41.600000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y93{bottom:91.746667pt;}
.y92{bottom:110.146667pt;}
.y65{bottom:116.226667pt;}
.y77{bottom:121.508000pt;}
.y91{bottom:128.546667pt;}
.y64{bottom:134.626667pt;}
.y82{bottom:142.466667pt;}
.y90{bottom:146.946667pt;}
.y47{bottom:147.266667pt;}
.y63{bottom:153.026667pt;}
.y76{bottom:158.626667pt;}
.y81{bottom:160.866667pt;}
.y29{bottom:162.788000pt;}
.y46{bottom:165.666667pt;}
.y75{bottom:177.026667pt;}
.y80{bottom:179.266667pt;}
.y28{bottom:181.188000pt;}
.y8f{bottom:183.908000pt;}
.y45{bottom:184.066667pt;}
.y62{bottom:190.146667pt;}
.y7f{bottom:197.666667pt;}
.y27{bottom:199.588000pt;}
.y8e{bottom:202.308000pt;}
.y61{bottom:208.546667pt;}
.y74{bottom:214.146667pt;}
.y7e{bottom:216.066667pt;}
.y26{bottom:217.988000pt;}
.y8d{bottom:220.706667pt;}
.y73{bottom:232.546667pt;}
.y25{bottom:236.388000pt;}
.y8c{bottom:239.108000pt;}
.y60{bottom:245.666667pt;}
.y7d{bottom:253.188000pt;}
.y24{bottom:254.788000pt;}
.y8b{bottom:257.508000pt;}
.y44{bottom:258.146667pt;}
.y5f{bottom:264.066667pt;}
.y23{bottom:273.188000pt;}
.y8a{bottom:275.908000pt;}
.y89{bottom:294.308000pt;}
.y5e{bottom:301.026667pt;}
.y22{bottom:310.308000pt;}
.y5d{bottom:319.426667pt;}
.y39{bottom:323.426667pt;}
.y21{bottom:328.706667pt;}
.y88{bottom:331.426667pt;}
.y5c{bottom:337.826667pt;}
.y38{bottom:360.546667pt;}
.y20{bottom:365.666667pt;}
.y87{bottom:368.546667pt;}
.y37{bottom:378.946667pt;}
.y1f{bottom:384.066667pt;}
.y86{bottom:386.946667pt;}
.y36{bottom:397.346667pt;}
.y1e{bottom:402.466667pt;}
.y85{bottom:405.346667pt;}
.y35{bottom:415.746667pt;}
.y1d{bottom:420.866667pt;}
.y84{bottom:423.746667pt;}
.y34{bottom:434.146667pt;}
.y1c{bottom:457.988000pt;}
.ya3{bottom:458.466667pt;}
.y83{bottom:460.708000pt;}
.y43{bottom:461.506667pt;}
.y33{bottom:471.266667pt;}
.y1b{bottom:476.388000pt;}
.ya2{bottom:476.866667pt;}
.y42{bottom:479.908000pt;}
.y32{bottom:489.666667pt;}
.y1a{bottom:494.788000pt;}
.ya1{bottom:495.266667pt;}
.y41{bottom:498.308000pt;}
.y19{bottom:513.188000pt;}
.y40{bottom:516.706667pt;}
.y31{bottom:526.626667pt;}
.y18{bottom:531.588000pt;}
.ya0{bottom:532.388000pt;}
.y3f{bottom:535.108000pt;}
.y30{bottom:545.026667pt;}
.y17{bottom:549.988000pt;}
.y9f{bottom:550.788000pt;}
.y3e{bottom:553.826667pt;}
.y2f{bottom:563.426667pt;}
.y9e{bottom:569.188000pt;}
.y3d{bottom:572.388000pt;}
.y2e{bottom:581.826667pt;}
.y72{bottom:586.946667pt;}
.y16{bottom:587.108000pt;}
.y5b{bottom:588.388000pt;}
.y3c{bottom:590.946667pt;}
.y71{bottom:605.346667pt;}
.y15{bottom:605.506667pt;}
.y9d{bottom:606.308000pt;}
.y5a{bottom:606.788000pt;}
.y2d{bottom:618.946667pt;}
.y70{bottom:623.746667pt;}
.y14{bottom:623.908000pt;}
.y9c{bottom:624.706667pt;}
.y59{bottom:625.188000pt;}
.y3b{bottom:628.066667pt;}
.y2c{bottom:637.346667pt;}
.y13{bottom:642.308000pt;}
.y58{bottom:643.588000pt;}
.y3a{bottom:646.466667pt;}
.y2b{bottom:655.746667pt;}
.y12{bottom:660.706667pt;}
.y9b{bottom:661.666667pt;}
.y57{bottom:661.826667pt;}
.y2a{bottom:674.146667pt;}
.y11{bottom:679.108000pt;}
.y9a{bottom:680.066667pt;}
.y10{bottom:697.506667pt;}
.y56{bottom:698.946667pt;}
.yf{bottom:715.906667pt;}
.y6f{bottom:716.226667pt;}
.y99{bottom:717.188000pt;}
.y55{bottom:717.506667pt;}
.y6e{bottom:734.946667pt;}
.y54{bottom:736.066667pt;}
.ye{bottom:752.866667pt;}
.y6d{bottom:753.346667pt;}
.y98{bottom:754.308000pt;}
.y53{bottom:754.466667pt;}
.y6c{bottom:771.746667pt;}
.y97{bottom:772.706667pt;}
.y52{bottom:772.866667pt;}
.yd{bottom:789.988000pt;}
.y6b{bottom:790.306667pt;}
.y96{bottom:791.106667pt;}
.y51{bottom:791.266667pt;}
.y6a{bottom:808.866667pt;}
.y7c{bottom:809.026667pt;}
.y95{bottom:809.506667pt;}
.y50{bottom:809.666667pt;}
.yc{bottom:827.106667pt;}
.y7b{bottom:827.588000pt;}
.y94{bottom:827.906667pt;}
.y4f{bottom:828.066667pt;}
.y69{bottom:845.988000pt;}
.y7a{bottom:846.306667pt;}
.y4e{bottom:846.466667pt;}
.yb{bottom:864.066667pt;}
.y68{bottom:864.388000pt;}
.y79{bottom:864.706667pt;}
.y4d{bottom:864.866667pt;}
.y78{bottom:883.106667pt;}
.y4c{bottom:883.266667pt;}
.ya{bottom:901.188000pt;}
.y67{bottom:901.506667pt;}
.y4b{bottom:901.666667pt;}
.y66{bottom:919.906667pt;}
.y4a{bottom:920.066667pt;}
.y9{bottom:938.306667pt;}
.y49{bottom:938.466667pt;}
.y48{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.h8{height:50.024687pt;}
.h9{height:147.875000pt;}
.h7{height:148.509667pt;}
.h6{height:148.520333pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x13{left:117.440000pt;}
.xe{left:122.400000pt;}
.xc{left:144.640000pt;}
.xb{left:151.840000pt;}
.x5{left:170.240000pt;}
.x4{left:173.920000pt;}
.x11{left:176.320000pt;}
.xf{left:253.600000pt;}
.xd{left:281.760000pt;}
.x10{left:288.160000pt;}
.x8{left:380.640000pt;}
.x6{left:388.800000pt;}
.x12{left:391.840000pt;}
.x3{left:414.066667pt;}
.x9{left:482.878667pt;}
.x7{left:523.200000pt;}
.xa{left:632.000000pt;}
.x2{left:649.920000pt;}
}




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