
    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_a04c694d00686ea36d5d4641.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_99da58c84bdaf5e2269030be.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c4d57f0d4017dfeaa4fa9b39.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_b9c2d92246e4484d42b7eff5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.091309;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_bb60f94bcc72db4958bbe3dd.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6a426f4f6fd126eee3df9b32.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_52eea97169339635584fdd04.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c2649c35f98d04cca90934a6.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_42983238fd060dc0f5b14129.woff')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_ae94a7ceb19b3a359bba7624.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b8e5fb4ff2ddd7b988c9b0b4.woff')format("woff");}.ffb{font-family:ffb;line-height:1.128000;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_07170e33cd7daa7315c7fc07.woff')format("woff");}.ffc{font-family:ffc;line-height:1.332520;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_15b85c1690be186875539e97.woff')format("woff");}.ffd{font-family:ffd;line-height:1.330078;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_37ce9b17ecbcc72c6737764d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.911000;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_dd87414ca830c46ab554b1c8.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_27c4ec73dd006668321de6ef.woff')format("woff");}.ff10{font-family:ff10;line-height:0.738770;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_be946785b6de999577107e69.woff')format("woff");}.ff11{font-family:ff11;line-height:1.098145;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_559ec1e322b43e4012f87ae8.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_5a1e6535df88c2bb4cf4f817.woff')format("woff");}.ff13{font-family:ff13;line-height:1.313477;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_15481bb977faa1c590c06a7a.woff')format("woff");}.ff14{font-family:ff14;line-height:1.098145;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_5c08962f26aa247984240a68.woff')format("woff");}.ff15{font-family:ff15;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_2c4d6cf0124c621f05030c4e.woff')format("woff");}.ff16{font-family:ff16;line-height:0.666504;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:ff17;src:url('chunks/assets/font_3f7748e74c8257af511c9392.woff')format("woff");}.ff17{font-family:ff17;line-height:0.942383;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:ff18;src:url('chunks/assets/font_8114535126473b712eae4b5e.woff')format("woff");}.ff18{font-family:ff18;line-height:0.689941;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:ff19;src:url('chunks/assets/font_f472ece8f957526ac3afa5af.woff')format("woff");}.ff19{font-family:ff19;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;}
