
    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_54012706415670649203de88.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_9455f74d435b164d9ae07932.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_d40edf92f5a53db4c60bd87a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_685659d3fbce1dc83775f1c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.123047;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_c4ac38e71995dc187b0ce8a7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_95b293913a886ac514bae17d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.088867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-82.800000px;}
.v2{vertical-align:-55.440000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:34.140000px;}
.v5{vertical-align:68.400000px;}
.ls4{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.262200px;}
.lse{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.152400px;}
.ls8{letter-spacing:-0.109200px;}
.lsa{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.648000px;}
.lsc{letter-spacing:0.720000px;}
.ls1{letter-spacing:973.020000px;}
.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;}
}
.ws12{word-spacing:-48.600000px;}
.ws3{word-spacing:-27.000000px;}
.ws2{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.928000px;}
.ws11{word-spacing:-17.784000px;}
.ws10{word-spacing:-17.712000px;}
.ws4{word-spacing:-16.560000px;}
.wse{word-spacing:-16.450800px;}
.wsd{word-spacing:-16.407600px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:155.041920px;}
.ws8{word-spacing:210.029280px;}
.ws9{word-spacing:307.761120px;}
.wsa{word-spacing:351.588960px;}
.wsb{word-spacing:368.328960px;}
.wsc{word-spacing:375.367680px;}
.ws5{word-spacing:491.980320px;}
.ws6{word-spacing:524.066880px;}
._c{margin-left:-5.040000px;}
._b{margin-left:-4.032000px;}
._2{margin-left:-2.036160px;}
._1{margin-left:-1.013040px;}
._5{width:1.164000px;}
._6{width:2.412000px;}
._7{width:4.248000px;}
._8{width:5.388000px;}
._d{width:7.128000px;}
._e{width:8.136000px;}
._f{width:9.276000px;}
._10{width:10.445040px;}
._9{width:11.664000px;}
._a{width:12.764160px;}
._3{width:13.896000px;}
._4{width:15.264000px;}
._11{width:16.848000px;}
._1c{width:19.028160px;}
._16{width:20.602080px;}
._14{width:21.816000px;}
._15{width:23.256000px;}
._12{width:24.408000px;}
._23{width:26.100000px;}
._24{width:27.864000px;}
._27{width:29.095680px;}
._17{width:30.320160px;}
._18{width:32.079360px;}
._2b{width:33.322560px;}
._32{width:37.224000px;}
._13{width:38.232000px;}
._1f{width:39.744000px;}
._28{width:43.344000px;}
._29{width:44.724000px;}
._2c{width:49.368000px;}
._2d{width:50.544000px;}
._25{width:53.256000px;}
._26{width:54.344160px;}
._2a{width:56.151840px;}
._2e{width:72.144000px;}
._2f{width:73.332000px;}
._30{width:76.824000px;}
._31{width:78.060000px;}
._1a{width:142.680000px;}
._1d{width:152.826720px;}
._19{width:182.651520px;}
._21{width:307.868160px;}
._22{width:413.083680px;}
._1b{width:441.997920px;}
._20{width:846.300000px;}
._0{width:1314.168000px;}
._1e{width:1619.308320px;}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:66.240000px;}
.fsc{font-size:66.384000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fsa{font-size:108.000000px;}
.fsd{font-size:108.144000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:5.220000px;}
.y117{bottom:6.300000px;}
.y18d{bottom:6.345000px;}
.y11a{bottom:6.480000px;}
.y128{bottom:6.510000px;}
.y175{bottom:12.960000px;}
.y1ad{bottom:17.640000px;}
.y13a{bottom:28.074000px;}
.y137{bottom:28.080000px;}
.y171{bottom:28.110000px;}
.y1ea{bottom:28.125000px;}
.y13c{bottom:28.260000px;}
.y15c{bottom:28.296000px;}
.y189{bottom:28.980000px;}
.y17d{bottom:29.025000px;}
.y16a{bottom:31.140000px;}
.yd3{bottom:39.090000px;}
.y174{bottom:41.400000px;}
.yad{bottom:43.920000px;}
.y25{bottom:45.000000px;}
.y50{bottom:46.440000px;}
.yd5{bottom:47.670000px;}
.y15e{bottom:49.860000px;}
.y170{bottom:49.890000px;}
.y139{bottom:50.034000px;}
.y146{bottom:50.040000px;}
.y17a{bottom:50.760000px;}
.y169{bottom:52.920000px;}
.yd2{bottom:56.190000px;}
.y24{bottom:60.120000px;}
.yc9{bottom:60.375000px;}
.yf1{bottom:60.765000px;}
.y4c{bottom:64.260000px;}
.yd4{bottom:64.770000px;}
.y5{bottom:66.525004px;}
.y4f{bottom:67.140000px;}
.yb3{bottom:67.680000px;}
.y115{bottom:68.475000px;}
.ye6{bottom:71.640000px;}
.y159{bottom:71.820000px;}
.y145{bottom:71.865000px;}
.y179{bottom:72.540000px;}
.yd1{bottom:73.290000px;}
.y10d{bottom:73.800000px;}
.yef{bottom:74.055000px;}
.y168{bottom:74.880000px;}
.yf5{bottom:77.010000px;}
.yb1{bottom:77.910000px;}
.yf4{bottom:85.575000px;}
.yb0{bottom:86.475000px;}
.y4b{bottom:88.200000px;}
.y13b{bottom:90.540000px;}
.yee{bottom:91.155000px;}
.y1f0{bottom:92.340000px;}
.y158{bottom:93.600000px;}
.y178{bottom:94.320000px;}
.y1bd{bottom:94.860000px;}
.y163{bottom:95.085000px;}
.y93{bottom:95.400000px;}
.yec{bottom:95.835000px;}
.y186{bottom:96.300000px;}
.y167{bottom:96.660000px;}
.y4{bottom:97.125005px;}
.y112{bottom:101.880000px;}
.y1ab{bottom:104.040000px;}
.yb2{bottom:105.270000px;}
.yc7{bottom:106.020000px;}
.y15b{bottom:107.640000px;}
.ye4{bottom:107.820000px;}
.y4a{bottom:110.700000px;}
.y71{bottom:111.780000px;}
.y1e0{bottom:112.140000px;}
.yd0{bottom:112.395000px;}
.yeb{bottom:112.935000px;}
.yab{bottom:113.220000px;}
.y98{bottom:117.000000px;}
.y162{bottom:117.045000px;}
.y1bc{bottom:117.360000px;}
.yae{bottom:117.930000px;}
.ye8{bottom:119.415000px;}
.yf0{bottom:122.040000px;}
.y49{bottom:123.300000px;}
.y10b{bottom:123.480000px;}
.yed{bottom:126.180000px;}
.y92{bottom:126.540000px;}
.y114{bottom:126.750000px;}
.y185{bottom:127.260000px;}
.ycf{bottom:129.495000px;}
.ye3{bottom:132.120000px;}
.yf3{bottom:132.300000px;}
.y138{bottom:135.036000px;}
.ye7{bottom:136.545000px;}
.yc6{bottom:137.196000px;}
.y20{bottom:139.264499px;}
.y1bb{bottom:140.076000px;}
.y70{bottom:142.776000px;}
.yea{bottom:143.025000px;}
.y1df{bottom:143.136000px;}
.y113{bottom:143.850000px;}
.yaa{bottom:144.396000px;}
.yaf{bottom:146.130000px;}
.yce{bottom:146.625000px;}
.y97{bottom:147.996000px;}
.yf2{bottom:149.430000px;}
.y15a{bottom:152.130000px;}
.y10a{bottom:154.470000px;}
.y48{bottom:156.270000px;}
.y91{bottom:157.530000px;}
.y184{bottom:158.430000px;}
.ye9{bottom:160.125000px;}
.y1ba{bottom:162.570000px;}
.y1aa{bottom:165.990000px;}
.yc5{bottom:168.150000px;}
.y6f{bottom:173.910000px;}
.y1de{bottom:174.270000px;}
.ya9{bottom:175.350000px;}
.y96{bottom:179.130000px;}
.y1b9{bottom:185.070000px;}
.y1ef{bottom:185.430000px;}
.y109{bottom:185.610000px;}
.y47{bottom:187.230000px;}
.y90{bottom:188.670000px;}
.y183{bottom:189.390000px;}
.ycd{bottom:191.595000px;}
.y111{bottom:193.605000px;}
.y157{bottom:196.410000px;}
.y17{bottom:196.933500px;}
.y1a9{bottom:197.130000px;}
.yc4{bottom:199.290000px;}
.ycc{bottom:200.160000px;}
.y136{bottom:201.270000px;}
.y6e{bottom:204.870000px;}
.y1dd{bottom:205.230000px;}
.ya8{bottom:206.490000px;}
.y1b8{bottom:207.750000px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y95{bottom:210.090000px;}
.y110{bottom:210.750000px;}
.y108{bottom:216.570000px;}
.y46{bottom:218.370000px;}
.y8f{bottom:219.630000px;}
.y182{bottom:220.530000px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y1a8{bottom:228.090000px;}
.yc3{bottom:230.250000px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y6d{bottom:236.010000px;}
.y1dc{bottom:236.370000px;}
.ya7{bottom:237.450000px;}
.y94{bottom:238.710000px;}
.y1ee{bottom:247.530000px;}
.y107{bottom:247.710000px;}
.y181{bottom:249.150000px;}
.y45{bottom:249.330000px;}
.y8e{bottom:250.770000px;}
.y1b7{bottom:252.930000px;}
.y10f{bottom:257.145000px;}
.y1a7{bottom:259.230000px;}
.ycb{bottom:259.590000px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y135{bottom:259.950000px;}
.yc2{bottom:261.390000px;}
.y180{bottom:263.910000px;}
.y6c{bottom:266.970000px;}
.y1db{bottom:267.330000px;}
.ya6{bottom:268.410000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y1b6{bottom:275.430000px;}
.yca{bottom:276.690000px;}
.y106{bottom:278.670000px;}
.y44{bottom:280.470000px;}
.y10e{bottom:280.905000px;}
.y8d{bottom:281.730000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y134{bottom:289.650000px;}
.y1a6{bottom:290.190000px;}
.yc1{bottom:292.350000px;}
.y1b5{bottom:297.930000px;}
.y6b{bottom:298.110000px;}
.y1da{bottom:298.470000px;}
.ya5{bottom:299.550000px;}
.y156{bottom:306.390000px;}
.y17f{bottom:308.190000px;}
.y1ed{bottom:309.630000px;}
.y105{bottom:309.810000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y43{bottom:311.430000px;}
.y8c{bottom:312.870000px;}
.y133{bottom:319.350000px;}
.y1b4{bottom:320.610000px;}
.y1a5{bottom:321.330000px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.yc0{bottom:323.490000px;}
.y6a{bottom:329.070000px;}
.y1d9{bottom:329.430000px;}
.ya4{bottom:330.510000px;}
.y1ec{bottom:338.250000px;}
.y104{bottom:340.770000px;}
.y42{bottom:342.570000px;}
.y1b3{bottom:343.110000px;}
.y8b{bottom:343.830000px;}
.ye{bottom:348.133500px;}
.y132{bottom:350.490000px;}
.y155{bottom:350.670000px;}
.y1a4{bottom:352.290000px;}
.y17e{bottom:352.650000px;}
.y1eb{bottom:353.010000px;}
.ybf{bottom:354.450000px;}
.y69{bottom:360.210000px;}
.y1d8{bottom:360.570000px;}
.ya3{bottom:361.650000px;}
.ye2{bottom:362.550000px;}
.y1b2{bottom:365.610000px;}
.y103{bottom:371.910000px;}
.y41{bottom:373.530000px;}
.y8a{bottom:374.970000px;}
.y17c{bottom:375.150000px;}
.y1e9{bottom:375.690000px;}
.y131{bottom:381.450000px;}
.y1a3{bottom:383.430000px;}
.ybe{bottom:385.590000px;}
.yd{bottom:386.785499px;}
.y1b1{bottom:388.335000px;}
.y68{bottom:391.215000px;}
.y1d7{bottom:391.575000px;}
.ya2{bottom:392.655000px;}
.ye1{bottom:393.555000px;}
.y17b{bottom:397.875000px;}
.y102{bottom:402.915000px;}
.y40{bottom:404.535000px;}
.y89{bottom:405.975000px;}
.yc{bottom:408.044999px;}
.y154{bottom:409.395000px;}
.y1b0{bottom:410.835000px;}
.y130{bottom:412.635000px;}
.y1a2{bottom:414.435000px;}
.ybd{bottom:416.595000px;}
.y1e8{bottom:420.015000px;}
.y177{bottom:420.375000px;}
.y67{bottom:422.355000px;}
.y1d6{bottom:422.715000px;}
.ya1{bottom:423.795000px;}
.ye0{bottom:424.695000px;}
.y1af{bottom:433.515000px;}
.y101{bottom:434.055000px;}
.y3f{bottom:435.675000px;}
.y88{bottom:437.115000px;}
.y153{bottom:440.535000px;}
.y1a1{bottom:443.055000px;}
.y12f{bottom:443.595000px;}
.ybc{bottom:447.555000px;}
.y66{bottom:453.315000px;}
.y1d5{bottom:453.675000px;}
.ya0{bottom:454.755000px;}
.ydf{bottom:455.655000px;}
.y1ac{bottom:456.015000px;}
.y1a0{bottom:457.815000px;}
.y1e7{bottom:464.475000px;}
.y176{bottom:464.835000px;}
.y100{bottom:465.015000px;}
.y3e{bottom:466.635000px;}
.y87{bottom:468.075000px;}
.y152{bottom:471.495000px;}
.y12e{bottom:474.735000px;}
.y1ae{bottom:478.515000px;}
.ybb{bottom:478.695000px;}
.y19f{bottom:480.495000px;}
.y65{bottom:484.455000px;}
.y1d4{bottom:484.815000px;}
.y9f{bottom:485.895000px;}
.yde{bottom:486.795000px;}
.yff{bottom:495.975000px;}
.y3d{bottom:497.775000px;}
.y86{bottom:499.215000px;}
.y151{bottom:502.635000px;}
.y19e{bottom:502.995000px;}
.y12d{bottom:504.435000px;}
.y1e6{bottom:508.935000px;}
.yba{bottom:509.655000px;}
.y64{bottom:515.415000px;}
.y1d3{bottom:515.775000px;}
.y9e{bottom:516.855000px;}
.ydd{bottom:517.755000px;}
.yb{bottom:520.864502px;}
.y19d{bottom:525.495000px;}
.yfe{bottom:527.115000px;}
.y3c{bottom:528.735000px;}
.y85{bottom:530.175000px;}
.y173{bottom:531.075000px;}
.y12c{bottom:531.795000px;}
.y150{bottom:533.595000px;}
.ya{bottom:538.864499px;}
.yb9{bottom:540.795000px;}
.y63{bottom:546.555000px;}
.y1d2{bottom:546.735000px;}
.y9d{bottom:547.995000px;}
.y19c{bottom:548.175000px;}
.ydc{bottom:548.895000px;}
.y1e5{bottom:553.215000px;}
.y9{bottom:556.864499px;}
.yfd{bottom:558.075000px;}
.y3b{bottom:559.875000px;}
.y84{bottom:561.315000px;}
.y14f{bottom:564.735000px;}
.y12b{bottom:569.055000px;}
.y19b{bottom:570.675000px;}
.yb8{bottom:571.755000px;}
.y62{bottom:577.515000px;}
.y1d1{bottom:577.875000px;}
.y9c{bottom:578.955000px;}
.ydb{bottom:579.855000px;}
.y172{bottom:588.675000px;}
.yfc{bottom:589.215000px;}
.y3a{bottom:590.835000px;}
.y12a{bottom:591.735000px;}
.y83{bottom:592.275000px;}
.y19a{bottom:593.355000px;}
.y14e{bottom:595.695000px;}
.y1e4{bottom:597.675000px;}
.yb7{bottom:602.895000px;}
.y61{bottom:608.655000px;}
.y1d0{bottom:608.835000px;}
.y9b{bottom:610.095000px;}
.yda{bottom:610.995000px;}
.y129{bottom:614.235000px;}
.y199{bottom:615.855000px;}
.yfb{bottom:620.175000px;}
.y39{bottom:621.975000px;}
.y82{bottom:623.415000px;}
.y14d{bottom:626.835000px;}
.y16f{bottom:633.135000px;}
.yb6{bottom:633.855000px;}
.y127{bottom:636.735000px;}
.y198{bottom:638.355000px;}
.y9a{bottom:638.715000px;}
.y60{bottom:639.615000px;}
.y1cf{bottom:640.005000px;}
.yd9{bottom:641.985000px;}
.y38{bottom:642.705000px;}
.y8{bottom:645.510000px;}
.yfa{bottom:651.345000px;}
.yac{bottom:652.860000px;}
.y81{bottom:654.405000px;}
.y14c{bottom:657.825000px;}
.y126{bottom:659.445000px;}
.y197{bottom:661.065000px;}
.yb5{bottom:662.505000px;}
.y99{bottom:663.045000px;}
.y37{bottom:663.405000px;}
.y1e3{bottom:664.665000px;}
.y7{bottom:666.771000px;}
.y5f{bottom:670.785000px;}
.y1ce{bottom:670.965000px;}
.yd8{bottom:673.125000px;}
.yc8{bottom:676.620000px;}
.y125{bottom:681.945000px;}
.yf9{bottom:682.305000px;}
.y196{bottom:683.565000px;}
.y36{bottom:684.105000px;}
.y80{bottom:685.545000px;}
.yb4{bottom:686.985000px;}
.y14b{bottom:688.965000px;}
.y16e{bottom:699.225000px;}
.y5e{bottom:701.745000px;}
.y1cd{bottom:702.105000px;}
.yd7{bottom:704.085000px;}
.y124{bottom:704.625000px;}
.y35{bottom:704.805000px;}
.y195{bottom:706.245000px;}
.y1e2{bottom:708.945000px;}
.yf8{bottom:713.445000px;}
.y7f{bottom:716.505000px;}
.y14a{bottom:719.925000px;}
.ye5{bottom:720.900000px;}
.y34{bottom:725.505000px;}
.y6{bottom:726.298500px;}
.y123{bottom:727.125000px;}
.y194{bottom:728.745000px;}
.y1e1{bottom:731.625000px;}
.yd6{bottom:732.705000px;}
.y5d{bottom:732.885000px;}
.y1cc{bottom:733.065000px;}
.y166{bottom:743.685000px;}
.yf7{bottom:744.405000px;}
.y33{bottom:746.205000px;}
.y7e{bottom:747.645000px;}
.y122{bottom:749.625000px;}
.y149{bottom:751.065000px;}
.y193{bottom:751.245000px;}
.y3{bottom:752.599495px;}
.y10c{bottom:761.220000px;}
.y5c{bottom:763.845000px;}
.y1cb{bottom:764.205000px;}
.y16d{bottom:766.185000px;}
.y32{bottom:766.905000px;}
.y121{bottom:772.305000px;}
.yf6{bottom:773.025000px;}
.y192{bottom:773.925000px;}
.y7d{bottom:778.605000px;}
.y148{bottom:782.025000px;}
.y31{bottom:787.605000px;}
.y16c{bottom:788.865000px;}
.y120{bottom:794.805000px;}
.y5b{bottom:794.985000px;}
.y1ca{bottom:795.165000px;}
.y191{bottom:796.425000px;}
.y30{bottom:808.305000px;}
.y7c{bottom:809.745000px;}
.y147{bottom:810.645000px;}
.y16b{bottom:811.365000px;}
.y11f{bottom:817.305000px;}
.y190{bottom:818.925000px;}
.y144{bottom:825.405000px;}
.y5a{bottom:825.945000px;}
.y1c9{bottom:826.305000px;}
.y2f{bottom:829.005000px;}
.y165{bottom:834.045000px;}
.y11e{bottom:839.985000px;}
.y7b{bottom:840.705000px;}
.y18f{bottom:841.605000px;}
.y2e{bottom:849.705000px;}
.y1c8{bottom:854.925000px;}
.y161{bottom:856.545000px;}
.y59{bottom:857.085000px;}
.y11d{bottom:862.485000px;}
.y18e{bottom:864.105000px;}
.y2d{bottom:870.405000px;}
.y7a{bottom:871.845000px;}
.y1c7{bottom:872.565000px;}
.y2{bottom:879.369000px;}
.y11c{bottom:885.165000px;}
.y18c{bottom:886.785000px;}
.y58{bottom:888.045000px;}
.y1c6{bottom:888.585000px;}
.y2c{bottom:891.105000px;}
.y164{bottom:901.050000px;}
.y79{bottom:902.850000px;}
.y11b{bottom:907.710000px;}
.y18b{bottom:909.330000px;}
.y1c5{bottom:911.310000px;}
.y2b{bottom:911.850000px;}
.y143{bottom:913.470000px;}
.y57{bottom:919.230000px;}
.y119{bottom:930.210000px;}
.y188{bottom:931.830000px;}
.y2a{bottom:932.550000px;}
.y1c4{bottom:933.810000px;}
.y78{bottom:933.990000px;}
.y160{bottom:945.330000px;}
.y56{bottom:950.190000px;}
.y118{bottom:952.890000px;}
.y29{bottom:953.250000px;}
.y18a{bottom:954.510000px;}
.y1c3{bottom:956.310000px;}
.y142{bottom:957.930000px;}
.y77{bottom:964.950000px;}
.y1{bottom:966.726000px;}
.y28{bottom:973.950000px;}
.y116{bottom:975.390000px;}
.y1c2{bottom:978.990000px;}
.y141{bottom:980.430000px;}
.y55{bottom:981.330000px;}
.y15f{bottom:989.790000px;}
.y187{bottom:991.410000px;}
.y76{bottom:995.910000px;}
.y1c1{bottom:1001.490000px;}
.y140{bottom:1002.930000px;}
.y54{bottom:1012.290000px;}
.y27{bottom:1015.350000px;}
.y1c0{bottom:1023.990000px;}
.y75{bottom:1027.050000px;}
.y53{bottom:1043.430000px;}
.y1bf{bottom:1046.670000px;}
.y13f{bottom:1047.390000px;}
.y26{bottom:1055.310000px;}
.y15d{bottom:1056.030000px;}
.y74{bottom:1058.010000px;}
.y1be{bottom:1069.170000px;}
.y52{bottom:1074.390000px;}
.y73{bottom:1089.150000px;}
.y13e{bottom:1091.850000px;}
.y51{bottom:1105.350000px;}
.y13d{bottom:1114.350000px;}
.y23{bottom:1117.590000px;}
.y72{bottom:1120.110000px;}
.y22{bottom:1140.630000px;}
.y4e{bottom:1142.250000px;}
.y21{bottom:1161.360000px;}
.hf{height:16.380000px;}
.h21{height:21.780000px;}
.h24{height:21.816000px;}
.h23{height:21.960000px;}
.h25{height:21.996000px;}
.h7{height:32.130000px;}
.hd{height:38.158594px;}
.h26{height:43.560000px;}
.h2f{height:43.596000px;}
.h28{height:43.740000px;}
.h2b{height:43.776000px;}
.h35{height:44.460000px;}
.h34{height:44.496000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h10{height:48.616875px;}
.h11{height:52.998047px;}
.h2{height:55.080000px;}
.h32{height:56.880000px;}
.he{height:58.651172px;}
.h12{height:64.546875px;}
.h29{height:64.978594px;}
.h15{height:65.010937px;}
.h1b{height:65.152266px;}
.h2d{height:65.340000px;}
.h31{height:65.376000px;}
.h27{height:65.520000px;}
.h22{height:66.757500px;}
.hc{height:70.628906px;}
.h9{height:70.664062px;}
.hb{height:72.562500px;}
.h5{height:78.030000px;}
.h2a{height:87.336000px;}
.ha{height:96.508125px;}
.h16{height:99.150937px;}
.h1a{height:99.270938px;}
.h19{height:99.412266px;}
.h14{height:105.996094px;}
.h1d{height:106.137422px;}
.h2c{height:109.080000px;}
.h33{height:109.800000px;}
.h30{height:112.140000px;}
.h4{height:119.055004px;}
.h2e{height:132.516000px;}
.h18{height:133.410937px;}
.h1e{height:133.672266px;}
.h1f{height:226.260000px;}
.h1c{height:229.860000px;}
.h13{height:235.800000px;}
.h17{height:321.480000px;}
.h20{height:344.700000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.h8{height:1263.060000px;}
.w1b{width:63.576000px;}
.wb{width:74.196000px;}
.w17{width:74.340000px;}
.w19{width:75.276000px;}
.wc{width:85.140000px;}
.wd{width:106.236000px;}
.w11{width:106.380000px;}
.w12{width:116.856000px;}
.wf{width:117.000000px;}
.we{width:117.036000px;}
.w1a{width:123.300000px;}
.w14{width:129.996000px;}
.w15{width:135.036000px;}
.wa{width:157.890000px;}
.w1d{width:159.150000px;}
.w1c{width:159.510000px;}
.w7{width:162.930000px;}
.w8{width:178.590000px;}
.w18{width:185.250000px;}
.w13{width:191.010000px;}
.w10{width:222.870000px;}
.w9{width:223.770000px;}
.w16{width:458.175000px;}
.w2{width:637.794021px;}
.w5{width:813.780000px;}
.w6{width:813.960000px;}
.w0{width:892.912500px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3d{left:8.145000px;}
.x4b{left:9.396000px;}
.x4e{left:11.340000px;}
.x63{left:12.420000px;}
.x39{left:13.680000px;}
.x59{left:14.940000px;}
.x66{left:16.200000px;}
.x51{left:17.280000px;}
.x73{left:18.360000px;}
.x54{left:19.440000px;}
.x56{left:21.060000px;}
.x65{left:22.680000px;}
.x55{left:23.760000px;}
.x57{left:25.380000px;}
.x70{left:26.460000px;}
.x5b{left:27.720000px;}
.x5a{left:29.160000px;}
.x4c{left:30.960000px;}
.x5c{left:32.400000px;}
.x6c{left:33.480000px;}
.x58{left:34.920000px;}
.x5f{left:36.000000px;}
.x37{left:38.556000px;}
.xd{left:39.600000px;}
.x3b{left:40.890000px;}
.xb{left:41.940000px;}
.x43{left:43.416000px;}
.x6b{left:45.216000px;}
.x6d{left:47.016000px;}
.x64{left:48.105000px;}
.x44{left:50.796000px;}
.x3e{left:52.956000px;}
.x49{left:55.296000px;}
.x42{left:57.096000px;}
.x45{left:59.076000px;}
.x48{left:62.676000px;}
.x47{left:66.270000px;}
.x62{left:73.485000px;}
.x46{left:74.745000px;}
.x41{left:76.185000px;}
.x5{left:84.959987px;}
.x3f{left:86.445000px;}
.x53{left:89.325000px;}
.x1{left:102.045000px;}
.x4a{left:103.530000px;}
.x2{left:106.297500px;}
.x40{left:107.670000px;}
.x21{left:114.875987px;}
.x10{left:116.567987px;}
.x17{left:120.167987px;}
.x33{left:122.363987px;}
.x9{left:127.475987px;}
.x8{left:129.635987px;}
.x74{left:138.995987px;}
.x6e{left:148.536000px;}
.x23{left:155.594987px;}
.x11{left:158.429987px;}
.x2c{left:160.664987px;}
.xc{left:163.650000px;}
.x22{left:178.094987px;}
.x31{left:187.169987px;}
.x7{left:189.749987px;}
.x2d{left:199.409987px;}
.x4{left:203.484001px;}
.x67{left:207.030000px;}
.x34{left:208.514987px;}
.x18{left:210.164987px;}
.x35{left:214.994987px;}
.xe{left:217.289987px;}
.x1a{left:223.664987px;}
.x1e{left:231.044987px;}
.x1c{left:232.124987px;}
.x4d{left:244.290000px;}
.x38{left:247.890000px;}
.x1d{left:251.024987px;}
.x5d{left:265.530000px;}
.xa{left:301.034987px;}
.x24{left:310.244987px;}
.x13{left:331.169987px;}
.x4f{left:350.535000px;}
.x2e{left:364.964987px;}
.x6f{left:371.775000px;}
.x5e{left:382.395000px;}
.x26{left:409.934987px;}
.x27{left:412.454987px;}
.x19{left:418.469987px;}
.x25{left:421.814987px;}
.x68{left:424.335000px;}
.x3a{left:426.495000px;}
.x28{left:427.574987px;}
.x36{left:430.814987px;}
.x12{left:434.234987px;}
.x1b{left:436.829987px;}
.x1f{left:444.029987px;}
.x3{left:454.959000px;}
.x50{left:467.565000px;}
.x20{left:469.949987px;}
.x60{left:499.425000px;}
.x2f{left:523.694987px;}
.x71{left:531.285000px;}
.x2a{left:561.419987px;}
.x29{left:569.339987px;}
.x52{left:584.565000px;}
.x2b{left:587.699987px;}
.x14{left:593.129987px;}
.x69{left:609.585000px;}
.x61{left:616.425000px;}
.x30{left:645.734987px;}
.x72{left:648.285000px;}
.x3c{left:650.265000px;}
.x32{left:654.554987px;}
.x6a{left:684.870000px;}
.x15{left:697.859987px;}
.x16{left:780.269987px;}
.xf{left:784.769987px;}
.x6{left:789.989987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v2{vertical-align:-49.280000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:30.346667pt;}
.v5{vertical-align:60.800000pt;}
.ls4{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.233067pt;}
.lse{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.135467pt;}
.ls8{letter-spacing:-0.097067pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.576000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls1{letter-spacing:864.906667pt;}
.ws12{word-spacing:-43.200000pt;}
.ws3{word-spacing:-24.000000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.936000pt;}
.ws11{word-spacing:-15.808000pt;}
.ws10{word-spacing:-15.744000pt;}
.ws4{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.622933pt;}
.wsd{word-spacing:-14.584533pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:137.815040pt;}
.ws8{word-spacing:186.692693pt;}
.ws9{word-spacing:273.565440pt;}
.wsa{word-spacing:312.523520pt;}
.wsb{word-spacing:327.403520pt;}
.wsc{word-spacing:333.660160pt;}
.ws5{word-spacing:437.315840pt;}
.ws6{word-spacing:465.837227pt;}
._c{margin-left:-4.480000pt;}
._b{margin-left:-3.584000pt;}
._2{margin-left:-1.809920pt;}
._1{margin-left:-0.900480pt;}
._5{width:1.034667pt;}
._6{width:2.144000pt;}
._7{width:3.776000pt;}
._8{width:4.789333pt;}
._d{width:6.336000pt;}
._e{width:7.232000pt;}
._f{width:8.245333pt;}
._10{width:9.284480pt;}
._9{width:10.368000pt;}
._a{width:11.345920pt;}
._3{width:12.352000pt;}
._4{width:13.568000pt;}
._11{width:14.976000pt;}
._1c{width:16.913920pt;}
._16{width:18.312960pt;}
._14{width:19.392000pt;}
._15{width:20.672000pt;}
._12{width:21.696000pt;}
._23{width:23.200000pt;}
._24{width:24.768000pt;}
._27{width:25.862827pt;}
._17{width:26.951253pt;}
._18{width:28.514987pt;}
._2b{width:29.620053pt;}
._32{width:33.088000pt;}
._13{width:33.984000pt;}
._1f{width:35.328000pt;}
._28{width:38.528000pt;}
._29{width:39.754667pt;}
._2c{width:43.882667pt;}
._2d{width:44.928000pt;}
._25{width:47.338667pt;}
._26{width:48.305920pt;}
._2a{width:49.912747pt;}
._2e{width:64.128000pt;}
._2f{width:65.184000pt;}
._30{width:68.288000pt;}
._31{width:69.386667pt;}
._1a{width:126.826667pt;}
._1d{width:135.845973pt;}
._19{width:162.356907pt;}
._21{width:273.660587pt;}
._22{width:367.185493pt;}
._1b{width:392.887040pt;}
._20{width:752.266667pt;}
._0{width:1168.149333pt;}
._1e{width:1439.385173pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:58.880000pt;}
.fsc{font-size:59.008000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fsa{font-size:96.000000pt;}
.fsd{font-size:96.128000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:4.640000pt;}
.y117{bottom:5.600000pt;}
.y18d{bottom:5.640000pt;}
.y11a{bottom:5.760000pt;}
.y128{bottom:5.786667pt;}
.y175{bottom:11.520000pt;}
.y1ad{bottom:15.680000pt;}
.y13a{bottom:24.954667pt;}
.y137{bottom:24.960000pt;}
.y171{bottom:24.986667pt;}
.y1ea{bottom:25.000000pt;}
.y13c{bottom:25.120000pt;}
.y15c{bottom:25.152000pt;}
.y189{bottom:25.760000pt;}
.y17d{bottom:25.800000pt;}
.y16a{bottom:27.680000pt;}
.yd3{bottom:34.746667pt;}
.y174{bottom:36.800000pt;}
.yad{bottom:39.040000pt;}
.y25{bottom:40.000000pt;}
.y50{bottom:41.280000pt;}
.yd5{bottom:42.373333pt;}
.y15e{bottom:44.320000pt;}
.y170{bottom:44.346667pt;}
.y139{bottom:44.474667pt;}
.y146{bottom:44.480000pt;}
.y17a{bottom:45.120000pt;}
.y169{bottom:47.040000pt;}
.yd2{bottom:49.946667pt;}
.y24{bottom:53.440000pt;}
.yc9{bottom:53.666667pt;}
.yf1{bottom:54.013333pt;}
.y4c{bottom:57.120000pt;}
.yd4{bottom:57.573333pt;}
.y5{bottom:59.133337pt;}
.y4f{bottom:59.680000pt;}
.yb3{bottom:60.160000pt;}
.y115{bottom:60.866667pt;}
.ye6{bottom:63.680000pt;}
.y159{bottom:63.840000pt;}
.y145{bottom:63.880000pt;}
.y179{bottom:64.480000pt;}
.yd1{bottom:65.146667pt;}
.y10d{bottom:65.600000pt;}
.yef{bottom:65.826667pt;}
.y168{bottom:66.560000pt;}
.yf5{bottom:68.453333pt;}
.yb1{bottom:69.253333pt;}
.yf4{bottom:76.066667pt;}
.yb0{bottom:76.866667pt;}
.y4b{bottom:78.400000pt;}
.y13b{bottom:80.480000pt;}
.yee{bottom:81.026667pt;}
.y1f0{bottom:82.080000pt;}
.y158{bottom:83.200000pt;}
.y178{bottom:83.840000pt;}
.y1bd{bottom:84.320000pt;}
.y163{bottom:84.520000pt;}
.y93{bottom:84.800000pt;}
.yec{bottom:85.186667pt;}
.y186{bottom:85.600000pt;}
.y167{bottom:85.920000pt;}
.y4{bottom:86.333337pt;}
.y112{bottom:90.560000pt;}
.y1ab{bottom:92.480000pt;}
.yb2{bottom:93.573333pt;}
.yc7{bottom:94.240000pt;}
.y15b{bottom:95.680000pt;}
.ye4{bottom:95.840000pt;}
.y4a{bottom:98.400000pt;}
.y71{bottom:99.360000pt;}
.y1e0{bottom:99.680000pt;}
.yd0{bottom:99.906667pt;}
.yeb{bottom:100.386667pt;}
.yab{bottom:100.640000pt;}
.y98{bottom:104.000000pt;}
.y162{bottom:104.040000pt;}
.y1bc{bottom:104.320000pt;}
.yae{bottom:104.826667pt;}
.ye8{bottom:106.146667pt;}
.yf0{bottom:108.480000pt;}
.y49{bottom:109.600000pt;}
.y10b{bottom:109.760000pt;}
.yed{bottom:112.160000pt;}
.y92{bottom:112.480000pt;}
.y114{bottom:112.666667pt;}
.y185{bottom:113.120000pt;}
.ycf{bottom:115.106667pt;}
.ye3{bottom:117.440000pt;}
.yf3{bottom:117.600000pt;}
.y138{bottom:120.032000pt;}
.ye7{bottom:121.373333pt;}
.yc6{bottom:121.952000pt;}
.y20{bottom:123.790666pt;}
.y1bb{bottom:124.512000pt;}
.y70{bottom:126.912000pt;}
.yea{bottom:127.133333pt;}
.y1df{bottom:127.232000pt;}
.y113{bottom:127.866667pt;}
.yaa{bottom:128.352000pt;}
.yaf{bottom:129.893333pt;}
.yce{bottom:130.333333pt;}
.y97{bottom:131.552000pt;}
.yf2{bottom:132.826667pt;}
.y15a{bottom:135.226667pt;}
.y10a{bottom:137.306667pt;}
.y48{bottom:138.906667pt;}
.y91{bottom:140.026667pt;}
.y184{bottom:140.826667pt;}
.ye9{bottom:142.333333pt;}
.y1ba{bottom:144.506667pt;}
.y1aa{bottom:147.546667pt;}
.yc5{bottom:149.466667pt;}
.y6f{bottom:154.586667pt;}
.y1de{bottom:154.906667pt;}
.ya9{bottom:155.866667pt;}
.y96{bottom:159.226667pt;}
.y1b9{bottom:164.506667pt;}
.y1ef{bottom:164.826667pt;}
.y109{bottom:164.986667pt;}
.y47{bottom:166.426667pt;}
.y90{bottom:167.706667pt;}
.y183{bottom:168.346667pt;}
.ycd{bottom:170.306667pt;}
.y111{bottom:172.093333pt;}
.y157{bottom:174.586667pt;}
.y17{bottom:175.052000pt;}
.y1a9{bottom:175.226667pt;}
.yc4{bottom:177.146667pt;}
.ycc{bottom:177.920000pt;}
.y136{bottom:178.906667pt;}
.y6e{bottom:182.106667pt;}
.y1dd{bottom:182.426667pt;}
.ya8{bottom:183.546667pt;}
.y1b8{bottom:184.666667pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y95{bottom:186.746667pt;}
.y110{bottom:187.333333pt;}
.y108{bottom:192.506667pt;}
.y46{bottom:194.106667pt;}
.y8f{bottom:195.226667pt;}
.y182{bottom:196.026667pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y1a8{bottom:202.746667pt;}
.yc3{bottom:204.666667pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y6d{bottom:209.786667pt;}
.y1dc{bottom:210.106667pt;}
.ya7{bottom:211.066667pt;}
.y94{bottom:212.186667pt;}
.y1ee{bottom:220.026667pt;}
.y107{bottom:220.186667pt;}
.y181{bottom:221.466667pt;}
.y45{bottom:221.626667pt;}
.y8e{bottom:222.906667pt;}
.y1b7{bottom:224.826667pt;}
.y10f{bottom:228.573333pt;}
.y1a7{bottom:230.426667pt;}
.ycb{bottom:230.746667pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y135{bottom:231.066667pt;}
.yc2{bottom:232.346667pt;}
.y180{bottom:234.586667pt;}
.y6c{bottom:237.306667pt;}
.y1db{bottom:237.626667pt;}
.ya6{bottom:238.586667pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y1b6{bottom:244.826667pt;}
.yca{bottom:245.946667pt;}
.y106{bottom:247.706667pt;}
.y44{bottom:249.306667pt;}
.y10e{bottom:249.693333pt;}
.y8d{bottom:250.426667pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y134{bottom:257.466667pt;}
.y1a6{bottom:257.946667pt;}
.yc1{bottom:259.866667pt;}
.y1b5{bottom:264.826667pt;}
.y6b{bottom:264.986667pt;}
.y1da{bottom:265.306667pt;}
.ya5{bottom:266.266667pt;}
.y156{bottom:272.346667pt;}
.y17f{bottom:273.946667pt;}
.y1ed{bottom:275.226667pt;}
.y105{bottom:275.386667pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y43{bottom:276.826667pt;}
.y8c{bottom:278.106667pt;}
.y133{bottom:283.866667pt;}
.y1b4{bottom:284.986667pt;}
.y1a5{bottom:285.626667pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.yc0{bottom:287.546667pt;}
.y6a{bottom:292.506667pt;}
.y1d9{bottom:292.826667pt;}
.ya4{bottom:293.786667pt;}
.y1ec{bottom:300.666667pt;}
.y104{bottom:302.906667pt;}
.y42{bottom:304.506667pt;}
.y1b3{bottom:304.986667pt;}
.y8b{bottom:305.626667pt;}
.ye{bottom:309.452000pt;}
.y132{bottom:311.546667pt;}
.y155{bottom:311.706667pt;}
.y1a4{bottom:313.146667pt;}
.y17e{bottom:313.466667pt;}
.y1eb{bottom:313.786667pt;}
.ybf{bottom:315.066667pt;}
.y69{bottom:320.186667pt;}
.y1d8{bottom:320.506667pt;}
.ya3{bottom:321.466667pt;}
.ye2{bottom:322.266667pt;}
.y1b2{bottom:324.986667pt;}
.y103{bottom:330.586667pt;}
.y41{bottom:332.026667pt;}
.y8a{bottom:333.306667pt;}
.y17c{bottom:333.466667pt;}
.y1e9{bottom:333.946667pt;}
.y131{bottom:339.066667pt;}
.y1a3{bottom:340.826667pt;}
.ybe{bottom:342.746667pt;}
.yd{bottom:343.809333pt;}
.y1b1{bottom:345.186667pt;}
.y68{bottom:347.746667pt;}
.y1d7{bottom:348.066667pt;}
.ya2{bottom:349.026667pt;}
.ye1{bottom:349.826667pt;}
.y17b{bottom:353.666667pt;}
.y102{bottom:358.146667pt;}
.y40{bottom:359.586667pt;}
.y89{bottom:360.866667pt;}
.yc{bottom:362.706666pt;}
.y154{bottom:363.906667pt;}
.y1b0{bottom:365.186667pt;}
.y130{bottom:366.786667pt;}
.y1a2{bottom:368.386667pt;}
.ybd{bottom:370.306667pt;}
.y1e8{bottom:373.346667pt;}
.y177{bottom:373.666667pt;}
.y67{bottom:375.426667pt;}
.y1d6{bottom:375.746667pt;}
.ya1{bottom:376.706667pt;}
.ye0{bottom:377.506667pt;}
.y1af{bottom:385.346667pt;}
.y101{bottom:385.826667pt;}
.y3f{bottom:387.266667pt;}
.y88{bottom:388.546667pt;}
.y153{bottom:391.586667pt;}
.y1a1{bottom:393.826667pt;}
.y12f{bottom:394.306667pt;}
.ybc{bottom:397.826667pt;}
.y66{bottom:402.946667pt;}
.y1d5{bottom:403.266667pt;}
.ya0{bottom:404.226667pt;}
.ydf{bottom:405.026667pt;}
.y1ac{bottom:405.346667pt;}
.y1a0{bottom:406.946667pt;}
.y1e7{bottom:412.866667pt;}
.y176{bottom:413.186667pt;}
.y100{bottom:413.346667pt;}
.y3e{bottom:414.786667pt;}
.y87{bottom:416.066667pt;}
.y152{bottom:419.106667pt;}
.y12e{bottom:421.986667pt;}
.y1ae{bottom:425.346667pt;}
.ybb{bottom:425.506667pt;}
.y19f{bottom:427.106667pt;}
.y65{bottom:430.626667pt;}
.y1d4{bottom:430.946667pt;}
.y9f{bottom:431.906667pt;}
.yde{bottom:432.706667pt;}
.yff{bottom:440.866667pt;}
.y3d{bottom:442.466667pt;}
.y86{bottom:443.746667pt;}
.y151{bottom:446.786667pt;}
.y19e{bottom:447.106667pt;}
.y12d{bottom:448.386667pt;}
.y1e6{bottom:452.386667pt;}
.yba{bottom:453.026667pt;}
.y64{bottom:458.146667pt;}
.y1d3{bottom:458.466667pt;}
.y9e{bottom:459.426667pt;}
.ydd{bottom:460.226667pt;}
.yb{bottom:462.990669pt;}
.y19d{bottom:467.106667pt;}
.yfe{bottom:468.546667pt;}
.y3c{bottom:469.986667pt;}
.y85{bottom:471.266667pt;}
.y173{bottom:472.066667pt;}
.y12c{bottom:472.706667pt;}
.y150{bottom:474.306667pt;}
.ya{bottom:478.990666pt;}
.yb9{bottom:480.706667pt;}
.y63{bottom:485.826667pt;}
.y1d2{bottom:485.986667pt;}
.y9d{bottom:487.106667pt;}
.y19c{bottom:487.266667pt;}
.ydc{bottom:487.906667pt;}
.y1e5{bottom:491.746667pt;}
.y9{bottom:494.990666pt;}
.yfd{bottom:496.066667pt;}
.y3b{bottom:497.666667pt;}
.y84{bottom:498.946667pt;}
.y14f{bottom:501.986667pt;}
.y12b{bottom:505.826667pt;}
.y19b{bottom:507.266667pt;}
.yb8{bottom:508.226667pt;}
.y62{bottom:513.346667pt;}
.y1d1{bottom:513.666667pt;}
.y9c{bottom:514.626667pt;}
.ydb{bottom:515.426667pt;}
.y172{bottom:523.266667pt;}
.yfc{bottom:523.746667pt;}
.y3a{bottom:525.186667pt;}
.y12a{bottom:525.986667pt;}
.y83{bottom:526.466667pt;}
.y19a{bottom:527.426667pt;}
.y14e{bottom:529.506667pt;}
.y1e4{bottom:531.266667pt;}
.yb7{bottom:535.906667pt;}
.y61{bottom:541.026667pt;}
.y1d0{bottom:541.186667pt;}
.y9b{bottom:542.306667pt;}
.yda{bottom:543.106667pt;}
.y129{bottom:545.986667pt;}
.y199{bottom:547.426667pt;}
.yfb{bottom:551.266667pt;}
.y39{bottom:552.866667pt;}
.y82{bottom:554.146667pt;}
.y14d{bottom:557.186667pt;}
.y16f{bottom:562.786667pt;}
.yb6{bottom:563.426667pt;}
.y127{bottom:565.986667pt;}
.y198{bottom:567.426667pt;}
.y9a{bottom:567.746667pt;}
.y60{bottom:568.546667pt;}
.y1cf{bottom:568.893333pt;}
.yd9{bottom:570.653333pt;}
.y38{bottom:571.293333pt;}
.y8{bottom:573.786667pt;}
.yfa{bottom:578.973333pt;}
.yac{bottom:580.320000pt;}
.y81{bottom:581.693333pt;}
.y14c{bottom:584.733333pt;}
.y126{bottom:586.173333pt;}
.y197{bottom:587.613333pt;}
.yb5{bottom:588.893333pt;}
.y99{bottom:589.373333pt;}
.y37{bottom:589.693333pt;}
.y1e3{bottom:590.813333pt;}
.y7{bottom:592.685334pt;}
.y5f{bottom:596.253333pt;}
.y1ce{bottom:596.413333pt;}
.yd8{bottom:598.333333pt;}
.yc8{bottom:601.440000pt;}
.y125{bottom:606.173333pt;}
.yf9{bottom:606.493333pt;}
.y196{bottom:607.613333pt;}
.y36{bottom:608.093333pt;}
.y80{bottom:609.373333pt;}
.yb4{bottom:610.653333pt;}
.y14b{bottom:612.413333pt;}
.y16e{bottom:621.533333pt;}
.y5e{bottom:623.773333pt;}
.y1cd{bottom:624.093333pt;}
.yd7{bottom:625.853333pt;}
.y124{bottom:626.333333pt;}
.y35{bottom:626.493333pt;}
.y195{bottom:627.773333pt;}
.y1e2{bottom:630.173333pt;}
.yf8{bottom:634.173333pt;}
.y7f{bottom:636.893333pt;}
.y14a{bottom:639.933333pt;}
.ye5{bottom:640.800000pt;}
.y34{bottom:644.893333pt;}
.y6{bottom:645.598667pt;}
.y123{bottom:646.333333pt;}
.y194{bottom:647.773333pt;}
.y1e1{bottom:650.333333pt;}
.yd6{bottom:651.293333pt;}
.y5d{bottom:651.453333pt;}
.y1cc{bottom:651.613333pt;}
.y166{bottom:661.053333pt;}
.yf7{bottom:661.693333pt;}
.y33{bottom:663.293333pt;}
.y7e{bottom:664.573333pt;}
.y122{bottom:666.333333pt;}
.y149{bottom:667.613333pt;}
.y193{bottom:667.773333pt;}
.y3{bottom:668.977329pt;}
.y10c{bottom:676.640000pt;}
.y5c{bottom:678.973333pt;}
.y1cb{bottom:679.293333pt;}
.y16d{bottom:681.053333pt;}
.y32{bottom:681.693333pt;}
.y121{bottom:686.493333pt;}
.yf6{bottom:687.133333pt;}
.y192{bottom:687.933333pt;}
.y7d{bottom:692.093333pt;}
.y148{bottom:695.133333pt;}
.y31{bottom:700.093333pt;}
.y16c{bottom:701.213333pt;}
.y120{bottom:706.493333pt;}
.y5b{bottom:706.653333pt;}
.y1ca{bottom:706.813333pt;}
.y191{bottom:707.933333pt;}
.y30{bottom:718.493333pt;}
.y7c{bottom:719.773333pt;}
.y147{bottom:720.573333pt;}
.y16b{bottom:721.213333pt;}
.y11f{bottom:726.493333pt;}
.y190{bottom:727.933333pt;}
.y144{bottom:733.693333pt;}
.y5a{bottom:734.173333pt;}
.y1c9{bottom:734.493333pt;}
.y2f{bottom:736.893333pt;}
.y165{bottom:741.373333pt;}
.y11e{bottom:746.653333pt;}
.y7b{bottom:747.293333pt;}
.y18f{bottom:748.093333pt;}
.y2e{bottom:755.293333pt;}
.y1c8{bottom:759.933333pt;}
.y161{bottom:761.373333pt;}
.y59{bottom:761.853333pt;}
.y11d{bottom:766.653333pt;}
.y18e{bottom:768.093333pt;}
.y2d{bottom:773.693333pt;}
.y7a{bottom:774.973333pt;}
.y1c7{bottom:775.613333pt;}
.y2{bottom:781.661334pt;}
.y11c{bottom:786.813333pt;}
.y18c{bottom:788.253333pt;}
.y58{bottom:789.373333pt;}
.y1c6{bottom:789.853333pt;}
.y2c{bottom:792.093333pt;}
.y164{bottom:800.933333pt;}
.y79{bottom:802.533333pt;}
.y11b{bottom:806.853333pt;}
.y18b{bottom:808.293333pt;}
.y1c5{bottom:810.053333pt;}
.y2b{bottom:810.533333pt;}
.y143{bottom:811.973333pt;}
.y57{bottom:817.093333pt;}
.y119{bottom:826.853333pt;}
.y188{bottom:828.293333pt;}
.y2a{bottom:828.933333pt;}
.y1c4{bottom:830.053333pt;}
.y78{bottom:830.213333pt;}
.y160{bottom:840.293333pt;}
.y56{bottom:844.613333pt;}
.y118{bottom:847.013333pt;}
.y29{bottom:847.333333pt;}
.y18a{bottom:848.453333pt;}
.y1c3{bottom:850.053333pt;}
.y142{bottom:851.493333pt;}
.y77{bottom:857.733333pt;}
.y1{bottom:859.312000pt;}
.y28{bottom:865.733333pt;}
.y116{bottom:867.013333pt;}
.y1c2{bottom:870.213333pt;}
.y141{bottom:871.493333pt;}
.y55{bottom:872.293333pt;}
.y15f{bottom:879.813333pt;}
.y187{bottom:881.253333pt;}
.y76{bottom:885.253333pt;}
.y1c1{bottom:890.213333pt;}
.y140{bottom:891.493333pt;}
.y54{bottom:899.813333pt;}
.y27{bottom:902.533333pt;}
.y1c0{bottom:910.213333pt;}
.y75{bottom:912.933333pt;}
.y53{bottom:927.493333pt;}
.y1bf{bottom:930.373333pt;}
.y13f{bottom:931.013333pt;}
.y26{bottom:938.053333pt;}
.y15d{bottom:938.693333pt;}
.y74{bottom:940.453333pt;}
.y1be{bottom:950.373333pt;}
.y52{bottom:955.013333pt;}
.y73{bottom:968.133333pt;}
.y13e{bottom:970.533333pt;}
.y51{bottom:982.533333pt;}
.y13d{bottom:990.533333pt;}
.y23{bottom:993.413333pt;}
.y72{bottom:995.653333pt;}
.y22{bottom:1013.893333pt;}
.y4e{bottom:1015.333333pt;}
.y21{bottom:1032.320000pt;}
.hf{height:14.560000pt;}
.h21{height:19.360000pt;}
.h24{height:19.392000pt;}
.h23{height:19.520000pt;}
.h25{height:19.552000pt;}
.h7{height:28.560000pt;}
.hd{height:33.918750pt;}
.h26{height:38.720000pt;}
.h2f{height:38.752000pt;}
.h28{height:38.880000pt;}
.h2b{height:38.912000pt;}
.h35{height:39.520000pt;}
.h34{height:39.552000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h10{height:43.215000pt;}
.h11{height:47.109375pt;}
.h2{height:48.960000pt;}
.h32{height:50.560000pt;}
.he{height:52.134375pt;}
.h12{height:57.375000pt;}
.h29{height:57.758750pt;}
.h15{height:57.787500pt;}
.h1b{height:57.913125pt;}
.h2d{height:58.080000pt;}
.h31{height:58.112000pt;}
.h27{height:58.240000pt;}
.h22{height:59.340000pt;}
.hc{height:62.781250pt;}
.h9{height:62.812500pt;}
.hb{height:64.500000pt;}
.h5{height:69.360000pt;}
.h2a{height:77.632000pt;}
.ha{height:85.785000pt;}
.h16{height:88.134167pt;}
.h1a{height:88.240833pt;}
.h19{height:88.366458pt;}
.h14{height:94.218750pt;}
.h1d{height:94.344375pt;}
.h2c{height:96.960000pt;}
.h33{height:97.600000pt;}
.h30{height:99.680000pt;}
.h4{height:105.826671pt;}
.h2e{height:117.792000pt;}
.h18{height:118.587500pt;}
.h1e{height:118.819792pt;}
.h1f{height:201.120000pt;}
.h1c{height:204.320000pt;}
.h13{height:209.600000pt;}
.h17{height:285.760000pt;}
.h20{height:306.400000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.h8{height:1122.720000pt;}
.w1b{width:56.512000pt;}
.wb{width:65.952000pt;}
.w17{width:66.080000pt;}
.w19{width:66.912000pt;}
.wc{width:75.680000pt;}
.wd{width:94.432000pt;}
.w11{width:94.560000pt;}
.w12{width:103.872000pt;}
.wf{width:104.000000pt;}
.we{width:104.032000pt;}
.w1a{width:109.600000pt;}
.w14{width:115.552000pt;}
.w15{width:120.032000pt;}
.wa{width:140.346667pt;}
.w1d{width:141.466667pt;}
.w1c{width:141.786667pt;}
.w7{width:144.826667pt;}
.w8{width:158.746667pt;}
.w18{width:164.666667pt;}
.w13{width:169.786667pt;}
.w10{width:198.106667pt;}
.w9{width:198.906667pt;}
.w16{width:407.266667pt;}
.w2{width:566.928019pt;}
.w5{width:723.360000pt;}
.w6{width:723.520000pt;}
.w0{width:793.700000pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:7.240000pt;}
.x4b{left:8.352000pt;}
.x4e{left:10.080000pt;}
.x63{left:11.040000pt;}
.x39{left:12.160000pt;}
.x59{left:13.280000pt;}
.x66{left:14.400000pt;}
.x51{left:15.360000pt;}
.x73{left:16.320000pt;}
.x54{left:17.280000pt;}
.x56{left:18.720000pt;}
.x65{left:20.160000pt;}
.x55{left:21.120000pt;}
.x57{left:22.560000pt;}
.x70{left:23.520000pt;}
.x5b{left:24.640000pt;}
.x5a{left:25.920000pt;}
.x4c{left:27.520000pt;}
.x5c{left:28.800000pt;}
.x6c{left:29.760000pt;}
.x58{left:31.040000pt;}
.x5f{left:32.000000pt;}
.x37{left:34.272000pt;}
.xd{left:35.200000pt;}
.x3b{left:36.346667pt;}
.xb{left:37.280000pt;}
.x43{left:38.592000pt;}
.x6b{left:40.192000pt;}
.x6d{left:41.792000pt;}
.x64{left:42.760000pt;}
.x44{left:45.152000pt;}
.x3e{left:47.072000pt;}
.x49{left:49.152000pt;}
.x42{left:50.752000pt;}
.x45{left:52.512000pt;}
.x48{left:55.712000pt;}
.x47{left:58.906667pt;}
.x62{left:65.320000pt;}
.x46{left:66.440000pt;}
.x41{left:67.720000pt;}
.x5{left:75.519988pt;}
.x3f{left:76.840000pt;}
.x53{left:79.400000pt;}
.x1{left:90.706667pt;}
.x4a{left:92.026667pt;}
.x2{left:94.486667pt;}
.x40{left:95.706667pt;}
.x21{left:102.111988pt;}
.x10{left:103.615988pt;}
.x17{left:106.815988pt;}
.x33{left:108.767988pt;}
.x9{left:113.311988pt;}
.x8{left:115.231988pt;}
.x74{left:123.551988pt;}
.x6e{left:132.032000pt;}
.x23{left:138.306655pt;}
.x11{left:140.826655pt;}
.x2c{left:142.813322pt;}
.xc{left:145.466667pt;}
.x22{left:158.306655pt;}
.x31{left:166.373322pt;}
.x7{left:168.666655pt;}
.x2d{left:177.253322pt;}
.x4{left:180.874667pt;}
.x67{left:184.026667pt;}
.x34{left:185.346655pt;}
.x18{left:186.813322pt;}
.x35{left:191.106655pt;}
.xe{left:193.146655pt;}
.x1a{left:198.813322pt;}
.x1e{left:205.373322pt;}
.x1c{left:206.333322pt;}
.x4d{left:217.146667pt;}
.x38{left:220.346667pt;}
.x1d{left:223.133322pt;}
.x5d{left:236.026667pt;}
.xa{left:267.586655pt;}
.x24{left:275.773322pt;}
.x13{left:294.373322pt;}
.x4f{left:311.586667pt;}
.x2e{left:324.413322pt;}
.x6f{left:330.466667pt;}
.x5e{left:339.906667pt;}
.x26{left:364.386655pt;}
.x27{left:366.626655pt;}
.x19{left:371.973322pt;}
.x25{left:374.946655pt;}
.x68{left:377.186667pt;}
.x3a{left:379.106667pt;}
.x28{left:380.066655pt;}
.x36{left:382.946655pt;}
.x12{left:385.986655pt;}
.x1b{left:388.293322pt;}
.x1f{left:394.693322pt;}
.x3{left:404.408000pt;}
.x50{left:415.613333pt;}
.x20{left:417.733322pt;}
.x60{left:443.933333pt;}
.x2f{left:465.506655pt;}
.x71{left:472.253333pt;}
.x2a{left:499.039988pt;}
.x29{left:506.079988pt;}
.x52{left:519.613333pt;}
.x2b{left:522.399988pt;}
.x14{left:527.226655pt;}
.x69{left:541.853333pt;}
.x61{left:547.933333pt;}
.x30{left:573.986655pt;}
.x72{left:576.253333pt;}
.x3c{left:578.013333pt;}
.x32{left:581.826655pt;}
.x6a{left:608.773333pt;}
.x15{left:620.319988pt;}
.x16{left:693.573322pt;}
.xf{left:697.573322pt;}
.x6{left:702.213322pt;}
}




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