
    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_08795f4321e031cd460e9723.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.196777;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_7e15f2da6bc06ca7489e0b72.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.169922;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_5c42d83dc3023f232b6520be.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.013916;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_c9d37cccedda690654764c09.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.v2{vertical-align:-19.810200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.800000px;}
.v4{vertical-align:29.700000px;}
.v3{vertical-align:59.400000px;}
.ls1e{letter-spacing:-4.440000px;}
.ls30{letter-spacing:-4.320000px;}
.ls23{letter-spacing:-4.260000px;}
.ls33{letter-spacing:-4.200000px;}
.ls3b{letter-spacing:-2.940000px;}
.ls38{letter-spacing:-2.700000px;}
.ls16{letter-spacing:-2.280000px;}
.ls3a{letter-spacing:-2.220000px;}
.ls1d{letter-spacing:-1.980000px;}
.ls4{letter-spacing:-1.800000px;}
.ls3c{letter-spacing:-1.740000px;}
.lsc{letter-spacing:-1.620000px;}
.ls2c{letter-spacing:-1.380000px;}
.ls1f{letter-spacing:-1.320000px;}
.lsd{letter-spacing:-1.260000px;}
.ls1a{letter-spacing:-1.200000px;}
.ls14{letter-spacing:-1.140000px;}
.ls6{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-0.900000px;}
.ls17{letter-spacing:-0.840000px;}
.lsa{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.672000px;}
.lse{letter-spacing:-0.660000px;}
.ls24{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.576000px;}
.ls13{letter-spacing:-0.540000px;}
.ls37{letter-spacing:-0.480000px;}
.ls1b{letter-spacing:-0.420000px;}
.ls1c{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.300000px;}
.ls9{letter-spacing:-0.240000px;}
.ls15{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.120000px;}
.lsf{letter-spacing:-0.060000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.006000px;}
.ls34{letter-spacing:0.060000px;}
.ls7{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.180000px;}
.ls25{letter-spacing:0.240000px;}
.ls31{letter-spacing:0.300000px;}
.ls32{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.420000px;}
.ls19{letter-spacing:0.480000px;}
.ls11{letter-spacing:0.540000px;}
.ls35{letter-spacing:0.600000px;}
.ls3{letter-spacing:0.720000px;}
.ls2f{letter-spacing:0.840000px;}
.ls2e{letter-spacing:1.020000px;}
.ls18{letter-spacing:1.080000px;}
.ls36{letter-spacing:1.140000px;}
.ls2d{letter-spacing:1.260000px;}
.ls39{letter-spacing:1.920000px;}
.ls2a{letter-spacing:77.922000px;}
.ls21{letter-spacing:113.238000px;}
.ls28{letter-spacing:159.732000px;}
.ls29{letter-spacing:162.810000px;}
.ls2b{letter-spacing:231.876000px;}
.ls27{letter-spacing:237.924000px;}
.ls26{letter-spacing:263.844000px;}
.ls22{letter-spacing:305.316000px;}
.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;}
}
.ws7b{word-spacing:-17.640000px;}
.wsb1{word-spacing:-17.100000px;}
.ws65{word-spacing:-16.860000px;}
.wsb2{word-spacing:-16.740000px;}
.ws1c{word-spacing:-16.620000px;}
.ws1d{word-spacing:-16.560000px;}
.ws8d{word-spacing:-16.200000px;}
.ws42{word-spacing:-16.080000px;}
.ws1b{word-spacing:-15.960000px;}
.ws6c{word-spacing:-15.780000px;}
.ws3{word-spacing:-15.720000px;}
.ws66{word-spacing:-15.540000px;}
.ws7a{word-spacing:-15.480000px;}
.wsa0{word-spacing:-15.420000px;}
.ws45{word-spacing:-15.360000px;}
.ws44{word-spacing:-15.300000px;}
.ws6d{word-spacing:-15.240000px;}
.ws4{word-spacing:-15.000000px;}
.ws67{word-spacing:-14.958000px;}
.ws1{word-spacing:-14.820000px;}
.ws41{word-spacing:-14.640000px;}
.wsb3{word-spacing:-13.680000px;}
.ws43{word-spacing:-12.180000px;}
.ws2{word-spacing:-9.639600px;}
.ws55{word-spacing:-4.380000px;}
.wsb4{word-spacing:-4.320000px;}
.wsb6{word-spacing:-4.260000px;}
.ws19{word-spacing:-4.200000px;}
.wsd{word-spacing:-4.140000px;}
.ws29{word-spacing:-4.080000px;}
.ws28{word-spacing:-4.020000px;}
.ws31{word-spacing:-3.900000px;}
.ws21{word-spacing:-3.840000px;}
.ws47{word-spacing:-3.780000px;}
.wsb0{word-spacing:-3.660000px;}
.ws1e{word-spacing:-3.600000px;}
.wsbc{word-spacing:-3.540000px;}
.ws14{word-spacing:-3.480000px;}
.ws23{word-spacing:-3.420000px;}
.ws36{word-spacing:-3.360000px;}
.wsa4{word-spacing:-3.300000px;}
.ws9c{word-spacing:-3.180000px;}
.wsba{word-spacing:-3.120000px;}
.ws35{word-spacing:-3.060000px;}
.wsac{word-spacing:-2.940000px;}
.wse{word-spacing:-2.880000px;}
.wsbd{word-spacing:-2.640000px;}
.ws56{word-spacing:-2.580000px;}
.wsa6{word-spacing:-2.520000px;}
.ws68{word-spacing:-2.340000px;}
.ws52{word-spacing:-2.280000px;}
.ws71{word-spacing:-2.220000px;}
.ws87{word-spacing:-2.160000px;}
.ws89{word-spacing:-2.100000px;}
.ws75{word-spacing:-2.040000px;}
.ws20{word-spacing:-1.860000px;}
.ws5d{word-spacing:-1.800000px;}
.ws9f{word-spacing:-1.740000px;}
.ws5e{word-spacing:-1.680000px;}
.ws4a{word-spacing:-1.620000px;}
.ws6{word-spacing:-1.560000px;}
.ws91{word-spacing:-1.500000px;}
.ws49{word-spacing:-1.380000px;}
.ws2f{word-spacing:-1.320000px;}
.ws51{word-spacing:-1.260000px;}
.ws1f{word-spacing:-1.200000px;}
.ws9b{word-spacing:-1.080000px;}
.ws32{word-spacing:-1.020000px;}
.ws9a{word-spacing:-0.960000px;}
.ws76{word-spacing:-0.900000px;}
.ws16{word-spacing:-0.840000px;}
.ws77{word-spacing:-0.780000px;}
.ws8{word-spacing:-0.720000px;}
.ws90{word-spacing:-0.600000px;}
.ws26{word-spacing:-0.540000px;}
.ws30{word-spacing:-0.480000px;}
.wsad{word-spacing:-0.420000px;}
.ws18{word-spacing:-0.360000px;}
.ws27{word-spacing:-0.300000px;}
.ws9e{word-spacing:-0.240000px;}
.ws7{word-spacing:-0.180000px;}
.wsb{word-spacing:-0.120000px;}
.ws8a{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.wsf{word-spacing:0.060000px;}
.ws2d{word-spacing:0.120000px;}
.ws81{word-spacing:0.180000px;}
.ws3e{word-spacing:0.240000px;}
.ws53{word-spacing:0.300000px;}
.wsaf{word-spacing:0.360000px;}
.wsc{word-spacing:0.420000px;}
.ws4e{word-spacing:0.480000px;}
.ws13{word-spacing:0.576000px;}
.ws54{word-spacing:0.600000px;}
.ws24{word-spacing:0.660000px;}
.ws9{word-spacing:0.672000px;}
.ws12{word-spacing:0.720000px;}
.ws48{word-spacing:0.780000px;}
.ws3f{word-spacing:0.840000px;}
.wsa5{word-spacing:0.900000px;}
.ws6b{word-spacing:0.960000px;}
.ws92{word-spacing:1.020000px;}
.wsa{word-spacing:1.080000px;}
.ws2b{word-spacing:1.140000px;}
.ws99{word-spacing:1.200000px;}
.ws1a{word-spacing:1.260000px;}
.wsa8{word-spacing:1.320000px;}
.ws93{word-spacing:1.380000px;}
.ws2a{word-spacing:1.440000px;}
.wsae{word-spacing:1.500000px;}
.ws50{word-spacing:1.560000px;}
.ws58{word-spacing:1.620000px;}
.ws86{word-spacing:1.740000px;}
.ws40{word-spacing:1.800000px;}
.ws69{word-spacing:1.860000px;}
.ws98{word-spacing:1.920000px;}
.ws6a{word-spacing:2.040000px;}
.ws61{word-spacing:2.100000px;}
.ws4f{word-spacing:2.160000px;}
.ws70{word-spacing:2.220000px;}
.ws2e{word-spacing:2.280000px;}
.ws8f{word-spacing:2.340000px;}
.ws4c{word-spacing:2.400000px;}
.ws5b{word-spacing:2.580000px;}
.ws9d{word-spacing:2.640000px;}
.ws3b{word-spacing:2.700000px;}
.ws8c{word-spacing:2.820000px;}
.ws8e{word-spacing:2.940000px;}
.ws5a{word-spacing:3.000000px;}
.ws39{word-spacing:3.060000px;}
.ws3d{word-spacing:3.120000px;}
.ws73{word-spacing:3.180000px;}
.ws97{word-spacing:3.300000px;}
.ws57{word-spacing:3.360000px;}
.ws33{word-spacing:3.480000px;}
.wsb9{word-spacing:3.660000px;}
.ws7e{word-spacing:3.720000px;}
.wsa9{word-spacing:3.840000px;}
.ws3c{word-spacing:3.900000px;}
.ws72{word-spacing:3.960000px;}
.ws5f{word-spacing:4.080000px;}
.ws22{word-spacing:4.140000px;}
.ws4b{word-spacing:4.260000px;}
.wsa7{word-spacing:4.320000px;}
.wsbb{word-spacing:4.440000px;}
.ws85{word-spacing:4.500000px;}
.ws7d{word-spacing:4.560000px;}
.ws4d{word-spacing:4.620000px;}
.ws96{word-spacing:4.680000px;}
.ws84{word-spacing:4.740000px;}
.ws25{word-spacing:4.860000px;}
.ws11{word-spacing:4.980000px;}
.ws2c{word-spacing:5.040000px;}
.wsa2{word-spacing:5.100000px;}
.wsb7{word-spacing:5.160000px;}
.ws15{word-spacing:5.220000px;}
.ws95{word-spacing:5.340000px;}
.ws6f{word-spacing:5.460000px;}
.wsa1{word-spacing:5.640000px;}
.ws10{word-spacing:5.700000px;}
.ws82{word-spacing:5.760000px;}
.wsab{word-spacing:5.820000px;}
.ws94{word-spacing:5.940000px;}
.ws5c{word-spacing:6.000000px;}
.ws17{word-spacing:6.060000px;}
.ws8b{word-spacing:6.120000px;}
.wsa3{word-spacing:6.360000px;}
.ws83{word-spacing:6.480000px;}
.ws88{word-spacing:6.540000px;}
.ws3a{word-spacing:6.660000px;}
.ws7c{word-spacing:6.720000px;}
.ws60{word-spacing:7.020000px;}
.wsb8{word-spacing:7.080000px;}
.ws46{word-spacing:7.320000px;}
.ws74{word-spacing:7.380000px;}
.wsb5{word-spacing:7.680000px;}
.ws37{word-spacing:7.860000px;}
.wsaa{word-spacing:8.100000px;}
.ws59{word-spacing:8.220000px;}
.ws38{word-spacing:8.280000px;}
.ws34{word-spacing:8.340000px;}
.ws7f{word-spacing:8.580000px;}
.ws80{word-spacing:13.440000px;}
.ws6e{word-spacing:84.996000px;}
.ws64{word-spacing:119.124000px;}
.ws63{word-spacing:140.346000px;}
.ws79{word-spacing:147.852000px;}
.ws78{word-spacing:153.900000px;}
.ws62{word-spacing:175.770000px;}
.ws0{word-spacing:295.956000px;}
._9{margin-left:-8.208000px;}
._2{margin-left:-6.366000px;}
._4{margin-left:-5.310000px;}
._3{margin-left:-3.390000px;}
._5{margin-left:-2.388000px;}
._0{margin-left:-1.386000px;}
._1{width:1.542000px;}
._7{width:2.686200px;}
._a{width:3.771600px;}
._b{width:4.933800px;}
._e{width:14.952600px;}
._15{width:21.150000px;}
._10{width:113.238000px;}
._11{width:127.116000px;}
._f{width:134.082000px;}
._d{width:153.306000px;}
._13{width:159.732000px;}
._14{width:162.810000px;}
._12{width:168.858000px;}
._c{width:176.526000px;}
._8{width:370.756800px;}
._6{width:538.596000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(39,50,110);}
.fs4{font-size:34.800000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y13b{bottom:3.127800px;}
.y11d{bottom:3.127950px;}
.y12d{bottom:3.875850px;}
.yfe{bottom:3.876750px;}
.ydb{bottom:3.876900px;}
.y108{bottom:3.877200px;}
.ye2{bottom:3.877350px;}
.y113{bottom:3.877650px;}
.yee{bottom:3.877800px;}
.yd6{bottom:3.877950px;}
.yd5{bottom:18.727950px;}
.y1{bottom:59.527500px;}
.y2{bottom:127.559100px;}
.ybe{bottom:131.258400px;}
.y1a6{bottom:132.831300px;}
.ybd{bottom:147.758400px;}
.y11c{bottom:151.098000px;}
.y172{bottom:152.120400px;}
.y169{bottom:152.411400px;}
.ybc{bottom:164.258400px;}
.y1a5{bottom:166.341300px;}
.y171{bottom:168.620400px;}
.y168{bottom:168.911400px;}
.y11b{bottom:169.075950px;}
.y11f{bottom:169.076250px;}
.ybb{bottom:180.758400px;}
.y11e{bottom:183.912750px;}
.y11a{bottom:183.925950px;}
.y58{bottom:185.120400px;}
.y167{bottom:185.411400px;}
.y119{bottom:198.775950px;}
.y57{bottom:201.620400px;}
.y166{bottom:201.911400px;}
.y1a4{bottom:211.986300px;}
.y112{bottom:213.501000px;}
.y170{bottom:218.120400px;}
.y165{bottom:218.411400px;}
.y56{bottom:220.250400px;}
.yba{bottom:222.773400px;}
.y1a3{bottom:228.486300px;}
.y118{bottom:232.215450px;}
.y111{bottom:232.228200px;}
.y116{bottom:232.228500px;}
.y16f{bottom:234.620400px;}
.y164{bottom:234.911400px;}
.y55{bottom:236.750400px;}
.y1a2{bottom:244.986300px;}
.yb8{bottom:245.039250px;}
.y117{bottom:247.065450px;}
.y110{bottom:247.078200px;}
.y115{bottom:247.078500px;}
.y1c6{bottom:250.895400px;}
.y16e{bottom:251.120400px;}
.y163{bottom:251.411400px;}
.y54{bottom:253.250400px;}
.yb6{bottom:259.889250px;}
.y1a1{bottom:261.486300px;}
.y10f{bottom:261.928200px;}
.y114{bottom:261.928500px;}
.yb9{bottom:267.300750px;}
.y16d{bottom:267.620400px;}
.y162{bottom:267.911400px;}
.y1c5{bottom:269.525400px;}
.y53{bottom:269.750400px;}
.yb5{bottom:274.739250px;}
.y107{bottom:276.654000px;}
.y1a0{bottom:277.986300px;}
.ya5{bottom:282.669750px;}
.y16c{bottom:284.120400px;}
.yf2{bottom:284.881500px;}
.y52{bottom:286.250400px;}
.y161{bottom:286.541400px;}
.y10c{bottom:287.956200px;}
.y1c4{bottom:288.155400px;}
.yb7{bottom:289.589250px;}
.y19f{bottom:294.486300px;}
.y106{bottom:295.380750px;}
.y16b{bottom:300.620400px;}
.y51{bottom:302.750400px;}
.y10b{bottom:302.806200px;}
.y160{bottom:303.041400px;}
.y1c3{bottom:306.785400px;}
.y10e{bottom:310.217700px;}
.y105{bottom:310.230750px;}
.yaf{bottom:310.311750px;}
.yb2{bottom:310.325250px;}
.y19e{bottom:310.986300px;}
.y16a{bottom:317.120400px;}
.y10a{bottom:317.656200px;}
.yb4{bottom:317.736750px;}
.y50{bottom:319.250400px;}
.y15f{bottom:319.541400px;}
.y10d{bottom:325.067700px;}
.y104{bottom:325.080750px;}
.yae{bottom:325.161750px;}
.yb1{bottom:325.175250px;}
.y19d{bottom:327.486300px;}
.y23{bottom:330.336000px;}
.y109{bottom:332.506200px;}
.yb3{bottom:332.586750px;}
.y4f{bottom:335.750400px;}
.y15e{bottom:336.041400px;}
.y103{bottom:339.930750px;}
.yad{bottom:340.011750px;}
.yb0{bottom:340.025250px;}
.y19c{bottom:343.986300px;}
.y22{bottom:348.966000px;}
.y4e{bottom:352.250400px;}
.y15d{bottom:352.541400px;}
.y67{bottom:354.380400px;}
.yfd{bottom:354.657000px;}
.y19b{bottom:360.486300px;}
.yaa{bottom:365.013750px;}
.ya9{bottom:365.027250px;}
.y21{bottom:365.466000px;}
.y4d{bottom:368.750400px;}
.y15c{bottom:369.041400px;}
.y66{bottom:370.880400px;}
.yac{bottom:372.438750px;}
.yfc{bottom:373.383750px;}
.y19a{bottom:376.986300px;}
.ya7{bottom:379.863750px;}
.ya8{bottom:379.877250px;}
.y100{bottom:380.808750px;}
.y20{bottom:381.966000px;}
.y4c{bottom:385.250400px;}
.y15b{bottom:385.541400px;}
.yab{bottom:387.288750px;}
.y65{bottom:387.380400px;}
.yfb{bottom:388.233750px;}
.y199{bottom:393.486300px;}
.ya6{bottom:394.713750px;}
.yf5{bottom:395.658750px;}
.y1f{bottom:398.466000px;}
.y4b{bottom:401.750400px;}
.y15a{bottom:402.041400px;}
.y102{bottom:403.070250px;}
.yfa{bottom:403.083750px;}
.y64{bottom:403.880400px;}
.y198{bottom:409.986300px;}
.yf4{bottom:410.508750px;}
.y1e{bottom:414.966000px;}
.y101{bottom:417.920250px;}
.yf9{bottom:417.933750px;}
.y159{bottom:418.541400px;}
.y4a{bottom:420.380400px;}
.ya3{bottom:425.023200px;}
.yf3{bottom:425.358750px;}
.y1d{bottom:431.466000px;}
.yf8{bottom:432.783750px;}
.y158{bottom:435.041400px;}
.y49{bottom:436.880400px;}
.ya2{bottom:439.873200px;}
.yff{bottom:440.208750px;}
.y1c2{bottom:442.340400px;}
.y197{bottom:443.496300px;}
.ya4{bottom:447.284700px;}
.yf7{bottom:447.633750px;}
.y1c{bottom:447.966000px;}
.y157{bottom:451.541400px;}
.y48{bottom:453.380400px;}
.ya1{bottom:454.723200px;}
.yf6{bottom:462.483750px;}
.y1c1{bottom:467.345400px;}
.y156{bottom:468.041400px;}
.y47{bottom:469.880400px;}
.yed{bottom:477.208500px;}
.y1b{bottom:481.476000px;}
.y1c0{bottom:483.845400px;}
.y9f{bottom:485.003700px;}
.y46{bottom:486.380400px;}
.y155{bottom:486.671400px;}
.y196{bottom:489.141300px;}
.yec{bottom:495.935850px;}
.yf1{bottom:495.936300px;}
.y9b{bottom:499.840200px;}
.y9e{bottom:499.853700px;}
.y1bf{bottom:500.345400px;}
.y45{bottom:502.880400px;}
.y154{bottom:503.171400px;}
.y195{bottom:505.641300px;}
.ya0{bottom:507.265200px;}
.yeb{bottom:510.785850px;}
.yf0{bottom:510.786300px;}
.y9a{bottom:514.690200px;}
.y9d{bottom:514.703700px;}
.y44{bottom:519.380400px;}
.y153{bottom:519.671400px;}
.y194{bottom:522.141300px;}
.y89{bottom:524.942550px;}
.y1be{bottom:525.350400px;}
.yea{bottom:525.635850px;}
.yef{bottom:525.636300px;}
.yd7{bottom:527.670000px;}
.y9c{bottom:529.553700px;}
.y43{bottom:535.880400px;}
.y152{bottom:536.171400px;}
.y63{bottom:538.010400px;}
.y193{bottom:538.641300px;}
.ye1{bottom:540.361500px;}
.y1bd{bottom:541.850400px;}
.y1a{bottom:542.007750px;}
.y97{bottom:552.409200px;}
.y151{bottom:552.671400px;}
.y42{bottom:554.510400px;}
.y192{bottom:555.141300px;}
.ye0{bottom:559.088400px;}
.ye6{bottom:559.088850px;}
.ye9{bottom:566.500350px;}
.ye8{bottom:566.513850px;}
.y1bc{bottom:566.855400px;}
.y96{bottom:567.259200px;}
.y150{bottom:569.171400px;}
.y41{bottom:571.010400px;}
.y19{bottom:573.495750px;}
.y191{bottom:573.771300px;}
.ydf{bottom:573.938400px;}
.ye5{bottom:573.938850px;}
.y99{bottom:574.670700px;}
.ye7{bottom:581.363850px;}
.y95{bottom:582.109200px;}
.y1bb{bottom:583.355400px;}
.y14f{bottom:585.671400px;}
.y40{bottom:587.510400px;}
.yde{bottom:588.788400px;}
.ye4{bottom:588.788850px;}
.y98{bottom:589.520700px;}
.y190{bottom:590.271300px;}
.y94{bottom:596.959200px;}
.y14e{bottom:602.171400px;}
.ydd{bottom:603.638400px;}
.ye3{bottom:603.638850px;}
.y3f{bottom:604.010400px;}
.y18f{bottom:606.771300px;}
.y1ba{bottom:608.360400px;}
.yda{bottom:618.364500px;}
.y3e{bottom:620.510400px;}
.y14d{bottom:620.801400px;}
.y18e{bottom:623.271300px;}
.y1b9{bottom:624.860400px;}
.y91{bottom:629.345700px;}
.ydc{bottom:629.652900px;}
.y8d{bottom:636.784200px;}
.y3d{bottom:637.010400px;}
.yd9{bottom:637.091400px;}
.y14c{bottom:637.301400px;}
.y18d{bottom:639.771300px;}
.y90{bottom:644.195700px;}
.y18{bottom:649.632000px;}
.y1b8{bottom:649.865400px;}
.y93{bottom:651.620700px;}
.y8c{bottom:651.634200px;}
.yd8{bottom:651.941400px;}
.y62{bottom:653.510400px;}
.y14b{bottom:653.801400px;}
.y3c{bottom:655.640400px;}
.y18c{bottom:656.271300px;}
.y8f{bottom:659.045700px;}
.y92{bottom:666.470700px;}
.y8b{bottom:666.484200px;}
.yd4{bottom:666.666000px;}
.y17{bottom:668.262000px;}
.y61{bottom:670.010400px;}
.y14a{bottom:670.301400px;}
.y3b{bottom:672.140400px;}
.y18b{bottom:672.771300px;}
.y8e{bottom:673.895700px;}
.y1b7{bottom:674.870400px;}
.yd3{bottom:677.968950px;}
.y8a{bottom:681.334200px;}
.y16{bottom:684.762000px;}
.y60{bottom:686.510400px;}
.y149{bottom:686.801400px;}
.y3a{bottom:688.640400px;}
.y18a{bottom:689.271300px;}
.y1b6{bottom:691.370400px;}
.y15{bottom:701.262000px;}
.y5f{bottom:703.010400px;}
.y148{bottom:703.301400px;}
.y39{bottom:705.140400px;}
.y189{bottom:705.771300px;}
.y84{bottom:708.444750px;}
.yd2{bottom:709.087050px;}
.y87{bottom:715.869750px;}
.y1b5{bottom:716.375400px;}
.y14{bottom:717.762000px;}
.y5e{bottom:719.510400px;}
.y147{bottom:719.801400px;}
.y38{bottom:721.640400px;}
.y188{bottom:722.271300px;}
.y83{bottom:723.294750px;}
.y86{bottom:730.719750px;}
.y1b4{bottom:732.875400px;}
.y13{bottom:734.262000px;}
.y146{bottom:736.301400px;}
.y88{bottom:738.131250px;}
.y37{bottom:738.140400px;}
.y82{bottom:738.144750px;}
.y187{bottom:738.771300px;}
.yd1{bottom:742.597050px;}
.y85{bottom:745.569750px;}
.y12{bottom:750.762000px;}
.y145{bottom:752.801400px;}
.y81{bottom:752.994750px;}
.y36{bottom:754.640400px;}
.y186{bottom:755.271300px;}
.y1b3{bottom:757.880400px;}
.y6c{bottom:766.716000px;}
.y11{bottom:767.262000px;}
.y144{bottom:769.301400px;}
.y35{bottom:771.140400px;}
.y185{bottom:773.901300px;}
.y1b2{bottom:774.380400px;}
.y10{bottom:783.762000px;}
.y7e{bottom:785.394750px;}
.y143{bottom:785.801400px;}
.y34{bottom:787.640400px;}
.yd0{bottom:788.242050px;}
.y184{bottom:790.401300px;}
.y1b1{bottom:790.880400px;}
.y7a{bottom:792.819750px;}
.y80{bottom:800.231250px;}
.y7d{bottom:800.244750px;}
.yf{bottom:800.262000px;}
.y142{bottom:802.301400px;}
.y33{bottom:804.140400px;}
.ycf{bottom:804.742050px;}
.y183{bottom:806.901300px;}
.y79{bottom:807.669750px;}
.y7f{bottom:815.081250px;}
.y7c{bottom:815.094750px;}
.y1b0{bottom:815.885400px;}
.y141{bottom:818.801400px;}
.y32{bottom:820.640400px;}
.yce{bottom:821.242050px;}
.y78{bottom:822.519750px;}
.y182{bottom:823.401300px;}
.y7b{bottom:829.944750px;}
.y1af{bottom:832.385400px;}
.ye{bottom:833.772000px;}
.y5d{bottom:837.140400px;}
.y77{bottom:837.369750px;}
.ycd{bottom:837.742050px;}
.y31{bottom:839.270400px;}
.y181{bottom:839.901300px;}
.ycc{bottom:854.242050px;}
.y30{bottom:855.770400px;}
.y180{bottom:856.401300px;}
.y1ae{bottom:857.390400px;}
.y140{bottom:860.816400px;}
.y70{bottom:864.477750px;}
.ycb{bottom:870.742050px;}
.y76{bottom:871.889250px;}
.y73{bottom:871.902750px;}
.y2f{bottom:872.270400px;}
.y17f{bottom:872.901300px;}
.y1ad{bottom:873.890400px;}
.y6f{bottom:879.327750px;}
.y13a{bottom:879.943500px;}
.yd{bottom:882.237000px;}
.y75{bottom:886.739250px;}
.y72{bottom:886.752750px;}
.yca{bottom:887.242050px;}
.y2e{bottom:888.770400px;}
.y17e{bottom:889.401300px;}
.y1ac{bottom:890.390400px;}
.y6e{bottom:894.177750px;}
.y139{bottom:897.920850px;}
.y13d{bottom:897.921300px;}
.yc{bottom:898.737000px;}
.y74{bottom:901.589250px;}
.y71{bottom:901.602750px;}
.y2d{bottom:905.270400px;}
.y13f{bottom:905.346300px;}
.yc9{bottom:905.872050px;}
.y17d{bottom:905.901300px;}
.y6d{bottom:909.027750px;}
.y138{bottom:912.770850px;}
.y13c{bottom:912.771300px;}
.yb{bottom:915.237000px;}
.y1ab{bottom:915.395400px;}
.y13e{bottom:920.196300px;}
.y2c{bottom:921.770400px;}
.yc8{bottom:922.372050px;}
.y17c{bottom:924.531300px;}
.y137{bottom:927.620850px;}
.ya{bottom:931.739550px;}
.y1aa{bottom:931.895400px;}
.y5c{bottom:938.270400px;}
.yc7{bottom:938.872050px;}
.y2b{bottom:940.400400px;}
.y120{bottom:940.820850px;}
.y17b{bottom:941.031300px;}
.y12c{bottom:942.348000px;}
.y6b{bottom:945.685200px;}
.y9{bottom:947.539050px;}
.y1a9{bottom:948.395400px;}
.y134{bottom:953.648850px;}
.y5b{bottom:954.770400px;}
.yc6{bottom:955.372050px;}
.y2a{bottom:956.900400px;}
.y17a{bottom:957.531300px;}
.y6a{bottom:960.535200px;}
.y12b{bottom:961.073400px;}
.y130{bottom:961.073850px;}
.y8{bottom:964.039050px;}
.y136{bottom:968.485350px;}
.y133{bottom:968.498850px;}
.y5a{bottom:971.270400px;}
.yc5{bottom:971.872050px;}
.y29{bottom:973.400400px;}
.y179{bottom:974.031300px;}
.y12a{bottom:975.923400px;}
.y12f{bottom:975.923850px;}
.y7{bottom:980.539050px;}
.y135{bottom:983.335350px;}
.y132{bottom:983.348850px;}
.y59{bottom:987.770400px;}
.y28{bottom:989.900400px;}
.yc4{bottom:990.502050px;}
.y178{bottom:990.531300px;}
.y129{bottom:990.773400px;}
.y12e{bottom:990.773850px;}
.y6{bottom:997.039050px;}
.y131{bottom:998.198850px;}
.y128{bottom:1005.623400px;}
.y27{bottom:1006.400400px;}
.yc3{bottom:1007.002050px;}
.y177{bottom:1007.031300px;}
.y69{bottom:1012.910400px;}
.y127{bottom:1020.349500px;}
.y26{bottom:1022.900400px;}
.yc2{bottom:1023.502050px;}
.y176{bottom:1023.531300px;}
.y1a8{bottom:1031.405400px;}
.y123{bottom:1031.651400px;}
.y5{bottom:1034.810850px;}
.y126{bottom:1039.076400px;}
.y25{bottom:1039.400400px;}
.yc1{bottom:1040.002050px;}
.y175{bottom:1040.031300px;}
.y68{bottom:1042.160400px;}
.y122{bottom:1046.501400px;}
.y1a7{bottom:1047.905400px;}
.y125{bottom:1053.926400px;}
.yc0{bottom:1056.502050px;}
.y174{bottom:1056.531300px;}
.y121{bottom:1061.351400px;}
.y4{bottom:1066.298850px;}
.y124{bottom:1068.776400px;}
.y24{bottom:1072.910400px;}
.ybf{bottom:1073.002050px;}
.y173{bottom:1073.031300px;}
.y3{bottom:1133.917200px;}
.he{height:32.062500px;}
.h6{height:34.550152px;}
.h7{height:34.560352px;}
.hf{height:40.064941px;}
.h10{height:47.553000px;}
.ha{height:48.924316px;}
.h18{height:48.978316px;}
.h9{height:50.374512px;}
.h4{height:54.360352px;}
.h3{height:55.971680px;}
.h2{height:61.568848px;}
.h17{height:61.653000px;}
.h16{height:62.403000px;}
.h14{height:62.404500px;}
.h12{height:77.253000px;}
.h11{height:78.570316px;}
.hb{height:78.624316px;}
.h5{height:86.976562px;}
.h13{height:108.270316px;}
.hc{height:108.324316px;}
.hd{height:108.378316px;}
.h8{height:109.774512px;}
.h15{height:121.803000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:83.175000px;}
.w6{width:121.875000px;}
.w4{width:134.625000px;}
.w5{width:144.975000px;}
.w3{width:149.548500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x36{left:5.199000px;}
.x39{left:6.880950px;}
.x3e{left:9.978600px;}
.x5a{left:12.568350px;}
.x43{left:17.478300px;}
.x37{left:21.696000px;}
.x55{left:30.215400px;}
.x58{left:42.511200px;}
.x3a{left:48.136950px;}
.x4b{left:51.969900px;}
.x4f{left:57.144900px;}
.x2{left:79.373100px;}
.x1{left:80.787450px;}
.x3{left:95.873100px;}
.x4{left:148.818900px;}
.x10{left:158.022300px;}
.x3b{left:175.891050px;}
.x5{left:187.938450px;}
.x3d{left:193.131000px;}
.x3c{left:200.827200px;}
.xf{left:204.099600px;}
.x34{left:213.554250px;}
.x54{left:218.442900px;}
.x23{left:222.452250px;}
.x15{left:224.747250px;}
.x24{left:227.312250px;}
.x2a{left:228.527250px;}
.x1f{left:231.834750px;}
.x12{left:233.471400px;}
.x30{left:234.519600px;}
.x31{left:236.004600px;}
.x2e{left:237.138600px;}
.x4a{left:239.813400px;}
.x28{left:245.024250px;}
.x17{left:248.034750px;}
.x18{left:251.423250px;}
.x2d{left:255.539100px;}
.x29{left:265.247250px;}
.x6{left:288.714450px;}
.x16{left:301.629750px;}
.x11{left:307.158300px;}
.x4e{left:328.506000px;}
.x4d{left:333.872550px;}
.x57{left:336.514800px;}
.x4c{left:339.488550px;}
.x47{left:341.805900px;}
.x44{left:342.845400px;}
.x3f{left:345.131100px;}
.x50{left:347.369700px;}
.x56{left:348.435300px;}
.x46{left:351.485400px;}
.x5c{left:354.549000px;}
.x5b{left:359.341500px;}
.x45{left:371.019900px;}
.x40{left:385.644600px;}
.x25{left:408.657750px;}
.x21{left:412.019250px;}
.x2b{left:416.852250px;}
.x19{left:422.886750px;}
.x1b{left:425.168250px;}
.x32{left:427.758600px;}
.x22{left:429.650250px;}
.x2f{left:435.629100px;}
.xb{left:447.535500px;}
.x20{left:450.629250px;}
.x27{left:452.870250px;}
.x1a{left:454.746750px;}
.x2c{left:467.153250px;}
.x26{left:473.552250px;}
.x48{left:481.935900px;}
.x59{left:486.034650px;}
.x51{left:494.695200px;}
.x52{left:498.758700px;}
.xe{left:510.577200px;}
.x41{left:519.821100px;}
.xd{left:533.999700px;}
.xc{left:563.259900px;}
.x13{left:576.020400px;}
.x1c{left:578.622750px;}
.x33{left:580.497600px;}
.x14{left:592.071900px;}
.x35{left:596.481000px;}
.x42{left:608.475600px;}
.x53{left:610.012200px;}
.xa{left:659.354850px;}
.x38{left:679.656000px;}
.x1e{left:684.084750px;}
.x1d{left:689.295750px;}
.x8{left:697.917000px;}
.x49{left:707.588400px;}
.x7{left:717.048900px;}
.x9{left:723.660900px;}
.x5d{left:740.553900px;}
.x5e{left:745.143900px;}
.x5f{left:759.768900px;}
@media print{
.v2{vertical-align:-17.609067pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.v4{vertical-align:26.400000pt;}
.v3{vertical-align:52.800000pt;}
.ls1e{letter-spacing:-3.946667pt;}
.ls30{letter-spacing:-3.840000pt;}
.ls23{letter-spacing:-3.786667pt;}
.ls33{letter-spacing:-3.733333pt;}
.ls3b{letter-spacing:-2.613333pt;}
.ls38{letter-spacing:-2.400000pt;}
.ls16{letter-spacing:-2.026667pt;}
.ls3a{letter-spacing:-1.973333pt;}
.ls1d{letter-spacing:-1.760000pt;}
.ls4{letter-spacing:-1.600000pt;}
.ls3c{letter-spacing:-1.546667pt;}
.lsc{letter-spacing:-1.440000pt;}
.ls2c{letter-spacing:-1.226667pt;}
.ls1f{letter-spacing:-1.173333pt;}
.lsd{letter-spacing:-1.120000pt;}
.ls1a{letter-spacing:-1.066667pt;}
.ls14{letter-spacing:-1.013333pt;}
.ls6{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.800000pt;}
.ls17{letter-spacing:-0.746667pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.597333pt;}
.lse{letter-spacing:-0.586667pt;}
.ls24{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.512000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls37{letter-spacing:-0.426667pt;}
.ls1b{letter-spacing:-0.373333pt;}
.ls1c{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.266667pt;}
.ls9{letter-spacing:-0.213333pt;}
.ls15{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.106667pt;}
.lsf{letter-spacing:-0.053333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.005333pt;}
.ls34{letter-spacing:0.053333pt;}
.ls7{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.160000pt;}
.ls25{letter-spacing:0.213333pt;}
.ls31{letter-spacing:0.266667pt;}
.ls32{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.373333pt;}
.ls19{letter-spacing:0.426667pt;}
.ls11{letter-spacing:0.480000pt;}
.ls35{letter-spacing:0.533333pt;}
.ls3{letter-spacing:0.640000pt;}
.ls2f{letter-spacing:0.746667pt;}
.ls2e{letter-spacing:0.906667pt;}
.ls18{letter-spacing:0.960000pt;}
.ls36{letter-spacing:1.013333pt;}
.ls2d{letter-spacing:1.120000pt;}
.ls39{letter-spacing:1.706667pt;}
.ls2a{letter-spacing:69.264000pt;}
.ls21{letter-spacing:100.656000pt;}
.ls28{letter-spacing:141.984000pt;}
.ls29{letter-spacing:144.720000pt;}
.ls2b{letter-spacing:206.112000pt;}
.ls27{letter-spacing:211.488000pt;}
.ls26{letter-spacing:234.528000pt;}
.ls22{letter-spacing:271.392000pt;}
.ws7b{word-spacing:-15.680000pt;}
.wsb1{word-spacing:-15.200000pt;}
.ws65{word-spacing:-14.986667pt;}
.wsb2{word-spacing:-14.880000pt;}
.ws1c{word-spacing:-14.773333pt;}
.ws1d{word-spacing:-14.720000pt;}
.ws8d{word-spacing:-14.400000pt;}
.ws42{word-spacing:-14.293333pt;}
.ws1b{word-spacing:-14.186667pt;}
.ws6c{word-spacing:-14.026667pt;}
.ws3{word-spacing:-13.973333pt;}
.ws66{word-spacing:-13.813333pt;}
.ws7a{word-spacing:-13.760000pt;}
.wsa0{word-spacing:-13.706667pt;}
.ws45{word-spacing:-13.653333pt;}
.ws44{word-spacing:-13.600000pt;}
.ws6d{word-spacing:-13.546667pt;}
.ws4{word-spacing:-13.333333pt;}
.ws67{word-spacing:-13.296000pt;}
.ws1{word-spacing:-13.173333pt;}
.ws41{word-spacing:-13.013333pt;}
.wsb3{word-spacing:-12.160000pt;}
.ws43{word-spacing:-10.826667pt;}
.ws2{word-spacing:-8.568533pt;}
.ws55{word-spacing:-3.893333pt;}
.wsb4{word-spacing:-3.840000pt;}
.wsb6{word-spacing:-3.786667pt;}
.ws19{word-spacing:-3.733333pt;}
.wsd{word-spacing:-3.680000pt;}
.ws29{word-spacing:-3.626667pt;}
.ws28{word-spacing:-3.573333pt;}
.ws31{word-spacing:-3.466667pt;}
.ws21{word-spacing:-3.413333pt;}
.ws47{word-spacing:-3.360000pt;}
.wsb0{word-spacing:-3.253333pt;}
.ws1e{word-spacing:-3.200000pt;}
.wsbc{word-spacing:-3.146667pt;}
.ws14{word-spacing:-3.093333pt;}
.ws23{word-spacing:-3.040000pt;}
.ws36{word-spacing:-2.986667pt;}
.wsa4{word-spacing:-2.933333pt;}
.ws9c{word-spacing:-2.826667pt;}
.wsba{word-spacing:-2.773333pt;}
.ws35{word-spacing:-2.720000pt;}
.wsac{word-spacing:-2.613333pt;}
.wse{word-spacing:-2.560000pt;}
.wsbd{word-spacing:-2.346667pt;}
.ws56{word-spacing:-2.293333pt;}
.wsa6{word-spacing:-2.240000pt;}
.ws68{word-spacing:-2.080000pt;}
.ws52{word-spacing:-2.026667pt;}
.ws71{word-spacing:-1.973333pt;}
.ws87{word-spacing:-1.920000pt;}
.ws89{word-spacing:-1.866667pt;}
.ws75{word-spacing:-1.813333pt;}
.ws20{word-spacing:-1.653333pt;}
.ws5d{word-spacing:-1.600000pt;}
.ws9f{word-spacing:-1.546667pt;}
.ws5e{word-spacing:-1.493333pt;}
.ws4a{word-spacing:-1.440000pt;}
.ws6{word-spacing:-1.386667pt;}
.ws91{word-spacing:-1.333333pt;}
.ws49{word-spacing:-1.226667pt;}
.ws2f{word-spacing:-1.173333pt;}
.ws51{word-spacing:-1.120000pt;}
.ws1f{word-spacing:-1.066667pt;}
.ws9b{word-spacing:-0.960000pt;}
.ws32{word-spacing:-0.906667pt;}
.ws9a{word-spacing:-0.853333pt;}
.ws76{word-spacing:-0.800000pt;}
.ws16{word-spacing:-0.746667pt;}
.ws77{word-spacing:-0.693333pt;}
.ws8{word-spacing:-0.640000pt;}
.ws90{word-spacing:-0.533333pt;}
.ws26{word-spacing:-0.480000pt;}
.ws30{word-spacing:-0.426667pt;}
.wsad{word-spacing:-0.373333pt;}
.ws18{word-spacing:-0.320000pt;}
.ws27{word-spacing:-0.266667pt;}
.ws9e{word-spacing:-0.213333pt;}
.ws7{word-spacing:-0.160000pt;}
.wsb{word-spacing:-0.106667pt;}
.ws8a{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.wsf{word-spacing:0.053333pt;}
.ws2d{word-spacing:0.106667pt;}
.ws81{word-spacing:0.160000pt;}
.ws3e{word-spacing:0.213333pt;}
.ws53{word-spacing:0.266667pt;}
.wsaf{word-spacing:0.320000pt;}
.wsc{word-spacing:0.373333pt;}
.ws4e{word-spacing:0.426667pt;}
.ws13{word-spacing:0.512000pt;}
.ws54{word-spacing:0.533333pt;}
.ws24{word-spacing:0.586667pt;}
.ws9{word-spacing:0.597333pt;}
.ws12{word-spacing:0.640000pt;}
.ws48{word-spacing:0.693333pt;}
.ws3f{word-spacing:0.746667pt;}
.wsa5{word-spacing:0.800000pt;}
.ws6b{word-spacing:0.853333pt;}
.ws92{word-spacing:0.906667pt;}
.wsa{word-spacing:0.960000pt;}
.ws2b{word-spacing:1.013333pt;}
.ws99{word-spacing:1.066667pt;}
.ws1a{word-spacing:1.120000pt;}
.wsa8{word-spacing:1.173333pt;}
.ws93{word-spacing:1.226667pt;}
.ws2a{word-spacing:1.280000pt;}
.wsae{word-spacing:1.333333pt;}
.ws50{word-spacing:1.386667pt;}
.ws58{word-spacing:1.440000pt;}
.ws86{word-spacing:1.546667pt;}
.ws40{word-spacing:1.600000pt;}
.ws69{word-spacing:1.653333pt;}
.ws98{word-spacing:1.706667pt;}
.ws6a{word-spacing:1.813333pt;}
.ws61{word-spacing:1.866667pt;}
.ws4f{word-spacing:1.920000pt;}
.ws70{word-spacing:1.973333pt;}
.ws2e{word-spacing:2.026667pt;}
.ws8f{word-spacing:2.080000pt;}
.ws4c{word-spacing:2.133333pt;}
.ws5b{word-spacing:2.293333pt;}
.ws9d{word-spacing:2.346667pt;}
.ws3b{word-spacing:2.400000pt;}
.ws8c{word-spacing:2.506667pt;}
.ws8e{word-spacing:2.613333pt;}
.ws5a{word-spacing:2.666667pt;}
.ws39{word-spacing:2.720000pt;}
.ws3d{word-spacing:2.773333pt;}
.ws73{word-spacing:2.826667pt;}
.ws97{word-spacing:2.933333pt;}
.ws57{word-spacing:2.986667pt;}
.ws33{word-spacing:3.093333pt;}
.wsb9{word-spacing:3.253333pt;}
.ws7e{word-spacing:3.306667pt;}
.wsa9{word-spacing:3.413333pt;}
.ws3c{word-spacing:3.466667pt;}
.ws72{word-spacing:3.520000pt;}
.ws5f{word-spacing:3.626667pt;}
.ws22{word-spacing:3.680000pt;}
.ws4b{word-spacing:3.786667pt;}
.wsa7{word-spacing:3.840000pt;}
.wsbb{word-spacing:3.946667pt;}
.ws85{word-spacing:4.000000pt;}
.ws7d{word-spacing:4.053333pt;}
.ws4d{word-spacing:4.106667pt;}
.ws96{word-spacing:4.160000pt;}
.ws84{word-spacing:4.213333pt;}
.ws25{word-spacing:4.320000pt;}
.ws11{word-spacing:4.426667pt;}
.ws2c{word-spacing:4.480000pt;}
.wsa2{word-spacing:4.533333pt;}
.wsb7{word-spacing:4.586667pt;}
.ws15{word-spacing:4.640000pt;}
.ws95{word-spacing:4.746667pt;}
.ws6f{word-spacing:4.853333pt;}
.wsa1{word-spacing:5.013333pt;}
.ws10{word-spacing:5.066667pt;}
.ws82{word-spacing:5.120000pt;}
.wsab{word-spacing:5.173333pt;}
.ws94{word-spacing:5.280000pt;}
.ws5c{word-spacing:5.333333pt;}
.ws17{word-spacing:5.386667pt;}
.ws8b{word-spacing:5.440000pt;}
.wsa3{word-spacing:5.653333pt;}
.ws83{word-spacing:5.760000pt;}
.ws88{word-spacing:5.813333pt;}
.ws3a{word-spacing:5.920000pt;}
.ws7c{word-spacing:5.973333pt;}
.ws60{word-spacing:6.240000pt;}
.wsb8{word-spacing:6.293333pt;}
.ws46{word-spacing:6.506667pt;}
.ws74{word-spacing:6.560000pt;}
.wsb5{word-spacing:6.826667pt;}
.ws37{word-spacing:6.986667pt;}
.wsaa{word-spacing:7.200000pt;}
.ws59{word-spacing:7.306667pt;}
.ws38{word-spacing:7.360000pt;}
.ws34{word-spacing:7.413333pt;}
.ws7f{word-spacing:7.626667pt;}
.ws80{word-spacing:11.946667pt;}
.ws6e{word-spacing:75.552000pt;}
.ws64{word-spacing:105.888000pt;}
.ws63{word-spacing:124.752000pt;}
.ws79{word-spacing:131.424000pt;}
.ws78{word-spacing:136.800000pt;}
.ws62{word-spacing:156.240000pt;}
.ws0{word-spacing:263.072000pt;}
._9{margin-left:-7.296000pt;}
._2{margin-left:-5.658667pt;}
._4{margin-left:-4.720000pt;}
._3{margin-left:-3.013333pt;}
._5{margin-left:-2.122667pt;}
._0{margin-left:-1.232000pt;}
._1{width:1.370667pt;}
._7{width:2.387733pt;}
._a{width:3.352533pt;}
._b{width:4.385600pt;}
._e{width:13.291200pt;}
._15{width:18.800000pt;}
._10{width:100.656000pt;}
._11{width:112.992000pt;}
._f{width:119.184000pt;}
._d{width:136.272000pt;}
._13{width:141.984000pt;}
._14{width:144.720000pt;}
._12{width:150.096000pt;}
._c{width:156.912000pt;}
._8{width:329.561600pt;}
._6{width:478.752000pt;}
.fs4{font-size:30.933333pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y13b{bottom:2.780267pt;}
.y11d{bottom:2.780400pt;}
.y12d{bottom:3.445200pt;}
.yfe{bottom:3.446000pt;}
.ydb{bottom:3.446133pt;}
.y108{bottom:3.446400pt;}
.ye2{bottom:3.446533pt;}
.y113{bottom:3.446800pt;}
.yee{bottom:3.446933pt;}
.yd6{bottom:3.447067pt;}
.yd5{bottom:16.647067pt;}
.y1{bottom:52.913333pt;}
.y2{bottom:113.385867pt;}
.ybe{bottom:116.674133pt;}
.y1a6{bottom:118.072267pt;}
.ybd{bottom:131.340800pt;}
.y11c{bottom:134.309333pt;}
.y172{bottom:135.218133pt;}
.y169{bottom:135.476800pt;}
.ybc{bottom:146.007467pt;}
.y1a5{bottom:147.858933pt;}
.y171{bottom:149.884800pt;}
.y168{bottom:150.143467pt;}
.y11b{bottom:150.289733pt;}
.y11f{bottom:150.290000pt;}
.ybb{bottom:160.674133pt;}
.y11e{bottom:163.478000pt;}
.y11a{bottom:163.489733pt;}
.y58{bottom:164.551467pt;}
.y167{bottom:164.810133pt;}
.y119{bottom:176.689733pt;}
.y57{bottom:179.218133pt;}
.y166{bottom:179.476800pt;}
.y1a4{bottom:188.432267pt;}
.y112{bottom:189.778667pt;}
.y170{bottom:193.884800pt;}
.y165{bottom:194.143467pt;}
.y56{bottom:195.778133pt;}
.yba{bottom:198.020800pt;}
.y1a3{bottom:203.098933pt;}
.y118{bottom:206.413733pt;}
.y111{bottom:206.425067pt;}
.y116{bottom:206.425333pt;}
.y16f{bottom:208.551467pt;}
.y164{bottom:208.810133pt;}
.y55{bottom:210.444800pt;}
.y1a2{bottom:217.765600pt;}
.yb8{bottom:217.812667pt;}
.y117{bottom:219.613733pt;}
.y110{bottom:219.625067pt;}
.y115{bottom:219.625333pt;}
.y1c6{bottom:223.018133pt;}
.y16e{bottom:223.218133pt;}
.y163{bottom:223.476800pt;}
.y54{bottom:225.111467pt;}
.yb6{bottom:231.012667pt;}
.y1a1{bottom:232.432267pt;}
.y10f{bottom:232.825067pt;}
.y114{bottom:232.825333pt;}
.yb9{bottom:237.600667pt;}
.y16d{bottom:237.884800pt;}
.y162{bottom:238.143467pt;}
.y1c5{bottom:239.578133pt;}
.y53{bottom:239.778133pt;}
.yb5{bottom:244.212667pt;}
.y107{bottom:245.914667pt;}
.y1a0{bottom:247.098933pt;}
.ya5{bottom:251.262000pt;}
.y16c{bottom:252.551467pt;}
.yf2{bottom:253.228000pt;}
.y52{bottom:254.444800pt;}
.y161{bottom:254.703467pt;}
.y10c{bottom:255.961067pt;}
.y1c4{bottom:256.138133pt;}
.yb7{bottom:257.412667pt;}
.y19f{bottom:261.765600pt;}
.y106{bottom:262.560667pt;}
.y16b{bottom:267.218133pt;}
.y51{bottom:269.111467pt;}
.y10b{bottom:269.161067pt;}
.y160{bottom:269.370133pt;}
.y1c3{bottom:272.698133pt;}
.y10e{bottom:275.749067pt;}
.y105{bottom:275.760667pt;}
.yaf{bottom:275.832667pt;}
.yb2{bottom:275.844667pt;}
.y19e{bottom:276.432267pt;}
.y16a{bottom:281.884800pt;}
.y10a{bottom:282.361067pt;}
.yb4{bottom:282.432667pt;}
.y50{bottom:283.778133pt;}
.y15f{bottom:284.036800pt;}
.y10d{bottom:288.949067pt;}
.y104{bottom:288.960667pt;}
.yae{bottom:289.032667pt;}
.yb1{bottom:289.044667pt;}
.y19d{bottom:291.098933pt;}
.y23{bottom:293.632000pt;}
.y109{bottom:295.561067pt;}
.yb3{bottom:295.632667pt;}
.y4f{bottom:298.444800pt;}
.y15e{bottom:298.703467pt;}
.y103{bottom:302.160667pt;}
.yad{bottom:302.232667pt;}
.yb0{bottom:302.244667pt;}
.y19c{bottom:305.765600pt;}
.y22{bottom:310.192000pt;}
.y4e{bottom:313.111467pt;}
.y15d{bottom:313.370133pt;}
.y67{bottom:315.004800pt;}
.yfd{bottom:315.250667pt;}
.y19b{bottom:320.432267pt;}
.yaa{bottom:324.456667pt;}
.ya9{bottom:324.468667pt;}
.y21{bottom:324.858667pt;}
.y4d{bottom:327.778133pt;}
.y15c{bottom:328.036800pt;}
.y66{bottom:329.671467pt;}
.yac{bottom:331.056667pt;}
.yfc{bottom:331.896667pt;}
.y19a{bottom:335.098933pt;}
.ya7{bottom:337.656667pt;}
.ya8{bottom:337.668667pt;}
.y100{bottom:338.496667pt;}
.y20{bottom:339.525333pt;}
.y4c{bottom:342.444800pt;}
.y15b{bottom:342.703467pt;}
.yab{bottom:344.256667pt;}
.y65{bottom:344.338133pt;}
.yfb{bottom:345.096667pt;}
.y199{bottom:349.765600pt;}
.ya6{bottom:350.856667pt;}
.yf5{bottom:351.696667pt;}
.y1f{bottom:354.192000pt;}
.y4b{bottom:357.111467pt;}
.y15a{bottom:357.370133pt;}
.y102{bottom:358.284667pt;}
.yfa{bottom:358.296667pt;}
.y64{bottom:359.004800pt;}
.y198{bottom:364.432267pt;}
.yf4{bottom:364.896667pt;}
.y1e{bottom:368.858667pt;}
.y101{bottom:371.484667pt;}
.yf9{bottom:371.496667pt;}
.y159{bottom:372.036800pt;}
.y4a{bottom:373.671467pt;}
.ya3{bottom:377.798400pt;}
.yf3{bottom:378.096667pt;}
.y1d{bottom:383.525333pt;}
.yf8{bottom:384.696667pt;}
.y158{bottom:386.703467pt;}
.y49{bottom:388.338133pt;}
.ya2{bottom:390.998400pt;}
.yff{bottom:391.296667pt;}
.y1c2{bottom:393.191467pt;}
.y197{bottom:394.218933pt;}
.ya4{bottom:397.586400pt;}
.yf7{bottom:397.896667pt;}
.y1c{bottom:398.192000pt;}
.y157{bottom:401.370133pt;}
.y48{bottom:403.004800pt;}
.ya1{bottom:404.198400pt;}
.yf6{bottom:411.096667pt;}
.y1c1{bottom:415.418133pt;}
.y156{bottom:416.036800pt;}
.y47{bottom:417.671467pt;}
.yed{bottom:424.185333pt;}
.y1b{bottom:427.978667pt;}
.y1c0{bottom:430.084800pt;}
.y9f{bottom:431.114400pt;}
.y46{bottom:432.338133pt;}
.y155{bottom:432.596800pt;}
.y196{bottom:434.792267pt;}
.yec{bottom:440.831867pt;}
.yf1{bottom:440.832267pt;}
.y9b{bottom:444.302400pt;}
.y9e{bottom:444.314400pt;}
.y1bf{bottom:444.751467pt;}
.y45{bottom:447.004800pt;}
.y154{bottom:447.263467pt;}
.y195{bottom:449.458933pt;}
.ya0{bottom:450.902400pt;}
.yeb{bottom:454.031867pt;}
.yf0{bottom:454.032267pt;}
.y9a{bottom:457.502400pt;}
.y9d{bottom:457.514400pt;}
.y44{bottom:461.671467pt;}
.y153{bottom:461.930133pt;}
.y194{bottom:464.125600pt;}
.y89{bottom:466.615600pt;}
.y1be{bottom:466.978133pt;}
.yea{bottom:467.231867pt;}
.yef{bottom:467.232267pt;}
.yd7{bottom:469.040000pt;}
.y9c{bottom:470.714400pt;}
.y43{bottom:476.338133pt;}
.y152{bottom:476.596800pt;}
.y63{bottom:478.231467pt;}
.y193{bottom:478.792267pt;}
.ye1{bottom:480.321333pt;}
.y1bd{bottom:481.644800pt;}
.y1a{bottom:481.784667pt;}
.y97{bottom:491.030400pt;}
.y151{bottom:491.263467pt;}
.y42{bottom:492.898133pt;}
.y192{bottom:493.458933pt;}
.ye0{bottom:496.967467pt;}
.ye6{bottom:496.967867pt;}
.ye9{bottom:503.555867pt;}
.ye8{bottom:503.567867pt;}
.y1bc{bottom:503.871467pt;}
.y96{bottom:504.230400pt;}
.y150{bottom:505.930133pt;}
.y41{bottom:507.564800pt;}
.y19{bottom:509.774000pt;}
.y191{bottom:510.018933pt;}
.ydf{bottom:510.167467pt;}
.ye5{bottom:510.167867pt;}
.y99{bottom:510.818400pt;}
.ye7{bottom:516.767867pt;}
.y95{bottom:517.430400pt;}
.y1bb{bottom:518.538133pt;}
.y14f{bottom:520.596800pt;}
.y40{bottom:522.231467pt;}
.yde{bottom:523.367467pt;}
.ye4{bottom:523.367867pt;}
.y98{bottom:524.018400pt;}
.y190{bottom:524.685600pt;}
.y94{bottom:530.630400pt;}
.y14e{bottom:535.263467pt;}
.ydd{bottom:536.567467pt;}
.ye3{bottom:536.567867pt;}
.y3f{bottom:536.898133pt;}
.y18f{bottom:539.352267pt;}
.y1ba{bottom:540.764800pt;}
.yda{bottom:549.657333pt;}
.y3e{bottom:551.564800pt;}
.y14d{bottom:551.823467pt;}
.y18e{bottom:554.018933pt;}
.y1b9{bottom:555.431467pt;}
.y91{bottom:559.418400pt;}
.ydc{bottom:559.691467pt;}
.y8d{bottom:566.030400pt;}
.y3d{bottom:566.231467pt;}
.yd9{bottom:566.303467pt;}
.y14c{bottom:566.490133pt;}
.y18d{bottom:568.685600pt;}
.y90{bottom:572.618400pt;}
.y18{bottom:577.450667pt;}
.y1b8{bottom:577.658133pt;}
.y93{bottom:579.218400pt;}
.y8c{bottom:579.230400pt;}
.yd8{bottom:579.503467pt;}
.y62{bottom:580.898133pt;}
.y14b{bottom:581.156800pt;}
.y3c{bottom:582.791467pt;}
.y18c{bottom:583.352267pt;}
.y8f{bottom:585.818400pt;}
.y92{bottom:592.418400pt;}
.y8b{bottom:592.430400pt;}
.yd4{bottom:592.592000pt;}
.y17{bottom:594.010667pt;}
.y61{bottom:595.564800pt;}
.y14a{bottom:595.823467pt;}
.y3b{bottom:597.458133pt;}
.y18b{bottom:598.018933pt;}
.y8e{bottom:599.018400pt;}
.y1b7{bottom:599.884800pt;}
.yd3{bottom:602.639067pt;}
.y8a{bottom:605.630400pt;}
.y16{bottom:608.677333pt;}
.y60{bottom:610.231467pt;}
.y149{bottom:610.490133pt;}
.y3a{bottom:612.124800pt;}
.y18a{bottom:612.685600pt;}
.y1b6{bottom:614.551467pt;}
.y15{bottom:623.344000pt;}
.y5f{bottom:624.898133pt;}
.y148{bottom:625.156800pt;}
.y39{bottom:626.791467pt;}
.y189{bottom:627.352267pt;}
.y84{bottom:629.728667pt;}
.yd2{bottom:630.299600pt;}
.y87{bottom:636.328667pt;}
.y1b5{bottom:636.778133pt;}
.y14{bottom:638.010667pt;}
.y5e{bottom:639.564800pt;}
.y147{bottom:639.823467pt;}
.y38{bottom:641.458133pt;}
.y188{bottom:642.018933pt;}
.y83{bottom:642.928667pt;}
.y86{bottom:649.528667pt;}
.y1b4{bottom:651.444800pt;}
.y13{bottom:652.677333pt;}
.y146{bottom:654.490133pt;}
.y88{bottom:656.116667pt;}
.y37{bottom:656.124800pt;}
.y82{bottom:656.128667pt;}
.y187{bottom:656.685600pt;}
.yd1{bottom:660.086267pt;}
.y85{bottom:662.728667pt;}
.y12{bottom:667.344000pt;}
.y145{bottom:669.156800pt;}
.y81{bottom:669.328667pt;}
.y36{bottom:670.791467pt;}
.y186{bottom:671.352267pt;}
.y1b3{bottom:673.671467pt;}
.y6c{bottom:681.525333pt;}
.y11{bottom:682.010667pt;}
.y144{bottom:683.823467pt;}
.y35{bottom:685.458133pt;}
.y185{bottom:687.912267pt;}
.y1b2{bottom:688.338133pt;}
.y10{bottom:696.677333pt;}
.y7e{bottom:698.128667pt;}
.y143{bottom:698.490133pt;}
.y34{bottom:700.124800pt;}
.yd0{bottom:700.659600pt;}
.y184{bottom:702.578933pt;}
.y1b1{bottom:703.004800pt;}
.y7a{bottom:704.728667pt;}
.y80{bottom:711.316667pt;}
.y7d{bottom:711.328667pt;}
.yf{bottom:711.344000pt;}
.y142{bottom:713.156800pt;}
.y33{bottom:714.791467pt;}
.ycf{bottom:715.326267pt;}
.y183{bottom:717.245600pt;}
.y79{bottom:717.928667pt;}
.y7f{bottom:724.516667pt;}
.y7c{bottom:724.528667pt;}
.y1b0{bottom:725.231467pt;}
.y141{bottom:727.823467pt;}
.y32{bottom:729.458133pt;}
.yce{bottom:729.992933pt;}
.y78{bottom:731.128667pt;}
.y182{bottom:731.912267pt;}
.y7b{bottom:737.728667pt;}
.y1af{bottom:739.898133pt;}
.ye{bottom:741.130667pt;}
.y5d{bottom:744.124800pt;}
.y77{bottom:744.328667pt;}
.ycd{bottom:744.659600pt;}
.y31{bottom:746.018133pt;}
.y181{bottom:746.578933pt;}
.ycc{bottom:759.326267pt;}
.y30{bottom:760.684800pt;}
.y180{bottom:761.245600pt;}
.y1ae{bottom:762.124800pt;}
.y140{bottom:765.170133pt;}
.y70{bottom:768.424667pt;}
.ycb{bottom:773.992933pt;}
.y76{bottom:775.012667pt;}
.y73{bottom:775.024667pt;}
.y2f{bottom:775.351467pt;}
.y17f{bottom:775.912267pt;}
.y1ad{bottom:776.791467pt;}
.y6f{bottom:781.624667pt;}
.y13a{bottom:782.172000pt;}
.yd{bottom:784.210667pt;}
.y75{bottom:788.212667pt;}
.y72{bottom:788.224667pt;}
.yca{bottom:788.659600pt;}
.y2e{bottom:790.018133pt;}
.y17e{bottom:790.578933pt;}
.y1ac{bottom:791.458133pt;}
.y6e{bottom:794.824667pt;}
.y139{bottom:798.151867pt;}
.y13d{bottom:798.152267pt;}
.yc{bottom:798.877333pt;}
.y74{bottom:801.412667pt;}
.y71{bottom:801.424667pt;}
.y2d{bottom:804.684800pt;}
.y13f{bottom:804.752267pt;}
.yc9{bottom:805.219600pt;}
.y17d{bottom:805.245600pt;}
.y6d{bottom:808.024667pt;}
.y138{bottom:811.351867pt;}
.y13c{bottom:811.352267pt;}
.yb{bottom:813.544000pt;}
.y1ab{bottom:813.684800pt;}
.y13e{bottom:817.952267pt;}
.y2c{bottom:819.351467pt;}
.yc8{bottom:819.886267pt;}
.y17c{bottom:821.805600pt;}
.y137{bottom:824.551867pt;}
.ya{bottom:828.212933pt;}
.y1aa{bottom:828.351467pt;}
.y5c{bottom:834.018133pt;}
.yc7{bottom:834.552933pt;}
.y2b{bottom:835.911467pt;}
.y120{bottom:836.285200pt;}
.y17b{bottom:836.472267pt;}
.y12c{bottom:837.642667pt;}
.y6b{bottom:840.609067pt;}
.y9{bottom:842.256933pt;}
.y1a9{bottom:843.018133pt;}
.y134{bottom:847.687867pt;}
.y5b{bottom:848.684800pt;}
.yc6{bottom:849.219600pt;}
.y2a{bottom:850.578133pt;}
.y17a{bottom:851.138933pt;}
.y6a{bottom:853.809067pt;}
.y12b{bottom:854.287467pt;}
.y130{bottom:854.287867pt;}
.y8{bottom:856.923600pt;}
.y136{bottom:860.875867pt;}
.y133{bottom:860.887867pt;}
.y5a{bottom:863.351467pt;}
.yc5{bottom:863.886267pt;}
.y29{bottom:865.244800pt;}
.y179{bottom:865.805600pt;}
.y12a{bottom:867.487467pt;}
.y12f{bottom:867.487867pt;}
.y7{bottom:871.590267pt;}
.y135{bottom:874.075867pt;}
.y132{bottom:874.087867pt;}
.y59{bottom:878.018133pt;}
.y28{bottom:879.911467pt;}
.yc4{bottom:880.446267pt;}
.y178{bottom:880.472267pt;}
.y129{bottom:880.687467pt;}
.y12e{bottom:880.687867pt;}
.y6{bottom:886.256933pt;}
.y131{bottom:887.287867pt;}
.y128{bottom:893.887467pt;}
.y27{bottom:894.578133pt;}
.yc3{bottom:895.112933pt;}
.y177{bottom:895.138933pt;}
.y69{bottom:900.364800pt;}
.y127{bottom:906.977333pt;}
.y26{bottom:909.244800pt;}
.yc2{bottom:909.779600pt;}
.y176{bottom:909.805600pt;}
.y1a8{bottom:916.804800pt;}
.y123{bottom:917.023467pt;}
.y5{bottom:919.831867pt;}
.y126{bottom:923.623467pt;}
.y25{bottom:923.911467pt;}
.yc1{bottom:924.446267pt;}
.y175{bottom:924.472267pt;}
.y68{bottom:926.364800pt;}
.y122{bottom:930.223467pt;}
.y1a7{bottom:931.471467pt;}
.y125{bottom:936.823467pt;}
.yc0{bottom:939.112933pt;}
.y174{bottom:939.138933pt;}
.y121{bottom:943.423467pt;}
.y4{bottom:947.821200pt;}
.y124{bottom:950.023467pt;}
.y24{bottom:953.698133pt;}
.ybf{bottom:953.779600pt;}
.y173{bottom:953.805600pt;}
.y3{bottom:1007.926400pt;}
.he{height:28.500000pt;}
.h6{height:30.711246pt;}
.h7{height:30.720312pt;}
.hf{height:35.613281pt;}
.h10{height:42.269333pt;}
.ha{height:43.488281pt;}
.h18{height:43.536281pt;}
.h9{height:44.777344pt;}
.h4{height:48.320312pt;}
.h3{height:49.752604pt;}
.h2{height:54.727865pt;}
.h17{height:54.802667pt;}
.h16{height:55.469333pt;}
.h14{height:55.470667pt;}
.h12{height:68.669333pt;}
.h11{height:69.840281pt;}
.hb{height:69.888281pt;}
.h5{height:77.312500pt;}
.h13{height:96.240281pt;}
.hc{height:96.288281pt;}
.hd{height:96.336281pt;}
.h8{height:97.577344pt;}
.h15{height:108.269333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:73.933333pt;}
.w6{width:108.333333pt;}
.w4{width:119.666667pt;}
.w5{width:128.866667pt;}
.w3{width:132.932000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x36{left:4.621333pt;}
.x39{left:6.116400pt;}
.x3e{left:8.869867pt;}
.x5a{left:11.171867pt;}
.x43{left:15.536267pt;}
.x37{left:19.285333pt;}
.x55{left:26.858133pt;}
.x58{left:37.787733pt;}
.x3a{left:42.788400pt;}
.x4b{left:46.195467pt;}
.x4f{left:50.795467pt;}
.x2{left:70.553867pt;}
.x1{left:71.811067pt;}
.x3{left:85.220533pt;}
.x4{left:132.283467pt;}
.x10{left:140.464267pt;}
.x3b{left:156.347600pt;}
.x5{left:167.056400pt;}
.x3d{left:171.672000pt;}
.x3c{left:178.513067pt;}
.xf{left:181.421867pt;}
.x34{left:189.826000pt;}
.x54{left:194.171467pt;}
.x23{left:197.735333pt;}
.x15{left:199.775333pt;}
.x24{left:202.055333pt;}
.x2a{left:203.135333pt;}
.x1f{left:206.075333pt;}
.x12{left:207.530133pt;}
.x30{left:208.461867pt;}
.x31{left:209.781867pt;}
.x2e{left:210.789867pt;}
.x4a{left:213.167467pt;}
.x28{left:217.799333pt;}
.x17{left:220.475333pt;}
.x18{left:223.487333pt;}
.x2d{left:227.145867pt;}
.x29{left:235.775333pt;}
.x6{left:256.635067pt;}
.x16{left:268.115333pt;}
.x11{left:273.029600pt;}
.x4e{left:292.005333pt;}
.x4d{left:296.775600pt;}
.x57{left:299.124267pt;}
.x4c{left:301.767600pt;}
.x47{left:303.827467pt;}
.x44{left:304.751467pt;}
.x3f{left:306.783200pt;}
.x50{left:308.773067pt;}
.x56{left:309.720267pt;}
.x46{left:312.431467pt;}
.x5c{left:315.154667pt;}
.x5b{left:319.414667pt;}
.x45{left:329.795467pt;}
.x40{left:342.795200pt;}
.x25{left:363.251333pt;}
.x21{left:366.239333pt;}
.x2b{left:370.535333pt;}
.x19{left:375.899333pt;}
.x1b{left:377.927333pt;}
.x32{left:380.229867pt;}
.x22{left:381.911333pt;}
.x2f{left:387.225867pt;}
.xb{left:397.809333pt;}
.x20{left:400.559333pt;}
.x27{left:402.551333pt;}
.x1a{left:404.219333pt;}
.x2c{left:415.247333pt;}
.x26{left:420.935333pt;}
.x48{left:428.387467pt;}
.x59{left:432.030800pt;}
.x51{left:439.729067pt;}
.x52{left:443.341067pt;}
.xe{left:453.846400pt;}
.x41{left:462.063200pt;}
.xd{left:474.666400pt;}
.xc{left:500.675467pt;}
.x13{left:512.018133pt;}
.x1c{left:514.331333pt;}
.x33{left:515.997867pt;}
.x14{left:526.286133pt;}
.x35{left:530.205333pt;}
.x42{left:540.867200pt;}
.x53{left:542.233067pt;}
.xa{left:586.093200pt;}
.x38{left:604.138667pt;}
.x1e{left:608.075333pt;}
.x1d{left:612.707333pt;}
.x8{left:620.370667pt;}
.x49{left:628.967467pt;}
.x7{left:637.376800pt;}
.x9{left:643.254133pt;}
.x5d{left:658.270133pt;}
.x5e{left:662.350133pt;}
.x5f{left:675.350133pt;}
}




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