
    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_6958fe8612b93d5bc8ca9c41.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_683e3d55b515b5a25fc8cc10.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_52d72df616dced8166d83073.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_278bcdcb2443fcb9af9e3b3a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_6526c6264ba5c449d8f97705.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_99cea0f0facffdb7aac862a6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_31fa4e62b6a7b8a0e280920c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_88acf0f947aa613f7ae95102.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3ed057223f9d732f2f09de94.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4a2bbf326358385b10760b25.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5b3df3b783824475710d0e3b.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.ls24{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.206400px;}
.ls13{letter-spacing:-0.109200px;}
.ls12{letter-spacing:-0.034560px;}
.ls11{letter-spacing:-0.025920px;}
.ls9{letter-spacing:-0.017280px;}
.lsc{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008640px;}
.ls6{letter-spacing:0.017280px;}
.ls4{letter-spacing:0.025920px;}
.ls5{letter-spacing:0.034560px;}
.ls21{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.152640px;}
.ls2{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.230400px;}
.ls0{letter-spacing:0.305280px;}
.ls22{letter-spacing:0.341280px;}
.ls15{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.385920px;}
.ls8{letter-spacing:0.702000px;}
.ls10{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.745920px;}
.ls19{letter-spacing:0.756000px;}
.ls1e{letter-spacing:9.360000px;}
.ls1b{letter-spacing:10.080000px;}
.ls23{letter-spacing:10.800000px;}
.ls16{letter-spacing:11.520000px;}
.ls1c{letter-spacing:13.680000px;}
.ls20{letter-spacing:14.400000px;}
.ls17{letter-spacing:15.840000px;}
.ls1d{letter-spacing:16.560000px;}
.ls1a{letter-spacing:25.200000px;}
.lsb{letter-spacing:44.261280px;}
.lsf{letter-spacing:44.981280px;}
.lse{letter-spacing:50.382720px;}
.lsa{letter-spacing:64.397280px;}
.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;}
}
.wsc{word-spacing:-77.760000px;}
.ws1{word-spacing:-66.240000px;}
.ws8{word-spacing:-21.060000px;}
.ws13{word-spacing:-20.196000px;}
.wsb{word-spacing:-20.160000px;}
.ws9{word-spacing:-20.142000px;}
.wse{word-spacing:-19.474560px;}
.ws4{word-spacing:-19.465920px;}
.ws6{word-spacing:-19.457280px;}
.ws2{word-spacing:-19.448640px;}
.ws3{word-spacing:-19.440000px;}
.wsa{word-spacing:-19.431360px;}
.ws5{word-spacing:-19.422720px;}
.ws10{word-spacing:-19.414080px;}
.wsd{word-spacing:-19.405440px;}
.ws0{word-spacing:-16.560000px;}
.ws12{word-spacing:-15.300000px;}
.ws11{word-spacing:-14.733600px;}
.wsf{word-spacing:-13.505760px;}
.ws15{word-spacing:-13.500000px;}
.ws14{word-spacing:-13.140000px;}
.ws7{word-spacing:0.000000px;}
._16{margin-left:-4.941360px;}
._15{margin-left:-3.654720px;}
._e{margin-left:-2.410560px;}
._0{margin-left:-1.023360px;}
._1{width:1.053360px;}
._10{width:2.354880px;}
._2{width:3.533520px;}
._8{width:5.263920px;}
._19{width:6.288240px;}
._a{width:7.309440px;}
._b{width:9.145920px;}
._17{width:10.316880px;}
._13{width:11.461920px;}
._7{width:12.590880px;}
._5{width:13.614240px;}
._6{width:15.163200px;}
._12{width:16.265280px;}
._c{width:17.884800px;}
._d{width:20.812800px;}
._18{width:21.850560px;}
._f{width:22.939200px;}
._9{width:24.416640px;}
._22{width:25.782240px;}
._1f{width:26.827200px;}
._4{width:28.633920px;}
._14{width:30.308160px;}
._27{width:31.314720px;}
._3{width:32.337120px;}
._1c{width:34.416240px;}
._1d{width:35.925120px;}
._1e{width:37.324800px;}
._20{width:38.448720px;}
._25{width:40.590720px;}
._21{width:41.757120px;}
._26{width:42.845760px;}
._1a{width:48.274560px;}
._1b{width:49.533120px;}
._29{width:50.770080px;}
._11{width:52.721280px;}
._2a{width:53.965440px;}
._31{width:55.257600px;}
._28{width:57.443760px;}
._24{width:58.744080px;}
._23{width:59.797440px;}
._33{width:65.085120px;}
._32{width:66.251520px;}
._37{width:81.259200px;}
._2b{width:83.280960px;}
._2c{width:84.390960px;}
._3c{width:88.064160px;}
._3e{width:92.113440px;}
._2f{width:93.726960px;}
._34{width:112.207680px;}
._35{width:113.331600px;}
._3d{width:117.262080px;}
._30{width:129.548160px;}
._39{width:181.258560px;}
._36{width:183.153360px;}
._2d{width:188.036880px;}
._3a{width:241.522560px;}
._3b{width:242.605920px;}
._2e{width:244.010880px;}
._38{width:248.987520px;}
.fc3{color:rgb(158,164,174);}
.fc2{color:rgb(33,37,41);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:51.120000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.140000px;}
.y1c0{bottom:7.560000px;}
.y196{bottom:7.740000px;}
.y11d{bottom:8.100000px;}
.y121{bottom:8.280000px;}
.y1b0{bottom:10.800000px;}
.y195{bottom:10.980000px;}
.y1a8{bottom:12.060000px;}
.y1b9{bottom:14.760000px;}
.y1c1{bottom:15.840000px;}
.y1ca{bottom:16.560000px;}
.y1cf{bottom:16.734000px;}
.y1c7{bottom:16.740000px;}
.y1ad{bottom:17.094000px;}
.y1a4{bottom:17.100000px;}
.y198{bottom:21.060000px;}
.y1ae{bottom:21.234000px;}
.y19a{bottom:21.240000px;}
.y1a9{bottom:24.840000px;}
.y1bb{bottom:25.380000px;}
.y1b2{bottom:25.740000px;}
.y1a7{bottom:29.340000px;}
.y19d{bottom:29.700000px;}
.y1a1{bottom:29.880000px;}
.y1b8{bottom:32.040000px;}
.y1ac{bottom:34.374000px;}
.y1a3{bottom:34.380000px;}
.y19c{bottom:38.340000px;}
.y19f{bottom:38.520000px;}
.y1bf{bottom:42.120000px;}
.y1a6{bottom:46.665000px;}
.y19e{bottom:55.830000px;}
.y3{bottom:76.176000px;}
.y4d{bottom:110.736000px;}
.ye4{bottom:111.096000px;}
.y190{bottom:120.996000px;}
.yc5{bottom:121.536000px;}
.y24{bottom:126.756000px;}
.y6f{bottom:132.156000px;}
.y4c{bottom:133.236000px;}
.ye3{bottom:133.596000px;}
.y1ce{bottom:134.676000px;}
.y1ab{bottom:135.576000px;}
.y133{bottom:136.836000px;}
.y204{bottom:142.596000px;}
.y18f{bottom:143.496000px;}
.yc4{bottom:144.036000px;}
.y9d{bottom:152.130000px;}
.y6e{bottom:154.650000px;}
.y118{bottom:155.550000px;}
.ye2{bottom:155.910000px;}
.y1ef{bottom:157.530000px;}
.y23{bottom:158.250000px;}
.y132{bottom:159.330000px;}
.yf7{bottom:160.050000px;}
.y203{bottom:165.090000px;}
.y18e{bottom:165.810000px;}
.y4b{bottom:166.530000px;}
.y9c{bottom:174.630000px;}
.yc3{bottom:177.330000px;}
.y1cd{bottom:177.870000px;}
.y117{bottom:178.050000px;}
.ye1{bottom:178.410000px;}
.y1ee{bottom:180.030000px;}
.yf6{bottom:182.550000px;}
.y16c{bottom:187.410000px;}
.y202{bottom:187.590000px;}
.y18d{bottom:188.310000px;}
.y6d{bottom:188.850000px;}
.y22{bottom:189.570000px;}
.y131{bottom:192.090000px;}
.y9b{bottom:197.130000px;}
.y116{bottom:200.550000px;}
.ye0{bottom:200.730000px;}
.y16b{bottom:209.910000px;}
.y18c{bottom:210.810000px;}
.y20b{bottom:211.350000px;}
.y1ed{bottom:212.790000px;}
.y130{bottom:214.590000px;}
.yf5{bottom:215.850000px;}
.y4a{bottom:217.110000px;}
.y9a{bottom:219.450000px;}
.y1cc{bottom:220.890000px;}
.y21{bottom:221.070000px;}
.y151{bottom:221.790000px;}
.y6c{bottom:223.230000px;}
.yc2{bottom:228.090000px;}
.y16a{bottom:232.410000px;}
.y18b{bottom:233.130000px;}
.y115{bottom:233.310000px;}
.y1ec{bottom:235.290000px;}
.y12f{bottom:237.090000px;}
.y49{bottom:239.610000px;}
.yf4{bottom:240.150000px;}
.y99{bottom:241.950000px;}
.y201{bottom:242.850000px;}
.y20{bottom:243.570000px;}
.y20a{bottom:244.110000px;}
.y150{bottom:244.290000px;}
.ydf{bottom:245.550000px;}
.y1aa{bottom:248.790000px;}
.yc1{bottom:250.590000px;}
.y169{bottom:254.730000px;}
.y18a{bottom:255.630000px;}
.y114{bottom:255.810000px;}
.y6b{bottom:257.430000px;}
.y1eb{bottom:257.790000px;}
.y12e{bottom:259.410000px;}
.y48{bottom:262.110000px;}
.y1cb{bottom:264.090000px;}
.y98{bottom:264.270000px;}
.y200{bottom:265.350000px;}
.y1f{bottom:266.070000px;}
.y14f{bottom:266.610000px;}
.yde{bottom:268.050000px;}
.yc0{bottom:272.910000px;}
.y189{bottom:277.950000px;}
.y113{bottom:278.310000px;}
.y47{bottom:284.610000px;}
.y97{bottom:286.770000px;}
.y168{bottom:287.670000px;}
.y1e{bottom:288.390000px;}
.y14e{bottom:289.110000px;}
.ydd{bottom:290.550000px;}
.y6a{bottom:291.810000px;}
.y12d{bottom:292.350000px;}
.ybf{bottom:295.410000px;}
.y21e{bottom:295.770000px;}
.y188{bottom:300.450000px;}
.y112{bottom:300.810000px;}
.y1a5{bottom:305.490000px;}
.yf3{bottom:305.850000px;}
.y46{bottom:306.930000px;}
.y1c9{bottom:307.290000px;}
.y96{bottom:309.270000px;}
.y167{bottom:310.170000px;}
.y1d{bottom:310.890000px;}
.ydc{bottom:312.870000px;}
.y1ea{bottom:313.050000px;}
.y12c{bottom:314.850000px;}
.ybe{bottom:317.730000px;}
.y1ff{bottom:320.610000px;}
.y14d{bottom:322.050000px;}
.y187{bottom:322.770000px;}
.y111{bottom:323.130000px;}
.y21d{bottom:326.010000px;}
.y69{bottom:326.190000px;}
.yf2{bottom:328.350000px;}
.y45{bottom:329.430000px;}
.y95{bottom:331.590000px;}
.y166{bottom:332.490000px;}
.y1c{bottom:333.210000px;}
.y1e9{bottom:335.550000px;}
.y87{bottom:338.475000px;}
.ybd{bottom:340.275000px;}
.y1fe{bottom:343.155000px;}
.y14c{bottom:344.595000px;}
.y186{bottom:345.315000px;}
.y21c{bottom:345.675000px;}
.ydb{bottom:346.215000px;}
.y12b{bottom:347.655000px;}
.y68{bottom:348.735000px;}
.y1c8{bottom:350.355000px;}
.yf1{bottom:350.715000px;}
.y94{bottom:354.135000px;}
.y1b{bottom:355.755000px;}
.y110{bottom:356.115000px;}
.y1e8{bottom:357.915000px;}
.y86{bottom:360.975000px;}
.y44{bottom:362.235000px;}
.ybc{bottom:362.595000px;}
.y21b{bottom:365.115000px;}
.y165{bottom:365.475000px;}
.y14b{bottom:366.915000px;}
.y1a2{bottom:369.615000px;}
.y12a{bottom:370.155000px;}
.yf0{bottom:373.215000px;}
.y93{bottom:376.455000px;}
.y185{bottom:378.255000px;}
.y10f{bottom:378.615000px;}
.y67{bottom:382.935000px;}
.y43{bottom:384.735000px;}
.ybb{bottom:385.095000px;}
.y1a{bottom:387.075000px;}
.y164{bottom:387.975000px;}
.y14a{bottom:389.415000px;}
.y1e7{bottom:390.855000px;}
.y129{bottom:392.655000px;}
.y1c6{bottom:393.555000px;}
.y85{bottom:393.735000px;}
.yef{bottom:395.535000px;}
.yda{bottom:396.975000px;}
.y92{bottom:398.955000px;}
.y209{bottom:399.855000px;}
.y184{bottom:400.755000px;}
.y10e{bottom:400.935000px;}
.y21a{bottom:403.815000px;}
.y42{bottom:407.235000px;}
.yba{bottom:407.595000px;}
.y19{bottom:409.575000px;}
.y163{bottom:410.295000px;}
.y1e6{bottom:413.355000px;}
.y128{bottom:414.975000px;}
.y66{bottom:416.235000px;}
.yee{bottom:418.035000px;}
.yd9{bottom:419.475000px;}
.y1fd{bottom:420.735000px;}
.y91{bottom:421.275000px;}
.y149{bottom:422.175000px;}
.y208{bottom:422.355000px;}
.y183{bottom:423.075000px;}
.y1a0{bottom:426.135000px;}
.y41{bottom:429.555000px;}
.y18{bottom:432.075000px;}
.y162{bottom:432.795000px;}
.y10d{bottom:433.875000px;}
.y1e5{bottom:435.855000px;}
.y1c5{bottom:436.575000px;}
.y219{bottom:436.755000px;}
.y127{bottom:437.475000px;}
.y84{bottom:438.735000px;}
.yb9{bottom:440.355000px;}
.yd8{bottom:441.795000px;}
.y1fc{bottom:443.235000px;}
.y90{bottom:443.775000px;}
.y148{bottom:444.675000px;}
.y182{bottom:445.575000px;}
.y40{bottom:452.055000px;}
.y10c{bottom:456.375000px;}
.y218{bottom:459.255000px;}
.y126{bottom:459.975000px;}
.y83{bottom:461.055000px;}
.yb8{bottom:462.855000px;}
.y17{bottom:463.395000px;}
.yd7{bottom:464.295000px;}
.y161{bottom:465.555000px;}
.y1fb{bottom:465.735000px;}
.y8f{bottom:466.275000px;}
.y65{bottom:466.995000px;}
.y1f2{bottom:467.175000px;}
.y1e4{bottom:468.615000px;}
.y3f{bottom:474.555000px;}
.y147{bottom:477.615000px;}
.y181{bottom:478.335000px;}
.y10b{bottom:478.695000px;}
.y1c4{bottom:479.775000px;}
.y217{bottom:481.575000px;}
.y82{bottom:483.555000px;}
.yb7{bottom:485.355000px;}
.y16{bottom:485.895000px;}
.yd6{bottom:486.615000px;}
.y160{bottom:488.055000px;}
.y8e{bottom:488.595000px;}
.y64{bottom:489.495000px;}
.y1e3{bottom:491.115000px;}
.y125{bottom:493.995000px;}
.y3e{bottom:496.875000px;}
.y146{bottom:500.115000px;}
.y180{bottom:500.835000px;}
.y10a{bottom:501.195000px;}
.y81{bottom:506.055000px;}
.yb6{bottom:507.675000px;}
.y15{bottom:508.215000px;}
.yd5{bottom:509.115000px;}
.y8d{bottom:511.095000px;}
.y124{bottom:511.635000px;}
.y63{bottom:511.995000px;}
.y216{bottom:513.435000px;}
.y3d{bottom:519.375000px;}
.y15f{bottom:520.995000px;}
.y145{bottom:522.435000px;}
.y1c3{bottom:522.795000px;}
.y17f{bottom:523.335000px;}
.y109{bottom:523.515000px;}
.y1e2{bottom:523.875000px;}
.y80{bottom:528.375000px;}
.yb5{bottom:530.175000px;}
.y14{bottom:530.715000px;}
.yd4{bottom:531.615000px;}
.y123{bottom:535.215000px;}
.y3c{bottom:541.695000px;}
.y15e{bottom:543.495000px;}
.y8c{bottom:544.395000px;}
.y62{bottom:544.755000px;}
.y108{bottom:546.015000px;}
.y1e1{bottom:546.375000px;}
.y7f{bottom:550.875000px;}
.yb4{bottom:552.495000px;}
.y13{bottom:553.215000px;}
.y144{bottom:555.375000px;}
.y17e{bottom:556.635000px;}
.y122{bottom:558.795000px;}
.y3b{bottom:564.195000px;}
.yd3{bottom:564.375000px;}
.y15d{bottom:565.815000px;}
.y1c2{bottom:565.995000px;}
.y61{bottom:567.435000px;}
.y1e0{bottom:568.875000px;}
.y7e{bottom:573.195000px;}
.yb3{bottom:574.995000px;}
.y143{bottom:577.875000px;}
.y107{bottom:578.775000px;}
.y215{bottom:579.135000px;}
.y120{bottom:582.375000px;}
.y12{bottom:584.535000px;}
.y3a{bottom:586.515000px;}
.yd2{bottom:586.875000px;}
.y15c{bottom:588.315000px;}
.y8b{bottom:594.975000px;}
.y7d{bottom:595.695000px;}
.yb2{bottom:597.315000px;}
.y142{bottom:600.195000px;}
.y106{bottom:601.275000px;}
.y60{bottom:601.455000px;}
.y214{bottom:601.635000px;}
.y1df{bottom:601.815000px;}
.y11f{bottom:606.165000px;}
.y11{bottom:607.065000px;}
.y39{bottom:609.045000px;}
.y1be{bottom:609.225000px;}
.yd1{bottom:609.405000px;}
.y207{bottom:610.665000px;}
.y15b{bottom:610.845000px;}
.y8a{bottom:617.505000px;}
.y7c{bottom:618.045000px;}
.yb1{bottom:619.845000px;}
.y1fa{bottom:621.105000px;}
.y17d{bottom:622.365000px;}
.y141{bottom:622.725000px;}
.y105{bottom:623.805000px;}
.y1de{bottom:624.345000px;}
.y10{bottom:629.385000px;}
.y11e{bottom:629.745000px;}
.y38{bottom:631.545000px;}
.yd0{bottom:631.725000px;}
.y15a{bottom:633.165000px;}
.y5f{bottom:635.865000px;}
.y89{bottom:640.005000px;}
.y7b{bottom:640.545000px;}
.yed{bottom:642.345000px;}
.y1f9{bottom:643.605000px;}
.y17c{bottom:644.865000px;}
.y104{bottom:646.305000px;}
.y1dd{bottom:646.665000px;}
.y19b{bottom:647.925000px;}
.yf{bottom:651.885000px;}
.yb0{bottom:652.605000px;}
.y11c{bottom:653.325000px;}
.ycf{bottom:654.225000px;}
.y140{bottom:655.485000px;}
.y159{bottom:655.665000px;}
.y213{bottom:657.645000px;}
.y5e{bottom:658.545000px;}
.y7a{bottom:663.045000px;}
.y37{bottom:664.305000px;}
.yec{bottom:664.665000px;}
.y1f8{bottom:666.105000px;}
.y17b{bottom:667.185000px;}
.y88{bottom:668.625000px;}
.y1bd{bottom:668.805000px;}
.y1dc{bottom:669.165000px;}
.yaf{bottom:675.105000px;}
.yce{bottom:676.545000px;}
.y13f{bottom:677.985000px;}
.ye{bottom:683.205000px;}
.y79{bottom:685.365000px;}
.y36{bottom:686.805000px;}
.yeb{bottom:687.165000px;}
.y158{bottom:688.425000px;}
.y1f7{bottom:688.605000px;}
.y17a{bottom:689.685000px;}
.y103{bottom:691.125000px;}
.y5d{bottom:692.745000px;}
.yae{bottom:697.605000px;}
.ycd{bottom:699.045000px;}
.y13e{bottom:700.485000px;}
.y1db{bottom:701.925000px;}
.yd{bottom:705.705000px;}
.y78{bottom:707.865000px;}
.y35{bottom:709.305000px;}
.yea{bottom:709.485000px;}
.y157{bottom:710.925000px;}
.y1bc{bottom:711.825000px;}
.y102{bottom:713.445000px;}
.y5c{bottom:715.245000px;}
.yad{bottom:720.105000px;}
.y1f6{bottom:721.365000px;}
.y199{bottom:721.725000px;}
.y179{bottom:722.445000px;}
.y13d{bottom:722.805000px;}
.y212{bottom:723.345000px;}
.y1da{bottom:724.425000px;}
.yc{bottom:728.205000px;}
.y77{bottom:730.185000px;}
.y34{bottom:731.625000px;}
.ycc{bottom:731.805000px;}
.ye9{bottom:731.985000px;}
.y1f1{bottom:733.245000px;}
.y156{bottom:733.425000px;}
.y5b{bottom:737.565000px;}
.yac{bottom:742.425000px;}
.y1f5{bottom:743.865000px;}
.y178{bottom:744.945000px;}
.y211{bottom:745.845000px;}
.y101{bottom:746.745000px;}
.y1d9{bottom:746.925000px;}
.y76{bottom:752.685000px;}
.y33{bottom:754.125000px;}
.ycb{bottom:754.305000px;}
.y1ba{bottom:755.025000px;}
.y13c{bottom:755.745000px;}
.yb{bottom:760.065000px;}
.yab{bottom:764.925000px;}
.y206{bottom:766.185000px;}
.y1f4{bottom:766.365000px;}
.y210{bottom:768.165000px;}
.y1d8{bottom:769.245000px;}
.y75{bottom:775.005000px;}
.y32{bottom:776.445000px;}
.yca{bottom:776.805000px;}
.y177{bottom:777.885000px;}
.y13b{bottom:778.245000px;}
.y197{bottom:778.425000px;}
.y5a{bottom:782.385000px;}
.yaa{bottom:787.245000px;}
.y155{bottom:788.685000px;}
.y74{bottom:797.505000px;}
.y1b7{bottom:798.225000px;}
.yc9{bottom:799.305000px;}
.y20f{bottom:799.485000px;}
.y176{bottom:800.385000px;}
.y13a{bottom:800.565000px;}
.y1d7{bottom:802.185000px;}
.y31{bottom:809.385000px;}
.ya9{bottom:809.745000px;}
.y1f0{bottom:811.005000px;}
.y154{bottom:811.185000px;}
.y100{bottom:812.445000px;}
.y59{bottom:815.325000px;}
.y73{bottom:820.005000px;}
.yc8{bottom:821.625000px;}
.y20e{bottom:821.985000px;}
.y175{bottom:822.705000px;}
.y139{bottom:823.065000px;}
.y1d6{bottom:824.685000px;}
.ya{bottom:825.225000px;}
.y30{bottom:831.885000px;}
.ya8{bottom:832.065000px;}
.y153{bottom:833.505000px;}
.yff{bottom:834.945000px;}
.y58{bottom:837.825000px;}
.y72{bottom:842.325000px;}
.y1f3{bottom:843.945000px;}
.yc7{bottom:844.125000px;}
.y20d{bottom:844.485000px;}
.y1d5{bottom:847.005000px;}
.y2f{bottom:854.205000px;}
.ya7{bottom:854.565000px;}
.y1b6{bottom:854.745000px;}
.y174{bottom:855.645000px;}
.y138{bottom:856.005000px;}
.y57{bottom:860.145000px;}
.y71{bottom:864.825000px;}
.ye8{bottom:866.445000px;}
.yfe{bottom:867.885000px;}
.y194{bottom:871.710000px;}
.y20c{bottom:876.210000px;}
.y11b{bottom:876.750000px;}
.yc6{bottom:876.930000px;}
.ya6{bottom:877.110000px;}
.y173{bottom:878.190000px;}
.y137{bottom:878.550000px;}
.y1b5{bottom:879.990000px;}
.y2e{bottom:887.190000px;}
.y152{bottom:888.810000px;}
.ye7{bottom:888.990000px;}
.y9{bottom:890.070000px;}
.yfd{bottom:890.430000px;}
.y56{bottom:893.130000px;}
.y11a{bottom:899.250000px;}
.ya5{bottom:899.430000px;}
.y172{bottom:900.510000px;}
.y1d4{bottom:902.490000px;}
.y193{bottom:903.570000px;}
.y2d{bottom:909.690000px;}
.y136{bottom:911.310000px;}
.y55{bottom:915.630000px;}
.y119{bottom:921.570000px;}
.ye6{bottom:921.750000px;}
.ya4{bottom:921.930000px;}
.y171{bottom:923.010000px;}
.yfc{bottom:923.190000px;}
.y1d3{bottom:924.810000px;}
.y2c{bottom:932.010000px;}
.y135{bottom:933.810000px;}
.y1b4{bottom:936.510000px;}
.y54{bottom:937.950000px;}
.ya3{bottom:944.250000px;}
.y170{bottom:945.510000px;}
.yfb{bottom:945.690000px;}
.y2b{bottom:954.510000px;}
.y134{bottom:956.310000px;}
.y1d2{bottom:956.670000px;}
.y8{bottom:959.190000px;}
.y205{bottom:966.570000px;}
.ya2{bottom:966.750000px;}
.y16f{bottom:967.830000px;}
.y192{bottom:969.270000px;}
.y53{bottom:971.250000px;}
.y70{bottom:977.010000px;}
.yfa{bottom:978.630000px;}
.y2a{bottom:987.270000px;}
.ya1{bottom:989.070000px;}
.y16e{bottom:990.330000px;}
.y191{bottom:991.770000px;}
.y1b3{bottom:993.210000px;}
.yf9{bottom:1001.130000px;}
.y7{bottom:1005.090000px;}
.y29{bottom:1009.770000px;}
.ya0{bottom:1011.570000px;}
.y1d1{bottom:1020.210000px;}
.y52{bottom:1022.010000px;}
.y16d{bottom:1023.630000px;}
.y28{bottom:1032.270000px;}
.y6{bottom:1032.630000px;}
.yf8{bottom:1033.890000px;}
.y9f{bottom:1034.070000px;}
.y51{bottom:1044.510000px;}
.y1b1{bottom:1049.730000px;}
.y27{bottom:1054.770000px;}
.y9e{bottom:1056.390000px;}
.y1d0{bottom:1063.230000px;}
.ye5{bottom:1066.830000px;}
.y50{bottom:1067.010000px;}
.y26{bottom:1077.090000px;}
.y4f{bottom:1089.330000px;}
.y1af{bottom:1106.430000px;}
.y25{bottom:1110.390000px;}
.y4e{bottom:1111.830000px;}
.y2{bottom:1143.180000px;}
.y4{bottom:1176.660000px;}
.y1{bottom:1183.680000px;}
.h13{height:21.780000px;}
.h1d{height:21.816000px;}
.h5{height:22.500000px;}
.h11{height:22.536000px;}
.h21{height:39.636000px;}
.h1e{height:39.780000px;}
.h20{height:39.816000px;}
.h23{height:52.998047px;}
.h16{height:53.100000px;}
.h17{height:53.280000px;}
.h1b{height:53.573906px;}
.h1f{height:56.160000px;}
.h14{height:58.651172px;}
.h10{height:59.439023px;}
.h15{height:60.226875px;}
.h1c{height:60.696000px;}
.hf{height:61.189805px;}
.h4{height:65.010937px;}
.h2{height:66.757500px;}
.hc{height:69.710625px;}
.h18{height:70.380000px;}
.h1a{height:70.560000px;}
.h12{height:70.664062px;}
.he{height:76.279219px;}
.h3{height:76.317188px;}
.ha{height:78.367500px;}
.hd{height:79.925027px;}
.h7{height:82.676953px;}
.h8{height:83.238047px;}
.h9{height:84.898125px;}
.h22{height:86.585445px;}
.hb{height:87.695156px;}
.h19{height:87.876000px;}
.h6{height:96.508125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wf{width:26.280000px;}
.wd{width:27.540000px;}
.wb{width:28.440000px;}
.w10{width:28.800000px;}
.w4{width:29.160000px;}
.w3{width:29.340000px;}
.w12{width:32.976000px;}
.wc{width:36.216000px;}
.w11{width:37.980000px;}
.we{width:48.600000px;}
.w13{width:53.100000px;}
.w6{width:99.000000px;}
.w9{width:114.336000px;}
.w8{width:123.840000px;}
.w7{width:124.776000px;}
.w5{width:170.310000px;}
.wa{width:307.110000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2f{left:3.240000px;}
.x2b{left:5.040000px;}
.x24{left:6.660000px;}
.x12{left:7.740000px;}
.x30{left:8.820000px;}
.x21{left:10.080000px;}
.x2e{left:13.500000px;}
.x2d{left:15.300000px;}
.x2c{left:20.520000px;}
.x1b{left:57.240000px;}
.x17{left:64.800000px;}
.x1d{left:67.860000px;}
.x1a{left:72.405000px;}
.x1e{left:78.300000px;}
.x1f{left:79.965000px;}
.x19{left:82.080000px;}
.x18{left:86.040000px;}
.x1c{left:90.540000px;}
.x2{left:127.655987px;}
.xe{left:130.355987px;}
.x6{left:150.869987px;}
.xb{left:154.649987px;}
.x11{left:160.049987px;}
.x5{left:165.809987px;}
.xc{left:181.649987px;}
.x9{left:211.889987px;}
.x31{left:262.469987px;}
.x1{left:269.309987px;}
.xf{left:296.174987px;}
.xa{left:298.514987px;}
.x13{left:299.775000px;}
.x7{left:316.514987px;}
.x8{left:334.334987px;}
.x3{left:360.974987px;}
.x14{left:399.855000px;}
.x20{left:436.575000px;}
.x10{left:446.654987px;}
.x22{left:466.095000px;}
.x23{left:503.385000px;}
.x15{left:525.705000px;}
.x25{left:532.005000px;}
.x26{left:581.685000px;}
.x27{left:609.045000px;}
.x28{left:638.745000px;}
.x16{left:650.445000px;}
.x29{left:677.805000px;}
.x2a{left:711.690000px;}
.x4{left:736.350000px;}
.xd{left:771.269987px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.ls24{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.183467pt;}
.ls13{letter-spacing:-0.097067pt;}
.ls12{letter-spacing:-0.030720pt;}
.ls11{letter-spacing:-0.023040pt;}
.ls9{letter-spacing:-0.015360pt;}
.lsc{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007680pt;}
.ls6{letter-spacing:0.015360pt;}
.ls4{letter-spacing:0.023040pt;}
.ls5{letter-spacing:0.030720pt;}
.ls21{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.135680pt;}
.ls2{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.204800pt;}
.ls0{letter-spacing:0.271360pt;}
.ls22{letter-spacing:0.303360pt;}
.ls15{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.343040pt;}
.ls8{letter-spacing:0.624000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.663040pt;}
.ls19{letter-spacing:0.672000pt;}
.ls1e{letter-spacing:8.320000pt;}
.ls1b{letter-spacing:8.960000pt;}
.ls23{letter-spacing:9.600000pt;}
.ls16{letter-spacing:10.240000pt;}
.ls1c{letter-spacing:12.160000pt;}
.ls20{letter-spacing:12.800000pt;}
.ls17{letter-spacing:14.080000pt;}
.ls1d{letter-spacing:14.720000pt;}
.ls1a{letter-spacing:22.400000pt;}
.lsb{letter-spacing:39.343360pt;}
.lsf{letter-spacing:39.983360pt;}
.lse{letter-spacing:44.784640pt;}
.lsa{letter-spacing:57.242027pt;}
.wsc{word-spacing:-69.120000pt;}
.ws1{word-spacing:-58.880000pt;}
.ws8{word-spacing:-18.720000pt;}
.ws13{word-spacing:-17.952000pt;}
.wsb{word-spacing:-17.920000pt;}
.ws9{word-spacing:-17.904000pt;}
.wse{word-spacing:-17.310720pt;}
.ws4{word-spacing:-17.303040pt;}
.ws6{word-spacing:-17.295360pt;}
.ws2{word-spacing:-17.287680pt;}
.ws3{word-spacing:-17.280000pt;}
.wsa{word-spacing:-17.272320pt;}
.ws5{word-spacing:-17.264640pt;}
.ws10{word-spacing:-17.256960pt;}
.wsd{word-spacing:-17.249280pt;}
.ws0{word-spacing:-14.720000pt;}
.ws12{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.096533pt;}
.wsf{word-spacing:-12.005120pt;}
.ws15{word-spacing:-12.000000pt;}
.ws14{word-spacing:-11.680000pt;}
.ws7{word-spacing:0.000000pt;}
._16{margin-left:-4.392320pt;}
._15{margin-left:-3.248640pt;}
._e{margin-left:-2.142720pt;}
._0{margin-left:-0.909653pt;}
._1{width:0.936320pt;}
._10{width:2.093227pt;}
._2{width:3.140907pt;}
._8{width:4.679040pt;}
._19{width:5.589547pt;}
._a{width:6.497280pt;}
._b{width:8.129707pt;}
._17{width:9.170560pt;}
._13{width:10.188373pt;}
._7{width:11.191893pt;}
._5{width:12.101547pt;}
._6{width:13.478400pt;}
._12{width:14.458027pt;}
._c{width:15.897600pt;}
._d{width:18.500267pt;}
._18{width:19.422720pt;}
._f{width:20.390400pt;}
._9{width:21.703680pt;}
._22{width:22.917547pt;}
._1f{width:23.846400pt;}
._4{width:25.452373pt;}
._14{width:26.940587pt;}
._27{width:27.835307pt;}
._3{width:28.744107pt;}
._1c{width:30.592213pt;}
._1d{width:31.933440pt;}
._1e{width:33.177600pt;}
._20{width:34.176640pt;}
._25{width:36.080640pt;}
._21{width:37.117440pt;}
._26{width:38.085120pt;}
._1a{width:42.910720pt;}
._1b{width:44.029440pt;}
._29{width:45.128960pt;}
._11{width:46.863360pt;}
._2a{width:47.969280pt;}
._31{width:49.117867pt;}
._28{width:51.061120pt;}
._24{width:52.216960pt;}
._23{width:53.153280pt;}
._33{width:57.853440pt;}
._32{width:58.890240pt;}
._37{width:72.230400pt;}
._2b{width:74.027520pt;}
._2c{width:75.014187pt;}
._3c{width:78.279253pt;}
._3e{width:81.878613pt;}
._2f{width:83.312853pt;}
._34{width:99.740160pt;}
._35{width:100.739200pt;}
._3d{width:104.232960pt;}
._30{width:115.153920pt;}
._39{width:161.118720pt;}
._36{width:162.802987pt;}
._2d{width:167.143893pt;}
._3a{width:214.686720pt;}
._3b{width:215.649707pt;}
._2e{width:216.898560pt;}
._38{width:221.322240pt;}
.fs7{font-size:45.440000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.680000pt;}
.y1c0{bottom:6.720000pt;}
.y196{bottom:6.880000pt;}
.y11d{bottom:7.200000pt;}
.y121{bottom:7.360000pt;}
.y1b0{bottom:9.600000pt;}
.y195{bottom:9.760000pt;}
.y1a8{bottom:10.720000pt;}
.y1b9{bottom:13.120000pt;}
.y1c1{bottom:14.080000pt;}
.y1ca{bottom:14.720000pt;}
.y1cf{bottom:14.874667pt;}
.y1c7{bottom:14.880000pt;}
.y1ad{bottom:15.194667pt;}
.y1a4{bottom:15.200000pt;}
.y198{bottom:18.720000pt;}
.y1ae{bottom:18.874667pt;}
.y19a{bottom:18.880000pt;}
.y1a9{bottom:22.080000pt;}
.y1bb{bottom:22.560000pt;}
.y1b2{bottom:22.880000pt;}
.y1a7{bottom:26.080000pt;}
.y19d{bottom:26.400000pt;}
.y1a1{bottom:26.560000pt;}
.y1b8{bottom:28.480000pt;}
.y1ac{bottom:30.554667pt;}
.y1a3{bottom:30.560000pt;}
.y19c{bottom:34.080000pt;}
.y19f{bottom:34.240000pt;}
.y1bf{bottom:37.440000pt;}
.y1a6{bottom:41.480000pt;}
.y19e{bottom:49.626667pt;}
.y3{bottom:67.712000pt;}
.y4d{bottom:98.432000pt;}
.ye4{bottom:98.752000pt;}
.y190{bottom:107.552000pt;}
.yc5{bottom:108.032000pt;}
.y24{bottom:112.672000pt;}
.y6f{bottom:117.472000pt;}
.y4c{bottom:118.432000pt;}
.ye3{bottom:118.752000pt;}
.y1ce{bottom:119.712000pt;}
.y1ab{bottom:120.512000pt;}
.y133{bottom:121.632000pt;}
.y204{bottom:126.752000pt;}
.y18f{bottom:127.552000pt;}
.yc4{bottom:128.032000pt;}
.y9d{bottom:135.226667pt;}
.y6e{bottom:137.466667pt;}
.y118{bottom:138.266667pt;}
.ye2{bottom:138.586667pt;}
.y1ef{bottom:140.026667pt;}
.y23{bottom:140.666667pt;}
.y132{bottom:141.626667pt;}
.yf7{bottom:142.266667pt;}
.y203{bottom:146.746667pt;}
.y18e{bottom:147.386667pt;}
.y4b{bottom:148.026667pt;}
.y9c{bottom:155.226667pt;}
.yc3{bottom:157.626667pt;}
.y1cd{bottom:158.106667pt;}
.y117{bottom:158.266667pt;}
.ye1{bottom:158.586667pt;}
.y1ee{bottom:160.026667pt;}
.yf6{bottom:162.266667pt;}
.y16c{bottom:166.586667pt;}
.y202{bottom:166.746667pt;}
.y18d{bottom:167.386667pt;}
.y6d{bottom:167.866667pt;}
.y22{bottom:168.506667pt;}
.y131{bottom:170.746667pt;}
.y9b{bottom:175.226667pt;}
.y116{bottom:178.266667pt;}
.ye0{bottom:178.426667pt;}
.y16b{bottom:186.586667pt;}
.y18c{bottom:187.386667pt;}
.y20b{bottom:187.866667pt;}
.y1ed{bottom:189.146667pt;}
.y130{bottom:190.746667pt;}
.yf5{bottom:191.866667pt;}
.y4a{bottom:192.986667pt;}
.y9a{bottom:195.066667pt;}
.y1cc{bottom:196.346667pt;}
.y21{bottom:196.506667pt;}
.y151{bottom:197.146667pt;}
.y6c{bottom:198.426667pt;}
.yc2{bottom:202.746667pt;}
.y16a{bottom:206.586667pt;}
.y18b{bottom:207.226667pt;}
.y115{bottom:207.386667pt;}
.y1ec{bottom:209.146667pt;}
.y12f{bottom:210.746667pt;}
.y49{bottom:212.986667pt;}
.yf4{bottom:213.466667pt;}
.y99{bottom:215.066667pt;}
.y201{bottom:215.866667pt;}
.y20{bottom:216.506667pt;}
.y20a{bottom:216.986667pt;}
.y150{bottom:217.146667pt;}
.ydf{bottom:218.266667pt;}
.y1aa{bottom:221.146667pt;}
.yc1{bottom:222.746667pt;}
.y169{bottom:226.426667pt;}
.y18a{bottom:227.226667pt;}
.y114{bottom:227.386667pt;}
.y6b{bottom:228.826667pt;}
.y1eb{bottom:229.146667pt;}
.y12e{bottom:230.586667pt;}
.y48{bottom:232.986667pt;}
.y1cb{bottom:234.746667pt;}
.y98{bottom:234.906667pt;}
.y200{bottom:235.866667pt;}
.y1f{bottom:236.506667pt;}
.y14f{bottom:236.986667pt;}
.yde{bottom:238.266667pt;}
.yc0{bottom:242.586667pt;}
.y189{bottom:247.066667pt;}
.y113{bottom:247.386667pt;}
.y47{bottom:252.986667pt;}
.y97{bottom:254.906667pt;}
.y168{bottom:255.706667pt;}
.y1e{bottom:256.346667pt;}
.y14e{bottom:256.986667pt;}
.ydd{bottom:258.266667pt;}
.y6a{bottom:259.386667pt;}
.y12d{bottom:259.866667pt;}
.ybf{bottom:262.586667pt;}
.y21e{bottom:262.906667pt;}
.y188{bottom:267.066667pt;}
.y112{bottom:267.386667pt;}
.y1a5{bottom:271.546667pt;}
.yf3{bottom:271.866667pt;}
.y46{bottom:272.826667pt;}
.y1c9{bottom:273.146667pt;}
.y96{bottom:274.906667pt;}
.y167{bottom:275.706667pt;}
.y1d{bottom:276.346667pt;}
.ydc{bottom:278.106667pt;}
.y1ea{bottom:278.266667pt;}
.y12c{bottom:279.866667pt;}
.ybe{bottom:282.426667pt;}
.y1ff{bottom:284.986667pt;}
.y14d{bottom:286.266667pt;}
.y187{bottom:286.906667pt;}
.y111{bottom:287.226667pt;}
.y21d{bottom:289.786667pt;}
.y69{bottom:289.946667pt;}
.yf2{bottom:291.866667pt;}
.y45{bottom:292.826667pt;}
.y95{bottom:294.746667pt;}
.y166{bottom:295.546667pt;}
.y1c{bottom:296.186667pt;}
.y1e9{bottom:298.266667pt;}
.y87{bottom:300.866667pt;}
.ybd{bottom:302.466667pt;}
.y1fe{bottom:305.026667pt;}
.y14c{bottom:306.306667pt;}
.y186{bottom:306.946667pt;}
.y21c{bottom:307.266667pt;}
.ydb{bottom:307.746667pt;}
.y12b{bottom:309.026667pt;}
.y68{bottom:309.986667pt;}
.y1c8{bottom:311.426667pt;}
.yf1{bottom:311.746667pt;}
.y94{bottom:314.786667pt;}
.y1b{bottom:316.226667pt;}
.y110{bottom:316.546667pt;}
.y1e8{bottom:318.146667pt;}
.y86{bottom:320.866667pt;}
.y44{bottom:321.986667pt;}
.ybc{bottom:322.306667pt;}
.y21b{bottom:324.546667pt;}
.y165{bottom:324.866667pt;}
.y14b{bottom:326.146667pt;}
.y1a2{bottom:328.546667pt;}
.y12a{bottom:329.026667pt;}
.yf0{bottom:331.746667pt;}
.y93{bottom:334.626667pt;}
.y185{bottom:336.226667pt;}
.y10f{bottom:336.546667pt;}
.y67{bottom:340.386667pt;}
.y43{bottom:341.986667pt;}
.ybb{bottom:342.306667pt;}
.y1a{bottom:344.066667pt;}
.y164{bottom:344.866667pt;}
.y14a{bottom:346.146667pt;}
.y1e7{bottom:347.426667pt;}
.y129{bottom:349.026667pt;}
.y1c6{bottom:349.826667pt;}
.y85{bottom:349.986667pt;}
.yef{bottom:351.586667pt;}
.yda{bottom:352.866667pt;}
.y92{bottom:354.626667pt;}
.y209{bottom:355.426667pt;}
.y184{bottom:356.226667pt;}
.y10e{bottom:356.386667pt;}
.y21a{bottom:358.946667pt;}
.y42{bottom:361.986667pt;}
.yba{bottom:362.306667pt;}
.y19{bottom:364.066667pt;}
.y163{bottom:364.706667pt;}
.y1e6{bottom:367.426667pt;}
.y128{bottom:368.866667pt;}
.y66{bottom:369.986667pt;}
.yee{bottom:371.586667pt;}
.yd9{bottom:372.866667pt;}
.y1fd{bottom:373.986667pt;}
.y91{bottom:374.466667pt;}
.y149{bottom:375.266667pt;}
.y208{bottom:375.426667pt;}
.y183{bottom:376.066667pt;}
.y1a0{bottom:378.786667pt;}
.y41{bottom:381.826667pt;}
.y18{bottom:384.066667pt;}
.y162{bottom:384.706667pt;}
.y10d{bottom:385.666667pt;}
.y1e5{bottom:387.426667pt;}
.y1c5{bottom:388.066667pt;}
.y219{bottom:388.226667pt;}
.y127{bottom:388.866667pt;}
.y84{bottom:389.986667pt;}
.yb9{bottom:391.426667pt;}
.yd8{bottom:392.706667pt;}
.y1fc{bottom:393.986667pt;}
.y90{bottom:394.466667pt;}
.y148{bottom:395.266667pt;}
.y182{bottom:396.066667pt;}
.y40{bottom:401.826667pt;}
.y10c{bottom:405.666667pt;}
.y218{bottom:408.226667pt;}
.y126{bottom:408.866667pt;}
.y83{bottom:409.826667pt;}
.yb8{bottom:411.426667pt;}
.y17{bottom:411.906667pt;}
.yd7{bottom:412.706667pt;}
.y161{bottom:413.826667pt;}
.y1fb{bottom:413.986667pt;}
.y8f{bottom:414.466667pt;}
.y65{bottom:415.106667pt;}
.y1f2{bottom:415.266667pt;}
.y1e4{bottom:416.546667pt;}
.y3f{bottom:421.826667pt;}
.y147{bottom:424.546667pt;}
.y181{bottom:425.186667pt;}
.y10b{bottom:425.506667pt;}
.y1c4{bottom:426.466667pt;}
.y217{bottom:428.066667pt;}
.y82{bottom:429.826667pt;}
.yb7{bottom:431.426667pt;}
.y16{bottom:431.906667pt;}
.yd6{bottom:432.546667pt;}
.y160{bottom:433.826667pt;}
.y8e{bottom:434.306667pt;}
.y64{bottom:435.106667pt;}
.y1e3{bottom:436.546667pt;}
.y125{bottom:439.106667pt;}
.y3e{bottom:441.666667pt;}
.y146{bottom:444.546667pt;}
.y180{bottom:445.186667pt;}
.y10a{bottom:445.506667pt;}
.y81{bottom:449.826667pt;}
.yb6{bottom:451.266667pt;}
.y15{bottom:451.746667pt;}
.yd5{bottom:452.546667pt;}
.y8d{bottom:454.306667pt;}
.y124{bottom:454.786667pt;}
.y63{bottom:455.106667pt;}
.y216{bottom:456.386667pt;}
.y3d{bottom:461.666667pt;}
.y15f{bottom:463.106667pt;}
.y145{bottom:464.386667pt;}
.y1c3{bottom:464.706667pt;}
.y17f{bottom:465.186667pt;}
.y109{bottom:465.346667pt;}
.y1e2{bottom:465.666667pt;}
.y80{bottom:469.666667pt;}
.yb5{bottom:471.266667pt;}
.y14{bottom:471.746667pt;}
.yd4{bottom:472.546667pt;}
.y123{bottom:475.746667pt;}
.y3c{bottom:481.506667pt;}
.y15e{bottom:483.106667pt;}
.y8c{bottom:483.906667pt;}
.y62{bottom:484.226667pt;}
.y108{bottom:485.346667pt;}
.y1e1{bottom:485.666667pt;}
.y7f{bottom:489.666667pt;}
.yb4{bottom:491.106667pt;}
.y13{bottom:491.746667pt;}
.y144{bottom:493.666667pt;}
.y17e{bottom:494.786667pt;}
.y122{bottom:496.706667pt;}
.y3b{bottom:501.506667pt;}
.yd3{bottom:501.666667pt;}
.y15d{bottom:502.946667pt;}
.y1c2{bottom:503.106667pt;}
.y61{bottom:504.386667pt;}
.y1e0{bottom:505.666667pt;}
.y7e{bottom:509.506667pt;}
.yb3{bottom:511.106667pt;}
.y143{bottom:513.666667pt;}
.y107{bottom:514.466667pt;}
.y215{bottom:514.786667pt;}
.y120{bottom:517.666667pt;}
.y12{bottom:519.586667pt;}
.y3a{bottom:521.346667pt;}
.yd2{bottom:521.666667pt;}
.y15c{bottom:522.946667pt;}
.y8b{bottom:528.866667pt;}
.y7d{bottom:529.506667pt;}
.yb2{bottom:530.946667pt;}
.y142{bottom:533.506667pt;}
.y106{bottom:534.466667pt;}
.y60{bottom:534.626667pt;}
.y214{bottom:534.786667pt;}
.y1df{bottom:534.946667pt;}
.y11f{bottom:538.813333pt;}
.y11{bottom:539.613333pt;}
.y39{bottom:541.373333pt;}
.y1be{bottom:541.533333pt;}
.yd1{bottom:541.693333pt;}
.y207{bottom:542.813333pt;}
.y15b{bottom:542.973333pt;}
.y8a{bottom:548.893333pt;}
.y7c{bottom:549.373333pt;}
.yb1{bottom:550.973333pt;}
.y1fa{bottom:552.093333pt;}
.y17d{bottom:553.213333pt;}
.y141{bottom:553.533333pt;}
.y105{bottom:554.493333pt;}
.y1de{bottom:554.973333pt;}
.y10{bottom:559.453333pt;}
.y11e{bottom:559.773333pt;}
.y38{bottom:561.373333pt;}
.yd0{bottom:561.533333pt;}
.y15a{bottom:562.813333pt;}
.y5f{bottom:565.213333pt;}
.y89{bottom:568.893333pt;}
.y7b{bottom:569.373333pt;}
.yed{bottom:570.973333pt;}
.y1f9{bottom:572.093333pt;}
.y17c{bottom:573.213333pt;}
.y104{bottom:574.493333pt;}
.y1dd{bottom:574.813333pt;}
.y19b{bottom:575.933333pt;}
.yf{bottom:579.453333pt;}
.yb0{bottom:580.093333pt;}
.y11c{bottom:580.733333pt;}
.ycf{bottom:581.533333pt;}
.y140{bottom:582.653333pt;}
.y159{bottom:582.813333pt;}
.y213{bottom:584.573333pt;}
.y5e{bottom:585.373333pt;}
.y7a{bottom:589.373333pt;}
.y37{bottom:590.493333pt;}
.yec{bottom:590.813333pt;}
.y1f8{bottom:592.093333pt;}
.y17b{bottom:593.053333pt;}
.y88{bottom:594.333333pt;}
.y1bd{bottom:594.493333pt;}
.y1dc{bottom:594.813333pt;}
.yaf{bottom:600.093333pt;}
.yce{bottom:601.373333pt;}
.y13f{bottom:602.653333pt;}
.ye{bottom:607.293333pt;}
.y79{bottom:609.213333pt;}
.y36{bottom:610.493333pt;}
.yeb{bottom:610.813333pt;}
.y158{bottom:611.933333pt;}
.y1f7{bottom:612.093333pt;}
.y17a{bottom:613.053333pt;}
.y103{bottom:614.333333pt;}
.y5d{bottom:615.773333pt;}
.yae{bottom:620.093333pt;}
.ycd{bottom:621.373333pt;}
.y13e{bottom:622.653333pt;}
.y1db{bottom:623.933333pt;}
.yd{bottom:627.293333pt;}
.y78{bottom:629.213333pt;}
.y35{bottom:630.493333pt;}
.yea{bottom:630.653333pt;}
.y157{bottom:631.933333pt;}
.y1bc{bottom:632.733333pt;}
.y102{bottom:634.173333pt;}
.y5c{bottom:635.773333pt;}
.yad{bottom:640.093333pt;}
.y1f6{bottom:641.213333pt;}
.y199{bottom:641.533333pt;}
.y179{bottom:642.173333pt;}
.y13d{bottom:642.493333pt;}
.y212{bottom:642.973333pt;}
.y1da{bottom:643.933333pt;}
.yc{bottom:647.293333pt;}
.y77{bottom:649.053333pt;}
.y34{bottom:650.333333pt;}
.ycc{bottom:650.493333pt;}
.ye9{bottom:650.653333pt;}
.y1f1{bottom:651.773333pt;}
.y156{bottom:651.933333pt;}
.y5b{bottom:655.613333pt;}
.yac{bottom:659.933333pt;}
.y1f5{bottom:661.213333pt;}
.y178{bottom:662.173333pt;}
.y211{bottom:662.973333pt;}
.y101{bottom:663.773333pt;}
.y1d9{bottom:663.933333pt;}
.y76{bottom:669.053333pt;}
.y33{bottom:670.333333pt;}
.ycb{bottom:670.493333pt;}
.y1ba{bottom:671.133333pt;}
.y13c{bottom:671.773333pt;}
.yb{bottom:675.613333pt;}
.yab{bottom:679.933333pt;}
.y206{bottom:681.053333pt;}
.y1f4{bottom:681.213333pt;}
.y210{bottom:682.813333pt;}
.y1d8{bottom:683.773333pt;}
.y75{bottom:688.893333pt;}
.y32{bottom:690.173333pt;}
.yca{bottom:690.493333pt;}
.y177{bottom:691.453333pt;}
.y13b{bottom:691.773333pt;}
.y197{bottom:691.933333pt;}
.y5a{bottom:695.453333pt;}
.yaa{bottom:699.773333pt;}
.y155{bottom:701.053333pt;}
.y74{bottom:708.893333pt;}
.y1b7{bottom:709.533333pt;}
.yc9{bottom:710.493333pt;}
.y20f{bottom:710.653333pt;}
.y176{bottom:711.453333pt;}
.y13a{bottom:711.613333pt;}
.y1d7{bottom:713.053333pt;}
.y31{bottom:719.453333pt;}
.ya9{bottom:719.773333pt;}
.y1f0{bottom:720.893333pt;}
.y154{bottom:721.053333pt;}
.y100{bottom:722.173333pt;}
.y59{bottom:724.733333pt;}
.y73{bottom:728.893333pt;}
.yc8{bottom:730.333333pt;}
.y20e{bottom:730.653333pt;}
.y175{bottom:731.293333pt;}
.y139{bottom:731.613333pt;}
.y1d6{bottom:733.053333pt;}
.ya{bottom:733.533333pt;}
.y30{bottom:739.453333pt;}
.ya8{bottom:739.613333pt;}
.y153{bottom:740.893333pt;}
.yff{bottom:742.173333pt;}
.y58{bottom:744.733333pt;}
.y72{bottom:748.733333pt;}
.y1f3{bottom:750.173333pt;}
.yc7{bottom:750.333333pt;}
.y20d{bottom:750.653333pt;}
.y1d5{bottom:752.893333pt;}
.y2f{bottom:759.293333pt;}
.ya7{bottom:759.613333pt;}
.y1b6{bottom:759.773333pt;}
.y174{bottom:760.573333pt;}
.y138{bottom:760.893333pt;}
.y57{bottom:764.573333pt;}
.y71{bottom:768.733333pt;}
.ye8{bottom:770.173333pt;}
.yfe{bottom:771.453333pt;}
.y194{bottom:774.853333pt;}
.y20c{bottom:778.853333pt;}
.y11b{bottom:779.333333pt;}
.yc6{bottom:779.493333pt;}
.ya6{bottom:779.653333pt;}
.y173{bottom:780.613333pt;}
.y137{bottom:780.933333pt;}
.y1b5{bottom:782.213333pt;}
.y2e{bottom:788.613333pt;}
.y152{bottom:790.053333pt;}
.ye7{bottom:790.213333pt;}
.y9{bottom:791.173333pt;}
.yfd{bottom:791.493333pt;}
.y56{bottom:793.893333pt;}
.y11a{bottom:799.333333pt;}
.ya5{bottom:799.493333pt;}
.y172{bottom:800.453333pt;}
.y1d4{bottom:802.213333pt;}
.y193{bottom:803.173333pt;}
.y2d{bottom:808.613333pt;}
.y136{bottom:810.053333pt;}
.y55{bottom:813.893333pt;}
.y119{bottom:819.173333pt;}
.ye6{bottom:819.333333pt;}
.ya4{bottom:819.493333pt;}
.y171{bottom:820.453333pt;}
.yfc{bottom:820.613333pt;}
.y1d3{bottom:822.053333pt;}
.y2c{bottom:828.453333pt;}
.y135{bottom:830.053333pt;}
.y1b4{bottom:832.453333pt;}
.y54{bottom:833.733333pt;}
.ya3{bottom:839.333333pt;}
.y170{bottom:840.453333pt;}
.yfb{bottom:840.613333pt;}
.y2b{bottom:848.453333pt;}
.y134{bottom:850.053333pt;}
.y1d2{bottom:850.373333pt;}
.y8{bottom:852.613333pt;}
.y205{bottom:859.173333pt;}
.ya2{bottom:859.333333pt;}
.y16f{bottom:860.293333pt;}
.y192{bottom:861.573333pt;}
.y53{bottom:863.333333pt;}
.y70{bottom:868.453333pt;}
.yfa{bottom:869.893333pt;}
.y2a{bottom:877.573333pt;}
.ya1{bottom:879.173333pt;}
.y16e{bottom:880.293333pt;}
.y191{bottom:881.573333pt;}
.y1b3{bottom:882.853333pt;}
.yf9{bottom:889.893333pt;}
.y7{bottom:893.413333pt;}
.y29{bottom:897.573333pt;}
.ya0{bottom:899.173333pt;}
.y1d1{bottom:906.853333pt;}
.y52{bottom:908.453333pt;}
.y16d{bottom:909.893333pt;}
.y28{bottom:917.573333pt;}
.y6{bottom:917.893333pt;}
.yf8{bottom:919.013333pt;}
.y9f{bottom:919.173333pt;}
.y51{bottom:928.453333pt;}
.y1b1{bottom:933.093333pt;}
.y27{bottom:937.573333pt;}
.y9e{bottom:939.013333pt;}
.y1d0{bottom:945.093333pt;}
.ye5{bottom:948.293333pt;}
.y50{bottom:948.453333pt;}
.y26{bottom:957.413333pt;}
.y4f{bottom:968.293333pt;}
.y1af{bottom:983.493333pt;}
.y25{bottom:987.013333pt;}
.y4e{bottom:988.293333pt;}
.y2{bottom:1016.160000pt;}
.y4{bottom:1045.920000pt;}
.y1{bottom:1052.160000pt;}
.h13{height:19.360000pt;}
.h1d{height:19.392000pt;}
.h5{height:20.000000pt;}
.h11{height:20.032000pt;}
.h21{height:35.232000pt;}
.h1e{height:35.360000pt;}
.h20{height:35.392000pt;}
.h23{height:47.109375pt;}
.h16{height:47.200000pt;}
.h17{height:47.360000pt;}
.h1b{height:47.621250pt;}
.h1f{height:49.920000pt;}
.h14{height:52.134375pt;}
.h10{height:52.834688pt;}
.h15{height:53.535000pt;}
.h1c{height:53.952000pt;}
.hf{height:54.390938pt;}
.h4{height:57.787500pt;}
.h2{height:59.340000pt;}
.hc{height:61.965000pt;}
.h18{height:62.560000pt;}
.h1a{height:62.720000pt;}
.h12{height:62.812500pt;}
.he{height:67.803750pt;}
.h3{height:67.837500pt;}
.ha{height:69.660000pt;}
.hd{height:71.044468pt;}
.h7{height:73.490625pt;}
.h8{height:73.989375pt;}
.h9{height:75.465000pt;}
.h22{height:76.964840pt;}
.hb{height:77.951250pt;}
.h19{height:78.112000pt;}
.h6{height:85.785000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wf{width:23.360000pt;}
.wd{width:24.480000pt;}
.wb{width:25.280000pt;}
.w10{width:25.600000pt;}
.w4{width:25.920000pt;}
.w3{width:26.080000pt;}
.w12{width:29.312000pt;}
.wc{width:32.192000pt;}
.w11{width:33.760000pt;}
.we{width:43.200000pt;}
.w13{width:47.200000pt;}
.w6{width:88.000000pt;}
.w9{width:101.632000pt;}
.w8{width:110.080000pt;}
.w7{width:110.912000pt;}
.w5{width:151.386667pt;}
.wa{width:272.986667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:2.880000pt;}
.x2b{left:4.480000pt;}
.x24{left:5.920000pt;}
.x12{left:6.880000pt;}
.x30{left:7.840000pt;}
.x21{left:8.960000pt;}
.x2e{left:12.000000pt;}
.x2d{left:13.600000pt;}
.x2c{left:18.240000pt;}
.x1b{left:50.880000pt;}
.x17{left:57.600000pt;}
.x1d{left:60.320000pt;}
.x1a{left:64.360000pt;}
.x1e{left:69.600000pt;}
.x1f{left:71.080000pt;}
.x19{left:72.960000pt;}
.x18{left:76.480000pt;}
.x1c{left:80.480000pt;}
.x2{left:113.471988pt;}
.xe{left:115.871988pt;}
.x6{left:134.106655pt;}
.xb{left:137.466655pt;}
.x11{left:142.266655pt;}
.x5{left:147.386655pt;}
.xc{left:161.466655pt;}
.x9{left:188.346655pt;}
.x31{left:233.306655pt;}
.x1{left:239.386655pt;}
.xf{left:263.266655pt;}
.xa{left:265.346655pt;}
.x13{left:266.466667pt;}
.x7{left:281.346655pt;}
.x8{left:297.186655pt;}
.x3{left:320.866655pt;}
.x14{left:355.426667pt;}
.x20{left:388.066667pt;}
.x10{left:397.026655pt;}
.x22{left:414.306667pt;}
.x23{left:447.453333pt;}
.x15{left:467.293333pt;}
.x25{left:472.893333pt;}
.x26{left:517.053333pt;}
.x27{left:541.373333pt;}
.x28{left:567.773333pt;}
.x16{left:578.173333pt;}
.x29{left:602.493333pt;}
.x2a{left:632.613333pt;}
.x4{left:654.533333pt;}
.xd{left:685.573322pt;}
}




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