
    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_4fced896b15616f4cd24509b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.062000;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_2bc4fec5aa2a31b8e19977d6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.042000;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_0d81a4f967d7e6957432c7f5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.049000;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_69cb9cd053f4853374bbafdd.woff')format("woff");}.ff4{font-family:ff4;line-height:1.043083;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_10e5a378709b56489be62c95.woff')format("woff");}.ff5{font-family:ff5;line-height:1.043083;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_683a1c3a180264785d3cb445.woff')format("woff");}.ff6{font-family:ff6;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ffac92f3e350e4f2a3ff6b16.woff')format("woff");}.ff7{font-family:ff7;line-height:1.062000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9a733cc4b78d9ba5f64d8509.woff')format("woff");}.ff8{font-family:ff8;line-height:1.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffa{font-family:ffa;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls53{letter-spacing:-6.420000px;}
.ls52{letter-spacing:-1.542000px;}
.ls43{letter-spacing:-0.590400px;}
.ls54{letter-spacing:-0.582000px;}
.ls3d{letter-spacing:-0.490800px;}
.ls50{letter-spacing:-0.348600px;}
.ls34{letter-spacing:-0.288000px;}
.ls51{letter-spacing:-0.234600px;}
.ls47{letter-spacing:-0.216000px;}
.ls22{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.100800px;}
.ls3c{letter-spacing:-0.000003px;}
.ls2{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.000001px;}
.ls3a{letter-spacing:0.000003px;}
.ls1b{letter-spacing:0.010080px;}
.ls27{letter-spacing:0.066960px;}
.ls12{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.123000px;}
.ls9{letter-spacing:0.129600px;}
.ls29{letter-spacing:0.138240px;}
.ls11{letter-spacing:0.144000px;}
.ls3e{letter-spacing:0.180000px;}
.ls44{letter-spacing:0.192000px;}
.ls3{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.228960px;}
.ls2c{letter-spacing:0.229200px;}
.ls3f{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.296400px;}
.lse{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.371520px;}
.ls23{letter-spacing:0.485280px;}
.ls41{letter-spacing:0.504000px;}
.ls2d{letter-spacing:0.576000px;}
.ls5{letter-spacing:0.666000px;}
.ls38{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.786000px;}
.ls35{letter-spacing:0.948000px;}
.lsc{letter-spacing:1.440000px;}
.ls4e{letter-spacing:1.850400px;}
.lsa{letter-spacing:2.160000px;}
.ls4f{letter-spacing:2.388000px;}
.ls18{letter-spacing:3.600000px;}
.ls14{letter-spacing:4.320000px;}
.ls30{letter-spacing:5.040000px;}
.ls1e{letter-spacing:5.736000px;}
.ls20{letter-spacing:7.200000px;}
.ls36{letter-spacing:7.920000px;}
.ls32{letter-spacing:8.640000px;}
.lsb{letter-spacing:10.800000px;}
.ls25{letter-spacing:11.304000px;}
.ls24{letter-spacing:12.024000px;}
.ls10{letter-spacing:12.240000px;}
.ls21{letter-spacing:13.680000px;}
.ls17{letter-spacing:14.904000px;}
.ls2b{letter-spacing:16.560000px;}
.ls37{letter-spacing:17.280000px;}
.ls2f{letter-spacing:18.720000px;}
.ls15{letter-spacing:20.880000px;}
.ls16{letter-spacing:23.760000px;}
.ls4d{letter-spacing:24.170400px;}
.ls4a{letter-spacing:25.610400px;}
.ls45{letter-spacing:26.040000px;}
.ls49{letter-spacing:26.330400px;}
.ls1a{letter-spacing:26.640000px;}
.ls4b{letter-spacing:27.050400px;}
.ls1d{letter-spacing:28.080000px;}
.ls48{letter-spacing:28.490400px;}
.ls1f{letter-spacing:30.240000px;}
.ls1c{letter-spacing:30.960000px;}
.lsd{letter-spacing:32.184000px;}
.lsf{letter-spacing:32.580000px;}
.ls4c{letter-spacing:33.530400px;}
.ls33{letter-spacing:34.560000px;}
.ls39{letter-spacing:36.720000px;}
.ls19{letter-spacing:38.160000px;}
.ls2e{letter-spacing:42.480000px;}
.ls26{letter-spacing:46.080000px;}
.ls31{letter-spacing:48.240000px;}
.ls28{letter-spacing:52.704000px;}
.ls2a{letter-spacing:64.026720px;}
.ls42{letter-spacing:103.140000px;}
.ls0{letter-spacing:520.020000px;}
.ls46{letter-spacing:844.164000px;}
.ls3b{letter-spacing:844.284000px;}
.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;}
}
.wse{word-spacing:-59.760000px;}
.ws9{word-spacing:-15.785280px;}
.ws17{word-spacing:-15.480000px;}
.ws15{word-spacing:-15.408000px;}
.wsb{word-spacing:-15.192000px;}
.ws11{word-spacing:-15.120003px;}
.ws16{word-spacing:-15.120001px;}
.ws1{word-spacing:-15.120000px;}
.wsd{word-spacing:-14.976000px;}
.ws1a{word-spacing:-14.937600px;}
.wsc{word-spacing:-14.832000px;}
.wsa{word-spacing:-14.760000px;}
.ws0{word-spacing:-14.616000px;}
.ws12{word-spacing:-14.615997px;}
.ws19{word-spacing:-14.400000px;}
.ws10{word-spacing:-13.497600px;}
.ws6{word-spacing:-13.335600px;}
.ws4{word-spacing:-13.215600px;}
.wsf{word-spacing:-12.778800px;}
.ws14{word-spacing:-12.679200px;}
.ws1c{word-spacing:-12.559680px;}
.ws3{word-spacing:-12.549600px;}
.ws2{word-spacing:-12.448800px;}
.ws1d{word-spacing:-12.315000px;}
.ws1b{word-spacing:-12.201000px;}
.ws7{word-spacing:-12.131280px;}
.ws5{word-spacing:-12.071520px;}
.ws13{word-spacing:-12.058800px;}
.ws20{word-spacing:-11.967600px;}
.ws18{word-spacing:-11.959200px;}
.ws1e{word-spacing:-11.007600px;}
.ws1f{word-spacing:-6.129600px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-11.520000px;}
._4f{margin-left:-8.042160px;}
._6{margin-left:-6.612000px;}
._a{margin-left:-5.400000px;}
._b{margin-left:-4.001280px;}
._1{margin-left:-2.592000px;}
._0{margin-left:-1.536000px;}
._9{width:1.200000px;}
._5{width:2.208000px;}
._1f{width:3.576000px;}
._21{width:4.752000px;}
._f{width:6.696000px;}
._10{width:8.064000px;}
._1a{width:10.008000px;}
._19{width:11.664000px;}
._e{width:12.816000px;}
._d{width:13.824000px;}
._27{width:15.840000px;}
._1e{width:17.064000px;}
._11{width:18.360000px;}
._12{width:19.440000px;}
._1c{width:20.568000px;}
._16{width:21.768000px;}
._15{width:22.896000px;}
._26{width:24.336000px;}
._1d{width:26.040000px;}
._18{width:27.072000px;}
._17{width:28.224000px;}
._2a{width:29.268000px;}
._29{width:30.480000px;}
._20{width:32.256000px;}
._2b{width:33.864000px;}
._2c{width:34.992000px;}
._22{width:36.000000px;}
._23{width:37.356000px;}
._13{width:38.808000px;}
._14{width:39.900000px;}
._2d{width:41.088000px;}
._37{width:42.096000px;}
._36{width:43.536000px;}
._3c{width:45.072000px;}
._2e{width:46.728000px;}
._2f{width:48.036000px;}
._34{width:49.932000px;}
._28{width:51.096000px;}
._24{width:52.128000px;}
._25{width:53.688000px;}
._33{width:55.536000px;}
._1b{width:56.808000px;}
._3d{width:59.040000px;}
._3e{width:60.408000px;}
._41{width:61.440000px;}
._3a{width:70.140000px;}
._46{width:72.576000px;}
._45{width:73.872000px;}
._4c{width:85.032000px;}
._3f{width:86.904000px;}
._39{width:99.672000px;}
._38{width:100.872000px;}
._4a{width:102.528000px;}
._4b{width:103.608000px;}
._4d{width:117.936000px;}
._4e{width:119.676000px;}
._47{width:180.000000px;}
._48{width:181.368000px;}
._42{width:219.672000px;}
._43{width:220.824000px;}
._2{width:475.164000px;}
._7{width:558.653520px;}
._3{width:1295.580000px;}
._44{width:1450.790400px;}
._49{width:1452.950400px;}
._32{width:1455.830400px;}
._3b{width:1457.270400px;}
._40{width:1459.430400px;}
._35{width:1463.030400px;}
._30{width:1483.910400px;}
._c{width:1485.350400px;}
._8{width:1491.110400px;}
._31{width:2295.288000px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(192,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:4.500000px;}
.y1b3{bottom:5.394000px;}
.y9b{bottom:5.400000px;}
.y19{bottom:5.760000px;}
.y3b{bottom:22.500000px;}
.yb5{bottom:26.994000px;}
.ya0{bottom:27.000000px;}
.ybc{bottom:27.030000px;}
.yb9{bottom:27.045000px;}
.y18{bottom:27.900000px;}
.ye{bottom:39.240000px;}
.y3a{bottom:40.500000px;}
.y17{bottom:45.900000px;}
.yb4{bottom:48.594000px;}
.y9f{bottom:48.600000px;}
.ya7{bottom:48.630000px;}
.yae{bottom:48.645000px;}
.yd{bottom:57.240000px;}
.y5{bottom:57.600000px;}
.y39{bottom:58.494000px;}
.y16{bottom:64.800000px;}
.yb3{bottom:70.194000px;}
.y9e{bottom:70.200000px;}
.ya6{bottom:70.230000px;}
.yad{bottom:70.245000px;}
.yc{bottom:76.140000px;}
.y38{bottom:76.494000px;}
.y4{bottom:79.056000px;}
.y15{bottom:86.400000px;}
.yb2{bottom:91.794000px;}
.y9d{bottom:91.800000px;}
.ya5{bottom:91.830000px;}
.yac{bottom:91.845000px;}
.y37{bottom:95.394000px;}
.yb{bottom:97.740000px;}
.y1a{bottom:106.956000px;}
.yd9{bottom:107.676000px;}
.y14{bottom:108.000000px;}
.yb1{bottom:113.394000px;}
.ya9{bottom:113.400000px;}
.ya4{bottom:113.430000px;}
.yab{bottom:113.445000px;}
.ye6{bottom:115.236000px;}
.y36{bottom:116.994000px;}
.ya{bottom:119.340000px;}
.y177{bottom:120.996000px;}
.yc1{bottom:121.716000px;}
.ye7{bottom:122.436000px;}
.y15d{bottom:122.616000px;}
.yeb{bottom:122.976000px;}
.y1d4{bottom:124.236000px;}
.ycd{bottom:125.496000px;}
.y1b4{bottom:125.676000px;}
.y191{bottom:127.116000px;}
.yce{bottom:127.836000px;}
.y6b{bottom:128.736000px;}
.y13{bottom:130.005000px;}
.y149{bottom:132.336000px;}
.yb0{bottom:134.994000px;}
.ybf{bottom:135.000000px;}
.ya3{bottom:135.030000px;}
.yb8{bottom:135.045000px;}
.y148{bottom:138.456000px;}
.y35{bottom:138.594000px;}
.y15c{bottom:139.536000px;}
.y9{bottom:141.300000px;}
.y150{bottom:142.596000px;}
.yaf{bottom:144.036000px;}
.yea{bottom:144.576000px;}
.y1d3{bottom:145.836000px;}
.ycc{bottom:147.096000px;}
.y1b2{bottom:147.996000px;}
.y190{bottom:148.716000px;}
.y6a{bottom:150.330000px;}
.y12{bottom:153.405000px;}
.y99{bottom:153.930000px;}
.ybe{bottom:156.600000px;}
.ya2{bottom:156.630000px;}
.y147{bottom:160.050000px;}
.y34{bottom:160.194000px;}
.y176{bottom:164.190000px;}
.y8{bottom:164.700000px;}
.yef{bottom:165.630000px;}
.ye9{bottom:166.170000px;}
.y1d2{bottom:167.430000px;}
.ycb{bottom:168.690000px;}
.y18f{bottom:170.310000px;}
.y1b1{bottom:170.490000px;}
.y69{bottom:171.930000px;}
.y98{bottom:175.530000px;}
.y11{bottom:176.805000px;}
.y10{bottom:178.245000px;}
.y146{bottom:181.650000px;}
.y33{bottom:181.794000px;}
.ye8{bottom:182.370000px;}
.y16c{bottom:184.890000px;}
.y175{bottom:185.790000px;}
.yee{bottom:187.230000px;}
.y1a0{bottom:187.770000px;}
.y1d1{bottom:189.030000px;}
.yca{bottom:190.290000px;}
.y18e{bottom:191.910000px;}
.y1b0{bottom:192.810000px;}
.y68{bottom:193.530000px;}
.y97{bottom:197.130000px;}
.y145{bottom:203.250000px;}
.y32{bottom:203.394000px;}
.y15b{bottom:205.050000px;}
.y16b{bottom:206.490000px;}
.yc9{bottom:207.390000px;}
.yed{bottom:208.830000px;}
.y19f{bottom:209.370000px;}
.y1d0{bottom:210.630000px;}
.y18d{bottom:213.510000px;}
.y67{bottom:215.130000px;}
.y96{bottom:218.730000px;}
.y174{bottom:223.590000px;}
.y144{bottom:224.850000px;}
.y31{bottom:224.994000px;}
.yec{bottom:225.030000px;}
.y16a{bottom:228.090000px;}
.y14f{bottom:229.710000px;}
.y19e{bottom:230.970000px;}
.y1cf{bottom:232.230000px;}
.y18c{bottom:235.110000px;}
.y66{bottom:236.730000px;}
.y1af{bottom:237.450000px;}
.y95{bottom:240.330000px;}
.y143{bottom:246.450000px;}
.y30{bottom:246.639000px;}
.y169{bottom:249.690000px;}
.y19d{bottom:252.570000px;}
.y1ce{bottom:253.830000px;}
.y18b{bottom:256.710000px;}
.y65{bottom:258.330000px;}
.y1ae{bottom:259.770000px;}
.y94{bottom:261.930000px;}
.y142{bottom:268.050000px;}
.y2f{bottom:268.239000px;}
.y168{bottom:271.290000px;}
.yc0{bottom:273.630000px;}
.y19c{bottom:274.170000px;}
.y1cd{bottom:275.430000px;}
.y18a{bottom:278.310000px;}
.y64{bottom:279.930000px;}
.y1ad{bottom:282.090000px;}
.y93{bottom:283.530000px;}
.y141{bottom:289.650000px;}
.y2e{bottom:289.839000px;}
.y15a{bottom:292.170000px;}
.y167{bottom:292.890000px;}
.y14e{bottom:295.230000px;}
.y19b{bottom:295.770000px;}
.yaa{bottom:295.950000px;}
.y1cc{bottom:297.030000px;}
.y189{bottom:299.910000px;}
.y63{bottom:301.530000px;}
.y92{bottom:305.130000px;}
.y1ac{bottom:309.990000px;}
.y140{bottom:311.250000px;}
.y2d{bottom:311.439000px;}
.y166{bottom:314.490000px;}
.yc8{bottom:316.110000px;}
.y19a{bottom:317.370000px;}
.y1cb{bottom:318.630000px;}
.y188{bottom:321.510000px;}
.y62{bottom:323.130000px;}
.y91{bottom:326.730000px;}
.y1ab{bottom:331.590000px;}
.y2c{bottom:332.139000px;}
.y13f{bottom:332.850000px;}
.y199{bottom:333.570000px;}
.y165{bottom:336.090000px;}
.y1ca{bottom:340.275000px;}
.y187{bottom:343.155000px;}
.y61{bottom:344.775000px;}
.y90{bottom:348.375000px;}
.y2b{bottom:350.139000px;}
.y164{bottom:352.335000px;}
.y11b{bottom:352.515000px;}
.y1aa{bottom:353.235000px;}
.y13e{bottom:354.495000px;}
.y159{bottom:357.735000px;}
.y1c9{bottom:361.875000px;}
.y186{bottom:364.755000px;}
.y60{bottom:366.375000px;}
.y2a{bottom:368.139000px;}
.y8f{bottom:369.975000px;}
.y11a{bottom:374.115000px;}
.y1a9{bottom:374.835000px;}
.y13d{bottom:376.095000px;}
.y107{bottom:377.175000px;}
.y14d{bottom:382.395000px;}
.y1c8{bottom:383.475000px;}
.y29{bottom:386.139000px;}
.y185{bottom:386.355000px;}
.y5f{bottom:387.975000px;}
.y8e{bottom:391.575000px;}
.y119{bottom:395.715000px;}
.y1a8{bottom:396.435000px;}
.y13c{bottom:397.695000px;}
.y106{bottom:398.775000px;}
.ybd{bottom:403.995000px;}
.y28{bottom:404.139000px;}
.y1c7{bottom:405.075000px;}
.y184{bottom:407.955000px;}
.y5e{bottom:409.575000px;}
.y8d{bottom:413.175000px;}
.y118{bottom:417.315000px;}
.y1a7{bottom:418.035000px;}
.y13b{bottom:419.295000px;}
.y105{bottom:420.375000px;}
.y27{bottom:422.139000px;}
.ya8{bottom:426.315000px;}
.y1c6{bottom:426.675000px;}
.y183{bottom:429.555000px;}
.y5d{bottom:431.175000px;}
.y8c{bottom:434.775000px;}
.y117{bottom:438.915000px;}
.y1a6{bottom:439.635000px;}
.y26{bottom:440.139000px;}
.y13a{bottom:440.895000px;}
.y104{bottom:441.975000px;}
.y158{bottom:445.035000px;}
.yc7{bottom:446.475000px;}
.y1c5{bottom:448.275000px;}
.ye5{bottom:449.895000px;}
.y182{bottom:451.155000px;}
.y5c{bottom:452.775000px;}
.y8b{bottom:456.375000px;}
.y25{bottom:458.139000px;}
.y116{bottom:460.515000px;}
.y1a5{bottom:461.235000px;}
.y139{bottom:462.495000px;}
.y103{bottom:463.575000px;}
.y14c{bottom:469.515000px;}
.y1c4{bottom:469.875000px;}
.ye4{bottom:471.495000px;}
.y181{bottom:472.755000px;}
.y5b{bottom:474.375000px;}
.y24{bottom:476.139000px;}
.y8a{bottom:477.975000px;}
.y115{bottom:482.115000px;}
.y1a4{bottom:482.835000px;}
.y138{bottom:484.095000px;}
.y102{bottom:485.175000px;}
.y1c3{bottom:486.075000px;}
.ye3{bottom:493.095000px;}
.y23{bottom:494.139000px;}
.y180{bottom:494.355000px;}
.y5a{bottom:495.975000px;}
.y89{bottom:499.575000px;}
.y114{bottom:503.715000px;}
.y1a3{bottom:504.435000px;}
.y137{bottom:505.695000px;}
.y101{bottom:506.775000px;}
.y22{bottom:512.169000px;}
.ye2{bottom:514.695000px;}
.y17f{bottom:515.955000px;}
.y59{bottom:517.575000px;}
.y88{bottom:521.175000px;}
.y113{bottom:525.315000px;}
.y1a2{bottom:526.035000px;}
.y136{bottom:527.295000px;}
.y100{bottom:528.375000px;}
.y21{bottom:530.169000px;}
.y157{bottom:532.155000px;}
.yc6{bottom:533.595000px;}
.ye1{bottom:536.295000px;}
.y17e{bottom:537.555000px;}
.y58{bottom:539.175000px;}
.y1a1{bottom:542.235000px;}
.y87{bottom:542.775000px;}
.yff{bottom:545.655000px;}
.y112{bottom:546.915000px;}
.y20{bottom:548.169000px;}
.y135{bottom:548.895000px;}
.yd8{bottom:549.975000px;}
.ya1{bottom:556.635000px;}
.ye0{bottom:557.895000px;}
.y17d{bottom:559.155000px;}
.y198{bottom:559.875000px;}
.y57{bottom:560.775000px;}
.y86{bottom:564.375000px;}
.y1f{bottom:566.169000px;}
.y111{bottom:568.515000px;}
.yfe{bottom:569.595000px;}
.y134{bottom:570.495000px;}
.yd7{bottom:571.575000px;}
.ybb{bottom:577.515000px;}
.ydf{bottom:579.495000px;}
.y17c{bottom:580.755000px;}
.y173{bottom:581.115000px;}
.y197{bottom:581.475000px;}
.y56{bottom:582.375000px;}
.y1e{bottom:584.169000px;}
.y85{bottom:585.975000px;}
.y110{bottom:590.115000px;}
.y133{bottom:592.095000px;}
.yd6{bottom:593.175000px;}
.yfd{bottom:593.355000px;}
.yde{bottom:601.095000px;}
.y1d{bottom:602.169000px;}
.y17b{bottom:602.355000px;}
.y172{bottom:602.715000px;}
.y196{bottom:603.075000px;}
.y55{bottom:604.005000px;}
.y84{bottom:607.605000px;}
.y10f{bottom:611.745000px;}
.yd5{bottom:614.805000px;}
.yfc{bottom:617.325000px;}
.y156{bottom:619.305000px;}
.y1c{bottom:621.429000px;}
.ydd{bottom:622.725000px;}
.y1b{bottom:622.869000px;}
.y17a{bottom:623.985000px;}
.y171{bottom:624.345000px;}
.y195{bottom:624.705000px;}
.y54{bottom:625.605000px;}
.y132{bottom:627.405000px;}
.y83{bottom:629.205000px;}
.y10e{bottom:633.345000px;}
.yd4{bottom:636.405000px;}
.yfb{bottom:641.085000px;}
.y14b{bottom:643.965000px;}
.ydc{bottom:644.325000px;}
.y179{bottom:645.585000px;}
.y170{bottom:645.945000px;}
.y194{bottom:646.305000px;}
.y53{bottom:647.205000px;}
.y131{bottom:649.005000px;}
.y82{bottom:650.805000px;}
.y10d{bottom:654.945000px;}
.yd3{bottom:658.005000px;}
.y178{bottom:661.785000px;}
.yfa{bottom:665.025000px;}
.ydb{bottom:665.925000px;}
.y16f{bottom:667.545000px;}
.y193{bottom:667.905000px;}
.y52{bottom:668.805000px;}
.y130{bottom:670.605000px;}
.y81{bottom:672.405000px;}
.y1ec{bottom:675.105000px;}
.y10c{bottom:676.545000px;}
.yd2{bottom:679.605000px;}
.yda{bottom:682.125000px;}
.y192{bottom:684.105000px;}
.yc5{bottom:685.545000px;}
.yf9{bottom:688.785000px;}
.y16e{bottom:689.145000px;}
.y51{bottom:690.405000px;}
.y12f{bottom:692.205000px;}
.y1eb{bottom:693.105000px;}
.y80{bottom:694.005000px;}
.y10b{bottom:698.145000px;}
.yd1{bottom:701.205000px;}
.y16d{bottom:705.345000px;}
.y163{bottom:711.105000px;}
.y50{bottom:712.005000px;}
.yf8{bottom:712.725000px;}
.y12e{bottom:713.805000px;}
.y7f{bottom:715.605000px;}
.y10a{bottom:719.745000px;}
.yd0{bottom:722.805000px;}
.y155{bottom:728.025000px;}
.y1ea{bottom:729.105000px;}
.yba{bottom:729.465000px;}
.y9c{bottom:730.365000px;}
.y14a{bottom:731.085000px;}
.y162{bottom:732.705000px;}
.y4f{bottom:733.605000px;}
.y12d{bottom:735.405000px;}
.yf7{bottom:736.485000px;}
.y7e{bottom:737.205000px;}
.ycf{bottom:739.005000px;}
.y109{bottom:741.345000px;}
.yf{bottom:746.745000px;}
.y1e9{bottom:747.105000px;}
.y161{bottom:754.305000px;}
.y4e{bottom:755.205000px;}
.y12c{bottom:757.005000px;}
.y108{bottom:757.545000px;}
.y7d{bottom:758.805000px;}
.yf6{bottom:760.425000px;}
.y1e8{bottom:765.105000px;}
.y160{bottom:775.905000px;}
.y4d{bottom:776.805000px;}
.y12b{bottom:778.605000px;}
.y7c{bottom:780.405000px;}
.y1e7{bottom:783.105000px;}
.yf5{bottom:784.185000px;}
.y154{bottom:793.545000px;}
.y1c2{bottom:795.165000px;}
.y15f{bottom:797.505000px;}
.y4c{bottom:798.405000px;}
.y12a{bottom:800.205000px;}
.y1e6{bottom:801.105000px;}
.y7b{bottom:802.005000px;}
.yf4{bottom:808.125000px;}
.y15e{bottom:813.705000px;}
.yc4{bottom:815.865000px;}
.y1c1{bottom:816.765000px;}
.y1e5{bottom:819.105000px;}
.y4b{bottom:820.005000px;}
.y129{bottom:821.805000px;}
.y7a{bottom:823.605000px;}
.yf3{bottom:831.885000px;}
.y1e4{bottom:837.105000px;}
.y1c0{bottom:838.365000px;}
.y9a{bottom:839.085000px;}
.y4a{bottom:841.605000px;}
.y128{bottom:843.405000px;}
.y79{bottom:845.205000px;}
.y1e3{bottom:855.105000px;}
.yf2{bottom:855.825000px;}
.yb7{bottom:859.965000px;}
.y49{bottom:863.205000px;}
.y127{bottom:865.005000px;}
.y78{bottom:866.805000px;}
.y1e2{bottom:873.150000px;}
.yf1{bottom:879.630000px;}
.y153{bottom:880.710000px;}
.y1bf{bottom:881.610000px;}
.y48{bottom:884.850000px;}
.y126{bottom:886.650000px;}
.y77{bottom:888.450000px;}
.y1e1{bottom:891.150000px;}
.y1be{bottom:903.210000px;}
.yf0{bottom:903.570000px;}
.y47{bottom:906.450000px;}
.y125{bottom:908.250000px;}
.y1e0{bottom:909.150000px;}
.y76{bottom:910.050000px;}
.y1bd{bottom:924.810000px;}
.y1df{bottom:927.150000px;}
.y46{bottom:928.050000px;}
.y124{bottom:929.850000px;}
.y75{bottom:931.650000px;}
.y7{bottom:941.910000px;}
.y1de{bottom:945.150000px;}
.yc3{bottom:946.410000px;}
.y45{bottom:949.650000px;}
.y123{bottom:951.450000px;}
.y74{bottom:953.250000px;}
.y1dd{bottom:963.150000px;}
.y1bc{bottom:963.510000px;}
.y152{bottom:968.010000px;}
.y44{bottom:971.250000px;}
.y122{bottom:973.050000px;}
.y73{bottom:974.850000px;}
.y1dc{bottom:981.150000px;}
.y1bb{bottom:985.830000px;}
.y43{bottom:992.850000px;}
.y121{bottom:994.650000px;}
.y72{bottom:996.450000px;}
.y1db{bottom:999.150000px;}
.y1ba{bottom:1008.150000px;}
.yb6{bottom:1011.930000px;}
.y42{bottom:1014.450000px;}
.y120{bottom:1016.250000px;}
.y1da{bottom:1017.150000px;}
.y71{bottom:1018.050000px;}
.y1b9{bottom:1030.470000px;}
.y1d9{bottom:1035.150000px;}
.y41{bottom:1036.050000px;}
.y11f{bottom:1037.850000px;}
.y70{bottom:1039.650000px;}
.y1b8{bottom:1052.790000px;}
.y1d8{bottom:1053.150000px;}
.y40{bottom:1057.650000px;}
.y11e{bottom:1059.450000px;}
.y6f{bottom:1061.250000px;}
.y1d7{bottom:1071.150000px;}
.y1b7{bottom:1075.110000px;}
.y151{bottom:1076.730000px;}
.y3f{bottom:1079.250000px;}
.y11d{bottom:1081.050000px;}
.y6e{bottom:1082.850000px;}
.y1d6{bottom:1089.150000px;}
.y1b6{bottom:1097.610000px;}
.yc2{bottom:1098.330000px;}
.y3e{bottom:1101.210000px;}
.y11c{bottom:1102.650000px;}
.y6d{bottom:1104.450000px;}
.y1d5{bottom:1107.150000px;}
.y1b5{bottom:1119.930000px;}
.y3d{bottom:1124.610000px;}
.y6c{bottom:1126.050000px;}
.y6{bottom:1128.750000px;}
.y3{bottom:1147.680000px;}
.y2{bottom:1169.280000px;}
.y1{bottom:1193.580000px;}
.hc{height:21.600000px;}
.h16{height:21.636000px;}
.h17{height:43.200000px;}
.h14{height:43.236000px;}
.h5{height:50.497200px;}
.ha{height:51.632640px;}
.hb{height:51.692400px;}
.h4{height:60.840000px;}
.h3{height:62.208000px;}
.h2{height:62.280000px;}
.h19{height:64.800000px;}
.h1a{height:64.836000px;}
.h7{height:67.262400px;}
.h15{height:86.400000px;}
.h18{height:86.436000px;}
.hd{height:108.000000px;}
.hf{height:129.600000px;}
.h10{height:129.636000px;}
.h11{height:151.200000px;}
.h12{height:151.230000px;}
.h13{height:172.800000px;}
.he{height:172.830000px;}
.h6{height:182.340000px;}
.h8{height:194.430000px;}
.h9{height:639.075000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:63.936000px;}
.w11{width:65.340000px;}
.w5{width:129.996000px;}
.w8{width:134.640000px;}
.wc{width:137.016000px;}
.w7{width:146.196000px;}
.w6{width:148.356000px;}
.w9{width:159.330000px;}
.wf{width:179.670000px;}
.wd{width:200.730000px;}
.we{width:201.810000px;}
.w3{width:202.215000px;}
.w10{width:269.490000px;}
.wa{width:361.515000px;}
.w4{width:531.615000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:1.080000px;}
.x4{left:8.100000px;}
.x1{left:84.959987px;}
.x22{left:106.235987px;}
.xa{left:111.995987px;}
.xb{left:138.995987px;}
.x2{left:190.290000px;}
.x5{left:216.570000px;}
.x9{left:219.989987px;}
.x18{left:223.590000px;}
.x14{left:233.850000px;}
.x1f{left:278.715000px;}
.x3{left:287.175000px;}
.x6{left:365.655000px;}
.x19{left:425.055000px;}
.x12{left:446.474987px;}
.x7{left:512.565000px;}
.x20{left:549.105000px;}
.x16{left:595.365000px;}
.x1a{left:627.585000px;}
.x10{left:640.544987px;}
.x21{left:646.664987px;}
.x8{left:647.925000px;}
.xf{left:653.684987px;}
.xe{left:657.149987px;}
.x1e{left:661.649987px;}
.xc{left:671.729987px;}
.xd{left:678.209987px;}
.x1c{left:687.209987px;}
.x17{left:700.349987px;}
.x13{left:708.989987px;}
.x1b{left:713.309987px;}
.x11{left:761.909987px;}
.x1d{left:785.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls53{letter-spacing:-5.706667pt;}
.ls52{letter-spacing:-1.370667pt;}
.ls43{letter-spacing:-0.524800pt;}
.ls54{letter-spacing:-0.517333pt;}
.ls3d{letter-spacing:-0.436267pt;}
.ls50{letter-spacing:-0.309867pt;}
.ls34{letter-spacing:-0.256000pt;}
.ls51{letter-spacing:-0.208533pt;}
.ls47{letter-spacing:-0.192000pt;}
.ls22{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.089600pt;}
.ls3c{letter-spacing:-0.000003pt;}
.ls2{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.000001pt;}
.ls3a{letter-spacing:0.000003pt;}
.ls1b{letter-spacing:0.008960pt;}
.ls27{letter-spacing:0.059520pt;}
.ls12{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.109333pt;}
.ls9{letter-spacing:0.115200pt;}
.ls29{letter-spacing:0.122880pt;}
.ls11{letter-spacing:0.128000pt;}
.ls3e{letter-spacing:0.160000pt;}
.ls44{letter-spacing:0.170667pt;}
.ls3{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.203520pt;}
.ls2c{letter-spacing:0.203733pt;}
.ls3f{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.263467pt;}
.lse{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.330240pt;}
.ls23{letter-spacing:0.431360pt;}
.ls41{letter-spacing:0.448000pt;}
.ls2d{letter-spacing:0.512000pt;}
.ls5{letter-spacing:0.592000pt;}
.ls38{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.698667pt;}
.ls35{letter-spacing:0.842667pt;}
.lsc{letter-spacing:1.280000pt;}
.ls4e{letter-spacing:1.644800pt;}
.lsa{letter-spacing:1.920000pt;}
.ls4f{letter-spacing:2.122667pt;}
.ls18{letter-spacing:3.200000pt;}
.ls14{letter-spacing:3.840000pt;}
.ls30{letter-spacing:4.480000pt;}
.ls1e{letter-spacing:5.098667pt;}
.ls20{letter-spacing:6.400000pt;}
.ls36{letter-spacing:7.040000pt;}
.ls32{letter-spacing:7.680000pt;}
.lsb{letter-spacing:9.600000pt;}
.ls25{letter-spacing:10.048000pt;}
.ls24{letter-spacing:10.688000pt;}
.ls10{letter-spacing:10.880000pt;}
.ls21{letter-spacing:12.160000pt;}
.ls17{letter-spacing:13.248000pt;}
.ls2b{letter-spacing:14.720000pt;}
.ls37{letter-spacing:15.360000pt;}
.ls2f{letter-spacing:16.640000pt;}
.ls15{letter-spacing:18.560000pt;}
.ls16{letter-spacing:21.120000pt;}
.ls4d{letter-spacing:21.484800pt;}
.ls4a{letter-spacing:22.764800pt;}
.ls45{letter-spacing:23.146667pt;}
.ls49{letter-spacing:23.404800pt;}
.ls1a{letter-spacing:23.680000pt;}
.ls4b{letter-spacing:24.044800pt;}
.ls1d{letter-spacing:24.960000pt;}
.ls48{letter-spacing:25.324800pt;}
.ls1f{letter-spacing:26.880000pt;}
.ls1c{letter-spacing:27.520000pt;}
.lsd{letter-spacing:28.608000pt;}
.lsf{letter-spacing:28.960000pt;}
.ls4c{letter-spacing:29.804800pt;}
.ls33{letter-spacing:30.720000pt;}
.ls39{letter-spacing:32.640000pt;}
.ls19{letter-spacing:33.920000pt;}
.ls2e{letter-spacing:37.760000pt;}
.ls26{letter-spacing:40.960000pt;}
.ls31{letter-spacing:42.880000pt;}
.ls28{letter-spacing:46.848000pt;}
.ls2a{letter-spacing:56.912640pt;}
.ls42{letter-spacing:91.680000pt;}
.ls0{letter-spacing:462.240000pt;}
.ls46{letter-spacing:750.368000pt;}
.ls3b{letter-spacing:750.474667pt;}
.wse{word-spacing:-53.120000pt;}
.ws9{word-spacing:-14.031360pt;}
.ws17{word-spacing:-13.760000pt;}
.ws15{word-spacing:-13.696000pt;}
.wsb{word-spacing:-13.504000pt;}
.ws11{word-spacing:-13.440003pt;}
.ws16{word-spacing:-13.440001pt;}
.ws1{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.312000pt;}
.ws1a{word-spacing:-13.277867pt;}
.wsc{word-spacing:-13.184000pt;}
.wsa{word-spacing:-13.120000pt;}
.ws0{word-spacing:-12.992000pt;}
.ws12{word-spacing:-12.991997pt;}
.ws19{word-spacing:-12.800000pt;}
.ws10{word-spacing:-11.997867pt;}
.ws6{word-spacing:-11.853867pt;}
.ws4{word-spacing:-11.747200pt;}
.wsf{word-spacing:-11.358933pt;}
.ws14{word-spacing:-11.270400pt;}
.ws1c{word-spacing:-11.164160pt;}
.ws3{word-spacing:-11.155200pt;}
.ws2{word-spacing:-11.065600pt;}
.ws1d{word-spacing:-10.946667pt;}
.ws1b{word-spacing:-10.845333pt;}
.ws7{word-spacing:-10.783360pt;}
.ws5{word-spacing:-10.730240pt;}
.ws13{word-spacing:-10.718933pt;}
.ws20{word-spacing:-10.637867pt;}
.ws18{word-spacing:-10.630400pt;}
.ws1e{word-spacing:-9.784533pt;}
.ws1f{word-spacing:-5.448533pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-10.240000pt;}
._4f{margin-left:-7.148587pt;}
._6{margin-left:-5.877333pt;}
._a{margin-left:-4.800000pt;}
._b{margin-left:-3.556693pt;}
._1{margin-left:-2.304000pt;}
._0{margin-left:-1.365333pt;}
._9{width:1.066667pt;}
._5{width:1.962667pt;}
._1f{width:3.178667pt;}
._21{width:4.224000pt;}
._f{width:5.952000pt;}
._10{width:7.168000pt;}
._1a{width:8.896000pt;}
._19{width:10.368000pt;}
._e{width:11.392000pt;}
._d{width:12.288000pt;}
._27{width:14.080000pt;}
._1e{width:15.168000pt;}
._11{width:16.320000pt;}
._12{width:17.280000pt;}
._1c{width:18.282667pt;}
._16{width:19.349333pt;}
._15{width:20.352000pt;}
._26{width:21.632000pt;}
._1d{width:23.146667pt;}
._18{width:24.064000pt;}
._17{width:25.088000pt;}
._2a{width:26.016000pt;}
._29{width:27.093333pt;}
._20{width:28.672000pt;}
._2b{width:30.101333pt;}
._2c{width:31.104000pt;}
._22{width:32.000000pt;}
._23{width:33.205333pt;}
._13{width:34.496000pt;}
._14{width:35.466667pt;}
._2d{width:36.522667pt;}
._37{width:37.418667pt;}
._36{width:38.698667pt;}
._3c{width:40.064000pt;}
._2e{width:41.536000pt;}
._2f{width:42.698667pt;}
._34{width:44.384000pt;}
._28{width:45.418667pt;}
._24{width:46.336000pt;}
._25{width:47.722667pt;}
._33{width:49.365333pt;}
._1b{width:50.496000pt;}
._3d{width:52.480000pt;}
._3e{width:53.696000pt;}
._41{width:54.613333pt;}
._3a{width:62.346667pt;}
._46{width:64.512000pt;}
._45{width:65.664000pt;}
._4c{width:75.584000pt;}
._3f{width:77.248000pt;}
._39{width:88.597333pt;}
._38{width:89.664000pt;}
._4a{width:91.136000pt;}
._4b{width:92.096000pt;}
._4d{width:104.832000pt;}
._4e{width:106.378667pt;}
._47{width:160.000000pt;}
._48{width:161.216000pt;}
._42{width:195.264000pt;}
._43{width:196.288000pt;}
._2{width:422.368000pt;}
._7{width:496.580907pt;}
._3{width:1151.626667pt;}
._44{width:1289.591467pt;}
._49{width:1291.511467pt;}
._32{width:1294.071467pt;}
._3b{width:1295.351467pt;}
._40{width:1297.271467pt;}
._35{width:1300.471467pt;}
._30{width:1319.031467pt;}
._c{width:1320.311467pt;}
._8{width:1325.431467pt;}
._31{width:2040.256000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:4.000000pt;}
.y1b3{bottom:4.794667pt;}
.y9b{bottom:4.800000pt;}
.y19{bottom:5.120000pt;}
.y3b{bottom:20.000000pt;}
.yb5{bottom:23.994667pt;}
.ya0{bottom:24.000000pt;}
.ybc{bottom:24.026667pt;}
.yb9{bottom:24.040000pt;}
.y18{bottom:24.800000pt;}
.ye{bottom:34.880000pt;}
.y3a{bottom:36.000000pt;}
.y17{bottom:40.800000pt;}
.yb4{bottom:43.194667pt;}
.y9f{bottom:43.200000pt;}
.ya7{bottom:43.226667pt;}
.yae{bottom:43.240000pt;}
.yd{bottom:50.880000pt;}
.y5{bottom:51.200000pt;}
.y39{bottom:51.994667pt;}
.y16{bottom:57.600000pt;}
.yb3{bottom:62.394667pt;}
.y9e{bottom:62.400000pt;}
.ya6{bottom:62.426667pt;}
.yad{bottom:62.440000pt;}
.yc{bottom:67.680000pt;}
.y38{bottom:67.994667pt;}
.y4{bottom:70.272000pt;}
.y15{bottom:76.800000pt;}
.yb2{bottom:81.594667pt;}
.y9d{bottom:81.600000pt;}
.ya5{bottom:81.626667pt;}
.yac{bottom:81.640000pt;}
.y37{bottom:84.794667pt;}
.yb{bottom:86.880000pt;}
.y1a{bottom:95.072000pt;}
.yd9{bottom:95.712000pt;}
.y14{bottom:96.000000pt;}
.yb1{bottom:100.794667pt;}
.ya9{bottom:100.800000pt;}
.ya4{bottom:100.826667pt;}
.yab{bottom:100.840000pt;}
.ye6{bottom:102.432000pt;}
.y36{bottom:103.994667pt;}
.ya{bottom:106.080000pt;}
.y177{bottom:107.552000pt;}
.yc1{bottom:108.192000pt;}
.ye7{bottom:108.832000pt;}
.y15d{bottom:108.992000pt;}
.yeb{bottom:109.312000pt;}
.y1d4{bottom:110.432000pt;}
.ycd{bottom:111.552000pt;}
.y1b4{bottom:111.712000pt;}
.y191{bottom:112.992000pt;}
.yce{bottom:113.632000pt;}
.y6b{bottom:114.432000pt;}
.y13{bottom:115.560000pt;}
.y149{bottom:117.632000pt;}
.yb0{bottom:119.994667pt;}
.ybf{bottom:120.000000pt;}
.ya3{bottom:120.026667pt;}
.yb8{bottom:120.040000pt;}
.y148{bottom:123.072000pt;}
.y35{bottom:123.194667pt;}
.y15c{bottom:124.032000pt;}
.y9{bottom:125.600000pt;}
.y150{bottom:126.752000pt;}
.yaf{bottom:128.032000pt;}
.yea{bottom:128.512000pt;}
.y1d3{bottom:129.632000pt;}
.ycc{bottom:130.752000pt;}
.y1b2{bottom:131.552000pt;}
.y190{bottom:132.192000pt;}
.y6a{bottom:133.626667pt;}
.y12{bottom:136.360000pt;}
.y99{bottom:136.826667pt;}
.ybe{bottom:139.200000pt;}
.ya2{bottom:139.226667pt;}
.y147{bottom:142.266667pt;}
.y34{bottom:142.394667pt;}
.y176{bottom:145.946667pt;}
.y8{bottom:146.400000pt;}
.yef{bottom:147.226667pt;}
.ye9{bottom:147.706667pt;}
.y1d2{bottom:148.826667pt;}
.ycb{bottom:149.946667pt;}
.y18f{bottom:151.386667pt;}
.y1b1{bottom:151.546667pt;}
.y69{bottom:152.826667pt;}
.y98{bottom:156.026667pt;}
.y11{bottom:157.160000pt;}
.y10{bottom:158.440000pt;}
.y146{bottom:161.466667pt;}
.y33{bottom:161.594667pt;}
.ye8{bottom:162.106667pt;}
.y16c{bottom:164.346667pt;}
.y175{bottom:165.146667pt;}
.yee{bottom:166.426667pt;}
.y1a0{bottom:166.906667pt;}
.y1d1{bottom:168.026667pt;}
.yca{bottom:169.146667pt;}
.y18e{bottom:170.586667pt;}
.y1b0{bottom:171.386667pt;}
.y68{bottom:172.026667pt;}
.y97{bottom:175.226667pt;}
.y145{bottom:180.666667pt;}
.y32{bottom:180.794667pt;}
.y15b{bottom:182.266667pt;}
.y16b{bottom:183.546667pt;}
.yc9{bottom:184.346667pt;}
.yed{bottom:185.626667pt;}
.y19f{bottom:186.106667pt;}
.y1d0{bottom:187.226667pt;}
.y18d{bottom:189.786667pt;}
.y67{bottom:191.226667pt;}
.y96{bottom:194.426667pt;}
.y174{bottom:198.746667pt;}
.y144{bottom:199.866667pt;}
.y31{bottom:199.994667pt;}
.yec{bottom:200.026667pt;}
.y16a{bottom:202.746667pt;}
.y14f{bottom:204.186667pt;}
.y19e{bottom:205.306667pt;}
.y1cf{bottom:206.426667pt;}
.y18c{bottom:208.986667pt;}
.y66{bottom:210.426667pt;}
.y1af{bottom:211.066667pt;}
.y95{bottom:213.626667pt;}
.y143{bottom:219.066667pt;}
.y30{bottom:219.234667pt;}
.y169{bottom:221.946667pt;}
.y19d{bottom:224.506667pt;}
.y1ce{bottom:225.626667pt;}
.y18b{bottom:228.186667pt;}
.y65{bottom:229.626667pt;}
.y1ae{bottom:230.906667pt;}
.y94{bottom:232.826667pt;}
.y142{bottom:238.266667pt;}
.y2f{bottom:238.434667pt;}
.y168{bottom:241.146667pt;}
.yc0{bottom:243.226667pt;}
.y19c{bottom:243.706667pt;}
.y1cd{bottom:244.826667pt;}
.y18a{bottom:247.386667pt;}
.y64{bottom:248.826667pt;}
.y1ad{bottom:250.746667pt;}
.y93{bottom:252.026667pt;}
.y141{bottom:257.466667pt;}
.y2e{bottom:257.634667pt;}
.y15a{bottom:259.706667pt;}
.y167{bottom:260.346667pt;}
.y14e{bottom:262.426667pt;}
.y19b{bottom:262.906667pt;}
.yaa{bottom:263.066667pt;}
.y1cc{bottom:264.026667pt;}
.y189{bottom:266.586667pt;}
.y63{bottom:268.026667pt;}
.y92{bottom:271.226667pt;}
.y1ac{bottom:275.546667pt;}
.y140{bottom:276.666667pt;}
.y2d{bottom:276.834667pt;}
.y166{bottom:279.546667pt;}
.yc8{bottom:280.986667pt;}
.y19a{bottom:282.106667pt;}
.y1cb{bottom:283.226667pt;}
.y188{bottom:285.786667pt;}
.y62{bottom:287.226667pt;}
.y91{bottom:290.426667pt;}
.y1ab{bottom:294.746667pt;}
.y2c{bottom:295.234667pt;}
.y13f{bottom:295.866667pt;}
.y199{bottom:296.506667pt;}
.y165{bottom:298.746667pt;}
.y1ca{bottom:302.466667pt;}
.y187{bottom:305.026667pt;}
.y61{bottom:306.466667pt;}
.y90{bottom:309.666667pt;}
.y2b{bottom:311.234667pt;}
.y164{bottom:313.186667pt;}
.y11b{bottom:313.346667pt;}
.y1aa{bottom:313.986667pt;}
.y13e{bottom:315.106667pt;}
.y159{bottom:317.986667pt;}
.y1c9{bottom:321.666667pt;}
.y186{bottom:324.226667pt;}
.y60{bottom:325.666667pt;}
.y2a{bottom:327.234667pt;}
.y8f{bottom:328.866667pt;}
.y11a{bottom:332.546667pt;}
.y1a9{bottom:333.186667pt;}
.y13d{bottom:334.306667pt;}
.y107{bottom:335.266667pt;}
.y14d{bottom:339.906667pt;}
.y1c8{bottom:340.866667pt;}
.y29{bottom:343.234667pt;}
.y185{bottom:343.426667pt;}
.y5f{bottom:344.866667pt;}
.y8e{bottom:348.066667pt;}
.y119{bottom:351.746667pt;}
.y1a8{bottom:352.386667pt;}
.y13c{bottom:353.506667pt;}
.y106{bottom:354.466667pt;}
.ybd{bottom:359.106667pt;}
.y28{bottom:359.234667pt;}
.y1c7{bottom:360.066667pt;}
.y184{bottom:362.626667pt;}
.y5e{bottom:364.066667pt;}
.y8d{bottom:367.266667pt;}
.y118{bottom:370.946667pt;}
.y1a7{bottom:371.586667pt;}
.y13b{bottom:372.706667pt;}
.y105{bottom:373.666667pt;}
.y27{bottom:375.234667pt;}
.ya8{bottom:378.946667pt;}
.y1c6{bottom:379.266667pt;}
.y183{bottom:381.826667pt;}
.y5d{bottom:383.266667pt;}
.y8c{bottom:386.466667pt;}
.y117{bottom:390.146667pt;}
.y1a6{bottom:390.786667pt;}
.y26{bottom:391.234667pt;}
.y13a{bottom:391.906667pt;}
.y104{bottom:392.866667pt;}
.y158{bottom:395.586667pt;}
.yc7{bottom:396.866667pt;}
.y1c5{bottom:398.466667pt;}
.ye5{bottom:399.906667pt;}
.y182{bottom:401.026667pt;}
.y5c{bottom:402.466667pt;}
.y8b{bottom:405.666667pt;}
.y25{bottom:407.234667pt;}
.y116{bottom:409.346667pt;}
.y1a5{bottom:409.986667pt;}
.y139{bottom:411.106667pt;}
.y103{bottom:412.066667pt;}
.y14c{bottom:417.346667pt;}
.y1c4{bottom:417.666667pt;}
.ye4{bottom:419.106667pt;}
.y181{bottom:420.226667pt;}
.y5b{bottom:421.666667pt;}
.y24{bottom:423.234667pt;}
.y8a{bottom:424.866667pt;}
.y115{bottom:428.546667pt;}
.y1a4{bottom:429.186667pt;}
.y138{bottom:430.306667pt;}
.y102{bottom:431.266667pt;}
.y1c3{bottom:432.066667pt;}
.ye3{bottom:438.306667pt;}
.y23{bottom:439.234667pt;}
.y180{bottom:439.426667pt;}
.y5a{bottom:440.866667pt;}
.y89{bottom:444.066667pt;}
.y114{bottom:447.746667pt;}
.y1a3{bottom:448.386667pt;}
.y137{bottom:449.506667pt;}
.y101{bottom:450.466667pt;}
.y22{bottom:455.261333pt;}
.ye2{bottom:457.506667pt;}
.y17f{bottom:458.626667pt;}
.y59{bottom:460.066667pt;}
.y88{bottom:463.266667pt;}
.y113{bottom:466.946667pt;}
.y1a2{bottom:467.586667pt;}
.y136{bottom:468.706667pt;}
.y100{bottom:469.666667pt;}
.y21{bottom:471.261333pt;}
.y157{bottom:473.026667pt;}
.yc6{bottom:474.306667pt;}
.ye1{bottom:476.706667pt;}
.y17e{bottom:477.826667pt;}
.y58{bottom:479.266667pt;}
.y1a1{bottom:481.986667pt;}
.y87{bottom:482.466667pt;}
.yff{bottom:485.026667pt;}
.y112{bottom:486.146667pt;}
.y20{bottom:487.261333pt;}
.y135{bottom:487.906667pt;}
.yd8{bottom:488.866667pt;}
.ya1{bottom:494.786667pt;}
.ye0{bottom:495.906667pt;}
.y17d{bottom:497.026667pt;}
.y198{bottom:497.666667pt;}
.y57{bottom:498.466667pt;}
.y86{bottom:501.666667pt;}
.y1f{bottom:503.261333pt;}
.y111{bottom:505.346667pt;}
.yfe{bottom:506.306667pt;}
.y134{bottom:507.106667pt;}
.yd7{bottom:508.066667pt;}
.ybb{bottom:513.346667pt;}
.ydf{bottom:515.106667pt;}
.y17c{bottom:516.226667pt;}
.y173{bottom:516.546667pt;}
.y197{bottom:516.866667pt;}
.y56{bottom:517.666667pt;}
.y1e{bottom:519.261333pt;}
.y85{bottom:520.866667pt;}
.y110{bottom:524.546667pt;}
.y133{bottom:526.306667pt;}
.yd6{bottom:527.266667pt;}
.yfd{bottom:527.426667pt;}
.yde{bottom:534.306667pt;}
.y1d{bottom:535.261333pt;}
.y17b{bottom:535.426667pt;}
.y172{bottom:535.746667pt;}
.y196{bottom:536.066667pt;}
.y55{bottom:536.893333pt;}
.y84{bottom:540.093333pt;}
.y10f{bottom:543.773333pt;}
.yd5{bottom:546.493333pt;}
.yfc{bottom:548.733333pt;}
.y156{bottom:550.493333pt;}
.y1c{bottom:552.381333pt;}
.ydd{bottom:553.533333pt;}
.y1b{bottom:553.661333pt;}
.y17a{bottom:554.653333pt;}
.y171{bottom:554.973333pt;}
.y195{bottom:555.293333pt;}
.y54{bottom:556.093333pt;}
.y132{bottom:557.693333pt;}
.y83{bottom:559.293333pt;}
.y10e{bottom:562.973333pt;}
.yd4{bottom:565.693333pt;}
.yfb{bottom:569.853333pt;}
.y14b{bottom:572.413333pt;}
.ydc{bottom:572.733333pt;}
.y179{bottom:573.853333pt;}
.y170{bottom:574.173333pt;}
.y194{bottom:574.493333pt;}
.y53{bottom:575.293333pt;}
.y131{bottom:576.893333pt;}
.y82{bottom:578.493333pt;}
.y10d{bottom:582.173333pt;}
.yd3{bottom:584.893333pt;}
.y178{bottom:588.253333pt;}
.yfa{bottom:591.133333pt;}
.ydb{bottom:591.933333pt;}
.y16f{bottom:593.373333pt;}
.y193{bottom:593.693333pt;}
.y52{bottom:594.493333pt;}
.y130{bottom:596.093333pt;}
.y81{bottom:597.693333pt;}
.y1ec{bottom:600.093333pt;}
.y10c{bottom:601.373333pt;}
.yd2{bottom:604.093333pt;}
.yda{bottom:606.333333pt;}
.y192{bottom:608.093333pt;}
.yc5{bottom:609.373333pt;}
.yf9{bottom:612.253333pt;}
.y16e{bottom:612.573333pt;}
.y51{bottom:613.693333pt;}
.y12f{bottom:615.293333pt;}
.y1eb{bottom:616.093333pt;}
.y80{bottom:616.893333pt;}
.y10b{bottom:620.573333pt;}
.yd1{bottom:623.293333pt;}
.y16d{bottom:626.973333pt;}
.y163{bottom:632.093333pt;}
.y50{bottom:632.893333pt;}
.yf8{bottom:633.533333pt;}
.y12e{bottom:634.493333pt;}
.y7f{bottom:636.093333pt;}
.y10a{bottom:639.773333pt;}
.yd0{bottom:642.493333pt;}
.y155{bottom:647.133333pt;}
.y1ea{bottom:648.093333pt;}
.yba{bottom:648.413333pt;}
.y9c{bottom:649.213333pt;}
.y14a{bottom:649.853333pt;}
.y162{bottom:651.293333pt;}
.y4f{bottom:652.093333pt;}
.y12d{bottom:653.693333pt;}
.yf7{bottom:654.653333pt;}
.y7e{bottom:655.293333pt;}
.ycf{bottom:656.893333pt;}
.y109{bottom:658.973333pt;}
.yf{bottom:663.773333pt;}
.y1e9{bottom:664.093333pt;}
.y161{bottom:670.493333pt;}
.y4e{bottom:671.293333pt;}
.y12c{bottom:672.893333pt;}
.y108{bottom:673.373333pt;}
.y7d{bottom:674.493333pt;}
.yf6{bottom:675.933333pt;}
.y1e8{bottom:680.093333pt;}
.y160{bottom:689.693333pt;}
.y4d{bottom:690.493333pt;}
.y12b{bottom:692.093333pt;}
.y7c{bottom:693.693333pt;}
.y1e7{bottom:696.093333pt;}
.yf5{bottom:697.053333pt;}
.y154{bottom:705.373333pt;}
.y1c2{bottom:706.813333pt;}
.y15f{bottom:708.893333pt;}
.y4c{bottom:709.693333pt;}
.y12a{bottom:711.293333pt;}
.y1e6{bottom:712.093333pt;}
.y7b{bottom:712.893333pt;}
.yf4{bottom:718.333333pt;}
.y15e{bottom:723.293333pt;}
.yc4{bottom:725.213333pt;}
.y1c1{bottom:726.013333pt;}
.y1e5{bottom:728.093333pt;}
.y4b{bottom:728.893333pt;}
.y129{bottom:730.493333pt;}
.y7a{bottom:732.093333pt;}
.yf3{bottom:739.453333pt;}
.y1e4{bottom:744.093333pt;}
.y1c0{bottom:745.213333pt;}
.y9a{bottom:745.853333pt;}
.y4a{bottom:748.093333pt;}
.y128{bottom:749.693333pt;}
.y79{bottom:751.293333pt;}
.y1e3{bottom:760.093333pt;}
.yf2{bottom:760.733333pt;}
.yb7{bottom:764.413333pt;}
.y49{bottom:767.293333pt;}
.y127{bottom:768.893333pt;}
.y78{bottom:770.493333pt;}
.y1e2{bottom:776.133333pt;}
.yf1{bottom:781.893333pt;}
.y153{bottom:782.853333pt;}
.y1bf{bottom:783.653333pt;}
.y48{bottom:786.533333pt;}
.y126{bottom:788.133333pt;}
.y77{bottom:789.733333pt;}
.y1e1{bottom:792.133333pt;}
.y1be{bottom:802.853333pt;}
.yf0{bottom:803.173333pt;}
.y47{bottom:805.733333pt;}
.y125{bottom:807.333333pt;}
.y1e0{bottom:808.133333pt;}
.y76{bottom:808.933333pt;}
.y1bd{bottom:822.053333pt;}
.y1df{bottom:824.133333pt;}
.y46{bottom:824.933333pt;}
.y124{bottom:826.533333pt;}
.y75{bottom:828.133333pt;}
.y7{bottom:837.253333pt;}
.y1de{bottom:840.133333pt;}
.yc3{bottom:841.253333pt;}
.y45{bottom:844.133333pt;}
.y123{bottom:845.733333pt;}
.y74{bottom:847.333333pt;}
.y1dd{bottom:856.133333pt;}
.y1bc{bottom:856.453333pt;}
.y152{bottom:860.453333pt;}
.y44{bottom:863.333333pt;}
.y122{bottom:864.933333pt;}
.y73{bottom:866.533333pt;}
.y1dc{bottom:872.133333pt;}
.y1bb{bottom:876.293333pt;}
.y43{bottom:882.533333pt;}
.y121{bottom:884.133333pt;}
.y72{bottom:885.733333pt;}
.y1db{bottom:888.133333pt;}
.y1ba{bottom:896.133333pt;}
.yb6{bottom:899.493333pt;}
.y42{bottom:901.733333pt;}
.y120{bottom:903.333333pt;}
.y1da{bottom:904.133333pt;}
.y71{bottom:904.933333pt;}
.y1b9{bottom:915.973333pt;}
.y1d9{bottom:920.133333pt;}
.y41{bottom:920.933333pt;}
.y11f{bottom:922.533333pt;}
.y70{bottom:924.133333pt;}
.y1b8{bottom:935.813333pt;}
.y1d8{bottom:936.133333pt;}
.y40{bottom:940.133333pt;}
.y11e{bottom:941.733333pt;}
.y6f{bottom:943.333333pt;}
.y1d7{bottom:952.133333pt;}
.y1b7{bottom:955.653333pt;}
.y151{bottom:957.093333pt;}
.y3f{bottom:959.333333pt;}
.y11d{bottom:960.933333pt;}
.y6e{bottom:962.533333pt;}
.y1d6{bottom:968.133333pt;}
.y1b6{bottom:975.653333pt;}
.yc2{bottom:976.293333pt;}
.y3e{bottom:978.853333pt;}
.y11c{bottom:980.133333pt;}
.y6d{bottom:981.733333pt;}
.y1d5{bottom:984.133333pt;}
.y1b5{bottom:995.493333pt;}
.y3d{bottom:999.653333pt;}
.y6c{bottom:1000.933333pt;}
.y6{bottom:1003.333333pt;}
.y3{bottom:1020.160000pt;}
.y2{bottom:1039.360000pt;}
.y1{bottom:1060.960000pt;}
.hc{height:19.200000pt;}
.h16{height:19.232000pt;}
.h17{height:38.400000pt;}
.h14{height:38.432000pt;}
.h5{height:44.886400pt;}
.ha{height:45.895680pt;}
.hb{height:45.948800pt;}
.h4{height:54.080000pt;}
.h3{height:55.296000pt;}
.h2{height:55.360000pt;}
.h19{height:57.600000pt;}
.h1a{height:57.632000pt;}
.h7{height:59.788800pt;}
.h15{height:76.800000pt;}
.h18{height:76.832000pt;}
.hd{height:96.000000pt;}
.hf{height:115.200000pt;}
.h10{height:115.232000pt;}
.h11{height:134.400000pt;}
.h12{height:134.426667pt;}
.h13{height:153.600000pt;}
.he{height:153.626667pt;}
.h6{height:162.080000pt;}
.h8{height:172.826667pt;}
.h9{height:568.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:56.832000pt;}
.w11{width:58.080000pt;}
.w5{width:115.552000pt;}
.w8{width:119.680000pt;}
.wc{width:121.792000pt;}
.w7{width:129.952000pt;}
.w6{width:131.872000pt;}
.w9{width:141.626667pt;}
.wf{width:159.706667pt;}
.wd{width:178.426667pt;}
.we{width:179.386667pt;}
.w3{width:179.746667pt;}
.w10{width:239.546667pt;}
.wa{width:321.346667pt;}
.w4{width:472.546667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:0.960000pt;}
.x4{left:7.200000pt;}
.x1{left:75.519988pt;}
.x22{left:94.431988pt;}
.xa{left:99.551988pt;}
.xb{left:123.551988pt;}
.x2{left:169.146667pt;}
.x5{left:192.506667pt;}
.x9{left:195.546655pt;}
.x18{left:198.746667pt;}
.x14{left:207.866667pt;}
.x1f{left:247.746667pt;}
.x3{left:255.266667pt;}
.x6{left:325.026667pt;}
.x19{left:377.826667pt;}
.x12{left:396.866655pt;}
.x7{left:455.613333pt;}
.x20{left:488.093333pt;}
.x16{left:529.213333pt;}
.x1a{left:557.853333pt;}
.x10{left:569.373322pt;}
.x21{left:574.813322pt;}
.x8{left:575.933333pt;}
.xf{left:581.053322pt;}
.xe{left:584.133322pt;}
.x1e{left:588.133322pt;}
.xc{left:597.093322pt;}
.xd{left:602.853322pt;}
.x1c{left:610.853322pt;}
.x17{left:622.533322pt;}
.x13{left:630.213322pt;}
.x1b{left:634.053322pt;}
.x11{left:677.253322pt;}
.x1d{left:697.893322pt;}
}




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