
    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_0421791cdf32be49aed9aa79.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_8f519910e8c763c9bca45c83.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_8b9bc4626d1140c8e062cd99.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_2c08a6ea2e1e7ff7384408cf.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c29f3a3f583f9f5bd662def5.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2f109a7036d72a32edc2ee3e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.906250;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.156400px;}
.ls3{letter-spacing:12.024000px;}
.ls2{letter-spacing:17.280000px;}
.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;}
}
.ws18{word-spacing:-74.156400px;}
.ws48{word-spacing:-72.000000px;}
.wsf{word-spacing:-55.944000px;}
.ws1b{word-spacing:-55.443600px;}
.ws5c{word-spacing:-43.920000px;}
.ws1a{word-spacing:-38.886000px;}
.ws55{word-spacing:-38.880000px;}
.ws4f{word-spacing:-38.871000px;}
.ws67{word-spacing:-38.862000px;}
.ws37{word-spacing:-38.668200px;}
.ws73{word-spacing:-38.666400px;}
.wsaf{word-spacing:-38.660400px;}
.ws6{word-spacing:-38.657700px;}
.wsc{word-spacing:-38.651400px;}
.ws5{word-spacing:-38.647800px;}
.ws84{word-spacing:-38.643000px;}
.ws7a{word-spacing:-38.590800px;}
.ws3c{word-spacing:-38.581800px;}
.ws45{word-spacing:-38.578500px;}
.wsaa{word-spacing:-38.577600px;}
.wsa1{word-spacing:-38.448000px;}
.wsa{word-spacing:-38.376000px;}
.ws3{word-spacing:-38.374200px;}
.ws9{word-spacing:-38.367900px;}
.ws11{word-spacing:-38.166000px;}
.ws10{word-spacing:-38.162400px;}
.ws20{word-spacing:-38.160000px;}
.wscf{word-spacing:-38.157300px;}
.ws2b{word-spacing:-38.156400px;}
.wsb4{word-spacing:-38.154600px;}
.ws1e{word-spacing:-38.154000px;}
.wse{word-spacing:-38.152800px;}
.wsb{word-spacing:-38.151900px;}
.ws61{word-spacing:-38.138400px;}
.ws43{word-spacing:-38.129400px;}
.ws12{word-spacing:-37.946400px;}
.wsba{word-spacing:-37.944600px;}
.ws0{word-spacing:-37.944000px;}
.wsce{word-spacing:-37.942800px;}
.ws69{word-spacing:-37.942200px;}
.ws78{word-spacing:-37.941900px;}
.wsc7{word-spacing:-37.940400px;}
.ws92{word-spacing:-37.939200px;}
.ws4{word-spacing:-37.938600px;}
.wsc3{word-spacing:-37.937400px;}
.wscc{word-spacing:-37.934100px;}
.wsd{word-spacing:-37.933200px;}
.ws2{word-spacing:-37.931400px;}
.ws6b{word-spacing:-37.917000px;}
.ws94{word-spacing:-37.869000px;}
.wsc5{word-spacing:-37.864800px;}
.ws99{word-spacing:-37.859400px;}
.wsa5{word-spacing:-37.848600px;}
.wsd1{word-spacing:-37.722600px;}
.ws8a{word-spacing:-37.717200px;}
.ws9d{word-spacing:-37.713600px;}
.ws4a{word-spacing:-37.440000px;}
.ws40{word-spacing:-37.436400px;}
.ws4b{word-spacing:-37.435200px;}
.ws49{word-spacing:-37.226400px;}
.ws76{word-spacing:-37.220400px;}
.ws28{word-spacing:-36.720000px;}
.wsb6{word-spacing:-36.500400px;}
.ws63{word-spacing:-36.425400px;}
.ws89{word-spacing:-36.006000px;}
.ws19{word-spacing:-35.996400px;}
.ws90{word-spacing:-35.991000px;}
.ws17{word-spacing:-35.989200px;}
.ws39{word-spacing:-35.786400px;}
.ws4c{word-spacing:-35.781000px;}
.wsae{word-spacing:-35.778600px;}
.ws5b{word-spacing:-35.769600px;}
.wsa0{word-spacing:-35.697600px;}
.ws70{word-spacing:-35.280000px;}
.ws5a{word-spacing:-35.271000px;}
.ws59{word-spacing:-35.070000px;}
.ws3f{word-spacing:-34.986600px;}
.ws9c{word-spacing:-34.985700px;}
.ws9a{word-spacing:-34.556400px;}
.ws8c{word-spacing:-34.552800px;}
.ws71{word-spacing:-34.346400px;}
.ws6d{word-spacing:-34.344000px;}
.wsbf{word-spacing:-34.342800px;}
.ws93{word-spacing:-34.340400px;}
.wsc9{word-spacing:-34.337700px;}
.ws50{word-spacing:-34.255800px;}
.ws46{word-spacing:-34.130400px;}
.ws8e{word-spacing:-34.128000px;}
.ws47{word-spacing:-33.840000px;}
.ws4e{word-spacing:-33.838800px;}
.ws6e{word-spacing:-33.834000px;}
.ws95{word-spacing:-33.832800px;}
.ws54{word-spacing:-33.822000px;}
.ws62{word-spacing:-33.630000px;}
.ws38{word-spacing:-33.620100px;}
.ws7e{word-spacing:-33.618600px;}
.ws79{word-spacing:-33.552000px;}
.ws8{word-spacing:-33.547800px;}
.ws7c{word-spacing:-33.120000px;}
.ws29{word-spacing:-33.110400px;}
.wsb8{word-spacing:-32.904600px;}
.wscd{word-spacing:-32.897100px;}
.ws6a{word-spacing:-32.824800px;}
.ws13{word-spacing:-32.397300px;}
.wsb9{word-spacing:-32.396400px;}
.ws7b{word-spacing:-32.184000px;}
.wsc6{word-spacing:-32.182800px;}
.ws51{word-spacing:-32.180400px;}
.ws7d{word-spacing:-32.172300px;}
.ws2a{word-spacing:-31.676400px;}
.ws82{word-spacing:-31.658400px;}
.wsca{word-spacing:-31.470000px;}
.wscb{word-spacing:-31.464600px;}
.wsc4{word-spacing:-31.456800px;}
.ws36{word-spacing:-31.456500px;}
.ws4d{word-spacing:-31.455000px;}
.ws2e{word-spacing:-31.379400px;}
.wsbc{word-spacing:-30.966000px;}
.ws7f{word-spacing:-30.960000px;}
.wsa9{word-spacing:-30.954000px;}
.ws8f{word-spacing:-30.746400px;}
.wsc8{word-spacing:-30.744000px;}
.ws60{word-spacing:-30.718800px;}
.wsb7{word-spacing:-30.661200px;}
.wsb3{word-spacing:-30.026400px;}
.ws74{word-spacing:-30.024600px;}
.wsa6{word-spacing:-29.304000px;}
.ws31{word-spacing:-29.300400px;}
.ws75{word-spacing:-29.288700px;}
.ws64{word-spacing:-29.280600px;}
.ws22{word-spacing:-28.796400px;}
.ws88{word-spacing:-28.791000px;}
.ws34{word-spacing:-28.776600px;}
.wsad{word-spacing:-28.587300px;}
.ws6f{word-spacing:-28.080000px;}
.ws33{word-spacing:-28.071000px;}
.ws98{word-spacing:-28.063200px;}
.wsc0{word-spacing:-27.779400px;}
.wsbe{word-spacing:-27.632700px;}
.ws72{word-spacing:-27.352800px;}
.ws14{word-spacing:-27.140400px;}
.ws30{word-spacing:-26.636400px;}
.ws80{word-spacing:-26.424000px;}
.ws1f{word-spacing:-26.415000px;}
.ws68{word-spacing:-25.920000px;}
.ws9b{word-spacing:-25.912800px;}
.wsa4{word-spacing:-25.910400px;}
.ws8b{word-spacing:-25.700400px;}
.ws1d{word-spacing:-25.696800px;}
.ws86{word-spacing:-25.689600px;}
.ws5d{word-spacing:-25.621200px;}
.wsac{word-spacing:-25.192800px;}
.ws3e{word-spacing:-25.174800px;}
.wsc2{word-spacing:-24.981000px;}
.ws3a{word-spacing:-24.978600px;}
.ws96{word-spacing:-24.977700px;}
.ws32{word-spacing:-24.975900px;}
.wsa3{word-spacing:-24.966000px;}
.ws97{word-spacing:-24.480000px;}
.ws23{word-spacing:-24.254700px;}
.wsab{word-spacing:-23.760000px;}
.wsb1{word-spacing:-23.541300px;}
.ws21{word-spacing:-23.540400px;}
.ws81{word-spacing:-23.534400px;}
.ws8d{word-spacing:-23.468400px;}
.ws83{word-spacing:-23.464800px;}
.ws24{word-spacing:-23.324400px;}
.ws27{word-spacing:-23.028300px;}
.ws26{word-spacing:-22.830000px;}
.wsa8{word-spacing:-22.320000px;}
.ws57{word-spacing:-22.104600px;}
.wsb5{word-spacing:-21.604200px;}
.ws5f{word-spacing:-21.600000px;}
.ws3b{word-spacing:-21.597000px;}
.wsa2{word-spacing:-21.596400px;}
.ws56{word-spacing:-21.595200px;}
.ws1c{word-spacing:-21.591900px;}
.wsb0{word-spacing:-21.386400px;}
.ws41{word-spacing:-21.380400px;}
.ws9f{word-spacing:-20.882400px;}
.ws5e{word-spacing:-20.166000px;}
.ws3d{word-spacing:-19.940400px;}
.ws65{word-spacing:-19.930500px;}
.ws58{word-spacing:-19.856700px;}
.ws91{word-spacing:-19.226400px;}
.ws15{word-spacing:-19.224000px;}
.ws66{word-spacing:-18.720000px;}
.wsa7{word-spacing:-18.698400px;}
.ws42{word-spacing:-18.500400px;}
.ws7{word-spacing:-18.472500px;}
.ws2c{word-spacing:-17.708400px;}
.ws16{word-spacing:-17.703600px;}
.ws53{word-spacing:-16.989000px;}
.wsc1{word-spacing:-16.552800px;}
.ws9e{word-spacing:-16.347300px;}
.ws35{word-spacing:-15.768000px;}
.ws2f{word-spacing:-15.116400px;}
.wsbd{word-spacing:-14.900400px;}
.wsd0{word-spacing:-13.470000px;}
.ws44{word-spacing:-13.440000px;}
.ws2d{word-spacing:-12.960000px;}
.ws52{word-spacing:-12.663600px;}
.wsb2{word-spacing:-12.240000px;}
.ws87{word-spacing:-12.018600px;}
.ws25{word-spacing:-11.504400px;}
.ws85{word-spacing:-10.563300px;}
.ws77{word-spacing:-8.416800px;}
.wsbb{word-spacing:-6.473700px;}
.ws6c{word-spacing:0.000000px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._a{width:2.688000px;}
._4{width:18.775800px;}
._d{width:20.136000px;}
._9{width:21.340800px;}
._16{width:23.370300px;}
._11{width:24.441600px;}
._5{width:25.482600px;}
._14{width:26.627400px;}
._e{width:28.305600px;}
._6{width:30.302400px;}
._c{width:32.176800px;}
._f{width:33.262200px;}
._b{width:34.344000px;}
._1{width:36.000000px;}
._18{width:37.141500px;}
._7{width:38.160000px;}
._8{width:39.591600px;}
._17{width:40.699200px;}
._15{width:41.913600px;}
._12{width:43.992000px;}
._13{width:45.033600px;}
._10{width:46.346400px;}
._19{width:50.531400px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.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;}
.y4d{bottom:101.236500px;}
.y26{bottom:114.015000px;}
.yad{bottom:121.396500px;}
.y4c{bottom:121.936500px;}
.y86{bottom:122.296500px;}
.y25{bottom:134.715000px;}
.yac{bottom:142.096500px;}
.y4b{bottom:142.636500px;}
.y85{bottom:142.996500px;}
.y24{bottom:155.415000px;}
.y73{bottom:155.775000px;}
.y91{bottom:163.336500px;}
.y84{bottom:163.696500px;}
.y23{bottom:176.115000px;}
.y72{bottom:176.475000px;}
.yab{bottom:183.675000px;}
.y90{bottom:184.036500px;}
.y4a{bottom:184.396500px;}
.yaa{bottom:204.375000px;}
.y8f{bottom:204.736500px;}
.y49{bottom:205.096500px;}
.y22{bottom:217.875000px;}
.y71{bottom:218.236500px;}
.ya9{bottom:225.075000px;}
.y21{bottom:238.575000px;}
.y8e{bottom:246.496500px;}
.y48{bottom:246.675000px;}
.y20{bottom:259.275000px;}
.y70{bottom:259.815000px;}
.ya8{bottom:266.836500px;}
.y8d{bottom:267.196500px;}
.y1f{bottom:279.795000px;}
.y6f{bottom:280.515000px;}
.y8c{bottom:287.896500px;}
.y47{bottom:288.436500px;}
.y1e{bottom:301.936500px;}
.y8b{bottom:308.596500px;}
.y46{bottom:309.136500px;}
.y6e{bottom:322.275000px;}
.y1d{bottom:325.336500px;}
.y8a{bottom:329.295000px;}
.y45{bottom:329.836500px;}
.y6d{bottom:342.975000px;}
.y1c{bottom:347.295000px;}
.ya7{bottom:349.996500px;}
.y44{bottom:350.536500px;}
.y83{bottom:350.896500px;}
.y6c{bottom:363.675000px;}
.y1b{bottom:367.996500px;}
.ya6{bottom:370.696500px;}
.y89{bottom:370.875000px;}
.y43{bottom:371.236500px;}
.y82{bottom:371.596500px;}
.y6b{bottom:384.375000px;}
.y1a{bottom:388.696500px;}
.y88{bottom:391.575000px;}
.y42{bottom:391.936500px;}
.y81{bottom:392.295000px;}
.y6a{bottom:405.075000px;}
.y19{bottom:409.396500px;}
.ya5{bottom:412.275000px;}
.y41{bottom:412.636500px;}
.y80{bottom:412.996500px;}
.y69{bottom:425.775000px;}
.ya4{bottom:432.975000px;}
.y87{bottom:433.336500px;}
.y7f{bottom:433.696500px;}
.y68{bottom:446.475000px;}
.y18{bottom:450.975000px;}
.ya3{bottom:453.675000px;}
.y40{bottom:454.396500px;}
.y67{bottom:467.175000px;}
.ya2{bottom:474.375000px;}
.y3f{bottom:475.096500px;}
.y17{bottom:492.736500px;}
.ya1{bottom:495.075000px;}
.y3e{bottom:495.796500px;}
.y66{bottom:508.755000px;}
.ya0{bottom:515.775000px;}
.y3d{bottom:516.496500px;}
.y7e{bottom:516.675000px;}
.y65{bottom:529.455000px;}
.y16{bottom:534.496500px;}
.y3c{bottom:537.195000px;}
.y7d{bottom:537.375000px;}
.y64{bottom:550.155000px;}
.y9f{bottom:557.536500px;}
.y3b{bottom:557.896500px;}
.y7c{bottom:558.075000px;}
.y63{bottom:570.855000px;}
.y15{bottom:576.075000px;}
.y9e{bottom:578.236500px;}
.y7b{bottom:578.775000px;}
.y62{bottom:591.555000px;}
.y9d{bottom:598.936500px;}
.y3a{bottom:599.475000px;}
.y61{bottom:613.695000px;}
.y14{bottom:617.836500px;}
.y9c{bottom:619.636500px;}
.y39{bottom:620.175000px;}
.y60{bottom:635.655000px;}
.y9b{bottom:640.336500px;}
.y38{bottom:640.875000px;}
.y5f{bottom:656.355000px;}
.y13{bottom:659.596500px;}
.y9a{bottom:661.036500px;}
.y37{bottom:661.575000px;}
.y7a{bottom:661.936500px;}
.y5e{bottom:677.055000px;}
.y36{bottom:682.275000px;}
.y79{bottom:682.636500px;}
.y12{bottom:701.175000px;}
.y99{bottom:702.795000px;}
.y35{bottom:702.975000px;}
.y78{bottom:703.336500px;}
.y34{bottom:723.675000px;}
.y77{bottom:724.036500px;}
.y11{bottom:742.936500px;}
.y33{bottom:744.375000px;}
.y76{bottom:744.736500px;}
.y5d{bottom:760.395000px;}
.y98{bottom:765.075000px;}
.y75{bottom:765.436500px;}
.y5c{bottom:781.096500px;}
.y10{bottom:784.695000px;}
.y32{bottom:786.136500px;}
.y5b{bottom:801.795000px;}
.y97{bottom:806.836500px;}
.y74{bottom:807.195000px;}
.y5a{bottom:823.936500px;}
.yf{bottom:826.275000px;}
.y96{bottom:827.536500px;}
.y31{bottom:827.895000px;}
.y59{bottom:845.895000px;}
.y95{bottom:848.236500px;}
.y30{bottom:848.596500px;}
.y58{bottom:866.596500px;}
.ye{bottom:868.036500px;}
.y94{bottom:868.936500px;}
.y2f{bottom:869.295000px;}
.y57{bottom:887.295000px;}
.y2e{bottom:889.995000px;}
.y56{bottom:907.995000px;}
.yd{bottom:909.795000px;}
.y2d{bottom:910.695000px;}
.y55{bottom:928.695000px;}
.y2c{bottom:931.395000px;}
.yc{bottom:951.375000px;}
.y93{bottom:952.095000px;}
.y54{bottom:970.275000px;}
.y92{bottom:972.795000px;}
.y2b{bottom:972.975000px;}
.y53{bottom:990.975000px;}
.yb{bottom:993.136500px;}
.y2a{bottom:993.675000px;}
.y52{bottom:1011.675000px;}
.yae{bottom:1014.195000px;}
.y29{bottom:1014.375000px;}
.y51{bottom:1032.375000px;}
.ya{bottom:1034.895000px;}
.y28{bottom:1035.075000px;}
.y50{bottom:1053.075000px;}
.y27{bottom:1055.775000px;}
.y4f{bottom:1073.775000px;}
.y9{bottom:1076.475000px;}
.y4e{bottom:1095.915000px;}
.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:49.992188px;}
.h6{height:50.027344px;}
.h7{height:57.774000px;}
.h9{height:57.780000px;}
.h8{height:58.500000px;}
.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;}
.xb{left:132.120000px;}
.x4{left:147.960000px;}
.x5{left:340.380000px;}
.x7{left:463.320000px;}
.x3{left:465.825000px;}
.x8{left:503.820000px;}
.x6{left:520.200000px;}
.x9{left:614.160000px;}
.xa{left:640.260000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:1.916800pt;}
.ls3{letter-spacing:10.688000pt;}
.ls2{letter-spacing:15.360000pt;}
.ws18{word-spacing:-65.916800pt;}
.ws48{word-spacing:-64.000000pt;}
.wsf{word-spacing:-49.728000pt;}
.ws1b{word-spacing:-49.283200pt;}
.ws5c{word-spacing:-39.040000pt;}
.ws1a{word-spacing:-34.565333pt;}
.ws55{word-spacing:-34.560000pt;}
.ws4f{word-spacing:-34.552000pt;}
.ws67{word-spacing:-34.544000pt;}
.ws37{word-spacing:-34.371733pt;}
.ws73{word-spacing:-34.370133pt;}
.wsaf{word-spacing:-34.364800pt;}
.ws6{word-spacing:-34.362400pt;}
.wsc{word-spacing:-34.356800pt;}
.ws5{word-spacing:-34.353600pt;}
.ws84{word-spacing:-34.349333pt;}
.ws7a{word-spacing:-34.302933pt;}
.ws3c{word-spacing:-34.294933pt;}
.ws45{word-spacing:-34.292000pt;}
.wsaa{word-spacing:-34.291200pt;}
.wsa1{word-spacing:-34.176000pt;}
.wsa{word-spacing:-34.112000pt;}
.ws3{word-spacing:-34.110400pt;}
.ws9{word-spacing:-34.104800pt;}
.ws11{word-spacing:-33.925333pt;}
.ws10{word-spacing:-33.922133pt;}
.ws20{word-spacing:-33.920000pt;}
.wscf{word-spacing:-33.917600pt;}
.ws2b{word-spacing:-33.916800pt;}
.wsb4{word-spacing:-33.915200pt;}
.ws1e{word-spacing:-33.914667pt;}
.wse{word-spacing:-33.913600pt;}
.wsb{word-spacing:-33.912800pt;}
.ws61{word-spacing:-33.900800pt;}
.ws43{word-spacing:-33.892800pt;}
.ws12{word-spacing:-33.730133pt;}
.wsba{word-spacing:-33.728533pt;}
.ws0{word-spacing:-33.728000pt;}
.wsce{word-spacing:-33.726933pt;}
.ws69{word-spacing:-33.726400pt;}
.ws78{word-spacing:-33.726133pt;}
.wsc7{word-spacing:-33.724800pt;}
.ws92{word-spacing:-33.723733pt;}
.ws4{word-spacing:-33.723200pt;}
.wsc3{word-spacing:-33.722133pt;}
.wscc{word-spacing:-33.719200pt;}
.wsd{word-spacing:-33.718400pt;}
.ws2{word-spacing:-33.716800pt;}
.ws6b{word-spacing:-33.704000pt;}
.ws94{word-spacing:-33.661333pt;}
.wsc5{word-spacing:-33.657600pt;}
.ws99{word-spacing:-33.652800pt;}
.wsa5{word-spacing:-33.643200pt;}
.wsd1{word-spacing:-33.531200pt;}
.ws8a{word-spacing:-33.526400pt;}
.ws9d{word-spacing:-33.523200pt;}
.ws4a{word-spacing:-33.280000pt;}
.ws40{word-spacing:-33.276800pt;}
.ws4b{word-spacing:-33.275733pt;}
.ws49{word-spacing:-33.090133pt;}
.ws76{word-spacing:-33.084800pt;}
.ws28{word-spacing:-32.640000pt;}
.wsb6{word-spacing:-32.444800pt;}
.ws63{word-spacing:-32.378133pt;}
.ws89{word-spacing:-32.005333pt;}
.ws19{word-spacing:-31.996800pt;}
.ws90{word-spacing:-31.992000pt;}
.ws17{word-spacing:-31.990400pt;}
.ws39{word-spacing:-31.810133pt;}
.ws4c{word-spacing:-31.805333pt;}
.wsae{word-spacing:-31.803200pt;}
.ws5b{word-spacing:-31.795200pt;}
.wsa0{word-spacing:-31.731200pt;}
.ws70{word-spacing:-31.360000pt;}
.ws5a{word-spacing:-31.352000pt;}
.ws59{word-spacing:-31.173333pt;}
.ws3f{word-spacing:-31.099200pt;}
.ws9c{word-spacing:-31.098400pt;}
.ws9a{word-spacing:-30.716800pt;}
.ws8c{word-spacing:-30.713600pt;}
.ws71{word-spacing:-30.530133pt;}
.ws6d{word-spacing:-30.528000pt;}
.wsbf{word-spacing:-30.526933pt;}
.ws93{word-spacing:-30.524800pt;}
.wsc9{word-spacing:-30.522400pt;}
.ws50{word-spacing:-30.449600pt;}
.ws46{word-spacing:-30.338133pt;}
.ws8e{word-spacing:-30.336000pt;}
.ws47{word-spacing:-30.080000pt;}
.ws4e{word-spacing:-30.078933pt;}
.ws6e{word-spacing:-30.074667pt;}
.ws95{word-spacing:-30.073600pt;}
.ws54{word-spacing:-30.064000pt;}
.ws62{word-spacing:-29.893333pt;}
.ws38{word-spacing:-29.884533pt;}
.ws7e{word-spacing:-29.883200pt;}
.ws79{word-spacing:-29.824000pt;}
.ws8{word-spacing:-29.820267pt;}
.ws7c{word-spacing:-29.440000pt;}
.ws29{word-spacing:-29.431467pt;}
.wsb8{word-spacing:-29.248533pt;}
.wscd{word-spacing:-29.241867pt;}
.ws6a{word-spacing:-29.177600pt;}
.ws13{word-spacing:-28.797600pt;}
.wsb9{word-spacing:-28.796800pt;}
.ws7b{word-spacing:-28.608000pt;}
.wsc6{word-spacing:-28.606933pt;}
.ws51{word-spacing:-28.604800pt;}
.ws7d{word-spacing:-28.597600pt;}
.ws2a{word-spacing:-28.156800pt;}
.ws82{word-spacing:-28.140800pt;}
.wsca{word-spacing:-27.973333pt;}
.wscb{word-spacing:-27.968533pt;}
.wsc4{word-spacing:-27.961600pt;}
.ws36{word-spacing:-27.961333pt;}
.ws4d{word-spacing:-27.960000pt;}
.ws2e{word-spacing:-27.892800pt;}
.wsbc{word-spacing:-27.525333pt;}
.ws7f{word-spacing:-27.520000pt;}
.wsa9{word-spacing:-27.514667pt;}
.ws8f{word-spacing:-27.330133pt;}
.wsc8{word-spacing:-27.328000pt;}
.ws60{word-spacing:-27.305600pt;}
.wsb7{word-spacing:-27.254400pt;}
.wsb3{word-spacing:-26.690133pt;}
.ws74{word-spacing:-26.688533pt;}
.wsa6{word-spacing:-26.048000pt;}
.ws31{word-spacing:-26.044800pt;}
.ws75{word-spacing:-26.034400pt;}
.ws64{word-spacing:-26.027200pt;}
.ws22{word-spacing:-25.596800pt;}
.ws88{word-spacing:-25.592000pt;}
.ws34{word-spacing:-25.579200pt;}
.wsad{word-spacing:-25.410933pt;}
.ws6f{word-spacing:-24.960000pt;}
.ws33{word-spacing:-24.952000pt;}
.ws98{word-spacing:-24.945067pt;}
.wsc0{word-spacing:-24.692800pt;}
.wsbe{word-spacing:-24.562400pt;}
.ws72{word-spacing:-24.313600pt;}
.ws14{word-spacing:-24.124800pt;}
.ws30{word-spacing:-23.676800pt;}
.ws80{word-spacing:-23.488000pt;}
.ws1f{word-spacing:-23.480000pt;}
.ws68{word-spacing:-23.040000pt;}
.ws9b{word-spacing:-23.033600pt;}
.wsa4{word-spacing:-23.031467pt;}
.ws8b{word-spacing:-22.844800pt;}
.ws1d{word-spacing:-22.841600pt;}
.ws86{word-spacing:-22.835200pt;}
.ws5d{word-spacing:-22.774400pt;}
.wsac{word-spacing:-22.393600pt;}
.ws3e{word-spacing:-22.377600pt;}
.wsc2{word-spacing:-22.205333pt;}
.ws3a{word-spacing:-22.203200pt;}
.ws96{word-spacing:-22.202400pt;}
.ws32{word-spacing:-22.200800pt;}
.wsa3{word-spacing:-22.192000pt;}
.ws97{word-spacing:-21.760000pt;}
.ws23{word-spacing:-21.559733pt;}
.wsab{word-spacing:-21.120000pt;}
.wsb1{word-spacing:-20.925600pt;}
.ws21{word-spacing:-20.924800pt;}
.ws81{word-spacing:-20.919467pt;}
.ws8d{word-spacing:-20.860800pt;}
.ws83{word-spacing:-20.857600pt;}
.ws24{word-spacing:-20.732800pt;}
.ws27{word-spacing:-20.469600pt;}
.ws26{word-spacing:-20.293333pt;}
.wsa8{word-spacing:-19.840000pt;}
.ws57{word-spacing:-19.648533pt;}
.wsb5{word-spacing:-19.203733pt;}
.ws5f{word-spacing:-19.200000pt;}
.ws3b{word-spacing:-19.197333pt;}
.wsa2{word-spacing:-19.196800pt;}
.ws56{word-spacing:-19.195733pt;}
.ws1c{word-spacing:-19.192800pt;}
.wsb0{word-spacing:-19.010133pt;}
.ws41{word-spacing:-19.004800pt;}
.ws9f{word-spacing:-18.562133pt;}
.ws5e{word-spacing:-17.925333pt;}
.ws3d{word-spacing:-17.724800pt;}
.ws65{word-spacing:-17.716000pt;}
.ws58{word-spacing:-17.650400pt;}
.ws91{word-spacing:-17.090133pt;}
.ws15{word-spacing:-17.088000pt;}
.ws66{word-spacing:-16.640000pt;}
.wsa7{word-spacing:-16.620800pt;}
.ws42{word-spacing:-16.444800pt;}
.ws7{word-spacing:-16.420000pt;}
.ws2c{word-spacing:-15.740800pt;}
.ws16{word-spacing:-15.736533pt;}
.ws53{word-spacing:-15.101333pt;}
.wsc1{word-spacing:-14.713600pt;}
.ws9e{word-spacing:-14.530933pt;}
.ws35{word-spacing:-14.016000pt;}
.ws2f{word-spacing:-13.436800pt;}
.wsbd{word-spacing:-13.244800pt;}
.wsd0{word-spacing:-11.973333pt;}
.ws44{word-spacing:-11.946667pt;}
.ws2d{word-spacing:-11.520000pt;}
.ws52{word-spacing:-11.256533pt;}
.wsb2{word-spacing:-10.880000pt;}
.ws87{word-spacing:-10.683200pt;}
.ws25{word-spacing:-10.226133pt;}
.ws85{word-spacing:-9.389600pt;}
.ws77{word-spacing:-7.481600pt;}
.wsbb{word-spacing:-5.754400pt;}
.ws6c{word-spacing:0.000000pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._a{width:2.389333pt;}
._4{width:16.689600pt;}
._d{width:17.898667pt;}
._9{width:18.969600pt;}
._16{width:20.773600pt;}
._11{width:21.725867pt;}
._5{width:22.651200pt;}
._14{width:23.668800pt;}
._e{width:25.160533pt;}
._6{width:26.935467pt;}
._c{width:28.601600pt;}
._f{width:29.566400pt;}
._b{width:30.528000pt;}
._1{width:32.000000pt;}
._18{width:33.014667pt;}
._7{width:33.920000pt;}
._8{width:35.192533pt;}
._17{width:36.177067pt;}
._15{width:37.256533pt;}
._12{width:39.104000pt;}
._13{width:40.029867pt;}
._10{width:41.196800pt;}
._19{width:44.916800pt;}
._0{width:544.128000pt;}
.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;}
.y4d{bottom:89.988000pt;}
.y26{bottom:101.346667pt;}
.yad{bottom:107.908000pt;}
.y4c{bottom:108.388000pt;}
.y86{bottom:108.708000pt;}
.y25{bottom:119.746667pt;}
.yac{bottom:126.308000pt;}
.y4b{bottom:126.788000pt;}
.y85{bottom:127.108000pt;}
.y24{bottom:138.146667pt;}
.y73{bottom:138.466667pt;}
.y91{bottom:145.188000pt;}
.y84{bottom:145.508000pt;}
.y23{bottom:156.546667pt;}
.y72{bottom:156.866667pt;}
.yab{bottom:163.266667pt;}
.y90{bottom:163.588000pt;}
.y4a{bottom:163.908000pt;}
.yaa{bottom:181.666667pt;}
.y8f{bottom:181.988000pt;}
.y49{bottom:182.308000pt;}
.y22{bottom:193.666667pt;}
.y71{bottom:193.988000pt;}
.ya9{bottom:200.066667pt;}
.y21{bottom:212.066667pt;}
.y8e{bottom:219.108000pt;}
.y48{bottom:219.266667pt;}
.y20{bottom:230.466667pt;}
.y70{bottom:230.946667pt;}
.ya8{bottom:237.188000pt;}
.y8d{bottom:237.508000pt;}
.y1f{bottom:248.706667pt;}
.y6f{bottom:249.346667pt;}
.y8c{bottom:255.908000pt;}
.y47{bottom:256.388000pt;}
.y1e{bottom:268.388000pt;}
.y8b{bottom:274.308000pt;}
.y46{bottom:274.788000pt;}
.y6e{bottom:286.466667pt;}
.y1d{bottom:289.188000pt;}
.y8a{bottom:292.706667pt;}
.y45{bottom:293.188000pt;}
.y6d{bottom:304.866667pt;}
.y1c{bottom:308.706667pt;}
.ya7{bottom:311.108000pt;}
.y44{bottom:311.588000pt;}
.y83{bottom:311.908000pt;}
.y6c{bottom:323.266667pt;}
.y1b{bottom:327.108000pt;}
.ya6{bottom:329.508000pt;}
.y89{bottom:329.666667pt;}
.y43{bottom:329.988000pt;}
.y82{bottom:330.308000pt;}
.y6b{bottom:341.666667pt;}
.y1a{bottom:345.508000pt;}
.y88{bottom:348.066667pt;}
.y42{bottom:348.388000pt;}
.y81{bottom:348.706667pt;}
.y6a{bottom:360.066667pt;}
.y19{bottom:363.908000pt;}
.ya5{bottom:366.466667pt;}
.y41{bottom:366.788000pt;}
.y80{bottom:367.108000pt;}
.y69{bottom:378.466667pt;}
.ya4{bottom:384.866667pt;}
.y87{bottom:385.188000pt;}
.y7f{bottom:385.508000pt;}
.y68{bottom:396.866667pt;}
.y18{bottom:400.866667pt;}
.ya3{bottom:403.266667pt;}
.y40{bottom:403.908000pt;}
.y67{bottom:415.266667pt;}
.ya2{bottom:421.666667pt;}
.y3f{bottom:422.308000pt;}
.y17{bottom:437.988000pt;}
.ya1{bottom:440.066667pt;}
.y3e{bottom:440.708000pt;}
.y66{bottom:452.226667pt;}
.ya0{bottom:458.466667pt;}
.y3d{bottom:459.108000pt;}
.y7e{bottom:459.266667pt;}
.y65{bottom:470.626667pt;}
.y16{bottom:475.108000pt;}
.y3c{bottom:477.506667pt;}
.y7d{bottom:477.666667pt;}
.y64{bottom:489.026667pt;}
.y9f{bottom:495.588000pt;}
.y3b{bottom:495.908000pt;}
.y7c{bottom:496.066667pt;}
.y63{bottom:507.426667pt;}
.y15{bottom:512.066667pt;}
.y9e{bottom:513.988000pt;}
.y7b{bottom:514.466667pt;}
.y62{bottom:525.826667pt;}
.y9d{bottom:532.388000pt;}
.y3a{bottom:532.866667pt;}
.y61{bottom:545.506667pt;}
.y14{bottom:549.188000pt;}
.y9c{bottom:550.788000pt;}
.y39{bottom:551.266667pt;}
.y60{bottom:565.026667pt;}
.y9b{bottom:569.188000pt;}
.y38{bottom:569.666667pt;}
.y5f{bottom:583.426667pt;}
.y13{bottom:586.308000pt;}
.y9a{bottom:587.588000pt;}
.y37{bottom:588.066667pt;}
.y7a{bottom:588.388000pt;}
.y5e{bottom:601.826667pt;}
.y36{bottom:606.466667pt;}
.y79{bottom:606.788000pt;}
.y12{bottom:623.266667pt;}
.y99{bottom:624.706667pt;}
.y35{bottom:624.866667pt;}
.y78{bottom:625.188000pt;}
.y34{bottom:643.266667pt;}
.y77{bottom:643.588000pt;}
.y11{bottom:660.388000pt;}
.y33{bottom:661.666667pt;}
.y76{bottom:661.988000pt;}
.y5d{bottom:675.906667pt;}
.y98{bottom:680.066667pt;}
.y75{bottom:680.388000pt;}
.y5c{bottom:694.308000pt;}
.y10{bottom:697.506667pt;}
.y32{bottom:698.788000pt;}
.y5b{bottom:712.706667pt;}
.y97{bottom:717.188000pt;}
.y74{bottom:717.506667pt;}
.y5a{bottom:732.388000pt;}
.yf{bottom:734.466667pt;}
.y96{bottom:735.588000pt;}
.y31{bottom:735.906667pt;}
.y59{bottom:751.906667pt;}
.y95{bottom:753.988000pt;}
.y30{bottom:754.308000pt;}
.y58{bottom:770.308000pt;}
.ye{bottom:771.588000pt;}
.y94{bottom:772.388000pt;}
.y2f{bottom:772.706667pt;}
.y57{bottom:788.706667pt;}
.y2e{bottom:791.106667pt;}
.y56{bottom:807.106667pt;}
.yd{bottom:808.706667pt;}
.y2d{bottom:809.506667pt;}
.y55{bottom:825.506667pt;}
.y2c{bottom:827.906667pt;}
.yc{bottom:845.666667pt;}
.y93{bottom:846.306667pt;}
.y54{bottom:862.466667pt;}
.y92{bottom:864.706667pt;}
.y2b{bottom:864.866667pt;}
.y53{bottom:880.866667pt;}
.yb{bottom:882.788000pt;}
.y2a{bottom:883.266667pt;}
.y52{bottom:899.266667pt;}
.yae{bottom:901.506667pt;}
.y29{bottom:901.666667pt;}
.y51{bottom:917.666667pt;}
.ya{bottom:919.906667pt;}
.y28{bottom:920.066667pt;}
.y50{bottom:936.066667pt;}
.y27{bottom:938.466667pt;}
.y4f{bottom:954.466667pt;}
.y9{bottom:956.866667pt;}
.y4e{bottom:974.146667pt;}
.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.437500pt;}
.h6{height:44.468750pt;}
.h7{height:51.354667pt;}
.h9{height:51.360000pt;}
.h8{height:52.000000pt;}
.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;}
.xb{left:117.440000pt;}
.x4{left:131.520000pt;}
.x5{left:302.560000pt;}
.x7{left:411.840000pt;}
.x3{left:414.066667pt;}
.x8{left:447.840000pt;}
.x6{left:462.400000pt;}
.x9{left:545.920000pt;}
.xa{left:569.120000pt;}
.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; }
  