
    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_3cedc5c909f0dec677084388.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_817ae48d3a73d6b689538c24.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_fa738d8101e789c7852f4fb9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_765e04b2ae4328c27762a5b8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.070312;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_c2c5079fd771ed1c981c03c7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922852;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_9a96c889a413cfa8da21ac5b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.851000;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_f2481a6141606a0ee55c3e70.woff')format("woff");}.ff7{font-family:ff7;line-height:1.045000;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_107b8714bfb6b5854004f7bd.woff')format("woff");}.ff8{font-family:ff8;line-height:0.677246;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_63f06ba6a0e9e1f47dcdf5f3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.899414;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_18ba1f3aced28ef63e3bdb3f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.947266;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.000000px;}
.v5{vertical-align:19.800000px;}
.v3{vertical-align:23.760000px;}
.v6{vertical-align:33.000000px;}
.v2{vertical-align:35.760600px;}
.ls22{letter-spacing:-7.320000px;}
.ls41{letter-spacing:-4.752000px;}
.ls43{letter-spacing:-2.352000px;}
.ls38{letter-spacing:-1.980000px;}
.ls40{letter-spacing:-1.872000px;}
.ls35{letter-spacing:-1.200000px;}
.ls2f{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.936000px;}
.ls37{letter-spacing:-0.900000px;}
.ls24{letter-spacing:-0.864000px;}
.ls3f{letter-spacing:-0.792000px;}
.ls28{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.648000px;}
.ls23{letter-spacing:-0.600000px;}
.ls18{letter-spacing:-0.504000px;}
.ls42{letter-spacing:-0.480000px;}
.ls20{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.360000px;}
.ls3a{letter-spacing:-0.300000px;}
.ls36{letter-spacing:-0.240000px;}
.lsc{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.072000px;}
.ls8{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.060000px;}
.ls1e{letter-spacing:0.072000px;}
.ls25{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.288000px;}
.ls47{letter-spacing:0.300000px;}
.ls11{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.432000px;}
.ls2e{letter-spacing:0.504000px;}
.ls27{letter-spacing:0.576000px;}
.ls48{letter-spacing:0.600000px;}
.ls10{letter-spacing:0.648000px;}
.ls13{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.792000px;}
.ls26{letter-spacing:0.864000px;}
.ls2d{letter-spacing:0.936000px;}
.ls3b{letter-spacing:1.008000px;}
.ls14{letter-spacing:1.080000px;}
.ls32{letter-spacing:1.296000px;}
.ls49{letter-spacing:1.320000px;}
.ls30{letter-spacing:1.440000px;}
.ls3e{letter-spacing:2.448000px;}
.ls4{letter-spacing:3.085800px;}
.ls2b{letter-spacing:3.168000px;}
.ls16{letter-spacing:3.180000px;}
.lsa{letter-spacing:3.600000px;}
.ls46{letter-spacing:3.792000px;}
.ls0{letter-spacing:4.260000px;}
.ls45{letter-spacing:4.272000px;}
.ls5{letter-spacing:4.560000px;}
.ls17{letter-spacing:4.608000px;}
.ls3c{letter-spacing:4.752000px;}
.ls4a{letter-spacing:5.040000px;}
.ls44{letter-spacing:5.088000px;}
.ls2c{letter-spacing:7.992000px;}
.lsb{letter-spacing:8.400000px;}
.ls6{letter-spacing:8.460000px;}
.ls9{letter-spacing:8.700000px;}
.ls3{letter-spacing:9.000000px;}
.ls1a{letter-spacing:9.504000px;}
.ls19{letter-spacing:9.576000px;}
.ls2a{letter-spacing:9.648000px;}
.ls1{letter-spacing:9.780000px;}
.ls1f{letter-spacing:10.152000px;}
.ls31{letter-spacing:10.368000px;}
.ls2{letter-spacing:10.740000px;}
.ls29{letter-spacing:10.872000px;}
.ls12{letter-spacing:12.660000px;}
.ls3d{letter-spacing:132.096000px;}
.ls33{letter-spacing:213.780000px;}
.ls34{letter-spacing:229.680000px;}
.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;}
}
.ws58{word-spacing:-66.048000px;}
.ws5{word-spacing:-48.528000px;}
.ws1{word-spacing:-40.440000px;}
.ws55{word-spacing:-34.800000px;}
.ws51{word-spacing:-32.352000px;}
.ws54{word-spacing:-31.872000px;}
.ws52{word-spacing:-27.600000px;}
.ws8{word-spacing:-25.320000px;}
.ws36{word-spacing:-25.260000px;}
.ws50{word-spacing:-21.168000px;}
.ws3a{word-spacing:-20.952000px;}
.ws3b{word-spacing:-20.592000px;}
.ws17{word-spacing:-20.460000px;}
.ws4e{word-spacing:-20.376000px;}
.ws6{word-spacing:-20.280000px;}
.ws9{word-spacing:-20.232000px;}
.ws18{word-spacing:-20.040000px;}
.ws4{word-spacing:-18.240000px;}
.ws2{word-spacing:-16.860000px;}
.ws4a{word-spacing:-16.560000px;}
.ws42{word-spacing:-15.960000px;}
.ws3e{word-spacing:-15.660000px;}
.ws43{word-spacing:-14.880000px;}
.ws3{word-spacing:-14.162400px;}
.ws53{word-spacing:-13.488000px;}
.ws5d{word-spacing:-12.624000px;}
.ws5c{word-spacing:-12.336000px;}
.ws7{word-spacing:-12.144000px;}
.ws25{word-spacing:-11.802000px;}
.ws5e{word-spacing:-11.376000px;}
.ws30{word-spacing:-10.872000px;}
.wsf{word-spacing:-10.740000px;}
.ws27{word-spacing:-10.152000px;}
.ws31{word-spacing:-9.648000px;}
.ws13{word-spacing:-8.460000px;}
.ws12{word-spacing:-8.400000px;}
.ws33{word-spacing:-7.992000px;}
.ws57{word-spacing:-4.752000px;}
.ws20{word-spacing:-4.608000px;}
.ws5f{word-spacing:-4.272000px;}
.ws11{word-spacing:-3.600000px;}
.ws32{word-spacing:-3.168000px;}
.ws3c{word-spacing:-1.440000px;}
.ws3d{word-spacing:-1.296000px;}
.ws1d{word-spacing:-1.080000px;}
.ws4f{word-spacing:-1.008000px;}
.ws38{word-spacing:-0.936000px;}
.ws2f{word-spacing:-0.864000px;}
.ws35{word-spacing:-0.792000px;}
.ws1a{word-spacing:-0.720000px;}
.ws1b{word-spacing:-0.648000px;}
.ws62{word-spacing:-0.600000px;}
.ws34{word-spacing:-0.576000px;}
.ws37{word-spacing:-0.504000px;}
.ws24{word-spacing:-0.432000px;}
.ws1c{word-spacing:-0.360000px;}
.ws61{word-spacing:-0.300000px;}
.ws19{word-spacing:-0.288000px;}
.ws1e{word-spacing:-0.216000px;}
.ws2d{word-spacing:-0.144000px;}
.ws26{word-spacing:-0.072000px;}
.wsa{word-spacing:-0.060000px;}
.wsb{word-spacing:0.000000px;}
.ws23{word-spacing:0.072000px;}
.ws22{word-spacing:0.144000px;}
.ws14{word-spacing:0.216000px;}
.ws48{word-spacing:0.240000px;}
.ws4d{word-spacing:0.300000px;}
.ws16{word-spacing:0.360000px;}
.ws28{word-spacing:0.432000px;}
.ws5a{word-spacing:0.480000px;}
.ws21{word-spacing:0.504000px;}
.ws2b{word-spacing:0.600000px;}
.ws29{word-spacing:0.648000px;}
.ws2e{word-spacing:0.720000px;}
.ws56{word-spacing:0.792000px;}
.ws2c{word-spacing:0.864000px;}
.ws15{word-spacing:0.936000px;}
.ws39{word-spacing:1.080000px;}
.wse{word-spacing:1.800000px;}
.ws59{word-spacing:1.872000px;}
.ws45{word-spacing:2.340000px;}
.ws5b{word-spacing:2.352000px;}
.ws10{word-spacing:3.540000px;}
.ws47{word-spacing:4.200000px;}
.ws46{word-spacing:4.260000px;}
.ws1f{word-spacing:5.112000px;}
.ws60{word-spacing:6.144000px;}
.ws2a{word-spacing:7.320000px;}
.ws0{word-spacing:8.400000px;}
.ws4b{word-spacing:19.320000px;}
.ws44{word-spacing:22.380000px;}
.ws4c{word-spacing:30.120000px;}
.wsc{word-spacing:33.720000px;}
.ws3f{word-spacing:43.200000px;}
.ws41{word-spacing:63.480000px;}
.wsd{word-spacing:75.180000px;}
.ws49{word-spacing:91.200000px;}
.ws40{word-spacing:111.780000px;}
._15{margin-left:-940.440000px;}
._9{margin-left:-66.360000px;}
._1a{margin-left:-14.952000px;}
._c{margin-left:-11.880000px;}
._18{margin-left:-9.576000px;}
._6{margin-left:-8.520000px;}
._11{margin-left:-7.332000px;}
._7{margin-left:-5.940000px;}
._20{margin-left:-4.908000px;}
._14{margin-left:-3.900000px;}
._3{margin-left:-2.460000px;}
._e{margin-left:-1.020000px;}
._2{width:1.500000px;}
._5{width:3.000000px;}
._1{width:4.260000px;}
._d{width:5.325000px;}
._10{width:6.576000px;}
._b{width:8.400000px;}
._f{width:9.552000px;}
._12{width:10.584000px;}
._16{width:11.796000px;}
._4{width:13.560000px;}
._19{width:15.552000px;}
._a{width:25.800000px;}
._13{width:31.646100px;}
._8{width:41.520000px;}
._1b{width:55.800000px;}
._17{width:73.140000px;}
._1f{width:107.160000px;}
._1e{width:142.860000px;}
._0{width:201.540000px;}
._1c{width:391.980000px;}
._1d{width:411.060000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:35.700000px;}
.fs6{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs2{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y43{bottom:76.759200px;}
.y2{bottom:76.760700px;}
.y42{bottom:93.259200px;}
.y1{bottom:93.260700px;}
.y66{bottom:138.259350px;}
.y21{bottom:138.260700px;}
.yf7{bottom:139.172700px;}
.yb0{bottom:139.369200px;}
.y121{bottom:139.690950px;}
.y14b{bottom:140.168850px;}
.yd3{bottom:140.567400px;}
.y41{bottom:141.626850px;}
.y8c{bottom:141.899550px;}
.y100{bottom:142.872750px;}
.yf8{bottom:142.887750px;}
.y107{bottom:142.889100px;}
.y20{bottom:153.260700px;}
.y14a{bottom:155.768850px;}
.y65{bottom:157.466850px;}
.yf6{bottom:161.672700px;}
.y120{bottom:162.046950px;}
.yaf{bottom:162.463200px;}
.yd2{bottom:163.373400px;}
.y40{bottom:164.126850px;}
.y8b{bottom:164.399550px;}
.y149{bottom:171.368850px;}
.y1f{bottom:172.468200px;}
.yf5{bottom:184.172700px;}
.y11f{bottom:184.402950px;}
.yae{bottom:185.557200px;}
.yd1{bottom:186.179400px;}
.y8a{bottom:186.593550px;}
.y3f{bottom:186.626850px;}
.y148{bottom:186.968850px;}
.y147{bottom:202.568850px;}
.y64{bottom:203.329350px;}
.yf4{bottom:206.672700px;}
.y11e{bottom:206.758950px;}
.yad{bottom:208.651200px;}
.yd0{bottom:208.985400px;}
.y3e{bottom:209.126850px;}
.y1e{bottom:211.489050px;}
.y146{bottom:218.168850px;}
.y110{bottom:218.622750px;}
.yf9{bottom:218.637750px;}
.y108{bottom:218.639100px;}
.y63{bottom:226.585350px;}
.y11d{bottom:229.114950px;}
.yf3{bottom:229.172700px;}
.y89{bottom:230.999550px;}
.y3d{bottom:231.626850px;}
.yac{bottom:231.745200px;}
.ycf{bottom:231.791400px;}
.y145{bottom:233.768850px;}
.y1d{bottom:233.989050px;}
.y144{bottom:249.368850px;}
.y62{bottom:249.841350px;}
.y11c{bottom:251.470950px;}
.yf2{bottom:251.672700px;}
.y88{bottom:253.193550px;}
.y3c{bottom:254.126850px;}
.yce{bottom:254.597400px;}
.yab{bottom:254.839200px;}
.y1c{bottom:256.489050px;}
.y143{bottom:264.968850px;}
.y61{bottom:273.097350px;}
.y11b{bottom:273.826950px;}
.yf1{bottom:274.172700px;}
.y3b{bottom:276.626850px;}
.ycd{bottom:277.403400px;}
.yfa{bottom:277.437750px;}
.y109{bottom:277.439100px;}
.yaa{bottom:277.933200px;}
.y1b{bottom:278.989050px;}
.y142{bottom:280.568850px;}
.y87{bottom:283.897500px;}
.y141{bottom:296.168850px;}
.y11a{bottom:296.182950px;}
.y60{bottom:296.353350px;}
.yf0{bottom:296.672700px;}
.y3a{bottom:299.126850px;}
.ycc{bottom:300.209400px;}
.ya9{bottom:301.027200px;}
.y1a{bottom:301.489050px;}
.y86{bottom:302.347500px;}
.y140{bottom:311.768850px;}
.y119{bottom:318.538950px;}
.yef{bottom:319.172700px;}
.y5f{bottom:319.609350px;}
.y85{bottom:320.797500px;}
.y39{bottom:321.626850px;}
.ycb{bottom:323.015400px;}
.y19{bottom:323.989050px;}
.ya8{bottom:324.121200px;}
.y13f{bottom:327.368850px;}
.y101{bottom:335.082750px;}
.yfb{bottom:335.097750px;}
.y10a{bottom:335.099100px;}
.y84{bottom:339.247500px;}
.y118{bottom:340.894950px;}
.yee{bottom:341.672700px;}
.y5e{bottom:342.865350px;}
.y13e{bottom:342.968850px;}
.y38{bottom:344.126850px;}
.yca{bottom:345.821400px;}
.y18{bottom:346.489050px;}
.ya7{bottom:347.215200px;}
.y83{bottom:357.697500px;}
.y13d{bottom:358.568850px;}
.y117{bottom:363.250950px;}
.yed{bottom:364.172700px;}
.y5d{bottom:366.121350px;}
.yc9{bottom:368.627400px;}
.y17{bottom:368.989050px;}
.ya6{bottom:370.309200px;}
.y13c{bottom:374.168850px;}
.y82{bottom:376.147500px;}
.y37{bottom:381.508800px;}
.y116{bottom:385.606950px;}
.yec{bottom:386.672700px;}
.y5c{bottom:389.377350px;}
.y13b{bottom:389.768850px;}
.yc8{bottom:391.433400px;}
.y16{bottom:391.489050px;}
.ya5{bottom:393.403200px;}
.y81{bottom:394.597500px;}
.y36{bottom:404.008800px;}
.y13a{bottom:405.368850px;}
.y115{bottom:407.962950px;}
.yeb{bottom:409.172700px;}
.y5b{bottom:412.633350px;}
.y80{bottom:413.047500px;}
.y15{bottom:413.989050px;}
.ya4{bottom:416.497200px;}
.y139{bottom:420.968850px;}
.yc7{bottom:429.107400px;}
.y114{bottom:430.318950px;}
.y7f{bottom:431.497500px;}
.yea{bottom:431.672700px;}
.y5a{bottom:435.889350px;}
.y14{bottom:436.489050px;}
.ya3{bottom:439.591200px;}
.y138{bottom:442.940850px;}
.yc6{bottom:451.913400px;}
.y113{bottom:452.674950px;}
.y35{bottom:453.260700px;}
.ye9{bottom:454.172700px;}
.y7e{bottom:458.475450px;}
.y13{bottom:458.989050px;}
.y59{bottom:459.145350px;}
.ya2{bottom:462.685200px;}
.yc5{bottom:474.719400px;}
.y112{bottom:475.024950px;}
.y34{bottom:475.760700px;}
.ye8{bottom:476.672700px;}
.y7d{bottom:480.669450px;}
.y12{bottom:481.489050px;}
.y58{bottom:482.401350px;}
.ya1{bottom:485.779200px;}
.y137{bottom:488.996850px;}
.yc4{bottom:497.525400px;}
.y33{bottom:498.260700px;}
.ye7{bottom:499.172700px;}
.y7c{bottom:502.863450px;}
.y11{bottom:503.989050px;}
.y136{bottom:504.452850px;}
.y57{bottom:505.657350px;}
.ya0{bottom:508.873200px;}
.y102{bottom:512.787750px;}
.yfc{bottom:512.802750px;}
.y10b{bottom:512.804100px;}
.y135{bottom:519.908850px;}
.yc3{bottom:520.331400px;}
.y32{bottom:520.760700px;}
.ye6{bottom:521.672700px;}
.y7b{bottom:525.057450px;}
.y10{bottom:526.489050px;}
.y56{bottom:528.913350px;}
.y9f{bottom:531.967200px;}
.y134{bottom:535.364850px;}
.yc2{bottom:543.137400px;}
.y31{bottom:543.260700px;}
.ye5{bottom:544.172700px;}
.y7a{bottom:547.251450px;}
.yf{bottom:548.989050px;}
.y133{bottom:550.820850px;}
.y55{bottom:552.169350px;}
.y9e{bottom:555.061200px;}
.y30{bottom:565.760700px;}
.yc1{bottom:565.943400px;}
.y132{bottom:566.276850px;}
.ye4{bottom:566.672700px;}
.y111{bottom:569.352750px;}
.yfd{bottom:569.367750px;}
.y10c{bottom:569.369100px;}
.ye{bottom:571.489050px;}
.y54{bottom:575.425350px;}
.y79{bottom:577.955400px;}
.y15c{bottom:578.132850px;}
.y9d{bottom:578.155200px;}
.y131{bottom:581.732850px;}
.y2f{bottom:588.260700px;}
.yc0{bottom:588.749400px;}
.ye3{bottom:589.172700px;}
.yd{bottom:593.989050px;}
.y78{bottom:596.405400px;}
.y15b{bottom:596.882850px;}
.y53{bottom:598.681350px;}
.y9c{bottom:601.249200px;}
.y130{bottom:603.560850px;}
.y2e{bottom:610.760700px;}
.ybf{bottom:611.555400px;}
.ye2{bottom:611.672700px;}
.y77{bottom:614.855400px;}
.y15a{bottom:615.632850px;}
.yc{bottom:616.489050px;}
.y52{bottom:621.937350px;}
.y9b{bottom:624.343200px;}
.y103{bottom:630.987750px;}
.yfe{bottom:631.002750px;}
.y10d{bottom:631.004100px;}
.y2d{bottom:633.260700px;}
.y76{bottom:633.305400px;}
.ye1{bottom:634.172700px;}
.ybe{bottom:634.361400px;}
.y159{bottom:634.382850px;}
.y51{bottom:645.193350px;}
.y9a{bottom:647.437200px;}
.y12f{bottom:649.460700px;}
.y75{bottom:651.755400px;}
.y2c{bottom:655.760700px;}
.ye0{bottom:656.672700px;}
.ybd{bottom:657.167400px;}
.yb{bottom:661.489050px;}
.y158{bottom:664.382850px;}
.y50{bottom:668.449350px;}
.y74{bottom:670.205400px;}
.y99{bottom:670.531200px;}
.y12e{bottom:672.410700px;}
.y2b{bottom:678.260700px;}
.ydf{bottom:679.172700px;}
.ybc{bottom:679.973400px;}
.ya{bottom:680.239050px;}
.y157{bottom:683.132850px;}
.yff{bottom:683.607750px;}
.y73{bottom:688.655400px;}
.y4f{bottom:691.705350px;}
.y98{bottom:693.625200px;}
.y10f{bottom:694.338300px;}
.y12d{bottom:695.360700px;}
.y2a{bottom:700.760700px;}
.yde{bottom:701.672700px;}
.y156{bottom:701.882850px;}
.ybb{bottom:702.779400px;}
.y104{bottom:704.313300px;}
.y72{bottom:707.105400px;}
.y10e{bottom:714.288300px;}
.y4e{bottom:714.961350px;}
.y97{bottom:716.719200px;}
.y12c{bottom:718.310700px;}
.y155{bottom:720.632850px;}
.y9{bottom:722.374950px;}
.y29{bottom:723.260700px;}
.ydd{bottom:724.172700px;}
.y71{bottom:725.555400px;}
.yba{bottom:725.585400px;}
.y4d{bottom:738.217350px;}
.y96{bottom:739.813200px;}
.y12b{bottom:741.260700px;}
.y105{bottom:743.489100px;}
.y70{bottom:744.005400px;}
.y8{bottom:744.874950px;}
.y28{bottom:745.760700px;}
.ydc{bottom:746.672700px;}
.yb9{bottom:748.391400px;}
.y154{bottom:750.632850px;}
.y4c{bottom:761.473350px;}
.y95{bottom:762.907200px;}
.y12a{bottom:764.210700px;}
.y27{bottom:768.260700px;}
.ydb{bottom:769.172700px;}
.y6f{bottom:771.007350px;}
.yb8{bottom:771.197400px;}
.y4b{bottom:784.729350px;}
.y94{bottom:786.001200px;}
.y129{bottom:787.160700px;}
.y7{bottom:790.760700px;}
.yda{bottom:791.672700px;}
.y153{bottom:791.882850px;}
.y6e{bottom:793.201350px;}
.yb7{bottom:794.003400px;}
.y4a{bottom:807.985350px;}
.y93{bottom:809.095200px;}
.y128{bottom:810.110700px;}
.y152{bottom:810.632850px;}
.y6{bottom:813.260700px;}
.yd9{bottom:814.172700px;}
.y6d{bottom:815.395350px;}
.yb6{bottom:816.809400px;}
.y151{bottom:829.382850px;}
.y49{bottom:831.241350px;}
.y92{bottom:832.189200px;}
.y127{bottom:833.060700px;}
.y26{bottom:835.760700px;}
.yd8{bottom:836.672700px;}
.y6c{bottom:837.589350px;}
.yb5{bottom:839.615400px;}
.y150{bottom:848.132850px;}
.y48{bottom:854.497350px;}
.y91{bottom:855.283200px;}
.y126{bottom:856.010700px;}
.y25{bottom:858.260700px;}
.yd7{bottom:859.172700px;}
.y6b{bottom:859.783350px;}
.yb4{bottom:862.421400px;}
.y14f{bottom:866.882850px;}
.y47{bottom:877.753350px;}
.y90{bottom:878.377200px;}
.y125{bottom:878.960700px;}
.y5{bottom:880.760700px;}
.yd6{bottom:881.672700px;}
.y6a{bottom:881.977350px;}
.yb3{bottom:885.227400px;}
.y14e{bottom:885.632850px;}
.y46{bottom:901.009350px;}
.y8f{bottom:901.471200px;}
.y124{bottom:901.910700px;}
.y24{bottom:903.260700px;}
.y69{bottom:904.171350px;}
.y14d{bottom:904.382850px;}
.y4{bottom:910.760700px;}
.y14c{bottom:923.132850px;}
.yb2{bottom:923.659200px;}
.y45{bottom:924.253350px;}
.y8e{bottom:924.565200px;}
.y123{bottom:924.860700px;}
.y23{bottom:925.760700px;}
.y68{bottom:926.365350px;}
.yd5{bottom:926.366700px;}
.y106{bottom:928.799100px;}
.y3{bottom:940.760700px;}
.yb1{bottom:947.209200px;}
.y44{bottom:947.509350px;}
.y8d{bottom:947.659200px;}
.y122{bottom:947.810700px;}
.y22{bottom:948.260700px;}
.y67{bottom:948.559350px;}
.yd4{bottom:948.560700px;}
.h8{height:24.630908px;}
.h12{height:39.888000px;}
.hf{height:39.990234px;}
.h9{height:40.757812px;}
.h11{height:41.396484px;}
.h10{height:42.685547px;}
.ha{height:47.988281px;}
.hd{height:49.860000px;}
.h5{height:50.580000px;}
.h2{height:50.947266px;}
.hb{height:51.222656px;}
.hc{height:55.463086px;}
.h6{height:61.136719px;}
.h3{height:62.947266px;}
.h7{height:65.965078px;}
.he{height:72.990234px;}
.h4{height:101.894531px;}
.h0{height:1059.519000px;}
.h1{height:1059.750000px;}
.w1{width:741.000000px;}
.w0{width:741.259500px;}
.x0{left:0.000000px;}
.x1{left:88.759800px;}
.x3{left:103.641750px;}
.x23{left:105.488400px;}
.x6{left:112.495950px;}
.x25{left:113.738400px;}
.x21{left:121.988400px;}
.x5{left:127.381950px;}
.x41{left:129.228600px;}
.x22{left:130.238400px;}
.x43{left:137.478600px;}
.x24{left:138.488400px;}
.x7{left:142.263750px;}
.x8{left:146.520000px;}
.x30{left:151.244250px;}
.x40{left:153.978600px;}
.x2{left:156.259800px;}
.x26{left:161.213400px;}
.x42{left:162.228600px;}
.x9{left:174.330750px;}
.x27{left:179.963400px;}
.x44{left:184.953600px;}
.x28{left:198.713400px;}
.x45{left:202.953600px;}
.xc{left:211.941150px;}
.x29{left:217.463400px;}
.xe{left:220.191150px;}
.xa{left:228.441150px;}
.xb{left:236.691150px;}
.x46{left:238.953600px;}
.xd{left:244.941150px;}
.x2a{left:254.963400px;}
.x16{left:257.697000px;}
.xf{left:267.666150px;}
.x2b{left:273.713400px;}
.x47{left:274.953600px;}
.x10{left:287.616150px;}
.x2c{left:292.463400px;}
.x48{left:297.685050px;}
.x11{left:307.566150px;}
.x2d{left:311.213400px;}
.x49{left:315.685050px;}
.x12{left:327.516150px;}
.x2e{left:329.963400px;}
.x4a{left:333.685050px;}
.x13{left:347.466150px;}
.x2f{left:348.713400px;}
.x4b{left:351.685050px;}
.x39{left:361.475700px;}
.x14{left:367.416150px;}
.x4c{left:369.685050px;}
.x31{left:371.444850px;}
.x15{left:387.366150px;}
.x32{left:390.194850px;}
.x4d{left:405.685050px;}
.x33{left:408.944850px;}
.x4e{left:423.685050px;}
.x34{left:427.694850px;}
.x4f{left:441.685050px;}
.x35{left:446.444850px;}
.x50{left:459.685050px;}
.x36{left:465.194850px;}
.x20{left:474.828750px;}
.x51{left:477.685050px;}
.x17{left:484.797600px;}
.x52{left:495.685050px;}
.x37{left:502.694850px;}
.x18{left:504.747600px;}
.x53{left:513.691500px;}
.x38{left:521.444850px;}
.x19{left:524.697600px;}
.x54{left:531.691500px;}
.x3a{left:540.201300px;}
.x1a{left:544.647600px;}
.x55{left:549.691500px;}
.x3f{left:552.957300px;}
.x3b{left:562.926300px;}
.x1b{left:564.597600px;}
.x56{left:572.416500px;}
.x3c{left:581.676300px;}
.x1c{left:584.547600px;}
.x57{left:590.416500px;}
.x3d{left:600.426300px;}
.x1d{left:604.497600px;}
.x58{left:608.416500px;}
.x3e{left:619.176300px;}
.x1e{left:624.447600px;}
.x59{left:626.416500px;}
.x4{left:635.390550px;}
.x1f{left:644.397600px;}
@media print{
.v4{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.666667pt;}
.v5{vertical-align:17.600000pt;}
.v3{vertical-align:21.120000pt;}
.v6{vertical-align:29.333333pt;}
.v2{vertical-align:31.787200pt;}
.ls22{letter-spacing:-6.506667pt;}
.ls41{letter-spacing:-4.224000pt;}
.ls43{letter-spacing:-2.090667pt;}
.ls38{letter-spacing:-1.760000pt;}
.ls40{letter-spacing:-1.664000pt;}
.ls35{letter-spacing:-1.066667pt;}
.ls2f{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.832000pt;}
.ls37{letter-spacing:-0.800000pt;}
.ls24{letter-spacing:-0.768000pt;}
.ls3f{letter-spacing:-0.704000pt;}
.ls28{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.576000pt;}
.ls23{letter-spacing:-0.533333pt;}
.ls18{letter-spacing:-0.448000pt;}
.ls42{letter-spacing:-0.426667pt;}
.ls20{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls3a{letter-spacing:-0.266667pt;}
.ls36{letter-spacing:-0.213333pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.053333pt;}
.ls1e{letter-spacing:0.064000pt;}
.ls25{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls47{letter-spacing:0.266667pt;}
.ls11{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.384000pt;}
.ls2e{letter-spacing:0.448000pt;}
.ls27{letter-spacing:0.512000pt;}
.ls48{letter-spacing:0.533333pt;}
.ls10{letter-spacing:0.576000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.704000pt;}
.ls26{letter-spacing:0.768000pt;}
.ls2d{letter-spacing:0.832000pt;}
.ls3b{letter-spacing:0.896000pt;}
.ls14{letter-spacing:0.960000pt;}
.ls32{letter-spacing:1.152000pt;}
.ls49{letter-spacing:1.173333pt;}
.ls30{letter-spacing:1.280000pt;}
.ls3e{letter-spacing:2.176000pt;}
.ls4{letter-spacing:2.742933pt;}
.ls2b{letter-spacing:2.816000pt;}
.ls16{letter-spacing:2.826667pt;}
.lsa{letter-spacing:3.200000pt;}
.ls46{letter-spacing:3.370667pt;}
.ls0{letter-spacing:3.786667pt;}
.ls45{letter-spacing:3.797333pt;}
.ls5{letter-spacing:4.053333pt;}
.ls17{letter-spacing:4.096000pt;}
.ls3c{letter-spacing:4.224000pt;}
.ls4a{letter-spacing:4.480000pt;}
.ls44{letter-spacing:4.522667pt;}
.ls2c{letter-spacing:7.104000pt;}
.lsb{letter-spacing:7.466667pt;}
.ls6{letter-spacing:7.520000pt;}
.ls9{letter-spacing:7.733333pt;}
.ls3{letter-spacing:8.000000pt;}
.ls1a{letter-spacing:8.448000pt;}
.ls19{letter-spacing:8.512000pt;}
.ls2a{letter-spacing:8.576000pt;}
.ls1{letter-spacing:8.693333pt;}
.ls1f{letter-spacing:9.024000pt;}
.ls31{letter-spacing:9.216000pt;}
.ls2{letter-spacing:9.546667pt;}
.ls29{letter-spacing:9.664000pt;}
.ls12{letter-spacing:11.253333pt;}
.ls3d{letter-spacing:117.418667pt;}
.ls33{letter-spacing:190.026667pt;}
.ls34{letter-spacing:204.160000pt;}
.ws58{word-spacing:-58.709333pt;}
.ws5{word-spacing:-43.136000pt;}
.ws1{word-spacing:-35.946667pt;}
.ws55{word-spacing:-30.933333pt;}
.ws51{word-spacing:-28.757333pt;}
.ws54{word-spacing:-28.330667pt;}
.ws52{word-spacing:-24.533333pt;}
.ws8{word-spacing:-22.506667pt;}
.ws36{word-spacing:-22.453333pt;}
.ws50{word-spacing:-18.816000pt;}
.ws3a{word-spacing:-18.624000pt;}
.ws3b{word-spacing:-18.304000pt;}
.ws17{word-spacing:-18.186667pt;}
.ws4e{word-spacing:-18.112000pt;}
.ws6{word-spacing:-18.026667pt;}
.ws9{word-spacing:-17.984000pt;}
.ws18{word-spacing:-17.813333pt;}
.ws4{word-spacing:-16.213333pt;}
.ws2{word-spacing:-14.986667pt;}
.ws4a{word-spacing:-14.720000pt;}
.ws42{word-spacing:-14.186667pt;}
.ws3e{word-spacing:-13.920000pt;}
.ws43{word-spacing:-13.226667pt;}
.ws3{word-spacing:-12.588800pt;}
.ws53{word-spacing:-11.989333pt;}
.ws5d{word-spacing:-11.221333pt;}
.ws5c{word-spacing:-10.965333pt;}
.ws7{word-spacing:-10.794667pt;}
.ws25{word-spacing:-10.490667pt;}
.ws5e{word-spacing:-10.112000pt;}
.ws30{word-spacing:-9.664000pt;}
.wsf{word-spacing:-9.546667pt;}
.ws27{word-spacing:-9.024000pt;}
.ws31{word-spacing:-8.576000pt;}
.ws13{word-spacing:-7.520000pt;}
.ws12{word-spacing:-7.466667pt;}
.ws33{word-spacing:-7.104000pt;}
.ws57{word-spacing:-4.224000pt;}
.ws20{word-spacing:-4.096000pt;}
.ws5f{word-spacing:-3.797333pt;}
.ws11{word-spacing:-3.200000pt;}
.ws32{word-spacing:-2.816000pt;}
.ws3c{word-spacing:-1.280000pt;}
.ws3d{word-spacing:-1.152000pt;}
.ws1d{word-spacing:-0.960000pt;}
.ws4f{word-spacing:-0.896000pt;}
.ws38{word-spacing:-0.832000pt;}
.ws2f{word-spacing:-0.768000pt;}
.ws35{word-spacing:-0.704000pt;}
.ws1a{word-spacing:-0.640000pt;}
.ws1b{word-spacing:-0.576000pt;}
.ws62{word-spacing:-0.533333pt;}
.ws34{word-spacing:-0.512000pt;}
.ws37{word-spacing:-0.448000pt;}
.ws24{word-spacing:-0.384000pt;}
.ws1c{word-spacing:-0.320000pt;}
.ws61{word-spacing:-0.266667pt;}
.ws19{word-spacing:-0.256000pt;}
.ws1e{word-spacing:-0.192000pt;}
.ws2d{word-spacing:-0.128000pt;}
.ws26{word-spacing:-0.064000pt;}
.wsa{word-spacing:-0.053333pt;}
.wsb{word-spacing:0.000000pt;}
.ws23{word-spacing:0.064000pt;}
.ws22{word-spacing:0.128000pt;}
.ws14{word-spacing:0.192000pt;}
.ws48{word-spacing:0.213333pt;}
.ws4d{word-spacing:0.266667pt;}
.ws16{word-spacing:0.320000pt;}
.ws28{word-spacing:0.384000pt;}
.ws5a{word-spacing:0.426667pt;}
.ws21{word-spacing:0.448000pt;}
.ws2b{word-spacing:0.533333pt;}
.ws29{word-spacing:0.576000pt;}
.ws2e{word-spacing:0.640000pt;}
.ws56{word-spacing:0.704000pt;}
.ws2c{word-spacing:0.768000pt;}
.ws15{word-spacing:0.832000pt;}
.ws39{word-spacing:0.960000pt;}
.wse{word-spacing:1.600000pt;}
.ws59{word-spacing:1.664000pt;}
.ws45{word-spacing:2.080000pt;}
.ws5b{word-spacing:2.090667pt;}
.ws10{word-spacing:3.146667pt;}
.ws47{word-spacing:3.733333pt;}
.ws46{word-spacing:3.786667pt;}
.ws1f{word-spacing:4.544000pt;}
.ws60{word-spacing:5.461333pt;}
.ws2a{word-spacing:6.506667pt;}
.ws0{word-spacing:7.466667pt;}
.ws4b{word-spacing:17.173333pt;}
.ws44{word-spacing:19.893333pt;}
.ws4c{word-spacing:26.773333pt;}
.wsc{word-spacing:29.973333pt;}
.ws3f{word-spacing:38.400000pt;}
.ws41{word-spacing:56.426667pt;}
.wsd{word-spacing:66.826667pt;}
.ws49{word-spacing:81.066667pt;}
.ws40{word-spacing:99.360000pt;}
._15{margin-left:-835.946667pt;}
._9{margin-left:-58.986667pt;}
._1a{margin-left:-13.290667pt;}
._c{margin-left:-10.560000pt;}
._18{margin-left:-8.512000pt;}
._6{margin-left:-7.573333pt;}
._11{margin-left:-6.517333pt;}
._7{margin-left:-5.280000pt;}
._20{margin-left:-4.362667pt;}
._14{margin-left:-3.466667pt;}
._3{margin-left:-2.186667pt;}
._e{margin-left:-0.906667pt;}
._2{width:1.333333pt;}
._5{width:2.666667pt;}
._1{width:3.786667pt;}
._d{width:4.733333pt;}
._10{width:5.845333pt;}
._b{width:7.466667pt;}
._f{width:8.490667pt;}
._12{width:9.408000pt;}
._16{width:10.485333pt;}
._4{width:12.053333pt;}
._19{width:13.824000pt;}
._a{width:22.933333pt;}
._13{width:28.129867pt;}
._8{width:36.906667pt;}
._1b{width:49.600000pt;}
._17{width:65.013333pt;}
._1f{width:95.253333pt;}
._1e{width:126.986667pt;}
._0{width:179.146667pt;}
._1c{width:348.426667pt;}
._1d{width:365.386667pt;}
.fs5{font-size:31.733333pt;}
.fs6{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:68.230400pt;}
.y2{bottom:68.231733pt;}
.y42{bottom:82.897067pt;}
.y1{bottom:82.898400pt;}
.y66{bottom:122.897200pt;}
.y21{bottom:122.898400pt;}
.yf7{bottom:123.709067pt;}
.yb0{bottom:123.883733pt;}
.y121{bottom:124.169733pt;}
.y14b{bottom:124.594533pt;}
.yd3{bottom:124.948800pt;}
.y41{bottom:125.890533pt;}
.y8c{bottom:126.132933pt;}
.y100{bottom:126.998000pt;}
.yf8{bottom:127.011333pt;}
.y107{bottom:127.012533pt;}
.y20{bottom:136.231733pt;}
.y14a{bottom:138.461200pt;}
.y65{bottom:139.970533pt;}
.yf6{bottom:143.709067pt;}
.y120{bottom:144.041733pt;}
.yaf{bottom:144.411733pt;}
.yd2{bottom:145.220800pt;}
.y40{bottom:145.890533pt;}
.y8b{bottom:146.132933pt;}
.y149{bottom:152.327867pt;}
.y1f{bottom:153.305067pt;}
.yf5{bottom:163.709067pt;}
.y11f{bottom:163.913733pt;}
.yae{bottom:164.939733pt;}
.yd1{bottom:165.492800pt;}
.y8a{bottom:165.860933pt;}
.y3f{bottom:165.890533pt;}
.y148{bottom:166.194533pt;}
.y147{bottom:180.061200pt;}
.y64{bottom:180.737200pt;}
.yf4{bottom:183.709067pt;}
.y11e{bottom:183.785733pt;}
.yad{bottom:185.467733pt;}
.yd0{bottom:185.764800pt;}
.y3e{bottom:185.890533pt;}
.y1e{bottom:187.990267pt;}
.y146{bottom:193.927867pt;}
.y110{bottom:194.331333pt;}
.yf9{bottom:194.344667pt;}
.y108{bottom:194.345867pt;}
.y63{bottom:201.409200pt;}
.y11d{bottom:203.657733pt;}
.yf3{bottom:203.709067pt;}
.y89{bottom:205.332933pt;}
.y3d{bottom:205.890533pt;}
.yac{bottom:205.995733pt;}
.ycf{bottom:206.036800pt;}
.y145{bottom:207.794533pt;}
.y1d{bottom:207.990267pt;}
.y144{bottom:221.661200pt;}
.y62{bottom:222.081200pt;}
.y11c{bottom:223.529733pt;}
.yf2{bottom:223.709067pt;}
.y88{bottom:225.060933pt;}
.y3c{bottom:225.890533pt;}
.yce{bottom:226.308800pt;}
.yab{bottom:226.523733pt;}
.y1c{bottom:227.990267pt;}
.y143{bottom:235.527867pt;}
.y61{bottom:242.753200pt;}
.y11b{bottom:243.401733pt;}
.yf1{bottom:243.709067pt;}
.y3b{bottom:245.890533pt;}
.ycd{bottom:246.580800pt;}
.yfa{bottom:246.611333pt;}
.y109{bottom:246.612533pt;}
.yaa{bottom:247.051733pt;}
.y1b{bottom:247.990267pt;}
.y142{bottom:249.394533pt;}
.y87{bottom:252.353333pt;}
.y141{bottom:263.261200pt;}
.y11a{bottom:263.273733pt;}
.y60{bottom:263.425200pt;}
.yf0{bottom:263.709067pt;}
.y3a{bottom:265.890533pt;}
.ycc{bottom:266.852800pt;}
.ya9{bottom:267.579733pt;}
.y1a{bottom:267.990267pt;}
.y86{bottom:268.753333pt;}
.y140{bottom:277.127867pt;}
.y119{bottom:283.145733pt;}
.yef{bottom:283.709067pt;}
.y5f{bottom:284.097200pt;}
.y85{bottom:285.153333pt;}
.y39{bottom:285.890533pt;}
.ycb{bottom:287.124800pt;}
.y19{bottom:287.990267pt;}
.ya8{bottom:288.107733pt;}
.y13f{bottom:290.994533pt;}
.y101{bottom:297.851333pt;}
.yfb{bottom:297.864667pt;}
.y10a{bottom:297.865867pt;}
.y84{bottom:301.553333pt;}
.y118{bottom:303.017733pt;}
.yee{bottom:303.709067pt;}
.y5e{bottom:304.769200pt;}
.y13e{bottom:304.861200pt;}
.y38{bottom:305.890533pt;}
.yca{bottom:307.396800pt;}
.y18{bottom:307.990267pt;}
.ya7{bottom:308.635733pt;}
.y83{bottom:317.953333pt;}
.y13d{bottom:318.727867pt;}
.y117{bottom:322.889733pt;}
.yed{bottom:323.709067pt;}
.y5d{bottom:325.441200pt;}
.yc9{bottom:327.668800pt;}
.y17{bottom:327.990267pt;}
.ya6{bottom:329.163733pt;}
.y13c{bottom:332.594533pt;}
.y82{bottom:334.353333pt;}
.y37{bottom:339.118933pt;}
.y116{bottom:342.761733pt;}
.yec{bottom:343.709067pt;}
.y5c{bottom:346.113200pt;}
.y13b{bottom:346.461200pt;}
.yc8{bottom:347.940800pt;}
.y16{bottom:347.990267pt;}
.ya5{bottom:349.691733pt;}
.y81{bottom:350.753333pt;}
.y36{bottom:359.118933pt;}
.y13a{bottom:360.327867pt;}
.y115{bottom:362.633733pt;}
.yeb{bottom:363.709067pt;}
.y5b{bottom:366.785200pt;}
.y80{bottom:367.153333pt;}
.y15{bottom:367.990267pt;}
.ya4{bottom:370.219733pt;}
.y139{bottom:374.194533pt;}
.yc7{bottom:381.428800pt;}
.y114{bottom:382.505733pt;}
.y7f{bottom:383.553333pt;}
.yea{bottom:383.709067pt;}
.y5a{bottom:387.457200pt;}
.y14{bottom:387.990267pt;}
.ya3{bottom:390.747733pt;}
.y138{bottom:393.725200pt;}
.yc6{bottom:401.700800pt;}
.y113{bottom:402.377733pt;}
.y35{bottom:402.898400pt;}
.ye9{bottom:403.709067pt;}
.y7e{bottom:407.533733pt;}
.y13{bottom:407.990267pt;}
.y59{bottom:408.129200pt;}
.ya2{bottom:411.275733pt;}
.yc5{bottom:421.972800pt;}
.y112{bottom:422.244400pt;}
.y34{bottom:422.898400pt;}
.ye8{bottom:423.709067pt;}
.y7d{bottom:427.261733pt;}
.y12{bottom:427.990267pt;}
.y58{bottom:428.801200pt;}
.ya1{bottom:431.803733pt;}
.y137{bottom:434.663867pt;}
.yc4{bottom:442.244800pt;}
.y33{bottom:442.898400pt;}
.ye7{bottom:443.709067pt;}
.y7c{bottom:446.989733pt;}
.y11{bottom:447.990267pt;}
.y136{bottom:448.402533pt;}
.y57{bottom:449.473200pt;}
.ya0{bottom:452.331733pt;}
.y102{bottom:455.811333pt;}
.yfc{bottom:455.824667pt;}
.y10b{bottom:455.825867pt;}
.y135{bottom:462.141200pt;}
.yc3{bottom:462.516800pt;}
.y32{bottom:462.898400pt;}
.ye6{bottom:463.709067pt;}
.y7b{bottom:466.717733pt;}
.y10{bottom:467.990267pt;}
.y56{bottom:470.145200pt;}
.y9f{bottom:472.859733pt;}
.y134{bottom:475.879867pt;}
.yc2{bottom:482.788800pt;}
.y31{bottom:482.898400pt;}
.ye5{bottom:483.709067pt;}
.y7a{bottom:486.445733pt;}
.yf{bottom:487.990267pt;}
.y133{bottom:489.618533pt;}
.y55{bottom:490.817200pt;}
.y9e{bottom:493.387733pt;}
.y30{bottom:502.898400pt;}
.yc1{bottom:503.060800pt;}
.y132{bottom:503.357200pt;}
.ye4{bottom:503.709067pt;}
.y111{bottom:506.091333pt;}
.yfd{bottom:506.104667pt;}
.y10c{bottom:506.105867pt;}
.ye{bottom:507.990267pt;}
.y54{bottom:511.489200pt;}
.y79{bottom:513.738133pt;}
.y15c{bottom:513.895867pt;}
.y9d{bottom:513.915733pt;}
.y131{bottom:517.095867pt;}
.y2f{bottom:522.898400pt;}
.yc0{bottom:523.332800pt;}
.ye3{bottom:523.709067pt;}
.yd{bottom:527.990267pt;}
.y78{bottom:530.138133pt;}
.y15b{bottom:530.562533pt;}
.y53{bottom:532.161200pt;}
.y9c{bottom:534.443733pt;}
.y130{bottom:536.498533pt;}
.y2e{bottom:542.898400pt;}
.ybf{bottom:543.604800pt;}
.ye2{bottom:543.709067pt;}
.y77{bottom:546.538133pt;}
.y15a{bottom:547.229200pt;}
.yc{bottom:547.990267pt;}
.y52{bottom:552.833200pt;}
.y9b{bottom:554.971733pt;}
.y103{bottom:560.878000pt;}
.yfe{bottom:560.891333pt;}
.y10d{bottom:560.892533pt;}
.y2d{bottom:562.898400pt;}
.y76{bottom:562.938133pt;}
.ye1{bottom:563.709067pt;}
.ybe{bottom:563.876800pt;}
.y159{bottom:563.895867pt;}
.y51{bottom:573.505200pt;}
.y9a{bottom:575.499733pt;}
.y12f{bottom:577.298400pt;}
.y75{bottom:579.338133pt;}
.y2c{bottom:582.898400pt;}
.ye0{bottom:583.709067pt;}
.ybd{bottom:584.148800pt;}
.yb{bottom:587.990267pt;}
.y158{bottom:590.562533pt;}
.y50{bottom:594.177200pt;}
.y74{bottom:595.738133pt;}
.y99{bottom:596.027733pt;}
.y12e{bottom:597.698400pt;}
.y2b{bottom:602.898400pt;}
.ydf{bottom:603.709067pt;}
.ybc{bottom:604.420800pt;}
.ya{bottom:604.656933pt;}
.y157{bottom:607.229200pt;}
.yff{bottom:607.651333pt;}
.y73{bottom:612.138133pt;}
.y4f{bottom:614.849200pt;}
.y98{bottom:616.555733pt;}
.y10f{bottom:617.189600pt;}
.y12d{bottom:618.098400pt;}
.y2a{bottom:622.898400pt;}
.yde{bottom:623.709067pt;}
.y156{bottom:623.895867pt;}
.ybb{bottom:624.692800pt;}
.y104{bottom:626.056267pt;}
.y72{bottom:628.538133pt;}
.y10e{bottom:634.922933pt;}
.y4e{bottom:635.521200pt;}
.y97{bottom:637.083733pt;}
.y12c{bottom:638.498400pt;}
.y155{bottom:640.562533pt;}
.y9{bottom:642.111067pt;}
.y29{bottom:642.898400pt;}
.ydd{bottom:643.709067pt;}
.y71{bottom:644.938133pt;}
.yba{bottom:644.964800pt;}
.y4d{bottom:656.193200pt;}
.y96{bottom:657.611733pt;}
.y12b{bottom:658.898400pt;}
.y105{bottom:660.879200pt;}
.y70{bottom:661.338133pt;}
.y8{bottom:662.111067pt;}
.y28{bottom:662.898400pt;}
.ydc{bottom:663.709067pt;}
.yb9{bottom:665.236800pt;}
.y154{bottom:667.229200pt;}
.y4c{bottom:676.865200pt;}
.y95{bottom:678.139733pt;}
.y12a{bottom:679.298400pt;}
.y27{bottom:682.898400pt;}
.ydb{bottom:683.709067pt;}
.y6f{bottom:685.339867pt;}
.yb8{bottom:685.508800pt;}
.y4b{bottom:697.537200pt;}
.y94{bottom:698.667733pt;}
.y129{bottom:699.698400pt;}
.y7{bottom:702.898400pt;}
.yda{bottom:703.709067pt;}
.y153{bottom:703.895867pt;}
.y6e{bottom:705.067867pt;}
.yb7{bottom:705.780800pt;}
.y4a{bottom:718.209200pt;}
.y93{bottom:719.195733pt;}
.y128{bottom:720.098400pt;}
.y152{bottom:720.562533pt;}
.y6{bottom:722.898400pt;}
.yd9{bottom:723.709067pt;}
.y6d{bottom:724.795867pt;}
.yb6{bottom:726.052800pt;}
.y151{bottom:737.229200pt;}
.y49{bottom:738.881200pt;}
.y92{bottom:739.723733pt;}
.y127{bottom:740.498400pt;}
.y26{bottom:742.898400pt;}
.yd8{bottom:743.709067pt;}
.y6c{bottom:744.523867pt;}
.yb5{bottom:746.324800pt;}
.y150{bottom:753.895867pt;}
.y48{bottom:759.553200pt;}
.y91{bottom:760.251733pt;}
.y126{bottom:760.898400pt;}
.y25{bottom:762.898400pt;}
.yd7{bottom:763.709067pt;}
.y6b{bottom:764.251867pt;}
.yb4{bottom:766.596800pt;}
.y14f{bottom:770.562533pt;}
.y47{bottom:780.225200pt;}
.y90{bottom:780.779733pt;}
.y125{bottom:781.298400pt;}
.y5{bottom:782.898400pt;}
.yd6{bottom:783.709067pt;}
.y6a{bottom:783.979867pt;}
.yb3{bottom:786.868800pt;}
.y14e{bottom:787.229200pt;}
.y46{bottom:800.897200pt;}
.y8f{bottom:801.307733pt;}
.y124{bottom:801.698400pt;}
.y24{bottom:802.898400pt;}
.y69{bottom:803.707867pt;}
.y14d{bottom:803.895867pt;}
.y4{bottom:809.565067pt;}
.y14c{bottom:820.562533pt;}
.yb2{bottom:821.030400pt;}
.y45{bottom:821.558533pt;}
.y8e{bottom:821.835733pt;}
.y123{bottom:822.098400pt;}
.y23{bottom:822.898400pt;}
.y68{bottom:823.435867pt;}
.yd5{bottom:823.437067pt;}
.y106{bottom:825.599200pt;}
.y3{bottom:836.231733pt;}
.yb1{bottom:841.963733pt;}
.y44{bottom:842.230533pt;}
.y8d{bottom:842.363733pt;}
.y122{bottom:842.498400pt;}
.y22{bottom:842.898400pt;}
.y67{bottom:843.163867pt;}
.yd4{bottom:843.165067pt;}
.h8{height:21.894141pt;}
.h12{height:35.456000pt;}
.hf{height:35.546875pt;}
.h9{height:36.229167pt;}
.h11{height:36.796875pt;}
.h10{height:37.942708pt;}
.ha{height:42.656250pt;}
.hd{height:44.320000pt;}
.h5{height:44.960000pt;}
.h2{height:45.286458pt;}
.hb{height:45.531250pt;}
.hc{height:49.300521pt;}
.h6{height:54.343750pt;}
.h3{height:55.953125pt;}
.h7{height:58.635625pt;}
.he{height:64.880208pt;}
.h4{height:90.572917pt;}
.h0{height:941.794667pt;}
.h1{height:942.000000pt;}
.w1{width:658.666667pt;}
.w0{width:658.897333pt;}
.x0{left:0.000000pt;}
.x1{left:78.897600pt;}
.x3{left:92.126000pt;}
.x23{left:93.767467pt;}
.x6{left:99.996400pt;}
.x25{left:101.100800pt;}
.x21{left:108.434133pt;}
.x5{left:113.228400pt;}
.x41{left:114.869867pt;}
.x22{left:115.767467pt;}
.x43{left:122.203200pt;}
.x24{left:123.100800pt;}
.x7{left:126.456667pt;}
.x8{left:130.240000pt;}
.x30{left:134.439333pt;}
.x40{left:136.869867pt;}
.x2{left:138.897600pt;}
.x26{left:143.300800pt;}
.x42{left:144.203200pt;}
.x9{left:154.960667pt;}
.x27{left:159.967467pt;}
.x44{left:164.403200pt;}
.x28{left:176.634133pt;}
.x45{left:180.403200pt;}
.xc{left:188.392133pt;}
.x29{left:193.300800pt;}
.xe{left:195.725467pt;}
.xa{left:203.058800pt;}
.xb{left:210.392133pt;}
.x46{left:212.403200pt;}
.xd{left:217.725467pt;}
.x2a{left:226.634133pt;}
.x16{left:229.064000pt;}
.xf{left:237.925467pt;}
.x2b{left:243.300800pt;}
.x47{left:244.403200pt;}
.x10{left:255.658800pt;}
.x2c{left:259.967467pt;}
.x48{left:264.608933pt;}
.x11{left:273.392133pt;}
.x2d{left:276.634133pt;}
.x49{left:280.608933pt;}
.x12{left:291.125467pt;}
.x2e{left:293.300800pt;}
.x4a{left:296.608933pt;}
.x13{left:308.858800pt;}
.x2f{left:309.967467pt;}
.x4b{left:312.608933pt;}
.x39{left:321.311733pt;}
.x14{left:326.592133pt;}
.x4c{left:328.608933pt;}
.x31{left:330.173200pt;}
.x15{left:344.325467pt;}
.x32{left:346.839867pt;}
.x4d{left:360.608933pt;}
.x33{left:363.506533pt;}
.x4e{left:376.608933pt;}
.x34{left:380.173200pt;}
.x4f{left:392.608933pt;}
.x35{left:396.839867pt;}
.x50{left:408.608933pt;}
.x36{left:413.506533pt;}
.x20{left:422.070000pt;}
.x51{left:424.608933pt;}
.x17{left:430.931200pt;}
.x52{left:440.608933pt;}
.x37{left:446.839867pt;}
.x18{left:448.664533pt;}
.x53{left:456.614667pt;}
.x38{left:463.506533pt;}
.x19{left:466.397867pt;}
.x54{left:472.614667pt;}
.x3a{left:480.178933pt;}
.x1a{left:484.131200pt;}
.x55{left:488.614667pt;}
.x3f{left:491.517600pt;}
.x3b{left:500.378933pt;}
.x1b{left:501.864533pt;}
.x56{left:508.814667pt;}
.x3c{left:517.045600pt;}
.x1c{left:519.597867pt;}
.x57{left:524.814667pt;}
.x3d{left:533.712267pt;}
.x1d{left:537.331200pt;}
.x58{left:540.814667pt;}
.x3e{left:550.378933pt;}
.x1e{left:555.064533pt;}
.x59{left:556.814667pt;}
.x4{left:564.791600pt;}
.x1f{left:572.797867pt;}
}




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