
    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_0de5b43a866e25370d81b265.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_f2ebafefe535d0abf1483374.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d9666cb142651218c54e64fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_7494a833a6caf2eba450253a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_b4aaef9f00c351dcff732fdb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_70c079971d1fa765fa4e7f73.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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_bd58737d3cde5b9b76e0e4db.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.783691;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;}
.lsb{letter-spacing:-0.306000px;}
.ls9{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.270000px;}
.ls2{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.090000px;}
.ls3{letter-spacing:-0.018000px;}
.ls13{letter-spacing:-0.000003px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.036000px;}
.ls18{letter-spacing:0.126000px;}
.lsc{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.198000px;}
.ls16{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.256200px;}
.ls1d{letter-spacing:0.270000px;}
.ls7{letter-spacing:0.288000px;}
.ls1e{letter-spacing:0.342000px;}
.ls1b{letter-spacing:0.450000px;}
.ls10{letter-spacing:0.468000px;}
.ls12{letter-spacing:10.140000px;}
.ls19{letter-spacing:21.708000px;}
.ls17{letter-spacing:27.468000px;}
.lse{letter-spacing:36.288000px;}
.lsf{letter-spacing:45.468000px;}
.ls15{letter-spacing:45.648000px;}
.ls1c{letter-spacing:46.188000px;}
.ls8{letter-spacing:50.508000px;}
.ls11{letter-spacing:68.508000px;}
.ls6{letter-spacing:68.688000px;}
.ls4{letter-spacing:72.108000px;}
.ls0{letter-spacing:849.149760px;}
.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;}
}
.ws5{word-spacing:-54.000000px;}
.ws0{word-spacing:-32.544000px;}
.wsd{word-spacing:-15.226440px;}
.ws4{word-spacing:-14.970240px;}
.wse{word-spacing:-12.546000px;}
.wsc{word-spacing:-12.420000px;}
.wsa{word-spacing:-12.402000px;}
.wsf{word-spacing:-12.240000px;}
.ws2{word-spacing:-12.204000px;}
.ws9{word-spacing:-12.203997px;}
.ws3{word-spacing:-12.186000px;}
.ws8{word-spacing:-12.024000px;}
.ws7{word-spacing:-11.934000px;}
.ws6{word-spacing:-11.916000px;}
.wsb{word-spacing:-11.898000px;}
.ws1{word-spacing:0.000000px;}
._2c{margin-left:-9.486000px;}
._3{margin-left:-2.797920px;}
._0{margin-left:-1.126080px;}
._2{width:1.673280px;}
._7{width:2.808000px;}
._6{width:3.888000px;}
._4{width:5.616000px;}
._5{width:6.858720px;}
._10{width:7.878000px;}
._e{width:9.210240px;}
._8{width:10.476000px;}
._c{width:14.148000px;}
._d{width:15.390000px;}
._11{width:16.848000px;}
._1c{width:18.504720px;}
._1d{width:19.782000px;}
._13{width:20.952000px;}
._15{width:22.186800px;}
._14{width:23.274000px;}
._9{width:24.894000px;}
._a{width:25.912080px;}
._b{width:27.717840px;}
._27{width:28.890000px;}
._28{width:30.024720px;}
._2a{width:31.662000px;}
._16{width:33.228000px;}
._17{width:34.488000px;}
._29{width:35.730000px;}
._1a{width:37.692000px;}
._1e{width:39.790080px;}
._1b{width:41.472000px;}
._2b{width:43.038720px;}
._2f{width:45.162000px;}
._1f{width:48.384000px;}
._22{width:55.404000px;}
._2d{width:56.520000px;}
._25{width:58.266000px;}
._26{width:59.832000px;}
._30{width:62.910000px;}
._23{width:82.404000px;}
._24{width:83.530800px;}
._18{width:87.552000px;}
._19{width:88.560000px;}
._20{width:164.872080px;}
._21{width:166.104000px;}
._12{width:849.149760px;}
._f{width:851.916000px;}
._2e{width:1775.188800px;}
._1{width:1808.657760px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(50,62,79);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:144.000000px;}
.ye{bottom:-13.140000px;}
.y0{bottom:0.000000px;}
.y12e{bottom:2.340000px;}
.y41{bottom:3.600000px;}
.y82{bottom:3.630000px;}
.y6d{bottom:3.960000px;}
.y12{bottom:4.500000px;}
.yd{bottom:6.300000px;}
.y1ed{bottom:7.920000px;}
.y44{bottom:9.360000px;}
.y248{bottom:10.620000px;}
.y1bd{bottom:11.880000px;}
.y6e{bottom:13.140000px;}
.y12d{bottom:14.580000px;}
.y10d{bottom:18.720000px;}
.y40{bottom:19.980000px;}
.y21c{bottom:20.010000px;}
.y22b{bottom:20.154000px;}
.y5c{bottom:20.160000px;}
.y58{bottom:20.190000px;}
.y6c{bottom:22.320000px;}
.y1ec{bottom:24.300000px;}
.yc{bottom:24.660000px;}
.y1fe{bottom:25.920000px;}
.y1bc{bottom:28.260000px;}
.y12c{bottom:31.140000px;}
.y18a{bottom:32.976000px;}
.y10c{bottom:35.100000px;}
.y1c8{bottom:35.145000px;}
.y154{bottom:36.534000px;}
.y3f{bottom:36.540000px;}
.y57{bottom:36.570000px;}
.ya4{bottom:36.576000px;}
.y1be{bottom:36.585000px;}
.y1b2{bottom:36.720000px;}
.y81{bottom:36.750000px;}
.y11b{bottom:37.260000px;}
.y1d8{bottom:39.240000px;}
.y2{bottom:39.600000px;}
.y1eb{bottom:40.860000px;}
.yc9{bottom:42.120000px;}
.y1fd{bottom:42.510000px;}
.yb{bottom:42.840000px;}
.y28{bottom:44.820000px;}
.y53{bottom:44.850000px;}
.y1bb{bottom:44.865000px;}
.y10e{bottom:45.360000px;}
.y20e{bottom:45.405000px;}
.y12b{bottom:47.520000px;}
.y69{bottom:48.600000px;}
.y189{bottom:49.356000px;}
.y10b{bottom:51.660000px;}
.y1c7{bottom:51.705000px;}
.y153{bottom:52.914000px;}
.y3e{bottom:52.920000px;}
.y17a{bottom:52.956000px;}
.y215{bottom:52.965000px;}
.y22a{bottom:53.094000px;}
.y4d{bottom:53.100000px;}
.y56{bottom:53.130000px;}
.y1b4{bottom:53.136000px;}
.y5f{bottom:53.145000px;}
.y11a{bottom:53.820000px;}
.y168{bottom:54.570000px;}
.y14{bottom:57.240000px;}
.y1ea{bottom:57.420000px;}
.y1fc{bottom:58.890000px;}
.y27{bottom:61.200000px;}
.y5a{bottom:61.380000px;}
.y1ba{bottom:61.425000px;}
.y20d{bottom:61.965000px;}
.y12a{bottom:64.080000px;}
.y45{bottom:64.800000px;}
.y1b5{bottom:64.980000px;}
.yc7{bottom:66.600000px;}
.y188{bottom:66.630000px;}
.y239{bottom:67.314000px;}
.y1c6{bottom:68.085000px;}
.y10a{bottom:68.760000px;}
.y152{bottom:69.474000px;}
.y4f{bottom:69.480000px;}
.y55{bottom:69.510000px;}
.y68{bottom:69.516000px;}
.y3d{bottom:69.525000px;}
.y1b1{bottom:69.660000px;}
.y80{bottom:69.690000px;}
.y5e{bottom:69.705000px;}
.y119{bottom:70.200000px;}
.ya{bottom:70.920000px;}
.y167{bottom:70.950000px;}
.y1e9{bottom:73.800000px;}
.y18b{bottom:74.520000px;}
.y1fb{bottom:75.450000px;}
.y125{bottom:76.536000px;}
.y51{bottom:77.760000px;}
.y26{bottom:77.805000px;}
.y20c{bottom:78.525000px;}
.y61{bottom:78.876000px;}
.y129{bottom:80.496000px;}
.ya5{bottom:80.820000px;}
.y1b3{bottom:81.180000px;}
.y187{bottom:83.010000px;}
.yc6{bottom:83.205000px;}
.y238{bottom:83.874000px;}
.y1c5{bottom:84.645000px;}
.y109{bottom:85.320000px;}
.y132{bottom:85.860000px;}
.y179{bottom:85.890000px;}
.y1f3{bottom:85.896000px;}
.y3c{bottom:85.905000px;}
.y151{bottom:86.034000px;}
.y4e{bottom:86.040000px;}
.y54{bottom:86.070000px;}
.ye8{bottom:86.076000px;}
.yb1{bottom:86.085000px;}
.y67{bottom:86.790000px;}
.y246{bottom:87.480000px;}
.y166{bottom:87.510000px;}
.y1e8{bottom:90.396000px;}
.y156{bottom:90.900000px;}
.y1fa{bottom:91.830000px;}
.y124{bottom:92.916000px;}
.y1cf{bottom:94.140000px;}
.y25{bottom:94.185000px;}
.y1b9{bottom:94.365000px;}
.y20b{bottom:94.905000px;}
.y60{bottom:95.430000px;}
.y207{bottom:96.330000px;}
.y6f{bottom:97.020000px;}
.y128{bottom:97.776000px;}
.yc5{bottom:99.585000px;}
.y186{bottom:100.290000px;}
.y237{bottom:100.434000px;}
.y108{bottom:101.700000px;}
.y1c4{bottom:101.745000px;}
.y150{bottom:102.414000px;}
.y104{bottom:102.420000px;}
.y178{bottom:102.450000px;}
.ye7{bottom:102.456000px;}
.y35{bottom:102.465000px;}
.y229{bottom:102.594000px;}
.y5b{bottom:102.600000px;}
.y7f{bottom:102.630000px;}
.y1b0{bottom:102.645000px;}
.y66{bottom:103.170000px;}
.y1f2{bottom:103.176000px;}
.y165{bottom:103.890000px;}
.y1dc{bottom:104.616000px;}
.y245{bottom:104.760000px;}
.y1e7{bottom:106.776000px;}
.y155{bottom:107.640000px;}
.y1f9{bottom:108.390000px;}
.y123{bottom:109.470000px;}
.y1ce{bottom:110.700000px;}
.y24{bottom:110.745000px;}
.y20a{bottom:111.465000px;}
.y206{bottom:112.710000px;}
.y127{bottom:114.330000px;}
.yc4{bottom:116.145000px;}
.y236{bottom:116.814000px;}
.y8a{bottom:116.850000px;}
.y107{bottom:118.260000px;}
.y1c3{bottom:118.305000px;}
.y130{bottom:118.800000px;}
.y214{bottom:118.845000px;}
.y228{bottom:118.974000px;}
.y103{bottom:118.980000px;}
.y7e{bottom:119.010000px;}
.y34{bottom:119.025000px;}
.y1f1{bottom:119.550000px;}
.y14f{bottom:119.694000px;}
.ya3{bottom:119.730000px;}
.y65{bottom:120.450000px;}
.y1db{bottom:121.170000px;}
.y253{bottom:121.500000px;}
.y244{bottom:121.860000px;}
.y1e6{bottom:123.330000px;}
.y23a{bottom:123.696000px;}
.y139{bottom:123.876000px;}
.y1f8{bottom:124.770000px;}
.y122{bottom:126.030000px;}
.y1cd{bottom:127.080000px;}
.y23{bottom:127.125000px;}
.y1b8{bottom:127.305000px;}
.y209{bottom:127.845000px;}
.y23c{bottom:129.060000px;}
.y205{bottom:129.270000px;}
.y126{bottom:130.170000px;}
.y9{bottom:132.510000px;}
.yc3{bottom:132.705000px;}
.y185{bottom:133.230000px;}
.y235{bottom:133.374000px;}
.y89{bottom:133.410000px;}
.y1d7{bottom:133.920000px;}
.y138{bottom:133.965000px;}
.y106{bottom:134.820000px;}
.y1c2{bottom:134.865000px;}
.y102{bottom:135.360000px;}
.ye6{bottom:135.390000px;}
.y33{bottom:135.405000px;}
.y227{bottom:135.534000px;}
.y7d{bottom:135.570000px;}
.yb0{bottom:135.585000px;}
.y140{bottom:136.074000px;}
.y173{bottom:136.110000px;}
.y213{bottom:136.125000px;}
.ya2{bottom:136.290000px;}
.y64{bottom:136.830000px;}
.y211{bottom:136.845000px;}
.y1da{bottom:137.550000px;}
.y252{bottom:137.916000px;}
.y243{bottom:139.185000px;}
.y1e5{bottom:139.710000px;}
.y216{bottom:139.896000px;}
.y1f7{bottom:141.330000px;}
.y1cc{bottom:143.670000px;}
.y22{bottom:143.685000px;}
.y204{bottom:146.370000px;}
.yc2{bottom:149.085000px;}
.y184{bottom:149.790000px;}
.y234{bottom:150.474000px;}
.y88{bottom:150.510000px;}
.y137{bottom:150.525000px;}
.y1c1{bottom:151.245000px;}
.y1d2{bottom:151.770000px;}
.y226{bottom:151.914000px;}
.y105{bottom:151.920000px;}
.y7c{bottom:151.950000px;}
.y32{bottom:151.965000px;}
.y1f0{bottom:152.490000px;}
.y13f{bottom:152.634000px;}
.ya1{bottom:152.670000px;}
.y212{bottom:152.685000px;}
.y14e{bottom:153.354000px;}
.y164{bottom:153.390000px;}
.y210{bottom:153.405000px;}
.y63{bottom:154.110000px;}
.y251{bottom:154.290000px;}
.y242{bottom:155.565000px;}
.y1e4{bottom:156.270000px;}
.y1f6{bottom:157.710000px;}
.y1cb{bottom:160.050000px;}
.y21{bottom:160.065000px;}
.y1b7{bottom:160.245000px;}
.y203{bottom:162.930000px;}
.y201{bottom:163.650000px;}
.y183{bottom:166.170000px;}
.yc1{bottom:166.365000px;}
.y1d6{bottom:166.890000px;}
.y136{bottom:166.905000px;}
.y87{bottom:167.070000px;}
.y233{bottom:167.079000px;}
.y1c0{bottom:167.805000px;}
.ye5{bottom:168.330000px;}
.y31{bottom:168.345000px;}
.y7b{bottom:168.510000px;}
.y225{bottom:168.519000px;}
.yaf{bottom:168.525000px;}
.y13e{bottom:169.014000px;}
.y172{bottom:169.050000px;}
.y163{bottom:169.770000px;}
.y14d{bottom:169.779000px;}
.y20f{bottom:169.785000px;}
.ya0{bottom:169.950000px;}
.y1d9{bottom:170.490000px;}
.y62{bottom:170.670000px;}
.y1e3{bottom:172.650000px;}
.y241{bottom:172.845000px;}
.y1f5{bottom:174.270000px;}
.y8{bottom:174.630000px;}
.y1ca{bottom:176.610000px;}
.y20{bottom:176.625000px;}
.y202{bottom:179.310000px;}
.y250{bottom:179.670000px;}
.y200{bottom:180.030000px;}
.yc0{bottom:182.745000px;}
.y182{bottom:183.450000px;}
.y232{bottom:183.459000px;}
.y135{bottom:183.465000px;}
.y86{bottom:183.675000px;}
.y1bf{bottom:184.185000px;}
.ye4{bottom:184.890000px;}
.y224{bottom:184.899000px;}
.y30{bottom:184.905000px;}
.y1af{bottom:185.085000px;}
.y7a{bottom:185.115000px;}
.y13d{bottom:185.619000px;}
.y171{bottom:185.655000px;}
.y9f{bottom:186.330000px;}
.y14c{bottom:186.339000px;}
.y162{bottom:186.375000px;}
.y95{bottom:188.490000px;}
.y1e2{bottom:189.210000px;}
.y240{bottom:189.945000px;}
.y1f{bottom:193.185000px;}
.y24f{bottom:196.230000px;}
.y1ff{bottom:196.590000px;}
.ybf{bottom:199.305000px;}
.y181{bottom:199.830000px;}
.y231{bottom:200.019000px;}
.y134{bottom:200.565000px;}
.y85{bottom:200.775000px;}
.y177{bottom:201.270000px;}
.y2f{bottom:201.285000px;}
.ye3{bottom:201.450000px;}
.y223{bottom:201.459000px;}
.ya8{bottom:201.465000px;}
.y79{bottom:201.495000px;}
.y13c{bottom:201.999000px;}
.y1ae{bottom:202.185000px;}
.y170{bottom:202.215000px;}
.y14b{bottom:202.719000px;}
.y9e{bottom:202.935000px;}
.y94{bottom:205.095000px;}
.y1e1{bottom:205.770000px;}
.y23f{bottom:206.505000px;}
.yc8{bottom:207.570000px;}
.y1e{bottom:209.565000px;}
.y1ef{bottom:212.430000px;}
.y18c{bottom:213.690000px;}
.y42{bottom:214.410000px;}
.ybe{bottom:215.685000px;}
.y180{bottom:216.435000px;}
.y1d5{bottom:217.110000px;}
.y230{bottom:217.119000px;}
.y133{bottom:217.125000px;}
.y84{bottom:217.335000px;}
.ye2{bottom:217.830000px;}
.y222{bottom:217.839000px;}
.y2e{bottom:217.845000px;}
.y176{bottom:217.875000px;}
.y78{bottom:218.055000px;}
.y13b{bottom:218.559000px;}
.y16f{bottom:218.595000px;}
.y1ad{bottom:218.745000px;}
.y14a{bottom:219.279000px;}
.y9d{bottom:219.315000px;}
.y93{bottom:221.475000px;}
.y24e{bottom:221.610000px;}
.y1e0{bottom:222.150000px;}
.y23e{bottom:223.605000px;}
.ya6{bottom:223.770000px;}
.y1d{bottom:226.125000px;}
.y13{bottom:227.910000px;}
.y117{bottom:230.790000px;}
.ybd{bottom:232.245000px;}
.y17f{bottom:232.815000px;}
.y1d4{bottom:233.490000px;}
.y22f{bottom:233.679000px;}
.y83{bottom:233.715000px;}
.y7{bottom:234.030000px;}
.y1d1{bottom:234.210000px;}
.y2d{bottom:234.225000px;}
.y175{bottom:234.255000px;}
.ye1{bottom:234.390000px;}
.y221{bottom:234.399000px;}
.ya7{bottom:234.405000px;}
.y77{bottom:234.435000px;}
.y13a{bottom:234.939000px;}
.y16e{bottom:235.155000px;}
.y149{bottom:235.659000px;}
.y1ac{bottom:235.845000px;}
.y9c{bottom:235.875000px;}
.y1ee{bottom:237.810000px;}
.y92{bottom:238.035000px;}
.y1df{bottom:238.710000px;}
.y23d{bottom:240.885000px;}
.y1c{bottom:242.535000px;}
.y116{bottom:247.170000px;}
.y5d{bottom:248.970000px;}
.ybc{bottom:249.375000px;}
.y208{bottom:249.870000px;}
.y1d3{bottom:250.050000px;}
.y22e{bottom:250.239000px;}
.ye0{bottom:250.770000px;}
.y131{bottom:250.785000px;}
.y2c{bottom:250.815000px;}
.y220{bottom:250.959000px;}
.y11d{bottom:250.965000px;}
.y76{bottom:250.995000px;}
.y16d{bottom:251.535000px;}
.y148{bottom:252.219000px;}
.y161{bottom:252.255000px;}
.y1ab{bottom:252.435000px;}
.y9b{bottom:252.975000px;}
.y91{bottom:254.415000px;}
.y1de{bottom:255.135000px;}
.y1b{bottom:259.095000px;}
.y115{bottom:263.775000px;}
.y121{bottom:265.185000px;}
.ybb{bottom:265.935000px;}
.y17e{bottom:266.475000px;}
.y22d{bottom:266.619000px;}
.y1d0{bottom:267.150000px;}
.y174{bottom:267.195000px;}
.y21f{bottom:267.339000px;}
.y11c{bottom:267.345000px;}
.y2b{bottom:267.375000px;}
.y16c{bottom:268.095000px;}
.y147{bottom:268.779000px;}
.y160{bottom:268.815000px;}
.y9a{bottom:269.535000px;}
.y90{bottom:270.975000px;}
.y1dd{bottom:271.695000px;}
.y24d{bottom:272.550000px;}
.y1a{bottom:275.475000px;}
.y74{bottom:277.815000px;}
.y114{bottom:280.155000px;}
.yba{bottom:282.495000px;}
.y17d{bottom:283.035000px;}
.y22c{bottom:283.179000px;}
.y2a{bottom:283.755000px;}
.y21e{bottom:283.899000px;}
.yae{bottom:283.935000px;}
.y16b{bottom:284.475000px;}
.y146{bottom:285.159000px;}
.y15f{bottom:285.195000px;}
.y219{bottom:285.339000px;}
.y99{bottom:286.095000px;}
.y8f{bottom:287.535000px;}
.y19{bottom:292.035000px;}
.y6{bottom:293.475000px;}
.y73{bottom:294.195000px;}
.y113{bottom:296.715000px;}
.y24c{bottom:298.155000px;}
.yb9{bottom:298.875000px;}
.y17c{bottom:299.595000px;}
.y21d{bottom:300.279000px;}
.y29{bottom:300.315000px;}
.y16a{bottom:301.035000px;}
.y145{bottom:301.719000px;}
.y15e{bottom:301.755000px;}
.y98{bottom:302.475000px;}
.y8e{bottom:303.915000px;}
.y18{bottom:308.415000px;}
.y72{bottom:310.755000px;}
.y112{bottom:313.095000px;}
.yb8{bottom:315.435000px;}
.y17b{bottom:315.975000px;}
.y120{bottom:316.155000px;}
.y3b{bottom:316.695000px;}
.yad{bottom:316.875000px;}
.y169{bottom:317.415000px;}
.y19c{bottom:317.595000px;}
.y144{bottom:318.099000px;}
.y15d{bottom:318.135000px;}
.y218{bottom:318.279000px;}
.y97{bottom:319.035000px;}
.y4b{bottom:319.755000px;}
.y8d{bottom:320.475000px;}
.y24b{bottom:323.715000px;}
.y1c9{bottom:324.615000px;}
.y17{bottom:324.975000px;}
.y15a{bottom:326.055000px;}
.y71{bottom:327.135000px;}
.y111{bottom:329.655000px;}
.yb7{bottom:331.815000px;}
.y59{bottom:332.175000px;}
.y11f{bottom:332.535000px;}
.y3a{bottom:333.255000px;}
.y143{bottom:334.659000px;}
.y217{bottom:334.689000px;}
.y15c{bottom:334.695000px;}
.y19b{bottom:334.875000px;}
.y1aa{bottom:335.595000px;}
.y96{bottom:336.135000px;}
.y4a{bottom:336.315000px;}
.y8c{bottom:336.855000px;}
.y16{bottom:341.535000px;}
.y159{bottom:342.615000px;}
.y70{bottom:343.695000px;}
.y110{bottom:346.035000px;}
.yb6{bottom:348.375000px;}
.y11e{bottom:349.095000px;}
.y39{bottom:349.635000px;}
.yac{bottom:349.815000px;}
.y142{bottom:351.069000px;}
.y19a{bottom:351.975000px;}
.y24a{bottom:352.335000px;}
.y49{bottom:352.695000px;}
.y5{bottom:352.875000px;}
.y8b{bottom:353.415000px;}
.y15{bottom:357.915000px;}
.y158{bottom:358.995000px;}
.y100{bottom:361.875000px;}
.y10f{bottom:362.595000px;}
.yb5{bottom:364.755000px;}
.y38{bottom:366.195000px;}
.y141{bottom:367.629000px;}
.y1a9{bottom:368.535000px;}
.y48{bottom:369.255000px;}
.y157{bottom:375.585000px;}
.yff{bottom:378.435000px;}
.yb4{bottom:382.035000px;}
.y37{bottom:382.575000px;}
.yab{bottom:382.755000px;}
.y249{bottom:383.835000px;}
.y1a8{bottom:384.915000px;}
.y47{bottom:385.635000px;}
.y199{bottom:386.355000px;}
.yfe{bottom:394.815000px;}
.yb3{bottom:398.415000px;}
.y36{bottom:399.135000px;}
.y1a7{bottom:401.475000px;}
.y46{bottom:402.225000px;}
.y198{bottom:402.915000px;}
.yfd{bottom:411.375000px;}
.y4{bottom:412.275000px;}
.yb2{bottom:415.020000px;}
.ycb{bottom:415.695000px;}
.yaa{bottom:415.740000px;}
.y1a6{bottom:417.855000px;}
.y197{bottom:420.015000px;}
.yfc{bottom:427.785000px;}
.yca{bottom:432.105000px;}
.ya9{bottom:432.300000px;}
.y1f4{bottom:433.335000px;}
.y1a5{bottom:434.460000px;}
.y196{bottom:436.620000px;}
.yfb{bottom:444.345000px;}
.y52{bottom:448.275000px;}
.ydf{bottom:448.665000px;}
.y1a4{bottom:450.840000px;}
.y195{bottom:453.000000px;}
.y21b{bottom:453.855000px;}
.y15b{bottom:454.215000px;}
.y3{bottom:459.825000px;}
.yfa{bottom:460.725000px;}
.y75{bottom:463.935000px;}
.yde{bottom:465.045000px;}
.y247{bottom:467.025000px;}
.y1a3{bottom:468.120000px;}
.y194{bottom:469.560000px;}
.yf9{bottom:477.285000px;}
.ydd{bottom:481.605000px;}
.y1a2{bottom:484.500000px;}
.y193{bottom:485.940000px;}
.yf8{bottom:494.565000px;}
.ydc{bottom:497.985000px;}
.y23b{bottom:499.965000px;}
.y1a1{bottom:501.060000px;}
.y192{bottom:502.500000px;}
.y12f{bottom:505.185000px;}
.yf7{bottom:510.945000px;}
.ydb{bottom:514.545000px;}
.y1a0{bottom:517.620000px;}
.y191{bottom:519.060000px;}
.yf6{bottom:527.505000px;}
.yda{bottom:531.105000px;}
.y19f{bottom:534.000000px;}
.y190{bottom:535.440000px;}
.yf5{bottom:543.885000px;}
.yd9{bottom:547.485000px;}
.y50{bottom:548.025000px;}
.y19e{bottom:551.280000px;}
.y18f{bottom:552.000000px;}
.yf4{bottom:560.445000px;}
.yd8{bottom:564.045000px;}
.y118{bottom:564.765000px;}
.y19d{bottom:567.660000px;}
.y18e{bottom:568.380000px;}
.yf3{bottom:576.825000px;}
.yd7{bottom:580.425000px;}
.y18d{bottom:584.940000px;}
.yf2{bottom:593.385000px;}
.yd6{bottom:597.030000px;}
.y1b6{bottom:605.445000px;}
.yf1{bottom:610.530000px;}
.yd5{bottom:613.410000px;}
.yf0{bottom:627.090000px;}
.yd4{bottom:629.970000px;}
.y21a{bottom:637.350000px;}
.y11{bottom:640.770000px;}
.yef{bottom:643.470000px;}
.yd3{bottom:646.350000px;}
.y101{bottom:648.690000px;}
.yee{bottom:660.030000px;}
.yd2{bottom:662.910000px;}
.yed{bottom:677.310000px;}
.yd1{bottom:679.470000px;}
.y1{bottom:690.090000px;}
.yec{bottom:694.410000px;}
.yd0{bottom:695.850000px;}
.y4c{bottom:697.110000px;}
.yeb{bottom:710.970000px;}
.ycf{bottom:712.410000px;}
.yea{bottom:728.070000px;}
.y6b{bottom:728.430000px;}
.yce{bottom:728.790000px;}
.ye9{bottom:744.630000px;}
.ycd{bottom:745.350000px;}
.ycc{bottom:761.730000px;}
.y6a{bottom:765.870000px;}
.y43{bottom:796.650000px;}
.y10{bottom:831.780000px;}
.yf{bottom:851.760000px;}
.h9{height:20.160000px;}
.h16{height:29.700000px;}
.hd{height:29.736000px;}
.h34{height:32.220000px;}
.h23{height:35.806641px;}
.h17{height:36.720000px;}
.h35{height:47.223633px;}
.hc{height:53.709961px;}
.hb{height:55.291992px;}
.h15{height:55.503491px;}
.h8{height:59.439023px;}
.h18{height:61.189805px;}
.h7{height:65.884219px;}
.h2{height:67.824844px;}
.h6{height:73.722656px;}
.h13{height:82.476000px;}
.h20{height:83.196000px;}
.hf{height:98.820000px;}
.h11{height:99.036000px;}
.h12{height:115.380000px;}
.h2a{height:131.796000px;}
.h22{height:138.816000px;}
.h5{height:143.226562px;}
.h4{height:147.445312px;}
.h10{height:148.356000px;}
.h1e{height:164.910000px;}
.h2f{height:182.730000px;}
.h31{height:182.775000px;}
.h14{height:183.450000px;}
.h2e{height:209.595000px;}
.h2b{height:214.275000px;}
.h33{height:253.650000px;}
.h24{height:263.550000px;}
.h1a{height:263.775000px;}
.h2c{height:280.110000px;}
.h2d{height:284.475000px;}
.h32{height:313.230000px;}
.h27{height:347.655000px;}
.h28{height:362.595000px;}
.h1b{height:366.195000px;}
.h21{height:379.155000px;}
.h25{height:380.415000px;}
.ha{height:412.125000px;}
.h1c{height:445.065000px;}
.h3{height:494.025000px;}
.h29{height:597.750000px;}
.h1f{height:602.610000px;}
.h30{height:612.825000px;}
.h19{height:630.690000px;}
.h26{height:710.970000px;}
.he{height:731.130000px;}
.h1d{height:774.720000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w8{width:93.600000px;}
.w5{width:118.116000px;}
.w17{width:147.996000px;}
.w10{width:158.430000px;}
.wb{width:169.410000px;}
.w15{width:201.090000px;}
.wa{width:211.710000px;}
.wd{width:222.330000px;}
.w12{width:308.055000px;}
.w16{width:318.675000px;}
.wf{width:340.275000px;}
.w14{width:361.335000px;}
.w7{width:392.655000px;}
.w19{width:425.055000px;}
.w6{width:443.010000px;}
.w4{width:486.255000px;}
.w18{width:552.135000px;}
.we{width:562.395000px;}
.w13{width:605.235000px;}
.w11{width:658.515000px;}
.wc{width:744.045000px;}
.w1a{width:924.810000px;}
.w3{width:1048.110000px;}
.w9{width:1126.620000px;}
.w2{width:1262.879981px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x17{left:5.220000px;}
.x33{left:7.740000px;}
.x4f{left:9.000000px;}
.x19{left:10.080000px;}
.x1e{left:11.160000px;}
.x25{left:12.240000px;}
.x31{left:13.320000px;}
.x24{left:14.580000px;}
.x12{left:16.560000px;}
.x1f{left:18.000000px;}
.x3f{left:19.800000px;}
.x1c{left:20.880000px;}
.x38{left:22.500000px;}
.x20{left:23.760000px;}
.x3d{left:26.280000px;}
.x45{left:28.845000px;}
.x18{left:29.880000px;}
.x29{left:31.680000px;}
.x34{left:34.560000px;}
.x2b{left:37.260000px;}
.x1b{left:38.520000px;}
.x4b{left:40.320000px;}
.x1d{left:41.760000px;}
.x23{left:46.620000px;}
.x41{left:47.700000px;}
.x32{left:52.920000px;}
.x39{left:55.116000px;}
.x40{left:56.736000px;}
.x1a{left:58.890000px;}
.x35{left:61.605000px;}
.x42{left:66.996000px;}
.x50{left:68.796000px;}
.x2a{left:70.920000px;}
.x47{left:73.485000px;}
.x21{left:75.060000px;}
.x3a{left:79.230000px;}
.x4e{left:80.460000px;}
.x27{left:84.600000px;}
.x36{left:86.070000px;}
.x3{left:89.130000px;}
.x48{left:94.905000px;}
.x4a{left:100.470000px;}
.xf{left:106.379981px;}
.x2{left:108.180000px;}
.x37{left:111.090000px;}
.x30{left:136.665000px;}
.x52{left:148.895981px;}
.x14{left:168.300000px;}
.x49{left:169.605000px;}
.x10{left:192.630000px;}
.x2d{left:196.965000px;}
.x4c{left:223.770000px;}
.x2e{left:228.285000px;}
.x3b{left:234.390000px;}
.xb{left:255.630000px;}
.x43{left:276.870000px;}
.xc{left:285.375000px;}
.x26{left:287.490000px;}
.x2c{left:298.110000px;}
.x6{left:312.555000px;}
.xa{left:321.375000px;}
.x4{left:333.435000px;}
.x15{left:387.435000px;}
.x7{left:437.115000px;}
.x28{left:457.635000px;}
.x8{left:461.415000px;}
.x1{left:479.054981px;}
.x16{left:499.755000px;}
.x5{left:524.055000px;}
.x22{left:533.415000px;}
.x51{left:536.655000px;}
.x9{left:583.665000px;}
.x11{left:594.075000px;}
.x13{left:712.905000px;}
.x4d{left:776.625000px;}
.x3e{left:840.345000px;}
.x2f{left:861.405000px;}
.x44{left:883.005000px;}
.x3c{left:893.625000px;}
.xd{left:1037.310000px;}
.x46{left:1139.909981px;}
.xe{left:1148.369981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.272000pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls2{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.080000pt;}
.ls3{letter-spacing:-0.016000pt;}
.ls13{letter-spacing:-0.000003pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.032000pt;}
.ls18{letter-spacing:0.112000pt;}
.lsc{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.176000pt;}
.ls16{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.227733pt;}
.ls1d{letter-spacing:0.240000pt;}
.ls7{letter-spacing:0.256000pt;}
.ls1e{letter-spacing:0.304000pt;}
.ls1b{letter-spacing:0.400000pt;}
.ls10{letter-spacing:0.416000pt;}
.ls12{letter-spacing:9.013333pt;}
.ls19{letter-spacing:19.296000pt;}
.ls17{letter-spacing:24.416000pt;}
.lse{letter-spacing:32.256000pt;}
.lsf{letter-spacing:40.416000pt;}
.ls15{letter-spacing:40.576000pt;}
.ls1c{letter-spacing:41.056000pt;}
.ls8{letter-spacing:44.896000pt;}
.ls11{letter-spacing:60.896000pt;}
.ls6{letter-spacing:61.056000pt;}
.ls4{letter-spacing:64.096000pt;}
.ls0{letter-spacing:754.799787pt;}
.ws5{word-spacing:-48.000000pt;}
.ws0{word-spacing:-28.928000pt;}
.wsd{word-spacing:-13.534613pt;}
.ws4{word-spacing:-13.306880pt;}
.wse{word-spacing:-11.152000pt;}
.wsc{word-spacing:-11.040000pt;}
.wsa{word-spacing:-11.024000pt;}
.wsf{word-spacing:-10.880000pt;}
.ws2{word-spacing:-10.848000pt;}
.ws9{word-spacing:-10.847997pt;}
.ws3{word-spacing:-10.832000pt;}
.ws8{word-spacing:-10.688000pt;}
.ws7{word-spacing:-10.608000pt;}
.ws6{word-spacing:-10.592000pt;}
.wsb{word-spacing:-10.576000pt;}
.ws1{word-spacing:0.000000pt;}
._2c{margin-left:-8.432000pt;}
._3{margin-left:-2.487040pt;}
._0{margin-left:-1.000960pt;}
._2{width:1.487360pt;}
._7{width:2.496000pt;}
._6{width:3.456000pt;}
._4{width:4.992000pt;}
._5{width:6.096640pt;}
._10{width:7.002667pt;}
._e{width:8.186880pt;}
._8{width:9.312000pt;}
._c{width:12.576000pt;}
._d{width:13.680000pt;}
._11{width:14.976000pt;}
._1c{width:16.448640pt;}
._1d{width:17.584000pt;}
._13{width:18.624000pt;}
._15{width:19.721600pt;}
._14{width:20.688000pt;}
._9{width:22.128000pt;}
._a{width:23.032960pt;}
._b{width:24.638080pt;}
._27{width:25.680000pt;}
._28{width:26.688640pt;}
._2a{width:28.144000pt;}
._16{width:29.536000pt;}
._17{width:30.656000pt;}
._29{width:31.760000pt;}
._1a{width:33.504000pt;}
._1e{width:35.368960pt;}
._1b{width:36.864000pt;}
._2b{width:38.256640pt;}
._2f{width:40.144000pt;}
._1f{width:43.008000pt;}
._22{width:49.248000pt;}
._2d{width:50.240000pt;}
._25{width:51.792000pt;}
._26{width:53.184000pt;}
._30{width:55.920000pt;}
._23{width:73.248000pt;}
._24{width:74.249600pt;}
._18{width:77.824000pt;}
._19{width:78.720000pt;}
._20{width:146.552960pt;}
._21{width:147.648000pt;}
._12{width:754.799787pt;}
._f{width:757.258667pt;}
._2e{width:1577.945600pt;}
._1{width:1607.695787pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:128.000000pt;}
.ye{bottom:-11.680000pt;}
.y0{bottom:0.000000pt;}
.y12e{bottom:2.080000pt;}
.y41{bottom:3.200000pt;}
.y82{bottom:3.226667pt;}
.y6d{bottom:3.520000pt;}
.y12{bottom:4.000000pt;}
.yd{bottom:5.600000pt;}
.y1ed{bottom:7.040000pt;}
.y44{bottom:8.320000pt;}
.y248{bottom:9.440000pt;}
.y1bd{bottom:10.560000pt;}
.y6e{bottom:11.680000pt;}
.y12d{bottom:12.960000pt;}
.y10d{bottom:16.640000pt;}
.y40{bottom:17.760000pt;}
.y21c{bottom:17.786667pt;}
.y22b{bottom:17.914667pt;}
.y5c{bottom:17.920000pt;}
.y58{bottom:17.946667pt;}
.y6c{bottom:19.840000pt;}
.y1ec{bottom:21.600000pt;}
.yc{bottom:21.920000pt;}
.y1fe{bottom:23.040000pt;}
.y1bc{bottom:25.120000pt;}
.y12c{bottom:27.680000pt;}
.y18a{bottom:29.312000pt;}
.y10c{bottom:31.200000pt;}
.y1c8{bottom:31.240000pt;}
.y154{bottom:32.474667pt;}
.y3f{bottom:32.480000pt;}
.y57{bottom:32.506667pt;}
.ya4{bottom:32.512000pt;}
.y1be{bottom:32.520000pt;}
.y1b2{bottom:32.640000pt;}
.y81{bottom:32.666667pt;}
.y11b{bottom:33.120000pt;}
.y1d8{bottom:34.880000pt;}
.y2{bottom:35.200000pt;}
.y1eb{bottom:36.320000pt;}
.yc9{bottom:37.440000pt;}
.y1fd{bottom:37.786667pt;}
.yb{bottom:38.080000pt;}
.y28{bottom:39.840000pt;}
.y53{bottom:39.866667pt;}
.y1bb{bottom:39.880000pt;}
.y10e{bottom:40.320000pt;}
.y20e{bottom:40.360000pt;}
.y12b{bottom:42.240000pt;}
.y69{bottom:43.200000pt;}
.y189{bottom:43.872000pt;}
.y10b{bottom:45.920000pt;}
.y1c7{bottom:45.960000pt;}
.y153{bottom:47.034667pt;}
.y3e{bottom:47.040000pt;}
.y17a{bottom:47.072000pt;}
.y215{bottom:47.080000pt;}
.y22a{bottom:47.194667pt;}
.y4d{bottom:47.200000pt;}
.y56{bottom:47.226667pt;}
.y1b4{bottom:47.232000pt;}
.y5f{bottom:47.240000pt;}
.y11a{bottom:47.840000pt;}
.y168{bottom:48.506667pt;}
.y14{bottom:50.880000pt;}
.y1ea{bottom:51.040000pt;}
.y1fc{bottom:52.346667pt;}
.y27{bottom:54.400000pt;}
.y5a{bottom:54.560000pt;}
.y1ba{bottom:54.600000pt;}
.y20d{bottom:55.080000pt;}
.y12a{bottom:56.960000pt;}
.y45{bottom:57.600000pt;}
.y1b5{bottom:57.760000pt;}
.yc7{bottom:59.200000pt;}
.y188{bottom:59.226667pt;}
.y239{bottom:59.834667pt;}
.y1c6{bottom:60.520000pt;}
.y10a{bottom:61.120000pt;}
.y152{bottom:61.754667pt;}
.y4f{bottom:61.760000pt;}
.y55{bottom:61.786667pt;}
.y68{bottom:61.792000pt;}
.y3d{bottom:61.800000pt;}
.y1b1{bottom:61.920000pt;}
.y80{bottom:61.946667pt;}
.y5e{bottom:61.960000pt;}
.y119{bottom:62.400000pt;}
.ya{bottom:63.040000pt;}
.y167{bottom:63.066667pt;}
.y1e9{bottom:65.600000pt;}
.y18b{bottom:66.240000pt;}
.y1fb{bottom:67.066667pt;}
.y125{bottom:68.032000pt;}
.y51{bottom:69.120000pt;}
.y26{bottom:69.160000pt;}
.y20c{bottom:69.800000pt;}
.y61{bottom:70.112000pt;}
.y129{bottom:71.552000pt;}
.ya5{bottom:71.840000pt;}
.y1b3{bottom:72.160000pt;}
.y187{bottom:73.786667pt;}
.yc6{bottom:73.960000pt;}
.y238{bottom:74.554667pt;}
.y1c5{bottom:75.240000pt;}
.y109{bottom:75.840000pt;}
.y132{bottom:76.320000pt;}
.y179{bottom:76.346667pt;}
.y1f3{bottom:76.352000pt;}
.y3c{bottom:76.360000pt;}
.y151{bottom:76.474667pt;}
.y4e{bottom:76.480000pt;}
.y54{bottom:76.506667pt;}
.ye8{bottom:76.512000pt;}
.yb1{bottom:76.520000pt;}
.y67{bottom:77.146667pt;}
.y246{bottom:77.760000pt;}
.y166{bottom:77.786667pt;}
.y1e8{bottom:80.352000pt;}
.y156{bottom:80.800000pt;}
.y1fa{bottom:81.626667pt;}
.y124{bottom:82.592000pt;}
.y1cf{bottom:83.680000pt;}
.y25{bottom:83.720000pt;}
.y1b9{bottom:83.880000pt;}
.y20b{bottom:84.360000pt;}
.y60{bottom:84.826667pt;}
.y207{bottom:85.626667pt;}
.y6f{bottom:86.240000pt;}
.y128{bottom:86.912000pt;}
.yc5{bottom:88.520000pt;}
.y186{bottom:89.146667pt;}
.y237{bottom:89.274667pt;}
.y108{bottom:90.400000pt;}
.y1c4{bottom:90.440000pt;}
.y150{bottom:91.034667pt;}
.y104{bottom:91.040000pt;}
.y178{bottom:91.066667pt;}
.ye7{bottom:91.072000pt;}
.y35{bottom:91.080000pt;}
.y229{bottom:91.194667pt;}
.y5b{bottom:91.200000pt;}
.y7f{bottom:91.226667pt;}
.y1b0{bottom:91.240000pt;}
.y66{bottom:91.706667pt;}
.y1f2{bottom:91.712000pt;}
.y165{bottom:92.346667pt;}
.y1dc{bottom:92.992000pt;}
.y245{bottom:93.120000pt;}
.y1e7{bottom:94.912000pt;}
.y155{bottom:95.680000pt;}
.y1f9{bottom:96.346667pt;}
.y123{bottom:97.306667pt;}
.y1ce{bottom:98.400000pt;}
.y24{bottom:98.440000pt;}
.y20a{bottom:99.080000pt;}
.y206{bottom:100.186667pt;}
.y127{bottom:101.626667pt;}
.yc4{bottom:103.240000pt;}
.y236{bottom:103.834667pt;}
.y8a{bottom:103.866667pt;}
.y107{bottom:105.120000pt;}
.y1c3{bottom:105.160000pt;}
.y130{bottom:105.600000pt;}
.y214{bottom:105.640000pt;}
.y228{bottom:105.754667pt;}
.y103{bottom:105.760000pt;}
.y7e{bottom:105.786667pt;}
.y34{bottom:105.800000pt;}
.y1f1{bottom:106.266667pt;}
.y14f{bottom:106.394667pt;}
.ya3{bottom:106.426667pt;}
.y65{bottom:107.066667pt;}
.y1db{bottom:107.706667pt;}
.y253{bottom:108.000000pt;}
.y244{bottom:108.320000pt;}
.y1e6{bottom:109.626667pt;}
.y23a{bottom:109.952000pt;}
.y139{bottom:110.112000pt;}
.y1f8{bottom:110.906667pt;}
.y122{bottom:112.026667pt;}
.y1cd{bottom:112.960000pt;}
.y23{bottom:113.000000pt;}
.y1b8{bottom:113.160000pt;}
.y209{bottom:113.640000pt;}
.y23c{bottom:114.720000pt;}
.y205{bottom:114.906667pt;}
.y126{bottom:115.706667pt;}
.y9{bottom:117.786667pt;}
.yc3{bottom:117.960000pt;}
.y185{bottom:118.426667pt;}
.y235{bottom:118.554667pt;}
.y89{bottom:118.586667pt;}
.y1d7{bottom:119.040000pt;}
.y138{bottom:119.080000pt;}
.y106{bottom:119.840000pt;}
.y1c2{bottom:119.880000pt;}
.y102{bottom:120.320000pt;}
.ye6{bottom:120.346667pt;}
.y33{bottom:120.360000pt;}
.y227{bottom:120.474667pt;}
.y7d{bottom:120.506667pt;}
.yb0{bottom:120.520000pt;}
.y140{bottom:120.954667pt;}
.y173{bottom:120.986667pt;}
.y213{bottom:121.000000pt;}
.ya2{bottom:121.146667pt;}
.y64{bottom:121.626667pt;}
.y211{bottom:121.640000pt;}
.y1da{bottom:122.266667pt;}
.y252{bottom:122.592000pt;}
.y243{bottom:123.720000pt;}
.y1e5{bottom:124.186667pt;}
.y216{bottom:124.352000pt;}
.y1f7{bottom:125.626667pt;}
.y1cc{bottom:127.706667pt;}
.y22{bottom:127.720000pt;}
.y204{bottom:130.106667pt;}
.yc2{bottom:132.520000pt;}
.y184{bottom:133.146667pt;}
.y234{bottom:133.754667pt;}
.y88{bottom:133.786667pt;}
.y137{bottom:133.800000pt;}
.y1c1{bottom:134.440000pt;}
.y1d2{bottom:134.906667pt;}
.y226{bottom:135.034667pt;}
.y105{bottom:135.040000pt;}
.y7c{bottom:135.066667pt;}
.y32{bottom:135.080000pt;}
.y1f0{bottom:135.546667pt;}
.y13f{bottom:135.674667pt;}
.ya1{bottom:135.706667pt;}
.y212{bottom:135.720000pt;}
.y14e{bottom:136.314667pt;}
.y164{bottom:136.346667pt;}
.y210{bottom:136.360000pt;}
.y63{bottom:136.986667pt;}
.y251{bottom:137.146667pt;}
.y242{bottom:138.280000pt;}
.y1e4{bottom:138.906667pt;}
.y1f6{bottom:140.186667pt;}
.y1cb{bottom:142.266667pt;}
.y21{bottom:142.280000pt;}
.y1b7{bottom:142.440000pt;}
.y203{bottom:144.826667pt;}
.y201{bottom:145.466667pt;}
.y183{bottom:147.706667pt;}
.yc1{bottom:147.880000pt;}
.y1d6{bottom:148.346667pt;}
.y136{bottom:148.360000pt;}
.y87{bottom:148.506667pt;}
.y233{bottom:148.514667pt;}
.y1c0{bottom:149.160000pt;}
.ye5{bottom:149.626667pt;}
.y31{bottom:149.640000pt;}
.y7b{bottom:149.786667pt;}
.y225{bottom:149.794667pt;}
.yaf{bottom:149.800000pt;}
.y13e{bottom:150.234667pt;}
.y172{bottom:150.266667pt;}
.y163{bottom:150.906667pt;}
.y14d{bottom:150.914667pt;}
.y20f{bottom:150.920000pt;}
.ya0{bottom:151.066667pt;}
.y1d9{bottom:151.546667pt;}
.y62{bottom:151.706667pt;}
.y1e3{bottom:153.466667pt;}
.y241{bottom:153.640000pt;}
.y1f5{bottom:154.906667pt;}
.y8{bottom:155.226667pt;}
.y1ca{bottom:156.986667pt;}
.y20{bottom:157.000000pt;}
.y202{bottom:159.386667pt;}
.y250{bottom:159.706667pt;}
.y200{bottom:160.026667pt;}
.yc0{bottom:162.440000pt;}
.y182{bottom:163.066667pt;}
.y232{bottom:163.074667pt;}
.y135{bottom:163.080000pt;}
.y86{bottom:163.266667pt;}
.y1bf{bottom:163.720000pt;}
.ye4{bottom:164.346667pt;}
.y224{bottom:164.354667pt;}
.y30{bottom:164.360000pt;}
.y1af{bottom:164.520000pt;}
.y7a{bottom:164.546667pt;}
.y13d{bottom:164.994667pt;}
.y171{bottom:165.026667pt;}
.y9f{bottom:165.626667pt;}
.y14c{bottom:165.634667pt;}
.y162{bottom:165.666667pt;}
.y95{bottom:167.546667pt;}
.y1e2{bottom:168.186667pt;}
.y240{bottom:168.840000pt;}
.y1f{bottom:171.720000pt;}
.y24f{bottom:174.426667pt;}
.y1ff{bottom:174.746667pt;}
.ybf{bottom:177.160000pt;}
.y181{bottom:177.626667pt;}
.y231{bottom:177.794667pt;}
.y134{bottom:178.280000pt;}
.y85{bottom:178.466667pt;}
.y177{bottom:178.906667pt;}
.y2f{bottom:178.920000pt;}
.ye3{bottom:179.066667pt;}
.y223{bottom:179.074667pt;}
.ya8{bottom:179.080000pt;}
.y79{bottom:179.106667pt;}
.y13c{bottom:179.554667pt;}
.y1ae{bottom:179.720000pt;}
.y170{bottom:179.746667pt;}
.y14b{bottom:180.194667pt;}
.y9e{bottom:180.386667pt;}
.y94{bottom:182.306667pt;}
.y1e1{bottom:182.906667pt;}
.y23f{bottom:183.560000pt;}
.yc8{bottom:184.506667pt;}
.y1e{bottom:186.280000pt;}
.y1ef{bottom:188.826667pt;}
.y18c{bottom:189.946667pt;}
.y42{bottom:190.586667pt;}
.ybe{bottom:191.720000pt;}
.y180{bottom:192.386667pt;}
.y1d5{bottom:192.986667pt;}
.y230{bottom:192.994667pt;}
.y133{bottom:193.000000pt;}
.y84{bottom:193.186667pt;}
.ye2{bottom:193.626667pt;}
.y222{bottom:193.634667pt;}
.y2e{bottom:193.640000pt;}
.y176{bottom:193.666667pt;}
.y78{bottom:193.826667pt;}
.y13b{bottom:194.274667pt;}
.y16f{bottom:194.306667pt;}
.y1ad{bottom:194.440000pt;}
.y14a{bottom:194.914667pt;}
.y9d{bottom:194.946667pt;}
.y93{bottom:196.866667pt;}
.y24e{bottom:196.986667pt;}
.y1e0{bottom:197.466667pt;}
.y23e{bottom:198.760000pt;}
.ya6{bottom:198.906667pt;}
.y1d{bottom:201.000000pt;}
.y13{bottom:202.586667pt;}
.y117{bottom:205.146667pt;}
.ybd{bottom:206.440000pt;}
.y17f{bottom:206.946667pt;}
.y1d4{bottom:207.546667pt;}
.y22f{bottom:207.714667pt;}
.y83{bottom:207.746667pt;}
.y7{bottom:208.026667pt;}
.y1d1{bottom:208.186667pt;}
.y2d{bottom:208.200000pt;}
.y175{bottom:208.226667pt;}
.ye1{bottom:208.346667pt;}
.y221{bottom:208.354667pt;}
.ya7{bottom:208.360000pt;}
.y77{bottom:208.386667pt;}
.y13a{bottom:208.834667pt;}
.y16e{bottom:209.026667pt;}
.y149{bottom:209.474667pt;}
.y1ac{bottom:209.640000pt;}
.y9c{bottom:209.666667pt;}
.y1ee{bottom:211.386667pt;}
.y92{bottom:211.586667pt;}
.y1df{bottom:212.186667pt;}
.y23d{bottom:214.120000pt;}
.y1c{bottom:215.586667pt;}
.y116{bottom:219.706667pt;}
.y5d{bottom:221.306667pt;}
.ybc{bottom:221.666667pt;}
.y208{bottom:222.106667pt;}
.y1d3{bottom:222.266667pt;}
.y22e{bottom:222.434667pt;}
.ye0{bottom:222.906667pt;}
.y131{bottom:222.920000pt;}
.y2c{bottom:222.946667pt;}
.y220{bottom:223.074667pt;}
.y11d{bottom:223.080000pt;}
.y76{bottom:223.106667pt;}
.y16d{bottom:223.586667pt;}
.y148{bottom:224.194667pt;}
.y161{bottom:224.226667pt;}
.y1ab{bottom:224.386667pt;}
.y9b{bottom:224.866667pt;}
.y91{bottom:226.146667pt;}
.y1de{bottom:226.786667pt;}
.y1b{bottom:230.306667pt;}
.y115{bottom:234.466667pt;}
.y121{bottom:235.720000pt;}
.ybb{bottom:236.386667pt;}
.y17e{bottom:236.866667pt;}
.y22d{bottom:236.994667pt;}
.y1d0{bottom:237.466667pt;}
.y174{bottom:237.506667pt;}
.y21f{bottom:237.634667pt;}
.y11c{bottom:237.640000pt;}
.y2b{bottom:237.666667pt;}
.y16c{bottom:238.306667pt;}
.y147{bottom:238.914667pt;}
.y160{bottom:238.946667pt;}
.y9a{bottom:239.586667pt;}
.y90{bottom:240.866667pt;}
.y1dd{bottom:241.506667pt;}
.y24d{bottom:242.266667pt;}
.y1a{bottom:244.866667pt;}
.y74{bottom:246.946667pt;}
.y114{bottom:249.026667pt;}
.yba{bottom:251.106667pt;}
.y17d{bottom:251.586667pt;}
.y22c{bottom:251.714667pt;}
.y2a{bottom:252.226667pt;}
.y21e{bottom:252.354667pt;}
.yae{bottom:252.386667pt;}
.y16b{bottom:252.866667pt;}
.y146{bottom:253.474667pt;}
.y15f{bottom:253.506667pt;}
.y219{bottom:253.634667pt;}
.y99{bottom:254.306667pt;}
.y8f{bottom:255.586667pt;}
.y19{bottom:259.586667pt;}
.y6{bottom:260.866667pt;}
.y73{bottom:261.506667pt;}
.y113{bottom:263.746667pt;}
.y24c{bottom:265.026667pt;}
.yb9{bottom:265.666667pt;}
.y17c{bottom:266.306667pt;}
.y21d{bottom:266.914667pt;}
.y29{bottom:266.946667pt;}
.y16a{bottom:267.586667pt;}
.y145{bottom:268.194667pt;}
.y15e{bottom:268.226667pt;}
.y98{bottom:268.866667pt;}
.y8e{bottom:270.146667pt;}
.y18{bottom:274.146667pt;}
.y72{bottom:276.226667pt;}
.y112{bottom:278.306667pt;}
.yb8{bottom:280.386667pt;}
.y17b{bottom:280.866667pt;}
.y120{bottom:281.026667pt;}
.y3b{bottom:281.506667pt;}
.yad{bottom:281.666667pt;}
.y169{bottom:282.146667pt;}
.y19c{bottom:282.306667pt;}
.y144{bottom:282.754667pt;}
.y15d{bottom:282.786667pt;}
.y218{bottom:282.914667pt;}
.y97{bottom:283.586667pt;}
.y4b{bottom:284.226667pt;}
.y8d{bottom:284.866667pt;}
.y24b{bottom:287.746667pt;}
.y1c9{bottom:288.546667pt;}
.y17{bottom:288.866667pt;}
.y15a{bottom:289.826667pt;}
.y71{bottom:290.786667pt;}
.y111{bottom:293.026667pt;}
.yb7{bottom:294.946667pt;}
.y59{bottom:295.266667pt;}
.y11f{bottom:295.586667pt;}
.y3a{bottom:296.226667pt;}
.y143{bottom:297.474667pt;}
.y217{bottom:297.501333pt;}
.y15c{bottom:297.506667pt;}
.y19b{bottom:297.666667pt;}
.y1aa{bottom:298.306667pt;}
.y96{bottom:298.786667pt;}
.y4a{bottom:298.946667pt;}
.y8c{bottom:299.426667pt;}
.y16{bottom:303.586667pt;}
.y159{bottom:304.546667pt;}
.y70{bottom:305.506667pt;}
.y110{bottom:307.586667pt;}
.yb6{bottom:309.666667pt;}
.y11e{bottom:310.306667pt;}
.y39{bottom:310.786667pt;}
.yac{bottom:310.946667pt;}
.y142{bottom:312.061333pt;}
.y19a{bottom:312.866667pt;}
.y24a{bottom:313.186667pt;}
.y49{bottom:313.506667pt;}
.y5{bottom:313.666667pt;}
.y8b{bottom:314.146667pt;}
.y15{bottom:318.146667pt;}
.y158{bottom:319.106667pt;}
.y100{bottom:321.666667pt;}
.y10f{bottom:322.306667pt;}
.yb5{bottom:324.226667pt;}
.y38{bottom:325.506667pt;}
.y141{bottom:326.781333pt;}
.y1a9{bottom:327.586667pt;}
.y48{bottom:328.226667pt;}
.y157{bottom:333.853333pt;}
.yff{bottom:336.386667pt;}
.yb4{bottom:339.586667pt;}
.y37{bottom:340.066667pt;}
.yab{bottom:340.226667pt;}
.y249{bottom:341.186667pt;}
.y1a8{bottom:342.146667pt;}
.y47{bottom:342.786667pt;}
.y199{bottom:343.426667pt;}
.yfe{bottom:350.946667pt;}
.yb3{bottom:354.146667pt;}
.y36{bottom:354.786667pt;}
.y1a7{bottom:356.866667pt;}
.y46{bottom:357.533333pt;}
.y198{bottom:358.146667pt;}
.yfd{bottom:365.666667pt;}
.y4{bottom:366.466667pt;}
.yb2{bottom:368.906667pt;}
.ycb{bottom:369.506667pt;}
.yaa{bottom:369.546667pt;}
.y1a6{bottom:371.426667pt;}
.y197{bottom:373.346667pt;}
.yfc{bottom:380.253333pt;}
.yca{bottom:384.093333pt;}
.ya9{bottom:384.266667pt;}
.y1f4{bottom:385.186667pt;}
.y1a5{bottom:386.186667pt;}
.y196{bottom:388.106667pt;}
.yfb{bottom:394.973333pt;}
.y52{bottom:398.466667pt;}
.ydf{bottom:398.813333pt;}
.y1a4{bottom:400.746667pt;}
.y195{bottom:402.666667pt;}
.y21b{bottom:403.426667pt;}
.y15b{bottom:403.746667pt;}
.y3{bottom:408.733333pt;}
.yfa{bottom:409.533333pt;}
.y75{bottom:412.386667pt;}
.yde{bottom:413.373333pt;}
.y247{bottom:415.133333pt;}
.y1a3{bottom:416.106667pt;}
.y194{bottom:417.386667pt;}
.yf9{bottom:424.253333pt;}
.ydd{bottom:428.093333pt;}
.y1a2{bottom:430.666667pt;}
.y193{bottom:431.946667pt;}
.yf8{bottom:439.613333pt;}
.ydc{bottom:442.653333pt;}
.y23b{bottom:444.413333pt;}
.y1a1{bottom:445.386667pt;}
.y192{bottom:446.666667pt;}
.y12f{bottom:449.053333pt;}
.yf7{bottom:454.173333pt;}
.ydb{bottom:457.373333pt;}
.y1a0{bottom:460.106667pt;}
.y191{bottom:461.386667pt;}
.yf6{bottom:468.893333pt;}
.yda{bottom:472.093333pt;}
.y19f{bottom:474.666667pt;}
.y190{bottom:475.946667pt;}
.yf5{bottom:483.453333pt;}
.yd9{bottom:486.653333pt;}
.y50{bottom:487.133333pt;}
.y19e{bottom:490.026667pt;}
.y18f{bottom:490.666667pt;}
.yf4{bottom:498.173333pt;}
.yd8{bottom:501.373333pt;}
.y118{bottom:502.013333pt;}
.y19d{bottom:504.586667pt;}
.y18e{bottom:505.226667pt;}
.yf3{bottom:512.733333pt;}
.yd7{bottom:515.933333pt;}
.y18d{bottom:519.946667pt;}
.yf2{bottom:527.453333pt;}
.yd6{bottom:530.693333pt;}
.y1b6{bottom:538.173333pt;}
.yf1{bottom:542.693333pt;}
.yd5{bottom:545.253333pt;}
.yf0{bottom:557.413333pt;}
.yd4{bottom:559.973333pt;}
.y21a{bottom:566.533333pt;}
.y11{bottom:569.573333pt;}
.yef{bottom:571.973333pt;}
.yd3{bottom:574.533333pt;}
.y101{bottom:576.613333pt;}
.yee{bottom:586.693333pt;}
.yd2{bottom:589.253333pt;}
.yed{bottom:602.053333pt;}
.yd1{bottom:603.973333pt;}
.y1{bottom:613.413333pt;}
.yec{bottom:617.253333pt;}
.yd0{bottom:618.533333pt;}
.y4c{bottom:619.653333pt;}
.yeb{bottom:631.973333pt;}
.ycf{bottom:633.253333pt;}
.yea{bottom:647.173333pt;}
.y6b{bottom:647.493333pt;}
.yce{bottom:647.813333pt;}
.ye9{bottom:661.893333pt;}
.ycd{bottom:662.533333pt;}
.ycc{bottom:677.093333pt;}
.y6a{bottom:680.773333pt;}
.y43{bottom:708.133333pt;}
.y10{bottom:739.360000pt;}
.yf{bottom:757.120000pt;}
.h9{height:17.920000pt;}
.h16{height:26.400000pt;}
.hd{height:26.432000pt;}
.h34{height:28.640000pt;}
.h23{height:31.828125pt;}
.h17{height:32.640000pt;}
.h35{height:41.976562pt;}
.hc{height:47.742188pt;}
.hb{height:49.148438pt;}
.h15{height:49.336436pt;}
.h8{height:52.834688pt;}
.h18{height:54.390938pt;}
.h7{height:58.563750pt;}
.h2{height:60.288750pt;}
.h6{height:65.531250pt;}
.h13{height:73.312000pt;}
.h20{height:73.952000pt;}
.hf{height:87.840000pt;}
.h11{height:88.032000pt;}
.h12{height:102.560000pt;}
.h2a{height:117.152000pt;}
.h22{height:123.392000pt;}
.h5{height:127.312500pt;}
.h4{height:131.062500pt;}
.h10{height:131.872000pt;}
.h1e{height:146.586667pt;}
.h2f{height:162.426667pt;}
.h31{height:162.466667pt;}
.h14{height:163.066667pt;}
.h2e{height:186.306667pt;}
.h2b{height:190.466667pt;}
.h33{height:225.466667pt;}
.h24{height:234.266667pt;}
.h1a{height:234.466667pt;}
.h2c{height:248.986667pt;}
.h2d{height:252.866667pt;}
.h32{height:278.426667pt;}
.h27{height:309.026667pt;}
.h28{height:322.306667pt;}
.h1b{height:325.506667pt;}
.h21{height:337.026667pt;}
.h25{height:338.146667pt;}
.ha{height:366.333333pt;}
.h1c{height:395.613333pt;}
.h3{height:439.133333pt;}
.h29{height:531.333333pt;}
.h1f{height:535.653333pt;}
.h30{height:544.733333pt;}
.h19{height:560.613333pt;}
.h26{height:631.973333pt;}
.he{height:649.893333pt;}
.h1d{height:688.640000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w8{width:83.200000pt;}
.w5{width:104.992000pt;}
.w17{width:131.552000pt;}
.w10{width:140.826667pt;}
.wb{width:150.586667pt;}
.w15{width:178.746667pt;}
.wa{width:188.186667pt;}
.wd{width:197.626667pt;}
.w12{width:273.826667pt;}
.w16{width:283.266667pt;}
.wf{width:302.466667pt;}
.w14{width:321.186667pt;}
.w7{width:349.026667pt;}
.w19{width:377.826667pt;}
.w6{width:393.786667pt;}
.w4{width:432.226667pt;}
.w18{width:490.786667pt;}
.we{width:499.906667pt;}
.w13{width:537.986667pt;}
.w11{width:585.346667pt;}
.wc{width:661.373333pt;}
.w1a{width:822.053333pt;}
.w3{width:931.653333pt;}
.w9{width:1001.440000pt;}
.w2{width:1122.559983pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x17{left:4.640000pt;}
.x33{left:6.880000pt;}
.x4f{left:8.000000pt;}
.x19{left:8.960000pt;}
.x1e{left:9.920000pt;}
.x25{left:10.880000pt;}
.x31{left:11.840000pt;}
.x24{left:12.960000pt;}
.x12{left:14.720000pt;}
.x1f{left:16.000000pt;}
.x3f{left:17.600000pt;}
.x1c{left:18.560000pt;}
.x38{left:20.000000pt;}
.x20{left:21.120000pt;}
.x3d{left:23.360000pt;}
.x45{left:25.640000pt;}
.x18{left:26.560000pt;}
.x29{left:28.160000pt;}
.x34{left:30.720000pt;}
.x2b{left:33.120000pt;}
.x1b{left:34.240000pt;}
.x4b{left:35.840000pt;}
.x1d{left:37.120000pt;}
.x23{left:41.440000pt;}
.x41{left:42.400000pt;}
.x32{left:47.040000pt;}
.x39{left:48.992000pt;}
.x40{left:50.432000pt;}
.x1a{left:52.346667pt;}
.x35{left:54.760000pt;}
.x42{left:59.552000pt;}
.x50{left:61.152000pt;}
.x2a{left:63.040000pt;}
.x47{left:65.320000pt;}
.x21{left:66.720000pt;}
.x3a{left:70.426667pt;}
.x4e{left:71.520000pt;}
.x27{left:75.200000pt;}
.x36{left:76.506667pt;}
.x3{left:79.226667pt;}
.x48{left:84.360000pt;}
.x4a{left:89.306667pt;}
.xf{left:94.559983pt;}
.x2{left:96.160000pt;}
.x37{left:98.746667pt;}
.x30{left:121.480000pt;}
.x52{left:132.351983pt;}
.x14{left:149.600000pt;}
.x49{left:150.760000pt;}
.x10{left:171.226667pt;}
.x2d{left:175.080000pt;}
.x4c{left:198.906667pt;}
.x2e{left:202.920000pt;}
.x3b{left:208.346667pt;}
.xb{left:227.226667pt;}
.x43{left:246.106667pt;}
.xc{left:253.666667pt;}
.x26{left:255.546667pt;}
.x2c{left:264.986667pt;}
.x6{left:277.826667pt;}
.xa{left:285.666667pt;}
.x4{left:296.386667pt;}
.x15{left:344.386667pt;}
.x7{left:388.546667pt;}
.x28{left:406.786667pt;}
.x8{left:410.146667pt;}
.x1{left:425.826650pt;}
.x16{left:444.226667pt;}
.x5{left:465.826667pt;}
.x22{left:474.146667pt;}
.x51{left:477.026667pt;}
.x9{left:518.813333pt;}
.x11{left:528.066667pt;}
.x13{left:633.693333pt;}
.x4d{left:690.333333pt;}
.x3e{left:746.973333pt;}
.x2f{left:765.693333pt;}
.x44{left:784.893333pt;}
.x3c{left:794.333333pt;}
.xd{left:922.053333pt;}
.x46{left:1013.253317pt;}
.xe{left:1020.773317pt;}
}




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