
    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_d11e885ef2c3cf093b1187eb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ad6dac4013cd9bbb94b64373.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_134b0b05048f68fc2e68a99d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_20816c4f7eb5eb0f7ebabbb2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_1fb9dabee1c7af30433bfee1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2018602de6a705684b49a815.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_9bfc26eaa4a61b4ff617e352.woff2')format("woff");}.ff7{font-family:ff7;line-height:2.150879;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);}
.v1{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v8{vertical-align:-12.960000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.v2{vertical-align:23.760000px;}
.v5{vertical-align:42.480000px;}
.v4{vertical-align:48.240000px;}
.v7{vertical-align:60.480000px;}
.v9{vertical-align:80.640000px;}
.ls9{letter-spacing:-1.056000px;}
.ls1f{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.460200px;}
.ls4{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.334200px;}
.ls8{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.219000px;}
.ls3{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.206400px;}
.ls19{letter-spacing:-0.184200px;}
.ls17{letter-spacing:-0.166800px;}
.ls18{letter-spacing:-0.132600px;}
.ls1d{letter-spacing:-0.051840px;}
.ls1b{letter-spacing:-0.028800px;}
.ls20{letter-spacing:-0.027360px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.027360px;}
.ls1c{letter-spacing:0.051840px;}
.ls1{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106800px;}
.ls1a{letter-spacing:0.126600px;}
.ls1e{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.298800px;}
.ls13{letter-spacing:0.345600px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.645120px;}
.ls14{letter-spacing:1.520640px;}
.ls16{letter-spacing:10.131840px;}
.ls10{letter-spacing:13.870080px;}
.ls11{letter-spacing:25.908480px;}
.lse{letter-spacing:90.361920px;}
.ls15{letter-spacing:209.896560px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.712000px;}
.ws8{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.254600px;}
.ws15{word-spacing:-15.891840px;}
.wse{word-spacing:-15.840000px;}
.wsf{word-spacing:-15.673200px;}
.ws16{word-spacing:-15.621000px;}
.wsd{word-spacing:-15.505800px;}
.ws3{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.784000px;}
.ws2{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.247360px;}
.ws17{word-spacing:-14.220000px;}
.ws18{word-spacing:-14.192640px;}
.ws13{word-spacing:-14.065800px;}
.ws12{word-spacing:-13.939200px;}
.ws19{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.806600px;}
.ws11{word-spacing:-13.755000px;}
.ws1{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
.ws14{word-spacing:89.037360px;}
._1a{margin-left:-7.980480px;}
._14{margin-left:-4.106880px;}
._13{margin-left:-2.649600px;}
._0{margin-left:-1.324800px;}
._1{width:1.068000px;}
._4{width:2.900880px;}
._10{width:4.493520px;}
._8{width:6.313680px;}
._7{width:7.663680px;}
._16{width:8.697600px;}
._b{width:9.783360px;}
._a{width:11.546640px;}
._9{width:12.684240px;}
._15{width:14.049360px;}
._f{width:15.300720px;}
._12{width:17.383200px;}
._11{width:18.429120px;}
._d{width:19.941120px;}
._c{width:21.159360px;}
._17{width:22.245120px;}
._6{width:24.685920px;}
._5{width:25.766640px;}
._e{width:27.074880px;}
._3{width:36.346320px;}
._2{width:37.540800px;}
._18{width:89.893200px;}
._19{width:94.017360px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:18.000000px;}
.fs4{font-size:41.760000px;}
.fsa{font-size:45.360000px;}
.fs3{font-size:48.240000px;}
.fs8{font-size:56.880000px;}
.fs6{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs9{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y36{bottom:3.240000px;}
.y16c{bottom:3.420000px;}
.y12b{bottom:8.820000px;}
.y122{bottom:9.360000px;}
.y127{bottom:9.570000px;}
.ye7{bottom:11.700000px;}
.yd3{bottom:11.880000px;}
.ye2{bottom:11.910000px;}
.y184{bottom:12.420000px;}
.y180{bottom:12.600000px;}
.y11{bottom:14.400000px;}
.y12f{bottom:18.360000px;}
.y121{bottom:19.980000px;}
.y126{bottom:20.190000px;}
.ye8{bottom:20.340000px;}
.yd4{bottom:20.520000px;}
.ye3{bottom:20.550000px;}
.y123{bottom:21.060000px;}
.y18{bottom:21.240000px;}
.y183{bottom:21.420000px;}
.y128{bottom:21.450000px;}
.y181{bottom:21.600000px;}
.y129{bottom:23.940000px;}
.y12c{bottom:24.480000px;}
.y12e{bottom:28.980000px;}
.yde{bottom:29.160000px;}
.y35{bottom:29.340000px;}
.y131{bottom:30.060000px;}
.y189{bottom:30.420000px;}
.ydc{bottom:37.620000px;}
.yda{bottom:37.800000px;}
.y17{bottom:38.520000px;}
.y188{bottom:39.645000px;}
.y12a{bottom:41.760000px;}
.y34{bottom:45.720000px;}
.y130{bottom:52.380000px;}
.ydf{bottom:55.080000px;}
.y16{bottom:55.650000px;}
.y33{bottom:62.100000px;}
.ye5{bottom:72.360000px;}
.y15{bottom:72.930000px;}
.y32{bottom:78.480000px;}
.y14{bottom:90.210000px;}
.y31{bottom:94.860000px;}
.y19{bottom:95.430000px;}
.y13{bottom:105.150000px;}
.y30{bottom:111.240000px;}
.y2f{bottom:127.620000px;}
.y2e{bottom:144.000000px;}
.y1b8{bottom:154.980000px;}
.y79{bottom:157.140000px;}
.y43{bottom:157.860000px;}
.y13f{bottom:158.940000px;}
.yce{bottom:159.120000px;}
.y2d{bottom:160.425000px;}
.y153{bottom:162.030000px;}
.yec{bottom:162.750000px;}
.y1e4{bottom:167.970000px;}
.y112{bottom:168.330000px;}
.y193{bottom:169.410000px;}
.y1b7{bottom:173.190000px;}
.y78{bottom:176.070000px;}
.y42{bottom:176.790000px;}
.y2c{bottom:176.805000px;}
.y13e{bottom:177.150000px;}
.ycd{bottom:177.330000px;}
.y163{bottom:179.850000px;}
.y152{bottom:180.210000px;}
.yab{bottom:183.450000px;}
.y1e3{bottom:184.350000px;}
.y111{bottom:186.330000px;}
.y192{bottom:187.590000px;}
.y1b6{bottom:191.190000px;}
.y2b{bottom:193.185000px;}
.y77{bottom:195.150000px;}
.ycc{bottom:195.330000px;}
.y41{bottom:195.870000px;}
.y151{bottom:198.390000px;}
.y1e2{bottom:200.730000px;}
.yaa{bottom:201.450000px;}
.yeb{bottom:202.350000px;}
.y162{bottom:203.610000px;}
.y110{bottom:204.510000px;}
.y191{bottom:205.770000px;}
.y1b5{bottom:209.370000px;}
.y2a{bottom:209.565000px;}
.ycb{bottom:213.510000px;}
.y150{bottom:216.390000px;}
.yea{bottom:217.290000px;}
.y76{bottom:218.370000px;}
.ya9{bottom:219.630000px;}
.y1e1{bottom:221.610000px;}
.y13d{bottom:222.330000px;}
.y10f{bottom:222.510000px;}
.y40{bottom:223.590000px;}
.y190{bottom:223.770000px;}
.y29{bottom:226.125000px;}
.y1b4{bottom:227.550000px;}
.yca{bottom:231.690000px;}
.y14f{bottom:234.570000px;}
.y75{bottom:237.630000px;}
.ya8{bottom:237.810000px;}
.y1e0{bottom:237.990000px;}
.y9e{bottom:240.150000px;}
.y13c{bottom:240.510000px;}
.y3d{bottom:240.525000px;}
.y18f{bottom:241.950000px;}
.y3f{bottom:242.310000px;}
.y28{bottom:242.505000px;}
.y1b3{bottom:245.550000px;}
.y10e{bottom:249.690000px;}
.y1df{bottom:254.370000px;}
.ya7{bottom:255.810000px;}
.y74{bottom:256.530000px;}
.y3c{bottom:257.625000px;}
.y9d{bottom:258.330000px;}
.y1a{bottom:258.510000px;}
.yc9{bottom:258.690000px;}
.y27{bottom:258.885000px;}
.y211{bottom:259.410000px;}
.y18e{bottom:260.130000px;}
.y14e{bottom:261.570000px;}
.y1b2{bottom:263.730000px;}
.y10d{bottom:267.870000px;}
.ya6{bottom:273.990000px;}
.y3b{bottom:274.905000px;}
.y1de{bottom:275.250000px;}
.y26{bottom:275.265000px;}
.y73{bottom:275.610000px;}
.y9c{bottom:276.510000px;}
.y13b{bottom:276.690000px;}
.yc8{bottom:276.870000px;}
.y18d{bottom:278.130000px;}
.y1b1{bottom:281.910000px;}
.y210{bottom:283.710000px;}
.y14d{bottom:285.330000px;}
.y10c{bottom:285.870000px;}
.y1dd{bottom:291.630000px;}
.y25{bottom:291.645000px;}
.ya5{bottom:291.990000px;}
.y3a{bottom:292.185000px;}
.y72{bottom:294.510000px;}
.yc7{bottom:295.050000px;}
.y18c{bottom:296.310000px;}
.y20f{bottom:300.090000px;}
.y13a{bottom:303.870000px;}
.y10b{bottom:304.050000px;}
.y1dc{bottom:308.010000px;}
.y24{bottom:308.025000px;}
.y1b0{bottom:308.910000px;}
.y39{bottom:309.465000px;}
.y9b{bottom:312.690000px;}
.yc6{bottom:313.050000px;}
.y71{bottom:313.410000px;}
.y18b{bottom:314.490000px;}
.y20e{bottom:320.970000px;}
.y23{bottom:324.405000px;}
.y38{bottom:326.745000px;}
.y1af{bottom:327.090000px;}
.y1db{bottom:328.890000px;}
.y9a{bottom:330.870000px;}
.y10a{bottom:331.050000px;}
.ya4{bottom:331.770000px;}
.y3e{bottom:331.965000px;}
.y70{bottom:332.490000px;}
.y20d{bottom:337.350000px;}
.yc5{bottom:340.230000px;}
.y22{bottom:340.785000px;}
.y37{bottom:341.685000px;}
.y1ae{bottom:345.090000px;}
.y1da{bottom:345.270000px;}
.ya3{bottom:346.530000px;}
.y99{bottom:348.870000px;}
.y109{bottom:349.230000px;}
.y139{bottom:349.950000px;}
.y18a{bottom:350.670000px;}
.y6f{bottom:351.390000px;}
.y20c{bottom:353.730000px;}
.y21{bottom:357.165000px;}
.y1d9{bottom:361.650000px;}
.y1ad{bottom:363.270000px;}
.y108{bottom:367.410000px;}
.y138{bottom:367.950000px;}
.yc4{bottom:368.130000px;}
.y6e{bottom:370.470000px;}
.y20{bottom:373.545000px;}
.y20b{bottom:374.610000px;}
.y187{bottom:375.150000px;}
.y98{bottom:376.050000px;}
.y1d8{bottom:382.530000px;}
.y137{bottom:386.130000px;}
.yc3{bottom:386.310000px;}
.y6d{bottom:389.370000px;}
.y1f{bottom:389.925000px;}
.y1ac{bottom:390.270000px;}
.y20a{bottom:390.990000px;}
.y107{bottom:394.410000px;}
.y1d7{bottom:398.910000px;}
.y97{bottom:403.950000px;}
.yc2{bottom:404.310000px;}
.y1e{bottom:406.335000px;}
.y209{bottom:407.415000px;}
.y6c{bottom:408.315000px;}
.y1ab{bottom:408.495000px;}
.y106{bottom:412.635000px;}
.y136{bottom:413.355000px;}
.y1d6{bottom:419.835000px;}
.y96{bottom:422.175000px;}
.y1d{bottom:422.715000px;}
.yc1{bottom:423.075000px;}
.y1aa{bottom:426.675000px;}
.y6b{bottom:427.395000px;}
.y208{bottom:428.295000px;}
.y186{bottom:429.375000px;}
.y105{bottom:430.815000px;}
.y1d5{bottom:436.215000px;}
.y1c{bottom:439.095000px;}
.y95{bottom:440.175000px;}
.y135{bottom:441.075000px;}
.yc0{bottom:443.775000px;}
.y1a9{bottom:444.675000px;}
.y6a{bottom:446.295000px;}
.y1b{bottom:453.315000px;}
.y1d4{bottom:457.275000px;}
.y104{bottom:457.815000px;}
.y94{bottom:458.355000px;}
.y134{bottom:459.255000px;}
.y1a8{bottom:462.855000px;}
.ybf{bottom:463.935000px;}
.y161{bottom:464.295000px;}
.y207{bottom:465.555000px;}
.y185{bottom:465.735000px;}
.y69{bottom:469.695000px;}
.y1d3{bottom:473.655000px;}
.y103{bottom:475.995000px;}
.y93{bottom:476.535000px;}
.ya2{bottom:477.255000px;}
.y133{bottom:477.435000px;}
.y160{bottom:482.475000px;}
.y206{bottom:486.435000px;}
.y68{bottom:488.775000px;}
.y1a7{bottom:489.855000px;}
.y1d2{bottom:490.035000px;}
.ye9{bottom:490.395000px;}
.ybe{bottom:490.935000px;}
.ya1{bottom:492.015000px;}
.y102{bottom:494.175000px;}
.y92{bottom:494.535000px;}
.y132{bottom:495.615000px;}
.y15f{bottom:500.655000px;}
.y182{bottom:501.915000px;}
.y205{bottom:502.815000px;}
.y1d1{bottom:506.415000px;}
.y67{bottom:507.675000px;}
.y1a6{bottom:508.035000px;}
.ybd{bottom:509.115000px;}
.y15e{bottom:518.835000px;}
.y12d{bottom:519.195000px;}
.y101{bottom:521.355000px;}
.y91{bottom:521.715000px;}
.ye6{bottom:524.955000px;}
.y1a5{bottom:526.215000px;}
.y66{bottom:526.755000px;}
.ybc{bottom:527.295000px;}
.y17f{bottom:538.815000px;}
.y90{bottom:539.895000px;}
.y204{bottom:540.075000px;}
.y1d0{bottom:541.155000px;}
.y14c{bottom:543.855000px;}
.y1a4{bottom:544.395000px;}
.ybb{bottom:545.295000px;}
.y65{bottom:545.655000px;}
.y15d{bottom:545.835000px;}
.y100{bottom:549.075000px;}
.y203{bottom:556.455000px;}
.y8f{bottom:557.895000px;}
.ye4{bottom:559.335000px;}
.y14b{bottom:562.035000px;}
.y1a3{bottom:562.395000px;}
.yba{bottom:563.475000px;}
.y15c{bottom:564.015000px;}
.y64{bottom:564.735000px;}
.yff{bottom:567.255000px;}
.y1cf{bottom:569.055000px;}
.y202{bottom:572.835000px;}
.y8e{bottom:576.075000px;}
.y14a{bottom:580.215000px;}
.y15b{bottom:582.015000px;}
.y63{bottom:583.635000px;}
.yfe{bottom:585.435000px;}
.y17e{bottom:588.135000px;}
.y1a2{bottom:589.395000px;}
.yb9{bottom:590.475000px;}
.y201{bottom:593.715000px;}
.y8d{bottom:594.075000px;}
.y1ce{bottom:597.135000px;}
.y149{bottom:598.215000px;}
.y15a{bottom:600.195000px;}
.y62{bottom:602.535000px;}
.yfd{bottom:603.435000px;}
.y12{bottom:606.675000px;}
.yb8{bottom:608.655000px;}
.y200{bottom:610.095000px;}
.y17d{bottom:615.315000px;}
.y148{bottom:616.395000px;}
.y1a1{bottom:616.575000px;}
.y159{bottom:618.375000px;}
.y8c{bottom:621.255000px;}
.y61{bottom:621.615000px;}
.y1cd{bottom:625.035000px;}
.y1ff{bottom:626.475000px;}
.yb7{bottom:626.835000px;}
.y17c{bottom:633.495000px;}
.y147{bottom:634.575000px;}
.y1a0{bottom:634.755000px;}
.y8b{bottom:639.435000px;}
.yfc{bottom:639.795000px;}
.y60{bottom:640.515000px;}
.y1cc{bottom:643.935000px;}
.yb6{bottom:645.015000px;}
.y158{bottom:645.375000px;}
.ye1{bottom:645.555000px;}
.y1fe{bottom:647.535000px;}
.y125{bottom:650.775000px;}
.y17b{bottom:651.675000px;}
.y19f{bottom:652.935000px;}
.y8a{bottom:657.465000px;}
.yfb{bottom:657.825000px;}
.y146{bottom:661.785000px;}
.yb5{bottom:663.045000px;}
.y5f{bottom:663.945000px;}
.y157{bottom:669.165000px;}
.y17a{bottom:669.705000px;}
.y19e{bottom:670.965000px;}
.y1cb{bottom:671.145000px;}
.y89{bottom:675.645000px;}
.yfa{bottom:676.005000px;}
.ye0{bottom:680.145000px;}
.y1fd{bottom:680.325000px;}
.yb4{bottom:681.225000px;}
.y5e{bottom:683.025000px;}
.y179{bottom:687.885000px;}
.y19d{bottom:689.145000px;}
.y145{bottom:689.505000px;}
.y88{bottom:693.645000px;}
.y1ca{bottom:699.045000px;}
.yb3{bottom:699.225000px;}
.y1fc{bottom:701.205000px;}
.y5d{bottom:701.925000px;}
.yf9{bottom:703.005000px;}
.y124{bottom:705.165000px;}
.y178{bottom:705.885000px;}
.y19c{bottom:707.145000px;}
.y87{bottom:711.825000px;}
.y144{bottom:713.265000px;}
.y1c9{bottom:717.225000px;}
.y1fb{bottom:717.585000px;}
.yb2{bottom:717.945000px;}
.y10{bottom:718.305000px;}
.y5c{bottom:721.005000px;}
.yf8{bottom:721.185000px;}
.y19b{bottom:725.325000px;}
.y86{bottom:730.005000px;}
.ydd{bottom:731.805000px;}
.y177{bottom:733.065000px;}
.y1fa{bottom:733.965000px;}
.y1c8{bottom:735.225000px;}
.yb1{bottom:738.645000px;}
.yf7{bottom:739.365000px;}
.y5b{bottom:739.905000px;}
.y19a{bottom:743.505000px;}
.y85{bottom:748.005000px;}
.y176{bottom:751.245000px;}
.y1c7{bottom:753.405000px;}
.y1f9{bottom:754.845000px;}
.yf6{bottom:757.365000px;}
.yb0{bottom:758.805000px;}
.y5a{bottom:758.985000px;}
.yf{bottom:762.765000px;}
.y175{bottom:769.245000px;}
.y199{bottom:770.505000px;}
.y1f8{bottom:771.225000px;}
.y1c6{bottom:771.585000px;}
.yf5{bottom:775.545000px;}
.y84{bottom:775.725000px;}
.y59{bottom:777.885000px;}
.ye{bottom:780.045000px;}
.y174{bottom:787.425000px;}
.y1f7{bottom:787.605000px;}
.y198{bottom:788.685000px;}
.yf4{bottom:793.725000px;}
.y58{bottom:796.965000px;}
.yd{bottom:797.325000px;}
.yaf{bottom:798.405000px;}
.y1c5{bottom:798.585000px;}
.ydb{bottom:800.925000px;}
.y83{bottom:805.425000px;}
.y197{bottom:806.865000px;}
.y1f6{bottom:808.485000px;}
.yf3{bottom:811.725000px;}
.yae{bottom:813.165000px;}
.yc{bottom:814.605000px;}
.y1c4{bottom:816.765000px;}
.y57{bottom:820.185000px;}
.y173{bottom:823.605000px;}
.y120{bottom:824.865000px;}
.yf2{bottom:829.905000px;}
.y82{bottom:834.585000px;}
.y1c3{bottom:834.945000px;}
.yb{bottom:838.005000px;}
.y56{bottom:839.265000px;}
.y1f5{bottom:841.245000px;}
.y172{bottom:841.785000px;}
.y11f{bottom:843.045000px;}
.yf1{bottom:847.905000px;}
.yd9{bottom:852.585000px;}
.y1c2{bottom:852.945000px;}
.y81{bottom:853.845000px;}
.ya0{bottom:854.385000px;}
.ya{bottom:856.185000px;}
.y55{bottom:858.345000px;}
.y11e{bottom:861.045000px;}
.y1f4{bottom:862.125000px;}
.y171{bottom:866.085000px;}
.y9f{bottom:869.145000px;}
.y1c1{bottom:871.125000px;}
.y80{bottom:872.745000px;}
.y9{bottom:874.185000px;}
.yf0{bottom:875.085000px;}
.y54{bottom:877.245000px;}
.y1f3{bottom:878.505000px;}
.y11d{bottom:879.225000px;}
.y170{bottom:884.265000px;}
.y53{bottom:896.325000px;}
.y11c{bottom:897.405000px;}
.y1c0{bottom:898.125000px;}
.y1f2{bottom:899.385000px;}
.y7f{bottom:900.690000px;}
.y16f{bottom:902.490000px;}
.yef{bottom:903.210000px;}
.yd8{bottom:904.470000px;}
.y8{bottom:911.670000px;}
.y52{bottom:915.270000px;}
.y11b{bottom:915.450000px;}
.y1f1{bottom:915.810000px;}
.y1bf{bottom:916.350000px;}
.y7e{bottom:919.770000px;}
.y16e{bottom:920.490000px;}
.yee{bottom:930.930000px;}
.y156{bottom:933.450000px;}
.y11a{bottom:933.630000px;}
.y1be{bottom:934.530000px;}
.y1f0{bottom:936.690000px;}
.y51{bottom:938.490000px;}
.y7d{bottom:938.670000px;}
.yd7{bottom:938.850000px;}
.y7{bottom:944.430000px;}
.y119{bottom:951.630000px;}
.y1bd{bottom:952.530000px;}
.y1ef{bottom:953.070000px;}
.yed{bottom:954.690000px;}
.y16d{bottom:956.850000px;}
.y50{bottom:957.750000px;}
.y6{bottom:965.130000px;}
.y118{bottom:969.810000px;}
.y1bc{bottom:970.710000px;}
.yd6{bottom:973.410000px;}
.y1ee{bottom:973.950000px;}
.y16b{bottom:975.570000px;}
.y4f{bottom:976.650000px;}
.y117{bottom:987.990000px;}
.y1ed{bottom:990.330000px;}
.y4e{bottom:995.730000px;}
.y196{bottom:996.990000px;}
.y1bb{bottom:997.710000px;}
.y5{bottom:1003.830000px;}
.y116{bottom:1005.990000px;}
.y16a{bottom:1006.890000px;}
.yd5{bottom:1007.970000px;}
.y1ec{bottom:1011.210000px;}
.y4d{bottom:1014.630000px;}
.y1ba{bottom:1015.890000px;}
.y115{bottom:1024.170000px;}
.y195{bottom:1024.890000px;}
.y1eb{bottom:1027.590000px;}
.y4c{bottom:1033.530000px;}
.y169{bottom:1033.890000px;}
.y1b9{bottom:1034.070000px;}
.y4{bottom:1038.570000px;}
.yd2{bottom:1042.350000px;}
.y143{bottom:1042.890000px;}
.y194{bottom:1043.070000px;}
.y1ea{bottom:1043.970000px;}
.y168{bottom:1052.070000px;}
.y4b{bottom:1052.610000px;}
.y114{bottom:1060.350000px;}
.y142{bottom:1061.070000px;}
.y1e9{bottom:1064.850000px;}
.y155{bottom:1069.530000px;}
.y167{bottom:1070.250000px;}
.y4a{bottom:1071.510000px;}
.y7c{bottom:1075.830000px;}
.yd1{bottom:1076.910000px;}
.y141{bottom:1079.250000px;}
.y1e8{bottom:1081.230000px;}
.y113{bottom:1087.530000px;}
.y166{bottom:1088.430000px;}
.y49{bottom:1090.590000px;}
.yd0{bottom:1094.190000px;}
.y7b{bottom:1095.090000px;}
.y154{bottom:1097.250000px;}
.y140{bottom:1097.430000px;}
.y1e7{bottom:1102.110000px;}
.y165{bottom:1106.430000px;}
.ycf{bottom:1112.190000px;}
.y48{bottom:1113.810000px;}
.y7a{bottom:1113.990000px;}
.yad{bottom:1115.430000px;}
.y1e6{bottom:1118.490000px;}
.y47{bottom:1132.890000px;}
.y164{bottom:1133.430000px;}
.yac{bottom:1133.610000px;}
.y1e5{bottom:1134.870000px;}
.y3{bottom:1168.200000px;}
.y46{bottom:1169.460000px;}
.y45{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y44{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.h16{height:17.280000px;}
.hd{height:17.657227px;}
.h2e{height:18.000000px;}
.h2d{height:18.180000px;}
.h2f{height:18.216000px;}
.h18{height:34.380000px;}
.h17{height:34.560000px;}
.h1c{height:34.596000px;}
.h31{height:36.180000px;}
.h30{height:36.360000px;}
.ha{height:40.500000px;}
.h6{height:41.304375px;}
.h10{height:46.881563px;}
.h5{height:48.802500px;}
.h1a{height:51.660000px;}
.h19{height:51.876000px;}
.h1e{height:52.435898px;}
.h20{height:53.640000px;}
.h32{height:54.216000px;}
.h23{height:54.396000px;}
.h2b{height:55.594687px;}
.h11{height:55.796836px;}
.h33{height:55.824609px;}
.h15{height:58.121719px;}
.he{height:58.621992px;}
.h8{height:58.651172px;}
.h9{height:60.226875px;}
.h24{height:60.300000px;}
.h26{height:61.616953px;}
.h7{height:62.184375px;}
.h2c{height:63.855000px;}
.h2{height:65.010937px;}
.h1f{height:65.124096px;}
.hb{height:66.757500px;}
.h1b{height:69.120000px;}
.h13{height:70.664062px;}
.h28{height:71.280000px;}
.h4{height:72.562500px;}
.h1d{height:86.220000px;}
.h25{height:88.948125px;}
.h3{height:96.508125px;}
.h22{height:104.664375px;}
.hc{height:109.476000px;}
.h27{height:122.664375px;}
.h29{height:128.548125px;}
.h21{height:134.308125px;}
.h2a{height:142.824375px;}
.h14{height:153.341016px;}
.h12{height:345.810000px;}
.hf{height:457.635000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.wa{width:41.940000px;}
.w12{width:63.540000px;}
.w13{width:68.796000px;}
.w11{width:74.880000px;}
.we{width:78.876000px;}
.wf{width:83.700000px;}
.w14{width:85.860000px;}
.wc{width:89.820000px;}
.w7{width:98.676000px;}
.w10{width:107.856000px;}
.wd{width:113.760000px;}
.w6{width:147.780000px;}
.w3{width:237.990000px;}
.wb{width:263.055000px;}
.w5{width:406.875000px;}
.w8{width:430.815000px;}
.w9{width:634.245000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x40{left:9.540000px;}
.x33{left:12.420000px;}
.x43{left:14.580000px;}
.x21{left:15.660000px;}
.x44{left:17.820000px;}
.x42{left:19.260000px;}
.x3a{left:20.700000px;}
.x3e{left:23.220000px;}
.x37{left:25.740000px;}
.x34{left:27.180000px;}
.x45{left:29.160000px;}
.x41{left:31.140000px;}
.x47{left:36.720000px;}
.x48{left:40.320000px;}
.x46{left:45.900000px;}
.x22{left:72.714000px;}
.x1f{left:94.854000px;}
.x5{left:108.035987px;}
.x23{left:116.814000px;}
.x6{left:122.796000px;}
.x49{left:128.015987px;}
.x2{left:131.255987px;}
.x1e{left:132.335987px;}
.x1d{left:135.935987px;}
.x1b{left:140.255987px;}
.x1c{left:175.529987px;}
.xa{left:185.250000px;}
.x25{left:192.279000px;}
.x24{left:198.039000px;}
.x36{left:221.790000px;}
.xe{left:225.569987px;}
.x2c{left:229.889987px;}
.x1a{left:234.029987px;}
.x26{left:242.319000px;}
.x15{left:255.810000px;}
.x28{left:256.899000px;}
.x27{left:261.939000px;}
.x31{left:270.210000px;}
.x11{left:277.949987px;}
.x30{left:279.074987px;}
.x2e{left:284.294987px;}
.x35{left:291.854987px;}
.x38{left:300.675000px;}
.x3{left:314.354987px;}
.x14{left:315.794987px;}
.x13{left:319.574987px;}
.x18{left:321.014987px;}
.x2a{left:337.934987px;}
.x16{left:354.495000px;}
.x8{left:360.795000px;}
.xc{left:375.374987px;}
.x9{left:378.435000px;}
.x39{left:384.375000px;}
.x3b{left:492.225000px;}
.x32{left:533.265000px;}
.x3c{left:567.105000px;}
.x19{left:591.764987px;}
.x29{left:614.264987px;}
.x3d{left:630.645000px;}
.x12{left:636.764987px;}
.x2f{left:662.009987px;}
.x2d{left:666.149987px;}
.x17{left:671.909987px;}
.xf{left:675.329987px;}
.xd{left:693.329987px;}
.x3f{left:699.450000px;}
.x2b{left:735.989987px;}
.x20{left:742.830000px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.x10{left:770.729987px;}
.x4{left:781.349987px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v8{vertical-align:-11.520000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.v2{vertical-align:21.120000pt;}
.v5{vertical-align:37.760000pt;}
.v4{vertical-align:42.880000pt;}
.v7{vertical-align:53.760000pt;}
.v9{vertical-align:71.680000pt;}
.ls9{letter-spacing:-0.938667pt;}
.ls1f{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.409067pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.297067pt;}
.ls8{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.194667pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.183467pt;}
.ls19{letter-spacing:-0.163733pt;}
.ls17{letter-spacing:-0.148267pt;}
.ls18{letter-spacing:-0.117867pt;}
.ls1d{letter-spacing:-0.046080pt;}
.ls1b{letter-spacing:-0.025600pt;}
.ls20{letter-spacing:-0.024320pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.024320pt;}
.ls1c{letter-spacing:0.046080pt;}
.ls1{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094933pt;}
.ls1a{letter-spacing:0.112533pt;}
.ls1e{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.265600pt;}
.ls13{letter-spacing:0.307200pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.573440pt;}
.ls14{letter-spacing:1.351680pt;}
.ls16{letter-spacing:9.006080pt;}
.ls10{letter-spacing:12.328960pt;}
.ls11{letter-spacing:23.029760pt;}
.lse{letter-spacing:80.321707pt;}
.ls15{letter-spacing:186.574720pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.448533pt;}
.ws15{word-spacing:-14.126080pt;}
.wse{word-spacing:-14.080000pt;}
.wsf{word-spacing:-13.931733pt;}
.ws16{word-spacing:-13.885333pt;}
.wsd{word-spacing:-13.782933pt;}
.ws3{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.141333pt;}
.ws2{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.664320pt;}
.ws17{word-spacing:-12.640000pt;}
.ws18{word-spacing:-12.615680pt;}
.ws13{word-spacing:-12.502933pt;}
.ws12{word-spacing:-12.390400pt;}
.ws19{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.272533pt;}
.ws11{word-spacing:-12.226667pt;}
.ws1{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
.ws14{word-spacing:79.144320pt;}
._1a{margin-left:-7.093760pt;}
._14{margin-left:-3.650560pt;}
._13{margin-left:-2.355200pt;}
._0{margin-left:-1.177600pt;}
._1{width:0.949333pt;}
._4{width:2.578560pt;}
._10{width:3.994240pt;}
._8{width:5.612160pt;}
._7{width:6.812160pt;}
._16{width:7.731200pt;}
._b{width:8.696320pt;}
._a{width:10.263680pt;}
._9{width:11.274880pt;}
._15{width:12.488320pt;}
._f{width:13.600640pt;}
._12{width:15.451733pt;}
._11{width:16.381440pt;}
._d{width:17.725440pt;}
._c{width:18.808320pt;}
._17{width:19.773440pt;}
._6{width:21.943040pt;}
._5{width:22.903680pt;}
._e{width:24.066560pt;}
._3{width:32.307840pt;}
._2{width:33.369600pt;}
._18{width:79.905067pt;}
._19{width:83.570987pt;}
.fs7{font-size:16.000000pt;}
.fs4{font-size:37.120000pt;}
.fsa{font-size:40.320000pt;}
.fs3{font-size:42.880000pt;}
.fs8{font-size:50.560000pt;}
.fs6{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs9{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:2.880000pt;}
.y16c{bottom:3.040000pt;}
.y12b{bottom:7.840000pt;}
.y122{bottom:8.320000pt;}
.y127{bottom:8.506667pt;}
.ye7{bottom:10.400000pt;}
.yd3{bottom:10.560000pt;}
.ye2{bottom:10.586667pt;}
.y184{bottom:11.040000pt;}
.y180{bottom:11.200000pt;}
.y11{bottom:12.800000pt;}
.y12f{bottom:16.320000pt;}
.y121{bottom:17.760000pt;}
.y126{bottom:17.946667pt;}
.ye8{bottom:18.080000pt;}
.yd4{bottom:18.240000pt;}
.ye3{bottom:18.266667pt;}
.y123{bottom:18.720000pt;}
.y18{bottom:18.880000pt;}
.y183{bottom:19.040000pt;}
.y128{bottom:19.066667pt;}
.y181{bottom:19.200000pt;}
.y129{bottom:21.280000pt;}
.y12c{bottom:21.760000pt;}
.y12e{bottom:25.760000pt;}
.yde{bottom:25.920000pt;}
.y35{bottom:26.080000pt;}
.y131{bottom:26.720000pt;}
.y189{bottom:27.040000pt;}
.ydc{bottom:33.440000pt;}
.yda{bottom:33.600000pt;}
.y17{bottom:34.240000pt;}
.y188{bottom:35.240000pt;}
.y12a{bottom:37.120000pt;}
.y34{bottom:40.640000pt;}
.y130{bottom:46.560000pt;}
.ydf{bottom:48.960000pt;}
.y16{bottom:49.466667pt;}
.y33{bottom:55.200000pt;}
.ye5{bottom:64.320000pt;}
.y15{bottom:64.826667pt;}
.y32{bottom:69.760000pt;}
.y14{bottom:80.186667pt;}
.y31{bottom:84.320000pt;}
.y19{bottom:84.826667pt;}
.y13{bottom:93.466667pt;}
.y30{bottom:98.880000pt;}
.y2f{bottom:113.440000pt;}
.y2e{bottom:128.000000pt;}
.y1b8{bottom:137.760000pt;}
.y79{bottom:139.680000pt;}
.y43{bottom:140.320000pt;}
.y13f{bottom:141.280000pt;}
.yce{bottom:141.440000pt;}
.y2d{bottom:142.600000pt;}
.y153{bottom:144.026667pt;}
.yec{bottom:144.666667pt;}
.y1e4{bottom:149.306667pt;}
.y112{bottom:149.626667pt;}
.y193{bottom:150.586667pt;}
.y1b7{bottom:153.946667pt;}
.y78{bottom:156.506667pt;}
.y42{bottom:157.146667pt;}
.y2c{bottom:157.160000pt;}
.y13e{bottom:157.466667pt;}
.ycd{bottom:157.626667pt;}
.y163{bottom:159.866667pt;}
.y152{bottom:160.186667pt;}
.yab{bottom:163.066667pt;}
.y1e3{bottom:163.866667pt;}
.y111{bottom:165.626667pt;}
.y192{bottom:166.746667pt;}
.y1b6{bottom:169.946667pt;}
.y2b{bottom:171.720000pt;}
.y77{bottom:173.466667pt;}
.ycc{bottom:173.626667pt;}
.y41{bottom:174.106667pt;}
.y151{bottom:176.346667pt;}
.y1e2{bottom:178.426667pt;}
.yaa{bottom:179.066667pt;}
.yeb{bottom:179.866667pt;}
.y162{bottom:180.986667pt;}
.y110{bottom:181.786667pt;}
.y191{bottom:182.906667pt;}
.y1b5{bottom:186.106667pt;}
.y2a{bottom:186.280000pt;}
.ycb{bottom:189.786667pt;}
.y150{bottom:192.346667pt;}
.yea{bottom:193.146667pt;}
.y76{bottom:194.106667pt;}
.ya9{bottom:195.226667pt;}
.y1e1{bottom:196.986667pt;}
.y13d{bottom:197.626667pt;}
.y10f{bottom:197.786667pt;}
.y40{bottom:198.746667pt;}
.y190{bottom:198.906667pt;}
.y29{bottom:201.000000pt;}
.y1b4{bottom:202.266667pt;}
.yca{bottom:205.946667pt;}
.y14f{bottom:208.506667pt;}
.y75{bottom:211.226667pt;}
.ya8{bottom:211.386667pt;}
.y1e0{bottom:211.546667pt;}
.y9e{bottom:213.466667pt;}
.y13c{bottom:213.786667pt;}
.y3d{bottom:213.800000pt;}
.y18f{bottom:215.066667pt;}
.y3f{bottom:215.386667pt;}
.y28{bottom:215.560000pt;}
.y1b3{bottom:218.266667pt;}
.y10e{bottom:221.946667pt;}
.y1df{bottom:226.106667pt;}
.ya7{bottom:227.386667pt;}
.y74{bottom:228.026667pt;}
.y3c{bottom:229.000000pt;}
.y9d{bottom:229.626667pt;}
.y1a{bottom:229.786667pt;}
.yc9{bottom:229.946667pt;}
.y27{bottom:230.120000pt;}
.y211{bottom:230.586667pt;}
.y18e{bottom:231.226667pt;}
.y14e{bottom:232.506667pt;}
.y1b2{bottom:234.426667pt;}
.y10d{bottom:238.106667pt;}
.ya6{bottom:243.546667pt;}
.y3b{bottom:244.360000pt;}
.y1de{bottom:244.666667pt;}
.y26{bottom:244.680000pt;}
.y73{bottom:244.986667pt;}
.y9c{bottom:245.786667pt;}
.y13b{bottom:245.946667pt;}
.yc8{bottom:246.106667pt;}
.y18d{bottom:247.226667pt;}
.y1b1{bottom:250.586667pt;}
.y210{bottom:252.186667pt;}
.y14d{bottom:253.626667pt;}
.y10c{bottom:254.106667pt;}
.y1dd{bottom:259.226667pt;}
.y25{bottom:259.240000pt;}
.ya5{bottom:259.546667pt;}
.y3a{bottom:259.720000pt;}
.y72{bottom:261.786667pt;}
.yc7{bottom:262.266667pt;}
.y18c{bottom:263.386667pt;}
.y20f{bottom:266.746667pt;}
.y13a{bottom:270.106667pt;}
.y10b{bottom:270.266667pt;}
.y1dc{bottom:273.786667pt;}
.y24{bottom:273.800000pt;}
.y1b0{bottom:274.586667pt;}
.y39{bottom:275.080000pt;}
.y9b{bottom:277.946667pt;}
.yc6{bottom:278.266667pt;}
.y71{bottom:278.586667pt;}
.y18b{bottom:279.546667pt;}
.y20e{bottom:285.306667pt;}
.y23{bottom:288.360000pt;}
.y38{bottom:290.440000pt;}
.y1af{bottom:290.746667pt;}
.y1db{bottom:292.346667pt;}
.y9a{bottom:294.106667pt;}
.y10a{bottom:294.266667pt;}
.ya4{bottom:294.906667pt;}
.y3e{bottom:295.080000pt;}
.y70{bottom:295.546667pt;}
.y20d{bottom:299.866667pt;}
.yc5{bottom:302.426667pt;}
.y22{bottom:302.920000pt;}
.y37{bottom:303.720000pt;}
.y1ae{bottom:306.746667pt;}
.y1da{bottom:306.906667pt;}
.ya3{bottom:308.026667pt;}
.y99{bottom:310.106667pt;}
.y109{bottom:310.426667pt;}
.y139{bottom:311.066667pt;}
.y18a{bottom:311.706667pt;}
.y6f{bottom:312.346667pt;}
.y20c{bottom:314.426667pt;}
.y21{bottom:317.480000pt;}
.y1d9{bottom:321.466667pt;}
.y1ad{bottom:322.906667pt;}
.y108{bottom:326.586667pt;}
.y138{bottom:327.066667pt;}
.yc4{bottom:327.226667pt;}
.y6e{bottom:329.306667pt;}
.y20{bottom:332.040000pt;}
.y20b{bottom:332.986667pt;}
.y187{bottom:333.466667pt;}
.y98{bottom:334.266667pt;}
.y1d8{bottom:340.026667pt;}
.y137{bottom:343.226667pt;}
.yc3{bottom:343.386667pt;}
.y6d{bottom:346.106667pt;}
.y1f{bottom:346.600000pt;}
.y1ac{bottom:346.906667pt;}
.y20a{bottom:347.546667pt;}
.y107{bottom:350.586667pt;}
.y1d7{bottom:354.586667pt;}
.y97{bottom:359.066667pt;}
.yc2{bottom:359.386667pt;}
.y1e{bottom:361.186667pt;}
.y209{bottom:362.146667pt;}
.y6c{bottom:362.946667pt;}
.y1ab{bottom:363.106667pt;}
.y106{bottom:366.786667pt;}
.y136{bottom:367.426667pt;}
.y1d6{bottom:373.186667pt;}
.y96{bottom:375.266667pt;}
.y1d{bottom:375.746667pt;}
.yc1{bottom:376.066667pt;}
.y1aa{bottom:379.266667pt;}
.y6b{bottom:379.906667pt;}
.y208{bottom:380.706667pt;}
.y186{bottom:381.666667pt;}
.y105{bottom:382.946667pt;}
.y1d5{bottom:387.746667pt;}
.y1c{bottom:390.306667pt;}
.y95{bottom:391.266667pt;}
.y135{bottom:392.066667pt;}
.yc0{bottom:394.466667pt;}
.y1a9{bottom:395.266667pt;}
.y6a{bottom:396.706667pt;}
.y1b{bottom:402.946667pt;}
.y1d4{bottom:406.466667pt;}
.y104{bottom:406.946667pt;}
.y94{bottom:407.426667pt;}
.y134{bottom:408.226667pt;}
.y1a8{bottom:411.426667pt;}
.ybf{bottom:412.386667pt;}
.y161{bottom:412.706667pt;}
.y207{bottom:413.826667pt;}
.y185{bottom:413.986667pt;}
.y69{bottom:417.506667pt;}
.y1d3{bottom:421.026667pt;}
.y103{bottom:423.106667pt;}
.y93{bottom:423.586667pt;}
.ya2{bottom:424.226667pt;}
.y133{bottom:424.386667pt;}
.y160{bottom:428.866667pt;}
.y206{bottom:432.386667pt;}
.y68{bottom:434.466667pt;}
.y1a7{bottom:435.426667pt;}
.y1d2{bottom:435.586667pt;}
.ye9{bottom:435.906667pt;}
.ybe{bottom:436.386667pt;}
.ya1{bottom:437.346667pt;}
.y102{bottom:439.266667pt;}
.y92{bottom:439.586667pt;}
.y132{bottom:440.546667pt;}
.y15f{bottom:445.026667pt;}
.y182{bottom:446.146667pt;}
.y205{bottom:446.946667pt;}
.y1d1{bottom:450.146667pt;}
.y67{bottom:451.266667pt;}
.y1a6{bottom:451.586667pt;}
.ybd{bottom:452.546667pt;}
.y15e{bottom:461.186667pt;}
.y12d{bottom:461.506667pt;}
.y101{bottom:463.426667pt;}
.y91{bottom:463.746667pt;}
.ye6{bottom:466.626667pt;}
.y1a5{bottom:467.746667pt;}
.y66{bottom:468.226667pt;}
.ybc{bottom:468.706667pt;}
.y17f{bottom:478.946667pt;}
.y90{bottom:479.906667pt;}
.y204{bottom:480.066667pt;}
.y1d0{bottom:481.026667pt;}
.y14c{bottom:483.426667pt;}
.y1a4{bottom:483.906667pt;}
.ybb{bottom:484.706667pt;}
.y65{bottom:485.026667pt;}
.y15d{bottom:485.186667pt;}
.y100{bottom:488.066667pt;}
.y203{bottom:494.626667pt;}
.y8f{bottom:495.906667pt;}
.ye4{bottom:497.186667pt;}
.y14b{bottom:499.586667pt;}
.y1a3{bottom:499.906667pt;}
.yba{bottom:500.866667pt;}
.y15c{bottom:501.346667pt;}
.y64{bottom:501.986667pt;}
.yff{bottom:504.226667pt;}
.y1cf{bottom:505.826667pt;}
.y202{bottom:509.186667pt;}
.y8e{bottom:512.066667pt;}
.y14a{bottom:515.746667pt;}
.y15b{bottom:517.346667pt;}
.y63{bottom:518.786667pt;}
.yfe{bottom:520.386667pt;}
.y17e{bottom:522.786667pt;}
.y1a2{bottom:523.906667pt;}
.yb9{bottom:524.866667pt;}
.y201{bottom:527.746667pt;}
.y8d{bottom:528.066667pt;}
.y1ce{bottom:530.786667pt;}
.y149{bottom:531.746667pt;}
.y15a{bottom:533.506667pt;}
.y62{bottom:535.586667pt;}
.yfd{bottom:536.386667pt;}
.y12{bottom:539.266667pt;}
.yb8{bottom:541.026667pt;}
.y200{bottom:542.306667pt;}
.y17d{bottom:546.946667pt;}
.y148{bottom:547.906667pt;}
.y1a1{bottom:548.066667pt;}
.y159{bottom:549.666667pt;}
.y8c{bottom:552.226667pt;}
.y61{bottom:552.546667pt;}
.y1cd{bottom:555.586667pt;}
.y1ff{bottom:556.866667pt;}
.yb7{bottom:557.186667pt;}
.y17c{bottom:563.106667pt;}
.y147{bottom:564.066667pt;}
.y1a0{bottom:564.226667pt;}
.y8b{bottom:568.386667pt;}
.yfc{bottom:568.706667pt;}
.y60{bottom:569.346667pt;}
.y1cc{bottom:572.386667pt;}
.yb6{bottom:573.346667pt;}
.y158{bottom:573.666667pt;}
.ye1{bottom:573.826667pt;}
.y1fe{bottom:575.586667pt;}
.y125{bottom:578.466667pt;}
.y17b{bottom:579.266667pt;}
.y19f{bottom:580.386667pt;}
.y8a{bottom:584.413333pt;}
.yfb{bottom:584.733333pt;}
.y146{bottom:588.253333pt;}
.yb5{bottom:589.373333pt;}
.y5f{bottom:590.173333pt;}
.y157{bottom:594.813333pt;}
.y17a{bottom:595.293333pt;}
.y19e{bottom:596.413333pt;}
.y1cb{bottom:596.573333pt;}
.y89{bottom:600.573333pt;}
.yfa{bottom:600.893333pt;}
.ye0{bottom:604.573333pt;}
.y1fd{bottom:604.733333pt;}
.yb4{bottom:605.533333pt;}
.y5e{bottom:607.133333pt;}
.y179{bottom:611.453333pt;}
.y19d{bottom:612.573333pt;}
.y145{bottom:612.893333pt;}
.y88{bottom:616.573333pt;}
.y1ca{bottom:621.373333pt;}
.yb3{bottom:621.533333pt;}
.y1fc{bottom:623.293333pt;}
.y5d{bottom:623.933333pt;}
.yf9{bottom:624.893333pt;}
.y124{bottom:626.813333pt;}
.y178{bottom:627.453333pt;}
.y19c{bottom:628.573333pt;}
.y87{bottom:632.733333pt;}
.y144{bottom:634.013333pt;}
.y1c9{bottom:637.533333pt;}
.y1fb{bottom:637.853333pt;}
.yb2{bottom:638.173333pt;}
.y10{bottom:638.493333pt;}
.y5c{bottom:640.893333pt;}
.yf8{bottom:641.053333pt;}
.y19b{bottom:644.733333pt;}
.y86{bottom:648.893333pt;}
.ydd{bottom:650.493333pt;}
.y177{bottom:651.613333pt;}
.y1fa{bottom:652.413333pt;}
.y1c8{bottom:653.533333pt;}
.yb1{bottom:656.573333pt;}
.yf7{bottom:657.213333pt;}
.y5b{bottom:657.693333pt;}
.y19a{bottom:660.893333pt;}
.y85{bottom:664.893333pt;}
.y176{bottom:667.773333pt;}
.y1c7{bottom:669.693333pt;}
.y1f9{bottom:670.973333pt;}
.yf6{bottom:673.213333pt;}
.yb0{bottom:674.493333pt;}
.y5a{bottom:674.653333pt;}
.yf{bottom:678.013333pt;}
.y175{bottom:683.773333pt;}
.y199{bottom:684.893333pt;}
.y1f8{bottom:685.533333pt;}
.y1c6{bottom:685.853333pt;}
.yf5{bottom:689.373333pt;}
.y84{bottom:689.533333pt;}
.y59{bottom:691.453333pt;}
.ye{bottom:693.373333pt;}
.y174{bottom:699.933333pt;}
.y1f7{bottom:700.093333pt;}
.y198{bottom:701.053333pt;}
.yf4{bottom:705.533333pt;}
.y58{bottom:708.413333pt;}
.yd{bottom:708.733333pt;}
.yaf{bottom:709.693333pt;}
.y1c5{bottom:709.853333pt;}
.ydb{bottom:711.933333pt;}
.y83{bottom:715.933333pt;}
.y197{bottom:717.213333pt;}
.y1f6{bottom:718.653333pt;}
.yf3{bottom:721.533333pt;}
.yae{bottom:722.813333pt;}
.yc{bottom:724.093333pt;}
.y1c4{bottom:726.013333pt;}
.y57{bottom:729.053333pt;}
.y173{bottom:732.093333pt;}
.y120{bottom:733.213333pt;}
.yf2{bottom:737.693333pt;}
.y82{bottom:741.853333pt;}
.y1c3{bottom:742.173333pt;}
.yb{bottom:744.893333pt;}
.y56{bottom:746.013333pt;}
.y1f5{bottom:747.773333pt;}
.y172{bottom:748.253333pt;}
.y11f{bottom:749.373333pt;}
.yf1{bottom:753.693333pt;}
.yd9{bottom:757.853333pt;}
.y1c2{bottom:758.173333pt;}
.y81{bottom:758.973333pt;}
.ya0{bottom:759.453333pt;}
.ya{bottom:761.053333pt;}
.y55{bottom:762.973333pt;}
.y11e{bottom:765.373333pt;}
.y1f4{bottom:766.333333pt;}
.y171{bottom:769.853333pt;}
.y9f{bottom:772.573333pt;}
.y1c1{bottom:774.333333pt;}
.y80{bottom:775.773333pt;}
.y9{bottom:777.053333pt;}
.yf0{bottom:777.853333pt;}
.y54{bottom:779.773333pt;}
.y1f3{bottom:780.893333pt;}
.y11d{bottom:781.533333pt;}
.y170{bottom:786.013333pt;}
.y53{bottom:796.733333pt;}
.y11c{bottom:797.693333pt;}
.y1c0{bottom:798.333333pt;}
.y1f2{bottom:799.453333pt;}
.y7f{bottom:800.613333pt;}
.y16f{bottom:802.213333pt;}
.yef{bottom:802.853333pt;}
.yd8{bottom:803.973333pt;}
.y8{bottom:810.373333pt;}
.y52{bottom:813.573333pt;}
.y11b{bottom:813.733333pt;}
.y1f1{bottom:814.053333pt;}
.y1bf{bottom:814.533333pt;}
.y7e{bottom:817.573333pt;}
.y16e{bottom:818.213333pt;}
.yee{bottom:827.493333pt;}
.y156{bottom:829.733333pt;}
.y11a{bottom:829.893333pt;}
.y1be{bottom:830.693333pt;}
.y1f0{bottom:832.613333pt;}
.y51{bottom:834.213333pt;}
.y7d{bottom:834.373333pt;}
.yd7{bottom:834.533333pt;}
.y7{bottom:839.493333pt;}
.y119{bottom:845.893333pt;}
.y1bd{bottom:846.693333pt;}
.y1ef{bottom:847.173333pt;}
.yed{bottom:848.613333pt;}
.y16d{bottom:850.533333pt;}
.y50{bottom:851.333333pt;}
.y6{bottom:857.893333pt;}
.y118{bottom:862.053333pt;}
.y1bc{bottom:862.853333pt;}
.yd6{bottom:865.253333pt;}
.y1ee{bottom:865.733333pt;}
.y16b{bottom:867.173333pt;}
.y4f{bottom:868.133333pt;}
.y117{bottom:878.213333pt;}
.y1ed{bottom:880.293333pt;}
.y4e{bottom:885.093333pt;}
.y196{bottom:886.213333pt;}
.y1bb{bottom:886.853333pt;}
.y5{bottom:892.293333pt;}
.y116{bottom:894.213333pt;}
.y16a{bottom:895.013333pt;}
.yd5{bottom:895.973333pt;}
.y1ec{bottom:898.853333pt;}
.y4d{bottom:901.893333pt;}
.y1ba{bottom:903.013333pt;}
.y115{bottom:910.373333pt;}
.y195{bottom:911.013333pt;}
.y1eb{bottom:913.413333pt;}
.y4c{bottom:918.693333pt;}
.y169{bottom:919.013333pt;}
.y1b9{bottom:919.173333pt;}
.y4{bottom:923.173333pt;}
.yd2{bottom:926.533333pt;}
.y143{bottom:927.013333pt;}
.y194{bottom:927.173333pt;}
.y1ea{bottom:927.973333pt;}
.y168{bottom:935.173333pt;}
.y4b{bottom:935.653333pt;}
.y114{bottom:942.533333pt;}
.y142{bottom:943.173333pt;}
.y1e9{bottom:946.533333pt;}
.y155{bottom:950.693333pt;}
.y167{bottom:951.333333pt;}
.y4a{bottom:952.453333pt;}
.y7c{bottom:956.293333pt;}
.yd1{bottom:957.253333pt;}
.y141{bottom:959.333333pt;}
.y1e8{bottom:961.093333pt;}
.y113{bottom:966.693333pt;}
.y166{bottom:967.493333pt;}
.y49{bottom:969.413333pt;}
.yd0{bottom:972.613333pt;}
.y7b{bottom:973.413333pt;}
.y154{bottom:975.333333pt;}
.y140{bottom:975.493333pt;}
.y1e7{bottom:979.653333pt;}
.y165{bottom:983.493333pt;}
.ycf{bottom:988.613333pt;}
.y48{bottom:990.053333pt;}
.y7a{bottom:990.213333pt;}
.yad{bottom:991.493333pt;}
.y1e6{bottom:994.213333pt;}
.y47{bottom:1007.013333pt;}
.y164{bottom:1007.493333pt;}
.yac{bottom:1007.653333pt;}
.y1e5{bottom:1008.773333pt;}
.y3{bottom:1038.400000pt;}
.y46{bottom:1039.520000pt;}
.y45{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y44{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.h16{height:15.360000pt;}
.hd{height:15.695312pt;}
.h2e{height:16.000000pt;}
.h2d{height:16.160000pt;}
.h2f{height:16.192000pt;}
.h18{height:30.560000pt;}
.h17{height:30.720000pt;}
.h1c{height:30.752000pt;}
.h31{height:32.160000pt;}
.h30{height:32.320000pt;}
.ha{height:36.000000pt;}
.h6{height:36.715000pt;}
.h10{height:41.672500pt;}
.h5{height:43.380000pt;}
.h1a{height:45.920000pt;}
.h19{height:46.112000pt;}
.h1e{height:46.609688pt;}
.h20{height:47.680000pt;}
.h32{height:48.192000pt;}
.h23{height:48.352000pt;}
.h2b{height:49.417500pt;}
.h11{height:49.597187pt;}
.h33{height:49.621875pt;}
.h15{height:51.663750pt;}
.he{height:52.108438pt;}
.h8{height:52.134375pt;}
.h9{height:53.535000pt;}
.h24{height:53.600000pt;}
.h26{height:54.770625pt;}
.h7{height:55.275000pt;}
.h2c{height:56.760000pt;}
.h2{height:57.787500pt;}
.h1f{height:57.888085pt;}
.hb{height:59.340000pt;}
.h1b{height:61.440000pt;}
.h13{height:62.812500pt;}
.h28{height:63.360000pt;}
.h4{height:64.500000pt;}
.h1d{height:76.640000pt;}
.h25{height:79.065000pt;}
.h3{height:85.785000pt;}
.h22{height:93.035000pt;}
.hc{height:97.312000pt;}
.h27{height:109.035000pt;}
.h29{height:114.265000pt;}
.h21{height:119.385000pt;}
.h2a{height:126.955000pt;}
.h14{height:136.303125pt;}
.h12{height:307.386667pt;}
.hf{height:406.786667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.wa{width:37.280000pt;}
.w12{width:56.480000pt;}
.w13{width:61.152000pt;}
.w11{width:66.560000pt;}
.we{width:70.112000pt;}
.wf{width:74.400000pt;}
.w14{width:76.320000pt;}
.wc{width:79.840000pt;}
.w7{width:87.712000pt;}
.w10{width:95.872000pt;}
.wd{width:101.120000pt;}
.w6{width:131.360000pt;}
.w3{width:211.546667pt;}
.wb{width:233.826667pt;}
.w5{width:361.666667pt;}
.w8{width:382.946667pt;}
.w9{width:563.773333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x40{left:8.480000pt;}
.x33{left:11.040000pt;}
.x43{left:12.960000pt;}
.x21{left:13.920000pt;}
.x44{left:15.840000pt;}
.x42{left:17.120000pt;}
.x3a{left:18.400000pt;}
.x3e{left:20.640000pt;}
.x37{left:22.880000pt;}
.x34{left:24.160000pt;}
.x45{left:25.920000pt;}
.x41{left:27.680000pt;}
.x47{left:32.640000pt;}
.x48{left:35.840000pt;}
.x46{left:40.800000pt;}
.x22{left:64.634667pt;}
.x1f{left:84.314667pt;}
.x5{left:96.031988pt;}
.x23{left:103.834667pt;}
.x6{left:109.152000pt;}
.x49{left:113.791988pt;}
.x2{left:116.671988pt;}
.x1e{left:117.631988pt;}
.x1d{left:120.831988pt;}
.x1b{left:124.671988pt;}
.x1c{left:156.026655pt;}
.xa{left:164.666667pt;}
.x25{left:170.914667pt;}
.x24{left:176.034667pt;}
.x36{left:197.146667pt;}
.xe{left:200.506655pt;}
.x2c{left:204.346655pt;}
.x1a{left:208.026655pt;}
.x26{left:215.394667pt;}
.x15{left:227.386667pt;}
.x28{left:228.354667pt;}
.x27{left:232.834667pt;}
.x31{left:240.186667pt;}
.x11{left:247.066655pt;}
.x30{left:248.066655pt;}
.x2e{left:252.706655pt;}
.x35{left:259.426655pt;}
.x38{left:267.266667pt;}
.x3{left:279.426655pt;}
.x14{left:280.706655pt;}
.x13{left:284.066655pt;}
.x18{left:285.346655pt;}
.x2a{left:300.386655pt;}
.x16{left:315.106667pt;}
.x8{left:320.706667pt;}
.xc{left:333.666655pt;}
.x9{left:336.386667pt;}
.x39{left:341.666667pt;}
.x3b{left:437.533333pt;}
.x32{left:474.013333pt;}
.x3c{left:504.093333pt;}
.x19{left:526.013322pt;}
.x29{left:546.013322pt;}
.x3d{left:560.573333pt;}
.x12{left:566.013322pt;}
.x2f{left:588.453322pt;}
.x2d{left:592.133322pt;}
.x17{left:597.253322pt;}
.xf{left:600.293322pt;}
.xd{left:616.293322pt;}
.x3f{left:621.733333pt;}
.x2b{left:654.213322pt;}
.x20{left:660.293333pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.x10{left:685.093322pt;}
.x4{left:694.533322pt;}
}




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