.m5{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);}
.m1{transform:matrix(0.257467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257467,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.180000px;}
.v6{vertical-align:-14.400000px;}
.v5{vertical-align:-5.759940px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:14.400000px;}
.v4{vertical-align:18.119940px;}
.v1{vertical-align:20.880060px;}
.ls14{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.427118px;}
.ls13{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.263122px;}
.ls5{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.206400px;}
.ls6{letter-spacing:-0.108000px;}
.ls19{letter-spacing:-0.106800px;}
.ls15{letter-spacing:-0.091200px;}
.ls7{letter-spacing:-0.053280px;}
.ls16{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000060px;}
.ls12{letter-spacing:0.017280px;}
.lsd{letter-spacing:0.057334px;}
.lsf{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259860px;}
.ls11{letter-spacing:0.259920px;}
.ls1a{letter-spacing:0.359880px;}
.ls1{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.360060px;}
.lse{letter-spacing:0.377940px;}
.lsb{letter-spacing:0.447957px;}
.lsc{letter-spacing:1.202407px;}
.ls1c{letter-spacing:16.506720px;}
.ls17{letter-spacing:46.026720px;}
.ls3{letter-spacing:1091.976000px;}
.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;}
}
.ws14{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.ws4{word-spacing:-15.012000px;}
.ws0{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws1b{word-spacing:-14.833200px;}
.ws17{word-spacing:-14.580000px;}
.ws16{word-spacing:-13.860000px;}
.ws15{word-spacing:-13.608000px;}
.ws1a{word-spacing:-13.505760px;}
.ws8{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.392000px;}
.ws3{word-spacing:-13.284000px;}
.ws9{word-spacing:-13.030110px;}
.wsb{word-spacing:-12.865582px;}
.ws19{word-spacing:-12.204000px;}
.wse{word-spacing:-11.872984px;}
.wsc{word-spacing:-11.788350px;}
.ws18{word-spacing:-9.737280px;}
.ws1{word-spacing:-9.720000px;}
.ws2{word-spacing:-9.000000px;}
.ws1d{word-spacing:-0.419760px;}
.ws1f{word-spacing:-0.059760px;}
.wsf{word-spacing:0.000000px;}
.ws1e{word-spacing:0.300240px;}
.ws12{word-spacing:2.942372px;}
.ws11{word-spacing:3.696827px;}
.ws10{word-spacing:4.597450px;}
.wsd{word-spacing:8.250788px;}
.ws13{word-spacing:8.832435px;}
.ws1c{word-spacing:74.340120px;}
.wsa{word-spacing:618.361702px;}
._15{margin-left:-1118.976000px;}
._14{margin-left:-13.500000px;}
._16{margin-left:-4.255920px;}
._7{margin-left:-2.593080px;}
._3{margin-left:-1.196820px;}
._1{width:1.244880px;}
._12{width:2.548260px;}
._9{width:3.726000px;}
._6{width:4.860000px;}
._d{width:5.886000px;}
._8{width:6.966000px;}
._5{width:8.262000px;}
._4{width:9.684000px;}
._13{width:11.303280px;}
._c{width:12.366000px;}
._11{width:13.635360px;}
._b{width:16.488000px;}
._a{width:17.514000px;}
._10{width:18.824400px;}
._f{width:20.258640px;}
._17{width:22.051440px;}
._18{width:23.875500px;}
._2{width:31.792320px;}
._0{width:32.941440px;}
._1c{width:42.061260px;}
._1b{width:43.565040px;}
._23{width:75.065040px;}
._e{width:87.300000px;}
._1a{width:107.303640px;}
._20{width:137.029680px;}
._1f{width:138.583440px;}
._21{width:157.059360px;}
._22{width:158.280060px;}
._1e{width:274.270500px;}
._1d{width:275.374080px;}
._19{width:1072.439940px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:38.880000px;}
.fsc{font-size:40.320000px;}
.fs7{font-size:45.900000px;}
.fs8{font-size:47.153400px;}
.fs9{font-size:47.262600px;}
.fs6{font-size:53.170800px;}
.fs4{font-size:54.000000px;}
.fsb{font-size:54.144000px;}
.fs1{font-size:59.760000px;}
.fsa{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:5.939985px;}
.y50{bottom:5.940000px;}
.y52{bottom:5.940015px;}
.y4a{bottom:5.940030px;}
.y7e{bottom:9.570000px;}
.y2f{bottom:11.528550px;}
.y78{bottom:13.650000px;}
.y7b{bottom:14.145000px;}
.y48{bottom:17.100030px;}
.y61{bottom:18.000000px;}
.y81{bottom:18.165000px;}
.y7d{bottom:21.270000px;}
.ya8{bottom:22.605015px;}
.y2d{bottom:24.887550px;}
.y2e{bottom:25.006605px;}
.y77{bottom:25.350000px;}
.y7a{bottom:25.845000px;}
.y2c{bottom:29.506050px;}
.y7f{bottom:29.850000px;}
.y79{bottom:33.915000px;}
.y7c{bottom:34.410000px;}
.ya1{bottom:45.030030px;}
.y28{bottom:71.496000px;}
.y9f{bottom:75.816000px;}
.y60{bottom:78.696000px;}
.ya2{bottom:81.690030px;}
.y6f{bottom:86.685000px;}
.y27{bottom:88.056000px;}
.y9e{bottom:92.916000px;}
.y5f{bottom:95.976000px;}
.y6d{bottom:104.256000px;}
.y26{bottom:108.756000px;}
.y9d{bottom:110.196000px;}
.yc8{bottom:111.096000px;}
.y5e{bottom:113.256000px;}
.y70{bottom:118.155000px;}
.y6c{bottom:119.736000px;}
.ya3{bottom:119.880015px;}
.y25{bottom:126.036000px;}
.y9c{bottom:127.476000px;}
.yc7{bottom:128.376000px;}
.y80{bottom:129.060000px;}
.y5d{bottom:130.536000px;}
.y6b{bottom:141.336000px;}
.y6e{bottom:142.560000px;}
.y24{bottom:143.316000px;}
.y9b{bottom:144.756000px;}
.y5c{bottom:147.816000px;}
.y71{bottom:149.610000px;}
.yc6{bottom:150.150000px;}
.ya4{bottom:158.115015px;}
.y23{bottom:160.590000px;}
.y9a{bottom:162.030000px;}
.y5b{bottom:164.910000px;}
.yc5{bottom:167.250000px;}
.y22{bottom:177.870000px;}
.y99{bottom:179.310000px;}
.y5a{bottom:179.670000px;}
.y72{bottom:181.110000px;}
.yc4{bottom:184.530000px;}
.y21{bottom:195.150015px;}
.ya5{bottom:196.305045px;}
.y98{bottom:196.410000px;}
.y59{bottom:201.269985px;}
.yc3{bottom:206.309985px;}
.y20{bottom:212.250000px;}
.y73{bottom:212.579985px;}
.y58{bottom:222.870000px;}
.yc2{bottom:223.590000px;}
.y97{bottom:227.010000px;}
.y1f{bottom:229.530000px;}
.ya6{bottom:234.510000px;}
.yc1{bottom:240.870000px;}
.y74{bottom:244.080015px;}
.y57{bottom:244.470000px;}
.y1e{bottom:246.809985px;}
.yc0{bottom:262.695000px;}
.y1d{bottom:264.135000px;}
.y56{bottom:266.115000px;}
.ya7{bottom:272.700030px;}
.y96{bottom:272.775015px;}
.y75{bottom:275.549985px;}
.ybf{bottom:279.795000px;}
.y1c{bottom:281.415000px;}
.y55{bottom:287.715000px;}
.y95{bottom:289.875000px;}
.ybe{bottom:297.075000px;}
.y1b{bottom:298.695000px;}
.y76{bottom:307.004985px;}
.y94{bottom:307.155000px;}
.y54{bottom:309.315015px;}
.ybd{bottom:314.355015px;}
.y93{bottom:324.434985px;}
.y1a{bottom:329.115000px;}
.y53{bottom:330.915000px;}
.ybc{bottom:336.135000px;}
.y92{bottom:341.715000px;}
.y51{bottom:352.514985px;}
.ybb{bottom:353.415000px;}
.y91{bottom:358.995000px;}
.y4f{bottom:374.115000px;}
.yba{bottom:375.195000px;}
.y90{bottom:376.275015px;}
.y19{bottom:391.574985px;}
.yb9{bottom:392.295000px;}
.y8f{bottom:393.375000px;}
.y4d{bottom:395.715000px;}
.y18{bottom:407.055000px;}
.yb8{bottom:409.574985px;}
.ye1{bottom:409.755015px;}
.y8e{bottom:410.654985px;}
.y4c{bottom:417.314985px;}
.y17{bottom:422.535000px;}
.y8d{bottom:427.935015px;}
.yb7{bottom:431.355015px;}
.ye0{bottom:431.535000px;}
.y16{bottom:438.015015px;}
.y4b{bottom:438.914985px;}
.y8c{bottom:445.215000px;}
.yb6{bottom:448.635000px;}
.ydf{bottom:453.314985px;}
.y15{bottom:453.675015px;}
.y47{bottom:461.414985px;}
.y8b{bottom:462.494985px;}
.yb5{bottom:465.914985px;}
.y14{bottom:469.154985px;}
.y6a{bottom:473.115000px;}
.yde{bottom:474.914985px;}
.y8a{bottom:479.775015px;}
.y49{bottom:483.734985px;}
.y13{bottom:484.635000px;}
.yb4{bottom:487.515015px;}
.y69{bottom:490.394985px;}
.ydd{bottom:496.724985px;}
.y89{bottom:496.904985px;}
.y12{bottom:500.144985px;}
.yb3{bottom:504.824985px;}
.y68{bottom:507.705000px;}
.y88{bottom:514.185015px;}
.y11{bottom:515.805000px;}
.y46{bottom:517.965000px;}
.ydc{bottom:518.505015px;}
.yb2{bottom:522.105015px;}
.y67{bottom:524.805000px;}
.y10{bottom:531.285000px;}
.y87{bottom:531.465000px;}
.ydb{bottom:535.785000px;}
.y66{bottom:542.085015px;}
.y45{bottom:542.805000px;}
.yf{bottom:546.765015px;}
.y86{bottom:548.744985px;}
.yb1{bottom:552.525015px;}
.yda{bottom:553.064985px;}
.y65{bottom:559.365000px;}
.y44{bottom:560.085015px;}
.ye{bottom:562.244985px;}
.y85{bottom:566.025015px;}
.yd9{bottom:574.845015px;}
.y43{bottom:577.365000px;}
.yd{bottom:577.904985px;}
.y84{bottom:583.305000px;}
.y64{bottom:589.785000px;}
.yd8{bottom:591.945000px;}
.yc{bottom:593.385000px;}
.yb0{bottom:598.064985px;}
.y42{bottom:607.785000px;}
.yb{bottom:608.865000px;}
.y83{bottom:609.224985px;}
.yaf{bottom:613.545000px;}
.ya{bottom:624.345015px;}
.yae{bottom:629.025015px;}
.y82{bottom:630.644985px;}
.yd7{bottom:631.005015px;}
.ya0{bottom:631.439985px;}
.y63{bottom:635.324985px;}
.yad{bottom:644.505015px;}
.yd6{bottom:648.285000px;}
.y41{bottom:653.505015px;}
.y62{bottom:656.925015px;}
.yac{bottom:660.164985px;}
.yd5{bottom:670.064985px;}
.y40{bottom:670.785000px;}
.yab{bottom:675.644985px;}
.y9{bottom:678.525015px;}
.yd4{bottom:687.345015px;}
.y3f{bottom:688.064985px;}
.y8{bottom:689.505015px;}
.yaa{bottom:691.125000px;}
.yd3{bottom:704.445000px;}
.y7{bottom:705.164985px;}
.y3e{bottom:705.345015px;}
.ya9{bottom:706.605015px;}
.yd2{bottom:721.724985px;}
.y3d{bottom:722.445000px;}
.y6{bottom:725.189985px;}
.y3c{bottom:739.769985px;}
.yd1{bottom:743.550015px;}
.y4{bottom:744.990000px;}
.y5{bottom:750.210015px;}
.y3b{bottom:757.050015px;}
.yd0{bottom:760.830000px;}
.y3a{bottom:774.329955px;}
.ycf{bottom:778.109985px;}
.y3{bottom:789.629970px;}
.y39{bottom:791.609985px;}
.yce{bottom:795.210015px;}
.y38{bottom:808.710015px;}
.ycd{bottom:816.989955px;}
.y2{bottom:817.170045px;}
.y37{bottom:825.989955px;}
.ycc{bottom:834.269985px;}
.y36{bottom:843.269985px;}
.y1{bottom:844.710015px;}
.ycb{bottom:851.550015px;}
.y35{bottom:860.550015px;}
.yca{bottom:873.329955px;}
.y34{bottom:877.829955px;}
.yc9{bottom:890.609985px;}
.y33{bottom:895.109985px;}
.y32{bottom:912.210015px;}
.y31{bottom:929.489955px;}
.y30{bottom:946.769985px;}
.y29{bottom:1007.820000px;}
.y2b{bottom:1016.490645px;}
.y2a{bottom:1035.674835px;}
.h1a{height:21.600000px;}
.h18{height:21.636000px;}
.h5{height:27.014766px;}
.h6{height:29.096367px;}
.h8{height:29.276367px;}
.h11{height:31.900500px;}
.h12{height:32.771613px;}
.h13{height:32.818773px;}
.h14{height:32.942007px;}
.h7{height:37.520508px;}
.h17{height:37.705078px;}
.h1e{height:38.100586px;}
.hd{height:38.642695px;}
.h9{height:39.313477px;}
.h27{height:41.493516px;}
.h24{height:41.522695px;}
.hb{height:41.726953px;}
.h1b{height:43.136719px;}
.h19{height:43.256659px;}
.h16{height:43.956000px;}
.h15{height:47.645508px;}
.h4{height:47.894826px;}
.he{height:48.410156px;}
.h26{height:49.255313px;}
.hc{height:50.027344px;}
.h25{height:52.319180px;}
.ha{height:52.417969px;}
.h1d{height:52.727695px;}
.h20{height:53.709961px;}
.h21{height:53.853187px;}
.hf{height:54.387630px;}
.h10{height:55.265625px;}
.h22{height:59.439023px;}
.h1c{height:60.410156px;}
.h3{height:69.715898px;}
.h23{height:312.300000px;}
.h1f{height:327.420000px;}
.h1{height:1062.750000px;}
.h2{height:1062.899878px;}
.h0{height:1062.900000px;}
.w7{width:39.780000px;}
.w8{width:45.360000px;}
.w6{width:45.936000px;}
.w5{width:131.076000px;}
.w9{width:274.500000px;}
.w4{width:370.514985px;}
.wa{width:545.400015px;}
.w3{width:722.879978px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x12{left:5.220015px;}
.x14{left:6.660000px;}
.x1a{left:9.720015px;}
.x25{left:10.979970px;}
.x17{left:12.600030px;}
.x3c{left:13.932000px;}
.x27{left:16.019985px;}
.x18{left:17.640015px;}
.x20{left:19.485030px;}
.x19{left:20.519985px;}
.x11{left:22.005015px;}
.x3b{left:25.632000px;}
.x21{left:27.180000px;}
.x8{left:30.403815px;}
.x37{left:33.084000px;}
.x2d{left:41.688000px;}
.x22{left:44.454000px;}
.x2c{left:48.528000px;}
.xb{left:52.601625px;}
.xc{left:54.294765px;}
.xa{left:61.650315px;}
.x9{left:75.384915px;}
.x2e{left:83.010000px;}
.x1{left:84.995989px;}
.x3a{left:86.220000px;}
.x6{left:91.655989px;}
.x16{left:99.533985px;}
.x2f{left:104.145000px;}
.x28{left:106.235989px;}
.xe{left:110.736000px;}
.x1f{left:111.999015px;}
.x23{left:116.859000px;}
.x1d{left:121.539015px;}
.x26{left:124.059000px;}
.x30{left:125.280000px;}
.x1e{left:129.278985px;}
.x1b{left:132.158985px;}
.x39{left:133.235989px;}
.xf{left:144.579015px;}
.x31{left:146.445000px;}
.x24{left:154.299000px;}
.x4{left:157.349989px;}
.x32{left:167.580000px;}
.x1c{left:168.698985px;}
.x33{left:188.715000px;}
.x2{left:192.809963px;}
.x3{left:197.669989px;}
.x34{left:209.880000px;}
.x35{left:231.014985px;}
.xd{left:243.794989px;}
.x36{left:252.150015px;}
.x3d{left:265.349985px;}
.x5{left:301.034989px;}
.x29{left:357.847500px;}
.x2b{left:359.565004px;}
.x7{left:361.365000px;}
.x10{left:481.244985px;}
.x2a{left:525.749989px;}
.x13{left:527.189985px;}
.x15{left:566.970015px;}
.x38{left:630.509989px;}
@media print{
.v2{vertical-align:-16.160000pt;}
.v6{vertical-align:-12.800000pt;}
.v5{vertical-align:-5.119947pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:12.800000pt;}
.v4{vertical-align:16.106613pt;}
.v1{vertical-align:18.560053pt;}
.ls14{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.379661pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.233886pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.183467pt;}
.ls6{letter-spacing:-0.096000pt;}
.ls19{letter-spacing:-0.094933pt;}
.ls15{letter-spacing:-0.081067pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls16{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000053pt;}
.ls12{letter-spacing:0.015360pt;}
.lsd{letter-spacing:0.050964pt;}
.lsf{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.230987pt;}
.ls11{letter-spacing:0.231040pt;}
.ls1a{letter-spacing:0.319893pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.320053pt;}
.lse{letter-spacing:0.335947pt;}
.lsb{letter-spacing:0.398184pt;}
.lsc{letter-spacing:1.068806pt;}
.ls1c{letter-spacing:14.672640pt;}
.ls17{letter-spacing:40.912640pt;}
.ls3{letter-spacing:970.645333pt;}
.ws14{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.344000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws1b{word-spacing:-13.185067pt;}
.ws17{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.320000pt;}
.ws15{word-spacing:-12.096000pt;}
.ws1a{word-spacing:-12.005120pt;}
.ws8{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.904000pt;}
.ws3{word-spacing:-11.808000pt;}
.ws9{word-spacing:-11.582320pt;}
.wsb{word-spacing:-11.436073pt;}
.ws19{word-spacing:-10.848000pt;}
.wse{word-spacing:-10.553764pt;}
.wsc{word-spacing:-10.478533pt;}
.ws18{word-spacing:-8.655360pt;}
.ws1{word-spacing:-8.640000pt;}
.ws2{word-spacing:-8.000000pt;}
.ws1d{word-spacing:-0.373120pt;}
.ws1f{word-spacing:-0.053120pt;}
.wsf{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.266880pt;}
.ws12{word-spacing:2.615442pt;}
.ws11{word-spacing:3.286068pt;}
.ws10{word-spacing:4.086623pt;}
.wsd{word-spacing:7.334034pt;}
.ws13{word-spacing:7.851053pt;}
.ws1c{word-spacing:66.080107pt;}
.wsa{word-spacing:549.654846pt;}
._15{margin-left:-994.645333pt;}
._14{margin-left:-12.000000pt;}
._16{margin-left:-3.783040pt;}
._7{margin-left:-2.304960pt;}
._3{margin-left:-1.063840pt;}
._1{width:1.106560pt;}
._12{width:2.265120pt;}
._9{width:3.312000pt;}
._6{width:4.320000pt;}
._d{width:5.232000pt;}
._8{width:6.192000pt;}
._5{width:7.344000pt;}
._4{width:8.608000pt;}
._13{width:10.047360pt;}
._c{width:10.992000pt;}
._11{width:12.120320pt;}
._b{width:14.656000pt;}
._a{width:15.568000pt;}
._10{width:16.732800pt;}
._f{width:18.007680pt;}
._17{width:19.601280pt;}
._18{width:21.222667pt;}
._2{width:28.259840pt;}
._0{width:29.281280pt;}
._1c{width:37.387787pt;}
._1b{width:38.724480pt;}
._23{width:66.724480pt;}
._e{width:77.600000pt;}
._1a{width:95.381013pt;}
._20{width:121.804160pt;}
._1f{width:123.185280pt;}
._21{width:139.608320pt;}
._22{width:140.693387pt;}
._1e{width:243.796000pt;}
._1d{width:244.776960pt;}
._19{width:953.279947pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:34.560000pt;}
.fsc{font-size:35.840000pt;}
.fs7{font-size:40.800000pt;}
.fs8{font-size:41.914133pt;}
.fs9{font-size:42.011200pt;}
.fs6{font-size:47.262933pt;}
.fs4{font-size:48.000000pt;}
.fsb{font-size:48.128000pt;}
.fs1{font-size:53.120000pt;}
.fsa{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:5.279987pt;}
.y50{bottom:5.280000pt;}
.y52{bottom:5.280013pt;}
.y4a{bottom:5.280027pt;}
.y7e{bottom:8.506667pt;}
.y2f{bottom:10.247600pt;}
.y78{bottom:12.133333pt;}
.y7b{bottom:12.573333pt;}
.y48{bottom:15.200027pt;}
.y61{bottom:16.000000pt;}
.y81{bottom:16.146667pt;}
.y7d{bottom:18.906667pt;}
.ya8{bottom:20.093347pt;}
.y2d{bottom:22.122267pt;}
.y2e{bottom:22.228094pt;}
.y77{bottom:22.533333pt;}
.y7a{bottom:22.973333pt;}
.y2c{bottom:26.227600pt;}
.y7f{bottom:26.533333pt;}
.y79{bottom:30.146667pt;}
.y7c{bottom:30.586667pt;}
.ya1{bottom:40.026693pt;}
.y28{bottom:63.552000pt;}
.y9f{bottom:67.392000pt;}
.y60{bottom:69.952000pt;}
.ya2{bottom:72.613360pt;}
.y6f{bottom:77.053333pt;}
.y27{bottom:78.272000pt;}
.y9e{bottom:82.592000pt;}
.y5f{bottom:85.312000pt;}
.y6d{bottom:92.672000pt;}
.y26{bottom:96.672000pt;}
.y9d{bottom:97.952000pt;}
.yc8{bottom:98.752000pt;}
.y5e{bottom:100.672000pt;}
.y70{bottom:105.026667pt;}
.y6c{bottom:106.432000pt;}
.ya3{bottom:106.560013pt;}
.y25{bottom:112.032000pt;}
.y9c{bottom:113.312000pt;}
.yc7{bottom:114.112000pt;}
.y80{bottom:114.720000pt;}
.y5d{bottom:116.032000pt;}
.y6b{bottom:125.632000pt;}
.y6e{bottom:126.720000pt;}
.y24{bottom:127.392000pt;}
.y9b{bottom:128.672000pt;}
.y5c{bottom:131.392000pt;}
.y71{bottom:132.986667pt;}
.yc6{bottom:133.466667pt;}
.ya4{bottom:140.546680pt;}
.y23{bottom:142.746667pt;}
.y9a{bottom:144.026667pt;}
.y5b{bottom:146.586667pt;}
.yc5{bottom:148.666667pt;}
.y22{bottom:158.106667pt;}
.y99{bottom:159.386667pt;}
.y5a{bottom:159.706667pt;}
.y72{bottom:160.986667pt;}
.yc4{bottom:164.026667pt;}
.y21{bottom:173.466680pt;}
.ya5{bottom:174.493373pt;}
.y98{bottom:174.586667pt;}
.y59{bottom:178.906653pt;}
.yc3{bottom:183.386653pt;}
.y20{bottom:188.666667pt;}
.y73{bottom:188.959987pt;}
.y58{bottom:198.106667pt;}
.yc2{bottom:198.746667pt;}
.y97{bottom:201.786667pt;}
.y1f{bottom:204.026667pt;}
.ya6{bottom:208.453333pt;}
.yc1{bottom:214.106667pt;}
.y74{bottom:216.960013pt;}
.y57{bottom:217.306667pt;}
.y1e{bottom:219.386653pt;}
.yc0{bottom:233.506667pt;}
.y1d{bottom:234.786667pt;}
.y56{bottom:236.546667pt;}
.ya7{bottom:242.400027pt;}
.y96{bottom:242.466680pt;}
.y75{bottom:244.933320pt;}
.ybf{bottom:248.706667pt;}
.y1c{bottom:250.146667pt;}
.y55{bottom:255.746667pt;}
.y95{bottom:257.666667pt;}
.ybe{bottom:264.066667pt;}
.y1b{bottom:265.506667pt;}
.y76{bottom:272.893320pt;}
.y94{bottom:273.026667pt;}
.y54{bottom:274.946680pt;}
.ybd{bottom:279.426680pt;}
.y93{bottom:288.386653pt;}
.y1a{bottom:292.546667pt;}
.y53{bottom:294.146667pt;}
.ybc{bottom:298.786667pt;}
.y92{bottom:303.746667pt;}
.y51{bottom:313.346653pt;}
.ybb{bottom:314.146667pt;}
.y91{bottom:319.106667pt;}
.y4f{bottom:332.546667pt;}
.yba{bottom:333.506667pt;}
.y90{bottom:334.466680pt;}
.y19{bottom:348.066653pt;}
.yb9{bottom:348.706667pt;}
.y8f{bottom:349.666667pt;}
.y4d{bottom:351.746667pt;}
.y18{bottom:361.826667pt;}
.yb8{bottom:364.066653pt;}
.ye1{bottom:364.226680pt;}
.y8e{bottom:365.026653pt;}
.y4c{bottom:370.946653pt;}
.y17{bottom:375.586667pt;}
.y8d{bottom:380.386680pt;}
.yb7{bottom:383.426680pt;}
.ye0{bottom:383.586667pt;}
.y16{bottom:389.346680pt;}
.y4b{bottom:390.146653pt;}
.y8c{bottom:395.746667pt;}
.yb6{bottom:398.786667pt;}
.ydf{bottom:402.946653pt;}
.y15{bottom:403.266680pt;}
.y47{bottom:410.146653pt;}
.y8b{bottom:411.106653pt;}
.yb5{bottom:414.146653pt;}
.y14{bottom:417.026653pt;}
.y6a{bottom:420.546667pt;}
.yde{bottom:422.146653pt;}
.y8a{bottom:426.466680pt;}
.y49{bottom:429.986653pt;}
.y13{bottom:430.786667pt;}
.yb4{bottom:433.346680pt;}
.y69{bottom:435.906653pt;}
.ydd{bottom:441.533320pt;}
.y89{bottom:441.693320pt;}
.y12{bottom:444.573320pt;}
.yb3{bottom:448.733320pt;}
.y68{bottom:451.293333pt;}
.y88{bottom:457.053347pt;}
.y11{bottom:458.493333pt;}
.y46{bottom:460.413333pt;}
.ydc{bottom:460.893347pt;}
.yb2{bottom:464.093347pt;}
.y67{bottom:466.493333pt;}
.y10{bottom:472.253333pt;}
.y87{bottom:472.413333pt;}
.ydb{bottom:476.253333pt;}
.y66{bottom:481.853347pt;}
.y45{bottom:482.493333pt;}
.yf{bottom:486.013347pt;}
.y86{bottom:487.773320pt;}
.yb1{bottom:491.133347pt;}
.yda{bottom:491.613320pt;}
.y65{bottom:497.213333pt;}
.y44{bottom:497.853347pt;}
.ye{bottom:499.773320pt;}
.y85{bottom:503.133347pt;}
.yd9{bottom:510.973347pt;}
.y43{bottom:513.213333pt;}
.yd{bottom:513.693320pt;}
.y84{bottom:518.493333pt;}
.y64{bottom:524.253333pt;}
.yd8{bottom:526.173333pt;}
.yc{bottom:527.453333pt;}
.yb0{bottom:531.613320pt;}
.y42{bottom:540.253333pt;}
.yb{bottom:541.213333pt;}
.y83{bottom:541.533320pt;}
.yaf{bottom:545.373333pt;}
.ya{bottom:554.973347pt;}
.yae{bottom:559.133347pt;}
.y82{bottom:560.573320pt;}
.yd7{bottom:560.893347pt;}
.ya0{bottom:561.279987pt;}
.y63{bottom:564.733320pt;}
.yad{bottom:572.893347pt;}
.yd6{bottom:576.253333pt;}
.y41{bottom:580.893347pt;}
.y62{bottom:583.933347pt;}
.yac{bottom:586.813320pt;}
.yd5{bottom:595.613320pt;}
.y40{bottom:596.253333pt;}
.yab{bottom:600.573320pt;}
.y9{bottom:603.133347pt;}
.yd4{bottom:610.973347pt;}
.y3f{bottom:611.613320pt;}
.y8{bottom:612.893347pt;}
.yaa{bottom:614.333333pt;}
.yd3{bottom:626.173333pt;}
.y7{bottom:626.813320pt;}
.y3e{bottom:626.973347pt;}
.ya9{bottom:628.093347pt;}
.yd2{bottom:641.533320pt;}
.y3d{bottom:642.173333pt;}
.y6{bottom:644.613320pt;}
.y3c{bottom:657.573320pt;}
.yd1{bottom:660.933347pt;}
.y4{bottom:662.213333pt;}
.y5{bottom:666.853347pt;}
.y3b{bottom:672.933347pt;}
.yd0{bottom:676.293333pt;}
.y3a{bottom:688.293293pt;}
.ycf{bottom:691.653320pt;}
.y3{bottom:701.893307pt;}
.y39{bottom:703.653320pt;}
.yce{bottom:706.853347pt;}
.y38{bottom:718.853347pt;}
.ycd{bottom:726.213293pt;}
.y2{bottom:726.373373pt;}
.y37{bottom:734.213293pt;}
.ycc{bottom:741.573320pt;}
.y36{bottom:749.573320pt;}
.y1{bottom:750.853347pt;}
.ycb{bottom:756.933347pt;}
.y35{bottom:764.933347pt;}
.yca{bottom:776.293293pt;}
.y34{bottom:780.293293pt;}
.yc9{bottom:791.653320pt;}
.y33{bottom:795.653320pt;}
.y32{bottom:810.853347pt;}
.y31{bottom:826.213293pt;}
.y30{bottom:841.573320pt;}
.y29{bottom:895.840000pt;}
.y2b{bottom:903.547240pt;}
.y2a{bottom:920.599853pt;}
.h1a{height:19.200000pt;}
.h18{height:19.232000pt;}
.h5{height:24.013125pt;}
.h6{height:25.863437pt;}
.h8{height:26.023438pt;}
.h11{height:28.356000pt;}
.h12{height:29.130323pt;}
.h13{height:29.172243pt;}
.h14{height:29.281784pt;}
.h7{height:33.351562pt;}
.h17{height:33.515625pt;}
.h1e{height:33.867188pt;}
.hd{height:34.349062pt;}
.h9{height:34.945312pt;}
.h27{height:36.883125pt;}
.h24{height:36.909063pt;}
.hb{height:37.090625pt;}
.h1b{height:38.343750pt;}
.h19{height:38.450363pt;}
.h16{height:39.072000pt;}
.h15{height:42.351562pt;}
.h4{height:42.573178pt;}
.he{height:43.031250pt;}
.h26{height:43.782500pt;}
.hc{height:44.468750pt;}
.h25{height:46.505938pt;}
.ha{height:46.593750pt;}
.h1d{height:46.869062pt;}
.h20{height:47.742188pt;}
.h21{height:47.869500pt;}
.hf{height:48.344560pt;}
.h10{height:49.125000pt;}
.h22{height:52.834688pt;}
.h1c{height:53.697917pt;}
.h3{height:61.969687pt;}
.h23{height:277.600000pt;}
.h1f{height:291.040000pt;}
.h1{height:944.666667pt;}
.h2{height:944.799892pt;}
.h0{height:944.800000pt;}
.w7{width:35.360000pt;}
.w8{width:40.320000pt;}
.w6{width:40.832000pt;}
.w5{width:116.512000pt;}
.w9{width:244.000000pt;}
.w4{width:329.346653pt;}
.wa{width:484.800013pt;}
.w3{width:642.559981pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x12{left:4.640013pt;}
.x14{left:5.920000pt;}
.x1a{left:8.640013pt;}
.x25{left:9.759973pt;}
.x17{left:11.200027pt;}
.x3c{left:12.384000pt;}
.x27{left:14.239987pt;}
.x18{left:15.680013pt;}
.x20{left:17.320027pt;}
.x19{left:18.239987pt;}
.x11{left:19.560013pt;}
.x3b{left:22.784000pt;}
.x21{left:24.160000pt;}
.x8{left:27.025613pt;}
.x37{left:29.408000pt;}
.x2d{left:37.056000pt;}
.x22{left:39.514667pt;}
.x2c{left:43.136000pt;}
.xb{left:46.757000pt;}
.xc{left:48.262013pt;}
.xa{left:54.800280pt;}
.x9{left:67.008813pt;}
.x2e{left:73.786667pt;}
.x1{left:75.551990pt;}
.x3a{left:76.640000pt;}
.x6{left:81.471990pt;}
.x16{left:88.474653pt;}
.x2f{left:92.573333pt;}
.x28{left:94.431990pt;}
.xe{left:98.432000pt;}
.x1f{left:99.554680pt;}
.x23{left:103.874667pt;}
.x1d{left:108.034680pt;}
.x26{left:110.274667pt;}
.x30{left:111.360000pt;}
.x1e{left:114.914653pt;}
.x1b{left:117.474653pt;}
.x39{left:118.431990pt;}
.xf{left:128.514680pt;}
.x31{left:130.173333pt;}
.x24{left:137.154667pt;}
.x4{left:139.866657pt;}
.x32{left:148.960000pt;}
.x1c{left:149.954653pt;}
.x33{left:167.746667pt;}
.x2{left:171.386634pt;}
.x3{left:175.706657pt;}
.x34{left:186.560000pt;}
.x35{left:205.346653pt;}
.xd{left:216.706657pt;}
.x36{left:224.133347pt;}
.x3d{left:235.866653pt;}
.x5{left:267.586657pt;}
.x29{left:318.086667pt;}
.x2b{left:319.613337pt;}
.x7{left:321.213333pt;}
.x10{left:427.773320pt;}
.x2a{left:467.333324pt;}
.x13{left:468.613320pt;}
.x15{left:503.973347pt;}
.x38{left:560.453324pt;}
}




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