
    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_ecccc2abd3210d391afc2754.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.102051;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_7488d1b4823cc6feb93fc148.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_ad36d10c40178046f2da2646.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_16efbc882ba74a70f80fe59f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_94752d27482a322d777d418b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_c42a3292e8872fd790fe8a6f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.820000px;}
.v1{vertical-align:19.800000px;}
.ls4f{letter-spacing:-6.966000px;}
.ls13{letter-spacing:-1.140000px;}
.ls14{letter-spacing:-1.020000px;}
.ls10{letter-spacing:-0.960000px;}
.ls4b{letter-spacing:-0.840000px;}
.ls80{letter-spacing:-0.810000px;}
.ls5e{letter-spacing:-0.780000px;}
.ls60{letter-spacing:-0.756000px;}
.ls12{letter-spacing:-0.720000px;}
.ls7e{letter-spacing:-0.702000px;}
.ls52{letter-spacing:-0.660000px;}
.ls4c{letter-spacing:-0.648000px;}
.ls27{letter-spacing:-0.600000px;}
.ls50{letter-spacing:-0.594000px;}
.ls25{letter-spacing:-0.540000px;}
.ls51{letter-spacing:-0.486000px;}
.lsd{letter-spacing:-0.480000px;}
.ls5f{letter-spacing:-0.432000px;}
.ls28{letter-spacing:-0.420000px;}
.ls7d{letter-spacing:-0.378000px;}
.ls18{letter-spacing:-0.360000px;}
.ls2a{letter-spacing:-0.324000px;}
.ls17{letter-spacing:-0.300000px;}
.lse{letter-spacing:-0.270000px;}
.ls11{letter-spacing:-0.240000px;}
.ls71{letter-spacing:-0.216000px;}
.ls23{letter-spacing:-0.180000px;}
.ls29{letter-spacing:-0.162000px;}
.ls26{letter-spacing:-0.120000px;}
.lsf{letter-spacing:-0.108000px;}
.ls24{letter-spacing:-0.060000px;}
.ls2b{letter-spacing:-0.054000px;}
.lsc{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.000600px;}
.ls43{letter-spacing:0.054000px;}
.ls59{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.120000px;}
.ls41{letter-spacing:0.162000px;}
.ls2f{letter-spacing:0.180000px;}
.ls61{letter-spacing:0.216000px;}
.ls65{letter-spacing:0.270000px;}
.ls1f{letter-spacing:0.300000px;}
.ls40{letter-spacing:0.324000px;}
.ls1c{letter-spacing:0.360000px;}
.ls38{letter-spacing:0.378000px;}
.ls3{letter-spacing:0.420000px;}
.ls70{letter-spacing:0.432000px;}
.ls46{letter-spacing:0.480000px;}
.ls4e{letter-spacing:0.486000px;}
.ls1{letter-spacing:0.540000px;}
.ls3c{letter-spacing:0.594000px;}
.lsa{letter-spacing:0.600000px;}
.ls0{letter-spacing:0.648000px;}
.ls6{letter-spacing:0.660000px;}
.ls64{letter-spacing:0.702000px;}
.ls1b{letter-spacing:0.720000px;}
.ls6f{letter-spacing:0.756000px;}
.ls2{letter-spacing:0.780000px;}
.ls2e{letter-spacing:0.840000px;}
.ls37{letter-spacing:0.864000px;}
.lsb{letter-spacing:0.900000px;}
.ls7c{letter-spacing:0.918000px;}
.ls1a{letter-spacing:0.960000px;}
.ls76{letter-spacing:0.972000px;}
.ls47{letter-spacing:1.020000px;}
.ls5b{letter-spacing:1.026000px;}
.ls45{letter-spacing:1.080000px;}
.ls73{letter-spacing:1.134000px;}
.ls58{letter-spacing:1.140000px;}
.ls22{letter-spacing:1.188000px;}
.ls31{letter-spacing:1.200000px;}
.ls81{letter-spacing:1.242000px;}
.ls35{letter-spacing:1.260000px;}
.ls39{letter-spacing:1.296000px;}
.ls1e{letter-spacing:1.320000px;}
.ls6b{letter-spacing:1.350000px;}
.ls32{letter-spacing:1.380000px;}
.ls5c{letter-spacing:1.404000px;}
.ls19{letter-spacing:1.440000px;}
.ls33{letter-spacing:1.500000px;}
.ls79{letter-spacing:1.512000px;}
.ls53{letter-spacing:1.560000px;}
.ls5d{letter-spacing:1.566000px;}
.ls34{letter-spacing:1.620000px;}
.ls36{letter-spacing:1.674000px;}
.ls5{letter-spacing:1.680000px;}
.ls82{letter-spacing:1.728000px;}
.ls5a{letter-spacing:1.782000px;}
.ls44{letter-spacing:1.800000px;}
.ls4a{letter-spacing:1.860000px;}
.ls4{letter-spacing:1.980000px;}
.ls42{letter-spacing:1.998000px;}
.ls69{letter-spacing:2.052000px;}
.ls48{letter-spacing:2.100000px;}
.ls7b{letter-spacing:2.106000px;}
.ls9{letter-spacing:2.160000px;}
.ls6d{letter-spacing:2.214000px;}
.ls20{letter-spacing:2.220000px;}
.ls1d{letter-spacing:2.280000px;}
.ls6a{letter-spacing:2.322000px;}
.ls6e{letter-spacing:2.376000px;}
.ls8{letter-spacing:2.400000px;}
.ls75{letter-spacing:2.484000px;}
.ls55{letter-spacing:2.520000px;}
.ls84{letter-spacing:2.538000px;}
.ls49{letter-spacing:2.580000px;}
.ls67{letter-spacing:2.592000px;}
.ls74{letter-spacing:2.646000px;}
.ls3a{letter-spacing:2.700000px;}
.ls3f{letter-spacing:2.808000px;}
.ls7a{letter-spacing:2.862000px;}
.ls2d{letter-spacing:3.000000px;}
.ls77{letter-spacing:3.024000px;}
.ls57{letter-spacing:3.180000px;}
.ls16{letter-spacing:3.240000px;}
.ls6c{letter-spacing:3.294000px;}
.ls21{letter-spacing:3.420000px;}
.ls83{letter-spacing:3.456000px;}
.ls3e{letter-spacing:3.510000px;}
.ls56{letter-spacing:3.540000px;}
.ls3b{letter-spacing:3.564000px;}
.ls72{letter-spacing:3.672000px;}
.ls54{letter-spacing:3.780000px;}
.ls2c{letter-spacing:4.140000px;}
.ls63{letter-spacing:4.158000px;}
.ls62{letter-spacing:4.212000px;}
.ls3d{letter-spacing:4.266000px;}
.ls7f{letter-spacing:4.320000px;}
.ls15{letter-spacing:4.380000px;}
.ls68{letter-spacing:4.428000px;}
.ls78{letter-spacing:4.644000px;}
.ls4d{letter-spacing:5.130000px;}
.ls66{letter-spacing:5.508000px;}
.ls85{letter-spacing:5.832000px;}
.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;}
}
.ws3d{word-spacing:-16.200000px;}
.ws3{word-spacing:-15.420000px;}
.ws62{word-spacing:-15.282000px;}
.wsa4{word-spacing:-15.174000px;}
.ws2{word-spacing:-15.000000px;}
.wsa5{word-spacing:-14.580000px;}
.ws0{word-spacing:-14.520000px;}
.wsa7{word-spacing:-13.986000px;}
.ws34{word-spacing:-13.500000px;}
.wsa6{word-spacing:-13.446000px;}
.wsa8{word-spacing:-13.392000px;}
.ws82{word-spacing:-13.284000px;}
.wsa3{word-spacing:-13.122000px;}
.ws83{word-spacing:-12.852000px;}
.ws1{word-spacing:-8.700000px;}
.wsbf{word-spacing:-7.830000px;}
.wsa9{word-spacing:-6.318000px;}
.ws26{word-spacing:-4.800000px;}
.ws54{word-spacing:-4.320000px;}
.ws44{word-spacing:-4.260000px;}
.wsb3{word-spacing:-4.158000px;}
.ws5e{word-spacing:-4.080000px;}
.wsae{word-spacing:-3.834000px;}
.ws5{word-spacing:-3.780000px;}
.wsb1{word-spacing:-3.726000px;}
.ws25{word-spacing:-3.720000px;}
.ws69{word-spacing:-3.660000px;}
.ws6d{word-spacing:-3.540000px;}
.wsad{word-spacing:-3.510000px;}
.wsc1{word-spacing:-3.456000px;}
.ws7{word-spacing:-3.402000px;}
.ws9{word-spacing:-3.348000px;}
.ws6{word-spacing:-3.300000px;}
.wsc4{word-spacing:-3.294000px;}
.ws88{word-spacing:-3.132000px;}
.ws35{word-spacing:-3.060000px;}
.wsc0{word-spacing:-3.024000px;}
.ws11{word-spacing:-3.000000px;}
.ws4c{word-spacing:-2.970000px;}
.ws67{word-spacing:-2.940000px;}
.ws4a{word-spacing:-2.820000px;}
.ws96{word-spacing:-2.592000px;}
.wsaa{word-spacing:-2.538000px;}
.wsb{word-spacing:-2.460000px;}
.ws50{word-spacing:-2.430000px;}
.ws1a{word-spacing:-2.340000px;}
.ws41{word-spacing:-2.160000px;}
.ws23{word-spacing:-2.100000px;}
.ws90{word-spacing:-1.890000px;}
.ws32{word-spacing:-1.836000px;}
.ws2d{word-spacing:-1.740000px;}
.ws79{word-spacing:-1.728000px;}
.ws38{word-spacing:-1.620000px;}
.ws9a{word-spacing:-1.566000px;}
.ws65{word-spacing:-1.560000px;}
.wsc8{word-spacing:-1.512000px;}
.ws42{word-spacing:-1.500000px;}
.ws3f{word-spacing:-1.440000px;}
.wsbe{word-spacing:-1.404000px;}
.wsa1{word-spacing:-1.350000px;}
.ws8b{word-spacing:-1.296000px;}
.ws15{word-spacing:-1.260000px;}
.ws6f{word-spacing:-1.200000px;}
.ws2c{word-spacing:-1.140000px;}
.ws5d{word-spacing:-1.080000px;}
.wsc9{word-spacing:-1.026000px;}
.ws7c{word-spacing:-0.972000px;}
.wsbc{word-spacing:-0.918000px;}
.ws3a{word-spacing:-0.900000px;}
.ws78{word-spacing:-0.756000px;}
.ws73{word-spacing:-0.660000px;}
.ws7d{word-spacing:-0.648000px;}
.ws1e{word-spacing:-0.600000px;}
.ws17{word-spacing:-0.540000px;}
.ws9e{word-spacing:-0.486000px;}
.wsb8{word-spacing:-0.432000px;}
.ws3b{word-spacing:-0.420000px;}
.ws28{word-spacing:-0.360000px;}
.ws8a{word-spacing:-0.324000px;}
.ws14{word-spacing:-0.300000px;}
.wsab{word-spacing:-0.216000px;}
.ws19{word-spacing:-0.180000px;}
.ws5a{word-spacing:-0.162000px;}
.ws46{word-spacing:-0.120000px;}
.ws4{word-spacing:0.000000px;}
.ws33{word-spacing:0.054000px;}
.ws76{word-spacing:0.108000px;}
.ws18{word-spacing:0.120000px;}
.ws31{word-spacing:0.162000px;}
.ws24{word-spacing:0.180000px;}
.ws8e{word-spacing:0.216000px;}
.ws3e{word-spacing:0.240000px;}
.ws7e{word-spacing:0.270000px;}
.ws49{word-spacing:0.300000px;}
.wsc6{word-spacing:0.324000px;}
.ws1b{word-spacing:0.360000px;}
.ws9d{word-spacing:0.378000px;}
.ws7a{word-spacing:0.486000px;}
.ws75{word-spacing:0.540000px;}
.ws47{word-spacing:0.600000px;}
.wsc3{word-spacing:0.648000px;}
.ws60{word-spacing:0.660000px;}
.wsc2{word-spacing:0.702000px;}
.ws22{word-spacing:0.720000px;}
.wsb2{word-spacing:0.756000px;}
.ws72{word-spacing:0.780000px;}
.ws37{word-spacing:0.840000px;}
.ws3c{word-spacing:0.864000px;}
.wsd{word-spacing:0.960000px;}
.ws16{word-spacing:1.080000px;}
.ws87{word-spacing:1.134000px;}
.ws95{word-spacing:1.188000px;}
.wsb5{word-spacing:1.296000px;}
.ws55{word-spacing:1.404000px;}
.ws43{word-spacing:1.620000px;}
.ws8{word-spacing:1.674000px;}
.ws85{word-spacing:1.782000px;}
.ws6e{word-spacing:1.800000px;}
.ws66{word-spacing:1.920000px;}
.ws97{word-spacing:1.944000px;}
.wsa2{word-spacing:2.052000px;}
.ws77{word-spacing:2.106000px;}
.ws4d{word-spacing:2.160000px;}
.wsb7{word-spacing:2.214000px;}
.ws48{word-spacing:2.340000px;}
.ws84{word-spacing:2.376000px;}
.wsf{word-spacing:2.700000px;}
.ws2f{word-spacing:2.820000px;}
.wsbd{word-spacing:2.862000px;}
.ws5c{word-spacing:2.940000px;}
.wsc5{word-spacing:3.078000px;}
.ws45{word-spacing:3.120000px;}
.ws12{word-spacing:3.180000px;}
.wsba{word-spacing:3.186000px;}
.ws30{word-spacing:3.294000px;}
.ws2e{word-spacing:3.540000px;}
.ws91{word-spacing:3.618000px;}
.ws5f{word-spacing:3.780000px;}
.ws71{word-spacing:3.840000px;}
.wsa0{word-spacing:3.888000px;}
.ws61{word-spacing:3.900000px;}
.ws6b{word-spacing:4.020000px;}
.ws56{word-spacing:4.050000px;}
.ws7b{word-spacing:4.104000px;}
.ws57{word-spacing:4.158000px;}
.ws1c{word-spacing:4.200000px;}
.ws9c{word-spacing:4.212000px;}
.ws2b{word-spacing:4.260000px;}
.wsb9{word-spacing:4.266000px;}
.ws64{word-spacing:4.680000px;}
.ws70{word-spacing:4.800000px;}
.ws51{word-spacing:4.860000px;}
.ws27{word-spacing:4.980000px;}
.ws9f{word-spacing:5.022000px;}
.ws89{word-spacing:5.076000px;}
.ws74{word-spacing:5.160000px;}
.wscb{word-spacing:5.184000px;}
.ws63{word-spacing:5.280000px;}
.ws86{word-spacing:5.292000px;}
.ws1d{word-spacing:5.340000px;}
.ws92{word-spacing:5.346000px;}
.ws2a{word-spacing:5.400000px;}
.ws81{word-spacing:5.454000px;}
.ws1f{word-spacing:5.520000px;}
.ws53{word-spacing:5.562000px;}
.ws10{word-spacing:5.580000px;}
.wsb6{word-spacing:5.670000px;}
.ws58{word-spacing:5.724000px;}
.ws5b{word-spacing:5.778000px;}
.ws80{word-spacing:5.832000px;}
.ws36{word-spacing:5.880000px;}
.ws9b{word-spacing:5.886000px;}
.wsaf{word-spacing:5.994000px;}
.ws59{word-spacing:6.048000px;}
.ws93{word-spacing:6.210000px;}
.ws40{word-spacing:6.420000px;}
.ws8f{word-spacing:6.480000px;}
.ws99{word-spacing:6.534000px;}
.wsc7{word-spacing:6.696000px;}
.wsa{word-spacing:6.750000px;}
.wse{word-spacing:6.900000px;}
.ws21{word-spacing:6.960000px;}
.ws52{word-spacing:6.966000px;}
.ws29{word-spacing:7.020000px;}
.ws7f{word-spacing:7.074000px;}
.ws4e{word-spacing:7.182000px;}
.ws6a{word-spacing:7.200000px;}
.wsbb{word-spacing:7.236000px;}
.wsac{word-spacing:7.290000px;}
.ws20{word-spacing:7.380000px;}
.ws6c{word-spacing:7.440000px;}
.wsc{word-spacing:7.500000px;}
.ws68{word-spacing:7.560000px;}
.ws8d{word-spacing:8.316000px;}
.ws39{word-spacing:8.340000px;}
.ws8c{word-spacing:8.370000px;}
.ws4f{word-spacing:8.478000px;}
.wsb0{word-spacing:8.532000px;}
.ws98{word-spacing:8.910000px;}
.wsb4{word-spacing:9.234000px;}
.ws4b{word-spacing:10.206000px;}
.ws13{word-spacing:10.620000px;}
.ws94{word-spacing:11.070000px;}
.wsca{word-spacing:11.610000px;}
._a{margin-left:-94.500000px;}
._d{margin-left:-13.206000px;}
._4{margin-left:-8.143200px;}
._6{margin-left:-6.534000px;}
._3{margin-left:-4.912800px;}
._1{margin-left:-3.750000px;}
._c{margin-left:-2.742000px;}
._2{margin-left:-1.704000px;}
._8{width:1.584000px;}
._5{width:3.135000px;}
._7{width:5.160000px;}
._f{width:7.035600px;}
._9{width:8.040000px;}
._e{width:9.190200px;}
._10{width:10.434600px;}
._0{width:1399.268400px;}
._b{width:1480.293600px;}
.fc2{color:rgb(31,67,146);}
.fc1{color:rgb(210,13,75);}
.fc3{color:rgb(210,20,48);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:31.320000px;}
.fs2{font-size:34.800000px;}
.fs3{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y83{bottom:86.538600px;}
.y8f{bottom:86.747250px;}
.y47{bottom:89.729850px;}
.y70{bottom:90.459900px;}
.y10a{bottom:90.474600px;}
.y16b{bottom:91.501500px;}
.y13a{bottom:91.514700px;}
.y26{bottom:91.943250px;}
.y42{bottom:92.243250px;}
.y82{bottom:104.538600px;}
.y8e{bottom:104.747250px;}
.yea{bottom:105.914550px;}
.ybe{bottom:106.074600px;}
.y109{bottom:106.974600px;}
.y46{bottom:107.729850px;}
.y16a{bottom:108.001500px;}
.y139{bottom:108.014700px;}
.y6f{bottom:108.459900px;}
.y25{bottom:109.943250px;}
.y41{bottom:110.243250px;}
.y81{bottom:122.538600px;}
.ybd{bottom:122.574600px;}
.y8d{bottom:122.747250px;}
.y108{bottom:123.474600px;}
.ye9{bottom:123.914550px;}
.y169{bottom:124.501500px;}
.y138{bottom:124.514700px;}
.y45{bottom:125.729850px;}
.y6e{bottom:126.459900px;}
.y24{bottom:127.943250px;}
.y40{bottom:128.243250px;}
.ybc{bottom:139.074600px;}
.y107{bottom:139.974600px;}
.y80{bottom:140.538600px;}
.y8c{bottom:140.747250px;}
.y168{bottom:141.001500px;}
.y137{bottom:141.014700px;}
.ye8{bottom:141.914700px;}
.y44{bottom:143.729850px;}
.y6d{bottom:144.459900px;}
.y23{bottom:145.943250px;}
.y3f{bottom:146.243250px;}
.ybb{bottom:155.574600px;}
.y106{bottom:156.474600px;}
.y167{bottom:157.501500px;}
.y136{bottom:157.514700px;}
.y8b{bottom:158.747250px;}
.y7f{bottom:159.138600px;}
.ye7{bottom:159.914700px;}
.y43{bottom:161.729850px;}
.y6c{bottom:162.459900px;}
.y22{bottom:163.943250px;}
.y3e{bottom:164.243250px;}
.y19f{bottom:167.414700px;}
.yba{bottom:172.074600px;}
.y105{bottom:172.974600px;}
.y166{bottom:174.001500px;}
.y135{bottom:174.014700px;}
.y8a{bottom:176.747250px;}
.y7e{bottom:177.738600px;}
.ye6{bottom:177.914700px;}
.y6b{bottom:180.459900px;}
.y21{bottom:181.943250px;}
.y3d{bottom:182.243250px;}
.yb9{bottom:188.574600px;}
.y104{bottom:189.474600px;}
.y165{bottom:190.501500px;}
.y134{bottom:190.514700px;}
.y89{bottom:194.747250px;}
.ye5{bottom:195.914700px;}
.y7d{bottom:196.338600px;}
.y6a{bottom:198.459900px;}
.y20{bottom:199.943250px;}
.y3c{bottom:200.243250px;}
.y19e{bottom:203.414700px;}
.y195{bottom:204.091050px;}
.yb8{bottom:205.074600px;}
.y103{bottom:205.974600px;}
.y164{bottom:207.001500px;}
.y133{bottom:207.014700px;}
.y77{bottom:209.365350px;}
.y88{bottom:212.747250px;}
.ye4{bottom:213.914700px;}
.y7c{bottom:214.938600px;}
.y69{bottom:216.459900px;}
.y19d{bottom:216.914700px;}
.y1f{bottom:217.943250px;}
.y3b{bottom:218.243250px;}
.y194{bottom:220.591050px;}
.yb7{bottom:221.574600px;}
.y102{bottom:222.474600px;}
.y76{bottom:222.865350px;}
.y163{bottom:223.501500px;}
.y132{bottom:223.514700px;}
.y19c{bottom:230.414700px;}
.y87{bottom:230.747250px;}
.ye3{bottom:231.914700px;}
.y7b{bottom:233.538600px;}
.y68{bottom:234.459900px;}
.y1e{bottom:235.943250px;}
.y3a{bottom:236.243250px;}
.y75{bottom:236.365350px;}
.y193{bottom:237.091050px;}
.yb6{bottom:238.074600px;}
.y101{bottom:238.974600px;}
.y162{bottom:240.001500px;}
.y131{bottom:240.014700px;}
.y19b{bottom:243.914700px;}
.y86{bottom:248.747250px;}
.y74{bottom:249.865350px;}
.ye2{bottom:249.914700px;}
.y7a{bottom:252.138600px;}
.y67{bottom:252.459900px;}
.y192{bottom:253.591050px;}
.y1d{bottom:253.943250px;}
.y39{bottom:254.243250px;}
.yb5{bottom:254.574600px;}
.y100{bottom:255.474600px;}
.y161{bottom:256.501500px;}
.y130{bottom:256.514700px;}
.y19a{bottom:257.414700px;}
.y73{bottom:263.365350px;}
.y85{bottom:266.747250px;}
.ye1{bottom:267.914700px;}
.y191{bottom:270.091050px;}
.y66{bottom:270.459900px;}
.y79{bottom:270.738600px;}
.y199{bottom:270.914700px;}
.yb4{bottom:271.074600px;}
.y1c{bottom:271.943250px;}
.yff{bottom:271.974600px;}
.y38{bottom:272.243250px;}
.y160{bottom:273.001500px;}
.y12f{bottom:273.014700px;}
.y72{bottom:276.865350px;}
.y198{bottom:284.414700px;}
.y84{bottom:284.747250px;}
.ye0{bottom:285.914700px;}
.y190{bottom:286.591050px;}
.yb3{bottom:287.574600px;}
.y65{bottom:288.459900px;}
.yfe{bottom:288.474600px;}
.y78{bottom:289.338600px;}
.y15f{bottom:289.501500px;}
.y12e{bottom:289.514700px;}
.y1b{bottom:289.943250px;}
.y37{bottom:290.243250px;}
.y71{bottom:290.365350px;}
.y197{bottom:297.914700px;}
.y18f{bottom:303.091050px;}
.ydf{bottom:303.914700px;}
.yb2{bottom:304.074600px;}
.yfd{bottom:304.974600px;}
.y15e{bottom:306.001500px;}
.y12d{bottom:306.014700px;}
.y64{bottom:306.459900px;}
.y1a{bottom:307.943250px;}
.y36{bottom:308.243250px;}
.y196{bottom:311.414700px;}
.y18e{bottom:319.591050px;}
.yb1{bottom:320.574600px;}
.yfc{bottom:321.474600px;}
.yde{bottom:321.914700px;}
.y15d{bottom:322.501500px;}
.y12c{bottom:322.514700px;}
.y63{bottom:324.459900px;}
.y19{bottom:325.943250px;}
.y35{bottom:326.243250px;}
.y18d{bottom:336.091050px;}
.yb0{bottom:337.074600px;}
.yfb{bottom:337.974600px;}
.y92{bottom:338.192850px;}
.y15c{bottom:339.001500px;}
.y12b{bottom:339.014700px;}
.ydd{bottom:339.914700px;}
.y62{bottom:342.459900px;}
.y18{bottom:343.943250px;}
.y34{bottom:344.243250px;}
.y91{bottom:351.692850px;}
.y18c{bottom:352.591050px;}
.yaf{bottom:353.574600px;}
.yfa{bottom:354.474600px;}
.y15b{bottom:355.501500px;}
.y12a{bottom:355.514700px;}
.ydc{bottom:357.914700px;}
.y61{bottom:360.459900px;}
.y17{bottom:361.943250px;}
.y33{bottom:362.243250px;}
.y90{bottom:365.192850px;}
.y18b{bottom:369.091050px;}
.yae{bottom:370.074600px;}
.yf9{bottom:370.974600px;}
.y15a{bottom:372.001500px;}
.y129{bottom:372.014700px;}
.ydb{bottom:375.914700px;}
.y60{bottom:378.459900px;}
.y16{bottom:379.943250px;}
.y32{bottom:380.243250px;}
.y18a{bottom:385.591050px;}
.yad{bottom:386.574600px;}
.yf8{bottom:387.474600px;}
.y159{bottom:388.501500px;}
.y128{bottom:388.514700px;}
.yda{bottom:393.914700px;}
.y5f{bottom:396.459900px;}
.y15{bottom:397.943250px;}
.y31{bottom:398.243250px;}
.y189{bottom:402.091050px;}
.yac{bottom:403.074600px;}
.yf7{bottom:403.974600px;}
.y158{bottom:405.001500px;}
.y127{bottom:405.014700px;}
.yd9{bottom:411.914700px;}
.y5e{bottom:414.459900px;}
.y14{bottom:415.943250px;}
.y30{bottom:416.243250px;}
.y188{bottom:418.591050px;}
.yab{bottom:419.574600px;}
.yf6{bottom:420.474600px;}
.y157{bottom:421.501500px;}
.y126{bottom:421.514700px;}
.yd8{bottom:429.914700px;}
.y5d{bottom:432.459900px;}
.y13{bottom:433.943250px;}
.y2f{bottom:434.243250px;}
.y187{bottom:435.091050px;}
.y156{bottom:438.001500px;}
.y125{bottom:438.014700px;}
.yd7{bottom:447.914700px;}
.y5c{bottom:450.459900px;}
.y186{bottom:451.591050px;}
.y12{bottom:451.943250px;}
.y2e{bottom:452.243250px;}
.yaa{bottom:454.074600px;}
.y155{bottom:454.501500px;}
.y124{bottom:454.514700px;}
.yf5{bottom:454.974600px;}
.yd6{bottom:465.914700px;}
.y185{bottom:468.091050px;}
.y5b{bottom:468.459900px;}
.y11{bottom:469.943250px;}
.y2d{bottom:470.243250px;}
.ya9{bottom:470.274600px;}
.y154{bottom:471.001500px;}
.y123{bottom:471.014700px;}
.yd5{bottom:483.914700px;}
.y184{bottom:484.591050px;}
.y5a{bottom:486.459900px;}
.y153{bottom:487.501500px;}
.y122{bottom:487.514700px;}
.y10{bottom:487.943250px;}
.y2c{bottom:488.243250px;}
.y183{bottom:501.091050px;}
.yd4{bottom:501.914700px;}
.y152{bottom:504.001500px;}
.y121{bottom:504.014700px;}
.y59{bottom:504.459900px;}
.ya8{bottom:504.474600px;}
.yf{bottom:505.943250px;}
.y2b{bottom:506.243250px;}
.yf4{bottom:508.974600px;}
.y182{bottom:517.591050px;}
.yd3{bottom:519.914700px;}
.y151{bottom:520.501500px;}
.y120{bottom:520.514700px;}
.y58{bottom:522.459900px;}
.ya7{bottom:522.474600px;}
.ye{bottom:523.943250px;}
.yf3{bottom:524.724600px;}
.y181{bottom:534.091050px;}
.y150{bottom:537.001500px;}
.y11f{bottom:537.014700px;}
.yd2{bottom:537.914700px;}
.y57{bottom:540.459900px;}
.ya6{bottom:540.474600px;}
.y2a{bottom:546.743250px;}
.y180{bottom:550.591050px;}
.y14f{bottom:553.501500px;}
.y11e{bottom:553.514700px;}
.yd{bottom:553.943100px;}
.yf2{bottom:556.224600px;}
.y56{bottom:558.459900px;}
.ya5{bottom:558.474600px;}
.y29{bottom:564.743250px;}
.y17f{bottom:567.091050px;}
.y14e{bottom:570.001500px;}
.y11d{bottom:570.014700px;}
.yc{bottom:570.143250px;}
.yf1{bottom:571.974600px;}
.yd1{bottom:573.914700px;}
.y55{bottom:576.459900px;}
.ya4{bottom:576.474600px;}
.y28{bottom:582.743250px;}
.y17e{bottom:583.591050px;}
.yb{bottom:586.343100px;}
.y14d{bottom:586.501500px;}
.y11c{bottom:586.514700px;}
.yf0{bottom:587.724600px;}
.yd0{bottom:590.114700px;}
.y54{bottom:594.459900px;}
.ya3{bottom:594.474600px;}
.y17d{bottom:600.091050px;}
.y27{bottom:600.743250px;}
.ya{bottom:602.543250px;}
.y14c{bottom:603.001500px;}
.y11b{bottom:603.014700px;}
.yef{bottom:603.474600px;}
.ycf{bottom:606.314700px;}
.y53{bottom:612.459900px;}
.ya2{bottom:612.474600px;}
.y17c{bottom:616.591050px;}
.y9{bottom:618.743250px;}
.yee{bottom:619.224600px;}
.y14b{bottom:619.501500px;}
.y11a{bottom:619.514700px;}
.yce{bottom:622.514700px;}
.y52{bottom:630.459900px;}
.ya1{bottom:630.474600px;}
.y17b{bottom:633.091050px;}
.yed{bottom:634.974600px;}
.y14a{bottom:636.001500px;}
.y119{bottom:636.014700px;}
.ycd{bottom:638.714700px;}
.y51{bottom:648.459900px;}
.ya0{bottom:648.474600px;}
.y17a{bottom:649.591050px;}
.yec{bottom:650.724600px;}
.y149{bottom:652.501500px;}
.y118{bottom:652.514700px;}
.ycc{bottom:654.914700px;}
.y179{bottom:666.091050px;}
.y50{bottom:666.459900px;}
.y9f{bottom:666.474600px;}
.y148{bottom:669.001500px;}
.y117{bottom:669.014700px;}
.ycb{bottom:671.114700px;}
.y7{bottom:671.194800px;}
.y178{bottom:682.591050px;}
.y4f{bottom:684.459900px;}
.y9e{bottom:684.474600px;}
.y147{bottom:685.501500px;}
.y116{bottom:685.514700px;}
.yca{bottom:687.314700px;}
.y177{bottom:699.091050px;}
.y6{bottom:699.694800px;}
.y146{bottom:702.001500px;}
.y115{bottom:702.014700px;}
.y4e{bottom:702.459900px;}
.y9d{bottom:702.474600px;}
.yc9{bottom:703.514700px;}
.y176{bottom:715.591050px;}
.y145{bottom:718.501500px;}
.y114{bottom:718.514700px;}
.yc8{bottom:719.714700px;}
.yeb{bottom:720.459900px;}
.y9c{bottom:720.474600px;}
.y5{bottom:728.194800px;}
.y175{bottom:732.091050px;}
.y144{bottom:735.001500px;}
.y113{bottom:735.014700px;}
.yc7{bottom:735.914700px;}
.y4d{bottom:738.459900px;}
.y9b{bottom:738.474600px;}
.y174{bottom:748.591050px;}
.y143{bottom:751.501500px;}
.y112{bottom:751.514700px;}
.y4c{bottom:756.459900px;}
.y9a{bottom:756.474600px;}
.y173{bottom:765.091050px;}
.y142{bottom:768.001500px;}
.y111{bottom:768.014700px;}
.yc6{bottom:770.114700px;}
.y4b{bottom:774.459900px;}
.y99{bottom:774.474600px;}
.y8{bottom:778.505100px;}
.y172{bottom:781.591050px;}
.y141{bottom:784.501500px;}
.y110{bottom:784.514700px;}
.yc5{bottom:786.314700px;}
.y4a{bottom:792.459900px;}
.y98{bottom:792.474600px;}
.y171{bottom:798.091050px;}
.y140{bottom:801.001500px;}
.y10f{bottom:801.014700px;}
.yc4{bottom:802.514700px;}
.y49{bottom:810.459900px;}
.y97{bottom:810.474600px;}
.y170{bottom:814.591050px;}
.y13f{bottom:817.501500px;}
.y10e{bottom:817.514700px;}
.yc3{bottom:818.714700px;}
.y4{bottom:828.459900px;}
.y96{bottom:828.474600px;}
.y16f{bottom:831.091050px;}
.y13e{bottom:834.001500px;}
.y10d{bottom:834.014700px;}
.yc2{bottom:834.914550px;}
.y48{bottom:846.459900px;}
.y95{bottom:846.474600px;}
.y16e{bottom:847.591050px;}
.y13d{bottom:850.501500px;}
.y10c{bottom:850.514700px;}
.yc1{bottom:851.114700px;}
.y16d{bottom:864.091050px;}
.y3{bottom:864.459900px;}
.y94{bottom:864.474600px;}
.y13c{bottom:867.001500px;}
.y10b{bottom:867.014700px;}
.yc0{bottom:867.314700px;}
.y16c{bottom:880.591050px;}
.y2{bottom:882.459900px;}
.y93{bottom:882.474600px;}
.y13b{bottom:883.501500px;}
.ybf{bottom:883.514700px;}
.y1{bottom:937.589700px;}
.h9{height:37.494141px;}
.h7{height:42.117188px;}
.h6{height:47.381836px;}
.h5{height:47.513672px;}
.h2{height:47.961914px;}
.h4{height:52.646484px;}
.h8{height:52.792969px;}
.h3{height:53.291016px;}
.ha{height:63.175781px;}
.h0{height:1007.700000px;}
.h1{height:1008.000000px;}
.w0{width:722.850000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:63.750000px;}
.x8{left:85.050000px;}
.x4{left:87.750150px;}
.x5{left:93.450150px;}
.xf{left:106.275000px;}
.xb{left:109.050000px;}
.xc{left:114.750000px;}
.x3{left:234.909450px;}
.x2{left:299.830350px;}
.x6{left:361.425000px;}
.x9{left:382.725000px;}
.x7{left:385.425000px;}
.x10{left:403.950000px;}
.xa{left:406.725000px;}
.xd{left:412.425000px;}
.xe{left:443.765400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.840000pt;}
.v1{vertical-align:17.600000pt;}
.ls4f{letter-spacing:-6.192000pt;}
.ls13{letter-spacing:-1.013333pt;}
.ls14{letter-spacing:-0.906667pt;}
.ls10{letter-spacing:-0.853333pt;}
.ls4b{letter-spacing:-0.746667pt;}
.ls80{letter-spacing:-0.720000pt;}
.ls5e{letter-spacing:-0.693333pt;}
.ls60{letter-spacing:-0.672000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls7e{letter-spacing:-0.624000pt;}
.ls52{letter-spacing:-0.586667pt;}
.ls4c{letter-spacing:-0.576000pt;}
.ls27{letter-spacing:-0.533333pt;}
.ls50{letter-spacing:-0.528000pt;}
.ls25{letter-spacing:-0.480000pt;}
.ls51{letter-spacing:-0.432000pt;}
.lsd{letter-spacing:-0.426667pt;}
.ls5f{letter-spacing:-0.384000pt;}
.ls28{letter-spacing:-0.373333pt;}
.ls7d{letter-spacing:-0.336000pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls2a{letter-spacing:-0.288000pt;}
.ls17{letter-spacing:-0.266667pt;}
.lse{letter-spacing:-0.240000pt;}
.ls11{letter-spacing:-0.213333pt;}
.ls71{letter-spacing:-0.192000pt;}
.ls23{letter-spacing:-0.160000pt;}
.ls29{letter-spacing:-0.144000pt;}
.ls26{letter-spacing:-0.106667pt;}
.lsf{letter-spacing:-0.096000pt;}
.ls24{letter-spacing:-0.053333pt;}
.ls2b{letter-spacing:-0.048000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.000533pt;}
.ls43{letter-spacing:0.048000pt;}
.ls59{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.106667pt;}
.ls41{letter-spacing:0.144000pt;}
.ls2f{letter-spacing:0.160000pt;}
.ls61{letter-spacing:0.192000pt;}
.ls65{letter-spacing:0.240000pt;}
.ls1f{letter-spacing:0.266667pt;}
.ls40{letter-spacing:0.288000pt;}
.ls1c{letter-spacing:0.320000pt;}
.ls38{letter-spacing:0.336000pt;}
.ls3{letter-spacing:0.373333pt;}
.ls70{letter-spacing:0.384000pt;}
.ls46{letter-spacing:0.426667pt;}
.ls4e{letter-spacing:0.432000pt;}
.ls1{letter-spacing:0.480000pt;}
.ls3c{letter-spacing:0.528000pt;}
.lsa{letter-spacing:0.533333pt;}
.ls0{letter-spacing:0.576000pt;}
.ls6{letter-spacing:0.586667pt;}
.ls64{letter-spacing:0.624000pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls6f{letter-spacing:0.672000pt;}
.ls2{letter-spacing:0.693333pt;}
.ls2e{letter-spacing:0.746667pt;}
.ls37{letter-spacing:0.768000pt;}
.lsb{letter-spacing:0.800000pt;}
.ls7c{letter-spacing:0.816000pt;}
.ls1a{letter-spacing:0.853333pt;}
.ls76{letter-spacing:0.864000pt;}
.ls47{letter-spacing:0.906667pt;}
.ls5b{letter-spacing:0.912000pt;}
.ls45{letter-spacing:0.960000pt;}
.ls73{letter-spacing:1.008000pt;}
.ls58{letter-spacing:1.013333pt;}
.ls22{letter-spacing:1.056000pt;}
.ls31{letter-spacing:1.066667pt;}
.ls81{letter-spacing:1.104000pt;}
.ls35{letter-spacing:1.120000pt;}
.ls39{letter-spacing:1.152000pt;}
.ls1e{letter-spacing:1.173333pt;}
.ls6b{letter-spacing:1.200000pt;}
.ls32{letter-spacing:1.226667pt;}
.ls5c{letter-spacing:1.248000pt;}
.ls19{letter-spacing:1.280000pt;}
.ls33{letter-spacing:1.333333pt;}
.ls79{letter-spacing:1.344000pt;}
.ls53{letter-spacing:1.386667pt;}
.ls5d{letter-spacing:1.392000pt;}
.ls34{letter-spacing:1.440000pt;}
.ls36{letter-spacing:1.488000pt;}
.ls5{letter-spacing:1.493333pt;}
.ls82{letter-spacing:1.536000pt;}
.ls5a{letter-spacing:1.584000pt;}
.ls44{letter-spacing:1.600000pt;}
.ls4a{letter-spacing:1.653333pt;}
.ls4{letter-spacing:1.760000pt;}
.ls42{letter-spacing:1.776000pt;}
.ls69{letter-spacing:1.824000pt;}
.ls48{letter-spacing:1.866667pt;}
.ls7b{letter-spacing:1.872000pt;}
.ls9{letter-spacing:1.920000pt;}
.ls6d{letter-spacing:1.968000pt;}
.ls20{letter-spacing:1.973333pt;}
.ls1d{letter-spacing:2.026667pt;}
.ls6a{letter-spacing:2.064000pt;}
.ls6e{letter-spacing:2.112000pt;}
.ls8{letter-spacing:2.133333pt;}
.ls75{letter-spacing:2.208000pt;}
.ls55{letter-spacing:2.240000pt;}
.ls84{letter-spacing:2.256000pt;}
.ls49{letter-spacing:2.293333pt;}
.ls67{letter-spacing:2.304000pt;}
.ls74{letter-spacing:2.352000pt;}
.ls3a{letter-spacing:2.400000pt;}
.ls3f{letter-spacing:2.496000pt;}
.ls7a{letter-spacing:2.544000pt;}
.ls2d{letter-spacing:2.666667pt;}
.ls77{letter-spacing:2.688000pt;}
.ls57{letter-spacing:2.826667pt;}
.ls16{letter-spacing:2.880000pt;}
.ls6c{letter-spacing:2.928000pt;}
.ls21{letter-spacing:3.040000pt;}
.ls83{letter-spacing:3.072000pt;}
.ls3e{letter-spacing:3.120000pt;}
.ls56{letter-spacing:3.146667pt;}
.ls3b{letter-spacing:3.168000pt;}
.ls72{letter-spacing:3.264000pt;}
.ls54{letter-spacing:3.360000pt;}
.ls2c{letter-spacing:3.680000pt;}
.ls63{letter-spacing:3.696000pt;}
.ls62{letter-spacing:3.744000pt;}
.ls3d{letter-spacing:3.792000pt;}
.ls7f{letter-spacing:3.840000pt;}
.ls15{letter-spacing:3.893333pt;}
.ls68{letter-spacing:3.936000pt;}
.ls78{letter-spacing:4.128000pt;}
.ls4d{letter-spacing:4.560000pt;}
.ls66{letter-spacing:4.896000pt;}
.ls85{letter-spacing:5.184000pt;}
.ws3d{word-spacing:-14.400000pt;}
.ws3{word-spacing:-13.706667pt;}
.ws62{word-spacing:-13.584000pt;}
.wsa4{word-spacing:-13.488000pt;}
.ws2{word-spacing:-13.333333pt;}
.wsa5{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.906667pt;}
.wsa7{word-spacing:-12.432000pt;}
.ws34{word-spacing:-12.000000pt;}
.wsa6{word-spacing:-11.952000pt;}
.wsa8{word-spacing:-11.904000pt;}
.ws82{word-spacing:-11.808000pt;}
.wsa3{word-spacing:-11.664000pt;}
.ws83{word-spacing:-11.424000pt;}
.ws1{word-spacing:-7.733333pt;}
.wsbf{word-spacing:-6.960000pt;}
.wsa9{word-spacing:-5.616000pt;}
.ws26{word-spacing:-4.266667pt;}
.ws54{word-spacing:-3.840000pt;}
.ws44{word-spacing:-3.786667pt;}
.wsb3{word-spacing:-3.696000pt;}
.ws5e{word-spacing:-3.626667pt;}
.wsae{word-spacing:-3.408000pt;}
.ws5{word-spacing:-3.360000pt;}
.wsb1{word-spacing:-3.312000pt;}
.ws25{word-spacing:-3.306667pt;}
.ws69{word-spacing:-3.253333pt;}
.ws6d{word-spacing:-3.146667pt;}
.wsad{word-spacing:-3.120000pt;}
.wsc1{word-spacing:-3.072000pt;}
.ws7{word-spacing:-3.024000pt;}
.ws9{word-spacing:-2.976000pt;}
.ws6{word-spacing:-2.933333pt;}
.wsc4{word-spacing:-2.928000pt;}
.ws88{word-spacing:-2.784000pt;}
.ws35{word-spacing:-2.720000pt;}
.wsc0{word-spacing:-2.688000pt;}
.ws11{word-spacing:-2.666667pt;}
.ws4c{word-spacing:-2.640000pt;}
.ws67{word-spacing:-2.613333pt;}
.ws4a{word-spacing:-2.506667pt;}
.ws96{word-spacing:-2.304000pt;}
.wsaa{word-spacing:-2.256000pt;}
.wsb{word-spacing:-2.186667pt;}
.ws50{word-spacing:-2.160000pt;}
.ws1a{word-spacing:-2.080000pt;}
.ws41{word-spacing:-1.920000pt;}
.ws23{word-spacing:-1.866667pt;}
.ws90{word-spacing:-1.680000pt;}
.ws32{word-spacing:-1.632000pt;}
.ws2d{word-spacing:-1.546667pt;}
.ws79{word-spacing:-1.536000pt;}
.ws38{word-spacing:-1.440000pt;}
.ws9a{word-spacing:-1.392000pt;}
.ws65{word-spacing:-1.386667pt;}
.wsc8{word-spacing:-1.344000pt;}
.ws42{word-spacing:-1.333333pt;}
.ws3f{word-spacing:-1.280000pt;}
.wsbe{word-spacing:-1.248000pt;}
.wsa1{word-spacing:-1.200000pt;}
.ws8b{word-spacing:-1.152000pt;}
.ws15{word-spacing:-1.120000pt;}
.ws6f{word-spacing:-1.066667pt;}
.ws2c{word-spacing:-1.013333pt;}
.ws5d{word-spacing:-0.960000pt;}
.wsc9{word-spacing:-0.912000pt;}
.ws7c{word-spacing:-0.864000pt;}
.wsbc{word-spacing:-0.816000pt;}
.ws3a{word-spacing:-0.800000pt;}
.ws78{word-spacing:-0.672000pt;}
.ws73{word-spacing:-0.586667pt;}
.ws7d{word-spacing:-0.576000pt;}
.ws1e{word-spacing:-0.533333pt;}
.ws17{word-spacing:-0.480000pt;}
.ws9e{word-spacing:-0.432000pt;}
.wsb8{word-spacing:-0.384000pt;}
.ws3b{word-spacing:-0.373333pt;}
.ws28{word-spacing:-0.320000pt;}
.ws8a{word-spacing:-0.288000pt;}
.ws14{word-spacing:-0.266667pt;}
.wsab{word-spacing:-0.192000pt;}
.ws19{word-spacing:-0.160000pt;}
.ws5a{word-spacing:-0.144000pt;}
.ws46{word-spacing:-0.106667pt;}
.ws4{word-spacing:0.000000pt;}
.ws33{word-spacing:0.048000pt;}
.ws76{word-spacing:0.096000pt;}
.ws18{word-spacing:0.106667pt;}
.ws31{word-spacing:0.144000pt;}
.ws24{word-spacing:0.160000pt;}
.ws8e{word-spacing:0.192000pt;}
.ws3e{word-spacing:0.213333pt;}
.ws7e{word-spacing:0.240000pt;}
.ws49{word-spacing:0.266667pt;}
.wsc6{word-spacing:0.288000pt;}
.ws1b{word-spacing:0.320000pt;}
.ws9d{word-spacing:0.336000pt;}
.ws7a{word-spacing:0.432000pt;}
.ws75{word-spacing:0.480000pt;}
.ws47{word-spacing:0.533333pt;}
.wsc3{word-spacing:0.576000pt;}
.ws60{word-spacing:0.586667pt;}
.wsc2{word-spacing:0.624000pt;}
.ws22{word-spacing:0.640000pt;}
.wsb2{word-spacing:0.672000pt;}
.ws72{word-spacing:0.693333pt;}
.ws37{word-spacing:0.746667pt;}
.ws3c{word-spacing:0.768000pt;}
.wsd{word-spacing:0.853333pt;}
.ws16{word-spacing:0.960000pt;}
.ws87{word-spacing:1.008000pt;}
.ws95{word-spacing:1.056000pt;}
.wsb5{word-spacing:1.152000pt;}
.ws55{word-spacing:1.248000pt;}
.ws43{word-spacing:1.440000pt;}
.ws8{word-spacing:1.488000pt;}
.ws85{word-spacing:1.584000pt;}
.ws6e{word-spacing:1.600000pt;}
.ws66{word-spacing:1.706667pt;}
.ws97{word-spacing:1.728000pt;}
.wsa2{word-spacing:1.824000pt;}
.ws77{word-spacing:1.872000pt;}
.ws4d{word-spacing:1.920000pt;}
.wsb7{word-spacing:1.968000pt;}
.ws48{word-spacing:2.080000pt;}
.ws84{word-spacing:2.112000pt;}
.wsf{word-spacing:2.400000pt;}
.ws2f{word-spacing:2.506667pt;}
.wsbd{word-spacing:2.544000pt;}
.ws5c{word-spacing:2.613333pt;}
.wsc5{word-spacing:2.736000pt;}
.ws45{word-spacing:2.773333pt;}
.ws12{word-spacing:2.826667pt;}
.wsba{word-spacing:2.832000pt;}
.ws30{word-spacing:2.928000pt;}
.ws2e{word-spacing:3.146667pt;}
.ws91{word-spacing:3.216000pt;}
.ws5f{word-spacing:3.360000pt;}
.ws71{word-spacing:3.413333pt;}
.wsa0{word-spacing:3.456000pt;}
.ws61{word-spacing:3.466667pt;}
.ws6b{word-spacing:3.573333pt;}
.ws56{word-spacing:3.600000pt;}
.ws7b{word-spacing:3.648000pt;}
.ws57{word-spacing:3.696000pt;}
.ws1c{word-spacing:3.733333pt;}
.ws9c{word-spacing:3.744000pt;}
.ws2b{word-spacing:3.786667pt;}
.wsb9{word-spacing:3.792000pt;}
.ws64{word-spacing:4.160000pt;}
.ws70{word-spacing:4.266667pt;}
.ws51{word-spacing:4.320000pt;}
.ws27{word-spacing:4.426667pt;}
.ws9f{word-spacing:4.464000pt;}
.ws89{word-spacing:4.512000pt;}
.ws74{word-spacing:4.586667pt;}
.wscb{word-spacing:4.608000pt;}
.ws63{word-spacing:4.693333pt;}
.ws86{word-spacing:4.704000pt;}
.ws1d{word-spacing:4.746667pt;}
.ws92{word-spacing:4.752000pt;}
.ws2a{word-spacing:4.800000pt;}
.ws81{word-spacing:4.848000pt;}
.ws1f{word-spacing:4.906667pt;}
.ws53{word-spacing:4.944000pt;}
.ws10{word-spacing:4.960000pt;}
.wsb6{word-spacing:5.040000pt;}
.ws58{word-spacing:5.088000pt;}
.ws5b{word-spacing:5.136000pt;}
.ws80{word-spacing:5.184000pt;}
.ws36{word-spacing:5.226667pt;}
.ws9b{word-spacing:5.232000pt;}
.wsaf{word-spacing:5.328000pt;}
.ws59{word-spacing:5.376000pt;}
.ws93{word-spacing:5.520000pt;}
.ws40{word-spacing:5.706667pt;}
.ws8f{word-spacing:5.760000pt;}
.ws99{word-spacing:5.808000pt;}
.wsc7{word-spacing:5.952000pt;}
.wsa{word-spacing:6.000000pt;}
.wse{word-spacing:6.133333pt;}
.ws21{word-spacing:6.186667pt;}
.ws52{word-spacing:6.192000pt;}
.ws29{word-spacing:6.240000pt;}
.ws7f{word-spacing:6.288000pt;}
.ws4e{word-spacing:6.384000pt;}
.ws6a{word-spacing:6.400000pt;}
.wsbb{word-spacing:6.432000pt;}
.wsac{word-spacing:6.480000pt;}
.ws20{word-spacing:6.560000pt;}
.ws6c{word-spacing:6.613333pt;}
.wsc{word-spacing:6.666667pt;}
.ws68{word-spacing:6.720000pt;}
.ws8d{word-spacing:7.392000pt;}
.ws39{word-spacing:7.413333pt;}
.ws8c{word-spacing:7.440000pt;}
.ws4f{word-spacing:7.536000pt;}
.wsb0{word-spacing:7.584000pt;}
.ws98{word-spacing:7.920000pt;}
.wsb4{word-spacing:8.208000pt;}
.ws4b{word-spacing:9.072000pt;}
.ws13{word-spacing:9.440000pt;}
.ws94{word-spacing:9.840000pt;}
.wsca{word-spacing:10.320000pt;}
._a{margin-left:-84.000000pt;}
._d{margin-left:-11.738667pt;}
._4{margin-left:-7.238400pt;}
._6{margin-left:-5.808000pt;}
._3{margin-left:-4.366933pt;}
._1{margin-left:-3.333333pt;}
._c{margin-left:-2.437333pt;}
._2{margin-left:-1.514667pt;}
._8{width:1.408000pt;}
._5{width:2.786667pt;}
._7{width:4.586667pt;}
._f{width:6.253867pt;}
._9{width:7.146667pt;}
._e{width:8.169067pt;}
._10{width:9.275200pt;}
._0{width:1243.794133pt;}
._b{width:1315.816533pt;}
.fs4{font-size:27.840000pt;}
.fs2{font-size:30.933333pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:76.923200pt;}
.y8f{bottom:77.108667pt;}
.y47{bottom:79.759867pt;}
.y70{bottom:80.408800pt;}
.y10a{bottom:80.421867pt;}
.y16b{bottom:81.334667pt;}
.y13a{bottom:81.346400pt;}
.y26{bottom:81.727333pt;}
.y42{bottom:81.994000pt;}
.y82{bottom:92.923200pt;}
.y8e{bottom:93.108667pt;}
.yea{bottom:94.146267pt;}
.ybe{bottom:94.288533pt;}
.y109{bottom:95.088533pt;}
.y46{bottom:95.759867pt;}
.y16a{bottom:96.001333pt;}
.y139{bottom:96.013067pt;}
.y6f{bottom:96.408800pt;}
.y25{bottom:97.727333pt;}
.y41{bottom:97.994000pt;}
.y81{bottom:108.923200pt;}
.ybd{bottom:108.955200pt;}
.y8d{bottom:109.108667pt;}
.y108{bottom:109.755200pt;}
.ye9{bottom:110.146267pt;}
.y169{bottom:110.668000pt;}
.y138{bottom:110.679733pt;}
.y45{bottom:111.759867pt;}
.y6e{bottom:112.408800pt;}
.y24{bottom:113.727333pt;}
.y40{bottom:113.994000pt;}
.ybc{bottom:123.621867pt;}
.y107{bottom:124.421867pt;}
.y80{bottom:124.923200pt;}
.y8c{bottom:125.108667pt;}
.y168{bottom:125.334667pt;}
.y137{bottom:125.346400pt;}
.ye8{bottom:126.146400pt;}
.y44{bottom:127.759867pt;}
.y6d{bottom:128.408800pt;}
.y23{bottom:129.727333pt;}
.y3f{bottom:129.994000pt;}
.ybb{bottom:138.288533pt;}
.y106{bottom:139.088533pt;}
.y167{bottom:140.001333pt;}
.y136{bottom:140.013067pt;}
.y8b{bottom:141.108667pt;}
.y7f{bottom:141.456533pt;}
.ye7{bottom:142.146400pt;}
.y43{bottom:143.759867pt;}
.y6c{bottom:144.408800pt;}
.y22{bottom:145.727333pt;}
.y3e{bottom:145.994000pt;}
.y19f{bottom:148.813067pt;}
.yba{bottom:152.955200pt;}
.y105{bottom:153.755200pt;}
.y166{bottom:154.668000pt;}
.y135{bottom:154.679733pt;}
.y8a{bottom:157.108667pt;}
.y7e{bottom:157.989867pt;}
.ye6{bottom:158.146400pt;}
.y6b{bottom:160.408800pt;}
.y21{bottom:161.727333pt;}
.y3d{bottom:161.994000pt;}
.yb9{bottom:167.621867pt;}
.y104{bottom:168.421867pt;}
.y165{bottom:169.334667pt;}
.y134{bottom:169.346400pt;}
.y89{bottom:173.108667pt;}
.ye5{bottom:174.146400pt;}
.y7d{bottom:174.523200pt;}
.y6a{bottom:176.408800pt;}
.y20{bottom:177.727333pt;}
.y3c{bottom:177.994000pt;}
.y19e{bottom:180.813067pt;}
.y195{bottom:181.414267pt;}
.yb8{bottom:182.288533pt;}
.y103{bottom:183.088533pt;}
.y164{bottom:184.001333pt;}
.y133{bottom:184.013067pt;}
.y77{bottom:186.102533pt;}
.y88{bottom:189.108667pt;}
.ye4{bottom:190.146400pt;}
.y7c{bottom:191.056533pt;}
.y69{bottom:192.408800pt;}
.y19d{bottom:192.813067pt;}
.y1f{bottom:193.727333pt;}
.y3b{bottom:193.994000pt;}
.y194{bottom:196.080933pt;}
.yb7{bottom:196.955200pt;}
.y102{bottom:197.755200pt;}
.y76{bottom:198.102533pt;}
.y163{bottom:198.668000pt;}
.y132{bottom:198.679733pt;}
.y19c{bottom:204.813067pt;}
.y87{bottom:205.108667pt;}
.ye3{bottom:206.146400pt;}
.y7b{bottom:207.589867pt;}
.y68{bottom:208.408800pt;}
.y1e{bottom:209.727333pt;}
.y3a{bottom:209.994000pt;}
.y75{bottom:210.102533pt;}
.y193{bottom:210.747600pt;}
.yb6{bottom:211.621867pt;}
.y101{bottom:212.421867pt;}
.y162{bottom:213.334667pt;}
.y131{bottom:213.346400pt;}
.y19b{bottom:216.813067pt;}
.y86{bottom:221.108667pt;}
.y74{bottom:222.102533pt;}
.ye2{bottom:222.146400pt;}
.y7a{bottom:224.123200pt;}
.y67{bottom:224.408800pt;}
.y192{bottom:225.414267pt;}
.y1d{bottom:225.727333pt;}
.y39{bottom:225.994000pt;}
.yb5{bottom:226.288533pt;}
.y100{bottom:227.088533pt;}
.y161{bottom:228.001333pt;}
.y130{bottom:228.013067pt;}
.y19a{bottom:228.813067pt;}
.y73{bottom:234.102533pt;}
.y85{bottom:237.108667pt;}
.ye1{bottom:238.146400pt;}
.y191{bottom:240.080933pt;}
.y66{bottom:240.408800pt;}
.y79{bottom:240.656533pt;}
.y199{bottom:240.813067pt;}
.yb4{bottom:240.955200pt;}
.y1c{bottom:241.727333pt;}
.yff{bottom:241.755200pt;}
.y38{bottom:241.994000pt;}
.y160{bottom:242.668000pt;}
.y12f{bottom:242.679733pt;}
.y72{bottom:246.102533pt;}
.y198{bottom:252.813067pt;}
.y84{bottom:253.108667pt;}
.ye0{bottom:254.146400pt;}
.y190{bottom:254.747600pt;}
.yb3{bottom:255.621867pt;}
.y65{bottom:256.408800pt;}
.yfe{bottom:256.421867pt;}
.y78{bottom:257.189867pt;}
.y15f{bottom:257.334667pt;}
.y12e{bottom:257.346400pt;}
.y1b{bottom:257.727333pt;}
.y37{bottom:257.994000pt;}
.y71{bottom:258.102533pt;}
.y197{bottom:264.813067pt;}
.y18f{bottom:269.414267pt;}
.ydf{bottom:270.146400pt;}
.yb2{bottom:270.288533pt;}
.yfd{bottom:271.088533pt;}
.y15e{bottom:272.001333pt;}
.y12d{bottom:272.013067pt;}
.y64{bottom:272.408800pt;}
.y1a{bottom:273.727333pt;}
.y36{bottom:273.994000pt;}
.y196{bottom:276.813067pt;}
.y18e{bottom:284.080933pt;}
.yb1{bottom:284.955200pt;}
.yfc{bottom:285.755200pt;}
.yde{bottom:286.146400pt;}
.y15d{bottom:286.668000pt;}
.y12c{bottom:286.679733pt;}
.y63{bottom:288.408800pt;}
.y19{bottom:289.727333pt;}
.y35{bottom:289.994000pt;}
.y18d{bottom:298.747600pt;}
.yb0{bottom:299.621867pt;}
.yfb{bottom:300.421867pt;}
.y92{bottom:300.615867pt;}
.y15c{bottom:301.334667pt;}
.y12b{bottom:301.346400pt;}
.ydd{bottom:302.146400pt;}
.y62{bottom:304.408800pt;}
.y18{bottom:305.727333pt;}
.y34{bottom:305.994000pt;}
.y91{bottom:312.615867pt;}
.y18c{bottom:313.414267pt;}
.yaf{bottom:314.288533pt;}
.yfa{bottom:315.088533pt;}
.y15b{bottom:316.001333pt;}
.y12a{bottom:316.013067pt;}
.ydc{bottom:318.146400pt;}
.y61{bottom:320.408800pt;}
.y17{bottom:321.727333pt;}
.y33{bottom:321.994000pt;}
.y90{bottom:324.615867pt;}
.y18b{bottom:328.080933pt;}
.yae{bottom:328.955200pt;}
.yf9{bottom:329.755200pt;}
.y15a{bottom:330.668000pt;}
.y129{bottom:330.679733pt;}
.ydb{bottom:334.146400pt;}
.y60{bottom:336.408800pt;}
.y16{bottom:337.727333pt;}
.y32{bottom:337.994000pt;}
.y18a{bottom:342.747600pt;}
.yad{bottom:343.621867pt;}
.yf8{bottom:344.421867pt;}
.y159{bottom:345.334667pt;}
.y128{bottom:345.346400pt;}
.yda{bottom:350.146400pt;}
.y5f{bottom:352.408800pt;}
.y15{bottom:353.727333pt;}
.y31{bottom:353.994000pt;}
.y189{bottom:357.414267pt;}
.yac{bottom:358.288533pt;}
.yf7{bottom:359.088533pt;}
.y158{bottom:360.001333pt;}
.y127{bottom:360.013067pt;}
.yd9{bottom:366.146400pt;}
.y5e{bottom:368.408800pt;}
.y14{bottom:369.727333pt;}
.y30{bottom:369.994000pt;}
.y188{bottom:372.080933pt;}
.yab{bottom:372.955200pt;}
.yf6{bottom:373.755200pt;}
.y157{bottom:374.668000pt;}
.y126{bottom:374.679733pt;}
.yd8{bottom:382.146400pt;}
.y5d{bottom:384.408800pt;}
.y13{bottom:385.727333pt;}
.y2f{bottom:385.994000pt;}
.y187{bottom:386.747600pt;}
.y156{bottom:389.334667pt;}
.y125{bottom:389.346400pt;}
.yd7{bottom:398.146400pt;}
.y5c{bottom:400.408800pt;}
.y186{bottom:401.414267pt;}
.y12{bottom:401.727333pt;}
.y2e{bottom:401.994000pt;}
.yaa{bottom:403.621867pt;}
.y155{bottom:404.001333pt;}
.y124{bottom:404.013067pt;}
.yf5{bottom:404.421867pt;}
.yd6{bottom:414.146400pt;}
.y185{bottom:416.080933pt;}
.y5b{bottom:416.408800pt;}
.y11{bottom:417.727333pt;}
.y2d{bottom:417.994000pt;}
.ya9{bottom:418.021867pt;}
.y154{bottom:418.668000pt;}
.y123{bottom:418.679733pt;}
.yd5{bottom:430.146400pt;}
.y184{bottom:430.747600pt;}
.y5a{bottom:432.408800pt;}
.y153{bottom:433.334667pt;}
.y122{bottom:433.346400pt;}
.y10{bottom:433.727333pt;}
.y2c{bottom:433.994000pt;}
.y183{bottom:445.414267pt;}
.yd4{bottom:446.146400pt;}
.y152{bottom:448.001333pt;}
.y121{bottom:448.013067pt;}
.y59{bottom:448.408800pt;}
.ya8{bottom:448.421867pt;}
.yf{bottom:449.727333pt;}
.y2b{bottom:449.994000pt;}
.yf4{bottom:452.421867pt;}
.y182{bottom:460.080933pt;}
.yd3{bottom:462.146400pt;}
.y151{bottom:462.668000pt;}
.y120{bottom:462.679733pt;}
.y58{bottom:464.408800pt;}
.ya7{bottom:464.421867pt;}
.ye{bottom:465.727333pt;}
.yf3{bottom:466.421867pt;}
.y181{bottom:474.747600pt;}
.y150{bottom:477.334667pt;}
.y11f{bottom:477.346400pt;}
.yd2{bottom:478.146400pt;}
.y57{bottom:480.408800pt;}
.ya6{bottom:480.421867pt;}
.y2a{bottom:485.994000pt;}
.y180{bottom:489.414267pt;}
.y14f{bottom:492.001333pt;}
.y11e{bottom:492.013067pt;}
.yd{bottom:492.393867pt;}
.yf2{bottom:494.421867pt;}
.y56{bottom:496.408800pt;}
.ya5{bottom:496.421867pt;}
.y29{bottom:501.994000pt;}
.y17f{bottom:504.080933pt;}
.y14e{bottom:506.668000pt;}
.y11d{bottom:506.679733pt;}
.yc{bottom:506.794000pt;}
.yf1{bottom:508.421867pt;}
.yd1{bottom:510.146400pt;}
.y55{bottom:512.408800pt;}
.ya4{bottom:512.421867pt;}
.y28{bottom:517.994000pt;}
.y17e{bottom:518.747600pt;}
.yb{bottom:521.193867pt;}
.y14d{bottom:521.334667pt;}
.y11c{bottom:521.346400pt;}
.yf0{bottom:522.421867pt;}
.yd0{bottom:524.546400pt;}
.y54{bottom:528.408800pt;}
.ya3{bottom:528.421867pt;}
.y17d{bottom:533.414267pt;}
.y27{bottom:533.994000pt;}
.ya{bottom:535.594000pt;}
.y14c{bottom:536.001333pt;}
.y11b{bottom:536.013067pt;}
.yef{bottom:536.421867pt;}
.ycf{bottom:538.946400pt;}
.y53{bottom:544.408800pt;}
.ya2{bottom:544.421867pt;}
.y17c{bottom:548.080933pt;}
.y9{bottom:549.994000pt;}
.yee{bottom:550.421867pt;}
.y14b{bottom:550.668000pt;}
.y11a{bottom:550.679733pt;}
.yce{bottom:553.346400pt;}
.y52{bottom:560.408800pt;}
.ya1{bottom:560.421867pt;}
.y17b{bottom:562.747600pt;}
.yed{bottom:564.421867pt;}
.y14a{bottom:565.334667pt;}
.y119{bottom:565.346400pt;}
.ycd{bottom:567.746400pt;}
.y51{bottom:576.408800pt;}
.ya0{bottom:576.421867pt;}
.y17a{bottom:577.414267pt;}
.yec{bottom:578.421867pt;}
.y149{bottom:580.001333pt;}
.y118{bottom:580.013067pt;}
.ycc{bottom:582.146400pt;}
.y179{bottom:592.080933pt;}
.y50{bottom:592.408800pt;}
.y9f{bottom:592.421867pt;}
.y148{bottom:594.668000pt;}
.y117{bottom:594.679733pt;}
.ycb{bottom:596.546400pt;}
.y7{bottom:596.617600pt;}
.y178{bottom:606.747600pt;}
.y4f{bottom:608.408800pt;}
.y9e{bottom:608.421867pt;}
.y147{bottom:609.334667pt;}
.y116{bottom:609.346400pt;}
.yca{bottom:610.946400pt;}
.y177{bottom:621.414267pt;}
.y6{bottom:621.950933pt;}
.y146{bottom:624.001333pt;}
.y115{bottom:624.013067pt;}
.y4e{bottom:624.408800pt;}
.y9d{bottom:624.421867pt;}
.yc9{bottom:625.346400pt;}
.y176{bottom:636.080933pt;}
.y145{bottom:638.668000pt;}
.y114{bottom:638.679733pt;}
.yc8{bottom:639.746400pt;}
.yeb{bottom:640.408800pt;}
.y9c{bottom:640.421867pt;}
.y5{bottom:647.284267pt;}
.y175{bottom:650.747600pt;}
.y144{bottom:653.334667pt;}
.y113{bottom:653.346400pt;}
.yc7{bottom:654.146400pt;}
.y4d{bottom:656.408800pt;}
.y9b{bottom:656.421867pt;}
.y174{bottom:665.414267pt;}
.y143{bottom:668.001333pt;}
.y112{bottom:668.013067pt;}
.y4c{bottom:672.408800pt;}
.y9a{bottom:672.421867pt;}
.y173{bottom:680.080933pt;}
.y142{bottom:682.668000pt;}
.y111{bottom:682.679733pt;}
.yc6{bottom:684.546400pt;}
.y4b{bottom:688.408800pt;}
.y99{bottom:688.421867pt;}
.y8{bottom:692.004533pt;}
.y172{bottom:694.747600pt;}
.y141{bottom:697.334667pt;}
.y110{bottom:697.346400pt;}
.yc5{bottom:698.946400pt;}
.y4a{bottom:704.408800pt;}
.y98{bottom:704.421867pt;}
.y171{bottom:709.414267pt;}
.y140{bottom:712.001333pt;}
.y10f{bottom:712.013067pt;}
.yc4{bottom:713.346400pt;}
.y49{bottom:720.408800pt;}
.y97{bottom:720.421867pt;}
.y170{bottom:724.080933pt;}
.y13f{bottom:726.668000pt;}
.y10e{bottom:726.679733pt;}
.yc3{bottom:727.746400pt;}
.y4{bottom:736.408800pt;}
.y96{bottom:736.421867pt;}
.y16f{bottom:738.747600pt;}
.y13e{bottom:741.334667pt;}
.y10d{bottom:741.346400pt;}
.yc2{bottom:742.146267pt;}
.y48{bottom:752.408800pt;}
.y95{bottom:752.421867pt;}
.y16e{bottom:753.414267pt;}
.y13d{bottom:756.001333pt;}
.y10c{bottom:756.013067pt;}
.yc1{bottom:756.546400pt;}
.y16d{bottom:768.080933pt;}
.y3{bottom:768.408800pt;}
.y94{bottom:768.421867pt;}
.y13c{bottom:770.668000pt;}
.y10b{bottom:770.679733pt;}
.yc0{bottom:770.946400pt;}
.y16c{bottom:782.747600pt;}
.y2{bottom:784.408800pt;}
.y93{bottom:784.421867pt;}
.y13b{bottom:785.334667pt;}
.ybf{bottom:785.346400pt;}
.y1{bottom:833.413067pt;}
.h9{height:33.328125pt;}
.h7{height:37.437500pt;}
.h6{height:42.117188pt;}
.h5{height:42.234375pt;}
.h2{height:42.632812pt;}
.h4{height:46.796875pt;}
.h8{height:46.927083pt;}
.h3{height:47.369792pt;}
.ha{height:56.156250pt;}
.h0{height:895.733333pt;}
.h1{height:896.000000pt;}
.w0{width:642.533333pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:56.666667pt;}
.x8{left:75.600000pt;}
.x4{left:78.000133pt;}
.x5{left:83.066800pt;}
.xf{left:94.466667pt;}
.xb{left:96.933333pt;}
.xc{left:102.000000pt;}
.x3{left:208.808400pt;}
.x2{left:266.515867pt;}
.x6{left:321.266667pt;}
.x9{left:340.200000pt;}
.x7{left:342.600000pt;}
.x10{left:359.066667pt;}
.xa{left:361.533333pt;}
.xd{left:366.600000pt;}
.xe{left:394.458133pt;}
}




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