
    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_d6ef2cd0401b2bb34929dc8d.woff')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_7dab2ddeaacf64d9596bc444.woff')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_09ffc508983831ebb48d4541.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_b4888a58cf8b90c130a20469.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_773f47ebcf0650f449924535.woff')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_752a2fb524730764f98156dd.woff')format("woff");}.ff6{font-family:ff6;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;}
.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(0.271425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v2{vertical-align:-68.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls1b{letter-spacing:-1.260000px;}
.ls16{letter-spacing:-0.774000px;}
.ls24{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.259800px;}
.ls1d{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.133200px;}
.lsa{letter-spacing:-0.113400px;}
.ls17{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.119520px;}
.ls21{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.240127px;}
.ls1a{letter-spacing:0.259800px;}
.ls20{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.366600px;}
.ls7{letter-spacing:0.411600px;}
.ls13{letter-spacing:0.413400px;}
.lsd{letter-spacing:0.446400px;}
.ls8{letter-spacing:0.480000px;}
.ls10{letter-spacing:0.526800px;}
.ls3{letter-spacing:0.537840px;}
.ls12{letter-spacing:0.546600px;}
.ls2{letter-spacing:0.618000px;}
.ls22{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.774000px;}
.lse{letter-spacing:0.896400px;}
.lsc{letter-spacing:0.900132px;}
.lsb{letter-spacing:2.880149px;}
.ls15{letter-spacing:9.540000px;}
.ls18{letter-spacing:55.362720px;}
.ls23{letter-spacing:55.386720px;}
.ls1e{letter-spacing:849.216000px;}
.ls1c{letter-spacing:958.656000px;}
.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;}
}
.ws13{word-spacing:-17.856000px;}
.wsd{word-spacing:-15.836400px;}
.wse{word-spacing:-15.714000px;}
.ws2{word-spacing:-15.558000px;}
.wsa{word-spacing:-15.486600px;}
.ws8{word-spacing:-15.466800px;}
.ws6{word-spacing:-15.420000px;}
.wsb{word-spacing:-15.386400px;}
.wsc{word-spacing:-15.353400px;}
.ws4{word-spacing:-15.306600px;}
.ws10{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.120000px;}
.ws15{word-spacing:-15.093600px;}
.ws0{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.826600px;}
.ws9{word-spacing:-14.806800px;}
.ws14{word-spacing:-14.680200px;}
.ws12{word-spacing:-14.580000px;}
.ws1{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.131600px;}
.ws16{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._a{margin-left:-14.885883px;}
._10{margin-left:-12.480000px;}
._12{margin-left:-11.386800px;}
._13{margin-left:-10.029360px;}
._f{margin-left:-7.740000px;}
._14{margin-left:-5.440320px;}
._11{margin-left:-4.406400px;}
._17{margin-left:-3.298119px;}
._b{margin-left:-2.259561px;}
._1{margin-left:-1.006560px;}
._0{width:1.315920px;}
._8{width:2.385963px;}
._2{width:4.319760px;}
._c{width:5.650368px;}
._d{width:7.044930px;}
._e{width:8.855436px;}
._16{width:10.397040px;}
._1a{width:11.404041px;}
._19{width:12.430080px;}
._18{width:13.685040px;}
._15{width:16.852320px;}
._1d{width:17.868240px;}
._1e{width:19.063440px;}
._9{width:21.655920px;}
._1c{width:22.708800px;}
._26{width:24.141840px;}
._1b{width:25.637040px;}
._38{width:26.831040px;}
._20{width:28.684800px;}
._29{width:29.698320px;}
._27{width:31.374000px;}
._2a{width:33.226560px;}
._22{width:37.385280px;}
._21{width:38.509920px;}
._24{width:42.130800px;}
._30{width:43.145520px;}
._31{width:44.662800px;}
._34{width:53.664480px;}
._33{width:54.859680px;}
._41{width:56.770800px;}
._40{width:57.907440px;}
._3d{width:59.700240px;}
._3e{width:61.051680px;}
._2e{width:62.269920px;}
._2b{width:63.772761px;}
._23{width:64.779840px;}
._2d{width:66.692160px;}
._1f{width:67.947120px;}
._7{width:85.656000px;}
._3c{width:108.039360px;}
._3b{width:109.163760px;}
._37{width:111.082080px;}
._36{width:112.408560px;}
._39{width:120.654240px;}
._3a{width:122.714880px;}
._25{width:132.189120px;}
._45{width:164.862240px;}
._44{width:165.893760px;}
._42{width:182.685120px;}
._43{width:183.833760px;}
._28{width:348.544320px;}
._3{width:369.336000px;}
._3f{width:469.952640px;}
._2f{width:549.851760px;}
._5{width:640.260000px;}
._6{width:687.306000px;}
._2c{width:856.957200px;}
._4{width:1236.540000px;}
._32{width:2153.033280px;}
._35{width:2391.834240px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:2.880000px;}
.fs3{font-size:38.880000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:72.144000px;}
.y110{bottom:-14.835000px;}
.y113{bottom:-14.655000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:3.240000px;}
.y163{bottom:3.285000px;}
.y21{bottom:10.830000px;}
.y15b{bottom:11.880000px;}
.y18a{bottom:13.320000px;}
.y20{bottom:14.070000px;}
.y157{bottom:14.760000px;}
.y1dc{bottom:20.334000px;}
.y12c{bottom:20.340000px;}
.y1d7{bottom:20.385000px;}
.y136{bottom:20.514000px;}
.y2c{bottom:20.520000px;}
.y1c6{bottom:20.550000px;}
.y13b{bottom:20.565000px;}
.y160{bottom:23.445000px;}
.y10f{bottom:23.865000px;}
.y112{bottom:24.045000px;}
.y14{bottom:27.180000px;}
.y18{bottom:27.360000px;}
.y16{bottom:27.405000px;}
.y1a{bottom:27.540000px;}
.y12d{bottom:28.980000px;}
.y137{bottom:29.154000px;}
.y121{bottom:29.160000px;}
.y1f{bottom:31.350000px;}
.y156{bottom:32.040000px;}
.yc{bottom:36.180000px;}
.y2b{bottom:37.620000px;}
.y1ba{bottom:37.665000px;}
.y135{bottom:37.794000px;}
.y119{bottom:37.800000px;}
.y12b{bottom:37.830000px;}
.y131{bottom:37.845000px;}
.y199{bottom:40.680000px;}
.y19c{bottom:42.120000px;}
.y11e{bottom:46.260000px;}
.y1e{bottom:48.630000px;}
.y134{bottom:54.894000px;}
.y2a{bottom:54.900000px;}
.y12a{bottom:54.930000px;}
.y1b2{bottom:55.074000px;}
.y118{bottom:55.080000px;}
.y130{bottom:55.125000px;}
.yb{bottom:55.800000px;}
.y10d{bottom:56.595000px;}
.ya{bottom:71.316000px;}
.y1b1{bottom:72.174000px;}
.y29{bottom:72.180000px;}
.y11c{bottom:72.210000px;}
.y13a{bottom:72.225000px;}
.y123{bottom:72.360000px;}
.y12f{bottom:72.405000px;}
.y1b0{bottom:89.454000px;}
.y28{bottom:89.460000px;}
.y1ae{bottom:89.505000px;}
.y109{bottom:90.690000px;}
.y10b{bottom:93.390000px;}
.y106{bottom:93.570000px;}
.yb6{bottom:100.116000px;}
.y26{bottom:100.440000px;}
.y87{bottom:101.016000px;}
.y155{bottom:102.276000px;}
.yd2{bottom:103.176000px;}
.y103{bottom:104.616000px;}
.y27{bottom:106.740000px;}
.y1b6{bottom:106.785000px;}
.y189{bottom:115.776000px;}
.y1af{bottom:117.216000px;}
.yb5{bottom:117.396000px;}
.y3b{bottom:117.720000px;}
.y1e9{bottom:117.936000px;}
.y86{bottom:118.296000px;}
.yd1{bottom:120.456000px;}
.y102{bottom:121.896000px;}
.y159{bottom:122.436000px;}
.y25{bottom:123.840000px;}
.y1b5{bottom:124.065000px;}
.y5a{bottom:125.316000px;}
.y1bd{bottom:128.556000px;}
.ye6{bottom:131.616000px;}
.y1db{bottom:133.056000px;}
.y133{bottom:134.496000px;}
.yb4{bottom:134.676000px;}
.y3a{bottom:135.000000px;}
.y85{bottom:135.396000px;}
.y18b{bottom:135.936000px;}
.yd0{bottom:137.736000px;}
.y101{bottom:139.176000px;}
.y24{bottom:141.120000px;}
.y59{bottom:142.416000px;}
.y158{bottom:142.776000px;}
.ye5{bottom:148.896000px;}
.y1e8{bottom:151.770000px;}
.yb3{bottom:151.950000px;}
.y39{bottom:152.280000px;}
.y84{bottom:152.670000px;}
.ycf{bottom:155.010000px;}
.y188{bottom:156.270000px;}
.y100{bottom:156.450000px;}
.y58{bottom:159.690000px;}
.y122{bottom:162.930000px;}
.ye4{bottom:166.170000px;}
.yb2{bottom:169.050000px;}
.y38{bottom:169.605000px;}
.y83{bottom:169.950000px;}
.yce{bottom:172.290000px;}
.yff{bottom:173.550000px;}
.y187{bottom:176.430000px;}
.y57{bottom:176.970000px;}
.y1bc{bottom:179.490000px;}
.ye3{bottom:183.450000px;}
.y1da{bottom:183.990000px;}
.y1cc{bottom:185.430000px;}
.yb1{bottom:186.330000px;}
.y37{bottom:186.885000px;}
.y82{bottom:187.230000px;}
.ycd{bottom:189.390000px;}
.yfe{bottom:190.830000px;}
.y56{bottom:194.250000px;}
.y186{bottom:196.950000px;}
.ye2{bottom:200.730000px;}
.y1e7{bottom:202.710000px;}
.y132{bottom:203.430000px;}
.yb0{bottom:203.610000px;}
.y36{bottom:203.985000px;}
.y81{bottom:204.510000px;}
.ycc{bottom:206.670000px;}
.yfd{bottom:208.110000px;}
.y55{bottom:211.530000px;}
.y185{bottom:214.230000px;}
.y154{bottom:217.650000px;}
.ye1{bottom:218.010000px;}
.yaf{bottom:220.890000px;}
.y35{bottom:221.265000px;}
.y80{bottom:221.790000px;}
.ycb{bottom:223.950000px;}
.yfc{bottom:225.390000px;}
.y54{bottom:228.810000px;}
.y1bb{bottom:230.430000px;}
.y1d9{bottom:230.610000px;}
.y184{bottom:231.510000px;}
.ye0{bottom:235.110000px;}
.y1cb{bottom:236.370000px;}
.y1ad{bottom:237.270000px;}
.yae{bottom:238.170000px;}
.y34{bottom:238.545000px;}
.y7f{bottom:238.890000px;}
.yca{bottom:241.230000px;}
.yfb{bottom:242.670000px;}
.y53{bottom:245.910000px;}
.y183{bottom:248.790000px;}
.y120{bottom:249.150000px;}
.ydf{bottom:252.390000px;}
.y1d8{bottom:253.650000px;}
.yad{bottom:255.270000px;}
.y153{bottom:255.450000px;}
.y33{bottom:255.825000px;}
.y7e{bottom:256.170000px;}
.yc9{bottom:258.510000px;}
.yfa{bottom:259.770000px;}
.y52{bottom:263.190000px;}
.y182{bottom:265.890000px;}
.yde{bottom:269.670000px;}
.yac{bottom:272.550000px;}
.y152{bottom:272.730000px;}
.y32{bottom:273.105000px;}
.y7d{bottom:273.450000px;}
.yc8{bottom:275.790000px;}
.yf9{bottom:277.050000px;}
.y51{bottom:280.470000px;}
.y1b9{bottom:281.550000px;}
.y181{bottom:283.170000px;}
.y30{bottom:284.085000px;}
.ydd{bottom:286.950000px;}
.y1ca{bottom:287.490000px;}
.y12e{bottom:289.650000px;}
.yab{bottom:289.830000px;}
.y151{bottom:290.010000px;}
.y31{bottom:290.385000px;}
.y7c{bottom:290.730000px;}
.yc7{bottom:292.890000px;}
.yf8{bottom:294.330000px;}
.y50{bottom:297.750000px;}
.y180{bottom:300.450000px;}
.ydc{bottom:304.230000px;}
.y1d6{bottom:304.770000px;}
.yaa{bottom:307.110000px;}
.y150{bottom:307.290000px;}
.y2f{bottom:307.485000px;}
.y7b{bottom:308.010000px;}
.yc6{bottom:310.170000px;}
.yf7{bottom:311.610000px;}
.y4f{bottom:315.030000px;}
.y17f{bottom:317.775000px;}
.y11f{bottom:318.315000px;}
.ydb{bottom:321.555000px;}
.ya9{bottom:324.435000px;}
.y7a{bottom:325.335000px;}
.yc5{bottom:327.495000px;}
.yf6{bottom:328.935000px;}
.y4e{bottom:332.355000px;}
.y17e{bottom:335.055000px;}
.yda{bottom:338.655000px;}
.ya8{bottom:341.715000px;}
.y79{bottom:342.435000px;}
.yc4{bottom:344.775000px;}
.yf5{bottom:346.215000px;}
.y4d{bottom:349.455000px;}
.y1b8{bottom:349.815000px;}
.y17d{bottom:352.335000px;}
.y1c9{bottom:355.755000px;}
.yd9{bottom:355.935000px;}
.y1ac{bottom:357.195000px;}
.ya7{bottom:358.815000px;}
.y14f{bottom:358.995000px;}
.y78{bottom:359.715000px;}
.yc3{bottom:362.055000px;}
.y23{bottom:362.235000px;}
.yf4{bottom:363.315000px;}
.y17c{bottom:366.195000px;}
.y4c{bottom:366.735000px;}
.yd8{bottom:373.215000px;}
.ya6{bottom:376.095000px;}
.y14e{bottom:376.275000px;}
.y77{bottom:376.995000px;}
.yc2{bottom:379.335000px;}
.yf3{bottom:380.595000px;}
.y4b{bottom:384.015000px;}
.y17b{bottom:386.535000px;}
.y1ab{bottom:386.715000px;}
.yd7{bottom:390.495000px;}
.ya5{bottom:393.375000px;}
.y14d{bottom:393.555000px;}
.y76{bottom:394.275000px;}
.yc1{bottom:396.435000px;}
.yf2{bottom:397.875000px;}
.y4a{bottom:401.295000px;}
.y1aa{bottom:403.995000px;}
.y11d{bottom:404.535000px;}
.y17a{bottom:406.695000px;}
.yd6{bottom:407.775000px;}
.ya4{bottom:410.655000px;}
.y14c{bottom:410.835000px;}
.y75{bottom:411.555000px;}
.yc0{bottom:413.715000px;}
.yf1{bottom:415.155000px;}
.y49{bottom:418.575000px;}
.y1a9{bottom:421.275000px;}
.y1d5{bottom:423.975000px;}
.yd5{bottom:424.875000px;}
.y179{bottom:427.035000px;}
.ya3{bottom:427.935000px;}
.y74{bottom:428.655000px;}
.ybf{bottom:430.995000px;}
.yf0{bottom:432.435000px;}
.y48{bottom:435.855000px;}
.y1a8{bottom:438.555000px;}
.yd4{bottom:442.155000px;}
.ya2{bottom:445.215000px;}
.y73{bottom:445.935000px;}
.y178{bottom:447.555000px;}
.ybe{bottom:448.275000px;}
.yef{bottom:449.715000px;}
.y47{bottom:452.955000px;}
.y1a7{bottom:455.655000px;}
.yd3{bottom:456.195000px;}
.y1c8{bottom:457.815000px;}
.ya1{bottom:462.315000px;}
.y14b{bottom:462.495000px;}
.y72{bottom:463.215000px;}
.y177{bottom:464.655000px;}
.ybd{bottom:465.555000px;}
.yee{bottom:466.815000px;}
.y46{bottom:470.235000px;}
.y10c{bottom:471.420000px;}
.y1a6{bottom:472.935000px;}
.y1d4{bottom:474.915000px;}
.ya0{bottom:479.595000px;}
.y14a{bottom:479.775000px;}
.y71{bottom:480.495000px;}
.y176{bottom:481.935000px;}
.ybc{bottom:482.655000px;}
.yed{bottom:484.095000px;}
.y45{bottom:487.515000px;}
.y1e6{bottom:488.055000px;}
.y1a5{bottom:490.215000px;}
.y9f{bottom:496.875000px;}
.y149{bottom:497.055000px;}
.y70{bottom:497.775000px;}
.y175{bottom:499.215000px;}
.ybb{bottom:499.935000px;}
.yec{bottom:501.375000px;}
.y44{bottom:504.795000px;}
.y1a4{bottom:507.495000px;}
.y11b{bottom:508.035000px;}
.y1c7{bottom:508.755000px;}
.y1e5{bottom:510.915000px;}
.y9e{bottom:514.155000px;}
.y6f{bottom:515.055000px;}
.y174{bottom:516.495000px;}
.yba{bottom:517.215000px;}
.y22{bottom:518.115000px;}
.yeb{bottom:518.655000px;}
.y43{bottom:522.075000px;}
.y1a3{bottom:524.775000px;}
.y1d3{bottom:526.035000px;}
.y129{bottom:531.255000px;}
.y9d{bottom:531.435000px;}
.y6e{bottom:532.155000px;}
.y173{bottom:533.775000px;}
.yb9{bottom:534.495000px;}
.yea{bottom:535.935000px;}
.y42{bottom:539.175000px;}
.y1a2{bottom:542.055000px;}
.y9c{bottom:548.715000px;}
.y6d{bottom:549.435000px;}
.y172{bottom:551.055000px;}
.yb8{bottom:551.775000px;}
.ye9{bottom:553.215000px;}
.y41{bottom:556.455000px;}
.y1a1{bottom:559.155000px;}
.y1c5{bottom:559.695000px;}
.y1d{bottom:560.235000px;}
.y1e4{bottom:562.035000px;}
.y9b{bottom:565.815000px;}
.y148{bottom:565.995000px;}
.y6c{bottom:566.715000px;}
.y171{bottom:568.185000px;}
.yb7{bottom:569.085000px;}
.ye8{bottom:570.345000px;}
.y1a0{bottom:573.225000px;}
.y40{bottom:573.765000px;}
.y1d2{bottom:577.005000px;}
.y9a{bottom:583.125000px;}
.y147{bottom:583.305000px;}
.y98{bottom:584.025000px;}
.ye7{bottom:584.385000px;}
.y170{bottom:585.285000px;}
.y6b{bottom:586.185000px;}
.y3f{bottom:591.045000px;}
.y19b{bottom:593.565000px;}
.y11a{bottom:594.285000px;}
.y99{bottom:597.165000px;}
.y146{bottom:600.585000px;}
.y97{bottom:601.305000px;}
.y6a{bottom:603.465000px;}
.y16f{bottom:605.445000px;}
.y1c4{bottom:606.525000px;}
.y3e{bottom:608.325000px;}
.y1e3{bottom:613.005000px;}
.y19f{bottom:613.725000px;}
.y128{bottom:617.505000px;}
.y145{bottom:617.685000px;}
.y96{bottom:618.585000px;}
.y69{bottom:620.745000px;}
.y1c{bottom:623.625000px;}
.y3d{bottom:625.605000px;}
.y16e{bottom:625.785000px;}
.y10e{bottom:626.940000px;}
.y1d1{bottom:627.945000px;}
.y1c3{bottom:629.565000px;}
.y19e{bottom:634.065000px;}
.y144{bottom:634.965000px;}
.y95{bottom:635.685000px;}
.y68{bottom:638.025000px;}
.y114{bottom:638.460000px;}
.y3c{bottom:642.705000px;}
.y16d{bottom:646.305000px;}
.y143{bottom:652.245000px;}
.y94{bottom:652.965000px;}
.y111{bottom:653.400000px;}
.y67{bottom:655.305000px;}
.y104{bottom:655.665000px;}
.y2e{bottom:657.465000px;}
.y16c{bottom:663.585000px;}
.y1e2{bottom:663.945000px;}
.y1b{bottom:665.565000px;}
.y142{bottom:669.525000px;}
.y93{bottom:670.245000px;}
.y19d{bottom:671.505000px;}
.y66{bottom:672.585000px;}
.y117{bottom:680.505000px;}
.y16b{bottom:680.685000px;}
.y127{bottom:686.445000px;}
.y141{bottom:686.805000px;}
.y92{bottom:687.525000px;}
.y65{bottom:689.685000px;}
.y198{bottom:691.845000px;}
.y1d0{bottom:696.345000px;}
.y1c2{bottom:697.785000px;}
.y16a{bottom:697.965000px;}
.y140{bottom:704.085000px;}
.y91{bottom:704.805000px;}
.y64{bottom:706.965000px;}
.y19{bottom:707.685000px;}
.y19a{bottom:712.005000px;}
.y1e1{bottom:715.065000px;}
.y169{bottom:715.245000px;}
.y13f{bottom:721.185000px;}
.y90{bottom:722.085000px;}
.y63{bottom:724.245000px;}
.y1ed{bottom:726.405000px;}
.y168{bottom:732.525000px;}
.y10a{bottom:734.400000px;}
.y126{bottom:738.285000px;}
.y13e{bottom:738.465000px;}
.y8f{bottom:739.185000px;}
.y62{bottom:741.525000px;}
.y105{bottom:742.320000px;}
.y108{bottom:743.400000px;}
.y1c1{bottom:748.725000px;}
.y197{bottom:749.445000px;}
.y167{bottom:749.805000px;}
.y17{bottom:749.985000px;}
.y13d{bottom:755.745000px;}
.y8e{bottom:756.465000px;}
.y61{bottom:758.805000px;}
.y1cf{bottom:764.565000px;}
.y1e0{bottom:766.005000px;}
.y166{bottom:767.085000px;}
.y116{bottom:769.785000px;}
.y196{bottom:769.965000px;}
.y13c{bottom:773.025000px;}
.y8d{bottom:773.745000px;}
.y1b7{bottom:775.905000px;}
.y60{bottom:776.085000px;}
.y165{bottom:784.185000px;}
.y195{bottom:787.245000px;}
.y115{bottom:789.945000px;}
.y8c{bottom:791.025000px;}
.y15{bottom:792.105000px;}
.y5f{bottom:793.185000px;}
.y164{bottom:798.225000px;}
.y1b4{bottom:798.945000px;}
.y1df{bottom:799.665000px;}
.y1ec{bottom:800.565000px;}
.y194{bottom:804.525000px;}
.y139{bottom:807.225000px;}
.y8b{bottom:808.305000px;}
.y5e{bottom:810.465000px;}
.y107{bottom:812.085000px;}
.y1ce{bottom:815.505000px;}
.y1c0{bottom:816.945000px;}
.y15f{bottom:818.565000px;}
.y193{bottom:821.850000px;}
.y125{bottom:824.550000px;}
.y8a{bottom:825.450000px;}
.y5d{bottom:827.790000px;}
.y13{bottom:834.270000px;}
.y162{bottom:838.770000px;}
.y192{bottom:838.950000px;}
.y89{bottom:842.730000px;}
.y5c{bottom:845.070000px;}
.y1de{bottom:850.830000px;}
.y1eb{bottom:851.550000px;}
.y191{bottom:856.230000px;}
.y161{bottom:859.110000px;}
.y88{bottom:860.010000px;}
.y5b{bottom:862.350000px;}
.y1bf{bottom:868.110000px;}
.y190{bottom:873.510000px;}
.y15e{bottom:876.210000px;}
.y12{bottom:879.450000px;}
.y1cd{bottom:885.210000px;}
.y18f{bottom:890.790000px;}
.y138{bottom:893.490000px;}
.y11{bottom:896.730000px;}
.y1ea{bottom:902.490000px;}
.y18e{bottom:904.830000px;}
.y124{bottom:910.770000px;}
.y10{bottom:914.010000px;}
.y1dd{bottom:919.050000px;}
.y15a{bottom:928.050000px;}
.yf{bottom:931.290000px;}
.y1be{bottom:936.330000px;}
.y18d{bottom:939.210000px;}
.y15d{bottom:945.330000px;}
.ye{bottom:948.570000px;}
.y1b3{bottom:953.610000px;}
.y18c{bottom:959.550000px;}
.y15c{bottom:962.610000px;}
.yd{bottom:965.850000px;}
.y9{bottom:983.670000px;}
.y8{bottom:1003.650000px;}
.y7{bottom:1020.930000px;}
.y6{bottom:1038.930000px;}
.y5{bottom:1055.670000px;}
.y4{bottom:1098.000000px;}
.y3{bottom:1117.980000px;}
.y2{bottom:1135.080000px;}
.y1{bottom:1152.360000px;}
.he{height:2.826563px;}
.h23{height:17.100000px;}
.h25{height:17.136000px;}
.h18{height:17.280000px;}
.h27{height:34.380000px;}
.h2f{height:34.416000px;}
.h29{height:34.560000px;}
.h2e{height:34.596000px;}
.h26{height:37.440000px;}
.h17{height:40.860000px;}
.h6{height:41.220000px;}
.h8{height:41.400000px;}
.h7{height:41.436000px;}
.h9{height:41.580000px;}
.h22{height:51.660000px;}
.h2d{height:51.696000px;}
.h1e{height:51.840000px;}
.h5{height:52.998047px;}
.h10{height:53.573906px;}
.h28{height:54.720000px;}
.h24{height:57.636000px;}
.h20{height:57.780000px;}
.h12{height:58.621992px;}
.h1{height:58.651172px;}
.h21{height:59.014594px;}
.hb{height:59.038594px;}
.h4{height:60.226875px;}
.h11{height:61.423863px;}
.ha{height:62.676000px;}
.h1d{height:68.940000px;}
.h1c{height:69.156000px;}
.h2{height:70.664062px;}
.h15{height:70.805391px;}
.h3{height:72.562500px;}
.h16{height:73.440000px;}
.h19{height:86.220000px;}
.h1a{height:86.256000px;}
.h1f{height:86.436000px;}
.h2a{height:95.220000px;}
.h1b{height:103.500000px;}
.h2b{height:103.536000px;}
.h14{height:107.640000px;}
.h13{height:110.340000px;}
.hd{height:120.600000px;}
.h2c{height:138.096000px;}
.hc{height:155.160000px;}
.hf{height:321.510000px;}
.h0{height:1188.000000px;}
.wc{width:45.900000px;}
.wb{width:46.080000px;}
.w2c{width:55.260000px;}
.w5{width:57.960000px;}
.wf{width:74.880000px;}
.w33{width:75.420000px;}
.w2b{width:75.456000px;}
.w12{width:75.780000px;}
.w2a{width:76.140000px;}
.w28{width:76.320000px;}
.w32{width:76.356000px;}
.w10{width:79.200000px;}
.w11{width:81.756000px;}
.w20{width:90.360000px;}
.w2d{width:96.300000px;}
.w19{width:97.920000px;}
.w18{width:98.676000px;}
.w16{width:99.036000px;}
.w17{width:99.900000px;}
.w34{width:100.260000px;}
.w35{width:101.016000px;}
.w29{width:105.876000px;}
.w13{width:106.776000px;}
.w27{width:111.096000px;}
.w31{width:111.600000px;}
.w21{width:119.376000px;}
.w22{width:127.800000px;}
.w1b{width:132.336000px;}
.w39{width:143.640000px;}
.w26{width:151.560000px;}
.w1a{width:165.060000px;}
.w24{width:175.530000px;}
.w23{width:177.330000px;}
.w7{width:177.840000px;}
.we{width:184.530000px;}
.w8{width:185.940000px;}
.w36{width:187.230000px;}
.w9{width:187.740000px;}
.w37{width:199.830000px;}
.w30{width:202.710000px;}
.w3e{width:204.330000px;}
.w3b{width:205.590000px;}
.wa{width:235.440000px;}
.w2f{width:242.490000px;}
.w15{width:297.390000px;}
.w1e{width:300.270000px;}
.w4{width:318.855000px;}
.w3{width:318.990000px;}
.w38{width:370.875000px;}
.w1d{width:391.575000px;}
.w3c{width:493.635000px;}
.w6{width:567.465000px;}
.w25{width:608.505000px;}
.wd{width:614.805000px;}
.w2{width:638.565000px;}
.w1c{width:696.525000px;}
.w3d{width:699.405000px;}
.w3a{width:700.665000px;}
.w1f{width:701.025000px;}
.w14{width:703.185000px;}
.w2e{width:719.205000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x39{left:4.500000px;}
.x4a{left:5.760000px;}
.x7c{left:6.840000px;}
.xa{left:8.100000px;}
.x3d{left:9.540000px;}
.x35{left:10.650000px;}
.x67{left:13.140000px;}
.x2e{left:14.796000px;}
.x18{left:15.840000px;}
.x33{left:16.995000px;}
.x13{left:19.440000px;}
.x40{left:20.700000px;}
.x30{left:21.855000px;}
.x6d{left:23.040000px;}
.x4c{left:26.460000px;}
.x4f{left:29.340000px;}
.x3b{left:32.040000px;}
.x69{left:34.020000px;}
.x5f{left:36.180000px;}
.x77{left:38.025000px;}
.x6e{left:40.005000px;}
.x76{left:41.940000px;}
.x16{left:45.174000px;}
.x42{left:48.060000px;}
.x6b{left:50.265000px;}
.x19{left:54.000000px;}
.x53{left:58.140000px;}
.x52{left:59.220000px;}
.x7d{left:60.660000px;}
.x6c{left:64.260000px;}
.x43{left:67.140000px;}
.x45{left:68.445000px;}
.x44{left:69.510000px;}
.x55{left:70.920000px;}
.x54{left:72.030000px;}
.x46{left:76.005000px;}
.x7a{left:77.940000px;}
.xe{left:80.850000px;}
.x62{left:84.285000px;}
.x56{left:85.860000px;}
.x51{left:86.970000px;}
.xf{left:89.094000px;}
.x63{left:97.020000px;}
.x1{left:108.035986px;}
.x38{left:109.476000px;}
.xb{left:111.234000px;}
.x2d{left:113.400000px;}
.x5a{left:118.080000px;}
.x65{left:122.265000px;}
.x20{left:124.595986px;}
.x7{left:127.475986px;}
.x9{left:129.096000px;}
.x26{left:135.035986px;}
.x21{left:140.975986px;}
.x15{left:142.236000px;}
.x64{left:146.550000px;}
.x29{left:148.895986px;}
.x2f{left:158.969986px;}
.x22{left:162.029986px;}
.x6a{left:164.730000px;}
.x3{left:169.769986px;}
.x6{left:177.149986px;}
.xc{left:178.959000px;}
.x1c{left:183.645000px;}
.x17{left:200.190000px;}
.x5d{left:202.890000px;}
.x14{left:204.519000px;}
.x10{left:207.759000px;}
.x34{left:217.980000px;}
.x24{left:229.169986px;}
.x37{left:240.519000px;}
.x28{left:254.369986px;}
.x12{left:255.639000px;}
.x66{left:263.910000px;}
.x50{left:274.530000px;}
.x5b{left:281.025000px;}
.x58{left:284.259000px;}
.x2b{left:290.414986px;}
.x3a{left:297.075000px;}
.x11{left:299.739000px;}
.x79{left:310.935000px;}
.x1f{left:315.794986px;}
.x70{left:319.179000px;}
.x5e{left:323.715000px;}
.x8{left:349.814986px;}
.x71{left:355.035000px;}
.x32{left:356.040000px;}
.x57{left:360.254986px;}
.x5c{left:364.394986px;}
.x47{left:372.314986px;}
.x3c{left:373.575000px;}
.x2a{left:375.554986px;}
.x1e{left:378.254986px;}
.x5{left:380.774986px;}
.x1a{left:382.035000px;}
.x48{left:383.834986px;}
.x78{left:387.074986px;}
.x2c{left:391.574986px;}
.x25{left:396.434986px;}
.x6f{left:397.514986px;}
.x49{left:409.935000px;}
.x4{left:414.254986px;}
.x1b{left:446.655000px;}
.xd{left:448.815000px;}
.x60{left:453.135000px;}
.x3e{left:454.215000px;}
.x75{left:456.735000px;}
.x1d{left:457.815000px;}
.x2{left:459.074986px;}
.x59{left:502.665000px;}
.x4b{left:510.405000px;}
.x3f{left:537.405000px;}
.x72{left:559.365000px;}
.x68{left:561.705000px;}
.x36{left:592.560000px;}
.x4d{left:611.745000px;}
.x41{left:614.625000px;}
.x61{left:631.905000px;}
.x31{left:639.360000px;}
.x73{left:672.405000px;}
.x7b{left:683.250000px;}
.x4e{left:711.870000px;}
.x74{left:750.390000px;}
.x27{left:792.149986px;}
.x23{left:819.149986px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls1b{letter-spacing:-1.120000pt;}
.ls16{letter-spacing:-0.688000pt;}
.ls24{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.230933pt;}
.ls1d{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.118400pt;}
.lsa{letter-spacing:-0.100800pt;}
.ls17{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.106240pt;}
.ls21{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.213446pt;}
.ls1a{letter-spacing:0.230933pt;}
.ls20{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.325867pt;}
.ls7{letter-spacing:0.365867pt;}
.ls13{letter-spacing:0.367467pt;}
.lsd{letter-spacing:0.396800pt;}
.ls8{letter-spacing:0.426667pt;}
.ls10{letter-spacing:0.468267pt;}
.ls3{letter-spacing:0.478080pt;}
.ls12{letter-spacing:0.485867pt;}
.ls2{letter-spacing:0.549333pt;}
.ls22{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.688000pt;}
.lse{letter-spacing:0.796800pt;}
.lsc{letter-spacing:0.800117pt;}
.lsb{letter-spacing:2.560132pt;}
.ls15{letter-spacing:8.480000pt;}
.ls18{letter-spacing:49.211307pt;}
.ls23{letter-spacing:49.232640pt;}
.ls1e{letter-spacing:754.858667pt;}
.ls1c{letter-spacing:852.138667pt;}
.ws13{word-spacing:-15.872000pt;}
.wsd{word-spacing:-14.076800pt;}
.wse{word-spacing:-13.968000pt;}
.ws2{word-spacing:-13.829333pt;}
.wsa{word-spacing:-13.765867pt;}
.ws8{word-spacing:-13.748267pt;}
.ws6{word-spacing:-13.706667pt;}
.wsb{word-spacing:-13.676800pt;}
.wsc{word-spacing:-13.647467pt;}
.ws4{word-spacing:-13.605867pt;}
.ws10{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.440000pt;}
.ws15{word-spacing:-13.416533pt;}
.ws0{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.232640pt;}
.ws5{word-spacing:-13.179200pt;}
.ws9{word-spacing:-13.161600pt;}
.ws14{word-spacing:-13.049067pt;}
.ws12{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.005867pt;}
.ws16{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._a{margin-left:-13.231896pt;}
._10{margin-left:-11.093333pt;}
._12{margin-left:-10.121600pt;}
._13{margin-left:-8.914987pt;}
._f{margin-left:-6.880000pt;}
._14{margin-left:-4.835840pt;}
._11{margin-left:-3.916800pt;}
._17{margin-left:-2.931661pt;}
._b{margin-left:-2.008499pt;}
._1{margin-left:-0.894720pt;}
._0{width:1.169707pt;}
._8{width:2.120856pt;}
._2{width:3.839787pt;}
._c{width:5.022550pt;}
._d{width:6.262160pt;}
._e{width:7.871499pt;}
._16{width:9.241813pt;}
._1a{width:10.136925pt;}
._19{width:11.048960pt;}
._18{width:12.164480pt;}
._15{width:14.979840pt;}
._1d{width:15.882880pt;}
._1e{width:16.945280pt;}
._9{width:19.249707pt;}
._1c{width:20.185600pt;}
._26{width:21.459413pt;}
._1b{width:22.788480pt;}
._38{width:23.849813pt;}
._20{width:25.497600pt;}
._29{width:26.398507pt;}
._27{width:27.888000pt;}
._2a{width:29.534720pt;}
._22{width:33.231360pt;}
._21{width:34.231040pt;}
._24{width:37.449600pt;}
._30{width:38.351573pt;}
._31{width:39.700267pt;}
._34{width:47.701760pt;}
._33{width:48.764160pt;}
._41{width:50.462933pt;}
._40{width:51.473280pt;}
._3d{width:53.066880pt;}
._3e{width:54.268160pt;}
._2e{width:55.351040pt;}
._2b{width:56.686899pt;}
._23{width:57.582080pt;}
._2d{width:59.281920pt;}
._1f{width:60.397440pt;}
._7{width:76.138667pt;}
._3c{width:96.034987pt;}
._3b{width:97.034453pt;}
._37{width:98.739627pt;}
._36{width:99.918720pt;}
._39{width:107.248213pt;}
._3a{width:109.079893pt;}
._25{width:117.501440pt;}
._45{width:146.544213pt;}
._44{width:147.461120pt;}
._42{width:162.386773pt;}
._43{width:163.407787pt;}
._28{width:309.817173pt;}
._3{width:328.298667pt;}
._3f{width:417.735680pt;}
._2f{width:488.757120pt;}
._5{width:569.120000pt;}
._6{width:610.938667pt;}
._2c{width:761.739733pt;}
._4{width:1099.146667pt;}
._32{width:1913.807360pt;}
._35{width:2126.074880pt;}
.fs4{font-size:2.560000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:64.128000pt;}
.y110{bottom:-13.186667pt;}
.y113{bottom:-13.026667pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:2.880000pt;}
.y163{bottom:2.920000pt;}
.y21{bottom:9.626667pt;}
.y15b{bottom:10.560000pt;}
.y18a{bottom:11.840000pt;}
.y20{bottom:12.506667pt;}
.y157{bottom:13.120000pt;}
.y1dc{bottom:18.074667pt;}
.y12c{bottom:18.080000pt;}
.y1d7{bottom:18.120000pt;}
.y136{bottom:18.234667pt;}
.y2c{bottom:18.240000pt;}
.y1c6{bottom:18.266667pt;}
.y13b{bottom:18.280000pt;}
.y160{bottom:20.840000pt;}
.y10f{bottom:21.213333pt;}
.y112{bottom:21.373333pt;}
.y14{bottom:24.160000pt;}
.y18{bottom:24.320000pt;}
.y16{bottom:24.360000pt;}
.y1a{bottom:24.480000pt;}
.y12d{bottom:25.760000pt;}
.y137{bottom:25.914667pt;}
.y121{bottom:25.920000pt;}
.y1f{bottom:27.866667pt;}
.y156{bottom:28.480000pt;}
.yc{bottom:32.160000pt;}
.y2b{bottom:33.440000pt;}
.y1ba{bottom:33.480000pt;}
.y135{bottom:33.594667pt;}
.y119{bottom:33.600000pt;}
.y12b{bottom:33.626667pt;}
.y131{bottom:33.640000pt;}
.y199{bottom:36.160000pt;}
.y19c{bottom:37.440000pt;}
.y11e{bottom:41.120000pt;}
.y1e{bottom:43.226667pt;}
.y134{bottom:48.794667pt;}
.y2a{bottom:48.800000pt;}
.y12a{bottom:48.826667pt;}
.y1b2{bottom:48.954667pt;}
.y118{bottom:48.960000pt;}
.y130{bottom:49.000000pt;}
.yb{bottom:49.600000pt;}
.y10d{bottom:50.306667pt;}
.ya{bottom:63.392000pt;}
.y1b1{bottom:64.154667pt;}
.y29{bottom:64.160000pt;}
.y11c{bottom:64.186667pt;}
.y13a{bottom:64.200000pt;}
.y123{bottom:64.320000pt;}
.y12f{bottom:64.360000pt;}
.y1b0{bottom:79.514667pt;}
.y28{bottom:79.520000pt;}
.y1ae{bottom:79.560000pt;}
.y109{bottom:80.613333pt;}
.y10b{bottom:83.013333pt;}
.y106{bottom:83.173333pt;}
.yb6{bottom:88.992000pt;}
.y26{bottom:89.280000pt;}
.y87{bottom:89.792000pt;}
.y155{bottom:90.912000pt;}
.yd2{bottom:91.712000pt;}
.y103{bottom:92.992000pt;}
.y27{bottom:94.880000pt;}
.y1b6{bottom:94.920000pt;}
.y189{bottom:102.912000pt;}
.y1af{bottom:104.192000pt;}
.yb5{bottom:104.352000pt;}
.y3b{bottom:104.640000pt;}
.y1e9{bottom:104.832000pt;}
.y86{bottom:105.152000pt;}
.yd1{bottom:107.072000pt;}
.y102{bottom:108.352000pt;}
.y159{bottom:108.832000pt;}
.y25{bottom:110.080000pt;}
.y1b5{bottom:110.280000pt;}
.y5a{bottom:111.392000pt;}
.y1bd{bottom:114.272000pt;}
.ye6{bottom:116.992000pt;}
.y1db{bottom:118.272000pt;}
.y133{bottom:119.552000pt;}
.yb4{bottom:119.712000pt;}
.y3a{bottom:120.000000pt;}
.y85{bottom:120.352000pt;}
.y18b{bottom:120.832000pt;}
.yd0{bottom:122.432000pt;}
.y101{bottom:123.712000pt;}
.y24{bottom:125.440000pt;}
.y59{bottom:126.592000pt;}
.y158{bottom:126.912000pt;}
.ye5{bottom:132.352000pt;}
.y1e8{bottom:134.906667pt;}
.yb3{bottom:135.066667pt;}
.y39{bottom:135.360000pt;}
.y84{bottom:135.706667pt;}
.ycf{bottom:137.786667pt;}
.y188{bottom:138.906667pt;}
.y100{bottom:139.066667pt;}
.y58{bottom:141.946667pt;}
.y122{bottom:144.826667pt;}
.ye4{bottom:147.706667pt;}
.yb2{bottom:150.266667pt;}
.y38{bottom:150.760000pt;}
.y83{bottom:151.066667pt;}
.yce{bottom:153.146667pt;}
.yff{bottom:154.266667pt;}
.y187{bottom:156.826667pt;}
.y57{bottom:157.306667pt;}
.y1bc{bottom:159.546667pt;}
.ye3{bottom:163.066667pt;}
.y1da{bottom:163.546667pt;}
.y1cc{bottom:164.826667pt;}
.yb1{bottom:165.626667pt;}
.y37{bottom:166.120000pt;}
.y82{bottom:166.426667pt;}
.ycd{bottom:168.346667pt;}
.yfe{bottom:169.626667pt;}
.y56{bottom:172.666667pt;}
.y186{bottom:175.066667pt;}
.ye2{bottom:178.426667pt;}
.y1e7{bottom:180.186667pt;}
.y132{bottom:180.826667pt;}
.yb0{bottom:180.986667pt;}
.y36{bottom:181.320000pt;}
.y81{bottom:181.786667pt;}
.ycc{bottom:183.706667pt;}
.yfd{bottom:184.986667pt;}
.y55{bottom:188.026667pt;}
.y185{bottom:190.426667pt;}
.y154{bottom:193.466667pt;}
.ye1{bottom:193.786667pt;}
.yaf{bottom:196.346667pt;}
.y35{bottom:196.680000pt;}
.y80{bottom:197.146667pt;}
.ycb{bottom:199.066667pt;}
.yfc{bottom:200.346667pt;}
.y54{bottom:203.386667pt;}
.y1bb{bottom:204.826667pt;}
.y1d9{bottom:204.986667pt;}
.y184{bottom:205.786667pt;}
.ye0{bottom:208.986667pt;}
.y1cb{bottom:210.106667pt;}
.y1ad{bottom:210.906667pt;}
.yae{bottom:211.706667pt;}
.y34{bottom:212.040000pt;}
.y7f{bottom:212.346667pt;}
.yca{bottom:214.426667pt;}
.yfb{bottom:215.706667pt;}
.y53{bottom:218.586667pt;}
.y183{bottom:221.146667pt;}
.y120{bottom:221.466667pt;}
.ydf{bottom:224.346667pt;}
.y1d8{bottom:225.466667pt;}
.yad{bottom:226.906667pt;}
.y153{bottom:227.066667pt;}
.y33{bottom:227.400000pt;}
.y7e{bottom:227.706667pt;}
.yc9{bottom:229.786667pt;}
.yfa{bottom:230.906667pt;}
.y52{bottom:233.946667pt;}
.y182{bottom:236.346667pt;}
.yde{bottom:239.706667pt;}
.yac{bottom:242.266667pt;}
.y152{bottom:242.426667pt;}
.y32{bottom:242.760000pt;}
.y7d{bottom:243.066667pt;}
.yc8{bottom:245.146667pt;}
.yf9{bottom:246.266667pt;}
.y51{bottom:249.306667pt;}
.y1b9{bottom:250.266667pt;}
.y181{bottom:251.706667pt;}
.y30{bottom:252.520000pt;}
.ydd{bottom:255.066667pt;}
.y1ca{bottom:255.546667pt;}
.y12e{bottom:257.466667pt;}
.yab{bottom:257.626667pt;}
.y151{bottom:257.786667pt;}
.y31{bottom:258.120000pt;}
.y7c{bottom:258.426667pt;}
.yc7{bottom:260.346667pt;}
.yf8{bottom:261.626667pt;}
.y50{bottom:264.666667pt;}
.y180{bottom:267.066667pt;}
.ydc{bottom:270.426667pt;}
.y1d6{bottom:270.906667pt;}
.yaa{bottom:272.986667pt;}
.y150{bottom:273.146667pt;}
.y2f{bottom:273.320000pt;}
.y7b{bottom:273.786667pt;}
.yc6{bottom:275.706667pt;}
.yf7{bottom:276.986667pt;}
.y4f{bottom:280.026667pt;}
.y17f{bottom:282.466667pt;}
.y11f{bottom:282.946667pt;}
.ydb{bottom:285.826667pt;}
.ya9{bottom:288.386667pt;}
.y7a{bottom:289.186667pt;}
.yc5{bottom:291.106667pt;}
.yf6{bottom:292.386667pt;}
.y4e{bottom:295.426667pt;}
.y17e{bottom:297.826667pt;}
.yda{bottom:301.026667pt;}
.ya8{bottom:303.746667pt;}
.y79{bottom:304.386667pt;}
.yc4{bottom:306.466667pt;}
.yf5{bottom:307.746667pt;}
.y4d{bottom:310.626667pt;}
.y1b8{bottom:310.946667pt;}
.y17d{bottom:313.186667pt;}
.y1c9{bottom:316.226667pt;}
.yd9{bottom:316.386667pt;}
.y1ac{bottom:317.506667pt;}
.ya7{bottom:318.946667pt;}
.y14f{bottom:319.106667pt;}
.y78{bottom:319.746667pt;}
.yc3{bottom:321.826667pt;}
.y23{bottom:321.986667pt;}
.yf4{bottom:322.946667pt;}
.y17c{bottom:325.506667pt;}
.y4c{bottom:325.986667pt;}
.yd8{bottom:331.746667pt;}
.ya6{bottom:334.306667pt;}
.y14e{bottom:334.466667pt;}
.y77{bottom:335.106667pt;}
.yc2{bottom:337.186667pt;}
.yf3{bottom:338.306667pt;}
.y4b{bottom:341.346667pt;}
.y17b{bottom:343.586667pt;}
.y1ab{bottom:343.746667pt;}
.yd7{bottom:347.106667pt;}
.ya5{bottom:349.666667pt;}
.y14d{bottom:349.826667pt;}
.y76{bottom:350.466667pt;}
.yc1{bottom:352.386667pt;}
.yf2{bottom:353.666667pt;}
.y4a{bottom:356.706667pt;}
.y1aa{bottom:359.106667pt;}
.y11d{bottom:359.586667pt;}
.y17a{bottom:361.506667pt;}
.yd6{bottom:362.466667pt;}
.ya4{bottom:365.026667pt;}
.y14c{bottom:365.186667pt;}
.y75{bottom:365.826667pt;}
.yc0{bottom:367.746667pt;}
.yf1{bottom:369.026667pt;}
.y49{bottom:372.066667pt;}
.y1a9{bottom:374.466667pt;}
.y1d5{bottom:376.866667pt;}
.yd5{bottom:377.666667pt;}
.y179{bottom:379.586667pt;}
.ya3{bottom:380.386667pt;}
.y74{bottom:381.026667pt;}
.ybf{bottom:383.106667pt;}
.yf0{bottom:384.386667pt;}
.y48{bottom:387.426667pt;}
.y1a8{bottom:389.826667pt;}
.yd4{bottom:393.026667pt;}
.ya2{bottom:395.746667pt;}
.y73{bottom:396.386667pt;}
.y178{bottom:397.826667pt;}
.ybe{bottom:398.466667pt;}
.yef{bottom:399.746667pt;}
.y47{bottom:402.626667pt;}
.y1a7{bottom:405.026667pt;}
.yd3{bottom:405.506667pt;}
.y1c8{bottom:406.946667pt;}
.ya1{bottom:410.946667pt;}
.y14b{bottom:411.106667pt;}
.y72{bottom:411.746667pt;}
.y177{bottom:413.026667pt;}
.ybd{bottom:413.826667pt;}
.yee{bottom:414.946667pt;}
.y46{bottom:417.986667pt;}
.y10c{bottom:419.040000pt;}
.y1a6{bottom:420.386667pt;}
.y1d4{bottom:422.146667pt;}
.ya0{bottom:426.306667pt;}
.y14a{bottom:426.466667pt;}
.y71{bottom:427.106667pt;}
.y176{bottom:428.386667pt;}
.ybc{bottom:429.026667pt;}
.yed{bottom:430.306667pt;}
.y45{bottom:433.346667pt;}
.y1e6{bottom:433.826667pt;}
.y1a5{bottom:435.746667pt;}
.y9f{bottom:441.666667pt;}
.y149{bottom:441.826667pt;}
.y70{bottom:442.466667pt;}
.y175{bottom:443.746667pt;}
.ybb{bottom:444.386667pt;}
.yec{bottom:445.666667pt;}
.y44{bottom:448.706667pt;}
.y1a4{bottom:451.106667pt;}
.y11b{bottom:451.586667pt;}
.y1c7{bottom:452.226667pt;}
.y1e5{bottom:454.146667pt;}
.y9e{bottom:457.026667pt;}
.y6f{bottom:457.826667pt;}
.y174{bottom:459.106667pt;}
.yba{bottom:459.746667pt;}
.y22{bottom:460.546667pt;}
.yeb{bottom:461.026667pt;}
.y43{bottom:464.066667pt;}
.y1a3{bottom:466.466667pt;}
.y1d3{bottom:467.586667pt;}
.y129{bottom:472.226667pt;}
.y9d{bottom:472.386667pt;}
.y6e{bottom:473.026667pt;}
.y173{bottom:474.466667pt;}
.yb9{bottom:475.106667pt;}
.yea{bottom:476.386667pt;}
.y42{bottom:479.266667pt;}
.y1a2{bottom:481.826667pt;}
.y9c{bottom:487.746667pt;}
.y6d{bottom:488.386667pt;}
.y172{bottom:489.826667pt;}
.yb8{bottom:490.466667pt;}
.ye9{bottom:491.746667pt;}
.y41{bottom:494.626667pt;}
.y1a1{bottom:497.026667pt;}
.y1c5{bottom:497.506667pt;}
.y1d{bottom:497.986667pt;}
.y1e4{bottom:499.586667pt;}
.y9b{bottom:502.946667pt;}
.y148{bottom:503.106667pt;}
.y6c{bottom:503.746667pt;}
.y171{bottom:505.053333pt;}
.yb7{bottom:505.853333pt;}
.ye8{bottom:506.973333pt;}
.y1a0{bottom:509.533333pt;}
.y40{bottom:510.013333pt;}
.y1d2{bottom:512.893333pt;}
.y9a{bottom:518.333333pt;}
.y147{bottom:518.493333pt;}
.y98{bottom:519.133333pt;}
.ye7{bottom:519.453333pt;}
.y170{bottom:520.253333pt;}
.y6b{bottom:521.053333pt;}
.y3f{bottom:525.373333pt;}
.y19b{bottom:527.613333pt;}
.y11a{bottom:528.253333pt;}
.y99{bottom:530.813333pt;}
.y146{bottom:533.853333pt;}
.y97{bottom:534.493333pt;}
.y6a{bottom:536.413333pt;}
.y16f{bottom:538.173333pt;}
.y1c4{bottom:539.133333pt;}
.y3e{bottom:540.733333pt;}
.y1e3{bottom:544.893333pt;}
.y19f{bottom:545.533333pt;}
.y128{bottom:548.893333pt;}
.y145{bottom:549.053333pt;}
.y96{bottom:549.853333pt;}
.y69{bottom:551.773333pt;}
.y1c{bottom:554.333333pt;}
.y3d{bottom:556.093333pt;}
.y16e{bottom:556.253333pt;}
.y10e{bottom:557.280000pt;}
.y1d1{bottom:558.173333pt;}
.y1c3{bottom:559.613333pt;}
.y19e{bottom:563.613333pt;}
.y144{bottom:564.413333pt;}
.y95{bottom:565.053333pt;}
.y68{bottom:567.133333pt;}
.y114{bottom:567.520000pt;}
.y3c{bottom:571.293333pt;}
.y16d{bottom:574.493333pt;}
.y143{bottom:579.773333pt;}
.y94{bottom:580.413333pt;}
.y111{bottom:580.800000pt;}
.y67{bottom:582.493333pt;}
.y104{bottom:582.813333pt;}
.y2e{bottom:584.413333pt;}
.y16c{bottom:589.853333pt;}
.y1e2{bottom:590.173333pt;}
.y1b{bottom:591.613333pt;}
.y142{bottom:595.133333pt;}
.y93{bottom:595.773333pt;}
.y19d{bottom:596.893333pt;}
.y66{bottom:597.853333pt;}
.y117{bottom:604.893333pt;}
.y16b{bottom:605.053333pt;}
.y127{bottom:610.173333pt;}
.y141{bottom:610.493333pt;}
.y92{bottom:611.133333pt;}
.y65{bottom:613.053333pt;}
.y198{bottom:614.973333pt;}
.y1d0{bottom:618.973333pt;}
.y1c2{bottom:620.253333pt;}
.y16a{bottom:620.413333pt;}
.y140{bottom:625.853333pt;}
.y91{bottom:626.493333pt;}
.y64{bottom:628.413333pt;}
.y19{bottom:629.053333pt;}
.y19a{bottom:632.893333pt;}
.y1e1{bottom:635.613333pt;}
.y169{bottom:635.773333pt;}
.y13f{bottom:641.053333pt;}
.y90{bottom:641.853333pt;}
.y63{bottom:643.773333pt;}
.y1ed{bottom:645.693333pt;}
.y168{bottom:651.133333pt;}
.y10a{bottom:652.800000pt;}
.y126{bottom:656.253333pt;}
.y13e{bottom:656.413333pt;}
.y8f{bottom:657.053333pt;}
.y62{bottom:659.133333pt;}
.y105{bottom:659.840000pt;}
.y108{bottom:660.800000pt;}
.y1c1{bottom:665.533333pt;}
.y197{bottom:666.173333pt;}
.y167{bottom:666.493333pt;}
.y17{bottom:666.653333pt;}
.y13d{bottom:671.773333pt;}
.y8e{bottom:672.413333pt;}
.y61{bottom:674.493333pt;}
.y1cf{bottom:679.613333pt;}
.y1e0{bottom:680.893333pt;}
.y166{bottom:681.853333pt;}
.y116{bottom:684.253333pt;}
.y196{bottom:684.413333pt;}
.y13c{bottom:687.133333pt;}
.y8d{bottom:687.773333pt;}
.y1b7{bottom:689.693333pt;}
.y60{bottom:689.853333pt;}
.y165{bottom:697.053333pt;}
.y195{bottom:699.773333pt;}
.y115{bottom:702.173333pt;}
.y8c{bottom:703.133333pt;}
.y15{bottom:704.093333pt;}
.y5f{bottom:705.053333pt;}
.y164{bottom:709.533333pt;}
.y1b4{bottom:710.173333pt;}
.y1df{bottom:710.813333pt;}
.y1ec{bottom:711.613333pt;}
.y194{bottom:715.133333pt;}
.y139{bottom:717.533333pt;}
.y8b{bottom:718.493333pt;}
.y5e{bottom:720.413333pt;}
.y107{bottom:721.853333pt;}
.y1ce{bottom:724.893333pt;}
.y1c0{bottom:726.173333pt;}
.y15f{bottom:727.613333pt;}
.y193{bottom:730.533333pt;}
.y125{bottom:732.933333pt;}
.y8a{bottom:733.733333pt;}
.y5d{bottom:735.813333pt;}
.y13{bottom:741.573333pt;}
.y162{bottom:745.573333pt;}
.y192{bottom:745.733333pt;}
.y89{bottom:749.093333pt;}
.y5c{bottom:751.173333pt;}
.y1de{bottom:756.293333pt;}
.y1eb{bottom:756.933333pt;}
.y191{bottom:761.093333pt;}
.y161{bottom:763.653333pt;}
.y88{bottom:764.453333pt;}
.y5b{bottom:766.533333pt;}
.y1bf{bottom:771.653333pt;}
.y190{bottom:776.453333pt;}
.y15e{bottom:778.853333pt;}
.y12{bottom:781.733333pt;}
.y1cd{bottom:786.853333pt;}
.y18f{bottom:791.813333pt;}
.y138{bottom:794.213333pt;}
.y11{bottom:797.093333pt;}
.y1ea{bottom:802.213333pt;}
.y18e{bottom:804.293333pt;}
.y124{bottom:809.573333pt;}
.y10{bottom:812.453333pt;}
.y1dd{bottom:816.933333pt;}
.y15a{bottom:824.933333pt;}
.yf{bottom:827.813333pt;}
.y1be{bottom:832.293333pt;}
.y18d{bottom:834.853333pt;}
.y15d{bottom:840.293333pt;}
.ye{bottom:843.173333pt;}
.y1b3{bottom:847.653333pt;}
.y18c{bottom:852.933333pt;}
.y15c{bottom:855.653333pt;}
.yd{bottom:858.533333pt;}
.y9{bottom:874.373333pt;}
.y8{bottom:892.133333pt;}
.y7{bottom:907.493333pt;}
.y6{bottom:923.493333pt;}
.y5{bottom:938.373333pt;}
.y4{bottom:976.000000pt;}
.y3{bottom:993.760000pt;}
.y2{bottom:1008.960000pt;}
.y1{bottom:1024.320000pt;}
.he{height:2.512500pt;}
.h23{height:15.200000pt;}
.h25{height:15.232000pt;}
.h18{height:15.360000pt;}
.h27{height:30.560000pt;}
.h2f{height:30.592000pt;}
.h29{height:30.720000pt;}
.h2e{height:30.752000pt;}
.h26{height:33.280000pt;}
.h17{height:36.320000pt;}
.h6{height:36.640000pt;}
.h8{height:36.800000pt;}
.h7{height:36.832000pt;}
.h9{height:36.960000pt;}
.h22{height:45.920000pt;}
.h2d{height:45.952000pt;}
.h1e{height:46.080000pt;}
.h5{height:47.109375pt;}
.h10{height:47.621250pt;}
.h28{height:48.640000pt;}
.h24{height:51.232000pt;}
.h20{height:51.360000pt;}
.h12{height:52.108438pt;}
.h1{height:52.134375pt;}
.h21{height:52.457417pt;}
.hb{height:52.478750pt;}
.h4{height:53.535000pt;}
.h11{height:54.598989pt;}
.ha{height:55.712000pt;}
.h1d{height:61.280000pt;}
.h1c{height:61.472000pt;}
.h2{height:62.812500pt;}
.h15{height:62.938125pt;}
.h3{height:64.500000pt;}
.h16{height:65.280000pt;}
.h19{height:76.640000pt;}
.h1a{height:76.672000pt;}
.h1f{height:76.832000pt;}
.h2a{height:84.640000pt;}
.h1b{height:92.000000pt;}
.h2b{height:92.032000pt;}
.h14{height:95.680000pt;}
.h13{height:98.080000pt;}
.hd{height:107.200000pt;}
.h2c{height:122.752000pt;}
.hc{height:137.920000pt;}
.hf{height:285.786667pt;}
.h0{height:1056.000000pt;}
.wc{width:40.800000pt;}
.wb{width:40.960000pt;}
.w2c{width:49.120000pt;}
.w5{width:51.520000pt;}
.wf{width:66.560000pt;}
.w33{width:67.040000pt;}
.w2b{width:67.072000pt;}
.w12{width:67.360000pt;}
.w2a{width:67.680000pt;}
.w28{width:67.840000pt;}
.w32{width:67.872000pt;}
.w10{width:70.400000pt;}
.w11{width:72.672000pt;}
.w20{width:80.320000pt;}
.w2d{width:85.600000pt;}
.w19{width:87.040000pt;}
.w18{width:87.712000pt;}
.w16{width:88.032000pt;}
.w17{width:88.800000pt;}
.w34{width:89.120000pt;}
.w35{width:89.792000pt;}
.w29{width:94.112000pt;}
.w13{width:94.912000pt;}
.w27{width:98.752000pt;}
.w31{width:99.200000pt;}
.w21{width:106.112000pt;}
.w22{width:113.600000pt;}
.w1b{width:117.632000pt;}
.w39{width:127.680000pt;}
.w26{width:134.720000pt;}
.w1a{width:146.720000pt;}
.w24{width:156.026667pt;}
.w23{width:157.626667pt;}
.w7{width:158.080000pt;}
.we{width:164.026667pt;}
.w8{width:165.280000pt;}
.w36{width:166.426667pt;}
.w9{width:166.880000pt;}
.w37{width:177.626667pt;}
.w30{width:180.186667pt;}
.w3e{width:181.626667pt;}
.w3b{width:182.746667pt;}
.wa{width:209.280000pt;}
.w2f{width:215.546667pt;}
.w15{width:264.346667pt;}
.w1e{width:266.906667pt;}
.w4{width:283.426667pt;}
.w3{width:283.546667pt;}
.w38{width:329.666667pt;}
.w1d{width:348.066667pt;}
.w3c{width:438.786667pt;}
.w6{width:504.413333pt;}
.w25{width:540.893333pt;}
.wd{width:546.493333pt;}
.w2{width:567.613333pt;}
.w1c{width:619.133333pt;}
.w3d{width:621.693333pt;}
.w3a{width:622.813333pt;}
.w1f{width:623.133333pt;}
.w14{width:625.053333pt;}
.w2e{width:639.293333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x39{left:4.000000pt;}
.x4a{left:5.120000pt;}
.x7c{left:6.080000pt;}
.xa{left:7.200000pt;}
.x3d{left:8.480000pt;}
.x35{left:9.466667pt;}
.x67{left:11.680000pt;}
.x2e{left:13.152000pt;}
.x18{left:14.080000pt;}
.x33{left:15.106667pt;}
.x13{left:17.280000pt;}
.x40{left:18.400000pt;}
.x30{left:19.426667pt;}
.x6d{left:20.480000pt;}
.x4c{left:23.520000pt;}
.x4f{left:26.080000pt;}
.x3b{left:28.480000pt;}
.x69{left:30.240000pt;}
.x5f{left:32.160000pt;}
.x77{left:33.800000pt;}
.x6e{left:35.560000pt;}
.x76{left:37.280000pt;}
.x16{left:40.154667pt;}
.x42{left:42.720000pt;}
.x6b{left:44.680000pt;}
.x19{left:48.000000pt;}
.x53{left:51.680000pt;}
.x52{left:52.640000pt;}
.x7d{left:53.920000pt;}
.x6c{left:57.120000pt;}
.x43{left:59.680000pt;}
.x45{left:60.840000pt;}
.x44{left:61.786667pt;}
.x55{left:63.040000pt;}
.x54{left:64.026667pt;}
.x46{left:67.560000pt;}
.x7a{left:69.280000pt;}
.xe{left:71.866667pt;}
.x62{left:74.920000pt;}
.x56{left:76.320000pt;}
.x51{left:77.306667pt;}
.xf{left:79.194667pt;}
.x63{left:86.240000pt;}
.x1{left:96.031988pt;}
.x38{left:97.312000pt;}
.xb{left:98.874667pt;}
.x2d{left:100.800000pt;}
.x5a{left:104.960000pt;}
.x65{left:108.680000pt;}
.x20{left:110.751988pt;}
.x7{left:113.311988pt;}
.x9{left:114.752000pt;}
.x26{left:120.031988pt;}
.x21{left:125.311988pt;}
.x15{left:126.432000pt;}
.x64{left:130.266667pt;}
.x29{left:132.351988pt;}
.x2f{left:141.306655pt;}
.x22{left:144.026655pt;}
.x6a{left:146.426667pt;}
.x3{left:150.906655pt;}
.x6{left:157.466655pt;}
.xc{left:159.074667pt;}
.x1c{left:163.240000pt;}
.x17{left:177.946667pt;}
.x5d{left:180.346667pt;}
.x14{left:181.794667pt;}
.x10{left:184.674667pt;}
.x34{left:193.760000pt;}
.x24{left:203.706655pt;}
.x37{left:213.794667pt;}
.x28{left:226.106655pt;}
.x12{left:227.234667pt;}
.x66{left:234.586667pt;}
.x50{left:244.026667pt;}
.x5b{left:249.800000pt;}
.x58{left:252.674667pt;}
.x2b{left:258.146655pt;}
.x3a{left:264.066667pt;}
.x11{left:266.434667pt;}
.x79{left:276.386667pt;}
.x1f{left:280.706655pt;}
.x70{left:283.714667pt;}
.x5e{left:287.746667pt;}
.x8{left:310.946655pt;}
.x71{left:315.586667pt;}
.x32{left:316.480000pt;}
.x57{left:320.226655pt;}
.x5c{left:323.906655pt;}
.x47{left:330.946655pt;}
.x3c{left:332.066667pt;}
.x2a{left:333.826655pt;}
.x1e{left:336.226655pt;}
.x5{left:338.466655pt;}
.x1a{left:339.586667pt;}
.x48{left:341.186655pt;}
.x78{left:344.066655pt;}
.x2c{left:348.066655pt;}
.x25{left:352.386655pt;}
.x6f{left:353.346655pt;}
.x49{left:364.386667pt;}
.x4{left:368.226655pt;}
.x1b{left:397.026667pt;}
.xd{left:398.946667pt;}
.x60{left:402.786667pt;}
.x3e{left:403.746667pt;}
.x75{left:405.986667pt;}
.x1d{left:406.946667pt;}
.x2{left:408.066655pt;}
.x59{left:446.813333pt;}
.x4b{left:453.693333pt;}
.x3f{left:477.693333pt;}
.x72{left:497.213333pt;}
.x68{left:499.293333pt;}
.x36{left:526.720000pt;}
.x4d{left:543.773333pt;}
.x41{left:546.333333pt;}
.x61{left:561.693333pt;}
.x31{left:568.320000pt;}
.x73{left:597.693333pt;}
.x7b{left:607.333333pt;}
.x4e{left:632.773333pt;}
.x74{left:667.013333pt;}
.x27{left:704.133321pt;}
.x23{left:728.133321pt;}
}




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