
    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_4effd8b1ecc6a9f678437381.woff2')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_ebb11804ba833acc938f12cb.woff2')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_abefd45fa412dc654a6dbe19.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.913574;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_c3b1c22f410e2de898a9a50a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_9e1f497365c96fa67bbb1741.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_470f6c1af9877f7a019d93d1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_65debbedf4d8e7ef8323f518.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ac1f97e4f2bb771b14249679.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_497e4ba3e5a4beb21a29d727.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_231b0d88ac2767ab056e2bb0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;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_d9a5d322892df2bee04277e2.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.620000px;}
.ls19{letter-spacing:-0.780000px;}
.ls3d{letter-spacing:-0.336000px;}
.ls34{letter-spacing:-0.240000px;}
.ls33{letter-spacing:-0.180000px;}
.ls1b{letter-spacing:-0.120000px;}
.ls1c{letter-spacing:-0.060000px;}
.ls1a{letter-spacing:-0.045000px;}
.ls18{letter-spacing:0.000000px;}
.ls5a{letter-spacing:0.048000px;}
.ls6{letter-spacing:0.060000px;}
.ls1e{letter-spacing:0.120000px;}
.ls32{letter-spacing:0.180000px;}
.ls36{letter-spacing:0.192000px;}
.ls35{letter-spacing:0.240000px;}
.ls4e{letter-spacing:0.288000px;}
.ls2f{letter-spacing:0.300000px;}
.ls5c{letter-spacing:0.336000px;}
.ls24{letter-spacing:0.360000px;}
.ls60{letter-spacing:0.384000px;}
.ls10{letter-spacing:0.420000px;}
.ls50{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.480000px;}
.ls52{letter-spacing:0.528000px;}
.ls25{letter-spacing:0.540000px;}
.ls4f{letter-spacing:0.576000px;}
.lsd{letter-spacing:0.600000px;}
.ls39{letter-spacing:0.660000px;}
.ls1{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.780000px;}
.ls54{letter-spacing:0.816000px;}
.ls2e{letter-spacing:0.840000px;}
.lsc{letter-spacing:0.900000px;}
.ls57{letter-spacing:0.912000px;}
.ls14{letter-spacing:0.960000px;}
.ls26{letter-spacing:1.020000px;}
.ls5e{letter-spacing:1.056000px;}
.lsa{letter-spacing:1.080000px;}
.ls38{letter-spacing:1.140000px;}
.ls59{letter-spacing:1.152000px;}
.ls1f{letter-spacing:1.200000px;}
.ls3{letter-spacing:1.260000px;}
.ls2{letter-spacing:1.320000px;}
.ls46{letter-spacing:1.380000px;}
.ls3f{letter-spacing:1.440000px;}
.ls5b{letter-spacing:1.488000px;}
.ls5f{letter-spacing:1.536000px;}
.ls16{letter-spacing:1.560000px;}
.ls55{letter-spacing:1.584000px;}
.ls49{letter-spacing:1.620000px;}
.ls3e{letter-spacing:1.680000px;}
.ls29{letter-spacing:1.740000px;}
.ls12{letter-spacing:1.800000px;}
.ls4{letter-spacing:1.860000px;}
.ls7{letter-spacing:1.920000px;}
.ls31{letter-spacing:1.980000px;}
.ls53{letter-spacing:2.016000px;}
.lsf{letter-spacing:2.040000px;}
.ls56{letter-spacing:2.064000px;}
.ls13{letter-spacing:2.100000px;}
.ls3a{letter-spacing:2.160000px;}
.ls23{letter-spacing:2.220000px;}
.ls58{letter-spacing:2.256000px;}
.ls2d{letter-spacing:2.280000px;}
.lse{letter-spacing:2.340000px;}
.ls22{letter-spacing:2.400000px;}
.ls30{letter-spacing:2.520000px;}
.ls17{letter-spacing:2.580000px;}
.ls5{letter-spacing:2.640000px;}
.ls27{letter-spacing:2.700000px;}
.ls48{letter-spacing:2.760000px;}
.ls3c{letter-spacing:2.820000px;}
.ls11{letter-spacing:2.940000px;}
.ls1d{letter-spacing:3.000000px;}
.ls47{letter-spacing:3.060000px;}
.ls0{letter-spacing:3.120000px;}
.ls42{letter-spacing:3.180000px;}
.ls3b{letter-spacing:3.240000px;}
.lsb{letter-spacing:3.300000px;}
.ls37{letter-spacing:3.360000px;}
.ls20{letter-spacing:3.420000px;}
.ls2c{letter-spacing:3.540000px;}
.ls4b{letter-spacing:3.780000px;}
.ls21{letter-spacing:3.840000px;}
.ls4a{letter-spacing:3.960000px;}
.ls28{letter-spacing:4.020000px;}
.ls45{letter-spacing:4.080000px;}
.ls2b{letter-spacing:4.140000px;}
.ls43{letter-spacing:4.260000px;}
.ls44{letter-spacing:4.320000px;}
.ls5d{letter-spacing:4.800000px;}
.ls41{letter-spacing:4.920000px;}
.ls4c{letter-spacing:5.160000px;}
.ls9{letter-spacing:5.400000px;}
.ls2a{letter-spacing:5.460000px;}
.ls40{letter-spacing:5.760000px;}
.ls51{letter-spacing:6.300000px;}
.ls4d{letter-spacing:7.620000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-35.194800px;}
.ws3b{word-spacing:-20.460000px;}
.ws36{word-spacing:-19.260000px;}
.ws11{word-spacing:-18.300000px;}
.ws29{word-spacing:-17.400000px;}
.ws28{word-spacing:-17.040000px;}
.ws1{word-spacing:-16.680000px;}
.ws3c{word-spacing:-16.440000px;}
.ws39{word-spacing:-15.720000px;}
.ws3{word-spacing:-15.480000px;}
.ws1e{word-spacing:-15.240000px;}
.ws3a{word-spacing:-15.120000px;}
.ws38{word-spacing:-15.000000px;}
.wsf{word-spacing:-14.940000px;}
.ws37{word-spacing:-14.820000px;}
.ws55{word-spacing:-14.064000px;}
.ws54{word-spacing:-13.584000px;}
.ws5a{word-spacing:-13.536000px;}
.ws10{word-spacing:-13.500000px;}
.ws5b{word-spacing:-13.440000px;}
.ws4{word-spacing:-13.344000px;}
.ws57{word-spacing:-12.720000px;}
.ws2{word-spacing:-12.465000px;}
.ws59{word-spacing:-12.336000px;}
.ws58{word-spacing:-12.048000px;}
.ws1d{word-spacing:-12.000000px;}
.ws56{word-spacing:-11.664000px;}
.ws12{word-spacing:-3.840000px;}
.ws20{word-spacing:-3.360000px;}
.ws42{word-spacing:-3.300000px;}
.ws6{word-spacing:-2.886000px;}
.ws44{word-spacing:-2.760000px;}
.ws4e{word-spacing:-2.700000px;}
.ws35{word-spacing:-2.640000px;}
.ws1a{word-spacing:-2.520000px;}
.ws31{word-spacing:-2.400000px;}
.ws13{word-spacing:-2.220000px;}
.ws2a{word-spacing:-2.100000px;}
.ws66{word-spacing:-1.440000px;}
.ws62{word-spacing:-1.152000px;}
.ws43{word-spacing:-0.960000px;}
.ws65{word-spacing:-0.816000px;}
.wsa{word-spacing:-0.480000px;}
.wsc{word-spacing:-0.420000px;}
.ws16{word-spacing:-0.360000px;}
.ws27{word-spacing:-0.336000px;}
.ws45{word-spacing:-0.300000px;}
.ws22{word-spacing:-0.240000px;}
.ws2f{word-spacing:-0.180000px;}
.ws2c{word-spacing:-0.120000px;}
.ws5{word-spacing:0.000000px;}
.ws7{word-spacing:0.045000px;}
.ws1f{word-spacing:0.060000px;}
.ws2b{word-spacing:0.120000px;}
.ws5f{word-spacing:0.144000px;}
.ws21{word-spacing:0.180000px;}
.wsd{word-spacing:0.240000px;}
.ws32{word-spacing:0.420000px;}
.ws3d{word-spacing:0.900000px;}
.ws64{word-spacing:1.248000px;}
.ws1b{word-spacing:1.320000px;}
.ws2d{word-spacing:1.380000px;}
.ws61{word-spacing:1.392000px;}
.ws4c{word-spacing:1.680000px;}
.ws26{word-spacing:1.740000px;}
.ws40{word-spacing:1.800000px;}
.ws4b{word-spacing:1.860000px;}
.ws63{word-spacing:2.016000px;}
.ws46{word-spacing:2.040000px;}
.ws23{word-spacing:2.100000px;}
.ws34{word-spacing:2.160000px;}
.wsb{word-spacing:2.220000px;}
.ws17{word-spacing:2.400000px;}
.ws2e{word-spacing:2.520000px;}
.ws67{word-spacing:2.544000px;}
.ws30{word-spacing:2.580000px;}
.ws5d{word-spacing:2.928000px;}
.ws41{word-spacing:2.940000px;}
.ws3f{word-spacing:3.000000px;}
.ws5e{word-spacing:3.120000px;}
.ws1c{word-spacing:3.180000px;}
.wse{word-spacing:3.420000px;}
.ws60{word-spacing:3.456000px;}
.ws53{word-spacing:3.504000px;}
.ws47{word-spacing:3.540000px;}
.ws5c{word-spacing:3.552000px;}
.ws50{word-spacing:3.600000px;}
.ws52{word-spacing:3.696000px;}
.ws48{word-spacing:3.720000px;}
.ws4d{word-spacing:3.780000px;}
.ws51{word-spacing:3.792000px;}
.ws14{word-spacing:3.840000px;}
.ws24{word-spacing:3.936000px;}
.ws33{word-spacing:3.960000px;}
.ws4f{word-spacing:3.984000px;}
.ws3e{word-spacing:4.140000px;}
.ws18{word-spacing:4.500000px;}
.ws19{word-spacing:4.560000px;}
.ws25{word-spacing:4.656000px;}
.ws15{word-spacing:4.860000px;}
.ws9{word-spacing:4.920000px;}
.ws8{word-spacing:4.980000px;}
.ws4a{word-spacing:5.460000px;}
.ws49{word-spacing:5.520000px;}
._a{margin-left:-2898.144000px;}
._b{margin-left:-2874.288000px;}
._4{margin-left:-7.590600px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.465000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.134000px;}
._6{width:1.050600px;}
._7{width:3.705000px;}
._5{width:5.340000px;}
._9{width:7.200000px;}
._8{width:8.460000px;}
._18{width:48.528000px;}
._e{width:51.072000px;}
._11{width:72.102000px;}
._16{width:107.136000px;}
._d{width:123.888000px;}
._14{width:125.760000px;}
._10{width:127.056000px;}
._17{width:151.056000px;}
._12{width:176.976000px;}
._c{width:239.088000px;}
._f{width:256.848000px;}
._15{width:300.288000px;}
._13{width:515.664000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs5{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs3{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y30{bottom:47.777250px;}
.y95{bottom:83.342250px;}
.y91{bottom:83.470650px;}
.y9d{bottom:83.673000px;}
.yc5{bottom:83.920350px;}
.y5e{bottom:84.070350px;}
.ye9{bottom:86.121900px;}
.y16{bottom:88.026750px;}
.y8e{bottom:91.253850px;}
.yb9{bottom:93.080100px;}
.y94{bottom:99.086250px;}
.y9c{bottom:99.417000px;}
.ye8{bottom:101.121900px;}
.yc4{bottom:101.920350px;}
.y5d{bottom:102.070350px;}
.y15{bottom:103.023000px;}
.y8d{bottom:109.253850px;}
.yb8{bottom:109.580100px;}
.y93{bottom:114.830250px;}
.ye7{bottom:116.121900px;}
.yc3{bottom:119.920350px;}
.y5c{bottom:120.070350px;}
.yb7{bottom:126.080100px;}
.y8c{bottom:127.253850px;}
.ye6{bottom:131.121900px;}
.yc2{bottom:137.920350px;}
.y5b{bottom:138.070350px;}
.yb6{bottom:142.580100px;}
.y8b{bottom:145.253850px;}
.ye5{bottom:146.121900px;}
.yc1{bottom:155.920350px;}
.y5a{bottom:156.070350px;}
.yb5{bottom:158.828100px;}
.ye4{bottom:161.121900px;}
.y8a{bottom:163.253850px;}
.y2b{bottom:170.052150px;}
.yc0{bottom:173.920350px;}
.y59{bottom:174.070350px;}
.yb4{bottom:175.328100px;}
.ye3{bottom:176.121900px;}
.y89{bottom:181.253850px;}
.y2a{bottom:188.052150px;}
.ye2{bottom:191.121900px;}
.yb3{bottom:191.576100px;}
.ybf{bottom:191.920350px;}
.y88{bottom:199.253850px;}
.y29{bottom:206.052150px;}
.ye1{bottom:206.121900px;}
.yb2{bottom:208.076100px;}
.y58{bottom:209.665350px;}
.ybe{bottom:209.920350px;}
.y87{bottom:217.253850px;}
.ye0{bottom:221.121900px;}
.y28{bottom:224.052150px;}
.yb1{bottom:224.576100px;}
.ybd{bottom:227.920350px;}
.y86{bottom:235.253850px;}
.ydf{bottom:236.121900px;}
.yb0{bottom:240.824100px;}
.y27{bottom:242.052150px;}
.y57{bottom:245.920350px;}
.yde{bottom:251.121900px;}
.y85{bottom:253.253850px;}
.yaf{bottom:257.324100px;}
.y26{bottom:260.052150px;}
.y56{bottom:263.920350px;}
.ydd{bottom:266.121900px;}
.y84{bottom:271.253850px;}
.yae{bottom:273.824100px;}
.y25{bottom:278.052150px;}
.y55{bottom:281.920350px;}
.y83{bottom:289.253850px;}
.yad{bottom:290.324100px;}
.y24{bottom:296.052150px;}
.ydc{bottom:299.230350px;}
.y54{bottom:299.920350px;}
.yac{bottom:306.572100px;}
.y82{bottom:307.253850px;}
.y23{bottom:314.052150px;}
.y53{bottom:317.920350px;}
.yab{bottom:323.072100px;}
.y81{bottom:325.253850px;}
.y22{bottom:332.052150px;}
.y52{bottom:335.920350px;}
.yaa{bottom:339.572100px;}
.y80{bottom:343.253850px;}
.y21{bottom:350.052150px;}
.ydb{bottom:353.770350px;}
.y51{bottom:353.920350px;}
.ya9{bottom:356.072100px;}
.y7f{bottom:361.253850px;}
.y20{bottom:368.052150px;}
.yda{bottom:371.365350px;}
.y50{bottom:371.920350px;}
.y7e{bottom:379.253850px;}
.ya8{bottom:385.076100px;}
.y1f{bottom:386.052150px;}
.y4f{bottom:389.920350px;}
.y7d{bottom:397.253850px;}
.ya7{bottom:401.576100px;}
.y1e{bottom:404.052150px;}
.yd9{bottom:407.365350px;}
.y4e{bottom:407.920350px;}
.y7c{bottom:415.253850px;}
.ya6{bottom:418.076100px;}
.y1d{bottom:422.052150px;}
.y4d{bottom:425.920350px;}
.y7b{bottom:433.253850px;}
.y1c{bottom:440.052150px;}
.ybc{bottom:443.515350px;}
.yd8{bottom:443.770350px;}
.y4c{bottom:443.920350px;}
.ya5{bottom:450.460350px;}
.y7a{bottom:451.253850px;}
.y1b{bottom:458.052150px;}
.yd7{bottom:461.770350px;}
.y4b{bottom:461.920350px;}
.y79{bottom:469.253850px;}
.y1a{bottom:476.052150px;}
.yd6{bottom:479.365350px;}
.ybb{bottom:479.770350px;}
.y78{bottom:487.253850px;}
.y19{bottom:494.052150px;}
.y4a{bottom:497.515350px;}
.ya1{bottom:497.770350px;}
.y77{bottom:505.253850px;}
.y18{bottom:512.052150px;}
.ya0{bottom:515.770350px;}
.y76{bottom:523.253850px;}
.y2d{bottom:530.052150px;}
.yd5{bottom:533.380350px;}
.y49{bottom:533.770350px;}
.y75{bottom:541.253850px;}
.y17{bottom:547.647150px;}
.y2c{bottom:548.052150px;}
.ya4{bottom:551.365350px;}
.y48{bottom:551.770350px;}
.y74{bottom:559.253850px;}
.y47{bottom:569.770350px;}
.yd4{bottom:569.785350px;}
.ya3{bottom:587.230350px;}
.y46{bottom:587.770350px;}
.yd3{bottom:587.785350px;}
.y73{bottom:594.094350px;}
.yd2{bottom:605.380350px;}
.y45{bottom:605.770350px;}
.y72{bottom:609.700350px;}
.y107{bottom:620.263500px;}
.y44{bottom:623.770350px;}
.y71{bottom:624.070350px;}
.y14{bottom:624.114000px;}
.y106{bottom:635.263500px;}
.y70{bottom:641.665350px;}
.y43{bottom:641.770350px;}
.yd1{bottom:641.785350px;}
.y105{bottom:650.263500px;}
.y13{bottom:651.459000px;}
.y42{bottom:659.770350px;}
.yd0{bottom:659.785350px;}
.y104{bottom:665.263500px;}
.y12{bottom:669.459000px;}
.y6f{bottom:677.515350px;}
.y9f{bottom:677.770350px;}
.ycf{bottom:677.785350px;}
.y103{bottom:680.263500px;}
.y11{bottom:687.459000px;}
.y102{bottom:695.263500px;}
.y41{bottom:695.365350px;}
.y6e{bottom:695.515350px;}
.y9b{bottom:695.770350px;}
.yce{bottom:695.785350px;}
.y10{bottom:705.459000px;}
.y101{bottom:710.263500px;}
.y6d{bottom:713.515350px;}
.y9a{bottom:713.770350px;}
.ycd{bottom:713.785350px;}
.yf{bottom:723.459000px;}
.y100{bottom:725.263500px;}
.y40{bottom:731.230350px;}
.y99{bottom:731.770350px;}
.ycc{bottom:731.785350px;}
.yff{bottom:740.263500px;}
.ye{bottom:741.459000px;}
.y6c{bottom:749.380350px;}
.y98{bottom:749.770350px;}
.ycb{bottom:749.785350px;}
.yfe{bottom:755.263500px;}
.yd{bottom:759.459000px;}
.y90{bottom:760.066650px;}
.y97{bottom:767.770350px;}
.yca{bottom:767.785350px;}
.yfd{bottom:770.263500px;}
.y6b{bottom:785.245350px;}
.yfc{bottom:785.263500px;}
.y3f{bottom:785.770350px;}
.yc9{bottom:785.785350px;}
.yc{bottom:792.590100px;}
.yfb{bottom:800.263500px;}
.y3e{bottom:803.770350px;}
.yc8{bottom:803.785350px;}
.yfa{bottom:815.263500px;}
.yb{bottom:817.918050px;}
.y3d{bottom:821.770350px;}
.yc7{bottom:821.785350px;}
.yf9{bottom:830.263500px;}
.yc6{bottom:839.380350px;}
.y3c{bottom:839.770350px;}
.y6a{bottom:839.785350px;}
.yf8{bottom:845.263500px;}
.ya{bottom:849.633600px;}
.y3b{bottom:857.770350px;}
.y69{bottom:857.785350px;}
.yf7{bottom:860.263500px;}
.y9{bottom:863.133600px;}
.yf6{bottom:875.263500px;}
.y3a{bottom:875.770350px;}
.y68{bottom:875.785350px;}
.y8{bottom:876.633600px;}
.y7{bottom:890.133600px;}
.yf5{bottom:890.263500px;}
.y39{bottom:893.770350px;}
.y67{bottom:893.785350px;}
.yf4{bottom:905.263500px;}
.y38{bottom:911.770350px;}
.y66{bottom:911.785350px;}
.yf3{bottom:920.263500px;}
.y6{bottom:924.280950px;}
.y37{bottom:929.770350px;}
.y65{bottom:929.785350px;}
.yf2{bottom:935.263500px;}
.y36{bottom:947.770350px;}
.y64{bottom:947.785350px;}
.yf1{bottom:950.263500px;}
.yf0{bottom:965.263500px;}
.y35{bottom:965.770350px;}
.y63{bottom:965.785350px;}
.y5{bottom:970.465200px;}
.yef{bottom:980.263500px;}
.y34{bottom:983.770350px;}
.y62{bottom:983.785350px;}
.yee{bottom:995.263500px;}
.y33{bottom:1001.770350px;}
.y61{bottom:1001.785350px;}
.y4{bottom:1006.926000px;}
.yed{bottom:1010.263500px;}
.y32{bottom:1019.770350px;}
.y60{bottom:1019.785350px;}
.yec{bottom:1025.263500px;}
.ya2{bottom:1037.365350px;}
.y31{bottom:1037.770350px;}
.y5f{bottom:1037.785350px;}
.yeb{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y3{bottom:1071.618450px;}
.yea{bottom:1132.413900px;}
.y92{bottom:1132.414650px;}
.y8f{bottom:1132.418700px;}
.y108{bottom:1132.423500px;}
.y9e{bottom:1132.425000px;}
.y96{bottom:1132.430250px;}
.yba{bottom:1132.436100px;}
.y2f{bottom:1136.089500px;}
.y2e{bottom:1150.492500px;}
.h8{height:28.393066px;}
.h2{height:30.577148px;}
.hc{height:32.783203px;}
.h7{height:32.805176px;}
.h13{height:33.328125px;}
.h12{height:33.351562px;}
.h4{height:34.945312px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.h11{height:37.520508px;}
.he{height:41.660156px;}
.hd{height:41.689453px;}
.hb{height:43.681641px;}
.ha{height:43.710938px;}
.h9{height:43.740234px;}
.h6{height:45.865723px;}
.h3{height:56.786133px;}
.h5{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x1f{left:78.661350px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x2d{left:102.047250px;}
.x5{left:104.173200px;}
.x3{left:106.724400px;}
.xc{left:110.555400px;}
.x4{left:125.436450px;}
.x7{left:131.816400px;}
.xd{left:144.725400px;}
.x29{left:167.977350px;}
.x6{left:212.876400px;}
.x2a{left:253.021350px;}
.x27{left:261.505350px;}
.x20{left:291.085350px;}
.x28{left:406.069350px;}
.x21{left:414.925350px;}
.xa{left:455.041500px;}
.xe{left:457.085400px;}
.x17{left:471.547650px;}
.x1c{left:478.345350px;}
.x8{left:480.476400px;}
.x2e{left:482.603250px;}
.xf{left:491.105400px;}
.x12{left:498.575400px;}
.x13{left:499.940400px;}
.x2c{left:503.858400px;}
.x15{left:508.280400px;}
.x14{left:511.190400px;}
.x1d{left:512.365350px;}
.x18{left:577.725150px;}
.x1e{left:579.406200px;}
.x11{left:583.475400px;}
.x10{left:591.665400px;}
.x16{left:593.180400px;}
.x2b{left:596.081400px;}
.x25{left:601.657350px;}
.x22{left:606.661350px;}
.x26{left:610.165350px;}
.x23{left:613.189350px;}
.x1a{left:663.492300px;}
.x24{left:680.329350px;}
.x2{left:693.365400px;}
.x19{left:735.065400px;}
.x1b{left:756.327300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.440000pt;}
.ls19{letter-spacing:-0.693333pt;}
.ls3d{letter-spacing:-0.298667pt;}
.ls34{letter-spacing:-0.213333pt;}
.ls33{letter-spacing:-0.160000pt;}
.ls1b{letter-spacing:-0.106667pt;}
.ls1c{letter-spacing:-0.053333pt;}
.ls1a{letter-spacing:-0.040000pt;}
.ls18{letter-spacing:0.000000pt;}
.ls5a{letter-spacing:0.042667pt;}
.ls6{letter-spacing:0.053333pt;}
.ls1e{letter-spacing:0.106667pt;}
.ls32{letter-spacing:0.160000pt;}
.ls36{letter-spacing:0.170667pt;}
.ls35{letter-spacing:0.213333pt;}
.ls4e{letter-spacing:0.256000pt;}
.ls2f{letter-spacing:0.266667pt;}
.ls5c{letter-spacing:0.298667pt;}
.ls24{letter-spacing:0.320000pt;}
.ls60{letter-spacing:0.341333pt;}
.ls10{letter-spacing:0.373333pt;}
.ls50{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.426667pt;}
.ls52{letter-spacing:0.469333pt;}
.ls25{letter-spacing:0.480000pt;}
.ls4f{letter-spacing:0.512000pt;}
.lsd{letter-spacing:0.533333pt;}
.ls39{letter-spacing:0.586667pt;}
.ls1{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.693333pt;}
.ls54{letter-spacing:0.725333pt;}
.ls2e{letter-spacing:0.746667pt;}
.lsc{letter-spacing:0.800000pt;}
.ls57{letter-spacing:0.810667pt;}
.ls14{letter-spacing:0.853333pt;}
.ls26{letter-spacing:0.906667pt;}
.ls5e{letter-spacing:0.938667pt;}
.lsa{letter-spacing:0.960000pt;}
.ls38{letter-spacing:1.013333pt;}
.ls59{letter-spacing:1.024000pt;}
.ls1f{letter-spacing:1.066667pt;}
.ls3{letter-spacing:1.120000pt;}
.ls2{letter-spacing:1.173333pt;}
.ls46{letter-spacing:1.226667pt;}
.ls3f{letter-spacing:1.280000pt;}
.ls5b{letter-spacing:1.322667pt;}
.ls5f{letter-spacing:1.365333pt;}
.ls16{letter-spacing:1.386667pt;}
.ls55{letter-spacing:1.408000pt;}
.ls49{letter-spacing:1.440000pt;}
.ls3e{letter-spacing:1.493333pt;}
.ls29{letter-spacing:1.546667pt;}
.ls12{letter-spacing:1.600000pt;}
.ls4{letter-spacing:1.653333pt;}
.ls7{letter-spacing:1.706667pt;}
.ls31{letter-spacing:1.760000pt;}
.ls53{letter-spacing:1.792000pt;}
.lsf{letter-spacing:1.813333pt;}
.ls56{letter-spacing:1.834667pt;}
.ls13{letter-spacing:1.866667pt;}
.ls3a{letter-spacing:1.920000pt;}
.ls23{letter-spacing:1.973333pt;}
.ls58{letter-spacing:2.005333pt;}
.ls2d{letter-spacing:2.026667pt;}
.lse{letter-spacing:2.080000pt;}
.ls22{letter-spacing:2.133333pt;}
.ls30{letter-spacing:2.240000pt;}
.ls17{letter-spacing:2.293333pt;}
.ls5{letter-spacing:2.346667pt;}
.ls27{letter-spacing:2.400000pt;}
.ls48{letter-spacing:2.453333pt;}
.ls3c{letter-spacing:2.506667pt;}
.ls11{letter-spacing:2.613333pt;}
.ls1d{letter-spacing:2.666667pt;}
.ls47{letter-spacing:2.720000pt;}
.ls0{letter-spacing:2.773333pt;}
.ls42{letter-spacing:2.826667pt;}
.ls3b{letter-spacing:2.880000pt;}
.lsb{letter-spacing:2.933333pt;}
.ls37{letter-spacing:2.986667pt;}
.ls20{letter-spacing:3.040000pt;}
.ls2c{letter-spacing:3.146667pt;}
.ls4b{letter-spacing:3.360000pt;}
.ls21{letter-spacing:3.413333pt;}
.ls4a{letter-spacing:3.520000pt;}
.ls28{letter-spacing:3.573333pt;}
.ls45{letter-spacing:3.626667pt;}
.ls2b{letter-spacing:3.680000pt;}
.ls43{letter-spacing:3.786667pt;}
.ls44{letter-spacing:3.840000pt;}
.ls5d{letter-spacing:4.266667pt;}
.ls41{letter-spacing:4.373333pt;}
.ls4c{letter-spacing:4.586667pt;}
.ls9{letter-spacing:4.800000pt;}
.ls2a{letter-spacing:4.853333pt;}
.ls40{letter-spacing:5.120000pt;}
.ls51{letter-spacing:5.600000pt;}
.ls4d{letter-spacing:6.773333pt;}
.ws0{word-spacing:-31.284267pt;}
.ws3b{word-spacing:-18.186667pt;}
.ws36{word-spacing:-17.120000pt;}
.ws11{word-spacing:-16.266667pt;}
.ws29{word-spacing:-15.466667pt;}
.ws28{word-spacing:-15.146667pt;}
.ws1{word-spacing:-14.826667pt;}
.ws3c{word-spacing:-14.613333pt;}
.ws39{word-spacing:-13.973333pt;}
.ws3{word-spacing:-13.760000pt;}
.ws1e{word-spacing:-13.546667pt;}
.ws3a{word-spacing:-13.440000pt;}
.ws38{word-spacing:-13.333333pt;}
.wsf{word-spacing:-13.280000pt;}
.ws37{word-spacing:-13.173333pt;}
.ws55{word-spacing:-12.501333pt;}
.ws54{word-spacing:-12.074667pt;}
.ws5a{word-spacing:-12.032000pt;}
.ws10{word-spacing:-12.000000pt;}
.ws5b{word-spacing:-11.946667pt;}
.ws4{word-spacing:-11.861333pt;}
.ws57{word-spacing:-11.306667pt;}
.ws2{word-spacing:-11.080000pt;}
.ws59{word-spacing:-10.965333pt;}
.ws58{word-spacing:-10.709333pt;}
.ws1d{word-spacing:-10.666667pt;}
.ws56{word-spacing:-10.368000pt;}
.ws12{word-spacing:-3.413333pt;}
.ws20{word-spacing:-2.986667pt;}
.ws42{word-spacing:-2.933333pt;}
.ws6{word-spacing:-2.565333pt;}
.ws44{word-spacing:-2.453333pt;}
.ws4e{word-spacing:-2.400000pt;}
.ws35{word-spacing:-2.346667pt;}
.ws1a{word-spacing:-2.240000pt;}
.ws31{word-spacing:-2.133333pt;}
.ws13{word-spacing:-1.973333pt;}
.ws2a{word-spacing:-1.866667pt;}
.ws66{word-spacing:-1.280000pt;}
.ws62{word-spacing:-1.024000pt;}
.ws43{word-spacing:-0.853333pt;}
.ws65{word-spacing:-0.725333pt;}
.wsa{word-spacing:-0.426667pt;}
.wsc{word-spacing:-0.373333pt;}
.ws16{word-spacing:-0.320000pt;}
.ws27{word-spacing:-0.298667pt;}
.ws45{word-spacing:-0.266667pt;}
.ws22{word-spacing:-0.213333pt;}
.ws2f{word-spacing:-0.160000pt;}
.ws2c{word-spacing:-0.106667pt;}
.ws5{word-spacing:0.000000pt;}
.ws7{word-spacing:0.040000pt;}
.ws1f{word-spacing:0.053333pt;}
.ws2b{word-spacing:0.106667pt;}
.ws5f{word-spacing:0.128000pt;}
.ws21{word-spacing:0.160000pt;}
.wsd{word-spacing:0.213333pt;}
.ws32{word-spacing:0.373333pt;}
.ws3d{word-spacing:0.800000pt;}
.ws64{word-spacing:1.109333pt;}
.ws1b{word-spacing:1.173333pt;}
.ws2d{word-spacing:1.226667pt;}
.ws61{word-spacing:1.237333pt;}
.ws4c{word-spacing:1.493333pt;}
.ws26{word-spacing:1.546667pt;}
.ws40{word-spacing:1.600000pt;}
.ws4b{word-spacing:1.653333pt;}
.ws63{word-spacing:1.792000pt;}
.ws46{word-spacing:1.813333pt;}
.ws23{word-spacing:1.866667pt;}
.ws34{word-spacing:1.920000pt;}
.wsb{word-spacing:1.973333pt;}
.ws17{word-spacing:2.133333pt;}
.ws2e{word-spacing:2.240000pt;}
.ws67{word-spacing:2.261333pt;}
.ws30{word-spacing:2.293333pt;}
.ws5d{word-spacing:2.602667pt;}
.ws41{word-spacing:2.613333pt;}
.ws3f{word-spacing:2.666667pt;}
.ws5e{word-spacing:2.773333pt;}
.ws1c{word-spacing:2.826667pt;}
.wse{word-spacing:3.040000pt;}
.ws60{word-spacing:3.072000pt;}
.ws53{word-spacing:3.114667pt;}
.ws47{word-spacing:3.146667pt;}
.ws5c{word-spacing:3.157333pt;}
.ws50{word-spacing:3.200000pt;}
.ws52{word-spacing:3.285333pt;}
.ws48{word-spacing:3.306667pt;}
.ws4d{word-spacing:3.360000pt;}
.ws51{word-spacing:3.370667pt;}
.ws14{word-spacing:3.413333pt;}
.ws24{word-spacing:3.498667pt;}
.ws33{word-spacing:3.520000pt;}
.ws4f{word-spacing:3.541333pt;}
.ws3e{word-spacing:3.680000pt;}
.ws18{word-spacing:4.000000pt;}
.ws19{word-spacing:4.053333pt;}
.ws25{word-spacing:4.138667pt;}
.ws15{word-spacing:4.320000pt;}
.ws9{word-spacing:4.373333pt;}
.ws8{word-spacing:4.426667pt;}
.ws4a{word-spacing:4.853333pt;}
.ws49{word-spacing:4.906667pt;}
._a{margin-left:-2576.128000pt;}
._b{margin-left:-2554.922667pt;}
._4{margin-left:-6.747200pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.080000pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-1.008000pt;}
._6{width:0.933867pt;}
._7{width:3.293333pt;}
._5{width:4.746667pt;}
._9{width:6.400000pt;}
._8{width:7.520000pt;}
._18{width:43.136000pt;}
._e{width:45.397333pt;}
._11{width:64.090667pt;}
._16{width:95.232000pt;}
._d{width:110.122667pt;}
._14{width:111.786667pt;}
._10{width:112.938667pt;}
._17{width:134.272000pt;}
._12{width:157.312000pt;}
._c{width:212.522667pt;}
._f{width:228.309333pt;}
._15{width:266.922667pt;}
._13{width:458.368000pt;}
.fs6{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs5{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs3{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y30{bottom:42.468667pt;}
.y95{bottom:74.082000pt;}
.y91{bottom:74.196133pt;}
.y9d{bottom:74.376000pt;}
.yc5{bottom:74.595867pt;}
.y5e{bottom:74.729200pt;}
.ye9{bottom:76.552800pt;}
.y16{bottom:78.246000pt;}
.y8e{bottom:81.114533pt;}
.yb9{bottom:82.737867pt;}
.y94{bottom:88.076667pt;}
.y9c{bottom:88.370667pt;}
.ye8{bottom:89.886133pt;}
.yc4{bottom:90.595867pt;}
.y5d{bottom:90.729200pt;}
.y15{bottom:91.576000pt;}
.y8d{bottom:97.114533pt;}
.yb8{bottom:97.404533pt;}
.y93{bottom:102.071333pt;}
.ye7{bottom:103.219467pt;}
.yc3{bottom:106.595867pt;}
.y5c{bottom:106.729200pt;}
.yb7{bottom:112.071200pt;}
.y8c{bottom:113.114533pt;}
.ye6{bottom:116.552800pt;}
.yc2{bottom:122.595867pt;}
.y5b{bottom:122.729200pt;}
.yb6{bottom:126.737867pt;}
.y8b{bottom:129.114533pt;}
.ye5{bottom:129.886133pt;}
.yc1{bottom:138.595867pt;}
.y5a{bottom:138.729200pt;}
.yb5{bottom:141.180533pt;}
.ye4{bottom:143.219467pt;}
.y8a{bottom:145.114533pt;}
.y2b{bottom:151.157467pt;}
.yc0{bottom:154.595867pt;}
.y59{bottom:154.729200pt;}
.yb4{bottom:155.847200pt;}
.ye3{bottom:156.552800pt;}
.y89{bottom:161.114533pt;}
.y2a{bottom:167.157467pt;}
.ye2{bottom:169.886133pt;}
.yb3{bottom:170.289867pt;}
.ybf{bottom:170.595867pt;}
.y88{bottom:177.114533pt;}
.y29{bottom:183.157467pt;}
.ye1{bottom:183.219467pt;}
.yb2{bottom:184.956533pt;}
.y58{bottom:186.369200pt;}
.ybe{bottom:186.595867pt;}
.y87{bottom:193.114533pt;}
.ye0{bottom:196.552800pt;}
.y28{bottom:199.157467pt;}
.yb1{bottom:199.623200pt;}
.ybd{bottom:202.595867pt;}
.y86{bottom:209.114533pt;}
.ydf{bottom:209.886133pt;}
.yb0{bottom:214.065867pt;}
.y27{bottom:215.157467pt;}
.y57{bottom:218.595867pt;}
.yde{bottom:223.219467pt;}
.y85{bottom:225.114533pt;}
.yaf{bottom:228.732533pt;}
.y26{bottom:231.157467pt;}
.y56{bottom:234.595867pt;}
.ydd{bottom:236.552800pt;}
.y84{bottom:241.114533pt;}
.yae{bottom:243.399200pt;}
.y25{bottom:247.157467pt;}
.y55{bottom:250.595867pt;}
.y83{bottom:257.114533pt;}
.yad{bottom:258.065867pt;}
.y24{bottom:263.157467pt;}
.ydc{bottom:265.982533pt;}
.y54{bottom:266.595867pt;}
.yac{bottom:272.508533pt;}
.y82{bottom:273.114533pt;}
.y23{bottom:279.157467pt;}
.y53{bottom:282.595867pt;}
.yab{bottom:287.175200pt;}
.y81{bottom:289.114533pt;}
.y22{bottom:295.157467pt;}
.y52{bottom:298.595867pt;}
.yaa{bottom:301.841867pt;}
.y80{bottom:305.114533pt;}
.y21{bottom:311.157467pt;}
.ydb{bottom:314.462533pt;}
.y51{bottom:314.595867pt;}
.ya9{bottom:316.508533pt;}
.y7f{bottom:321.114533pt;}
.y20{bottom:327.157467pt;}
.yda{bottom:330.102533pt;}
.y50{bottom:330.595867pt;}
.y7e{bottom:337.114533pt;}
.ya8{bottom:342.289867pt;}
.y1f{bottom:343.157467pt;}
.y4f{bottom:346.595867pt;}
.y7d{bottom:353.114533pt;}
.ya7{bottom:356.956533pt;}
.y1e{bottom:359.157467pt;}
.yd9{bottom:362.102533pt;}
.y4e{bottom:362.595867pt;}
.y7c{bottom:369.114533pt;}
.ya6{bottom:371.623200pt;}
.y1d{bottom:375.157467pt;}
.y4d{bottom:378.595867pt;}
.y7b{bottom:385.114533pt;}
.y1c{bottom:391.157467pt;}
.ybc{bottom:394.235867pt;}
.yd8{bottom:394.462533pt;}
.y4c{bottom:394.595867pt;}
.ya5{bottom:400.409200pt;}
.y7a{bottom:401.114533pt;}
.y1b{bottom:407.157467pt;}
.yd7{bottom:410.462533pt;}
.y4b{bottom:410.595867pt;}
.y79{bottom:417.114533pt;}
.y1a{bottom:423.157467pt;}
.yd6{bottom:426.102533pt;}
.ybb{bottom:426.462533pt;}
.y78{bottom:433.114533pt;}
.y19{bottom:439.157467pt;}
.y4a{bottom:442.235867pt;}
.ya1{bottom:442.462533pt;}
.y77{bottom:449.114533pt;}
.y18{bottom:455.157467pt;}
.ya0{bottom:458.462533pt;}
.y76{bottom:465.114533pt;}
.y2d{bottom:471.157467pt;}
.yd5{bottom:474.115867pt;}
.y49{bottom:474.462533pt;}
.y75{bottom:481.114533pt;}
.y17{bottom:486.797467pt;}
.y2c{bottom:487.157467pt;}
.ya4{bottom:490.102533pt;}
.y48{bottom:490.462533pt;}
.y74{bottom:497.114533pt;}
.y47{bottom:506.462533pt;}
.yd4{bottom:506.475867pt;}
.ya3{bottom:521.982533pt;}
.y46{bottom:522.462533pt;}
.yd3{bottom:522.475867pt;}
.y73{bottom:528.083867pt;}
.yd2{bottom:538.115867pt;}
.y45{bottom:538.462533pt;}
.y72{bottom:541.955867pt;}
.y107{bottom:551.345333pt;}
.y44{bottom:554.462533pt;}
.y71{bottom:554.729200pt;}
.y14{bottom:554.768000pt;}
.y106{bottom:564.678667pt;}
.y70{bottom:570.369200pt;}
.y43{bottom:570.462533pt;}
.yd1{bottom:570.475867pt;}
.y105{bottom:578.012000pt;}
.y13{bottom:579.074667pt;}
.y42{bottom:586.462533pt;}
.yd0{bottom:586.475867pt;}
.y104{bottom:591.345333pt;}
.y12{bottom:595.074667pt;}
.y6f{bottom:602.235867pt;}
.y9f{bottom:602.462533pt;}
.ycf{bottom:602.475867pt;}
.y103{bottom:604.678667pt;}
.y11{bottom:611.074667pt;}
.y102{bottom:618.012000pt;}
.y41{bottom:618.102533pt;}
.y6e{bottom:618.235867pt;}
.y9b{bottom:618.462533pt;}
.yce{bottom:618.475867pt;}
.y10{bottom:627.074667pt;}
.y101{bottom:631.345333pt;}
.y6d{bottom:634.235867pt;}
.y9a{bottom:634.462533pt;}
.ycd{bottom:634.475867pt;}
.yf{bottom:643.074667pt;}
.y100{bottom:644.678667pt;}
.y40{bottom:649.982533pt;}
.y99{bottom:650.462533pt;}
.ycc{bottom:650.475867pt;}
.yff{bottom:658.012000pt;}
.ye{bottom:659.074667pt;}
.y6c{bottom:666.115867pt;}
.y98{bottom:666.462533pt;}
.ycb{bottom:666.475867pt;}
.yfe{bottom:671.345333pt;}
.yd{bottom:675.074667pt;}
.y90{bottom:675.614800pt;}
.y97{bottom:682.462533pt;}
.yca{bottom:682.475867pt;}
.yfd{bottom:684.678667pt;}
.y6b{bottom:697.995867pt;}
.yfc{bottom:698.012000pt;}
.y3f{bottom:698.462533pt;}
.yc9{bottom:698.475867pt;}
.yc{bottom:704.524533pt;}
.yfb{bottom:711.345333pt;}
.y3e{bottom:714.462533pt;}
.yc8{bottom:714.475867pt;}
.yfa{bottom:724.678667pt;}
.yb{bottom:727.038267pt;}
.y3d{bottom:730.462533pt;}
.yc7{bottom:730.475867pt;}
.yf9{bottom:738.012000pt;}
.yc6{bottom:746.115867pt;}
.y3c{bottom:746.462533pt;}
.y6a{bottom:746.475867pt;}
.yf8{bottom:751.345333pt;}
.ya{bottom:755.229867pt;}
.y3b{bottom:762.462533pt;}
.y69{bottom:762.475867pt;}
.yf7{bottom:764.678667pt;}
.y9{bottom:767.229867pt;}
.yf6{bottom:778.012000pt;}
.y3a{bottom:778.462533pt;}
.y68{bottom:778.475867pt;}
.y8{bottom:779.229867pt;}
.y7{bottom:791.229867pt;}
.yf5{bottom:791.345333pt;}
.y39{bottom:794.462533pt;}
.y67{bottom:794.475867pt;}
.yf4{bottom:804.678667pt;}
.y38{bottom:810.462533pt;}
.y66{bottom:810.475867pt;}
.yf3{bottom:818.012000pt;}
.y6{bottom:821.583067pt;}
.y37{bottom:826.462533pt;}
.y65{bottom:826.475867pt;}
.yf2{bottom:831.345333pt;}
.y36{bottom:842.462533pt;}
.y64{bottom:842.475867pt;}
.yf1{bottom:844.678667pt;}
.yf0{bottom:858.012000pt;}
.y35{bottom:858.462533pt;}
.y63{bottom:858.475867pt;}
.y5{bottom:862.635733pt;}
.yef{bottom:871.345333pt;}
.y34{bottom:874.462533pt;}
.y62{bottom:874.475867pt;}
.yee{bottom:884.678667pt;}
.y33{bottom:890.462533pt;}
.y61{bottom:890.475867pt;}
.y4{bottom:895.045333pt;}
.yed{bottom:898.012000pt;}
.y32{bottom:906.462533pt;}
.y60{bottom:906.475867pt;}
.yec{bottom:911.345333pt;}
.ya2{bottom:922.102533pt;}
.y31{bottom:922.462533pt;}
.y5f{bottom:922.475867pt;}
.yeb{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y3{bottom:952.549733pt;}
.yea{bottom:1006.590133pt;}
.y92{bottom:1006.590800pt;}
.y8f{bottom:1006.594400pt;}
.y108{bottom:1006.598667pt;}
.y9e{bottom:1006.600000pt;}
.y96{bottom:1006.604667pt;}
.yba{bottom:1006.609867pt;}
.y2f{bottom:1009.857333pt;}
.y2e{bottom:1022.660000pt;}
.h8{height:25.238281pt;}
.h2{height:27.179688pt;}
.hc{height:29.140625pt;}
.h7{height:29.160156pt;}
.h13{height:29.625000pt;}
.h12{height:29.645833pt;}
.h4{height:31.062500pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.h11{height:33.351562pt;}
.he{height:37.031250pt;}
.hd{height:37.057292pt;}
.hb{height:38.828125pt;}
.ha{height:38.854167pt;}
.h9{height:38.880208pt;}
.h6{height:40.769531pt;}
.h3{height:50.476562pt;}
.h5{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x1f{left:69.921200pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x2d{left:90.708667pt;}
.x5{left:92.598400pt;}
.x3{left:94.866133pt;}
.xc{left:98.271467pt;}
.x4{left:111.499067pt;}
.x7{left:117.170133pt;}
.xd{left:128.644800pt;}
.x29{left:149.313200pt;}
.x6{left:189.223467pt;}
.x2a{left:224.907867pt;}
.x27{left:232.449200pt;}
.x20{left:258.742533pt;}
.x28{left:360.950533pt;}
.x21{left:368.822533pt;}
.xa{left:404.481333pt;}
.xe{left:406.298133pt;}
.x17{left:419.153467pt;}
.x1c{left:425.195867pt;}
.x8{left:427.090133pt;}
.x2e{left:428.980667pt;}
.xf{left:436.538133pt;}
.x12{left:443.178133pt;}
.x13{left:444.391467pt;}
.x2c{left:447.874133pt;}
.x15{left:451.804800pt;}
.x14{left:454.391467pt;}
.x1d{left:455.435867pt;}
.x18{left:513.533467pt;}
.x1e{left:515.027733pt;}
.x11{left:518.644800pt;}
.x10{left:525.924800pt;}
.x16{left:527.271467pt;}
.x2b{left:529.850133pt;}
.x25{left:534.806533pt;}
.x22{left:539.254533pt;}
.x26{left:542.369200pt;}
.x23{left:545.057200pt;}
.x1a{left:589.770933pt;}
.x24{left:604.737200pt;}
.x2{left:616.324800pt;}
.x19{left:653.391467pt;}
.x1b{left:672.290933pt;}
}




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