
    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_45301efa1f59b09c3a1fda5b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_c16970d319cb2750a45f8c2c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.928711;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_1a57bb6a927bb7a1f90ff648.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.122070;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_95dff0eaafffbc48aae1ff2a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_63a37977befad443d1f87bd8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_256a6a558a3d990043590fd2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_2dbd5826961c7047cd525d08.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d8058be162ec8b2991ce087b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.122070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d7979b6de18b0b9581e5d76f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.738770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ec476808d5cc83be445bb9fb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104004;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:ffb;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c1610b65abf00ea77c1aebba.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.196289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.774000px;}
.ls8{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.648000px;}
.lsa{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.504000px;}
.ls5{letter-spacing:-0.334200px;}
.lse{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.219000px;}
.ls16{letter-spacing:-0.216000px;}
.ls1{letter-spacing:-0.181200px;}
.ls23{letter-spacing:-0.175800px;}
.ls21{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.051840px;}
.ls24{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.144720px;}
.ls3{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.269280px;}
.ls1f{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.696000px;}
.ls18{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.900000px;}
.ls13{letter-spacing:1.440000px;}
.ls1d{letter-spacing:3.185280px;}
.ls2{letter-spacing:7.200000px;}
.ls20{letter-spacing:8.100000px;}
.ls1c{letter-spacing:9.665280px;}
.ls1b{letter-spacing:10.385280px;}
.ls15{letter-spacing:11.520000px;}
.ls1e{letter-spacing:13.985280px;}
.ls19{letter-spacing:37.440000px;}
.ls1a{letter-spacing:87.984000px;}
.ls22{letter-spacing:846.180000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(68,84,106),0 0.015em rgb(68,84,106),0.015em 0 rgb(68,84,106),0 -0.015em  rgb(68,84,106);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(68,84,106);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15{word-spacing:-72.000000px;}
.ws1{word-spacing:-49.870080px;}
.ws2{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.900080px;}
.ws16{word-spacing:-18.288000px;}
.wsf{word-spacing:-18.072000px;}
.ws10{word-spacing:-18.000000px;}
.ws17{word-spacing:-17.856000px;}
.ws14{word-spacing:-17.784000px;}
.ws11{word-spacing:-17.712000px;}
.ws13{word-spacing:-17.064000px;}
.ws6{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.788160px;}
.ws5{word-spacing:-15.621000px;}
.ws7{word-spacing:-15.505800px;}
.wsa{word-spacing:-15.120000px;}
.ws9{word-spacing:-15.066000px;}
.wsb{word-spacing:-13.716000px;}
.wsd{word-spacing:-13.518000px;}
.wsc{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.229520px;}
.wse{word-spacing:-12.996000px;}
.ws18{word-spacing:-12.186000px;}
.ws12{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
._32{margin-left:-5.303040px;}
._f{margin-left:-4.279680px;}
._10{margin-left:-3.213120px;}
._13{margin-left:-2.135040px;}
._6{margin-left:-1.004160px;}
._0{width:1.171200px;}
._4{width:2.474160px;}
._e{width:4.245120px;}
._d{width:5.403120px;}
._2{width:7.195200px;}
._3{width:8.904240px;}
._8{width:9.968160px;}
._a{width:11.916240px;}
._11{width:13.084560px;}
._14{width:14.366880px;}
._9{width:16.314480px;}
._12{width:18.487680px;}
._5{width:19.744800px;}
._15{width:21.048000px;}
._1b{width:22.237200px;}
._1f{width:23.899680px;}
._1a{width:25.628160px;}
._18{width:27.000000px;}
._19{width:28.132800px;}
._1{width:29.700720px;}
._7{width:31.099200px;}
._30{width:32.916000px;}
._16{width:34.056000px;}
._17{width:35.136000px;}
._2f{width:36.144000px;}
._31{width:37.779360px;}
._29{width:39.165840px;}
._26{width:40.538160px;}
._25{width:41.765040px;}
._b{width:43.086960px;}
._c{width:44.389920px;}
._2b{width:45.468000px;}
._1e{width:49.228560px;}
._2d{width:51.138000px;}
._2e{width:53.028000px;}
._37{width:54.826800px;}
._27{width:55.836000px;}
._23{width:60.014880px;}
._1c{width:61.139520px;}
._36{width:66.528000px;}
._2a{width:70.794000px;}
._2c{width:72.522000px;}
._35{width:75.474000px;}
._1d{width:79.082640px;}
._24{width:81.434160px;}
._34{width:93.744000px;}
._33{width:95.094000px;}
._20{width:105.818400px;}
._22{width:155.353680px;}
._28{width:182.574000px;}
._21{width:218.282400px;}
.fc4{color:rgb(0,32,96);}
.fc3{color:transparent;}
.fc2{color:rgb(68,84,106);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs5{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs6{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fsb{font-size:90.000000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:149.760000px;}
.y1d6{bottom:-105.120150px;}
.y32{bottom:-83.700000px;}
.y22{bottom:-72.900000px;}
.y1d5{bottom:-68.760000px;}
.y31{bottom:-56.520000px;}
.y21{bottom:-36.540000px;}
.y30{bottom:-33.660000px;}
.y1d4{bottom:-32.760000px;}
.y1d3{bottom:-16.380000px;}
.y2f{bottom:-10.980000px;}
.y20{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.y24{bottom:0.975000px;}
.y84{bottom:2.700000px;}
.y89{bottom:2.880000px;}
.yb3{bottom:3.060000px;}
.y9{bottom:3.780000px;}
.y1a2{bottom:6.479850px;}
.yb{bottom:7.560000px;}
.y8{bottom:9.540000px;}
.y82{bottom:10.080000px;}
.y88{bottom:10.260000px;}
.ya6{bottom:10.620000px;}
.y10c{bottom:10.800000px;}
.y2e{bottom:11.880000px;}
.y86{bottom:17.280000px;}
.y83{bottom:17.460000px;}
.y1d2{bottom:17.820000px;}
.y1f{bottom:18.045000px;}
.y7{bottom:18.180000px;}
.ya7{bottom:18.360000px;}
.yb2{bottom:18.540000px;}
.y29{bottom:22.755000px;}
.y8d{bottom:24.660000px;}
.yae{bottom:26.100000px;}
.yaa{bottom:26.280000px;}
.y130{bottom:26.325000px;}
.y8e{bottom:32.040000px;}
.yab{bottom:34.020000px;}
.y133{bottom:34.065000px;}
.y2d{bottom:34.785000px;}
.y1e{bottom:36.405000px;}
.yf{bottom:36.900000px;}
.y1d1{bottom:41.436000px;}
.yad{bottom:41.760000px;}
.y131{bottom:41.805000px;}
.ye{bottom:43.560000px;}
.yaf{bottom:49.500000px;}
.y132{bottom:49.545000px;}
.y6{bottom:50.580000px;}
.y27{bottom:53.100000px;}
.y1d{bottom:54.765000px;}
.y2c{bottom:57.465000px;}
.y1d0{bottom:65.190000px;}
.y19e{bottom:72.000000px;}
.y1c{bottom:73.125000px;}
.y18a{bottom:74.700000px;}
.y65{bottom:76.860000px;}
.ya4{bottom:77.940000px;}
.y1cf{bottom:79.770000px;}
.yf7{bottom:79.920000px;}
.y2b{bottom:80.325000px;}
.y64{bottom:81.360000px;}
.y136{bottom:82.260000px;}
.y108{bottom:83.880000px;}
.y15a{bottom:88.020000px;}
.y80{bottom:91.080000px;}
.y18f{bottom:92.700000px;}
.ye1{bottom:95.040000px;}
.y189{bottom:95.400000px;}
.y12a{bottom:98.640000px;}
.y144{bottom:100.620000px;}
.y63{bottom:101.340000px;}
.y1ce{bottom:103.530000px;}
.y62{bottom:105.840000px;}
.y1b6{bottom:107.100000px;}
.ya3{bottom:109.080000px;}
.y1b{bottom:109.305000px;}
.y17a{bottom:110.700000px;}
.yf6{bottom:110.880000px;}
.yc7{bottom:113.400000px;}
.y107{bottom:114.840000px;}
.y159{bottom:118.980000px;}
.y143{bottom:121.320000px;}
.y7f{bottom:122.040000px;}
.ye0{bottom:126.180000px;}
.y61{bottom:126.900000px;}
.y1cd{bottom:127.110000px;}
.y1a{bottom:127.665000px;}
.y129{bottom:129.600000px;}
.y179{bottom:131.400000px;}
.y188{bottom:134.100000px;}
.ya2{bottom:140.076000px;}
.yf5{bottom:142.056000px;}
.yc6{bottom:144.396000px;}
.y106{bottom:146.016000px;}
.y19{bottom:146.025000px;}
.y158{bottom:150.150000px;}
.y1cc{bottom:150.690000px;}
.y178{bottom:152.130000px;}
.y142{bottom:152.310000px;}
.y7e{bottom:153.210000px;}
.y187{bottom:154.830000px;}
.yd{bottom:156.090000px;}
.ydf{bottom:157.170000px;}
.y128{bottom:160.770000px;}
.y18{bottom:164.205000px;}
.y19d{bottom:170.130000px;}
.ya1{bottom:171.210000px;}
.y18e{bottom:172.830000px;}
.yf4{bottom:173.010000px;}
.y1cb{bottom:174.450000px;}
.yc5{bottom:175.530000px;}
.y105{bottom:176.970000px;}
.y60{bottom:180.930000px;}
.y157{bottom:181.110000px;}
.y17{bottom:182.565000px;}
.y141{bottom:183.450000px;}
.y7d{bottom:184.170000px;}
.yde{bottom:188.310000px;}
.y1ca{bottom:189.030000px;}
.y177{bottom:190.830000px;}
.y127{bottom:191.730000px;}
.y186{bottom:193.530000px;}
.y5f{bottom:199.110000px;}
.ya0{bottom:202.170000px;}
.yf3{bottom:204.150000px;}
.yc4{bottom:206.490000px;}
.y104{bottom:207.930000px;}
.y176{bottom:211.530000px;}
.y156{bottom:212.250000px;}
.y1c9{bottom:212.790000px;}
.y185{bottom:214.230000px;}
.y140{bottom:214.410000px;}
.y7c{bottom:215.310000px;}
.y16{bottom:218.925000px;}
.ydd{bottom:219.270000px;}
.y126{bottom:222.870000px;}
.y5e{bottom:226.290000px;}
.y19c{bottom:229.530000px;}
.y18d{bottom:232.230000px;}
.y9f{bottom:233.310000px;}
.y1a1{bottom:234.930000px;}
.yf2{bottom:235.110000px;}
.y1c8{bottom:236.370000px;}
.y15{bottom:237.285000px;}
.yc3{bottom:237.630000px;}
.y103{bottom:239.070000px;}
.y155{bottom:243.210000px;}
.y5d{bottom:244.290000px;}
.y13f{bottom:245.550000px;}
.y7b{bottom:246.270000px;}
.ydc{bottom:250.230000px;}
.y1c7{bottom:250.950000px;}
.y184{bottom:252.930000px;}
.y125{bottom:253.830000px;}
.y14{bottom:255.465000px;}
.y5c{bottom:262.470000px;}
.y9e{bottom:264.270000px;}
.yf1{bottom:266.250000px;}
.yc2{bottom:268.590000px;}
.y102{bottom:270.030000px;}
.y175{bottom:270.930000px;}
.y1a0{bottom:273.630000px;}
.y13{bottom:273.855000px;}
.y154{bottom:274.350000px;}
.y1c6{bottom:274.890000px;}
.y13e{bottom:276.510000px;}
.y7a{bottom:277.230000px;}
.y5b{bottom:280.470000px;}
.ydb{bottom:281.370000px;}
.y124{bottom:284.970000px;}
.y135{bottom:287.850000px;}
.y19b{bottom:288.930000px;}
.y174{bottom:291.630000px;}
.y9d{bottom:295.410000px;}
.yf0{bottom:297.210000px;}
.y5a{bottom:298.650000px;}
.yc1{bottom:299.730000px;}
.y134{bottom:299.910000px;}
.y101{bottom:301.170000px;}
.y153{bottom:305.310000px;}
.y13d{bottom:307.650000px;}
.y79{bottom:308.370000px;}
.y1c5{bottom:309.135000px;}
.yda{bottom:312.330000px;}
.y123{bottom:315.930000px;}
.y59{bottom:316.830000px;}
.y1c4{bottom:323.895000px;}
.y9c{bottom:326.370000px;}
.y19a{bottom:327.630000px;}
.yef{bottom:328.350000px;}
.y173{bottom:330.330000px;}
.yc0{bottom:330.690000px;}
.y100{bottom:332.130000px;}
.y58{bottom:334.830000px;}
.y152{bottom:336.450000px;}
.y13c{bottom:338.610000px;}
.y78{bottom:339.330000px;}
.yd9{bottom:343.470000px;}
.y122{bottom:347.070000px;}
.y1c3{bottom:347.475000px;}
.y199{bottom:348.330000px;}
.y172{bottom:351.030000px;}
.y57{bottom:353.010000px;}
.y9b{bottom:357.510000px;}
.yee{bottom:359.310000px;}
.y2a{bottom:360.210000px;}
.ybf{bottom:361.830000px;}
.y12f{bottom:362.730000px;}
.yff{bottom:363.270000px;}
.y13b{bottom:366.870000px;}
.y151{bottom:367.410000px;}
.y198{bottom:369.030000px;}
.y77{bottom:370.470000px;}
.y56{bottom:371.010000px;}
.y1c2{bottom:371.055000px;}
.y183{bottom:371.730000px;}
.yd8{bottom:374.430000px;}
.y121{bottom:378.030000px;}
.y13a{bottom:378.210000px;}
.y9a{bottom:388.515000px;}
.y55{bottom:389.235000px;}
.y171{bottom:389.775000px;}
.yed{bottom:390.495000px;}
.ybe{bottom:392.835000px;}
.yfe{bottom:394.275000px;}
.y1c1{bottom:394.815000px;}
.y150{bottom:398.595000px;}
.y76{bottom:401.475000px;}
.yd7{bottom:405.615000px;}
.y1b5{bottom:406.875000px;}
.y54{bottom:407.415000px;}
.y197{bottom:407.775000px;}
.y120{bottom:409.035000px;}
.y170{bottom:410.475000px;}
.y1c0{bottom:418.395000px;}
.y99{bottom:419.655000px;}
.yec{bottom:421.455000px;}
.ybd{bottom:423.975000px;}
.y53{bottom:425.415000px;}
.y12e{bottom:425.595000px;}
.y196{bottom:428.475000px;}
.y14f{bottom:429.555000px;}
.y182{bottom:431.175000px;}
.y75{bottom:432.615000px;}
.y1bf{bottom:432.975000px;}
.yd6{bottom:436.575000px;}
.y1b4{bottom:437.835000px;}
.y11f{bottom:440.175000px;}
.y52{bottom:443.595000px;}
.y16f{bottom:449.175000px;}
.y98{bottom:450.615000px;}
.yeb{bottom:452.595000px;}
.ybc{bottom:454.935000px;}
.yfd{bottom:456.375000px;}
.y1be{bottom:456.735000px;}
.y1b3{bottom:457.815000px;}
.y14e{bottom:460.695000px;}
.y51{bottom:461.775000px;}
.y74{bottom:463.575000px;}
.y26{bottom:465.915000px;}
.y28{bottom:466.020000px;}
.y195{bottom:467.175000px;}
.yd5{bottom:467.715000px;}
.y16e{bottom:469.875000px;}
.y11e{bottom:471.135000px;}
.y12d{bottom:472.935000px;}
.y50{bottom:479.775000px;}
.y1bd{bottom:480.675000px;}
.y97{bottom:481.755000px;}
.yea{bottom:483.555000px;}
.ybb{bottom:486.075000px;}
.yc{bottom:486.615000px;}
.yfc{bottom:487.515000px;}
.y194{bottom:487.875000px;}
.y181{bottom:490.575000px;}
.y14d{bottom:491.655000px;}
.y1b2{bottom:493.815000px;}
.y73{bottom:494.715000px;}
.yd4{bottom:498.675000px;}
.y11d{bottom:502.275000px;}
.y4f{bottom:506.775000px;}
.y16d{bottom:508.575000px;}
.y19f{bottom:511.275000px;}
.y96{bottom:512.715000px;}
.ye9{bottom:514.695000px;}
.y1bc{bottom:514.875000px;}
.yba{bottom:517.035000px;}
.y12c{bottom:520.275000px;}
.y14c{bottom:522.795000px;}
.y72{bottom:525.675000px;}
.y193{bottom:526.575000px;}
.yfb{bottom:527.475000px;}
.y16c{bottom:529.275000px;}
.yd3{bottom:529.815000px;}
.y11c{bottom:533.235000px;}
.y1b1{bottom:533.775000px;}
.y4e{bottom:539.175000px;}
.y1bb{bottom:539.205000px;}
.y95{bottom:543.855000px;}
.ye8{bottom:545.655000px;}
.y192{bottom:547.275000px;}
.yb9{bottom:548.175000px;}
.y180{bottom:549.975000px;}
.y25{bottom:552.420000px;}
.y14b{bottom:553.755000px;}
.y71{bottom:556.815000px;}
.yd2{bottom:560.775000px;}
.y11b{bottom:564.375000px;}
.y1b0{bottom:564.915000px;}
.y12b{bottom:567.615000px;}
.y16b{bottom:567.975000px;}
.yfa{bottom:571.035000px;}
.y4d{bottom:572.115000px;}
.y94{bottom:574.815000px;}
.y1ba{bottom:575.205000px;}
.ye7{bottom:576.615000px;}
.yb8{bottom:579.135000px;}
.y14a{bottom:584.715000px;}
.y191{bottom:585.975000px;}
.y70{bottom:587.775000px;}
.y16a{bottom:588.675000px;}
.y10{bottom:589.215000px;}
.y4c{bottom:590.295000px;}
.yd1{bottom:591.915000px;}
.y11a{bottom:595.335000px;}
.y1af{bottom:595.875000px;}
.yf9{bottom:603.615000px;}
.y23{bottom:605.340000px;}
.y93{bottom:605.955000px;}
.y190{bottom:606.675000px;}
.ye6{bottom:607.755000px;}
.y17f{bottom:609.375000px;}
.y1b9{bottom:609.945000px;}
.yb7{bottom:610.095000px;}
.yf8{bottom:614.955000px;}
.y149{bottom:615.855000px;}
.ya{bottom:616.395000px;}
.y4b{bottom:617.295000px;}
.y6f{bottom:618.915000px;}
.y1a3{bottom:619.635150px;}
.yd0{bottom:622.875000px;}
.y119{bottom:626.475000px;}
.y1ae{bottom:627.015000px;}
.y169{bottom:627.375000px;}
.y4a{bottom:635.475000px;}
.y92{bottom:636.915000px;}
.ye5{bottom:638.715000px;}
.yb6{bottom:641.265000px;}
.y33{bottom:644.685000px;}
.y1b8{bottom:646.305000px;}
.y148{bottom:646.845000px;}
.y168{bottom:648.105000px;}
.y6e{bottom:649.905000px;}
.y49{bottom:653.685000px;}
.ycf{bottom:654.045000px;}
.y118{bottom:657.465000px;}
.y1ad{bottom:658.005000px;}
.y147{bottom:666.105000px;}
.y91{bottom:668.085000px;}
.y17e{bottom:668.805000px;}
.ye4{bottom:669.885000px;}
.y48{bottom:671.865000px;}
.yb5{bottom:672.225000px;}
.y146{bottom:677.445000px;}
.y6d{bottom:681.045000px;}
.y1b7{bottom:682.305000px;}
.yce{bottom:685.005000px;}
.y167{bottom:686.805000px;}
.y117{bottom:688.605000px;}
.ye3{bottom:689.145000px;}
.y47{bottom:689.865000px;}
.yb4{bottom:691.485000px;}
.y90{bottom:699.045000px;}
.ye2{bottom:700.485000px;}
.yb1{bottom:703.545000px;}
.y166{bottom:707.505000px;}
.y46{bottom:708.045000px;}
.y6c{bottom:712.005000px;}
.ycd{bottom:716.145000px;}
.y8f{bottom:718.305000px;}
.y116{bottom:719.565000px;}
.y1ac{bottom:720.105000px;}
.y45{bottom:726.225000px;}
.y17d{bottom:728.205000px;}
.y8c{bottom:730.365000px;}
.yb0{bottom:735.405000px;}
.y6b{bottom:743.145000px;}
.y44{bottom:744.225000px;}
.y139{bottom:744.405000px;}
.y165{bottom:746.205000px;}
.ycc{bottom:747.105000px;}
.y115{bottom:750.705000px;}
.y1ab{bottom:751.245000px;}
.y43{bottom:762.405000px;}
.y138{bottom:765.105000px;}
.y164{bottom:766.905000px;}
.y6a{bottom:774.105000px;}
.y8b{bottom:775.005000px;}
.ycb{bottom:778.245000px;}
.y42{bottom:780.405000px;}
.y114{bottom:781.665000px;}
.y1aa{bottom:782.205000px;}
.yac{bottom:782.745000px;}
.y17c{bottom:787.605000px;}
.y137{bottom:796.245000px;}
.y41{bottom:798.585000px;}
.y8a{bottom:805.065000px;}
.y69{bottom:805.245000px;}
.y163{bottom:805.605000px;}
.yca{bottom:809.205000px;}
.y113{bottom:812.805000px;}
.y1a9{bottom:813.345000px;}
.y40{bottom:816.765000px;}
.y162{bottom:826.305000px;}
.y3f{bottom:834.765000px;}
.y87{bottom:835.125000px;}
.y68{bottom:836.205000px;}
.y112{bottom:843.765000px;}
.y1a8{bottom:844.305000px;}
.ya9{bottom:845.565000px;}
.y17b{bottom:847.005000px;}
.yc9{bottom:849.345000px;}
.y3e{bottom:852.945000px;}
.y161{bottom:865.005000px;}
.y85{bottom:865.365000px;}
.y67{bottom:867.345000px;}
.y3d{bottom:870.945000px;}
.y111{bottom:874.905000px;}
.y1a7{bottom:875.445000px;}
.y160{bottom:885.705000px;}
.y12{bottom:888.405000px;}
.yc8{bottom:889.305000px;}
.ya8{bottom:892.950000px;}
.y81{bottom:895.470000px;}
.y3c{bottom:898.170000px;}
.y66{bottom:898.350000px;}
.y110{bottom:905.910000px;}
.y15f{bottom:906.450000px;}
.y1d7{bottom:912.210000px;}
.ya5{bottom:924.810000px;}
.y10f{bottom:925.170000px;}
.y3b{bottom:929.490000px;}
.y10e{bottom:937.230000px;}
.y1a6{bottom:937.590000px;}
.y15e{bottom:945.150000px;}
.y39{bottom:960.450000px;}
.y15d{bottom:965.850000px;}
.y3a{bottom:967.290000px;}
.y1a5{bottom:968.550000px;}
.y10d{bottom:969.090000px;}
.y18c{bottom:986.550000px;}
.y37{bottom:991.590000px;}
.y38{bottom:998.430000px;}
.y10b{bottom:1000.770000px;}
.y15c{bottom:1004.550000px;}
.y1a4{bottom:1007.250000px;}
.y36{bottom:1022.550000px;}
.y15b{bottom:1025.250000px;}
.y10a{bottom:1032.630000px;}
.y18b{bottom:1045.950000px;}
.y35{bottom:1053.690000px;}
.y145{bottom:1063.950000px;}
.y109{bottom:1064.490000px;}
.y34{bottom:1084.650000px;}
.y11{bottom:1087.350000px;}
.y5{bottom:1105.350000px;}
.y4{bottom:1123.710000px;}
.y3{bottom:1138.110000px;}
.y2{bottom:1230.300000px;}
.y1{bottom:1248.480000px;}
.h2d{height:15.480000px;}
.h5{height:24.156000px;}
.h3{height:28.440000px;}
.hc{height:28.980000px;}
.h20{height:29.196000px;}
.h1e{height:29.340000px;}
.h24{height:30.960000px;}
.h29{height:31.140000px;}
.h1b{height:32.273438px;}
.h12{height:35.261367px;}
.h17{height:39.760312px;}
.h23{height:43.246406px;}
.h22{height:43.920000px;}
.h1f{height:45.403945px;}
.h21{height:45.828281px;}
.h28{height:46.620000px;}
.h26{height:46.656000px;}
.h25{height:47.961914px;}
.h2b{height:47.980898px;}
.h1c{height:48.410156px;}
.h2a{height:48.761719px;}
.ha{height:53.573906px;}
.h4{height:53.709961px;}
.h33{height:55.291992px;}
.h18{height:56.275312px;}
.h6{height:56.649375px;}
.h19{height:56.801250px;}
.h8{height:57.959925px;}
.h16{height:59.343750px;}
.h2{height:59.439023px;}
.h32{height:61.189805px;}
.h27{height:62.100000px;}
.h2e{height:62.136000px;}
.h15{height:63.949219px;}
.h1d{height:64.546875px;}
.h13{height:65.884219px;}
.h1a{height:69.065156px;}
.h31{height:79.620469px;}
.h2c{height:80.683594px;}
.hf{height:91.177734px;}
.h11{height:100.656000px;}
.hd{height:109.102500px;}
.h7{height:170.490000px;}
.h14{height:173.700000px;}
.h10{height:181.620000px;}
.he{height:181.650000px;}
.h34{height:189.000000px;}
.hb{height:306.255000px;}
.h30{height:754.845000px;}
.h9{height:1188.900000px;}
.h2f{height:1249.740000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:39.960000px;}
.w6{width:88.560000px;}
.w1e{width:96.516000px;}
.w1d{width:96.660000px;}
.w19{width:96.840000px;}
.w1c{width:96.876000px;}
.w16{width:113.760000px;}
.w11{width:115.200000px;}
.w1f{width:127.620000px;}
.w13{width:144.216000px;}
.w15{width:146.736000px;}
.w17{width:153.390000px;}
.w18{width:153.570000px;}
.w12{width:155.550000px;}
.w14{width:161.310000px;}
.wf{width:198.210000px;}
.w23{width:213.330000px;}
.wa{width:255.060000px;}
.w21{width:276.375000px;}
.w1b{width:290.235000px;}
.w1a{width:290.415000px;}
.wb{width:295.200000px;}
.w20{width:308.415000px;}
.we{width:320.790000px;}
.wd{width:320.940000px;}
.wc{width:321.015000px;}
.w22{width:325.695000px;}
.w9{width:326.415000px;}
.w4{width:351.975000px;}
.w3{width:397.545000px;}
.w8{width:847.620000px;}
.w7{width:848.520000px;}
.w10{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x12{left:-2.055000px;}
.x0{left:0.000000px;}
.xa{left:4.860000px;}
.x6{left:8.676000px;}
.x3d{left:9.720000px;}
.xc{left:10.800000px;}
.x34{left:12.780000px;}
.x30{left:15.120000px;}
.x2f{left:16.920000px;}
.x33{left:18.360000px;}
.x54{left:20.700000px;}
.xe{left:22.320000px;}
.x31{left:23.760000px;}
.x49{left:25.560000px;}
.x3c{left:27.180000px;}
.x32{left:29.160000px;}
.x2b{left:30.240000px;}
.x47{left:31.500000px;}
.xd{left:33.120000px;}
.x45{left:34.914000px;}
.x2e{left:36.540000px;}
.x18{left:37.620000px;}
.x35{left:41.580000px;}
.x55{left:43.200000px;}
.x53{left:46.614000px;}
.x4e{left:52.374000px;}
.x28{left:57.234000px;}
.x4{left:64.439987px;}
.x4c{left:67.859987px;}
.x24{left:68.939987px;}
.x5{left:73.080000px;}
.x19{left:82.800000px;}
.x37{left:98.136000px;}
.x27{left:100.656000px;}
.x52{left:103.365000px;}
.x4d{left:105.876000px;}
.x44{left:110.385000px;}
.x1a{left:113.400000px;}
.x25{left:117.575987px;}
.x41{left:122.976000px;}
.x1d{left:126.215987px;}
.x50{left:131.085000px;}
.x16{left:133.125000px;}
.x8{left:137.385000px;}
.x56{left:150.869987px;}
.x26{left:155.729987px;}
.x15{left:160.410000px;}
.x10{left:163.110000px;}
.x36{left:175.709987px;}
.x1b{left:187.245000px;}
.x59{left:202.545000px;}
.x3f{left:205.589987px;}
.x38{left:211.890000px;}
.x29{left:215.850000px;}
.x42{left:219.810000px;}
.x1c{left:227.009987px;}
.x3e{left:228.989987px;}
.x4f{left:233.490000px;}
.x23{left:280.514987px;}
.x40{left:299.594987px;}
.x46{left:316.695000px;}
.x39{left:365.295000px;}
.x2a{left:371.415000px;}
.x3{left:388.694987px;}
.x14{left:406.155000px;}
.xf{left:408.135000px;}
.x17{left:411.945000px;}
.x48{left:413.565000px;}
.x13{left:419.760000px;}
.x11{left:439.560000px;}
.x1e{left:442.004987px;}
.x58{left:456.225000px;}
.x1{left:461.804987px;}
.x7{left:470.625000px;}
.x43{left:510.945000px;}
.x2c{left:515.625000px;}
.x3a{left:518.865000px;}
.x51{left:541.905000px;}
.x1f{left:577.004987px;}
.x22{left:580.469987px;}
.x4a{left:607.470000px;}
.x3b{left:672.450000px;}
.x2d{left:676.950000px;}
.x4b{left:704.310000px;}
.x57{left:779.579987px;}
.x2{left:782.279987px;}
.xb{left:803.880000px;}
.x20{left:813.599973px;}
.x21{left:819.719987px;}
.x9{left:838.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.688000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.576000pt;}
.lsa{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.448000pt;}
.ls5{letter-spacing:-0.297067pt;}
.lse{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.194667pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:-0.161067pt;}
.ls23{letter-spacing:-0.156267pt;}
.ls21{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.046080pt;}
.ls24{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.128640pt;}
.ls3{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.239360pt;}
.ls1f{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.618667pt;}
.ls18{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.800000pt;}
.ls13{letter-spacing:1.280000pt;}
.ls1d{letter-spacing:2.831360pt;}
.ls2{letter-spacing:6.400000pt;}
.ls20{letter-spacing:7.200000pt;}
.ls1c{letter-spacing:8.591360pt;}
.ls1b{letter-spacing:9.231360pt;}
.ls15{letter-spacing:10.240000pt;}
.ls1e{letter-spacing:12.431360pt;}
.ls19{letter-spacing:33.280000pt;}
.ls1a{letter-spacing:78.208000pt;}
.ls22{letter-spacing:752.160000pt;}
.ws15{word-spacing:-64.000000pt;}
.ws1{word-spacing:-44.328960pt;}
.ws2{word-spacing:-19.237120pt;}
.ws0{word-spacing:-17.688960pt;}
.ws16{word-spacing:-16.256000pt;}
.wsf{word-spacing:-16.064000pt;}
.ws10{word-spacing:-16.000000pt;}
.ws17{word-spacing:-15.872000pt;}
.ws14{word-spacing:-15.808000pt;}
.ws11{word-spacing:-15.744000pt;}
.ws13{word-spacing:-15.168000pt;}
.ws6{word-spacing:-14.080000pt;}
.ws8{word-spacing:-14.033920pt;}
.ws5{word-spacing:-13.885333pt;}
.ws7{word-spacing:-13.782933pt;}
.wsa{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.392000pt;}
.wsb{word-spacing:-12.192000pt;}
.wsd{word-spacing:-12.016000pt;}
.wsc{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.759573pt;}
.wse{word-spacing:-11.552000pt;}
.ws18{word-spacing:-10.832000pt;}
.ws12{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
._32{margin-left:-4.713813pt;}
._f{margin-left:-3.804160pt;}
._10{margin-left:-2.856107pt;}
._13{margin-left:-1.897813pt;}
._6{margin-left:-0.892587pt;}
._0{width:1.041067pt;}
._4{width:2.199253pt;}
._e{width:3.773440pt;}
._d{width:4.802773pt;}
._2{width:6.395733pt;}
._3{width:7.914880pt;}
._8{width:8.860587pt;}
._a{width:10.592213pt;}
._11{width:11.630720pt;}
._14{width:12.770560pt;}
._9{width:14.501760pt;}
._12{width:16.433493pt;}
._5{width:17.550933pt;}
._15{width:18.709333pt;}
._1b{width:19.766400pt;}
._1f{width:21.244160pt;}
._1a{width:22.780587pt;}
._18{width:24.000000pt;}
._19{width:25.006933pt;}
._1{width:26.400640pt;}
._7{width:27.643733pt;}
._30{width:29.258667pt;}
._16{width:30.272000pt;}
._17{width:31.232000pt;}
._2f{width:32.128000pt;}
._31{width:33.581653pt;}
._29{width:34.814080pt;}
._26{width:36.033920pt;}
._25{width:37.124480pt;}
._b{width:38.299520pt;}
._c{width:39.457707pt;}
._2b{width:40.416000pt;}
._1e{width:43.758720pt;}
._2d{width:45.456000pt;}
._2e{width:47.136000pt;}
._37{width:48.734933pt;}
._27{width:49.632000pt;}
._23{width:53.346560pt;}
._1c{width:54.346240pt;}
._36{width:59.136000pt;}
._2a{width:62.928000pt;}
._2c{width:64.464000pt;}
._35{width:67.088000pt;}
._1d{width:70.295680pt;}
._24{width:72.385920pt;}
._34{width:83.328000pt;}
._33{width:84.528000pt;}
._20{width:94.060800pt;}
._22{width:138.092160pt;}
._28{width:162.288000pt;}
._21{width:194.028800pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs6{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fsb{font-size:80.000000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:133.120000pt;}
.y1d6{bottom:-93.440133pt;}
.y32{bottom:-74.400000pt;}
.y22{bottom:-64.800000pt;}
.y1d5{bottom:-61.120000pt;}
.y31{bottom:-50.240000pt;}
.y21{bottom:-32.480000pt;}
.y30{bottom:-29.920000pt;}
.y1d4{bottom:-29.120000pt;}
.y1d3{bottom:-14.560000pt;}
.y2f{bottom:-9.760000pt;}
.y20{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:0.866667pt;}
.y84{bottom:2.400000pt;}
.y89{bottom:2.560000pt;}
.yb3{bottom:2.720000pt;}
.y9{bottom:3.360000pt;}
.y1a2{bottom:5.759867pt;}
.yb{bottom:6.720000pt;}
.y8{bottom:8.480000pt;}
.y82{bottom:8.960000pt;}
.y88{bottom:9.120000pt;}
.ya6{bottom:9.440000pt;}
.y10c{bottom:9.600000pt;}
.y2e{bottom:10.560000pt;}
.y86{bottom:15.360000pt;}
.y83{bottom:15.520000pt;}
.y1d2{bottom:15.840000pt;}
.y1f{bottom:16.040000pt;}
.y7{bottom:16.160000pt;}
.ya7{bottom:16.320000pt;}
.yb2{bottom:16.480000pt;}
.y29{bottom:20.226667pt;}
.y8d{bottom:21.920000pt;}
.yae{bottom:23.200000pt;}
.yaa{bottom:23.360000pt;}
.y130{bottom:23.400000pt;}
.y8e{bottom:28.480000pt;}
.yab{bottom:30.240000pt;}
.y133{bottom:30.280000pt;}
.y2d{bottom:30.920000pt;}
.y1e{bottom:32.360000pt;}
.yf{bottom:32.800000pt;}
.y1d1{bottom:36.832000pt;}
.yad{bottom:37.120000pt;}
.y131{bottom:37.160000pt;}
.ye{bottom:38.720000pt;}
.yaf{bottom:44.000000pt;}
.y132{bottom:44.040000pt;}
.y6{bottom:44.960000pt;}
.y27{bottom:47.200000pt;}
.y1d{bottom:48.680000pt;}
.y2c{bottom:51.080000pt;}
.y1d0{bottom:57.946667pt;}
.y19e{bottom:64.000000pt;}
.y1c{bottom:65.000000pt;}
.y18a{bottom:66.400000pt;}
.y65{bottom:68.320000pt;}
.ya4{bottom:69.280000pt;}
.y1cf{bottom:70.906667pt;}
.yf7{bottom:71.040000pt;}
.y2b{bottom:71.400000pt;}
.y64{bottom:72.320000pt;}
.y136{bottom:73.120000pt;}
.y108{bottom:74.560000pt;}
.y15a{bottom:78.240000pt;}
.y80{bottom:80.960000pt;}
.y18f{bottom:82.400000pt;}
.ye1{bottom:84.480000pt;}
.y189{bottom:84.800000pt;}
.y12a{bottom:87.680000pt;}
.y144{bottom:89.440000pt;}
.y63{bottom:90.080000pt;}
.y1ce{bottom:92.026667pt;}
.y62{bottom:94.080000pt;}
.y1b6{bottom:95.200000pt;}
.ya3{bottom:96.960000pt;}
.y1b{bottom:97.160000pt;}
.y17a{bottom:98.400000pt;}
.yf6{bottom:98.560000pt;}
.yc7{bottom:100.800000pt;}
.y107{bottom:102.080000pt;}
.y159{bottom:105.760000pt;}
.y143{bottom:107.840000pt;}
.y7f{bottom:108.480000pt;}
.ye0{bottom:112.160000pt;}
.y61{bottom:112.800000pt;}
.y1cd{bottom:112.986667pt;}
.y1a{bottom:113.480000pt;}
.y129{bottom:115.200000pt;}
.y179{bottom:116.800000pt;}
.y188{bottom:119.200000pt;}
.ya2{bottom:124.512000pt;}
.yf5{bottom:126.272000pt;}
.yc6{bottom:128.352000pt;}
.y106{bottom:129.792000pt;}
.y19{bottom:129.800000pt;}
.y158{bottom:133.466667pt;}
.y1cc{bottom:133.946667pt;}
.y178{bottom:135.226667pt;}
.y142{bottom:135.386667pt;}
.y7e{bottom:136.186667pt;}
.y187{bottom:137.626667pt;}
.yd{bottom:138.746667pt;}
.ydf{bottom:139.706667pt;}
.y128{bottom:142.906667pt;}
.y18{bottom:145.960000pt;}
.y19d{bottom:151.226667pt;}
.ya1{bottom:152.186667pt;}
.y18e{bottom:153.626667pt;}
.yf4{bottom:153.786667pt;}
.y1cb{bottom:155.066667pt;}
.yc5{bottom:156.026667pt;}
.y105{bottom:157.306667pt;}
.y60{bottom:160.826667pt;}
.y157{bottom:160.986667pt;}
.y17{bottom:162.280000pt;}
.y141{bottom:163.066667pt;}
.y7d{bottom:163.706667pt;}
.yde{bottom:167.386667pt;}
.y1ca{bottom:168.026667pt;}
.y177{bottom:169.626667pt;}
.y127{bottom:170.426667pt;}
.y186{bottom:172.026667pt;}
.y5f{bottom:176.986667pt;}
.ya0{bottom:179.706667pt;}
.yf3{bottom:181.466667pt;}
.yc4{bottom:183.546667pt;}
.y104{bottom:184.826667pt;}
.y176{bottom:188.026667pt;}
.y156{bottom:188.666667pt;}
.y1c9{bottom:189.146667pt;}
.y185{bottom:190.426667pt;}
.y140{bottom:190.586667pt;}
.y7c{bottom:191.386667pt;}
.y16{bottom:194.600000pt;}
.ydd{bottom:194.906667pt;}
.y126{bottom:198.106667pt;}
.y5e{bottom:201.146667pt;}
.y19c{bottom:204.026667pt;}
.y18d{bottom:206.426667pt;}
.y9f{bottom:207.386667pt;}
.y1a1{bottom:208.826667pt;}
.yf2{bottom:208.986667pt;}
.y1c8{bottom:210.106667pt;}
.y15{bottom:210.920000pt;}
.yc3{bottom:211.226667pt;}
.y103{bottom:212.506667pt;}
.y155{bottom:216.186667pt;}
.y5d{bottom:217.146667pt;}
.y13f{bottom:218.266667pt;}
.y7b{bottom:218.906667pt;}
.ydc{bottom:222.426667pt;}
.y1c7{bottom:223.066667pt;}
.y184{bottom:224.826667pt;}
.y125{bottom:225.626667pt;}
.y14{bottom:227.080000pt;}
.y5c{bottom:233.306667pt;}
.y9e{bottom:234.906667pt;}
.yf1{bottom:236.666667pt;}
.yc2{bottom:238.746667pt;}
.y102{bottom:240.026667pt;}
.y175{bottom:240.826667pt;}
.y1a0{bottom:243.226667pt;}
.y13{bottom:243.426667pt;}
.y154{bottom:243.866667pt;}
.y1c6{bottom:244.346667pt;}
.y13e{bottom:245.786667pt;}
.y7a{bottom:246.426667pt;}
.y5b{bottom:249.306667pt;}
.ydb{bottom:250.106667pt;}
.y124{bottom:253.306667pt;}
.y135{bottom:255.866667pt;}
.y19b{bottom:256.826667pt;}
.y174{bottom:259.226667pt;}
.y9d{bottom:262.586667pt;}
.yf0{bottom:264.186667pt;}
.y5a{bottom:265.466667pt;}
.yc1{bottom:266.426667pt;}
.y134{bottom:266.586667pt;}
.y101{bottom:267.706667pt;}
.y153{bottom:271.386667pt;}
.y13d{bottom:273.466667pt;}
.y79{bottom:274.106667pt;}
.y1c5{bottom:274.786667pt;}
.yda{bottom:277.626667pt;}
.y123{bottom:280.826667pt;}
.y59{bottom:281.626667pt;}
.y1c4{bottom:287.906667pt;}
.y9c{bottom:290.106667pt;}
.y19a{bottom:291.226667pt;}
.yef{bottom:291.866667pt;}
.y173{bottom:293.626667pt;}
.yc0{bottom:293.946667pt;}
.y100{bottom:295.226667pt;}
.y58{bottom:297.626667pt;}
.y152{bottom:299.066667pt;}
.y13c{bottom:300.986667pt;}
.y78{bottom:301.626667pt;}
.yd9{bottom:305.306667pt;}
.y122{bottom:308.506667pt;}
.y1c3{bottom:308.866667pt;}
.y199{bottom:309.626667pt;}
.y172{bottom:312.026667pt;}
.y57{bottom:313.786667pt;}
.y9b{bottom:317.786667pt;}
.yee{bottom:319.386667pt;}
.y2a{bottom:320.186667pt;}
.ybf{bottom:321.626667pt;}
.y12f{bottom:322.426667pt;}
.yff{bottom:322.906667pt;}
.y13b{bottom:326.106667pt;}
.y151{bottom:326.586667pt;}
.y198{bottom:328.026667pt;}
.y77{bottom:329.306667pt;}
.y56{bottom:329.786667pt;}
.y1c2{bottom:329.826667pt;}
.y183{bottom:330.426667pt;}
.yd8{bottom:332.826667pt;}
.y121{bottom:336.026667pt;}
.y13a{bottom:336.186667pt;}
.y9a{bottom:345.346667pt;}
.y55{bottom:345.986667pt;}
.y171{bottom:346.466667pt;}
.yed{bottom:347.106667pt;}
.ybe{bottom:349.186667pt;}
.yfe{bottom:350.466667pt;}
.y1c1{bottom:350.946667pt;}
.y150{bottom:354.306667pt;}
.y76{bottom:356.866667pt;}
.yd7{bottom:360.546667pt;}
.y1b5{bottom:361.666667pt;}
.y54{bottom:362.146667pt;}
.y197{bottom:362.466667pt;}
.y120{bottom:363.586667pt;}
.y170{bottom:364.866667pt;}
.y1c0{bottom:371.906667pt;}
.y99{bottom:373.026667pt;}
.yec{bottom:374.626667pt;}
.ybd{bottom:376.866667pt;}
.y53{bottom:378.146667pt;}
.y12e{bottom:378.306667pt;}
.y196{bottom:380.866667pt;}
.y14f{bottom:381.826667pt;}
.y182{bottom:383.266667pt;}
.y75{bottom:384.546667pt;}
.y1bf{bottom:384.866667pt;}
.yd6{bottom:388.066667pt;}
.y1b4{bottom:389.186667pt;}
.y11f{bottom:391.266667pt;}
.y52{bottom:394.306667pt;}
.y16f{bottom:399.266667pt;}
.y98{bottom:400.546667pt;}
.yeb{bottom:402.306667pt;}
.ybc{bottom:404.386667pt;}
.yfd{bottom:405.666667pt;}
.y1be{bottom:405.986667pt;}
.y1b3{bottom:406.946667pt;}
.y14e{bottom:409.506667pt;}
.y51{bottom:410.466667pt;}
.y74{bottom:412.066667pt;}
.y26{bottom:414.146667pt;}
.y28{bottom:414.240000pt;}
.y195{bottom:415.266667pt;}
.yd5{bottom:415.746667pt;}
.y16e{bottom:417.666667pt;}
.y11e{bottom:418.786667pt;}
.y12d{bottom:420.386667pt;}
.y50{bottom:426.466667pt;}
.y1bd{bottom:427.266667pt;}
.y97{bottom:428.226667pt;}
.yea{bottom:429.826667pt;}
.ybb{bottom:432.066667pt;}
.yc{bottom:432.546667pt;}
.yfc{bottom:433.346667pt;}
.y194{bottom:433.666667pt;}
.y181{bottom:436.066667pt;}
.y14d{bottom:437.026667pt;}
.y1b2{bottom:438.946667pt;}
.y73{bottom:439.746667pt;}
.yd4{bottom:443.266667pt;}
.y11d{bottom:446.466667pt;}
.y4f{bottom:450.466667pt;}
.y16d{bottom:452.066667pt;}
.y19f{bottom:454.466667pt;}
.y96{bottom:455.746667pt;}
.ye9{bottom:457.506667pt;}
.y1bc{bottom:457.666667pt;}
.yba{bottom:459.586667pt;}
.y12c{bottom:462.466667pt;}
.y14c{bottom:464.706667pt;}
.y72{bottom:467.266667pt;}
.y193{bottom:468.066667pt;}
.yfb{bottom:468.866667pt;}
.y16c{bottom:470.466667pt;}
.yd3{bottom:470.946667pt;}
.y11c{bottom:473.986667pt;}
.y1b1{bottom:474.466667pt;}
.y4e{bottom:479.266667pt;}
.y1bb{bottom:479.293333pt;}
.y95{bottom:483.426667pt;}
.ye8{bottom:485.026667pt;}
.y192{bottom:486.466667pt;}
.yb9{bottom:487.266667pt;}
.y180{bottom:488.866667pt;}
.y25{bottom:491.040000pt;}
.y14b{bottom:492.226667pt;}
.y71{bottom:494.946667pt;}
.yd2{bottom:498.466667pt;}
.y11b{bottom:501.666667pt;}
.y1b0{bottom:502.146667pt;}
.y12b{bottom:504.546667pt;}
.y16b{bottom:504.866667pt;}
.yfa{bottom:507.586667pt;}
.y4d{bottom:508.546667pt;}
.y94{bottom:510.946667pt;}
.y1ba{bottom:511.293333pt;}
.ye7{bottom:512.546667pt;}
.yb8{bottom:514.786667pt;}
.y14a{bottom:519.746667pt;}
.y191{bottom:520.866667pt;}
.y70{bottom:522.466667pt;}
.y16a{bottom:523.266667pt;}
.y10{bottom:523.746667pt;}
.y4c{bottom:524.706667pt;}
.yd1{bottom:526.146667pt;}
.y11a{bottom:529.186667pt;}
.y1af{bottom:529.666667pt;}
.yf9{bottom:536.546667pt;}
.y23{bottom:538.080000pt;}
.y93{bottom:538.626667pt;}
.y190{bottom:539.266667pt;}
.ye6{bottom:540.226667pt;}
.y17f{bottom:541.666667pt;}
.y1b9{bottom:542.173333pt;}
.yb7{bottom:542.306667pt;}
.yf8{bottom:546.626667pt;}
.y149{bottom:547.426667pt;}
.ya{bottom:547.906667pt;}
.y4b{bottom:548.706667pt;}
.y6f{bottom:550.146667pt;}
.y1a3{bottom:550.786800pt;}
.yd0{bottom:553.666667pt;}
.y119{bottom:556.866667pt;}
.y1ae{bottom:557.346667pt;}
.y169{bottom:557.666667pt;}
.y4a{bottom:564.866667pt;}
.y92{bottom:566.146667pt;}
.ye5{bottom:567.746667pt;}
.yb6{bottom:570.013333pt;}
.y33{bottom:573.053333pt;}
.y1b8{bottom:574.493333pt;}
.y148{bottom:574.973333pt;}
.y168{bottom:576.093333pt;}
.y6e{bottom:577.693333pt;}
.y49{bottom:581.053333pt;}
.ycf{bottom:581.373333pt;}
.y118{bottom:584.413333pt;}
.y1ad{bottom:584.893333pt;}
.y147{bottom:592.093333pt;}
.y91{bottom:593.853333pt;}
.y17e{bottom:594.493333pt;}
.ye4{bottom:595.453333pt;}
.y48{bottom:597.213333pt;}
.yb5{bottom:597.533333pt;}
.y146{bottom:602.173333pt;}
.y6d{bottom:605.373333pt;}
.y1b7{bottom:606.493333pt;}
.yce{bottom:608.893333pt;}
.y167{bottom:610.493333pt;}
.y117{bottom:612.093333pt;}
.ye3{bottom:612.573333pt;}
.y47{bottom:613.213333pt;}
.yb4{bottom:614.653333pt;}
.y90{bottom:621.373333pt;}
.ye2{bottom:622.653333pt;}
.yb1{bottom:625.373333pt;}
.y166{bottom:628.893333pt;}
.y46{bottom:629.373333pt;}
.y6c{bottom:632.893333pt;}
.ycd{bottom:636.573333pt;}
.y8f{bottom:638.493333pt;}
.y116{bottom:639.613333pt;}
.y1ac{bottom:640.093333pt;}
.y45{bottom:645.533333pt;}
.y17d{bottom:647.293333pt;}
.y8c{bottom:649.213333pt;}
.yb0{bottom:653.693333pt;}
.y6b{bottom:660.573333pt;}
.y44{bottom:661.533333pt;}
.y139{bottom:661.693333pt;}
.y165{bottom:663.293333pt;}
.ycc{bottom:664.093333pt;}
.y115{bottom:667.293333pt;}
.y1ab{bottom:667.773333pt;}
.y43{bottom:677.693333pt;}
.y138{bottom:680.093333pt;}
.y164{bottom:681.693333pt;}
.y6a{bottom:688.093333pt;}
.y8b{bottom:688.893333pt;}
.ycb{bottom:691.773333pt;}
.y42{bottom:693.693333pt;}
.y114{bottom:694.813333pt;}
.y1aa{bottom:695.293333pt;}
.yac{bottom:695.773333pt;}
.y17c{bottom:700.093333pt;}
.y137{bottom:707.773333pt;}
.y41{bottom:709.853333pt;}
.y8a{bottom:715.613333pt;}
.y69{bottom:715.773333pt;}
.y163{bottom:716.093333pt;}
.yca{bottom:719.293333pt;}
.y113{bottom:722.493333pt;}
.y1a9{bottom:722.973333pt;}
.y40{bottom:726.013333pt;}
.y162{bottom:734.493333pt;}
.y3f{bottom:742.013333pt;}
.y87{bottom:742.333333pt;}
.y68{bottom:743.293333pt;}
.y112{bottom:750.013333pt;}
.y1a8{bottom:750.493333pt;}
.ya9{bottom:751.613333pt;}
.y17b{bottom:752.893333pt;}
.yc9{bottom:754.973333pt;}
.y3e{bottom:758.173333pt;}
.y161{bottom:768.893333pt;}
.y85{bottom:769.213333pt;}
.y67{bottom:770.973333pt;}
.y3d{bottom:774.173333pt;}
.y111{bottom:777.693333pt;}
.y1a7{bottom:778.173333pt;}
.y160{bottom:787.293333pt;}
.y12{bottom:789.693333pt;}
.yc8{bottom:790.493333pt;}
.ya8{bottom:793.733333pt;}
.y81{bottom:795.973333pt;}
.y3c{bottom:798.373333pt;}
.y66{bottom:798.533333pt;}
.y110{bottom:805.253333pt;}
.y15f{bottom:805.733333pt;}
.y1d7{bottom:810.853333pt;}
.ya5{bottom:822.053333pt;}
.y10f{bottom:822.373333pt;}
.y3b{bottom:826.213333pt;}
.y10e{bottom:833.093333pt;}
.y1a6{bottom:833.413333pt;}
.y15e{bottom:840.133333pt;}
.y39{bottom:853.733333pt;}
.y15d{bottom:858.533333pt;}
.y3a{bottom:859.813333pt;}
.y1a5{bottom:860.933333pt;}
.y10d{bottom:861.413333pt;}
.y18c{bottom:876.933333pt;}
.y37{bottom:881.413333pt;}
.y38{bottom:887.493333pt;}
.y10b{bottom:889.573333pt;}
.y15c{bottom:892.933333pt;}
.y1a4{bottom:895.333333pt;}
.y36{bottom:908.933333pt;}
.y15b{bottom:911.333333pt;}
.y10a{bottom:917.893333pt;}
.y18b{bottom:929.733333pt;}
.y35{bottom:936.613333pt;}
.y145{bottom:945.733333pt;}
.y109{bottom:946.213333pt;}
.y34{bottom:964.133333pt;}
.y11{bottom:966.533333pt;}
.y5{bottom:982.533333pt;}
.y4{bottom:998.853333pt;}
.y3{bottom:1011.653333pt;}
.y2{bottom:1093.600000pt;}
.y1{bottom:1109.760000pt;}
.h2d{height:13.760000pt;}
.h5{height:21.472000pt;}
.h3{height:25.280000pt;}
.hc{height:25.760000pt;}
.h20{height:25.952000pt;}
.h1e{height:26.080000pt;}
.h24{height:27.520000pt;}
.h29{height:27.680000pt;}
.h1b{height:28.687500pt;}
.h12{height:31.343437pt;}
.h17{height:35.342500pt;}
.h23{height:38.441250pt;}
.h22{height:39.040000pt;}
.h1f{height:40.359063pt;}
.h21{height:40.736250pt;}
.h28{height:41.440000pt;}
.h26{height:41.472000pt;}
.h25{height:42.632812pt;}
.h2b{height:42.649687pt;}
.h1c{height:43.031250pt;}
.h2a{height:43.343750pt;}
.ha{height:47.621250pt;}
.h4{height:47.742188pt;}
.h33{height:49.148438pt;}
.h18{height:50.022500pt;}
.h6{height:50.355000pt;}
.h19{height:50.490000pt;}
.h8{height:51.519933pt;}
.h16{height:52.750000pt;}
.h2{height:52.834688pt;}
.h32{height:54.390938pt;}
.h27{height:55.200000pt;}
.h2e{height:55.232000pt;}
.h15{height:56.843750pt;}
.h1d{height:57.375000pt;}
.h13{height:58.563750pt;}
.h1a{height:61.391250pt;}
.h31{height:70.773750pt;}
.h2c{height:71.718750pt;}
.hf{height:81.046875pt;}
.h11{height:89.472000pt;}
.hd{height:96.980000pt;}
.h7{height:151.546667pt;}
.h14{height:154.400000pt;}
.h10{height:161.440000pt;}
.he{height:161.466667pt;}
.h34{height:168.000000pt;}
.hb{height:272.226667pt;}
.h30{height:670.973333pt;}
.h9{height:1056.800000pt;}
.h2f{height:1110.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:35.520000pt;}
.w6{width:78.720000pt;}
.w1e{width:85.792000pt;}
.w1d{width:85.920000pt;}
.w19{width:86.080000pt;}
.w1c{width:86.112000pt;}
.w16{width:101.120000pt;}
.w11{width:102.400000pt;}
.w1f{width:113.440000pt;}
.w13{width:128.192000pt;}
.w15{width:130.432000pt;}
.w17{width:136.346667pt;}
.w18{width:136.506667pt;}
.w12{width:138.266667pt;}
.w14{width:143.386667pt;}
.wf{width:176.186667pt;}
.w23{width:189.626667pt;}
.wa{width:226.720000pt;}
.w21{width:245.666667pt;}
.w1b{width:257.986667pt;}
.w1a{width:258.146667pt;}
.wb{width:262.400000pt;}
.w20{width:274.146667pt;}
.we{width:285.146667pt;}
.wd{width:285.280000pt;}
.wc{width:285.346667pt;}
.w22{width:289.506667pt;}
.w9{width:290.146667pt;}
.w4{width:312.866667pt;}
.w3{width:353.373333pt;}
.w8{width:753.440000pt;}
.w7{width:754.240000pt;}
.w10{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x12{left:-1.826667pt;}
.x0{left:0.000000pt;}
.xa{left:4.320000pt;}
.x6{left:7.712000pt;}
.x3d{left:8.640000pt;}
.xc{left:9.600000pt;}
.x34{left:11.360000pt;}
.x30{left:13.440000pt;}
.x2f{left:15.040000pt;}
.x33{left:16.320000pt;}
.x54{left:18.400000pt;}
.xe{left:19.840000pt;}
.x31{left:21.120000pt;}
.x49{left:22.720000pt;}
.x3c{left:24.160000pt;}
.x32{left:25.920000pt;}
.x2b{left:26.880000pt;}
.x47{left:28.000000pt;}
.xd{left:29.440000pt;}
.x45{left:31.034667pt;}
.x2e{left:32.480000pt;}
.x18{left:33.440000pt;}
.x35{left:36.960000pt;}
.x55{left:38.400000pt;}
.x53{left:41.434667pt;}
.x4e{left:46.554667pt;}
.x28{left:50.874667pt;}
.x4{left:57.279988pt;}
.x4c{left:60.319988pt;}
.x24{left:61.279988pt;}
.x5{left:64.960000pt;}
.x19{left:73.600000pt;}
.x37{left:87.232000pt;}
.x27{left:89.472000pt;}
.x52{left:91.880000pt;}
.x4d{left:94.112000pt;}
.x44{left:98.120000pt;}
.x1a{left:100.800000pt;}
.x25{left:104.511988pt;}
.x41{left:109.312000pt;}
.x1d{left:112.191988pt;}
.x50{left:116.520000pt;}
.x16{left:118.333333pt;}
.x8{left:122.120000pt;}
.x56{left:134.106655pt;}
.x26{left:138.426655pt;}
.x15{left:142.586667pt;}
.x10{left:144.986667pt;}
.x36{left:156.186655pt;}
.x1b{left:166.440000pt;}
.x59{left:180.040000pt;}
.x3f{left:182.746655pt;}
.x38{left:188.346667pt;}
.x29{left:191.866667pt;}
.x42{left:195.386667pt;}
.x1c{left:201.786655pt;}
.x3e{left:203.546655pt;}
.x4f{left:207.546667pt;}
.x23{left:249.346655pt;}
.x40{left:266.306655pt;}
.x46{left:281.506667pt;}
.x39{left:324.706667pt;}
.x2a{left:330.146667pt;}
.x3{left:345.506655pt;}
.x14{left:361.026667pt;}
.xf{left:362.786667pt;}
.x17{left:366.173333pt;}
.x48{left:367.613333pt;}
.x13{left:373.120000pt;}
.x11{left:390.720000pt;}
.x1e{left:392.893322pt;}
.x58{left:405.533333pt;}
.x1{left:410.493322pt;}
.x7{left:418.333333pt;}
.x43{left:454.173333pt;}
.x2c{left:458.333333pt;}
.x3a{left:461.213333pt;}
.x51{left:481.693333pt;}
.x1f{left:512.893322pt;}
.x22{left:515.973322pt;}
.x4a{left:539.973333pt;}
.x3b{left:597.733333pt;}
.x2d{left:601.733333pt;}
.x4b{left:626.053333pt;}
.x57{left:692.959988pt;}
.x2{left:695.359988pt;}
.xb{left:714.560000pt;}
.x20{left:723.199976pt;}
.x21{left:728.639988pt;}
.x9{left:745.440000pt;}
}




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