
    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_16a2103bf13de5eda8c78107.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_a57a6ae3dfe8f29a7f2f29c2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ef5d46141427e721ce41aeda.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.863770;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_58a2d9852bc0cbb2ed94283f.woff2')format("woff");}.ff4{font-family:ff4;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.456000px;}
.ls3e{letter-spacing:-4.227840px;}
.ls5{letter-spacing:-2.161440px;}
.ls2f{letter-spacing:-1.836000px;}
.ls24{letter-spacing:-1.442880px;}
.ls34{letter-spacing:-1.347840px;}
.lsb{letter-spacing:-1.224000px;}
.ls20{letter-spacing:-1.124640px;}
.ls11{letter-spacing:-0.792000px;}
.ls1d{letter-spacing:-0.766080px;}
.ls9{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.348480px;}
.ls29{letter-spacing:-0.336960px;}
.ls15{letter-spacing:-0.324000px;}
.ls18{letter-spacing:-0.312480px;}
.ls1f{letter-spacing:-0.306720px;}
.ls3c{letter-spacing:-0.299520px;}
.ls31{letter-spacing:-0.287280px;}
.ls25{letter-spacing:-0.264960px;}
.ls10{letter-spacing:-0.264240px;}
.ls38{letter-spacing:-0.246240px;}
.ls14{letter-spacing:-0.240480px;}
.ls3{letter-spacing:-0.227520px;}
.lsa{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.174240px;}
.ls35{letter-spacing:-0.149760px;}
.ls2c{letter-spacing:-0.131760px;}
.ls23{letter-spacing:-0.120240px;}
.ls32{letter-spacing:-0.108000px;}
.ls1a{letter-spacing:-0.095760px;}
.ls26{letter-spacing:-0.066240px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.095760px;}
.ls21{letter-spacing:0.102240px;}
.ls6{letter-spacing:0.108000px;}
.ls3f{letter-spacing:0.113760px;}
.ls28{letter-spacing:0.120240px;}
.ls30{letter-spacing:0.126000px;}
.ls22{letter-spacing:0.132480px;}
.ls1b{letter-spacing:0.144000px;}
.ls3d{letter-spacing:0.149760px;}
.ls3b{letter-spacing:0.155520px;}
.ls17{letter-spacing:0.156240px;}
.ls2d{letter-spacing:0.191520px;}
.ls36{letter-spacing:0.196992px;}
.ls8{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.227520px;}
.ls0{letter-spacing:0.240480px;}
.ls37{letter-spacing:0.246240px;}
.ls2e{letter-spacing:0.263520px;}
.ls1{letter-spacing:0.264240px;}
.lse{letter-spacing:0.288000px;}
.ls33{letter-spacing:0.299520px;}
.ls1e{letter-spacing:0.306720px;}
.lsf{letter-spacing:0.348480px;}
.lsc{letter-spacing:0.360000px;}
.ls40{letter-spacing:0.449208px;}
.ls39{letter-spacing:0.748800px;}
.ls16{letter-spacing:0.756000px;}
.ls27{letter-spacing:12.046320px;}
.ls3a{letter-spacing:15.240960px;}
.lsd{letter-spacing:18.144000px;}
.ls2b{letter-spacing:27.540000px;}
.ls2a{letter-spacing:33.707520px;}
.ls41{letter-spacing:119.916000px;}
.ls19{letter-spacing:2154.888000px;}
.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;}
}
.ws5{word-spacing:-59.982480px;}
.ws51{word-spacing:-59.454000px;}
.ws62{word-spacing:-55.896480px;}
.ws6d{word-spacing:-55.490400px;}
.ws63{word-spacing:-55.404000px;}
.ws1b{word-spacing:-39.726720px;}
.ws19{word-spacing:-39.204000px;}
.ws60{word-spacing:-34.145280px;}
.ws66{word-spacing:-33.995520px;}
.ws65{word-spacing:-33.696000px;}
.ws5f{word-spacing:-32.497920px;}
.ws54{word-spacing:-30.041280px;}
.ws52{word-spacing:-29.646000px;}
.ws0{word-spacing:-27.414720px;}
.ws75{word-spacing:-27.174240px;}
.ws41{word-spacing:-26.933760px;}
.ws6e{word-spacing:-25.823520px;}
.ws40{word-spacing:-25.731360px;}
.ws6{word-spacing:-25.482240px;}
.ws10{word-spacing:-24.516000px;}
.ws24{word-spacing:-24.084000px;}
.ws7{word-spacing:-23.548320px;}
.ws3c{word-spacing:-23.412960px;}
.ws3b{word-spacing:-23.208480px;}
.ws55{word-spacing:-22.572000px;}
.ws3a{word-spacing:-21.981600px;}
.ws53{word-spacing:-21.833280px;}
.ws39{word-spacing:-21.737520px;}
.ws56{word-spacing:-21.546000px;}
.ws38{word-spacing:-20.875680px;}
.ws4c{word-spacing:-18.701280px;}
.ws67{word-spacing:-17.729280px;}
.ws18{word-spacing:-16.632000px;}
.ws68{word-spacing:-16.488000px;}
.ws1a{word-spacing:-16.344000px;}
.ws6f{word-spacing:-16.272000px;}
.wse{word-spacing:-15.912000px;}
.ws17{word-spacing:-15.480000px;}
.wsf{word-spacing:-15.048000px;}
.ws43{word-spacing:-14.970240px;}
.ws42{word-spacing:-14.705280px;}
.ws2b{word-spacing:-2.645280px;}
.ws3f{word-spacing:-2.556000px;}
.ws73{word-spacing:-2.249280px;}
.ws2e{word-spacing:-2.187360px;}
.ws35{word-spacing:-1.944000px;}
.ws74{word-spacing:-1.840320px;}
.ws48{word-spacing:-1.722240px;}
.ws25{word-spacing:-1.585440px;}
.ws20{word-spacing:-1.568160px;}
.ws1e{word-spacing:-1.512000px;}
.ws4e{word-spacing:-1.442880px;}
.ws2c{word-spacing:-1.406160px;}
.ws12{word-spacing:-1.224000px;}
.ws4d{word-spacing:-1.202400px;}
.ws46{word-spacing:-1.192320px;}
.ws3e{word-spacing:-1.124640px;}
.ws2f{word-spacing:-1.093680px;}
.ws1{word-spacing:-1.056960px;}
.ws26{word-spacing:-0.961920px;}
.ws30{word-spacing:-0.937440px;}
.ws15{word-spacing:-0.936000px;}
.ws70{word-spacing:-0.864000px;}
.ws1f{word-spacing:-0.792000px;}
.ws2d{word-spacing:-0.781200px;}
.ws27{word-spacing:-0.756000px;}
.ws3{word-spacing:-0.721440px;}
.wsd{word-spacing:-0.682560px;}
.ws57{word-spacing:-0.670320px;}
.ws5e{word-spacing:-0.540000px;}
.ws47{word-spacing:-0.529920px;}
.ws3d{word-spacing:-0.511200px;}
.ws1d{word-spacing:-0.504000px;}
.ws4{word-spacing:-0.480960px;}
.ws6a{word-spacing:-0.466560px;}
.ws44{word-spacing:-0.360720px;}
.ws16{word-spacing:-0.360000px;}
.ws29{word-spacing:-0.324000px;}
.ws11{word-spacing:-0.264240px;}
.ws64{word-spacing:-0.246240px;}
.ws5a{word-spacing:-0.240480px;}
.wsa{word-spacing:-0.227520px;}
.ws21{word-spacing:-0.216000px;}
.ws59{word-spacing:-0.191520px;}
.ws5c{word-spacing:-0.126000px;}
.ws50{word-spacing:-0.120240px;}
.ws72{word-spacing:-0.108000px;}
.ws36{word-spacing:-0.095760px;}
.ws2{word-spacing:0.000000px;}
.ws4b{word-spacing:0.066240px;}
.ws13{word-spacing:0.072000px;}
.ws31{word-spacing:0.095760px;}
.ws45{word-spacing:0.120240px;}
.ws61{word-spacing:0.149760px;}
.ws22{word-spacing:0.174240px;}
.ws49{word-spacing:0.198720px;}
.ws34{word-spacing:0.216000px;}
.ws9{word-spacing:0.227520px;}
.ws6b{word-spacing:0.233280px;}
.ws76{word-spacing:0.240480px;}
.ws1c{word-spacing:0.264240px;}
.ws2a{word-spacing:0.324000px;}
.ws4a{word-spacing:0.397440px;}
.ws28{word-spacing:0.432000px;}
.ws8{word-spacing:0.455040px;}
.ws5b{word-spacing:0.478800px;}
.ws4f{word-spacing:0.480960px;}
.ws14{word-spacing:0.504000px;}
.ws23{word-spacing:0.522720px;}
.ws58{word-spacing:0.574560px;}
.ws6c{word-spacing:0.648000px;}
.wsc{word-spacing:0.682560px;}
.ws32{word-spacing:0.766080px;}
.ws71{word-spacing:0.864000px;}
.wsb{word-spacing:0.910080px;}
.ws5d{word-spacing:0.957600px;}
.ws69{word-spacing:1.048320px;}
.ws78{word-spacing:1.202400px;}
.ws77{word-spacing:1.322640px;}
.ws37{word-spacing:1.532160px;}
.ws33{word-spacing:1.584000px;}
._a{margin-left:-23.834448px;}
._9{margin-left:-15.255432px;}
._8{margin-left:-13.099032px;}
._7{margin-left:-11.069208px;}
._6{margin-left:-9.881208px;}
._b{margin-left:-8.839152px;}
._c{margin-left:-7.666992px;}
._0{margin-left:-5.390496px;}
._5{margin-left:-4.083192px;}
._1{margin-left:-2.488968px;}
._2{margin-left:-1.058112px;}
._3{width:1.786176px;}
._4{width:2.991744px;}
._e{width:4.148568px;}
._d{width:5.847840px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fsf{font-size:77.760000px;}
.fsa{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs8{font-size:102.240000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:113.760000px;}
.fs1{font-size:120.240000px;}
.fsc{font-size:126.000000px;}
.fsb{font-size:131.760000px;}
.fsd{font-size:149.760000px;}
.fs6{font-size:156.240000px;}
.fs5{font-size:174.240000px;}
.fse{font-size:246.240000px;}
.fs0{font-size:264.240000px;}
.y0{bottom:0.000000px;}
.y77{bottom:15.667050px;}
.y80{bottom:26.794530px;}
.y10b{bottom:27.094500px;}
.ybb{bottom:29.522940px;}
.y11d{bottom:30.333600px;}
.y7e{bottom:51.001800px;}
.y10a{bottom:51.214500px;}
.y11c{bottom:54.453600px;}
.y7f{bottom:55.594350px;}
.yb6{bottom:55.976640px;}
.yba{bottom:60.309780px;}
.y15{bottom:75.258330px;}
.yb5{bottom:82.262760px;}
.y76{bottom:83.658000px;}
.y11b{bottom:86.853600px;}
.yb9{bottom:91.096620px;}
.y11e{bottom:92.103750px;}
.y109{bottom:102.243750px;}
.y33{bottom:103.484400px;}
.y75{bottom:105.258000px;}
.y14{bottom:106.570770px;}
.y60{bottom:109.791570px;}
.y9f{bottom:110.754180px;}
.ye5{bottom:111.563850px;}
.yb4{bottom:113.049600px;}
.y35{bottom:113.682450px;}
.yb8{bottom:117.550320px;}
.y11a{bottom:119.253600px;}
.ya6{bottom:119.576820px;}
.yf2{bottom:121.811940px;}
.y32{bottom:123.284400px;}
.y74{bottom:126.858000px;}
.ye6{bottom:127.490100px;}
.ye4{bottom:131.363850px;}
.y13{bottom:137.883210px;}
.y9e{bottom:138.665700px;}
.ya5{bottom:140.823300px;}
.y31{bottom:143.084400px;}
.y49{bottom:143.105550px;}
.yb3{bottom:143.836440px;}
.y73{bottom:148.458000px;}
.yf0{bottom:150.627210px;}
.y5f{bottom:152.640390px;}
.ye3{bottom:154.403850px;}
.yae{bottom:156.986160px;}
.y34{bottom:161.380650px;}
.ya4{bottom:161.887620px;}
.y30{bottom:166.124400px;}
.y12{bottom:169.195650px;}
.y72{bottom:170.058000px;}
.y51{bottom:171.009000px;}
.y48{bottom:172.805550px;}
.yb2{bottom:174.623280px;}
.y108{bottom:175.969500px;}
.y107{bottom:181.020750px;}
.yef{bottom:181.414050px;}
.y96{bottom:181.855200px;}
.ya3{bottom:183.134100px;}
.yad{bottom:183.272280px;}
.y2f{bottom:185.924400px;}
.yd6{bottom:186.093030px;}
.yf1{bottom:189.281700px;}
.y134{bottom:193.460970px;}
.y5e{bottom:195.489210px;}
.y1f{bottom:196.621350px;}
.y1b{bottom:197.192100px;}
.y50{bottom:200.520000px;}
.yb1{bottom:200.909400px;}
.y7b{bottom:202.777800px;}
.y95{bottom:204.895200px;}
.y10d{bottom:209.883150px;}
.yac{bottom:211.353900px;}
.yd5{bottom:212.546730px;}
.y119{bottom:213.646950px;}
.y47{bottom:214.034550px;}
.ya2{bottom:217.694100px;}
.y1a{bottom:221.312100px;}
.y133{bottom:221.551410px;}
.y13e{bottom:227.520000px;}
.y94{bottom:228.115200px;}
.y7d{bottom:228.193800px;}
.ye1{bottom:229.320750px;}
.y4{bottom:231.127560px;}
.y8b{bottom:231.610950px;}
.ye2{bottom:235.335600px;}
.y5d{bottom:238.338030px;}
.y9d{bottom:238.430640px;}
.yd4{bottom:238.832850px;}
.y118{bottom:243.346950px;}
.y46{bottom:243.734550px;}
.y105{bottom:247.187670px;}
.y132{bottom:249.641850px;}
.ye0{bottom:252.360750px;}
.y106{bottom:252.845550px;}
.y8a{bottom:253.210950px;}
.y71{bottom:253.755600px;}
.yb7{bottom:259.154100px;}
.y93{bottom:259.615380px;}
.yb0{bottom:260.173500px;}
.y41{bottom:261.221250px;}
.y9c{bottom:266.521080px;}
.y104{bottom:268.610550px;}
.y13d{bottom:270.720000px;}
.y117{bottom:273.046950px;}
.y3{bottom:274.323780px;}
.y89{bottom:274.810950px;}
.y70{bottom:275.355600px;}
.ycf{bottom:280.846350px;}
.y5c{bottom:281.186850px;}
.y45{bottom:284.963550px;}
.y92{bottom:286.069080px;}
.y11{bottom:287.252880px;}
.y131{bottom:288.518610px;}
.y9b{bottom:294.432600px;}
.y6f{bottom:296.955600px;}
.y2c{bottom:297.589800px;}
.y127{bottom:300.840750px;}
.y40{bottom:302.450250px;}
.yee{bottom:302.696490px;}
.y8c{bottom:307.732950px;}
.y3b{bottom:308.407950px;}
.y2e{bottom:309.377700px;}
.yab{bottom:310.996080px;}
.y91{bottom:312.355200px;}
.y13c{bottom:313.920000px;}
.y116{bottom:314.275950px;}
.y44{bottom:314.663550px;}
.y130{bottom:316.430130px;}
.y4f{bottom:316.512750px;}
.y2{bottom:317.520000px;}
.y6e{bottom:318.555600px;}
.y10{bottom:318.565320px;}
.y2b{bottom:320.629800px;}
.y102{bottom:322.252320px;}
.y103{bottom:329.721450px;}
.y126{bottom:330.351750px;}
.yec{bottom:331.511910px;}
.y3f{bottom:332.150250px;}
.ya1{bottom:335.418150px;}
.yde{bottom:337.166250px;}
.yaa{bottom:337.995000px;}
.y3a{bottom:338.107950px;}
.y6d{bottom:340.155600px;}
.y2a{bottom:340.429800px;}
.yd3{bottom:341.723880px;}
.ydf{bottom:343.181400px;}
.y115{bottom:343.786950px;}
.y12f{bottom:344.520570px;}
.y4e{bottom:346.212750px;}
.y101{bottom:347.271600px;}
.yf{bottom:349.877760px;}
.y13b{bottom:349.920000px;}
.yc4{bottom:355.374420px;}
.y43{bottom:355.703550px;}
.y2d{bottom:357.075900px;}
.y1d{bottom:358.784850px;}
.y125{bottom:360.051750px;}
.ydd{bottom:360.206250px;}
.y29{bottom:360.229800px;}
.yeb{bottom:362.298750px;}
.yd2{bottom:368.010000px;}
.ycd{bottom:369.609930px;}
.yed{bottom:370.166250px;}
.y12e{bottom:372.611010px;}
.y3e{bottom:373.379250px;}
.y114{bottom:373.486950px;}
.y7a{bottom:375.397800px;}
.y4d{bottom:375.723750px;}
.ya9{bottom:376.335000px;}
.y39{bottom:379.336950px;}
.y9a{bottom:380.191440px;}
.ye{bottom:381.190200px;}
.y79{bottom:381.373800px;}
.yc3{bottom:381.660540px;}
.y1c{bottom:382.904850px;}
.y28{bottom:383.269800px;}
.y13a{bottom:385.920000px;}
.y124{bottom:389.751750px;}
.y19{bottom:392.804400px;}
.ycc{bottom:395.896050px;}
.y57{bottom:397.499670px;}
.yff{bottom:399.128070px;}
.y88{bottom:401.286600px;}
.y3d{bottom:402.890250px;}
.y100{bottom:406.597350px;}
.y67{bottom:406.899900px;}
.y99{bottom:408.281880px;}
.y38{bottom:409.036950px;}
.y12d{bottom:411.487770px;}
.yc2{bottom:412.447380px;}
.y113{bottom:414.715950px;}
.y18{bottom:416.924400px;}
.y5b{bottom:418.928490px;}
.y42{bottom:423.064350px;}
.ycb{bottom:423.067950px;}
.yfe{bottom:424.147350px;}
.y139{bottom:429.120000px;}
.y6c{bottom:429.636750px;}
.y123{bottom:430.980750px;}
.ydb{bottom:433.510650px;}
.y90{bottom:433.813860px;}
.y98{bottom:436.193400px;}
.y86{bottom:436.317600px;}
.y12c{bottom:439.399290px;}
.y56{bottom:440.348490px;}
.yc1{bottom:440.888100px;}
.y112{bottom:444.415950px;}
.y7c{bottom:449.413800px;}
.y1{bottom:449.422500px;}
.y37{bottom:450.076950px;}
.ydc{bottom:451.026900px;}
.y6b{bottom:451.236750px;}
.yca{bottom:456.369930px;}
.yda{bottom:456.550650px;}
.y8f{bottom:460.099980px;}
.y122{bottom:460.680750px;}
.y5a{bottom:461.777310px;}
.y138{bottom:465.120000px;}
.y85{bottom:466.377600px;}
.yfc{bottom:467.547150px;}
.y3c{bottom:470.251200px;}
.y6a{bottom:472.836750px;}
.y4c{bottom:476.881650px;}
.yc0{bottom:477.787380px;}
.y12b{bottom:478.454970px;}
.yd9{bottom:479.590650px;}
.y25{bottom:481.783800px;}
.yc9{bottom:482.656050px;}
.y55{bottom:483.197310px;}
.yfd{bottom:483.473400px;}
.ya{bottom:483.591240px;}
.yd1{bottom:484.082580px;}
.y111{bottom:485.644950px;}
.y8e{bottom:486.553680px;}
.yfb{bottom:487.347150px;}
.y84{bottom:487.977600px;}
.ya8{bottom:489.083880px;}
.y69{bottom:494.436750px;}
.ye9{bottom:497.180040px;}
.y121{bottom:501.909750px;}
.y59{bottom:504.626130px;}
.y24{bottom:504.823800px;}
.ya0{bottom:504.828300px;}
.y27{bottom:505.073100px;}
.ybf{bottom:506.228100px;}
.y12a{bottom:506.366490px;}
.y4b{bottom:506.581650px;}
.y137{bottom:508.320000px;}
.y66{bottom:509.283900px;}
.y83{bottom:509.577600px;}
.yc8{bottom:509.827950px;}
.yd0{bottom:510.368700px;}
.yfa{bottom:510.387150px;}
.y8d{bottom:512.839800px;}
.yd{bottom:514.903620px;}
.y9{bottom:514.903680px;}
.y110{bottom:515.344950px;}
.yea{bottom:517.267350px;}
.y36{bottom:517.437900px;}
.ya7{bottom:522.210000px;}
.y23{bottom:524.623800px;}
.y54{bottom:526.046130px;}
.ye8{bottom:527.775360px;}
.y65{bottom:530.883900px;}
.y82{bottom:531.177600px;}
.y120{bottom:531.609750px;}
.y129{bottom:534.456930px;}
.y4a{bottom:536.092650px;}
.y22{bottom:544.423800px;}
.y1e{bottom:544.497600px;}
.y10f{bottom:545.044950px;}
.yc{bottom:546.216060px;}
.y8{bottom:546.216120px;}
.y58{bottom:547.474950px;}
.y97{bottom:549.941550px;}
.y136{bottom:551.520000px;}
.y64{bottom:552.483900px;}
.y26{bottom:552.771300px;}
.y81{bottom:552.777600px;}
.yf8{bottom:554.334300px;}
.ye7{bottom:558.562200px;}
.yd8{bottom:558.872700px;}
.yf9{bottom:560.349450px;}
.y11f{bottom:561.120750px;}
.y128{bottom:562.368450px;}
.yd7{bottom:564.358800px;}
.y21{bottom:567.463800px;}
.y53{bottom:568.894950px;}
.y10e{bottom:574.555950px;}
.yc7{bottom:577.036410px;}
.yf7{bottom:577.374300px;}
.yb{bottom:577.528500px;}
.y7{bottom:577.528560px;}
.ybe{bottom:577.585860px;}
.y87{bottom:586.797600px;}
.y135{bottom:587.520000px;}
.y17{bottom:588.416700px;}
.y20{bottom:590.503800px;}
.y68{bottom:602.217900px;}
.y78{bottom:602.503800px;}
.yc6{bottom:603.322530px;}
.ybd{bottom:603.871980px;}
.y6{bottom:608.841000px;}
.y16{bottom:612.536700px;}
.yf5{bottom:631.210350px;}
.yc5{bottom:631.404150px;}
.ybc{bottom:631.953600px;}
.y63{bottom:634.080030px;}
.yf6{bottom:637.225500px;}
.yf4{bottom:654.250350px;}
.y62{bottom:662.879850px;}
.y52{bottom:671.487000px;}
.yce{bottom:673.168350px;}
.y5{bottom:687.922500px;}
.y10c{bottom:700.966800px;}
.yf3{bottom:709.471800px;}
.yaf{bottom:718.802850px;}
.y61{bottom:723.594300px;}
.hb{height:47.545312px;}
.h5{height:51.679688px;}
.h11{height:55.814063px;}
.hc{height:60.465234px;}
.h9{height:64.135687px;}
.h8{height:68.733984px;}
.ha{height:73.385156px;}
.h4{height:77.519531px;}
.h3{height:81.653906px;}
.h2{height:86.305078px;}
.he{height:90.439453px;}
.hd{height:94.573828px;}
.hf{height:107.493750px;}
.h7{height:112.144922px;}
.h6{height:125.064844px;}
.h12{height:125.406562px;}
.h10{height:176.744531px;}
.h1{height:189.664453px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x5a{left:31.287150px;}
.x5f{left:32.965950px;}
.x5b{left:51.636150px;}
.x60{left:53.304690px;}
.x2a{left:56.833350px;}
.x1b{left:59.476500px;}
.x1a{left:62.176500px;}
.x7e{left:64.800000px;}
.x6e{left:70.623750px;}
.x6d{left:75.300000px;}
.x7b{left:76.821300px;}
.x77{left:79.815000px;}
.x6f{left:83.403750px;}
.x27{left:84.784860px;}
.x73{left:93.112500px;}
.x24{left:95.186100px;}
.x26{left:100.422900px;}
.x74{left:101.730900px;}
.x7f{left:105.300000px;}
.x79{left:107.667900px;}
.x2b{left:111.196230px;}
.x33{left:113.775390px;}
.x25{left:114.788100px;}
.x41{left:117.051000px;}
.x39{left:118.440300px;}
.x76{left:125.898750px;}
.x22{left:135.753450px;}
.x3a{left:139.493640px;}
.x42{left:142.565700px;}
.x5e{left:148.957200px;}
.x44{left:151.079700px;}
.x34{left:153.733770px;}
.x43{left:159.575700px;}
.x78{left:161.175000px;}
.x71{left:169.263750px;}
.x6c{left:181.323750px;}
.x3b{left:188.084280px;}
.x7{left:190.560720px;}
.xe{left:193.815420px;}
.x32{left:198.184050px;}
.x3c{left:200.700660px;}
.x59{left:203.123550px;}
.xf{left:213.069300px;}
.xd{left:219.183900px;}
.x57{left:221.118750px;}
.x10{left:222.596700px;}
.x19{left:224.715000px;}
.x31{left:230.107950px;}
.x6{left:232.140000px;}
.x8{left:233.590440px;}
.x35{left:239.782950px;}
.x58{left:243.025350px;}
.x2c{left:245.415000px;}
.x54{left:250.497600px;}
.x30{left:251.921850px;}
.x75{left:261.970650px;}
.x56{left:263.080200px;}
.x55{left:274.938750px;}
.x9{left:277.331160px;}
.x4d{left:290.235000px;}
.x1e{left:298.684800px;}
.x53{left:305.355000px;}
.x16{left:309.453600px;}
.x28{left:311.548200px;}
.x1c{left:314.660400px;}
.x17{left:321.881880px;}
.x29{left:325.048200px;}
.x23{left:327.774150px;}
.x2f{left:337.758750px;}
.x1d{left:342.244800px;}
.x1{left:347.475000px;}
.x15{left:352.113600px;}
.x2d{left:362.375850px;}
.x5{left:369.978750px;}
.x4b{left:373.575000px;}
.x7d{left:385.458750px;}
.x40{left:397.515000px;}
.x21{left:406.216950px;}
.x6b{left:409.320000px;}
.x72{left:411.120000px;}
.x18{left:412.235760px;}
.x46{left:414.721950px;}
.x70{left:422.820000px;}
.x4{left:429.185820px;}
.x3{left:443.945280px;}
.x65{left:465.751200px;}
.x47{left:487.615650px;}
.x66{left:491.265900px;}
.x2{left:508.935000px;}
.x4a{left:516.771300px;}
.x4c{left:517.843950px;}
.x6a{left:520.847880px;}
.x48{left:525.285300px;}
.x52{left:533.658450px;}
.x4e{left:542.312100px;}
.x69{left:548.570400px;}
.x50{left:556.532460px;}
.x4f{left:561.200760px;}
.x3f{left:571.644510px;}
.xb{left:574.311270px;}
.x3e{left:577.386330px;}
.x37{left:578.643120px;}
.x38{left:584.775540px;}
.x13{left:587.601030px;}
.x36{left:591.962580px;}
.x61{left:594.151650px;}
.x3d{left:595.939830px;}
.x64{left:598.910760px;}
.x11{left:601.479750px;}
.x5d{left:604.368600px;}
.x62{left:606.032190px;}
.x14{left:612.258510px;}
.x12{left:616.951110px;}
.x67{left:638.937030px;}
.x68{left:640.541400px;}
.xa{left:656.559750px;}
.x63{left:660.399930px;}
.x2e{left:661.751850px;}
.x45{left:669.739650px;}
.x51{left:672.282360px;}
.xc{left:680.847510px;}
.x7a{left:687.507900px;}
.x7c{left:707.217300px;}
.x5c{left:739.479900px;}
.x49{left:746.415300px;}
.x1f{left:840.632700px;}
.x20{left:879.512550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:11.072000pt;}
.ls3e{letter-spacing:-3.758080pt;}
.ls5{letter-spacing:-1.921280pt;}
.ls2f{letter-spacing:-1.632000pt;}
.ls24{letter-spacing:-1.282560pt;}
.ls34{letter-spacing:-1.198080pt;}
.lsb{letter-spacing:-1.088000pt;}
.ls20{letter-spacing:-0.999680pt;}
.ls11{letter-spacing:-0.704000pt;}
.ls1d{letter-spacing:-0.680960pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.309760pt;}
.ls29{letter-spacing:-0.299520pt;}
.ls15{letter-spacing:-0.288000pt;}
.ls18{letter-spacing:-0.277760pt;}
.ls1f{letter-spacing:-0.272640pt;}
.ls3c{letter-spacing:-0.266240pt;}
.ls31{letter-spacing:-0.255360pt;}
.ls25{letter-spacing:-0.235520pt;}
.ls10{letter-spacing:-0.234880pt;}
.ls38{letter-spacing:-0.218880pt;}
.ls14{letter-spacing:-0.213760pt;}
.ls3{letter-spacing:-0.202240pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.154880pt;}
.ls35{letter-spacing:-0.133120pt;}
.ls2c{letter-spacing:-0.117120pt;}
.ls23{letter-spacing:-0.106880pt;}
.ls32{letter-spacing:-0.096000pt;}
.ls1a{letter-spacing:-0.085120pt;}
.ls26{letter-spacing:-0.058880pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.085120pt;}
.ls21{letter-spacing:0.090880pt;}
.ls6{letter-spacing:0.096000pt;}
.ls3f{letter-spacing:0.101120pt;}
.ls28{letter-spacing:0.106880pt;}
.ls30{letter-spacing:0.112000pt;}
.ls22{letter-spacing:0.117760pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls3d{letter-spacing:0.133120pt;}
.ls3b{letter-spacing:0.138240pt;}
.ls17{letter-spacing:0.138880pt;}
.ls2d{letter-spacing:0.170240pt;}
.ls36{letter-spacing:0.175104pt;}
.ls8{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.202240pt;}
.ls0{letter-spacing:0.213760pt;}
.ls37{letter-spacing:0.218880pt;}
.ls2e{letter-spacing:0.234240pt;}
.ls1{letter-spacing:0.234880pt;}
.lse{letter-spacing:0.256000pt;}
.ls33{letter-spacing:0.266240pt;}
.ls1e{letter-spacing:0.272640pt;}
.lsf{letter-spacing:0.309760pt;}
.lsc{letter-spacing:0.320000pt;}
.ls40{letter-spacing:0.399296pt;}
.ls39{letter-spacing:0.665600pt;}
.ls16{letter-spacing:0.672000pt;}
.ls27{letter-spacing:10.707840pt;}
.ls3a{letter-spacing:13.547520pt;}
.lsd{letter-spacing:16.128000pt;}
.ls2b{letter-spacing:24.480000pt;}
.ls2a{letter-spacing:29.962240pt;}
.ls41{letter-spacing:106.592000pt;}
.ls19{letter-spacing:1915.456000pt;}
.ws5{word-spacing:-53.317760pt;}
.ws51{word-spacing:-52.848000pt;}
.ws62{word-spacing:-49.685760pt;}
.ws6d{word-spacing:-49.324800pt;}
.ws63{word-spacing:-49.248000pt;}
.ws1b{word-spacing:-35.312640pt;}
.ws19{word-spacing:-34.848000pt;}
.ws60{word-spacing:-30.351360pt;}
.ws66{word-spacing:-30.218240pt;}
.ws65{word-spacing:-29.952000pt;}
.ws5f{word-spacing:-28.887040pt;}
.ws54{word-spacing:-26.703360pt;}
.ws52{word-spacing:-26.352000pt;}
.ws0{word-spacing:-24.368640pt;}
.ws75{word-spacing:-24.154880pt;}
.ws41{word-spacing:-23.941120pt;}
.ws6e{word-spacing:-22.954240pt;}
.ws40{word-spacing:-22.872320pt;}
.ws6{word-spacing:-22.650880pt;}
.ws10{word-spacing:-21.792000pt;}
.ws24{word-spacing:-21.408000pt;}
.ws7{word-spacing:-20.931840pt;}
.ws3c{word-spacing:-20.811520pt;}
.ws3b{word-spacing:-20.629760pt;}
.ws55{word-spacing:-20.064000pt;}
.ws3a{word-spacing:-19.539200pt;}
.ws53{word-spacing:-19.407360pt;}
.ws39{word-spacing:-19.322240pt;}
.ws56{word-spacing:-19.152000pt;}
.ws38{word-spacing:-18.556160pt;}
.ws4c{word-spacing:-16.623360pt;}
.ws67{word-spacing:-15.759360pt;}
.ws18{word-spacing:-14.784000pt;}
.ws68{word-spacing:-14.656000pt;}
.ws1a{word-spacing:-14.528000pt;}
.ws6f{word-spacing:-14.464000pt;}
.wse{word-spacing:-14.144000pt;}
.ws17{word-spacing:-13.760000pt;}
.wsf{word-spacing:-13.376000pt;}
.ws43{word-spacing:-13.306880pt;}
.ws42{word-spacing:-13.071360pt;}
.ws2b{word-spacing:-2.351360pt;}
.ws3f{word-spacing:-2.272000pt;}
.ws73{word-spacing:-1.999360pt;}
.ws2e{word-spacing:-1.944320pt;}
.ws35{word-spacing:-1.728000pt;}
.ws74{word-spacing:-1.635840pt;}
.ws48{word-spacing:-1.530880pt;}
.ws25{word-spacing:-1.409280pt;}
.ws20{word-spacing:-1.393920pt;}
.ws1e{word-spacing:-1.344000pt;}
.ws4e{word-spacing:-1.282560pt;}
.ws2c{word-spacing:-1.249920pt;}
.ws12{word-spacing:-1.088000pt;}
.ws4d{word-spacing:-1.068800pt;}
.ws46{word-spacing:-1.059840pt;}
.ws3e{word-spacing:-0.999680pt;}
.ws2f{word-spacing:-0.972160pt;}
.ws1{word-spacing:-0.939520pt;}
.ws26{word-spacing:-0.855040pt;}
.ws30{word-spacing:-0.833280pt;}
.ws15{word-spacing:-0.832000pt;}
.ws70{word-spacing:-0.768000pt;}
.ws1f{word-spacing:-0.704000pt;}
.ws2d{word-spacing:-0.694400pt;}
.ws27{word-spacing:-0.672000pt;}
.ws3{word-spacing:-0.641280pt;}
.wsd{word-spacing:-0.606720pt;}
.ws57{word-spacing:-0.595840pt;}
.ws5e{word-spacing:-0.480000pt;}
.ws47{word-spacing:-0.471040pt;}
.ws3d{word-spacing:-0.454400pt;}
.ws1d{word-spacing:-0.448000pt;}
.ws4{word-spacing:-0.427520pt;}
.ws6a{word-spacing:-0.414720pt;}
.ws44{word-spacing:-0.320640pt;}
.ws16{word-spacing:-0.320000pt;}
.ws29{word-spacing:-0.288000pt;}
.ws11{word-spacing:-0.234880pt;}
.ws64{word-spacing:-0.218880pt;}
.ws5a{word-spacing:-0.213760pt;}
.wsa{word-spacing:-0.202240pt;}
.ws21{word-spacing:-0.192000pt;}
.ws59{word-spacing:-0.170240pt;}
.ws5c{word-spacing:-0.112000pt;}
.ws50{word-spacing:-0.106880pt;}
.ws72{word-spacing:-0.096000pt;}
.ws36{word-spacing:-0.085120pt;}
.ws2{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.058880pt;}
.ws13{word-spacing:0.064000pt;}
.ws31{word-spacing:0.085120pt;}
.ws45{word-spacing:0.106880pt;}
.ws61{word-spacing:0.133120pt;}
.ws22{word-spacing:0.154880pt;}
.ws49{word-spacing:0.176640pt;}
.ws34{word-spacing:0.192000pt;}
.ws9{word-spacing:0.202240pt;}
.ws6b{word-spacing:0.207360pt;}
.ws76{word-spacing:0.213760pt;}
.ws1c{word-spacing:0.234880pt;}
.ws2a{word-spacing:0.288000pt;}
.ws4a{word-spacing:0.353280pt;}
.ws28{word-spacing:0.384000pt;}
.ws8{word-spacing:0.404480pt;}
.ws5b{word-spacing:0.425600pt;}
.ws4f{word-spacing:0.427520pt;}
.ws14{word-spacing:0.448000pt;}
.ws23{word-spacing:0.464640pt;}
.ws58{word-spacing:0.510720pt;}
.ws6c{word-spacing:0.576000pt;}
.wsc{word-spacing:0.606720pt;}
.ws32{word-spacing:0.680960pt;}
.ws71{word-spacing:0.768000pt;}
.wsb{word-spacing:0.808960pt;}
.ws5d{word-spacing:0.851200pt;}
.ws69{word-spacing:0.931840pt;}
.ws78{word-spacing:1.068800pt;}
.ws77{word-spacing:1.175680pt;}
.ws37{word-spacing:1.361920pt;}
.ws33{word-spacing:1.408000pt;}
._a{margin-left:-21.186176pt;}
._9{margin-left:-13.560384pt;}
._8{margin-left:-11.643584pt;}
._7{margin-left:-9.839296pt;}
._6{margin-left:-8.783296pt;}
._b{margin-left:-7.857024pt;}
._c{margin-left:-6.815104pt;}
._0{margin-left:-4.791552pt;}
._5{margin-left:-3.629504pt;}
._1{margin-left:-2.212416pt;}
._2{margin-left:-0.940544pt;}
._3{width:1.587712pt;}
._4{width:2.659328pt;}
._e{width:3.687616pt;}
._d{width:5.198080pt;}
.fs9{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fsf{font-size:69.120000pt;}
.fsa{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs8{font-size:90.880000pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:101.120000pt;}
.fs1{font-size:106.880000pt;}
.fsc{font-size:112.000000pt;}
.fsb{font-size:117.120000pt;}
.fsd{font-size:133.120000pt;}
.fs6{font-size:138.880000pt;}
.fs5{font-size:154.880000pt;}
.fse{font-size:218.880000pt;}
.fs0{font-size:234.880000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:13.926267pt;}
.y80{bottom:23.817360pt;}
.y10b{bottom:24.084000pt;}
.ybb{bottom:26.242613pt;}
.y11d{bottom:26.963200pt;}
.y7e{bottom:45.334933pt;}
.y10a{bottom:45.524000pt;}
.y11c{bottom:48.403200pt;}
.y7f{bottom:49.417200pt;}
.yb6{bottom:49.757013pt;}
.yba{bottom:53.608693pt;}
.y15{bottom:66.896293pt;}
.yb5{bottom:73.122453pt;}
.y76{bottom:74.362667pt;}
.y11b{bottom:77.203200pt;}
.yb9{bottom:80.974773pt;}
.y11e{bottom:81.870000pt;}
.y109{bottom:90.883333pt;}
.y33{bottom:91.986133pt;}
.y75{bottom:93.562667pt;}
.y14{bottom:94.729573pt;}
.y60{bottom:97.592507pt;}
.y9f{bottom:98.448160pt;}
.ye5{bottom:99.167867pt;}
.yb4{bottom:100.488533pt;}
.y35{bottom:101.051067pt;}
.yb8{bottom:104.489173pt;}
.y11a{bottom:106.003200pt;}
.ya6{bottom:106.290507pt;}
.yf2{bottom:108.277280pt;}
.y32{bottom:109.586133pt;}
.y74{bottom:112.762667pt;}
.ye6{bottom:113.324533pt;}
.ye4{bottom:116.767867pt;}
.y13{bottom:122.562853pt;}
.y9e{bottom:123.258400pt;}
.ya5{bottom:125.176267pt;}
.y31{bottom:127.186133pt;}
.y49{bottom:127.204933pt;}
.yb3{bottom:127.854613pt;}
.y73{bottom:131.962667pt;}
.yf0{bottom:133.890853pt;}
.y5f{bottom:135.680347pt;}
.ye3{bottom:137.247867pt;}
.yae{bottom:139.543253pt;}
.y34{bottom:143.449467pt;}
.ya4{bottom:143.900107pt;}
.y30{bottom:147.666133pt;}
.y12{bottom:150.396133pt;}
.y72{bottom:151.162667pt;}
.y51{bottom:152.008000pt;}
.y48{bottom:153.604933pt;}
.yb2{bottom:155.220693pt;}
.y108{bottom:156.417333pt;}
.y107{bottom:160.907333pt;}
.yef{bottom:161.256933pt;}
.y96{bottom:161.649067pt;}
.ya3{bottom:162.785867pt;}
.yad{bottom:162.908693pt;}
.y2f{bottom:165.266133pt;}
.yd6{bottom:165.416027pt;}
.yf1{bottom:168.250400pt;}
.y134{bottom:171.965307pt;}
.y5e{bottom:173.768187pt;}
.y1f{bottom:174.774533pt;}
.y1b{bottom:175.281867pt;}
.y50{bottom:178.240000pt;}
.yb1{bottom:178.586133pt;}
.y7b{bottom:180.246933pt;}
.y95{bottom:182.129067pt;}
.y10d{bottom:186.562800pt;}
.yac{bottom:187.870133pt;}
.yd5{bottom:188.930427pt;}
.y119{bottom:189.908400pt;}
.y47{bottom:190.252933pt;}
.ya2{bottom:193.505867pt;}
.y1a{bottom:196.721867pt;}
.y133{bottom:196.934587pt;}
.y13e{bottom:202.240000pt;}
.y94{bottom:202.769067pt;}
.y7d{bottom:202.838933pt;}
.ye1{bottom:203.840667pt;}
.y4{bottom:205.446720pt;}
.y8b{bottom:205.876400pt;}
.ye2{bottom:209.187200pt;}
.y5d{bottom:211.856027pt;}
.y9d{bottom:211.938347pt;}
.yd4{bottom:212.295867pt;}
.y118{bottom:216.308400pt;}
.y46{bottom:216.652933pt;}
.y105{bottom:219.722373pt;}
.y132{bottom:221.903867pt;}
.ye0{bottom:224.320667pt;}
.y106{bottom:224.751600pt;}
.y8a{bottom:225.076400pt;}
.y71{bottom:225.560533pt;}
.yb7{bottom:230.359200pt;}
.y93{bottom:230.769227pt;}
.yb0{bottom:231.265333pt;}
.y41{bottom:232.196667pt;}
.y9c{bottom:236.907627pt;}
.y104{bottom:238.764933pt;}
.y13d{bottom:240.640000pt;}
.y117{bottom:242.708400pt;}
.y3{bottom:243.843360pt;}
.y89{bottom:244.276400pt;}
.y70{bottom:244.760533pt;}
.ycf{bottom:249.641200pt;}
.y5c{bottom:249.943867pt;}
.y45{bottom:253.300933pt;}
.y92{bottom:254.283627pt;}
.y11{bottom:255.335893pt;}
.y131{bottom:256.460987pt;}
.y9b{bottom:261.717867pt;}
.y6f{bottom:263.960533pt;}
.y2c{bottom:264.524267pt;}
.y127{bottom:267.414000pt;}
.y40{bottom:268.844667pt;}
.yee{bottom:269.063547pt;}
.y8c{bottom:273.540400pt;}
.y3b{bottom:274.140400pt;}
.y2e{bottom:275.002400pt;}
.yab{bottom:276.440960pt;}
.y91{bottom:277.649067pt;}
.y13c{bottom:279.040000pt;}
.y116{bottom:279.356400pt;}
.y44{bottom:279.700933pt;}
.y130{bottom:281.271227pt;}
.y4f{bottom:281.344667pt;}
.y2{bottom:282.240000pt;}
.y6e{bottom:283.160533pt;}
.y10{bottom:283.169173pt;}
.y2b{bottom:285.004267pt;}
.y102{bottom:286.446507pt;}
.y103{bottom:293.085733pt;}
.y126{bottom:293.646000pt;}
.yec{bottom:294.677253pt;}
.y3f{bottom:295.244667pt;}
.ya1{bottom:298.149467pt;}
.yde{bottom:299.703333pt;}
.yaa{bottom:300.440000pt;}
.y3a{bottom:300.540400pt;}
.y6d{bottom:302.360533pt;}
.y2a{bottom:302.604267pt;}
.yd3{bottom:303.754560pt;}
.ydf{bottom:305.050133pt;}
.y115{bottom:305.588400pt;}
.y12f{bottom:306.240507pt;}
.y4e{bottom:307.744667pt;}
.y101{bottom:308.685867pt;}
.yf{bottom:311.002453pt;}
.y13b{bottom:311.040000pt;}
.yc4{bottom:315.888373pt;}
.y43{bottom:316.180933pt;}
.y2d{bottom:317.400800pt;}
.y1d{bottom:318.919867pt;}
.y125{bottom:320.046000pt;}
.ydd{bottom:320.183333pt;}
.y29{bottom:320.204267pt;}
.yeb{bottom:322.043333pt;}
.yd2{bottom:327.120000pt;}
.ycd{bottom:328.542160pt;}
.yed{bottom:329.036667pt;}
.y12e{bottom:331.209787pt;}
.y3e{bottom:331.892667pt;}
.y114{bottom:331.988400pt;}
.y7a{bottom:333.686933pt;}
.y4d{bottom:333.976667pt;}
.ya9{bottom:334.520000pt;}
.y39{bottom:337.188400pt;}
.y9a{bottom:337.947947pt;}
.ye{bottom:338.835733pt;}
.y79{bottom:338.998933pt;}
.yc3{bottom:339.253813pt;}
.y1c{bottom:340.359867pt;}
.y28{bottom:340.684267pt;}
.y13a{bottom:343.040000pt;}
.y124{bottom:346.446000pt;}
.y19{bottom:349.159467pt;}
.ycc{bottom:351.907600pt;}
.y57{bottom:353.333040pt;}
.yff{bottom:354.780507pt;}
.y88{bottom:356.699200pt;}
.y3d{bottom:358.124667pt;}
.y100{bottom:361.419867pt;}
.y67{bottom:361.688800pt;}
.y99{bottom:362.917227pt;}
.y38{bottom:363.588400pt;}
.y12d{bottom:365.766907pt;}
.yc2{bottom:366.619893pt;}
.y113{bottom:368.636400pt;}
.y18{bottom:370.599467pt;}
.y5b{bottom:372.380880pt;}
.y42{bottom:376.057200pt;}
.ycb{bottom:376.060400pt;}
.yfe{bottom:377.019867pt;}
.y139{bottom:381.440000pt;}
.y6c{bottom:381.899333pt;}
.y123{bottom:383.094000pt;}
.ydb{bottom:385.342800pt;}
.y90{bottom:385.612320pt;}
.y98{bottom:387.727467pt;}
.y86{bottom:387.837867pt;}
.y12c{bottom:390.577147pt;}
.y56{bottom:391.420880pt;}
.yc1{bottom:391.900533pt;}
.y112{bottom:395.036400pt;}
.y7c{bottom:399.478933pt;}
.y1{bottom:399.486667pt;}
.y37{bottom:400.068400pt;}
.ydc{bottom:400.912800pt;}
.y6b{bottom:401.099333pt;}
.yca{bottom:405.662160pt;}
.yda{bottom:405.822800pt;}
.y8f{bottom:408.977760pt;}
.y122{bottom:409.494000pt;}
.y5a{bottom:410.468720pt;}
.y138{bottom:413.440000pt;}
.y85{bottom:414.557867pt;}
.yfc{bottom:415.597467pt;}
.y3c{bottom:418.001067pt;}
.y6a{bottom:420.299333pt;}
.y4c{bottom:423.894800pt;}
.yc0{bottom:424.699893pt;}
.y12b{bottom:425.293307pt;}
.yd9{bottom:426.302800pt;}
.y25{bottom:428.252267pt;}
.yc9{bottom:429.027600pt;}
.y55{bottom:429.508720pt;}
.yfd{bottom:429.754133pt;}
.ya{bottom:429.858880pt;}
.yd1{bottom:430.295627pt;}
.y111{bottom:431.684400pt;}
.y8e{bottom:432.492160pt;}
.yfb{bottom:433.197467pt;}
.y84{bottom:433.757867pt;}
.ya8{bottom:434.741227pt;}
.y69{bottom:439.499333pt;}
.ye9{bottom:441.937813pt;}
.y121{bottom:446.142000pt;}
.y59{bottom:448.556560pt;}
.y24{bottom:448.732267pt;}
.ya0{bottom:448.736267pt;}
.y27{bottom:448.953867pt;}
.ybf{bottom:449.980533pt;}
.y12a{bottom:450.103547pt;}
.y4b{bottom:450.294800pt;}
.y137{bottom:451.840000pt;}
.y66{bottom:452.696800pt;}
.y83{bottom:452.957867pt;}
.yc8{bottom:453.180400pt;}
.yd0{bottom:453.661067pt;}
.yfa{bottom:453.677467pt;}
.y8d{bottom:455.857600pt;}
.yd{bottom:457.692107pt;}
.y9{bottom:457.692160pt;}
.y110{bottom:458.084400pt;}
.yea{bottom:459.793200pt;}
.y36{bottom:459.944800pt;}
.ya7{bottom:464.186667pt;}
.y23{bottom:466.332267pt;}
.y54{bottom:467.596560pt;}
.ye8{bottom:469.133653pt;}
.y65{bottom:471.896800pt;}
.y82{bottom:472.157867pt;}
.y120{bottom:472.542000pt;}
.y129{bottom:475.072827pt;}
.y4a{bottom:476.526800pt;}
.y22{bottom:483.932267pt;}
.y1e{bottom:483.997867pt;}
.y10f{bottom:484.484400pt;}
.yc{bottom:485.525387pt;}
.y8{bottom:485.525440pt;}
.y58{bottom:486.644400pt;}
.y97{bottom:488.836933pt;}
.y136{bottom:490.240000pt;}
.y64{bottom:491.096800pt;}
.y26{bottom:491.352267pt;}
.y81{bottom:491.357867pt;}
.yf8{bottom:492.741600pt;}
.ye7{bottom:496.499733pt;}
.yd8{bottom:496.775733pt;}
.yf9{bottom:498.088400pt;}
.y11f{bottom:498.774000pt;}
.y128{bottom:499.883067pt;}
.yd7{bottom:501.652267pt;}
.y21{bottom:504.412267pt;}
.y53{bottom:505.684400pt;}
.y10e{bottom:510.716400pt;}
.yc7{bottom:512.921253pt;}
.yf7{bottom:513.221600pt;}
.yb{bottom:513.358667pt;}
.y7{bottom:513.358720pt;}
.ybe{bottom:513.409653pt;}
.y87{bottom:521.597867pt;}
.y135{bottom:522.240000pt;}
.y17{bottom:523.037067pt;}
.y20{bottom:524.892267pt;}
.y68{bottom:535.304800pt;}
.y78{bottom:535.558933pt;}
.yc6{bottom:536.286693pt;}
.ybd{bottom:536.775093pt;}
.y6{bottom:541.192000pt;}
.y16{bottom:544.477067pt;}
.yf5{bottom:561.075867pt;}
.yc5{bottom:561.248133pt;}
.ybc{bottom:561.736533pt;}
.y63{bottom:563.626693pt;}
.yf6{bottom:566.422667pt;}
.yf4{bottom:581.555867pt;}
.y62{bottom:589.226533pt;}
.y52{bottom:596.877333pt;}
.yce{bottom:598.371867pt;}
.y5{bottom:611.486667pt;}
.y10c{bottom:623.081600pt;}
.yf3{bottom:630.641600pt;}
.yaf{bottom:638.935867pt;}
.y61{bottom:643.194933pt;}
.hb{height:42.262500pt;}
.h5{height:45.937500pt;}
.h11{height:49.612500pt;}
.hc{height:53.746875pt;}
.h9{height:57.009500pt;}
.h8{height:61.096875pt;}
.ha{height:65.231250pt;}
.h4{height:68.906250pt;}
.h3{height:72.581250pt;}
.h2{height:76.715625pt;}
.he{height:80.390625pt;}
.hd{height:84.065625pt;}
.hf{height:95.550000pt;}
.h7{height:99.684375pt;}
.h6{height:111.168750pt;}
.h12{height:111.472500pt;}
.h10{height:157.106250pt;}
.h1{height:168.590625pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x5a{left:27.810800pt;}
.x5f{left:29.303067pt;}
.x5b{left:45.898800pt;}
.x60{left:47.381947pt;}
.x2a{left:50.518533pt;}
.x1b{left:52.868000pt;}
.x1a{left:55.268000pt;}
.x7e{left:57.600000pt;}
.x6e{left:62.776667pt;}
.x6d{left:66.933333pt;}
.x7b{left:68.285600pt;}
.x77{left:70.946667pt;}
.x6f{left:74.136667pt;}
.x27{left:75.364320pt;}
.x73{left:82.766667pt;}
.x24{left:84.609867pt;}
.x26{left:89.264800pt;}
.x74{left:90.427467pt;}
.x7f{left:93.600000pt;}
.x79{left:95.704800pt;}
.x2b{left:98.841093pt;}
.x33{left:101.133680pt;}
.x25{left:102.033867pt;}
.x41{left:104.045333pt;}
.x39{left:105.280267pt;}
.x76{left:111.910000pt;}
.x22{left:120.669733pt;}
.x3a{left:123.994347pt;}
.x42{left:126.725067pt;}
.x5e{left:132.406400pt;}
.x44{left:134.293067pt;}
.x34{left:136.652240pt;}
.x43{left:141.845067pt;}
.x78{left:143.266667pt;}
.x71{left:150.456667pt;}
.x6c{left:161.176667pt;}
.x3b{left:167.186027pt;}
.x7{left:169.387307pt;}
.xe{left:172.280373pt;}
.x32{left:176.163600pt;}
.x3c{left:178.400587pt;}
.x59{left:180.554267pt;}
.xf{left:189.394933pt;}
.xd{left:194.830133pt;}
.x57{left:196.550000pt;}
.x10{left:197.863733pt;}
.x19{left:199.746667pt;}
.x31{left:204.540400pt;}
.x6{left:206.346667pt;}
.x8{left:207.635947pt;}
.x35{left:213.140400pt;}
.x58{left:216.022533pt;}
.x2c{left:218.146667pt;}
.x54{left:222.664533pt;}
.x30{left:223.930533pt;}
.x75{left:232.862800pt;}
.x56{left:233.849067pt;}
.x55{left:244.390000pt;}
.x9{left:246.516587pt;}
.x4d{left:257.986667pt;}
.x1e{left:265.497600pt;}
.x53{left:271.426667pt;}
.x16{left:275.069867pt;}
.x28{left:276.931733pt;}
.x1c{left:279.698133pt;}
.x17{left:286.117227pt;}
.x29{left:288.931733pt;}
.x23{left:291.354800pt;}
.x2f{left:300.230000pt;}
.x1d{left:304.217600pt;}
.x1{left:308.866667pt;}
.x15{left:312.989867pt;}
.x2d{left:322.111867pt;}
.x5{left:328.870000pt;}
.x4b{left:332.066667pt;}
.x7d{left:342.630000pt;}
.x40{left:353.346667pt;}
.x21{left:361.081733pt;}
.x6b{left:363.840000pt;}
.x72{left:365.440000pt;}
.x18{left:366.431787pt;}
.x46{left:368.641733pt;}
.x70{left:375.840000pt;}
.x4{left:381.498507pt;}
.x3{left:394.618027pt;}
.x65{left:414.001067pt;}
.x47{left:433.436133pt;}
.x66{left:436.680800pt;}
.x2{left:452.386667pt;}
.x4a{left:459.352267pt;}
.x4c{left:460.305733pt;}
.x6a{left:462.975893pt;}
.x48{left:466.920267pt;}
.x52{left:474.363067pt;}
.x4e{left:482.055200pt;}
.x69{left:487.618133pt;}
.x50{left:494.695520pt;}
.x4f{left:498.845120pt;}
.x3f{left:508.128453pt;}
.xb{left:510.498907pt;}
.x3e{left:513.232293pt;}
.x37{left:514.349440pt;}
.x38{left:519.800480pt;}
.x13{left:522.312027pt;}
.x36{left:526.188960pt;}
.x61{left:528.134800pt;}
.x3d{left:529.724293pt;}
.x64{left:532.365120pt;}
.x11{left:534.648667pt;}
.x5d{left:537.216533pt;}
.x62{left:538.695280pt;}
.x14{left:544.229787pt;}
.x12{left:548.400987pt;}
.x67{left:567.944027pt;}
.x68{left:569.370133pt;}
.xa{left:583.608667pt;}
.x63{left:587.022160pt;}
.x2e{left:588.223867pt;}
.x45{left:595.324133pt;}
.x51{left:597.584320pt;}
.xc{left:605.197787pt;}
.x7a{left:611.118133pt;}
.x7c{left:628.637600pt;}
.x5c{left:657.315467pt;}
.x49{left:663.480267pt;}
.x1f{left:747.229067pt;}
.x20{left:781.788933pt;}
}




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