
    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_ba0d2f93425ee187c73966cc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.899414;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_90d8d9e655dfc75eb31e4bf2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_b0e6c86a4fa2d6e42d434869.woff')format("woff");}.ff3{font-family:ff3;line-height:0.902344;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_9cdc77958eb96fb03f7d8d1d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082031;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_dd46cebd2189db111a8902f4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.099609;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);}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.927200px;}
.v3{vertical-align:36.000000px;}
.lsd{letter-spacing:-7.371000px;}
.ls18{letter-spacing:-2.760000px;}
.ls23{letter-spacing:-2.277000px;}
.ls2c{letter-spacing:-2.079000px;}
.ls1b{letter-spacing:-1.587000px;}
.ls1c{letter-spacing:-1.242000px;}
.ls9{letter-spacing:-1.092000px;}
.ls12{letter-spacing:-1.035000px;}
.ls17{letter-spacing:-0.855000px;}
.ls21{letter-spacing:-0.690000px;}
.ls1e{letter-spacing:-0.627000px;}
.ls8{letter-spacing:-0.324000px;}
.ls19{letter-spacing:-0.243000px;}
.ls7{letter-spacing:-0.240000px;}
.ls2b{letter-spacing:-0.126000px;}
.ls25{letter-spacing:-0.081000px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000300px;}
.ls14{letter-spacing:0.207000px;}
.ls24{letter-spacing:0.828000px;}
.ls29{letter-spacing:0.882000px;}
.ls1f{letter-spacing:1.620000px;}
.ls11{letter-spacing:2.352900px;}
.lse{letter-spacing:2.400000px;}
.ls15{letter-spacing:2.484000px;}
.ls20{letter-spacing:3.300000px;}
.ls0{letter-spacing:3.600000px;}
.ls1d{letter-spacing:4.125000px;}
.ls1{letter-spacing:4.200000px;}
.ls2{letter-spacing:5.550000px;}
.lsa{letter-spacing:5.760000px;}
.lsc{letter-spacing:5.880000px;}
.ls5{letter-spacing:6.000000px;}
.ls26{letter-spacing:6.300000px;}
.ls10{letter-spacing:6.348000px;}
.ls13{letter-spacing:6.900000px;}
.ls2a{letter-spacing:7.200000px;}
.ls3{letter-spacing:7.260000px;}
.ls16{letter-spacing:7.275000px;}
.ls28{letter-spacing:7.673400px;}
.ls1a{letter-spacing:8.160156px;}
.ls22{letter-spacing:8.160756px;}
.lsf{letter-spacing:8.175000px;}
.ls6{letter-spacing:8.400000px;}
.ls27{letter-spacing:8.820000px;}
.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;}
}
.ws11{word-spacing:-29.250000px;}
.ws1b{word-spacing:-28.350000px;}
.ws36{word-spacing:-28.275000px;}
.ws0{word-spacing:-26.625000px;}
.ws32{word-spacing:-26.523000px;}
.ws24{word-spacing:-25.200000px;}
.ws25{word-spacing:-24.381000px;}
.ws28{word-spacing:-24.375000px;}
.ws3a{word-spacing:-22.860000px;}
.wsb{word-spacing:-22.740000px;}
.ws30{word-spacing:-22.680000px;}
.ws4{word-spacing:-22.620000px;}
.ws3{word-spacing:-19.656000px;}
.wse{word-spacing:-19.389000px;}
.ws1a{word-spacing:-18.354000px;}
.ws33{word-spacing:-17.703000px;}
.ws1{word-spacing:-17.088000px;}
.ws1c{word-spacing:-17.043000px;}
.ws14{word-spacing:-16.860000px;}
.ws2{word-spacing:-16.620000px;}
.ws2b{word-spacing:-16.353000px;}
.ws13{word-spacing:-16.002000px;}
.ws35{word-spacing:-15.561000px;}
.ws22{word-spacing:-15.456000px;}
.wsd{word-spacing:-15.390000px;}
.wsc{word-spacing:-14.820000px;}
.ws2f{word-spacing:-14.766000px;}
.ws20{word-spacing:-14.283000px;}
.ws37{word-spacing:-13.482000px;}
.ws23{word-spacing:-12.096000px;}
.ws12{word-spacing:-11.303787px;}
.ws8{word-spacing:-8.400000px;}
.ws1d{word-spacing:-6.900000px;}
.ws34{word-spacing:-6.300000px;}
.ws7{word-spacing:-6.000000px;}
.wsa{word-spacing:-4.200000px;}
.ws19{word-spacing:-2.400000px;}
.ws2c{word-spacing:-1.380000px;}
.ws5{word-spacing:-1.260000px;}
.ws31{word-spacing:-0.828000px;}
.ws2e{word-spacing:-0.414000px;}
.ws6{word-spacing:0.000000px;}
.ws38{word-spacing:0.126000px;}
.ws21{word-spacing:0.243000px;}
.ws9{word-spacing:0.324000px;}
.ws10{word-spacing:0.378000px;}
.ws26{word-spacing:0.627000px;}
.ws1f{word-spacing:0.855000px;}
.ws1e{word-spacing:1.380000px;}
.ws3b{word-spacing:1.512000px;}
.ws2d{word-spacing:2.484000px;}
.ws2a{word-spacing:4.692000px;}
.ws39{word-spacing:5.796000px;}
.ws29{word-spacing:8.970000px;}
.ws27{word-spacing:27.704160px;}
.wsf{word-spacing:43.445160px;}
.ws15{word-spacing:137.844000px;}
.ws16{word-spacing:147.954000px;}
.ws17{word-spacing:165.924000px;}
.ws18{word-spacing:199.452000px;}
._1c{margin-left:-19.389300px;}
._b{margin-left:-10.263000px;}
._21{margin-left:-8.454300px;}
._c{margin-left:-7.218900px;}
._7{margin-left:-6.020400px;}
._6{margin-left:-4.182000px;}
._5{margin-left:-2.496000px;}
._2{margin-left:-1.452000px;}
._3{width:1.347600px;}
._0{width:2.602500px;}
._a{width:3.678000px;}
._d{width:5.100000px;}
._4{width:6.133200px;}
._8{width:7.214400px;}
._9{width:8.584800px;}
._1d{width:9.750900px;}
._e{width:10.866000px;}
._13{width:12.444000px;}
._17{width:13.687800px;}
._12{width:15.156000px;}
._19{width:16.622514px;}
._1a{width:17.848572px;}
._2d{width:19.240200px;}
._1e{width:20.982900px;}
._20{width:22.093200px;}
._30{width:23.827200px;}
._2f{width:25.310700px;}
._26{width:27.704160px;}
._25{width:29.698500px;}
._24{width:30.825300px;}
._2e{width:31.886100px;}
._28{width:34.172100px;}
._29{width:35.381700px;}
._2b{width:37.158600px;}
._2a{width:38.461500px;}
._15{width:43.445160px;}
._2c{width:65.961600px;}
._f{width:85.554000px;}
._14{width:260.610000px;}
._16{width:439.442400px;}
._1f{width:440.812200px;}
._1b{width:442.179600px;}
._31{width:443.700000px;}
._27{width:447.727200px;}
._1{width:449.332200px;}
._10{width:578.400000px;}
._11{width:955.508700px;}
._22{width:958.628700px;}
._23{width:962.678700px;}
._18{width:964.658700px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:31.482000px;}
.fs9{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs8{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs7{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y70{bottom:98.215800px;}
.y180{bottom:106.165350px;}
.y12c{bottom:106.259250px;}
.y1e6{bottom:106.260600px;}
.yea{bottom:106.290300px;}
.y46{bottom:106.293300px;}
.y95{bottom:106.293450px;}
.y1f{bottom:106.293600px;}
.yf5{bottom:106.294500px;}
.y1a3{bottom:106.296300px;}
.yb7{bottom:106.313850px;}
.y1c5{bottom:106.355700px;}
.y228{bottom:106.411500px;}
.y208{bottom:106.433850px;}
.y159{bottom:112.421100px;}
.y6f{bottom:118.464300px;}
.yec{bottom:118.590150px;}
.ye9{bottom:123.543300px;}
.y45{bottom:123.546300px;}
.y94{bottom:123.546450px;}
.y227{bottom:126.001500px;}
.y1a2{bottom:126.544800px;}
.y17f{bottom:126.589350px;}
.y1c4{bottom:126.877950px;}
.y207{bottom:127.381350px;}
.yb6{bottom:127.652100px;}
.y12b{bottom:127.735500px;}
.y1e{bottom:127.983600px;}
.y1e5{bottom:128.105850px;}
.yf4{bottom:130.720500px;}
.y158{bottom:132.672600px;}
.y6e{bottom:136.964850px;}
.ye8{bottom:140.796300px;}
.yd7{bottom:140.799300px;}
.y44{bottom:143.794800px;}
.y93{bottom:143.794950px;}
.y226{bottom:145.591500px;}
.y17e{bottom:147.013350px;}
.y1c3{bottom:147.400200px;}
.y206{bottom:148.328850px;}
.yb5{bottom:148.990350px;}
.y12a{bottom:149.211750px;}
.y1d{bottom:149.599500px;}
.y1e4{bottom:149.951100px;}
.y157{bottom:152.924100px;}
.y6d{bottom:154.217850px;}
.yf3{bottom:155.146500px;}
.ye7{bottom:158.049300px;}
.ye6{bottom:161.044800px;}
.y102{bottom:161.811450px;}
.y43{bottom:162.295200px;}
.yd6{bottom:162.298200px;}
.y92{bottom:162.298500px;}
.y225{bottom:165.181500px;}
.y17d{bottom:167.437350px;}
.y1c2{bottom:167.922450px;}
.y1c{bottom:169.789500px;}
.yb4{bottom:170.328600px;}
.y1a1{bottom:170.559450px;}
.y129{bottom:170.688000px;}
.y1e3{bottom:171.796350px;}
.y156{bottom:173.175600px;}
.y6c{bottom:174.466350px;}
.y205{bottom:177.781350px;}
.y42{bottom:179.548200px;}
.yf2{bottom:179.572500px;}
.y101{bottom:182.061450px;}
.yd5{bottom:182.546700px;}
.y91{bottom:182.547000px;}
.y224{bottom:184.771500px;}
.y17c{bottom:187.861350px;}
.y1b{bottom:189.979500px;}
.y1a0{bottom:190.828200px;}
.yb3{bottom:191.666850px;}
.y128{bottom:192.164250px;}
.y155{bottom:193.427100px;}
.y1e2{bottom:193.641600px;}
.y41{bottom:196.801200px;}
.y1c1{bottom:196.949700px;}
.y204{bottom:198.728850px;}
.y40{bottom:199.796700px;}
.yf1{bottom:203.998500px;}
.y223{bottom:204.361500px;}
.y139{bottom:206.639850px;}
.y17b{bottom:208.285350px;}
.y1a{bottom:210.169500px;}
.y19f{bottom:211.096950px;}
.ye5{bottom:212.840850px;}
.y127{bottom:213.640500px;}
.y154{bottom:213.678600px;}
.y1c0{bottom:217.471950px;}
.y203{bottom:219.676350px;}
.y222{bottom:223.951500px;}
.y1e1{bottom:223.991850px;}
.y6a{bottom:225.260250px;}
.y90{bottom:226.545300px;}
.yd4{bottom:226.570800px;}
.y17a{bottom:228.709350px;}
.y100{bottom:229.949250px;}
.y19{bottom:230.359500px;}
.y19e{bottom:231.365700px;}
.ye4{bottom:233.092350px;}
.y153{bottom:233.930100px;}
.y69{bottom:234.260250px;}
.yb2{bottom:234.272850px;}
.y202{bottom:240.623850px;}
.y6b{bottom:243.260250px;}
.y221{bottom:243.541500px;}
.y3f{bottom:243.827400px;}
.y1e0{bottom:245.837100px;}
.y1bf{bottom:246.499200px;}
.yd3{bottom:247.443300px;}
.y8f{bottom:247.676550px;}
.y179{bottom:249.133350px;}
.y18{bottom:250.549500px;}
.y19d{bottom:251.634450px;}
.ye3{bottom:253.343850px;}
.y152{bottom:254.181600px;}
.yf0{bottom:254.202750px;}
.y126{bottom:256.580400px;}
.yb1{bottom:259.362600px;}
.y220{bottom:263.131500px;}
.y3e{bottom:264.389400px;}
.yfe{bottom:265.081050px;}
.y67{bottom:265.985250px;}
.y1be{bottom:267.021450px;}
.y1df{bottom:267.682350px;}
.yd2{bottom:268.315800px;}
.y8e{bottom:268.807800px;}
.y178{bottom:269.557350px;}
.y201{bottom:270.076350px;}
.y17{bottom:270.739500px;}
.y142{bottom:271.777500px;}
.y19c{bottom:271.903200px;}
.ye2{bottom:273.595350px;}
.y151{bottom:274.433100px;}
.y66{bottom:274.985250px;}
.y125{bottom:278.045400px;}
.yef{bottom:278.622750px;}
.y21f{bottom:282.721500px;}
.y68{bottom:283.985250px;}
.yb0{bottom:284.452350px;}
.y3d{bottom:284.951400px;}
.yfd{bottom:285.332550px;}
.y1bd{bottom:287.543700px;}
.yd1{bottom:289.190250px;}
.y8d{bottom:289.939050px;}
.y177{bottom:289.981350px;}
.y16{bottom:290.929500px;}
.y200{bottom:291.023850px;}
.y141{bottom:292.029000px;}
.y19b{bottom:292.171950px;}
.ye1{bottom:293.846850px;}
.y150{bottom:294.684600px;}
.y1de{bottom:298.032600px;}
.y124{bottom:299.513700px;}
.y21e{bottom:302.311500px;}
.yee{bottom:303.047550px;}
.y3c{bottom:305.513400px;}
.yfc{bottom:305.584050px;}
.y64{bottom:306.710250px;}
.yd0{bottom:310.062750px;}
.y176{bottom:310.405350px;}
.y8c{bottom:311.070300px;}
.y15{bottom:311.119500px;}
.y140{bottom:312.280500px;}
.y19a{bottom:312.440700px;}
.ye0{bottom:314.098350px;}
.y14f{bottom:314.936100px;}
.y63{bottom:315.710250px;}
.y1bc{bottom:316.570950px;}
.y1dd{bottom:319.877850px;}
.y1ff{bottom:320.476350px;}
.y21d{bottom:321.901500px;}
.y65{bottom:324.710250px;}
.yfb{bottom:325.835550px;}
.y3b{bottom:326.075400px;}
.y175{bottom:330.829350px;}
.y14{bottom:331.309500px;}
.y8b{bottom:332.201550px;}
.y13f{bottom:332.532000px;}
.y199{bottom:332.709450px;}
.y122{bottom:332.770350px;}
.ydf{bottom:334.349850px;}
.y14e{bottom:335.187600px;}
.y1bb{bottom:337.093200px;}
.y1fe{bottom:341.423850px;}
.y21c{bottom:341.491500px;}
.y1dc{bottom:341.723100px;}
.yfa{bottom:346.087050px;}
.y3a{bottom:346.637400px;}
.y61{bottom:347.435250px;}
.yaf{bottom:347.906850px;}
.y174{bottom:351.253350px;}
.y13{bottom:351.499500px;}
.ycf{bottom:352.197900px;}
.y13e{bottom:352.783500px;}
.y198{bottom:352.978200px;}
.y121{bottom:353.021850px;}
.y8a{bottom:353.332800px;}
.yde{bottom:354.601350px;}
.y14d{bottom:355.439100px;}
.y60{bottom:356.435250px;}
.y1ba{bottom:357.615450px;}
.y21b{bottom:361.081500px;}
.y1fd{bottom:362.371350px;}
.y62{bottom:365.435250px;}
.yf9{bottom:366.338550px;}
.y39{bottom:367.199400px;}
.yae{bottom:369.245100px;}
.y173{bottom:371.677350px;}
.y12{bottom:371.689500px;}
.y1db{bottom:372.073350px;}
.y13d{bottom:373.035000px;}
.y197{bottom:373.246950px;}
.y120{bottom:373.273350px;}
.y89{bottom:374.464050px;}
.y14c{bottom:375.690600px;}
.yce{bottom:376.821900px;}
.y21a{bottom:380.671500px;}
.y1fc{bottom:383.318850px;}
.yf8{bottom:386.590050px;}
.y1b9{bottom:386.642700px;}
.y38{bottom:387.761400px;}
.y5f{bottom:388.685250px;}
.yad{bottom:390.583350px;}
.y11{bottom:391.879500px;}
.y172{bottom:392.101350px;}
.y13c{bottom:393.286500px;}
.y196{bottom:393.515700px;}
.y11f{bottom:393.524850px;}
.y1da{bottom:393.918600px;}
.ydd{bottom:395.101350px;}
.y88{bottom:395.595300px;}
.y14b{bottom:395.942100px;}
.y219{bottom:400.261500px;}
.ycd{bottom:401.445900px;}
.y5e{bottom:406.685250px;}
.yf7{bottom:406.841550px;}
.y1b8{bottom:407.164950px;}
.yac{bottom:411.921600px;}
.y171{bottom:412.525350px;}
.y1fb{bottom:412.771350px;}
.y11e{bottom:413.776350px;}
.y195{bottom:413.784450px;}
.y1d9{bottom:415.763850px;}
.y14a{bottom:416.193600px;}
.y117{bottom:416.684850px;}
.y87{bottom:416.726550px;}
.y218{bottom:419.851500px;}
.y10{bottom:424.819500px;}
.y1b7{bottom:427.687200px;}
.y37{bottom:429.585000px;}
.y170{bottom:432.949350px;}
.yab{bottom:433.259850px;}
.y1fa{bottom:433.718850px;}
.y13b{bottom:433.786500px;}
.y11d{bottom:434.027850px;}
.y194{bottom:434.053200px;}
.y149{bottom:436.445100px;}
.y5d{bottom:436.691550px;}
.y116{bottom:436.936350px;}
.y86{bottom:437.851800px;}
.y217{bottom:439.441500px;}
.y1d8{bottom:446.114100px;}
.yf6{bottom:447.341550px;}
.y16f{bottom:453.373350px;}
.y11c{bottom:454.279350px;}
.y193{bottom:454.321950px;}
.yaa{bottom:454.598100px;}
.y1f9{bottom:454.666350px;}
.y148{bottom:456.696600px;}
.y1b6{bottom:456.714450px;}
.y115{bottom:457.187850px;}
.y85{bottom:458.983050px;}
.y216{bottom:459.031500px;}
.y137{bottom:463.666200px;}
.ycc{bottom:464.374950px;}
.y13a{bottom:466.792500px;}
.y1d7{bottom:467.959350px;}
.y16e{bottom:473.797350px;}
.y11b{bottom:474.530850px;}
.y192{bottom:474.590700px;}
.y1f8{bottom:475.613850px;}
.ya9{bottom:475.936350px;}
.y147{bottom:476.948100px;}
.y1b5{bottom:477.236700px;}
.y5c{bottom:477.427350px;}
.y114{bottom:477.439350px;}
.y215{bottom:478.621500px;}
.y84{bottom:480.114300px;}
.yf{bottom:483.284100px;}
.y136{bottom:483.917700px;}
.ycb{bottom:485.247450px;}
.y1d6{bottom:489.804600px;}
.y36{bottom:492.165300px;}
.y16d{bottom:494.221350px;}
.y11a{bottom:494.782350px;}
.y146{bottom:497.199600px;}
.ya8{bottom:497.274600px;}
.y5b{bottom:497.678850px;}
.y113{bottom:497.690850px;}
.y83{bottom:501.207600px;}
.y135{bottom:504.169200px;}
.y1f7{bottom:505.066350px;}
.yeb{bottom:505.961250px;}
.yca{bottom:506.119950px;}
.y1b4{bottom:506.263950px;}
.ye{bottom:510.962100px;}
.y214{bottom:510.976500px;}
.y35{bottom:513.480300px;}
.y16c{bottom:514.645350px;}
.y119{bottom:515.033850px;}
.y191{bottom:516.118950px;}
.y145{bottom:517.451100px;}
.y5a{bottom:517.930350px;}
.y112{bottom:517.942350px;}
.ya7{bottom:518.612850px;}
.y138{bottom:519.922500px;}
.y1d5{bottom:520.154850px;}
.y82{bottom:522.338850px;}
.y134{bottom:524.420700px;}
.y1f6{bottom:526.013850px;}
.y1b3{bottom:526.786200px;}
.yc9{bottom:526.992450px;}
.y34{bottom:534.777750px;}
.y16b{bottom:535.069350px;}
.y144{bottom:537.702600px;}
.y59{bottom:538.181850px;}
.y111{bottom:538.193850px;}
.yd{bottom:538.640100px;}
.ya6{bottom:539.951100px;}
.y1d4{bottom:542.000100px;}
.y81{bottom:543.470100px;}
.y133{bottom:544.672200px;}
.y1f5{bottom:546.961350px;}
.yc8{bottom:547.864950px;}
.y238{bottom:554.442750px;}
.y33{bottom:554.592750px;}
.y16a{bottom:555.493350px;}
.y1b2{bottom:555.813450px;}
.y118{bottom:556.883850px;}
.y58{bottom:558.433350px;}
.y110{bottom:558.445350px;}
.ya5{bottom:561.289350px;}
.y1d3{bottom:563.845350px;}
.y80{bottom:564.601350px;}
.y132{bottom:564.923700px;}
.yc7{bottom:568.737450px;}
.y213{bottom:568.852350px;}
.yff{bottom:571.078200px;}
.y32{bottom:574.407750px;}
.y237{bottom:574.692750px;}
.y169{bottom:575.917350px;}
.y1b1{bottom:576.335700px;}
.y1f4{bottom:576.413850px;}
.y143{bottom:578.202600px;}
.y190{bottom:578.404950px;}
.y57{bottom:578.684850px;}
.y10f{bottom:578.696850px;}
.ya4{bottom:582.627600px;}
.y1d2{bottom:585.690600px;}
.y7f{bottom:585.732600px;}
.yc{bottom:587.585550px;}
.yc6{bottom:589.609950px;}
.y31{bottom:594.222750px;}
.y236{bottom:594.942750px;}
.y212{bottom:595.942350px;}
.y168{bottom:596.341350px;}
.y1b0{bottom:596.857950px;}
.y1f3{bottom:597.361350px;}
.y18f{bottom:598.670100px;}
.y56{bottom:598.936350px;}
.y10e{bottom:598.948350px;}
.ya3{bottom:603.965850px;}
.y131{bottom:606.444900px;}
.y7e{bottom:606.863850px;}
.yed{bottom:608.064900px;}
.yc5{bottom:610.482450px;}
.y30{bottom:614.037750px;}
.y235{bottom:615.192750px;}
.y1d1{bottom:616.040850px;}
.y167{bottom:616.765350px;}
.y1f2{bottom:618.308850px;}
.y18e{bottom:618.938850px;}
.y55{bottom:619.187850px;}
.y10d{bottom:619.199850px;}
.yb{bottom:619.769550px;}
.y211{bottom:623.032350px;}
.ya2{bottom:625.304100px;}
.y1af{bottom:625.885200px;}
.y7d{bottom:627.995100px;}
.y130{bottom:630.441150px;}
.yc4{bottom:631.354950px;}
.y2f{bottom:633.852750px;}
.y166{bottom:637.189350px;}
.y1d0{bottom:637.886100px;}
.y18d{bottom:639.207600px;}
.y10c{bottom:639.431850px;}
.y54{bottom:639.439350px;}
.y123{bottom:644.929950px;}
.ya1{bottom:646.642350px;}
.y1f1{bottom:647.761350px;}
.y234{bottom:648.192750px;}
.y7c{bottom:649.126350px;}
.ya{bottom:651.953550px;}
.yc3{bottom:652.227450px;}
.y2e{bottom:653.667750px;}
.y12f{bottom:654.437400px;}
.y165{bottom:657.613350px;}
.y18c{bottom:659.476350px;}
.y10b{bottom:659.683350px;}
.y53{bottom:659.690850px;}
.y1cf{bottom:659.731350px;}
.ya0{bottom:667.980600px;}
.y1f0{bottom:668.708850px;}
.y7b{bottom:670.257600px;}
.yc2{bottom:673.099950px;}
.y2d{bottom:673.482750px;}
.y1ae{bottom:676.898850px;}
.y164{bottom:678.037350px;}
.y12e{bottom:678.433650px;}
.y18b{bottom:679.745100px;}
.y10a{bottom:679.934850px;}
.y52{bottom:679.942350px;}
.y9{bottom:684.137550px;}
.y9f{bottom:689.318850px;}
.y1ef{bottom:689.656350px;}
.y233{bottom:689.697750px;}
.y1ce{bottom:690.081600px;}
.y7a{bottom:691.388850px;}
.y2c{bottom:693.297750px;}
.yc1{bottom:693.972450px;}
.y1ad{bottom:697.426350px;}
.y163{bottom:698.461350px;}
.y18a{bottom:700.013850px;}
.y109{bottom:700.186350px;}
.y51{bottom:700.193850px;}
.y232{bottom:709.197750px;}
.y1ee{bottom:710.603850px;}
.y9e{bottom:710.657100px;}
.y1cd{bottom:711.926850px;}
.y79{bottom:712.520100px;}
.y2b{bottom:713.112750px;}
.yc0{bottom:714.844950px;}
.y8{bottom:716.321550px;}
.y1ac{bottom:717.953850px;}
.y162{bottom:718.885350px;}
.y189{bottom:720.282600px;}
.y108{bottom:720.437850px;}
.y50{bottom:720.445350px;}
.y231{bottom:728.697750px;}
.y9d{bottom:731.995350px;}
.y210{bottom:732.401850px;}
.y2a{bottom:732.927750px;}
.y78{bottom:733.651350px;}
.y1cc{bottom:733.772100px;}
.ybf{bottom:735.717450px;}
.y1ab{bottom:738.481350px;}
.y161{bottom:739.309350px;}
.y1ed{bottom:740.056350px;}
.y188{bottom:740.551350px;}
.y107{bottom:740.689350px;}
.y4f{bottom:740.696850px;}
.y12d{bottom:740.699850px;}
.y230{bottom:748.197750px;}
.y29{bottom:752.742750px;}
.y20f{bottom:752.750850px;}
.y9c{bottom:753.333600px;}
.y77{bottom:754.782600px;}
.ybe{bottom:756.589950px;}
.y1aa{bottom:759.008850px;}
.y160{bottom:759.733350px;}
.y187{bottom:760.820100px;}
.y106{bottom:760.940850px;}
.ydc{bottom:760.943850px;}
.y4e{bottom:760.948350px;}
.y1ec{bottom:761.003850px;}
.y1cb{bottom:764.122350px;}
.y22f{bottom:767.697750px;}
.y28{bottom:772.557750px;}
.y20e{bottom:773.099850px;}
.y9b{bottom:774.671850px;}
.y76{bottom:775.913850px;}
.ybd{bottom:777.462450px;}
.y7{bottom:778.244700px;}
.y1a9{bottom:779.536350px;}
.y15f{bottom:780.157350px;}
.y186{bottom:781.088850px;}
.y105{bottom:781.192350px;}
.ydb{bottom:781.195350px;}
.y4d{bottom:781.199850px;}
.y1ca{bottom:785.967600px;}
.y22e{bottom:787.197750px;}
.y1eb{bottom:790.456350px;}
.y27{bottom:792.372750px;}
.y20d{bottom:793.448850px;}
.y9a{bottom:796.010100px;}
.y75{bottom:797.045100px;}
.ybc{bottom:798.334950px;}
.y1a8{bottom:800.063850px;}
.y15e{bottom:800.581350px;}
.y185{bottom:801.357600px;}
.y104{bottom:801.443850px;}
.yda{bottom:801.446850px;}
.y4c{bottom:801.448350px;}
.y22d{bottom:806.697750px;}
.y1c9{bottom:807.812850px;}
.y6{bottom:808.439700px;}
.y1ea{bottom:811.403850px;}
.y26{bottom:812.187750px;}
.y99{bottom:817.348350px;}
.y74{bottom:818.176350px;}
.ybb{bottom:819.207450px;}
.y1a7{bottom:820.591350px;}
.y15d{bottom:821.005350px;}
.y184{bottom:821.626350px;}
.y103{bottom:821.695350px;}
.yd9{bottom:821.698350px;}
.y4b{bottom:821.699850px;}
.y20c{bottom:822.302850px;}
.y22c{bottom:826.197750px;}
.y1c8{bottom:829.658100px;}
.y5{bottom:830.129700px;}
.y25{bottom:832.002750px;}
.y1e9{bottom:832.351350px;}
.y98{bottom:838.686600px;}
.y73{bottom:839.307600px;}
.yba{bottom:840.079950px;}
.y1a6{bottom:841.118850px;}
.y15c{bottom:841.429350px;}
.y183{bottom:841.895100px;}
.y4a{bottom:841.946850px;}
.yd8{bottom:841.949850px;}
.y20b{bottom:842.651850px;}
.y22b{bottom:845.697750px;}
.y24{bottom:851.817750px;}
.y1c7{bottom:860.008350px;}
.y97{bottom:860.024850px;}
.y4{bottom:860.324700px;}
.y72{bottom:860.438850px;}
.yb9{bottom:860.956350px;}
.y1a5{bottom:861.646350px;}
.y1e8{bottom:861.803850px;}
.y15b{bottom:861.853350px;}
.y182{bottom:862.163850px;}
.y49{bottom:862.198350px;}
.y20a{bottom:863.000850px;}
.y22a{bottom:865.197750px;}
.y23{bottom:871.632750px;}
.y96{bottom:881.363100px;}
.y71{bottom:881.570100px;}
.yb8{bottom:881.828850px;}
.y1c6{bottom:881.853600px;}
.y3{bottom:882.014700px;}
.y1a4{bottom:882.173850px;}
.y15a{bottom:882.277350px;}
.y181{bottom:882.432600px;}
.y48{bottom:882.449850px;}
.y1e7{bottom:882.751350px;}
.y209{bottom:883.349850px;}
.y229{bottom:884.697750px;}
.y47{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y22{bottom:904.197750px;}
.y21{bottom:948.189000px;}
.y20{bottom:966.189000px;}
.ha{height:20.982876px;}
.hc{height:33.870539px;}
.h7{height:39.990234px;}
.hd{height:40.757812px;}
.hb{height:45.852539px;}
.h2{height:49.987793px;}
.h4{height:50.947266px;}
.h1a{height:51.503906px;}
.h3{height:53.494629px;}
.h19{height:54.079102px;}
.h9{height:58.589355px;}
.h10{height:58.601355px;}
.h18{height:58.603755px;}
.hf{height:58.607355px;}
.h14{height:58.613355px;}
.h17{height:58.631355px;}
.h16{height:58.667355px;}
.h13{height:58.741155px;}
.h15{height:59.229492px;}
.he{height:63.684082px;}
.h8{height:68.778809px;}
.h6{height:71.326172px;}
.h12{height:75.990234px;}
.h11{height:86.947266px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x29{left:80.915250px;}
.x1{left:82.214250px;}
.x7{left:83.865600px;}
.x5{left:85.200600px;}
.x9{left:89.109750px;}
.x19{left:95.634750px;}
.x26{left:99.159750px;}
.xa{left:100.329750px;}
.x8{left:103.905600px;}
.x6{left:105.030600px;}
.x4{left:106.365600px;}
.x1a{left:171.264750px;}
.xc{left:176.589750px;}
.xb{left:185.004750px;}
.x2a{left:212.663850px;}
.x3{left:231.867000px;}
.x2{left:233.415450px;}
.x1c{left:249.414750px;}
.xe{left:257.304750px;}
.xd{left:259.419750px;}
.x27{left:271.449750px;}
.x1b{left:272.544750px;}
.x2b{left:313.897200px;}
.x1e{left:320.289750px;}
.xf{left:330.294750px;}
.x2d{left:333.474000px;}
.x10{left:335.574750px;}
.x2c{left:336.656700px;}
.x1d{left:342.264750px;}
.x20{left:390.444750px;}
.x11{left:400.389750px;}
.x12{left:403.179750px;}
.x1f{left:412.419750px;}
.x22{left:459.894750px;}
.x14{left:465.234750px;}
.x13{left:466.584750px;}
.x28{left:481.884750px;}
.x21{left:483.024750px;}
.x24{left:530.739750px;}
.x15{left:532.194750px;}
.x16{left:546.504750px;}
.x23{left:555.489750px;}
.x17{left:605.709750px;}
.x18{left:612.774750px;}
.x25{left:628.419750px;}
@media print{
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.046400pt;}
.v3{vertical-align:32.000000pt;}
.lsd{letter-spacing:-6.552000pt;}
.ls18{letter-spacing:-2.453333pt;}
.ls23{letter-spacing:-2.024000pt;}
.ls2c{letter-spacing:-1.848000pt;}
.ls1b{letter-spacing:-1.410667pt;}
.ls1c{letter-spacing:-1.104000pt;}
.ls9{letter-spacing:-0.970667pt;}
.ls12{letter-spacing:-0.920000pt;}
.ls17{letter-spacing:-0.760000pt;}
.ls21{letter-spacing:-0.613333pt;}
.ls1e{letter-spacing:-0.557333pt;}
.ls8{letter-spacing:-0.288000pt;}
.ls19{letter-spacing:-0.216000pt;}
.ls7{letter-spacing:-0.213333pt;}
.ls2b{letter-spacing:-0.112000pt;}
.ls25{letter-spacing:-0.072000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000267pt;}
.ls14{letter-spacing:0.184000pt;}
.ls24{letter-spacing:0.736000pt;}
.ls29{letter-spacing:0.784000pt;}
.ls1f{letter-spacing:1.440000pt;}
.ls11{letter-spacing:2.091467pt;}
.lse{letter-spacing:2.133333pt;}
.ls15{letter-spacing:2.208000pt;}
.ls20{letter-spacing:2.933333pt;}
.ls0{letter-spacing:3.200000pt;}
.ls1d{letter-spacing:3.666667pt;}
.ls1{letter-spacing:3.733333pt;}
.ls2{letter-spacing:4.933333pt;}
.lsa{letter-spacing:5.120000pt;}
.lsc{letter-spacing:5.226667pt;}
.ls5{letter-spacing:5.333333pt;}
.ls26{letter-spacing:5.600000pt;}
.ls10{letter-spacing:5.642667pt;}
.ls13{letter-spacing:6.133333pt;}
.ls2a{letter-spacing:6.400000pt;}
.ls3{letter-spacing:6.453333pt;}
.ls16{letter-spacing:6.466667pt;}
.ls28{letter-spacing:6.820800pt;}
.ls1a{letter-spacing:7.253472pt;}
.ls22{letter-spacing:7.254005pt;}
.lsf{letter-spacing:7.266667pt;}
.ls6{letter-spacing:7.466667pt;}
.ls27{letter-spacing:7.840000pt;}
.ws11{word-spacing:-26.000000pt;}
.ws1b{word-spacing:-25.200000pt;}
.ws36{word-spacing:-25.133333pt;}
.ws0{word-spacing:-23.666667pt;}
.ws32{word-spacing:-23.576000pt;}
.ws24{word-spacing:-22.400000pt;}
.ws25{word-spacing:-21.672000pt;}
.ws28{word-spacing:-21.666667pt;}
.ws3a{word-spacing:-20.320000pt;}
.wsb{word-spacing:-20.213333pt;}
.ws30{word-spacing:-20.160000pt;}
.ws4{word-spacing:-20.106667pt;}
.ws3{word-spacing:-17.472000pt;}
.wse{word-spacing:-17.234667pt;}
.ws1a{word-spacing:-16.314667pt;}
.ws33{word-spacing:-15.736000pt;}
.ws1{word-spacing:-15.189333pt;}
.ws1c{word-spacing:-15.149333pt;}
.ws14{word-spacing:-14.986667pt;}
.ws2{word-spacing:-14.773333pt;}
.ws2b{word-spacing:-14.536000pt;}
.ws13{word-spacing:-14.224000pt;}
.ws35{word-spacing:-13.832000pt;}
.ws22{word-spacing:-13.738667pt;}
.wsd{word-spacing:-13.680000pt;}
.wsc{word-spacing:-13.173333pt;}
.ws2f{word-spacing:-13.125333pt;}
.ws20{word-spacing:-12.696000pt;}
.ws37{word-spacing:-11.984000pt;}
.ws23{word-spacing:-10.752000pt;}
.ws12{word-spacing:-10.047811pt;}
.ws8{word-spacing:-7.466667pt;}
.ws1d{word-spacing:-6.133333pt;}
.ws34{word-spacing:-5.600000pt;}
.ws7{word-spacing:-5.333333pt;}
.wsa{word-spacing:-3.733333pt;}
.ws19{word-spacing:-2.133333pt;}
.ws2c{word-spacing:-1.226667pt;}
.ws5{word-spacing:-1.120000pt;}
.ws31{word-spacing:-0.736000pt;}
.ws2e{word-spacing:-0.368000pt;}
.ws6{word-spacing:0.000000pt;}
.ws38{word-spacing:0.112000pt;}
.ws21{word-spacing:0.216000pt;}
.ws9{word-spacing:0.288000pt;}
.ws10{word-spacing:0.336000pt;}
.ws26{word-spacing:0.557333pt;}
.ws1f{word-spacing:0.760000pt;}
.ws1e{word-spacing:1.226667pt;}
.ws3b{word-spacing:1.344000pt;}
.ws2d{word-spacing:2.208000pt;}
.ws2a{word-spacing:4.170667pt;}
.ws39{word-spacing:5.152000pt;}
.ws29{word-spacing:7.973333pt;}
.ws27{word-spacing:24.625920pt;}
.wsf{word-spacing:38.617920pt;}
.ws15{word-spacing:122.528000pt;}
.ws16{word-spacing:131.514667pt;}
.ws17{word-spacing:147.488000pt;}
.ws18{word-spacing:177.290667pt;}
._1c{margin-left:-17.234933pt;}
._b{margin-left:-9.122667pt;}
._21{margin-left:-7.514933pt;}
._c{margin-left:-6.416800pt;}
._7{margin-left:-5.351467pt;}
._6{margin-left:-3.717333pt;}
._5{margin-left:-2.218667pt;}
._2{margin-left:-1.290667pt;}
._3{width:1.197867pt;}
._0{width:2.313333pt;}
._a{width:3.269333pt;}
._d{width:4.533333pt;}
._4{width:5.451733pt;}
._8{width:6.412800pt;}
._9{width:7.630933pt;}
._1d{width:8.667467pt;}
._e{width:9.658667pt;}
._13{width:11.061333pt;}
._17{width:12.166933pt;}
._12{width:13.472000pt;}
._19{width:14.775568pt;}
._1a{width:15.865397pt;}
._2d{width:17.102400pt;}
._1e{width:18.651467pt;}
._20{width:19.638400pt;}
._30{width:21.179733pt;}
._2f{width:22.498400pt;}
._26{width:24.625920pt;}
._25{width:26.398667pt;}
._24{width:27.400267pt;}
._2e{width:28.343200pt;}
._28{width:30.375200pt;}
._29{width:31.450400pt;}
._2b{width:33.029867pt;}
._2a{width:34.188000pt;}
._15{width:38.617920pt;}
._2c{width:58.632533pt;}
._f{width:76.048000pt;}
._14{width:231.653333pt;}
._16{width:390.615467pt;}
._1f{width:391.833067pt;}
._1b{width:393.048533pt;}
._31{width:394.400000pt;}
._27{width:397.979733pt;}
._1{width:399.406400pt;}
._10{width:514.133333pt;}
._11{width:849.341067pt;}
._22{width:852.114400pt;}
._23{width:855.714400pt;}
._18{width:857.474400pt;}
.fsa{font-size:27.984000pt;}
.fs9{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs8{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs7{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y70{bottom:87.302933pt;}
.y180{bottom:94.369200pt;}
.y12c{bottom:94.452667pt;}
.y1e6{bottom:94.453867pt;}
.yea{bottom:94.480267pt;}
.y46{bottom:94.482933pt;}
.y95{bottom:94.483067pt;}
.y1f{bottom:94.483200pt;}
.yf5{bottom:94.484000pt;}
.y1a3{bottom:94.485600pt;}
.yb7{bottom:94.501200pt;}
.y1c5{bottom:94.538400pt;}
.y228{bottom:94.588000pt;}
.y208{bottom:94.607867pt;}
.y159{bottom:99.929867pt;}
.y6f{bottom:105.301600pt;}
.yec{bottom:105.413467pt;}
.ye9{bottom:109.816267pt;}
.y45{bottom:109.818933pt;}
.y94{bottom:109.819067pt;}
.y227{bottom:112.001333pt;}
.y1a2{bottom:112.484267pt;}
.y17f{bottom:112.523867pt;}
.y1c4{bottom:112.780400pt;}
.y207{bottom:113.227867pt;}
.yb6{bottom:113.468533pt;}
.y12b{bottom:113.542667pt;}
.y1e{bottom:113.763200pt;}
.y1e5{bottom:113.871867pt;}
.yf4{bottom:116.196000pt;}
.y158{bottom:117.931200pt;}
.y6e{bottom:121.746533pt;}
.ye8{bottom:125.152267pt;}
.yd7{bottom:125.154933pt;}
.y44{bottom:127.817600pt;}
.y93{bottom:127.817733pt;}
.y226{bottom:129.414667pt;}
.y17e{bottom:130.678533pt;}
.y1c3{bottom:131.022400pt;}
.y206{bottom:131.847867pt;}
.yb5{bottom:132.435867pt;}
.y12a{bottom:132.632667pt;}
.y1d{bottom:132.977333pt;}
.y1e4{bottom:133.289867pt;}
.y157{bottom:135.932533pt;}
.y6d{bottom:137.082533pt;}
.yf3{bottom:137.908000pt;}
.ye7{bottom:140.488267pt;}
.ye6{bottom:143.150933pt;}
.y102{bottom:143.832400pt;}
.y43{bottom:144.262400pt;}
.yd6{bottom:144.265067pt;}
.y92{bottom:144.265333pt;}
.y225{bottom:146.828000pt;}
.y17d{bottom:148.833200pt;}
.y1c2{bottom:149.264400pt;}
.y1c{bottom:150.924000pt;}
.yb4{bottom:151.403200pt;}
.y1a1{bottom:151.608400pt;}
.y129{bottom:151.722667pt;}
.y1e3{bottom:152.707867pt;}
.y156{bottom:153.933867pt;}
.y6c{bottom:155.081200pt;}
.y205{bottom:158.027867pt;}
.y42{bottom:159.598400pt;}
.yf2{bottom:159.620000pt;}
.y101{bottom:161.832400pt;}
.yd5{bottom:162.263733pt;}
.y91{bottom:162.264000pt;}
.y224{bottom:164.241333pt;}
.y17c{bottom:166.987867pt;}
.y1b{bottom:168.870667pt;}
.y1a0{bottom:169.625067pt;}
.yb3{bottom:170.370533pt;}
.y128{bottom:170.812667pt;}
.y155{bottom:171.935200pt;}
.y1e2{bottom:172.125867pt;}
.y41{bottom:174.934400pt;}
.y1c1{bottom:175.066400pt;}
.y204{bottom:176.647867pt;}
.y40{bottom:177.597067pt;}
.yf1{bottom:181.332000pt;}
.y223{bottom:181.654667pt;}
.y139{bottom:183.679867pt;}
.y17b{bottom:185.142533pt;}
.y1a{bottom:186.817333pt;}
.y19f{bottom:187.641733pt;}
.ye5{bottom:189.191867pt;}
.y127{bottom:189.902667pt;}
.y154{bottom:189.936533pt;}
.y1c0{bottom:193.308400pt;}
.y203{bottom:195.267867pt;}
.y222{bottom:199.068000pt;}
.y1e1{bottom:199.103867pt;}
.y6a{bottom:200.231333pt;}
.y90{bottom:201.373600pt;}
.yd4{bottom:201.396267pt;}
.y17a{bottom:203.297200pt;}
.y100{bottom:204.399333pt;}
.y19{bottom:204.764000pt;}
.y19e{bottom:205.658400pt;}
.ye4{bottom:207.193200pt;}
.y153{bottom:207.937867pt;}
.y69{bottom:208.231333pt;}
.yb2{bottom:208.242533pt;}
.y202{bottom:213.887867pt;}
.y6b{bottom:216.231333pt;}
.y221{bottom:216.481333pt;}
.y3f{bottom:216.735467pt;}
.y1e0{bottom:218.521867pt;}
.y1bf{bottom:219.110400pt;}
.yd3{bottom:219.949600pt;}
.y8f{bottom:220.156933pt;}
.y179{bottom:221.451867pt;}
.y18{bottom:222.710667pt;}
.y19d{bottom:223.675067pt;}
.ye3{bottom:225.194533pt;}
.y152{bottom:225.939200pt;}
.yf0{bottom:225.958000pt;}
.y126{bottom:228.071467pt;}
.yb1{bottom:230.544533pt;}
.y220{bottom:233.894667pt;}
.y3e{bottom:235.012800pt;}
.yfe{bottom:235.627600pt;}
.y67{bottom:236.431333pt;}
.y1be{bottom:237.352400pt;}
.y1df{bottom:237.939867pt;}
.yd2{bottom:238.502933pt;}
.y8e{bottom:238.940267pt;}
.y178{bottom:239.606533pt;}
.y201{bottom:240.067867pt;}
.y17{bottom:240.657333pt;}
.y142{bottom:241.580000pt;}
.y19c{bottom:241.691733pt;}
.ye2{bottom:243.195867pt;}
.y151{bottom:243.940533pt;}
.y66{bottom:244.431333pt;}
.y125{bottom:247.151467pt;}
.yef{bottom:247.664667pt;}
.y21f{bottom:251.308000pt;}
.y68{bottom:252.431333pt;}
.yb0{bottom:252.846533pt;}
.y3d{bottom:253.290133pt;}
.yfd{bottom:253.628933pt;}
.y1bd{bottom:255.594400pt;}
.yd1{bottom:257.058000pt;}
.y8d{bottom:257.723600pt;}
.y177{bottom:257.761200pt;}
.y16{bottom:258.604000pt;}
.y200{bottom:258.687867pt;}
.y141{bottom:259.581333pt;}
.y19b{bottom:259.708400pt;}
.ye1{bottom:261.197200pt;}
.y150{bottom:261.941867pt;}
.y1de{bottom:264.917867pt;}
.y124{bottom:266.234400pt;}
.y21e{bottom:268.721333pt;}
.yee{bottom:269.375600pt;}
.y3c{bottom:271.567467pt;}
.yfc{bottom:271.630267pt;}
.y64{bottom:272.631333pt;}
.yd0{bottom:275.611333pt;}
.y176{bottom:275.915867pt;}
.y8c{bottom:276.506933pt;}
.y15{bottom:276.550667pt;}
.y140{bottom:277.582667pt;}
.y19a{bottom:277.725067pt;}
.ye0{bottom:279.198533pt;}
.y14f{bottom:279.943200pt;}
.y63{bottom:280.631333pt;}
.y1bc{bottom:281.396400pt;}
.y1dd{bottom:284.335867pt;}
.y1ff{bottom:284.867867pt;}
.y21d{bottom:286.134667pt;}
.y65{bottom:288.631333pt;}
.yfb{bottom:289.631600pt;}
.y3b{bottom:289.844800pt;}
.y175{bottom:294.070533pt;}
.y14{bottom:294.497333pt;}
.y8b{bottom:295.290267pt;}
.y13f{bottom:295.584000pt;}
.y199{bottom:295.741733pt;}
.y122{bottom:295.795867pt;}
.ydf{bottom:297.199867pt;}
.y14e{bottom:297.944533pt;}
.y1bb{bottom:299.638400pt;}
.y1fe{bottom:303.487867pt;}
.y21c{bottom:303.548000pt;}
.y1dc{bottom:303.753867pt;}
.yfa{bottom:307.632933pt;}
.y3a{bottom:308.122133pt;}
.y61{bottom:308.831333pt;}
.yaf{bottom:309.250533pt;}
.y174{bottom:312.225200pt;}
.y13{bottom:312.444000pt;}
.ycf{bottom:313.064800pt;}
.y13e{bottom:313.585333pt;}
.y198{bottom:313.758400pt;}
.y121{bottom:313.797200pt;}
.y8a{bottom:314.073600pt;}
.yde{bottom:315.201200pt;}
.y14d{bottom:315.945867pt;}
.y60{bottom:316.831333pt;}
.y1ba{bottom:317.880400pt;}
.y21b{bottom:320.961333pt;}
.y1fd{bottom:322.107867pt;}
.y62{bottom:324.831333pt;}
.yf9{bottom:325.634267pt;}
.y39{bottom:326.399467pt;}
.yae{bottom:328.217867pt;}
.y173{bottom:330.379867pt;}
.y12{bottom:330.390667pt;}
.y1db{bottom:330.731867pt;}
.y13d{bottom:331.586667pt;}
.y197{bottom:331.775067pt;}
.y120{bottom:331.798533pt;}
.y89{bottom:332.856933pt;}
.y14c{bottom:333.947200pt;}
.yce{bottom:334.952800pt;}
.y21a{bottom:338.374667pt;}
.y1fc{bottom:340.727867pt;}
.yf8{bottom:343.635600pt;}
.y1b9{bottom:343.682400pt;}
.y38{bottom:344.676800pt;}
.y5f{bottom:345.498000pt;}
.yad{bottom:347.185200pt;}
.y11{bottom:348.337333pt;}
.y172{bottom:348.534533pt;}
.y13c{bottom:349.588000pt;}
.y196{bottom:349.791733pt;}
.y11f{bottom:349.799867pt;}
.y1da{bottom:350.149867pt;}
.ydd{bottom:351.201200pt;}
.y88{bottom:351.640267pt;}
.y14b{bottom:351.948533pt;}
.y219{bottom:355.788000pt;}
.ycd{bottom:356.840800pt;}
.y5e{bottom:361.498000pt;}
.yf7{bottom:361.636933pt;}
.y1b8{bottom:361.924400pt;}
.yac{bottom:366.152533pt;}
.y171{bottom:366.689200pt;}
.y1fb{bottom:366.907867pt;}
.y11e{bottom:367.801200pt;}
.y195{bottom:367.808400pt;}
.y1d9{bottom:369.567867pt;}
.y14a{bottom:369.949867pt;}
.y117{bottom:370.386533pt;}
.y87{bottom:370.423600pt;}
.y218{bottom:373.201333pt;}
.y10{bottom:377.617333pt;}
.y1b7{bottom:380.166400pt;}
.y37{bottom:381.853333pt;}
.y170{bottom:384.843867pt;}
.yab{bottom:385.119867pt;}
.y1fa{bottom:385.527867pt;}
.y13b{bottom:385.588000pt;}
.y11d{bottom:385.802533pt;}
.y194{bottom:385.825067pt;}
.y149{bottom:387.951200pt;}
.y5d{bottom:388.170267pt;}
.y116{bottom:388.387867pt;}
.y86{bottom:389.201600pt;}
.y217{bottom:390.614667pt;}
.y1d8{bottom:396.545867pt;}
.yf6{bottom:397.636933pt;}
.y16f{bottom:402.998533pt;}
.y11c{bottom:403.803867pt;}
.y193{bottom:403.841733pt;}
.yaa{bottom:404.087200pt;}
.y1f9{bottom:404.147867pt;}
.y148{bottom:405.952533pt;}
.y1b6{bottom:405.968400pt;}
.y115{bottom:406.389200pt;}
.y85{bottom:407.984933pt;}
.y216{bottom:408.028000pt;}
.y137{bottom:412.147733pt;}
.ycc{bottom:412.777733pt;}
.y13a{bottom:414.926667pt;}
.y1d7{bottom:415.963867pt;}
.y16e{bottom:421.153200pt;}
.y11b{bottom:421.805200pt;}
.y192{bottom:421.858400pt;}
.y1f8{bottom:422.767867pt;}
.ya9{bottom:423.054533pt;}
.y147{bottom:423.953867pt;}
.y1b5{bottom:424.210400pt;}
.y5c{bottom:424.379867pt;}
.y114{bottom:424.390533pt;}
.y215{bottom:425.441333pt;}
.y84{bottom:426.768267pt;}
.yf{bottom:429.585867pt;}
.y136{bottom:430.149067pt;}
.ycb{bottom:431.331067pt;}
.y1d6{bottom:435.381867pt;}
.y36{bottom:437.480267pt;}
.y16d{bottom:439.307867pt;}
.y11a{bottom:439.806533pt;}
.y146{bottom:441.955200pt;}
.ya8{bottom:442.021867pt;}
.y5b{bottom:442.381200pt;}
.y113{bottom:442.391867pt;}
.y83{bottom:445.517867pt;}
.y135{bottom:448.150400pt;}
.y1f7{bottom:448.947867pt;}
.yeb{bottom:449.743333pt;}
.yca{bottom:449.884400pt;}
.y1b4{bottom:450.012400pt;}
.ye{bottom:454.188533pt;}
.y214{bottom:454.201333pt;}
.y35{bottom:456.426933pt;}
.y16c{bottom:457.462533pt;}
.y119{bottom:457.807867pt;}
.y191{bottom:458.772400pt;}
.y145{bottom:459.956533pt;}
.y5a{bottom:460.382533pt;}
.y112{bottom:460.393200pt;}
.ya7{bottom:460.989200pt;}
.y138{bottom:462.153333pt;}
.y1d5{bottom:462.359867pt;}
.y82{bottom:464.301200pt;}
.y134{bottom:466.151733pt;}
.y1f6{bottom:467.567867pt;}
.y1b3{bottom:468.254400pt;}
.yc9{bottom:468.437733pt;}
.y34{bottom:475.358000pt;}
.y16b{bottom:475.617200pt;}
.y144{bottom:477.957867pt;}
.y59{bottom:478.383867pt;}
.y111{bottom:478.394533pt;}
.yd{bottom:478.791200pt;}
.ya6{bottom:479.956533pt;}
.y1d4{bottom:481.777867pt;}
.y81{bottom:483.084533pt;}
.y133{bottom:484.153067pt;}
.y1f5{bottom:486.187867pt;}
.yc8{bottom:486.991067pt;}
.y238{bottom:492.838000pt;}
.y33{bottom:492.971333pt;}
.y16a{bottom:493.771867pt;}
.y1b2{bottom:494.056400pt;}
.y118{bottom:495.007867pt;}
.y58{bottom:496.385200pt;}
.y110{bottom:496.395867pt;}
.ya5{bottom:498.923867pt;}
.y1d3{bottom:501.195867pt;}
.y80{bottom:501.867867pt;}
.y132{bottom:502.154400pt;}
.yc7{bottom:505.544400pt;}
.y213{bottom:505.646533pt;}
.yff{bottom:507.625067pt;}
.y32{bottom:510.584667pt;}
.y237{bottom:510.838000pt;}
.y169{bottom:511.926533pt;}
.y1b1{bottom:512.298400pt;}
.y1f4{bottom:512.367867pt;}
.y143{bottom:513.957867pt;}
.y190{bottom:514.137733pt;}
.y57{bottom:514.386533pt;}
.y10f{bottom:514.397200pt;}
.ya4{bottom:517.891200pt;}
.y1d2{bottom:520.613867pt;}
.y7f{bottom:520.651200pt;}
.yc{bottom:522.298267pt;}
.yc6{bottom:524.097733pt;}
.y31{bottom:528.198000pt;}
.y236{bottom:528.838000pt;}
.y212{bottom:529.726533pt;}
.y168{bottom:530.081200pt;}
.y1b0{bottom:530.540400pt;}
.y1f3{bottom:530.987867pt;}
.y18f{bottom:532.151200pt;}
.y56{bottom:532.387867pt;}
.y10e{bottom:532.398533pt;}
.ya3{bottom:536.858533pt;}
.y131{bottom:539.062133pt;}
.y7e{bottom:539.434533pt;}
.yed{bottom:540.502133pt;}
.yc5{bottom:542.651067pt;}
.y30{bottom:545.811333pt;}
.y235{bottom:546.838000pt;}
.y1d1{bottom:547.591867pt;}
.y167{bottom:548.235867pt;}
.y1f2{bottom:549.607867pt;}
.y18e{bottom:550.167867pt;}
.y55{bottom:550.389200pt;}
.y10d{bottom:550.399867pt;}
.yb{bottom:550.906267pt;}
.y211{bottom:553.806533pt;}
.ya2{bottom:555.825867pt;}
.y1af{bottom:556.342400pt;}
.y7d{bottom:558.217867pt;}
.y130{bottom:560.392133pt;}
.yc4{bottom:561.204400pt;}
.y2f{bottom:563.424667pt;}
.y166{bottom:566.390533pt;}
.y1d0{bottom:567.009867pt;}
.y18d{bottom:568.184533pt;}
.y10c{bottom:568.383867pt;}
.y54{bottom:568.390533pt;}
.y123{bottom:573.271067pt;}
.ya1{bottom:574.793200pt;}
.y1f1{bottom:575.787867pt;}
.y234{bottom:576.171333pt;}
.y7c{bottom:577.001200pt;}
.ya{bottom:579.514267pt;}
.yc3{bottom:579.757733pt;}
.y2e{bottom:581.038000pt;}
.y12f{bottom:581.722133pt;}
.y165{bottom:584.545200pt;}
.y18c{bottom:586.201200pt;}
.y10b{bottom:586.385200pt;}
.y53{bottom:586.391867pt;}
.y1cf{bottom:586.427867pt;}
.ya0{bottom:593.760533pt;}
.y1f0{bottom:594.407867pt;}
.y7b{bottom:595.784533pt;}
.yc2{bottom:598.311067pt;}
.y2d{bottom:598.651333pt;}
.y1ae{bottom:601.687867pt;}
.y164{bottom:602.699867pt;}
.y12e{bottom:603.052133pt;}
.y18b{bottom:604.217867pt;}
.y10a{bottom:604.386533pt;}
.y52{bottom:604.393200pt;}
.y9{bottom:608.122267pt;}
.y9f{bottom:612.727867pt;}
.y1ef{bottom:613.027867pt;}
.y233{bottom:613.064667pt;}
.y1ce{bottom:613.405867pt;}
.y7a{bottom:614.567867pt;}
.y2c{bottom:616.264667pt;}
.yc1{bottom:616.864400pt;}
.y1ad{bottom:619.934533pt;}
.y163{bottom:620.854533pt;}
.y18a{bottom:622.234533pt;}
.y109{bottom:622.387867pt;}
.y51{bottom:622.394533pt;}
.y232{bottom:630.398000pt;}
.y1ee{bottom:631.647867pt;}
.y9e{bottom:631.695200pt;}
.y1cd{bottom:632.823867pt;}
.y79{bottom:633.351200pt;}
.y2b{bottom:633.878000pt;}
.yc0{bottom:635.417733pt;}
.y8{bottom:636.730267pt;}
.y1ac{bottom:638.181200pt;}
.y162{bottom:639.009200pt;}
.y189{bottom:640.251200pt;}
.y108{bottom:640.389200pt;}
.y50{bottom:640.395867pt;}
.y231{bottom:647.731333pt;}
.y9d{bottom:650.662533pt;}
.y210{bottom:651.023867pt;}
.y2a{bottom:651.491333pt;}
.y78{bottom:652.134533pt;}
.y1cc{bottom:652.241867pt;}
.ybf{bottom:653.971067pt;}
.y1ab{bottom:656.427867pt;}
.y161{bottom:657.163867pt;}
.y1ed{bottom:657.827867pt;}
.y188{bottom:658.267867pt;}
.y107{bottom:658.390533pt;}
.y4f{bottom:658.397200pt;}
.y12d{bottom:658.399867pt;}
.y230{bottom:665.064667pt;}
.y29{bottom:669.104667pt;}
.y20f{bottom:669.111867pt;}
.y9c{bottom:669.629867pt;}
.y77{bottom:670.917867pt;}
.ybe{bottom:672.524400pt;}
.y1aa{bottom:674.674533pt;}
.y160{bottom:675.318533pt;}
.y187{bottom:676.284533pt;}
.y106{bottom:676.391867pt;}
.ydc{bottom:676.394533pt;}
.y4e{bottom:676.398533pt;}
.y1ec{bottom:676.447867pt;}
.y1cb{bottom:679.219867pt;}
.y22f{bottom:682.398000pt;}
.y28{bottom:686.718000pt;}
.y20e{bottom:687.199867pt;}
.y9b{bottom:688.597200pt;}
.y76{bottom:689.701200pt;}
.ybd{bottom:691.077733pt;}
.y7{bottom:691.773067pt;}
.y1a9{bottom:692.921200pt;}
.y15f{bottom:693.473200pt;}
.y186{bottom:694.301200pt;}
.y105{bottom:694.393200pt;}
.ydb{bottom:694.395867pt;}
.y4d{bottom:694.399867pt;}
.y1ca{bottom:698.637867pt;}
.y22e{bottom:699.731333pt;}
.y1eb{bottom:702.627867pt;}
.y27{bottom:704.331333pt;}
.y20d{bottom:705.287867pt;}
.y9a{bottom:707.564533pt;}
.y75{bottom:708.484533pt;}
.ybc{bottom:709.631067pt;}
.y1a8{bottom:711.167867pt;}
.y15e{bottom:711.627867pt;}
.y185{bottom:712.317867pt;}
.y104{bottom:712.394533pt;}
.yda{bottom:712.397200pt;}
.y4c{bottom:712.398533pt;}
.y22d{bottom:717.064667pt;}
.y1c9{bottom:718.055867pt;}
.y6{bottom:718.613067pt;}
.y1ea{bottom:721.247867pt;}
.y26{bottom:721.944667pt;}
.y99{bottom:726.531867pt;}
.y74{bottom:727.267867pt;}
.ybb{bottom:728.184400pt;}
.y1a7{bottom:729.414533pt;}
.y15d{bottom:729.782533pt;}
.y184{bottom:730.334533pt;}
.y103{bottom:730.395867pt;}
.yd9{bottom:730.398533pt;}
.y4b{bottom:730.399867pt;}
.y20c{bottom:730.935867pt;}
.y22c{bottom:734.398000pt;}
.y1c8{bottom:737.473867pt;}
.y5{bottom:737.893067pt;}
.y25{bottom:739.558000pt;}
.y1e9{bottom:739.867867pt;}
.y98{bottom:745.499200pt;}
.y73{bottom:746.051200pt;}
.yba{bottom:746.737733pt;}
.y1a6{bottom:747.661200pt;}
.y15c{bottom:747.937200pt;}
.y183{bottom:748.351200pt;}
.y4a{bottom:748.397200pt;}
.yd8{bottom:748.399867pt;}
.y20b{bottom:749.023867pt;}
.y22b{bottom:751.731333pt;}
.y24{bottom:757.171333pt;}
.y1c7{bottom:764.451867pt;}
.y97{bottom:764.466533pt;}
.y4{bottom:764.733067pt;}
.y72{bottom:764.834533pt;}
.yb9{bottom:765.294533pt;}
.y1a5{bottom:765.907867pt;}
.y1e8{bottom:766.047867pt;}
.y15b{bottom:766.091867pt;}
.y182{bottom:766.367867pt;}
.y49{bottom:766.398533pt;}
.y20a{bottom:767.111867pt;}
.y22a{bottom:769.064667pt;}
.y23{bottom:774.784667pt;}
.y96{bottom:783.433867pt;}
.y71{bottom:783.617867pt;}
.yb8{bottom:783.847867pt;}
.y1c6{bottom:783.869867pt;}
.y3{bottom:784.013067pt;}
.y1a4{bottom:784.154533pt;}
.y15a{bottom:784.246533pt;}
.y181{bottom:784.384533pt;}
.y48{bottom:784.399867pt;}
.y1e7{bottom:784.667867pt;}
.y209{bottom:785.199867pt;}
.y229{bottom:786.398000pt;}
.y47{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y22{bottom:803.731333pt;}
.y21{bottom:842.834667pt;}
.y20{bottom:858.834667pt;}
.ha{height:18.651445pt;}
.hc{height:30.107146pt;}
.h7{height:35.546875pt;}
.hd{height:36.229167pt;}
.hb{height:40.757812pt;}
.h2{height:44.433594pt;}
.h4{height:45.286458pt;}
.h1a{height:45.781250pt;}
.h3{height:47.550781pt;}
.h19{height:48.070312pt;}
.h9{height:52.079427pt;}
.h10{height:52.090094pt;}
.h18{height:52.092227pt;}
.hf{height:52.095427pt;}
.h14{height:52.100760pt;}
.h17{height:52.116760pt;}
.h16{height:52.148760pt;}
.h13{height:52.214360pt;}
.h15{height:52.648438pt;}
.he{height:56.608073pt;}
.h8{height:61.136719pt;}
.h6{height:63.401042pt;}
.h12{height:67.546875pt;}
.h11{height:77.286458pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x29{left:71.924667pt;}
.x1{left:73.079333pt;}
.x7{left:74.547200pt;}
.x5{left:75.733867pt;}
.x9{left:79.208667pt;}
.x19{left:85.008667pt;}
.x26{left:88.142000pt;}
.xa{left:89.182000pt;}
.x8{left:92.360533pt;}
.x6{left:93.360533pt;}
.x4{left:94.547200pt;}
.x1a{left:152.235333pt;}
.xc{left:156.968667pt;}
.xb{left:164.448667pt;}
.x2a{left:189.034533pt;}
.x3{left:206.104000pt;}
.x2{left:207.480400pt;}
.x1c{left:221.702000pt;}
.xe{left:228.715333pt;}
.xd{left:230.595333pt;}
.x27{left:241.288667pt;}
.x1b{left:242.262000pt;}
.x2b{left:279.019733pt;}
.x1e{left:284.702000pt;}
.xf{left:293.595333pt;}
.x2d{left:296.421333pt;}
.x10{left:298.288667pt;}
.x2c{left:299.250400pt;}
.x1d{left:304.235333pt;}
.x20{left:347.062000pt;}
.x11{left:355.902000pt;}
.x12{left:358.382000pt;}
.x1f{left:366.595333pt;}
.x22{left:408.795333pt;}
.x14{left:413.542000pt;}
.x13{left:414.742000pt;}
.x28{left:428.342000pt;}
.x21{left:429.355333pt;}
.x24{left:471.768667pt;}
.x15{left:473.062000pt;}
.x16{left:485.782000pt;}
.x23{left:493.768667pt;}
.x17{left:538.408667pt;}
.x18{left:544.688667pt;}
.x25{left:558.595333pt;}
}




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