
    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_e2f6799e5550b6f3c1898764.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_756cc1363f4da39b3cf035ea.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_9c244ed0bc7cd8fdf486e3df.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_4d15ee7cfb492dacd6a71ce3.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_5710e4f659d10deb0515fe73.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_29081f50b46365519b9ccfc0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:35.280000px;}
.ls1{letter-spacing:188.597700px;}
.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;}
}
.wsbb{word-spacing:-55.944000px;}
.wsa{word-spacing:-40.968000px;}
.wse{word-spacing:-40.536000px;}
.wsc9{word-spacing:-38.857500px;}
.ws6{word-spacing:-38.657700px;}
.ws5{word-spacing:-38.647800px;}
.wsc5{word-spacing:-38.448600px;}
.ws3{word-spacing:-38.374200px;}
.ws4{word-spacing:-37.938600px;}
.wsb9{word-spacing:-37.867200px;}
.wsbd{word-spacing:-34.332300px;}
.ws8{word-spacing:-33.547800px;}
.ws5f{word-spacing:-23.884200px;}
.ws47{word-spacing:-23.679000px;}
.ws41{word-spacing:-23.463900px;}
.ws7e{word-spacing:-23.392800px;}
.wsb8{word-spacing:-23.391000px;}
.ws45{word-spacing:-23.390100px;}
.ws49{word-spacing:-23.386200px;}
.ws6b{word-spacing:-23.382000px;}
.ws40{word-spacing:-23.254200px;}
.ws96{word-spacing:-23.252400px;}
.ws46{word-spacing:-23.248500px;}
.ws55{word-spacing:-23.245200px;}
.wsaf{word-spacing:-23.244000px;}
.ws5e{word-spacing:-23.243400px;}
.ws8e{word-spacing:-23.242200px;}
.wsc{word-spacing:-23.240700px;}
.wsad{word-spacing:-23.239800px;}
.ws80{word-spacing:-23.181000px;}
.ws43{word-spacing:-23.176500px;}
.ws23{word-spacing:-23.157000px;}
.ws9{word-spacing:-23.111100px;}
.ws71{word-spacing:-23.038800px;}
.ws39{word-spacing:-23.032800px;}
.ws7f{word-spacing:-23.029800px;}
.ws6a{word-spacing:-23.028600px;}
.ws86{word-spacing:-23.025000px;}
.ws0{word-spacing:-22.968000px;}
.wsb{word-spacing:-22.958100px;}
.ws2{word-spacing:-22.955400px;}
.wsbe{word-spacing:-22.806000px;}
.ws4d{word-spacing:-22.758000px;}
.ws3b{word-spacing:-22.752000px;}
.ws9d{word-spacing:-22.749000px;}
.ws28{word-spacing:-22.748400px;}
.wsa4{word-spacing:-22.746000px;}
.ws42{word-spacing:-22.744500px;}
.ws6f{word-spacing:-22.743600px;}
.ws7d{word-spacing:-22.738200px;}
.ws76{word-spacing:-22.737600px;}
.ws3c{word-spacing:-22.735800px;}
.ws36{word-spacing:-22.730400px;}
.ws78{word-spacing:-22.728000px;}
.ws81{word-spacing:-22.673700px;}
.ws4a{word-spacing:-22.536000px;}
.ws48{word-spacing:-22.534800px;}
.ws44{word-spacing:-22.534200px;}
.ws3d{word-spacing:-22.532400px;}
.ws6d{word-spacing:-22.527000px;}
.ws8a{word-spacing:-22.525200px;}
.ws8c{word-spacing:-22.524300px;}
.ws88{word-spacing:-22.523400px;}
.ws20{word-spacing:-22.521600px;}
.wsc7{word-spacing:-22.514400px;}
.wsab{word-spacing:-22.468200px;}
.ws99{word-spacing:-22.314600px;}
.ws3a{word-spacing:-22.311900px;}
.ws31{word-spacing:-22.311000px;}
.wsd{word-spacing:-22.296000px;}
.ws26{word-spacing:-22.024800px;}
.ws5c{word-spacing:-22.014000px;}
.ws83{word-spacing:-21.814800px;}
.ws2f{word-spacing:-21.810600px;}
.ws93{word-spacing:-21.807900px;}
.ws90{word-spacing:-21.590100px;}
.ws5d{word-spacing:-21.312000px;}
.wsb7{word-spacing:-21.091200px;}
.ws2d{word-spacing:-20.872800px;}
.ws12{word-spacing:-20.858400px;}
.ws85{word-spacing:-20.592000px;}
.ws73{word-spacing:-20.376000px;}
.wsc0{word-spacing:-20.369400px;}
.ws4f{word-spacing:-20.367000px;}
.ws7a{word-spacing:-20.158200px;}
.ws33{word-spacing:-19.656000px;}
.ws9e{word-spacing:-19.652400px;}
.ws7b{word-spacing:-19.641600px;}
.ws24{word-spacing:-19.564200px;}
.ws9b{word-spacing:-19.152000px;}
.ws63{word-spacing:-19.139100px;}
.ws5a{word-spacing:-19.137600px;}
.wsc2{word-spacing:-18.936000px;}
.wsbc{word-spacing:-18.933300px;}
.wsa6{word-spacing:-18.493200px;}
.ws7{word-spacing:-18.472500px;}
.ws25{word-spacing:-18.432000px;}
.ws6c{word-spacing:-18.427200px;}
.wsba{word-spacing:-18.206400px;}
.ws34{word-spacing:-18.205200px;}
.ws94{word-spacing:-17.998200px;}
.ws91{word-spacing:-17.712000px;}
.ws37{word-spacing:-17.267400px;}
.ws14{word-spacing:-16.968600px;}
.ws32{word-spacing:-16.776000px;}
.ws4c{word-spacing:-16.557300px;}
.wsa3{word-spacing:-16.552800px;}
.ws61{word-spacing:-16.471200px;}
.wsae{word-spacing:-16.261200px;}
.ws62{word-spacing:-15.549000px;}
.ws60{word-spacing:-15.541200px;}
.ws6e{word-spacing:-14.832000px;}
.ws72{word-spacing:-14.826600px;}
.wsc6{word-spacing:-14.112000px;}
.ws70{word-spacing:-13.172400px;}
.wsf{word-spacing:-13.091100px;}
.ws9c{word-spacing:-12.933000px;}
.ws10{word-spacing:-12.672000px;}
.ws4b{word-spacing:-11.944800px;}
.ws1b{word-spacing:-11.736000px;}
.ws59{word-spacing:-11.727900px;}
.wsb3{word-spacing:-11.724600px;}
.ws9a{word-spacing:-11.232000px;}
.ws15{word-spacing:-11.220000px;}
.ws29{word-spacing:-10.285200px;}
.wsaa{word-spacing:-10.258500px;}
.ws57{word-spacing:-10.014000px;}
.ws52{word-spacing:-9.932400px;}
.ws3f{word-spacing:-9.792000px;}
.ws1c{word-spacing:-9.780300px;}
.ws58{word-spacing:-9.777600px;}
.ws51{word-spacing:-9.349200px;}
.wsac{word-spacing:-9.343800px;}
.ws5b{word-spacing:-9.072000px;}
.ws30{word-spacing:-9.070800px;}
.ws53{word-spacing:-9.068400px;}
.ws56{word-spacing:-8.857500px;}
.wsb2{word-spacing:-8.346600px;}
.ws2a{word-spacing:-8.140200px;}
.wsbf{word-spacing:-7.551900px;}
.ws16{word-spacing:-7.335900px;}
.wsc1{word-spacing:-6.903600px;}
.ws17{word-spacing:-6.685800px;}
.ws22{word-spacing:-5.982000px;}
.ws8d{word-spacing:-5.968800px;}
.ws21{word-spacing:-5.904000px;}
.wsa2{word-spacing:-5.816700px;}
.wsa0{word-spacing:-5.616000px;}
.ws9f{word-spacing:-5.253000px;}
.wsb1{word-spacing:-5.239200px;}
.wsb4{word-spacing:-5.020200px;}
.wsa1{word-spacing:-4.896000px;}
.ws77{word-spacing:-4.536000px;}
.wsa7{word-spacing:-3.805200px;}
.wsb0{word-spacing:-3.594000px;}
.ws79{word-spacing:-3.304800px;}
.ws69{word-spacing:-3.303600px;}
.wsc4{word-spacing:-3.161700px;}
.wsa5{word-spacing:-3.074400px;}
.ws11{word-spacing:-2.592000px;}
.ws98{word-spacing:-2.589300px;}
.ws7c{word-spacing:-2.380200px;}
.ws13{word-spacing:-2.371200px;}
.ws2e{word-spacing:-2.151000px;}
.ws74{word-spacing:-1.872000px;}
.ws84{word-spacing:-1.861200px;}
.ws27{word-spacing:-1.646700px;}
.ws95{word-spacing:-1.576200px;}
.ws75{word-spacing:-1.152000px;}
.ws50{word-spacing:0.000000px;}
.ws54{word-spacing:0.512100px;}
.wsb6{word-spacing:1.234800px;}
.wsa8{word-spacing:1.744200px;}
.ws3e{word-spacing:3.385800px;}
.ws1a{word-spacing:4.104000px;}
.ws2b{word-spacing:4.182600px;}
.ws35{word-spacing:4.618800px;}
.ws2c{word-spacing:4.820700px;}
.ws4e{word-spacing:5.338200px;}
.ws1f{word-spacing:5.904000px;}
.ws8f{word-spacing:7.785600px;}
.ws64{word-spacing:8.218800px;}
.ws65{word-spacing:8.724900px;}
.ws66{word-spacing:8.934000px;}
.ws68{word-spacing:8.948400px;}
.ws67{word-spacing:9.444600px;}
.wsc3{word-spacing:11.819700px;}
.ws89{word-spacing:12.033000px;}
.wsca{word-spacing:14.688000px;}
.ws82{word-spacing:16.854000px;}
.wsa9{word-spacing:20.448000px;}
.ws38{word-spacing:22.116600px;}
.ws1e{word-spacing:22.189500px;}
.ws18{word-spacing:26.496000px;}
.ws92{word-spacing:26.936700px;}
.ws19{word-spacing:27.511200px;}
.wsb5{word-spacing:34.138800px;}
.ws1d{word-spacing:37.019400px;}
.ws97{word-spacing:50.699700px;}
.ws8b{word-spacing:58.825800px;}
.wsc8{word-spacing:121.464000px;}
.ws87{word-spacing:209.307600px;}
.ws1{word-spacing:468.883200px;}
._1b{margin-left:-2.377800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._22{width:2.333400px;}
._4{width:18.775800px;}
._10{width:19.932000px;}
._7{width:21.033600px;}
._11{width:22.138800px;}
._f{width:23.139600px;}
._8{width:24.697800px;}
._15{width:26.227800px;}
._18{width:27.426000px;}
._5{width:29.219100px;}
._9{width:31.162800px;}
._b{width:32.532300px;}
._1f{width:33.546600px;}
._21{width:34.695600px;}
._1{width:36.000000px;}
._1a{width:37.008000px;}
._17{width:38.719200px;}
._6{width:39.793200px;}
._19{width:40.942800px;}
._14{width:42.111900px;}
._1d{width:44.191800px;}
._a{width:45.681600px;}
._12{width:46.972800px;}
._e{width:48.024000px;}
._16{width:50.461200px;}
._1c{width:54.198000px;}
._1e{width:62.352000px;}
._d{width:63.939300px;}
._20{width:76.016400px;}
._c{width:78.696000px;}
._13{width:162.000000px;}
._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);}
.fs2{font-size:59.700000px;}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y6d{bottom:5.011500px;}
.y79{bottom:5.086500px;}
.y71{bottom:15.450000px;}
.y6f{bottom:25.711500px;}
.y78{bottom:25.786500px;}
.y70{bottom:36.150000px;}
.y72{bottom:46.411500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y2c{bottom:99.975000px;}
.y62{bottom:100.336500px;}
.y4b{bottom:120.496500px;}
.y2b{bottom:120.675000px;}
.y61{bottom:121.036500px;}
.y4a{bottom:141.196500px;}
.ya8{bottom:143.175000px;}
.y85{bottom:150.555000px;}
.y49{bottom:161.896500px;}
.y2a{bottom:162.436500px;}
.y60{bottom:162.796500px;}
.ya7{bottom:163.875000px;}
.y84{bottom:171.255000px;}
.y5f{bottom:183.496500px;}
.ya6{bottom:184.575000px;}
.y83{bottom:191.955000px;}
.y48{bottom:203.475000px;}
.y29{bottom:204.196500px;}
.ya5{bottom:205.275000px;}
.y28{bottom:224.896500px;}
.y5e{bottom:225.075000px;}
.ya4{bottom:225.975000px;}
.y82{bottom:233.715000px;}
.y47{bottom:245.236500px;}
.ya3{bottom:246.675000px;}
.y81{bottom:254.415000px;}
.y46{bottom:265.936500px;}
.y27{bottom:266.475000px;}
.y5d{bottom:266.836500px;}
.ya2{bottom:267.375000px;}
.y80{bottom:275.115000px;}
.y26{bottom:287.175000px;}
.y5c{bottom:287.536500px;}
.ya1{bottom:288.075000px;}
.y7f{bottom:295.815000px;}
.y45{bottom:307.696500px;}
.y25{bottom:307.875000px;}
.y5b{bottom:308.236500px;}
.ya0{bottom:308.775000px;}
.y44{bottom:328.396500px;}
.y24{bottom:328.575000px;}
.y5a{bottom:328.936500px;}
.y9f{bottom:329.475000px;}
.y7e{bottom:337.575000px;}
.y43{bottom:349.096500px;}
.y23{bottom:349.275000px;}
.y59{bottom:349.636500px;}
.y9e{bottom:350.175000px;}
.y22{bottom:369.975000px;}
.y58{bottom:370.336500px;}
.y9d{bottom:370.875000px;}
.y7d{bottom:379.155000px;}
.y21{bottom:390.675000px;}
.y57{bottom:391.036500px;}
.y9c{bottom:391.575000px;}
.y7c{bottom:399.855000px;}
.y42{bottom:411.375000px;}
.y56{bottom:411.736500px;}
.y9b{bottom:412.275000px;}
.y7b{bottom:420.555000px;}
.y41{bottom:432.075000px;}
.y20{bottom:432.436500px;}
.y9a{bottom:432.975000px;}
.y7a{bottom:441.255000px;}
.y40{bottom:452.775000px;}
.y1f{bottom:453.136500px;}
.y99{bottom:453.675000px;}
.y98{bottom:474.375000px;}
.y77{bottom:481.350000px;}
.y3f{bottom:494.536500px;}
.y1e{bottom:494.896500px;}
.y97{bottom:495.075000px;}
.y1d{bottom:515.596500px;}
.y96{bottom:515.775000px;}
.y76{bottom:527.325000px;}
.y1c{bottom:536.296500px;}
.y55{bottom:536.475000px;}
.y1b{bottom:556.996500px;}
.y54{bottom:557.175000px;}
.y95{bottom:557.536500px;}
.y75{bottom:573.225000px;}
.y1a{bottom:577.695000px;}
.y3e{bottom:577.875000px;}
.y19{bottom:598.396500px;}
.y53{bottom:598.575000px;}
.y94{bottom:599.295000px;}
.y18{bottom:619.096500px;}
.y74{bottom:619.125000px;}
.y52{bottom:619.275000px;}
.y3d{bottom:619.636500px;}
.y93{bottom:619.996500px;}
.y17{bottom:639.795000px;}
.y51{bottom:639.975000px;}
.y3c{bottom:640.336500px;}
.y50{bottom:660.675000px;}
.y92{bottom:661.575000px;}
.y73{bottom:665.025000px;}
.y16{bottom:681.375000px;}
.y3b{bottom:682.096500px;}
.y91{bottom:682.275000px;}
.y15{bottom:702.075000px;}
.y3a{bottom:702.795000px;}
.y90{bottom:702.975000px;}
.y6e{bottom:710.925000px;}
.y4f{bottom:723.136500px;}
.y39{bottom:723.496500px;}
.y8f{bottom:723.675000px;}
.y14{bottom:743.836500px;}
.y38{bottom:744.195000px;}
.y8e{bottom:744.375000px;}
.y13{bottom:764.536500px;}
.y37{bottom:764.895000px;}
.y8d{bottom:765.075000px;}
.y6c{bottom:777.525000px;}
.y12{bottom:785.236500px;}
.y8c{bottom:785.775000px;}
.y11{bottom:805.936500px;}
.y36{bottom:806.475000px;}
.y10{bottom:826.636500px;}
.y4e{bottom:827.175000px;}
.y6b{bottom:827.536500px;}
.yf{bottom:847.336500px;}
.y8b{bottom:847.875000px;}
.y35{bottom:848.236500px;}
.ye{bottom:868.036500px;}
.y8a{bottom:868.575000px;}
.y34{bottom:868.936500px;}
.y6a{bottom:869.295000px;}
.y89{bottom:889.275000px;}
.y33{bottom:889.636500px;}
.yd{bottom:909.795000px;}
.y88{bottom:909.975000px;}
.y4d{bottom:910.336500px;}
.y69{bottom:910.875000px;}
.y4c{bottom:931.036500px;}
.y32{bottom:931.395000px;}
.y68{bottom:931.575000px;}
.yc{bottom:951.375000px;}
.y87{bottom:951.736500px;}
.y31{bottom:952.095000px;}
.y67{bottom:952.275000px;}
.y86{bottom:972.436500px;}
.y30{bottom:972.795000px;}
.y66{bottom:972.975000px;}
.yb{bottom:993.136500px;}
.y2f{bottom:993.495000px;}
.y65{bottom:993.675000px;}
.y2e{bottom:1014.195000px;}
.y64{bottom:1014.375000px;}
.ya{bottom:1034.895000px;}
.y63{bottom:1035.075000px;}
.y2d{bottom:1055.775000px;}
.y9{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;}
.h6{height:22.875000px;}
.h8{height:43.575000px;}
.h9{height:43.650000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.h7{height:64.275000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w3{width:128.025000px;}
.w4{width:155.850000px;}
.w5{width:415.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:1.170000px;}
.xa{left:126.450000px;}
.x1{left:127.620000px;}
.x4{left:132.120000px;}
.xc{left:256.650000px;}
.xd{left:414.675000px;}
.x7{left:437.760000px;}
.x5{left:439.920000px;}
.x3{left:465.825000px;}
.x8{left:538.738500px;}
.x6{left:566.638500px;}
.x9{left:711.000000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:31.360000pt;}
.ls1{letter-spacing:167.642400pt;}
.wsbb{word-spacing:-49.728000pt;}
.wsa{word-spacing:-36.416000pt;}
.wse{word-spacing:-36.032000pt;}
.wsc9{word-spacing:-34.540000pt;}
.ws6{word-spacing:-34.362400pt;}
.ws5{word-spacing:-34.353600pt;}
.wsc5{word-spacing:-34.176533pt;}
.ws3{word-spacing:-34.110400pt;}
.ws4{word-spacing:-33.723200pt;}
.wsb9{word-spacing:-33.659733pt;}
.wsbd{word-spacing:-30.517600pt;}
.ws8{word-spacing:-29.820267pt;}
.ws5f{word-spacing:-21.230400pt;}
.ws47{word-spacing:-21.048000pt;}
.ws41{word-spacing:-20.856800pt;}
.ws7e{word-spacing:-20.793600pt;}
.wsb8{word-spacing:-20.792000pt;}
.ws45{word-spacing:-20.791200pt;}
.ws49{word-spacing:-20.787733pt;}
.ws6b{word-spacing:-20.784000pt;}
.ws40{word-spacing:-20.670400pt;}
.ws96{word-spacing:-20.668800pt;}
.ws46{word-spacing:-20.665333pt;}
.ws55{word-spacing:-20.662400pt;}
.wsaf{word-spacing:-20.661333pt;}
.ws5e{word-spacing:-20.660800pt;}
.ws8e{word-spacing:-20.659733pt;}
.wsc{word-spacing:-20.658400pt;}
.wsad{word-spacing:-20.657600pt;}
.ws80{word-spacing:-20.605333pt;}
.ws43{word-spacing:-20.601333pt;}
.ws23{word-spacing:-20.584000pt;}
.ws9{word-spacing:-20.543200pt;}
.ws71{word-spacing:-20.478933pt;}
.ws39{word-spacing:-20.473600pt;}
.ws7f{word-spacing:-20.470933pt;}
.ws6a{word-spacing:-20.469867pt;}
.ws86{word-spacing:-20.466667pt;}
.ws0{word-spacing:-20.416000pt;}
.wsb{word-spacing:-20.407200pt;}
.ws2{word-spacing:-20.404800pt;}
.wsbe{word-spacing:-20.272000pt;}
.ws4d{word-spacing:-20.229333pt;}
.ws3b{word-spacing:-20.224000pt;}
.ws9d{word-spacing:-20.221333pt;}
.ws28{word-spacing:-20.220800pt;}
.wsa4{word-spacing:-20.218667pt;}
.ws42{word-spacing:-20.217333pt;}
.ws6f{word-spacing:-20.216533pt;}
.ws7d{word-spacing:-20.211733pt;}
.ws76{word-spacing:-20.211200pt;}
.ws3c{word-spacing:-20.209600pt;}
.ws36{word-spacing:-20.204800pt;}
.ws78{word-spacing:-20.202667pt;}
.ws81{word-spacing:-20.154400pt;}
.ws4a{word-spacing:-20.032000pt;}
.ws48{word-spacing:-20.030933pt;}
.ws44{word-spacing:-20.030400pt;}
.ws3d{word-spacing:-20.028800pt;}
.ws6d{word-spacing:-20.024000pt;}
.ws8a{word-spacing:-20.022400pt;}
.ws8c{word-spacing:-20.021600pt;}
.ws88{word-spacing:-20.020800pt;}
.ws20{word-spacing:-20.019200pt;}
.wsc7{word-spacing:-20.012800pt;}
.wsab{word-spacing:-19.971733pt;}
.ws99{word-spacing:-19.835200pt;}
.ws3a{word-spacing:-19.832800pt;}
.ws31{word-spacing:-19.832000pt;}
.wsd{word-spacing:-19.818667pt;}
.ws26{word-spacing:-19.577600pt;}
.ws5c{word-spacing:-19.568000pt;}
.ws83{word-spacing:-19.390933pt;}
.ws2f{word-spacing:-19.387200pt;}
.ws93{word-spacing:-19.384800pt;}
.ws90{word-spacing:-19.191200pt;}
.ws5d{word-spacing:-18.944000pt;}
.wsb7{word-spacing:-18.747733pt;}
.ws2d{word-spacing:-18.553600pt;}
.ws12{word-spacing:-18.540800pt;}
.ws85{word-spacing:-18.304000pt;}
.ws73{word-spacing:-18.112000pt;}
.wsc0{word-spacing:-18.106133pt;}
.ws4f{word-spacing:-18.104000pt;}
.ws7a{word-spacing:-17.918400pt;}
.ws33{word-spacing:-17.472000pt;}
.ws9e{word-spacing:-17.468800pt;}
.ws7b{word-spacing:-17.459200pt;}
.ws24{word-spacing:-17.390400pt;}
.ws9b{word-spacing:-17.024000pt;}
.ws63{word-spacing:-17.012533pt;}
.ws5a{word-spacing:-17.011200pt;}
.wsc2{word-spacing:-16.832000pt;}
.wsbc{word-spacing:-16.829600pt;}
.wsa6{word-spacing:-16.438400pt;}
.ws7{word-spacing:-16.420000pt;}
.ws25{word-spacing:-16.384000pt;}
.ws6c{word-spacing:-16.379733pt;}
.wsba{word-spacing:-16.183467pt;}
.ws34{word-spacing:-16.182400pt;}
.ws94{word-spacing:-15.998400pt;}
.ws91{word-spacing:-15.744000pt;}
.ws37{word-spacing:-15.348800pt;}
.ws14{word-spacing:-15.083200pt;}
.ws32{word-spacing:-14.912000pt;}
.ws4c{word-spacing:-14.717600pt;}
.wsa3{word-spacing:-14.713600pt;}
.ws61{word-spacing:-14.641067pt;}
.wsae{word-spacing:-14.454400pt;}
.ws62{word-spacing:-13.821333pt;}
.ws60{word-spacing:-13.814400pt;}
.ws6e{word-spacing:-13.184000pt;}
.ws72{word-spacing:-13.179200pt;}
.wsc6{word-spacing:-12.544000pt;}
.ws70{word-spacing:-11.708800pt;}
.wsf{word-spacing:-11.636533pt;}
.ws9c{word-spacing:-11.496000pt;}
.ws10{word-spacing:-11.264000pt;}
.ws4b{word-spacing:-10.617600pt;}
.ws1b{word-spacing:-10.432000pt;}
.ws59{word-spacing:-10.424800pt;}
.wsb3{word-spacing:-10.421867pt;}
.ws9a{word-spacing:-9.984000pt;}
.ws15{word-spacing:-9.973333pt;}
.ws29{word-spacing:-9.142400pt;}
.wsaa{word-spacing:-9.118667pt;}
.ws57{word-spacing:-8.901333pt;}
.ws52{word-spacing:-8.828800pt;}
.ws3f{word-spacing:-8.704000pt;}
.ws1c{word-spacing:-8.693600pt;}
.ws58{word-spacing:-8.691200pt;}
.ws51{word-spacing:-8.310400pt;}
.wsac{word-spacing:-8.305600pt;}
.ws5b{word-spacing:-8.064000pt;}
.ws30{word-spacing:-8.062933pt;}
.ws53{word-spacing:-8.060800pt;}
.ws56{word-spacing:-7.873333pt;}
.wsb2{word-spacing:-7.419200pt;}
.ws2a{word-spacing:-7.235733pt;}
.wsbf{word-spacing:-6.712800pt;}
.ws16{word-spacing:-6.520800pt;}
.wsc1{word-spacing:-6.136533pt;}
.ws17{word-spacing:-5.942933pt;}
.ws22{word-spacing:-5.317333pt;}
.ws8d{word-spacing:-5.305600pt;}
.ws21{word-spacing:-5.248000pt;}
.wsa2{word-spacing:-5.170400pt;}
.wsa0{word-spacing:-4.992000pt;}
.ws9f{word-spacing:-4.669333pt;}
.wsb1{word-spacing:-4.657067pt;}
.wsb4{word-spacing:-4.462400pt;}
.wsa1{word-spacing:-4.352000pt;}
.ws77{word-spacing:-4.032000pt;}
.wsa7{word-spacing:-3.382400pt;}
.wsb0{word-spacing:-3.194667pt;}
.ws79{word-spacing:-2.937600pt;}
.ws69{word-spacing:-2.936533pt;}
.wsc4{word-spacing:-2.810400pt;}
.wsa5{word-spacing:-2.732800pt;}
.ws11{word-spacing:-2.304000pt;}
.ws98{word-spacing:-2.301600pt;}
.ws7c{word-spacing:-2.115733pt;}
.ws13{word-spacing:-2.107733pt;}
.ws2e{word-spacing:-1.912000pt;}
.ws74{word-spacing:-1.664000pt;}
.ws84{word-spacing:-1.654400pt;}
.ws27{word-spacing:-1.463733pt;}
.ws95{word-spacing:-1.401067pt;}
.ws75{word-spacing:-1.024000pt;}
.ws50{word-spacing:0.000000pt;}
.ws54{word-spacing:0.455200pt;}
.wsb6{word-spacing:1.097600pt;}
.wsa8{word-spacing:1.550400pt;}
.ws3e{word-spacing:3.009600pt;}
.ws1a{word-spacing:3.648000pt;}
.ws2b{word-spacing:3.717867pt;}
.ws35{word-spacing:4.105600pt;}
.ws2c{word-spacing:4.285067pt;}
.ws4e{word-spacing:4.745067pt;}
.ws1f{word-spacing:5.248000pt;}
.ws8f{word-spacing:6.920533pt;}
.ws64{word-spacing:7.305600pt;}
.ws65{word-spacing:7.755467pt;}
.ws66{word-spacing:7.941333pt;}
.ws68{word-spacing:7.954133pt;}
.ws67{word-spacing:8.395200pt;}
.wsc3{word-spacing:10.506400pt;}
.ws89{word-spacing:10.696000pt;}
.wsca{word-spacing:13.056000pt;}
.ws82{word-spacing:14.981333pt;}
.wsa9{word-spacing:18.176000pt;}
.ws38{word-spacing:19.659200pt;}
.ws1e{word-spacing:19.724000pt;}
.ws18{word-spacing:23.552000pt;}
.ws92{word-spacing:23.943733pt;}
.ws19{word-spacing:24.454400pt;}
.wsb5{word-spacing:30.345600pt;}
.ws1d{word-spacing:32.906133pt;}
.ws97{word-spacing:45.066400pt;}
.ws8b{word-spacing:52.289600pt;}
.wsc8{word-spacing:107.968000pt;}
.ws87{word-spacing:186.051200pt;}
.ws1{word-spacing:416.785067pt;}
._1b{margin-left:-2.113600pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._22{width:2.074133pt;}
._4{width:16.689600pt;}
._10{width:17.717333pt;}
._7{width:18.696533pt;}
._11{width:19.678933pt;}
._f{width:20.568533pt;}
._8{width:21.953600pt;}
._15{width:23.313600pt;}
._18{width:24.378667pt;}
._5{width:25.972533pt;}
._9{width:27.700267pt;}
._b{width:28.917600pt;}
._1f{width:29.819200pt;}
._21{width:30.840533pt;}
._1{width:32.000000pt;}
._1a{width:32.896000pt;}
._17{width:34.417067pt;}
._6{width:35.371733pt;}
._19{width:36.393600pt;}
._14{width:37.432800pt;}
._1d{width:39.281600pt;}
._a{width:40.605867pt;}
._12{width:41.753600pt;}
._e{width:42.688000pt;}
._16{width:44.854400pt;}
._1c{width:48.176000pt;}
._1e{width:55.424000pt;}
._d{width:56.834933pt;}
._20{width:67.570133pt;}
._c{width:69.952000pt;}
._13{width:144.000000pt;}
._0{width:544.128000pt;}
.fs2{font-size:53.066667pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y6d{bottom:4.454667pt;}
.y79{bottom:4.521333pt;}
.y71{bottom:13.733333pt;}
.y6f{bottom:22.854667pt;}
.y78{bottom:22.921333pt;}
.y70{bottom:32.133333pt;}
.y72{bottom:41.254667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y2c{bottom:88.866667pt;}
.y62{bottom:89.188000pt;}
.y4b{bottom:107.108000pt;}
.y2b{bottom:107.266667pt;}
.y61{bottom:107.588000pt;}
.y4a{bottom:125.508000pt;}
.ya8{bottom:127.266667pt;}
.y85{bottom:133.826667pt;}
.y49{bottom:143.908000pt;}
.y2a{bottom:144.388000pt;}
.y60{bottom:144.708000pt;}
.ya7{bottom:145.666667pt;}
.y84{bottom:152.226667pt;}
.y5f{bottom:163.108000pt;}
.ya6{bottom:164.066667pt;}
.y83{bottom:170.626667pt;}
.y48{bottom:180.866667pt;}
.y29{bottom:181.508000pt;}
.ya5{bottom:182.466667pt;}
.y28{bottom:199.908000pt;}
.y5e{bottom:200.066667pt;}
.ya4{bottom:200.866667pt;}
.y82{bottom:207.746667pt;}
.y47{bottom:217.988000pt;}
.ya3{bottom:219.266667pt;}
.y81{bottom:226.146667pt;}
.y46{bottom:236.388000pt;}
.y27{bottom:236.866667pt;}
.y5d{bottom:237.188000pt;}
.ya2{bottom:237.666667pt;}
.y80{bottom:244.546667pt;}
.y26{bottom:255.266667pt;}
.y5c{bottom:255.588000pt;}
.ya1{bottom:256.066667pt;}
.y7f{bottom:262.946667pt;}
.y45{bottom:273.508000pt;}
.y25{bottom:273.666667pt;}
.y5b{bottom:273.988000pt;}
.ya0{bottom:274.466667pt;}
.y44{bottom:291.908000pt;}
.y24{bottom:292.066667pt;}
.y5a{bottom:292.388000pt;}
.y9f{bottom:292.866667pt;}
.y7e{bottom:300.066667pt;}
.y43{bottom:310.308000pt;}
.y23{bottom:310.466667pt;}
.y59{bottom:310.788000pt;}
.y9e{bottom:311.266667pt;}
.y22{bottom:328.866667pt;}
.y58{bottom:329.188000pt;}
.y9d{bottom:329.666667pt;}
.y7d{bottom:337.026667pt;}
.y21{bottom:347.266667pt;}
.y57{bottom:347.588000pt;}
.y9c{bottom:348.066667pt;}
.y7c{bottom:355.426667pt;}
.y42{bottom:365.666667pt;}
.y56{bottom:365.988000pt;}
.y9b{bottom:366.466667pt;}
.y7b{bottom:373.826667pt;}
.y41{bottom:384.066667pt;}
.y20{bottom:384.388000pt;}
.y9a{bottom:384.866667pt;}
.y7a{bottom:392.226667pt;}
.y40{bottom:402.466667pt;}
.y1f{bottom:402.788000pt;}
.y99{bottom:403.266667pt;}
.y98{bottom:421.666667pt;}
.y77{bottom:427.866667pt;}
.y3f{bottom:439.588000pt;}
.y1e{bottom:439.908000pt;}
.y97{bottom:440.066667pt;}
.y1d{bottom:458.308000pt;}
.y96{bottom:458.466667pt;}
.y76{bottom:468.733333pt;}
.y1c{bottom:476.708000pt;}
.y55{bottom:476.866667pt;}
.y1b{bottom:495.108000pt;}
.y54{bottom:495.266667pt;}
.y95{bottom:495.588000pt;}
.y75{bottom:509.533333pt;}
.y1a{bottom:513.506667pt;}
.y3e{bottom:513.666667pt;}
.y19{bottom:531.908000pt;}
.y53{bottom:532.066667pt;}
.y94{bottom:532.706667pt;}
.y18{bottom:550.308000pt;}
.y74{bottom:550.333333pt;}
.y52{bottom:550.466667pt;}
.y3d{bottom:550.788000pt;}
.y93{bottom:551.108000pt;}
.y17{bottom:568.706667pt;}
.y51{bottom:568.866667pt;}
.y3c{bottom:569.188000pt;}
.y50{bottom:587.266667pt;}
.y92{bottom:588.066667pt;}
.y73{bottom:591.133333pt;}
.y16{bottom:605.666667pt;}
.y3b{bottom:606.308000pt;}
.y91{bottom:606.466667pt;}
.y15{bottom:624.066667pt;}
.y3a{bottom:624.706667pt;}
.y90{bottom:624.866667pt;}
.y6e{bottom:631.933333pt;}
.y4f{bottom:642.788000pt;}
.y39{bottom:643.108000pt;}
.y8f{bottom:643.266667pt;}
.y14{bottom:661.188000pt;}
.y38{bottom:661.506667pt;}
.y8e{bottom:661.666667pt;}
.y13{bottom:679.588000pt;}
.y37{bottom:679.906667pt;}
.y8d{bottom:680.066667pt;}
.y6c{bottom:691.133333pt;}
.y12{bottom:697.988000pt;}
.y8c{bottom:698.466667pt;}
.y11{bottom:716.388000pt;}
.y36{bottom:716.866667pt;}
.y10{bottom:734.788000pt;}
.y4e{bottom:735.266667pt;}
.y6b{bottom:735.588000pt;}
.yf{bottom:753.188000pt;}
.y8b{bottom:753.666667pt;}
.y35{bottom:753.988000pt;}
.ye{bottom:771.588000pt;}
.y8a{bottom:772.066667pt;}
.y34{bottom:772.388000pt;}
.y6a{bottom:772.706667pt;}
.y89{bottom:790.466667pt;}
.y33{bottom:790.788000pt;}
.yd{bottom:808.706667pt;}
.y88{bottom:808.866667pt;}
.y4d{bottom:809.188000pt;}
.y69{bottom:809.666667pt;}
.y4c{bottom:827.588000pt;}
.y32{bottom:827.906667pt;}
.y68{bottom:828.066667pt;}
.yc{bottom:845.666667pt;}
.y87{bottom:845.988000pt;}
.y31{bottom:846.306667pt;}
.y67{bottom:846.466667pt;}
.y86{bottom:864.388000pt;}
.y30{bottom:864.706667pt;}
.y66{bottom:864.866667pt;}
.yb{bottom:882.788000pt;}
.y2f{bottom:883.106667pt;}
.y65{bottom:883.266667pt;}
.y2e{bottom:901.506667pt;}
.y64{bottom:901.666667pt;}
.ya{bottom:919.906667pt;}
.y63{bottom:920.066667pt;}
.y2d{bottom:938.466667pt;}
.y9{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;}
.h6{height:20.333333pt;}
.h8{height:38.733333pt;}
.h9{height:38.800000pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.h7{height:57.133333pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w3{width:113.800000pt;}
.w4{width:138.533333pt;}
.w5{width:369.533333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:1.040000pt;}
.xa{left:112.400000pt;}
.x1{left:113.440000pt;}
.x4{left:117.440000pt;}
.xc{left:228.133333pt;}
.xd{left:368.600000pt;}
.x7{left:389.120000pt;}
.x5{left:391.040000pt;}
.x3{left:414.066667pt;}
.x8{left:478.878667pt;}
.x6{left:503.678667pt;}
.x9{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; }
  