
    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_39627900b0a3deb47c0b1e09.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_6c4c47cf86556d9b6e86be61.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.102051;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_748e44002fae918ed3bc3f29.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_fff5e11c272a531fb450c80c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.762695;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);}
.v1{vertical-align:-1.582200px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.648600px;}
.ls4{letter-spacing:-0.390600px;}
.ls6{letter-spacing:-0.317400px;}
.ls7{letter-spacing:-0.310500px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.086400px;}
.ls1{letter-spacing:0.648600px;}
.ls8{letter-spacing:1.138500px;}
.ls5{letter-spacing:22.310400px;}
.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;}
}
.ws4{word-spacing:-43.310400px;}
.ws2{word-spacing:-21.000000px;}
.ws0{word-spacing:-17.250000px;}
.wsdb{word-spacing:-14.250000px;}
.ws1{word-spacing:-12.937500px;}
.ws22{word-spacing:-2.408100px;}
.ws9b{word-spacing:-2.352900px;}
.ws4c{word-spacing:-2.111400px;}
.ws73{word-spacing:-2.070000px;}
.ws8c{word-spacing:-1.959600px;}
.ws8d{word-spacing:-1.932000px;}
.ws9d{word-spacing:-1.856100px;}
.ws9f{word-spacing:-1.814700px;}
.ws6d{word-spacing:-1.690500px;}
.ws52{word-spacing:-1.649100px;}
.wsa2{word-spacing:-1.593900px;}
.ws11{word-spacing:-1.573200px;}
.wsaf{word-spacing:-1.462800px;}
.wsc2{word-spacing:-1.179900px;}
.ws7d{word-spacing:-1.173000px;}
.ws2e{word-spacing:-1.159200px;}
.ws12{word-spacing:-1.138500px;}
.ws20{word-spacing:-1.117800px;}
.wscb{word-spacing:-1.110900px;}
.ws58{word-spacing:-1.104000px;}
.wsd6{word-spacing:-1.069500px;}
.wscf{word-spacing:-1.062600px;}
.ws2d{word-spacing:-0.828000px;}
.ws89{word-spacing:-0.772800px;}
.wsc6{word-spacing:-0.752100px;}
.ws4e{word-spacing:-0.524400px;}
.ws46{word-spacing:-0.496800px;}
.ws49{word-spacing:-0.455400px;}
.ws7{word-spacing:-0.434700px;}
.ws56{word-spacing:-0.427800px;}
.ws5a{word-spacing:-0.420900px;}
.ws47{word-spacing:-0.400200px;}
.ws70{word-spacing:-0.386400px;}
.ws27{word-spacing:-0.358800px;}
.wsf{word-spacing:-0.303600px;}
.ws95{word-spacing:-0.296700px;}
.ws28{word-spacing:-0.248400px;}
.ws66{word-spacing:-0.172500px;}
.wsd2{word-spacing:-0.165600px;}
.wsa6{word-spacing:-0.151800px;}
.ws92{word-spacing:-0.131100px;}
.ws33{word-spacing:-0.117300px;}
.wsb5{word-spacing:-0.089700px;}
.ws6a{word-spacing:-0.041400px;}
.ws5{word-spacing:0.000000px;}
.ws8a{word-spacing:0.069000px;}
.wsa7{word-spacing:0.117300px;}
.wsb1{word-spacing:0.172500px;}
.wsc9{word-spacing:0.179400px;}
.wsaa{word-spacing:0.241500px;}
.ws31{word-spacing:0.248400px;}
.ws32{word-spacing:0.282900px;}
.ws9{word-spacing:0.289800px;}
.ws71{word-spacing:0.317400px;}
.ws7b{word-spacing:0.441600px;}
.wsad{word-spacing:0.476100px;}
.wsac{word-spacing:0.489900px;}
.ws6b{word-spacing:0.503700px;}
.ws44{word-spacing:0.552000px;}
.ws85{word-spacing:0.572700px;}
.wsb6{word-spacing:0.607200px;}
.ws3b{word-spacing:0.669300px;}
.ws9c{word-spacing:0.683100px;}
.wsa4{word-spacing:0.696900px;}
.wsb0{word-spacing:0.710700px;}
.wsd3{word-spacing:0.738300px;}
.ws41{word-spacing:0.752100px;}
.ws64{word-spacing:0.772800px;}
.ws9e{word-spacing:0.828000px;}
.wsd4{word-spacing:0.841800px;}
.ws5e{word-spacing:0.848700px;}
.ws3c{word-spacing:0.897000px;}
.ws5c{word-spacing:0.910800px;}
.ws42{word-spacing:0.938400px;}
.wsce{word-spacing:0.966000px;}
.wsdc{word-spacing:0.969000px;}
.wse2{word-spacing:0.991800px;}
.wsdd{word-spacing:1.043100px;}
.wsa8{word-spacing:1.117800px;}
.ws94{word-spacing:1.159200px;}
.ws45{word-spacing:1.173000px;}
.wsd7{word-spacing:1.200600px;}
.wsc7{word-spacing:1.221300px;}
.wsbb{word-spacing:1.262700px;}
.ws5f{word-spacing:1.276500px;}
.ws1d{word-spacing:1.297200px;}
.wse8{word-spacing:1.299600px;}
.wsae{word-spacing:1.304100px;}
.ws19{word-spacing:1.350000px;}
.ws90{word-spacing:1.359300px;}
.wsa1{word-spacing:1.421400px;}
.ws59{word-spacing:1.425000px;}
.ws14{word-spacing:1.435200px;}
.wsda{word-spacing:1.464900px;}
.wsca{word-spacing:1.497300px;}
.ws16{word-spacing:1.500000px;}
.wsb9{word-spacing:1.573200px;}
.ws4a{word-spacing:1.593900px;}
.ws17{word-spacing:1.650000px;}
.wse{word-spacing:1.725000px;}
.wsbc{word-spacing:1.745700px;}
.wsc3{word-spacing:1.752600px;}
.ws54{word-spacing:1.787100px;}
.ws40{word-spacing:1.794000px;}
.ws18{word-spacing:1.800000px;}
.ws8b{word-spacing:1.807800px;}
.ws6c{word-spacing:1.814700px;}
.wse0{word-spacing:1.824000px;}
.ws98{word-spacing:1.856100px;}
.ws97{word-spacing:1.869900px;}
.ws1e{word-spacing:1.883700px;}
.ws86{word-spacing:1.980300px;}
.ws43{word-spacing:2.001000px;}
.ws3d{word-spacing:2.007900px;}
.ws3a{word-spacing:2.056200px;}
.wsa0{word-spacing:2.070000px;}
.wsb4{word-spacing:2.076900px;}
.wsd5{word-spacing:2.187300px;}
.ws35{word-spacing:2.221800px;}
.ws4b{word-spacing:2.263200px;}
.wse7{word-spacing:2.297100px;}
.wse5{word-spacing:2.319900px;}
.wsa3{word-spacing:2.352900px;}
.ws48{word-spacing:2.387400px;}
.ws79{word-spacing:2.401200px;}
.ws2f{word-spacing:2.415000px;}
.ws5d{word-spacing:2.463300px;}
.ws5b{word-spacing:2.525400px;}
.ws78{word-spacing:2.532300px;}
.ws75{word-spacing:2.601300px;}
.ws9a{word-spacing:2.635800px;}
.wsc8{word-spacing:2.642700px;}
.ws57{word-spacing:2.649600px;}
.ws82{word-spacing:2.677200px;}
.ws93{word-spacing:2.780700px;}
.ws96{word-spacing:2.815200px;}
.ws99{word-spacing:2.856600px;}
.ws88{word-spacing:2.863500px;}
.ws23{word-spacing:2.932500px;}
.ws13{word-spacing:2.939400px;}
.wsde{word-spacing:2.964000px;}
.wsa5{word-spacing:2.994600px;}
.ws7a{word-spacing:3.008400px;}
.ws76{word-spacing:3.022200px;}
.ws80{word-spacing:3.077400px;}
.ws87{word-spacing:3.174000px;}
.ws53{word-spacing:3.187800px;}
.wsb7{word-spacing:3.263700px;}
.ws38{word-spacing:3.298200px;}
.ws81{word-spacing:3.339600px;}
.ws65{word-spacing:3.381000px;}
.ws8{word-spacing:3.456900px;}
.wsc5{word-spacing:3.477000px;}
.wse3{word-spacing:3.488400px;}
.ws7e{word-spacing:3.498300px;}
.ws1f{word-spacing:3.532800px;}
.ws51{word-spacing:3.539700px;}
.wsd9{word-spacing:3.545400px;}
.ws4f{word-spacing:3.567300px;}
.wsd8{word-spacing:3.596700px;}
.ws68{word-spacing:3.608700px;}
.ws1c{word-spacing:3.650100px;}
.ws62{word-spacing:3.677700px;}
.ws63{word-spacing:3.705300px;}
.ws30{word-spacing:3.760500px;}
.ws21{word-spacing:3.788100px;}
.wsdf{word-spacing:3.790500px;}
.ws91{word-spacing:3.829500px;}
.wse1{word-spacing:3.841800px;}
.ws2c{word-spacing:3.843300px;}
.ws36{word-spacing:3.891600px;}
.ws25{word-spacing:3.912300px;}
.wsc0{word-spacing:3.926100px;}
.ws37{word-spacing:3.988200px;}
.ws3e{word-spacing:4.029600px;}
.wsc1{word-spacing:4.050300px;}
.ws69{word-spacing:4.077900px;}
.wse9{word-spacing:4.092600px;}
.wse4{word-spacing:4.098300px;}
.wsd1{word-spacing:4.133100px;}
.ws2b{word-spacing:4.167600px;}
.wse6{word-spacing:4.178100px;}
.ws10{word-spacing:4.195200px;}
.ws6e{word-spacing:4.202100px;}
.wsba{word-spacing:4.257300px;}
.ws24{word-spacing:4.264200px;}
.ws6{word-spacing:4.271100px;}
.ws4d{word-spacing:4.457400px;}
.wsbd{word-spacing:4.491900px;}
.ws1b{word-spacing:4.547100px;}
.wsb{word-spacing:4.657500px;}
.ws8f{word-spacing:4.754100px;}
.ws84{word-spacing:4.774800px;}
.wsd0{word-spacing:4.926600px;}
.ws2a{word-spacing:5.057700px;}
.ws72{word-spacing:5.099100px;}
.wsb2{word-spacing:5.140500px;}
.ws77{word-spacing:5.188800px;}
.ws83{word-spacing:5.278500px;}
.ws15{word-spacing:5.333700px;}
.ws7f{word-spacing:5.375100px;}
.ws50{word-spacing:5.409600px;}
.ws7c{word-spacing:5.513100px;}
.ws8e{word-spacing:5.561400px;}
.ws60{word-spacing:5.616600px;}
.ws26{word-spacing:5.623500px;}
.wsc4{word-spacing:5.720100px;}
.wsbf{word-spacing:6.058200px;}
.wsb3{word-spacing:6.223800px;}
.wsd{word-spacing:6.285900px;}
.ws3f{word-spacing:6.327300px;}
.wsc{word-spacing:6.423900px;}
.ws74{word-spacing:6.541200px;}
.wsab{word-spacing:6.658500px;}
.ws39{word-spacing:6.803400px;}
.ws34{word-spacing:6.872400px;}
.ws29{word-spacing:7.017300px;}
.ws67{word-spacing:7.182900px;}
.ws3{word-spacing:7.320600px;}
.ws61{word-spacing:8.314500px;}
.wsb8{word-spacing:8.459400px;}
.ws55{word-spacing:8.880300px;}
.wsbe{word-spacing:9.384000px;}
.ws6f{word-spacing:10.667400px;}
.wsa{word-spacing:10.971000px;}
.wscd{word-spacing:14.386500px;}
.wscc{word-spacing:24.736500px;}
.wsa9{word-spacing:680.931600px;}
.ws1a{word-spacing:707.067600px;}
._9{margin-left:-21.789000px;}
._e{margin-left:-7.541100px;}
._5{margin-left:-5.257800px;}
._2{margin-left:-3.450000px;}
._1{margin-left:-1.863000px;}
._0{width:1.380000px;}
._a{width:2.649600px;}
._c{width:3.726000px;}
._d{width:16.808400px;}
._8{width:20.880000px;}
._4{width:24.288000px;}
._3{width:25.599000px;}
._6{width:29.187000px;}
._7{width:31.602000px;}
._b{width:34.707000px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(76,76,76);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:51.750000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:69.000000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y17{bottom:68.998350px;}
.y16{bottom:69.393900px;}
.ya8{bottom:109.314750px;}
.ybd{bottom:113.575500px;}
.ycc{bottom:126.357750px;}
.ya7{bottom:128.807250px;}
.ybc{bottom:133.068000px;}
.yda{bottom:135.130800px;}
.y88{bottom:136.030050px;}
.y42{bottom:139.140000px;}
.ycb{bottom:145.850250px;}
.y71{bottom:148.033200px;}
.ya6{bottom:148.299750px;}
.y15{bottom:148.386000px;}
.yd9{bottom:151.632300px;}
.ybb{bottom:152.560500px;}
.y87{bottom:155.522550px;}
.y41{bottom:158.632500px;}
.yca{bottom:165.342750px;}
.y70{bottom:167.525700px;}
.ya5{bottom:167.792250px;}
.yd8{bottom:168.133800px;}
.yba{bottom:172.053000px;}
.y86{bottom:175.015050px;}
.y40{bottom:178.125000px;}
.yc9{bottom:184.835250px;}
.y6f{bottom:187.018200px;}
.ya4{bottom:187.284750px;}
.yd7{bottom:188.881800px;}
.yb9{bottom:191.545500px;}
.y85{bottom:194.507550px;}
.y14{bottom:195.892500px;}
.y3f{bottom:197.617500px;}
.y64{bottom:204.327750px;}
.yd6{bottom:205.383300px;}
.y6e{bottom:206.510700px;}
.ya3{bottom:211.038000px;}
.y84{bottom:214.000050px;}
.y13{bottom:215.385000px;}
.y3e{bottom:217.110000px;}
.y63{bottom:223.820250px;}
.y6d{bottom:226.003200px;}
.yc8{bottom:228.081000px;}
.yb8{bottom:230.530500px;}
.ya2{bottom:234.791250px;}
.y12{bottom:234.877500px;}
.y3d{bottom:236.602500px;}
.y83{bottom:237.753300px;}
.y62{bottom:243.312750px;}
.y6c{bottom:245.495700px;}
.yb7{bottom:250.023000px;}
.yc7{bottom:251.834250px;}
.ya1{bottom:254.283750px;}
.y11{bottom:254.370000px;}
.y3c{bottom:256.095000px;}
.y82{bottom:257.245800px;}
.y6b{bottom:264.988200px;}
.yb6{bottom:269.515500px;}
.yc6{bottom:271.326750px;}
.ya0{bottom:273.776250px;}
.y10{bottom:273.862500px;}
.y81{bottom:276.738300px;}
.y3b{bottom:279.848250px;}
.y6a{bottom:284.480700px;}
.yb5{bottom:289.008000px;}
.y61{bottom:290.819250px;}
.yf{bottom:293.355000px;}
.y80{bottom:296.230800px;}
.y9f{bottom:297.529500px;}
.y3a{bottom:299.340750px;}
.y69{bottom:303.973200px;}
.y60{bottom:310.311750px;}
.yb4{bottom:312.761250px;}
.ye{bottom:312.847500px;}
.y7f{bottom:315.723300px;}
.y9e{bottom:317.022000px;}
.y39{bottom:318.833250px;}
.y68{bottom:323.465700px;}
.y5f{bottom:329.804250px;}
.yb3{bottom:332.253750px;}
.yd{bottom:332.340000px;}
.y7e{bottom:335.215800px;}
.y9d{bottom:336.514500px;}
.y38{bottom:338.325750px;}
.y67{bottom:342.958200px;}
.yb2{bottom:351.746250px;}
.y5e{bottom:353.557500px;}
.y7d{bottom:354.708300px;}
.y9c{bottom:356.007000px;}
.y37{bottom:357.818250px;}
.yb1{bottom:371.238750px;}
.y5d{bottom:373.050000px;}
.y9b{bottom:375.499500px;}
.y36{bottom:377.310750px;}
.y7c{bottom:378.461550px;}
.yc{bottom:379.048500px;}
.y5c{bottom:392.542500px;}
.y9a{bottom:394.992000px;}
.y35{bottom:396.803250px;}
.y7b{bottom:397.954050px;}
.yd5{bottom:403.513500px;}
.yc5{bottom:412.035000px;}
.y99{bottom:414.484500px;}
.y34{bottom:416.295750px;}
.y7a{bottom:417.446550px;}
.yb{bottom:426.555000px;}
.yd4{bottom:427.266750px;}
.yc4{bottom:431.527500px;}
.y98{bottom:433.977000px;}
.y33{bottom:435.788250px;}
.y5b{bottom:440.049000px;}
.y79{bottom:441.199800px;}
.yb0{bottom:442.498500px;}
.yd3{bottom:446.759250px;}
.yc3{bottom:451.020000px;}
.y97{bottom:453.469500px;}
.y32{bottom:455.280750px;}
.y5a{bottom:459.541500px;}
.yf1{bottom:460.372800px;}
.y78{bottom:460.692300px;}
.yaf{bottom:461.991000px;}
.yd2{bottom:470.512500px;}
.y96{bottom:472.962000px;}
.ya{bottom:474.061500px;}
.y31{bottom:474.773250px;}
.yf0{bottom:476.874300px;}
.y59{bottom:479.034000px;}
.y77{bottom:480.184800px;}
.yae{bottom:485.744250px;}
.y95{bottom:492.454500px;}
.y9{bottom:493.554000px;}
.y30{bottom:494.265750px;}
.yef{bottom:497.622300px;}
.y58{bottom:498.526500px;}
.y76{bottom:503.938050px;}
.yad{bottom:505.236750px;}
.y8{bottom:513.046500px;}
.y2f{bottom:513.758250px;}
.yee{bottom:518.370300px;}
.y57{bottom:522.279750px;}
.y75{bottom:523.430550px;}
.yac{bottom:528.990000px;}
.y7{bottom:532.539000px;}
.y2e{bottom:533.250750px;}
.yd1{bottom:537.511500px;}
.yed{bottom:539.118300px;}
.y94{bottom:539.961000px;}
.y56{bottom:541.772250px;}
.y6{bottom:552.031500px;}
.y2d{bottom:552.743250px;}
.yd0{bottom:557.004000px;}
.yec{bottom:559.866300px;}
.y55{bottom:561.264750px;}
.y5{bottom:571.524000px;}
.y2c{bottom:572.235750px;}
.ycf{bottom:576.496500px;}
.yeb{bottom:580.614300px;}
.y54{bottom:580.757250px;}
.y93{bottom:587.467500px;}
.y4{bottom:591.016500px;}
.y2b{bottom:591.728250px;}
.yc2{bottom:595.989000px;}
.yea{bottom:597.115800px;}
.y53{bottom:600.249750px;}
.y92{bottom:606.960000px;}
.y3{bottom:610.509000px;}
.y2a{bottom:611.220750px;}
.ye9{bottom:613.617300px;}
.y52{bottom:619.742250px;}
.yce{bottom:624.003000px;}
.y2{bottom:630.001500px;}
.y29{bottom:630.713250px;}
.ye8{bottom:634.365300px;}
.yab{bottom:634.974000px;}
.y51{bottom:639.234750px;}
.ycd{bottom:643.495500px;}
.ye7{bottom:650.866800px;}
.y28{bottom:654.466500px;}
.yc1{bottom:658.727250px;}
.y50{bottom:662.988000px;}
.ye6{bottom:667.368300px;}
.y27{bottom:673.959000px;}
.y1{bottom:675.804600px;}
.y91{bottom:678.219750px;}
.y4f{bottom:682.480500px;}
.ye5{bottom:683.869800px;}
.y26{bottom:693.451500px;}
.yc0{bottom:697.712250px;}
.ye4{bottom:700.371300px;}
.y4e{bottom:701.973000px;}
.y25{bottom:712.944000px;}
.yaa{bottom:717.204750px;}
.ye3{bottom:721.119300px;}
.y4d{bottom:721.465500px;}
.y90{bottom:725.726250px;}
.y66{bottom:728.397750px;}
.y24{bottom:732.436500px;}
.ybf{bottom:736.697250px;}
.y4c{bottom:740.958000px;}
.ye2{bottom:741.867300px;}
.y8f{bottom:745.218750px;}
.y1b{bottom:745.435500px;}
.y65{bottom:749.901000px;}
.y23{bottom:751.929000px;}
.ybe{bottom:756.189750px;}
.ye1{bottom:758.368800px;}
.y4b{bottom:760.450500px;}
.y8e{bottom:764.711250px;}
.y1a{bottom:766.735500px;}
.y22{bottom:775.682250px;}
.ye0{bottom:779.116800px;}
.y4a{bottom:779.943000px;}
.y8d{bottom:784.203750px;}
.y21{bottom:795.174750px;}
.ydf{bottom:795.618300px;}
.y49{bottom:799.435500px;}
.y8c{bottom:803.696250px;}
.yde{bottom:812.119800px;}
.y20{bottom:814.667250px;}
.y48{bottom:818.928000px;}
.y8b{bottom:823.188750px;}
.ydd{bottom:828.621300px;}
.y1f{bottom:834.159750px;}
.y19{bottom:834.887400px;}
.y47{bottom:838.420500px;}
.y8a{bottom:842.681250px;}
.ydc{bottom:849.369300px;}
.y1e{bottom:853.652250px;}
.y18{bottom:856.187400px;}
.y46{bottom:857.913000px;}
.y89{bottom:862.173750px;}
.y74{bottom:865.870800px;}
.ya9{bottom:877.405500px;}
.y45{bottom:881.666250px;}
.y73{bottom:882.372300px;}
.ydb{bottom:886.618800px;}
.y1d{bottom:901.158750px;}
.y72{bottom:903.120300px;}
.y1c{bottom:934.309050px;}
.y44{bottom:944.803650px;}
.y43{bottom:962.803650px;}
.h8{height:44.730469px;}
.ha{height:45.193359px;}
.he{height:47.704102px;}
.hd{height:47.759766px;}
.hf{height:48.205078px;}
.h5{height:50.214844px;}
.hc{height:50.273438px;}
.h7{height:52.787109px;}
.h4{height:55.300781px;}
.h2{height:57.747070px;}
.hb{height:57.814453px;}
.h3{height:58.353516px;}
.h9{height:60.257812px;}
.h6{height:70.382812px;}
.h1{height:1019.970000px;}
.h0{height:1020.000000px;}
.w1{width:722.955000px;}
.w0{width:723.000000px;}
.x0{left:0.000000px;}
.xb{left:86.577000px;}
.x14{left:89.847000px;}
.x3{left:107.830050px;}
.x16{left:112.088850px;}
.x12{left:119.455050px;}
.xc{left:120.601800px;}
.x4{left:129.082050px;}
.xd{left:133.366800px;}
.x7{left:143.197800px;}
.x2{left:161.011800px;}
.x15{left:198.132750px;}
.xf{left:240.380550px;}
.x8{left:271.487100px;}
.x9{left:295.060200px;}
.x13{left:313.358250px;}
.x11{left:315.435300px;}
.x5{left:338.911050px;}
.x1{left:340.143300px;}
.xa{left:444.038250px;}
.xe{left:454.160550px;}
.x17{left:615.530700px;}
.x10{left:620.864250px;}
.x6{left:622.064700px;}
@media print{
.v1{vertical-align:-1.406400pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.576533pt;}
.ls4{letter-spacing:-0.347200pt;}
.ls6{letter-spacing:-0.282133pt;}
.ls7{letter-spacing:-0.276000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.076800pt;}
.ls1{letter-spacing:0.576533pt;}
.ls8{letter-spacing:1.012000pt;}
.ls5{letter-spacing:19.831467pt;}
.ws4{word-spacing:-38.498133pt;}
.ws2{word-spacing:-18.666667pt;}
.ws0{word-spacing:-15.333333pt;}
.wsdb{word-spacing:-12.666667pt;}
.ws1{word-spacing:-11.500000pt;}
.ws22{word-spacing:-2.140533pt;}
.ws9b{word-spacing:-2.091467pt;}
.ws4c{word-spacing:-1.876800pt;}
.ws73{word-spacing:-1.840000pt;}
.ws8c{word-spacing:-1.741867pt;}
.ws8d{word-spacing:-1.717333pt;}
.ws9d{word-spacing:-1.649867pt;}
.ws9f{word-spacing:-1.613067pt;}
.ws6d{word-spacing:-1.502667pt;}
.ws52{word-spacing:-1.465867pt;}
.wsa2{word-spacing:-1.416800pt;}
.ws11{word-spacing:-1.398400pt;}
.wsaf{word-spacing:-1.300267pt;}
.wsc2{word-spacing:-1.048800pt;}
.ws7d{word-spacing:-1.042667pt;}
.ws2e{word-spacing:-1.030400pt;}
.ws12{word-spacing:-1.012000pt;}
.ws20{word-spacing:-0.993600pt;}
.wscb{word-spacing:-0.987467pt;}
.ws58{word-spacing:-0.981333pt;}
.wsd6{word-spacing:-0.950667pt;}
.wscf{word-spacing:-0.944533pt;}
.ws2d{word-spacing:-0.736000pt;}
.ws89{word-spacing:-0.686933pt;}
.wsc6{word-spacing:-0.668533pt;}
.ws4e{word-spacing:-0.466133pt;}
.ws46{word-spacing:-0.441600pt;}
.ws49{word-spacing:-0.404800pt;}
.ws7{word-spacing:-0.386400pt;}
.ws56{word-spacing:-0.380267pt;}
.ws5a{word-spacing:-0.374133pt;}
.ws47{word-spacing:-0.355733pt;}
.ws70{word-spacing:-0.343467pt;}
.ws27{word-spacing:-0.318933pt;}
.wsf{word-spacing:-0.269867pt;}
.ws95{word-spacing:-0.263733pt;}
.ws28{word-spacing:-0.220800pt;}
.ws66{word-spacing:-0.153333pt;}
.wsd2{word-spacing:-0.147200pt;}
.wsa6{word-spacing:-0.134933pt;}
.ws92{word-spacing:-0.116533pt;}
.ws33{word-spacing:-0.104267pt;}
.wsb5{word-spacing:-0.079733pt;}
.ws6a{word-spacing:-0.036800pt;}
.ws5{word-spacing:0.000000pt;}
.ws8a{word-spacing:0.061333pt;}
.wsa7{word-spacing:0.104267pt;}
.wsb1{word-spacing:0.153333pt;}
.wsc9{word-spacing:0.159467pt;}
.wsaa{word-spacing:0.214667pt;}
.ws31{word-spacing:0.220800pt;}
.ws32{word-spacing:0.251467pt;}
.ws9{word-spacing:0.257600pt;}
.ws71{word-spacing:0.282133pt;}
.ws7b{word-spacing:0.392533pt;}
.wsad{word-spacing:0.423200pt;}
.wsac{word-spacing:0.435467pt;}
.ws6b{word-spacing:0.447733pt;}
.ws44{word-spacing:0.490667pt;}
.ws85{word-spacing:0.509067pt;}
.wsb6{word-spacing:0.539733pt;}
.ws3b{word-spacing:0.594933pt;}
.ws9c{word-spacing:0.607200pt;}
.wsa4{word-spacing:0.619467pt;}
.wsb0{word-spacing:0.631733pt;}
.wsd3{word-spacing:0.656267pt;}
.ws41{word-spacing:0.668533pt;}
.ws64{word-spacing:0.686933pt;}
.ws9e{word-spacing:0.736000pt;}
.wsd4{word-spacing:0.748267pt;}
.ws5e{word-spacing:0.754400pt;}
.ws3c{word-spacing:0.797333pt;}
.ws5c{word-spacing:0.809600pt;}
.ws42{word-spacing:0.834133pt;}
.wsce{word-spacing:0.858667pt;}
.wsdc{word-spacing:0.861333pt;}
.wse2{word-spacing:0.881600pt;}
.wsdd{word-spacing:0.927200pt;}
.wsa8{word-spacing:0.993600pt;}
.ws94{word-spacing:1.030400pt;}
.ws45{word-spacing:1.042667pt;}
.wsd7{word-spacing:1.067200pt;}
.wsc7{word-spacing:1.085600pt;}
.wsbb{word-spacing:1.122400pt;}
.ws5f{word-spacing:1.134667pt;}
.ws1d{word-spacing:1.153067pt;}
.wse8{word-spacing:1.155200pt;}
.wsae{word-spacing:1.159200pt;}
.ws19{word-spacing:1.200000pt;}
.ws90{word-spacing:1.208267pt;}
.wsa1{word-spacing:1.263467pt;}
.ws59{word-spacing:1.266667pt;}
.ws14{word-spacing:1.275733pt;}
.wsda{word-spacing:1.302133pt;}
.wsca{word-spacing:1.330933pt;}
.ws16{word-spacing:1.333333pt;}
.wsb9{word-spacing:1.398400pt;}
.ws4a{word-spacing:1.416800pt;}
.ws17{word-spacing:1.466667pt;}
.wse{word-spacing:1.533333pt;}
.wsbc{word-spacing:1.551733pt;}
.wsc3{word-spacing:1.557867pt;}
.ws54{word-spacing:1.588533pt;}
.ws40{word-spacing:1.594667pt;}
.ws18{word-spacing:1.600000pt;}
.ws8b{word-spacing:1.606933pt;}
.ws6c{word-spacing:1.613067pt;}
.wse0{word-spacing:1.621333pt;}
.ws98{word-spacing:1.649867pt;}
.ws97{word-spacing:1.662133pt;}
.ws1e{word-spacing:1.674400pt;}
.ws86{word-spacing:1.760267pt;}
.ws43{word-spacing:1.778667pt;}
.ws3d{word-spacing:1.784800pt;}
.ws3a{word-spacing:1.827733pt;}
.wsa0{word-spacing:1.840000pt;}
.wsb4{word-spacing:1.846133pt;}
.wsd5{word-spacing:1.944267pt;}
.ws35{word-spacing:1.974933pt;}
.ws4b{word-spacing:2.011733pt;}
.wse7{word-spacing:2.041867pt;}
.wse5{word-spacing:2.062133pt;}
.wsa3{word-spacing:2.091467pt;}
.ws48{word-spacing:2.122133pt;}
.ws79{word-spacing:2.134400pt;}
.ws2f{word-spacing:2.146667pt;}
.ws5d{word-spacing:2.189600pt;}
.ws5b{word-spacing:2.244800pt;}
.ws78{word-spacing:2.250933pt;}
.ws75{word-spacing:2.312267pt;}
.ws9a{word-spacing:2.342933pt;}
.wsc8{word-spacing:2.349067pt;}
.ws57{word-spacing:2.355200pt;}
.ws82{word-spacing:2.379733pt;}
.ws93{word-spacing:2.471733pt;}
.ws96{word-spacing:2.502400pt;}
.ws99{word-spacing:2.539200pt;}
.ws88{word-spacing:2.545333pt;}
.ws23{word-spacing:2.606667pt;}
.ws13{word-spacing:2.612800pt;}
.wsde{word-spacing:2.634667pt;}
.wsa5{word-spacing:2.661867pt;}
.ws7a{word-spacing:2.674133pt;}
.ws76{word-spacing:2.686400pt;}
.ws80{word-spacing:2.735467pt;}
.ws87{word-spacing:2.821333pt;}
.ws53{word-spacing:2.833600pt;}
.wsb7{word-spacing:2.901067pt;}
.ws38{word-spacing:2.931733pt;}
.ws81{word-spacing:2.968533pt;}
.ws65{word-spacing:3.005333pt;}
.ws8{word-spacing:3.072800pt;}
.wsc5{word-spacing:3.090667pt;}
.wse3{word-spacing:3.100800pt;}
.ws7e{word-spacing:3.109600pt;}
.ws1f{word-spacing:3.140267pt;}
.ws51{word-spacing:3.146400pt;}
.wsd9{word-spacing:3.151467pt;}
.ws4f{word-spacing:3.170933pt;}
.wsd8{word-spacing:3.197067pt;}
.ws68{word-spacing:3.207733pt;}
.ws1c{word-spacing:3.244533pt;}
.ws62{word-spacing:3.269067pt;}
.ws63{word-spacing:3.293600pt;}
.ws30{word-spacing:3.342667pt;}
.ws21{word-spacing:3.367200pt;}
.wsdf{word-spacing:3.369333pt;}
.ws91{word-spacing:3.404000pt;}
.wse1{word-spacing:3.414933pt;}
.ws2c{word-spacing:3.416267pt;}
.ws36{word-spacing:3.459200pt;}
.ws25{word-spacing:3.477600pt;}
.wsc0{word-spacing:3.489867pt;}
.ws37{word-spacing:3.545067pt;}
.ws3e{word-spacing:3.581867pt;}
.wsc1{word-spacing:3.600267pt;}
.ws69{word-spacing:3.624800pt;}
.wse9{word-spacing:3.637867pt;}
.wse4{word-spacing:3.642933pt;}
.wsd1{word-spacing:3.673867pt;}
.ws2b{word-spacing:3.704533pt;}
.wse6{word-spacing:3.713867pt;}
.ws10{word-spacing:3.729067pt;}
.ws6e{word-spacing:3.735200pt;}
.wsba{word-spacing:3.784267pt;}
.ws24{word-spacing:3.790400pt;}
.ws6{word-spacing:3.796533pt;}
.ws4d{word-spacing:3.962133pt;}
.wsbd{word-spacing:3.992800pt;}
.ws1b{word-spacing:4.041867pt;}
.wsb{word-spacing:4.140000pt;}
.ws8f{word-spacing:4.225867pt;}
.ws84{word-spacing:4.244267pt;}
.wsd0{word-spacing:4.379200pt;}
.ws2a{word-spacing:4.495733pt;}
.ws72{word-spacing:4.532533pt;}
.wsb2{word-spacing:4.569333pt;}
.ws77{word-spacing:4.612267pt;}
.ws83{word-spacing:4.692000pt;}
.ws15{word-spacing:4.741067pt;}
.ws7f{word-spacing:4.777867pt;}
.ws50{word-spacing:4.808533pt;}
.ws7c{word-spacing:4.900533pt;}
.ws8e{word-spacing:4.943467pt;}
.ws60{word-spacing:4.992533pt;}
.ws26{word-spacing:4.998667pt;}
.wsc4{word-spacing:5.084533pt;}
.wsbf{word-spacing:5.385067pt;}
.wsb3{word-spacing:5.532267pt;}
.wsd{word-spacing:5.587467pt;}
.ws3f{word-spacing:5.624267pt;}
.wsc{word-spacing:5.710133pt;}
.ws74{word-spacing:5.814400pt;}
.wsab{word-spacing:5.918667pt;}
.ws39{word-spacing:6.047467pt;}
.ws34{word-spacing:6.108800pt;}
.ws29{word-spacing:6.237600pt;}
.ws67{word-spacing:6.384800pt;}
.ws3{word-spacing:6.507200pt;}
.ws61{word-spacing:7.390667pt;}
.wsb8{word-spacing:7.519467pt;}
.ws55{word-spacing:7.893600pt;}
.wsbe{word-spacing:8.341333pt;}
.ws6f{word-spacing:9.482133pt;}
.wsa{word-spacing:9.752000pt;}
.wscd{word-spacing:12.788000pt;}
.wscc{word-spacing:21.988000pt;}
.wsa9{word-spacing:605.272533pt;}
.ws1a{word-spacing:628.504533pt;}
._9{margin-left:-19.368000pt;}
._e{margin-left:-6.703200pt;}
._5{margin-left:-4.673600pt;}
._2{margin-left:-3.066667pt;}
._1{margin-left:-1.656000pt;}
._0{width:1.226667pt;}
._a{width:2.355200pt;}
._c{width:3.312000pt;}
._d{width:14.940800pt;}
._8{width:18.560000pt;}
._4{width:21.589333pt;}
._3{width:22.754667pt;}
._6{width:25.944000pt;}
._7{width:28.090667pt;}
._b{width:30.850667pt;}
.fs1{font-size:46.000000pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:61.333333pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:61.331867pt;}
.y16{bottom:61.683467pt;}
.ya8{bottom:97.168667pt;}
.ybd{bottom:100.956000pt;}
.ycc{bottom:112.318000pt;}
.ya7{bottom:114.495333pt;}
.ybc{bottom:118.282667pt;}
.yda{bottom:120.116267pt;}
.y88{bottom:120.915600pt;}
.y42{bottom:123.680000pt;}
.ycb{bottom:129.644667pt;}
.y71{bottom:131.585067pt;}
.ya6{bottom:131.822000pt;}
.y15{bottom:131.898667pt;}
.yd9{bottom:134.784267pt;}
.ybb{bottom:135.609333pt;}
.y87{bottom:138.242267pt;}
.y41{bottom:141.006667pt;}
.yca{bottom:146.971333pt;}
.y70{bottom:148.911733pt;}
.ya5{bottom:149.148667pt;}
.yd8{bottom:149.452267pt;}
.yba{bottom:152.936000pt;}
.y86{bottom:155.568933pt;}
.y40{bottom:158.333333pt;}
.yc9{bottom:164.298000pt;}
.y6f{bottom:166.238400pt;}
.ya4{bottom:166.475333pt;}
.yd7{bottom:167.894933pt;}
.yb9{bottom:170.262667pt;}
.y85{bottom:172.895600pt;}
.y14{bottom:174.126667pt;}
.y3f{bottom:175.660000pt;}
.y64{bottom:181.624667pt;}
.yd6{bottom:182.562933pt;}
.y6e{bottom:183.565067pt;}
.ya3{bottom:187.589333pt;}
.y84{bottom:190.222267pt;}
.y13{bottom:191.453333pt;}
.y3e{bottom:192.986667pt;}
.y63{bottom:198.951333pt;}
.y6d{bottom:200.891733pt;}
.yc8{bottom:202.738667pt;}
.yb8{bottom:204.916000pt;}
.ya2{bottom:208.703333pt;}
.y12{bottom:208.780000pt;}
.y3d{bottom:210.313333pt;}
.y83{bottom:211.336267pt;}
.y62{bottom:216.278000pt;}
.y6c{bottom:218.218400pt;}
.yb7{bottom:222.242667pt;}
.yc7{bottom:223.852667pt;}
.ya1{bottom:226.030000pt;}
.y11{bottom:226.106667pt;}
.y3c{bottom:227.640000pt;}
.y82{bottom:228.662933pt;}
.y6b{bottom:235.545067pt;}
.yb6{bottom:239.569333pt;}
.yc6{bottom:241.179333pt;}
.ya0{bottom:243.356667pt;}
.y10{bottom:243.433333pt;}
.y81{bottom:245.989600pt;}
.y3b{bottom:248.754000pt;}
.y6a{bottom:252.871733pt;}
.yb5{bottom:256.896000pt;}
.y61{bottom:258.506000pt;}
.yf{bottom:260.760000pt;}
.y80{bottom:263.316267pt;}
.y9f{bottom:264.470667pt;}
.y3a{bottom:266.080667pt;}
.y69{bottom:270.198400pt;}
.y60{bottom:275.832667pt;}
.yb4{bottom:278.010000pt;}
.ye{bottom:278.086667pt;}
.y7f{bottom:280.642933pt;}
.y9e{bottom:281.797333pt;}
.y39{bottom:283.407333pt;}
.y68{bottom:287.525067pt;}
.y5f{bottom:293.159333pt;}
.yb3{bottom:295.336667pt;}
.yd{bottom:295.413333pt;}
.y7e{bottom:297.969600pt;}
.y9d{bottom:299.124000pt;}
.y38{bottom:300.734000pt;}
.y67{bottom:304.851733pt;}
.yb2{bottom:312.663333pt;}
.y5e{bottom:314.273333pt;}
.y7d{bottom:315.296267pt;}
.y9c{bottom:316.450667pt;}
.y37{bottom:318.060667pt;}
.yb1{bottom:329.990000pt;}
.y5d{bottom:331.600000pt;}
.y9b{bottom:333.777333pt;}
.y36{bottom:335.387333pt;}
.y7c{bottom:336.410267pt;}
.yc{bottom:336.932000pt;}
.y5c{bottom:348.926667pt;}
.y9a{bottom:351.104000pt;}
.y35{bottom:352.714000pt;}
.y7b{bottom:353.736933pt;}
.yd5{bottom:358.678667pt;}
.yc5{bottom:366.253333pt;}
.y99{bottom:368.430667pt;}
.y34{bottom:370.040667pt;}
.y7a{bottom:371.063600pt;}
.yb{bottom:379.160000pt;}
.yd4{bottom:379.792667pt;}
.yc4{bottom:383.580000pt;}
.y98{bottom:385.757333pt;}
.y33{bottom:387.367333pt;}
.y5b{bottom:391.154667pt;}
.y79{bottom:392.177600pt;}
.yb0{bottom:393.332000pt;}
.yd3{bottom:397.119333pt;}
.yc3{bottom:400.906667pt;}
.y97{bottom:403.084000pt;}
.y32{bottom:404.694000pt;}
.y5a{bottom:408.481333pt;}
.yf1{bottom:409.220267pt;}
.y78{bottom:409.504267pt;}
.yaf{bottom:410.658667pt;}
.yd2{bottom:418.233333pt;}
.y96{bottom:420.410667pt;}
.ya{bottom:421.388000pt;}
.y31{bottom:422.020667pt;}
.yf0{bottom:423.888267pt;}
.y59{bottom:425.808000pt;}
.y77{bottom:426.830933pt;}
.yae{bottom:431.772667pt;}
.y95{bottom:437.737333pt;}
.y9{bottom:438.714667pt;}
.y30{bottom:439.347333pt;}
.yef{bottom:442.330933pt;}
.y58{bottom:443.134667pt;}
.y76{bottom:447.944933pt;}
.yad{bottom:449.099333pt;}
.y8{bottom:456.041333pt;}
.y2f{bottom:456.674000pt;}
.yee{bottom:460.773600pt;}
.y57{bottom:464.248667pt;}
.y75{bottom:465.271600pt;}
.yac{bottom:470.213333pt;}
.y7{bottom:473.368000pt;}
.y2e{bottom:474.000667pt;}
.yd1{bottom:477.788000pt;}
.yed{bottom:479.216267pt;}
.y94{bottom:479.965333pt;}
.y56{bottom:481.575333pt;}
.y6{bottom:490.694667pt;}
.y2d{bottom:491.327333pt;}
.yd0{bottom:495.114667pt;}
.yec{bottom:497.658933pt;}
.y55{bottom:498.902000pt;}
.y5{bottom:508.021333pt;}
.y2c{bottom:508.654000pt;}
.ycf{bottom:512.441333pt;}
.yeb{bottom:516.101600pt;}
.y54{bottom:516.228667pt;}
.y93{bottom:522.193333pt;}
.y4{bottom:525.348000pt;}
.y2b{bottom:525.980667pt;}
.yc2{bottom:529.768000pt;}
.yea{bottom:530.769600pt;}
.y53{bottom:533.555333pt;}
.y92{bottom:539.520000pt;}
.y3{bottom:542.674667pt;}
.y2a{bottom:543.307333pt;}
.ye9{bottom:545.437600pt;}
.y52{bottom:550.882000pt;}
.yce{bottom:554.669333pt;}
.y2{bottom:560.001333pt;}
.y29{bottom:560.634000pt;}
.ye8{bottom:563.880267pt;}
.yab{bottom:564.421333pt;}
.y51{bottom:568.208667pt;}
.ycd{bottom:571.996000pt;}
.ye7{bottom:578.548267pt;}
.y28{bottom:581.748000pt;}
.yc1{bottom:585.535333pt;}
.y50{bottom:589.322667pt;}
.ye6{bottom:593.216267pt;}
.y27{bottom:599.074667pt;}
.y1{bottom:600.715200pt;}
.y91{bottom:602.862000pt;}
.y4f{bottom:606.649333pt;}
.ye5{bottom:607.884267pt;}
.y26{bottom:616.401333pt;}
.yc0{bottom:620.188667pt;}
.ye4{bottom:622.552267pt;}
.y4e{bottom:623.976000pt;}
.y25{bottom:633.728000pt;}
.yaa{bottom:637.515333pt;}
.ye3{bottom:640.994933pt;}
.y4d{bottom:641.302667pt;}
.y90{bottom:645.090000pt;}
.y66{bottom:647.464667pt;}
.y24{bottom:651.054667pt;}
.ybf{bottom:654.842000pt;}
.y4c{bottom:658.629333pt;}
.ye2{bottom:659.437600pt;}
.y8f{bottom:662.416667pt;}
.y1b{bottom:662.609333pt;}
.y65{bottom:666.578667pt;}
.y23{bottom:668.381333pt;}
.ybe{bottom:672.168667pt;}
.ye1{bottom:674.105600pt;}
.y4b{bottom:675.956000pt;}
.y8e{bottom:679.743333pt;}
.y1a{bottom:681.542667pt;}
.y22{bottom:689.495333pt;}
.ye0{bottom:692.548267pt;}
.y4a{bottom:693.282667pt;}
.y8d{bottom:697.070000pt;}
.y21{bottom:706.822000pt;}
.ydf{bottom:707.216267pt;}
.y49{bottom:710.609333pt;}
.y8c{bottom:714.396667pt;}
.yde{bottom:721.884267pt;}
.y20{bottom:724.148667pt;}
.y48{bottom:727.936000pt;}
.y8b{bottom:731.723333pt;}
.ydd{bottom:736.552267pt;}
.y1f{bottom:741.475333pt;}
.y19{bottom:742.122133pt;}
.y47{bottom:745.262667pt;}
.y8a{bottom:749.050000pt;}
.ydc{bottom:754.994933pt;}
.y1e{bottom:758.802000pt;}
.y18{bottom:761.055467pt;}
.y46{bottom:762.589333pt;}
.y89{bottom:766.376667pt;}
.y74{bottom:769.662933pt;}
.ya9{bottom:779.916000pt;}
.y45{bottom:783.703333pt;}
.y73{bottom:784.330933pt;}
.ydb{bottom:788.105600pt;}
.y1d{bottom:801.030000pt;}
.y72{bottom:802.773600pt;}
.y1c{bottom:830.496933pt;}
.y44{bottom:839.825467pt;}
.y43{bottom:855.825467pt;}
.h8{height:39.760417pt;}
.ha{height:40.171875pt;}
.he{height:42.403646pt;}
.hd{height:42.453125pt;}
.hf{height:42.848958pt;}
.h5{height:44.635417pt;}
.hc{height:44.687500pt;}
.h7{height:46.921875pt;}
.h4{height:49.156250pt;}
.h2{height:51.330729pt;}
.hb{height:51.390625pt;}
.h3{height:51.869792pt;}
.h9{height:53.562500pt;}
.h6{height:62.562500pt;}
.h1{height:906.640000pt;}
.h0{height:906.666667pt;}
.w1{width:642.626667pt;}
.w0{width:642.666667pt;}
.x0{left:0.000000pt;}
.xb{left:76.957333pt;}
.x14{left:79.864000pt;}
.x3{left:95.848933pt;}
.x16{left:99.634533pt;}
.x12{left:106.182267pt;}
.xc{left:107.201600pt;}
.x4{left:114.739600pt;}
.xd{left:118.548267pt;}
.x7{left:127.286933pt;}
.x2{left:143.121600pt;}
.x15{left:176.118000pt;}
.xf{left:213.671600pt;}
.x8{left:241.321867pt;}
.x9{left:262.275733pt;}
.x13{left:278.540667pt;}
.x11{left:280.386933pt;}
.x5{left:301.254267pt;}
.x1{left:302.349600pt;}
.xa{left:394.700667pt;}
.xe{left:403.698267pt;}
.x17{left:547.138400pt;}
.x10{left:551.879333pt;}
.x6{left:552.946400pt;}
}




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