
    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_f06a6d18cc7901078b04b125.woff')format("woff");}.ff1{font-family:ff1;line-height:1.108000;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_cc6b0c5c3e16beb0a4bfce61.woff')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_a4519aa4f1a55136ab5241bf.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893000;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_afd2ec309998f0af503b8f7d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.525000;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_1c61fb0085bc7ab459c3b8b3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_47ec8426f88aa3b78e09c707.woff')format("woff");}.ff6{font-family:ff6;line-height:0.969000;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:ff7;src:url('chunks/assets/font_ea5690aba21bc6340449c75f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:11.406000px;}
.v1{vertical-align:22.854000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.988000px;}
.ls2{letter-spacing:15.551400px;}
.ls3{letter-spacing:21.694471px;}
.ls0{letter-spacing:56.988000px;}
.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;}
}
.wsc2{word-spacing:-13.449600px;}
.ws33{word-spacing:-11.368439px;}
.ws30{word-spacing:-3.227868px;}
.ws76{word-spacing:-3.174106px;}
.ws50{word-spacing:-3.120307px;}
.wsad{word-spacing:-3.066509px;}
.ws2e{word-spacing:-3.066480px;}
.wsb6{word-spacing:-2.945914px;}
.ws75{word-spacing:-2.905114px;}
.ws25{word-spacing:-2.797069px;}
.wsab{word-spacing:-2.743718px;}
.ws18{word-spacing:-2.743704px;}
.wsbd{word-spacing:-2.636122px;}
.wsa0{word-spacing:-2.528525px;}
.ws78{word-spacing:-2.474726px;}
.ws38{word-spacing:-2.205734px;}
.ws5d{word-spacing:-2.151936px;}
.ws8a{word-spacing:-2.044339px;}
.ws47{word-spacing:-1.936742px;}
.ws27{word-spacing:-1.882699px;}
.ws6f{word-spacing:-1.721549px;}
.ws45{word-spacing:-1.613952px;}
.ws51{word-spacing:-1.560154px;}
.ws5{word-spacing:-1.506557px;}
.wsac{word-spacing:-1.506355px;}
.ws74{word-spacing:-1.452557px;}
.ws68{word-spacing:-1.291162px;}
.ws17{word-spacing:-1.291158px;}
.ws43{word-spacing:-1.237363px;}
.ws4b{word-spacing:-1.183565px;}
.ws1c{word-spacing:-1.129770px;}
.ws4d{word-spacing:-1.129766px;}
.ws3b{word-spacing:-1.075968px;}
.ws28{word-spacing:-1.075759px;}
.ws77{word-spacing:-1.022170px;}
.ws36{word-spacing:-0.806976px;}
.ws88{word-spacing:-0.753178px;}
.ws46{word-spacing:-0.645581px;}
.ws2f{word-spacing:-0.645552px;}
.ws94{word-spacing:-0.591782px;}
.ws26{word-spacing:-0.322776px;}
.ws71{word-spacing:-0.268992px;}
.ws9f{word-spacing:-0.215194px;}
.ws2d{word-spacing:-0.054011px;}
.ws1{word-spacing:-0.000310px;}
.ws0{word-spacing:-0.000143px;}
.ws2{word-spacing:0.000000px;}
.ws73{word-spacing:0.107597px;}
.ws7a{word-spacing:0.161395px;}
.ws86{word-spacing:0.215194px;}
.ws7b{word-spacing:0.268992px;}
.ws54{word-spacing:0.322790px;}
.wsf{word-spacing:0.376195px;}
.ws48{word-spacing:0.376589px;}
.ws8{word-spacing:0.430207px;}
.ws3f{word-spacing:0.430387px;}
.ws49{word-spacing:0.484186px;}
.ws3e{word-spacing:0.591782px;}
.wsc7{word-spacing:0.645581px;}
.ws83{word-spacing:0.699379px;}
.wsb{word-spacing:0.806940px;}
.wsb8{word-spacing:0.806976px;}
.ws87{word-spacing:0.914573px;}
.ws31{word-spacing:0.968472px;}
.wsbc{word-spacing:1.022170px;}
.ws19{word-spacing:1.237147px;}
.ws95{word-spacing:1.237363px;}
.ws6{word-spacing:1.291158px;}
.ws57{word-spacing:1.291162px;}
.ws44{word-spacing:1.344960px;}
.ws59{word-spacing:1.398758px;}
.ws84{word-spacing:1.452557px;}
.ws24{word-spacing:1.559923px;}
.ws4c{word-spacing:1.560154px;}
.ws12{word-spacing:1.613934px;}
.wsc5{word-spacing:1.613952px;}
.ws8e{word-spacing:1.667750px;}
.ws3{word-spacing:1.721311px;}
.ws42{word-spacing:1.721549px;}
.ws9{word-spacing:1.775322px;}
.wsa7{word-spacing:1.882944px;}
.ws3a{word-spacing:1.936742px;}
.ws4f{word-spacing:1.990541px;}
.ws2a{word-spacing:2.044087px;}
.ws6b{word-spacing:2.044339px;}
.ws10{word-spacing:2.098098px;}
.ws6d{word-spacing:2.151936px;}
.ws4{word-spacing:2.205475px;}
.ws63{word-spacing:2.205734px;}
.ws53{word-spacing:2.259533px;}
.ws79{word-spacing:2.313331px;}
.ws6a{word-spacing:2.367130px;}
.ws93{word-spacing:2.474726px;}
.ws7{word-spacing:2.528304px;}
.ws72{word-spacing:2.528525px;}
.ws1b{word-spacing:2.582262px;}
.wsa9{word-spacing:2.582323px;}
.wsba{word-spacing:2.636122px;}
.ws1e{word-spacing:2.636273px;}
.ws92{word-spacing:2.689920px;}
.ws89{word-spacing:2.743718px;}
.ws85{word-spacing:2.797517px;}
.ws1a{word-spacing:2.851080px;}
.ws9d{word-spacing:2.851315px;}
.ws34{word-spacing:2.905114px;}
.ws9c{word-spacing:2.958912px;}
.ws5a{word-spacing:3.066509px;}
.ws5c{word-spacing:3.227904px;}
.ws5e{word-spacing:3.281702px;}
.ws16{word-spacing:3.389256px;}
.ws9a{word-spacing:3.443098px;}
.wsa{word-spacing:3.496632px;}
.ws82{word-spacing:3.604493px;}
.ws32{word-spacing:3.622453px;}
.ws58{word-spacing:3.658291px;}
.ws91{word-spacing:3.712090px;}
.ws6c{word-spacing:3.765888px;}
.ws5f{word-spacing:3.819686px;}
.ws66{word-spacing:3.873485px;}
.wsa2{word-spacing:3.927283px;}
.ws90{word-spacing:3.981082px;}
.wsd{word-spacing:4.034808px;}
.wsa6{word-spacing:4.034880px;}
.ws80{word-spacing:4.142477px;}
.ws5b{word-spacing:4.250074px;}
.wse{word-spacing:4.303626px;}
.ws35{word-spacing:4.303872px;}
.ws60{word-spacing:4.357670px;}
.ws65{word-spacing:4.411469px;}
.ws9b{word-spacing:4.519066px;}
.ws81{word-spacing:4.572864px;}
.ws4a{word-spacing:4.680461px;}
.ws8b{word-spacing:4.788058px;}
.ws9e{word-spacing:5.057050px;}
.ws29{word-spacing:5.271954px;}
.ws69{word-spacing:5.433638px;}
.wsc{word-spacing:5.540773px;}
.ws8d{word-spacing:5.541235px;}
.ws64{word-spacing:5.595034px;}
.ws7e{word-spacing:5.702630px;}
.ws4e{word-spacing:5.864026px;}
.ws52{word-spacing:6.025421px;}
.ws56{word-spacing:6.079219px;}
.ws13{word-spacing:6.186325px;}
.ws70{word-spacing:6.294413px;}
.ws2b{word-spacing:6.455735px;}
.ws97{word-spacing:6.509606px;}
.ws3d{word-spacing:6.617203px;}
.ws6e{word-spacing:6.671002px;}
.ws2c{word-spacing:6.885888px;}
.wsb5{word-spacing:6.993792px;}
.ws37{word-spacing:7.101389px;}
.ws8c{word-spacing:7.155187px;}
.wsc0{word-spacing:7.316582px;}
.ws39{word-spacing:7.370381px;}
.ws41{word-spacing:7.424179px;}
.ws55{word-spacing:7.531776px;}
.ws7d{word-spacing:7.639373px;}
.ws1d{word-spacing:7.800259px;}
.ws8f{word-spacing:7.800768px;}
.ws7c{word-spacing:7.854566px;}
.ws67{word-spacing:7.908365px;}
.ws98{word-spacing:8.231155px;}
.wsaa{word-spacing:8.284954px;}
.wsc8{word-spacing:8.338752px;}
.ws14{word-spacing:8.499822px;}
.ws99{word-spacing:8.553946px;}
.ws1f{word-spacing:8.876609px;}
.wsbe{word-spacing:8.876736px;}
.ws62{word-spacing:9.038131px;}
.wsb3{word-spacing:9.307123px;}
.ws23{word-spacing:9.468204px;}
.ws3c{word-spacing:9.468518px;}
.wsae{word-spacing:9.576115px;}
.wsca{word-spacing:9.629914px;}
.ws21{word-spacing:9.790980px;}
.wsaf{word-spacing:9.791309px;}
.ws15{word-spacing:9.844937px;}
.ws61{word-spacing:9.845107px;}
.wsb7{word-spacing:10.060301px;}
.wsb9{word-spacing:10.114099px;}
.ws7f{word-spacing:10.167898px;}
.wsc3{word-spacing:10.544486px;}
.ws22{word-spacing:11.082084px;}
.wsa8{word-spacing:11.136269px;}
.wsc1{word-spacing:11.243866px;}
.ws20{word-spacing:11.350902px;}
.ws40{word-spacing:11.512858px;}
.wsc4{word-spacing:11.674253px;}
.wsa5{word-spacing:12.373632px;}
.wsb0{word-spacing:13.234406px;}
.ws11{word-spacing:13.449000px;}
.wsa1{word-spacing:13.449600px;}
.ws96{word-spacing:14.148979px;}
.wsc9{word-spacing:14.848358px;}
.wsc6{word-spacing:15.762931px;}
.wsbf{word-spacing:16.516109px;}
.wsb4{word-spacing:18.668045px;}
.wsa4{word-spacing:20.766182px;}
.wsbb{word-spacing:21.734554px;}
.wsb2{word-spacing:23.025715px;}
.wsb1{word-spacing:36.313920px;}
.wsa3{word-spacing:39.649421px;}
._9{margin-left:-8.147501px;}
._d{margin-left:-6.978459px;}
._4{margin-left:-5.480175px;}
._0{margin-left:-4.447164px;}
._2{margin-left:-3.441510px;}
._1{margin-left:-1.912800px;}
._c{width:12.218150px;}
._3{width:14.165841px;}
._5{width:15.306677px;}
._a{width:16.390409px;}
._6{width:20.040994px;}
._7{width:26.898000px;}
._b{width:1005.855970px;}
._8{width:1012.558540px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.995881px;}
.fs9{font-size:35.865600px;}
.fs4{font-size:35.868000px;}
.fs3{font-size:41.844000px;}
.fs0{font-size:47.820000px;}
.fs7{font-size:47.820600px;}
.fs2{font-size:53.796000px;}
.fs8{font-size:53.798400px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:103.290000px;}
.y0{bottom:0.000000px;}
.y44{bottom:25.335000px;}
.y46{bottom:28.761550px;}
.y45{bottom:31.749140px;}
.y43{bottom:86.463000px;}
.y42{bottom:98.418000px;}
.y41{bottom:110.373000px;}
.y40{bottom:122.328000px;}
.y99{bottom:124.385130px;}
.yeb{bottom:130.463130px;}
.y3f{bottom:134.284500px;}
.y98{bottom:136.340130px;}
.yea{bottom:142.419630px;}
.y2c{bottom:167.160000px;}
.y7c{bottom:175.295130px;}
.y2b{bottom:183.598500px;}
.y97{bottom:191.733630px;}
.y7b{bottom:199.952130px;}
.yf4{bottom:199.953630px;}
.y2a{bottom:200.037000px;}
.y96{bottom:208.172130px;}
.y7a{bottom:216.390630px;}
.yf3{bottom:216.392130px;}
.y29{bottom:216.475500px;}
.ybc{bottom:224.610630px;}
.ye9{bottom:231.459630px;}
.y79{bottom:232.829130px;}
.y3e{bottom:239.391000px;}
.ybb{bottom:241.049130px;}
.y28{bottom:241.326000px;}
.ye8{bottom:247.898130px;}
.y78{bottom:249.267630px;}
.y3d{bottom:255.829500px;}
.yba{bottom:257.487630px;}
.y27{bottom:257.764500px;}
.ye7{bottom:264.336630px;}
.y77{bottom:265.706130px;}
.y3c{bottom:272.268000px;}
.yb9{bottom:273.926130px;}
.y26{bottom:274.201500px;}
.y76{bottom:282.144630px;}
.ye6{bottom:287.624130px;}
.y3b{bottom:288.706500px;}
.yb8{bottom:290.364630px;}
.y25{bottom:290.640000px;}
.y95{bottom:298.583130px;}
.ye5{bottom:304.062630px;}
.y3a{bottom:305.143500px;}
.y75{bottom:306.801630px;}
.yb7{bottom:306.803130px;}
.y24{bottom:307.078500px;}
.y94{bottom:315.021630px;}
.ye4{bottom:320.501130px;}
.y39{bottom:321.582000px;}
.y74{bottom:323.240130px;}
.y23{bottom:323.517000px;}
.y93{bottom:331.460130px;}
.ye3{bottom:336.938130px;}
.y38{bottom:338.020500px;}
.y73{bottom:339.678630px;}
.y22{bottom:339.955500px;}
.y92{bottom:347.898630px;}
.y37{bottom:354.459000px;}
.y72{bottom:356.117130px;}
.y21{bottom:356.394000px;}
.ye2{bottom:360.225630px;}
.y91{bottom:364.335630px;}
.y36{bottom:370.897500px;}
.y71{bottom:372.555630px;}
.y20{bottom:372.832500px;}
.ye1{bottom:376.664130px;}
.y90{bottom:380.774130px;}
.y35{bottom:387.336000px;}
.yb6{bottom:388.994130px;}
.y1f{bottom:389.271000px;}
.ye0{bottom:393.102630px;}
.y70{bottom:397.212630px;}
.y34{bottom:403.774500px;}
.yb5{bottom:405.432630px;}
.y1e{bottom:405.709500px;}
.ydf{bottom:409.541130px;}
.y6f{bottom:413.651130px;}
.y33{bottom:420.213000px;}
.yb4{bottom:421.871130px;}
.y1d{bottom:422.148000px;}
.y6e{bottom:430.089630px;}
.yde{bottom:432.830130px;}
.y32{bottom:436.651500px;}
.yb3{bottom:438.309630px;}
.y1c{bottom:438.586500px;}
.y6d{bottom:446.528130px;}
.yb2{bottom:454.748130px;}
.y31{bottom:459.567000px;}
.y6c{bottom:462.966630px;}
.y1b{bottom:463.437000px;}
.yb1{bottom:471.186630px;}
.ydd{bottom:471.642630px;}
.y6b{bottom:479.405130px;}
.yb0{bottom:487.623630px;}
.ydc{bottom:488.081130px;}
.y6a{bottom:495.842130px;}
.y8f{bottom:495.843630px;}
.y30{bottom:497.760000px;}
.ydb{bottom:504.518130px;}
.y1a{bottom:505.785000px;}
.y69{bottom:512.280630px;}
.y8e{bottom:512.282130px;}
.yaf{bottom:513.248130px;}
.y2f{bottom:514.198500px;}
.yda{bottom:520.956630px;}
.y19{bottom:522.223500px;}
.y68{bottom:528.719130px;}
.yae{bottom:529.686630px;}
.y2e{bottom:530.637000px;}
.yf2{bottom:536.939130px;}
.yd9{bottom:537.395130px;}
.y67{bottom:545.157630px;}
.yad{bottom:546.125130px;}
.y18{bottom:547.074000px;}
.y2d{bottom:547.075500px;}
.yf1{bottom:553.377630px;}
.yd8{bottom:553.833630px;}
.y66{bottom:561.596130px;}
.yac{bottom:562.563630px;}
.yf0{bottom:569.816130px;}
.yd7{bottom:570.272130px;}
.yab{bottom:579.002130px;}
.y65{bottom:586.253130px;}
.y8d{bottom:586.254630px;}
.yd6{bottom:586.710630px;}
.yaa{bottom:595.440630px;}
.y64{bottom:602.691630px;}
.yef{bottom:602.693130px;}
.yd5{bottom:603.149130px;}
.ya9{bottom:611.879130px;}
.y17{bottom:614.322000px;}
.y63{bottom:619.130130px;}
.yd4{bottom:619.587630px;}
.y8c{bottom:627.350130px;}
.y16{bottom:630.760500px;}
.y62{bottom:635.568630px;}
.yd3{bottom:636.026130px;}
.ya8{bottom:637.505130px;}
.y8b{bottom:643.788630px;}
.y15{bottom:647.199000px;}
.y61{bottom:652.007130px;}
.yd2{bottom:652.464630px;}
.y8a{bottom:660.227130px;}
.y14{bottom:663.637500px;}
.y60{bottom:668.445630px;}
.yd1{bottom:668.901630px;}
.y89{bottom:676.665630px;}
.y13{bottom:680.076000px;}
.ya7{bottom:684.884130px;}
.yd0{bottom:685.340130px;}
.y5f{bottom:693.104130px;}
.y12{bottom:696.514500px;}
.ya6{bottom:701.322630px;}
.ycf{bottom:708.629130px;}
.y88{bottom:709.542630px;}
.y11{bottom:712.953000px;}
.ya5{bottom:717.761130px;}
.y87{bottom:725.981130px;}
.y10{bottom:729.391500px;}
.y5e{bottom:734.199630px;}
.y86{bottom:742.419630px;}
.yf{bottom:745.830000px;}
.yce{bottom:747.441630px;}
.y5d{bottom:750.638130px;}
.y85{bottom:758.858130px;}
.ye{bottom:762.267000px;}
.ycd{bottom:763.880130px;}
.y5c{bottom:767.076630px;}
.y84{bottom:775.295130px;}
.yd{bottom:778.705500px;}
.ycc{bottom:780.318630px;}
.y5b{bottom:783.515130px;}
.y83{bottom:791.733630px;}
.yc{bottom:795.144000px;}
.ycb{bottom:796.757130px;}
.y5a{bottom:799.953630px;}
.y82{bottom:808.172130px;}
.yb{bottom:811.582500px;}
.yca{bottom:813.195630px;}
.y59{bottom:816.392130px;}
.y81{bottom:824.610630px;}
.ya{bottom:828.021000px;}
.yc9{bottom:829.634130px;}
.ya4{bottom:832.829130px;}
.y58{bottom:832.830630px;}
.y80{bottom:841.049130px;}
.y9{bottom:844.459500px;}
.yc8{bottom:846.071130px;}
.ya3{bottom:849.267630px;}
.y57{bottom:849.269130px;}
.y7f{bottom:857.487630px;}
.yc7{bottom:862.509630px;}
.y56{bottom:865.706130px;}
.y7e{bottom:873.926130px;}
.yc6{bottom:878.948130px;}
.ya2{bottom:882.144630px;}
.y55{bottom:890.364630px;}
.yc5{bottom:895.386630px;}
.ya1{bottom:898.583130px;}
.y54{bottom:906.803130px;}
.y8{bottom:908.427000px;}
.yc4{bottom:911.825130px;}
.ya0{bottom:915.021630px;}
.y53{bottom:923.240130px;}
.y7d{bottom:923.241630px;}
.y7{bottom:923.371500px;}
.yc3{bottom:928.263630px;}
.y9f{bottom:931.460130px;}
.y6{bottom:938.316000px;}
.y52{bottom:939.678630px;}
.y9e{bottom:947.898630px;}
.yc2{bottom:951.552630px;}
.y5{bottom:955.533000px;}
.y51{bottom:956.117130px;}
.y9d{bottom:964.337130px;}
.y4{bottom:971.971500px;}
.y50{bottom:972.555630px;}
.y9c{bottom:980.775630px;}
.y4f{bottom:988.994130px;}
.yc1{bottom:990.365130px;}
.y9b{bottom:997.212630px;}
.y4e{bottom:1005.432630px;}
.yc0{bottom:1006.802130px;}
.y9a{bottom:1013.651130px;}
.yee{bottom:1021.871130px;}
.ybf{bottom:1023.240630px;}
.y4d{bottom:1030.089630px;}
.yed{bottom:1038.309630px;}
.ybe{bottom:1039.679130px;}
.y3{bottom:1044.511500px;}
.y4c{bottom:1046.528130px;}
.yec{bottom:1054.748130px;}
.ybd{bottom:1056.117630px;}
.y4b{bottom:1062.966630px;}
.y4a{bottom:1079.405130px;}
.y49{bottom:1095.843630px;}
.y48{bottom:1112.282130px;}
.y2{bottom:1127.166000px;}
.y1{bottom:1142.110500px;}
.y47{bottom:1142.169630px;}
.hb{height:21.357067px;}
.hf{height:31.920384px;}
.h5{height:31.922520px;}
.h7{height:36.904056px;}
.h6{height:37.226832px;}
.he{height:37.228493px;}
.h2{height:42.559800px;}
.hc{height:42.560334px;}
.h8{height:47.878440px;}
.hd{height:47.880576px;}
.h9{height:56.320312px;}
.h10{height:59.286576px;}
.h4{height:60.095160px;}
.h3{height:71.476680px;}
.ha{height:1262.826590px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:892.378960px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:63.000000px;}
.x1{left:69.532500px;}
.x9{left:83.355000px;}
.x8{left:105.397500px;}
.x2{left:151.675500px;}
.x12{left:183.238395px;}
.x3{left:317.344500px;}
.x11{left:321.648600px;}
.x4{left:345.004500px;}
.x6{left:350.055000px;}
.x7{left:356.469000px;}
.x5{left:367.575000px;}
.xa{left:464.053500px;}
.xb{left:477.876000px;}
.x10{left:490.228395px;}
.xe{left:646.891170px;}
.xf{left:740.155395px;}
.xd{left:801.596426px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.138667pt;}
.v1{vertical-align:20.314667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.656000pt;}
.ls2{letter-spacing:13.823467pt;}
.ls3{letter-spacing:19.283974pt;}
.ls0{letter-spacing:50.656000pt;}
.wsc2{word-spacing:-11.955200pt;}
.ws33{word-spacing:-10.105279pt;}
.ws30{word-spacing:-2.869216pt;}
.ws76{word-spacing:-2.821427pt;}
.ws50{word-spacing:-2.773606pt;}
.wsad{word-spacing:-2.725786pt;}
.ws2e{word-spacing:-2.725760pt;}
.wsb6{word-spacing:-2.618590pt;}
.ws75{word-spacing:-2.582323pt;}
.ws25{word-spacing:-2.486284pt;}
.wsab{word-spacing:-2.438861pt;}
.ws18{word-spacing:-2.438848pt;}
.wsbd{word-spacing:-2.343219pt;}
.wsa0{word-spacing:-2.247578pt;}
.ws78{word-spacing:-2.199757pt;}
.ws38{word-spacing:-1.960653pt;}
.ws5d{word-spacing:-1.912832pt;}
.ws8a{word-spacing:-1.817190pt;}
.ws47{word-spacing:-1.721549pt;}
.ws27{word-spacing:-1.673510pt;}
.ws6f{word-spacing:-1.530266pt;}
.ws45{word-spacing:-1.434624pt;}
.ws51{word-spacing:-1.386803pt;}
.ws5{word-spacing:-1.339162pt;}
.wsac{word-spacing:-1.338982pt;}
.ws74{word-spacing:-1.291162pt;}
.ws68{word-spacing:-1.147699pt;}
.ws17{word-spacing:-1.147696pt;}
.ws43{word-spacing:-1.099878pt;}
.ws4b{word-spacing:-1.052058pt;}
.ws1c{word-spacing:-1.004240pt;}
.ws4d{word-spacing:-1.004237pt;}
.ws3b{word-spacing:-0.956416pt;}
.ws28{word-spacing:-0.956230pt;}
.ws77{word-spacing:-0.908595pt;}
.ws36{word-spacing:-0.717312pt;}
.ws88{word-spacing:-0.669491pt;}
.ws46{word-spacing:-0.573850pt;}
.ws2f{word-spacing:-0.573824pt;}
.ws94{word-spacing:-0.526029pt;}
.ws26{word-spacing:-0.286912pt;}
.ws71{word-spacing:-0.239104pt;}
.ws9f{word-spacing:-0.191283pt;}
.ws2d{word-spacing:-0.048010pt;}
.ws1{word-spacing:-0.000275pt;}
.ws0{word-spacing:-0.000128pt;}
.ws2{word-spacing:0.000000pt;}
.ws73{word-spacing:0.095642pt;}
.ws7a{word-spacing:0.143462pt;}
.ws86{word-spacing:0.191283pt;}
.ws7b{word-spacing:0.239104pt;}
.ws54{word-spacing:0.286925pt;}
.wsf{word-spacing:0.334396pt;}
.ws48{word-spacing:0.334746pt;}
.ws8{word-spacing:0.382406pt;}
.ws3f{word-spacing:0.382566pt;}
.ws49{word-spacing:0.430387pt;}
.ws3e{word-spacing:0.526029pt;}
.wsc7{word-spacing:0.573850pt;}
.ws83{word-spacing:0.621670pt;}
.wsb{word-spacing:0.717280pt;}
.wsb8{word-spacing:0.717312pt;}
.ws87{word-spacing:0.812954pt;}
.ws31{word-spacing:0.860864pt;}
.wsbc{word-spacing:0.908595pt;}
.ws19{word-spacing:1.099686pt;}
.ws95{word-spacing:1.099878pt;}
.ws6{word-spacing:1.147696pt;}
.ws57{word-spacing:1.147699pt;}
.ws44{word-spacing:1.195520pt;}
.ws59{word-spacing:1.243341pt;}
.ws84{word-spacing:1.291162pt;}
.ws24{word-spacing:1.386598pt;}
.ws4c{word-spacing:1.386803pt;}
.ws12{word-spacing:1.434608pt;}
.wsc5{word-spacing:1.434624pt;}
.ws8e{word-spacing:1.482445pt;}
.ws3{word-spacing:1.530054pt;}
.ws42{word-spacing:1.530266pt;}
.ws9{word-spacing:1.578064pt;}
.wsa7{word-spacing:1.673728pt;}
.ws3a{word-spacing:1.721549pt;}
.ws4f{word-spacing:1.769370pt;}
.ws2a{word-spacing:1.816966pt;}
.ws6b{word-spacing:1.817190pt;}
.ws10{word-spacing:1.864976pt;}
.ws6d{word-spacing:1.912832pt;}
.ws4{word-spacing:1.960422pt;}
.ws63{word-spacing:1.960653pt;}
.ws53{word-spacing:2.008474pt;}
.ws79{word-spacing:2.056294pt;}
.ws6a{word-spacing:2.104115pt;}
.ws93{word-spacing:2.199757pt;}
.ws7{word-spacing:2.247382pt;}
.ws72{word-spacing:2.247578pt;}
.ws1b{word-spacing:2.295344pt;}
.wsa9{word-spacing:2.295398pt;}
.wsba{word-spacing:2.343219pt;}
.ws1e{word-spacing:2.343354pt;}
.ws92{word-spacing:2.391040pt;}
.ws89{word-spacing:2.438861pt;}
.ws85{word-spacing:2.486682pt;}
.ws1a{word-spacing:2.534294pt;}
.ws9d{word-spacing:2.534502pt;}
.ws34{word-spacing:2.582323pt;}
.ws9c{word-spacing:2.630144pt;}
.ws5a{word-spacing:2.725786pt;}
.ws5c{word-spacing:2.869248pt;}
.ws5e{word-spacing:2.917069pt;}
.ws16{word-spacing:3.012672pt;}
.ws9a{word-spacing:3.060531pt;}
.wsa{word-spacing:3.108118pt;}
.ws82{word-spacing:3.203994pt;}
.ws32{word-spacing:3.219958pt;}
.ws58{word-spacing:3.251814pt;}
.ws91{word-spacing:3.299635pt;}
.ws6c{word-spacing:3.347456pt;}
.ws5f{word-spacing:3.395277pt;}
.ws66{word-spacing:3.443098pt;}
.wsa2{word-spacing:3.490918pt;}
.ws90{word-spacing:3.538739pt;}
.wsd{word-spacing:3.586496pt;}
.wsa6{word-spacing:3.586560pt;}
.ws80{word-spacing:3.682202pt;}
.ws5b{word-spacing:3.777843pt;}
.wse{word-spacing:3.825446pt;}
.ws35{word-spacing:3.825664pt;}
.ws60{word-spacing:3.873485pt;}
.ws65{word-spacing:3.921306pt;}
.ws9b{word-spacing:4.016947pt;}
.ws81{word-spacing:4.064768pt;}
.ws4a{word-spacing:4.160410pt;}
.ws8b{word-spacing:4.256051pt;}
.ws9e{word-spacing:4.495155pt;}
.ws29{word-spacing:4.686182pt;}
.ws69{word-spacing:4.829901pt;}
.wsc{word-spacing:4.925131pt;}
.ws8d{word-spacing:4.925542pt;}
.ws64{word-spacing:4.973363pt;}
.ws7e{word-spacing:5.069005pt;}
.ws4e{word-spacing:5.212467pt;}
.ws52{word-spacing:5.355930pt;}
.ws56{word-spacing:5.403750pt;}
.ws13{word-spacing:5.498955pt;}
.ws70{word-spacing:5.595034pt;}
.ws2b{word-spacing:5.738431pt;}
.ws97{word-spacing:5.786317pt;}
.ws3d{word-spacing:5.881958pt;}
.ws6e{word-spacing:5.929779pt;}
.ws2c{word-spacing:6.120789pt;}
.wsb5{word-spacing:6.216704pt;}
.ws37{word-spacing:6.312346pt;}
.ws8c{word-spacing:6.360166pt;}
.wsc0{word-spacing:6.503629pt;}
.ws39{word-spacing:6.551450pt;}
.ws41{word-spacing:6.599270pt;}
.ws55{word-spacing:6.694912pt;}
.ws7d{word-spacing:6.790554pt;}
.ws1d{word-spacing:6.933563pt;}
.ws8f{word-spacing:6.934016pt;}
.ws7c{word-spacing:6.981837pt;}
.ws67{word-spacing:7.029658pt;}
.ws98{word-spacing:7.316582pt;}
.wsaa{word-spacing:7.364403pt;}
.wsc8{word-spacing:7.412224pt;}
.ws14{word-spacing:7.555397pt;}
.ws99{word-spacing:7.603507pt;}
.ws1f{word-spacing:7.890319pt;}
.wsbe{word-spacing:7.890432pt;}
.ws62{word-spacing:8.033894pt;}
.wsb3{word-spacing:8.272998pt;}
.ws23{word-spacing:8.416181pt;}
.ws3c{word-spacing:8.416461pt;}
.wsae{word-spacing:8.512102pt;}
.wsca{word-spacing:8.559923pt;}
.ws21{word-spacing:8.703093pt;}
.wsaf{word-spacing:8.703386pt;}
.ws15{word-spacing:8.751055pt;}
.ws61{word-spacing:8.751206pt;}
.wsb7{word-spacing:8.942490pt;}
.wsb9{word-spacing:8.990310pt;}
.ws7f{word-spacing:9.038131pt;}
.wsc3{word-spacing:9.372877pt;}
.ws22{word-spacing:9.850741pt;}
.wsa8{word-spacing:9.898906pt;}
.wsc1{word-spacing:9.994547pt;}
.ws20{word-spacing:10.089691pt;}
.ws40{word-spacing:10.233651pt;}
.wsc4{word-spacing:10.377114pt;}
.wsa5{word-spacing:10.998784pt;}
.wsb0{word-spacing:11.763917pt;}
.ws11{word-spacing:11.954667pt;}
.wsa1{word-spacing:11.955200pt;}
.ws96{word-spacing:12.576870pt;}
.wsc9{word-spacing:13.198541pt;}
.wsc6{word-spacing:14.011494pt;}
.wsbf{word-spacing:14.680986pt;}
.wsb4{word-spacing:16.593818pt;}
.wsa4{word-spacing:18.458829pt;}
.wsbb{word-spacing:19.319603pt;}
.wsb2{word-spacing:20.467302pt;}
.wsb1{word-spacing:32.279040pt;}
.wsa3{word-spacing:35.243930pt;}
._9{margin-left:-7.242223pt;}
._d{margin-left:-6.203075pt;}
._4{margin-left:-4.871267pt;}
._0{margin-left:-3.953035pt;}
._2{margin-left:-3.059120pt;}
._1{margin-left:-1.700267pt;}
._c{width:10.860578pt;}
._3{width:12.591859pt;}
._5{width:13.605935pt;}
._a{width:14.569253pt;}
._6{width:17.814217pt;}
._7{width:23.909333pt;}
._b{width:894.094195pt;}
._8{width:900.052036pt;}
.fs6{font-size:26.663005pt;}
.fs9{font-size:31.880533pt;}
.fs4{font-size:31.882667pt;}
.fs3{font-size:37.194667pt;}
.fs0{font-size:42.506667pt;}
.fs7{font-size:42.507200pt;}
.fs2{font-size:47.818667pt;}
.fs8{font-size:47.820800pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:91.813333pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:22.520000pt;}
.y46{bottom:25.565823pt;}
.y45{bottom:28.221458pt;}
.y43{bottom:76.856000pt;}
.y42{bottom:87.482667pt;}
.y41{bottom:98.109333pt;}
.y40{bottom:108.736000pt;}
.y99{bottom:110.564560pt;}
.yeb{bottom:115.967227pt;}
.y3f{bottom:119.364000pt;}
.y98{bottom:121.191227pt;}
.yea{bottom:126.595227pt;}
.y2c{bottom:148.586667pt;}
.y7c{bottom:155.817893pt;}
.y2b{bottom:163.198667pt;}
.y97{bottom:170.429893pt;}
.y7b{bottom:177.735227pt;}
.yf4{bottom:177.736560pt;}
.y2a{bottom:177.810667pt;}
.y96{bottom:185.041893pt;}
.y7a{bottom:192.347227pt;}
.yf3{bottom:192.348560pt;}
.y29{bottom:192.422667pt;}
.ybc{bottom:199.653893pt;}
.ye9{bottom:205.741893pt;}
.y79{bottom:206.959227pt;}
.y3e{bottom:212.792000pt;}
.ybb{bottom:214.265893pt;}
.y28{bottom:214.512000pt;}
.ye8{bottom:220.353893pt;}
.y78{bottom:221.571227pt;}
.y3d{bottom:227.404000pt;}
.yba{bottom:228.877893pt;}
.y27{bottom:229.124000pt;}
.ye7{bottom:234.965893pt;}
.y77{bottom:236.183227pt;}
.y3c{bottom:242.016000pt;}
.yb9{bottom:243.489893pt;}
.y26{bottom:243.734667pt;}
.y76{bottom:250.795227pt;}
.ye6{bottom:255.665893pt;}
.y3b{bottom:256.628000pt;}
.yb8{bottom:258.101893pt;}
.y25{bottom:258.346667pt;}
.y95{bottom:265.407227pt;}
.ye5{bottom:270.277893pt;}
.y3a{bottom:271.238667pt;}
.y75{bottom:272.712560pt;}
.yb7{bottom:272.713893pt;}
.y24{bottom:272.958667pt;}
.y94{bottom:280.019227pt;}
.ye4{bottom:284.889893pt;}
.y39{bottom:285.850667pt;}
.y74{bottom:287.324560pt;}
.y23{bottom:287.570667pt;}
.y93{bottom:294.631227pt;}
.ye3{bottom:299.500560pt;}
.y38{bottom:300.462667pt;}
.y73{bottom:301.936560pt;}
.y22{bottom:302.182667pt;}
.y92{bottom:309.243227pt;}
.y37{bottom:315.074667pt;}
.y72{bottom:316.548560pt;}
.y21{bottom:316.794667pt;}
.ye2{bottom:320.200560pt;}
.y91{bottom:323.853893pt;}
.y36{bottom:329.686667pt;}
.y71{bottom:331.160560pt;}
.y20{bottom:331.406667pt;}
.ye1{bottom:334.812560pt;}
.y90{bottom:338.465893pt;}
.y35{bottom:344.298667pt;}
.yb6{bottom:345.772560pt;}
.y1f{bottom:346.018667pt;}
.ye0{bottom:349.424560pt;}
.y70{bottom:353.077893pt;}
.y34{bottom:358.910667pt;}
.yb5{bottom:360.384560pt;}
.y1e{bottom:360.630667pt;}
.ydf{bottom:364.036560pt;}
.y6f{bottom:367.689893pt;}
.y33{bottom:373.522667pt;}
.yb4{bottom:374.996560pt;}
.y1d{bottom:375.242667pt;}
.y6e{bottom:382.301893pt;}
.yde{bottom:384.737893pt;}
.y32{bottom:388.134667pt;}
.yb3{bottom:389.608560pt;}
.y1c{bottom:389.854667pt;}
.y6d{bottom:396.913893pt;}
.yb2{bottom:404.220560pt;}
.y31{bottom:408.504000pt;}
.y6c{bottom:411.525893pt;}
.y1b{bottom:411.944000pt;}
.yb1{bottom:418.832560pt;}
.ydd{bottom:419.237893pt;}
.y6b{bottom:426.137893pt;}
.yb0{bottom:433.443227pt;}
.ydc{bottom:433.849893pt;}
.y6a{bottom:440.748560pt;}
.y8f{bottom:440.749893pt;}
.y30{bottom:442.453333pt;}
.ydb{bottom:448.460560pt;}
.y1a{bottom:449.586667pt;}
.y69{bottom:455.360560pt;}
.y8e{bottom:455.361893pt;}
.yaf{bottom:456.220560pt;}
.y2f{bottom:457.065333pt;}
.yda{bottom:463.072560pt;}
.y19{bottom:464.198667pt;}
.y68{bottom:469.972560pt;}
.yae{bottom:470.832560pt;}
.y2e{bottom:471.677333pt;}
.yf2{bottom:477.279227pt;}
.yd9{bottom:477.684560pt;}
.y67{bottom:484.584560pt;}
.yad{bottom:485.444560pt;}
.y18{bottom:486.288000pt;}
.y2d{bottom:486.289333pt;}
.yf1{bottom:491.891227pt;}
.yd8{bottom:492.296560pt;}
.y66{bottom:499.196560pt;}
.yac{bottom:500.056560pt;}
.yf0{bottom:506.503227pt;}
.yd7{bottom:506.908560pt;}
.yab{bottom:514.668560pt;}
.y65{bottom:521.113893pt;}
.y8d{bottom:521.115227pt;}
.yd6{bottom:521.520560pt;}
.yaa{bottom:529.280560pt;}
.y64{bottom:535.725893pt;}
.yef{bottom:535.727227pt;}
.yd5{bottom:536.132560pt;}
.ya9{bottom:543.892560pt;}
.y17{bottom:546.064000pt;}
.y63{bottom:550.337893pt;}
.yd4{bottom:550.744560pt;}
.y8c{bottom:557.644560pt;}
.y16{bottom:560.676000pt;}
.y62{bottom:564.949893pt;}
.yd3{bottom:565.356560pt;}
.ya8{bottom:566.671227pt;}
.y8b{bottom:572.256560pt;}
.y15{bottom:575.288000pt;}
.y61{bottom:579.561893pt;}
.yd2{bottom:579.968560pt;}
.y8a{bottom:586.868560pt;}
.y14{bottom:589.900000pt;}
.y60{bottom:594.173893pt;}
.yd1{bottom:594.579227pt;}
.y89{bottom:601.480560pt;}
.y13{bottom:604.512000pt;}
.ya7{bottom:608.785893pt;}
.yd0{bottom:609.191227pt;}
.y5f{bottom:616.092560pt;}
.y12{bottom:619.124000pt;}
.ya6{bottom:623.397893pt;}
.ycf{bottom:629.892560pt;}
.y88{bottom:630.704560pt;}
.y11{bottom:633.736000pt;}
.ya5{bottom:638.009893pt;}
.y87{bottom:645.316560pt;}
.y10{bottom:648.348000pt;}
.y5e{bottom:652.621893pt;}
.y86{bottom:659.928560pt;}
.yf{bottom:662.960000pt;}
.yce{bottom:664.392560pt;}
.y5d{bottom:667.233893pt;}
.y85{bottom:674.540560pt;}
.ye{bottom:677.570667pt;}
.ycd{bottom:679.004560pt;}
.y5c{bottom:681.845893pt;}
.y84{bottom:689.151227pt;}
.yd{bottom:692.182667pt;}
.ycc{bottom:693.616560pt;}
.y5b{bottom:696.457893pt;}
.y83{bottom:703.763227pt;}
.yc{bottom:706.794667pt;}
.ycb{bottom:708.228560pt;}
.y5a{bottom:711.069893pt;}
.y82{bottom:718.375227pt;}
.yb{bottom:721.406667pt;}
.yca{bottom:722.840560pt;}
.y59{bottom:725.681893pt;}
.y81{bottom:732.987227pt;}
.ya{bottom:736.018667pt;}
.yc9{bottom:737.452560pt;}
.ya4{bottom:740.292560pt;}
.y58{bottom:740.293893pt;}
.y80{bottom:747.599227pt;}
.y9{bottom:750.630667pt;}
.yc8{bottom:752.063227pt;}
.ya3{bottom:754.904560pt;}
.y57{bottom:754.905893pt;}
.y7f{bottom:762.211227pt;}
.yc7{bottom:766.675227pt;}
.y56{bottom:769.516560pt;}
.y7e{bottom:776.823227pt;}
.yc6{bottom:781.287227pt;}
.ya2{bottom:784.128560pt;}
.y55{bottom:791.435227pt;}
.yc5{bottom:795.899227pt;}
.ya1{bottom:798.740560pt;}
.y54{bottom:806.047227pt;}
.y8{bottom:807.490667pt;}
.yc4{bottom:810.511227pt;}
.ya0{bottom:813.352560pt;}
.y53{bottom:820.657893pt;}
.y7d{bottom:820.659227pt;}
.y7{bottom:820.774667pt;}
.yc3{bottom:825.123227pt;}
.y9f{bottom:827.964560pt;}
.y6{bottom:834.058667pt;}
.y52{bottom:835.269893pt;}
.y9e{bottom:842.576560pt;}
.yc2{bottom:845.824560pt;}
.y5{bottom:849.362667pt;}
.y51{bottom:849.881893pt;}
.y9d{bottom:857.188560pt;}
.y4{bottom:863.974667pt;}
.y50{bottom:864.493893pt;}
.y9c{bottom:871.800560pt;}
.y4f{bottom:879.105893pt;}
.yc1{bottom:880.324560pt;}
.y9b{bottom:886.411227pt;}
.y4e{bottom:893.717893pt;}
.yc0{bottom:894.935227pt;}
.y9a{bottom:901.023227pt;}
.yee{bottom:908.329893pt;}
.ybf{bottom:909.547227pt;}
.y4d{bottom:915.635227pt;}
.yed{bottom:922.941893pt;}
.ybe{bottom:924.159227pt;}
.y3{bottom:928.454667pt;}
.y4c{bottom:930.247227pt;}
.yec{bottom:937.553893pt;}
.ybd{bottom:938.771227pt;}
.y4b{bottom:944.859227pt;}
.y4a{bottom:959.471227pt;}
.y49{bottom:974.083227pt;}
.y48{bottom:988.695227pt;}
.y2{bottom:1001.925333pt;}
.y1{bottom:1015.209333pt;}
.y47{bottom:1015.261893pt;}
.hb{height:18.984060pt;}
.hf{height:28.373675pt;}
.h5{height:28.375573pt;}
.h7{height:32.803605pt;}
.h6{height:33.090517pt;}
.he{height:33.091994pt;}
.h2{height:37.830933pt;}
.hc{height:37.831408pt;}
.h8{height:42.558613pt;}
.hd{height:42.560512pt;}
.h9{height:50.062500pt;}
.h10{height:52.699179pt;}
.h4{height:53.417920pt;}
.h3{height:63.534827pt;}
.ha{height:1122.512525pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.225742pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:56.000000pt;}
.x1{left:61.806667pt;}
.x9{left:74.093333pt;}
.x8{left:93.686667pt;}
.x2{left:134.822667pt;}
.x12{left:162.878573pt;}
.x3{left:282.084000pt;}
.x11{left:285.909867pt;}
.x4{left:306.670667pt;}
.x6{left:311.160000pt;}
.x7{left:316.861333pt;}
.x5{left:326.733333pt;}
.xa{left:412.492000pt;}
.xb{left:424.778667pt;}
.x10{left:435.758573pt;}
.xe{left:575.014373pt;}
.xf{left:657.915907pt;}
.xd{left:712.530156pt;}
}




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