
    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_07f73f5e52e89ee06854dc48.woff2')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_d64c612113711b6a60ac7665.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_69859628411fe1b31523cd2a.woff2')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_2d03870793b8ebd107fa1786.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f4b9ff6726c077e6e406c856.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_316e3bcfd42c5152ab361659.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b4c4090d3794959ef9234369.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940918;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_f9ae9674d7aee62eb006ba84.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940918;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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v2{vertical-align:-21.060000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls24{letter-spacing:-3.180000px;}
.ls26{letter-spacing:-0.579600px;}
.lsf{letter-spacing:-0.570000px;}
.ls20{letter-spacing:-0.544800px;}
.ls1d{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.463800px;}
.ls2b{letter-spacing:-0.414000px;}
.ls1f{letter-spacing:-0.326400px;}
.ls14{letter-spacing:-0.248400px;}
.ls1c{letter-spacing:-0.228000px;}
.ls16{letter-spacing:-0.115800px;}
.ls19{letter-spacing:-0.107400px;}
.ls22{letter-spacing:-0.078600px;}
.lsc{letter-spacing:-0.067200px;}
.ls25{letter-spacing:-0.064800px;}
.lsa{letter-spacing:-0.058320px;}
.ls12{letter-spacing:-0.041040px;}
.ls5{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.023760px;}
.ls6{letter-spacing:0.038880px;}
.ls39{letter-spacing:0.060480px;}
.ls13{letter-spacing:0.060600px;}
.lsb{letter-spacing:0.066000px;}
.ls37{letter-spacing:0.093600px;}
.ls15{letter-spacing:0.140400px;}
.ls1{letter-spacing:0.149760px;}
.ls9{letter-spacing:0.150000px;}
.ls2f{letter-spacing:0.174000px;}
.ls29{letter-spacing:0.174240px;}
.ls10{letter-spacing:0.175200px;}
.ls1a{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.186600px;}
.ls0{letter-spacing:0.216000px;}
.ls31{letter-spacing:0.233280px;}
.ls2d{letter-spacing:0.303000px;}
.ls27{letter-spacing:0.393600px;}
.ls34{letter-spacing:0.416880px;}
.ls2{letter-spacing:0.427680px;}
.ls2e{letter-spacing:0.433440px;}
.ls11{letter-spacing:0.479400px;}
.ls3b{letter-spacing:0.479520px;}
.ls2a{letter-spacing:0.660000px;}
.ls3{letter-spacing:0.780000px;}
.lsd{letter-spacing:0.858000px;}
.lse{letter-spacing:0.894240px;}
.ls1e{letter-spacing:0.900000px;}
.ls18{letter-spacing:1.008000px;}
.ls17{letter-spacing:1.026000px;}
.ls30{letter-spacing:4.494240px;}
.ls2c{letter-spacing:12.186720px;}
.ls38{letter-spacing:13.854240px;}
.ls36{letter-spacing:36.174240px;}
.ls35{letter-spacing:37.614240px;}
.ls28{letter-spacing:42.426720px;}
.ls33{letter-spacing:44.070240px;}
.ls4{letter-spacing:45.306720px;}
.ls3a{letter-spacing:66.414240px;}
.ls23{letter-spacing:156.558240px;}
.ls32{letter-spacing:202.638240px;}
.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;}
}
.ws0{word-spacing:-19.077120px;}
.ws1{word-spacing:-16.488000px;}
.ws2{word-spacing:-16.272000px;}
.ws3{word-spacing:-15.768000px;}
.ws4{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.506440px;}
.ws18{word-spacing:-14.165760px;}
.ws1a{word-spacing:-13.899360px;}
.ws19{word-spacing:-13.808760px;}
.ws10{word-spacing:-13.692360px;}
.ws16{word-spacing:-13.680960px;}
.wsd{word-spacing:-13.646160px;}
.ws1b{word-spacing:-13.566360px;}
.ws8{word-spacing:-13.505760px;}
.wsb{word-spacing:-13.464720px;}
.ws9{word-spacing:-13.447440px;}
.ws15{word-spacing:-13.440960px;}
.ws13{word-spacing:-13.427160px;}
.wsf{word-spacing:-13.398360px;}
.wse{word-spacing:-13.389960px;}
.ws11{word-spacing:-13.277760px;}
.wsc{word-spacing:-13.257360px;}
.ws12{word-spacing:-13.179360px;}
.ws17{word-spacing:-12.926160px;}
.ws14{word-spacing:-10.325760px;}
.ws6{word-spacing:-9.437760px;}
.ws7{word-spacing:-8.786880px;}
.wsa{word-spacing:0.000000px;}
._21{margin-left:-580.764000px;}
._22{margin-left:-574.388640px;}
._1{margin-left:-485.718240px;}
._7{margin-left:-407.814240px;}
._a{margin-left:-299.841120px;}
._5{margin-left:-289.238160px;}
._6{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._9{margin-left:-273.882720px;}
._d{margin-left:-261.792000px;}
._14{margin-left:-254.592000px;}
._1b{margin-left:-245.837520px;}
._1a{margin-left:-239.592000px;}
._11{margin-left:-220.872000px;}
._1c{margin-left:-218.676000px;}
._1d{margin-left:-217.586160px;}
._25{margin-left:-211.392000px;}
._24{margin-left:-207.288000px;}
._10{margin-left:-186.336000px;}
._2b{margin-left:-183.500640px;}
._f{margin-left:-179.316000px;}
._b{margin-left:-168.336000px;}
._17{margin-left:-163.848000px;}
._c{margin-left:-161.712000px;}
._2a{margin-left:-156.480000px;}
._12{margin-left:-152.124000px;}
._4{margin-left:-150.068400px;}
._e{margin-left:-147.708000px;}
._26{margin-left:-146.232000px;}
._23{margin-left:-145.152000px;}
._13{margin-left:-125.136000px;}
._29{margin-left:-119.928000px;}
._20{margin-left:-111.312000px;}
._1f{margin-left:-93.401760px;}
._8{margin-left:-91.638240px;}
._16{margin-left:-90.000000px;}
._15{margin-left:-88.748640px;}
._19{margin-left:-72.504000px;}
._18{margin-left:-53.808000px;}
._27{margin-left:-52.344000px;}
._28{margin-left:-38.592000px;}
._1e{margin-left:-34.608000px;}
._30{margin-left:-7.667040px;}
._4d{margin-left:-6.661200px;}
._36{margin-left:-5.469840px;}
._2d{margin-left:-4.389720px;}
._33{margin-left:-3.389040px;}
._2{margin-left:-2.274480px;}
._3{margin-left:-1.179360px;}
._2c{width:1.139040px;}
._31{width:2.954880px;}
._32{width:4.447200px;}
._34{width:5.640240px;}
._37{width:6.956640px;}
._3b{width:8.768880px;}
._3c{width:10.188480px;}
._38{width:11.263200px;}
._35{width:12.461520px;}
._3a{width:15.418080px;}
._39{width:16.776720px;}
._3d{width:18.296640px;}
._3e{width:19.297440px;}
._40{width:20.975760px;}
._42{width:22.363440px;}
._43{width:23.389680px;}
._53{width:25.302720px;}
._41{width:26.398080px;}
._3f{width:27.659520px;}
._49{width:29.342160px;}
._4a{width:30.351360px;}
._66{width:31.588080px;}
._44{width:33.091200px;}
._45{width:34.442880px;}
._2e{width:35.724720px;}
._2f{width:37.769520px;}
._65{width:40.756320px;}
._64{width:41.832000px;}
._4b{width:44.804160px;}
._5d{width:46.023840px;}
._62{width:47.329920px;}
._4c{width:48.509280px;}
._60{width:49.660560px;}
._55{width:50.915520px;}
._46{width:52.333920px;}
._4f{width:54.922680px;}
._4e{width:56.054880px;}
._5c{width:57.130560px;}
._5e{width:58.325760px;}
._63{width:62.027280px;}
._47{width:63.648000px;}
._6a{width:66.512880px;}
._57{width:69.859440px;}
._61{width:71.532720px;}
._48{width:73.885680px;}
._5f{width:74.950560px;}
._6b{width:76.253760px;}
._59{width:79.002720px;}
._5a{width:80.138160px;}
._5b{width:81.871200px;}
._6c{width:83.484720px;}
._51{width:85.080360px;}
._50{width:86.295480px;}
._52{width:87.682200px;}
._68{width:90.054720px;}
._67{width:91.193760px;}
._6f{width:95.795280px;}
._58{width:115.750080px;}
._6d{width:125.914320px;}
._69{width:153.579600px;}
._6e{width:160.144560px;}
._54{width:203.131440px;}
._56{width:250.816320px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yd5{bottom:6.660000px;}
.yeb{bottom:6.690000px;}
.y140{bottom:11.160000px;}
.yf3{bottom:15.300000px;}
.y13a{bottom:17.100000px;}
.y13d{bottom:21.600000px;}
.yd4{bottom:27.720000px;}
.yff{bottom:27.765000px;}
.y13f{bottom:32.220000px;}
.yf0{bottom:36.180000px;}
.y130{bottom:36.225000px;}
.yf2{bottom:36.360000px;}
.y133{bottom:38.160000px;}
.y119{bottom:38.340000px;}
.yfb{bottom:39.060000px;}
.y13c{bottom:42.660000px;}
.y135{bottom:48.600000px;}
.y101{bottom:48.780000px;}
.y11a{bottom:48.810000px;}
.yfe{bottom:48.825000px;}
.y110{bottom:49.140000px;}
.y13e{bottom:53.280000px;}
.y12f{bottom:57.285000px;}
.y139{bottom:59.220000px;}
.y11d{bottom:59.400000px;}
.y117{bottom:59.790000px;}
.yfa{bottom:60.120000px;}
.y6{bottom:61.560000px;}
.y33{bottom:62.100000px;}
.y137{bottom:69.690000px;}
.y107{bottom:69.840000px;}
.y10b{bottom:69.870000px;}
.yfd{bottom:69.885000px;}
.y10f{bottom:70.200000px;}
.y106{bottom:70.560000px;}
.y138{bottom:80.310000px;}
.y116{bottom:80.850000px;}
.yf9{bottom:81.180000px;}
.y134{bottom:90.000000px;}
.y136{bottom:90.750000px;}
.y11f{bottom:90.900000px;}
.y11b{bottom:90.930000px;}
.y112{bottom:90.945000px;}
.y10e{bottom:91.260000px;}
.y105{bottom:91.620000px;}
.y6c{bottom:92.160000px;}
.yb3{bottom:98.280000px;}
.y90{bottom:99.900000px;}
.ycd{bottom:101.340000px;}
.y115{bottom:101.910000px;}
.yf8{bottom:102.240000px;}
.y127{bottom:102.270000px;}
.yed{bottom:103.140000px;}
.y65{bottom:104.220000px;}
.yc8{bottom:107.280000px;}
.y11e{bottom:111.960000px;}
.y12b{bottom:111.990000px;}
.y10d{bottom:112.320000px;}
.y104{bottom:112.680000px;}
.y6b{bottom:113.220000px;}
.yb2{bottom:119.340000px;}
.y16a{bottom:120.600000px;}
.y8f{bottom:120.960000px;}
.ycc{bottom:122.400000px;}
.y113{bottom:122.580000px;}
.y114{bottom:122.970000px;}
.yf7{bottom:123.300000px;}
.y126{bottom:123.330000px;}
.yec{bottom:124.920000px;}
.y64{bottom:125.280000px;}
.y2f{bottom:125.820000px;}
.yc7{bottom:128.340000px;}
.y12d{bottom:133.020000px;}
.y12a{bottom:133.050000px;}
.y103{bottom:133.740000px;}
.y6a{bottom:134.280000px;}
.yb1{bottom:140.400000px;}
.y8e{bottom:142.020000px;}
.ycb{bottom:143.460000px;}
.y125{bottom:144.390000px;}
.yf6{bottom:144.405000px;}
.y63{bottom:146.340000px;}
.y2e{bottom:146.880000px;}
.yc6{bottom:149.400000px;}
.y109{bottom:154.800000px;}
.y69{bottom:155.370000px;}
.yb0{bottom:161.490000px;}
.y8d{bottom:163.110000px;}
.yca{bottom:164.550000px;}
.y124{bottom:165.450000px;}
.yf5{bottom:165.465000px;}
.y62{bottom:167.430000px;}
.y2d{bottom:167.970000px;}
.yea{bottom:168.690000px;}
.yc5{bottom:170.490000px;}
.y68{bottom:176.430000px;}
.yc9{bottom:181.830000px;}
.yaf{bottom:182.550000px;}
.y8c{bottom:184.170000px;}
.y123{bottom:186.510000px;}
.y61{bottom:188.490000px;}
.y2c{bottom:189.030000px;}
.ye9{bottom:190.470000px;}
.yc4{bottom:191.550000px;}
.y132{bottom:196.050000px;}
.y67{bottom:197.490000px;}
.yae{bottom:203.610000px;}
.y8b{bottom:205.230000px;}
.y122{bottom:207.570000px;}
.y169{bottom:208.290000px;}
.y60{bottom:209.550000px;}
.y2b{bottom:210.090000px;}
.yc3{bottom:212.610000px;}
.y66{bottom:218.550000px;}
.ye8{bottom:218.910000px;}
.yad{bottom:224.670000px;}
.y8a{bottom:226.290000px;}
.y118{bottom:228.630000px;}
.y168{bottom:229.350000px;}
.y78{bottom:230.610000px;}
.y2a{bottom:231.150000px;}
.yc2{bottom:233.670000px;}
.ye7{bottom:234.030000px;}
.y5f{bottom:239.610000px;}
.yac{bottom:245.730000px;}
.y89{bottom:247.350000px;}
.y167{bottom:250.230000px;}
.y77{bottom:251.670000px;}
.y29{bottom:252.210000px;}
.yc1{bottom:254.730000px;}
.ye6{bottom:255.810000px;}
.y5e{bottom:260.670000px;}
.yab{bottom:266.790000px;}
.y88{bottom:268.410000px;}
.y166{bottom:271.290000px;}
.y76{bottom:272.730000px;}
.y28{bottom:273.270000px;}
.yc0{bottom:275.790000px;}
.y131{bottom:281.010000px;}
.y5d{bottom:281.730000px;}
.ye5{bottom:284.250000px;}
.yaa{bottom:287.850000px;}
.y87{bottom:289.470000px;}
.y165{bottom:292.350000px;}
.y75{bottom:293.790000px;}
.y27{bottom:294.330000px;}
.ybf{bottom:296.850000px;}
.y5c{bottom:302.790000px;}
.ye4{bottom:305.310000px;}
.ya9{bottom:308.910000px;}
.y86{bottom:310.530000px;}
.y164{bottom:313.410000px;}
.y111{bottom:313.770000px;}
.y74{bottom:314.850000px;}
.y26{bottom:315.390000px;}
.ybe{bottom:317.910000px;}
.y5b{bottom:323.850000px;}
.ye3{bottom:326.370000px;}
.ya8{bottom:329.970000px;}
.y85{bottom:331.590000px;}
.y163{bottom:334.470000px;}
.y73{bottom:335.910000px;}
.y25{bottom:336.450000px;}
.ybd{bottom:338.970000px;}
.y5a{bottom:344.910000px;}
.ye2{bottom:347.430000px;}
.y162{bottom:355.530000px;}
.y72{bottom:356.970000px;}
.y24{bottom:357.510000px;}
.ya7{bottom:360.030000px;}
.y84{bottom:361.650000px;}
.y59{bottom:365.970000px;}
.ye1{bottom:368.490000px;}
.y161{bottom:376.590000px;}
.y71{bottom:378.030000px;}
.y23{bottom:378.570000px;}
.ya6{bottom:381.090000px;}
.y83{bottom:382.710000px;}
.y58{bottom:387.030000px;}
.ye0{bottom:389.550000px;}
.y160{bottom:397.650000px;}
.y70{bottom:399.090000px;}
.y22{bottom:399.630000px;}
.ya5{bottom:402.195000px;}
.y82{bottom:403.815000px;}
.y57{bottom:408.135000px;}
.ydf{bottom:410.655000px;}
.y15f{bottom:418.755000px;}
.y108{bottom:419.835000px;}
.y6f{bottom:420.195000px;}
.y21{bottom:420.735000px;}
.ya4{bottom:423.255000px;}
.y81{bottom:424.875000px;}
.y56{bottom:429.195000px;}
.yde{bottom:431.715000px;}
.y15e{bottom:439.815000px;}
.y6e{bottom:441.255000px;}
.y20{bottom:441.795000px;}
.ya3{bottom:444.315000px;}
.y12e{bottom:445.035000px;}
.y80{bottom:445.935000px;}
.y55{bottom:450.255000px;}
.ydd{bottom:452.775000px;}
.y12c{bottom:460.155000px;}
.y15d{bottom:460.875000px;}
.y6d{bottom:462.315000px;}
.y1f{bottom:462.855000px;}
.ya2{bottom:465.375000px;}
.y7f{bottom:466.995000px;}
.y54{bottom:471.315000px;}
.ydc{bottom:473.835000px;}
.y15c{bottom:481.935000px;}
.y1e{bottom:486.255000px;}
.ya1{bottom:486.435000px;}
.y7e{bottom:488.055000px;}
.y53{bottom:492.375000px;}
.ydb{bottom:494.895000px;}
.y15b{bottom:502.995000px;}
.y10c{bottom:504.795000px;}
.y1d{bottom:507.135000px;}
.ya0{bottom:507.495000px;}
.y7d{bottom:509.115000px;}
.y52{bottom:513.435000px;}
.yda{bottom:515.955000px;}
.y15a{bottom:524.055000px;}
.y9f{bottom:528.555000px;}
.y7c{bottom:530.175000px;}
.y51{bottom:534.495000px;}
.yd9{bottom:537.015000px;}
.y1c{bottom:537.195000px;}
.y159{bottom:545.115000px;}
.y9e{bottom:549.615000px;}
.y7b{bottom:551.235000px;}
.y50{bottom:555.555000px;}
.yd8{bottom:558.075000px;}
.y1b{bottom:558.255000px;}
.ybc{bottom:558.615000px;}
.y158{bottom:566.175000px;}
.y9d{bottom:570.675000px;}
.y7a{bottom:572.295000px;}
.y4f{bottom:576.615000px;}
.yd7{bottom:579.135000px;}
.y1a{bottom:579.315000px;}
.ybb{bottom:579.675000px;}
.y157{bottom:587.235000px;}
.y79{bottom:589.215000px;}
.y10a{bottom:589.755000px;}
.y9c{bottom:591.735000px;}
.yd6{bottom:596.415000px;}
.y4e{bottom:597.675000px;}
.y19{bottom:600.375000px;}
.yba{bottom:600.735000px;}
.y121{bottom:608.295000px;}
.y9b{bottom:612.795000px;}
.y4d{bottom:618.735000px;}
.y18{bottom:621.435000px;}
.yb9{bottom:621.795000px;}
.y156{bottom:629.355000px;}
.y4c{bottom:639.795000px;}
.y17{bottom:642.495000px;}
.y9a{bottom:642.855000px;}
.y155{bottom:650.445000px;}
.y4b{bottom:660.885000px;}
.y16{bottom:663.585000px;}
.y99{bottom:663.945000px;}
.y154{bottom:671.505000px;}
.y102{bottom:674.745000px;}
.y4a{bottom:681.945000px;}
.y15{bottom:684.645000px;}
.y98{bottom:685.005000px;}
.y153{bottom:692.565000px;}
.y49{bottom:703.005000px;}
.y14{bottom:705.705000px;}
.y97{bottom:706.065000px;}
.y152{bottom:713.625000px;}
.y48{bottom:724.065000px;}
.y13{bottom:726.765000px;}
.y96{bottom:727.125000px;}
.y151{bottom:734.685000px;}
.y47{bottom:745.125000px;}
.y12{bottom:747.825000px;}
.yb8{bottom:748.005000px;}
.y150{bottom:755.745000px;}
.y129{bottom:756.465000px;}
.y95{bottom:757.005000px;}
.yf4{bottom:759.705000px;}
.y46{bottom:766.005000px;}
.y11{bottom:769.065000px;}
.yd3{bottom:775.005000px;}
.y14f{bottom:776.805000px;}
.y94{bottom:778.065000px;}
.y45{bottom:787.065000px;}
.y10{bottom:792.285000px;}
.y14e{bottom:797.865000px;}
.y93{bottom:799.125000px;}
.y44{bottom:808.125000px;}
.yf{bottom:813.345000px;}
.y14d{bottom:818.925000px;}
.y92{bottom:820.185000px;}
.y100{bottom:823.605000px;}
.yd2{bottom:823.785000px;}
.y43{bottom:829.185000px;}
.ye{bottom:834.405000px;}
.y30{bottom:835.500000px;}
.y14c{bottom:839.985000px;}
.y91{bottom:841.245000px;}
.y128{bottom:841.425000px;}
.yd1{bottom:844.665000px;}
.y42{bottom:850.245000px;}
.yd{bottom:855.465000px;}
.y14b{bottom:861.045000px;}
.yb7{bottom:862.305000px;}
.yd0{bottom:865.725000px;}
.y41{bottom:871.305000px;}
.yc{bottom:881.745000px;}
.y14a{bottom:882.105000px;}
.yb6{bottom:883.365000px;}
.ycf{bottom:886.785000px;}
.yfc{bottom:887.505000px;}
.y40{bottom:892.365000px;}
.yb{bottom:902.850000px;}
.y149{bottom:903.210000px;}
.yce{bottom:903.930000px;}
.yb5{bottom:904.470000px;}
.y3f{bottom:913.470000px;}
.ya{bottom:919.410000px;}
.y148{bottom:924.270000px;}
.yb4{bottom:925.530000px;}
.y120{bottom:926.430000px;}
.y3e{bottom:934.530000px;}
.y9{bottom:941.730000px;}
.y147{bottom:945.330000px;}
.y3d{bottom:955.590000px;}
.y146{bottom:966.390000px;}
.y8{bottom:966.930000px;}
.yf1{bottom:972.510000px;}
.y3c{bottom:976.650000px;}
.y145{bottom:987.450000px;}
.y3b{bottom:997.710000px;}
.y7{bottom:1000.770000px;}
.y144{bottom:1008.510000px;}
.y3a{bottom:1018.770000px;}
.yef{bottom:1023.990000px;}
.y143{bottom:1029.570000px;}
.y11c{bottom:1032.450000px;}
.y39{bottom:1039.830000px;}
.y5{bottom:1041.270000px;}
.y142{bottom:1050.630000px;}
.y38{bottom:1060.890000px;}
.y141{bottom:1071.690000px;}
.y4{bottom:1075.650000px;}
.y37{bottom:1081.950000px;}
.y13b{bottom:1086.810000px;}
.y36{bottom:1103.010000px;}
.y3{bottom:1110.030000px;}
.yee{bottom:1117.410000px;}
.y35{bottom:1124.070000px;}
.y2{bottom:1144.230000px;}
.y34{bottom:1145.130000px;}
.y32{bottom:1173.060000px;}
.y1{bottom:1179.720000px;}
.y31{bottom:1193.220000px;}
.he{height:21.060000px;}
.hf{height:21.096000px;}
.h8{height:38.671172px;}
.hd{height:42.120000px;}
.h10{height:42.156000px;}
.hc{height:45.578672px;}
.h11{height:50.580000px;}
.h12{height:50.760000px;}
.hb{height:52.260820px;}
.ha{height:53.709961px;}
.h9{height:59.439023px;}
.h6{height:61.189805px;}
.h15{height:63.180000px;}
.h4{height:65.884219px;}
.h7{height:67.824844px;}
.h3{height:71.613281px;}
.h22{height:71.676000px;}
.h24{height:72.036000px;}
.h17{height:84.240000px;}
.h14{height:84.276000px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.h23{height:105.156000px;}
.h1d{height:105.300000px;}
.h1a{height:105.336000px;}
.h1c{height:126.396000px;}
.h21{height:147.420000px;}
.h20{height:147.456000px;}
.h19{height:169.200000px;}
.h1b{height:190.290000px;}
.h16{height:212.040000px;}
.h13{height:212.070000px;}
.h1f{height:232.410000px;}
.h18{height:254.190000px;}
.h1e{height:317.415000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:30.780000px;}
.w9{width:81.540000px;}
.wb{width:90.540000px;}
.w8{width:90.576000px;}
.wa{width:99.576000px;}
.w5{width:107.100000px;}
.w4{width:107.136000px;}
.w6{width:107.316000px;}
.w18{width:111.420000px;}
.w16{width:111.456000px;}
.w17{width:111.636000px;}
.w19{width:112.140000px;}
.w1a{width:112.356000px;}
.w15{width:112.860000px;}
.wf{width:115.956000px;}
.w7{width:117.540000px;}
.we{width:137.340000px;}
.w11{width:167.250000px;}
.w14{width:190.650000px;}
.w10{width:249.150000px;}
.wc{width:603.645000px;}
.w3{width:603.690000px;}
.wd{width:671.865000px;}
.w12{width:672.585000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:1.080000px;}
.x2a{left:6.300000px;}
.x28{left:9.000000px;}
.x30{left:20.880000px;}
.x24{left:26.280000px;}
.x31{left:29.880000px;}
.x22{left:31.500000px;}
.x12{left:37.836000px;}
.x23{left:40.185000px;}
.xe{left:47.159987px;}
.x26{left:51.480000px;}
.x6{left:53.999987px;}
.xc{left:80.999987px;}
.x11{left:83.700000px;}
.x10{left:87.875987px;}
.x21{left:99.396000px;}
.x8{left:108.035987px;}
.x19{left:118.476000px;}
.x2b{left:130.536000px;}
.x20{left:144.756000px;}
.x5{left:178.409987px;}
.x13{left:191.550000px;}
.x1a{left:236.730000px;}
.x3{left:291.314987px;}
.x14{left:299.415000px;}
.xa{left:310.034987px;}
.x2c{left:321.915000px;}
.x1b{left:328.035000px;}
.x25{left:354.135000px;}
.xb{left:362.054987px;}
.x2{left:377.714987px;}
.x15{left:407.415000px;}
.x1c{left:410.295000px;}
.x2d{left:435.675000px;}
.x4{left:451.364987px;}
.x1{left:478.544987px;}
.x1d{left:510.585000px;}
.x16{left:515.265000px;}
.x2e{left:547.845000px;}
.x1e{left:592.845000px;}
.x27{left:604.005000px;}
.x17{left:623.265000px;}
.x7{left:626.864987px;}
.x2f{left:660.210000px;}
.x1f{left:684.150000px;}
.x18{left:731.130000px;}
.xf{left:748.049987px;}
.xd{left:768.749987px;}
.x9{left:797.549987px;}
.x32{left:839.339987px;}
@media print{
.v2{vertical-align:-18.720000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls24{letter-spacing:-2.826667pt;}
.ls26{letter-spacing:-0.515200pt;}
.lsf{letter-spacing:-0.506667pt;}
.ls20{letter-spacing:-0.484267pt;}
.ls1d{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.412267pt;}
.ls2b{letter-spacing:-0.368000pt;}
.ls1f{letter-spacing:-0.290133pt;}
.ls14{letter-spacing:-0.220800pt;}
.ls1c{letter-spacing:-0.202667pt;}
.ls16{letter-spacing:-0.102933pt;}
.ls19{letter-spacing:-0.095467pt;}
.ls22{letter-spacing:-0.069867pt;}
.lsc{letter-spacing:-0.059733pt;}
.ls25{letter-spacing:-0.057600pt;}
.lsa{letter-spacing:-0.051840pt;}
.ls12{letter-spacing:-0.036480pt;}
.ls5{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.021120pt;}
.ls6{letter-spacing:0.034560pt;}
.ls39{letter-spacing:0.053760pt;}
.ls13{letter-spacing:0.053867pt;}
.lsb{letter-spacing:0.058667pt;}
.ls37{letter-spacing:0.083200pt;}
.ls15{letter-spacing:0.124800pt;}
.ls1{letter-spacing:0.133120pt;}
.ls9{letter-spacing:0.133333pt;}
.ls2f{letter-spacing:0.154667pt;}
.ls29{letter-spacing:0.154880pt;}
.ls10{letter-spacing:0.155733pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.165867pt;}
.ls0{letter-spacing:0.192000pt;}
.ls31{letter-spacing:0.207360pt;}
.ls2d{letter-spacing:0.269333pt;}
.ls27{letter-spacing:0.349867pt;}
.ls34{letter-spacing:0.370560pt;}
.ls2{letter-spacing:0.380160pt;}
.ls2e{letter-spacing:0.385280pt;}
.ls11{letter-spacing:0.426133pt;}
.ls3b{letter-spacing:0.426240pt;}
.ls2a{letter-spacing:0.586667pt;}
.ls3{letter-spacing:0.693333pt;}
.lsd{letter-spacing:0.762667pt;}
.lse{letter-spacing:0.794880pt;}
.ls1e{letter-spacing:0.800000pt;}
.ls18{letter-spacing:0.896000pt;}
.ls17{letter-spacing:0.912000pt;}
.ls30{letter-spacing:3.994880pt;}
.ls2c{letter-spacing:10.832640pt;}
.ls38{letter-spacing:12.314880pt;}
.ls36{letter-spacing:32.154880pt;}
.ls35{letter-spacing:33.434880pt;}
.ls28{letter-spacing:37.712640pt;}
.ls33{letter-spacing:39.173547pt;}
.ls4{letter-spacing:40.272640pt;}
.ls3a{letter-spacing:59.034880pt;}
.ls23{letter-spacing:139.162880pt;}
.ls32{letter-spacing:180.122880pt;}
.ws0{word-spacing:-16.957440pt;}
.ws1{word-spacing:-14.656000pt;}
.ws2{word-spacing:-14.464000pt;}
.ws3{word-spacing:-14.016000pt;}
.ws4{word-spacing:-13.306880pt;}
.ws5{word-spacing:-12.894613pt;}
.ws18{word-spacing:-12.591787pt;}
.ws1a{word-spacing:-12.354987pt;}
.ws19{word-spacing:-12.274453pt;}
.ws10{word-spacing:-12.170987pt;}
.ws16{word-spacing:-12.160853pt;}
.wsd{word-spacing:-12.129920pt;}
.ws1b{word-spacing:-12.058987pt;}
.ws8{word-spacing:-12.005120pt;}
.wsb{word-spacing:-11.968640pt;}
.ws9{word-spacing:-11.953280pt;}
.ws15{word-spacing:-11.947520pt;}
.ws13{word-spacing:-11.935253pt;}
.wsf{word-spacing:-11.909653pt;}
.wse{word-spacing:-11.902187pt;}
.ws11{word-spacing:-11.802453pt;}
.wsc{word-spacing:-11.784320pt;}
.ws12{word-spacing:-11.714987pt;}
.ws17{word-spacing:-11.489920pt;}
.ws14{word-spacing:-9.178453pt;}
.ws6{word-spacing:-8.389120pt;}
.ws7{word-spacing:-7.810560pt;}
.wsa{word-spacing:0.000000pt;}
._21{margin-left:-516.234667pt;}
._22{margin-left:-510.567680pt;}
._1{margin-left:-431.749547pt;}
._7{margin-left:-362.501547pt;}
._a{margin-left:-266.525440pt;}
._5{margin-left:-257.100587pt;}
._6{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._9{margin-left:-243.451307pt;}
._d{margin-left:-232.704000pt;}
._14{margin-left:-226.304000pt;}
._1b{margin-left:-218.522240pt;}
._1a{margin-left:-212.970667pt;}
._11{margin-left:-196.330667pt;}
._1c{margin-left:-194.378667pt;}
._1d{margin-left:-193.409920pt;}
._25{margin-left:-187.904000pt;}
._24{margin-left:-184.256000pt;}
._10{margin-left:-165.632000pt;}
._2b{margin-left:-163.111680pt;}
._f{margin-left:-159.392000pt;}
._b{margin-left:-149.632000pt;}
._17{margin-left:-145.642667pt;}
._c{margin-left:-143.744000pt;}
._2a{margin-left:-139.093333pt;}
._12{margin-left:-135.221333pt;}
._4{margin-left:-133.394133pt;}
._e{margin-left:-131.296000pt;}
._26{margin-left:-129.984000pt;}
._23{margin-left:-129.024000pt;}
._13{margin-left:-111.232000pt;}
._29{margin-left:-106.602667pt;}
._20{margin-left:-98.944000pt;}
._1f{margin-left:-83.023787pt;}
._8{margin-left:-81.456213pt;}
._16{margin-left:-80.000000pt;}
._15{margin-left:-78.887680pt;}
._19{margin-left:-64.448000pt;}
._18{margin-left:-47.829333pt;}
._27{margin-left:-46.528000pt;}
._28{margin-left:-34.304000pt;}
._1e{margin-left:-30.762667pt;}
._30{margin-left:-6.815147pt;}
._4d{margin-left:-5.921067pt;}
._36{margin-left:-4.862080pt;}
._2d{margin-left:-3.901973pt;}
._33{margin-left:-3.012480pt;}
._2{margin-left:-2.021760pt;}
._3{margin-left:-1.048320pt;}
._2c{width:1.012480pt;}
._31{width:2.626560pt;}
._32{width:3.953067pt;}
._34{width:5.013547pt;}
._37{width:6.183680pt;}
._3b{width:7.794560pt;}
._3c{width:9.056427pt;}
._38{width:10.011733pt;}
._35{width:11.076907pt;}
._3a{width:13.704960pt;}
._39{width:14.912640pt;}
._3d{width:16.263680pt;}
._3e{width:17.153280pt;}
._40{width:18.645120pt;}
._42{width:19.878613pt;}
._43{width:20.790827pt;}
._53{width:22.491307pt;}
._41{width:23.464960pt;}
._3f{width:24.586240pt;}
._49{width:26.081920pt;}
._4a{width:26.978987pt;}
._66{width:28.078293pt;}
._44{width:29.414400pt;}
._45{width:30.615893pt;}
._2e{width:31.755307pt;}
._2f{width:33.572907pt;}
._65{width:36.227840pt;}
._64{width:37.184000pt;}
._4b{width:39.825920pt;}
._5d{width:40.910080pt;}
._62{width:42.071040pt;}
._4c{width:43.119360pt;}
._60{width:44.142720pt;}
._55{width:45.258240pt;}
._46{width:46.519040pt;}
._4f{width:48.820160pt;}
._4e{width:49.826560pt;}
._5c{width:50.782720pt;}
._5e{width:51.845120pt;}
._63{width:55.135360pt;}
._47{width:56.576000pt;}
._6a{width:59.122560pt;}
._57{width:62.097280pt;}
._61{width:63.584640pt;}
._48{width:65.676160pt;}
._5f{width:66.622720pt;}
._6b{width:67.781120pt;}
._59{width:70.224640pt;}
._5a{width:71.233920pt;}
._5b{width:72.774400pt;}
._6c{width:74.208640pt;}
._51{width:75.626987pt;}
._50{width:76.707093pt;}
._52{width:77.939733pt;}
._68{width:80.048640pt;}
._67{width:81.061120pt;}
._6f{width:85.151360pt;}
._58{width:102.888960pt;}
._6d{width:111.923840pt;}
._69{width:136.515200pt;}
._6e{width:142.350720pt;}
._54{width:180.561280pt;}
._56{width:222.947840pt;}
.fs2{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yd5{bottom:5.920000pt;}
.yeb{bottom:5.946667pt;}
.y140{bottom:9.920000pt;}
.yf3{bottom:13.600000pt;}
.y13a{bottom:15.200000pt;}
.y13d{bottom:19.200000pt;}
.yd4{bottom:24.640000pt;}
.yff{bottom:24.680000pt;}
.y13f{bottom:28.640000pt;}
.yf0{bottom:32.160000pt;}
.y130{bottom:32.200000pt;}
.yf2{bottom:32.320000pt;}
.y133{bottom:33.920000pt;}
.y119{bottom:34.080000pt;}
.yfb{bottom:34.720000pt;}
.y13c{bottom:37.920000pt;}
.y135{bottom:43.200000pt;}
.y101{bottom:43.360000pt;}
.y11a{bottom:43.386667pt;}
.yfe{bottom:43.400000pt;}
.y110{bottom:43.680000pt;}
.y13e{bottom:47.360000pt;}
.y12f{bottom:50.920000pt;}
.y139{bottom:52.640000pt;}
.y11d{bottom:52.800000pt;}
.y117{bottom:53.146667pt;}
.yfa{bottom:53.440000pt;}
.y6{bottom:54.720000pt;}
.y33{bottom:55.200000pt;}
.y137{bottom:61.946667pt;}
.y107{bottom:62.080000pt;}
.y10b{bottom:62.106667pt;}
.yfd{bottom:62.120000pt;}
.y10f{bottom:62.400000pt;}
.y106{bottom:62.720000pt;}
.y138{bottom:71.386667pt;}
.y116{bottom:71.866667pt;}
.yf9{bottom:72.160000pt;}
.y134{bottom:80.000000pt;}
.y136{bottom:80.666667pt;}
.y11f{bottom:80.800000pt;}
.y11b{bottom:80.826667pt;}
.y112{bottom:80.840000pt;}
.y10e{bottom:81.120000pt;}
.y105{bottom:81.440000pt;}
.y6c{bottom:81.920000pt;}
.yb3{bottom:87.360000pt;}
.y90{bottom:88.800000pt;}
.ycd{bottom:90.080000pt;}
.y115{bottom:90.586667pt;}
.yf8{bottom:90.880000pt;}
.y127{bottom:90.906667pt;}
.yed{bottom:91.680000pt;}
.y65{bottom:92.640000pt;}
.yc8{bottom:95.360000pt;}
.y11e{bottom:99.520000pt;}
.y12b{bottom:99.546667pt;}
.y10d{bottom:99.840000pt;}
.y104{bottom:100.160000pt;}
.y6b{bottom:100.640000pt;}
.yb2{bottom:106.080000pt;}
.y16a{bottom:107.200000pt;}
.y8f{bottom:107.520000pt;}
.ycc{bottom:108.800000pt;}
.y113{bottom:108.960000pt;}
.y114{bottom:109.306667pt;}
.yf7{bottom:109.600000pt;}
.y126{bottom:109.626667pt;}
.yec{bottom:111.040000pt;}
.y64{bottom:111.360000pt;}
.y2f{bottom:111.840000pt;}
.yc7{bottom:114.080000pt;}
.y12d{bottom:118.240000pt;}
.y12a{bottom:118.266667pt;}
.y103{bottom:118.880000pt;}
.y6a{bottom:119.360000pt;}
.yb1{bottom:124.800000pt;}
.y8e{bottom:126.240000pt;}
.ycb{bottom:127.520000pt;}
.y125{bottom:128.346667pt;}
.yf6{bottom:128.360000pt;}
.y63{bottom:130.080000pt;}
.y2e{bottom:130.560000pt;}
.yc6{bottom:132.800000pt;}
.y109{bottom:137.600000pt;}
.y69{bottom:138.106667pt;}
.yb0{bottom:143.546667pt;}
.y8d{bottom:144.986667pt;}
.yca{bottom:146.266667pt;}
.y124{bottom:147.066667pt;}
.yf5{bottom:147.080000pt;}
.y62{bottom:148.826667pt;}
.y2d{bottom:149.306667pt;}
.yea{bottom:149.946667pt;}
.yc5{bottom:151.546667pt;}
.y68{bottom:156.826667pt;}
.yc9{bottom:161.626667pt;}
.yaf{bottom:162.266667pt;}
.y8c{bottom:163.706667pt;}
.y123{bottom:165.786667pt;}
.y61{bottom:167.546667pt;}
.y2c{bottom:168.026667pt;}
.ye9{bottom:169.306667pt;}
.yc4{bottom:170.266667pt;}
.y132{bottom:174.266667pt;}
.y67{bottom:175.546667pt;}
.yae{bottom:180.986667pt;}
.y8b{bottom:182.426667pt;}
.y122{bottom:184.506667pt;}
.y169{bottom:185.146667pt;}
.y60{bottom:186.266667pt;}
.y2b{bottom:186.746667pt;}
.yc3{bottom:188.986667pt;}
.y66{bottom:194.266667pt;}
.ye8{bottom:194.586667pt;}
.yad{bottom:199.706667pt;}
.y8a{bottom:201.146667pt;}
.y118{bottom:203.226667pt;}
.y168{bottom:203.866667pt;}
.y78{bottom:204.986667pt;}
.y2a{bottom:205.466667pt;}
.yc2{bottom:207.706667pt;}
.ye7{bottom:208.026667pt;}
.y5f{bottom:212.986667pt;}
.yac{bottom:218.426667pt;}
.y89{bottom:219.866667pt;}
.y167{bottom:222.426667pt;}
.y77{bottom:223.706667pt;}
.y29{bottom:224.186667pt;}
.yc1{bottom:226.426667pt;}
.ye6{bottom:227.386667pt;}
.y5e{bottom:231.706667pt;}
.yab{bottom:237.146667pt;}
.y88{bottom:238.586667pt;}
.y166{bottom:241.146667pt;}
.y76{bottom:242.426667pt;}
.y28{bottom:242.906667pt;}
.yc0{bottom:245.146667pt;}
.y131{bottom:249.786667pt;}
.y5d{bottom:250.426667pt;}
.ye5{bottom:252.666667pt;}
.yaa{bottom:255.866667pt;}
.y87{bottom:257.306667pt;}
.y165{bottom:259.866667pt;}
.y75{bottom:261.146667pt;}
.y27{bottom:261.626667pt;}
.ybf{bottom:263.866667pt;}
.y5c{bottom:269.146667pt;}
.ye4{bottom:271.386667pt;}
.ya9{bottom:274.586667pt;}
.y86{bottom:276.026667pt;}
.y164{bottom:278.586667pt;}
.y111{bottom:278.906667pt;}
.y74{bottom:279.866667pt;}
.y26{bottom:280.346667pt;}
.ybe{bottom:282.586667pt;}
.y5b{bottom:287.866667pt;}
.ye3{bottom:290.106667pt;}
.ya8{bottom:293.306667pt;}
.y85{bottom:294.746667pt;}
.y163{bottom:297.306667pt;}
.y73{bottom:298.586667pt;}
.y25{bottom:299.066667pt;}
.ybd{bottom:301.306667pt;}
.y5a{bottom:306.586667pt;}
.ye2{bottom:308.826667pt;}
.y162{bottom:316.026667pt;}
.y72{bottom:317.306667pt;}
.y24{bottom:317.786667pt;}
.ya7{bottom:320.026667pt;}
.y84{bottom:321.466667pt;}
.y59{bottom:325.306667pt;}
.ye1{bottom:327.546667pt;}
.y161{bottom:334.746667pt;}
.y71{bottom:336.026667pt;}
.y23{bottom:336.506667pt;}
.ya6{bottom:338.746667pt;}
.y83{bottom:340.186667pt;}
.y58{bottom:344.026667pt;}
.ye0{bottom:346.266667pt;}
.y160{bottom:353.466667pt;}
.y70{bottom:354.746667pt;}
.y22{bottom:355.226667pt;}
.ya5{bottom:357.506667pt;}
.y82{bottom:358.946667pt;}
.y57{bottom:362.786667pt;}
.ydf{bottom:365.026667pt;}
.y15f{bottom:372.226667pt;}
.y108{bottom:373.186667pt;}
.y6f{bottom:373.506667pt;}
.y21{bottom:373.986667pt;}
.ya4{bottom:376.226667pt;}
.y81{bottom:377.666667pt;}
.y56{bottom:381.506667pt;}
.yde{bottom:383.746667pt;}
.y15e{bottom:390.946667pt;}
.y6e{bottom:392.226667pt;}
.y20{bottom:392.706667pt;}
.ya3{bottom:394.946667pt;}
.y12e{bottom:395.586667pt;}
.y80{bottom:396.386667pt;}
.y55{bottom:400.226667pt;}
.ydd{bottom:402.466667pt;}
.y12c{bottom:409.026667pt;}
.y15d{bottom:409.666667pt;}
.y6d{bottom:410.946667pt;}
.y1f{bottom:411.426667pt;}
.ya2{bottom:413.666667pt;}
.y7f{bottom:415.106667pt;}
.y54{bottom:418.946667pt;}
.ydc{bottom:421.186667pt;}
.y15c{bottom:428.386667pt;}
.y1e{bottom:432.226667pt;}
.ya1{bottom:432.386667pt;}
.y7e{bottom:433.826667pt;}
.y53{bottom:437.666667pt;}
.ydb{bottom:439.906667pt;}
.y15b{bottom:447.106667pt;}
.y10c{bottom:448.706667pt;}
.y1d{bottom:450.786667pt;}
.ya0{bottom:451.106667pt;}
.y7d{bottom:452.546667pt;}
.y52{bottom:456.386667pt;}
.yda{bottom:458.626667pt;}
.y15a{bottom:465.826667pt;}
.y9f{bottom:469.826667pt;}
.y7c{bottom:471.266667pt;}
.y51{bottom:475.106667pt;}
.yd9{bottom:477.346667pt;}
.y1c{bottom:477.506667pt;}
.y159{bottom:484.546667pt;}
.y9e{bottom:488.546667pt;}
.y7b{bottom:489.986667pt;}
.y50{bottom:493.826667pt;}
.yd8{bottom:496.066667pt;}
.y1b{bottom:496.226667pt;}
.ybc{bottom:496.546667pt;}
.y158{bottom:503.266667pt;}
.y9d{bottom:507.266667pt;}
.y7a{bottom:508.706667pt;}
.y4f{bottom:512.546667pt;}
.yd7{bottom:514.786667pt;}
.y1a{bottom:514.946667pt;}
.ybb{bottom:515.266667pt;}
.y157{bottom:521.986667pt;}
.y79{bottom:523.746667pt;}
.y10a{bottom:524.226667pt;}
.y9c{bottom:525.986667pt;}
.yd6{bottom:530.146667pt;}
.y4e{bottom:531.266667pt;}
.y19{bottom:533.666667pt;}
.yba{bottom:533.986667pt;}
.y121{bottom:540.706667pt;}
.y9b{bottom:544.706667pt;}
.y4d{bottom:549.986667pt;}
.y18{bottom:552.386667pt;}
.yb9{bottom:552.706667pt;}
.y156{bottom:559.426667pt;}
.y4c{bottom:568.706667pt;}
.y17{bottom:571.106667pt;}
.y9a{bottom:571.426667pt;}
.y155{bottom:578.173333pt;}
.y4b{bottom:587.453333pt;}
.y16{bottom:589.853333pt;}
.y99{bottom:590.173333pt;}
.y154{bottom:596.893333pt;}
.y102{bottom:599.773333pt;}
.y4a{bottom:606.173333pt;}
.y15{bottom:608.573333pt;}
.y98{bottom:608.893333pt;}
.y153{bottom:615.613333pt;}
.y49{bottom:624.893333pt;}
.y14{bottom:627.293333pt;}
.y97{bottom:627.613333pt;}
.y152{bottom:634.333333pt;}
.y48{bottom:643.613333pt;}
.y13{bottom:646.013333pt;}
.y96{bottom:646.333333pt;}
.y151{bottom:653.053333pt;}
.y47{bottom:662.333333pt;}
.y12{bottom:664.733333pt;}
.yb8{bottom:664.893333pt;}
.y150{bottom:671.773333pt;}
.y129{bottom:672.413333pt;}
.y95{bottom:672.893333pt;}
.yf4{bottom:675.293333pt;}
.y46{bottom:680.893333pt;}
.y11{bottom:683.613333pt;}
.yd3{bottom:688.893333pt;}
.y14f{bottom:690.493333pt;}
.y94{bottom:691.613333pt;}
.y45{bottom:699.613333pt;}
.y10{bottom:704.253333pt;}
.y14e{bottom:709.213333pt;}
.y93{bottom:710.333333pt;}
.y44{bottom:718.333333pt;}
.yf{bottom:722.973333pt;}
.y14d{bottom:727.933333pt;}
.y92{bottom:729.053333pt;}
.y100{bottom:732.093333pt;}
.yd2{bottom:732.253333pt;}
.y43{bottom:737.053333pt;}
.ye{bottom:741.693333pt;}
.y30{bottom:742.666667pt;}
.y14c{bottom:746.653333pt;}
.y91{bottom:747.773333pt;}
.y128{bottom:747.933333pt;}
.yd1{bottom:750.813333pt;}
.y42{bottom:755.773333pt;}
.yd{bottom:760.413333pt;}
.y14b{bottom:765.373333pt;}
.yb7{bottom:766.493333pt;}
.yd0{bottom:769.533333pt;}
.y41{bottom:774.493333pt;}
.yc{bottom:783.773333pt;}
.y14a{bottom:784.093333pt;}
.yb6{bottom:785.213333pt;}
.ycf{bottom:788.253333pt;}
.yfc{bottom:788.893333pt;}
.y40{bottom:793.213333pt;}
.yb{bottom:802.533333pt;}
.y149{bottom:802.853333pt;}
.yce{bottom:803.493333pt;}
.yb5{bottom:803.973333pt;}
.y3f{bottom:811.973333pt;}
.ya{bottom:817.253333pt;}
.y148{bottom:821.573333pt;}
.yb4{bottom:822.693333pt;}
.y120{bottom:823.493333pt;}
.y3e{bottom:830.693333pt;}
.y9{bottom:837.093333pt;}
.y147{bottom:840.293333pt;}
.y3d{bottom:849.413333pt;}
.y146{bottom:859.013333pt;}
.y8{bottom:859.493333pt;}
.yf1{bottom:864.453333pt;}
.y3c{bottom:868.133333pt;}
.y145{bottom:877.733333pt;}
.y3b{bottom:886.853333pt;}
.y7{bottom:889.573333pt;}
.y144{bottom:896.453333pt;}
.y3a{bottom:905.573333pt;}
.yef{bottom:910.213333pt;}
.y143{bottom:915.173333pt;}
.y11c{bottom:917.733333pt;}
.y39{bottom:924.293333pt;}
.y5{bottom:925.573333pt;}
.y142{bottom:933.893333pt;}
.y38{bottom:943.013333pt;}
.y141{bottom:952.613333pt;}
.y4{bottom:956.133333pt;}
.y37{bottom:961.733333pt;}
.y13b{bottom:966.053333pt;}
.y36{bottom:980.453333pt;}
.y3{bottom:986.693333pt;}
.yee{bottom:993.253333pt;}
.y35{bottom:999.173333pt;}
.y2{bottom:1017.093333pt;}
.y34{bottom:1017.893333pt;}
.y32{bottom:1042.720000pt;}
.y1{bottom:1048.640000pt;}
.y31{bottom:1060.640000pt;}
.he{height:18.720000pt;}
.hf{height:18.752000pt;}
.h8{height:34.374375pt;}
.hd{height:37.440000pt;}
.h10{height:37.472000pt;}
.hc{height:40.514375pt;}
.h11{height:44.960000pt;}
.h12{height:45.120000pt;}
.hb{height:46.454062pt;}
.ha{height:47.742188pt;}
.h9{height:52.834688pt;}
.h6{height:54.390938pt;}
.h15{height:56.160000pt;}
.h4{height:58.563750pt;}
.h7{height:60.288750pt;}
.h3{height:63.656250pt;}
.h22{height:63.712000pt;}
.h24{height:64.032000pt;}
.h17{height:74.880000pt;}
.h14{height:74.912000pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.h23{height:93.472000pt;}
.h1d{height:93.600000pt;}
.h1a{height:93.632000pt;}
.h1c{height:112.352000pt;}
.h21{height:131.040000pt;}
.h20{height:131.072000pt;}
.h19{height:150.400000pt;}
.h1b{height:169.146667pt;}
.h16{height:188.480000pt;}
.h13{height:188.506667pt;}
.h1f{height:206.586667pt;}
.h18{height:225.946667pt;}
.h1e{height:282.146667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:27.360000pt;}
.w9{width:72.480000pt;}
.wb{width:80.480000pt;}
.w8{width:80.512000pt;}
.wa{width:88.512000pt;}
.w5{width:95.200000pt;}
.w4{width:95.232000pt;}
.w6{width:95.392000pt;}
.w18{width:99.040000pt;}
.w16{width:99.072000pt;}
.w17{width:99.232000pt;}
.w19{width:99.680000pt;}
.w1a{width:99.872000pt;}
.w15{width:100.320000pt;}
.wf{width:103.072000pt;}
.w7{width:104.480000pt;}
.we{width:122.080000pt;}
.w11{width:148.666667pt;}
.w14{width:169.466667pt;}
.w10{width:221.466667pt;}
.wc{width:536.573333pt;}
.w3{width:536.613333pt;}
.wd{width:597.213333pt;}
.w12{width:597.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:0.960000pt;}
.x2a{left:5.600000pt;}
.x28{left:8.000000pt;}
.x30{left:18.560000pt;}
.x24{left:23.360000pt;}
.x31{left:26.560000pt;}
.x22{left:28.000000pt;}
.x12{left:33.632000pt;}
.x23{left:35.720000pt;}
.xe{left:41.919988pt;}
.x26{left:45.760000pt;}
.x6{left:47.999988pt;}
.xc{left:71.999988pt;}
.x11{left:74.400000pt;}
.x10{left:78.111988pt;}
.x21{left:88.352000pt;}
.x8{left:96.031988pt;}
.x19{left:105.312000pt;}
.x2b{left:116.032000pt;}
.x20{left:128.672000pt;}
.x5{left:158.586655pt;}
.x13{left:170.266667pt;}
.x1a{left:210.426667pt;}
.x3{left:258.946655pt;}
.x14{left:266.146667pt;}
.xa{left:275.586655pt;}
.x2c{left:286.146667pt;}
.x1b{left:291.586667pt;}
.x25{left:314.786667pt;}
.xb{left:321.826655pt;}
.x2{left:335.746655pt;}
.x15{left:362.146667pt;}
.x1c{left:364.706667pt;}
.x2d{left:387.266667pt;}
.x4{left:401.213322pt;}
.x1{left:425.373322pt;}
.x1d{left:453.853333pt;}
.x16{left:458.013333pt;}
.x2e{left:486.973333pt;}
.x1e{left:526.973333pt;}
.x27{left:536.893333pt;}
.x17{left:554.013333pt;}
.x7{left:557.213322pt;}
.x2f{left:586.853333pt;}
.x1f{left:608.133333pt;}
.x18{left:649.893333pt;}
.xf{left:664.933322pt;}
.xd{left:683.333322pt;}
.x9{left:708.933322pt;}
.x32{left:746.079988pt;}
}




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