
    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_3dca11c8dfb30cfdc61b1a85.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_dd3db7b2bd14d458759147d1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_c6bbd17cb4cbf6fbbae96d5e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_173edf5583c797b97ab32f31.woff')format("woff");}.ff4{font-family:ff4;line-height:0.766602;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_16d8209ff3a9581484c5397b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.053223;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d580582ed26bd6fe1485658d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.052734;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:ff9;src:url('chunks/assets/font_f974f8308e6aab7eefc14784.woff')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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:ffa;src:url('chunks/assets/font_b6c65eb4122432b01baf4eaa.woff')format("woff");}.ffa{font-family:ffa;line-height:1.053223;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:ffb;src:url('chunks/assets/font_b5e4a88a0ec7a528e0f3c64d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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);}
.v5{vertical-align:-23.760000px;}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls2d{letter-spacing:-0.960000px;}
.ls34{letter-spacing:-0.660000px;}
.ls1c{letter-spacing:-0.579600px;}
.ls32{letter-spacing:-0.546000px;}
.ls5{letter-spacing:-0.463800px;}
.ls19{letter-spacing:-0.303000px;}
.ls2e{letter-spacing:-0.302400px;}
.ls3a{letter-spacing:-0.298200px;}
.ls10{letter-spacing:-0.272400px;}
.ls1d{letter-spacing:-0.240600px;}
.ls1b{letter-spacing:-0.175800px;}
.ls4{letter-spacing:-0.132600px;}
.ls31{letter-spacing:-0.115800px;}
.ls17{letter-spacing:-0.107400px;}
.ls18{letter-spacing:-0.069600px;}
.ls8{letter-spacing:-0.064800px;}
.lsd{letter-spacing:-0.058320px;}
.ls2c{letter-spacing:-0.041040px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.025200px;}
.ls3{letter-spacing:0.038880px;}
.lse{letter-spacing:0.060600px;}
.ls1{letter-spacing:0.065400px;}
.ls11{letter-spacing:0.066000px;}
.lsa{letter-spacing:0.066240px;}
.ls36{letter-spacing:0.075000px;}
.ls28{letter-spacing:0.093000px;}
.ls2b{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.100800px;}
.ls25{letter-spacing:0.109440px;}
.ls33{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.lsf{letter-spacing:0.174000px;}
.lsb{letter-spacing:0.174240px;}
.ls40{letter-spacing:0.179280px;}
.ls30{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.186600px;}
.ls7{letter-spacing:0.190200px;}
.ls6{letter-spacing:0.202800px;}
.ls29{letter-spacing:0.252000px;}
.lsc{letter-spacing:0.306000px;}
.ls41{letter-spacing:0.334800px;}
.ls35{letter-spacing:0.393600px;}
.ls22{letter-spacing:0.447840px;}
.ls24{letter-spacing:0.479520px;}
.ls26{letter-spacing:0.505440px;}
.ls27{letter-spacing:0.590400px;}
.ls3f{letter-spacing:0.660000px;}
.ls23{letter-spacing:0.667440px;}
.ls1e{letter-spacing:0.744000px;}
.ls3b{letter-spacing:0.780000px;}
.ls20{letter-spacing:0.810000px;}
.ls21{letter-spacing:0.894240px;}
.ls2f{letter-spacing:0.972000px;}
.ls12{letter-spacing:1.026000px;}
.ls2a{letter-spacing:1.293120px;}
.ls15{letter-spacing:1.614240px;}
.ls37{letter-spacing:2.334240px;}
.ls38{letter-spacing:3.054240px;}
.ls39{letter-spacing:4.494240px;}
.ls16{letter-spacing:5.214240px;}
.ls3e{letter-spacing:12.186720px;}
.ls42{letter-spacing:18.174240px;}
.ls3c{letter-spacing:42.570720px;}
.ls9{letter-spacing:46.026720px;}
.ls1a{letter-spacing:64.026720px;}
.ls3d{letter-spacing:202.470240px;}
.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;}
}
.ws1d{word-spacing:-59.853000px;}
.ws12{word-spacing:-59.760000px;}
.ws4{word-spacing:-21.844560px;}
.ws5{word-spacing:-21.707160px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws18{word-spacing:-14.315760px;}
.ws16{word-spacing:-14.249760px;}
.ws20{word-spacing:-14.165760px;}
.ws22{word-spacing:-13.840560px;}
.wsb{word-spacing:-13.811760px;}
.ws17{word-spacing:-13.692360px;}
.ws21{word-spacing:-13.685040px;}
.ws1e{word-spacing:-13.646160px;}
.ws19{word-spacing:-13.599360px;}
.ws1f{word-spacing:-13.580760px;}
.ws13{word-spacing:-13.566360px;}
.wse{word-spacing:-13.530960px;}
.ws8{word-spacing:-13.505760px;}
.ws1a{word-spacing:-13.464720px;}
.wsc{word-spacing:-13.447440px;}
.ws9{word-spacing:-13.440960px;}
.ws10{word-spacing:-13.436160px;}
.wsf{word-spacing:-13.398360px;}
.ws15{word-spacing:-13.265160px;}
.ws11{word-spacing:-13.202760px;}
.ws14{word-spacing:-12.926160px;}
.ws1b{word-spacing:-12.545760px;}
.ws6{word-spacing:-9.437760px;}
.ws7{word-spacing:-8.786880px;}
.wsd{word-spacing:-8.514480px;}
.ws1c{word-spacing:-8.484480px;}
.wsa{word-spacing:0.000000px;}
._1d{margin-left:-532.918560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-203.010240px;}
._18{margin-left:-201.453120px;}
._17{margin-left:-200.226720px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._26{margin-left:-170.026560px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._10{margin-left:-145.358400px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-116.062560px;}
._24{margin-left:-110.154240px;}
._1c{margin-left:-102.529440px;}
._22{margin-left:-100.543680px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._23{margin-left:-80.639760px;}
._15{margin-left:-66.703680px;}
._21{margin-left:-54.805440px;}
._14{margin-left:-49.492560px;}
._19{margin-left:-31.530240px;}
._46{margin-left:-12.598560px;}
._28{margin-left:-4.508040px;}
._27{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._25{width:1.263360px;}
._29{width:2.352960px;}
._2c{width:3.884400px;}
._2b{width:4.924080px;}
._2a{width:5.983200px;}
._2d{width:7.230960px;}
._2e{width:8.784720px;}
._37{width:9.800640px;}
._32{width:10.936080px;}
._31{width:11.952000px;}
._2f{width:14.581440px;}
._30{width:15.833520px;}
._41{width:17.661840px;}
._35{width:18.902400px;}
._36{width:19.959840px;}
._34{width:21.453840px;}
._33{width:22.708800px;}
._3a{width:25.965600px;}
._3b{width:27.234480px;}
._3c{width:28.638240px;}
._47{width:45.050640px;}
._40{width:48.264480px;}
._42{width:55.926480px;}
._3d{width:60.422640px;}
._45{width:67.153440px;}
._44{width:68.305680px;}
._48{width:77.329440px;}
._3f{width:96.930720px;}
._3e{width:97.946640px;}
._39{width:102.795360px;}
._38{width:103.816800px;}
._43{width:127.671600px;}
._49{width:178.991280px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(14,16,26);}
.fc4{color:rgb(17,17,17);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs5{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6b{bottom:3.960000px;}
.y69{bottom:4.680000px;}
.ye8{bottom:5.220000px;}
.ydf{bottom:6.120000px;}
.y6d{bottom:6.840000px;}
.y67{bottom:7.200000px;}
.ye5{bottom:8.280000px;}
.y11f{bottom:12.060000px;}
.y6f{bottom:22.500000px;}
.y71{bottom:23.220000px;}
.ye7{bottom:23.580000px;}
.yde{bottom:24.480000px;}
.ye3{bottom:26.640000px;}
.ye2{bottom:44.820000px;}
.y6{bottom:61.596000px;}
.ye1{bottom:63.180000px;}
.y173{bottom:91.296000px;}
.y175{bottom:91.476000px;}
.y65{bottom:94.356000px;}
.y32{bottom:96.696000px;}
.y172{bottom:99.756000px;}
.y13f{bottom:101.736000px;}
.y11c{bottom:103.356000px;}
.y174{bottom:108.936000px;}
.y100{bottom:110.376000px;}
.ydb{bottom:112.356000px;}
.yc1{bottom:113.076000px;}
.y64{bottom:115.416000px;}
.y31{bottom:117.756000px;}
.y13e{bottom:120.816000px;}
.y11b{bottom:124.416000px;}
.y96{bottom:127.116000px;}
.yff{bottom:131.436000px;}
.yda{bottom:133.416000px;}
.yc0{bottom:134.136000px;}
.y63{bottom:136.476000px;}
.y30{bottom:138.816000px;}
.y13d{bottom:139.896000px;}
.y171{bottom:141.876000px;}
.y11a{bottom:145.476000px;}
.y95{bottom:148.176000px;}
.yfe{bottom:152.490000px;}
.yd9{bottom:154.470000px;}
.ybf{bottom:155.190000px;}
.y62{bottom:157.530000px;}
.y13c{bottom:158.970000px;}
.y2f{bottom:159.870000px;}
.y170{bottom:162.930000px;}
.y119{bottom:166.530000px;}
.y94{bottom:169.230000px;}
.yfd{bottom:173.550000px;}
.yd8{bottom:175.530000px;}
.ybe{bottom:176.250000px;}
.y13b{bottom:178.050000px;}
.y61{bottom:178.590000px;}
.y2e{bottom:180.930000px;}
.y16f{bottom:183.990000px;}
.y118{bottom:187.590000px;}
.y93{bottom:190.290000px;}
.yfc{bottom:194.610000px;}
.yd7{bottom:196.590000px;}
.y13a{bottom:197.130000px;}
.ybd{bottom:197.310000px;}
.y60{bottom:199.650000px;}
.y2d{bottom:201.990000px;}
.y16e{bottom:205.050000px;}
.y117{bottom:208.650000px;}
.y92{bottom:211.350000px;}
.yfb{bottom:215.670000px;}
.y139{bottom:216.210000px;}
.yd6{bottom:217.650000px;}
.ybc{bottom:218.190000px;}
.y5f{bottom:220.710000px;}
.y2c{bottom:223.050000px;}
.y16d{bottom:226.110000px;}
.y116{bottom:229.710000px;}
.y91{bottom:232.410000px;}
.y138{bottom:235.290000px;}
.yfa{bottom:236.730000px;}
.yd5{bottom:238.710000px;}
.ybb{bottom:239.250000px;}
.y5e{bottom:241.770000px;}
.y2b{bottom:244.110000px;}
.y16c{bottom:247.170000px;}
.y115{bottom:250.770000px;}
.y137{bottom:254.370000px;}
.yf9{bottom:257.790000px;}
.yd4{bottom:259.770000px;}
.yba{bottom:260.310000px;}
.y90{bottom:262.470000px;}
.y2a{bottom:265.170000px;}
.y16b{bottom:268.230000px;}
.y5d{bottom:271.830000px;}
.yf8{bottom:278.850000px;}
.y136{bottom:279.930000px;}
.yd3{bottom:280.830000px;}
.yb9{bottom:281.370000px;}
.y8f{bottom:283.530000px;}
.y29{bottom:286.230000px;}
.y16a{bottom:289.290000px;}
.y5c{bottom:292.890000px;}
.yf7{bottom:299.910000px;}
.y135{bottom:300.990000px;}
.yd2{bottom:301.890000px;}
.yb8{bottom:302.430000px;}
.y8e{bottom:304.590000px;}
.y28{bottom:307.290000px;}
.y169{bottom:310.350000px;}
.y5b{bottom:313.950000px;}
.yf6{bottom:320.970000px;}
.y134{bottom:322.050000px;}
.yd1{bottom:322.950000px;}
.yb7{bottom:323.490000px;}
.y8d{bottom:325.650000px;}
.y27{bottom:328.395000px;}
.y168{bottom:331.455000px;}
.y5a{bottom:335.055000px;}
.yf5{bottom:342.075000px;}
.y133{bottom:343.155000px;}
.yd0{bottom:344.055000px;}
.yb6{bottom:344.595000px;}
.y8c{bottom:346.755000px;}
.y26{bottom:349.455000px;}
.y167{bottom:352.515000px;}
.y59{bottom:356.115000px;}
.yf4{bottom:363.135000px;}
.y132{bottom:364.215000px;}
.ycf{bottom:365.115000px;}
.yb5{bottom:365.655000px;}
.y8b{bottom:367.815000px;}
.y25{bottom:370.515000px;}
.y166{bottom:373.575000px;}
.y58{bottom:377.175000px;}
.yf3{bottom:384.195000px;}
.y131{bottom:385.275000px;}
.yce{bottom:386.175000px;}
.yb4{bottom:386.715000px;}
.y8a{bottom:388.875000px;}
.y24{bottom:391.575000px;}
.y165{bottom:394.635000px;}
.y57{bottom:398.235000px;}
.yf2{bottom:405.255000px;}
.y130{bottom:406.335000px;}
.ycd{bottom:407.235000px;}
.yb3{bottom:407.775000px;}
.y89{bottom:409.935000px;}
.y23{bottom:412.635000px;}
.y164{bottom:415.695000px;}
.y56{bottom:419.295000px;}
.yf1{bottom:426.315000px;}
.y12f{bottom:427.395000px;}
.ycc{bottom:428.295000px;}
.yb2{bottom:428.835000px;}
.y88{bottom:430.995000px;}
.y22{bottom:433.695000px;}
.y163{bottom:436.755000px;}
.y55{bottom:440.355000px;}
.yf0{bottom:447.375000px;}
.y12e{bottom:448.455000px;}
.ycb{bottom:449.355000px;}
.yb1{bottom:449.895000px;}
.y87{bottom:452.055000px;}
.y21{bottom:454.755000px;}
.y162{bottom:457.815000px;}
.y54{bottom:461.415000px;}
.yef{bottom:468.435000px;}
.y12d{bottom:469.515000px;}
.yca{bottom:470.415000px;}
.yb0{bottom:470.955000px;}
.y86{bottom:473.115000px;}
.y20{bottom:475.815000px;}
.y161{bottom:478.875000px;}
.y53{bottom:482.475000px;}
.yee{bottom:489.495000px;}
.y12c{bottom:490.575000px;}
.yc9{bottom:491.475000px;}
.yaf{bottom:492.015000px;}
.y85{bottom:494.175000px;}
.y1f{bottom:496.875000px;}
.y160{bottom:499.935000px;}
.y52{bottom:503.535000px;}
.yed{bottom:510.555000px;}
.y12b{bottom:511.635000px;}
.yc8{bottom:512.535000px;}
.yae{bottom:513.075000px;}
.y84{bottom:515.235000px;}
.y1e{bottom:517.935000px;}
.y15f{bottom:520.995000px;}
.y51{bottom:524.595000px;}
.yec{bottom:531.615000px;}
.y12a{bottom:532.695000px;}
.yc7{bottom:533.595000px;}
.yad{bottom:534.135000px;}
.y83{bottom:536.295000px;}
.y1d{bottom:538.995000px;}
.y15e{bottom:542.055000px;}
.y50{bottom:545.655000px;}
.yeb{bottom:552.675000px;}
.y129{bottom:553.755000px;}
.yc6{bottom:554.655000px;}
.yac{bottom:555.195000px;}
.y1c{bottom:560.055000px;}
.y15d{bottom:563.115000px;}
.y82{bottom:566.355000px;}
.y4f{bottom:566.715000px;}
.yea{bottom:573.735000px;}
.y128{bottom:574.815000px;}
.yc5{bottom:575.715000px;}
.yab{bottom:576.255000px;}
.y1b{bottom:581.115000px;}
.y15c{bottom:584.175000px;}
.y81{bottom:587.415000px;}
.y4e{bottom:587.775000px;}
.ye9{bottom:594.795000px;}
.y127{bottom:595.905000px;}
.yc4{bottom:596.805000px;}
.yaa{bottom:597.345000px;}
.y1a{bottom:602.205000px;}
.y15b{bottom:605.265000px;}
.y80{bottom:608.505000px;}
.y4d{bottom:608.865000px;}
.ye6{bottom:609.945000px;}
.y126{bottom:616.965000px;}
.yc3{bottom:617.865000px;}
.ya9{bottom:618.405000px;}
.y19{bottom:623.265000px;}
.y15a{bottom:626.325000px;}
.y7f{bottom:629.565000px;}
.y4c{bottom:629.925000px;}
.y125{bottom:638.025000px;}
.yc2{bottom:638.925000px;}
.ya8{bottom:639.465000px;}
.y18{bottom:646.665000px;}
.y159{bottom:647.385000px;}
.ye4{bottom:648.645000px;}
.y7e{bottom:650.625000px;}
.y114{bottom:650.805000px;}
.y124{bottom:659.085000px;}
.y4b{bottom:659.805000px;}
.ya7{bottom:660.525000px;}
.y158{bottom:668.445000px;}
.y7d{bottom:671.685000px;}
.y113{bottom:671.865000px;}
.y17{bottom:676.545000px;}
.y123{bottom:680.145000px;}
.y4a{bottom:680.865000px;}
.ya6{bottom:681.585000px;}
.y157{bottom:689.505000px;}
.y7c{bottom:692.745000px;}
.y112{bottom:692.925000px;}
.y16{bottom:697.605000px;}
.y122{bottom:701.205000px;}
.y49{bottom:701.925000px;}
.y156{bottom:710.565000px;}
.ya5{bottom:711.645000px;}
.y7b{bottom:713.805000px;}
.y111{bottom:713.985000px;}
.y121{bottom:716.325000px;}
.y15{bottom:718.665000px;}
.y48{bottom:722.985000px;}
.ye0{bottom:726.945000px;}
.y155{bottom:731.625000px;}
.ya4{bottom:732.705000px;}
.y7a{bottom:734.865000px;}
.y110{bottom:735.045000px;}
.y120{bottom:735.405000px;}
.y14{bottom:739.725000px;}
.y47{bottom:744.045000px;}
.y154{bottom:752.685000px;}
.ya3{bottom:753.765000px;}
.y11e{bottom:754.485000px;}
.y79{bottom:755.925000px;}
.y10f{bottom:756.105000px;}
.y13{bottom:760.785000px;}
.y46{bottom:765.105000px;}
.y153{bottom:773.745000px;}
.ya2{bottom:774.825000px;}
.y78{bottom:776.985000px;}
.y10e{bottom:777.165000px;}
.y11d{bottom:781.485000px;}
.y12{bottom:781.845000px;}
.y45{bottom:786.165000px;}
.y152{bottom:794.805000px;}
.ya1{bottom:795.885000px;}
.y77{bottom:798.045000px;}
.y10d{bottom:798.225000px;}
.y11{bottom:802.905000px;}
.ydd{bottom:805.245000px;}
.y44{bottom:807.225000px;}
.y151{bottom:815.865000px;}
.ya0{bottom:816.945000px;}
.y76{bottom:819.105000px;}
.y10c{bottom:819.285000px;}
.y10{bottom:823.965000px;}
.y43{bottom:828.285000px;}
.y150{bottom:836.745000px;}
.y9f{bottom:838.005000px;}
.y75{bottom:840.165000px;}
.y10b{bottom:840.345000px;}
.ydc{bottom:844.665000px;}
.yf{bottom:845.025000px;}
.y42{bottom:849.345000px;}
.y14f{bottom:857.805000px;}
.y9e{bottom:859.065000px;}
.y74{bottom:861.225000px;}
.y10a{bottom:861.405000px;}
.ye{bottom:866.130000px;}
.y41{bottom:870.450000px;}
.y73{bottom:876.390000px;}
.y14e{bottom:878.910000px;}
.y9d{bottom:880.170000px;}
.y109{bottom:882.510000px;}
.yd{bottom:887.370000px;}
.y40{bottom:891.510000px;}
.y72{bottom:895.470000px;}
.y14d{bottom:899.970000px;}
.y9c{bottom:901.230000px;}
.y108{bottom:903.570000px;}
.yc{bottom:910.590000px;}
.y3f{bottom:912.570000px;}
.y70{bottom:915.270000px;}
.y14c{bottom:921.030000px;}
.y9b{bottom:922.290000px;}
.y107{bottom:924.630000px;}
.y3e{bottom:933.630000px;}
.yb{bottom:936.870000px;}
.y14b{bottom:942.090000px;}
.y106{bottom:945.690000px;}
.y9a{bottom:952.350000px;}
.ya{bottom:953.430000px;}
.y6e{bottom:953.610000px;}
.y3d{bottom:954.690000px;}
.y14a{bottom:963.150000px;}
.y105{bottom:966.750000px;}
.y99{bottom:973.410000px;}
.y9{bottom:975.750000px;}
.y149{bottom:984.210000px;}
.y104{bottom:987.810000px;}
.y6c{bottom:991.230000px;}
.y98{bottom:995.370000px;}
.y8{bottom:996.630000px;}
.y3c{bottom:996.810000px;}
.y148{bottom:1005.270000px;}
.y103{bottom:1008.870000px;}
.y6a{bottom:1013.190000px;}
.y97{bottom:1017.150000px;}
.y3b{bottom:1017.870000px;}
.y7{bottom:1025.970000px;}
.y147{bottom:1026.330000px;}
.y102{bottom:1029.930000px;}
.y68{bottom:1032.270000px;}
.y3a{bottom:1038.930000px;}
.y146{bottom:1041.630000px;}
.y101{bottom:1050.990000px;}
.y66{bottom:1052.070000px;}
.y39{bottom:1059.990000px;}
.y145{bottom:1060.530000px;}
.y5{bottom:1064.130000px;}
.y38{bottom:1081.050000px;}
.y144{bottom:1086.270000px;}
.y4{bottom:1094.370000px;}
.y37{bottom:1102.110000px;}
.y143{bottom:1107.330000px;}
.y142{bottom:1122.450000px;}
.y36{bottom:1123.170000px;}
.y3{bottom:1124.610000px;}
.y141{bottom:1141.560000px;}
.y35{bottom:1144.260000px;}
.y2{bottom:1154.700000px;}
.y140{bottom:1160.640000px;}
.y34{bottom:1165.320000px;}
.y1{bottom:1188.720000px;}
.y33{bottom:1193.220000px;}
.hc{height:18.180000px;}
.h10{height:18.360000px;}
.h11{height:18.396000px;}
.hb{height:19.080000px;}
.hd{height:21.240000px;}
.ha{height:21.600000px;}
.h16{height:26.280000px;}
.he{height:36.900000px;}
.hf{height:37.620000px;}
.h14{height:37.980000px;}
.h7{height:38.671172px;}
.h12{height:38.700000px;}
.h8{height:52.260820px;}
.h9{height:59.439023px;}
.h15{height:59.551172px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h13{height:77.580000px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:54.360000px;}
.w6{width:56.160000px;}
.w4{width:56.196000px;}
.w5{width:56.340000px;}
.w7{width:56.376000px;}
.w9{width:63.936000px;}
.w8{width:67.680000px;}
.wc{width:80.460000px;}
.w14{width:101.700000px;}
.wb{width:112.536000px;}
.we{width:136.620000px;}
.wf{width:167.760000px;}
.w11{width:190.650000px;}
.w3{width:192.630000px;}
.w13{width:254.595000px;}
.w10{width:308.775000px;}
.w12{width:317.910000px;}
.w15{width:337.350000px;}
.w16{width:337.575000px;}
.wd{width:388.545000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:6.659987px;}
.x8{left:7.740000px;}
.x6{left:53.999987px;}
.x7{left:80.280000px;}
.x12{left:86.400000px;}
.x18{left:108.756000px;}
.x16{left:112.176000px;}
.x5{left:156.449987px;}
.x13{left:199.650000px;}
.x3{left:272.369987px;}
.x9{left:273.630000px;}
.x14{left:280.830000px;}
.xa{left:330.735000px;}
.x2{left:350.714987px;}
.xb{left:387.795000px;}
.x4{left:419.294987px;}
.x19{left:427.395000px;}
.xc{left:444.675000px;}
.x1b{left:446.835000px;}
.x1{left:479.444987px;}
.xd{left:501.945000px;}
.xe{left:570.345000px;}
.x17{left:590.325000px;}
.xf{left:638.745000px;}
.x15{left:670.110000px;}
.x1a{left:682.710000px;}
.x10{left:703.410000px;}
.x11{left:758.490000px;}
.x1d{left:839.309987px;}
@media print{
.v5{vertical-align:-21.120000pt;}
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls2d{letter-spacing:-0.853333pt;}
.ls34{letter-spacing:-0.586667pt;}
.ls1c{letter-spacing:-0.515200pt;}
.ls32{letter-spacing:-0.485333pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls19{letter-spacing:-0.269333pt;}
.ls2e{letter-spacing:-0.268800pt;}
.ls3a{letter-spacing:-0.265067pt;}
.ls10{letter-spacing:-0.242133pt;}
.ls1d{letter-spacing:-0.213867pt;}
.ls1b{letter-spacing:-0.156267pt;}
.ls4{letter-spacing:-0.117867pt;}
.ls31{letter-spacing:-0.102933pt;}
.ls17{letter-spacing:-0.095467pt;}
.ls18{letter-spacing:-0.061867pt;}
.ls8{letter-spacing:-0.057600pt;}
.lsd{letter-spacing:-0.051840pt;}
.ls2c{letter-spacing:-0.036480pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.022400pt;}
.ls3{letter-spacing:0.034560pt;}
.lse{letter-spacing:0.053867pt;}
.ls1{letter-spacing:0.058133pt;}
.ls11{letter-spacing:0.058667pt;}
.lsa{letter-spacing:0.058880pt;}
.ls36{letter-spacing:0.066667pt;}
.ls28{letter-spacing:0.082667pt;}
.ls2b{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.089600pt;}
.ls25{letter-spacing:0.097280pt;}
.ls33{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.lsf{letter-spacing:0.154667pt;}
.lsb{letter-spacing:0.154880pt;}
.ls40{letter-spacing:0.159360pt;}
.ls30{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.165867pt;}
.ls7{letter-spacing:0.169067pt;}
.ls6{letter-spacing:0.180267pt;}
.ls29{letter-spacing:0.224000pt;}
.lsc{letter-spacing:0.272000pt;}
.ls41{letter-spacing:0.297600pt;}
.ls35{letter-spacing:0.349867pt;}
.ls22{letter-spacing:0.398080pt;}
.ls24{letter-spacing:0.426240pt;}
.ls26{letter-spacing:0.449280pt;}
.ls27{letter-spacing:0.524800pt;}
.ls3f{letter-spacing:0.586667pt;}
.ls23{letter-spacing:0.593280pt;}
.ls1e{letter-spacing:0.661333pt;}
.ls3b{letter-spacing:0.693333pt;}
.ls20{letter-spacing:0.720000pt;}
.ls21{letter-spacing:0.794880pt;}
.ls2f{letter-spacing:0.864000pt;}
.ls12{letter-spacing:0.912000pt;}
.ls2a{letter-spacing:1.149440pt;}
.ls15{letter-spacing:1.434880pt;}
.ls37{letter-spacing:2.074880pt;}
.ls38{letter-spacing:2.714880pt;}
.ls39{letter-spacing:3.994880pt;}
.ls16{letter-spacing:4.634880pt;}
.ls3e{letter-spacing:10.832640pt;}
.ls42{letter-spacing:16.154880pt;}
.ls3c{letter-spacing:37.840640pt;}
.ls9{letter-spacing:40.912640pt;}
.ls1a{letter-spacing:56.912640pt;}
.ls3d{letter-spacing:179.973547pt;}
.ws1d{word-spacing:-53.202667pt;}
.ws12{word-spacing:-53.120000pt;}
.ws4{word-spacing:-19.417387pt;}
.ws5{word-spacing:-19.295253pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws18{word-spacing:-12.725120pt;}
.ws16{word-spacing:-12.666453pt;}
.ws20{word-spacing:-12.591787pt;}
.ws22{word-spacing:-12.302720pt;}
.wsb{word-spacing:-12.277120pt;}
.ws17{word-spacing:-12.170987pt;}
.ws21{word-spacing:-12.164480pt;}
.ws1e{word-spacing:-12.129920pt;}
.ws19{word-spacing:-12.088320pt;}
.ws1f{word-spacing:-12.071787pt;}
.ws13{word-spacing:-12.058987pt;}
.wse{word-spacing:-12.027520pt;}
.ws8{word-spacing:-12.005120pt;}
.ws1a{word-spacing:-11.968640pt;}
.wsc{word-spacing:-11.953280pt;}
.ws9{word-spacing:-11.947520pt;}
.ws10{word-spacing:-11.943253pt;}
.wsf{word-spacing:-11.909653pt;}
.ws15{word-spacing:-11.791253pt;}
.ws11{word-spacing:-11.735787pt;}
.ws14{word-spacing:-11.489920pt;}
.ws1b{word-spacing:-11.151787pt;}
.ws6{word-spacing:-8.389120pt;}
.ws7{word-spacing:-7.810560pt;}
.wsd{word-spacing:-7.568427pt;}
.ws1c{word-spacing:-7.541760pt;}
.wsa{word-spacing:0.000000pt;}
._1d{margin-left:-473.705387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.453547pt;}
._18{margin-left:-179.069440pt;}
._17{margin-left:-177.979307pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._26{margin-left:-151.134720pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._10{margin-left:-129.207467pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-103.166720pt;}
._24{margin-left:-97.914880pt;}
._1c{margin-left:-91.137280pt;}
._22{margin-left:-89.372160pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._23{margin-left:-71.679787pt;}
._15{margin-left:-59.292160pt;}
._21{margin-left:-48.715947pt;}
._14{margin-left:-43.993387pt;}
._19{margin-left:-28.026880pt;}
._46{margin-left:-11.198720pt;}
._28{margin-left:-4.007147pt;}
._27{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._25{width:1.122987pt;}
._29{width:2.091520pt;}
._2c{width:3.452800pt;}
._2b{width:4.376960pt;}
._2a{width:5.318400pt;}
._2d{width:6.427520pt;}
._2e{width:7.808640pt;}
._37{width:8.711680pt;}
._32{width:9.720960pt;}
._31{width:10.624000pt;}
._2f{width:12.961280pt;}
._30{width:14.074240pt;}
._41{width:15.699413pt;}
._35{width:16.802133pt;}
._36{width:17.742080pt;}
._34{width:19.070080pt;}
._33{width:20.185600pt;}
._3a{width:23.080533pt;}
._3b{width:24.208427pt;}
._3c{width:25.456213pt;}
._47{width:40.045013pt;}
._40{width:42.901760pt;}
._42{width:49.712427pt;}
._3d{width:53.709013pt;}
._45{width:59.691947pt;}
._44{width:60.716160pt;}
._48{width:68.737280pt;}
._3f{width:86.160640pt;}
._3e{width:87.063680pt;}
._39{width:91.373653pt;}
._38{width:92.281600pt;}
._43{width:113.485867pt;}
._49{width:159.103360pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:3.520000pt;}
.y69{bottom:4.160000pt;}
.ye8{bottom:4.640000pt;}
.ydf{bottom:5.440000pt;}
.y6d{bottom:6.080000pt;}
.y67{bottom:6.400000pt;}
.ye5{bottom:7.360000pt;}
.y11f{bottom:10.720000pt;}
.y6f{bottom:20.000000pt;}
.y71{bottom:20.640000pt;}
.ye7{bottom:20.960000pt;}
.yde{bottom:21.760000pt;}
.ye3{bottom:23.680000pt;}
.ye2{bottom:39.840000pt;}
.y6{bottom:54.752000pt;}
.ye1{bottom:56.160000pt;}
.y173{bottom:81.152000pt;}
.y175{bottom:81.312000pt;}
.y65{bottom:83.872000pt;}
.y32{bottom:85.952000pt;}
.y172{bottom:88.672000pt;}
.y13f{bottom:90.432000pt;}
.y11c{bottom:91.872000pt;}
.y174{bottom:96.832000pt;}
.y100{bottom:98.112000pt;}
.ydb{bottom:99.872000pt;}
.yc1{bottom:100.512000pt;}
.y64{bottom:102.592000pt;}
.y31{bottom:104.672000pt;}
.y13e{bottom:107.392000pt;}
.y11b{bottom:110.592000pt;}
.y96{bottom:112.992000pt;}
.yff{bottom:116.832000pt;}
.yda{bottom:118.592000pt;}
.yc0{bottom:119.232000pt;}
.y63{bottom:121.312000pt;}
.y30{bottom:123.392000pt;}
.y13d{bottom:124.352000pt;}
.y171{bottom:126.112000pt;}
.y11a{bottom:129.312000pt;}
.y95{bottom:131.712000pt;}
.yfe{bottom:135.546667pt;}
.yd9{bottom:137.306667pt;}
.ybf{bottom:137.946667pt;}
.y62{bottom:140.026667pt;}
.y13c{bottom:141.306667pt;}
.y2f{bottom:142.106667pt;}
.y170{bottom:144.826667pt;}
.y119{bottom:148.026667pt;}
.y94{bottom:150.426667pt;}
.yfd{bottom:154.266667pt;}
.yd8{bottom:156.026667pt;}
.ybe{bottom:156.666667pt;}
.y13b{bottom:158.266667pt;}
.y61{bottom:158.746667pt;}
.y2e{bottom:160.826667pt;}
.y16f{bottom:163.546667pt;}
.y118{bottom:166.746667pt;}
.y93{bottom:169.146667pt;}
.yfc{bottom:172.986667pt;}
.yd7{bottom:174.746667pt;}
.y13a{bottom:175.226667pt;}
.ybd{bottom:175.386667pt;}
.y60{bottom:177.466667pt;}
.y2d{bottom:179.546667pt;}
.y16e{bottom:182.266667pt;}
.y117{bottom:185.466667pt;}
.y92{bottom:187.866667pt;}
.yfb{bottom:191.706667pt;}
.y139{bottom:192.186667pt;}
.yd6{bottom:193.466667pt;}
.ybc{bottom:193.946667pt;}
.y5f{bottom:196.186667pt;}
.y2c{bottom:198.266667pt;}
.y16d{bottom:200.986667pt;}
.y116{bottom:204.186667pt;}
.y91{bottom:206.586667pt;}
.y138{bottom:209.146667pt;}
.yfa{bottom:210.426667pt;}
.yd5{bottom:212.186667pt;}
.ybb{bottom:212.666667pt;}
.y5e{bottom:214.906667pt;}
.y2b{bottom:216.986667pt;}
.y16c{bottom:219.706667pt;}
.y115{bottom:222.906667pt;}
.y137{bottom:226.106667pt;}
.yf9{bottom:229.146667pt;}
.yd4{bottom:230.906667pt;}
.yba{bottom:231.386667pt;}
.y90{bottom:233.306667pt;}
.y2a{bottom:235.706667pt;}
.y16b{bottom:238.426667pt;}
.y5d{bottom:241.626667pt;}
.yf8{bottom:247.866667pt;}
.y136{bottom:248.826667pt;}
.yd3{bottom:249.626667pt;}
.yb9{bottom:250.106667pt;}
.y8f{bottom:252.026667pt;}
.y29{bottom:254.426667pt;}
.y16a{bottom:257.146667pt;}
.y5c{bottom:260.346667pt;}
.yf7{bottom:266.586667pt;}
.y135{bottom:267.546667pt;}
.yd2{bottom:268.346667pt;}
.yb8{bottom:268.826667pt;}
.y8e{bottom:270.746667pt;}
.y28{bottom:273.146667pt;}
.y169{bottom:275.866667pt;}
.y5b{bottom:279.066667pt;}
.yf6{bottom:285.306667pt;}
.y134{bottom:286.266667pt;}
.yd1{bottom:287.066667pt;}
.yb7{bottom:287.546667pt;}
.y8d{bottom:289.466667pt;}
.y27{bottom:291.906667pt;}
.y168{bottom:294.626667pt;}
.y5a{bottom:297.826667pt;}
.yf5{bottom:304.066667pt;}
.y133{bottom:305.026667pt;}
.yd0{bottom:305.826667pt;}
.yb6{bottom:306.306667pt;}
.y8c{bottom:308.226667pt;}
.y26{bottom:310.626667pt;}
.y167{bottom:313.346667pt;}
.y59{bottom:316.546667pt;}
.yf4{bottom:322.786667pt;}
.y132{bottom:323.746667pt;}
.ycf{bottom:324.546667pt;}
.yb5{bottom:325.026667pt;}
.y8b{bottom:326.946667pt;}
.y25{bottom:329.346667pt;}
.y166{bottom:332.066667pt;}
.y58{bottom:335.266667pt;}
.yf3{bottom:341.506667pt;}
.y131{bottom:342.466667pt;}
.yce{bottom:343.266667pt;}
.yb4{bottom:343.746667pt;}
.y8a{bottom:345.666667pt;}
.y24{bottom:348.066667pt;}
.y165{bottom:350.786667pt;}
.y57{bottom:353.986667pt;}
.yf2{bottom:360.226667pt;}
.y130{bottom:361.186667pt;}
.ycd{bottom:361.986667pt;}
.yb3{bottom:362.466667pt;}
.y89{bottom:364.386667pt;}
.y23{bottom:366.786667pt;}
.y164{bottom:369.506667pt;}
.y56{bottom:372.706667pt;}
.yf1{bottom:378.946667pt;}
.y12f{bottom:379.906667pt;}
.ycc{bottom:380.706667pt;}
.yb2{bottom:381.186667pt;}
.y88{bottom:383.106667pt;}
.y22{bottom:385.506667pt;}
.y163{bottom:388.226667pt;}
.y55{bottom:391.426667pt;}
.yf0{bottom:397.666667pt;}
.y12e{bottom:398.626667pt;}
.ycb{bottom:399.426667pt;}
.yb1{bottom:399.906667pt;}
.y87{bottom:401.826667pt;}
.y21{bottom:404.226667pt;}
.y162{bottom:406.946667pt;}
.y54{bottom:410.146667pt;}
.yef{bottom:416.386667pt;}
.y12d{bottom:417.346667pt;}
.yca{bottom:418.146667pt;}
.yb0{bottom:418.626667pt;}
.y86{bottom:420.546667pt;}
.y20{bottom:422.946667pt;}
.y161{bottom:425.666667pt;}
.y53{bottom:428.866667pt;}
.yee{bottom:435.106667pt;}
.y12c{bottom:436.066667pt;}
.yc9{bottom:436.866667pt;}
.yaf{bottom:437.346667pt;}
.y85{bottom:439.266667pt;}
.y1f{bottom:441.666667pt;}
.y160{bottom:444.386667pt;}
.y52{bottom:447.586667pt;}
.yed{bottom:453.826667pt;}
.y12b{bottom:454.786667pt;}
.yc8{bottom:455.586667pt;}
.yae{bottom:456.066667pt;}
.y84{bottom:457.986667pt;}
.y1e{bottom:460.386667pt;}
.y15f{bottom:463.106667pt;}
.y51{bottom:466.306667pt;}
.yec{bottom:472.546667pt;}
.y12a{bottom:473.506667pt;}
.yc7{bottom:474.306667pt;}
.yad{bottom:474.786667pt;}
.y83{bottom:476.706667pt;}
.y1d{bottom:479.106667pt;}
.y15e{bottom:481.826667pt;}
.y50{bottom:485.026667pt;}
.yeb{bottom:491.266667pt;}
.y129{bottom:492.226667pt;}
.yc6{bottom:493.026667pt;}
.yac{bottom:493.506667pt;}
.y1c{bottom:497.826667pt;}
.y15d{bottom:500.546667pt;}
.y82{bottom:503.426667pt;}
.y4f{bottom:503.746667pt;}
.yea{bottom:509.986667pt;}
.y128{bottom:510.946667pt;}
.yc5{bottom:511.746667pt;}
.yab{bottom:512.226667pt;}
.y1b{bottom:516.546667pt;}
.y15c{bottom:519.266667pt;}
.y81{bottom:522.146667pt;}
.y4e{bottom:522.466667pt;}
.ye9{bottom:528.706667pt;}
.y127{bottom:529.693333pt;}
.yc4{bottom:530.493333pt;}
.yaa{bottom:530.973333pt;}
.y1a{bottom:535.293333pt;}
.y15b{bottom:538.013333pt;}
.y80{bottom:540.893333pt;}
.y4d{bottom:541.213333pt;}
.ye6{bottom:542.173333pt;}
.y126{bottom:548.413333pt;}
.yc3{bottom:549.213333pt;}
.ya9{bottom:549.693333pt;}
.y19{bottom:554.013333pt;}
.y15a{bottom:556.733333pt;}
.y7f{bottom:559.613333pt;}
.y4c{bottom:559.933333pt;}
.y125{bottom:567.133333pt;}
.yc2{bottom:567.933333pt;}
.ya8{bottom:568.413333pt;}
.y18{bottom:574.813333pt;}
.y159{bottom:575.453333pt;}
.ye4{bottom:576.573333pt;}
.y7e{bottom:578.333333pt;}
.y114{bottom:578.493333pt;}
.y124{bottom:585.853333pt;}
.y4b{bottom:586.493333pt;}
.ya7{bottom:587.133333pt;}
.y158{bottom:594.173333pt;}
.y7d{bottom:597.053333pt;}
.y113{bottom:597.213333pt;}
.y17{bottom:601.373333pt;}
.y123{bottom:604.573333pt;}
.y4a{bottom:605.213333pt;}
.ya6{bottom:605.853333pt;}
.y157{bottom:612.893333pt;}
.y7c{bottom:615.773333pt;}
.y112{bottom:615.933333pt;}
.y16{bottom:620.093333pt;}
.y122{bottom:623.293333pt;}
.y49{bottom:623.933333pt;}
.y156{bottom:631.613333pt;}
.ya5{bottom:632.573333pt;}
.y7b{bottom:634.493333pt;}
.y111{bottom:634.653333pt;}
.y121{bottom:636.733333pt;}
.y15{bottom:638.813333pt;}
.y48{bottom:642.653333pt;}
.ye0{bottom:646.173333pt;}
.y155{bottom:650.333333pt;}
.ya4{bottom:651.293333pt;}
.y7a{bottom:653.213333pt;}
.y110{bottom:653.373333pt;}
.y120{bottom:653.693333pt;}
.y14{bottom:657.533333pt;}
.y47{bottom:661.373333pt;}
.y154{bottom:669.053333pt;}
.ya3{bottom:670.013333pt;}
.y11e{bottom:670.653333pt;}
.y79{bottom:671.933333pt;}
.y10f{bottom:672.093333pt;}
.y13{bottom:676.253333pt;}
.y46{bottom:680.093333pt;}
.y153{bottom:687.773333pt;}
.ya2{bottom:688.733333pt;}
.y78{bottom:690.653333pt;}
.y10e{bottom:690.813333pt;}
.y11d{bottom:694.653333pt;}
.y12{bottom:694.973333pt;}
.y45{bottom:698.813333pt;}
.y152{bottom:706.493333pt;}
.ya1{bottom:707.453333pt;}
.y77{bottom:709.373333pt;}
.y10d{bottom:709.533333pt;}
.y11{bottom:713.693333pt;}
.ydd{bottom:715.773333pt;}
.y44{bottom:717.533333pt;}
.y151{bottom:725.213333pt;}
.ya0{bottom:726.173333pt;}
.y76{bottom:728.093333pt;}
.y10c{bottom:728.253333pt;}
.y10{bottom:732.413333pt;}
.y43{bottom:736.253333pt;}
.y150{bottom:743.773333pt;}
.y9f{bottom:744.893333pt;}
.y75{bottom:746.813333pt;}
.y10b{bottom:746.973333pt;}
.ydc{bottom:750.813333pt;}
.yf{bottom:751.133333pt;}
.y42{bottom:754.973333pt;}
.y14f{bottom:762.493333pt;}
.y9e{bottom:763.613333pt;}
.y74{bottom:765.533333pt;}
.y10a{bottom:765.693333pt;}
.ye{bottom:769.893333pt;}
.y41{bottom:773.733333pt;}
.y73{bottom:779.013333pt;}
.y14e{bottom:781.253333pt;}
.y9d{bottom:782.373333pt;}
.y109{bottom:784.453333pt;}
.yd{bottom:788.773333pt;}
.y40{bottom:792.453333pt;}
.y72{bottom:795.973333pt;}
.y14d{bottom:799.973333pt;}
.y9c{bottom:801.093333pt;}
.y108{bottom:803.173333pt;}
.yc{bottom:809.413333pt;}
.y3f{bottom:811.173333pt;}
.y70{bottom:813.573333pt;}
.y14c{bottom:818.693333pt;}
.y9b{bottom:819.813333pt;}
.y107{bottom:821.893333pt;}
.y3e{bottom:829.893333pt;}
.yb{bottom:832.773333pt;}
.y14b{bottom:837.413333pt;}
.y106{bottom:840.613333pt;}
.y9a{bottom:846.533333pt;}
.ya{bottom:847.493333pt;}
.y6e{bottom:847.653333pt;}
.y3d{bottom:848.613333pt;}
.y14a{bottom:856.133333pt;}
.y105{bottom:859.333333pt;}
.y99{bottom:865.253333pt;}
.y9{bottom:867.333333pt;}
.y149{bottom:874.853333pt;}
.y104{bottom:878.053333pt;}
.y6c{bottom:881.093333pt;}
.y98{bottom:884.773333pt;}
.y8{bottom:885.893333pt;}
.y3c{bottom:886.053333pt;}
.y148{bottom:893.573333pt;}
.y103{bottom:896.773333pt;}
.y6a{bottom:900.613333pt;}
.y97{bottom:904.133333pt;}
.y3b{bottom:904.773333pt;}
.y7{bottom:911.973333pt;}
.y147{bottom:912.293333pt;}
.y102{bottom:915.493333pt;}
.y68{bottom:917.573333pt;}
.y3a{bottom:923.493333pt;}
.y146{bottom:925.893333pt;}
.y101{bottom:934.213333pt;}
.y66{bottom:935.173333pt;}
.y39{bottom:942.213333pt;}
.y145{bottom:942.693333pt;}
.y5{bottom:945.893333pt;}
.y38{bottom:960.933333pt;}
.y144{bottom:965.573333pt;}
.y4{bottom:972.773333pt;}
.y37{bottom:979.653333pt;}
.y143{bottom:984.293333pt;}
.y142{bottom:997.733333pt;}
.y36{bottom:998.373333pt;}
.y3{bottom:999.653333pt;}
.y141{bottom:1014.720000pt;}
.y35{bottom:1017.120000pt;}
.y2{bottom:1026.400000pt;}
.y140{bottom:1031.680000pt;}
.y34{bottom:1035.840000pt;}
.y1{bottom:1056.640000pt;}
.y33{bottom:1060.640000pt;}
.hc{height:16.160000pt;}
.h10{height:16.320000pt;}
.h11{height:16.352000pt;}
.hb{height:16.960000pt;}
.hd{height:18.880000pt;}
.ha{height:19.200000pt;}
.h16{height:23.360000pt;}
.he{height:32.800000pt;}
.hf{height:33.440000pt;}
.h14{height:33.760000pt;}
.h7{height:34.374375pt;}
.h12{height:34.400000pt;}
.h8{height:46.454062pt;}
.h9{height:52.834688pt;}
.h15{height:52.934375pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h13{height:68.960000pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:48.320000pt;}
.w6{width:49.920000pt;}
.w4{width:49.952000pt;}
.w5{width:50.080000pt;}
.w7{width:50.112000pt;}
.w9{width:56.832000pt;}
.w8{width:60.160000pt;}
.wc{width:71.520000pt;}
.w14{width:90.400000pt;}
.wb{width:100.032000pt;}
.we{width:121.440000pt;}
.wf{width:149.120000pt;}
.w11{width:169.466667pt;}
.w3{width:171.226667pt;}
.w13{width:226.306667pt;}
.w10{width:274.466667pt;}
.w12{width:282.586667pt;}
.w15{width:299.866667pt;}
.w16{width:300.066667pt;}
.wd{width:345.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:5.919988pt;}
.x8{left:6.880000pt;}
.x6{left:47.999988pt;}
.x7{left:71.360000pt;}
.x12{left:76.800000pt;}
.x18{left:96.672000pt;}
.x16{left:99.712000pt;}
.x5{left:139.066655pt;}
.x13{left:177.466667pt;}
.x3{left:242.106655pt;}
.x9{left:243.226667pt;}
.x14{left:249.626667pt;}
.xa{left:293.986667pt;}
.x2{left:311.746655pt;}
.xb{left:344.706667pt;}
.x4{left:372.706655pt;}
.x19{left:379.906667pt;}
.xc{left:395.266667pt;}
.x1b{left:397.186667pt;}
.x1{left:426.173322pt;}
.xd{left:446.173333pt;}
.xe{left:506.973333pt;}
.x17{left:524.733333pt;}
.xf{left:567.773333pt;}
.x15{left:595.653333pt;}
.x1a{left:606.853333pt;}
.x10{left:625.253333pt;}
.x11{left:674.213333pt;}
.x1d{left:746.053322pt;}
}




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