
    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_551eaf282face02d75457e58.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_551eaf282face02d75457e58.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_1a7ecca1ffd1838195545dfe.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.720000;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_82116d9664b170a889f1d316.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.720000;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_1e3f04a9f084a3bb02aeb581.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_c2b5888ab634ba7ae38b7760.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_df53014c9c5e93879fe5142b.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_4187801d44bb29ca73154f6e.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_ec5ceff1d6e3753a9c9cc443.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_98b90d193c8c62b8a7713ac6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.707000;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_6e6dcc8f4ff0c2d55b79c22d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940000;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_1a7ecca1ffd1838195545dfe.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.720000;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_729496655cc1fffe4a45cb34.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.945813;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_c9bc05b25e04b980f9061d1f.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_942a1e99b6f2c51d0cf98696.woff2')format("woff");}.fff{font-family:fff;line-height:0.891602;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_967fad56fac17a1f6892415f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.708000;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;}
.m3{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,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);}
.v1{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.ls2{letter-spacing:-0.240000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1f{word-spacing:-60.000000px;}
.ws5d{word-spacing:-51.720000px;}
.ws9d{word-spacing:-50.760000px;}
.ws5e{word-spacing:-50.460000px;}
.ws9b{word-spacing:-48.180000px;}
.ws21{word-spacing:-47.640000px;}
.ws60{word-spacing:-46.740000px;}
.ws9a{word-spacing:-46.200000px;}
.ws5f{word-spacing:-45.900000px;}
.ws22{word-spacing:-45.540000px;}
.ws9c{word-spacing:-45.060000px;}
.ws63{word-spacing:-44.460000px;}
.ws23{word-spacing:-42.840000px;}
.ws1e{word-spacing:-42.480000px;}
.ws1c{word-spacing:-41.940000px;}
.ws62{word-spacing:-40.380000px;}
.ws61{word-spacing:-37.440000px;}
.ws1d{word-spacing:-33.600000px;}
.ws2{word-spacing:-15.000000px;}
.wsb0{word-spacing:-12.000000px;}
.wsb3{word-spacing:-6.300000px;}
.wsb6{word-spacing:-5.400000px;}
.ws66{word-spacing:-4.500000px;}
.wsa2{word-spacing:-4.260000px;}
.ws31{word-spacing:-4.140000px;}
.ws7e{word-spacing:-3.900000px;}
.ws3f{word-spacing:-3.840000px;}
.ws3e{word-spacing:-3.300000px;}
.ws24{word-spacing:-3.240000px;}
.ws18{word-spacing:-3.120000px;}
.ws37{word-spacing:-3.000000px;}
.wsf{word-spacing:-2.820000px;}
.ws80{word-spacing:-2.760000px;}
.ws15{word-spacing:-2.400000px;}
.ws19{word-spacing:-2.340000px;}
.ws93{word-spacing:-2.220000px;}
.wsbc{word-spacing:-2.160000px;}
.ws7a{word-spacing:-2.100000px;}
.ws91{word-spacing:-1.920000px;}
.ws98{word-spacing:-1.860000px;}
.wsa1{word-spacing:-1.800000px;}
.wsac{word-spacing:-1.740000px;}
.ws4{word-spacing:-1.620000px;}
.ws2d{word-spacing:-1.440000px;}
.ws6d{word-spacing:-1.380000px;}
.ws71{word-spacing:-1.200000px;}
.ws2f{word-spacing:-0.900000px;}
.ws4d{word-spacing:-0.660000px;}
.ws5a{word-spacing:-0.600000px;}
.ws6b{word-spacing:-0.360000px;}
.wsaa{word-spacing:-0.300000px;}
.ws16{word-spacing:-0.240000px;}
.ws29{word-spacing:-0.180000px;}
.ws17{word-spacing:-0.120000px;}
.wsab{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws35{word-spacing:0.060000px;}
.ws3b{word-spacing:0.240000px;}
.ws4b{word-spacing:0.420000px;}
.wsbd{word-spacing:0.480000px;}
.ws7f{word-spacing:0.600000px;}
.ws49{word-spacing:0.660000px;}
.ws1{word-spacing:0.720000px;}
.ws79{word-spacing:1.020000px;}
.ws7{word-spacing:1.026000px;}
.wsa4{word-spacing:1.080000px;}
.ws3d{word-spacing:1.140000px;}
.ws2c{word-spacing:1.380000px;}
.wsb2{word-spacing:1.440000px;}
.ws33{word-spacing:1.620000px;}
.wsa5{word-spacing:1.980000px;}
.ws97{word-spacing:2.100000px;}
.ws8{word-spacing:2.268000px;}
.ws32{word-spacing:2.280000px;}
.ws8b{word-spacing:2.400000px;}
.ws88{word-spacing:2.460000px;}
.ws89{word-spacing:2.520000px;}
.ws36{word-spacing:2.580000px;}
.ws8f{word-spacing:2.700000px;}
.ws55{word-spacing:2.940000px;}
.ws6c{word-spacing:3.060000px;}
.ws27{word-spacing:3.180000px;}
.ws94{word-spacing:3.240000px;}
.ws34{word-spacing:3.540000px;}
.ws78{word-spacing:3.600000px;}
.ws43{word-spacing:3.780000px;}
.wsb1{word-spacing:3.900000px;}
.wsd{word-spacing:3.960000px;}
.wsa9{word-spacing:4.200000px;}
.ws42{word-spacing:4.500000px;}
.ws25{word-spacing:4.560000px;}
.ws82{word-spacing:4.680000px;}
.ws10{word-spacing:4.920000px;}
.wsa{word-spacing:5.076000px;}
.ws54{word-spacing:5.280000px;}
.ws30{word-spacing:5.580000px;}
.wsa6{word-spacing:5.640000px;}
.ws6e{word-spacing:5.700000px;}
.ws56{word-spacing:5.760000px;}
.ws13{word-spacing:6.060000px;}
.ws4f{word-spacing:6.120000px;}
.ws46{word-spacing:6.180000px;}
.ws92{word-spacing:6.300000px;}
.wse{word-spacing:6.420000px;}
.ws58{word-spacing:6.540000px;}
.ws7b{word-spacing:6.900000px;}
.ws99{word-spacing:7.020000px;}
.ws9e{word-spacing:7.080000px;}
.ws2a{word-spacing:7.440000px;}
.ws38{word-spacing:7.560000px;}
.ws74{word-spacing:7.740000px;}
.wsb{word-spacing:7.830000px;}
.ws44{word-spacing:7.920000px;}
.ws57{word-spacing:8.040000px;}
.ws6{word-spacing:8.100000px;}
.ws9{word-spacing:8.154000px;}
.ws90{word-spacing:8.160000px;}
.ws77{word-spacing:8.280000px;}
.ws52{word-spacing:8.340000px;}
.ws87{word-spacing:8.760000px;}
.ws65{word-spacing:8.940000px;}
.ws83{word-spacing:9.240000px;}
.ws95{word-spacing:9.300000px;}
.ws6a{word-spacing:9.360000px;}
.ws5{word-spacing:9.396000px;}
.ws3a{word-spacing:9.840000px;}
.ws76{word-spacing:9.960000px;}
.ws26{word-spacing:10.020000px;}
.ws20{word-spacing:10.038000px;}
.ws8a{word-spacing:10.080000px;}
.ws72{word-spacing:10.320000px;}
.ws5c{word-spacing:10.680000px;}
.wsb8{word-spacing:10.800000px;}
.wsb5{word-spacing:10.860000px;}
.ws3c{word-spacing:11.220000px;}
.wsad{word-spacing:11.280000px;}
.ws40{word-spacing:11.520000px;}
.ws48{word-spacing:11.640000px;}
.ws39{word-spacing:11.700000px;}
.ws67{word-spacing:11.820000px;}
.wsa3{word-spacing:12.000000px;}
.ws69{word-spacing:12.060000px;}
.ws2b{word-spacing:12.120000px;}
.wsc{word-spacing:12.420000px;}
.ws53{word-spacing:12.840000px;}
.ws81{word-spacing:13.020000px;}
.ws12{word-spacing:13.080000px;}
.ws59{word-spacing:13.200000px;}
.ws96{word-spacing:13.260000px;}
.ws70{word-spacing:13.320000px;}
.ws11{word-spacing:13.680000px;}
.wsba{word-spacing:13.740000px;}
.ws2e{word-spacing:13.800000px;}
.ws7d{word-spacing:14.400000px;}
.ws14{word-spacing:14.460000px;}
.wsa8{word-spacing:14.700000px;}
.ws4a{word-spacing:14.820000px;}
.ws4e{word-spacing:15.000000px;}
.ws6f{word-spacing:15.120000px;}
.ws75{word-spacing:15.300000px;}
.ws86{word-spacing:15.480000px;}
.wsb9{word-spacing:15.660000px;}
.wsaf{word-spacing:16.260000px;}
.ws64{word-spacing:16.380000px;}
.wsa0{word-spacing:16.440000px;}
.ws28{word-spacing:16.740000px;}
.ws50{word-spacing:17.700000px;}
.ws84{word-spacing:18.000000px;}
.wsa7{word-spacing:19.380000px;}
.ws41{word-spacing:20.820000px;}
.ws68{word-spacing:20.880000px;}
.wsae{word-spacing:21.360000px;}
.ws4c{word-spacing:22.080000px;}
.wsbb{word-spacing:23.040000px;}
.ws7c{word-spacing:23.280000px;}
.ws8e{word-spacing:23.940000px;}
.ws5b{word-spacing:24.180000px;}
.ws47{word-spacing:27.540000px;}
.ws45{word-spacing:27.600000px;}
.ws8c{word-spacing:28.260000px;}
.ws9f{word-spacing:30.540000px;}
.ws73{word-spacing:30.600000px;}
.ws85{word-spacing:32.460000px;}
.ws8d{word-spacing:32.520000px;}
.ws1a{word-spacing:33.621000px;}
.wsb4{word-spacing:38.760000px;}
.ws51{word-spacing:39.240000px;}
.wsb7{word-spacing:42.600000px;}
.ws1b{word-spacing:386.314800px;}
.ws0{word-spacing:1699.977600px;}
._18{margin-left:-15.000000px;}
._17{margin-left:-7.704000px;}
._3{margin-left:-6.678000px;}
._4{margin-left:-5.550000px;}
._2{margin-left:-4.386000px;}
._8{margin-left:-3.330000px;}
._5{margin-left:-2.160000px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._6{width:2.610600px;}
._a{width:4.500000px;}
._b{width:6.462000px;}
._d{width:7.494000px;}
._10{width:12.240000px;}
._14{width:15.966000px;}
._16{width:21.540000px;}
._f{width:41.760000px;}
._11{width:42.882000px;}
._12{width:43.962000px;}
._15{width:55.320000px;}
._7{width:57.600000px;}
._c{width:67.080000px;}
._13{width:68.400000px;}
._9{width:70.038000px;}
._e{width:74.520000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.y5c{bottom:93.159600px;}
.ya3{bottom:94.659600px;}
.y5b{bottom:114.159600px;}
.ya2{bottom:114.909600px;}
.yf6{bottom:125.409600px;}
.ycd{bottom:125.651400px;}
.y5a{bottom:135.159600px;}
.y7c{bottom:144.159600px;}
.yf5{bottom:145.659600px;}
.ycc{bottom:145.901400px;}
.y59{bottom:156.159600px;}
.y7b{bottom:163.659600px;}
.yf4{bottom:165.909600px;}
.ycb{bottom:166.151400px;}
.y58{bottom:177.159600px;}
.y7a{bottom:183.159600px;}
.yf3{bottom:186.159600px;}
.y27{bottom:192.942450px;}
.ya1{bottom:196.659600px;}
.y57{bottom:198.159600px;}
.y79{bottom:202.659600px;}
.yf2{bottom:206.409600px;}
.yca{bottom:206.651400px;}
.y26{bottom:213.942450px;}
.ya0{bottom:216.159600px;}
.y56{bottom:219.159600px;}
.y78{bottom:222.159600px;}
.yf1{bottom:226.659600px;}
.yc9{bottom:226.901400px;}
.y25{bottom:234.942450px;}
.y9f{bottom:235.659600px;}
.y55{bottom:240.159600px;}
.y77{bottom:241.659600px;}
.yf0{bottom:246.909600px;}
.yc8{bottom:247.151400px;}
.y9e{bottom:255.159600px;}
.y24{bottom:255.942450px;}
.y54{bottom:261.159600px;}
.yef{bottom:267.159600px;}
.yc7{bottom:267.401400px;}
.y9d{bottom:274.659600px;}
.y23{bottom:276.942450px;}
.y76{bottom:280.659600px;}
.y53{bottom:282.159600px;}
.yee{bottom:287.409600px;}
.yc6{bottom:287.651400px;}
.y9c{bottom:294.159600px;}
.y22{bottom:297.942450px;}
.y75{bottom:300.159600px;}
.y52{bottom:303.159600px;}
.yed{bottom:307.659600px;}
.yc5{bottom:307.901400px;}
.y9b{bottom:313.659600px;}
.y21{bottom:318.942450px;}
.y74{bottom:319.659600px;}
.y51{bottom:324.159600px;}
.yec{bottom:327.909600px;}
.yc4{bottom:328.151400px;}
.y73{bottom:339.159600px;}
.y20{bottom:339.942450px;}
.y5d{bottom:345.159600px;}
.yeb{bottom:348.159600px;}
.yc3{bottom:348.401400px;}
.y9a{bottom:352.659600px;}
.y72{bottom:358.659600px;}
.y1f{bottom:360.942450px;}
.y50{bottom:366.159600px;}
.yea{bottom:368.409600px;}
.yc2{bottom:368.651400px;}
.y99{bottom:372.159600px;}
.y71{bottom:378.159600px;}
.y1e{bottom:381.942450px;}
.y4f{bottom:387.159600px;}
.ye9{bottom:388.659600px;}
.yc1{bottom:388.901400px;}
.y98{bottom:391.659600px;}
.y70{bottom:397.659600px;}
.y1d{bottom:402.942450px;}
.y4e{bottom:408.159600px;}
.ye8{bottom:408.909600px;}
.yc0{bottom:409.151400px;}
.y97{bottom:411.159600px;}
.y6f{bottom:417.159600px;}
.y1c{bottom:423.942450px;}
.y4d{bottom:429.159600px;}
.ybf{bottom:429.401400px;}
.y96{bottom:430.659600px;}
.y6e{bottom:436.659600px;}
.y1b{bottom:444.942450px;}
.ye7{bottom:449.409600px;}
.ybe{bottom:449.651400px;}
.y4c{bottom:450.159600px;}
.y30{bottom:456.139950px;}
.y6d{bottom:456.159600px;}
.y1a{bottom:465.942450px;}
.y95{bottom:469.659600px;}
.ybd{bottom:469.901400px;}
.y4b{bottom:471.159600px;}
.y6c{bottom:475.659600px;}
.y2f{bottom:478.639950px;}
.y19{bottom:486.942450px;}
.y94{bottom:489.159600px;}
.ye6{bottom:489.909600px;}
.ybc{bottom:490.151400px;}
.y4a{bottom:492.159600px;}
.y6b{bottom:495.159600px;}
.y2e{bottom:501.139950px;}
.y18{bottom:507.942450px;}
.y93{bottom:508.659600px;}
.ye5{bottom:510.159600px;}
.ybb{bottom:510.401400px;}
.y49{bottom:513.159600px;}
.y6a{bottom:514.659600px;}
.y92{bottom:528.159600px;}
.ye4{bottom:530.409600px;}
.yba{bottom:530.651400px;}
.y48{bottom:534.159600px;}
.y2d{bottom:541.639950px;}
.y91{bottom:547.659600px;}
.y17{bottom:549.982950px;}
.ye3{bottom:550.659600px;}
.yb9{bottom:550.901400px;}
.y69{bottom:553.659600px;}
.y47{bottom:555.159600px;}
.y90{bottom:567.159600px;}
.y16{bottom:567.978450px;}
.ye2{bottom:570.909600px;}
.yb8{bottom:571.151400px;}
.y46{bottom:576.159600px;}
.y15{bottom:585.973950px;}
.y2c{bottom:586.639950px;}
.y8f{bottom:586.659600px;}
.ye1{bottom:591.161400px;}
.yb7{bottom:591.401400px;}
.y68{bottom:592.659600px;}
.y45{bottom:597.159600px;}
.y14{bottom:603.969450px;}
.y8e{bottom:606.159600px;}
.ye0{bottom:611.411400px;}
.yb6{bottom:611.651400px;}
.y67{bottom:612.159600px;}
.y44{bottom:618.159600px;}
.y13{bottom:621.964950px;}
.y8d{bottom:625.659600px;}
.y2b{bottom:627.139950px;}
.y66{bottom:631.659600px;}
.yb5{bottom:631.901400px;}
.y43{bottom:639.159600px;}
.y12{bottom:639.960450px;}
.y8c{bottom:645.159600px;}
.y65{bottom:651.159600px;}
.ydf{bottom:651.911400px;}
.yb4{bottom:652.151400px;}
.y11{bottom:657.955950px;}
.y42{bottom:660.159600px;}
.y2a{bottom:663.139950px;}
.y64{bottom:670.659600px;}
.yde{bottom:672.161400px;}
.yb3{bottom:672.401400px;}
.y10{bottom:675.951450px;}
.y41{bottom:681.159600px;}
.y8b{bottom:684.159600px;}
.y63{bottom:690.159600px;}
.ydd{bottom:692.411400px;}
.yb2{bottom:692.651400px;}
.yf{bottom:693.946950px;}
.y29{bottom:699.139950px;}
.y40{bottom:702.159600px;}
.y8a{bottom:703.659600px;}
.y62{bottom:709.659600px;}
.ye{bottom:711.942450px;}
.ydc{bottom:712.661400px;}
.y3f{bottom:723.159600px;}
.y61{bottom:729.159600px;}
.yd{bottom:729.942450px;}
.ydb{bottom:732.911400px;}
.yb1{bottom:733.151400px;}
.y28{bottom:735.139950px;}
.y89{bottom:742.659600px;}
.y60{bottom:748.659600px;}
.yda{bottom:753.161400px;}
.yb0{bottom:753.401400px;}
.y88{bottom:762.159600px;}
.y3e{bottom:765.159600px;}
.y5f{bottom:768.159600px;}
.yc{bottom:770.446950px;}
.yd9{bottom:773.411400px;}
.yaf{bottom:773.651400px;}
.y87{bottom:781.659600px;}
.y3d{bottom:786.159600px;}
.y5e{bottom:787.659600px;}
.yb{bottom:788.442450px;}
.yd8{bottom:793.661400px;}
.yae{bottom:793.901400px;}
.y86{bottom:801.159600px;}
.ya{bottom:806.442450px;}
.y3c{bottom:807.159600px;}
.yd7{bottom:813.911400px;}
.yad{bottom:814.151400px;}
.y85{bottom:820.659600px;}
.y3b{bottom:828.159600px;}
.yd6{bottom:834.161400px;}
.yac{bottom:834.401400px;}
.y84{bottom:840.159600px;}
.y3a{bottom:849.159600px;}
.y9{bottom:851.446950px;}
.yd5{bottom:854.411400px;}
.yab{bottom:854.651400px;}
.y83{bottom:859.659600px;}
.y8{bottom:869.442450px;}
.y39{bottom:870.159600px;}
.yd4{bottom:874.661400px;}
.yaa{bottom:874.901400px;}
.y82{bottom:879.159600px;}
.y7{bottom:887.442450px;}
.y38{bottom:891.159600px;}
.yd3{bottom:894.911400px;}
.ya9{bottom:895.151400px;}
.y81{bottom:898.659600px;}
.y37{bottom:912.159600px;}
.yd2{bottom:915.161400px;}
.ya8{bottom:915.401400px;}
.y80{bottom:918.159600px;}
.y36{bottom:933.159600px;}
.yd1{bottom:935.411400px;}
.ya7{bottom:935.651400px;}
.y7f{bottom:937.659600px;}
.y6{bottom:939.949950px;}
.y35{bottom:954.159600px;}
.yd0{bottom:955.661400px;}
.ya6{bottom:955.901400px;}
.y7e{bottom:957.159600px;}
.y5{bottom:965.442450px;}
.y34{bottom:975.159600px;}
.ycf{bottom:975.911400px;}
.ya5{bottom:976.151400px;}
.y7d{bottom:976.659600px;}
.y33{bottom:996.159600px;}
.yce{bottom:996.161400px;}
.ya4{bottom:996.401400px;}
.y4{bottom:1024.374150px;}
.y32{bottom:1027.506750px;}
.y3{bottom:1039.374150px;}
.h5{height:34.176000px;}
.h4{height:34.560000px;}
.h8{height:37.494141px;}
.h7{height:40.664062px;}
.h9{height:41.689453px;}
.h3{height:42.000000px;}
.h2{height:42.720000px;}
.hb{height:46.200000px;}
.ha{height:50.400000px;}
.hd{height:52.492611px;}
.hc{height:53.467611px;}
.h6{height:60.996094px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.x10{left:65.202600px;}
.xf{left:71.253150px;}
.xe{left:73.559100px;}
.x11{left:85.039350px;}
.xd{left:224.187900px;}
.x5{left:253.376250px;}
.x6{left:307.848750px;}
.x12{left:374.173200px;}
.x13{left:399.688200px;}
.x4{left:412.272150px;}
.x14{left:421.195650px;}
.x15{left:426.935850px;}
.x8{left:440.543550px;}
.x9{left:447.914550px;}
.xb{left:478.874850px;}
.xc{left:493.130850px;}
.xa{left:596.480550px;}
.x7{left:601.783200px;}
.x3{left:614.196150px;}
.x2{left:632.875800px;}
.x16{left:710.580450px;}
@media print{
.v1{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls2{letter-spacing:-0.213333pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1f{word-spacing:-53.333333pt;}
.ws5d{word-spacing:-45.973333pt;}
.ws9d{word-spacing:-45.120000pt;}
.ws5e{word-spacing:-44.853333pt;}
.ws9b{word-spacing:-42.826667pt;}
.ws21{word-spacing:-42.346667pt;}
.ws60{word-spacing:-41.546667pt;}
.ws9a{word-spacing:-41.066667pt;}
.ws5f{word-spacing:-40.800000pt;}
.ws22{word-spacing:-40.480000pt;}
.ws9c{word-spacing:-40.053333pt;}
.ws63{word-spacing:-39.520000pt;}
.ws23{word-spacing:-38.080000pt;}
.ws1e{word-spacing:-37.760000pt;}
.ws1c{word-spacing:-37.280000pt;}
.ws62{word-spacing:-35.893333pt;}
.ws61{word-spacing:-33.280000pt;}
.ws1d{word-spacing:-29.866667pt;}
.ws2{word-spacing:-13.333333pt;}
.wsb0{word-spacing:-10.666667pt;}
.wsb3{word-spacing:-5.600000pt;}
.wsb6{word-spacing:-4.800000pt;}
.ws66{word-spacing:-4.000000pt;}
.wsa2{word-spacing:-3.786667pt;}
.ws31{word-spacing:-3.680000pt;}
.ws7e{word-spacing:-3.466667pt;}
.ws3f{word-spacing:-3.413333pt;}
.ws3e{word-spacing:-2.933333pt;}
.ws24{word-spacing:-2.880000pt;}
.ws18{word-spacing:-2.773333pt;}
.ws37{word-spacing:-2.666667pt;}
.wsf{word-spacing:-2.506667pt;}
.ws80{word-spacing:-2.453333pt;}
.ws15{word-spacing:-2.133333pt;}
.ws19{word-spacing:-2.080000pt;}
.ws93{word-spacing:-1.973333pt;}
.wsbc{word-spacing:-1.920000pt;}
.ws7a{word-spacing:-1.866667pt;}
.ws91{word-spacing:-1.706667pt;}
.ws98{word-spacing:-1.653333pt;}
.wsa1{word-spacing:-1.600000pt;}
.wsac{word-spacing:-1.546667pt;}
.ws4{word-spacing:-1.440000pt;}
.ws2d{word-spacing:-1.280000pt;}
.ws6d{word-spacing:-1.226667pt;}
.ws71{word-spacing:-1.066667pt;}
.ws2f{word-spacing:-0.800000pt;}
.ws4d{word-spacing:-0.586667pt;}
.ws5a{word-spacing:-0.533333pt;}
.ws6b{word-spacing:-0.320000pt;}
.wsaa{word-spacing:-0.266667pt;}
.ws16{word-spacing:-0.213333pt;}
.ws29{word-spacing:-0.160000pt;}
.ws17{word-spacing:-0.106667pt;}
.wsab{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws35{word-spacing:0.053333pt;}
.ws3b{word-spacing:0.213333pt;}
.ws4b{word-spacing:0.373333pt;}
.wsbd{word-spacing:0.426667pt;}
.ws7f{word-spacing:0.533333pt;}
.ws49{word-spacing:0.586667pt;}
.ws1{word-spacing:0.640000pt;}
.ws79{word-spacing:0.906667pt;}
.ws7{word-spacing:0.912000pt;}
.wsa4{word-spacing:0.960000pt;}
.ws3d{word-spacing:1.013333pt;}
.ws2c{word-spacing:1.226667pt;}
.wsb2{word-spacing:1.280000pt;}
.ws33{word-spacing:1.440000pt;}
.wsa5{word-spacing:1.760000pt;}
.ws97{word-spacing:1.866667pt;}
.ws8{word-spacing:2.016000pt;}
.ws32{word-spacing:2.026667pt;}
.ws8b{word-spacing:2.133333pt;}
.ws88{word-spacing:2.186667pt;}
.ws89{word-spacing:2.240000pt;}
.ws36{word-spacing:2.293333pt;}
.ws8f{word-spacing:2.400000pt;}
.ws55{word-spacing:2.613333pt;}
.ws6c{word-spacing:2.720000pt;}
.ws27{word-spacing:2.826667pt;}
.ws94{word-spacing:2.880000pt;}
.ws34{word-spacing:3.146667pt;}
.ws78{word-spacing:3.200000pt;}
.ws43{word-spacing:3.360000pt;}
.wsb1{word-spacing:3.466667pt;}
.wsd{word-spacing:3.520000pt;}
.wsa9{word-spacing:3.733333pt;}
.ws42{word-spacing:4.000000pt;}
.ws25{word-spacing:4.053333pt;}
.ws82{word-spacing:4.160000pt;}
.ws10{word-spacing:4.373333pt;}
.wsa{word-spacing:4.512000pt;}
.ws54{word-spacing:4.693333pt;}
.ws30{word-spacing:4.960000pt;}
.wsa6{word-spacing:5.013333pt;}
.ws6e{word-spacing:5.066667pt;}
.ws56{word-spacing:5.120000pt;}
.ws13{word-spacing:5.386667pt;}
.ws4f{word-spacing:5.440000pt;}
.ws46{word-spacing:5.493333pt;}
.ws92{word-spacing:5.600000pt;}
.wse{word-spacing:5.706667pt;}
.ws58{word-spacing:5.813333pt;}
.ws7b{word-spacing:6.133333pt;}
.ws99{word-spacing:6.240000pt;}
.ws9e{word-spacing:6.293333pt;}
.ws2a{word-spacing:6.613333pt;}
.ws38{word-spacing:6.720000pt;}
.ws74{word-spacing:6.880000pt;}
.wsb{word-spacing:6.960000pt;}
.ws44{word-spacing:7.040000pt;}
.ws57{word-spacing:7.146667pt;}
.ws6{word-spacing:7.200000pt;}
.ws9{word-spacing:7.248000pt;}
.ws90{word-spacing:7.253333pt;}
.ws77{word-spacing:7.360000pt;}
.ws52{word-spacing:7.413333pt;}
.ws87{word-spacing:7.786667pt;}
.ws65{word-spacing:7.946667pt;}
.ws83{word-spacing:8.213333pt;}
.ws95{word-spacing:8.266667pt;}
.ws6a{word-spacing:8.320000pt;}
.ws5{word-spacing:8.352000pt;}
.ws3a{word-spacing:8.746667pt;}
.ws76{word-spacing:8.853333pt;}
.ws26{word-spacing:8.906667pt;}
.ws20{word-spacing:8.922667pt;}
.ws8a{word-spacing:8.960000pt;}
.ws72{word-spacing:9.173333pt;}
.ws5c{word-spacing:9.493333pt;}
.wsb8{word-spacing:9.600000pt;}
.wsb5{word-spacing:9.653333pt;}
.ws3c{word-spacing:9.973333pt;}
.wsad{word-spacing:10.026667pt;}
.ws40{word-spacing:10.240000pt;}
.ws48{word-spacing:10.346667pt;}
.ws39{word-spacing:10.400000pt;}
.ws67{word-spacing:10.506667pt;}
.wsa3{word-spacing:10.666667pt;}
.ws69{word-spacing:10.720000pt;}
.ws2b{word-spacing:10.773333pt;}
.wsc{word-spacing:11.040000pt;}
.ws53{word-spacing:11.413333pt;}
.ws81{word-spacing:11.573333pt;}
.ws12{word-spacing:11.626667pt;}
.ws59{word-spacing:11.733333pt;}
.ws96{word-spacing:11.786667pt;}
.ws70{word-spacing:11.840000pt;}
.ws11{word-spacing:12.160000pt;}
.wsba{word-spacing:12.213333pt;}
.ws2e{word-spacing:12.266667pt;}
.ws7d{word-spacing:12.800000pt;}
.ws14{word-spacing:12.853333pt;}
.wsa8{word-spacing:13.066667pt;}
.ws4a{word-spacing:13.173333pt;}
.ws4e{word-spacing:13.333333pt;}
.ws6f{word-spacing:13.440000pt;}
.ws75{word-spacing:13.600000pt;}
.ws86{word-spacing:13.760000pt;}
.wsb9{word-spacing:13.920000pt;}
.wsaf{word-spacing:14.453333pt;}
.ws64{word-spacing:14.560000pt;}
.wsa0{word-spacing:14.613333pt;}
.ws28{word-spacing:14.880000pt;}
.ws50{word-spacing:15.733333pt;}
.ws84{word-spacing:16.000000pt;}
.wsa7{word-spacing:17.226667pt;}
.ws41{word-spacing:18.506667pt;}
.ws68{word-spacing:18.560000pt;}
.wsae{word-spacing:18.986667pt;}
.ws4c{word-spacing:19.626667pt;}
.wsbb{word-spacing:20.480000pt;}
.ws7c{word-spacing:20.693333pt;}
.ws8e{word-spacing:21.280000pt;}
.ws5b{word-spacing:21.493333pt;}
.ws47{word-spacing:24.480000pt;}
.ws45{word-spacing:24.533333pt;}
.ws8c{word-spacing:25.120000pt;}
.ws9f{word-spacing:27.146667pt;}
.ws73{word-spacing:27.200000pt;}
.ws85{word-spacing:28.853333pt;}
.ws8d{word-spacing:28.906667pt;}
.ws1a{word-spacing:29.885333pt;}
.wsb4{word-spacing:34.453333pt;}
.ws51{word-spacing:34.880000pt;}
.wsb7{word-spacing:37.866667pt;}
.ws1b{word-spacing:343.390933pt;}
.ws0{word-spacing:1511.091200pt;}
._18{margin-left:-13.333333pt;}
._17{margin-left:-6.848000pt;}
._3{margin-left:-5.936000pt;}
._4{margin-left:-4.933333pt;}
._2{margin-left:-3.898667pt;}
._8{margin-left:-2.960000pt;}
._5{margin-left:-1.920000pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._6{width:2.320533pt;}
._a{width:4.000000pt;}
._b{width:5.744000pt;}
._d{width:6.661333pt;}
._10{width:10.880000pt;}
._14{width:14.192000pt;}
._16{width:19.146667pt;}
._f{width:37.120000pt;}
._11{width:38.117333pt;}
._12{width:39.077333pt;}
._15{width:49.173333pt;}
._7{width:51.200000pt;}
._c{width:59.626667pt;}
._13{width:60.800000pt;}
._9{width:62.256000pt;}
._e{width:66.240000pt;}
.fs1{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.y5c{bottom:82.808533pt;}
.ya3{bottom:84.141867pt;}
.y5b{bottom:101.475200pt;}
.ya2{bottom:102.141867pt;}
.yf6{bottom:111.475200pt;}
.ycd{bottom:111.690133pt;}
.y5a{bottom:120.141867pt;}
.y7c{bottom:128.141867pt;}
.yf5{bottom:129.475200pt;}
.ycc{bottom:129.690133pt;}
.y59{bottom:138.808533pt;}
.y7b{bottom:145.475200pt;}
.yf4{bottom:147.475200pt;}
.ycb{bottom:147.690133pt;}
.y58{bottom:157.475200pt;}
.y7a{bottom:162.808533pt;}
.yf3{bottom:165.475200pt;}
.y27{bottom:171.504400pt;}
.ya1{bottom:174.808533pt;}
.y57{bottom:176.141867pt;}
.y79{bottom:180.141867pt;}
.yf2{bottom:183.475200pt;}
.yca{bottom:183.690133pt;}
.y26{bottom:190.171067pt;}
.ya0{bottom:192.141867pt;}
.y56{bottom:194.808533pt;}
.y78{bottom:197.475200pt;}
.yf1{bottom:201.475200pt;}
.yc9{bottom:201.690133pt;}
.y25{bottom:208.837733pt;}
.y9f{bottom:209.475200pt;}
.y55{bottom:213.475200pt;}
.y77{bottom:214.808533pt;}
.yf0{bottom:219.475200pt;}
.yc8{bottom:219.690133pt;}
.y9e{bottom:226.808533pt;}
.y24{bottom:227.504400pt;}
.y54{bottom:232.141867pt;}
.yef{bottom:237.475200pt;}
.yc7{bottom:237.690133pt;}
.y9d{bottom:244.141867pt;}
.y23{bottom:246.171067pt;}
.y76{bottom:249.475200pt;}
.y53{bottom:250.808533pt;}
.yee{bottom:255.475200pt;}
.yc6{bottom:255.690133pt;}
.y9c{bottom:261.475200pt;}
.y22{bottom:264.837733pt;}
.y75{bottom:266.808533pt;}
.y52{bottom:269.475200pt;}
.yed{bottom:273.475200pt;}
.yc5{bottom:273.690133pt;}
.y9b{bottom:278.808533pt;}
.y21{bottom:283.504400pt;}
.y74{bottom:284.141867pt;}
.y51{bottom:288.141867pt;}
.yec{bottom:291.475200pt;}
.yc4{bottom:291.690133pt;}
.y73{bottom:301.475200pt;}
.y20{bottom:302.171067pt;}
.y5d{bottom:306.808533pt;}
.yeb{bottom:309.475200pt;}
.yc3{bottom:309.690133pt;}
.y9a{bottom:313.475200pt;}
.y72{bottom:318.808533pt;}
.y1f{bottom:320.837733pt;}
.y50{bottom:325.475200pt;}
.yea{bottom:327.475200pt;}
.yc2{bottom:327.690133pt;}
.y99{bottom:330.808533pt;}
.y71{bottom:336.141867pt;}
.y1e{bottom:339.504400pt;}
.y4f{bottom:344.141867pt;}
.ye9{bottom:345.475200pt;}
.yc1{bottom:345.690133pt;}
.y98{bottom:348.141867pt;}
.y70{bottom:353.475200pt;}
.y1d{bottom:358.171067pt;}
.y4e{bottom:362.808533pt;}
.ye8{bottom:363.475200pt;}
.yc0{bottom:363.690133pt;}
.y97{bottom:365.475200pt;}
.y6f{bottom:370.808533pt;}
.y1c{bottom:376.837733pt;}
.y4d{bottom:381.475200pt;}
.ybf{bottom:381.690133pt;}
.y96{bottom:382.808533pt;}
.y6e{bottom:388.141867pt;}
.y1b{bottom:395.504400pt;}
.ye7{bottom:399.475200pt;}
.ybe{bottom:399.690133pt;}
.y4c{bottom:400.141867pt;}
.y30{bottom:405.457733pt;}
.y6d{bottom:405.475200pt;}
.y1a{bottom:414.171067pt;}
.y95{bottom:417.475200pt;}
.ybd{bottom:417.690133pt;}
.y4b{bottom:418.808533pt;}
.y6c{bottom:422.808533pt;}
.y2f{bottom:425.457733pt;}
.y19{bottom:432.837733pt;}
.y94{bottom:434.808533pt;}
.ye6{bottom:435.475200pt;}
.ybc{bottom:435.690133pt;}
.y4a{bottom:437.475200pt;}
.y6b{bottom:440.141867pt;}
.y2e{bottom:445.457733pt;}
.y18{bottom:451.504400pt;}
.y93{bottom:452.141867pt;}
.ye5{bottom:453.475200pt;}
.ybb{bottom:453.690133pt;}
.y49{bottom:456.141867pt;}
.y6a{bottom:457.475200pt;}
.y92{bottom:469.475200pt;}
.ye4{bottom:471.475200pt;}
.yba{bottom:471.690133pt;}
.y48{bottom:474.808533pt;}
.y2d{bottom:481.457733pt;}
.y91{bottom:486.808533pt;}
.y17{bottom:488.873733pt;}
.ye3{bottom:489.475200pt;}
.yb9{bottom:489.690133pt;}
.y69{bottom:492.141867pt;}
.y47{bottom:493.475200pt;}
.y90{bottom:504.141867pt;}
.y16{bottom:504.869733pt;}
.ye2{bottom:507.475200pt;}
.yb8{bottom:507.690133pt;}
.y46{bottom:512.141867pt;}
.y15{bottom:520.865733pt;}
.y2c{bottom:521.457733pt;}
.y8f{bottom:521.475200pt;}
.ye1{bottom:525.476800pt;}
.yb7{bottom:525.690133pt;}
.y68{bottom:526.808533pt;}
.y45{bottom:530.808533pt;}
.y14{bottom:536.861733pt;}
.y8e{bottom:538.808533pt;}
.ye0{bottom:543.476800pt;}
.yb6{bottom:543.690133pt;}
.y67{bottom:544.141867pt;}
.y44{bottom:549.475200pt;}
.y13{bottom:552.857733pt;}
.y8d{bottom:556.141867pt;}
.y2b{bottom:557.457733pt;}
.y66{bottom:561.475200pt;}
.yb5{bottom:561.690133pt;}
.y43{bottom:568.141867pt;}
.y12{bottom:568.853733pt;}
.y8c{bottom:573.475200pt;}
.y65{bottom:578.808533pt;}
.ydf{bottom:579.476800pt;}
.yb4{bottom:579.690133pt;}
.y11{bottom:584.849733pt;}
.y42{bottom:586.808533pt;}
.y2a{bottom:589.457733pt;}
.y64{bottom:596.141867pt;}
.yde{bottom:597.476800pt;}
.yb3{bottom:597.690133pt;}
.y10{bottom:600.845733pt;}
.y41{bottom:605.475200pt;}
.y8b{bottom:608.141867pt;}
.y63{bottom:613.475200pt;}
.ydd{bottom:615.476800pt;}
.yb2{bottom:615.690133pt;}
.yf{bottom:616.841733pt;}
.y29{bottom:621.457733pt;}
.y40{bottom:624.141867pt;}
.y8a{bottom:625.475200pt;}
.y62{bottom:630.808533pt;}
.ye{bottom:632.837733pt;}
.ydc{bottom:633.476800pt;}
.y3f{bottom:642.808533pt;}
.y61{bottom:648.141867pt;}
.yd{bottom:648.837733pt;}
.ydb{bottom:651.476800pt;}
.yb1{bottom:651.690133pt;}
.y28{bottom:653.457733pt;}
.y89{bottom:660.141867pt;}
.y60{bottom:665.475200pt;}
.yda{bottom:669.476800pt;}
.yb0{bottom:669.690133pt;}
.y88{bottom:677.475200pt;}
.y3e{bottom:680.141867pt;}
.y5f{bottom:682.808533pt;}
.yc{bottom:684.841733pt;}
.yd9{bottom:687.476800pt;}
.yaf{bottom:687.690133pt;}
.y87{bottom:694.808533pt;}
.y3d{bottom:698.808533pt;}
.y5e{bottom:700.141867pt;}
.yb{bottom:700.837733pt;}
.yd8{bottom:705.476800pt;}
.yae{bottom:705.690133pt;}
.y86{bottom:712.141867pt;}
.ya{bottom:716.837733pt;}
.y3c{bottom:717.475200pt;}
.yd7{bottom:723.476800pt;}
.yad{bottom:723.690133pt;}
.y85{bottom:729.475200pt;}
.y3b{bottom:736.141867pt;}
.yd6{bottom:741.476800pt;}
.yac{bottom:741.690133pt;}
.y84{bottom:746.808533pt;}
.y3a{bottom:754.808533pt;}
.y9{bottom:756.841733pt;}
.yd5{bottom:759.476800pt;}
.yab{bottom:759.690133pt;}
.y83{bottom:764.141867pt;}
.y8{bottom:772.837733pt;}
.y39{bottom:773.475200pt;}
.yd4{bottom:777.476800pt;}
.yaa{bottom:777.690133pt;}
.y82{bottom:781.475200pt;}
.y7{bottom:788.837733pt;}
.y38{bottom:792.141867pt;}
.yd3{bottom:795.476800pt;}
.ya9{bottom:795.690133pt;}
.y81{bottom:798.808533pt;}
.y37{bottom:810.808533pt;}
.yd2{bottom:813.476800pt;}
.ya8{bottom:813.690133pt;}
.y80{bottom:816.141867pt;}
.y36{bottom:829.475200pt;}
.yd1{bottom:831.476800pt;}
.ya7{bottom:831.690133pt;}
.y7f{bottom:833.475200pt;}
.y6{bottom:835.511067pt;}
.y35{bottom:848.141867pt;}
.yd0{bottom:849.476800pt;}
.ya6{bottom:849.690133pt;}
.y7e{bottom:850.808533pt;}
.y5{bottom:858.171067pt;}
.y34{bottom:866.808533pt;}
.ycf{bottom:867.476800pt;}
.ya5{bottom:867.690133pt;}
.y7d{bottom:868.141867pt;}
.y33{bottom:885.475200pt;}
.yce{bottom:885.476800pt;}
.ya4{bottom:885.690133pt;}
.y4{bottom:910.554800pt;}
.y32{bottom:913.339333pt;}
.y3{bottom:923.888133pt;}
.h5{height:30.378667pt;}
.h4{height:30.720000pt;}
.h8{height:33.328125pt;}
.h7{height:36.145833pt;}
.h9{height:37.057292pt;}
.h3{height:37.333333pt;}
.h2{height:37.973333pt;}
.hb{height:41.066667pt;}
.ha{height:44.800000pt;}
.hd{height:46.660099pt;}
.hc{height:47.526765pt;}
.h6{height:54.218750pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.x10{left:57.957867pt;}
.xf{left:63.336133pt;}
.xe{left:65.385867pt;}
.x11{left:75.590533pt;}
.xd{left:199.278133pt;}
.x5{left:225.223333pt;}
.x6{left:273.643333pt;}
.x12{left:332.598400pt;}
.x13{left:355.278400pt;}
.x4{left:366.464133pt;}
.x14{left:374.396133pt;}
.x15{left:379.498533pt;}
.x8{left:391.594267pt;}
.x9{left:398.146267pt;}
.xb{left:425.666533pt;}
.xc{left:438.338533pt;}
.xa{left:530.204933pt;}
.x7{left:534.918400pt;}
.x3{left:545.952133pt;}
.x2{left:562.556267pt;}
.x16{left:631.627067pt;}
}




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