
    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_540688eb6ddcd17170e739c9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_8e1a3a9b371a0632a3e6f5c4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172363;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_f4f0311e32e92b1f94d5ff60.woff')format("woff");}.ff3{font-family:ff3;line-height:0.729492;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_a50011c1f33d6a8a8b82513e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.056641;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_3f45b0192613c1d9124022a8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.056641;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_b5baba67f2eb44fa876e2a84.woff')format("woff");}.ff6{font-family:ff6;line-height:1.060059;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_d7d3fc78cf2fa05eb28dd87f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_04983df6cd3bf2be93028c69.woff')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_5c5a5e8fdc26320fa7ea84f8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.936035;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_31cc4251fb0244f6080f68f7.woff')format("woff");}.ffa{font-family:ffa;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6aaaa657ffcf7cd6a7718efe.woff')format("woff");}.ffb{font-family:ffb;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8084cadb6d5cdefceeabcb04.woff')format("woff");}.ffc{font-family:ffc;line-height:0.762207;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:ffd;src:url('chunks/assets/font_295a55ad4c530d857e7e0f46.woff')format("woff");}.ffd{font-family:ffd;line-height:1.284180;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:ffe;src:url('chunks/assets/font_9af53415b0f16705b1b9b21b.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284668;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:fff;src:url('chunks/assets/font_97a045b0d9c4d7319f28cdb4.woff')format("woff");}.fff{font-family:fff;line-height:1.060059;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:ff10;src:url('chunks/assets/font_8ff2b97cb148bfe286d80965.woff')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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:ff11;src:url('chunks/assets/font_b188cf51925b6bbd1db8edd6.woff')format("woff");}.ff11{font-family:ff11;line-height:1.064941;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:ff12;src:url('chunks/assets/font_aec7563def6a4d0d14b55ad3.woff')format("woff");}.ff12{font-family:ff12;line-height:0.800293;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:ff13;src:url('chunks/assets/font_26f0a0b7d195402664a8eea9.woff')format("woff");}.ff13{font-family:ff13;line-height:0.977539;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:ff14;src:url('chunks/assets/font_df8816d85e4e80fab63cf51e.woff')format("woff");}.ff14{font-family:ff14;line-height:0.800781;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:ff15;src:url('chunks/assets/font_726f32bfc6d9909a8d7e9b54.woff')format("woff");}.ff15{font-family:ff15;line-height:0.921387;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:ff16;src:url('chunks/assets/font_b003a2aac9216109e9c9cfd4.woff')format("woff");}.ff16{font-family:ff16;line-height:1.172363;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-2.322000px;}
.ls14{letter-spacing:-1.440000px;}
.ls1a{letter-spacing:-0.305400px;}
.ls3{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.078000px;}
.ls1c{letter-spacing:0.083400px;}
.lsb{letter-spacing:0.106560px;}
.lse{letter-spacing:0.109440px;}
.ls1d{letter-spacing:0.120000px;}
.ls18{letter-spacing:0.149760px;}
.ls9{letter-spacing:0.150000px;}
.ls1e{letter-spacing:0.152400px;}
.lsa{letter-spacing:0.174240px;}
.ls6{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.262080px;}
.ls19{letter-spacing:0.262200px;}
.lsd{letter-spacing:0.305400px;}
.lsc{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.382080px;}
.ls21{letter-spacing:0.442080px;}
.ls1{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.567600px;}
.ls7{letter-spacing:0.720000px;}
.ls0{letter-spacing:1.080000px;}
.ls5{letter-spacing:1.980000px;}
.ls10{letter-spacing:2.280000px;}
.ls8{letter-spacing:2.880000px;}
.ls20{letter-spacing:3.600000px;}
.ls16{letter-spacing:4.296000px;}
.ls13{letter-spacing:4.320000px;}
.ls1f{letter-spacing:5.760000px;}
.ls11{letter-spacing:13.680000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-66.240000px;}
.ws1{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.127600px;}
.ws9{word-spacing:-16.865400px;}
.wse{word-spacing:-16.822200px;}
.ws10{word-spacing:-16.712400px;}
.ws8{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.254600px;}
.ws0{word-spacing:-15.840000px;}
.wsb{word-spacing:-15.300000px;}
.wsa{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.572800px;}
.ws6{word-spacing:-12.564000px;}
.ws3{word-spacing:-11.880000px;}
.ws4{word-spacing:-11.592000px;}
.ws5{word-spacing:-8.262000px;}
.ws7{word-spacing:0.000000px;}
._7{margin-left:-9.504000px;}
._d{margin-left:-7.538400px;}
._6{margin-left:-5.040000px;}
._9{margin-left:-3.240000px;}
._c{margin-left:-2.221200px;}
._0{margin-left:-1.134000px;}
._4{width:1.436400px;}
._5{width:3.240000px;}
._15{width:5.100480px;}
._13{width:6.120000px;}
._14{width:7.128000px;}
._19{width:8.208000px;}
._8{width:10.080000px;}
._12{width:11.914800px;}
._f{width:13.230000px;}
._e{width:14.400000px;}
._11{width:15.408000px;}
._10{width:16.477200px;}
._1b{width:17.525280px;}
._18{width:18.555840px;}
._b{width:19.728000px;}
._a{width:20.880000px;}
._17{width:22.279440px;}
._1a{width:23.459760px;}
._1d{width:24.840000px;}
._16{width:26.164800px;}
._1c{width:28.121040px;}
._2{width:30.870000px;}
._20{width:33.480000px;}
._21{width:34.848000px;}
._1e{width:53.280000px;}
._1f{width:54.360000px;}
._3{width:1091.557200px;}
._1{width:2098.266000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(238,78,60);}
.fc7{color:rgb(128,128,128);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(166,166,166);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs8{font-size:12.240000px;}
.fs9{font-size:23.760000px;}
.fsb{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs0{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:75.893905px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:0.690000px;}
.y38{bottom:1.080000px;}
.y2d{bottom:1.590000px;}
.y3{bottom:4.500000px;}
.yc2{bottom:4.680000px;}
.y6d{bottom:4.860000px;}
.y31{bottom:8.430000px;}
.y36{bottom:8.820000px;}
.y6c{bottom:15.480000px;}
.yc1{bottom:16.380000px;}
.y109{bottom:17.100000px;}
.y3d{bottom:22.680000px;}
.y2{bottom:24.660000px;}
.y39{bottom:35.280000px;}
.y1{bottom:42.660000px;}
.y33{bottom:45.900000px;}
.y37{bottom:60.120000px;}
.y6b{bottom:111.600000px;}
.yfd{bottom:111.780000px;}
.y2b{bottom:114.300000px;}
.y6a{bottom:118.440000px;}
.yfc{bottom:119.340000px;}
.y69{bottom:128.700000px;}
.yee{bottom:128.880000px;}
.y108{bottom:130.140000px;}
.y8f{bottom:135.540000px;}
.y107{bottom:137.700000px;}
.y96{bottom:140.220000px;}
.yaf{bottom:145.980000px;}
.y68{bottom:146.340000px;}
.y8e{bottom:146.880000px;}
.yfb{bottom:147.240000px;}
.y106{bottom:149.040000px;}
.yed{bottom:149.760000px;}
.y2a{bottom:153.000000px;}
.y67{bottom:153.900000px;}
.yec{bottom:157.320000px;}
.y12a{bottom:161.100000px;}
.y95{bottom:162.000000px;}
.yae{bottom:163.260000px;}
.y66{bottom:165.240000px;}
.yfa{bottom:167.040000px;}
.yeb{bottom:169.020000px;}
.yad{bottom:170.100000px;}
.yc0{bottom:180.540000px;}
.yac{bottom:181.440000px;}
.y129{bottom:181.800000px;}
.y8d{bottom:183.780000px;}
.yea{bottom:186.660000px;}
.ybf{bottom:187.380000px;}
.yf9{bottom:187.740000px;}
.y29{bottom:191.880000px;}
.ye9{bottom:194.220000px;}
.y65{bottom:194.580000px;}
.yf8{bottom:195.300000px;}
.ybe{bottom:197.820000px;}
.y128{bottom:202.500000px;}
.yda{bottom:204.660000px;}
.y8c{bottom:205.560000px;}
.yf7{bottom:207.210000px;}
.yf6{bottom:214.050000px;}
.ybd{bottom:215.130000px;}
.y28{bottom:215.310000px;}
.yd9{bottom:216.030000px;}
.y64{bottom:216.570000px;}
.yaa{bottom:219.090000px;}
.ye8{bottom:222.150000px;}
.yf5{bottom:225.390000px;}
.yab{bottom:226.650000px;}
.y8b{bottom:227.550000px;}
.ybc{bottom:232.230000px;}
.y27{bottom:237.450000px;}
.y127{bottom:240.690000px;}
.ye7{bottom:241.950000px;}
.ya9{bottom:242.310000px;}
.y105{bottom:242.490000px;}
.y8a{bottom:249.330000px;}
.ybb{bottom:249.510000px;}
.y63{bottom:253.290000px;}
.y26{bottom:259.770000px;}
.ye6{bottom:261.750000px;}
.y126{bottom:262.470000px;}
.yd8{bottom:263.010000px;}
.y104{bottom:264.270000px;}
.ya7{bottom:265.530000px;}
.yba{bottom:267.690000px;}
.y89{bottom:271.110000px;}
.ya8{bottom:273.090000px;}
.y62{bottom:275.070000px;}
.y25{bottom:280.290000px;}
.ye5{bottom:281.550000px;}
.y125{bottom:284.250000px;}
.yd7{bottom:284.790000px;}
.y94{bottom:285.690000px;}
.y103{bottom:286.050000px;}
.ya6{bottom:287.310000px;}
.y88{bottom:292.890000px;}
.y61{bottom:297.030000px;}
.y24{bottom:298.650000px;}
.ye4{bottom:301.350000px;}
.yb9{bottom:308.010000px;}
.yf4{bottom:315.570000px;}
.y124{bottom:321.150000px;}
.yd5{bottom:321.510000px;}
.ye3{bottom:322.230000px;}
.y93{bottom:322.950000px;}
.ya5{bottom:325.290000px;}
.yd6{bottom:329.070000px;}
.y87{bottom:329.430000px;}
.y23{bottom:329.790000px;}
.y60{bottom:333.750000px;}
.ye2{bottom:341.850000px;}
.y123{bottom:342.930000px;}
.yd3{bottom:343.470000px;}
.y92{bottom:344.730000px;}
.ye1{bottom:349.410000px;}
.yd4{bottom:351.030000px;}
.yf3{bottom:351.570000px;}
.y22{bottom:353.550000px;}
.y5f{bottom:355.530000px;}
.ye0{bottom:360.210000px;}
.y122{bottom:362.370000px;}
.ya4{bottom:363.810000px;}
.yd2{bottom:365.250000px;}
.y86{bottom:366.510000px;}
.ydf{bottom:367.770000px;}
.yf2{bottom:373.350000px;}
.y21{bottom:376.050000px;}
.y5e{bottom:377.490000px;}
.yde{bottom:379.110000px;}
.y102{bottom:380.910000px;}
.ya3{bottom:385.590000px;}
.yd1{bottom:387.030000px;}
.y85{bottom:388.470000px;}
.yf1{bottom:395.130000px;}
.y20{bottom:399.810000px;}
.y121{bottom:400.530000px;}
.ya2{bottom:407.370000px;}
.yd0{bottom:408.810000px;}
.y84{bottom:410.250000px;}
.y5d{bottom:414.210000px;}
.y101{bottom:417.090000px;}
.y120{bottom:422.310000px;}
.y1f{bottom:423.570000px;}
.ya1{bottom:430.590000px;}
.y83{bottom:432.030000px;}
.y5c{bottom:435.990000px;}
.y100{bottom:438.870000px;}
.yf0{bottom:439.590000px;}
.y11f{bottom:444.135000px;}
.y1e{bottom:447.375000px;}
.ycf{bottom:452.595000px;}
.y82{bottom:453.855000px;}
.ya0{bottom:468.975000px;}
.y1d{bottom:471.135000px;}
.y5b{bottom:472.935000px;}
.yce{bottom:474.375000px;}
.y81{bottom:475.635000px;}
.y11e{bottom:481.035000px;}
.y9f{bottom:490.755000px;}
.y5a{bottom:494.715000px;}
.y1c{bottom:495.075000px;}
.ycd{bottom:496.155000px;}
.y80{bottom:497.595000px;}
.y11d{bottom:502.815000px;}
.y9e{bottom:512.535000px;}
.y59{bottom:517.935000px;}
.y1b{bottom:518.835000px;}
.y7f{bottom:519.375000px;}
.y9d{bottom:534.315000px;}
.y11c{bottom:539.535000px;}
.y7e{bottom:541.155000px;}
.y1a{bottom:542.595000px;}
.ycc{bottom:554.835000px;}
.y58{bottom:556.095000px;}
.y11b{bottom:561.495000px;}
.ydd{bottom:563.655000px;}
.y19{bottom:566.355000px;}
.ycb{bottom:576.615000px;}
.y57{bottom:578.055000px;}
.y18{bottom:590.295000px;}
.y11a{bottom:597.855000px;}
.yca{bottom:598.395000px;}
.y56{bottom:599.835000px;}
.y17{bottom:614.055000px;}
.y9c{bottom:614.775000px;}
.yc9{bottom:620.175000px;}
.y55{bottom:621.615000px;}
.y119{bottom:635.115000px;}
.y9b{bottom:636.555000px;}
.y16{bottom:637.815000px;}
.yc8{bottom:642.135000px;}
.y54{bottom:643.395000px;}
.y118{bottom:656.895000px;}
.y9a{bottom:658.515000px;}
.y15{bottom:661.575000px;}
.yc7{bottom:663.915000px;}
.y53{bottom:665.175000px;}
.y117{bottom:680.145000px;}
.y99{bottom:680.325000px;}
.yc6{bottom:685.725000px;}
.y7d{bottom:687.165000px;}
.y14{bottom:691.305000px;}
.y51{bottom:702.105000px;}
.y116{bottom:703.365000px;}
.y7c{bottom:708.945000px;}
.y52{bottom:709.665000px;}
.yc5{bottom:722.625000px;}
.y50{bottom:723.885000px;}
.y115{bottom:725.145000px;}
.y13{bottom:728.925000px;}
.y4f{bottom:745.665000px;}
.y114{bottom:746.925000px;}
.y12{bottom:749.085000px;}
.y7b{bottom:753.225000px;}
.yc4{bottom:759.345000px;}
.y4e{bottom:767.625000px;}
.y113{bottom:768.885000px;}
.y11{bottom:771.045000px;}
.ydc{bottom:775.185000px;}
.yff{bottom:782.565000px;}
.y4d{bottom:789.405000px;}
.y10{bottom:794.265000px;}
.yc3{bottom:796.245000px;}
.y98{bottom:804.345000px;}
.y112{bottom:805.605000px;}
.y4c{bottom:811.185000px;}
.yfe{bottom:811.905000px;}
.yf{bottom:817.305000px;}
.y97{bottom:826.125000px;}
.y111{bottom:827.385000px;}
.y7a{bottom:832.965000px;}
.ydb{bottom:840.525000px;}
.y4b{bottom:848.085000px;}
.ye{bottom:848.625000px;}
.y110{bottom:849.345000px;}
.y135{bottom:854.205000px;}
.y79{bottom:854.925000px;}
.yb8{bottom:863.025000px;}
.yd{bottom:868.785000px;}
.y4a{bottom:869.865000px;}
.y10f{bottom:872.385000px;}
.y134{bottom:873.105000px;}
.y78{bottom:876.705000px;}
.yb7{bottom:884.805000px;}
.yc{bottom:890.925000px;}
.y49{bottom:891.645000px;}
.y133{bottom:892.545000px;}
.y77{bottom:898.485000px;}
.yb6{bottom:906.585000px;}
.y10e{bottom:910.770000px;}
.y132{bottom:913.290000px;}
.y48{bottom:913.470000px;}
.yb{bottom:923.370000px;}
.yb5{bottom:928.590000px;}
.y10d{bottom:932.550000px;}
.y131{bottom:933.990000px;}
.y46{bottom:935.430000px;}
.y47{bottom:942.990000px;}
.yb4{bottom:950.370000px;}
.ya{bottom:953.430000px;}
.y10c{bottom:954.330000px;}
.y130{bottom:954.690000px;}
.y76{bottom:957.210000px;}
.y45{bottom:972.150000px;}
.y9{bottom:973.590000px;}
.y12f{bottom:975.390000px;}
.y10b{bottom:977.550000px;}
.y75{bottom:978.990000px;}
.y30{bottom:983.700000px;}
.y2c{bottom:990.900000px;}
.y2e{bottom:991.260000px;}
.y8{bottom:993.390000px;}
.y44{bottom:993.930000px;}
.y12e{bottom:996.090000px;}
.y74{bottom:1000.770000px;}
.yb3{bottom:1009.050000px;}
.y10a{bottom:1015.530000px;}
.y43{bottom:1015.890000px;}
.y12d{bottom:1016.790000px;}
.y73{bottom:1022.550000px;}
.y7{bottom:1027.590000px;}
.yb2{bottom:1030.830000px;}
.y12c{bottom:1037.490000px;}
.y42{bottom:1037.670000px;}
.yef{bottom:1038.390000px;}
.y91{bottom:1044.510000px;}
.yb1{bottom:1052.610000px;}
.y12b{bottom:1058.190000px;}
.y72{bottom:1059.090000px;}
.y41{bottom:1059.450000px;}
.y6{bottom:1062.870000px;}
.yb0{bottom:1074.390000px;}
.y90{bottom:1080.870000px;}
.y40{bottom:1081.230000px;}
.y71{bottom:1096.350000px;}
.y5{bottom:1101.030000px;}
.y3f{bottom:1103.010000px;}
.y70{bottom:1118.130000px;}
.y4{bottom:1139.190000px;}
.y3e{bottom:1139.550000px;}
.y6f{bottom:1139.910000px;}
.y3c{bottom:1164.600000px;}
.y3b{bottom:1180.440000px;}
.y3a{bottom:1196.280000px;}
.y6e{bottom:1198.260000px;}
.y32{bottom:1208.340000px;}
.y35{bottom:1234.440000px;}
.y34{bottom:1247.580000px;}
.h1a{height:9.759727px;}
.h17{height:13.500000px;}
.h15{height:14.400000px;}
.h2e{height:18.000000px;}
.h2a{height:18.180000px;}
.h1b{height:18.945352px;}
.h18{height:21.240000px;}
.h1d{height:24.660000px;}
.h28{height:27.147656px;}
.h25{height:29.158594px;}
.h2c{height:38.158594px;}
.h2{height:38.405391px;}
.h1c{height:38.464805px;}
.h5{height:38.469727px;}
.h26{height:38.671172px;}
.h20{height:40.843828px;}
.h24{height:40.985156px;}
.h2f{height:41.535703px;}
.h2d{height:41.726953px;}
.h6{height:42.573164px;}
.h2b{height:43.057617px;}
.h16{height:45.720703px;}
.h22{height:46.251562px;}
.h12{height:47.344922px;}
.h1f{height:47.650430px;}
.h19{height:48.600000px;}
.h1e{height:49.680000px;}
.h31{height:50.273438px;}
.hc{height:50.597578px;}
.h4{height:53.709961px;}
.h9{height:54.421875px;}
.ha{height:54.597656px;}
.h13{height:56.084062px;}
.he{height:56.920429px;}
.h29{height:58.651172px;}
.hd{height:59.343750px;}
.h27{height:59.439023px;}
.h7{height:60.960938px;}
.h30{height:64.978594px;}
.h10{height:65.010937px;}
.h3{height:65.884219px;}
.h21{height:66.757500px;}
.hb{height:67.824844px;}
.hf{height:70.628906px;}
.h11{height:70.664062px;}
.h32{height:71.613281px;}
.h14{height:72.562500px;}
.h8{height:81.078047px;}
.h23{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:75.240000px;}
.wb{width:75.960000px;}
.wa{width:76.680000px;}
.w5{width:76.860000px;}
.w9{width:77.400000px;}
.w7{width:79.020000px;}
.w2{width:168.840000px;}
.w3{width:193.680000px;}
.w4{width:209.520000px;}
.w6{width:626.400000px;}
.w8{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:9.900000px;}
.xc{left:10.905000px;}
.x11{left:12.420000px;}
.x3f{left:16.350000px;}
.x20{left:19.050000px;}
.xf{left:20.235000px;}
.x12{left:95.040000px;}
.x1{left:108.036000px;}
.x1e{left:112.896000px;}
.xd{left:115.380000px;}
.x28{left:117.756000px;}
.x1b{left:121.354125px;}
.x36{left:122.616000px;}
.x37{left:123.696000px;}
.x1c{left:126.756000px;}
.x38{left:128.916000px;}
.x3e{left:132.336000px;}
.x3{left:140.616000px;}
.x15{left:150.690000px;}
.x44{left:162.030000px;}
.x18{left:183.630000px;}
.x42{left:214.948125px;}
.x2b{left:216.030000px;}
.x4{left:221.790000px;}
.x43{left:241.950000px;}
.x21{left:252.030000px;}
.x40{left:255.628125px;}
.x16{left:259.590000px;}
.x41{left:279.930000px;}
.x8{left:290.055000px;}
.x1d{left:324.075000px;}
.x30{left:351.433125px;}
.x7{left:360.795000px;}
.xe{left:366.480000px;}
.x6{left:381.495000px;}
.x2c{left:401.113125px;}
.x26{left:411.913125px;}
.x27{left:421.635000px;}
.x5{left:435.135000px;}
.x2{left:446.475000px;}
.x13{left:454.965000px;}
.x17{left:532.365000px;}
.x3b{left:533.803125px;}
.x3c{left:554.685000px;}
.x2d{left:559.363125px;}
.x2e{left:569.805000px;}
.x34{left:593.743125px;}
.x35{left:609.765000px;}
.x39{left:613.003125px;}
.xb{left:630.180000px;}
.x9{left:632.625000px;}
.x3a{left:634.605000px;}
.xa{left:650.625000px;}
.x22{left:653.143125px;}
.x3d{left:655.708125px;}
.x23{left:658.410000px;}
.x29{left:677.128125px;}
.x31{left:680.008125px;}
.x2a{left:688.470000px;}
.x32{left:696.210000px;}
.x19{left:702.148125px;}
.x1a{left:707.010000px;}
.x33{left:769.468125px;}
.x24{left:779.908125px;}
.x25{left:785.130000px;}
.x14{left:813.960000px;}
.x1f{left:815.400000px;}
.x2f{left:817.020000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-2.064000pt;}
.ls14{letter-spacing:-1.280000pt;}
.ls1a{letter-spacing:-0.271467pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.069333pt;}
.ls1c{letter-spacing:0.074133pt;}
.lsb{letter-spacing:0.094720pt;}
.lse{letter-spacing:0.097280pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.133120pt;}
.ls9{letter-spacing:0.133333pt;}
.ls1e{letter-spacing:0.135467pt;}
.lsa{letter-spacing:0.154880pt;}
.ls6{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.232960pt;}
.ls19{letter-spacing:0.233067pt;}
.lsd{letter-spacing:0.271467pt;}
.lsc{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.339627pt;}
.ls21{letter-spacing:0.392960pt;}
.ls1{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.504533pt;}
.ls7{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.960000pt;}
.ls5{letter-spacing:1.760000pt;}
.ls10{letter-spacing:2.026667pt;}
.ls8{letter-spacing:2.560000pt;}
.ls20{letter-spacing:3.200000pt;}
.ls16{letter-spacing:3.818667pt;}
.ls13{letter-spacing:3.840000pt;}
.ls1f{letter-spacing:5.120000pt;}
.ls11{letter-spacing:12.160000pt;}
.wsd{word-spacing:-58.880000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.224533pt;}
.ws9{word-spacing:-14.991467pt;}
.wse{word-spacing:-14.953067pt;}
.ws10{word-spacing:-14.855467pt;}
.ws8{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.448533pt;}
.ws0{word-spacing:-14.080000pt;}
.wsb{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.953600pt;}
.ws6{word-spacing:-11.168000pt;}
.ws3{word-spacing:-10.560000pt;}
.ws4{word-spacing:-10.304000pt;}
.ws5{word-spacing:-7.344000pt;}
.ws7{word-spacing:0.000000pt;}
._7{margin-left:-8.448000pt;}
._d{margin-left:-6.700800pt;}
._6{margin-left:-4.480000pt;}
._9{margin-left:-2.880000pt;}
._c{margin-left:-1.974400pt;}
._0{margin-left:-1.008000pt;}
._4{width:1.276800pt;}
._5{width:2.880000pt;}
._15{width:4.533760pt;}
._13{width:5.440000pt;}
._14{width:6.336000pt;}
._19{width:7.296000pt;}
._8{width:8.960000pt;}
._12{width:10.590933pt;}
._f{width:11.760000pt;}
._e{width:12.800000pt;}
._11{width:13.696000pt;}
._10{width:14.646400pt;}
._1b{width:15.578027pt;}
._18{width:16.494080pt;}
._b{width:17.536000pt;}
._a{width:18.560000pt;}
._17{width:19.803947pt;}
._1a{width:20.853120pt;}
._1d{width:22.080000pt;}
._16{width:23.257600pt;}
._1c{width:24.996480pt;}
._2{width:27.440000pt;}
._20{width:29.760000pt;}
._21{width:30.976000pt;}
._1e{width:47.360000pt;}
._1f{width:48.320000pt;}
._3{width:970.273067pt;}
._1{width:1865.125333pt;}
.fs8{font-size:10.880000pt;}
.fs9{font-size:21.120000pt;}
.fsb{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs0{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:67.461249pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:0.613333pt;}
.y38{bottom:0.960000pt;}
.y2d{bottom:1.413333pt;}
.y3{bottom:4.000000pt;}
.yc2{bottom:4.160000pt;}
.y6d{bottom:4.320000pt;}
.y31{bottom:7.493333pt;}
.y36{bottom:7.840000pt;}
.y6c{bottom:13.760000pt;}
.yc1{bottom:14.560000pt;}
.y109{bottom:15.200000pt;}
.y3d{bottom:20.160000pt;}
.y2{bottom:21.920000pt;}
.y39{bottom:31.360000pt;}
.y1{bottom:37.920000pt;}
.y33{bottom:40.800000pt;}
.y37{bottom:53.440000pt;}
.y6b{bottom:99.200000pt;}
.yfd{bottom:99.360000pt;}
.y2b{bottom:101.600000pt;}
.y6a{bottom:105.280000pt;}
.yfc{bottom:106.080000pt;}
.y69{bottom:114.400000pt;}
.yee{bottom:114.560000pt;}
.y108{bottom:115.680000pt;}
.y8f{bottom:120.480000pt;}
.y107{bottom:122.400000pt;}
.y96{bottom:124.640000pt;}
.yaf{bottom:129.760000pt;}
.y68{bottom:130.080000pt;}
.y8e{bottom:130.560000pt;}
.yfb{bottom:130.880000pt;}
.y106{bottom:132.480000pt;}
.yed{bottom:133.120000pt;}
.y2a{bottom:136.000000pt;}
.y67{bottom:136.800000pt;}
.yec{bottom:139.840000pt;}
.y12a{bottom:143.200000pt;}
.y95{bottom:144.000000pt;}
.yae{bottom:145.120000pt;}
.y66{bottom:146.880000pt;}
.yfa{bottom:148.480000pt;}
.yeb{bottom:150.240000pt;}
.yad{bottom:151.200000pt;}
.yc0{bottom:160.480000pt;}
.yac{bottom:161.280000pt;}
.y129{bottom:161.600000pt;}
.y8d{bottom:163.360000pt;}
.yea{bottom:165.920000pt;}
.ybf{bottom:166.560000pt;}
.yf9{bottom:166.880000pt;}
.y29{bottom:170.560000pt;}
.ye9{bottom:172.640000pt;}
.y65{bottom:172.960000pt;}
.yf8{bottom:173.600000pt;}
.ybe{bottom:175.840000pt;}
.y128{bottom:180.000000pt;}
.yda{bottom:181.920000pt;}
.y8c{bottom:182.720000pt;}
.yf7{bottom:184.186667pt;}
.yf6{bottom:190.266667pt;}
.ybd{bottom:191.226667pt;}
.y28{bottom:191.386667pt;}
.yd9{bottom:192.026667pt;}
.y64{bottom:192.506667pt;}
.yaa{bottom:194.746667pt;}
.ye8{bottom:197.466667pt;}
.yf5{bottom:200.346667pt;}
.yab{bottom:201.466667pt;}
.y8b{bottom:202.266667pt;}
.ybc{bottom:206.426667pt;}
.y27{bottom:211.066667pt;}
.y127{bottom:213.946667pt;}
.ye7{bottom:215.066667pt;}
.ya9{bottom:215.386667pt;}
.y105{bottom:215.546667pt;}
.y8a{bottom:221.626667pt;}
.ybb{bottom:221.786667pt;}
.y63{bottom:225.146667pt;}
.y26{bottom:230.906667pt;}
.ye6{bottom:232.666667pt;}
.y126{bottom:233.306667pt;}
.yd8{bottom:233.786667pt;}
.y104{bottom:234.906667pt;}
.ya7{bottom:236.026667pt;}
.yba{bottom:237.946667pt;}
.y89{bottom:240.986667pt;}
.ya8{bottom:242.746667pt;}
.y62{bottom:244.506667pt;}
.y25{bottom:249.146667pt;}
.ye5{bottom:250.266667pt;}
.y125{bottom:252.666667pt;}
.yd7{bottom:253.146667pt;}
.y94{bottom:253.946667pt;}
.y103{bottom:254.266667pt;}
.ya6{bottom:255.386667pt;}
.y88{bottom:260.346667pt;}
.y61{bottom:264.026667pt;}
.y24{bottom:265.466667pt;}
.ye4{bottom:267.866667pt;}
.yb9{bottom:273.786667pt;}
.yf4{bottom:280.506667pt;}
.y124{bottom:285.466667pt;}
.yd5{bottom:285.786667pt;}
.ye3{bottom:286.426667pt;}
.y93{bottom:287.066667pt;}
.ya5{bottom:289.146667pt;}
.yd6{bottom:292.506667pt;}
.y87{bottom:292.826667pt;}
.y23{bottom:293.146667pt;}
.y60{bottom:296.666667pt;}
.ye2{bottom:303.866667pt;}
.y123{bottom:304.826667pt;}
.yd3{bottom:305.306667pt;}
.y92{bottom:306.426667pt;}
.ye1{bottom:310.586667pt;}
.yd4{bottom:312.026667pt;}
.yf3{bottom:312.506667pt;}
.y22{bottom:314.266667pt;}
.y5f{bottom:316.026667pt;}
.ye0{bottom:320.186667pt;}
.y122{bottom:322.106667pt;}
.ya4{bottom:323.386667pt;}
.yd2{bottom:324.666667pt;}
.y86{bottom:325.786667pt;}
.ydf{bottom:326.906667pt;}
.yf2{bottom:331.866667pt;}
.y21{bottom:334.266667pt;}
.y5e{bottom:335.546667pt;}
.yde{bottom:336.986667pt;}
.y102{bottom:338.586667pt;}
.ya3{bottom:342.746667pt;}
.yd1{bottom:344.026667pt;}
.y85{bottom:345.306667pt;}
.yf1{bottom:351.226667pt;}
.y20{bottom:355.386667pt;}
.y121{bottom:356.026667pt;}
.ya2{bottom:362.106667pt;}
.yd0{bottom:363.386667pt;}
.y84{bottom:364.666667pt;}
.y5d{bottom:368.186667pt;}
.y101{bottom:370.746667pt;}
.y120{bottom:375.386667pt;}
.y1f{bottom:376.506667pt;}
.ya1{bottom:382.746667pt;}
.y83{bottom:384.026667pt;}
.y5c{bottom:387.546667pt;}
.y100{bottom:390.106667pt;}
.yf0{bottom:390.746667pt;}
.y11f{bottom:394.786667pt;}
.y1e{bottom:397.666667pt;}
.ycf{bottom:402.306667pt;}
.y82{bottom:403.426667pt;}
.ya0{bottom:416.866667pt;}
.y1d{bottom:418.786667pt;}
.y5b{bottom:420.386667pt;}
.yce{bottom:421.666667pt;}
.y81{bottom:422.786667pt;}
.y11e{bottom:427.586667pt;}
.y9f{bottom:436.226667pt;}
.y5a{bottom:439.746667pt;}
.y1c{bottom:440.066667pt;}
.ycd{bottom:441.026667pt;}
.y80{bottom:442.306667pt;}
.y11d{bottom:446.946667pt;}
.y9e{bottom:455.586667pt;}
.y59{bottom:460.386667pt;}
.y1b{bottom:461.186667pt;}
.y7f{bottom:461.666667pt;}
.y9d{bottom:474.946667pt;}
.y11c{bottom:479.586667pt;}
.y7e{bottom:481.026667pt;}
.y1a{bottom:482.306667pt;}
.ycc{bottom:493.186667pt;}
.y58{bottom:494.306667pt;}
.y11b{bottom:499.106667pt;}
.ydd{bottom:501.026667pt;}
.y19{bottom:503.426667pt;}
.ycb{bottom:512.546667pt;}
.y57{bottom:513.826667pt;}
.y18{bottom:524.706667pt;}
.y11a{bottom:531.426667pt;}
.yca{bottom:531.906667pt;}
.y56{bottom:533.186667pt;}
.y17{bottom:545.826667pt;}
.y9c{bottom:546.466667pt;}
.yc9{bottom:551.266667pt;}
.y55{bottom:552.546667pt;}
.y119{bottom:564.546667pt;}
.y9b{bottom:565.826667pt;}
.y16{bottom:566.946667pt;}
.yc8{bottom:570.786667pt;}
.y54{bottom:571.906667pt;}
.y118{bottom:583.906667pt;}
.y9a{bottom:585.346667pt;}
.y15{bottom:588.066667pt;}
.yc7{bottom:590.146667pt;}
.y53{bottom:591.266667pt;}
.y117{bottom:604.573333pt;}
.y99{bottom:604.733333pt;}
.yc6{bottom:609.533333pt;}
.y7d{bottom:610.813333pt;}
.y14{bottom:614.493333pt;}
.y51{bottom:624.093333pt;}
.y116{bottom:625.213333pt;}
.y7c{bottom:630.173333pt;}
.y52{bottom:630.813333pt;}
.yc5{bottom:642.333333pt;}
.y50{bottom:643.453333pt;}
.y115{bottom:644.573333pt;}
.y13{bottom:647.933333pt;}
.y4f{bottom:662.813333pt;}
.y114{bottom:663.933333pt;}
.y12{bottom:665.853333pt;}
.y7b{bottom:669.533333pt;}
.yc4{bottom:674.973333pt;}
.y4e{bottom:682.333333pt;}
.y113{bottom:683.453333pt;}
.y11{bottom:685.373333pt;}
.ydc{bottom:689.053333pt;}
.yff{bottom:695.613333pt;}
.y4d{bottom:701.693333pt;}
.y10{bottom:706.013333pt;}
.yc3{bottom:707.773333pt;}
.y98{bottom:714.973333pt;}
.y112{bottom:716.093333pt;}
.y4c{bottom:721.053333pt;}
.yfe{bottom:721.693333pt;}
.yf{bottom:726.493333pt;}
.y97{bottom:734.333333pt;}
.y111{bottom:735.453333pt;}
.y7a{bottom:740.413333pt;}
.ydb{bottom:747.133333pt;}
.y4b{bottom:753.853333pt;}
.ye{bottom:754.333333pt;}
.y110{bottom:754.973333pt;}
.y135{bottom:759.293333pt;}
.y79{bottom:759.933333pt;}
.yb8{bottom:767.133333pt;}
.yd{bottom:772.253333pt;}
.y4a{bottom:773.213333pt;}
.y10f{bottom:775.453333pt;}
.y134{bottom:776.093333pt;}
.y78{bottom:779.293333pt;}
.yb7{bottom:786.493333pt;}
.yc{bottom:791.933333pt;}
.y49{bottom:792.573333pt;}
.y133{bottom:793.373333pt;}
.y77{bottom:798.653333pt;}
.yb6{bottom:805.853333pt;}
.y10e{bottom:809.573333pt;}
.y132{bottom:811.813333pt;}
.y48{bottom:811.973333pt;}
.yb{bottom:820.773333pt;}
.yb5{bottom:825.413333pt;}
.y10d{bottom:828.933333pt;}
.y131{bottom:830.213333pt;}
.y46{bottom:831.493333pt;}
.y47{bottom:838.213333pt;}
.yb4{bottom:844.773333pt;}
.ya{bottom:847.493333pt;}
.y10c{bottom:848.293333pt;}
.y130{bottom:848.613333pt;}
.y76{bottom:850.853333pt;}
.y45{bottom:864.133333pt;}
.y9{bottom:865.413333pt;}
.y12f{bottom:867.013333pt;}
.y10b{bottom:868.933333pt;}
.y75{bottom:870.213333pt;}
.y30{bottom:874.400000pt;}
.y2c{bottom:880.800000pt;}
.y2e{bottom:881.120000pt;}
.y8{bottom:883.013333pt;}
.y44{bottom:883.493333pt;}
.y12e{bottom:885.413333pt;}
.y74{bottom:889.573333pt;}
.yb3{bottom:896.933333pt;}
.y10a{bottom:902.693333pt;}
.y43{bottom:903.013333pt;}
.y12d{bottom:903.813333pt;}
.y73{bottom:908.933333pt;}
.y7{bottom:913.413333pt;}
.yb2{bottom:916.293333pt;}
.y12c{bottom:922.213333pt;}
.y42{bottom:922.373333pt;}
.yef{bottom:923.013333pt;}
.y91{bottom:928.453333pt;}
.yb1{bottom:935.653333pt;}
.y12b{bottom:940.613333pt;}
.y72{bottom:941.413333pt;}
.y41{bottom:941.733333pt;}
.y6{bottom:944.773333pt;}
.yb0{bottom:955.013333pt;}
.y90{bottom:960.773333pt;}
.y40{bottom:961.093333pt;}
.y71{bottom:974.533333pt;}
.y5{bottom:978.693333pt;}
.y3f{bottom:980.453333pt;}
.y70{bottom:993.893333pt;}
.y4{bottom:1012.613333pt;}
.y3e{bottom:1012.933333pt;}
.y6f{bottom:1013.253333pt;}
.y3c{bottom:1035.200000pt;}
.y3b{bottom:1049.280000pt;}
.y3a{bottom:1063.360000pt;}
.y6e{bottom:1065.120000pt;}
.y32{bottom:1074.080000pt;}
.y35{bottom:1097.280000pt;}
.y34{bottom:1108.960000pt;}
.h1a{height:8.675313pt;}
.h17{height:12.000000pt;}
.h15{height:12.800000pt;}
.h2e{height:16.000000pt;}
.h2a{height:16.160000pt;}
.h1b{height:16.840312pt;}
.h18{height:18.880000pt;}
.h1d{height:21.920000pt;}
.h28{height:24.131250pt;}
.h25{height:25.918750pt;}
.h2c{height:33.918750pt;}
.h2{height:34.138125pt;}
.h1c{height:34.190937pt;}
.h5{height:34.195312pt;}
.h26{height:34.374375pt;}
.h20{height:36.305625pt;}
.h24{height:36.431250pt;}
.h2f{height:36.920625pt;}
.h2d{height:37.090625pt;}
.h6{height:37.842813pt;}
.h2b{height:38.273438pt;}
.h16{height:40.640625pt;}
.h22{height:41.112500pt;}
.h12{height:42.084375pt;}
.h1f{height:42.355937pt;}
.h19{height:43.200000pt;}
.h1e{height:44.160000pt;}
.h31{height:44.687500pt;}
.hc{height:44.975625pt;}
.h4{height:47.742188pt;}
.h9{height:48.375000pt;}
.ha{height:48.531250pt;}
.h13{height:49.852500pt;}
.he{height:50.595937pt;}
.h29{height:52.134375pt;}
.hd{height:52.750000pt;}
.h27{height:52.834688pt;}
.h7{height:54.187500pt;}
.h30{height:57.758750pt;}
.h10{height:57.787500pt;}
.h3{height:58.563750pt;}
.h21{height:59.340000pt;}
.hb{height:60.288750pt;}
.hf{height:62.781250pt;}
.h11{height:62.812500pt;}
.h32{height:63.656250pt;}
.h14{height:64.500000pt;}
.h8{height:72.069375pt;}
.h23{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:66.880000pt;}
.wb{width:67.520000pt;}
.wa{width:68.160000pt;}
.w5{width:68.320000pt;}
.w9{width:68.800000pt;}
.w7{width:70.240000pt;}
.w2{width:150.080000pt;}
.w3{width:172.160000pt;}
.w4{width:186.240000pt;}
.w6{width:556.800000pt;}
.w8{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:8.800000pt;}
.xc{left:9.693333pt;}
.x11{left:11.040000pt;}
.x3f{left:14.533333pt;}
.x20{left:16.933333pt;}
.xf{left:17.986667pt;}
.x12{left:84.480000pt;}
.x1{left:96.032000pt;}
.x1e{left:100.352000pt;}
.xd{left:102.560000pt;}
.x28{left:104.672000pt;}
.x1b{left:107.870333pt;}
.x36{left:108.992000pt;}
.x37{left:109.952000pt;}
.x1c{left:112.672000pt;}
.x38{left:114.592000pt;}
.x3e{left:117.632000pt;}
.x3{left:124.992000pt;}
.x15{left:133.946667pt;}
.x44{left:144.026667pt;}
.x18{left:163.226667pt;}
.x42{left:191.065000pt;}
.x2b{left:192.026667pt;}
.x4{left:197.146667pt;}
.x43{left:215.066667pt;}
.x21{left:224.026667pt;}
.x40{left:227.225000pt;}
.x16{left:230.746667pt;}
.x41{left:248.826667pt;}
.x8{left:257.826667pt;}
.x1d{left:288.066667pt;}
.x30{left:312.385000pt;}
.x7{left:320.706667pt;}
.xe{left:325.760000pt;}
.x6{left:339.106667pt;}
.x2c{left:356.545000pt;}
.x26{left:366.145000pt;}
.x27{left:374.786667pt;}
.x5{left:386.786667pt;}
.x2{left:396.866667pt;}
.x13{left:404.413333pt;}
.x17{left:473.213333pt;}
.x3b{left:474.491667pt;}
.x3c{left:493.053333pt;}
.x2d{left:497.211667pt;}
.x2e{left:506.493333pt;}
.x34{left:527.771667pt;}
.x35{left:542.013333pt;}
.x39{left:544.891667pt;}
.xb{left:560.160000pt;}
.x9{left:562.333333pt;}
.x3a{left:564.093333pt;}
.xa{left:578.333333pt;}
.x22{left:580.571667pt;}
.x3d{left:582.851667pt;}
.x23{left:585.253333pt;}
.x29{left:601.891667pt;}
.x31{left:604.451667pt;}
.x2a{left:611.973333pt;}
.x32{left:618.853333pt;}
.x19{left:624.131667pt;}
.x1a{left:628.453333pt;}
.x33{left:683.971667pt;}
.x24{left:693.251667pt;}
.x25{left:697.893333pt;}
.x14{left:723.520000pt;}
.x1f{left:724.800000pt;}
.x2f{left:726.240000pt;}
}




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