
    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_2cdfe8c5f52741c66958311f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_f810a252923639ae28120cc0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_55d614224733bdba3f1f5e4d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.022461;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_543005c66b956b52009919f9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.031738;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_62c81a1a8571430eea1e5160.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_3ca793f61ac2ae3eb35068e3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_9c23156cf84fb2977f20560c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_7a7bffe0eef393c7431cf0d7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.136719;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_d5121f80fba604dc47acc16c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_010c49db0ca16871b753bfce.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.964868;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_90a9a59bd12ee583f7097203.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.770020;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.m2{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);}
.v5{vertical-align:-5.460000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.986000px;}
.v6{vertical-align:18.822000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v4{vertical-align:27.006000px;}
.ls9{letter-spacing:-1.512000px;}
.ls18{letter-spacing:-1.080000px;}
.ls17{letter-spacing:-1.020000px;}
.ls5{letter-spacing:-0.918000px;}
.ls3{letter-spacing:-0.691200px;}
.ls6{letter-spacing:-0.660000px;}
.ls1b{letter-spacing:-0.629640px;}
.ls16{letter-spacing:-0.600000px;}
.ls15{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.420000px;}
.ls1a{letter-spacing:-0.283338px;}
.ls11{letter-spacing:-0.252000px;}
.ls14{letter-spacing:-0.240000px;}
.ls19{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.108000px;}
.ls2{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.900000px;}
.lsd{letter-spacing:0.960000px;}
.ls13{letter-spacing:1.080000px;}
.ls0{letter-spacing:43.181364px;}
.ls1{letter-spacing:43.181964px;}
.ls10{letter-spacing:100.674000px;}
.lse{letter-spacing:105.882000px;}
.lsf{letter-spacing:112.476000px;}
.ls7{letter-spacing:328.692000px;}
.ls8{letter-spacing:340.494000px;}
.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;}
}
.ws3{word-spacing:-17.928000px;}
.wsa6{word-spacing:-16.434000px;}
.ws6e{word-spacing:-15.780000px;}
.ws46{word-spacing:-15.660000px;}
.ws6d{word-spacing:-15.600000px;}
.ws2{word-spacing:-14.940000px;}
.ws36{word-spacing:-14.700000px;}
.ws87{word-spacing:-14.460000px;}
.ws94{word-spacing:-14.100000px;}
.wsa7{word-spacing:-13.392000px;}
.ws37{word-spacing:-13.230000px;}
.wsb1{word-spacing:-12.852000px;}
.ws4{word-spacing:-12.366000px;}
.wsa8{word-spacing:-12.312000px;}
.ws7{word-spacing:-12.150000px;}
.ws5{word-spacing:-11.448000px;}
.ws6{word-spacing:-11.232000px;}
.ws8{word-spacing:-10.992000px;}
.ws13{word-spacing:-10.800000px;}
.ws47{word-spacing:-10.458000px;}
.ws4a{word-spacing:-10.290000px;}
.ws1{word-spacing:-9.892800px;}
.ws0{word-spacing:-9.618000px;}
.ws1c{word-spacing:-8.675040px;}
.wsb7{word-spacing:-7.807536px;}
.wsae{word-spacing:-7.524198px;}
.wsaf{word-spacing:-7.177896px;}
.ws1d{word-spacing:-6.097014px;}
.wsb9{word-spacing:-3.510000px;}
.ws8f{word-spacing:-3.420000px;}
.ws84{word-spacing:-2.940000px;}
.ws61{word-spacing:-2.820000px;}
.ws9b{word-spacing:-2.700000px;}
.ws40{word-spacing:-2.592000px;}
.ws11{word-spacing:-2.538000px;}
.ws90{word-spacing:-2.460000px;}
.ws72{word-spacing:-2.400000px;}
.ws63{word-spacing:-2.340000px;}
.ws10{word-spacing:-2.268000px;}
.ws86{word-spacing:-2.160000px;}
.ws9d{word-spacing:-1.980000px;}
.ws39{word-spacing:-1.920000px;}
.wsa4{word-spacing:-1.860000px;}
.ws42{word-spacing:-1.728000px;}
.ws44{word-spacing:-1.674000px;}
.ws8e{word-spacing:-1.620000px;}
.wsb3{word-spacing:-1.512000px;}
.ws62{word-spacing:-1.440000px;}
.ws83{word-spacing:-1.404000px;}
.ws8c{word-spacing:-1.320000px;}
.ws60{word-spacing:-1.140000px;}
.ws78{word-spacing:-1.080000px;}
.wsaa{word-spacing:-1.026000px;}
.ws65{word-spacing:-0.960000px;}
.wsb2{word-spacing:-0.918000px;}
.ws73{word-spacing:-0.900000px;}
.ws16{word-spacing:-0.660000px;}
.ws97{word-spacing:-0.480000px;}
.ws69{word-spacing:-0.420000px;}
.ws7e{word-spacing:-0.300000px;}
.wsa{word-spacing:-0.216000px;}
.ws30{word-spacing:-0.180000px;}
.ws6b{word-spacing:-0.168000px;}
.wsad{word-spacing:-0.162000px;}
.ws8b{word-spacing:-0.120000px;}
.ws33{word-spacing:-0.060000px;}
.wsc{word-spacing:-0.054000px;}
.ws9{word-spacing:0.000000px;}
.ws85{word-spacing:0.060000px;}
.wsd{word-spacing:0.108000px;}
.ws3e{word-spacing:0.120000px;}
.ws35{word-spacing:0.180000px;}
.wsab{word-spacing:0.216000px;}
.ws8d{word-spacing:0.240000px;}
.ws6c{word-spacing:0.252000px;}
.ws32{word-spacing:0.420000px;}
.ws41{word-spacing:0.432000px;}
.wse{word-spacing:0.486000px;}
.ws17{word-spacing:0.540000px;}
.ws9c{word-spacing:0.600000px;}
.ws18{word-spacing:0.660000px;}
.wsb{word-spacing:0.691200px;}
.ws67{word-spacing:0.720000px;}
.ws82{word-spacing:0.780000px;}
.ws43{word-spacing:0.810000px;}
.ws1a{word-spacing:0.900000px;}
.ws12{word-spacing:0.918000px;}
.ws9f{word-spacing:1.020000px;}
.wsa9{word-spacing:1.080000px;}
.ws45{word-spacing:1.134000px;}
.ws38{word-spacing:1.260000px;}
.wsb8{word-spacing:1.296000px;}
.wsa1{word-spacing:1.320000px;}
.ws34{word-spacing:1.380000px;}
.ws3f{word-spacing:1.740000px;}
.ws81{word-spacing:2.040000px;}
.ws15{word-spacing:2.160000px;}
.ws3a{word-spacing:2.220000px;}
.ws91{word-spacing:2.280000px;}
.ws92{word-spacing:2.340000px;}
.ws3b{word-spacing:2.580000px;}
.ws3d{word-spacing:2.640000px;}
.ws7b{word-spacing:2.760000px;}
.ws2e{word-spacing:2.820000px;}
.wsb5{word-spacing:3.024000px;}
.ws70{word-spacing:3.060000px;}
.ws96{word-spacing:3.120000px;}
.ws64{word-spacing:3.660000px;}
.ws1b{word-spacing:3.840000px;}
.wsb0{word-spacing:3.942000px;}
.ws6a{word-spacing:4.104000px;}
.ws68{word-spacing:4.140000px;}
.ws7d{word-spacing:4.200000px;}
.wsb6{word-spacing:4.374000px;}
.ws74{word-spacing:4.500000px;}
.ws31{word-spacing:4.560000px;}
.ws19{word-spacing:4.620000px;}
.ws8a{word-spacing:4.740000px;}
.ws2d{word-spacing:4.860000px;}
.ws89{word-spacing:4.920000px;}
.ws88{word-spacing:4.980000px;}
.ws2f{word-spacing:5.130000px;}
.wsa3{word-spacing:5.400000px;}
.ws9a{word-spacing:5.640000px;}
.ws98{word-spacing:5.700000px;}
.ws99{word-spacing:5.760000px;}
.ws66{word-spacing:5.880000px;}
.ws93{word-spacing:6.000000px;}
.wsf{word-spacing:6.048000px;}
.ws75{word-spacing:6.060000px;}
.wsa5{word-spacing:6.180000px;}
.ws95{word-spacing:6.300000px;}
.wsb4{word-spacing:6.318000px;}
.ws9e{word-spacing:6.420000px;}
.ws7f{word-spacing:6.480000px;}
.ws80{word-spacing:6.540000px;}
.ws3c{word-spacing:7.020000px;}
.ws71{word-spacing:7.140000px;}
.ws77{word-spacing:7.260000px;}
.ws76{word-spacing:7.320000px;}
.ws7c{word-spacing:7.500000px;}
.wsac{word-spacing:7.884000px;}
.ws7a{word-spacing:8.400000px;}
.ws79{word-spacing:8.520000px;}
.ws14{word-spacing:9.420000px;}
.wsa0{word-spacing:10.380000px;}
.ws6f{word-spacing:10.860000px;}
.wsa2{word-spacing:12.300000px;}
.ws49{word-spacing:41.059200px;}
.ws5b{word-spacing:51.156000px;}
.ws5e{word-spacing:54.852000px;}
.ws57{word-spacing:61.110000px;}
.ws5c{word-spacing:78.414000px;}
.ws51{word-spacing:78.456000px;}
.ws4e{word-spacing:90.216000px;}
.ws4b{word-spacing:102.060000px;}
.ws4c{word-spacing:104.790000px;}
.ws59{word-spacing:110.082000px;}
.ws54{word-spacing:121.506000px;}
.ws50{word-spacing:125.370000px;}
.ws55{word-spacing:149.142000px;}
.ws48{word-spacing:216.972000px;}
.ws2a{word-spacing:297.486000px;}
.ws20{word-spacing:300.522600px;}
.ws25{word-spacing:301.656600px;}
.ws2b{word-spacing:304.626000px;}
.ws1e{word-spacing:309.468600px;}
.ws22{word-spacing:313.962600px;}
.ws58{word-spacing:315.966000px;}
.ws24{word-spacing:318.276000px;}
.ws5f{word-spacing:320.880000px;}
.ws29{word-spacing:321.396600px;}
.ws4f{word-spacing:327.180000px;}
.ws56{word-spacing:327.768000px;}
.ws26{word-spacing:329.952000px;}
.ws5d{word-spacing:332.682000px;}
.ws27{word-spacing:336.222600px;}
.ws53{word-spacing:339.570000px;}
.ws1f{word-spacing:341.712000px;}
.ws2c{word-spacing:341.754000px;}
.ws5a{word-spacing:342.636000px;}
.ws21{word-spacing:347.898600px;}
.ws28{word-spacing:349.209000px;}
.ws23{word-spacing:369.234600px;}
.ws4d{word-spacing:470.400000px;}
.ws52{word-spacing:500.556000px;}
._10{margin-left:-11.522400px;}
._f{margin-left:-8.526600px;}
._3{margin-left:-7.517400px;}
._e{margin-left:-6.237000px;}
._4{margin-left:-4.498200px;}
._6{margin-left:-2.781600px;}
._1{margin-left:-1.101600px;}
._0{width:1.468800px;}
._2{width:2.682600px;}
._7{width:3.917400px;}
._9{width:5.243400px;}
._8{width:6.366600px;}
._d{width:7.686000px;}
._c{width:8.694000px;}
._2b{width:9.720000px;}
._a{width:11.478000px;}
._b{width:12.883200px;}
._74{width:14.434200px;}
._73{width:20.730600px;}
._75{width:21.972600px;}
._6d{width:23.922000px;}
._6e{width:25.050000px;}
._72{width:26.530200px;}
._5{width:36.369600px;}
._70{width:42.115800px;}
._71{width:43.240200px;}
._58{width:45.906000px;}
._56{width:48.258000px;}
._57{width:49.308000px;}
._2c{width:54.238800px;}
._5a{width:65.151600px;}
._40{width:67.662000px;}
._61{width:71.148000px;}
._3a{width:77.028000px;}
._4d{width:88.872000px;}
._63{width:89.964000px;}
._3d{width:94.584000px;}
._46{width:97.062000px;}
._3e{width:100.632000px;}
._36{width:103.404000px;}
._3f{width:105.882000px;}
._54{width:112.350000px;}
._15{width:116.886000px;}
._30{width:118.608000px;}
._59{width:120.834000px;}
._4e{width:131.502000px;}
._4b{width:134.148000px;}
._14{width:138.810000px;}
._51{width:143.346000px;}
._33{width:147.210000px;}
._6b{width:149.688000px;}
._2d{width:158.634000px;}
._66{width:188.622000px;}
._34{width:217.350000px;}
._43{width:234.654000px;}
._31{width:244.314000px;}
._45{width:246.414000px;}
._11{width:248.220000px;}
._29{width:252.588000px;}
._13{width:265.482000px;}
._4f{width:268.475400px;}
._4c{width:278.566800px;}
._49{width:282.576000px;}
._21{width:288.666000px;}
._53{width:295.470000px;}
._5f{width:299.754000px;}
._5e{width:300.888000px;}
._27{width:306.138000px;}
._2a{width:308.070000px;}
._24{width:311.514000px;}
._2e{width:312.690000px;}
._3b{width:316.974000px;}
._37{width:319.074000px;}
._3c{width:320.544000px;}
._62{width:321.790800px;}
._18{width:323.398200px;}
._1e{width:325.362600px;}
._39{width:326.382000px;}
._64{width:329.952000px;}
._16{width:331.536600px;}
._47{width:334.247400px;}
._1b{width:336.702600px;}
._32{width:337.848000px;}
._17{width:339.663600px;}
._1a{width:340.765200px;}
._22{width:343.770000px;}
._1f{width:345.270600px;}
._41{width:349.020000px;}
._1d{width:352.128000px;}
._5b{width:353.556000px;}
._28{width:361.074000px;}
._23{width:363.342000px;}
._25{width:366.492000px;}
._26{width:370.566000px;}
._19{width:372.024600px;}
._55{width:375.606000px;}
._20{width:377.497800px;}
._12{width:384.594000px;}
._1c{width:393.402600px;}
._68{width:403.503600px;}
._50{width:420.882000px;}
._6c{width:426.057600px;}
._67{width:439.791600px;}
._69{width:449.190000px;}
._35{width:462.714000px;}
._44{width:463.815600px;}
._65{width:472.542000px;}
._42{width:489.813600px;}
._60{width:528.486000px;}
._5c{width:538.524000px;}
._5d{width:540.173400px;}
._2f{width:549.906000px;}
._38{width:555.702000px;}
._48{width:558.516000px;}
._52{width:579.222000px;}
._6a{width:592.158000px;}
._4a{width:603.194400px;}
._6f{width:1089.600000px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:24.486000px;}
.fsb{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y42{bottom:71.212050px;}
.y43{bottom:75.040050px;}
.y149{bottom:112.790850px;}
.y119{bottom:113.000850px;}
.y150{bottom:113.036850px;}
.y72{bottom:113.078700px;}
.yb3{bottom:113.078850px;}
.ye{bottom:117.205050px;}
.y2b{bottom:117.212550px;}
.ybe{bottom:120.473700px;}
.y94{bottom:120.496350px;}
.yd{bottom:131.601450px;}
.y148{bottom:133.796850px;}
.y118{bottom:134.006850px;}
.y14f{bottom:134.042850px;}
.y71{bottom:134.078700px;}
.yb2{bottom:134.078850px;}
.y2a{bottom:138.212550px;}
.ybd{bottom:140.278200px;}
.y93{bottom:140.300850px;}
.yc{bottom:145.997850px;}
.y147{bottom:154.802850px;}
.y117{bottom:155.012850px;}
.y14e{bottom:155.048850px;}
.y70{bottom:155.078700px;}
.yb1{bottom:155.078850px;}
.y29{bottom:159.212550px;}
.ybc{bottom:160.082700px;}
.yb{bottom:160.397850px;}
.y146{bottom:175.808850px;}
.y116{bottom:176.018850px;}
.y14d{bottom:176.054850px;}
.y6f{bottom:176.078700px;}
.yed{bottom:176.078850px;}
.ybb{bottom:179.887200px;}
.y28{bottom:180.212550px;}
.y74{bottom:189.520500px;}
.yb0{bottom:190.441050px;}
.y145{bottom:196.814850px;}
.y115{bottom:197.024850px;}
.y14c{bottom:197.060850px;}
.y6e{bottom:197.078700px;}
.yec{bottom:197.078850px;}
.yba{bottom:199.691700px;}
.y27{bottom:201.212550px;}
.y3f{bottom:203.481450px;}
.y144{bottom:217.820850px;}
.y114{bottom:218.030850px;}
.y14b{bottom:218.066850px;}
.y6d{bottom:218.078700px;}
.yeb{bottom:218.078850px;}
.yb9{bottom:219.496200px;}
.y3e{bottom:221.476950px;}
.y73{bottom:221.811000px;}
.y26{bottom:222.212550px;}
.y143{bottom:238.826850px;}
.y113{bottom:239.036850px;}
.y14a{bottom:239.072850px;}
.y6c{bottom:239.078700px;}
.yaf{bottom:239.078850px;}
.yb8{bottom:239.300700px;}
.y3d{bottom:239.472450px;}
.y25{bottom:243.212550px;}
.yfd{bottom:253.441050px;}
.y3c{bottom:257.467950px;}
.y142{bottom:259.832850px;}
.y112{bottom:260.042850px;}
.y6b{bottom:260.078700px;}
.yae{bottom:260.078850px;}
.y24{bottom:264.212550px;}
.y3b{bottom:275.463450px;}
.y141{bottom:280.838850px;}
.y111{bottom:281.048850px;}
.y6a{bottom:281.078700px;}
.yad{bottom:281.078850px;}
.y23{bottom:285.212550px;}
.y3a{bottom:293.458950px;}
.y140{bottom:301.844850px;}
.y110{bottom:302.054850px;}
.y69{bottom:302.078700px;}
.yac{bottom:302.078850px;}
.y22{bottom:306.212550px;}
.y39{bottom:311.454450px;}
.y13f{bottom:322.850850px;}
.y10f{bottom:323.060850px;}
.y68{bottom:323.078700px;}
.yab{bottom:323.078850px;}
.yf3{bottom:323.236500px;}
.y38{bottom:329.449950px;}
.y21{bottom:339.248400px;}
.y13e{bottom:343.856850px;}
.y10e{bottom:344.066850px;}
.y67{bottom:344.078700px;}
.yaa{bottom:344.078850px;}
.y37{bottom:347.445450px;}
.y13d{bottom:364.862850px;}
.y10d{bottom:365.072850px;}
.y66{bottom:365.078700px;}
.yea{bottom:365.078850px;}
.y36{bottom:365.440950px;}
.ya9{bottom:379.441050px;}
.y35{bottom:383.436450px;}
.y13c{bottom:385.868850px;}
.y65{bottom:386.078700px;}
.ye9{bottom:386.078850px;}
.y34{bottom:401.431950px;}
.y13b{bottom:406.874850px;}
.y64{bottom:407.078700px;}
.ye8{bottom:407.078850px;}
.y75{bottom:413.692050px;}
.y33{bottom:419.427450px;}
.y10c{bottom:421.441050px;}
.y20{bottom:424.027950px;}
.y13a{bottom:427.880850px;}
.y63{bottom:428.078700px;}
.ya8{bottom:428.078850px;}
.y139{bottom:448.886850px;}
.y62{bottom:449.078700px;}
.ya7{bottom:449.078850px;}
.ye7{bottom:452.628750px;}
.y32{bottom:454.432950px;}
.y1f{bottom:465.024750px;}
.y138{bottom:469.892850px;}
.y153{bottom:470.060850px;}
.yf9{bottom:470.078700px;}
.ya6{bottom:470.078850px;}
.ye6{bottom:471.129750px;}
.y31{bottom:472.428450px;}
.y61{bottom:483.513450px;}
.y1e{bottom:484.829250px;}
.ye5{bottom:489.630750px;}
.y30{bottom:490.423950px;}
.y137{bottom:490.898850px;}
.y152{bottom:491.066850px;}
.yf8{bottom:491.078700px;}
.ya5{bottom:491.078850px;}
.y10b{bottom:496.529400px;}
.y1d{bottom:504.633750px;}
.ye4{bottom:508.131750px;}
.y136{bottom:511.904850px;}
.y151{bottom:512.072850px;}
.yf7{bottom:512.078700px;}
.ya4{bottom:512.078850px;}
.y60{bottom:515.811000px;}
.yf2{bottom:518.292900px;}
.y1c{bottom:524.438250px;}
.y2f{bottom:525.429450px;}
.ye3{bottom:526.632750px;}
.y135{bottom:532.910850px;}
.y10a{bottom:533.072850px;}
.yf6{bottom:533.078700px;}
.ya3{bottom:533.078850px;}
.y2e{bottom:543.429450px;}
.y92{bottom:543.650250px;}
.y1b{bottom:544.242750px;}
.ye2{bottom:545.133750px;}
.y134{bottom:553.916850px;}
.y109{bottom:554.072850px;}
.yf5{bottom:554.078700px;}
.ya2{bottom:554.078850px;}
.y91{bottom:561.300750px;}
.y2d{bottom:561.429450px;}
.ye1{bottom:563.634750px;}
.y1a{bottom:564.047250px;}
.y133{bottom:574.922850px;}
.y108{bottom:575.072850px;}
.y5f{bottom:575.078700px;}
.ya1{bottom:575.078850px;}
.y90{bottom:578.951250px;}
.y2c{bottom:579.429450px;}
.ye0{bottom:582.135750px;}
.y19{bottom:583.851750px;}
.y132{bottom:595.928850px;}
.y5e{bottom:596.078700px;}
.yb7{bottom:596.078850px;}
.y8f{bottom:596.601750px;}
.ydf{bottom:600.636750px;}
.y18{bottom:603.656250px;}
.ya0{bottom:610.441050px;}
.y8e{bottom:614.252250px;}
.y131{bottom:616.934850px;}
.y5d{bottom:617.078700px;}
.yb6{bottom:617.078850px;}
.yde{bottom:619.137750px;}
.y107{bottom:622.529400px;}
.y17{bottom:623.460750px;}
.y8d{bottom:631.902750px;}
.ydd{bottom:637.638750px;}
.y130{bottom:637.940850px;}
.y5c{bottom:638.078700px;}
.yb5{bottom:638.078850px;}
.y16{bottom:643.265250px;}
.y8c{bottom:649.553250px;}
.ydc{bottom:656.139750px;}
.y12f{bottom:658.946850px;}
.y106{bottom:659.060850px;}
.y5b{bottom:659.078700px;}
.y9f{bottom:659.078850px;}
.y15{bottom:663.069750px;}
.y8b{bottom:667.203750px;}
.ydb{bottom:674.220750px;}
.y12e{bottom:679.952850px;}
.y105{bottom:680.066850px;}
.y5a{bottom:680.078700px;}
.y9e{bottom:680.078850px;}
.y14{bottom:682.874250px;}
.y8a{bottom:684.854250px;}
.yda{bottom:692.301750px;}
.yf4{bottom:693.389700px;}
.y12d{bottom:700.958850px;}
.y104{bottom:701.072850px;}
.y59{bottom:701.078700px;}
.y9d{bottom:701.078850px;}
.y89{bottom:702.504750px;}
.y13{bottom:702.678750px;}
.yd9{bottom:705.804750px;}
.yf1{bottom:713.349450px;}
.y88{bottom:720.155250px;}
.y12c{bottom:721.964850px;}
.y58{bottom:722.078700px;}
.y9c{bottom:722.078850px;}
.y12{bottom:722.483250px;}
.yd8{bottom:723.885750px;}
.yfc{bottom:735.669000px;}
.y87{bottom:737.805750px;}
.yd7{bottom:741.966750px;}
.y11{bottom:742.287750px;}
.y12b{bottom:742.970850px;}
.y57{bottom:743.078700px;}
.y9b{bottom:743.078850px;}
.y103{bottom:748.529400px;}
.y86{bottom:755.456250px;}
.yd6{bottom:760.047750px;}
.y12a{bottom:763.976850px;}
.y56{bottom:764.078700px;}
.y9a{bottom:764.078850px;}
.y85{bottom:773.106750px;}
.y10{bottom:773.385150px;}
.yd5{bottom:778.128750px;}
.y129{bottom:784.982850px;}
.y55{bottom:785.078700px;}
.y99{bottom:785.078850px;}
.y84{bottom:790.757250px;}
.yd4{bottom:797.333250px;}
.y128{bottom:805.988850px;}
.y54{bottom:806.078700px;}
.y98{bottom:806.078850px;}
.y83{bottom:808.712250px;}
.y102{bottom:811.529250px;}
.yd3{bottom:815.414250px;}
.y127{bottom:826.994850px;}
.y53{bottom:827.078700px;}
.y97{bottom:827.078850px;}
.yd2{bottom:833.495250px;}
.y82{bottom:838.069050px;}
.y126{bottom:848.000850px;}
.y52{bottom:848.078700px;}
.y96{bottom:848.078850px;}
.yd1{bottom:851.576250px;}
.ya{bottom:852.666900px;}
.y125{bottom:869.006850px;}
.y51{bottom:869.078700px;}
.y95{bottom:869.078850px;}
.yd0{bottom:869.657250px;}
.y9{bottom:870.666900px;}
.y101{bottom:874.529250px;}
.ycf{bottom:887.738250px;}
.y8{bottom:888.666900px;}
.y124{bottom:890.012850px;}
.y50{bottom:890.078700px;}
.y81{bottom:890.078850px;}
.yce{bottom:901.241250px;}
.y7{bottom:906.666900px;}
.y123{bottom:911.018850px;}
.y4f{bottom:911.078700px;}
.y80{bottom:911.078850px;}
.yf0{bottom:912.657750px;}
.yfb{bottom:916.626300px;}
.ycd{bottom:919.322250px;}
.y6{bottom:924.666900px;}
.yb4{bottom:925.441050px;}
.y122{bottom:932.024850px;}
.y4e{bottom:932.078700px;}
.y7f{bottom:932.078850px;}
.ycc{bottom:937.403250px;}
.y100{bottom:937.529250px;}
.ycb{bottom:950.906250px;}
.y121{bottom:953.030850px;}
.y4d{bottom:953.078700px;}
.y7e{bottom:953.078850px;}
.y5{bottom:959.674800px;}
.yca{bottom:969.207750px;}
.y120{bottom:974.036850px;}
.y4c{bottom:974.078700px;}
.y7d{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.yc9{bottom:987.288750px;}
.y11f{bottom:995.042850px;}
.y4b{bottom:995.078700px;}
.y7c{bottom:995.078850px;}
.yc8{bottom:1000.791750px;}
.yff{bottom:1000.937100px;}
.y11e{bottom:1016.048850px;}
.y4a{bottom:1016.078700px;}
.y7b{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.yc7{bottom:1019.166750px;}
.yc4{bottom:1021.245750px;}
.yfe{bottom:1030.441050px;}
.yc2{bottom:1034.748750px;}
.yc6{bottom:1036.817250px;}
.y11d{bottom:1037.054850px;}
.y49{bottom:1037.078700px;}
.y7a{bottom:1037.078850px;}
.yc5{bottom:1043.568750px;}
.yc3{bottom:1048.251750px;}
.y2{bottom:1049.282550px;}
.y11c{bottom:1058.060850px;}
.y48{bottom:1058.078700px;}
.y79{bottom:1058.078850px;}
.y11b{bottom:1079.066850px;}
.y47{bottom:1079.078700px;}
.y78{bottom:1079.078850px;}
.yc1{bottom:1079.673900px;}
.yc0{bottom:1099.478400px;}
.y11a{bottom:1100.072850px;}
.y46{bottom:1100.078700px;}
.y77{bottom:1100.078850px;}
.yfa{bottom:1104.888300px;}
.yef{bottom:1105.588350px;}
.yf{bottom:1109.815500px;}
.ybf{bottom:1119.282900px;}
.y45{bottom:1121.078700px;}
.y76{bottom:1121.078850px;}
.yee{bottom:1130.828700px;}
.y41{bottom:1159.189500px;}
.y40{bottom:1178.689500px;}
.y44{bottom:1178.692050px;}
.h16{height:33.140625px;}
.h13{height:33.306984px;}
.h18{height:33.694336px;}
.h8{height:34.446094px;}
.h7{height:34.657031px;}
.h14{height:38.103516px;}
.h10{height:38.273438px;}
.h2{height:38.507812px;}
.h6{height:38.531250px;}
.h9{height:43.004883px;}
.hf{height:43.057617px;}
.hb{height:43.321289px;}
.ha{height:47.343750px;}
.h11{height:48.134766px;}
.hc{height:48.990234px;}
.h19{height:49.014234px;}
.h1a{height:49.830234px;}
.h15{height:50.176758px;}
.h12{height:52.078125px;}
.h5{height:52.948242px;}
.he{height:54.433594px;}
.hd{height:56.812500px;}
.h17{height:60.146625px;}
.h3{height:77.545898px;}
.h4{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xb{left:107.063850px;}
.xc{left:108.289650px;}
.xd{left:112.255200px;}
.x18{left:113.439000px;}
.x6{left:119.878950px;}
.x7{left:122.032500px;}
.x8{left:124.102950px;}
.x15{left:154.761900px;}
.x10{left:157.302900px;}
.xf{left:158.436900px;}
.xe{left:223.778400px;}
.x17{left:254.162850px;}
.x4{left:300.189000px;}
.x5{left:317.199000px;}
.x3{left:396.050700px;}
.x13{left:613.202400px;}
.x11{left:632.826900px;}
.xa{left:648.907800px;}
.x9{left:669.715800px;}
.x12{left:726.066900px;}
.x16{left:734.739900px;}
.x14{left:748.830900px;}
.x1{left:801.157500px;}
@media print{
.v5{vertical-align:-4.853333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.432000pt;}
.v6{vertical-align:16.730667pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v4{vertical-align:24.005333pt;}
.ls9{letter-spacing:-1.344000pt;}
.ls18{letter-spacing:-0.960000pt;}
.ls17{letter-spacing:-0.906667pt;}
.ls5{letter-spacing:-0.816000pt;}
.ls3{letter-spacing:-0.614400pt;}
.ls6{letter-spacing:-0.586667pt;}
.ls1b{letter-spacing:-0.559680pt;}
.ls16{letter-spacing:-0.533333pt;}
.ls15{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.373333pt;}
.ls1a{letter-spacing:-0.251856pt;}
.ls11{letter-spacing:-0.224000pt;}
.ls14{letter-spacing:-0.213333pt;}
.ls19{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.096000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.800000pt;}
.lsd{letter-spacing:0.853333pt;}
.ls13{letter-spacing:0.960000pt;}
.ls0{letter-spacing:38.383435pt;}
.ls1{letter-spacing:38.383968pt;}
.ls10{letter-spacing:89.488000pt;}
.lse{letter-spacing:94.117333pt;}
.lsf{letter-spacing:99.978667pt;}
.ls7{letter-spacing:292.170667pt;}
.ls8{letter-spacing:302.661333pt;}
.ws3{word-spacing:-15.936000pt;}
.wsa6{word-spacing:-14.608000pt;}
.ws6e{word-spacing:-14.026667pt;}
.ws46{word-spacing:-13.920000pt;}
.ws6d{word-spacing:-13.866667pt;}
.ws2{word-spacing:-13.280000pt;}
.ws36{word-spacing:-13.066667pt;}
.ws87{word-spacing:-12.853333pt;}
.ws94{word-spacing:-12.533333pt;}
.wsa7{word-spacing:-11.904000pt;}
.ws37{word-spacing:-11.760000pt;}
.wsb1{word-spacing:-11.424000pt;}
.ws4{word-spacing:-10.992000pt;}
.wsa8{word-spacing:-10.944000pt;}
.ws7{word-spacing:-10.800000pt;}
.ws5{word-spacing:-10.176000pt;}
.ws6{word-spacing:-9.984000pt;}
.ws8{word-spacing:-9.770667pt;}
.ws13{word-spacing:-9.600000pt;}
.ws47{word-spacing:-9.296000pt;}
.ws4a{word-spacing:-9.146667pt;}
.ws1{word-spacing:-8.793600pt;}
.ws0{word-spacing:-8.549333pt;}
.ws1c{word-spacing:-7.711147pt;}
.wsb7{word-spacing:-6.940032pt;}
.wsae{word-spacing:-6.688176pt;}
.wsaf{word-spacing:-6.380352pt;}
.ws1d{word-spacing:-5.419568pt;}
.wsb9{word-spacing:-3.120000pt;}
.ws8f{word-spacing:-3.040000pt;}
.ws84{word-spacing:-2.613333pt;}
.ws61{word-spacing:-2.506667pt;}
.ws9b{word-spacing:-2.400000pt;}
.ws40{word-spacing:-2.304000pt;}
.ws11{word-spacing:-2.256000pt;}
.ws90{word-spacing:-2.186667pt;}
.ws72{word-spacing:-2.133333pt;}
.ws63{word-spacing:-2.080000pt;}
.ws10{word-spacing:-2.016000pt;}
.ws86{word-spacing:-1.920000pt;}
.ws9d{word-spacing:-1.760000pt;}
.ws39{word-spacing:-1.706667pt;}
.wsa4{word-spacing:-1.653333pt;}
.ws42{word-spacing:-1.536000pt;}
.ws44{word-spacing:-1.488000pt;}
.ws8e{word-spacing:-1.440000pt;}
.wsb3{word-spacing:-1.344000pt;}
.ws62{word-spacing:-1.280000pt;}
.ws83{word-spacing:-1.248000pt;}
.ws8c{word-spacing:-1.173333pt;}
.ws60{word-spacing:-1.013333pt;}
.ws78{word-spacing:-0.960000pt;}
.wsaa{word-spacing:-0.912000pt;}
.ws65{word-spacing:-0.853333pt;}
.wsb2{word-spacing:-0.816000pt;}
.ws73{word-spacing:-0.800000pt;}
.ws16{word-spacing:-0.586667pt;}
.ws97{word-spacing:-0.426667pt;}
.ws69{word-spacing:-0.373333pt;}
.ws7e{word-spacing:-0.266667pt;}
.wsa{word-spacing:-0.192000pt;}
.ws30{word-spacing:-0.160000pt;}
.ws6b{word-spacing:-0.149333pt;}
.wsad{word-spacing:-0.144000pt;}
.ws8b{word-spacing:-0.106667pt;}
.ws33{word-spacing:-0.053333pt;}
.wsc{word-spacing:-0.048000pt;}
.ws9{word-spacing:0.000000pt;}
.ws85{word-spacing:0.053333pt;}
.wsd{word-spacing:0.096000pt;}
.ws3e{word-spacing:0.106667pt;}
.ws35{word-spacing:0.160000pt;}
.wsab{word-spacing:0.192000pt;}
.ws8d{word-spacing:0.213333pt;}
.ws6c{word-spacing:0.224000pt;}
.ws32{word-spacing:0.373333pt;}
.ws41{word-spacing:0.384000pt;}
.wse{word-spacing:0.432000pt;}
.ws17{word-spacing:0.480000pt;}
.ws9c{word-spacing:0.533333pt;}
.ws18{word-spacing:0.586667pt;}
.wsb{word-spacing:0.614400pt;}
.ws67{word-spacing:0.640000pt;}
.ws82{word-spacing:0.693333pt;}
.ws43{word-spacing:0.720000pt;}
.ws1a{word-spacing:0.800000pt;}
.ws12{word-spacing:0.816000pt;}
.ws9f{word-spacing:0.906667pt;}
.wsa9{word-spacing:0.960000pt;}
.ws45{word-spacing:1.008000pt;}
.ws38{word-spacing:1.120000pt;}
.wsb8{word-spacing:1.152000pt;}
.wsa1{word-spacing:1.173333pt;}
.ws34{word-spacing:1.226667pt;}
.ws3f{word-spacing:1.546667pt;}
.ws81{word-spacing:1.813333pt;}
.ws15{word-spacing:1.920000pt;}
.ws3a{word-spacing:1.973333pt;}
.ws91{word-spacing:2.026667pt;}
.ws92{word-spacing:2.080000pt;}
.ws3b{word-spacing:2.293333pt;}
.ws3d{word-spacing:2.346667pt;}
.ws7b{word-spacing:2.453333pt;}
.ws2e{word-spacing:2.506667pt;}
.wsb5{word-spacing:2.688000pt;}
.ws70{word-spacing:2.720000pt;}
.ws96{word-spacing:2.773333pt;}
.ws64{word-spacing:3.253333pt;}
.ws1b{word-spacing:3.413333pt;}
.wsb0{word-spacing:3.504000pt;}
.ws6a{word-spacing:3.648000pt;}
.ws68{word-spacing:3.680000pt;}
.ws7d{word-spacing:3.733333pt;}
.wsb6{word-spacing:3.888000pt;}
.ws74{word-spacing:4.000000pt;}
.ws31{word-spacing:4.053333pt;}
.ws19{word-spacing:4.106667pt;}
.ws8a{word-spacing:4.213333pt;}
.ws2d{word-spacing:4.320000pt;}
.ws89{word-spacing:4.373333pt;}
.ws88{word-spacing:4.426667pt;}
.ws2f{word-spacing:4.560000pt;}
.wsa3{word-spacing:4.800000pt;}
.ws9a{word-spacing:5.013333pt;}
.ws98{word-spacing:5.066667pt;}
.ws99{word-spacing:5.120000pt;}
.ws66{word-spacing:5.226667pt;}
.ws93{word-spacing:5.333333pt;}
.wsf{word-spacing:5.376000pt;}
.ws75{word-spacing:5.386667pt;}
.wsa5{word-spacing:5.493333pt;}
.ws95{word-spacing:5.600000pt;}
.wsb4{word-spacing:5.616000pt;}
.ws9e{word-spacing:5.706667pt;}
.ws7f{word-spacing:5.760000pt;}
.ws80{word-spacing:5.813333pt;}
.ws3c{word-spacing:6.240000pt;}
.ws71{word-spacing:6.346667pt;}
.ws77{word-spacing:6.453333pt;}
.ws76{word-spacing:6.506667pt;}
.ws7c{word-spacing:6.666667pt;}
.wsac{word-spacing:7.008000pt;}
.ws7a{word-spacing:7.466667pt;}
.ws79{word-spacing:7.573333pt;}
.ws14{word-spacing:8.373333pt;}
.wsa0{word-spacing:9.226667pt;}
.ws6f{word-spacing:9.653333pt;}
.wsa2{word-spacing:10.933333pt;}
.ws49{word-spacing:36.497067pt;}
.ws5b{word-spacing:45.472000pt;}
.ws5e{word-spacing:48.757333pt;}
.ws57{word-spacing:54.320000pt;}
.ws5c{word-spacing:69.701333pt;}
.ws51{word-spacing:69.738667pt;}
.ws4e{word-spacing:80.192000pt;}
.ws4b{word-spacing:90.720000pt;}
.ws4c{word-spacing:93.146667pt;}
.ws59{word-spacing:97.850667pt;}
.ws54{word-spacing:108.005333pt;}
.ws50{word-spacing:111.440000pt;}
.ws55{word-spacing:132.570667pt;}
.ws48{word-spacing:192.864000pt;}
.ws2a{word-spacing:264.432000pt;}
.ws20{word-spacing:267.131200pt;}
.ws25{word-spacing:268.139200pt;}
.ws2b{word-spacing:270.778667pt;}
.ws1e{word-spacing:275.083200pt;}
.ws22{word-spacing:279.077867pt;}
.ws58{word-spacing:280.858667pt;}
.ws24{word-spacing:282.912000pt;}
.ws5f{word-spacing:285.226667pt;}
.ws29{word-spacing:285.685867pt;}
.ws4f{word-spacing:290.826667pt;}
.ws56{word-spacing:291.349333pt;}
.ws26{word-spacing:293.290667pt;}
.ws5d{word-spacing:295.717333pt;}
.ws27{word-spacing:298.864533pt;}
.ws53{word-spacing:301.840000pt;}
.ws1f{word-spacing:303.744000pt;}
.ws2c{word-spacing:303.781333pt;}
.ws5a{word-spacing:304.565333pt;}
.ws21{word-spacing:309.243200pt;}
.ws28{word-spacing:310.408000pt;}
.ws23{word-spacing:328.208533pt;}
.ws4d{word-spacing:418.133333pt;}
.ws52{word-spacing:444.938667pt;}
._10{margin-left:-10.242133pt;}
._f{margin-left:-7.579200pt;}
._3{margin-left:-6.682133pt;}
._e{margin-left:-5.544000pt;}
._4{margin-left:-3.998400pt;}
._6{margin-left:-2.472533pt;}
._1{margin-left:-0.979200pt;}
._0{width:1.305600pt;}
._2{width:2.384533pt;}
._7{width:3.482133pt;}
._9{width:4.660800pt;}
._8{width:5.659200pt;}
._d{width:6.832000pt;}
._c{width:7.728000pt;}
._2b{width:8.640000pt;}
._a{width:10.202667pt;}
._b{width:11.451733pt;}
._74{width:12.830400pt;}
._73{width:18.427200pt;}
._75{width:19.531200pt;}
._6d{width:21.264000pt;}
._6e{width:22.266667pt;}
._72{width:23.582400pt;}
._5{width:32.328533pt;}
._70{width:37.436267pt;}
._71{width:38.435733pt;}
._58{width:40.805333pt;}
._56{width:42.896000pt;}
._57{width:43.829333pt;}
._2c{width:48.212267pt;}
._5a{width:57.912533pt;}
._40{width:60.144000pt;}
._61{width:63.242667pt;}
._3a{width:68.469333pt;}
._4d{width:78.997333pt;}
._63{width:79.968000pt;}
._3d{width:84.074667pt;}
._46{width:86.277333pt;}
._3e{width:89.450667pt;}
._36{width:91.914667pt;}
._3f{width:94.117333pt;}
._54{width:99.866667pt;}
._15{width:103.898667pt;}
._30{width:105.429333pt;}
._59{width:107.408000pt;}
._4e{width:116.890667pt;}
._4b{width:119.242667pt;}
._14{width:123.386667pt;}
._51{width:127.418667pt;}
._33{width:130.853333pt;}
._6b{width:133.056000pt;}
._2d{width:141.008000pt;}
._66{width:167.664000pt;}
._34{width:193.200000pt;}
._43{width:208.581333pt;}
._31{width:217.168000pt;}
._45{width:219.034667pt;}
._11{width:220.640000pt;}
._29{width:224.522667pt;}
._13{width:235.984000pt;}
._4f{width:238.644800pt;}
._4c{width:247.614933pt;}
._49{width:251.178667pt;}
._21{width:256.592000pt;}
._53{width:262.640000pt;}
._5f{width:266.448000pt;}
._5e{width:267.456000pt;}
._27{width:272.122667pt;}
._2a{width:273.840000pt;}
._24{width:276.901333pt;}
._2e{width:277.946667pt;}
._3b{width:281.754667pt;}
._37{width:283.621333pt;}
._3c{width:284.928000pt;}
._62{width:286.036267pt;}
._18{width:287.465067pt;}
._1e{width:289.211200pt;}
._39{width:290.117333pt;}
._64{width:293.290667pt;}
._16{width:294.699200pt;}
._47{width:297.108800pt;}
._1b{width:299.291200pt;}
._32{width:300.309333pt;}
._17{width:301.923200pt;}
._1a{width:302.902400pt;}
._22{width:305.573333pt;}
._1f{width:306.907200pt;}
._41{width:310.240000pt;}
._1d{width:313.002667pt;}
._5b{width:314.272000pt;}
._28{width:320.954667pt;}
._23{width:322.970667pt;}
._25{width:325.770667pt;}
._26{width:329.392000pt;}
._19{width:330.688533pt;}
._55{width:333.872000pt;}
._20{width:335.553600pt;}
._12{width:341.861333pt;}
._1c{width:349.691200pt;}
._68{width:358.669867pt;}
._50{width:374.117333pt;}
._6c{width:378.717867pt;}
._67{width:390.925867pt;}
._69{width:399.280000pt;}
._35{width:411.301333pt;}
._44{width:412.280533pt;}
._65{width:420.037333pt;}
._42{width:435.389867pt;}
._60{width:469.765333pt;}
._5c{width:478.688000pt;}
._5d{width:480.154133pt;}
._2f{width:488.805333pt;}
._38{width:493.957333pt;}
._48{width:496.458667pt;}
._52{width:514.864000pt;}
._6a{width:526.362667pt;}
._4a{width:536.172800pt;}
._6f{width:968.533333pt;}
.fsa{font-size:21.765333pt;}
.fsb{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y42{bottom:63.299600pt;}
.y43{bottom:66.702267pt;}
.y149{bottom:100.258533pt;}
.y119{bottom:100.445200pt;}
.y150{bottom:100.477200pt;}
.y72{bottom:100.514400pt;}
.yb3{bottom:100.514533pt;}
.ye{bottom:104.182267pt;}
.y2b{bottom:104.188933pt;}
.ybe{bottom:107.087733pt;}
.y94{bottom:107.107867pt;}
.yd{bottom:116.979067pt;}
.y148{bottom:118.930533pt;}
.y118{bottom:119.117200pt;}
.y14f{bottom:119.149200pt;}
.y71{bottom:119.181067pt;}
.yb2{bottom:119.181200pt;}
.y2a{bottom:122.855600pt;}
.ybd{bottom:124.691733pt;}
.y93{bottom:124.711867pt;}
.yc{bottom:129.775867pt;}
.y147{bottom:137.602533pt;}
.y117{bottom:137.789200pt;}
.y14e{bottom:137.821200pt;}
.y70{bottom:137.847733pt;}
.yb1{bottom:137.847867pt;}
.y29{bottom:141.522267pt;}
.ybc{bottom:142.295733pt;}
.yb{bottom:142.575867pt;}
.y146{bottom:156.274533pt;}
.y116{bottom:156.461200pt;}
.y14d{bottom:156.493200pt;}
.y6f{bottom:156.514400pt;}
.yed{bottom:156.514533pt;}
.ybb{bottom:159.899733pt;}
.y28{bottom:160.188933pt;}
.y74{bottom:168.462667pt;}
.yb0{bottom:169.280933pt;}
.y145{bottom:174.946533pt;}
.y115{bottom:175.133200pt;}
.y14c{bottom:175.165200pt;}
.y6e{bottom:175.181067pt;}
.yec{bottom:175.181200pt;}
.yba{bottom:177.503733pt;}
.y27{bottom:178.855600pt;}
.y3f{bottom:180.872400pt;}
.y144{bottom:193.618533pt;}
.y114{bottom:193.805200pt;}
.y14b{bottom:193.837200pt;}
.y6d{bottom:193.847733pt;}
.yeb{bottom:193.847867pt;}
.yb9{bottom:195.107733pt;}
.y3e{bottom:196.868400pt;}
.y73{bottom:197.165333pt;}
.y26{bottom:197.522267pt;}
.y143{bottom:212.290533pt;}
.y113{bottom:212.477200pt;}
.y14a{bottom:212.509200pt;}
.y6c{bottom:212.514400pt;}
.yaf{bottom:212.514533pt;}
.yb8{bottom:212.711733pt;}
.y3d{bottom:212.864400pt;}
.y25{bottom:216.188933pt;}
.yfd{bottom:225.280933pt;}
.y3c{bottom:228.860400pt;}
.y142{bottom:230.962533pt;}
.y112{bottom:231.149200pt;}
.y6b{bottom:231.181067pt;}
.yae{bottom:231.181200pt;}
.y24{bottom:234.855600pt;}
.y3b{bottom:244.856400pt;}
.y141{bottom:249.634533pt;}
.y111{bottom:249.821200pt;}
.y6a{bottom:249.847733pt;}
.yad{bottom:249.847867pt;}
.y23{bottom:253.522267pt;}
.y3a{bottom:260.852400pt;}
.y140{bottom:268.306533pt;}
.y110{bottom:268.493200pt;}
.y69{bottom:268.514400pt;}
.yac{bottom:268.514533pt;}
.y22{bottom:272.188933pt;}
.y39{bottom:276.848400pt;}
.y13f{bottom:286.978533pt;}
.y10f{bottom:287.165200pt;}
.y68{bottom:287.181067pt;}
.yab{bottom:287.181200pt;}
.yf3{bottom:287.321333pt;}
.y38{bottom:292.844400pt;}
.y21{bottom:301.554133pt;}
.y13e{bottom:305.650533pt;}
.y10e{bottom:305.837200pt;}
.y67{bottom:305.847733pt;}
.yaa{bottom:305.847867pt;}
.y37{bottom:308.840400pt;}
.y13d{bottom:324.322533pt;}
.y10d{bottom:324.509200pt;}
.y66{bottom:324.514400pt;}
.yea{bottom:324.514533pt;}
.y36{bottom:324.836400pt;}
.ya9{bottom:337.280933pt;}
.y35{bottom:340.832400pt;}
.y13c{bottom:342.994533pt;}
.y65{bottom:343.181067pt;}
.ye9{bottom:343.181200pt;}
.y34{bottom:356.828400pt;}
.y13b{bottom:361.666533pt;}
.y64{bottom:361.847733pt;}
.ye8{bottom:361.847867pt;}
.y75{bottom:367.726267pt;}
.y33{bottom:372.824400pt;}
.y10c{bottom:374.614267pt;}
.y20{bottom:376.913733pt;}
.y13a{bottom:380.338533pt;}
.y63{bottom:380.514400pt;}
.ya8{bottom:380.514533pt;}
.y139{bottom:399.010533pt;}
.y62{bottom:399.181067pt;}
.ya7{bottom:399.181200pt;}
.ye7{bottom:402.336667pt;}
.y32{bottom:403.940400pt;}
.y1f{bottom:413.355333pt;}
.y138{bottom:417.682533pt;}
.y153{bottom:417.831867pt;}
.yf9{bottom:417.847733pt;}
.ya6{bottom:417.847867pt;}
.ye6{bottom:418.782000pt;}
.y31{bottom:419.936400pt;}
.y61{bottom:429.789733pt;}
.y1e{bottom:430.959333pt;}
.ye5{bottom:435.227333pt;}
.y30{bottom:435.932400pt;}
.y137{bottom:436.354533pt;}
.y152{bottom:436.503867pt;}
.yf8{bottom:436.514400pt;}
.ya5{bottom:436.514533pt;}
.y10b{bottom:441.359467pt;}
.y1d{bottom:448.563333pt;}
.ye4{bottom:451.672667pt;}
.y136{bottom:455.026533pt;}
.y151{bottom:455.175867pt;}
.yf7{bottom:455.181067pt;}
.ya4{bottom:455.181200pt;}
.y60{bottom:458.498667pt;}
.yf2{bottom:460.704800pt;}
.y1c{bottom:466.167333pt;}
.y2f{bottom:467.048400pt;}
.ye3{bottom:468.118000pt;}
.y135{bottom:473.698533pt;}
.y10a{bottom:473.842533pt;}
.yf6{bottom:473.847733pt;}
.ya3{bottom:473.847867pt;}
.y2e{bottom:483.048400pt;}
.y92{bottom:483.244667pt;}
.y1b{bottom:483.771333pt;}
.ye2{bottom:484.563333pt;}
.y134{bottom:492.370533pt;}
.y109{bottom:492.509200pt;}
.yf5{bottom:492.514400pt;}
.ya2{bottom:492.514533pt;}
.y91{bottom:498.934000pt;}
.y2d{bottom:499.048400pt;}
.ye1{bottom:501.008667pt;}
.y1a{bottom:501.375333pt;}
.y133{bottom:511.042533pt;}
.y108{bottom:511.175867pt;}
.y5f{bottom:511.181067pt;}
.ya1{bottom:511.181200pt;}
.y90{bottom:514.623333pt;}
.y2c{bottom:515.048400pt;}
.ye0{bottom:517.454000pt;}
.y19{bottom:518.979333pt;}
.y132{bottom:529.714533pt;}
.y5e{bottom:529.847733pt;}
.yb7{bottom:529.847867pt;}
.y8f{bottom:530.312667pt;}
.ydf{bottom:533.899333pt;}
.y18{bottom:536.583333pt;}
.ya0{bottom:542.614267pt;}
.y8e{bottom:546.002000pt;}
.y131{bottom:548.386533pt;}
.y5d{bottom:548.514400pt;}
.yb6{bottom:548.514533pt;}
.yde{bottom:550.344667pt;}
.y107{bottom:553.359467pt;}
.y17{bottom:554.187333pt;}
.y8d{bottom:561.691333pt;}
.ydd{bottom:566.790000pt;}
.y130{bottom:567.058533pt;}
.y5c{bottom:567.181067pt;}
.yb5{bottom:567.181200pt;}
.y16{bottom:571.791333pt;}
.y8c{bottom:577.380667pt;}
.ydc{bottom:583.235333pt;}
.y12f{bottom:585.730533pt;}
.y106{bottom:585.831867pt;}
.y5b{bottom:585.847733pt;}
.y9f{bottom:585.847867pt;}
.y15{bottom:589.395333pt;}
.y8b{bottom:593.070000pt;}
.ydb{bottom:599.307333pt;}
.y12e{bottom:604.402533pt;}
.y105{bottom:604.503867pt;}
.y5a{bottom:604.514400pt;}
.y9e{bottom:604.514533pt;}
.y14{bottom:606.999333pt;}
.y8a{bottom:608.759333pt;}
.yda{bottom:615.379333pt;}
.yf4{bottom:616.346400pt;}
.y12d{bottom:623.074533pt;}
.y104{bottom:623.175867pt;}
.y59{bottom:623.181067pt;}
.y9d{bottom:623.181200pt;}
.y89{bottom:624.448667pt;}
.y13{bottom:624.603333pt;}
.yd9{bottom:627.382000pt;}
.yf1{bottom:634.088400pt;}
.y88{bottom:640.138000pt;}
.y12c{bottom:641.746533pt;}
.y58{bottom:641.847733pt;}
.y9c{bottom:641.847867pt;}
.y12{bottom:642.207333pt;}
.yd8{bottom:643.454000pt;}
.yfc{bottom:653.928000pt;}
.y87{bottom:655.827333pt;}
.yd7{bottom:659.526000pt;}
.y11{bottom:659.811333pt;}
.y12b{bottom:660.418533pt;}
.y57{bottom:660.514400pt;}
.y9b{bottom:660.514533pt;}
.y103{bottom:665.359467pt;}
.y86{bottom:671.516667pt;}
.yd6{bottom:675.598000pt;}
.y12a{bottom:679.090533pt;}
.y56{bottom:679.181067pt;}
.y9a{bottom:679.181200pt;}
.y85{bottom:687.206000pt;}
.y10{bottom:687.453467pt;}
.yd5{bottom:691.670000pt;}
.y129{bottom:697.762533pt;}
.y55{bottom:697.847733pt;}
.y99{bottom:697.847867pt;}
.y84{bottom:702.895333pt;}
.yd4{bottom:708.740667pt;}
.y128{bottom:716.434533pt;}
.y54{bottom:716.514400pt;}
.y98{bottom:716.514533pt;}
.y83{bottom:718.855333pt;}
.y102{bottom:721.359333pt;}
.yd3{bottom:724.812667pt;}
.y127{bottom:735.106533pt;}
.y53{bottom:735.181067pt;}
.y97{bottom:735.181200pt;}
.yd2{bottom:740.884667pt;}
.y82{bottom:744.950267pt;}
.y126{bottom:753.778533pt;}
.y52{bottom:753.847733pt;}
.y96{bottom:753.847867pt;}
.yd1{bottom:756.956667pt;}
.ya{bottom:757.926133pt;}
.y125{bottom:772.450533pt;}
.y51{bottom:772.514400pt;}
.y95{bottom:772.514533pt;}
.yd0{bottom:773.028667pt;}
.y9{bottom:773.926133pt;}
.y101{bottom:777.359333pt;}
.ycf{bottom:789.100667pt;}
.y8{bottom:789.926133pt;}
.y124{bottom:791.122533pt;}
.y50{bottom:791.181067pt;}
.y81{bottom:791.181200pt;}
.yce{bottom:801.103333pt;}
.y7{bottom:805.926133pt;}
.y123{bottom:809.794533pt;}
.y4f{bottom:809.847733pt;}
.y80{bottom:809.847867pt;}
.yf0{bottom:811.251333pt;}
.yfb{bottom:814.778933pt;}
.ycd{bottom:817.175333pt;}
.y6{bottom:821.926133pt;}
.yb4{bottom:822.614267pt;}
.y122{bottom:828.466533pt;}
.y4e{bottom:828.514400pt;}
.y7f{bottom:828.514533pt;}
.ycc{bottom:833.247333pt;}
.y100{bottom:833.359333pt;}
.ycb{bottom:845.250000pt;}
.y121{bottom:847.138533pt;}
.y4d{bottom:847.181067pt;}
.y7e{bottom:847.181200pt;}
.y5{bottom:853.044267pt;}
.yca{bottom:861.518000pt;}
.y120{bottom:865.810533pt;}
.y4c{bottom:865.847733pt;}
.y7d{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.yc9{bottom:877.590000pt;}
.y11f{bottom:884.482533pt;}
.y4b{bottom:884.514400pt;}
.y7c{bottom:884.514533pt;}
.yc8{bottom:889.592667pt;}
.yff{bottom:889.721867pt;}
.y11e{bottom:903.154533pt;}
.y4a{bottom:903.181067pt;}
.y7b{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.yc7{bottom:905.926000pt;}
.yc4{bottom:907.774000pt;}
.yfe{bottom:915.947600pt;}
.yc2{bottom:919.776667pt;}
.yc6{bottom:921.615333pt;}
.y11d{bottom:921.826533pt;}
.y49{bottom:921.847733pt;}
.y7a{bottom:921.847867pt;}
.yc5{bottom:927.616667pt;}
.yc3{bottom:931.779333pt;}
.y2{bottom:932.695600pt;}
.y11c{bottom:940.498533pt;}
.y48{bottom:940.514400pt;}
.y79{bottom:940.514533pt;}
.y11b{bottom:959.170533pt;}
.y47{bottom:959.181067pt;}
.y78{bottom:959.181200pt;}
.yc1{bottom:959.710133pt;}
.yc0{bottom:977.314133pt;}
.y11a{bottom:977.842533pt;}
.y46{bottom:977.847733pt;}
.y77{bottom:977.847867pt;}
.yfa{bottom:982.122933pt;}
.yef{bottom:982.745200pt;}
.yf{bottom:986.502667pt;}
.ybf{bottom:994.918133pt;}
.y45{bottom:996.514400pt;}
.y76{bottom:996.514533pt;}
.yee{bottom:1005.181067pt;}
.y41{bottom:1030.390667pt;}
.y40{bottom:1047.724000pt;}
.y44{bottom:1047.726267pt;}
.h16{height:29.458333pt;}
.h13{height:29.606208pt;}
.h18{height:29.950521pt;}
.h8{height:30.618750pt;}
.h7{height:30.806250pt;}
.h14{height:33.869792pt;}
.h10{height:34.020833pt;}
.h2{height:34.229167pt;}
.h6{height:34.250000pt;}
.h9{height:38.226562pt;}
.hf{height:38.273438pt;}
.hb{height:38.507812pt;}
.ha{height:42.083333pt;}
.h11{height:42.786458pt;}
.hc{height:43.546875pt;}
.h19{height:43.568208pt;}
.h1a{height:44.293542pt;}
.h15{height:44.601562pt;}
.h12{height:46.291667pt;}
.h5{height:47.065104pt;}
.he{height:48.385417pt;}
.hd{height:50.500000pt;}
.h17{height:53.463667pt;}
.h3{height:68.929688pt;}
.h4{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xb{left:95.167867pt;}
.xc{left:96.257467pt;}
.xd{left:99.782400pt;}
.x18{left:100.834667pt;}
.x6{left:106.559067pt;}
.x7{left:108.473333pt;}
.x8{left:110.313733pt;}
.x15{left:137.566133pt;}
.x10{left:139.824800pt;}
.xf{left:140.832800pt;}
.xe{left:198.914133pt;}
.x17{left:225.922533pt;}
.x4{left:266.834667pt;}
.x5{left:281.954667pt;}
.x3{left:352.045067pt;}
.x13{left:545.068800pt;}
.x11{left:562.512800pt;}
.xa{left:576.806933pt;}
.x9{left:595.302933pt;}
.x12{left:645.392800pt;}
.x16{left:653.102133pt;}
.x14{left:665.627467pt;}
.x1{left:712.140000pt;}
}




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