
    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_dd808934b1f85170fddef436.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2809921b1268f79aa5e2e16.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_44bd7f3b89ab1d417940e537.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a1fd656fb347670581b94944.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a964bd68f8c1a7da9e08c2f3.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_e914f7cecc6d30af20db78e3.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_2d5bb7c19b0557a6771c8324.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_6bf44f501888719e458c94f2.woff')format("woff");}.ff11{font-family:ff11;line-height:1.063477;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_5a1e6535df88c2bb4cf4f817.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_0d0357a83dc268746ebefbcc.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_7344b57c7a27b46268bea454.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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff15{font-family:ff15;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: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_a8bee4ff4b32bd5c8e93575c.woff')format("woff");}.ff17{font-family:ff17;line-height:0.923340;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_68971d48047f0aadf668d4ee.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;}
.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.000000px;}
.v4{vertical-align:-12.240000px;}
.v7{vertical-align:-8.640000px;}
.vb{vertical-align:-5.759760px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.240000px;}
.vc{vertical-align:18.000000px;}
.v1{vertical-align:20.879880px;}
.v8{vertical-align:30.240000px;}
.v6{vertical-align:47.520000px;}
.v9{vertical-align:65.520000px;}
.va{vertical-align:81.360000px;}
.ls7{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.427118px;}
.ls1e{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.263122px;}
.ls5{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.106800px;}
.ls1d{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000060px;}
.ls1a{letter-spacing:0.004320px;}
.ls16{letter-spacing:0.008640px;}
.ls14{letter-spacing:0.012960px;}
.ls24{letter-spacing:0.018000px;}
.ls27{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.057334px;}
.ls18{letter-spacing:0.106560px;}
.ls6{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.259800px;}
.ls1b{letter-spacing:0.259860px;}
.ls21{letter-spacing:0.306600px;}
.ls19{letter-spacing:0.336000px;}
.ls26{letter-spacing:0.359940px;}
.ls1{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.360060px;}
.lsa{letter-spacing:0.447957px;}
.lsb{letter-spacing:1.202407px;}
.ls12{letter-spacing:1.959840px;}
.ls10{letter-spacing:2.079900px;}
.ls11{letter-spacing:2.340060px;}
.ls17{letter-spacing:5.220000px;}
.ls25{letter-spacing:16.506720px;}
.lse{letter-spacing:17.279340px;}
.lsd{letter-spacing:19.467300px;}
.lsf{letter-spacing:32.346780px;}
.ls13{letter-spacing:44.100000px;}
.ls22{letter-spacing:46.026720px;}
.ls20{letter-spacing:64.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;}
}
.ws19{word-spacing:-59.772960px;}
.ws15{word-spacing:-59.760000px;}
.ws18{word-spacing:-46.440720px;}
.ws17{word-spacing:-42.480660px;}
.ws16{word-spacing:-41.760000px;}
.ws13{word-spacing:-16.506480px;}
.ws6{word-spacing:-15.300000px;}
.ws1f{word-spacing:-15.246600px;}
.ws1a{word-spacing:-15.199800px;}
.ws5{word-spacing:-15.046800px;}
.ws3{word-spacing:-15.012000px;}
.ws25{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws1b{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.833200px;}
.ws1c{word-spacing:-14.580000px;}
.ws1e{word-spacing:-13.860000px;}
.ws1d{word-spacing:-13.716000px;}
.ws21{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.284000px;}
.ws20{word-spacing:-13.140000px;}
.ws8{word-spacing:-13.030110px;}
.wsa{word-spacing:-12.865582px;}
.wsd{word-spacing:-11.872984px;}
.wsb{word-spacing:-11.788350px;}
.ws1{word-spacing:-9.720000px;}
.ws2{word-spacing:-9.000000px;}
.ws22{word-spacing:-0.419760px;}
.ws23{word-spacing:-0.059760px;}
.wse{word-spacing:0.000000px;}
.ws24{word-spacing:0.300240px;}
.ws11{word-spacing:2.942372px;}
.ws10{word-spacing:3.696827px;}
.wsf{word-spacing:4.597450px;}
.wsc{word-spacing:8.250788px;}
.ws12{word-spacing:8.832435px;}
.ws9{word-spacing:618.361702px;}
._17{margin-left:-1118.976000px;}
._16{margin-left:-13.500000px;}
._18{margin-left:-3.270240px;}
._5{margin-left:-2.232000px;}
._3{margin-left:-1.116000px;}
._2{width:1.340640px;}
._f{width:2.601360px;}
._14{width:3.606360px;}
._a{width:5.472060px;}
._4{width:6.803940px;}
._c{width:8.514000px;}
._b{width:9.594000px;}
._7{width:10.638000px;}
._6{width:11.664000px;}
._11{width:12.848400px;}
._10{width:13.924080px;}
._9{width:15.768000px;}
._8{width:16.956000px;}
._15{width:18.107280px;}
._19{width:20.019600px;}
._12{width:21.607200px;}
._13{width:22.607280px;}
._1e{width:24.083280px;}
._e{width:25.830000px;}
._d{width:27.054000px;}
._1c{width:39.473220px;}
._1{width:63.010080px;}
._0{width:64.063440px;}
._1a{width:87.300000px;}
._1d{width:120.551400px;}
._1b{width:121.908720px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fsb{font-size:41.760000px;}
.fs8{font-size:45.900000px;}
.fs9{font-size:47.153400px;}
.fsa{font-size:47.262600px;}
.fs0{font-size:48.240000px;}
.fs7{font-size:53.170800px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fsc{font-size:60.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:5.430000px;}
.y6c{bottom:5.939985px;}
.y75{bottom:5.940000px;}
.y77{bottom:5.940030px;}
.y80{bottom:6.120000px;}
.y82{bottom:6.480000px;}
.y6a{bottom:8.850000px;}
.y7d{bottom:9.000000px;}
.y2f{bottom:11.528550px;}
.y51{bottom:18.000000px;}
.y5f{bottom:18.165000px;}
.y6d{bottom:20.910000px;}
.y72{bottom:22.860030px;}
.y69{bottom:24.330000px;}
.y7c{bottom:24.480000px;}
.y2d{bottom:24.887550px;}
.y2e{bottom:25.006605px;}
.y2c{bottom:29.506050px;}
.y71{bottom:38.340030px;}
.y68{bottom:39.810015px;}
.y7b{bottom:39.959985px;}
.y1{bottom:44.856000px;}
.y70{bottom:53.820000px;}
.y7a{bottom:55.440000px;}
.y79{bottom:70.919985px;}
.y5e{bottom:71.496000px;}
.ybc{bottom:72.396000px;}
.y28{bottom:77.796000px;}
.y50{bottom:89.136000px;}
.ybb{bottom:89.676000px;}
.y8c{bottom:91.836000px;}
.y5d{bottom:93.096000px;}
.y27{bottom:94.356000px;}
.y4f{bottom:103.176000px;}
.yba{bottom:106.776000px;}
.y8b{bottom:109.116000px;}
.y4e{bottom:110.736000px;}
.y26{bottom:126.036000px;}
.y8a{bottom:126.396000px;}
.yb9{bottom:128.556000px;}
.y4d{bottom:134.316000px;}
.y25{bottom:143.316000px;}
.yb8{bottom:145.836000px;}
.y4c{bottom:151.590000px;}
.y89{bottom:156.810000px;}
.y24{bottom:160.590000px;}
.yb7{bottom:163.110000px;}
.y4b{bottom:168.870000px;}
.y23{bottom:177.870000px;}
.y4a{bottom:182.910000px;}
.yb6{bottom:184.890000px;}
.y22{bottom:195.150015px;}
.yb5{bottom:202.170000px;}
.y88{bottom:202.530000px;}
.y21{bottom:212.250000px;}
.yb4{bottom:219.269985px;}
.y87{bottom:219.809985px;}
.ye0{bottom:219.990000px;}
.y20{bottom:229.530000px;}
.yb3{bottom:236.550000px;}
.y86{bottom:237.090000px;}
.ydf{bottom:241.769985px;}
.y1f{bottom:246.809985px;}
.y85{bottom:254.190015px;}
.yde{bottom:259.050000px;}
.y1e{bottom:264.135000px;}
.yb2{bottom:267.195000px;}
.y84{bottom:271.514985px;}
.ydd{bottom:276.195000px;}
.y1d{bottom:281.415000px;}
.y83{bottom:288.795000px;}
.ydc{bottom:297.974985px;}
.y1c{bottom:298.695000px;}
.y78{bottom:312.555000px;}
.ydb{bottom:315.255000px;}
.y1b{bottom:315.795000px;}
.yb1{bottom:328.035000px;}
.yda{bottom:332.535000px;}
.y1a{bottom:333.075000px;}
.y81{bottom:335.775015px;}
.yb0{bottom:343.514985px;}
.y19{bottom:350.355015px;}
.yd9{bottom:354.315015px;}
.y7f{bottom:358.095000px;}
.yaf{bottom:359.175000px;}
.y18{bottom:367.635000px;}
.yd8{bottom:371.595000px;}
.yae{bottom:374.655000px;}
.y5c{bottom:376.275015px;}
.y7e{bottom:380.595000px;}
.y17{bottom:384.914985px;}
.yad{bottom:390.494985px;}
.yd7{bottom:393.195000px;}
.y5b{bottom:393.375000px;}
.y16{bottom:402.015015px;}
.y6f{bottom:402.914985px;}
.yac{bottom:407.775015px;}
.yd6{bottom:410.474985px;}
.y5a{bottom:410.654985px;}
.y15{bottom:419.295000px;}
.y76{bottom:424.515015px;}
.yab{bottom:424.875000px;}
.yd5{bottom:427.755015px;}
.y59{bottom:427.935015px;}
.yaa{bottom:442.154985px;}
.y58{bottom:445.215000px;}
.y74{bottom:446.115000px;}
.y49{bottom:448.275015px;}
.yd4{bottom:449.535000px;}
.y14{bottom:449.894985px;}
.ya9{bottom:459.435015px;}
.y57{bottom:462.494985px;}
.y48{bottom:465.555000px;}
.yd3{bottom:466.814985px;}
.y73{bottom:467.715000px;}
.ya8{bottom:477.795000px;}
.y56{bottom:479.775015px;}
.y47{bottom:482.835015px;}
.yd2{bottom:483.914985px;}
.y67{bottom:490.035000px;}
.ya7{bottom:495.105015px;}
.y55{bottom:496.904985px;}
.y46{bottom:500.144985px;}
.yd1{bottom:501.224985px;}
.y13{bottom:512.205000px;}
.ya6{bottom:512.385000px;}
.y45{bottom:517.244985px;}
.yd0{bottom:523.005015px;}
.y6b{bottom:526.785000px;}
.y54{bottom:526.965000px;}
.y12{bottom:527.865000px;}
.ya5{bottom:529.484985px;}
.y44{bottom:534.525015px;}
.ycf{bottom:540.285000px;}
.y11{bottom:543.345015px;}
.ya4{bottom:546.765015px;}
.y43{bottom:551.805000px;}
.yce{bottom:557.564985px;}
.y10{bottom:558.824985px;}
.y66{bottom:561.164985px;}
.ya3{bottom:564.045000px;}
.y42{bottom:569.085015px;}
.y53{bottom:569.445000px;}
.yf{bottom:574.305000px;}
.ycd{bottom:574.845015px;}
.y65{bottom:576.644985px;}
.ya2{bottom:581.324985px;}
.ye{bottom:589.965000px;}
.y52{bottom:591.045000px;}
.ycc{bottom:596.445000px;}
.ya1{bottom:598.605015px;}
.y41{bottom:598.965000px;}
.y64{bottom:601.484985px;}
.yd{bottom:605.445000px;}
.ycb{bottom:613.724985px;}
.ya0{bottom:615.705000px;}
.y63{bottom:618.765015px;}
.yc{bottom:620.925015px;}
.yca{bottom:631.005015px;}
.y9f{bottom:632.984985px;}
.yb{bottom:636.404985px;}
.y40{bottom:642.345015px;}
.y62{bottom:644.685015px;}
.y9e{bottom:650.265015px;}
.ya{bottom:651.885000px;}
.yc9{bottom:652.785000px;}
.y61{bottom:660.164985px;}
.y9d{bottom:667.545000px;}
.yc8{bottom:670.064985px;}
.y60{bottom:681.765015px;}
.y9c{bottom:684.824985px;}
.yc7{bottom:687.345015px;}
.y3f{bottom:688.064985px;}
.y9b{bottom:702.105015px;}
.yc6{bottom:704.445000px;}
.y3e{bottom:705.345015px;}
.y9{bottom:706.064985px;}
.y8{bottom:717.224985px;}
.y9a{bottom:719.205000px;}
.y3d{bottom:722.445000px;}
.yc5{bottom:726.269985px;}
.y7{bottom:732.750000px;}
.y99{bottom:736.529985px;}
.y3c{bottom:739.769985px;}
.yc4{bottom:743.550015px;}
.y6{bottom:752.730015px;}
.y98{bottom:753.810015px;}
.y3b{bottom:757.050015px;}
.yc3{bottom:760.830000px;}
.y97{bottom:771.090000px;}
.y4{bottom:772.530030px;}
.y3a{bottom:774.329955px;}
.y5{bottom:777.750000px;}
.yc2{bottom:782.609985px;}
.y96{bottom:788.370030px;}
.y39{bottom:791.609985px;}
.yc1{bottom:799.710015px;}
.y95{bottom:805.649970px;}
.y38{bottom:808.710015px;}
.yc0{bottom:816.989955px;}
.y3{bottom:817.170045px;}
.y94{bottom:823.829955px;}
.y37{bottom:825.989955px;}
.ybf{bottom:838.769985px;}
.y93{bottom:841.109985px;}
.y36{bottom:843.269985px;}
.y2{bottom:844.710015px;}
.ybe{bottom:856.050015px;}
.y92{bottom:859.469970px;}
.y35{bottom:860.550015px;}
.ybd{bottom:873.329955px;}
.y91{bottom:876.750000px;}
.y34{bottom:877.829955px;}
.y90{bottom:894.030030px;}
.y33{bottom:895.109985px;}
.y8f{bottom:911.129970px;}
.y32{bottom:912.210015px;}
.y8e{bottom:928.410000px;}
.y31{bottom:929.489955px;}
.y8d{bottom:945.690030px;}
.y30{bottom:946.769985px;}
.y29{bottom:1007.820000px;}
.y2b{bottom:1016.490645px;}
.y2a{bottom:1035.674835px;}
.h21{height:21.600000px;}
.h25{height:22.500000px;}
.ha{height:25.013672px;}
.h6{height:27.014766px;}
.h7{height:30.410156px;}
.h12{height:31.900500px;}
.h13{height:32.771613px;}
.h14{height:32.818773px;}
.h15{height:32.942007px;}
.h3{height:33.518320px;}
.h22{height:36.036000px;}
.h9{height:37.520508px;}
.h1f{height:37.705078px;}
.h1e{height:38.100586px;}
.hf{height:38.642695px;}
.hb{height:39.313477px;}
.h2a{height:41.493516px;}
.h27{height:41.522695px;}
.hd{height:41.726953px;}
.h26{height:42.164648px;}
.h28{height:42.281367px;}
.h16{height:43.506914px;}
.h5{height:47.894646px;}
.h8{height:48.410156px;}
.he{height:50.027344px;}
.hc{height:52.417969px;}
.h1c{height:52.727695px;}
.h29{height:53.573906px;}
.h10{height:54.387630px;}
.h17{height:55.184646px;}
.h1d{height:55.185006px;}
.h11{height:55.265625px;}
.h20{height:58.356000px;}
.h1b{height:60.410156px;}
.h4{height:69.715898px;}
.h18{height:70.474219px;}
.h1a{height:80.604141px;}
.h23{height:86.400000px;}
.h24{height:89.640000px;}
.h19{height:111.699844px;}
.h1{height:1062.750000px;}
.h2{height:1062.899878px;}
.h0{height:1062.900000px;}
.w5{width:50.976000px;}
.w4{width:93.060000px;}
.w7{width:112.500000px;}
.w9{width:119.916000px;}
.w8{width:129.096000px;}
.w6{width:249.014985px;}
.w3{width:722.879978px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1a{left:5.220015px;}
.x23{left:6.660000px;}
.x24{left:8.280000px;}
.x21{left:11.160000px;}
.x20{left:12.960000px;}
.x28{left:14.040000px;}
.x25{left:17.145015px;}
.x17{left:19.260000px;}
.x16{left:25.200000px;}
.x1e{left:26.639970px;}
.x8{left:30.403815px;}
.x18{left:31.860000px;}
.x27{left:33.480000px;}
.x26{left:37.980015px;}
.x1f{left:45.000000px;}
.xb{left:52.601625px;}
.xc{left:54.294765px;}
.xa{left:61.650315px;}
.x1c{left:73.260000px;}
.x9{left:75.384915px;}
.x1{left:84.995989px;}
.x6{left:91.655989px;}
.xd{left:106.235989px;}
.x15{left:108.756000px;}
.x2a{left:111.995989px;}
.x13{left:113.255989px;}
.x2b{left:138.995989px;}
.x4{left:157.349989px;}
.x2{left:192.809963px;}
.x3{left:197.669989px;}
.x19{left:201.809985px;}
.x1b{left:252.795000px;}
.x5{left:301.034989px;}
.x14{left:313.815004px;}
.xf{left:315.974974px;}
.x29{left:357.832500px;}
.x10{left:358.844989px;}
.x7{left:361.365000px;}
.x22{left:381.885000px;}
.x1d{left:501.810015px;}
.xe{left:635.909989px;}
.x11{left:636.989989px;}
.x12{left:639.509989px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v4{vertical-align:-10.880000pt;}
.v7{vertical-align:-7.680000pt;}
.vb{vertical-align:-5.119787pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.880000pt;}
.vc{vertical-align:16.000000pt;}
.v1{vertical-align:18.559893pt;}
.v8{vertical-align:26.880000pt;}
.v6{vertical-align:42.240000pt;}
.v9{vertical-align:58.240000pt;}
.va{vertical-align:72.320000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.379661pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.233886pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.094933pt;}
.ls1d{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000053pt;}
.ls1a{letter-spacing:0.003840pt;}
.ls16{letter-spacing:0.007680pt;}
.ls14{letter-spacing:0.011520pt;}
.ls24{letter-spacing:0.016000pt;}
.ls27{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.050964pt;}
.ls18{letter-spacing:0.094720pt;}
.ls6{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.230933pt;}
.ls1b{letter-spacing:0.230987pt;}
.ls21{letter-spacing:0.272533pt;}
.ls19{letter-spacing:0.298667pt;}
.ls26{letter-spacing:0.319947pt;}
.ls1{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.320053pt;}
.lsa{letter-spacing:0.398184pt;}
.lsb{letter-spacing:1.068806pt;}
.ls12{letter-spacing:1.742080pt;}
.ls10{letter-spacing:1.848800pt;}
.ls11{letter-spacing:2.080053pt;}
.ls17{letter-spacing:4.640000pt;}
.ls25{letter-spacing:14.672640pt;}
.lse{letter-spacing:15.359413pt;}
.lsd{letter-spacing:17.304267pt;}
.lsf{letter-spacing:28.752693pt;}
.ls13{letter-spacing:39.200000pt;}
.ls22{letter-spacing:40.912640pt;}
.ls20{letter-spacing:56.912640pt;}
.ls3{letter-spacing:970.645333pt;}
.ws19{word-spacing:-53.131520pt;}
.ws15{word-spacing:-53.120000pt;}
.ws18{word-spacing:-41.280640pt;}
.ws17{word-spacing:-37.760587pt;}
.ws16{word-spacing:-37.120000pt;}
.ws13{word-spacing:-14.672427pt;}
.ws6{word-spacing:-13.600000pt;}
.ws1f{word-spacing:-13.552533pt;}
.ws1a{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.344000pt;}
.ws25{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1b{word-spacing:-13.232640pt;}
.ws14{word-spacing:-13.185067pt;}
.ws1c{word-spacing:-12.960000pt;}
.ws1e{word-spacing:-12.320000pt;}
.ws1d{word-spacing:-12.192000pt;}
.ws21{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.808000pt;}
.ws20{word-spacing:-11.680000pt;}
.ws8{word-spacing:-11.582320pt;}
.wsa{word-spacing:-11.436073pt;}
.wsd{word-spacing:-10.553764pt;}
.wsb{word-spacing:-10.478533pt;}
.ws1{word-spacing:-8.640000pt;}
.ws2{word-spacing:-8.000000pt;}
.ws22{word-spacing:-0.373120pt;}
.ws23{word-spacing:-0.053120pt;}
.wse{word-spacing:0.000000pt;}
.ws24{word-spacing:0.266880pt;}
.ws11{word-spacing:2.615442pt;}
.ws10{word-spacing:3.286068pt;}
.wsf{word-spacing:4.086623pt;}
.wsc{word-spacing:7.334034pt;}
.ws12{word-spacing:7.851053pt;}
.ws9{word-spacing:549.654846pt;}
._17{margin-left:-994.645333pt;}
._16{margin-left:-12.000000pt;}
._18{margin-left:-2.906880pt;}
._5{margin-left:-1.984000pt;}
._3{margin-left:-0.992000pt;}
._2{width:1.191680pt;}
._f{width:2.312320pt;}
._14{width:3.205653pt;}
._a{width:4.864053pt;}
._4{width:6.047947pt;}
._c{width:7.568000pt;}
._b{width:8.528000pt;}
._7{width:9.456000pt;}
._6{width:10.368000pt;}
._11{width:11.420800pt;}
._10{width:12.376960pt;}
._9{width:14.016000pt;}
._8{width:15.072000pt;}
._15{width:16.095360pt;}
._19{width:17.795200pt;}
._12{width:19.206400pt;}
._13{width:20.095360pt;}
._1e{width:21.407360pt;}
._e{width:22.960000pt;}
._d{width:24.048000pt;}
._1c{width:35.087307pt;}
._1{width:56.008960pt;}
._0{width:56.945280pt;}
._1a{width:77.600000pt;}
._1d{width:107.156800pt;}
._1b{width:108.363307pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fsb{font-size:37.120000pt;}
.fs8{font-size:40.800000pt;}
.fs9{font-size:41.914133pt;}
.fsa{font-size:42.011200pt;}
.fs0{font-size:42.880000pt;}
.fs7{font-size:47.262933pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fsc{font-size:53.333333pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:4.826667pt;}
.y6c{bottom:5.279987pt;}
.y75{bottom:5.280000pt;}
.y77{bottom:5.280027pt;}
.y80{bottom:5.440000pt;}
.y82{bottom:5.760000pt;}
.y6a{bottom:7.866667pt;}
.y7d{bottom:8.000000pt;}
.y2f{bottom:10.247600pt;}
.y51{bottom:16.000000pt;}
.y5f{bottom:16.146667pt;}
.y6d{bottom:18.586667pt;}
.y72{bottom:20.320027pt;}
.y69{bottom:21.626667pt;}
.y7c{bottom:21.760000pt;}
.y2d{bottom:22.122267pt;}
.y2e{bottom:22.228094pt;}
.y2c{bottom:26.227600pt;}
.y71{bottom:34.080027pt;}
.y68{bottom:35.386680pt;}
.y7b{bottom:35.519987pt;}
.y1{bottom:39.872000pt;}
.y70{bottom:47.840000pt;}
.y7a{bottom:49.280000pt;}
.y79{bottom:63.039987pt;}
.y5e{bottom:63.552000pt;}
.ybc{bottom:64.352000pt;}
.y28{bottom:69.152000pt;}
.y50{bottom:79.232000pt;}
.ybb{bottom:79.712000pt;}
.y8c{bottom:81.632000pt;}
.y5d{bottom:82.752000pt;}
.y27{bottom:83.872000pt;}
.y4f{bottom:91.712000pt;}
.yba{bottom:94.912000pt;}
.y8b{bottom:96.992000pt;}
.y4e{bottom:98.432000pt;}
.y26{bottom:112.032000pt;}
.y8a{bottom:112.352000pt;}
.yb9{bottom:114.272000pt;}
.y4d{bottom:119.392000pt;}
.y25{bottom:127.392000pt;}
.yb8{bottom:129.632000pt;}
.y4c{bottom:134.746667pt;}
.y89{bottom:139.386667pt;}
.y24{bottom:142.746667pt;}
.yb7{bottom:144.986667pt;}
.y4b{bottom:150.106667pt;}
.y23{bottom:158.106667pt;}
.y4a{bottom:162.586667pt;}
.yb6{bottom:164.346667pt;}
.y22{bottom:173.466680pt;}
.yb5{bottom:179.706667pt;}
.y88{bottom:180.026667pt;}
.y21{bottom:188.666667pt;}
.yb4{bottom:194.906653pt;}
.y87{bottom:195.386653pt;}
.ye0{bottom:195.546667pt;}
.y20{bottom:204.026667pt;}
.yb3{bottom:210.266667pt;}
.y86{bottom:210.746667pt;}
.ydf{bottom:214.906653pt;}
.y1f{bottom:219.386653pt;}
.y85{bottom:225.946680pt;}
.yde{bottom:230.266667pt;}
.y1e{bottom:234.786667pt;}
.yb2{bottom:237.506667pt;}
.y84{bottom:241.346653pt;}
.ydd{bottom:245.506667pt;}
.y1d{bottom:250.146667pt;}
.y83{bottom:256.706667pt;}
.ydc{bottom:264.866653pt;}
.y1c{bottom:265.506667pt;}
.y78{bottom:277.826667pt;}
.ydb{bottom:280.226667pt;}
.y1b{bottom:280.706667pt;}
.yb1{bottom:291.586667pt;}
.yda{bottom:295.586667pt;}
.y1a{bottom:296.066667pt;}
.y81{bottom:298.466680pt;}
.yb0{bottom:305.346653pt;}
.y19{bottom:311.426680pt;}
.yd9{bottom:314.946680pt;}
.y7f{bottom:318.306667pt;}
.yaf{bottom:319.266667pt;}
.y18{bottom:326.786667pt;}
.yd8{bottom:330.306667pt;}
.yae{bottom:333.026667pt;}
.y5c{bottom:334.466680pt;}
.y7e{bottom:338.306667pt;}
.y17{bottom:342.146653pt;}
.yad{bottom:347.106653pt;}
.yd7{bottom:349.506667pt;}
.y5b{bottom:349.666667pt;}
.y16{bottom:357.346680pt;}
.y6f{bottom:358.146653pt;}
.yac{bottom:362.466680pt;}
.yd6{bottom:364.866653pt;}
.y5a{bottom:365.026653pt;}
.y15{bottom:372.706667pt;}
.y76{bottom:377.346680pt;}
.yab{bottom:377.666667pt;}
.yd5{bottom:380.226680pt;}
.y59{bottom:380.386680pt;}
.yaa{bottom:393.026653pt;}
.y58{bottom:395.746667pt;}
.y74{bottom:396.546667pt;}
.y49{bottom:398.466680pt;}
.yd4{bottom:399.586667pt;}
.y14{bottom:399.906653pt;}
.ya9{bottom:408.386680pt;}
.y57{bottom:411.106653pt;}
.y48{bottom:413.826667pt;}
.yd3{bottom:414.946653pt;}
.y73{bottom:415.746667pt;}
.ya8{bottom:424.706667pt;}
.y56{bottom:426.466680pt;}
.y47{bottom:429.186680pt;}
.yd2{bottom:430.146653pt;}
.y67{bottom:435.586667pt;}
.ya7{bottom:440.093347pt;}
.y55{bottom:441.693320pt;}
.y46{bottom:444.573320pt;}
.yd1{bottom:445.533320pt;}
.y13{bottom:455.293333pt;}
.ya6{bottom:455.453333pt;}
.y45{bottom:459.773320pt;}
.yd0{bottom:464.893347pt;}
.y6b{bottom:468.253333pt;}
.y54{bottom:468.413333pt;}
.y12{bottom:469.213333pt;}
.ya5{bottom:470.653320pt;}
.y44{bottom:475.133347pt;}
.ycf{bottom:480.253333pt;}
.y11{bottom:482.973347pt;}
.ya4{bottom:486.013347pt;}
.y43{bottom:490.493333pt;}
.yce{bottom:495.613320pt;}
.y10{bottom:496.733320pt;}
.y66{bottom:498.813320pt;}
.ya3{bottom:501.373333pt;}
.y42{bottom:505.853347pt;}
.y53{bottom:506.173333pt;}
.yf{bottom:510.493333pt;}
.ycd{bottom:510.973347pt;}
.y65{bottom:512.573320pt;}
.ya2{bottom:516.733320pt;}
.ye{bottom:524.413333pt;}
.y52{bottom:525.373333pt;}
.ycc{bottom:530.173333pt;}
.ya1{bottom:532.093347pt;}
.y41{bottom:532.413333pt;}
.y64{bottom:534.653320pt;}
.yd{bottom:538.173333pt;}
.ycb{bottom:545.533320pt;}
.ya0{bottom:547.293333pt;}
.y63{bottom:550.013347pt;}
.yc{bottom:551.933347pt;}
.yca{bottom:560.893347pt;}
.y9f{bottom:562.653320pt;}
.yb{bottom:565.693320pt;}
.y40{bottom:570.973347pt;}
.y62{bottom:573.053347pt;}
.y9e{bottom:578.013347pt;}
.ya{bottom:579.453333pt;}
.yc9{bottom:580.253333pt;}
.y61{bottom:586.813320pt;}
.y9d{bottom:593.373333pt;}
.yc8{bottom:595.613320pt;}
.y60{bottom:606.013347pt;}
.y9c{bottom:608.733320pt;}
.yc7{bottom:610.973347pt;}
.y3f{bottom:611.613320pt;}
.y9b{bottom:624.093347pt;}
.yc6{bottom:626.173333pt;}
.y3e{bottom:626.973347pt;}
.y9{bottom:627.613320pt;}
.y8{bottom:637.533320pt;}
.y9a{bottom:639.293333pt;}
.y3d{bottom:642.173333pt;}
.yc5{bottom:645.573320pt;}
.y7{bottom:651.333333pt;}
.y99{bottom:654.693320pt;}
.y3c{bottom:657.573320pt;}
.yc4{bottom:660.933347pt;}
.y6{bottom:669.093347pt;}
.y98{bottom:670.053347pt;}
.y3b{bottom:672.933347pt;}
.yc3{bottom:676.293333pt;}
.y97{bottom:685.413333pt;}
.y4{bottom:686.693360pt;}
.y3a{bottom:688.293293pt;}
.y5{bottom:691.333333pt;}
.yc2{bottom:695.653320pt;}
.y96{bottom:700.773360pt;}
.y39{bottom:703.653320pt;}
.yc1{bottom:710.853347pt;}
.y95{bottom:716.133307pt;}
.y38{bottom:718.853347pt;}
.yc0{bottom:726.213293pt;}
.y3{bottom:726.373373pt;}
.y94{bottom:732.293293pt;}
.y37{bottom:734.213293pt;}
.ybf{bottom:745.573320pt;}
.y93{bottom:747.653320pt;}
.y36{bottom:749.573320pt;}
.y2{bottom:750.853347pt;}
.ybe{bottom:760.933347pt;}
.y92{bottom:763.973307pt;}
.y35{bottom:764.933347pt;}
.ybd{bottom:776.293293pt;}
.y91{bottom:779.333333pt;}
.y34{bottom:780.293293pt;}
.y90{bottom:794.693360pt;}
.y33{bottom:795.653320pt;}
.y8f{bottom:809.893307pt;}
.y32{bottom:810.853347pt;}
.y8e{bottom:825.253333pt;}
.y31{bottom:826.213293pt;}
.y8d{bottom:840.613360pt;}
.y30{bottom:841.573320pt;}
.y29{bottom:895.840000pt;}
.y2b{bottom:903.547240pt;}
.y2a{bottom:920.599853pt;}
.h21{height:19.200000pt;}
.h25{height:20.000000pt;}
.ha{height:22.234375pt;}
.h6{height:24.013125pt;}
.h7{height:27.031250pt;}
.h12{height:28.356000pt;}
.h13{height:29.130323pt;}
.h14{height:29.172243pt;}
.h15{height:29.281784pt;}
.h3{height:29.794062pt;}
.h22{height:32.032000pt;}
.h9{height:33.351562pt;}
.h1f{height:33.515625pt;}
.h1e{height:33.867188pt;}
.hf{height:34.349063pt;}
.hb{height:34.945312pt;}
.h2a{height:36.883125pt;}
.h27{height:36.909063pt;}
.hd{height:37.090625pt;}
.h26{height:37.479688pt;}
.h28{height:37.583438pt;}
.h16{height:38.672812pt;}
.h5{height:42.573018pt;}
.h8{height:43.031250pt;}
.he{height:44.468750pt;}
.hc{height:46.593750pt;}
.h1c{height:46.869062pt;}
.h29{height:47.621250pt;}
.h10{height:48.344560pt;}
.h17{height:49.053018pt;}
.h1d{height:49.053338pt;}
.h11{height:49.125000pt;}
.h20{height:51.872000pt;}
.h1b{height:53.697917pt;}
.h4{height:61.969687pt;}
.h18{height:62.643750pt;}
.h1a{height:71.648125pt;}
.h23{height:76.800000pt;}
.h24{height:79.680000pt;}
.h19{height:99.288750pt;}
.h1{height:944.666667pt;}
.h2{height:944.799892pt;}
.h0{height:944.800000pt;}
.w5{width:45.312000pt;}
.w4{width:82.720000pt;}
.w7{width:100.000000pt;}
.w9{width:106.592000pt;}
.w8{width:114.752000pt;}
.w6{width:221.346653pt;}
.w3{width:642.559981pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1a{left:4.640013pt;}
.x23{left:5.920000pt;}
.x24{left:7.360000pt;}
.x21{left:9.920000pt;}
.x20{left:11.520000pt;}
.x28{left:12.480000pt;}
.x25{left:15.240013pt;}
.x17{left:17.120000pt;}
.x16{left:22.400000pt;}
.x1e{left:23.679973pt;}
.x8{left:27.025613pt;}
.x18{left:28.320000pt;}
.x27{left:29.760000pt;}
.x26{left:33.760013pt;}
.x1f{left:40.000000pt;}
.xb{left:46.757000pt;}
.xc{left:48.262013pt;}
.xa{left:54.800280pt;}
.x1c{left:65.120000pt;}
.x9{left:67.008813pt;}
.x1{left:75.551990pt;}
.x6{left:81.471990pt;}
.xd{left:94.431990pt;}
.x15{left:96.672000pt;}
.x2a{left:99.551990pt;}
.x13{left:100.671990pt;}
.x2b{left:123.551990pt;}
.x4{left:139.866657pt;}
.x2{left:171.386634pt;}
.x3{left:175.706657pt;}
.x19{left:179.386653pt;}
.x1b{left:224.706667pt;}
.x5{left:267.586657pt;}
.x14{left:278.946670pt;}
.xf{left:280.866644pt;}
.x29{left:318.073333pt;}
.x10{left:318.973324pt;}
.x7{left:321.213333pt;}
.x22{left:339.453333pt;}
.x1d{left:446.053347pt;}
.xe{left:565.253324pt;}
.x11{left:566.213324pt;}
.x12{left:568.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; }
  