
    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_b4aecc87d301970639e9312d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.957031;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_2476b815ec60bef0a45b13e0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f6c0ae1d3219f7f9f081bc8d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a11207fd41bb6e4789b59971.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7e48789198eee9d043e0b740.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957031;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_f621f2f6c3e7aa25a157d5b1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c782805ed3d8321f77fac6e1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a909d8f8f60e8ba3eab6fda4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_67aa4f88d9e19642b3f1c292.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a5c5e1e3bfef53a6b8a267cb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.977539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.v3{vertical-align:30.240000px;}
.v4{vertical-align:36.000000px;}
.ls5{letter-spacing:-1.842000px;}
.ls16{letter-spacing:-1.440000px;}
.ls15{letter-spacing:-1.422000px;}
.ls7{letter-spacing:-0.972000px;}
.ls1f{letter-spacing:-0.936000px;}
.lse{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.498000px;}
.lsd{letter-spacing:-0.486600px;}
.ls10{letter-spacing:-0.423600px;}
.ls4{letter-spacing:-0.403200px;}
.lsf{letter-spacing:-0.368400px;}
.ls12{letter-spacing:-0.020160px;}
.ls3{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.017280px;}
.ls9{letter-spacing:0.020160px;}
.ls1d{letter-spacing:0.030240px;}
.ls17{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.301200px;}
.ls0{letter-spacing:0.345600px;}
.lsb{letter-spacing:0.466800px;}
.ls1{letter-spacing:0.498240px;}
.ls21{letter-spacing:0.507000px;}
.ls8{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.731520px;}
.ls19{letter-spacing:0.840000px;}
.ls20{letter-spacing:0.900000px;}
.ls11{letter-spacing:2.160000px;}
.ls2{letter-spacing:2.171520px;}
.ls1e{letter-spacing:3.600000px;}
.lsa{letter-spacing:22.320000px;}
.ls18{letter-spacing:37.906560px;}
.ls14{letter-spacing:63.838560px;}
.ls1c{letter-spacing:252.480960px;}
.ls1a{letter-spacing:253.860960px;}
.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;}
}
.wsb{word-spacing:-60.480000px;}
.wsc{word-spacing:-42.061200px;}
.wse{word-spacing:-41.790240px;}
.wsd{word-spacing:-41.760000px;}
.wsf{word-spacing:-15.627000px;}
.ws6{word-spacing:-15.140160px;}
.ws3{word-spacing:-15.120000px;}
.ws8{word-spacing:-15.099840px;}
.ws5{word-spacing:-14.633400px;}
.ws9{word-spacing:-13.680000px;}
.ws7{word-spacing:-13.244880px;}
.ws2{word-spacing:-13.182000px;}
.ws0{word-spacing:-12.614400px;}
.ws1{word-spacing:-11.175600px;}
.wsa{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._18{margin-left:-5.149440px;}
._11{margin-left:-4.043520px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._10{width:3.177600px;}
._f{width:4.241760px;}
._d{width:5.564160px;}
._e{width:7.386720px;}
._9{width:8.691840px;}
._8{width:9.875520px;}
._7{width:11.128320px;}
._15{width:12.640320px;}
._16{width:13.936320px;}
._a{width:16.511040px;}
._b{width:17.573760px;}
._c{width:18.836160px;}
._14{width:20.450400px;}
._13{width:22.078560px;}
._12{width:23.103360px;}
._1a{width:24.206880px;}
._19{width:25.341120px;}
._1b{width:33.817440px;}
._1c{width:35.144640px;}
._1e{width:46.325280px;}
._1f{width:47.374080px;}
._1d{width:48.468000px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._17{width:849.336000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs5{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:54.720000px;}
.fs2{font-size:57.600000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y28{bottom:3.240000px;}
.yf3{bottom:3.285000px;}
.yac{bottom:5.760000px;}
.yb1{bottom:11.880000px;}
.y75{bottom:12.240000px;}
.yb2{bottom:15.840000px;}
.yb0{bottom:20.520000px;}
.y27{bottom:20.550000px;}
.y7f{bottom:21.240000px;}
.y78{bottom:23.760000px;}
.yab{bottom:25.560000px;}
.y82{bottom:33.480000px;}
.y107{bottom:33.510000px;}
.y26{bottom:37.830000px;}
.ye{bottom:43.560000px;}
.yef{bottom:43.605000px;}
.y9a{bottom:43.920000px;}
.yb8{bottom:43.950000px;}
.yae{bottom:44.640000px;}
.yaa{bottom:45.360000px;}
.yf7{bottom:47.550000px;}
.yc4{bottom:53.640000px;}
.ydc{bottom:54.000000px;}
.yfa{bottom:54.045000px;}
.y97{bottom:56.520000px;}
.y104{bottom:56.565000px;}
.yb5{bottom:59.085000px;}
.y25{bottom:64.110000px;}
.yf6{bottom:64.830000px;}
.ya9{bottom:65.160000px;}
.yc{bottom:68.400000px;}
.y96{bottom:73.830000px;}
.y103{bottom:73.845000px;}
.y24{bottom:81.390000px;}
.yf5{bottom:82.110000px;}
.ya8{bottom:85.005000px;}
.y95{bottom:90.750000px;}
.y116{bottom:91.110000px;}
.y102{bottom:91.125000px;}
.ya{bottom:94.716000px;}
.y101{bottom:108.405000px;}
.y23{bottom:116.670000px;}
.y32{bottom:131.076000px;}
.y22{bottom:133.995000px;}
.y31{bottom:149.436000px;}
.yf9{bottom:150.150000px;}
.y21{bottom:151.275000px;}
.y14a{bottom:163.470000px;}
.y65{bottom:167.070000px;}
.y30{bottom:167.790000px;}
.y20{bottom:168.195000px;}
.yff{bottom:170.670000px;}
.y2f{bottom:173.190000px;}
.y149{bottom:180.030000px;}
.y1f{bottom:185.475000px;}
.y2e{bottom:186.150000px;}
.yfe{bottom:190.830000px;}
.y148{bottom:191.910000px;}
.y64{bottom:196.590000px;}
.y1e{bottom:202.755000px;}
.y2d{bottom:203.835000px;}
.y1ae{bottom:208.875000px;}
.yfd{bottom:211.035000px;}
.y63{bottom:213.915000px;}
.y147{bottom:218.235000px;}
.y1d{bottom:220.035000px;}
.y121{bottom:222.915000px;}
.y1ad{bottom:226.155000px;}
.y2b{bottom:230.835000px;}
.yfc{bottom:231.195000px;}
.y146{bottom:235.515000px;}
.y2c{bottom:236.235000px;}
.y1c{bottom:237.315000px;}
.yda{bottom:238.395000px;}
.y62{bottom:240.195000px;}
.y1ac{bottom:243.435000px;}
.y2a{bottom:248.115000px;}
.yfb{bottom:251.715000px;}
.y145{bottom:252.795000px;}
.y1b{bottom:254.595000px;}
.y61{bottom:257.475000px;}
.y120{bottom:258.195000px;}
.y1ab{bottom:260.355000px;}
.yd9{bottom:264.675000px;}
.y144{bottom:270.075000px;}
.yf8{bottom:271.875000px;}
.y1a{bottom:271.905000px;}
.y60{bottom:274.755000px;}
.y11f{bottom:275.475000px;}
.y89{bottom:276.195000px;}
.y1aa{bottom:277.635000px;}
.yd8{bottom:281.955000px;}
.y29{bottom:292.035000px;}
.y11e{bottom:292.755000px;}
.y88{bottom:293.475000px;}
.y1a9{bottom:294.915000px;}
.y143{bottom:296.355000px;}
.yd7{bottom:298.875000px;}
.y19{bottom:307.185000px;}
.y5f{bottom:308.955000px;}
.yf4{bottom:309.315000px;}
.y87{bottom:310.755000px;}
.y1a8{bottom:312.195000px;}
.y18{bottom:317.235000px;}
.y142{bottom:322.635000px;}
.yd6{bottom:325.185000px;}
.y5e{bottom:326.265000px;}
.y86{bottom:328.065000px;}
.y1a7{bottom:329.505000px;}
.y141{bottom:339.945000px;}
.yd1{bottom:342.465000px;}
.y5d{bottom:343.545000px;}
.y118{bottom:344.985000px;}
.y1a6{bottom:346.785000px;}
.ya4{bottom:350.745000px;}
.y140{bottom:357.225000px;}
.yd5{bottom:362.625000px;}
.y81{bottom:362.985000px;}
.y1a5{bottom:364.065000px;}
.y11d{bottom:365.145000px;}
.y5c{bottom:369.825000px;}
.y13f{bottom:374.505000px;}
.y17a{bottom:378.825000px;}
.y1a4{bottom:381.345000px;}
.yd4{bottom:382.785000px;}
.y85{bottom:383.145000px;}
.y11c{bottom:385.305000px;}
.ya3{bottom:386.025000px;}
.y5b{bottom:387.105000px;}
.y1a3{bottom:398.625000px;}
.y13e{bottom:400.785000px;}
.yd3{bottom:402.945000px;}
.y84{bottom:403.305000px;}
.y5a{bottom:404.385000px;}
.y11b{bottom:405.825000px;}
.y179{bottom:414.105000px;}
.y1a2{bottom:415.905000px;}
.ya2{bottom:420.585000px;}
.y59{bottom:421.665000px;}
.yd2{bottom:423.465000px;}
.y83{bottom:423.825000px;}
.y11a{bottom:425.985000px;}
.yee{bottom:426.345000px;}
.y13d{bottom:426.705000px;}
.y178{bottom:431.385000px;}
.y1a1{bottom:433.185000px;}
.ya1{bottom:437.865000px;}
.y58{bottom:438.945000px;}
.yd0{bottom:443.625000px;}
.y80{bottom:443.985000px;}
.y119{bottom:446.145000px;}
.yf2{bottom:446.505000px;}
.y177{bottom:448.665000px;}
.y1a0{bottom:450.150000px;}
.y160{bottom:454.470000px;}
.ya0{bottom:455.190000px;}
.y13c{bottom:461.310000px;}
.ycf{bottom:463.830000px;}
.y7e{bottom:464.190000px;}
.y57{bottom:465.270000px;}
.y176{bottom:465.990000px;}
.y117{bottom:466.350000px;}
.yf1{bottom:466.710000px;}
.y19f{bottom:467.430000px;}
.y15f{bottom:471.750000px;}
.y56{bottom:482.550000px;}
.y175{bottom:483.270000px;}
.y19e{bottom:484.710000px;}
.y15e{bottom:485.790000px;}
.yf0{bottom:487.230000px;}
.y13b{bottom:487.590000px;}
.y9f{bottom:490.470000px;}
.y15d{bottom:493.350000px;}
.y55{bottom:499.830000px;}
.y174{bottom:500.550000px;}
.y19d{bottom:501.990000px;}
.y115{bottom:503.790000px;}
.y99{bottom:507.390000px;}
.y13a{bottom:513.870000px;}
.y15c{bottom:514.590000px;}
.y54{bottom:517.110000px;}
.y173{bottom:517.830000px;}
.y19c{bottom:519.270000px;}
.y7d{bottom:520.710000px;}
.y9e{bottom:527.550000px;}
.yce{bottom:529.350000px;}
.y139{bottom:531.150000px;}
.y15b{bottom:531.870000px;}
.y53{bottom:534.030000px;}
.y19b{bottom:536.550000px;}
.y7c{bottom:537.990000px;}
.ycd{bottom:546.630000px;}
.yed{bottom:547.710000px;}
.y9d{bottom:548.070000px;}
.y138{bottom:548.430000px;}
.y15a{bottom:549.150000px;}
.y52{bottom:551.310000px;}
.y172{bottom:552.750000px;}
.y19a{bottom:553.830000px;}
.ycc{bottom:563.910000px;}
.y137{bottom:565.710000px;}
.y159{bottom:566.430000px;}
.y7b{bottom:567.150000px;}
.y9c{bottom:568.230000px;}
.y199{bottom:571.110000px;}
.y51{bottom:577.620000px;}
.ycb{bottom:581.220000px;}
.y158{bottom:583.740000px;}
.y77{bottom:584.100000px;}
.y171{bottom:588.060000px;}
.y9b{bottom:588.420000px;}
.y136{bottom:592.020000px;}
.y50{bottom:594.900000px;}
.y157{bottom:601.020000px;}
.y7a{bottom:604.620000px;}
.y170{bottom:605.340000px;}
.y198{bottom:605.700000px;}
.yec{bottom:606.780000px;}
.yca{bottom:607.500000px;}
.y98{bottom:608.580000px;}
.y4f{bottom:612.180000px;}
.y135{bottom:618.300000px;}
.y16f{bottom:622.620000px;}
.y197{bottom:622.980000px;}
.yc3{bottom:624.420000px;}
.y79{bottom:624.780000px;}
.y94{bottom:629.100000px;}
.y4e{bottom:629.460000px;}
.y110{bottom:629.820000px;}
.y134{bottom:635.580000px;}
.y156{bottom:636.300000px;}
.y16e{bottom:639.900000px;}
.y196{bottom:640.260000px;}
.yeb{bottom:642.060000px;}
.yc9{bottom:644.580000px;}
.y76{bottom:644.940000px;}
.y4d{bottom:646.740000px;}
.y114{bottom:650.340000px;}
.y133{bottom:652.860000px;}
.y16d{bottom:657.180000px;}
.yea{bottom:659.340000px;}
.y17{bottom:661.500000px;}
.y4c{bottom:664.020000px;}
.yc8{bottom:664.740000px;}
.y74{bottom:665.100000px;}
.y132{bottom:669.780000px;}
.y113{bottom:670.500000px;}
.y155{bottom:671.580000px;}
.y195{bottom:674.460000px;}
.ye9{bottom:676.620000px;}
.y4b{bottom:681.300000px;}
.yc7{bottom:685.260000px;}
.y154{bottom:688.860000px;}
.y112{bottom:690.660000px;}
.y194{bottom:691.740000px;}
.y16c{bottom:692.460000px;}
.y131{bottom:696.060000px;}
.y16{bottom:696.420000px;}
.y73{bottom:703.650000px;}
.yc6{bottom:705.450000px;}
.y153{bottom:705.810000px;}
.y4a{bottom:707.610000px;}
.y193{bottom:709.050000px;}
.y16b{bottom:709.770000px;}
.y111{bottom:710.850000px;}
.ye3{bottom:711.570000px;}
.y130{bottom:722.370000px;}
.y152{bottom:723.090000px;}
.yc5{bottom:725.610000px;}
.y192{bottom:726.330000px;}
.y16a{bottom:727.050000px;}
.y14{bottom:731.370000px;}
.ye8{bottom:732.090000px;}
.y72{bottom:732.810000px;}
.y15{bottom:737.490000px;}
.y151{bottom:740.370000px;}
.y49{bottom:742.530000px;}
.y191{bottom:743.610000px;}
.y169{bottom:744.330000px;}
.yc2{bottom:745.770000px;}
.y10f{bottom:751.530000px;}
.ye7{bottom:752.250000px;}
.ya7{bottom:755.130000px;}
.y12f{bottom:757.650000px;}
.y190{bottom:760.890000px;}
.y168{bottom:761.610000px;}
.yc1{bottom:766.290000px;}
.y71{bottom:768.090000px;}
.y13{bottom:768.450000px;}
.y10e{bottom:771.690000px;}
.ye6{bottom:772.410000px;}
.y150{bottom:775.650000px;}
.y48{bottom:777.810000px;}
.y18f{bottom:778.170000px;}
.y167{bottom:778.890000px;}
.ye5{bottom:792.570000px;}
.y12e{bottom:792.930000px;}
.y47{bottom:795.090000px;}
.y18e{bottom:795.450000px;}
.y166{bottom:795.810000px;}
.yaf{bottom:800.490000px;}
.y70{bottom:803.370000px;}
.y12{bottom:808.410000px;}
.y12d{bottom:810.210000px;}
.y14f{bottom:810.930000px;}
.y46{bottom:812.370000px;}
.y18d{bottom:812.730000px;}
.ye4{bottom:813.090000px;}
.yc0{bottom:813.450000px;}
.y12c{bottom:827.535000px;}
.y14e{bottom:828.255000px;}
.y45{bottom:829.695000px;}
.y18c{bottom:830.055000px;}
.y165{bottom:830.415000px;}
.ybf{bottom:830.775000px;}
.ye2{bottom:833.295000px;}
.y10d{bottom:837.255000px;}
.yad{bottom:837.975000px;}
.y6f{bottom:838.695000px;}
.y11{bottom:839.415000px;}
.y12b{bottom:844.815000px;}
.y14d{bottom:845.535000px;}
.y44{bottom:846.975000px;}
.y164{bottom:847.695000px;}
.ybe{bottom:848.055000px;}
.y17e{bottom:848.415000px;}
.ye1{bottom:853.455000px;}
.y10c{bottom:854.535000px;}
.y6e{bottom:855.975000px;}
.ya6{bottom:858.495000px;}
.y14c{bottom:862.815000px;}
.y18b{bottom:864.255000px;}
.y163{bottom:864.975000px;}
.ybd{bottom:865.335000px;}
.y17d{bottom:865.695000px;}
.y10b{bottom:871.815000px;}
.y6d{bottom:873.255000px;}
.ya5{bottom:878.655000px;}
.y12a{bottom:880.095000px;}
.y18a{bottom:881.535000px;}
.y10{bottom:882.255000px;}
.ybc{bottom:882.615000px;}
.y17c{bottom:882.975000px;}
.y6c{bottom:890.535000px;}
.y129{bottom:897.375000px;}
.y14b{bottom:898.095000px;}
.y189{bottom:898.815000px;}
.y43{bottom:899.535000px;}
.y17b{bottom:900.255000px;}
.ye0{bottom:900.975000px;}
.y10a{bottom:907.095000px;}
.y128{bottom:914.655000px;}
.y188{bottom:916.095000px;}
.y42{bottom:916.815000px;}
.yb7{bottom:917.535000px;}
.ydf{bottom:918.255000px;}
.yf{bottom:918.615000px;}
.y106{bottom:924.015000px;}
.y6b{bottom:925.815000px;}
.y93{bottom:933.375000px;}
.y41{bottom:934.095000px;}
.y162{bottom:934.815000px;}
.yde{bottom:935.535000px;}
.ybb{bottom:938.055000px;}
.y9{bottom:941.295000px;}
.y109{bottom:944.175000px;}
.y127{bottom:949.575000px;}
.y92{bottom:950.655000px;}
.y40{bottom:951.375000px;}
.y6a{bottom:952.095000px;}
.y8{bottom:958.245000px;}
.ydb{bottom:961.485000px;}
.y108{bottom:964.365000px;}
.y126{bottom:966.885000px;}
.y91{bottom:967.605000px;}
.y187{bottom:967.965000px;}
.y69{bottom:969.405000px;}
.y7{bottom:972.285000px;}
.yba{bottom:978.405000px;}
.ydd{bottom:981.645000px;}
.y90{bottom:984.885000px;}
.y186{bottom:985.245000px;}
.y3f{bottom:986.325000px;}
.y68{bottom:986.685000px;}
.yb9{bottom:998.565000px;}
.y8c{bottom:1002.165000px;}
.y185{bottom:1002.525000px;}
.y3e{bottom:1003.605000px;}
.y105{bottom:1005.045000px;}
.yb6{bottom:1019.085000px;}
.y125{bottom:1019.445000px;}
.y184{bottom:1019.805000px;}
.y3d{bottom:1020.885000px;}
.y8f{bottom:1022.325000px;}
.y100{bottom:1025.205000px;}
.y6{bottom:1027.005000px;}
.y183{bottom:1037.085000px;}
.y3c{bottom:1038.165000px;}
.yb4{bottom:1039.245000px;}
.y8e{bottom:1042.485000px;}
.y67{bottom:1047.165000px;}
.y5{bottom:1052.565000px;}
.y182{bottom:1054.005000px;}
.y124{bottom:1054.725000px;}
.y3b{bottom:1055.445000px;}
.y8d{bottom:1062.645000px;}
.y181{bottom:1071.285000px;}
.y123{bottom:1072.005000px;}
.y4{bottom:1072.725000px;}
.y66{bottom:1073.445000px;}
.y8b{bottom:1083.210000px;}
.y180{bottom:1088.610000px;}
.y161{bottom:1090.050000px;}
.y3a{bottom:1090.770000px;}
.y3{bottom:1094.010000px;}
.y8a{bottom:1103.370000px;}
.y17f{bottom:1105.890000px;}
.y122{bottom:1107.330000px;}
.y39{bottom:1108.050000px;}
.y2{bottom:1114.530000px;}
.y38{bottom:1125.330000px;}
.y1{bottom:1131.450000px;}
.yb3{bottom:1142.250000px;}
.y37{bottom:1142.610000px;}
.y36{bottom:1166.370000px;}
.y35{bottom:1180.410000px;}
.y34{bottom:1201.290000px;}
.y33{bottom:1227.600000px;}
.h7{height:8.640000px;}
.h9{height:15.516000px;}
.h14{height:16.920000px;}
.h12{height:17.280000px;}
.h16{height:17.316000px;}
.h1c{height:26.265000px;}
.he{height:28.115859px;}
.hc{height:28.818281px;}
.h29{height:34.560000px;}
.h1f{height:34.596000px;}
.h22{height:34.920000px;}
.h2e{height:35.194219px;}
.h11{height:35.280000px;}
.h10{height:38.671172px;}
.h8{height:39.570469px;}
.h20{height:42.480000px;}
.h6{height:43.735781px;}
.h1e{height:44.031094px;}
.h24{height:44.280000px;}
.h2{height:44.828437px;}
.h5{height:45.101250px;}
.h1b{height:49.715859px;}
.h2d{height:49.848750px;}
.hb{height:52.066406px;}
.h15{height:53.280000px;}
.h27{height:53.316000px;}
.h3{height:53.367188px;}
.h4{height:57.290625px;}
.h13{height:57.960000px;}
.hf{height:60.155156px;}
.ha{height:61.905938px;}
.h30{height:71.194219px;}
.h2f{height:73.975781px;}
.h17{height:77.760000px;}
.h18{height:77.796000px;}
.h2b{height:78.156000px;}
.h21{height:82.116000px;}
.h25{height:97.920000px;}
.h1a{height:98.316000px;}
.h1d{height:100.116000px;}
.h28{height:114.156000px;}
.h23{height:118.476000px;}
.h26{height:118.836000px;}
.h19{height:122.796000px;}
.h2c{height:123.156000px;}
.h2a{height:131.436000px;}
.hd{height:330.225000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w29{width:1.440000px;}
.w61{width:21.636000px;}
.w22{width:24.156000px;}
.w67{width:27.396000px;}
.wf{width:32.076000px;}
.w59{width:33.156000px;}
.w65{width:37.800000px;}
.w38{width:48.276000px;}
.w3e{width:50.076000px;}
.w44{width:51.516000px;}
.w31{width:55.836000px;}
.w1d{width:63.756000px;}
.w16{width:69.876000px;}
.w51{width:70.236000px;}
.w47{width:73.476000px;}
.w57{width:74.556000px;}
.w10{width:81.756000px;}
.w55{width:83.556000px;}
.w2d{width:84.276000px;}
.w2f{width:84.996000px;}
.wb{width:91.836000px;}
.w25{width:93.276000px;}
.w5f{width:94.356000px;}
.w43{width:95.796000px;}
.w3d{width:95.832000px;}
.w56{width:96.156000px;}
.w4c{width:100.116000px;}
.w4d{width:100.476000px;}
.w20{width:103.356000px;}
.w1a{width:103.392000px;}
.w35{width:105.516000px;}
.w14{width:106.236000px;}
.w36{width:106.272000px;}
.w4b{width:111.672000px;}
.w1e{width:112.356000px;}
.wa{width:113.832000px;}
.wc{width:114.156000px;}
.w3c{width:116.316000px;}
.w2e{width:117.036000px;}
.w17{width:117.072000px;}
.w58{width:117.756000px;}
.w37{width:119.196000px;}
.w26{width:119.556000px;}
.w23{width:120.276000px;}
.w5d{width:123.912000px;}
.w13{width:124.596000px;}
.w42{width:126.756000px;}
.w64{width:126.792000px;}
.w1b{width:135.036000px;}
.w27{width:136.512000px;}
.w30{width:137.592000px;}
.wd{width:141.552000px;}
.w62{width:144.036000px;}
.w1f{width:144.432000px;}
.w60{width:145.152000px;}
.w5e{width:145.836000px;}
.w50{width:146.196000px;}
.w2a{width:150.195000px;}
.w24{width:151.635000px;}
.w45{width:156.675000px;}
.w1c{width:158.475000px;}
.w15{width:158.835000px;}
.w39{width:164.595000px;}
.w5c{width:165.675000px;}
.w28{width:167.835000px;}
.w4f{width:170.715000px;}
.w4a{width:172.155000px;}
.w63{width:173.595000px;}
.w19{width:176.115000px;}
.w32{width:176.835000px;}
.w52{width:179.355000px;}
.w12{width:186.945000px;}
.w3f{width:187.275000px;}
.we{width:190.515000px;}
.w4e{width:195.195000px;}
.w41{width:208.185000px;}
.w34{width:212.865000px;}
.w2c{width:232.665000px;}
.w3b{width:237.345000px;}
.w48{width:239.145000px;}
.w66{width:240.945000px;}
.w21{width:246.705000px;}
.w5a{width:271.545000px;}
.w46{width:290.670000px;}
.w54{width:304.710000px;}
.w8{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w7{width:341.430000px;}
.w33{width:661.245000px;}
.w9{width:662.685000px;}
.w2b{width:667.365000px;}
.w3a{width:671.685000px;}
.w40{width:674.565000px;}
.w18{width:676.365000px;}
.w11{width:679.245000px;}
.w6{width:679.965000px;}
.w5b{width:685.365000px;}
.w53{width:686.805000px;}
.w49{width:689.685000px;}
.w1{width:892.500000px;}
.w5{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x7d{left:-1.440000px;}
.x0{left:0.000000px;}
.x52{left:1.800000px;}
.x1b{left:4.716000px;}
.x6f{left:5.760000px;}
.x79{left:6.840000px;}
.x9{left:8.640000px;}
.x53{left:11.160000px;}
.x44{left:12.600000px;}
.x1f{left:14.760000px;}
.x5b{left:16.200000px;}
.x21{left:19.800000px;}
.x55{left:21.600000px;}
.x4b{left:22.680000px;}
.x38{left:23.796000px;}
.x2e{left:25.200000px;}
.x48{left:27.720000px;}
.x2b{left:29.919000px;}
.x65{left:30.990000px;}
.x68{left:32.400000px;}
.x32{left:34.959000px;}
.x5f{left:36.390000px;}
.x26{left:38.520000px;}
.x2a{left:39.960000px;}
.x6c{left:41.040000px;}
.x1d{left:42.519000px;}
.x27{left:43.920000px;}
.x35{left:45.360000px;}
.x4f{left:46.470000px;}
.x31{left:48.630000px;}
.x64{left:50.430000px;}
.x59{left:51.870000px;}
.x4e{left:53.310000px;}
.x3d{left:54.360000px;}
.x6d{left:55.800000px;}
.x28{left:57.630000px;}
.x51{left:59.079000px;}
.x7b{left:63.720000px;}
.x24{left:64.800000px;}
.x3e{left:66.270000px;}
.x34{left:69.870000px;}
.x50{left:70.950000px;}
.x7c{left:72.750000px;}
.x29{left:82.110000px;}
.x77{left:84.630000px;}
.x8b{left:89.685000px;}
.x46{left:92.925000px;}
.x7{left:106.235987px;}
.x3f{left:107.676000px;}
.x40{left:109.476000px;}
.x17{left:111.275987px;}
.x49{left:112.356000px;}
.x36{left:113.796000px;}
.x37{left:115.236000px;}
.x66{left:119.916000px;}
.xb{left:121.715987px;}
.xd{left:123.515987px;}
.x1a{left:125.676000px;}
.x1c{left:127.476000px;}
.x47{left:133.632000px;}
.x87{left:135.432000px;}
.x8c{left:141.192000px;}
.x82{left:145.512000px;}
.x25{left:159.555000px;}
.x8d{left:169.274987px;}
.x63{left:172.875000px;}
.x72{left:174.315000px;}
.x5e{left:175.755000px;}
.x3c{left:178.995000px;}
.x18{left:180.794987px;}
.x58{left:183.315000px;}
.x33{left:192.675000px;}
.x12{left:224.744987px;}
.x1e{left:244.545000px;}
.x2{left:254.264987px;}
.x41{left:256.785000px;}
.xc{left:258.584987px;}
.x4a{left:268.305000px;}
.x8e{left:271.544987px;}
.x6{left:274.064987px;}
.x83{left:282.345000px;}
.x73{left:287.385000px;}
.x88{left:290.625000px;}
.x39{left:294.585000px;}
.xa{left:304.350000px;}
.x2c{left:312.990000px;}
.x16{left:322.349987px;}
.x67{left:332.790000px;}
.x20{left:337.830000px;}
.x13{left:339.984000px;}
.xf{left:343.589987px;}
.x42{left:350.070000px;}
.x5{left:363.389987px;}
.x4{left:379.949987px;}
.x3a{left:387.870000px;}
.x3{left:398.339987px;}
.x74{left:400.500000px;}
.x2d{left:406.260000px;}
.x84{left:408.060000px;}
.xe{left:410.579987px;}
.x6e{left:416.340000px;}
.x89{left:418.860000px;}
.x7e{left:419.940000px;}
.x8{left:446.579987px;}
.x19{left:447.660000px;}
.x54{left:448.740000px;}
.x5a{left:450.540000px;}
.x22{left:453.420000px;}
.x43{left:455.220000px;}
.x69{left:460.980000px;}
.x60{left:480.780000px;}
.x4c{left:484.020000px;}
.x70{left:491.610000px;}
.x14{left:493.049973px;}
.x15{left:498.089987px;}
.x75{left:502.050000px;}
.x7f{left:504.930000px;}
.x8a{left:516.090000px;}
.x2f{left:532.650000px;}
.x45{left:538.770000px;}
.x10{left:544.169973px;}
.x78{left:548.130000px;}
.x11{left:549.209987px;}
.x85{left:555.330000px;}
.x5c{left:558.210000px;}
.x56{left:567.570000px;}
.x61{left:578.055000px;}
.x6a{left:579.495000px;}
.x23{left:596.415000px;}
.x71{left:599.295000px;}
.x80{left:602.535000px;}
.x76{left:603.975000px;}
.x7a{left:619.815000px;}
.x4d{left:622.335000px;}
.x3b{left:629.895000px;}
.x30{left:640.335000px;}
.x86{left:651.135000px;}
.x57{left:654.015000px;}
.x5d{left:666.285000px;}
.x6b{left:676.725000px;}
.x81{left:678.525000px;}
.x62{left:686.085000px;}
.x1{left:786.929987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.v3{vertical-align:26.880000pt;}
.v4{vertical-align:32.000000pt;}
.ls5{letter-spacing:-1.637333pt;}
.ls16{letter-spacing:-1.280000pt;}
.ls15{letter-spacing:-1.264000pt;}
.ls7{letter-spacing:-0.864000pt;}
.ls1f{letter-spacing:-0.832000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.442667pt;}
.lsd{letter-spacing:-0.432533pt;}
.ls10{letter-spacing:-0.376533pt;}
.ls4{letter-spacing:-0.358400pt;}
.lsf{letter-spacing:-0.327467pt;}
.ls12{letter-spacing:-0.017920pt;}
.ls3{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.015360pt;}
.ls9{letter-spacing:0.017920pt;}
.ls1d{letter-spacing:0.026880pt;}
.ls17{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.267733pt;}
.ls0{letter-spacing:0.307200pt;}
.lsb{letter-spacing:0.414933pt;}
.ls1{letter-spacing:0.442880pt;}
.ls21{letter-spacing:0.450667pt;}
.ls8{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.650240pt;}
.ls19{letter-spacing:0.746667pt;}
.ls20{letter-spacing:0.800000pt;}
.ls11{letter-spacing:1.920000pt;}
.ls2{letter-spacing:1.930240pt;}
.ls1e{letter-spacing:3.200000pt;}
.lsa{letter-spacing:19.840000pt;}
.ls18{letter-spacing:33.694720pt;}
.ls14{letter-spacing:56.745387pt;}
.ls1c{letter-spacing:224.427520pt;}
.ls1a{letter-spacing:225.654187pt;}
.wsb{word-spacing:-53.760000pt;}
.wsc{word-spacing:-37.387733pt;}
.wse{word-spacing:-37.146880pt;}
.wsd{word-spacing:-37.120000pt;}
.wsf{word-spacing:-13.890667pt;}
.ws6{word-spacing:-13.457920pt;}
.ws3{word-spacing:-13.440000pt;}
.ws8{word-spacing:-13.422080pt;}
.ws5{word-spacing:-13.007467pt;}
.ws9{word-spacing:-12.160000pt;}
.ws7{word-spacing:-11.773227pt;}
.ws2{word-spacing:-11.717333pt;}
.ws0{word-spacing:-11.212800pt;}
.ws1{word-spacing:-9.933867pt;}
.wsa{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._18{margin-left:-4.577280pt;}
._11{margin-left:-3.594240pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._10{width:2.824533pt;}
._f{width:3.770453pt;}
._d{width:4.945920pt;}
._e{width:6.565973pt;}
._9{width:7.726080pt;}
._8{width:8.778240pt;}
._7{width:9.891840pt;}
._15{width:11.235840pt;}
._16{width:12.387840pt;}
._a{width:14.676480pt;}
._b{width:15.621120pt;}
._c{width:16.743253pt;}
._14{width:18.178133pt;}
._13{width:19.625387pt;}
._12{width:20.536320pt;}
._1a{width:21.517227pt;}
._19{width:22.525440pt;}
._1b{width:30.059947pt;}
._1c{width:31.239680pt;}
._1e{width:41.178027pt;}
._1f{width:42.110293pt;}
._1d{width:43.082667pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._17{width:754.965333pt;}
._3{width:1414.378667pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:48.640000pt;}
.fs2{font-size:51.200000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y28{bottom:2.880000pt;}
.yf3{bottom:2.920000pt;}
.yac{bottom:5.120000pt;}
.yb1{bottom:10.560000pt;}
.y75{bottom:10.880000pt;}
.yb2{bottom:14.080000pt;}
.yb0{bottom:18.240000pt;}
.y27{bottom:18.266667pt;}
.y7f{bottom:18.880000pt;}
.y78{bottom:21.120000pt;}
.yab{bottom:22.720000pt;}
.y82{bottom:29.760000pt;}
.y107{bottom:29.786667pt;}
.y26{bottom:33.626667pt;}
.ye{bottom:38.720000pt;}
.yef{bottom:38.760000pt;}
.y9a{bottom:39.040000pt;}
.yb8{bottom:39.066667pt;}
.yae{bottom:39.680000pt;}
.yaa{bottom:40.320000pt;}
.yf7{bottom:42.266667pt;}
.yc4{bottom:47.680000pt;}
.ydc{bottom:48.000000pt;}
.yfa{bottom:48.040000pt;}
.y97{bottom:50.240000pt;}
.y104{bottom:50.280000pt;}
.yb5{bottom:52.520000pt;}
.y25{bottom:56.986667pt;}
.yf6{bottom:57.626667pt;}
.ya9{bottom:57.920000pt;}
.yc{bottom:60.800000pt;}
.y96{bottom:65.626667pt;}
.y103{bottom:65.640000pt;}
.y24{bottom:72.346667pt;}
.yf5{bottom:72.986667pt;}
.ya8{bottom:75.560000pt;}
.y95{bottom:80.666667pt;}
.y116{bottom:80.986667pt;}
.y102{bottom:81.000000pt;}
.ya{bottom:84.192000pt;}
.y101{bottom:96.360000pt;}
.y23{bottom:103.706667pt;}
.y32{bottom:116.512000pt;}
.y22{bottom:119.106667pt;}
.y31{bottom:132.832000pt;}
.yf9{bottom:133.466667pt;}
.y21{bottom:134.466667pt;}
.y14a{bottom:145.306667pt;}
.y65{bottom:148.506667pt;}
.y30{bottom:149.146667pt;}
.y20{bottom:149.506667pt;}
.yff{bottom:151.706667pt;}
.y2f{bottom:153.946667pt;}
.y149{bottom:160.026667pt;}
.y1f{bottom:164.866667pt;}
.y2e{bottom:165.466667pt;}
.yfe{bottom:169.626667pt;}
.y148{bottom:170.586667pt;}
.y64{bottom:174.746667pt;}
.y1e{bottom:180.226667pt;}
.y2d{bottom:181.186667pt;}
.y1ae{bottom:185.666667pt;}
.yfd{bottom:187.586667pt;}
.y63{bottom:190.146667pt;}
.y147{bottom:193.986667pt;}
.y1d{bottom:195.586667pt;}
.y121{bottom:198.146667pt;}
.y1ad{bottom:201.026667pt;}
.y2b{bottom:205.186667pt;}
.yfc{bottom:205.506667pt;}
.y146{bottom:209.346667pt;}
.y2c{bottom:209.986667pt;}
.y1c{bottom:210.946667pt;}
.yda{bottom:211.906667pt;}
.y62{bottom:213.506667pt;}
.y1ac{bottom:216.386667pt;}
.y2a{bottom:220.546667pt;}
.yfb{bottom:223.746667pt;}
.y145{bottom:224.706667pt;}
.y1b{bottom:226.306667pt;}
.y61{bottom:228.866667pt;}
.y120{bottom:229.506667pt;}
.y1ab{bottom:231.426667pt;}
.yd9{bottom:235.266667pt;}
.y144{bottom:240.066667pt;}
.yf8{bottom:241.666667pt;}
.y1a{bottom:241.693333pt;}
.y60{bottom:244.226667pt;}
.y11f{bottom:244.866667pt;}
.y89{bottom:245.506667pt;}
.y1aa{bottom:246.786667pt;}
.yd8{bottom:250.626667pt;}
.y29{bottom:259.586667pt;}
.y11e{bottom:260.226667pt;}
.y88{bottom:260.866667pt;}
.y1a9{bottom:262.146667pt;}
.y143{bottom:263.426667pt;}
.yd7{bottom:265.666667pt;}
.y19{bottom:273.053333pt;}
.y5f{bottom:274.626667pt;}
.yf4{bottom:274.946667pt;}
.y87{bottom:276.226667pt;}
.y1a8{bottom:277.506667pt;}
.y18{bottom:281.986667pt;}
.y142{bottom:286.786667pt;}
.yd6{bottom:289.053333pt;}
.y5e{bottom:290.013333pt;}
.y86{bottom:291.613333pt;}
.y1a7{bottom:292.893333pt;}
.y141{bottom:302.173333pt;}
.yd1{bottom:304.413333pt;}
.y5d{bottom:305.373333pt;}
.y118{bottom:306.653333pt;}
.y1a6{bottom:308.253333pt;}
.ya4{bottom:311.773333pt;}
.y140{bottom:317.533333pt;}
.yd5{bottom:322.333333pt;}
.y81{bottom:322.653333pt;}
.y1a5{bottom:323.613333pt;}
.y11d{bottom:324.573333pt;}
.y5c{bottom:328.733333pt;}
.y13f{bottom:332.893333pt;}
.y17a{bottom:336.733333pt;}
.y1a4{bottom:338.973333pt;}
.yd4{bottom:340.253333pt;}
.y85{bottom:340.573333pt;}
.y11c{bottom:342.493333pt;}
.ya3{bottom:343.133333pt;}
.y5b{bottom:344.093333pt;}
.y1a3{bottom:354.333333pt;}
.y13e{bottom:356.253333pt;}
.yd3{bottom:358.173333pt;}
.y84{bottom:358.493333pt;}
.y5a{bottom:359.453333pt;}
.y11b{bottom:360.733333pt;}
.y179{bottom:368.093333pt;}
.y1a2{bottom:369.693333pt;}
.ya2{bottom:373.853333pt;}
.y59{bottom:374.813333pt;}
.yd2{bottom:376.413333pt;}
.y83{bottom:376.733333pt;}
.y11a{bottom:378.653333pt;}
.yee{bottom:378.973333pt;}
.y13d{bottom:379.293333pt;}
.y178{bottom:383.453333pt;}
.y1a1{bottom:385.053333pt;}
.ya1{bottom:389.213333pt;}
.y58{bottom:390.173333pt;}
.yd0{bottom:394.333333pt;}
.y80{bottom:394.653333pt;}
.y119{bottom:396.573333pt;}
.yf2{bottom:396.893333pt;}
.y177{bottom:398.813333pt;}
.y1a0{bottom:400.133333pt;}
.y160{bottom:403.973333pt;}
.ya0{bottom:404.613333pt;}
.y13c{bottom:410.053333pt;}
.ycf{bottom:412.293333pt;}
.y7e{bottom:412.613333pt;}
.y57{bottom:413.573333pt;}
.y176{bottom:414.213333pt;}
.y117{bottom:414.533333pt;}
.yf1{bottom:414.853333pt;}
.y19f{bottom:415.493333pt;}
.y15f{bottom:419.333333pt;}
.y56{bottom:428.933333pt;}
.y175{bottom:429.573333pt;}
.y19e{bottom:430.853333pt;}
.y15e{bottom:431.813333pt;}
.yf0{bottom:433.093333pt;}
.y13b{bottom:433.413333pt;}
.y9f{bottom:435.973333pt;}
.y15d{bottom:438.533333pt;}
.y55{bottom:444.293333pt;}
.y174{bottom:444.933333pt;}
.y19d{bottom:446.213333pt;}
.y115{bottom:447.813333pt;}
.y99{bottom:451.013333pt;}
.y13a{bottom:456.773333pt;}
.y15c{bottom:457.413333pt;}
.y54{bottom:459.653333pt;}
.y173{bottom:460.293333pt;}
.y19c{bottom:461.573333pt;}
.y7d{bottom:462.853333pt;}
.y9e{bottom:468.933333pt;}
.yce{bottom:470.533333pt;}
.y139{bottom:472.133333pt;}
.y15b{bottom:472.773333pt;}
.y53{bottom:474.693333pt;}
.y19b{bottom:476.933333pt;}
.y7c{bottom:478.213333pt;}
.ycd{bottom:485.893333pt;}
.yed{bottom:486.853333pt;}
.y9d{bottom:487.173333pt;}
.y138{bottom:487.493333pt;}
.y15a{bottom:488.133333pt;}
.y52{bottom:490.053333pt;}
.y172{bottom:491.333333pt;}
.y19a{bottom:492.293333pt;}
.ycc{bottom:501.253333pt;}
.y137{bottom:502.853333pt;}
.y159{bottom:503.493333pt;}
.y7b{bottom:504.133333pt;}
.y9c{bottom:505.093333pt;}
.y199{bottom:507.653333pt;}
.y51{bottom:513.440000pt;}
.ycb{bottom:516.640000pt;}
.y158{bottom:518.880000pt;}
.y77{bottom:519.200000pt;}
.y171{bottom:522.720000pt;}
.y9b{bottom:523.040000pt;}
.y136{bottom:526.240000pt;}
.y50{bottom:528.800000pt;}
.y157{bottom:534.240000pt;}
.y7a{bottom:537.440000pt;}
.y170{bottom:538.080000pt;}
.y198{bottom:538.400000pt;}
.yec{bottom:539.360000pt;}
.yca{bottom:540.000000pt;}
.y98{bottom:540.960000pt;}
.y4f{bottom:544.160000pt;}
.y135{bottom:549.600000pt;}
.y16f{bottom:553.440000pt;}
.y197{bottom:553.760000pt;}
.yc3{bottom:555.040000pt;}
.y79{bottom:555.360000pt;}
.y94{bottom:559.200000pt;}
.y4e{bottom:559.520000pt;}
.y110{bottom:559.840000pt;}
.y134{bottom:564.960000pt;}
.y156{bottom:565.600000pt;}
.y16e{bottom:568.800000pt;}
.y196{bottom:569.120000pt;}
.yeb{bottom:570.720000pt;}
.yc9{bottom:572.960000pt;}
.y76{bottom:573.280000pt;}
.y4d{bottom:574.880000pt;}
.y114{bottom:578.080000pt;}
.y133{bottom:580.320000pt;}
.y16d{bottom:584.160000pt;}
.yea{bottom:586.080000pt;}
.y17{bottom:588.000000pt;}
.y4c{bottom:590.240000pt;}
.yc8{bottom:590.880000pt;}
.y74{bottom:591.200000pt;}
.y132{bottom:595.360000pt;}
.y113{bottom:596.000000pt;}
.y155{bottom:596.960000pt;}
.y195{bottom:599.520000pt;}
.ye9{bottom:601.440000pt;}
.y4b{bottom:605.600000pt;}
.yc7{bottom:609.120000pt;}
.y154{bottom:612.320000pt;}
.y112{bottom:613.920000pt;}
.y194{bottom:614.880000pt;}
.y16c{bottom:615.520000pt;}
.y131{bottom:618.720000pt;}
.y16{bottom:619.040000pt;}
.y73{bottom:625.466667pt;}
.yc6{bottom:627.066667pt;}
.y153{bottom:627.386667pt;}
.y4a{bottom:628.986667pt;}
.y193{bottom:630.266667pt;}
.y16b{bottom:630.906667pt;}
.y111{bottom:631.866667pt;}
.ye3{bottom:632.506667pt;}
.y130{bottom:642.106667pt;}
.y152{bottom:642.746667pt;}
.yc5{bottom:644.986667pt;}
.y192{bottom:645.626667pt;}
.y16a{bottom:646.266667pt;}
.y14{bottom:650.106667pt;}
.ye8{bottom:650.746667pt;}
.y72{bottom:651.386667pt;}
.y15{bottom:655.546667pt;}
.y151{bottom:658.106667pt;}
.y49{bottom:660.026667pt;}
.y191{bottom:660.986667pt;}
.y169{bottom:661.626667pt;}
.yc2{bottom:662.906667pt;}
.y10f{bottom:668.026667pt;}
.ye7{bottom:668.666667pt;}
.ya7{bottom:671.226667pt;}
.y12f{bottom:673.466667pt;}
.y190{bottom:676.346667pt;}
.y168{bottom:676.986667pt;}
.yc1{bottom:681.146667pt;}
.y71{bottom:682.746667pt;}
.y13{bottom:683.066667pt;}
.y10e{bottom:685.946667pt;}
.ye6{bottom:686.586667pt;}
.y150{bottom:689.466667pt;}
.y48{bottom:691.386667pt;}
.y18f{bottom:691.706667pt;}
.y167{bottom:692.346667pt;}
.ye5{bottom:704.506667pt;}
.y12e{bottom:704.826667pt;}
.y47{bottom:706.746667pt;}
.y18e{bottom:707.066667pt;}
.y166{bottom:707.386667pt;}
.yaf{bottom:711.546667pt;}
.y70{bottom:714.106667pt;}
.y12{bottom:718.586667pt;}
.y12d{bottom:720.186667pt;}
.y14f{bottom:720.826667pt;}
.y46{bottom:722.106667pt;}
.y18d{bottom:722.426667pt;}
.ye4{bottom:722.746667pt;}
.yc0{bottom:723.066667pt;}
.y12c{bottom:735.586667pt;}
.y14e{bottom:736.226667pt;}
.y45{bottom:737.506667pt;}
.y18c{bottom:737.826667pt;}
.y165{bottom:738.146667pt;}
.ybf{bottom:738.466667pt;}
.ye2{bottom:740.706667pt;}
.y10d{bottom:744.226667pt;}
.yad{bottom:744.866667pt;}
.y6f{bottom:745.506667pt;}
.y11{bottom:746.146667pt;}
.y12b{bottom:750.946667pt;}
.y14d{bottom:751.586667pt;}
.y44{bottom:752.866667pt;}
.y164{bottom:753.506667pt;}
.ybe{bottom:753.826667pt;}
.y17e{bottom:754.146667pt;}
.ye1{bottom:758.626667pt;}
.y10c{bottom:759.586667pt;}
.y6e{bottom:760.866667pt;}
.ya6{bottom:763.106667pt;}
.y14c{bottom:766.946667pt;}
.y18b{bottom:768.226667pt;}
.y163{bottom:768.866667pt;}
.ybd{bottom:769.186667pt;}
.y17d{bottom:769.506667pt;}
.y10b{bottom:774.946667pt;}
.y6d{bottom:776.226667pt;}
.ya5{bottom:781.026667pt;}
.y12a{bottom:782.306667pt;}
.y18a{bottom:783.586667pt;}
.y10{bottom:784.226667pt;}
.ybc{bottom:784.546667pt;}
.y17c{bottom:784.866667pt;}
.y6c{bottom:791.586667pt;}
.y129{bottom:797.666667pt;}
.y14b{bottom:798.306667pt;}
.y189{bottom:798.946667pt;}
.y43{bottom:799.586667pt;}
.y17b{bottom:800.226667pt;}
.ye0{bottom:800.866667pt;}
.y10a{bottom:806.306667pt;}
.y128{bottom:813.026667pt;}
.y188{bottom:814.306667pt;}
.y42{bottom:814.946667pt;}
.yb7{bottom:815.586667pt;}
.ydf{bottom:816.226667pt;}
.yf{bottom:816.546667pt;}
.y106{bottom:821.346667pt;}
.y6b{bottom:822.946667pt;}
.y93{bottom:829.666667pt;}
.y41{bottom:830.306667pt;}
.y162{bottom:830.946667pt;}
.yde{bottom:831.586667pt;}
.ybb{bottom:833.826667pt;}
.y9{bottom:836.706667pt;}
.y109{bottom:839.266667pt;}
.y127{bottom:844.066667pt;}
.y92{bottom:845.026667pt;}
.y40{bottom:845.666667pt;}
.y6a{bottom:846.306667pt;}
.y8{bottom:851.773333pt;}
.ydb{bottom:854.653333pt;}
.y108{bottom:857.213333pt;}
.y126{bottom:859.453333pt;}
.y91{bottom:860.093333pt;}
.y187{bottom:860.413333pt;}
.y69{bottom:861.693333pt;}
.y7{bottom:864.253333pt;}
.yba{bottom:869.693333pt;}
.ydd{bottom:872.573333pt;}
.y90{bottom:875.453333pt;}
.y186{bottom:875.773333pt;}
.y3f{bottom:876.733333pt;}
.y68{bottom:877.053333pt;}
.yb9{bottom:887.613333pt;}
.y8c{bottom:890.813333pt;}
.y185{bottom:891.133333pt;}
.y3e{bottom:892.093333pt;}
.y105{bottom:893.373333pt;}
.yb6{bottom:905.853333pt;}
.y125{bottom:906.173333pt;}
.y184{bottom:906.493333pt;}
.y3d{bottom:907.453333pt;}
.y8f{bottom:908.733333pt;}
.y100{bottom:911.293333pt;}
.y6{bottom:912.893333pt;}
.y183{bottom:921.853333pt;}
.y3c{bottom:922.813333pt;}
.yb4{bottom:923.773333pt;}
.y8e{bottom:926.653333pt;}
.y67{bottom:930.813333pt;}
.y5{bottom:935.613333pt;}
.y182{bottom:936.893333pt;}
.y124{bottom:937.533333pt;}
.y3b{bottom:938.173333pt;}
.y8d{bottom:944.573333pt;}
.y181{bottom:952.253333pt;}
.y123{bottom:952.893333pt;}
.y4{bottom:953.533333pt;}
.y66{bottom:954.173333pt;}
.y8b{bottom:962.853333pt;}
.y180{bottom:967.653333pt;}
.y161{bottom:968.933333pt;}
.y3a{bottom:969.573333pt;}
.y3{bottom:972.453333pt;}
.y8a{bottom:980.773333pt;}
.y17f{bottom:983.013333pt;}
.y122{bottom:984.293333pt;}
.y39{bottom:984.933333pt;}
.y2{bottom:990.693333pt;}
.y38{bottom:1000.293333pt;}
.y1{bottom:1005.733333pt;}
.yb3{bottom:1015.333333pt;}
.y37{bottom:1015.653333pt;}
.y36{bottom:1036.773333pt;}
.y35{bottom:1049.253333pt;}
.y34{bottom:1067.813333pt;}
.y33{bottom:1091.200000pt;}
.h7{height:7.680000pt;}
.h9{height:13.792000pt;}
.h14{height:15.040000pt;}
.h12{height:15.360000pt;}
.h16{height:15.392000pt;}
.h1c{height:23.346667pt;}
.he{height:24.991875pt;}
.hc{height:25.616250pt;}
.h29{height:30.720000pt;}
.h1f{height:30.752000pt;}
.h22{height:31.040000pt;}
.h2e{height:31.283750pt;}
.h11{height:31.360000pt;}
.h10{height:34.374375pt;}
.h8{height:35.173750pt;}
.h20{height:37.760000pt;}
.h6{height:38.876250pt;}
.h1e{height:39.138750pt;}
.h24{height:39.360000pt;}
.h2{height:39.847500pt;}
.h5{height:40.090000pt;}
.h1b{height:44.191875pt;}
.h2d{height:44.310000pt;}
.hb{height:46.281250pt;}
.h15{height:47.360000pt;}
.h27{height:47.392000pt;}
.h3{height:47.437500pt;}
.h4{height:50.925000pt;}
.h13{height:51.520000pt;}
.hf{height:53.471250pt;}
.ha{height:55.027500pt;}
.h30{height:63.283750pt;}
.h2f{height:65.756250pt;}
.h17{height:69.120000pt;}
.h18{height:69.152000pt;}
.h2b{height:69.472000pt;}
.h21{height:72.992000pt;}
.h25{height:87.040000pt;}
.h1a{height:87.392000pt;}
.h1d{height:88.992000pt;}
.h28{height:101.472000pt;}
.h23{height:105.312000pt;}
.h26{height:105.632000pt;}
.h19{height:109.152000pt;}
.h2c{height:109.472000pt;}
.h2a{height:116.832000pt;}
.hd{height:293.533333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w29{width:1.280000pt;}
.w61{width:19.232000pt;}
.w22{width:21.472000pt;}
.w67{width:24.352000pt;}
.wf{width:28.512000pt;}
.w59{width:29.472000pt;}
.w65{width:33.600000pt;}
.w38{width:42.912000pt;}
.w3e{width:44.512000pt;}
.w44{width:45.792000pt;}
.w31{width:49.632000pt;}
.w1d{width:56.672000pt;}
.w16{width:62.112000pt;}
.w51{width:62.432000pt;}
.w47{width:65.312000pt;}
.w57{width:66.272000pt;}
.w10{width:72.672000pt;}
.w55{width:74.272000pt;}
.w2d{width:74.912000pt;}
.w2f{width:75.552000pt;}
.wb{width:81.632000pt;}
.w25{width:82.912000pt;}
.w5f{width:83.872000pt;}
.w43{width:85.152000pt;}
.w3d{width:85.184000pt;}
.w56{width:85.472000pt;}
.w4c{width:88.992000pt;}
.w4d{width:89.312000pt;}
.w20{width:91.872000pt;}
.w1a{width:91.904000pt;}
.w35{width:93.792000pt;}
.w14{width:94.432000pt;}
.w36{width:94.464000pt;}
.w4b{width:99.264000pt;}
.w1e{width:99.872000pt;}
.wa{width:101.184000pt;}
.wc{width:101.472000pt;}
.w3c{width:103.392000pt;}
.w2e{width:104.032000pt;}
.w17{width:104.064000pt;}
.w58{width:104.672000pt;}
.w37{width:105.952000pt;}
.w26{width:106.272000pt;}
.w23{width:106.912000pt;}
.w5d{width:110.144000pt;}
.w13{width:110.752000pt;}
.w42{width:112.672000pt;}
.w64{width:112.704000pt;}
.w1b{width:120.032000pt;}
.w27{width:121.344000pt;}
.w30{width:122.304000pt;}
.wd{width:125.824000pt;}
.w62{width:128.032000pt;}
.w1f{width:128.384000pt;}
.w60{width:129.024000pt;}
.w5e{width:129.632000pt;}
.w50{width:129.952000pt;}
.w2a{width:133.506667pt;}
.w24{width:134.786667pt;}
.w45{width:139.266667pt;}
.w1c{width:140.866667pt;}
.w15{width:141.186667pt;}
.w39{width:146.306667pt;}
.w5c{width:147.266667pt;}
.w28{width:149.186667pt;}
.w4f{width:151.746667pt;}
.w4a{width:153.026667pt;}
.w63{width:154.306667pt;}
.w19{width:156.546667pt;}
.w32{width:157.186667pt;}
.w52{width:159.426667pt;}
.w12{width:166.173333pt;}
.w3f{width:166.466667pt;}
.we{width:169.346667pt;}
.w4e{width:173.506667pt;}
.w41{width:185.053333pt;}
.w34{width:189.213333pt;}
.w2c{width:206.813333pt;}
.w3b{width:210.973333pt;}
.w48{width:212.573333pt;}
.w66{width:214.173333pt;}
.w21{width:219.293333pt;}
.w5a{width:241.373333pt;}
.w46{width:258.373333pt;}
.w54{width:270.853333pt;}
.w8{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w7{width:303.493333pt;}
.w33{width:587.773333pt;}
.w9{width:589.053333pt;}
.w2b{width:593.213333pt;}
.w3a{width:597.053333pt;}
.w40{width:599.613333pt;}
.w18{width:601.213333pt;}
.w11{width:603.773333pt;}
.w6{width:604.413333pt;}
.w5b{width:609.213333pt;}
.w53{width:610.493333pt;}
.w49{width:613.053333pt;}
.w1{width:793.333333pt;}
.w5{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x7d{left:-1.280000pt;}
.x0{left:0.000000pt;}
.x52{left:1.600000pt;}
.x1b{left:4.192000pt;}
.x6f{left:5.120000pt;}
.x79{left:6.080000pt;}
.x9{left:7.680000pt;}
.x53{left:9.920000pt;}
.x44{left:11.200000pt;}
.x1f{left:13.120000pt;}
.x5b{left:14.400000pt;}
.x21{left:17.600000pt;}
.x55{left:19.200000pt;}
.x4b{left:20.160000pt;}
.x38{left:21.152000pt;}
.x2e{left:22.400000pt;}
.x48{left:24.640000pt;}
.x2b{left:26.594667pt;}
.x65{left:27.546667pt;}
.x68{left:28.800000pt;}
.x32{left:31.074667pt;}
.x5f{left:32.346667pt;}
.x26{left:34.240000pt;}
.x2a{left:35.520000pt;}
.x6c{left:36.480000pt;}
.x1d{left:37.794667pt;}
.x27{left:39.040000pt;}
.x35{left:40.320000pt;}
.x4f{left:41.306667pt;}
.x31{left:43.226667pt;}
.x64{left:44.826667pt;}
.x59{left:46.106667pt;}
.x4e{left:47.386667pt;}
.x3d{left:48.320000pt;}
.x6d{left:49.600000pt;}
.x28{left:51.226667pt;}
.x51{left:52.514667pt;}
.x7b{left:56.640000pt;}
.x24{left:57.600000pt;}
.x3e{left:58.906667pt;}
.x34{left:62.106667pt;}
.x50{left:63.066667pt;}
.x7c{left:64.666667pt;}
.x29{left:72.986667pt;}
.x77{left:75.226667pt;}
.x8b{left:79.720000pt;}
.x46{left:82.600000pt;}
.x7{left:94.431988pt;}
.x3f{left:95.712000pt;}
.x40{left:97.312000pt;}
.x17{left:98.911988pt;}
.x49{left:99.872000pt;}
.x36{left:101.152000pt;}
.x37{left:102.432000pt;}
.x66{left:106.592000pt;}
.xb{left:108.191988pt;}
.xd{left:109.791988pt;}
.x1a{left:111.712000pt;}
.x1c{left:113.312000pt;}
.x47{left:118.784000pt;}
.x87{left:120.384000pt;}
.x8c{left:125.504000pt;}
.x82{left:129.344000pt;}
.x25{left:141.826667pt;}
.x8d{left:150.466655pt;}
.x63{left:153.666667pt;}
.x72{left:154.946667pt;}
.x5e{left:156.226667pt;}
.x3c{left:159.106667pt;}
.x18{left:160.706655pt;}
.x58{left:162.946667pt;}
.x33{left:171.266667pt;}
.x12{left:199.773322pt;}
.x1e{left:217.373333pt;}
.x2{left:226.013322pt;}
.x41{left:228.253333pt;}
.xc{left:229.853322pt;}
.x4a{left:238.493333pt;}
.x8e{left:241.373322pt;}
.x6{left:243.613322pt;}
.x83{left:250.973333pt;}
.x73{left:255.453333pt;}
.x88{left:258.333333pt;}
.x39{left:261.853333pt;}
.xa{left:270.533333pt;}
.x2c{left:278.213333pt;}
.x16{left:286.533322pt;}
.x67{left:295.813333pt;}
.x20{left:300.293333pt;}
.x13{left:302.208000pt;}
.xf{left:305.413322pt;}
.x42{left:311.173333pt;}
.x5{left:323.013322pt;}
.x4{left:337.733322pt;}
.x3a{left:344.773333pt;}
.x3{left:354.079988pt;}
.x74{left:356.000000pt;}
.x2d{left:361.120000pt;}
.x84{left:362.720000pt;}
.xe{left:364.959988pt;}
.x6e{left:370.080000pt;}
.x89{left:372.320000pt;}
.x7e{left:373.280000pt;}
.x8{left:396.959988pt;}
.x19{left:397.920000pt;}
.x54{left:398.880000pt;}
.x5a{left:400.480000pt;}
.x22{left:403.040000pt;}
.x43{left:404.640000pt;}
.x69{left:409.760000pt;}
.x60{left:427.360000pt;}
.x4c{left:430.240000pt;}
.x70{left:436.986667pt;}
.x14{left:438.266643pt;}
.x15{left:442.746655pt;}
.x75{left:446.266667pt;}
.x7f{left:448.826667pt;}
.x8a{left:458.746667pt;}
.x2f{left:473.466667pt;}
.x45{left:478.906667pt;}
.x10{left:483.706643pt;}
.x78{left:487.226667pt;}
.x11{left:488.186655pt;}
.x85{left:493.626667pt;}
.x5c{left:496.186667pt;}
.x56{left:504.506667pt;}
.x61{left:513.826667pt;}
.x6a{left:515.106667pt;}
.x23{left:530.146667pt;}
.x71{left:532.706667pt;}
.x80{left:535.586667pt;}
.x76{left:536.866667pt;}
.x7a{left:550.946667pt;}
.x4d{left:553.186667pt;}
.x3b{left:559.906667pt;}
.x30{left:569.186667pt;}
.x86{left:578.786667pt;}
.x57{left:581.346667pt;}
.x5d{left:592.253333pt;}
.x6b{left:601.533333pt;}
.x81{left:603.133333pt;}
.x62{left:609.853333pt;}
.x1{left:699.493322pt;}
}




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