
    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_6a93a3ccc3009a874f5cdb25.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_b9284dd4da12c6b89c6b34cb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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_08691bd5091996d9983fabf4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_1cf9c1def9c3e42466086b7d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_2249eb65c41e54805df44023.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854000;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_564406de9708a84c3e66e07e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:10.422000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:2.449834px;}
.ls1{letter-spacing:2.455834px;}
.ls0{letter-spacing:2.964877px;}
.ls7{letter-spacing:2.986766px;}
.ls2{letter-spacing:2.987108px;}
.ls9{letter-spacing:2.987675px;}
.ls5{letter-spacing:2.988017px;}
.ls6{letter-spacing:2.990725px;}
.ls4{letter-spacing:19.952100px;}
.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;}
}
.ws4f{word-spacing:-16.077852px;}
.ws3{word-spacing:-14.943900px;}
.ws18{word-spacing:-14.920027px;}
.wsc8{word-spacing:-11.955150px;}
.ws64{word-spacing:-1.016185px;}
.ws2f{word-spacing:-0.597756px;}
.wsc2{word-spacing:-0.191282px;}
.ws6f{word-spacing:-0.119551px;}
.ws5d{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.wsba{word-spacing:-0.016652px;}
.ws4e{word-spacing:0.000000px;}
.ws76{word-spacing:0.007904px;}
.ws9b{word-spacing:0.119551px;}
.wsb{word-spacing:0.215194px;}
.wsb5{word-spacing:0.286924px;}
.ws10{word-spacing:0.322790px;}
.ws46{word-spacing:0.475326px;}
.ws47{word-spacing:0.478205px;}
.ws9{word-spacing:0.484186px;}
.ws79{word-spacing:0.597756px;}
.wsaa{word-spacing:0.765130px;}
.ws61{word-spacing:0.836858px;}
.ws6{word-spacing:0.914573px;}
.ws50{word-spacing:1.147694px;}
.wsb0{word-spacing:1.255288px;}
.ws5{word-spacing:1.291162px;}
.ws5f{word-spacing:1.315063px;}
.wsad{word-spacing:1.338977px;}
.ws91{word-spacing:1.530259px;}
.ws62{word-spacing:1.554166px;}
.ws32{word-spacing:1.613941px;}
.wsd5{word-spacing:1.721542px;}
.wscf{word-spacing:1.769362px;}
.wsd4{word-spacing:1.817183px;}
.wsb9{word-spacing:1.853044px;}
.ws28{word-spacing:1.972595px;}
.wsda{word-spacing:2.008465px;}
.ws8f{word-spacing:2.104106px;}
.ws29{word-spacing:2.151922px;}
.wsa6{word-spacing:2.271473px;}
.wsd6{word-spacing:2.534492px;}
.wsca{word-spacing:2.582312px;}
.ws8d{word-spacing:2.869229px;}
.ws56{word-spacing:2.964877px;}
.ws3e{word-spacing:2.988780px;}
.wsd9{word-spacing:3.060518px;}
.ws30{word-spacing:3.227882px;}
.wsd8{word-spacing:3.299621px;}
.wsc9{word-spacing:3.443083px;}
.wsab{word-spacing:3.490904px;}
.wsc6{word-spacing:3.538724px;}
.wsc5{word-spacing:3.586545px;}
.ws51{word-spacing:3.634366px;}
.ws8{word-spacing:3.873485px;}
.ws70{word-spacing:3.885414px;}
.wsa0{word-spacing:4.064741px;}
.wscb{word-spacing:4.064751px;}
.ws31{word-spacing:4.124516px;}
.ws2d{word-spacing:4.184292px;}
.ws93{word-spacing:4.244068px;}
.ws1a{word-spacing:4.363619px;}
.ws5e{word-spacing:4.483170px;}
.wsa{word-spacing:4.519066px;}
.wsd7{word-spacing:4.779478px;}
.ws57{word-spacing:4.782060px;}
.ws5b{word-spacing:4.961375px;}
.wsdb{word-spacing:4.973342px;}
.ws60{word-spacing:5.021150px;}
.wsaf{word-spacing:5.140702px;}
.ws1b{word-spacing:5.200477px;}
.ws1e{word-spacing:5.260253px;}
.ws1d{word-spacing:5.320028px;}
.wsac{word-spacing:5.355907px;}
.ws58{word-spacing:5.379804px;}
.ws1f{word-spacing:5.439580px;}
.ws2a{word-spacing:5.618906px;}
.ws8c{word-spacing:5.738458px;}
.ws98{word-spacing:5.917784px;}
.ws75{word-spacing:5.929754px;}
.ws43{word-spacing:5.948959px;}
.ws77{word-spacing:5.950540px;}
.ws42{word-spacing:5.961004px;}
.wsf{word-spacing:5.971622px;}
.ws2{word-spacing:5.977560px;}
.wscc{word-spacing:6.025364px;}
.wscd{word-spacing:6.025396px;}
.ws74{word-spacing:6.156887px;}
.ws21{word-spacing:6.276438px;}
.ws38{word-spacing:6.336214px;}
.wsae{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.wsa2{word-spacing:6.694867px;}
.wsd2{word-spacing:6.694884px;}
.ws14{word-spacing:6.724800px;}
.ws39{word-spacing:6.754643px;}
.ws67{word-spacing:6.814418px;}
.ws12{word-spacing:6.939994px;}
.ws27{word-spacing:6.993745px;}
.wsbb{word-spacing:7.053521px;}
.wsb8{word-spacing:7.113296px;}
.ws22{word-spacing:7.232848px;}
.wsa9{word-spacing:7.268731px;}
.ws7a{word-spacing:7.352399px;}
.wsdc{word-spacing:7.364372px;}
.ws7d{word-spacing:7.412174px;}
.ws16{word-spacing:7.424179px;}
.ws53{word-spacing:7.460014px;}
.ws7{word-spacing:7.585574px;}
.ws24{word-spacing:7.651277px;}
.ws2e{word-spacing:7.830604px;}
.wsb3{word-spacing:7.842578px;}
.ws90{word-spacing:7.890399px;}
.ws6a{word-spacing:7.950155px;}
.ws20{word-spacing:8.189257px;}
.ws73{word-spacing:8.249033px;}
.ws6e{word-spacing:8.368584px;}
.ws19{word-spacing:8.607686px;}
.ws69{word-spacing:9.085891px;}
.wsc1{word-spacing:9.205442px;}
.ws88{word-spacing:9.265218px;}
.ws40{word-spacing:9.504320px;}
.ws3a{word-spacing:9.564096px;}
.ws9a{word-spacing:9.743423px;}
.ws82{word-spacing:9.862974px;}
.wsb4{word-spacing:9.946685px;}
.wsb1{word-spacing:10.042301px;}
.ws66{word-spacing:10.221628px;}
.ws36{word-spacing:10.281403px;}
.ws5c{word-spacing:10.400954px;}
.ws7f{word-spacing:10.460730px;}
.ws48{word-spacing:10.580281px;}
.ws13{word-spacing:10.598285px;}
.ws7b{word-spacing:10.879159px;}
.ws68{word-spacing:10.938935px;}
.ws71{word-spacing:11.058486px;}
.ws92{word-spacing:11.094379px;}
.ws89{word-spacing:11.118262px;}
.ws87{word-spacing:11.297588px;}
.ws3b{word-spacing:11.476915px;}
.ws1c{word-spacing:11.536691px;}
.wsb2{word-spacing:11.596466px;}
.wsd1{word-spacing:11.644574px;}
.wsc7{word-spacing:11.668226px;}
.ws6b{word-spacing:11.775793px;}
.wsc0{word-spacing:11.895344px;}
.ws72{word-spacing:12.014896px;}
.ws8b{word-spacing:12.313774px;}
.wsd{word-spacing:12.535027px;}
.ws33{word-spacing:12.552876px;}
.ws94{word-spacing:12.732203px;}
.ws44{word-spacing:12.851754px;}
.ws2c{word-spacing:12.971305px;}
.ws4d{word-spacing:13.090856px;}
.ws7c{word-spacing:13.150632px;}
.wsce{word-spacing:13.150665px;}
.ws4b{word-spacing:13.210408px;}
.wsc3{word-spacing:13.485409px;}
.ws99{word-spacing:13.628837px;}
.ws6d{word-spacing:13.808164px;}
.wsa7{word-spacing:13.927715px;}
.wsa5{word-spacing:14.107042px;}
.ws95{word-spacing:14.166817px;}
.ws8a{word-spacing:14.226593px;}
.ws0{word-spacing:14.346180px;}
.ws37{word-spacing:14.525471px;}
.ws34{word-spacing:14.585246px;}
.ws55{word-spacing:14.871299px;}
.ws25{word-spacing:14.884124px;}
.ws9f{word-spacing:14.920027px;}
.ws81{word-spacing:14.943900px;}
.ws8e{word-spacing:15.063451px;}
.wsbe{word-spacing:15.362329px;}
.wsc{word-spacing:15.386342px;}
.wsd0{word-spacing:15.398233px;}
.ws80{word-spacing:15.422105px;}
.ws52{word-spacing:15.536219px;}
.wsa8{word-spacing:15.541656px;}
.ws23{word-spacing:15.601432px;}
.ws97{word-spacing:15.840534px;}
.wsc4{word-spacing:15.876439px;}
.ws3d{word-spacing:15.900310px;}
.ws5a{word-spacing:16.079636px;}
.ws26{word-spacing:16.139412px;}
.wsbc{word-spacing:16.258963px;}
.wsa4{word-spacing:16.318739px;}
.ws63{word-spacing:16.378514px;}
.ws3f{word-spacing:16.677392px;}
.ws49{word-spacing:16.796944px;}
.ws3c{word-spacing:17.215373px;}
.ws85{word-spacing:17.274317px;}
.ws84{word-spacing:17.394700px;}
.wsb6{word-spacing:17.574026px;}
.wse{word-spacing:17.645875px;}
.ws6c{word-spacing:17.872904px;}
.ws17{word-spacing:17.932680px;}
.wsbd{word-spacing:18.231558px;}
.ws7e{word-spacing:18.590212px;}
.ws35{word-spacing:18.829314px;}
.wsd3{word-spacing:19.271702px;}
.ws54{word-spacing:19.359299px;}
.wsa1{word-spacing:20.084602px;}
.ws59{word-spacing:20.277344px;}
.ws83{word-spacing:20.383480px;}
.ws65{word-spacing:20.443255px;}
.wsb7{word-spacing:20.622582px;}
.ws15{word-spacing:20.819981px;}
.ws45{word-spacing:21.399665px;}
.wsa3{word-spacing:21.459440px;}
.ws9e{word-spacing:22.284400px;}
.ws4a{word-spacing:22.654952px;}
.wsbf{word-spacing:22.714728px;}
.ws11{word-spacing:22.810522px;}
.ws2b{word-spacing:23.013606px;}
.ws41{word-spacing:23.312484px;}
.ws4c{word-spacing:28.067264px;}
.ws78{word-spacing:28.572737px;}
.ws96{word-spacing:30.707024px;}
.ws86{word-spacing:32.165984px;}
.ws9d{word-spacing:34.174979px;}
.ws9c{word-spacing:50.355092px;}
._0{margin-left:-11.476944px;}
._2{margin-left:-10.042326px;}
._6{margin-left:-6.754643px;}
._4{margin-left:-4.782048px;}
._1{margin-left:-3.586545px;}
._3{margin-left:-1.643835px;}
._7{width:1.054700px;}
._5{width:2.988780px;}
._14{width:3.991354px;}
._f{width:12.911530px;}
._b{width:15.481880px;}
._8{width:24.507996px;}
._a{width:26.301330px;}
._d{width:28.214154px;}
._9{width:29.887800px;}
._11{width:30.892108px;}
._c{width:32.876580px;}
._10{width:38.399942px;}
._12{width:39.643277px;}
._13{width:47.820600px;}
._e{width:124.620484px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs5{font-size:57.834000px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y32{bottom:113.332500px;}
.yaa{bottom:115.921500px;}
.y57{bottom:122.455463px;}
.ya9{bottom:129.370500px;}
.y31{bottom:131.265000px;}
.y71{bottom:131.266500px;}
.yf9{bottom:137.991000px;}
.ya8{bottom:142.821000px;}
.y54{bottom:149.197500px;}
.y30{bottom:149.199000px;}
.yf8{bottom:151.440000px;}
.ybc{bottom:153.778500px;}
.yf7{bottom:164.890500px;}
.y2f{bottom:167.131500px;}
.yf6{bottom:178.339500px;}
.y2e{bottom:185.064000px;}
.y70{bottom:190.696500px;}
.yf5{bottom:191.788500px;}
.ybb{bottom:195.075000px;}
.y2d{bottom:202.996500px;}
.yf4{bottom:205.239000px;}
.yba{bottom:208.524000px;}
.y53{bottom:210.784500px;}
.yf3{bottom:218.688000px;}
.y2c{bottom:220.929000px;}
.y6f{bottom:220.960500px;}
.yb9{bottom:221.973000px;}
.yf2{bottom:232.138500px;}
.yb8{bottom:235.423500px;}
.y2b{bottom:238.861500px;}
.y94{bottom:238.863000px;}
.y6e{bottom:238.893000px;}
.yf1{bottom:245.587500px;}
.y52{bottom:246.288000px;}
.y2a{bottom:256.795500px;}
.y6d{bottom:256.827000px;}
.yf0{bottom:259.036500px;}
.y51{bottom:264.220500px;}
.y58{bottom:265.514288px;}
.yef{bottom:272.487000px;}
.y29{bottom:274.728000px;}
.y6c{bottom:274.759500px;}
.y50{bottom:282.153000px;}
.yee{bottom:285.936000px;}
.y7d{bottom:292.660500px;}
.y6b{bottom:292.692000px;}
.y28{bottom:293.685000px;}
.y93{bottom:297.349500px;}
.yed{bottom:299.385000px;}
.y4f{bottom:300.085500px;}
.y6a{bottom:310.624500px;}
.y27{bottom:311.619000px;}
.yec{bottom:312.835500px;}
.y4e{bottom:318.018000px;}
.yeb{bottom:326.284500px;}
.y7c{bottom:326.376000px;}
.y69{bottom:328.557000px;}
.y26{bottom:329.551500px;}
.y4d{bottom:335.952000px;}
.yea{bottom:339.735000px;}
.y92{bottom:339.780000px;}
.y7b{bottom:344.308500px;}
.y25{bottom:347.484000px;}
.y68{bottom:352.122000px;}
.ye9{bottom:353.184000px;}
.y91{bottom:353.229000px;}
.y4c{bottom:353.884500px;}
.y24{bottom:365.416500px;}
.ye8{bottom:366.633000px;}
.y90{bottom:366.678000px;}
.ye7{bottom:380.083500px;}
.y8f{bottom:380.128500px;}
.y4b{bottom:381.807000px;}
.y67{bottom:382.387500px;}
.y23{bottom:383.349000px;}
.y7a{bottom:388.018500px;}
.ya7{bottom:390.102000px;}
.ye6{bottom:393.532500px;}
.y8e{bottom:393.577500px;}
.y66{bottom:400.320000px;}
.y22{bottom:401.283000px;}
.y79{bottom:405.951000px;}
.ye5{bottom:406.981500px;}
.ya6{bottom:408.034500px;}
.y56{bottom:410.701725px;}
.y4a{bottom:417.309000px;}
.y65{bottom:418.252500px;}
.y21{bottom:419.215500px;}
.ye4{bottom:420.432000px;}
.y78{bottom:423.883500px;}
.ya5{bottom:425.967000px;}
.ye3{bottom:433.881000px;}
.y49{bottom:435.241500px;}
.y64{bottom:436.185000px;}
.y20{bottom:437.148000px;}
.y77{bottom:441.817500px;}
.ya4{bottom:443.899500px;}
.ye2{bottom:447.331500px;}
.y48{bottom:453.174000px;}
.y63{bottom:454.117500px;}
.y1f{bottom:455.080500px;}
.y76{bottom:459.750000px;}
.ye1{bottom:460.780500px;}
.ya3{bottom:461.832000px;}
.y47{bottom:471.108000px;}
.y62{bottom:472.050000px;}
.y1e{bottom:473.013000px;}
.ye0{bottom:474.229500px;}
.y75{bottom:477.682500px;}
.ya2{bottom:479.766000px;}
.ydf{bottom:487.680000px;}
.y46{bottom:489.040500px;}
.y61{bottom:489.984000px;}
.y1d{bottom:490.945500px;}
.y74{bottom:495.615000px;}
.ya1{bottom:497.698500px;}
.yde{bottom:501.129000px;}
.y45{bottom:506.973000px;}
.y60{bottom:507.916500px;}
.y1c{bottom:508.879500px;}
.y73{bottom:513.547500px;}
.ydd{bottom:514.578000px;}
.ya0{bottom:515.631000px;}
.y44{bottom:524.905500px;}
.y5f{bottom:525.849000px;}
.ydc{bottom:528.028500px;}
.y72{bottom:531.480000px;}
.y9f{bottom:533.563500px;}
.y1b{bottom:537.670500px;}
.ydb{bottom:541.477500px;}
.y43{bottom:542.838000px;}
.y5e{bottom:549.414000px;}
.y9e{bottom:551.496000px;}
.yb7{bottom:553.176000px;}
.yda{bottom:554.928000px;}
.y42{bottom:560.770500px;}
.yd9{bottom:568.377000px;}
.y9d{bottom:569.430000px;}
.yb6{bottom:571.108500px;}
.y1a{bottom:578.559000px;}
.y41{bottom:578.704500px;}
.yd8{bottom:581.826000px;}
.y9c{bottom:587.362500px;}
.yb5{bottom:589.041000px;}
.y19{bottom:593.503500px;}
.yd7{bottom:595.276500px;}
.y40{bottom:596.637000px;}
.y5d{bottom:597.730500px;}
.y9b{bottom:605.295000px;}
.yb4{bottom:606.973500px;}
.yd6{bottom:608.725500px;}
.y18{bottom:609.472500px;}
.y5c{bottom:611.179500px;}
.y3f{bottom:614.569500px;}
.yd5{bottom:622.174500px;}
.y17{bottom:624.417000px;}
.y5b{bottom:624.630000px;}
.yb3{bottom:624.906000px;}
.y3e{bottom:632.502000px;}
.y5a{bottom:638.079000px;}
.y16{bottom:639.360000px;}
.y9a{bottom:642.417000px;}
.yb2{bottom:642.840000px;}
.yd4{bottom:644.367000px;}
.y3d{bottom:650.434500px;}
.y59{bottom:651.528000px;}
.y15{bottom:654.304500px;}
.y99{bottom:660.349500px;}
.yb1{bottom:660.772500px;}
.y3c{bottom:668.368500px;}
.y14{bottom:669.249000px;}
.yd3{bottom:672.387000px;}
.y55{bottom:678.427500px;}
.yb0{bottom:678.705000px;}
.y13{bottom:684.192000px;}
.y3b{bottom:686.301000px;}
.yd2{bottom:690.319500px;}
.yaf{bottom:696.637500px;}
.y12{bottom:699.136500px;}
.y3a{bottom:704.233500px;}
.yd1{bottom:708.252000px;}
.y11{bottom:714.079500px;}
.yae{bottom:719.149500px;}
.y98{bottom:719.700000px;}
.y39{bottom:722.166000px;}
.yd0{bottom:726.184500px;}
.y10{bottom:729.024000px;}
.y97{bottom:733.150500px;}
.y38{bottom:740.098500px;}
.yf{bottom:743.968500px;}
.ycf{bottom:744.117000px;}
.y96{bottom:746.599500px;}
.y37{bottom:758.031000px;}
.ye{bottom:758.911500px;}
.y95{bottom:760.048500px;}
.yce{bottom:762.051000px;}
.yad{bottom:766.104000px;}
.yd{bottom:773.856000px;}
.y36{bottom:775.965000px;}
.yac{bottom:779.554500px;}
.ycd{bottom:779.983500px;}
.yc{bottom:788.800500px;}
.yab{bottom:793.003500px;}
.y35{bottom:793.897500px;}
.ycc{bottom:797.916000px;}
.yb{bottom:803.743500px;}
.y34{bottom:811.830000px;}
.ycb{bottom:815.848500px;}
.ya{bottom:818.688000px;}
.y8d{bottom:825.954000px;}
.y33{bottom:830.643000px;}
.y9{bottom:833.632500px;}
.yca{bottom:833.781000px;}
.y8c{bottom:843.886500px;}
.y8{bottom:848.575500px;}
.yc9{bottom:851.715000px;}
.y8b{bottom:861.819000px;}
.yc8{bottom:869.647500px;}
.y8a{bottom:879.751500px;}
.yc7{bottom:887.580000px;}
.y89{bottom:897.685500px;}
.yc6{bottom:905.512500px;}
.y88{bottom:915.618000px;}
.y7{bottom:918.042000px;}
.yc5{bottom:923.445000px;}
.y87{bottom:933.550500px;}
.y6{bottom:936.534000px;}
.yc4{bottom:941.377500px;}
.y86{bottom:951.483000px;}
.y5{bottom:955.027500px;}
.yc3{bottom:964.018500px;}
.y85{bottom:969.415500px;}
.y4{bottom:973.521000px;}
.y84{bottom:987.348000px;}
.yc2{bottom:992.038500px;}
.y3{bottom:992.235000px;}
.y83{bottom:1005.282000px;}
.yc1{bottom:1009.971000px;}
.y82{bottom:1023.214500px;}
.yc0{bottom:1027.903500px;}
.y2{bottom:1039.309500px;}
.y81{bottom:1041.147000px;}
.ybf{bottom:1045.836000px;}
.y80{bottom:1059.079500px;}
.ybe{bottom:1063.768500px;}
.y7f{bottom:1077.012000px;}
.y1{bottom:1081.152000px;}
.ybd{bottom:1081.702500px;}
.y7e{bottom:1099.635000px;}
.h9{height:32.900573px;}
.ha{height:33.140573px;}
.h6{height:37.336090px;}
.h5{height:37.605082px;}
.h3{height:40.826735px;}
.h4{height:41.125613px;}
.h8{height:42.274169px;}
.hb{height:43.322573px;}
.h2{height:45.238339px;}
.h1{height:98.701718px;}
.h7{height:433.755000px;}
.h0{height:1188.000000px;}
.w1{width:771.119989px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:73.446000px;}
.x1{left:76.300500px;}
.x4{left:79.555500px;}
.x12{left:88.389000px;}
.x6{left:120.591000px;}
.x7{left:124.050000px;}
.x5{left:134.518500px;}
.x3{left:147.000000px;}
.x2{left:185.634000px;}
.x14{left:203.428500px;}
.x19{left:313.885991px;}
.x18{left:330.216064px;}
.x9{left:334.555500px;}
.xb{left:375.591000px;}
.xa{left:389.518500px;}
.xc{left:397.536000px;}
.x8{left:398.589000px;}
.x15{left:467.967000px;}
.x1a{left:474.282000px;}
.x16{left:482.910000px;}
.x1e{left:495.355500px;}
.x1c{left:542.029500px;}
.x17{left:553.162500px;}
.xe{left:589.554000px;}
.x1b{left:613.059000px;}
.x1d{left:614.418000px;}
.x10{left:630.591000px;}
.xf{left:644.518500px;}
.x11{left:653.820000px;}
.x21{left:668.101500px;}
.xd{left:669.616500px;}
.x22{left:675.406500px;}
.x1f{left:737.902500px;}
.x20{left:749.188500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.264000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:2.177630pt;}
.ls1{letter-spacing:2.182963pt;}
.ls0{letter-spacing:2.635446pt;}
.ls7{letter-spacing:2.654903pt;}
.ls2{letter-spacing:2.655207pt;}
.ls9{letter-spacing:2.655711pt;}
.ls5{letter-spacing:2.656015pt;}
.ls6{letter-spacing:2.658422pt;}
.ls4{letter-spacing:17.735200pt;}
.ws4f{word-spacing:-14.291424pt;}
.ws3{word-spacing:-13.283467pt;}
.ws18{word-spacing:-13.262246pt;}
.wsc8{word-spacing:-10.626800pt;}
.ws64{word-spacing:-0.903276pt;}
.ws2f{word-spacing:-0.531339pt;}
.wsc2{word-spacing:-0.170029pt;}
.ws6f{word-spacing:-0.106268pt;}
.ws5d{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.wsba{word-spacing:-0.014802pt;}
.ws4e{word-spacing:0.000000pt;}
.ws76{word-spacing:0.007026pt;}
.ws9b{word-spacing:0.106268pt;}
.wsb{word-spacing:0.191283pt;}
.wsb5{word-spacing:0.255043pt;}
.ws10{word-spacing:0.286925pt;}
.ws46{word-spacing:0.422512pt;}
.ws47{word-spacing:0.425071pt;}
.ws9{word-spacing:0.430387pt;}
.ws79{word-spacing:0.531339pt;}
.wsaa{word-spacing:0.680115pt;}
.ws61{word-spacing:0.743874pt;}
.ws6{word-spacing:0.812954pt;}
.ws50{word-spacing:1.020173pt;}
.wsb0{word-spacing:1.115811pt;}
.ws5{word-spacing:1.147699pt;}
.ws5f{word-spacing:1.168945pt;}
.wsad{word-spacing:1.190202pt;}
.ws91{word-spacing:1.360230pt;}
.ws62{word-spacing:1.381481pt;}
.ws32{word-spacing:1.434614pt;}
.wsd5{word-spacing:1.530259pt;}
.wscf{word-spacing:1.572766pt;}
.wsd4{word-spacing:1.615274pt;}
.wsb9{word-spacing:1.647150pt;}
.ws28{word-spacing:1.753418pt;}
.wsda{word-spacing:1.785302pt;}
.ws8f{word-spacing:1.870317pt;}
.ws29{word-spacing:1.912819pt;}
.wsa6{word-spacing:2.019087pt;}
.wsd6{word-spacing:2.252882pt;}
.wsca{word-spacing:2.295389pt;}
.ws8d{word-spacing:2.550426pt;}
.ws56{word-spacing:2.635446pt;}
.ws3e{word-spacing:2.656693pt;}
.wsd9{word-spacing:2.720461pt;}
.ws30{word-spacing:2.869229pt;}
.wsd8{word-spacing:2.932997pt;}
.wsc9{word-spacing:3.060518pt;}
.wsab{word-spacing:3.103026pt;}
.wsc6{word-spacing:3.145533pt;}
.wsc5{word-spacing:3.188040pt;}
.ws51{word-spacing:3.230547pt;}
.ws8{word-spacing:3.443098pt;}
.ws70{word-spacing:3.453701pt;}
.wsa0{word-spacing:3.613103pt;}
.wscb{word-spacing:3.613112pt;}
.ws31{word-spacing:3.666237pt;}
.ws2d{word-spacing:3.719371pt;}
.ws93{word-spacing:3.772505pt;}
.ws1a{word-spacing:3.878772pt;}
.ws5e{word-spacing:3.985040pt;}
.wsa{word-spacing:4.016947pt;}
.wsd7{word-spacing:4.248425pt;}
.ws57{word-spacing:4.250720pt;}
.ws5b{word-spacing:4.410111pt;}
.wsdb{word-spacing:4.420749pt;}
.ws60{word-spacing:4.463245pt;}
.wsaf{word-spacing:4.569513pt;}
.ws1b{word-spacing:4.622646pt;}
.ws1e{word-spacing:4.675780pt;}
.ws1d{word-spacing:4.728914pt;}
.wsac{word-spacing:4.760806pt;}
.ws58{word-spacing:4.782048pt;}
.ws1f{word-spacing:4.835182pt;}
.ws2a{word-spacing:4.994583pt;}
.ws8c{word-spacing:5.100851pt;}
.ws98{word-spacing:5.260253pt;}
.ws75{word-spacing:5.270893pt;}
.ws43{word-spacing:5.287964pt;}
.ws77{word-spacing:5.289369pt;}
.ws42{word-spacing:5.298670pt;}
.wsf{word-spacing:5.308109pt;}
.ws2{word-spacing:5.313387pt;}
.wscc{word-spacing:5.355879pt;}
.wscd{word-spacing:5.355907pt;}
.ws74{word-spacing:5.472788pt;}
.ws21{word-spacing:5.579056pt;}
.ws38{word-spacing:5.632190pt;}
.wsae{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.wsa2{word-spacing:5.950993pt;}
.wsd2{word-spacing:5.951008pt;}
.ws14{word-spacing:5.977600pt;}
.ws39{word-spacing:6.004127pt;}
.ws67{word-spacing:6.057261pt;}
.ws12{word-spacing:6.168883pt;}
.ws27{word-spacing:6.216662pt;}
.wsbb{word-spacing:6.269796pt;}
.wsb8{word-spacing:6.322930pt;}
.ws22{word-spacing:6.429198pt;}
.wsa9{word-spacing:6.461094pt;}
.ws7a{word-spacing:6.535466pt;}
.wsdc{word-spacing:6.546109pt;}
.ws7d{word-spacing:6.588599pt;}
.ws16{word-spacing:6.599270pt;}
.ws53{word-spacing:6.631123pt;}
.ws7{word-spacing:6.742733pt;}
.ws24{word-spacing:6.801135pt;}
.ws2e{word-spacing:6.960537pt;}
.wsb3{word-spacing:6.971181pt;}
.ws90{word-spacing:7.013688pt;}
.ws6a{word-spacing:7.066804pt;}
.ws20{word-spacing:7.279340pt;}
.ws73{word-spacing:7.332474pt;}
.ws6e{word-spacing:7.438741pt;}
.ws19{word-spacing:7.651277pt;}
.ws69{word-spacing:8.076348pt;}
.wsc1{word-spacing:8.182615pt;}
.ws88{word-spacing:8.235749pt;}
.ws40{word-spacing:8.448285pt;}
.ws3a{word-spacing:8.501419pt;}
.ws9a{word-spacing:8.660820pt;}
.ws82{word-spacing:8.767088pt;}
.wsb4{word-spacing:8.841498pt;}
.wsb1{word-spacing:8.926490pt;}
.ws66{word-spacing:9.085891pt;}
.ws36{word-spacing:9.139025pt;}
.ws5c{word-spacing:9.245293pt;}
.ws7f{word-spacing:9.298427pt;}
.ws48{word-spacing:9.404694pt;}
.ws13{word-spacing:9.420698pt;}
.ws7b{word-spacing:9.670364pt;}
.ws68{word-spacing:9.723498pt;}
.ws71{word-spacing:9.829765pt;}
.ws92{word-spacing:9.861670pt;}
.ws89{word-spacing:9.882899pt;}
.ws87{word-spacing:10.042301pt;}
.ws3b{word-spacing:10.201702pt;}
.ws1c{word-spacing:10.254836pt;}
.wsb2{word-spacing:10.307970pt;}
.wsd1{word-spacing:10.350732pt;}
.wsc7{word-spacing:10.371757pt;}
.ws6b{word-spacing:10.467372pt;}
.wsc0{word-spacing:10.573639pt;}
.ws72{word-spacing:10.679907pt;}
.ws8b{word-spacing:10.945577pt;}
.wsd{word-spacing:11.142246pt;}
.ws33{word-spacing:11.158112pt;}
.ws94{word-spacing:11.317514pt;}
.ws44{word-spacing:11.423781pt;}
.ws2c{word-spacing:11.530049pt;}
.ws4d{word-spacing:11.636317pt;}
.ws7c{word-spacing:11.689451pt;}
.wsce{word-spacing:11.689480pt;}
.ws4b{word-spacing:11.742585pt;}
.wsc3{word-spacing:11.987030pt;}
.ws99{word-spacing:12.114522pt;}
.ws6d{word-spacing:12.273923pt;}
.wsa7{word-spacing:12.380191pt;}
.wsa5{word-spacing:12.539593pt;}
.ws95{word-spacing:12.592726pt;}
.ws8a{word-spacing:12.645860pt;}
.ws0{word-spacing:12.752160pt;}
.ws37{word-spacing:12.911530pt;}
.ws34{word-spacing:12.964663pt;}
.ws55{word-spacing:13.218933pt;}
.ws25{word-spacing:13.230333pt;}
.ws9f{word-spacing:13.262246pt;}
.ws81{word-spacing:13.283467pt;}
.ws8e{word-spacing:13.389734pt;}
.wsbe{word-spacing:13.655404pt;}
.wsc{word-spacing:13.676749pt;}
.wsd0{word-spacing:13.687318pt;}
.ws80{word-spacing:13.708538pt;}
.ws52{word-spacing:13.809973pt;}
.wsa8{word-spacing:13.814805pt;}
.ws23{word-spacing:13.867939pt;}
.ws97{word-spacing:14.080475pt;}
.wsc4{word-spacing:14.112390pt;}
.ws3d{word-spacing:14.133609pt;}
.ws5a{word-spacing:14.293010pt;}
.ws26{word-spacing:14.346144pt;}
.wsbc{word-spacing:14.452412pt;}
.wsa4{word-spacing:14.505546pt;}
.ws63{word-spacing:14.558679pt;}
.ws3f{word-spacing:14.824349pt;}
.ws49{word-spacing:14.930617pt;}
.ws3c{word-spacing:15.302554pt;}
.ws85{word-spacing:15.354948pt;}
.ws84{word-spacing:15.461955pt;}
.wsb6{word-spacing:15.621357pt;}
.wse{word-spacing:15.685222pt;}
.ws6c{word-spacing:15.887026pt;}
.ws17{word-spacing:15.940160pt;}
.wsbd{word-spacing:16.205829pt;}
.ws7e{word-spacing:16.524633pt;}
.ws35{word-spacing:16.737168pt;}
.wsd3{word-spacing:17.130402pt;}
.ws54{word-spacing:17.208266pt;}
.wsa1{word-spacing:17.852979pt;}
.ws59{word-spacing:18.024306pt;}
.ws83{word-spacing:18.118649pt;}
.ws65{word-spacing:18.171782pt;}
.wsb7{word-spacing:18.331184pt;}
.ws15{word-spacing:18.506650pt;}
.ws45{word-spacing:19.021924pt;}
.wsa3{word-spacing:19.075058pt;}
.ws9e{word-spacing:19.808355pt;}
.ws4a{word-spacing:20.137735pt;}
.wsbf{word-spacing:20.190869pt;}
.ws11{word-spacing:20.276019pt;}
.ws2b{word-spacing:20.456539pt;}
.ws41{word-spacing:20.722208pt;}
.ws4c{word-spacing:24.948679pt;}
.ws78{word-spacing:25.397988pt;}
.ws96{word-spacing:27.295133pt;}
.ws86{word-spacing:28.591986pt;}
.ws9d{word-spacing:30.377759pt;}
.ws9c{word-spacing:44.760082pt;}
._0{margin-left:-10.201728pt;}
._2{margin-left:-8.926512pt;}
._6{margin-left:-6.004127pt;}
._4{margin-left:-4.250709pt;}
._1{margin-left:-3.188040pt;}
._3{margin-left:-1.461187pt;}
._7{width:0.937511pt;}
._5{width:2.656693pt;}
._14{width:3.547870pt;}
._f{width:11.476915pt;}
._b{width:13.761671pt;}
._8{width:21.784885pt;}
._a{width:23.378960pt;}
._d{width:25.079248pt;}
._9{width:26.566933pt;}
._11{width:27.459651pt;}
._c{width:29.223627pt;}
._10{width:34.133282pt;}
._12{width:35.238469pt;}
._13{width:42.507200pt;}
._e{width:110.773763pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs5{font-size:51.408000pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:100.740000pt;}
.yaa{bottom:103.041333pt;}
.y57{bottom:108.849300pt;}
.ya9{bottom:114.996000pt;}
.y31{bottom:116.680000pt;}
.y71{bottom:116.681333pt;}
.yf9{bottom:122.658667pt;}
.ya8{bottom:126.952000pt;}
.y54{bottom:132.620000pt;}
.y30{bottom:132.621333pt;}
.yf8{bottom:134.613333pt;}
.ybc{bottom:136.692000pt;}
.yf7{bottom:146.569333pt;}
.y2f{bottom:148.561333pt;}
.yf6{bottom:158.524000pt;}
.y2e{bottom:164.501333pt;}
.y70{bottom:169.508000pt;}
.yf5{bottom:170.478667pt;}
.ybb{bottom:173.400000pt;}
.y2d{bottom:180.441333pt;}
.yf4{bottom:182.434667pt;}
.yba{bottom:185.354667pt;}
.y53{bottom:187.364000pt;}
.yf3{bottom:194.389333pt;}
.y2c{bottom:196.381333pt;}
.y6f{bottom:196.409333pt;}
.yb9{bottom:197.309333pt;}
.yf2{bottom:206.345333pt;}
.yb8{bottom:209.265333pt;}
.y2b{bottom:212.321333pt;}
.y94{bottom:212.322667pt;}
.y6e{bottom:212.349333pt;}
.yf1{bottom:218.300000pt;}
.y52{bottom:218.922667pt;}
.y2a{bottom:228.262667pt;}
.y6d{bottom:228.290667pt;}
.yf0{bottom:230.254667pt;}
.y51{bottom:234.862667pt;}
.y58{bottom:236.012700pt;}
.yef{bottom:242.210667pt;}
.y29{bottom:244.202667pt;}
.y6c{bottom:244.230667pt;}
.y50{bottom:250.802667pt;}
.yee{bottom:254.165333pt;}
.y7d{bottom:260.142667pt;}
.y6b{bottom:260.170667pt;}
.y28{bottom:261.053333pt;}
.y93{bottom:264.310667pt;}
.yed{bottom:266.120000pt;}
.y4f{bottom:266.742667pt;}
.y6a{bottom:276.110667pt;}
.y27{bottom:276.994667pt;}
.yec{bottom:278.076000pt;}
.y4e{bottom:282.682667pt;}
.yeb{bottom:290.030667pt;}
.y7c{bottom:290.112000pt;}
.y69{bottom:292.050667pt;}
.y26{bottom:292.934667pt;}
.y4d{bottom:298.624000pt;}
.yea{bottom:301.986667pt;}
.y92{bottom:302.026667pt;}
.y7b{bottom:306.052000pt;}
.y25{bottom:308.874667pt;}
.y68{bottom:312.997333pt;}
.ye9{bottom:313.941333pt;}
.y91{bottom:313.981333pt;}
.y4c{bottom:314.564000pt;}
.y24{bottom:324.814667pt;}
.ye8{bottom:325.896000pt;}
.y90{bottom:325.936000pt;}
.ye7{bottom:337.852000pt;}
.y8f{bottom:337.892000pt;}
.y4b{bottom:339.384000pt;}
.y67{bottom:339.900000pt;}
.y23{bottom:340.754667pt;}
.y7a{bottom:344.905333pt;}
.ya7{bottom:346.757333pt;}
.ye6{bottom:349.806667pt;}
.y8e{bottom:349.846667pt;}
.y66{bottom:355.840000pt;}
.y22{bottom:356.696000pt;}
.y79{bottom:360.845333pt;}
.ye5{bottom:361.761333pt;}
.ya6{bottom:362.697333pt;}
.y56{bottom:365.068200pt;}
.y4a{bottom:370.941333pt;}
.y65{bottom:371.780000pt;}
.y21{bottom:372.636000pt;}
.ye4{bottom:373.717333pt;}
.y78{bottom:376.785333pt;}
.ya5{bottom:378.637333pt;}
.ye3{bottom:385.672000pt;}
.y49{bottom:386.881333pt;}
.y64{bottom:387.720000pt;}
.y20{bottom:388.576000pt;}
.y77{bottom:392.726667pt;}
.ya4{bottom:394.577333pt;}
.ye2{bottom:397.628000pt;}
.y48{bottom:402.821333pt;}
.y63{bottom:403.660000pt;}
.y1f{bottom:404.516000pt;}
.y76{bottom:408.666667pt;}
.ye1{bottom:409.582667pt;}
.ya3{bottom:410.517333pt;}
.y47{bottom:418.762667pt;}
.y62{bottom:419.600000pt;}
.y1e{bottom:420.456000pt;}
.ye0{bottom:421.537333pt;}
.y75{bottom:424.606667pt;}
.ya2{bottom:426.458667pt;}
.ydf{bottom:433.493333pt;}
.y46{bottom:434.702667pt;}
.y61{bottom:435.541333pt;}
.y1d{bottom:436.396000pt;}
.y74{bottom:440.546667pt;}
.ya1{bottom:442.398667pt;}
.yde{bottom:445.448000pt;}
.y45{bottom:450.642667pt;}
.y60{bottom:451.481333pt;}
.y1c{bottom:452.337333pt;}
.y73{bottom:456.486667pt;}
.ydd{bottom:457.402667pt;}
.ya0{bottom:458.338667pt;}
.y44{bottom:466.582667pt;}
.y5f{bottom:467.421333pt;}
.ydc{bottom:469.358667pt;}
.y72{bottom:472.426667pt;}
.y9f{bottom:474.278667pt;}
.y1b{bottom:477.929333pt;}
.ydb{bottom:481.313333pt;}
.y43{bottom:482.522667pt;}
.y5e{bottom:488.368000pt;}
.y9e{bottom:490.218667pt;}
.yb7{bottom:491.712000pt;}
.yda{bottom:493.269333pt;}
.y42{bottom:498.462667pt;}
.yd9{bottom:505.224000pt;}
.y9d{bottom:506.160000pt;}
.yb6{bottom:507.652000pt;}
.y1a{bottom:514.274667pt;}
.y41{bottom:514.404000pt;}
.yd8{bottom:517.178667pt;}
.y9c{bottom:522.100000pt;}
.yb5{bottom:523.592000pt;}
.y19{bottom:527.558667pt;}
.yd7{bottom:529.134667pt;}
.y40{bottom:530.344000pt;}
.y5d{bottom:531.316000pt;}
.y9b{bottom:538.040000pt;}
.yb4{bottom:539.532000pt;}
.yd6{bottom:541.089333pt;}
.y18{bottom:541.753333pt;}
.y5c{bottom:543.270667pt;}
.y3f{bottom:546.284000pt;}
.yd5{bottom:553.044000pt;}
.y17{bottom:555.037333pt;}
.y5b{bottom:555.226667pt;}
.yb3{bottom:555.472000pt;}
.y3e{bottom:562.224000pt;}
.y5a{bottom:567.181333pt;}
.y16{bottom:568.320000pt;}
.y9a{bottom:571.037333pt;}
.yb2{bottom:571.413333pt;}
.yd4{bottom:572.770667pt;}
.y3d{bottom:578.164000pt;}
.y59{bottom:579.136000pt;}
.y15{bottom:581.604000pt;}
.y99{bottom:586.977333pt;}
.yb1{bottom:587.353333pt;}
.y3c{bottom:594.105333pt;}
.y14{bottom:594.888000pt;}
.yd3{bottom:597.677333pt;}
.y55{bottom:603.046667pt;}
.yb0{bottom:603.293333pt;}
.y13{bottom:608.170667pt;}
.y3b{bottom:610.045333pt;}
.yd2{bottom:613.617333pt;}
.yaf{bottom:619.233333pt;}
.y12{bottom:621.454667pt;}
.y3a{bottom:625.985333pt;}
.yd1{bottom:629.557333pt;}
.y11{bottom:634.737333pt;}
.yae{bottom:639.244000pt;}
.y98{bottom:639.733333pt;}
.y39{bottom:641.925333pt;}
.yd0{bottom:645.497333pt;}
.y10{bottom:648.021333pt;}
.y97{bottom:651.689333pt;}
.y38{bottom:657.865333pt;}
.yf{bottom:661.305333pt;}
.ycf{bottom:661.437333pt;}
.y96{bottom:663.644000pt;}
.y37{bottom:673.805333pt;}
.ye{bottom:674.588000pt;}
.y95{bottom:675.598667pt;}
.yce{bottom:677.378667pt;}
.yad{bottom:680.981333pt;}
.yd{bottom:687.872000pt;}
.y36{bottom:689.746667pt;}
.yac{bottom:692.937333pt;}
.ycd{bottom:693.318667pt;}
.yc{bottom:701.156000pt;}
.yab{bottom:704.892000pt;}
.y35{bottom:705.686667pt;}
.ycc{bottom:709.258667pt;}
.yb{bottom:714.438667pt;}
.y34{bottom:721.626667pt;}
.ycb{bottom:725.198667pt;}
.ya{bottom:727.722667pt;}
.y8d{bottom:734.181333pt;}
.y33{bottom:738.349333pt;}
.y9{bottom:741.006667pt;}
.yca{bottom:741.138667pt;}
.y8c{bottom:750.121333pt;}
.y8{bottom:754.289333pt;}
.yc9{bottom:757.080000pt;}
.y8b{bottom:766.061333pt;}
.yc8{bottom:773.020000pt;}
.y8a{bottom:782.001333pt;}
.yc7{bottom:788.960000pt;}
.y89{bottom:797.942667pt;}
.yc6{bottom:804.900000pt;}
.y88{bottom:813.882667pt;}
.y7{bottom:816.037333pt;}
.yc5{bottom:820.840000pt;}
.y87{bottom:829.822667pt;}
.y6{bottom:832.474667pt;}
.yc4{bottom:836.780000pt;}
.y86{bottom:845.762667pt;}
.y5{bottom:848.913333pt;}
.yc3{bottom:856.905333pt;}
.y85{bottom:861.702667pt;}
.y4{bottom:865.352000pt;}
.y84{bottom:877.642667pt;}
.yc2{bottom:881.812000pt;}
.y3{bottom:881.986667pt;}
.y83{bottom:893.584000pt;}
.yc1{bottom:897.752000pt;}
.y82{bottom:909.524000pt;}
.yc0{bottom:913.692000pt;}
.y2{bottom:923.830667pt;}
.y81{bottom:925.464000pt;}
.ybf{bottom:929.632000pt;}
.y80{bottom:941.404000pt;}
.ybe{bottom:945.572000pt;}
.y7f{bottom:957.344000pt;}
.y1{bottom:961.024000pt;}
.ybd{bottom:961.513333pt;}
.y7e{bottom:977.453333pt;}
.h9{height:29.244954pt;}
.ha{height:29.458287pt;}
.h6{height:33.187635pt;}
.h5{height:33.426739pt;}
.h3{height:36.290431pt;}
.h4{height:36.556100pt;}
.h8{height:37.577039pt;}
.hb{height:38.508954pt;}
.h2{height:40.211857pt;}
.h1{height:87.734861pt;}
.h7{height:385.560000pt;}
.h0{height:1056.000000pt;}
.w1{width:685.439990pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:65.285333pt;}
.x1{left:67.822667pt;}
.x4{left:70.716000pt;}
.x12{left:78.568000pt;}
.x6{left:107.192000pt;}
.x7{left:110.266667pt;}
.x5{left:119.572000pt;}
.x3{left:130.666667pt;}
.x2{left:165.008000pt;}
.x14{left:180.825333pt;}
.x19{left:279.009770pt;}
.x18{left:293.525390pt;}
.x9{left:297.382667pt;}
.xb{left:333.858667pt;}
.xa{left:346.238667pt;}
.xc{left:353.365333pt;}
.x8{left:354.301333pt;}
.x15{left:415.970667pt;}
.x1a{left:421.584000pt;}
.x16{left:429.253333pt;}
.x1e{left:440.316000pt;}
.x1c{left:481.804000pt;}
.x17{left:491.700000pt;}
.xe{left:524.048000pt;}
.x1b{left:544.941333pt;}
.x1d{left:546.149333pt;}
.x10{left:560.525333pt;}
.xf{left:572.905333pt;}
.x11{left:581.173333pt;}
.x21{left:593.868000pt;}
.xd{left:595.214667pt;}
.x22{left:600.361333pt;}
.x1f{left:655.913333pt;}
.x20{left:665.945333pt;}
}




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