
    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_0df1d41828ef17d8d68058c9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.184000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_90d70cb74fa205092df17202.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_af95cefede3194ba295e9b95.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cefb3bc56bbe2639ef8de625.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.098145;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_7953764bc2ccced5ebbaf8e7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c1b19013d23f6f3ac66f3f4f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.091309;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_64c77d81b4c58b74c6f27d66.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7635fe352e73a108efb400d6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.063477;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_88dc6728d99dfacc0481256e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_f2c57f8d4522d46b97251baa.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.160000px;}
.v4{vertical-align:12.240000px;}
.v6{vertical-align:18.000000px;}
.v7{vertical-align:23.760000px;}
.v1{vertical-align:30.240000px;}
.ls2f{letter-spacing:-0.936000px;}
.lsd{letter-spacing:-0.720000px;}
.ls32{letter-spacing:-0.567600px;}
.lsb{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.457800px;}
.lsc{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.322800px;}
.ls2b{letter-spacing:-0.306000px;}
.ls17{letter-spacing:-0.305400px;}
.ls31{letter-spacing:-0.216000px;}
.ls29{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.121200px;}
.ls13{letter-spacing:-0.078000px;}
.ls9{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.012960px;}
.ls24{letter-spacing:0.018000px;}
.ls8{letter-spacing:0.053280px;}
.ls27{letter-spacing:0.072000px;}
.ls23{letter-spacing:0.108000px;}
.ls1f{letter-spacing:0.109440px;}
.ls35{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.126000px;}
.ls2d{letter-spacing:0.144000px;}
.ls33{letter-spacing:0.152400px;}
.ls7{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.262080px;}
.ls20{letter-spacing:0.264000px;}
.ls2c{letter-spacing:0.288000px;}
.ls28{letter-spacing:0.305280px;}
.ls12{letter-spacing:0.305400px;}
.ls26{letter-spacing:0.324000px;}
.ls5{letter-spacing:0.360000px;}
.ls34{letter-spacing:0.442080px;}
.ls1c{letter-spacing:0.532800px;}
.ls25{letter-spacing:0.990000px;}
.ls19{letter-spacing:2.460960px;}
.ls1e{letter-spacing:2.580960px;}
.ls1d{letter-spacing:2.640960px;}
.ls18{letter-spacing:3.180960px;}
.ls1a{letter-spacing:3.300960px;}
.ls1b{letter-spacing:3.360960px;}
.ls10{letter-spacing:5.040000px;}
.ls30{letter-spacing:5.940000px;}
.lsa{letter-spacing:6.065280px;}
.ls2e{letter-spacing:6.660000px;}
.ls22{letter-spacing:13.985280px;}
.ls11{letter-spacing:14.079600px;}
.ls3{letter-spacing:33.425280px;}
.ls2{letter-spacing:35.226720px;}
.ls4{letter-spacing:36.900000px;}
.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;}
}
.ws2d{word-spacing:-37.756800px;}
.ws5{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.102200px;}
.ws9{word-spacing:-15.840000px;}
.ws1b{word-spacing:-15.199800px;}
.ws3{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws1{word-spacing:-13.860000px;}
.ws2a{word-spacing:-13.716000px;}
.ws2b{word-spacing:-13.644000px;}
.ws7{word-spacing:-13.626000px;}
.ws2c{word-spacing:-13.518000px;}
.ws2{word-spacing:-13.500000px;}
.ws14{word-spacing:-13.411200px;}
.ws12{word-spacing:-13.160160px;}
.wsc{word-spacing:-13.147200px;}
.ws8{word-spacing:-13.140000px;}
.wsd{word-spacing:-13.069200px;}
.wse{word-spacing:-13.026000px;}
.ws13{word-spacing:-12.841800px;}
.ws11{word-spacing:-12.824400px;}
.ws28{word-spacing:-12.168000px;}
.ws25{word-spacing:-12.096000px;}
.ws23{word-spacing:-12.006000px;}
.ws29{word-spacing:-11.952000px;}
.ws26{word-spacing:-11.880000px;}
.ws24{word-spacing:-11.736000px;}
.ws27{word-spacing:-11.574000px;}
.ws2e{word-spacing:-10.440000px;}
.ws10{word-spacing:-9.187200px;}
.ws6{word-spacing:-9.000000px;}
.ws1a{word-spacing:-0.187920px;}
.ws22{word-spacing:-0.067920px;}
.ws0{word-spacing:0.000000px;}
.ws1d{word-spacing:0.508080px;}
.wsf{word-spacing:0.532080px;}
.ws18{word-spacing:0.652080px;}
.ws16{word-spacing:0.712080px;}
.ws17{word-spacing:7.718400px;}
.ws1e{word-spacing:7.838400px;}
.ws1f{word-spacing:7.898400px;}
.ws19{word-spacing:8.438400px;}
.ws20{word-spacing:8.618400px;}
.ws21{word-spacing:10.574400px;}
.ws15{word-spacing:11.294400px;}
.ws1c{word-spacing:11.318400px;}
.wsb{word-spacing:11.498400px;}
._1f{margin-left:-8.093760px;}
._20{margin-left:-5.513520px;}
._1c{margin-left:-4.451040px;}
._10{margin-left:-3.406320px;}
._f{margin-left:-2.216400px;}
._1{margin-left:-1.179360px;}
._0{width:1.320000px;}
._3{width:2.335680px;}
._11{width:3.401040px;}
._e{width:5.378400px;}
._d{width:6.454080px;}
._7{width:7.763520px;}
._8{width:8.931600px;}
._a{width:10.816560px;}
._9{width:12.011760px;}
._18{width:13.230000px;}
._17{width:14.493600px;}
._4{width:16.483200px;}
._19{width:17.932320px;}
._6{width:19.003680px;}
._5{width:20.019600px;}
._b{width:21.329040px;}
._c{width:22.714080px;}
._16{width:24.310080px;}
._1b{width:25.369920px;}
._1a{width:26.628480px;}
._22{width:28.152000px;}
._21{width:29.806800px;}
._2{width:30.836160px;}
._13{width:34.776000px;}
._1d{width:36.666000px;}
._1e{width:37.695600px;}
._15{width:39.630000px;}
._29{width:41.797440px;}
._12{width:45.435840px;}
._2a{width:48.156480px;}
._27{width:50.077440px;}
._28{width:51.243840px;}
._23{width:53.193840px;}
._14{width:54.900000px;}
._24{width:80.216640px;}
._25{width:85.250880px;}
._26{width:86.341200px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:36.000000px;}
.fsb{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y133{bottom:4.320000px;}
.y131{bottom:5.760000px;}
.y137{bottom:5.940000px;}
.y13b{bottom:6.480000px;}
.y173{bottom:6.660000px;}
.y106{bottom:7.200000px;}
.y16e{bottom:7.740000px;}
.y102{bottom:7.920000px;}
.y10f{bottom:8.460000px;}
.y110{bottom:8.640000px;}
.y113{bottom:9.900000px;}
.y10d{bottom:10.125000px;}
.y10a{bottom:10.260000px;}
.y118{bottom:11.340000px;}
.y12f{bottom:12.960000px;}
.ydb{bottom:13.680000px;}
.yda{bottom:14.220000px;}
.y171{bottom:14.400000px;}
.yf0{bottom:15.660000px;}
.yf4{bottom:18.540000px;}
.yf3{bottom:19.080000px;}
.y13a{bottom:21.960000px;}
.y172{bottom:22.140000px;}
.y104{bottom:22.500000px;}
.y105{bottom:22.680000px;}
.y112{bottom:25.380000px;}
.y108{bottom:25.560000px;}
.y10c{bottom:25.605000px;}
.y109{bottom:25.740000px;}
.yf7{bottom:27.000000px;}
.yf1{bottom:27.030000px;}
.y155{bottom:38.340000px;}
.yf6{bottom:39.600000px;}
.yef{bottom:39.630000px;}
.y116{bottom:42.480000px;}
.y117{bottom:42.660000px;}
.y21{bottom:60.516000px;}
.y48{bottom:92.016000px;}
.ye5{bottom:94.176000px;}
.yae{bottom:94.356000px;}
.ybc{bottom:94.536000px;}
.y4{bottom:97.125005px;}
.y182{bottom:97.236000px;}
.y6d{bottom:100.116000px;}
.y12b{bottom:100.836000px;}
.y8a{bottom:103.356000px;}
.y19d{bottom:103.536000px;}
.y1d6{bottom:107.316000px;}
.y47{bottom:107.676000px;}
.ye4{bottom:113.256000px;}
.yad{bottom:113.616000px;}
.y181{bottom:116.136000px;}
.y6c{bottom:119.016000px;}
.y12a{bottom:119.736000px;}
.y16a{bottom:120.636000px;}
.y1bb{bottom:121.716000px;}
.yfe{bottom:122.436000px;}
.y89{bottom:122.616000px;}
.y46{bottom:123.156000px;}
.y14f{bottom:125.316000px;}
.y1d5{bottom:126.396000px;}
.y195{bottom:126.576000px;}
.ye3{bottom:132.156000px;}
.yac{bottom:132.516000px;}
.y180{bottom:135.036000px;}
.y6b{bottom:137.916000px;}
.y45{bottom:138.636000px;}
.y129{bottom:138.816000px;}
.y20{bottom:139.264499px;}
.y169{bottom:139.716000px;}
.y1ba{bottom:140.976000px;}
.yfd{bottom:141.336000px;}
.y88{bottom:141.516000px;}
.y14e{bottom:144.216000px;}
.y1d4{bottom:145.476000px;}
.y194{bottom:145.836000px;}
.yab{bottom:151.410000px;}
.y44{bottom:154.110000px;}
.y6a{bottom:156.990000px;}
.y128{bottom:157.710000px;}
.y168{bottom:158.610000px;}
.yd4{bottom:159.330000px;}
.ye2{bottom:160.050000px;}
.yfc{bottom:160.230000px;}
.y87{bottom:160.410000px;}
.y14d{bottom:163.290000px;}
.y193{bottom:164.730000px;}
.y1b9{bottom:168.690000px;}
.yaa{bottom:170.490000px;}
.y17f{bottom:173.010000px;}
.y1d3{bottom:173.190000px;}
.y43{bottom:174.270000px;}
.y167{bottom:177.690000px;}
.yd3{bottom:178.410000px;}
.ye1{bottom:179.130000px;}
.yfb{bottom:179.310000px;}
.y86{bottom:179.490000px;}
.y14c{bottom:182.190000px;}
.y192{bottom:183.630000px;}
.y69{bottom:184.710000px;}
.y127{bottom:185.610000px;}
.y42{bottom:185.970000px;}
.y1b8{bottom:187.770000px;}
.y19c{bottom:188.310000px;}
.y17e{bottom:192.090000px;}
.y1d2{bottom:192.270000px;}
.y166{bottom:196.590000px;}
.y17{bottom:196.933500px;}
.ya9{bottom:198.210000px;}
.y85{bottom:198.390000px;}
.y14b{bottom:201.090000px;}
.y126{bottom:204.690000px;}
.yd2{bottom:206.310000px;}
.y1b7{bottom:206.850000px;}
.y19b{bottom:207.390000px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y17d{bottom:210.990000px;}
.y1d1{bottom:211.350000px;}
.y191{bottom:211.530000px;}
.y68{bottom:212.790000px;}
.y41{bottom:216.210000px;}
.ye0{bottom:217.110000px;}
.yfa{bottom:217.290000px;}
.y84{bottom:217.470000px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y125{bottom:223.590000px;}
.y165{bottom:224.490000px;}
.yd1{bottom:225.390000px;}
.y19a{bottom:226.470000px;}
.y14a{bottom:228.810000px;}
.y1b6{bottom:234.570000px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y40{bottom:235.290000px;}
.ydf{bottom:236.010000px;}
.yf9{bottom:236.190000px;}
.ya8{bottom:236.370000px;}
.y17c{bottom:238.710000px;}
.y1d0{bottom:239.070000px;}
.y124{bottom:242.670000px;}
.y164{bottom:243.570000px;}
.yd0{bottom:244.470000px;}
.y83{bottom:245.190000px;}
.y199{bottom:245.370000px;}
.y149{bottom:247.710000px;}
.y190{bottom:252.750000px;}
.y1b5{bottom:253.830000px;}
.y3f{bottom:254.235000px;}
.yde{bottom:255.135000px;}
.ya7{bottom:255.315000px;}
.y17b{bottom:258.015000px;}
.y1cf{bottom:258.375000px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y123{bottom:261.615000px;}
.y148{bottom:262.515000px;}
.ycf{bottom:263.415000px;}
.y82{bottom:264.315000px;}
.y18f{bottom:271.515000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y1b4{bottom:272.775000px;}
.y3e{bottom:273.315000px;}
.ydd{bottom:274.035000px;}
.ya6{bottom:274.395000px;}
.yf8{bottom:274.935000px;}
.y17a{bottom:276.915000px;}
.y1ce{bottom:277.275000px;}
.y122{bottom:280.695000px;}
.y163{bottom:281.595000px;}
.yce{bottom:282.315000px;}
.y81{bottom:283.395000px;}
.y147{bottom:283.755000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y18e{bottom:286.275000px;}
.y3d{bottom:292.215000px;}
.y67{bottom:292.395000px;}
.ydc{bottom:293.115000px;}
.ya5{bottom:293.295000px;}
.y121{bottom:299.595000px;}
.y162{bottom:300.495000px;}
.ycd{bottom:301.395000px;}
.y80{bottom:302.295000px;}
.y179{bottom:304.455000px;}
.y146{bottom:304.995000px;}
.y18d{bottom:307.515000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y3c{bottom:311.115000px;}
.y66{bottom:311.295000px;}
.ya4{bottom:312.375000px;}
.yd9{bottom:312.915000px;}
.y120{bottom:318.495000px;}
.y161{bottom:319.575000px;}
.y1b3{bottom:319.755000px;}
.y7f{bottom:321.375000px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y178{bottom:323.175000px;}
.y1cd{bottom:324.255000px;}
.y145{bottom:326.235000px;}
.y18c{bottom:328.755000px;}
.ycc{bottom:329.115000px;}
.y3b{bottom:330.195000px;}
.y65{bottom:330.375000px;}
.ya3{bottom:331.275000px;}
.yf5{bottom:334.515000px;}
.y11f{bottom:337.575000px;}
.y177{bottom:337.935000px;}
.y160{bottom:338.475000px;}
.y1b2{bottom:338.655000px;}
.ybb{bottom:340.275000px;}
.y1cc{bottom:343.155000px;}
.y144{bottom:347.475000px;}
.ye{bottom:348.133500px;}
.ycb{bottom:348.375000px;}
.y7e{bottom:349.095000px;}
.y64{bottom:349.275000px;}
.y18b{bottom:349.995000px;}
.ya2{bottom:350.175000px;}
.y11e{bottom:356.475000px;}
.y3a{bottom:357.915000px;}
.yd8{bottom:358.995000px;}
.yba{bottom:359.175000px;}
.y15f{bottom:366.195000px;}
.y1b1{bottom:366.555000px;}
.yca{bottom:367.275000px;}
.y7d{bottom:368.175000px;}
.ya1{bottom:369.255000px;}
.y143{bottom:369.435000px;}
.y1cb{bottom:371.055000px;}
.y63{bottom:376.995000px;}
.yb9{bottom:378.255000px;}
.y11d{bottom:384.375000px;}
.y15e{bottom:385.455000px;}
.y1b0{bottom:385.635000px;}
.yc9{bottom:386.175000px;}
.yd{bottom:386.785499px;}
.y198{bottom:387.075000px;}
.y7c{bottom:387.255000px;}
.ya0{bottom:388.155000px;}
.y1ca{bottom:390.135000px;}
.yf2{bottom:394.095000px;}
.y62{bottom:396.255000px;}
.yb8{bottom:397.155000px;}
.y176{bottom:397.515000px;}
.y39{bottom:399.135000px;}
.y142{bottom:403.635000px;}
.y15d{bottom:404.355000px;}
.y1af{bottom:404.715000px;}
.yc8{bottom:405.255000px;}
.yd7{bottom:405.975000px;}
.y7b{bottom:406.155000px;}
.y9f{bottom:407.235000px;}
.yc{bottom:408.044999px;}
.y11c{bottom:412.275000px;}
.y61{bottom:415.155000px;}
.yb7{bottom:416.235000px;}
.y1c9{bottom:418.035000px;}
.y38{bottom:420.915000px;}
.y15c{bottom:423.435000px;}
.yc7{bottom:424.155000px;}
.y7a{bottom:425.235000px;}
.y18a{bottom:426.495000px;}
.y1ae{bottom:432.435000px;}
.y60{bottom:434.235000px;}
.y9e{bottom:434.955000px;}
.y175{bottom:435.675000px;}
.y141{bottom:436.035000px;}
.yee{bottom:436.575000px;}
.y1c8{bottom:437.115000px;}
.y15b{bottom:442.335000px;}
.y37{bottom:442.695000px;}
.yc6{bottom:443.235000px;}
.yb6{bottom:443.955000px;}
.y79{bottom:444.135000px;}
.y1ad{bottom:451.515000px;}
.y5f{bottom:453.135000px;}
.y11b{bottom:453.495000px;}
.y9d{bottom:454.215000px;}
.y1c7{bottom:456.015000px;}
.y36{bottom:460.005000px;}
.y15a{bottom:461.265000px;}
.yc5{bottom:462.165000px;}
.y78{bottom:463.245000px;}
.y189{bottom:464.685000px;}
.y11a{bottom:468.285000px;}
.y1ac{bottom:470.625000px;}
.y5e{bottom:472.245000px;}
.y9c{bottom:473.145000px;}
.y174{bottom:474.045000px;}
.y35{bottom:477.285000px;}
.yc4{bottom:481.245000px;}
.yb5{bottom:482.145000px;}
.y1c6{bottom:483.945000px;}
.y140{bottom:487.005000px;}
.y159{bottom:489.165000px;}
.y119{bottom:489.525000px;}
.y77{bottom:490.965000px;}
.y5d{bottom:491.145000px;}
.y9b{bottom:492.045000px;}
.y34{bottom:494.385000px;}
.y1ab{bottom:498.345000px;}
.yc3{bottom:500.145000px;}
.yb4{bottom:501.045000px;}
.yb{bottom:502.864502px;}
.y188{bottom:503.025000px;}
.y13f{bottom:508.245000px;}
.yed{bottom:508.785000px;}
.y5c{bottom:510.045000px;}
.y115{bottom:510.765000px;}
.y9a{bottom:511.125000px;}
.y33{bottom:511.665000px;}
.y1df{bottom:511.845000px;}
.y170{bottom:512.205000px;}
.y1aa{bottom:517.605000px;}
.yc2{bottom:519.045000px;}
.yb3{bottom:520.125000px;}
.ya{bottom:520.864502px;}
.y1c5{bottom:522.105000px;}
.yec{bottom:527.865000px;}
.y32{bottom:528.945000px;}
.y5b{bottom:529.125000px;}
.y13e{bottom:529.485000px;}
.y99{bottom:530.025000px;}
.y158{bottom:530.385000px;}
.y1de{bottom:531.105000px;}
.y1a9{bottom:536.505000px;}
.yc1{bottom:538.125000px;}
.y9{bottom:538.864499px;}
.yb2{bottom:539.025000px;}
.y187{bottom:541.185000px;}
.y31{bottom:546.225000px;}
.yeb{bottom:546.765000px;}
.y157{bottom:547.665000px;}
.y5a{bottom:548.025000px;}
.y98{bottom:549.105000px;}
.y1c4{bottom:549.825000px;}
.y1dd{bottom:550.005000px;}
.y16f{bottom:550.545000px;}
.y13d{bottom:550.725000px;}
.y8{bottom:556.864499px;}
.yc0{bottom:557.025000px;}
.yb1{bottom:558.105000px;}
.y30{bottom:563.505000px;}
.y1a8{bottom:564.225000px;}
.yea{bottom:565.845000px;}
.y114{bottom:566.025000px;}
.y156{bottom:566.385000px;}
.y59{bottom:567.105000px;}
.y97{bottom:568.005000px;}
.y1c3{bottom:568.905000px;}
.y13c{bottom:571.965000px;}
.ybf{bottom:576.105000px;}
.yb0{bottom:577.005000px;}
.y1dc{bottom:577.725000px;}
.y186{bottom:579.525000px;}
.y2f{bottom:580.605000px;}
.y154{bottom:581.145000px;}
.y1a7{bottom:583.485000px;}
.ye9{bottom:584.745000px;}
.y58{bottom:586.005000px;}
.y16d{bottom:589.605000px;}
.y139{bottom:593.205000px;}
.ybe{bottom:595.005000px;}
.y96{bottom:595.725000px;}
.yd6{bottom:595.905000px;}
.y1c2{bottom:596.805000px;}
.y1db{bottom:596.985000px;}
.y2e{bottom:597.885000px;}
.y1a6{bottom:602.385000px;}
.y111{bottom:604.365000px;}
.ye8{bottom:604.545000px;}
.yaf{bottom:604.725000px;}
.y76{bottom:604.905000px;}
.y57{bottom:613.725000px;}
.ybd{bottom:613.905000px;}
.y95{bottom:614.985000px;}
.y2d{bottom:615.165000px;}
.y1c1{bottom:615.885000px;}
.y185{bottom:618.405000px;}
.y16c{bottom:623.805000px;}
.y75{bottom:623.985000px;}
.y1da{bottom:624.705000px;}
.y1a5{bottom:630.285000px;}
.y138{bottom:632.265000px;}
.y2c{bottom:632.445000px;}
.y56{bottom:632.985000px;}
.y94{bottom:633.885000px;}
.y153{bottom:636.405000px;}
.y10e{bottom:642.525000px;}
.yd5{bottom:642.705000px;}
.y74{bottom:642.885000px;}
.y1c0{bottom:643.785000px;}
.y1d9{bottom:643.965000px;}
.y7{bottom:645.510000px;}
.y1a4{bottom:649.365000px;}
.y2b{bottom:649.725000px;}
.y16b{bottom:651.705000px;}
.y55{bottom:651.885000px;}
.y184{bottom:652.785000px;}
.y93{bottom:652.965000px;}
.y136{bottom:653.325000px;}
.y197{bottom:661.785000px;}
.y73{bottom:661.965000px;}
.y1bf{bottom:662.865000px;}
.y10b{bottom:663.765000px;}
.y6{bottom:666.771000px;}
.y2a{bottom:667.050000px;}
.y1a3{bottom:668.310000px;}
.y54{bottom:671.010000px;}
.y92{bottom:671.910000px;}
.y135{bottom:674.610000px;}
.y152{bottom:675.510000px;}
.y183{bottom:680.730000px;}
.y72{bottom:680.910000px;}
.ye7{bottom:681.090000px;}
.y1be{bottom:681.810000px;}
.y29{bottom:684.150000px;}
.y53{bottom:689.910000px;}
.y1d8{bottom:690.630000px;}
.y91{bottom:690.810000px;}
.y134{bottom:695.850000px;}
.y1a2{bottom:696.210000px;}
.y71{bottom:699.810000px;}
.y28{bottom:701.430000px;}
.y107{bottom:701.970000px;}
.y52{bottom:708.810000px;}
.y151{bottom:709.710000px;}
.y1d7{bottom:709.890000px;}
.y1a1{bottom:715.290000px;}
.y132{bottom:717.090000px;}
.y27{bottom:718.710000px;}
.y70{bottom:718.890000px;}
.ye6{bottom:719.430000px;}
.y5{bottom:726.298500px;}
.y51{bottom:727.890000px;}
.y1bd{bottom:728.790000px;}
.y1a0{bottom:734.370000px;}
.y26{bottom:735.990000px;}
.y150{bottom:737.610000px;}
.y6f{bottom:737.790000px;}
.y130{bottom:738.330000px;}
.y103{bottom:740.310000px;}
.y50{bottom:746.790000px;}
.y3{bottom:752.599495px;}
.y1bc{bottom:756.690000px;}
.y90{bottom:756.870000px;}
.y12e{bottom:760.290000px;}
.y19f{bottom:762.090000px;}
.y25{bottom:762.270000px;}
.y6e{bottom:765.690000px;}
.y4f{bottom:765.870000px;}
.y8f{bottom:775.770000px;}
.y101{bottom:779.370000px;}
.y196{bottom:784.590000px;}
.y4e{bottom:784.770000px;}
.y24{bottom:789.810000px;}
.y12d{bottom:794.490000px;}
.y8e{bottom:794.670000px;}
.y19e{bottom:803.490000px;}
.y4d{bottom:803.670000px;}
.y100{bottom:813.570000px;}
.y8d{bottom:813.750000px;}
.y23{bottom:819.690000px;}
.y12c{bottom:822.570000px;}
.y4c{bottom:822.750000px;}
.y8c{bottom:832.650000px;}
.yff{bottom:841.470000px;}
.y4b{bottom:841.650000px;}
.y22{bottom:850.830000px;}
.y8b{bottom:860.550000px;}
.y4a{bottom:860.730000px;}
.y2{bottom:879.369000px;}
.y49{bottom:903.600000px;}
.y1{bottom:966.726000px;}
.h24{height:21.060000px;}
.h1f{height:21.240000px;}
.h23{height:21.276000px;}
.h1d{height:25.380000px;}
.h21{height:25.560000px;}
.h8{height:32.130000px;}
.h14{height:35.332031px;}
.h17{height:38.160000px;}
.h19{height:38.196000px;}
.h18{height:38.340000px;}
.h25{height:38.376000px;}
.h9{height:39.648000px;}
.h1b{height:42.480000px;}
.h3{height:48.195000px;}
.h22{height:52.971680px;}
.hc{height:52.998047px;}
.h26{height:53.332031px;}
.h1e{height:54.421875px;}
.h20{height:55.260000px;}
.h7{height:56.640000px;}
.h15{height:57.992344px;}
.h10{height:58.651172px;}
.h6{height:59.472000px;}
.h1c{height:59.580000px;}
.h1a{height:59.616000px;}
.hf{height:60.226875px;}
.h11{height:62.211094px;}
.h16{height:64.978594px;}
.h13{height:65.010937px;}
.h27{height:66.757500px;}
.h2{height:67.968000px;}
.h12{height:68.956875px;}
.he{height:83.211680px;}
.h5{height:96.288000px;}
.hd{height:108.843750px;}
.h4{height:119.055004px;}
.hb{height:973.500000px;}
.ha{height:973.800000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w7{width:38.160000px;}
.w1a{width:42.480000px;}
.w1d{width:42.516000px;}
.w9{width:51.156000px;}
.wc{width:59.580000px;}
.w10{width:68.040000px;}
.wf{width:68.076000px;}
.we{width:72.180000px;}
.w17{width:80.640000px;}
.w12{width:80.820000px;}
.w1c{width:85.140000px;}
.w19{width:85.176000px;}
.w15{width:93.420000px;}
.w13{width:93.456000px;}
.w14{width:93.636000px;}
.w1b{width:123.336000px;}
.w18{width:127.656000px;}
.w11{width:140.256000px;}
.wd{width:170.130000px;}
.w16{width:174.270000px;}
.wa{width:229.710000px;}
.wb{width:319.065000px;}
.w8{width:497.445000px;}
.w6{width:510.450000px;}
.w2{width:637.794021px;}
.w4{width:688.500000px;}
.w5{width:688.859990px;}
.w3{width:688.860000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:8.100000px;}
.x11{left:9.900000px;}
.x13{left:12.600000px;}
.x16{left:14.610000px;}
.x2d{left:16.020000px;}
.x23{left:17.460000px;}
.x18{left:19.800000px;}
.x2a{left:20.880000px;}
.x28{left:21.960000px;}
.x26{left:25.380000px;}
.x1a{left:29.880000px;}
.x2c{left:34.050000px;}
.x1c{left:35.640000px;}
.x41{left:37.800000px;}
.x1d{left:39.600000px;}
.x3a{left:45.534000px;}
.x34{left:47.520000px;}
.x42{left:50.040000px;}
.x14{left:53.460000px;}
.x33{left:55.119000px;}
.x1e{left:57.240000px;}
.x2e{left:59.970000px;}
.xd{left:63.935990px;}
.x38{left:72.030000px;}
.x19{left:73.620000px;}
.xa{left:76.535990px;}
.x39{left:78.705000px;}
.x10{left:85.175990px;}
.xc{left:93.635990px;}
.x9{left:97.775990px;}
.x6{left:99.035990px;}
.x1{left:102.045000px;}
.x17{left:105.294000px;}
.x2{left:106.297500px;}
.x22{left:136.116000px;}
.x2f{left:144.756000px;}
.x1b{left:162.219000px;}
.x1f{left:196.779000px;}
.x3d{left:199.875000px;}
.x4{left:203.484001px;}
.xf{left:211.574990px;}
.x3b{left:229.755000px;}
.x30{left:238.215000px;}
.x35{left:250.995000px;}
.x7{left:270.074990px;}
.x24{left:272.235000px;}
.x8{left:279.974990px;}
.x3f{left:285.015000px;}
.xb{left:292.574990px;}
.x21{left:306.255000px;}
.x3e{left:327.525000px;}
.xe{left:331.484990px;}
.x25{left:340.305000px;}
.x5{left:344.084990px;}
.x3c{left:357.405000px;}
.x27{left:408.345000px;}
.x40{left:412.665000px;}
.x31{left:425.265000px;}
.x36{left:438.045000px;}
.x3{left:454.959000px;}
.x29{left:476.430000px;}
.x32{left:518.910000px;}
.x37{left:531.690000px;}
.x2b{left:544.470000px;}
.x15{left:561.390000px;}
.x12{left:586.980000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.920000pt;}
.v4{vertical-align:10.880000pt;}
.v6{vertical-align:16.000000pt;}
.v7{vertical-align:21.120000pt;}
.v1{vertical-align:26.880000pt;}
.ls2f{letter-spacing:-0.832000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls32{letter-spacing:-0.504533pt;}
.lsb{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.406933pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.286933pt;}
.ls2b{letter-spacing:-0.272000pt;}
.ls17{letter-spacing:-0.271467pt;}
.ls31{letter-spacing:-0.192000pt;}
.ls29{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.107733pt;}
.ls13{letter-spacing:-0.069333pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.011520pt;}
.ls24{letter-spacing:0.016000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls27{letter-spacing:0.064000pt;}
.ls23{letter-spacing:0.096000pt;}
.ls1f{letter-spacing:0.097280pt;}
.ls35{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.112000pt;}
.ls2d{letter-spacing:0.128000pt;}
.ls33{letter-spacing:0.135467pt;}
.ls7{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.232960pt;}
.ls20{letter-spacing:0.234667pt;}
.ls2c{letter-spacing:0.256000pt;}
.ls28{letter-spacing:0.271360pt;}
.ls12{letter-spacing:0.271467pt;}
.ls26{letter-spacing:0.288000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls34{letter-spacing:0.392960pt;}
.ls1c{letter-spacing:0.473600pt;}
.ls25{letter-spacing:0.880000pt;}
.ls19{letter-spacing:2.187520pt;}
.ls1e{letter-spacing:2.294187pt;}
.ls1d{letter-spacing:2.347520pt;}
.ls18{letter-spacing:2.827520pt;}
.ls1a{letter-spacing:2.934187pt;}
.ls1b{letter-spacing:2.987520pt;}
.ls10{letter-spacing:4.480000pt;}
.ls30{letter-spacing:5.280000pt;}
.lsa{letter-spacing:5.391360pt;}
.ls2e{letter-spacing:5.920000pt;}
.ls22{letter-spacing:12.431360pt;}
.ls11{letter-spacing:12.515200pt;}
.ls3{letter-spacing:29.711360pt;}
.ls2{letter-spacing:31.312640pt;}
.ls4{letter-spacing:32.800000pt;}
.ws2d{word-spacing:-33.561600pt;}
.ws5{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.313067pt;}
.ws9{word-spacing:-14.080000pt;}
.ws1b{word-spacing:-13.510933pt;}
.ws3{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.320000pt;}
.ws2a{word-spacing:-12.192000pt;}
.ws2b{word-spacing:-12.128000pt;}
.ws7{word-spacing:-12.112000pt;}
.ws2c{word-spacing:-12.016000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws14{word-spacing:-11.921067pt;}
.ws12{word-spacing:-11.697920pt;}
.wsc{word-spacing:-11.686400pt;}
.ws8{word-spacing:-11.680000pt;}
.wsd{word-spacing:-11.617067pt;}
.wse{word-spacing:-11.578667pt;}
.ws13{word-spacing:-11.414933pt;}
.ws11{word-spacing:-11.399467pt;}
.ws28{word-spacing:-10.816000pt;}
.ws25{word-spacing:-10.752000pt;}
.ws23{word-spacing:-10.672000pt;}
.ws29{word-spacing:-10.624000pt;}
.ws26{word-spacing:-10.560000pt;}
.ws24{word-spacing:-10.432000pt;}
.ws27{word-spacing:-10.288000pt;}
.ws2e{word-spacing:-9.280000pt;}
.ws10{word-spacing:-8.166400pt;}
.ws6{word-spacing:-8.000000pt;}
.ws1a{word-spacing:-0.167040pt;}
.ws22{word-spacing:-0.060373pt;}
.ws0{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.451627pt;}
.wsf{word-spacing:0.472960pt;}
.ws18{word-spacing:0.579627pt;}
.ws16{word-spacing:0.632960pt;}
.ws17{word-spacing:6.860800pt;}
.ws1e{word-spacing:6.967467pt;}
.ws1f{word-spacing:7.020800pt;}
.ws19{word-spacing:7.500800pt;}
.ws20{word-spacing:7.660800pt;}
.ws21{word-spacing:9.399467pt;}
.ws15{word-spacing:10.039467pt;}
.ws1c{word-spacing:10.060800pt;}
.wsb{word-spacing:10.220800pt;}
._1f{margin-left:-7.194453pt;}
._20{margin-left:-4.900907pt;}
._1c{margin-left:-3.956480pt;}
._10{margin-left:-3.027840pt;}
._f{margin-left:-1.970133pt;}
._1{margin-left:-1.048320pt;}
._0{width:1.173333pt;}
._3{width:2.076160pt;}
._11{width:3.023147pt;}
._e{width:4.780800pt;}
._d{width:5.736960pt;}
._7{width:6.900907pt;}
._8{width:7.939200pt;}
._a{width:9.614720pt;}
._9{width:10.677120pt;}
._18{width:11.760000pt;}
._17{width:12.883200pt;}
._4{width:14.651733pt;}
._19{width:15.939840pt;}
._6{width:16.892160pt;}
._5{width:17.795200pt;}
._b{width:18.959147pt;}
._c{width:20.190293pt;}
._16{width:21.608960pt;}
._1b{width:22.551040pt;}
._1a{width:23.669760pt;}
._22{width:25.024000pt;}
._21{width:26.494933pt;}
._2{width:27.409920pt;}
._13{width:30.912000pt;}
._1d{width:32.592000pt;}
._1e{width:33.507200pt;}
._15{width:35.226667pt;}
._29{width:37.153280pt;}
._12{width:40.387413pt;}
._2a{width:42.805760pt;}
._27{width:44.513280pt;}
._28{width:45.550080pt;}
._23{width:47.283413pt;}
._14{width:48.800000pt;}
._24{width:71.303680pt;}
._25{width:75.778560pt;}
._26{width:76.747733pt;}
.fsa{font-size:32.000000pt;}
.fsb{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y133{bottom:3.840000pt;}
.y131{bottom:5.120000pt;}
.y137{bottom:5.280000pt;}
.y13b{bottom:5.760000pt;}
.y173{bottom:5.920000pt;}
.y106{bottom:6.400000pt;}
.y16e{bottom:6.880000pt;}
.y102{bottom:7.040000pt;}
.y10f{bottom:7.520000pt;}
.y110{bottom:7.680000pt;}
.y113{bottom:8.800000pt;}
.y10d{bottom:9.000000pt;}
.y10a{bottom:9.120000pt;}
.y118{bottom:10.080000pt;}
.y12f{bottom:11.520000pt;}
.ydb{bottom:12.160000pt;}
.yda{bottom:12.640000pt;}
.y171{bottom:12.800000pt;}
.yf0{bottom:13.920000pt;}
.yf4{bottom:16.480000pt;}
.yf3{bottom:16.960000pt;}
.y13a{bottom:19.520000pt;}
.y172{bottom:19.680000pt;}
.y104{bottom:20.000000pt;}
.y105{bottom:20.160000pt;}
.y112{bottom:22.560000pt;}
.y108{bottom:22.720000pt;}
.y10c{bottom:22.760000pt;}
.y109{bottom:22.880000pt;}
.yf7{bottom:24.000000pt;}
.yf1{bottom:24.026667pt;}
.y155{bottom:34.080000pt;}
.yf6{bottom:35.200000pt;}
.yef{bottom:35.226667pt;}
.y116{bottom:37.760000pt;}
.y117{bottom:37.920000pt;}
.y21{bottom:53.792000pt;}
.y48{bottom:81.792000pt;}
.ye5{bottom:83.712000pt;}
.yae{bottom:83.872000pt;}
.ybc{bottom:84.032000pt;}
.y4{bottom:86.333337pt;}
.y182{bottom:86.432000pt;}
.y6d{bottom:88.992000pt;}
.y12b{bottom:89.632000pt;}
.y8a{bottom:91.872000pt;}
.y19d{bottom:92.032000pt;}
.y1d6{bottom:95.392000pt;}
.y47{bottom:95.712000pt;}
.ye4{bottom:100.672000pt;}
.yad{bottom:100.992000pt;}
.y181{bottom:103.232000pt;}
.y6c{bottom:105.792000pt;}
.y12a{bottom:106.432000pt;}
.y16a{bottom:107.232000pt;}
.y1bb{bottom:108.192000pt;}
.yfe{bottom:108.832000pt;}
.y89{bottom:108.992000pt;}
.y46{bottom:109.472000pt;}
.y14f{bottom:111.392000pt;}
.y1d5{bottom:112.352000pt;}
.y195{bottom:112.512000pt;}
.ye3{bottom:117.472000pt;}
.yac{bottom:117.792000pt;}
.y180{bottom:120.032000pt;}
.y6b{bottom:122.592000pt;}
.y45{bottom:123.232000pt;}
.y129{bottom:123.392000pt;}
.y20{bottom:123.790666pt;}
.y169{bottom:124.192000pt;}
.y1ba{bottom:125.312000pt;}
.yfd{bottom:125.632000pt;}
.y88{bottom:125.792000pt;}
.y14e{bottom:128.192000pt;}
.y1d4{bottom:129.312000pt;}
.y194{bottom:129.632000pt;}
.yab{bottom:134.586667pt;}
.y44{bottom:136.986667pt;}
.y6a{bottom:139.546667pt;}
.y128{bottom:140.186667pt;}
.y168{bottom:140.986667pt;}
.yd4{bottom:141.626667pt;}
.ye2{bottom:142.266667pt;}
.yfc{bottom:142.426667pt;}
.y87{bottom:142.586667pt;}
.y14d{bottom:145.146667pt;}
.y193{bottom:146.426667pt;}
.y1b9{bottom:149.946667pt;}
.yaa{bottom:151.546667pt;}
.y17f{bottom:153.786667pt;}
.y1d3{bottom:153.946667pt;}
.y43{bottom:154.906667pt;}
.y167{bottom:157.946667pt;}
.yd3{bottom:158.586667pt;}
.ye1{bottom:159.226667pt;}
.yfb{bottom:159.386667pt;}
.y86{bottom:159.546667pt;}
.y14c{bottom:161.946667pt;}
.y192{bottom:163.226667pt;}
.y69{bottom:164.186667pt;}
.y127{bottom:164.986667pt;}
.y42{bottom:165.306667pt;}
.y1b8{bottom:166.906667pt;}
.y19c{bottom:167.386667pt;}
.y17e{bottom:170.746667pt;}
.y1d2{bottom:170.906667pt;}
.y166{bottom:174.746667pt;}
.y17{bottom:175.052000pt;}
.ya9{bottom:176.186667pt;}
.y85{bottom:176.346667pt;}
.y14b{bottom:178.746667pt;}
.y126{bottom:181.946667pt;}
.yd2{bottom:183.386667pt;}
.y1b7{bottom:183.866667pt;}
.y19b{bottom:184.346667pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y17d{bottom:187.546667pt;}
.y1d1{bottom:187.866667pt;}
.y191{bottom:188.026667pt;}
.y68{bottom:189.146667pt;}
.y41{bottom:192.186667pt;}
.ye0{bottom:192.986667pt;}
.yfa{bottom:193.146667pt;}
.y84{bottom:193.306667pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y125{bottom:198.746667pt;}
.y165{bottom:199.546667pt;}
.yd1{bottom:200.346667pt;}
.y19a{bottom:201.306667pt;}
.y14a{bottom:203.386667pt;}
.y1b6{bottom:208.506667pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y40{bottom:209.146667pt;}
.ydf{bottom:209.786667pt;}
.yf9{bottom:209.946667pt;}
.ya8{bottom:210.106667pt;}
.y17c{bottom:212.186667pt;}
.y1d0{bottom:212.506667pt;}
.y124{bottom:215.706667pt;}
.y164{bottom:216.506667pt;}
.yd0{bottom:217.306667pt;}
.y83{bottom:217.946667pt;}
.y199{bottom:218.106667pt;}
.y149{bottom:220.186667pt;}
.y190{bottom:224.666667pt;}
.y1b5{bottom:225.626667pt;}
.y3f{bottom:225.986667pt;}
.yde{bottom:226.786667pt;}
.ya7{bottom:226.946667pt;}
.y17b{bottom:229.346667pt;}
.y1cf{bottom:229.666667pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y123{bottom:232.546667pt;}
.y148{bottom:233.346667pt;}
.ycf{bottom:234.146667pt;}
.y82{bottom:234.946667pt;}
.y18f{bottom:241.346667pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y1b4{bottom:242.466667pt;}
.y3e{bottom:242.946667pt;}
.ydd{bottom:243.586667pt;}
.ya6{bottom:243.906667pt;}
.yf8{bottom:244.386667pt;}
.y17a{bottom:246.146667pt;}
.y1ce{bottom:246.466667pt;}
.y122{bottom:249.506667pt;}
.y163{bottom:250.306667pt;}
.yce{bottom:250.946667pt;}
.y81{bottom:251.906667pt;}
.y147{bottom:252.226667pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y18e{bottom:254.466667pt;}
.y3d{bottom:259.746667pt;}
.y67{bottom:259.906667pt;}
.ydc{bottom:260.546667pt;}
.ya5{bottom:260.706667pt;}
.y121{bottom:266.306667pt;}
.y162{bottom:267.106667pt;}
.ycd{bottom:267.906667pt;}
.y80{bottom:268.706667pt;}
.y179{bottom:270.626667pt;}
.y146{bottom:271.106667pt;}
.y18d{bottom:273.346667pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y3c{bottom:276.546667pt;}
.y66{bottom:276.706667pt;}
.ya4{bottom:277.666667pt;}
.yd9{bottom:278.146667pt;}
.y120{bottom:283.106667pt;}
.y161{bottom:284.066667pt;}
.y1b3{bottom:284.226667pt;}
.y7f{bottom:285.666667pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y178{bottom:287.266667pt;}
.y1cd{bottom:288.226667pt;}
.y145{bottom:289.986667pt;}
.y18c{bottom:292.226667pt;}
.ycc{bottom:292.546667pt;}
.y3b{bottom:293.506667pt;}
.y65{bottom:293.666667pt;}
.ya3{bottom:294.466667pt;}
.yf5{bottom:297.346667pt;}
.y11f{bottom:300.066667pt;}
.y177{bottom:300.386667pt;}
.y160{bottom:300.866667pt;}
.y1b2{bottom:301.026667pt;}
.ybb{bottom:302.466667pt;}
.y1cc{bottom:305.026667pt;}
.y144{bottom:308.866667pt;}
.ye{bottom:309.452000pt;}
.ycb{bottom:309.666667pt;}
.y7e{bottom:310.306667pt;}
.y64{bottom:310.466667pt;}
.y18b{bottom:311.106667pt;}
.ya2{bottom:311.266667pt;}
.y11e{bottom:316.866667pt;}
.y3a{bottom:318.146667pt;}
.yd8{bottom:319.106667pt;}
.yba{bottom:319.266667pt;}
.y15f{bottom:325.506667pt;}
.y1b1{bottom:325.826667pt;}
.yca{bottom:326.466667pt;}
.y7d{bottom:327.266667pt;}
.ya1{bottom:328.226667pt;}
.y143{bottom:328.386667pt;}
.y1cb{bottom:329.826667pt;}
.y63{bottom:335.106667pt;}
.yb9{bottom:336.226667pt;}
.y11d{bottom:341.666667pt;}
.y15e{bottom:342.626667pt;}
.y1b0{bottom:342.786667pt;}
.yc9{bottom:343.266667pt;}
.yd{bottom:343.809333pt;}
.y198{bottom:344.066667pt;}
.y7c{bottom:344.226667pt;}
.ya0{bottom:345.026667pt;}
.y1ca{bottom:346.786667pt;}
.yf2{bottom:350.306667pt;}
.y62{bottom:352.226667pt;}
.yb8{bottom:353.026667pt;}
.y176{bottom:353.346667pt;}
.y39{bottom:354.786667pt;}
.y142{bottom:358.786667pt;}
.y15d{bottom:359.426667pt;}
.y1af{bottom:359.746667pt;}
.yc8{bottom:360.226667pt;}
.yd7{bottom:360.866667pt;}
.y7b{bottom:361.026667pt;}
.y9f{bottom:361.986667pt;}
.yc{bottom:362.706666pt;}
.y11c{bottom:366.466667pt;}
.y61{bottom:369.026667pt;}
.yb7{bottom:369.986667pt;}
.y1c9{bottom:371.586667pt;}
.y38{bottom:374.146667pt;}
.y15c{bottom:376.386667pt;}
.yc7{bottom:377.026667pt;}
.y7a{bottom:377.986667pt;}
.y18a{bottom:379.106667pt;}
.y1ae{bottom:384.386667pt;}
.y60{bottom:385.986667pt;}
.y9e{bottom:386.626667pt;}
.y175{bottom:387.266667pt;}
.y141{bottom:387.586667pt;}
.yee{bottom:388.066667pt;}
.y1c8{bottom:388.546667pt;}
.y15b{bottom:393.186667pt;}
.y37{bottom:393.506667pt;}
.yc6{bottom:393.986667pt;}
.yb6{bottom:394.626667pt;}
.y79{bottom:394.786667pt;}
.y1ad{bottom:401.346667pt;}
.y5f{bottom:402.786667pt;}
.y11b{bottom:403.106667pt;}
.y9d{bottom:403.746667pt;}
.y1c7{bottom:405.346667pt;}
.y36{bottom:408.893333pt;}
.y15a{bottom:410.013333pt;}
.yc5{bottom:410.813333pt;}
.y78{bottom:411.773333pt;}
.y189{bottom:413.053333pt;}
.y11a{bottom:416.253333pt;}
.y1ac{bottom:418.333333pt;}
.y5e{bottom:419.773333pt;}
.y9c{bottom:420.573333pt;}
.y174{bottom:421.373333pt;}
.y35{bottom:424.253333pt;}
.yc4{bottom:427.773333pt;}
.yb5{bottom:428.573333pt;}
.y1c6{bottom:430.173333pt;}
.y140{bottom:432.893333pt;}
.y159{bottom:434.813333pt;}
.y119{bottom:435.133333pt;}
.y77{bottom:436.413333pt;}
.y5d{bottom:436.573333pt;}
.y9b{bottom:437.373333pt;}
.y34{bottom:439.453333pt;}
.y1ab{bottom:442.973333pt;}
.yc3{bottom:444.573333pt;}
.yb4{bottom:445.373333pt;}
.yb{bottom:446.990669pt;}
.y188{bottom:447.133333pt;}
.y13f{bottom:451.773333pt;}
.yed{bottom:452.253333pt;}
.y5c{bottom:453.373333pt;}
.y115{bottom:454.013333pt;}
.y9a{bottom:454.333333pt;}
.y33{bottom:454.813333pt;}
.y1df{bottom:454.973333pt;}
.y170{bottom:455.293333pt;}
.y1aa{bottom:460.093333pt;}
.yc2{bottom:461.373333pt;}
.yb3{bottom:462.333333pt;}
.ya{bottom:462.990669pt;}
.y1c5{bottom:464.093333pt;}
.yec{bottom:469.213333pt;}
.y32{bottom:470.173333pt;}
.y5b{bottom:470.333333pt;}
.y13e{bottom:470.653333pt;}
.y99{bottom:471.133333pt;}
.y158{bottom:471.453333pt;}
.y1de{bottom:472.093333pt;}
.y1a9{bottom:476.893333pt;}
.yc1{bottom:478.333333pt;}
.y9{bottom:478.990666pt;}
.yb2{bottom:479.133333pt;}
.y187{bottom:481.053333pt;}
.y31{bottom:485.533333pt;}
.yeb{bottom:486.013333pt;}
.y157{bottom:486.813333pt;}
.y5a{bottom:487.133333pt;}
.y98{bottom:488.093333pt;}
.y1c4{bottom:488.733333pt;}
.y1dd{bottom:488.893333pt;}
.y16f{bottom:489.373333pt;}
.y13d{bottom:489.533333pt;}
.y8{bottom:494.990666pt;}
.yc0{bottom:495.133333pt;}
.yb1{bottom:496.093333pt;}
.y30{bottom:500.893333pt;}
.y1a8{bottom:501.533333pt;}
.yea{bottom:502.973333pt;}
.y114{bottom:503.133333pt;}
.y156{bottom:503.453333pt;}
.y59{bottom:504.093333pt;}
.y97{bottom:504.893333pt;}
.y1c3{bottom:505.693333pt;}
.y13c{bottom:508.413333pt;}
.ybf{bottom:512.093333pt;}
.yb0{bottom:512.893333pt;}
.y1dc{bottom:513.533333pt;}
.y186{bottom:515.133333pt;}
.y2f{bottom:516.093333pt;}
.y154{bottom:516.573333pt;}
.y1a7{bottom:518.653333pt;}
.ye9{bottom:519.773333pt;}
.y58{bottom:520.893333pt;}
.y16d{bottom:524.093333pt;}
.y139{bottom:527.293333pt;}
.ybe{bottom:528.893333pt;}
.y96{bottom:529.533333pt;}
.yd6{bottom:529.693333pt;}
.y1c2{bottom:530.493333pt;}
.y1db{bottom:530.653333pt;}
.y2e{bottom:531.453333pt;}
.y1a6{bottom:535.453333pt;}
.y111{bottom:537.213333pt;}
.ye8{bottom:537.373333pt;}
.yaf{bottom:537.533333pt;}
.y76{bottom:537.693333pt;}
.y57{bottom:545.533333pt;}
.ybd{bottom:545.693333pt;}
.y95{bottom:546.653333pt;}
.y2d{bottom:546.813333pt;}
.y1c1{bottom:547.453333pt;}
.y185{bottom:549.693333pt;}
.y16c{bottom:554.493333pt;}
.y75{bottom:554.653333pt;}
.y1da{bottom:555.293333pt;}
.y1a5{bottom:560.253333pt;}
.y138{bottom:562.013333pt;}
.y2c{bottom:562.173333pt;}
.y56{bottom:562.653333pt;}
.y94{bottom:563.453333pt;}
.y153{bottom:565.693333pt;}
.y10e{bottom:571.133333pt;}
.yd5{bottom:571.293333pt;}
.y74{bottom:571.453333pt;}
.y1c0{bottom:572.253333pt;}
.y1d9{bottom:572.413333pt;}
.y7{bottom:573.786667pt;}
.y1a4{bottom:577.213333pt;}
.y2b{bottom:577.533333pt;}
.y16b{bottom:579.293333pt;}
.y55{bottom:579.453333pt;}
.y184{bottom:580.253333pt;}
.y93{bottom:580.413333pt;}
.y136{bottom:580.733333pt;}
.y197{bottom:588.253333pt;}
.y73{bottom:588.413333pt;}
.y1bf{bottom:589.213333pt;}
.y10b{bottom:590.013333pt;}
.y6{bottom:592.685334pt;}
.y2a{bottom:592.933333pt;}
.y1a3{bottom:594.053333pt;}
.y54{bottom:596.453333pt;}
.y92{bottom:597.253333pt;}
.y135{bottom:599.653333pt;}
.y152{bottom:600.453333pt;}
.y183{bottom:605.093333pt;}
.y72{bottom:605.253333pt;}
.ye7{bottom:605.413333pt;}
.y1be{bottom:606.053333pt;}
.y29{bottom:608.133333pt;}
.y53{bottom:613.253333pt;}
.y1d8{bottom:613.893333pt;}
.y91{bottom:614.053333pt;}
.y134{bottom:618.533333pt;}
.y1a2{bottom:618.853333pt;}
.y71{bottom:622.053333pt;}
.y28{bottom:623.493333pt;}
.y107{bottom:623.973333pt;}
.y52{bottom:630.053333pt;}
.y151{bottom:630.853333pt;}
.y1d7{bottom:631.013333pt;}
.y1a1{bottom:635.813333pt;}
.y132{bottom:637.413333pt;}
.y27{bottom:638.853333pt;}
.y70{bottom:639.013333pt;}
.ye6{bottom:639.493333pt;}
.y5{bottom:645.598667pt;}
.y51{bottom:647.013333pt;}
.y1bd{bottom:647.813333pt;}
.y1a0{bottom:652.773333pt;}
.y26{bottom:654.213333pt;}
.y150{bottom:655.653333pt;}
.y6f{bottom:655.813333pt;}
.y130{bottom:656.293333pt;}
.y103{bottom:658.053333pt;}
.y50{bottom:663.813333pt;}
.y3{bottom:668.977329pt;}
.y1bc{bottom:672.613333pt;}
.y90{bottom:672.773333pt;}
.y12e{bottom:675.813333pt;}
.y19f{bottom:677.413333pt;}
.y25{bottom:677.573333pt;}
.y6e{bottom:680.613333pt;}
.y4f{bottom:680.773333pt;}
.y8f{bottom:689.573333pt;}
.y101{bottom:692.773333pt;}
.y196{bottom:697.413333pt;}
.y4e{bottom:697.573333pt;}
.y24{bottom:702.053333pt;}
.y12d{bottom:706.213333pt;}
.y8e{bottom:706.373333pt;}
.y19e{bottom:714.213333pt;}
.y4d{bottom:714.373333pt;}
.y100{bottom:723.173333pt;}
.y8d{bottom:723.333333pt;}
.y23{bottom:728.613333pt;}
.y12c{bottom:731.173333pt;}
.y4c{bottom:731.333333pt;}
.y8c{bottom:740.133333pt;}
.yff{bottom:747.973333pt;}
.y4b{bottom:748.133333pt;}
.y22{bottom:756.293333pt;}
.y8b{bottom:764.933333pt;}
.y4a{bottom:765.093333pt;}
.y2{bottom:781.661334pt;}
.y49{bottom:803.200000pt;}
.y1{bottom:859.312000pt;}
.h24{height:18.720000pt;}
.h1f{height:18.880000pt;}
.h23{height:18.912000pt;}
.h1d{height:22.560000pt;}
.h21{height:22.720000pt;}
.h8{height:28.560000pt;}
.h14{height:31.406250pt;}
.h17{height:33.920000pt;}
.h19{height:33.952000pt;}
.h18{height:34.080000pt;}
.h25{height:34.112000pt;}
.h9{height:35.242667pt;}
.h1b{height:37.760000pt;}
.h3{height:42.840000pt;}
.h22{height:47.085938pt;}
.hc{height:47.109375pt;}
.h26{height:47.406250pt;}
.h1e{height:48.375000pt;}
.h20{height:49.120000pt;}
.h7{height:50.346667pt;}
.h15{height:51.548750pt;}
.h10{height:52.134375pt;}
.h6{height:52.864000pt;}
.h1c{height:52.960000pt;}
.h1a{height:52.992000pt;}
.hf{height:53.535000pt;}
.h11{height:55.298750pt;}
.h16{height:57.758750pt;}
.h13{height:57.787500pt;}
.h27{height:59.340000pt;}
.h2{height:60.416000pt;}
.h12{height:61.295000pt;}
.he{height:73.965938pt;}
.h5{height:85.589333pt;}
.hd{height:96.750000pt;}
.h4{height:105.826671pt;}
.hb{height:865.333333pt;}
.ha{height:865.600000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w7{width:33.920000pt;}
.w1a{width:37.760000pt;}
.w1d{width:37.792000pt;}
.w9{width:45.472000pt;}
.wc{width:52.960000pt;}
.w10{width:60.480000pt;}
.wf{width:60.512000pt;}
.we{width:64.160000pt;}
.w17{width:71.680000pt;}
.w12{width:71.840000pt;}
.w1c{width:75.680000pt;}
.w19{width:75.712000pt;}
.w15{width:83.040000pt;}
.w13{width:83.072000pt;}
.w14{width:83.232000pt;}
.w1b{width:109.632000pt;}
.w18{width:113.472000pt;}
.w11{width:124.672000pt;}
.wd{width:151.226667pt;}
.w16{width:154.906667pt;}
.wa{width:204.186667pt;}
.wb{width:283.613333pt;}
.w8{width:442.173333pt;}
.w6{width:453.733333pt;}
.w2{width:566.928019pt;}
.w4{width:612.000000pt;}
.w5{width:612.319991pt;}
.w3{width:612.320000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:7.200000pt;}
.x11{left:8.800000pt;}
.x13{left:11.200000pt;}
.x16{left:12.986667pt;}
.x2d{left:14.240000pt;}
.x23{left:15.520000pt;}
.x18{left:17.600000pt;}
.x2a{left:18.560000pt;}
.x28{left:19.520000pt;}
.x26{left:22.560000pt;}
.x1a{left:26.560000pt;}
.x2c{left:30.266667pt;}
.x1c{left:31.680000pt;}
.x41{left:33.600000pt;}
.x1d{left:35.200000pt;}
.x3a{left:40.474667pt;}
.x34{left:42.240000pt;}
.x42{left:44.480000pt;}
.x14{left:47.520000pt;}
.x33{left:48.994667pt;}
.x1e{left:50.880000pt;}
.x2e{left:53.306667pt;}
.xd{left:56.831991pt;}
.x38{left:64.026667pt;}
.x19{left:65.440000pt;}
.xa{left:68.031991pt;}
.x39{left:69.960000pt;}
.x10{left:75.711991pt;}
.xc{left:83.231991pt;}
.x9{left:86.911991pt;}
.x6{left:88.031991pt;}
.x1{left:90.706667pt;}
.x17{left:93.594667pt;}
.x2{left:94.486667pt;}
.x22{left:120.992000pt;}
.x2f{left:128.672000pt;}
.x1b{left:144.194667pt;}
.x1f{left:174.914667pt;}
.x3d{left:177.666667pt;}
.x4{left:180.874667pt;}
.xf{left:188.066658pt;}
.x3b{left:204.226667pt;}
.x30{left:211.746667pt;}
.x35{left:223.106667pt;}
.x7{left:240.066658pt;}
.x24{left:241.986667pt;}
.x8{left:248.866658pt;}
.x3f{left:253.346667pt;}
.xb{left:260.066658pt;}
.x21{left:272.226667pt;}
.x3e{left:291.133333pt;}
.xe{left:294.653324pt;}
.x25{left:302.493333pt;}
.x5{left:305.853324pt;}
.x3c{left:317.693333pt;}
.x27{left:362.973333pt;}
.x40{left:366.813333pt;}
.x31{left:378.013333pt;}
.x36{left:389.373333pt;}
.x3{left:404.408000pt;}
.x29{left:423.493333pt;}
.x32{left:461.253333pt;}
.x37{left:472.613333pt;}
.x2b{left:483.973333pt;}
.x15{left:499.013333pt;}
.x12{left:521.760000pt;}
}




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