
    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_0bed3905b10b9298e63b9d80.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_7c20c6554efb956c8f9a3de6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.727539;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_e1e675e5b29083aeab505a4f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.917480;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_e1b19e4983de42b0f0311a2e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.690918;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_29a04cca1eb925dee968fa8a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.006836;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_fdc0911f11a109cf5cf79547.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_292fd62315df4a59d6db3e21.woff2')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_82417e01d46867ac286c7918.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_766c71f82e47dce20de84991.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_fbef39df3449eda916559779.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_bba3e99c98892fc9f9255972.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.917480;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:ffc;src:url('chunks/assets/font_2306d4c2d1ea73ad97a41b4b.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v2{vertical-align:-15.984000px;}
.v3{vertical-align:-11.138790px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.971400px;}
.ls4{letter-spacing:-4.440000px;}
.ls13{letter-spacing:-0.532843px;}
.ls12{letter-spacing:-0.444036px;}
.ls10{letter-spacing:-0.177614px;}
.ls11{letter-spacing:-0.088807px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000600px;}
.ls3{letter-spacing:0.009000px;}
.ls14{letter-spacing:0.088807px;}
.lsb{letter-spacing:0.177614px;}
.lsc{letter-spacing:0.266422px;}
.lse{letter-spacing:0.525001px;}
.lsf{letter-spacing:0.525601px;}
.ls15{letter-spacing:0.532843px;}
.lsd{letter-spacing:0.754861px;}
.ls16{letter-spacing:1.287704px;}
.ls0{letter-spacing:1.890000px;}
.ls5{letter-spacing:4.604400px;}
.lsa{letter-spacing:4.854000px;}
.ls7{letter-spacing:8.499000px;}
.ls8{letter-spacing:12.258000px;}
.ls1{letter-spacing:16.512600px;}
.ls9{letter-spacing:19.555800px;}
.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;}
}
.ws2{word-spacing:-21.000000px;}
.ws4{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.500000px;}
.ws3b{word-spacing:-12.388604px;}
.ws1{word-spacing:-12.243000px;}
.ws20{word-spacing:-12.000000px;}
.ws39{word-spacing:-11.855761px;}
.ws38{word-spacing:-11.278514px;}
.ws3a{word-spacing:-11.100900px;}
.ws36{word-spacing:-11.012093px;}
.ws35{word-spacing:-10.923286px;}
.ws37{word-spacing:-10.656864px;}
.ws10{word-spacing:-10.500000px;}
.ws21{word-spacing:-6.996000px;}
.ws17{word-spacing:-6.780000px;}
.ws4e{word-spacing:-6.720000px;}
.ws30{word-spacing:-3.420000px;}
.ws2a{word-spacing:-3.300000px;}
.ws4f{word-spacing:-3.216000px;}
.wsa{word-spacing:-3.120000px;}
.ws58{word-spacing:-3.072000px;}
.ws7{word-spacing:-2.916000px;}
.ws47{word-spacing:-2.880000px;}
.ws1d{word-spacing:-2.760000px;}
.ws31{word-spacing:-2.580000px;}
.ws1c{word-spacing:-2.460000px;}
.ws52{word-spacing:-2.208000px;}
.ws25{word-spacing:-1.920000px;}
.ws6{word-spacing:-1.890000px;}
.ws14{word-spacing:-1.560000px;}
.ws8{word-spacing:-1.512000px;}
.ws18{word-spacing:-1.500000px;}
.wsd{word-spacing:-1.440000px;}
.ws1f{word-spacing:-1.188000px;}
.ws63{word-spacing:-1.154494px;}
.ws69{word-spacing:-0.932476px;}
.ws28{word-spacing:-0.900000px;}
.ws4d{word-spacing:-0.816000px;}
.ws60{word-spacing:-0.754861px;}
.ws3e{word-spacing:-0.720000px;}
.ws62{word-spacing:-0.577247px;}
.ws68{word-spacing:-0.532843px;}
.ws3c{word-spacing:-0.528000px;}
.wsb{word-spacing:-0.480000px;}
.ws2f{word-spacing:-0.420000px;}
.ws59{word-spacing:-0.384000px;}
.ws66{word-spacing:-0.310825px;}
.ws5f{word-spacing:-0.222018px;}
.ws61{word-spacing:-0.177614px;}
.ws0{word-spacing:-0.096000px;}
.ws67{word-spacing:-0.088807px;}
.ws4c{word-spacing:-0.048000px;}
.ws2d{word-spacing:-0.039546px;}
.ws5{word-spacing:0.000000px;}
.ws65{word-spacing:0.044404px;}
.ws5d{word-spacing:0.088807px;}
.ws64{word-spacing:0.133211px;}
.ws5c{word-spacing:0.177614px;}
.ws23{word-spacing:0.192000px;}
.ws45{word-spacing:0.336000px;}
.ws49{word-spacing:0.432000px;}
.ws5e{word-spacing:0.444036px;}
.ws34{word-spacing:0.660000px;}
.ws12{word-spacing:0.780000px;}
.ws2c{word-spacing:0.918000px;}
.ws48{word-spacing:1.392000px;}
.ws4a{word-spacing:2.256000px;}
.ws5b{word-spacing:2.808000px;}
.ws13{word-spacing:2.880000px;}
.ws1e{word-spacing:3.000000px;}
.ws46{word-spacing:3.120000px;}
.ws56{word-spacing:3.456000px;}
.ws24{word-spacing:3.600000px;}
.ws42{word-spacing:3.744000px;}
.ws1b{word-spacing:4.440000px;}
.ws4b{word-spacing:4.704000px;}
.ws57{word-spacing:4.848000px;}
.ws32{word-spacing:5.040000px;}
.ws43{word-spacing:5.088000px;}
.ws53{word-spacing:5.472000px;}
.ws3f{word-spacing:5.904000px;}
.ws22{word-spacing:6.048000px;}
.wsf{word-spacing:6.360000px;}
.ws55{word-spacing:6.384000px;}
.ws40{word-spacing:6.768000px;}
.ws9{word-spacing:7.320000px;}
.ws15{word-spacing:7.380000px;}
.ws19{word-spacing:8.400000px;}
.ws26{word-spacing:8.496000px;}
.ws2b{word-spacing:8.580000px;}
.ws41{word-spacing:8.736000px;}
.ws3d{word-spacing:9.792000px;}
.ws54{word-spacing:10.224000px;}
.ws16{word-spacing:10.740000px;}
.ws50{word-spacing:12.192000px;}
.ws5a{word-spacing:13.488000px;}
.ws11{word-spacing:15.300000px;}
.ws1a{word-spacing:16.080000px;}
.ws29{word-spacing:17.220000px;}
.ws27{word-spacing:17.820000px;}
.ws33{word-spacing:19.560000px;}
.wse{word-spacing:19.680000px;}
.ws51{word-spacing:24.000000px;}
.ws44{word-spacing:31.440000px;}
.wsc{word-spacing:40.800000px;}
.ws2e{word-spacing:382.249000px;}
._1c{margin-left:-2902.517400px;}
._1b{margin-left:-1286.448000px;}
._22{margin-left:-12.279000px;}
._23{margin-left:-8.950800px;}
._1{margin-left:-6.971400px;}
._4{margin-left:-5.280000px;}
._17{margin-left:-4.278000px;}
._6{margin-left:-3.230400px;}
._3{margin-left:-1.922400px;}
._5{width:1.486800px;}
._12{width:2.638200px;}
._11{width:4.224600px;}
._1d{width:5.226000px;}
._7{width:6.227400px;}
._8{width:7.770000px;}
._9{width:9.714000px;}
._16{width:11.268000px;}
._f{width:12.432000px;}
._b{width:13.890000px;}
._21{width:15.006000px;}
._14{width:16.423800px;}
._13{width:18.558000px;}
._1a{width:19.902000px;}
._a{width:21.876000px;}
._18{width:23.047800px;}
._1e{width:24.762000px;}
._10{width:27.840000px;}
._15{width:31.500000px;}
._19{width:32.886000px;}
._e{width:40.806000px;}
._d{width:44.286000px;}
._c{width:45.330000px;}
._1f{width:49.199400px;}
._20{width:50.394000px;}
._0{width:185.952000px;}
._2{width:1205.517000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:26.364000px;}
.fs7{font-size:27.984000px;}
.fsa{font-size:34.273200px;}
.fs9{font-size:39.546000px;}
.fs6{font-size:42.000000px;}
.fsc{font-size:44.403600px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:48.972000px;}
.fs0{font-size:54.000000px;}
.fsb{font-size:58.183800px;}
.fs5{font-size:60.000000px;}
.fsd{font-size:64.308600px;}
.fse{font-size:70.433400px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.y168{bottom:-33.752850px;}
.y167{bottom:-13.847850px;}
.y0{bottom:0.000000px;}
.y151{bottom:2.296050px;}
.y165{bottom:2.296950px;}
.y147{bottom:2.297700px;}
.y15c{bottom:2.298000px;}
.y145{bottom:27.944400px;}
.y158{bottom:53.591700px;}
.y152{bottom:66.221850px;}
.y141{bottom:66.223350px;}
.y160{bottom:66.605550px;}
.y95{bottom:72.399600px;}
.y30{bottom:72.759600px;}
.y4e{bottom:74.559600px;}
.y14b{bottom:79.236600px;}
.y15e{bottom:79.237650px;}
.y11d{bottom:81.519600px;}
.ya6{bottom:86.064900px;}
.yb7{bottom:86.079600px;}
.y94{bottom:90.399600px;}
.y2f{bottom:90.759600px;}
.y4d{bottom:92.559600px;}
.y11c{bottom:95.919600px;}
.ya5{bottom:104.064900px;}
.yb6{bottom:104.079600px;}
.y93{bottom:108.399600px;}
.y2e{bottom:108.759600px;}
.y11b{bottom:110.319600px;}
.y4c{bottom:110.559600px;}
.ya4{bottom:122.064900px;}
.yb5{bottom:122.079600px;}
.y92{bottom:126.399600px;}
.y2d{bottom:126.759600px;}
.y4b{bottom:128.559600px;}
.y11a{bottom:130.719600px;}
.ya3{bottom:140.064900px;}
.yb4{bottom:140.079600px;}
.y91{bottom:144.399600px;}
.y2c{bottom:144.759600px;}
.y119{bottom:145.119600px;}
.y4a{bottom:146.559600px;}
.ya2{bottom:158.064900px;}
.yb3{bottom:158.079600px;}
.y118{bottom:159.519600px;}
.y2b{bottom:162.759600px;}
.y49{bottom:164.559600px;}
.ya1{bottom:176.064900px;}
.yb2{bottom:176.079600px;}
.y90{bottom:176.799600px;}
.y117{bottom:179.919600px;}
.y2a{bottom:180.759600px;}
.y48{bottom:182.559600px;}
.y8f{bottom:191.199600px;}
.ya0{bottom:194.064900px;}
.yb1{bottom:194.079600px;}
.y116{bottom:194.319600px;}
.y29{bottom:198.759600px;}
.y47{bottom:200.559600px;}
.y8e{bottom:205.599600px;}
.y115{bottom:208.719600px;}
.y9f{bottom:212.064900px;}
.yb0{bottom:212.079600px;}
.y28{bottom:216.759600px;}
.y46{bottom:218.559600px;}
.y8d{bottom:219.999600px;}
.y13b{bottom:227.793000px;}
.y114{bottom:229.119600px;}
.y9e{bottom:230.064900px;}
.yaf{bottom:230.079600px;}
.y8c{bottom:234.399600px;}
.y27{bottom:234.759600px;}
.y45{bottom:236.559600px;}
.y13a{bottom:242.193000px;}
.y113{bottom:243.519600px;}
.y9d{bottom:248.064900px;}
.yae{bottom:248.079600px;}
.y8b{bottom:248.799600px;}
.y26{bottom:252.759600px;}
.y44{bottom:254.559600px;}
.y139{bottom:256.593000px;}
.y112{bottom:257.919600px;}
.y8a{bottom:263.199600px;}
.y9c{bottom:266.064900px;}
.yad{bottom:266.079600px;}
.y25{bottom:270.759600px;}
.y138{bottom:270.993000px;}
.y111{bottom:272.319600px;}
.y43{bottom:272.559600px;}
.yac{bottom:284.079600px;}
.y137{bottom:285.393000px;}
.y24{bottom:288.759600px;}
.y42{bottom:290.559600px;}
.y89{bottom:291.999600px;}
.y110{bottom:292.719600px;}
.y136{bottom:299.793000px;}
.y9b{bottom:302.064900px;}
.yab{bottom:302.079600px;}
.y88{bottom:306.399600px;}
.y23{bottom:306.759600px;}
.y10f{bottom:307.119600px;}
.y41{bottom:308.559600px;}
.yaa{bottom:320.079600px;}
.y135{bottom:320.193000px;}
.y87{bottom:320.799600px;}
.y10e{bottom:321.519600px;}
.y22{bottom:324.759600px;}
.y40{bottom:326.559600px;}
.y134{bottom:334.593000px;}
.y86{bottom:335.199600px;}
.y9a{bottom:338.064900px;}
.ya9{bottom:338.079600px;}
.y10d{bottom:341.919600px;}
.y21{bottom:342.759600px;}
.y3f{bottom:344.559600px;}
.y13f{bottom:345.974100px;}
.y133{bottom:348.993000px;}
.y99{bottom:356.064900px;}
.ya8{bottom:356.079600px;}
.y10c{bottom:356.319600px;}
.y20{bottom:360.759600px;}
.y3e{bottom:362.559600px;}
.y132{bottom:363.393000px;}
.y85{bottom:363.999600px;}
.y10b{bottom:370.719600px;}
.y98{bottom:374.064900px;}
.ya7{bottom:374.079600px;}
.y1f{bottom:378.759600px;}
.y3d{bottom:380.559600px;}
.y131{bottom:383.793000px;}
.y10a{bottom:385.119600px;}
.y84{bottom:392.799600px;}
.y1e{bottom:396.759600px;}
.y130{bottom:398.193000px;}
.y3c{bottom:398.559600px;}
.y109{bottom:399.519600px;}
.y83{bottom:407.199600px;}
.y108{bottom:413.919600px;}
.yf9{bottom:413.986500px;}
.y1d{bottom:414.759600px;}
.y51{bottom:416.559600px;}
.y12f{bottom:418.593000px;}
.y82{bottom:421.599600px;}
.y107{bottom:428.319600px;}
.yf8{bottom:430.186500px;}
.y1c{bottom:432.759600px;}
.y12e{bottom:432.993000px;}
.y3b{bottom:434.559600px;}
.y81{bottom:435.999600px;}
.y106{bottom:442.719600px;}
.yf7{bottom:446.386500px;}
.y12d{bottom:447.393000px;}
.y80{bottom:450.399600px;}
.y1b{bottom:450.759600px;}
.y3a{bottom:452.559600px;}
.y105{bottom:457.119600px;}
.y12c{bottom:461.793000px;}
.y7f{bottom:464.799600px;}
.yb8{bottom:465.029550px;}
.y1a{bottom:468.759600px;}
.y39{bottom:470.559600px;}
.y12b{bottom:476.193000px;}
.y104{bottom:477.519600px;}
.y7e{bottom:479.199600px;}
.y19{bottom:486.759600px;}
.y50{bottom:488.559600px;}
.y12a{bottom:490.593000px;}
.y103{bottom:491.919600px;}
.y7d{bottom:493.599600px;}
.ycc{bottom:494.689560px;}
.y38{bottom:506.559600px;}
.y7c{bottom:507.999600px;}
.yd9{bottom:509.914770px;}
.y129{bottom:510.993000px;}
.y102{bottom:512.319600px;}
.y7b{bottom:522.399600px;}
.y18{bottom:522.759600px;}
.ye7{bottom:523.618213px;}
.yed{bottom:524.423633px;}
.y4f{bottom:524.559600px;}
.yc9{bottom:525.139980px;}
.y128{bottom:525.393000px;}
.y101{bottom:526.719600px;}
.y7a{bottom:536.799600px;}
.ye3{bottom:537.258946px;}
.y127{bottom:539.793000px;}
.yc8{bottom:540.365190px;}
.y37{bottom:542.559600px;}
.y79{bottom:551.199600px;}
.yb9{bottom:555.590400px;}
.y100{bottom:559.119600px;}
.y126{bottom:560.193000px;}
.y36{bottom:560.559600px;}
.y78{bottom:565.599600px;}
.yc7{bottom:570.815610px;}
.y125{bottom:574.593000px;}
.y35{bottom:578.559600px;}
.y77{bottom:579.999600px;}
.yba{bottom:586.040820px;}
.y124{bottom:588.993000px;}
.y76{bottom:594.399600px;}
.yff{bottom:595.119600px;}
.ye6{bottom:595.789004px;}
.y34{bottom:596.559600px;}
.yd6{bottom:601.266030px;}
.y123{bottom:603.393000px;}
.y75{bottom:608.799600px;}
.yfe{bottom:613.119600px;}
.y33{bottom:614.559600px;}
.yf5{bottom:615.778848px;}
.ybc{bottom:616.491240px;}
.y74{bottom:623.199600px;}
.y122{bottom:623.793000px;}
.yfd{bottom:631.119600px;}
.yd2{bottom:631.716450px;}
.y32{bottom:632.559600px;}
.y73{bottom:637.599600px;}
.y121{bottom:638.193000px;}
.y17{bottom:638.946150px;}
.yd8{bottom:646.941660px;}
.yfc{bottom:649.119600px;}
.y31{bottom:650.559600px;}
.y72{bottom:651.999600px;}
.y120{bottom:658.593000px;}
.ye4{bottom:660.205483px;}
.yde{bottom:662.166870px;}
.y71{bottom:666.399600px;}
.yfb{bottom:667.119600px;}
.y11f{bottom:672.993000px;}
.y16{bottom:674.946150px;}
.ycb{bottom:677.392080px;}
.yf0{bottom:680.709425px;}
.y70{bottom:680.799600px;}
.yfa{bottom:685.119600px;}
.y11e{bottom:687.393000px;}
.yeb{bottom:688.378054px;}
.yd7{bottom:692.617290px;}
.y15{bottom:692.946150px;}
.y53{bottom:693.706500px;}
.y6f{bottom:695.199600px;}
.yee{bottom:699.816734px;}
.y97{bottom:706.006500px;}
.ydc{bottom:707.842500px;}
.y6e{bottom:709.599600px;}
.y52{bottom:709.906500px;}
.y14{bottom:710.946150px;}
.ye9{bottom:711.829491px;}
.y96{bottom:722.206500px;}
.yd3{bottom:723.067710px;}
.y6d{bottom:723.999600px;}
.y13{bottom:728.946150px;}
.yec{bottom:732.333433px;}
.ybb{bottom:738.292920px;}
.y6c{bottom:738.399600px;}
.y13e{bottom:739.638000px;}
.ye5{bottom:740.439044px;}
.y15d{bottom:743.781000px;}
.y12{bottom:746.946150px;}
.y6b{bottom:752.799600px;}
.yc4{bottom:753.518130px;}
.y164{bottom:758.722961px;}
.yea{bottom:766.786567px;}
.y6a{bottom:767.199600px;}
.ybd{bottom:768.743340px;}
.y166{bottom:771.722115px;}
.y163{bottom:771.733216px;}
.y69{bottom:781.599600px;}
.y11{bottom:782.946150px;}
.yd5{bottom:783.968550px;}
.y162{bottom:784.743471px;}
.yf3{bottom:792.491467px;}
.y68{bottom:795.999600px;}
.y161{bottom:797.376295px;}
.y10{bottom:799.146000px;}
.yce{bottom:799.193760px;}
.y15f{bottom:810.386550px;}
.y67{bottom:810.399600px;}
.yc6{bottom:814.418970px;}
.yf{bottom:815.346150px;}
.y66{bottom:824.799600px;}
.yca{bottom:829.644180px;}
.ye{bottom:831.546150px;}
.y157{bottom:838.329000px;}
.y65{bottom:839.199600px;}
.ybf{bottom:844.869390px;}
.yd{bottom:847.746150px;}
.y15b{bottom:853.262871px;}
.y64{bottom:853.599600px;}
.yc5{bottom:860.094600px;}
.yc{bottom:863.946150px;}
.y15a{bottom:866.273126px;}
.y63{bottom:867.999600px;}
.yd0{bottom:875.319810px;}
.y159{bottom:878.905950px;}
.y62{bottom:882.399600px;}
.yf1{bottom:886.417171px;}
.ye1{bottom:890.545020px;}
.y61{bottom:896.799600px;}
.yb{bottom:898.146000px;}
.ye0{bottom:905.770230px;}
.yf4{bottom:907.126753px;}
.y14a{bottom:907.233000px;}
.y60{bottom:911.199600px;}
.ya{bottom:912.546150px;}
.yc3{bottom:920.995440px;}
.y150{bottom:922.168692px;}
.y156{bottom:922.169416px;}
.y5f{bottom:925.599600px;}
.y9{bottom:926.946150px;}
.y14f{bottom:935.178947px;}
.y155{bottom:935.179671px;}
.ybe{bottom:936.220650px;}
.y5e{bottom:939.999600px;}
.y8{bottom:941.346150px;}
.y14e{bottom:947.811771px;}
.y154{bottom:947.812495px;}
.yc2{bottom:951.445860px;}
.y5d{bottom:954.399600px;}
.y7{bottom:955.746150px;}
.yf6{bottom:955.966063px;}
.y14d{bottom:960.822026px;}
.y153{bottom:960.822750px;}
.yd1{bottom:966.671070px;}
.y5c{bottom:968.799600px;}
.y6{bottom:970.146000px;}
.y14c{bottom:973.454850px;}
.ye8{bottom:977.780954px;}
.yd4{bottom:981.896280px;}
.y5b{bottom:983.199600px;}
.ydf{bottom:997.121490px;}
.y5a{bottom:997.599600px;}
.y140{bottom:1002.546000px;}
.y5{bottom:1002.546150px;}
.y59{bottom:1011.999600px;}
.ydb{bottom:1012.346700px;}
.y148{bottom:1017.472965px;}
.y146{bottom:1017.475650px;}
.y149{bottom:1017.484066px;}
.y58{bottom:1026.399600px;}
.yc0{bottom:1027.571910px;}
.y4{bottom:1027.746150px;}
.y144{bottom:1030.494321px;}
.yef{bottom:1034.768718px;}
.y57{bottom:1040.799600px;}
.yda{bottom:1042.797120px;}
.y143{bottom:1043.127145px;}
.ye2{bottom:1052.599350px;}
.y142{bottom:1056.137400px;}
.ycd{bottom:1058.022330px;}
.y56{bottom:1069.599600px;}
.y3{bottom:1070.946150px;}
.ycf{bottom:1073.247540px;}
.y55{bottom:1087.599600px;}
.ydd{bottom:1088.472750px;}
.y13d{bottom:1090.426500px;}
.y2{bottom:1099.746150px;}
.yf2{bottom:1102.295490px;}
.yc1{bottom:1103.697960px;}
.y54{bottom:1105.599600px;}
.y13c{bottom:1106.626500px;}
.y1{bottom:1164.671700px;}
.hb{height:19.206586px;}
.hd{height:24.968562px;}
.hc{height:28.809879px;}
.h14{height:30.831015px;}
.h12{height:31.156237px;}
.ha{height:33.222656px;}
.he{height:33.679688px;}
.h5{height:37.968750px;}
.h1{height:39.339844px;}
.h10{height:40.399103px;}
.h8{height:41.660156px;}
.h9{height:42.099609px;}
.h6{height:42.714844px;}
.h17{height:45.122782px;}
.h7{height:47.460938px;}
.h18{height:48.904441px;}
.h3{height:62.333101px;}
.h4{height:62.333701px;}
.h15{height:64.308000px;}
.h2{height:67.359375px;}
.h11{height:76.941000px;}
.h13{height:89.572500px;}
.h16{height:89.956500px;}
.hf{height:343.362000px;}
.h0{height:1188.000000px;}
.w9{width:43.257000px;}
.w3{width:46.317000px;}
.w8{width:50.145000px;}
.w4{width:52.057500px;}
.wc{width:54.357000px;}
.wd{width:57.801000px;}
.w5{width:64.690500px;}
.w2{width:66.604500px;}
.wb{width:73.878000px;}
.w6{width:78.855000px;}
.wa{width:91.102500px;}
.w7{width:93.400500px;}
.w1{width:774.001500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x49{left:1.409850px;}
.x1{left:46.500000px;}
.x5f{left:63.542850px;}
.xf{left:72.000000px;}
.x4a{left:73.410000px;}
.x8{left:75.612300px;}
.x6{left:79.142550px;}
.x7{left:85.766550px;}
.xc{left:88.046700px;}
.x4{left:92.369250px;}
.x11{left:99.000000px;}
.x1a{left:108.000000px;}
.x4b{left:140.016000px;}
.x4c{left:142.311900px;}
.x2{left:153.468750px;}
.x3a{left:168.225692px;}
.xd{left:171.558150px;}
.x44{left:182.209158px;}
.x2a{left:183.915693px;}
.x4d{left:186.333000px;}
.x4e{left:188.629350px;}
.x48{left:191.635950px;}
.x41{left:196.406831px;}
.xb{left:197.671500px;}
.x10{left:204.339900px;}
.x3d{left:238.168725px;}
.x4f{left:240.688800px;}
.x40{left:243.078361px;}
.x45{left:253.900124px;}
.x3{left:258.310500px;}
.x3c{left:279.622161px;}
.x1c{left:281.132850px;}
.x50{left:303.082500px;}
.x51{left:305.380050px;}
.x42{left:308.865769px;}
.x5{left:327.129750px;}
.x3e{left:328.804203px;}
.x1d{left:331.402500px;}
.x36{left:332.727291px;}
.x46{left:335.316111px;}
.xa{left:348.393000px;}
.x23{left:350.513104px;}
.x9{left:353.006850px;}
.x43{left:358.039242px;}
.x39{left:359.915700px;}
.x26{left:363.741241px;}
.x3b{left:370.626075px;}
.x27{left:372.115107px;}
.x20{left:373.172963px;}
.x25{left:376.741989px;}
.x30{left:378.254623px;}
.x1e{left:379.935329px;}
.x38{left:381.358984px;}
.x52{left:384.234750px;}
.x24{left:388.190556px;}
.x35{left:389.614212px;}
.x21{left:390.889570px;}
.x2c{left:392.609821px;}
.x33{left:394.666213px;}
.x2e{left:395.961345px;}
.x22{left:398.581267px;}
.x34{left:400.983687px;}
.xe{left:404.265000px;}
.x3f{left:419.002697px;}
.x2b{left:425.907553px;}
.x37{left:428.784525px;}
.x32{left:431.068306px;}
.x29{left:433.559704px;}
.x31{left:437.514304px;}
.x2d{left:438.858868px;}
.x1f{left:440.470368px;}
.x2f{left:444.751222px;}
.x28{left:464.346265px;}
.x14{left:468.000000px;}
.x53{left:475.339500px;}
.x5d{left:477.635400px;}
.x17{left:480.058650px;}
.x13{left:495.000000px;}
.x16{left:509.603700px;}
.x54{left:525.483000px;}
.x55{left:527.780700px;}
.x47{left:553.950000px;}
.x15{left:561.422550px;}
.x56{left:568.738500px;}
.x57{left:571.035900px;}
.x1b{left:577.839900px;}
.x12{left:620.748750px;}
.x18{left:630.328800px;}
.x58{left:659.844000px;}
.x59{left:662.139750px;}
.x5a{left:733.720500px;}
.x5e{left:736.018050px;}
.x5b{left:788.077500px;}
.x5c{left:790.374150px;}
.x19{left:860.550000px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v3{vertical-align:-9.901147pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.863467pt;}
.ls4{letter-spacing:-3.946667pt;}
.ls13{letter-spacing:-0.473638pt;}
.ls12{letter-spacing:-0.394699pt;}
.ls10{letter-spacing:-0.157879pt;}
.ls11{letter-spacing:-0.078940pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000533pt;}
.ls3{letter-spacing:0.008000pt;}
.ls14{letter-spacing:0.078940pt;}
.lsb{letter-spacing:0.157879pt;}
.lsc{letter-spacing:0.236819pt;}
.lse{letter-spacing:0.466668pt;}
.lsf{letter-spacing:0.467201pt;}
.ls15{letter-spacing:0.473638pt;}
.lsd{letter-spacing:0.670988pt;}
.ls16{letter-spacing:1.144626pt;}
.ls0{letter-spacing:1.680000pt;}
.ls5{letter-spacing:4.092800pt;}
.lsa{letter-spacing:4.314667pt;}
.ls7{letter-spacing:7.554667pt;}
.ls8{letter-spacing:10.896000pt;}
.ls1{letter-spacing:14.677867pt;}
.ls9{letter-spacing:17.382933pt;}
.ws2{word-spacing:-18.666667pt;}
.ws4{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.000000pt;}
.ws3b{word-spacing:-11.012093pt;}
.ws1{word-spacing:-10.882667pt;}
.ws20{word-spacing:-10.666667pt;}
.ws39{word-spacing:-10.538454pt;}
.ws38{word-spacing:-10.025346pt;}
.ws3a{word-spacing:-9.867467pt;}
.ws36{word-spacing:-9.788527pt;}
.ws35{word-spacing:-9.709587pt;}
.ws37{word-spacing:-9.472768pt;}
.ws10{word-spacing:-9.333333pt;}
.ws21{word-spacing:-6.218667pt;}
.ws17{word-spacing:-6.026667pt;}
.ws4e{word-spacing:-5.973333pt;}
.ws30{word-spacing:-3.040000pt;}
.ws2a{word-spacing:-2.933333pt;}
.ws4f{word-spacing:-2.858667pt;}
.wsa{word-spacing:-2.773333pt;}
.ws58{word-spacing:-2.730667pt;}
.ws7{word-spacing:-2.592000pt;}
.ws47{word-spacing:-2.560000pt;}
.ws1d{word-spacing:-2.453333pt;}
.ws31{word-spacing:-2.293333pt;}
.ws1c{word-spacing:-2.186667pt;}
.ws52{word-spacing:-1.962667pt;}
.ws25{word-spacing:-1.706667pt;}
.ws6{word-spacing:-1.680000pt;}
.ws14{word-spacing:-1.386667pt;}
.ws8{word-spacing:-1.344000pt;}
.ws18{word-spacing:-1.333333pt;}
.wsd{word-spacing:-1.280000pt;}
.ws1f{word-spacing:-1.056000pt;}
.ws63{word-spacing:-1.026217pt;}
.ws69{word-spacing:-0.828867pt;}
.ws28{word-spacing:-0.800000pt;}
.ws4d{word-spacing:-0.725333pt;}
.ws60{word-spacing:-0.670988pt;}
.ws3e{word-spacing:-0.640000pt;}
.ws62{word-spacing:-0.513108pt;}
.ws68{word-spacing:-0.473638pt;}
.ws3c{word-spacing:-0.469333pt;}
.wsb{word-spacing:-0.426667pt;}
.ws2f{word-spacing:-0.373333pt;}
.ws59{word-spacing:-0.341333pt;}
.ws66{word-spacing:-0.276289pt;}
.ws5f{word-spacing:-0.197349pt;}
.ws61{word-spacing:-0.157879pt;}
.ws0{word-spacing:-0.085333pt;}
.ws67{word-spacing:-0.078940pt;}
.ws4c{word-spacing:-0.042667pt;}
.ws2d{word-spacing:-0.035152pt;}
.ws5{word-spacing:0.000000pt;}
.ws65{word-spacing:0.039470pt;}
.ws5d{word-spacing:0.078940pt;}
.ws64{word-spacing:0.118410pt;}
.ws5c{word-spacing:0.157879pt;}
.ws23{word-spacing:0.170667pt;}
.ws45{word-spacing:0.298667pt;}
.ws49{word-spacing:0.384000pt;}
.ws5e{word-spacing:0.394699pt;}
.ws34{word-spacing:0.586667pt;}
.ws12{word-spacing:0.693333pt;}
.ws2c{word-spacing:0.816000pt;}
.ws48{word-spacing:1.237333pt;}
.ws4a{word-spacing:2.005333pt;}
.ws5b{word-spacing:2.496000pt;}
.ws13{word-spacing:2.560000pt;}
.ws1e{word-spacing:2.666667pt;}
.ws46{word-spacing:2.773333pt;}
.ws56{word-spacing:3.072000pt;}
.ws24{word-spacing:3.200000pt;}
.ws42{word-spacing:3.328000pt;}
.ws1b{word-spacing:3.946667pt;}
.ws4b{word-spacing:4.181333pt;}
.ws57{word-spacing:4.309333pt;}
.ws32{word-spacing:4.480000pt;}
.ws43{word-spacing:4.522667pt;}
.ws53{word-spacing:4.864000pt;}
.ws3f{word-spacing:5.248000pt;}
.ws22{word-spacing:5.376000pt;}
.wsf{word-spacing:5.653333pt;}
.ws55{word-spacing:5.674667pt;}
.ws40{word-spacing:6.016000pt;}
.ws9{word-spacing:6.506667pt;}
.ws15{word-spacing:6.560000pt;}
.ws19{word-spacing:7.466667pt;}
.ws26{word-spacing:7.552000pt;}
.ws2b{word-spacing:7.626667pt;}
.ws41{word-spacing:7.765333pt;}
.ws3d{word-spacing:8.704000pt;}
.ws54{word-spacing:9.088000pt;}
.ws16{word-spacing:9.546667pt;}
.ws50{word-spacing:10.837333pt;}
.ws5a{word-spacing:11.989333pt;}
.ws11{word-spacing:13.600000pt;}
.ws1a{word-spacing:14.293333pt;}
.ws29{word-spacing:15.306667pt;}
.ws27{word-spacing:15.840000pt;}
.ws33{word-spacing:17.386667pt;}
.wse{word-spacing:17.493333pt;}
.ws51{word-spacing:21.333333pt;}
.ws44{word-spacing:27.946667pt;}
.wsc{word-spacing:36.266667pt;}
.ws2e{word-spacing:339.776889pt;}
._1c{margin-left:-2580.015467pt;}
._1b{margin-left:-1143.509333pt;}
._22{margin-left:-10.914667pt;}
._23{margin-left:-7.956267pt;}
._1{margin-left:-6.196800pt;}
._4{margin-left:-4.693333pt;}
._17{margin-left:-3.802667pt;}
._6{margin-left:-2.871467pt;}
._3{margin-left:-1.708800pt;}
._5{width:1.321600pt;}
._12{width:2.345067pt;}
._11{width:3.755200pt;}
._1d{width:4.645333pt;}
._7{width:5.535467pt;}
._8{width:6.906667pt;}
._9{width:8.634667pt;}
._16{width:10.016000pt;}
._f{width:11.050667pt;}
._b{width:12.346667pt;}
._21{width:13.338667pt;}
._14{width:14.598933pt;}
._13{width:16.496000pt;}
._1a{width:17.690667pt;}
._a{width:19.445333pt;}
._18{width:20.486933pt;}
._1e{width:22.010667pt;}
._10{width:24.746667pt;}
._15{width:28.000000pt;}
._19{width:29.232000pt;}
._e{width:36.272000pt;}
._d{width:39.365333pt;}
._c{width:40.293333pt;}
._1f{width:43.732800pt;}
._20{width:44.794667pt;}
._0{width:165.290667pt;}
._2{width:1071.570667pt;}
.fs8{font-size:23.434667pt;}
.fs7{font-size:24.874667pt;}
.fsa{font-size:30.465067pt;}
.fs9{font-size:35.152000pt;}
.fs6{font-size:37.333333pt;}
.fsc{font-size:39.469867pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:43.530667pt;}
.fs0{font-size:48.000000pt;}
.fsb{font-size:51.718933pt;}
.fs5{font-size:53.333333pt;}
.fsd{font-size:57.163200pt;}
.fse{font-size:62.607467pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.y168{bottom:-30.002533pt;}
.y167{bottom:-12.309200pt;}
.y0{bottom:0.000000pt;}
.y151{bottom:2.040933pt;}
.y165{bottom:2.041733pt;}
.y147{bottom:2.042400pt;}
.y15c{bottom:2.042667pt;}
.y145{bottom:24.839467pt;}
.y158{bottom:47.637067pt;}
.y152{bottom:58.863867pt;}
.y141{bottom:58.865200pt;}
.y160{bottom:59.204933pt;}
.y95{bottom:64.355200pt;}
.y30{bottom:64.675200pt;}
.y4e{bottom:66.275200pt;}
.y14b{bottom:70.432533pt;}
.y15e{bottom:70.433467pt;}
.y11d{bottom:72.461867pt;}
.ya6{bottom:76.502133pt;}
.yb7{bottom:76.515200pt;}
.y94{bottom:80.355200pt;}
.y2f{bottom:80.675200pt;}
.y4d{bottom:82.275200pt;}
.y11c{bottom:85.261867pt;}
.ya5{bottom:92.502133pt;}
.yb6{bottom:92.515200pt;}
.y93{bottom:96.355200pt;}
.y2e{bottom:96.675200pt;}
.y11b{bottom:98.061867pt;}
.y4c{bottom:98.275200pt;}
.ya4{bottom:108.502133pt;}
.yb5{bottom:108.515200pt;}
.y92{bottom:112.355200pt;}
.y2d{bottom:112.675200pt;}
.y4b{bottom:114.275200pt;}
.y11a{bottom:116.195200pt;}
.ya3{bottom:124.502133pt;}
.yb4{bottom:124.515200pt;}
.y91{bottom:128.355200pt;}
.y2c{bottom:128.675200pt;}
.y119{bottom:128.995200pt;}
.y4a{bottom:130.275200pt;}
.ya2{bottom:140.502133pt;}
.yb3{bottom:140.515200pt;}
.y118{bottom:141.795200pt;}
.y2b{bottom:144.675200pt;}
.y49{bottom:146.275200pt;}
.ya1{bottom:156.502133pt;}
.yb2{bottom:156.515200pt;}
.y90{bottom:157.155200pt;}
.y117{bottom:159.928533pt;}
.y2a{bottom:160.675200pt;}
.y48{bottom:162.275200pt;}
.y8f{bottom:169.955200pt;}
.ya0{bottom:172.502133pt;}
.yb1{bottom:172.515200pt;}
.y116{bottom:172.728533pt;}
.y29{bottom:176.675200pt;}
.y47{bottom:178.275200pt;}
.y8e{bottom:182.755200pt;}
.y115{bottom:185.528533pt;}
.y9f{bottom:188.502133pt;}
.yb0{bottom:188.515200pt;}
.y28{bottom:192.675200pt;}
.y46{bottom:194.275200pt;}
.y8d{bottom:195.555200pt;}
.y13b{bottom:202.482667pt;}
.y114{bottom:203.661867pt;}
.y9e{bottom:204.502133pt;}
.yaf{bottom:204.515200pt;}
.y8c{bottom:208.355200pt;}
.y27{bottom:208.675200pt;}
.y45{bottom:210.275200pt;}
.y13a{bottom:215.282667pt;}
.y113{bottom:216.461867pt;}
.y9d{bottom:220.502133pt;}
.yae{bottom:220.515200pt;}
.y8b{bottom:221.155200pt;}
.y26{bottom:224.675200pt;}
.y44{bottom:226.275200pt;}
.y139{bottom:228.082667pt;}
.y112{bottom:229.261867pt;}
.y8a{bottom:233.955200pt;}
.y9c{bottom:236.502133pt;}
.yad{bottom:236.515200pt;}
.y25{bottom:240.675200pt;}
.y138{bottom:240.882667pt;}
.y111{bottom:242.061867pt;}
.y43{bottom:242.275200pt;}
.yac{bottom:252.515200pt;}
.y137{bottom:253.682667pt;}
.y24{bottom:256.675200pt;}
.y42{bottom:258.275200pt;}
.y89{bottom:259.555200pt;}
.y110{bottom:260.195200pt;}
.y136{bottom:266.482667pt;}
.y9b{bottom:268.502133pt;}
.yab{bottom:268.515200pt;}
.y88{bottom:272.355200pt;}
.y23{bottom:272.675200pt;}
.y10f{bottom:272.995200pt;}
.y41{bottom:274.275200pt;}
.yaa{bottom:284.515200pt;}
.y135{bottom:284.616000pt;}
.y87{bottom:285.155200pt;}
.y10e{bottom:285.795200pt;}
.y22{bottom:288.675200pt;}
.y40{bottom:290.275200pt;}
.y134{bottom:297.416000pt;}
.y86{bottom:297.955200pt;}
.y9a{bottom:300.502133pt;}
.ya9{bottom:300.515200pt;}
.y10d{bottom:303.928533pt;}
.y21{bottom:304.675200pt;}
.y3f{bottom:306.275200pt;}
.y13f{bottom:307.532533pt;}
.y133{bottom:310.216000pt;}
.y99{bottom:316.502133pt;}
.ya8{bottom:316.515200pt;}
.y10c{bottom:316.728533pt;}
.y20{bottom:320.675200pt;}
.y3e{bottom:322.275200pt;}
.y132{bottom:323.016000pt;}
.y85{bottom:323.555200pt;}
.y10b{bottom:329.528533pt;}
.y98{bottom:332.502133pt;}
.ya7{bottom:332.515200pt;}
.y1f{bottom:336.675200pt;}
.y3d{bottom:338.275200pt;}
.y131{bottom:341.149333pt;}
.y10a{bottom:342.328533pt;}
.y84{bottom:349.155200pt;}
.y1e{bottom:352.675200pt;}
.y130{bottom:353.949333pt;}
.y3c{bottom:354.275200pt;}
.y109{bottom:355.128533pt;}
.y83{bottom:361.955200pt;}
.y108{bottom:367.928533pt;}
.yf9{bottom:367.988000pt;}
.y1d{bottom:368.675200pt;}
.y51{bottom:370.275200pt;}
.y12f{bottom:372.082667pt;}
.y82{bottom:374.755200pt;}
.y107{bottom:380.728533pt;}
.yf8{bottom:382.388000pt;}
.y1c{bottom:384.675200pt;}
.y12e{bottom:384.882667pt;}
.y3b{bottom:386.275200pt;}
.y81{bottom:387.555200pt;}
.y106{bottom:393.528533pt;}
.yf7{bottom:396.788000pt;}
.y12d{bottom:397.682667pt;}
.y80{bottom:400.355200pt;}
.y1b{bottom:400.675200pt;}
.y3a{bottom:402.275200pt;}
.y105{bottom:406.328533pt;}
.y12c{bottom:410.482667pt;}
.y7f{bottom:413.155200pt;}
.yb8{bottom:413.359600pt;}
.y1a{bottom:416.675200pt;}
.y39{bottom:418.275200pt;}
.y12b{bottom:423.282667pt;}
.y104{bottom:424.461867pt;}
.y7e{bottom:425.955200pt;}
.y19{bottom:432.675200pt;}
.y50{bottom:434.275200pt;}
.y12a{bottom:436.082667pt;}
.y103{bottom:437.261867pt;}
.y7d{bottom:438.755200pt;}
.ycc{bottom:439.724053pt;}
.y38{bottom:450.275200pt;}
.y7c{bottom:451.555200pt;}
.yd9{bottom:453.257573pt;}
.y129{bottom:454.216000pt;}
.y102{bottom:455.395200pt;}
.y7b{bottom:464.355200pt;}
.y18{bottom:464.675200pt;}
.ye7{bottom:465.438411pt;}
.yed{bottom:466.154341pt;}
.y4f{bottom:466.275200pt;}
.yc9{bottom:466.791093pt;}
.y128{bottom:467.016000pt;}
.y101{bottom:468.195200pt;}
.y7a{bottom:477.155200pt;}
.ye3{bottom:477.563508pt;}
.y127{bottom:479.816000pt;}
.yc8{bottom:480.324613pt;}
.y37{bottom:482.275200pt;}
.y79{bottom:489.955200pt;}
.yb9{bottom:493.858133pt;}
.y100{bottom:496.995200pt;}
.y126{bottom:497.949333pt;}
.y36{bottom:498.275200pt;}
.y78{bottom:502.755200pt;}
.yc7{bottom:507.391653pt;}
.y125{bottom:510.749333pt;}
.y35{bottom:514.275200pt;}
.y77{bottom:515.555200pt;}
.yba{bottom:520.925173pt;}
.y124{bottom:523.549333pt;}
.y76{bottom:528.355200pt;}
.yff{bottom:528.995200pt;}
.ye6{bottom:529.590226pt;}
.y34{bottom:530.275200pt;}
.yd6{bottom:534.458693pt;}
.y123{bottom:536.349333pt;}
.y75{bottom:541.155200pt;}
.yfe{bottom:544.995200pt;}
.y33{bottom:546.275200pt;}
.yf5{bottom:547.358976pt;}
.ybc{bottom:547.992213pt;}
.y74{bottom:553.955200pt;}
.y122{bottom:554.482667pt;}
.yfd{bottom:560.995200pt;}
.yd2{bottom:561.525733pt;}
.y32{bottom:562.275200pt;}
.y73{bottom:566.755200pt;}
.y121{bottom:567.282667pt;}
.y17{bottom:567.952133pt;}
.yd8{bottom:575.059253pt;}
.yfc{bottom:576.995200pt;}
.y31{bottom:578.275200pt;}
.y72{bottom:579.555200pt;}
.y120{bottom:585.416000pt;}
.ye4{bottom:586.849318pt;}
.yde{bottom:588.592773pt;}
.y71{bottom:592.355200pt;}
.yfb{bottom:592.995200pt;}
.y11f{bottom:598.216000pt;}
.y16{bottom:599.952133pt;}
.ycb{bottom:602.126293pt;}
.yf0{bottom:605.075045pt;}
.y70{bottom:605.155200pt;}
.yfa{bottom:608.995200pt;}
.y11e{bottom:611.016000pt;}
.yeb{bottom:611.891603pt;}
.yd7{bottom:615.659813pt;}
.y15{bottom:615.952133pt;}
.y53{bottom:616.628000pt;}
.y6f{bottom:617.955200pt;}
.yee{bottom:622.059319pt;}
.y97{bottom:627.561333pt;}
.ydc{bottom:629.193333pt;}
.y6e{bottom:630.755200pt;}
.y52{bottom:631.028000pt;}
.y14{bottom:631.952133pt;}
.ye9{bottom:632.737325pt;}
.y96{bottom:641.961333pt;}
.yd3{bottom:642.726853pt;}
.y6d{bottom:643.555200pt;}
.y13{bottom:647.952133pt;}
.yec{bottom:650.963051pt;}
.ybb{bottom:656.260373pt;}
.y6c{bottom:656.355200pt;}
.y13e{bottom:657.456000pt;}
.ye5{bottom:658.168039pt;}
.y15d{bottom:661.138667pt;}
.y12{bottom:663.952133pt;}
.y6b{bottom:669.155200pt;}
.yc4{bottom:669.793893pt;}
.y164{bottom:674.420410pt;}
.yea{bottom:681.588059pt;}
.y6a{bottom:681.955200pt;}
.ybd{bottom:683.327413pt;}
.y166{bottom:685.975214pt;}
.y163{bottom:685.985081pt;}
.y69{bottom:694.755200pt;}
.y11{bottom:695.952133pt;}
.yd5{bottom:696.860933pt;}
.y162{bottom:697.549752pt;}
.yf3{bottom:704.436859pt;}
.y68{bottom:707.555200pt;}
.y161{bottom:708.778929pt;}
.y10{bottom:710.352000pt;}
.yce{bottom:710.394453pt;}
.y15f{bottom:720.343600pt;}
.y67{bottom:720.355200pt;}
.yc6{bottom:723.927973pt;}
.yf{bottom:724.752133pt;}
.y66{bottom:733.155200pt;}
.yca{bottom:737.461493pt;}
.ye{bottom:739.152133pt;}
.y157{bottom:745.181333pt;}
.y65{bottom:745.955200pt;}
.ybf{bottom:750.995013pt;}
.yd{bottom:753.552133pt;}
.y15b{bottom:758.455885pt;}
.y64{bottom:758.755200pt;}
.yc5{bottom:764.528533pt;}
.yc{bottom:767.952133pt;}
.y15a{bottom:770.020556pt;}
.y63{bottom:771.555200pt;}
.yd0{bottom:778.062053pt;}
.y159{bottom:781.249733pt;}
.y62{bottom:784.355200pt;}
.yf1{bottom:787.926375pt;}
.ye1{bottom:791.595573pt;}
.y61{bottom:797.155200pt;}
.yb{bottom:798.352000pt;}
.ye0{bottom:805.129093pt;}
.yf4{bottom:806.334891pt;}
.y14a{bottom:806.429333pt;}
.y60{bottom:809.955200pt;}
.ya{bottom:811.152133pt;}
.yc3{bottom:818.662613pt;}
.y150{bottom:819.705504pt;}
.y156{bottom:819.706148pt;}
.y5f{bottom:822.755200pt;}
.y9{bottom:823.952133pt;}
.y14f{bottom:831.270175pt;}
.y155{bottom:831.270819pt;}
.ybe{bottom:832.196133pt;}
.y5e{bottom:835.555200pt;}
.y8{bottom:836.752133pt;}
.y14e{bottom:842.499352pt;}
.y154{bottom:842.499996pt;}
.yc2{bottom:845.729653pt;}
.y5d{bottom:848.355200pt;}
.y7{bottom:849.552133pt;}
.yf6{bottom:849.747611pt;}
.y14d{bottom:854.064023pt;}
.y153{bottom:854.064667pt;}
.yd1{bottom:859.263173pt;}
.y5c{bottom:861.155200pt;}
.y6{bottom:862.352000pt;}
.y14c{bottom:865.293200pt;}
.ye8{bottom:869.138626pt;}
.yd4{bottom:872.796693pt;}
.y5b{bottom:873.955200pt;}
.ydf{bottom:886.330213pt;}
.y5a{bottom:886.755200pt;}
.y140{bottom:891.152000pt;}
.y5{bottom:891.152133pt;}
.y59{bottom:899.555200pt;}
.ydb{bottom:899.863733pt;}
.y148{bottom:904.420414pt;}
.y146{bottom:904.422800pt;}
.y149{bottom:904.430281pt;}
.y58{bottom:912.355200pt;}
.yc0{bottom:913.397253pt;}
.y4{bottom:913.552133pt;}
.y144{bottom:915.994952pt;}
.yef{bottom:919.794416pt;}
.y57{bottom:925.155200pt;}
.yda{bottom:926.930773pt;}
.y143{bottom:927.224129pt;}
.ye2{bottom:935.643867pt;}
.y142{bottom:938.788800pt;}
.ycd{bottom:940.464293pt;}
.y56{bottom:950.755200pt;}
.y3{bottom:951.952133pt;}
.ycf{bottom:953.997813pt;}
.y55{bottom:966.755200pt;}
.ydd{bottom:967.531333pt;}
.y13d{bottom:969.268000pt;}
.y2{bottom:977.552133pt;}
.yf2{bottom:979.818213pt;}
.yc1{bottom:981.064853pt;}
.y54{bottom:982.755200pt;}
.y13c{bottom:983.668000pt;}
.y1{bottom:1035.263733pt;}
.hb{height:17.072521pt;}
.hd{height:22.194277pt;}
.hc{height:25.608781pt;}
.h14{height:27.405347pt;}
.h12{height:27.694433pt;}
.ha{height:29.531250pt;}
.he{height:29.937500pt;}
.h5{height:33.750000pt;}
.h1{height:34.968750pt;}
.h10{height:35.910314pt;}
.h8{height:37.031250pt;}
.h9{height:37.421875pt;}
.h6{height:37.968750pt;}
.h17{height:40.109140pt;}
.h7{height:42.187500pt;}
.h18{height:43.470614pt;}
.h3{height:55.407201pt;}
.h4{height:55.407734pt;}
.h15{height:57.162667pt;}
.h2{height:59.875000pt;}
.h11{height:68.392000pt;}
.h13{height:79.620000pt;}
.h16{height:79.961333pt;}
.hf{height:305.210667pt;}
.h0{height:1056.000000pt;}
.w9{width:38.450667pt;}
.w3{width:41.170667pt;}
.w8{width:44.573333pt;}
.w4{width:46.273333pt;}
.wc{width:48.317333pt;}
.wd{width:51.378667pt;}
.w5{width:57.502667pt;}
.w2{width:59.204000pt;}
.wb{width:65.669333pt;}
.w6{width:70.093333pt;}
.wa{width:80.980000pt;}
.w7{width:83.022667pt;}
.w1{width:688.001333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x49{left:1.253200pt;}
.x1{left:41.333333pt;}
.x5f{left:56.482533pt;}
.xf{left:64.000000pt;}
.x4a{left:65.253333pt;}
.x8{left:67.210933pt;}
.x6{left:70.348933pt;}
.x7{left:76.236933pt;}
.xc{left:78.263733pt;}
.x4{left:82.106000pt;}
.x11{left:88.000000pt;}
.x1a{left:96.000000pt;}
.x4b{left:124.458667pt;}
.x4c{left:126.499467pt;}
.x2{left:136.416667pt;}
.x3a{left:149.533949pt;}
.xd{left:152.496133pt;}
.x44{left:161.963696pt;}
.x2a{left:163.480616pt;}
.x4d{left:165.629333pt;}
.x4e{left:167.670533pt;}
.x48{left:170.343067pt;}
.x41{left:174.583850pt;}
.xb{left:175.708000pt;}
.x10{left:181.635467pt;}
.x3d{left:211.705534pt;}
.x4f{left:213.945600pt;}
.x40{left:216.069654pt;}
.x45{left:225.688999pt;}
.x3{left:229.609333pt;}
.x3c{left:248.553032pt;}
.x1c{left:249.895867pt;}
.x50{left:269.406667pt;}
.x51{left:271.448933pt;}
.x42{left:274.547350pt;}
.x5{left:290.782000pt;}
.x3e{left:292.270402pt;}
.x1d{left:294.580000pt;}
.x36{left:295.757592pt;}
.x46{left:298.058765pt;}
.xa{left:309.682667pt;}
.x23{left:311.567204pt;}
.x9{left:313.783867pt;}
.x43{left:318.257104pt;}
.x39{left:319.925067pt;}
.x26{left:323.325548pt;}
.x3b{left:329.445400pt;}
.x27{left:330.768984pt;}
.x20{left:331.709300pt;}
.x25{left:334.881768pt;}
.x30{left:336.226332pt;}
.x1e{left:337.720292pt;}
.x38{left:338.985764pt;}
.x52{left:341.542000pt;}
.x24{left:345.058272pt;}
.x35{left:346.323744pt;}
.x21{left:347.457396pt;}
.x2c{left:348.986508pt;}
.x33{left:350.814412pt;}
.x2e{left:351.965640pt;}
.x22{left:354.294460pt;}
.x34{left:356.429944pt;}
.xe{left:359.346667pt;}
.x3f{left:372.446842pt;}
.x2b{left:378.584492pt;}
.x37{left:381.141800pt;}
.x32{left:383.171828pt;}
.x29{left:385.386404pt;}
.x31{left:388.901604pt;}
.x2d{left:390.096772pt;}
.x1f{left:391.529216pt;}
.x2f{left:395.334420pt;}
.x28{left:412.752236pt;}
.x14{left:416.000000pt;}
.x53{left:422.524000pt;}
.x5d{left:424.564800pt;}
.x17{left:426.718800pt;}
.x13{left:440.000000pt;}
.x16{left:452.981067pt;}
.x54{left:467.096000pt;}
.x55{left:469.138400pt;}
.x47{left:492.400000pt;}
.x15{left:499.042267pt;}
.x56{left:505.545333pt;}
.x57{left:507.587467pt;}
.x1b{left:513.635467pt;}
.x12{left:551.776667pt;}
.x18{left:560.292267pt;}
.x58{left:586.528000pt;}
.x59{left:588.568667pt;}
.x5a{left:652.196000pt;}
.x5e{left:654.238267pt;}
.x5b{left:700.513333pt;}
.x5c{left:702.554800pt;}
.x19{left:764.933333pt;}
}




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