
    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_8d6d94c311439835a3307a51.woff')format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_7f1966477c66ec574f6ef004.woff')format("woff");}.ff2{font-family:ff2;line-height:1.126000;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_456875419b91db31fc472af4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.223000;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_3e423c6f3e5db5aae19e91b0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.136000;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_02081a7fde14cc1a84256e06.woff')format("woff");}.ff5{font-family:ff5;line-height:1.239000;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_b679c25609f3135349f5b4d7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.146000;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_7cbe77004407509e2fbd1969.woff')format("woff");}.ff7{font-family:ff7;line-height:1.126000;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_838c1050105f7013ec1e6337.woff')format("woff");}.ff8{font-family:ff8;line-height:1.144000;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_2b2c5c949ec9eb8b0cf55c01.woff')format("woff");}.ff9{font-family:ff9;line-height:0.646000;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_0b7fc09e945b1260b34212f4.woff')format("woff");}.ffa{font-family:ffa;line-height:0.722656;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.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);}
.v3{vertical-align:-19.200074px;}
.v2{vertical-align:-3.600037px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.lsf{letter-spacing:-1.536000px;}
.lse{letter-spacing:-1.008000px;}
.ls16{letter-spacing:-0.960000px;}
.ls15{letter-spacing:-0.720000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000085px;}
.ls18{letter-spacing:0.480000px;}
.lsc{letter-spacing:0.599896px;}
.lsa{letter-spacing:0.605969px;}
.ls19{letter-spacing:0.672000px;}
.ls14{letter-spacing:0.779961px;}
.ls4{letter-spacing:0.780000px;}
.ls6{letter-spacing:0.816000px;}
.ls8{letter-spacing:0.828000px;}
.ls12{letter-spacing:0.834000px;}
.lsd{letter-spacing:0.839903px;}
.ls3{letter-spacing:0.840000px;}
.ls7{letter-spacing:0.846000px;}
.ls13{letter-spacing:0.857956px;}
.ls9{letter-spacing:0.899954px;}
.lsb{letter-spacing:0.900000px;}
.ls5{letter-spacing:0.953899px;}
.ls10{letter-spacing:0.966000px;}
.ls11{letter-spacing:1.020000px;}
.ls17{letter-spacing:1.056000px;}
.ls0{letter-spacing:3.360000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws19{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.000000px;}
.ws18{word-spacing:-13.332000px;}
.ws2{word-spacing:-13.296000px;}
.wsbb{word-spacing:-12.672000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.120000px;}
.ws65{word-spacing:-12.000000px;}
.ws6{word-spacing:-11.520000px;}
.wsb2{word-spacing:-11.280000px;}
.wsb5{word-spacing:-11.040000px;}
.ws57{word-spacing:-10.992000px;}
.ws1{word-spacing:-9.408000px;}
.ws4{word-spacing:-8.694000px;}
.wseb{word-spacing:-8.400000px;}
.wsb3{word-spacing:-3.024000px;}
.ws9{word-spacing:-2.400000px;}
.ws73{word-spacing:-1.200000px;}
.ws96{word-spacing:-1.080000px;}
.ws70{word-spacing:-0.900000px;}
.wsaf{word-spacing:-0.864000px;}
.ws1d{word-spacing:-0.840000px;}
.ws5e{word-spacing:-0.720000px;}
.wsc6{word-spacing:-0.672000px;}
.ws53{word-spacing:-0.660000px;}
.ws48{word-spacing:-0.600000px;}
.ws6e{word-spacing:-0.540000px;}
.ws22{word-spacing:-0.480000px;}
.ws39{word-spacing:-0.420000px;}
.wsc2{word-spacing:-0.336000px;}
.ws2a{word-spacing:-0.300000px;}
.ws8b{word-spacing:-0.240000px;}
.ws76{word-spacing:-0.180000px;}
.wsa6{word-spacing:-0.144000px;}
.ws64{word-spacing:-0.120000px;}
.ws75{word-spacing:-0.060000px;}
.ws0{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.wsa4{word-spacing:0.060000px;}
.ws32{word-spacing:0.120000px;}
.ws1e{word-spacing:0.180000px;}
.ws6d{word-spacing:0.240000px;}
.ws8f{word-spacing:0.360000px;}
.wse5{word-spacing:0.384000px;}
.wsb{word-spacing:0.420000px;}
.wsa0{word-spacing:0.480000px;}
.wsc0{word-spacing:0.528000px;}
.ws29{word-spacing:0.600000px;}
.wsa1{word-spacing:0.660000px;}
.wsdf{word-spacing:0.672000px;}
.ws46{word-spacing:0.720000px;}
.ws33{word-spacing:0.780000px;}
.ws79{word-spacing:0.840000px;}
.ws10{word-spacing:0.900000px;}
.wsad{word-spacing:0.960000px;}
.wscb{word-spacing:1.008000px;}
.ws62{word-spacing:1.020000px;}
.wsc3{word-spacing:1.056000px;}
.ws84{word-spacing:1.080000px;}
.ws60{word-spacing:1.200000px;}
.wsea{word-spacing:1.248000px;}
.ws6c{word-spacing:1.260000px;}
.wsab{word-spacing:1.344000px;}
.ws74{word-spacing:1.380000px;}
.ws9d{word-spacing:1.440000px;}
.ws80{word-spacing:1.500000px;}
.wse2{word-spacing:1.536000px;}
.ws5b{word-spacing:1.560000px;}
.wsae{word-spacing:1.584000px;}
.ws24{word-spacing:1.620000px;}
.ws3f{word-spacing:1.680000px;}
.ws3e{word-spacing:1.740000px;}
.ws71{word-spacing:1.800000px;}
.wsde{word-spacing:1.824000px;}
.ws21{word-spacing:1.860000px;}
.wsd9{word-spacing:1.872000px;}
.ws13{word-spacing:1.920000px;}
.ws52{word-spacing:1.980000px;}
.ws78{word-spacing:2.040000px;}
.wse6{word-spacing:2.064000px;}
.ws7c{word-spacing:2.160000px;}
.wse9{word-spacing:2.208000px;}
.ws5c{word-spacing:2.220000px;}
.ws6b{word-spacing:2.280000px;}
.ws14{word-spacing:2.340000px;}
.wsd1{word-spacing:2.352000px;}
.ws4e{word-spacing:2.400000px;}
.ws8e{word-spacing:2.460000px;}
.wsd{word-spacing:2.520000px;}
.ws42{word-spacing:2.580000px;}
.ws97{word-spacing:2.640000px;}
.wsca{word-spacing:2.688000px;}
.ws9e{word-spacing:2.700000px;}
.ws7a{word-spacing:2.760000px;}
.ws5f{word-spacing:2.820000px;}
.wsdc{word-spacing:2.832000px;}
.ws8c{word-spacing:2.880000px;}
.wscf{word-spacing:2.928000px;}
.wse{word-spacing:3.000000px;}
.ws99{word-spacing:3.060000px;}
.ws15{word-spacing:3.120000px;}
.wse4{word-spacing:3.168000px;}
.ws40{word-spacing:3.180000px;}
.wsac{word-spacing:3.216000px;}
.ws3a{word-spacing:3.240000px;}
.ws35{word-spacing:3.300000px;}
.wsd5{word-spacing:3.312000px;}
.ws98{word-spacing:3.360000px;}
.wsa9{word-spacing:3.456000px;}
.ws4b{word-spacing:3.480000px;}
.wsc4{word-spacing:3.504000px;}
.ws2e{word-spacing:3.600000px;}
.ws95{word-spacing:3.660000px;}
.ws83{word-spacing:3.720000px;}
.wse7{word-spacing:3.744000px;}
.ws7d{word-spacing:3.780000px;}
.wsda{word-spacing:3.792000px;}
.wsd8{word-spacing:3.888000px;}
.ws85{word-spacing:3.900000px;}
.ws38{word-spacing:3.960000px;}
.wse3{word-spacing:3.984000px;}
.wsa7{word-spacing:4.032000px;}
.ws37{word-spacing:4.080000px;}
.wsb9{word-spacing:4.128000px;}
.wsa3{word-spacing:4.140000px;}
.wsd2{word-spacing:4.176000px;}
.wsf{word-spacing:4.200000px;}
.ws6f{word-spacing:4.260000px;}
.ws90{word-spacing:4.320000px;}
.wsaa{word-spacing:4.368000px;}
.wsb1{word-spacing:4.416000px;}
.ws77{word-spacing:4.440000px;}
.ws34{word-spacing:4.560000px;}
.ws2f{word-spacing:4.620000px;}
.wse8{word-spacing:4.704000px;}
.ws47{word-spacing:4.740000px;}
.ws25{word-spacing:4.800000px;}
.wsce{word-spacing:4.848000px;}
.ws89{word-spacing:4.860000px;}
.wsc8{word-spacing:4.896000px;}
.ws9f{word-spacing:4.980000px;}
.ws81{word-spacing:5.100000px;}
.wsd7{word-spacing:5.136000px;}
.ws3b{word-spacing:5.160000px;}
.wsa8{word-spacing:5.280000px;}
.ws3c{word-spacing:5.340000px;}
.ws43{word-spacing:5.400000px;}
.ws94{word-spacing:5.460000px;}
.wsa{word-spacing:5.520000px;}
.ws1a{word-spacing:5.640000px;}
.wsa2{word-spacing:5.700000px;}
.ws9b{word-spacing:5.760000px;}
.ws58{word-spacing:5.820000px;}
.wse0{word-spacing:5.856000px;}
.wsb7{word-spacing:5.952000px;}
.wsb4{word-spacing:6.048000px;}
.ws12{word-spacing:6.060000px;}
.ws17{word-spacing:6.180000px;}
.wsbc{word-spacing:6.192000px;}
.ws4d{word-spacing:6.240000px;}
.ws1c{word-spacing:6.360000px;}
.ws7b{word-spacing:6.420000px;}
.ws27{word-spacing:6.480000px;}
.ws87{word-spacing:6.540000px;}
.ws23{word-spacing:6.600000px;}
.ws3d{word-spacing:6.660000px;}
.ws20{word-spacing:6.720000px;}
.ws72{word-spacing:6.780000px;}
.wsbd{word-spacing:6.864000px;}
.ws88{word-spacing:6.900000px;}
.wsa5{word-spacing:6.960000px;}
.ws61{word-spacing:7.080000px;}
.wsc{word-spacing:7.140000px;}
.wsdd{word-spacing:7.200000px;}
.ws30{word-spacing:7.260000px;}
.ws49{word-spacing:7.320000px;}
.wscc{word-spacing:7.344000px;}
.ws56{word-spacing:7.560000px;}
.ws5a{word-spacing:7.620000px;}
.wse1{word-spacing:7.632000px;}
.ws7e{word-spacing:7.680000px;}
.wsbe{word-spacing:7.728000px;}
.ws51{word-spacing:7.740000px;}
.wsc9{word-spacing:7.776000px;}
.ws7f{word-spacing:8.040000px;}
.ws86{word-spacing:8.100000px;}
.wsd0{word-spacing:8.112000px;}
.ws4f{word-spacing:8.160000px;}
.ws2c{word-spacing:8.220000px;}
.ws9c{word-spacing:8.280000px;}
.ws54{word-spacing:8.400000px;}
.wsc1{word-spacing:8.496000px;}
.ws91{word-spacing:8.520000px;}
.wsb8{word-spacing:8.544000px;}
.wsbf{word-spacing:8.688000px;}
.ws44{word-spacing:8.760000px;}
.ws1f{word-spacing:8.820000px;}
.ws5d{word-spacing:8.880000px;}
.ws6a{word-spacing:8.940000px;}
.ws41{word-spacing:9.060000px;}
.wsd6{word-spacing:9.168000px;}
.ws4a{word-spacing:9.180000px;}
.ws28{word-spacing:9.360000px;}
.ws16{word-spacing:9.420000px;}
.ws55{word-spacing:9.480000px;}
.ws8d{word-spacing:9.600000px;}
.ws93{word-spacing:9.900000px;}
.wsb0{word-spacing:9.936000px;}
.wsdb{word-spacing:10.032000px;}
.ws59{word-spacing:10.080000px;}
.ws50{word-spacing:10.260000px;}
.ws63{word-spacing:10.500000px;}
.ws36{word-spacing:10.560000px;}
.ws1b{word-spacing:10.680000px;}
.ws26{word-spacing:10.920000px;}
.wscd{word-spacing:10.944000px;}
.ws2b{word-spacing:11.760000px;}
.wsd4{word-spacing:11.808000px;}
.wsc7{word-spacing:12.000000px;}
.ws9a{word-spacing:12.420000px;}
.ws2d{word-spacing:12.540000px;}
.ws11{word-spacing:12.840000px;}
.ws8a{word-spacing:13.560000px;}
.ws92{word-spacing:13.860000px;}
.wsd3{word-spacing:13.920000px;}
.ws4c{word-spacing:14.580000px;}
.ws82{word-spacing:14.700000px;}
.ws45{word-spacing:17.700000px;}
.ws31{word-spacing:18.660000px;}
.wsb6{word-spacing:20.784000px;}
.wsc5{word-spacing:25.632000px;}
.wsba{word-spacing:31.440000px;}
.wsec{word-spacing:73.056000px;}
.ws69{word-spacing:186.431992px;}
.ws67{word-spacing:209.232000px;}
.ws66{word-spacing:210.431992px;}
.ws68{word-spacing:402.912000px;}
._36{margin-left:-38.304000px;}
._3e{margin-left:-26.592000px;}
._38{margin-left:-24.672000px;}
._41{margin-left:-21.840000px;}
._3a{margin-left:-20.448000px;}
._3b{margin-left:-17.520000px;}
._3f{margin-left:-15.984000px;}
._39{margin-left:-14.736000px;}
._35{margin-left:-13.728000px;}
._9{margin-left:-11.820007px;}
._8{margin-left:-8.460039px;}
._2b{margin-left:-4.973896px;}
._3{margin-left:-3.849583px;}
._6{margin-left:-2.796104px;}
._0{margin-left:-1.632000px;}
._1{width:1.716000px;}
._32{width:2.928000px;}
._2a{width:4.680104px;}
._28{width:5.700000px;}
._5{width:7.680000px;}
._29{width:9.816000px;}
._43{width:11.424000px;}
._2c{width:12.912000px;}
._a{width:14.743304px;}
._2e{width:16.944000px;}
._3d{width:18.912000px;}
._30{width:20.688000px;}
._3c{width:22.512000px;}
._31{width:24.444000px;}
._2f{width:25.632000px;}
._34{width:27.180007px;}
._33{width:28.488000px;}
._2d{width:31.912696px;}
._4{width:35.489373px;}
._40{width:36.720000px;}
._37{width:38.208000px;}
._2{width:39.532282px;}
._42{width:41.388007px;}
._45{width:56.255991px;}
._44{width:73.056000px;}
._10{width:114.960000px;}
._e{width:126.960000px;}
._12{width:138.960000px;}
._14{width:145.823985px;}
._11{width:157.440000px;}
._1b{width:161.519985px;}
._c{width:164.400000px;}
._27{width:167.244084px;}
._1a{width:196.175985px;}
._22{width:212.399979px;}
._16{width:222.431992px;}
._1e{width:233.280000px;}
._1c{width:256.080000px;}
._15{width:257.280000px;}
._1f{width:261.215985px;}
._b{width:301.679413px;}
._1d{width:332.496000px;}
._18{width:355.296000px;}
._24{width:366.480000px;}
._f{width:383.520000px;}
._25{width:390.480000px;}
._23{width:401.376000px;}
._26{width:438.816000px;}
._20{width:461.796000px;}
._17{width:463.439987px;}
._19{width:486.240000px;}
._d{width:528.924104px;}
._21{width:582.795022px;}
._13{width:1042.531189px;}
._7{width:1734.912000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:33.600000px;}
.fs3{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:56.399998px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:53.554802px;}
.y22{bottom:90.000000px;}
.y93{bottom:90.005712px;}
.y78{bottom:90.005722px;}
.y94{bottom:90.017707px;}
.y81{bottom:90.017729px;}
.y82{bottom:90.029701px;}
.y83{bottom:90.041673px;}
.y84{bottom:90.053646px;}
.y87{bottom:90.065618px;}
.y8a{bottom:90.077596px;}
.y8b{bottom:90.089568px;}
.ydf{bottom:98.045543px;}
.y85{bottom:99.053646px;}
.y88{bottom:99.065618px;}
.y74{bottom:100.164757px;}
.yc2{bottom:103.547516px;}
.y118{bottom:105.383516px;}
.y95{bottom:107.672516px;}
.yb9{bottom:108.797516px;}
.yde{bottom:112.289543px;}
.y73{bottom:118.392757px;}
.y117{bottom:119.627516px;}
.yc1{bottom:121.547516px;}
.y50{bottom:125.672516px;}
.ydd{bottom:126.533543px;}
.yb8{bottom:126.797516px;}
.y116{bottom:133.871516px;}
.y72{bottom:136.536757px;}
.yc0{bottom:139.547516px;}
.ydc{bottom:140.777543px;}
.y4f{bottom:143.672516px;}
.yb7{bottom:144.797516px;}
.y115{bottom:148.115516px;}
.y71{bottom:154.680757px;}
.ydb{bottom:155.021543px;}
.ybf{bottom:157.547516px;}
.y4e{bottom:161.672516px;}
.y114{bottom:162.359516px;}
.yb6{bottom:162.797516px;}
.yda{bottom:169.265543px;}
.y70{bottom:172.824757px;}
.ybe{bottom:175.547516px;}
.y21{bottom:175.817093px;}
.y113{bottom:176.603516px;}
.y4b{bottom:179.672516px;}
.yb5{bottom:180.797516px;}
.yd9{bottom:183.509543px;}
.y112{bottom:190.847516px;}
.ybd{bottom:193.547516px;}
.y20{bottom:194.717102px;}
.y4a{bottom:197.672516px;}
.yd8{bottom:197.753543px;}
.yb4{bottom:198.797516px;}
.y12f{bottom:198.947518px;}
.y6f{bottom:200.820757px;}
.y111{bottom:205.091516px;}
.ybc{bottom:211.547516px;}
.y1f{bottom:211.817093px;}
.yd7{bottom:211.997543px;}
.y12e{bottom:213.191518px;}
.y49{bottom:215.672516px;}
.yb3{bottom:216.797516px;}
.y77{bottom:217.932907px;}
.y79{bottom:217.937722px;}
.y89{bottom:217.997618px;}
.y110{bottom:219.335516px;}
.y86{bottom:223.685642px;}
.y6e{bottom:224.664757px;}
.y12d{bottom:227.435518px;}
.ybb{bottom:229.547516px;}
.y1e{bottom:230.717102px;}
.y8d{bottom:231.065712px;}
.y8c{bottom:231.070953px;}
.y10f{bottom:233.579516px;}
.y48{bottom:233.672516px;}
.yb2{bottom:234.797516px;}
.y12c{bottom:241.679518px;}
.yd6{bottom:244.547539px;}
.y6d{bottom:246.047539px;}
.y1d{bottom:247.817093px;}
.y10e{bottom:247.823516px;}
.y47{bottom:251.672516px;}
.yb1{bottom:252.797516px;}
.y12b{bottom:255.923518px;}
.y10d{bottom:262.067516px;}
.yba{bottom:265.547516px;}
.y1c{bottom:266.717102px;}
.y46{bottom:269.672516px;}
.yb0{bottom:270.797516px;}
.y14d{bottom:274.308289px;}
.y10c{bottom:276.311516px;}
.y12a{bottom:285.179518px;}
.y45{bottom:287.672516px;}
.y7a{bottom:288.257722px;}
.yaf{bottom:288.797516px;}
.y10b{bottom:290.555516px;}
.y14c{bottom:291.311557px;}
.y129{bottom:299.423518px;}
.yd5{bottom:300.101562px;}
.y10a{bottom:304.799516px;}
.y44{bottom:305.672516px;}
.yae{bottom:306.797516px;}
.y14b{bottom:310.355553px;}
.y128{bottom:313.667518px;}
.yd4{bottom:314.345562px;}
.y109{bottom:319.043516px;}
.y1b{bottom:319.817093px;}
.y43{bottom:323.672516px;}
.y6c{bottom:324.047562px;}
.yad{bottom:324.797516px;}
.yd3{bottom:328.589562px;}
.y14a{bottom:332.152794px;}
.y108{bottom:333.287516px;}
.y42{bottom:341.672516px;}
.y6b{bottom:342.047562px;}
.yac{bottom:342.797516px;}
.yd2{bottom:342.833562px;}
.y127{bottom:342.923518px;}
.y8e{bottom:343.409712px;}
.y107{bottom:347.531516px;}
.y149{bottom:349.162040px;}
.y7b{bottom:349.865720px;}
.yd1{bottom:357.077562px;}
.y126{bottom:357.167518px;}
.y41{bottom:359.672516px;}
.y6a{bottom:360.047562px;}
.yab{bottom:360.797516px;}
.y106{bottom:361.775516px;}
.y148{bottom:363.406040px;}
.yd0{bottom:371.321562px;}
.y125{bottom:371.411518px;}
.y1a{bottom:373.817093px;}
.y105{bottom:376.019516px;}
.y40{bottom:377.672516px;}
.y69{bottom:378.047562px;}
.yaa{bottom:378.797516px;}
.y147{bottom:382.450058px;}
.ycf{bottom:385.565562px;}
.y104{bottom:390.263516px;}
.y19{bottom:391.817093px;}
.y3f{bottom:395.672516px;}
.y68{bottom:396.047562px;}
.ya9{bottom:396.797516px;}
.y146{bottom:399.453281px;}
.yce{bottom:399.809562px;}
.y124{bottom:400.667518px;}
.y103{bottom:404.507516px;}
.y3e{bottom:413.672516px;}
.y67{bottom:414.047562px;}
.ycd{bottom:414.053562px;}
.ya8{bottom:414.797516px;}
.y123{bottom:414.911518px;}
.y145{bottom:418.497437px;}
.y102{bottom:418.751516px;}
.y18{bottom:428.567093px;}
.y122{bottom:429.155518px;}
.y3d{bottom:431.672516px;}
.y66{bottom:432.047562px;}
.ya7{bottom:432.797516px;}
.y101{bottom:432.995516px;}
.y144{bottom:435.500568px;}
.ycc{bottom:442.553562px;}
.y17{bottom:446.567093px;}
.y8f{bottom:447.029712px;}
.y100{bottom:447.239516px;}
.y3c{bottom:449.672516px;}
.y65{bottom:450.047562px;}
.ya6{bottom:450.797516px;}
.y143{bottom:454.544678px;}
.ycb{bottom:456.797562px;}
.y121{bottom:458.411518px;}
.yff{bottom:461.483516px;}
.y16{bottom:464.567093px;}
.y3b{bottom:467.672516px;}
.y64{bottom:468.047562px;}
.ya5{bottom:468.797516px;}
.y142{bottom:471.547809px;}
.y120{bottom:472.655518px;}
.yfe{bottom:475.727516px;}
.y7c{bottom:477.425720px;}
.y15{bottom:482.567093px;}
.y3a{bottom:485.672516px;}
.y63{bottom:486.047562px;}
.ya4{bottom:486.797516px;}
.yfd{bottom:489.971516px;}
.y141{bottom:490.591782px;}
.y14{bottom:500.567093px;}
.y11f{bottom:501.911518px;}
.yca{bottom:503.297562px;}
.y39{bottom:503.672516px;}
.y62{bottom:504.047562px;}
.yfc{bottom:504.215516px;}
.ya3{bottom:504.797516px;}
.y140{bottom:507.595050px;}
.y11e{bottom:516.155518px;}
.yfb{bottom:518.459516px;}
.y13{bottom:518.567093px;}
.yc9{bottom:521.297562px;}
.y38{bottom:521.672516px;}
.y61{bottom:522.047562px;}
.ya2{bottom:522.797516px;}
.y13f{bottom:526.639069px;}
.yfa{bottom:532.703516px;}
.y12{bottom:536.567093px;}
.yc8{bottom:539.297562px;}
.y37{bottom:539.672516px;}
.y60{bottom:540.047562px;}
.ya1{bottom:540.797516px;}
.y11d{bottom:545.411518px;}
.yf9{bottom:546.947516px;}
.y13e{bottom:550.568736px;}
.y11{bottom:554.567093px;}
.yc7{bottom:557.297562px;}
.y36{bottom:557.672516px;}
.y5f{bottom:558.047562px;}
.ya0{bottom:558.797516px;}
.y90{bottom:559.373712px;}
.y11c{bottom:559.655518px;}
.yf8{bottom:561.191516px;}
.y13d{bottom:564.812736px;}
.y7d{bottom:566.549720px;}
.y10{bottom:572.567093px;}
.y11b{bottom:573.899518px;}
.yc6{bottom:575.297562px;}
.yf7{bottom:575.435516px;}
.y35{bottom:575.672516px;}
.y5e{bottom:576.047562px;}
.y9f{bottom:576.797516px;}
.y13c{bottom:579.056736px;}
.yf6{bottom:589.679516px;}
.yf{bottom:590.567093px;}
.yc5{bottom:593.297562px;}
.y34{bottom:593.672516px;}
.y5d{bottom:594.047562px;}
.y9e{bottom:594.797516px;}
.y13b{bottom:600.848736px;}
.yf5{bottom:603.923516px;}
.ye{bottom:608.567093px;}
.yc4{bottom:611.297562px;}
.y33{bottom:611.672516px;}
.y5c{bottom:612.047562px;}
.y9d{bottom:612.797516px;}
.y13a{bottom:615.092736px;}
.yf4{bottom:618.167516px;}
.yd{bottom:626.567093px;}
.y32{bottom:629.672516px;}
.y5b{bottom:630.047562px;}
.y9c{bottom:630.797516px;}
.yf3{bottom:632.411516px;}
.y7e{bottom:636.869720px;}
.y139{bottom:636.884736px;}
.yc{bottom:644.567093px;}
.y11a{bottom:646.643516px;}
.yf2{bottom:646.655516px;}
.yc3{bottom:647.297562px;}
.y31{bottom:647.672516px;}
.y9b{bottom:648.797516px;}
.y138{bottom:651.128736px;}
.y119{bottom:660.887516px;}
.yf1{bottom:660.899516px;}
.y91{bottom:662.993712px;}
.y30{bottom:665.672516px;}
.y5a{bottom:666.047562px;}
.y9a{bottom:666.797516px;}
.y137{bottom:672.920736px;}
.yf0{bottom:675.143516px;}
.y2f{bottom:683.672516px;}
.y99{bottom:684.797516px;}
.y136{bottom:687.164736px;}
.yef{bottom:689.387516px;}
.yb{bottom:693.059696px;}
.y7f{bottom:698.477718px;}
.y2e{bottom:701.672516px;}
.y98{bottom:702.797516px;}
.yee{bottom:703.631516px;}
.ya{bottom:707.303696px;}
.y135{bottom:708.956736px;}
.yed{bottom:717.875516px;}
.y2d{bottom:719.672516px;}
.y97{bottom:720.797516px;}
.y134{bottom:723.200736px;}
.yec{bottom:732.119516px;}
.y2c{bottom:737.672516px;}
.y59{bottom:738.797516px;}
.y133{bottom:744.992736px;}
.y9{bottom:745.152145px;}
.yeb{bottom:746.363516px;}
.y2b{bottom:755.672516px;}
.y58{bottom:756.797516px;}
.y132{bottom:759.236736px;}
.yea{bottom:760.607516px;}
.y8{bottom:763.152191px;}
.y2a{bottom:773.672516px;}
.y57{bottom:774.797516px;}
.ye9{bottom:774.851516px;}
.y131{bottom:781.028736px;}
.y7{bottom:781.152191px;}
.ye8{bottom:789.095516px;}
.y29{bottom:791.672516px;}
.y56{bottom:792.797516px;}
.y130{bottom:795.272736px;}
.ye7{bottom:803.339516px;}
.y28{bottom:809.672516px;}
.y55{bottom:810.797516px;}
.ye6{bottom:817.583516px;}
.y6{bottom:823.895529px;}
.y80{bottom:826.037718px;}
.y27{bottom:827.672516px;}
.y54{bottom:828.797516px;}
.y92{bottom:831.653712px;}
.ye5{bottom:831.827516px;}
.y26{bottom:845.672516px;}
.ye4{bottom:846.071516px;}
.y5{bottom:846.398529px;}
.y53{bottom:846.797516px;}
.ye3{bottom:860.315516px;}
.y25{bottom:863.672516px;}
.y52{bottom:864.797516px;}
.ye2{bottom:874.559516px;}
.y96{bottom:882.797516px;}
.ye1{bottom:888.803516px;}
.y24{bottom:899.672516px;}
.y4{bottom:899.785217px;}
.y51{bottom:900.797516px;}
.ye0{bottom:903.047516px;}
.y3{bottom:925.867084px;}
.y23{bottom:939.670349px;}
.y76{bottom:940.110892px;}
.y4d{bottom:940.111075px;}
.y2{bottom:940.111084px;}
.y75{bottom:940.626892px;}
.y4c{bottom:940.627075px;}
.hd{height:31.180800px;}
.h2{height:33.840000px;}
.h3{height:42.048000px;}
.hb{height:44.544000px;}
.h4{height:46.704000px;}
.ha{height:52.339198px;}
.hc{height:53.640000px;}
.h8{height:55.680000px;}
.h7{height:59.340000px;}
.h6{height:64.866000px;}
.h9{height:65.274000px;}
.h5{height:69.108000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x2{left:76.535402px;}
.x8{left:77.598450px;}
.x3{left:80.907303px;}
.x1{left:88.228352px;}
.x7{left:93.545409px;}
.x5{left:96.307045px;}
.x4{left:97.535397px;}
.x1f{left:102.047402px;}
.xb{left:209.350204px;}
.xa{left:216.706104px;}
.xc{left:230.733009px;}
.xd{left:254.577009px;}
.x18{left:261.488846px;}
.xe{left:268.821009px;}
.x9{left:283.726204px;}
.x1a{left:306.715650px;}
.xf{left:310.989009px;}
.x1b{left:320.959650px;}
.x10{left:329.133009px;}
.x1c{left:335.203650px;}
.x11{left:347.277009px;}
.x1d{left:363.199650px;}
.x12{left:365.421009px;}
.x13{left:379.665009px;}
.x1e{left:381.427650px;}
.x14{left:397.821009px;}
.x19{left:406.352840px;}
.x15{left:412.065009px;}
.x16{left:430.221009px;}
.x17{left:448.449009px;}
.x6{left:565.420029px;}
@media print{
.v3{vertical-align:-17.066733pt;}
.v2{vertical-align:-3.200033pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.lsf{letter-spacing:-1.365333pt;}
.lse{letter-spacing:-0.896000pt;}
.ls16{letter-spacing:-0.853333pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000076pt;}
.ls18{letter-spacing:0.426667pt;}
.lsc{letter-spacing:0.533241pt;}
.lsa{letter-spacing:0.538639pt;}
.ls19{letter-spacing:0.597333pt;}
.ls14{letter-spacing:0.693298pt;}
.ls4{letter-spacing:0.693333pt;}
.ls6{letter-spacing:0.725333pt;}
.ls8{letter-spacing:0.736000pt;}
.ls12{letter-spacing:0.741333pt;}
.lsd{letter-spacing:0.746580pt;}
.ls3{letter-spacing:0.746667pt;}
.ls7{letter-spacing:0.752000pt;}
.ls13{letter-spacing:0.762628pt;}
.ls9{letter-spacing:0.799959pt;}
.lsb{letter-spacing:0.800000pt;}
.ls5{letter-spacing:0.847910pt;}
.ls10{letter-spacing:0.858667pt;}
.ls11{letter-spacing:0.906667pt;}
.ls17{letter-spacing:0.938667pt;}
.ls0{letter-spacing:2.986667pt;}
.ws19{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.333333pt;}
.ws18{word-spacing:-11.850667pt;}
.ws2{word-spacing:-11.818667pt;}
.wsbb{word-spacing:-11.264000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.773333pt;}
.ws65{word-spacing:-10.666667pt;}
.ws6{word-spacing:-10.240000pt;}
.wsb2{word-spacing:-10.026667pt;}
.wsb5{word-spacing:-9.813333pt;}
.ws57{word-spacing:-9.770667pt;}
.ws1{word-spacing:-8.362667pt;}
.ws4{word-spacing:-7.728000pt;}
.wseb{word-spacing:-7.466667pt;}
.wsb3{word-spacing:-2.688000pt;}
.ws9{word-spacing:-2.133333pt;}
.ws73{word-spacing:-1.066667pt;}
.ws96{word-spacing:-0.960000pt;}
.ws70{word-spacing:-0.800000pt;}
.wsaf{word-spacing:-0.768000pt;}
.ws1d{word-spacing:-0.746667pt;}
.ws5e{word-spacing:-0.640000pt;}
.wsc6{word-spacing:-0.597333pt;}
.ws53{word-spacing:-0.586667pt;}
.ws48{word-spacing:-0.533333pt;}
.ws6e{word-spacing:-0.480000pt;}
.ws22{word-spacing:-0.426667pt;}
.ws39{word-spacing:-0.373333pt;}
.wsc2{word-spacing:-0.298667pt;}
.ws2a{word-spacing:-0.266667pt;}
.ws8b{word-spacing:-0.213333pt;}
.ws76{word-spacing:-0.160000pt;}
.wsa6{word-spacing:-0.128000pt;}
.ws64{word-spacing:-0.106667pt;}
.ws75{word-spacing:-0.053333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.wsa4{word-spacing:0.053333pt;}
.ws32{word-spacing:0.106667pt;}
.ws1e{word-spacing:0.160000pt;}
.ws6d{word-spacing:0.213333pt;}
.ws8f{word-spacing:0.320000pt;}
.wse5{word-spacing:0.341333pt;}
.wsb{word-spacing:0.373333pt;}
.wsa0{word-spacing:0.426667pt;}
.wsc0{word-spacing:0.469333pt;}
.ws29{word-spacing:0.533333pt;}
.wsa1{word-spacing:0.586667pt;}
.wsdf{word-spacing:0.597333pt;}
.ws46{word-spacing:0.640000pt;}
.ws33{word-spacing:0.693333pt;}
.ws79{word-spacing:0.746667pt;}
.ws10{word-spacing:0.800000pt;}
.wsad{word-spacing:0.853333pt;}
.wscb{word-spacing:0.896000pt;}
.ws62{word-spacing:0.906667pt;}
.wsc3{word-spacing:0.938667pt;}
.ws84{word-spacing:0.960000pt;}
.ws60{word-spacing:1.066667pt;}
.wsea{word-spacing:1.109333pt;}
.ws6c{word-spacing:1.120000pt;}
.wsab{word-spacing:1.194667pt;}
.ws74{word-spacing:1.226667pt;}
.ws9d{word-spacing:1.280000pt;}
.ws80{word-spacing:1.333333pt;}
.wse2{word-spacing:1.365333pt;}
.ws5b{word-spacing:1.386667pt;}
.wsae{word-spacing:1.408000pt;}
.ws24{word-spacing:1.440000pt;}
.ws3f{word-spacing:1.493333pt;}
.ws3e{word-spacing:1.546667pt;}
.ws71{word-spacing:1.600000pt;}
.wsde{word-spacing:1.621333pt;}
.ws21{word-spacing:1.653333pt;}
.wsd9{word-spacing:1.664000pt;}
.ws13{word-spacing:1.706667pt;}
.ws52{word-spacing:1.760000pt;}
.ws78{word-spacing:1.813333pt;}
.wse6{word-spacing:1.834667pt;}
.ws7c{word-spacing:1.920000pt;}
.wse9{word-spacing:1.962667pt;}
.ws5c{word-spacing:1.973333pt;}
.ws6b{word-spacing:2.026667pt;}
.ws14{word-spacing:2.080000pt;}
.wsd1{word-spacing:2.090667pt;}
.ws4e{word-spacing:2.133333pt;}
.ws8e{word-spacing:2.186667pt;}
.wsd{word-spacing:2.240000pt;}
.ws42{word-spacing:2.293333pt;}
.ws97{word-spacing:2.346667pt;}
.wsca{word-spacing:2.389333pt;}
.ws9e{word-spacing:2.400000pt;}
.ws7a{word-spacing:2.453333pt;}
.ws5f{word-spacing:2.506667pt;}
.wsdc{word-spacing:2.517333pt;}
.ws8c{word-spacing:2.560000pt;}
.wscf{word-spacing:2.602667pt;}
.wse{word-spacing:2.666667pt;}
.ws99{word-spacing:2.720000pt;}
.ws15{word-spacing:2.773333pt;}
.wse4{word-spacing:2.816000pt;}
.ws40{word-spacing:2.826667pt;}
.wsac{word-spacing:2.858667pt;}
.ws3a{word-spacing:2.880000pt;}
.ws35{word-spacing:2.933333pt;}
.wsd5{word-spacing:2.944000pt;}
.ws98{word-spacing:2.986667pt;}
.wsa9{word-spacing:3.072000pt;}
.ws4b{word-spacing:3.093333pt;}
.wsc4{word-spacing:3.114667pt;}
.ws2e{word-spacing:3.200000pt;}
.ws95{word-spacing:3.253333pt;}
.ws83{word-spacing:3.306667pt;}
.wse7{word-spacing:3.328000pt;}
.ws7d{word-spacing:3.360000pt;}
.wsda{word-spacing:3.370667pt;}
.wsd8{word-spacing:3.456000pt;}
.ws85{word-spacing:3.466667pt;}
.ws38{word-spacing:3.520000pt;}
.wse3{word-spacing:3.541333pt;}
.wsa7{word-spacing:3.584000pt;}
.ws37{word-spacing:3.626667pt;}
.wsb9{word-spacing:3.669333pt;}
.wsa3{word-spacing:3.680000pt;}
.wsd2{word-spacing:3.712000pt;}
.wsf{word-spacing:3.733333pt;}
.ws6f{word-spacing:3.786667pt;}
.ws90{word-spacing:3.840000pt;}
.wsaa{word-spacing:3.882667pt;}
.wsb1{word-spacing:3.925333pt;}
.ws77{word-spacing:3.946667pt;}
.ws34{word-spacing:4.053333pt;}
.ws2f{word-spacing:4.106667pt;}
.wse8{word-spacing:4.181333pt;}
.ws47{word-spacing:4.213333pt;}
.ws25{word-spacing:4.266667pt;}
.wsce{word-spacing:4.309333pt;}
.ws89{word-spacing:4.320000pt;}
.wsc8{word-spacing:4.352000pt;}
.ws9f{word-spacing:4.426667pt;}
.ws81{word-spacing:4.533333pt;}
.wsd7{word-spacing:4.565333pt;}
.ws3b{word-spacing:4.586667pt;}
.wsa8{word-spacing:4.693333pt;}
.ws3c{word-spacing:4.746667pt;}
.ws43{word-spacing:4.800000pt;}
.ws94{word-spacing:4.853333pt;}
.wsa{word-spacing:4.906667pt;}
.ws1a{word-spacing:5.013333pt;}
.wsa2{word-spacing:5.066667pt;}
.ws9b{word-spacing:5.120000pt;}
.ws58{word-spacing:5.173333pt;}
.wse0{word-spacing:5.205333pt;}
.wsb7{word-spacing:5.290667pt;}
.wsb4{word-spacing:5.376000pt;}
.ws12{word-spacing:5.386667pt;}
.ws17{word-spacing:5.493333pt;}
.wsbc{word-spacing:5.504000pt;}
.ws4d{word-spacing:5.546667pt;}
.ws1c{word-spacing:5.653333pt;}
.ws7b{word-spacing:5.706667pt;}
.ws27{word-spacing:5.760000pt;}
.ws87{word-spacing:5.813333pt;}
.ws23{word-spacing:5.866667pt;}
.ws3d{word-spacing:5.920000pt;}
.ws20{word-spacing:5.973333pt;}
.ws72{word-spacing:6.026667pt;}
.wsbd{word-spacing:6.101333pt;}
.ws88{word-spacing:6.133333pt;}
.wsa5{word-spacing:6.186667pt;}
.ws61{word-spacing:6.293333pt;}
.wsc{word-spacing:6.346667pt;}
.wsdd{word-spacing:6.400000pt;}
.ws30{word-spacing:6.453333pt;}
.ws49{word-spacing:6.506667pt;}
.wscc{word-spacing:6.528000pt;}
.ws56{word-spacing:6.720000pt;}
.ws5a{word-spacing:6.773333pt;}
.wse1{word-spacing:6.784000pt;}
.ws7e{word-spacing:6.826667pt;}
.wsbe{word-spacing:6.869333pt;}
.ws51{word-spacing:6.880000pt;}
.wsc9{word-spacing:6.912000pt;}
.ws7f{word-spacing:7.146667pt;}
.ws86{word-spacing:7.200000pt;}
.wsd0{word-spacing:7.210667pt;}
.ws4f{word-spacing:7.253333pt;}
.ws2c{word-spacing:7.306667pt;}
.ws9c{word-spacing:7.360000pt;}
.ws54{word-spacing:7.466667pt;}
.wsc1{word-spacing:7.552000pt;}
.ws91{word-spacing:7.573333pt;}
.wsb8{word-spacing:7.594667pt;}
.wsbf{word-spacing:7.722667pt;}
.ws44{word-spacing:7.786667pt;}
.ws1f{word-spacing:7.840000pt;}
.ws5d{word-spacing:7.893333pt;}
.ws6a{word-spacing:7.946667pt;}
.ws41{word-spacing:8.053333pt;}
.wsd6{word-spacing:8.149333pt;}
.ws4a{word-spacing:8.160000pt;}
.ws28{word-spacing:8.320000pt;}
.ws16{word-spacing:8.373333pt;}
.ws55{word-spacing:8.426667pt;}
.ws8d{word-spacing:8.533333pt;}
.ws93{word-spacing:8.800000pt;}
.wsb0{word-spacing:8.832000pt;}
.wsdb{word-spacing:8.917333pt;}
.ws59{word-spacing:8.960000pt;}
.ws50{word-spacing:9.120000pt;}
.ws63{word-spacing:9.333333pt;}
.ws36{word-spacing:9.386667pt;}
.ws1b{word-spacing:9.493333pt;}
.ws26{word-spacing:9.706667pt;}
.wscd{word-spacing:9.728000pt;}
.ws2b{word-spacing:10.453333pt;}
.wsd4{word-spacing:10.496000pt;}
.wsc7{word-spacing:10.666667pt;}
.ws9a{word-spacing:11.040000pt;}
.ws2d{word-spacing:11.146667pt;}
.ws11{word-spacing:11.413333pt;}
.ws8a{word-spacing:12.053333pt;}
.ws92{word-spacing:12.320000pt;}
.wsd3{word-spacing:12.373333pt;}
.ws4c{word-spacing:12.960000pt;}
.ws82{word-spacing:13.066667pt;}
.ws45{word-spacing:15.733333pt;}
.ws31{word-spacing:16.586667pt;}
.wsb6{word-spacing:18.474667pt;}
.wsc5{word-spacing:22.784000pt;}
.wsba{word-spacing:27.946667pt;}
.wsec{word-spacing:64.938667pt;}
.ws69{word-spacing:165.717326pt;}
.ws67{word-spacing:185.984000pt;}
.ws66{word-spacing:187.050659pt;}
.ws68{word-spacing:358.144000pt;}
._36{margin-left:-34.048000pt;}
._3e{margin-left:-23.637333pt;}
._38{margin-left:-21.930667pt;}
._41{margin-left:-19.413333pt;}
._3a{margin-left:-18.176000pt;}
._3b{margin-left:-15.573333pt;}
._3f{margin-left:-14.208000pt;}
._39{margin-left:-13.098667pt;}
._35{margin-left:-12.202667pt;}
._9{margin-left:-10.506673pt;}
._8{margin-left:-7.520035pt;}
._2b{margin-left:-4.421241pt;}
._3{margin-left:-3.421852pt;}
._6{margin-left:-2.485426pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.525333pt;}
._32{width:2.602667pt;}
._2a{width:4.160093pt;}
._28{width:5.066667pt;}
._5{width:6.826667pt;}
._29{width:8.725333pt;}
._43{width:10.154667pt;}
._2c{width:11.477333pt;}
._a{width:13.105159pt;}
._2e{width:15.061333pt;}
._3d{width:16.810667pt;}
._30{width:18.389333pt;}
._3c{width:20.010667pt;}
._31{width:21.728000pt;}
._2f{width:22.784000pt;}
._34{width:24.160006pt;}
._33{width:25.322667pt;}
._2d{width:28.366841pt;}
._4{width:31.546109pt;}
._40{width:32.640000pt;}
._37{width:33.962667pt;}
._2{width:35.139806pt;}
._42{width:36.789340pt;}
._45{width:50.005325pt;}
._44{width:64.938667pt;}
._10{width:102.186667pt;}
._e{width:112.853333pt;}
._12{width:123.520000pt;}
._14{width:129.621320pt;}
._11{width:139.946667pt;}
._1b{width:143.573320pt;}
._c{width:146.133333pt;}
._27{width:148.661408pt;}
._1a{width:174.378653pt;}
._22{width:188.799981pt;}
._16{width:197.717326pt;}
._1e{width:207.360000pt;}
._1c{width:227.626667pt;}
._15{width:228.693333pt;}
._1f{width:232.191986pt;}
._b{width:268.159479pt;}
._1d{width:295.552000pt;}
._18{width:315.818667pt;}
._24{width:325.760000pt;}
._f{width:340.906667pt;}
._25{width:347.093333pt;}
._23{width:356.778667pt;}
._26{width:390.058667pt;}
._20{width:410.485333pt;}
._17{width:411.946655pt;}
._19{width:432.213333pt;}
._d{width:470.154759pt;}
._21{width:518.040020pt;}
._13{width:926.694391pt;}
._7{width:1542.144000pt;}
.fs6{font-size:29.866667pt;}
.fs3{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:50.133331pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:47.604268pt;}
.y22{bottom:80.000000pt;}
.y93{bottom:80.005077pt;}
.y78{bottom:80.005086pt;}
.y94{bottom:80.015739pt;}
.y81{bottom:80.015759pt;}
.y82{bottom:80.026401pt;}
.y83{bottom:80.037043pt;}
.y84{bottom:80.047685pt;}
.y87{bottom:80.058327pt;}
.y8a{bottom:80.068974pt;}
.y8b{bottom:80.079616pt;}
.ydf{bottom:87.151594pt;}
.y85{bottom:88.047685pt;}
.y88{bottom:88.058327pt;}
.y74{bottom:89.035339pt;}
.yc2{bottom:92.042236pt;}
.y118{bottom:93.674236pt;}
.y95{bottom:95.708903pt;}
.yb9{bottom:96.708903pt;}
.yde{bottom:99.812927pt;}
.y73{bottom:105.238006pt;}
.y117{bottom:106.335570pt;}
.yc1{bottom:108.042236pt;}
.y50{bottom:111.708903pt;}
.ydd{bottom:112.474261pt;}
.yb8{bottom:112.708903pt;}
.y116{bottom:118.996903pt;}
.y72{bottom:121.366006pt;}
.yc0{bottom:124.042236pt;}
.ydc{bottom:125.135594pt;}
.y4f{bottom:127.708903pt;}
.yb7{bottom:128.708903pt;}
.y115{bottom:131.658236pt;}
.y71{bottom:137.494006pt;}
.ydb{bottom:137.796927pt;}
.ybf{bottom:140.042236pt;}
.y4e{bottom:143.708903pt;}
.y114{bottom:144.319570pt;}
.yb6{bottom:144.708903pt;}
.yda{bottom:150.458261pt;}
.y70{bottom:153.622006pt;}
.ybe{bottom:156.042236pt;}
.y21{bottom:156.281860pt;}
.y113{bottom:156.980903pt;}
.y4b{bottom:159.708903pt;}
.yb5{bottom:160.708903pt;}
.yd9{bottom:163.119594pt;}
.y112{bottom:169.642236pt;}
.ybd{bottom:172.042236pt;}
.y20{bottom:173.081868pt;}
.y4a{bottom:175.708903pt;}
.yd8{bottom:175.780927pt;}
.yb4{bottom:176.708903pt;}
.y12f{bottom:176.842238pt;}
.y6f{bottom:178.507339pt;}
.y111{bottom:182.303570pt;}
.ybc{bottom:188.042236pt;}
.y1f{bottom:188.281860pt;}
.yd7{bottom:188.442261pt;}
.y12e{bottom:189.503572pt;}
.y49{bottom:191.708903pt;}
.yb3{bottom:192.708903pt;}
.y77{bottom:193.718140pt;}
.y79{bottom:193.722420pt;}
.y89{bottom:193.775660pt;}
.y110{bottom:194.964903pt;}
.y86{bottom:198.831681pt;}
.y6e{bottom:199.702006pt;}
.y12d{bottom:202.164905pt;}
.ybb{bottom:204.042236pt;}
.y1e{bottom:205.081868pt;}
.y8d{bottom:205.391744pt;}
.y8c{bottom:205.396403pt;}
.y10f{bottom:207.626236pt;}
.y48{bottom:207.708903pt;}
.yb2{bottom:208.708903pt;}
.y12c{bottom:214.826238pt;}
.yd6{bottom:217.375590pt;}
.y6d{bottom:218.708923pt;}
.y1d{bottom:220.281860pt;}
.y10e{bottom:220.287570pt;}
.y47{bottom:223.708903pt;}
.yb1{bottom:224.708903pt;}
.y12b{bottom:227.487572pt;}
.y10d{bottom:232.948903pt;}
.yba{bottom:236.042236pt;}
.y1c{bottom:237.081868pt;}
.y46{bottom:239.708903pt;}
.yb0{bottom:240.708903pt;}
.y14d{bottom:243.829590pt;}
.y10c{bottom:245.610236pt;}
.y12a{bottom:253.492905pt;}
.y45{bottom:255.708903pt;}
.y7a{bottom:256.229086pt;}
.yaf{bottom:256.708903pt;}
.y10b{bottom:258.271570pt;}
.y14c{bottom:258.943606pt;}
.y129{bottom:266.154238pt;}
.yd5{bottom:266.756944pt;}
.y10a{bottom:270.932903pt;}
.y44{bottom:271.708903pt;}
.yae{bottom:272.708903pt;}
.y14b{bottom:275.871602pt;}
.y128{bottom:278.815572pt;}
.yd4{bottom:279.418277pt;}
.y109{bottom:283.594236pt;}
.y1b{bottom:284.281860pt;}
.y43{bottom:287.708903pt;}
.y6c{bottom:288.042277pt;}
.yad{bottom:288.708903pt;}
.yd3{bottom:292.079610pt;}
.y14a{bottom:295.246928pt;}
.y108{bottom:296.255570pt;}
.y42{bottom:303.708903pt;}
.y6b{bottom:304.042277pt;}
.yac{bottom:304.708903pt;}
.yd2{bottom:304.740944pt;}
.y127{bottom:304.820905pt;}
.y8e{bottom:305.253077pt;}
.y107{bottom:308.916903pt;}
.y149{bottom:310.366257pt;}
.y7b{bottom:310.991751pt;}
.yd1{bottom:317.402277pt;}
.y126{bottom:317.482238pt;}
.y41{bottom:319.708903pt;}
.y6a{bottom:320.042277pt;}
.yab{bottom:320.708903pt;}
.y106{bottom:321.578236pt;}
.y148{bottom:323.027591pt;}
.yd0{bottom:330.063610pt;}
.y125{bottom:330.143572pt;}
.y1a{bottom:332.281860pt;}
.y105{bottom:334.239570pt;}
.y40{bottom:335.708903pt;}
.y69{bottom:336.042277pt;}
.yaa{bottom:336.708903pt;}
.y147{bottom:339.955607pt;}
.ycf{bottom:342.724944pt;}
.y104{bottom:346.900903pt;}
.y19{bottom:348.281860pt;}
.y3f{bottom:351.708903pt;}
.y68{bottom:352.042277pt;}
.ya9{bottom:352.708903pt;}
.y146{bottom:355.069583pt;}
.yce{bottom:355.386277pt;}
.y124{bottom:356.148905pt;}
.y103{bottom:359.562236pt;}
.y3e{bottom:367.708903pt;}
.y67{bottom:368.042277pt;}
.ycd{bottom:368.047610pt;}
.ya8{bottom:368.708903pt;}
.y123{bottom:368.810238pt;}
.y145{bottom:371.997721pt;}
.y102{bottom:372.223570pt;}
.y18{bottom:380.948527pt;}
.y122{bottom:381.471572pt;}
.y3d{bottom:383.708903pt;}
.y66{bottom:384.042277pt;}
.ya7{bottom:384.708903pt;}
.y101{bottom:384.884903pt;}
.y144{bottom:387.111616pt;}
.ycc{bottom:393.380944pt;}
.y17{bottom:396.948527pt;}
.y8f{bottom:397.359744pt;}
.y100{bottom:397.546236pt;}
.y3c{bottom:399.708903pt;}
.y65{bottom:400.042277pt;}
.ya6{bottom:400.708903pt;}
.y143{bottom:404.039714pt;}
.ycb{bottom:406.042277pt;}
.y121{bottom:407.476905pt;}
.yff{bottom:410.207570pt;}
.y16{bottom:412.948527pt;}
.y3b{bottom:415.708903pt;}
.y64{bottom:416.042277pt;}
.ya5{bottom:416.708903pt;}
.y142{bottom:419.153608pt;}
.y120{bottom:420.138238pt;}
.yfe{bottom:422.868903pt;}
.y7c{bottom:424.378418pt;}
.y15{bottom:428.948527pt;}
.y3a{bottom:431.708903pt;}
.y63{bottom:432.042277pt;}
.ya4{bottom:432.708903pt;}
.yfd{bottom:435.530236pt;}
.y141{bottom:436.081584pt;}
.y14{bottom:444.948527pt;}
.y11f{bottom:446.143572pt;}
.yca{bottom:447.375610pt;}
.y39{bottom:447.708903pt;}
.y62{bottom:448.042277pt;}
.yfc{bottom:448.191570pt;}
.ya3{bottom:448.708903pt;}
.y140{bottom:451.195600pt;}
.y11e{bottom:458.804905pt;}
.yfb{bottom:460.852903pt;}
.y13{bottom:460.948527pt;}
.yc9{bottom:463.375610pt;}
.y38{bottom:463.708903pt;}
.y61{bottom:464.042277pt;}
.ya2{bottom:464.708903pt;}
.y13f{bottom:468.123617pt;}
.yfa{bottom:473.514236pt;}
.y12{bottom:476.948527pt;}
.yc8{bottom:479.375610pt;}
.y37{bottom:479.708903pt;}
.y60{bottom:480.042277pt;}
.ya1{bottom:480.708903pt;}
.y11d{bottom:484.810238pt;}
.yf9{bottom:486.175570pt;}
.y13e{bottom:489.394432pt;}
.y11{bottom:492.948527pt;}
.yc7{bottom:495.375610pt;}
.y36{bottom:495.708903pt;}
.y5f{bottom:496.042277pt;}
.ya0{bottom:496.708903pt;}
.y90{bottom:497.221077pt;}
.y11c{bottom:497.471572pt;}
.yf8{bottom:498.836903pt;}
.y13d{bottom:502.055765pt;}
.y7d{bottom:503.599751pt;}
.y10{bottom:508.948527pt;}
.y11b{bottom:510.132905pt;}
.yc6{bottom:511.375610pt;}
.yf7{bottom:511.498236pt;}
.y35{bottom:511.708903pt;}
.y5e{bottom:512.042277pt;}
.y9f{bottom:512.708903pt;}
.y13c{bottom:514.717098pt;}
.yf6{bottom:524.159570pt;}
.yf{bottom:524.948527pt;}
.yc5{bottom:527.375610pt;}
.y34{bottom:527.708903pt;}
.y5d{bottom:528.042277pt;}
.y9e{bottom:528.708903pt;}
.y13b{bottom:534.087765pt;}
.yf5{bottom:536.820903pt;}
.ye{bottom:540.948527pt;}
.yc4{bottom:543.375610pt;}
.y33{bottom:543.708903pt;}
.y5c{bottom:544.042277pt;}
.y9d{bottom:544.708903pt;}
.y13a{bottom:546.749098pt;}
.yf4{bottom:549.482236pt;}
.yd{bottom:556.948527pt;}
.y32{bottom:559.708903pt;}
.y5b{bottom:560.042277pt;}
.y9c{bottom:560.708903pt;}
.yf3{bottom:562.143570pt;}
.y7e{bottom:566.106418pt;}
.y139{bottom:566.119765pt;}
.yc{bottom:572.948527pt;}
.y11a{bottom:574.794236pt;}
.yf2{bottom:574.804903pt;}
.yc3{bottom:575.375610pt;}
.y31{bottom:575.708903pt;}
.y9b{bottom:576.708903pt;}
.y138{bottom:578.781098pt;}
.y119{bottom:587.455570pt;}
.yf1{bottom:587.466236pt;}
.y91{bottom:589.327744pt;}
.y30{bottom:591.708903pt;}
.y5a{bottom:592.042277pt;}
.y9a{bottom:592.708903pt;}
.y137{bottom:598.151765pt;}
.yf0{bottom:600.127570pt;}
.y2f{bottom:607.708903pt;}
.y99{bottom:608.708903pt;}
.y136{bottom:610.813098pt;}
.yef{bottom:612.788903pt;}
.yb{bottom:616.053063pt;}
.y7f{bottom:620.869083pt;}
.y2e{bottom:623.708903pt;}
.y98{bottom:624.708903pt;}
.yee{bottom:625.450236pt;}
.ya{bottom:628.714396pt;}
.y135{bottom:630.183765pt;}
.yed{bottom:638.111570pt;}
.y2d{bottom:639.708903pt;}
.y97{bottom:640.708903pt;}
.y134{bottom:642.845098pt;}
.yec{bottom:650.772903pt;}
.y2c{bottom:655.708903pt;}
.y59{bottom:656.708903pt;}
.y133{bottom:662.215765pt;}
.y9{bottom:662.357463pt;}
.yeb{bottom:663.434236pt;}
.y2b{bottom:671.708903pt;}
.y58{bottom:672.708903pt;}
.y132{bottom:674.877098pt;}
.yea{bottom:676.095570pt;}
.y8{bottom:678.357503pt;}
.y2a{bottom:687.708903pt;}
.y57{bottom:688.708903pt;}
.ye9{bottom:688.756903pt;}
.y131{bottom:694.247765pt;}
.y7{bottom:694.357503pt;}
.ye8{bottom:701.418236pt;}
.y29{bottom:703.708903pt;}
.y56{bottom:704.708903pt;}
.y130{bottom:706.909098pt;}
.ye7{bottom:714.079570pt;}
.y28{bottom:719.708903pt;}
.y55{bottom:720.708903pt;}
.ye6{bottom:726.740903pt;}
.y6{bottom:732.351581pt;}
.y80{bottom:734.255749pt;}
.y27{bottom:735.708903pt;}
.y54{bottom:736.708903pt;}
.y92{bottom:739.247744pt;}
.ye5{bottom:739.402236pt;}
.y26{bottom:751.708903pt;}
.ye4{bottom:752.063570pt;}
.y5{bottom:752.354248pt;}
.y53{bottom:752.708903pt;}
.ye3{bottom:764.724903pt;}
.y25{bottom:767.708903pt;}
.y52{bottom:768.708903pt;}
.ye2{bottom:777.386236pt;}
.y96{bottom:784.708903pt;}
.ye1{bottom:790.047570pt;}
.y24{bottom:799.708903pt;}
.y4{bottom:799.809082pt;}
.y51{bottom:800.708903pt;}
.ye0{bottom:802.708903pt;}
.y3{bottom:822.992964pt;}
.y23{bottom:835.262533pt;}
.y76{bottom:835.654126pt;}
.y4d{bottom:835.654289pt;}
.y2{bottom:835.654297pt;}
.y75{bottom:836.112793pt;}
.y4c{bottom:836.112956pt;}
.hd{height:27.716267pt;}
.h2{height:30.080000pt;}
.h3{height:37.376000pt;}
.hb{height:39.594667pt;}
.h4{height:41.514667pt;}
.ha{height:46.523731pt;}
.hc{height:47.680000pt;}
.h8{height:49.493333pt;}
.h7{height:52.746667pt;}
.h6{height:57.658667pt;}
.h9{height:58.021333pt;}
.h5{height:61.429333pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x2{left:68.031469pt;}
.x8{left:68.976400pt;}
.x3{left:71.917603pt;}
.x1{left:78.425201pt;}
.x7{left:83.151475pt;}
.x5{left:85.606262pt;}
.x4{left:86.698130pt;}
.x1f{left:90.708802pt;}
.xb{left:186.089071pt;}
.xa{left:192.627648pt;}
.xc{left:205.096008pt;}
.xd{left:226.290675pt;}
.x18{left:232.434530pt;}
.xe{left:238.952008pt;}
.x9{left:252.201070pt;}
.x1a{left:272.636133pt;}
.xf{left:276.434675pt;}
.x1b{left:285.297467pt;}
.x10{left:292.562675pt;}
.x1c{left:297.958800pt;}
.x11{left:308.690675pt;}
.x1d{left:322.844133pt;}
.x12{left:324.818675pt;}
.x13{left:337.480008pt;}
.x1e{left:339.046800pt;}
.x14{left:353.618675pt;}
.x19{left:361.202525pt;}
.x15{left:366.280008pt;}
.x16{left:382.418675pt;}
.x17{left:398.621342pt;}
.x6{left:502.595581pt;}
}




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