
    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_f536ab61b1619f5146fc43e1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_2708950750205a09c2c4c6a4.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e2bbac461c3ac7b6c44b43f0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_9842a7295e7899e228f5a4c8.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_397d7a73fa449c74229ee8cb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_732172bed9e860e82121c281.woff')format("woff");}.ff6{font-family:ff6;line-height:0.793945;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_209c2fb1fc98dc17f3081727.woff')format("woff");}.ff7{font-family:ff7;line-height:0.933594;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_8ca734ecedbb6fb24c02d755.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_588d3b9db3a362c1d11c8e4b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_e244125839aca772f7d43486.woff')format("woff");}.ffa{font-family:ffa;line-height:0.793945;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_c38b02027875a43b2fd1587d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.793945;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_1496cd801acb51a3173955eb.woff')format("woff");}.ffc{font-family:ffc;line-height:0.742188;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:ffd;src:url('chunks/assets/font_61cdee59a5b16b487b6d8d8f.woff')format("woff");}.ffd{font-family:ffd;line-height:0.793945;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:ffe;src:url('chunks/assets/font_ff6b9fd05e5259e07f888c32.woff')format("woff");}.ffe{font-family:ffe;line-height:0.793945;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:fff;src:url('chunks/assets/font_8787dce39abbd3d991cbca51.woff')format("woff");}.fff{font-family:fff;line-height:0.793945;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:26.640000px;}
.v1{vertical-align:28.080000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.114000px;}
.lsf{letter-spacing:0.153360px;}
.lsc{letter-spacing:0.192000px;}
.lsd{letter-spacing:0.259893px;}
.ls4{letter-spacing:0.272321px;}
.ls1{letter-spacing:0.342060px;}
.ls2{letter-spacing:0.348000px;}
.ls19{letter-spacing:8.598720px;}
.lse{letter-spacing:10.746720px;}
.ls15{letter-spacing:11.436720px;}
.ls8{letter-spacing:11.454720px;}
.lsa{letter-spacing:11.484720px;}
.ls14{letter-spacing:15.036720px;}
.ls7{letter-spacing:15.084720px;}
.ls1d{letter-spacing:15.888000px;}
.ls10{letter-spacing:17.916720px;}
.ls1a{letter-spacing:17.934720px;}
.ls9{letter-spacing:17.940720px;}
.ls12{letter-spacing:17.946720px;}
.ls1c{letter-spacing:17.964720px;}
.ls6{letter-spacing:17.970720px;}
.ls20{letter-spacing:19.386720px;}
.ls5{letter-spacing:20.850720px;}
.lsb{letter-spacing:32.693280px;}
.ls18{letter-spacing:46.062720px;}
.ls17{letter-spacing:49.668720px;}
.ls11{letter-spacing:58.589280px;}
.ls1b{letter-spacing:78.803280px;}
.ls16{letter-spacing:93.935280px;}
.ls13{letter-spacing:94.589280px;}
.ls1e{letter-spacing:94.655280px;}
.ls1f{letter-spacing:183.060000px;}
.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;}
}
.ws7{word-spacing:-15.212321px;}
.wsa{word-spacing:-15.199893px;}
.ws9{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.500000px;}
.ws8{word-spacing:-12.060000px;}
.ws6{word-spacing:-0.348000px;}
.ws5{word-spacing:-0.342060px;}
.ws4{word-spacing:-0.114000px;}
.ws3{word-spacing:0.000000px;}
.ws2{word-spacing:0.018060px;}
.ws1{word-spacing:32.077826px;}
._1e{margin-left:-1530.660000px;}
._1d{margin-left:-3.575455px;}
._e{margin-left:-2.489976px;}
._1{margin-left:-1.041008px;}
._0{width:1.192905px;}
._8{width:2.317554px;}
._6{width:3.331212px;}
._5{width:5.266226px;}
._7{width:6.682448px;}
._9{width:8.083218px;}
._a{width:9.210619px;}
._b{width:11.211272px;}
._f{width:12.231572px;}
._1b{width:13.423484px;}
._c{width:14.865001px;}
._11{width:16.040391px;}
._10{width:17.149194px;}
._d{width:18.462576px;}
._17{width:19.902620px;}
._20{width:21.210365px;}
._14{width:22.594678px;}
._13{width:23.597376px;}
._1a{width:25.564199px;}
._2{width:26.971801px;}
._1f{width:28.078035px;}
._15{width:29.438982px;}
._3{width:31.090212px;}
._4{width:32.146772px;}
._18{width:33.481369px;}
._1c{width:35.590803px;}
._28{width:37.560005px;}
._12{width:38.639407px;}
._22{width:40.166958px;}
._16{width:41.315419px;}
._2a{width:46.435624px;}
._29{width:47.646764px;}
._21{width:49.256644px;}
._40{width:54.928942px;}
._30{width:72.107291px;}
._19{width:91.501189px;}
._34{width:98.885449px;}
._33{width:100.424880px;}
._39{width:102.563705px;}
._3a{width:103.824531px;}
._31{width:111.450817px;}
._23{width:112.996313px;}
._27{width:114.209529px;}
._25{width:116.142692px;}
._26{width:117.404096px;}
._37{width:119.299514px;}
._3f{width:123.932350px;}
._36{width:125.063209px;}
._35{width:135.583170px;}
._38{width:145.892748px;}
._24{width:162.635850px;}
._2e{width:164.562720px;}
._3d{width:166.749664px;}
._3e{width:168.010490px;}
._32{width:174.752783px;}
._2b{width:197.706720px;}
._2c{width:201.306720px;}
._2d{width:208.512720px;}
._3b{width:219.920579px;}
._2f{width:234.444720px;}
._3c{width:256.899772px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:23.760000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:48.239940px;}
.fs7{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:59.760060px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:72.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yf5{bottom:2.698500px;}
.y11f{bottom:2.878500px;}
.y17b{bottom:3.058500px;}
.y58{bottom:30.000000px;}
.ye8{bottom:104.701500px;}
.y91{bottom:109.561500px;}
.ybd{bottom:110.821500px;}
.ye7{bottom:115.681500px;}
.y11b{bottom:119.281500px;}
.y166{bottom:120.001500px;}
.y57{bottom:122.701500px;}
.y3b{bottom:122.881500px;}
.y90{bottom:126.841500px;}
.ybc{bottom:128.101500px;}
.y1cf{bottom:136.381500px;}
.y11a{bottom:136.561500px;}
.y56{bottom:139.801500px;}
.y3a{bottom:140.161500px;}
.y8f{bottom:144.121500px;}
.ybb{bottom:145.201500px;}
.y192{bottom:150.061500px;}
.y1ce{bottom:150.241500px;}
.y165{bottom:153.121500px;}
.y119{bottom:153.661500px;}
.y136{bottom:155.101500px;}
.y55{bottom:157.081500px;}
.y39{bottom:157.441500px;}
.y8e{bottom:161.401500px;}
.yba{bottom:162.481500px;}
.y1cd{bottom:164.101500px;}
.y191{bottom:167.341500px;}
.y164{bottom:169.501500px;}
.y118{bottom:170.941500px;}
.y54{bottom:174.361500px;}
.y38{bottom:174.721500px;}
.y1cc{bottom:177.781500px;}
.yb9{bottom:179.761500px;}
.y8d{bottom:183.001500px;}
.y190{bottom:184.441500px;}
.y163{bottom:186.061500px;}
.y135{bottom:187.141500px;}
.y117{bottom:188.221500px;}
.y53{bottom:191.641500px;}
.y37{bottom:192.001500px;}
.yb8{bottom:197.041500px;}
.y18f{bottom:201.721500px;}
.y162{bottom:202.621500px;}
.y1cb{bottom:205.501500px;}
.y52{bottom:208.921500px;}
.y36{bottom:209.101500px;}
.y8c{bottom:209.281500px;}
.y116{bottom:210.001500px;}
.yb7{bottom:214.321500px;}
.y18e{bottom:219.001500px;}
.y161{bottom:219.181500px;}
.y51{bottom:226.201500px;}
.y35{bottom:226.381500px;}
.y8b{bottom:226.561500px;}
.yb6{bottom:231.601500px;}
.y1ca{bottom:233.041500px;}
.y160{bottom:234.841500px;}
.y115{bottom:236.281500px;}
.y50{bottom:243.301500px;}
.y34{bottom:243.661500px;}
.y8a{bottom:243.841500px;}
.y1c9{bottom:246.901500px;}
.yb5{bottom:248.701500px;}
.y114{bottom:253.561500px;}
.y15f{bottom:257.341500px;}
.y4f{bottom:260.581500px;}
.y33{bottom:260.941500px;}
.y89{bottom:261.121500px;}
.y59{bottom:264.054000px;}
.yb4{bottom:265.981500px;}
.y113{bottom:270.661500px;}
.y18d{bottom:270.841500px;}
.y1c8{bottom:274.441500px;}
.y4e{bottom:277.861500px;}
.y32{bottom:278.221500px;}
.y88{bottom:278.401500px;}
.yb3{bottom:283.261500px;}
.y15e{bottom:287.581500px;}
.y112{bottom:287.941500px;}
.y1c7{bottom:288.301500px;}
.y4d{bottom:295.141500px;}
.y31{bottom:295.501500px;}
.yb2{bottom:300.541500px;}
.y1c6{bottom:301.981500px;}
.y111{bottom:305.221500px;}
.y4c{bottom:312.421500px;}
.y87{bottom:312.781500px;}
.ye6{bottom:315.121500px;}
.y1c5{bottom:315.841500px;}
.yb1{bottom:317.821500px;}
.y15d{bottom:318.001500px;}
.y30{bottom:318.541500px;}
.y110{bottom:322.501500px;}
.y4b{bottom:329.521500px;}
.y1c4{bottom:329.701500px;}
.y86{bottom:330.061500px;}
.ye5{bottom:332.401500px;}
.yb0{bottom:334.921500px;}
.y10f{bottom:339.781500px;}
.y1c3{bottom:343.381500px;}
.y4a{bottom:346.801500px;}
.y2f{bottom:347.161500px;}
.y85{bottom:347.341500px;}
.y15c{bottom:348.241500px;}
.ye4{bottom:349.501500px;}
.yaf{bottom:352.201500px;}
.y10e{bottom:357.061500px;}
.y1c2{bottom:357.241500px;}
.y2e{bottom:362.641500px;}
.y49{bottom:364.081500px;}
.ye3{bottom:366.781500px;}
.y84{bottom:369.121500px;}
.yae{bottom:369.481500px;}
.y1c1{bottom:371.101500px;}
.y10d{bottom:374.161500px;}
.y18c{bottom:374.341500px;}
.y15b{bottom:378.481500px;}
.y48{bottom:381.361500px;}
.ye2{bottom:384.061500px;}
.y1c0{bottom:384.781500px;}
.yad{bottom:386.761500px;}
.y10c{bottom:391.441500px;}
.y2d{bottom:393.061500px;}
.y83{bottom:395.401500px;}
.y47{bottom:398.641500px;}
.ye1{bottom:401.341500px;}
.yac{bottom:404.041500px;}
.y2c{bottom:408.721500px;}
.y15a{bottom:408.901500px;}
.y82{bottom:412.501500px;}
.ye0{bottom:418.621500px;}
.yab{bottom:421.321500px;}
.y2b{bottom:424.201500px;}
.y10b{bottom:426.001500px;}
.y1bf{bottom:426.181500px;}
.y81{bottom:429.781500px;}
.y46{bottom:432.301500px;}
.ydf{bottom:435.901500px;}
.yaa{bottom:438.421500px;}
.y2a{bottom:439.681500px;}
.y1be{bottom:440.041500px;}
.y10a{bottom:443.281500px;}
.y159{bottom:445.083000px;}
.y80{bottom:447.061500px;}
.yde{bottom:453.001500px;}
.y1bd{bottom:453.721500px;}
.y29{bottom:455.161500px;}
.ya9{bottom:455.701500px;}
.y109{bottom:460.561500px;}
.y7f{bottom:464.341500px;}
.y1bc{bottom:467.581500px;}
.ydd{bottom:470.281500px;}
.y28{bottom:470.821500px;}
.ya8{bottom:472.981500px;}
.y108{bottom:477.661500px;}
.y158{bottom:479.281500px;}
.y1bb{bottom:481.441500px;}
.y7e{bottom:481.621500px;}
.y27{bottom:486.301500px;}
.ydc{bottom:487.561500px;}
.ya7{bottom:490.261500px;}
.y107{bottom:494.941500px;}
.y1ba{bottom:495.121500px;}
.y7d{bottom:498.721500px;}
.y26{bottom:501.781500px;}
.y157{bottom:502.141500px;}
.ydb{bottom:504.841500px;}
.ya6{bottom:507.541500px;}
.y1b9{bottom:508.981500px;}
.y106{bottom:512.221500px;}
.y7c{bottom:516.001500px;}
.y25{bottom:517.261500px;}
.y156{bottom:518.701500px;}
.yda{bottom:522.121500px;}
.y1b8{bottom:522.841500px;}
.ya5{bottom:524.821500px;}
.y105{bottom:529.501500px;}
.y24{bottom:532.921500px;}
.y155{bottom:535.261500px;}
.y1b7{bottom:536.521500px;}
.y7b{bottom:537.781500px;}
.yd9{bottom:539.221500px;}
.ya4{bottom:541.921500px;}
.y104{bottom:546.781500px;}
.y23{bottom:548.401500px;}
.y1b6{bottom:550.381500px;}
.y154{bottom:551.821500px;}
.ya3{bottom:559.201500px;}
.yd8{bottom:561.001500px;}
.y22{bottom:563.881500px;}
.y7a{bottom:564.061500px;}
.y1b5{bottom:564.241500px;}
.ya2{bottom:576.481500px;}
.y153{bottom:577.381500px;}
.y1b4{bottom:577.921500px;}
.y21{bottom:579.361500px;}
.y103{bottom:581.161500px;}
.y79{bottom:581.341500px;}
.yd7{bottom:587.281500px;}
.y1b3{bottom:591.781500px;}
.ya1{bottom:593.761500px;}
.y152{bottom:594.121500px;}
.y20{bottom:595.021500px;}
.y102{bottom:598.441500px;}
.y78{bottom:598.621500px;}
.y134{bottom:605.281500px;}
.y1b2{bottom:605.641500px;}
.y1f{bottom:610.501500px;}
.ya0{bottom:611.041500px;}
.y77{bottom:615.721500px;}
.yd6{bottom:616.621500px;}
.y1b1{bottom:619.321500px;}
.y151{bottom:619.501500px;}
.y1e{bottom:625.981500px;}
.y9f{bottom:628.141500px;}
.y133{bottom:631.561500px;}
.y76{bottom:633.001500px;}
.y1b0{bottom:633.181500px;}
.yd5{bottom:633.721500px;}
.y1d{bottom:641.461500px;}
.y9e{bottom:645.421500px;}
.y1af{bottom:647.041500px;}
.y150{bottom:649.741500px;}
.y75{bottom:650.281500px;}
.yd4{bottom:651.001500px;}
.y45{bottom:656.221500px;}
.y1c{bottom:657.121500px;}
.y1ae{bottom:660.721500px;}
.y9d{bottom:662.701500px;}
.y132{bottom:663.241500px;}
.y74{bottom:667.561500px;}
.yd3{bottom:668.281500px;}
.y101{bottom:671.881500px;}
.y1b{bottom:672.601500px;}
.y44{bottom:673.321500px;}
.y1ad{bottom:674.581500px;}
.y9c{bottom:679.981500px;}
.y14f{bottom:680.161500px;}
.y131{bottom:683.041500px;}
.y18b{bottom:684.661500px;}
.y73{bottom:684.841500px;}
.yd2{bottom:685.561500px;}
.y1a{bottom:688.081500px;}
.y1ac{bottom:688.441500px;}
.y43{bottom:690.601500px;}
.y9b{bottom:697.261500px;}
.y18a{bottom:699.063000px;}
.y189{bottom:701.941500px;}
.y1ab{bottom:702.121500px;}
.yd1{bottom:702.841500px;}
.y130{bottom:703.021500px;}
.y19{bottom:703.561500px;}
.y100{bottom:706.441500px;}
.y72{bottom:706.621500px;}
.y42{bottom:707.881500px;}
.y14e{bottom:710.401500px;}
.y9a{bottom:714.541500px;}
.y187{bottom:715.801500px;}
.y1aa{bottom:715.981500px;}
.y18{bottom:719.221500px;}
.yd0{bottom:720.121500px;}
.yff{bottom:720.301500px;}
.y12f{bottom:722.821500px;}
.y41{bottom:725.161500px;}
.y188{bottom:729.661500px;}
.y1a9{bottom:729.841500px;}
.y99{bottom:731.641500px;}
.y71{bottom:732.721500px;}
.yfe{bottom:733.981500px;}
.y17{bottom:734.701500px;}
.ycf{bottom:737.221500px;}
.y12e{bottom:740.281500px;}
.y14d{bottom:740.641500px;}
.y186{bottom:741.183000px;}
.y40{bottom:742.441500px;}
.y1a8{bottom:743.521500px;}
.y185{bottom:744.061500px;}
.y98{bottom:748.921500px;}
.y70{bottom:750.001500px;}
.y16{bottom:750.181500px;}
.yce{bottom:754.501500px;}
.y1a7{bottom:757.381500px;}
.y12d{bottom:757.561500px;}
.y184{bottom:757.921500px;}
.y3f{bottom:759.721500px;}
.yfd{bottom:764.401500px;}
.y15{bottom:765.661500px;}
.y97{bottom:766.201500px;}
.y6f{bottom:767.281500px;}
.y14c{bottom:771.061500px;}
.y1a6{bottom:771.241500px;}
.ycd{bottom:771.781500px;}
.y12c{bottom:774.661500px;}
.y3e{bottom:776.821500px;}
.yfc{bottom:778.081500px;}
.y14{bottom:781.321500px;}
.y183{bottom:783.303000px;}
.y96{bottom:783.481500px;}
.y6e{bottom:784.561500px;}
.y1a5{bottom:784.921500px;}
.y182{bottom:786.181500px;}
.y1ec{bottom:788.701500px;}
.ycc{bottom:789.061500px;}
.y3d{bottom:794.101500px;}
.y13{bottom:796.801500px;}
.y1e9{bottom:798.601500px;}
.y180{bottom:800.041500px;}
.y12b{bottom:800.221500px;}
.y95{bottom:800.761500px;}
.y14b{bottom:801.121500px;}
.y6d{bottom:801.841500px;}
.y1a4{bottom:805.441500px;}
.ycb{bottom:806.341500px;}
.y12a{bottom:807.061500px;}
.yfb{bottom:808.501500px;}
.y3c{bottom:811.381500px;}
.y12{bottom:812.281500px;}
.y1e8{bottom:812.461500px;}
.y181{bottom:813.901500px;}
.y1eb{bottom:814.621500px;}
.y94{bottom:817.141500px;}
.y149{bottom:818.401500px;}
.y6c{bottom:818.941500px;}
.yfa{bottom:822.181500px;}
.yca{bottom:823.441500px;}
.y148{bottom:825.061500px;}
.y17f{bottom:825.423000px;}
.y1e7{bottom:826.141500px;}
.y93{bottom:827.941500px;}
.y17e{bottom:828.481500px;}
.y1a3{bottom:834.781500px;}
.y6b{bottom:836.221500px;}
.y14a{bottom:837.483000px;}
.y1e6{bottom:840.001500px;}
.yc9{bottom:840.721500px;}
.y17c{bottom:842.161500px;}
.y129{bottom:844.321500px;}
.y128{bottom:851.161500px;}
.y1a2{bottom:852.061500px;}
.yf9{bottom:852.601500px;}
.y1e5{bottom:853.861500px;}
.y17d{bottom:856.021500px;}
.y6a{bottom:858.001500px;}
.yd{bottom:860.883000px;}
.y1ea{bottom:865.381500px;}
.yf8{bottom:866.281500px;}
.y1e4{bottom:867.541500px;}
.y17a{bottom:867.543000px;}
.y1a1{bottom:869.341500px;}
.y179{bottom:870.601500px;}
.y147{bottom:871.681500px;}
.yc8{bottom:875.281500px;}
.yc{bottom:876.408000px;}
.y178{bottom:877.441500px;}
.y1e3{bottom:881.401500px;}
.y69{bottom:884.281500px;}
.y146{bottom:885.901500px;}
.y1a0{bottom:886.441500px;}
.y127{bottom:888.421500px;}
.yb{bottom:891.933000px;}
.yc7{bottom:892.561500px;}
.y126{bottom:895.261500px;}
.y177{bottom:895.983000px;}
.yf7{bottom:896.701500px;}
.y176{bottom:898.861500px;}
.y68{bottom:901.561500px;}
.y145{bottom:903.001500px;}
.y19f{bottom:903.721500px;}
.ya{bottom:907.458000px;}
.y1e2{bottom:908.941500px;}
.yc6{bottom:909.841500px;}
.y174{bottom:912.721500px;}
.y67{bottom:918.841500px;}
.y144{bottom:920.281500px;}
.y19e{bottom:921.001500px;}
.y1e1{bottom:922.801500px;}
.y9{bottom:922.983000px;}
.y175{bottom:926.581500px;}
.yc5{bottom:926.941500px;}
.y125{bottom:932.521500px;}
.y66{bottom:935.941500px;}
.y1e0{bottom:936.661500px;}
.y143{bottom:937.561500px;}
.y173{bottom:938.103000px;}
.y19d{bottom:938.281500px;}
.y124{bottom:939.361500px;}
.yf6{bottom:940.801500px;}
.yc4{bottom:944.221500px;}
.y1df{bottom:950.341500px;}
.y65{bottom:953.221500px;}
.y142{bottom:954.841500px;}
.y172{bottom:955.561500px;}
.y11{bottom:957.003000px;}
.y8{bottom:957.183000px;}
.yc3{bottom:961.501500px;}
.y1de{bottom:964.201500px;}
.yf4{bottom:967.983000px;}
.y171{bottom:969.421500px;}
.y64{bottom:970.501500px;}
.y141{bottom:972.121500px;}
.y10{bottom:972.528000px;}
.y7{bottom:972.663000px;}
.y19c{bottom:972.841500px;}
.y123{bottom:976.621500px;}
.y1dd{bottom:978.061500px;}
.yc2{bottom:978.781500px;}
.y122{bottom:983.461500px;}
.y170{bottom:984.001500px;}
.y63{bottom:987.781500px;}
.yf{bottom:988.053000px;}
.y6{bottom:988.143000px;}
.y140{bottom:989.401500px;}
.y19b{bottom:989.941500px;}
.y1dc{bottom:991.741500px;}
.yf3{bottom:993.001500px;}
.yc1{bottom:996.061500px;}
.y16f{bottom:1001.281500px;}
.ye{bottom:1003.578000px;}
.y5{bottom:1003.623000px;}
.y1db{bottom:1005.601500px;}
.yf2{bottom:1006.321500px;}
.y13f{bottom:1006.501500px;}
.y19a{bottom:1007.221500px;}
.y62{bottom:1009.381500px;}
.yc0{bottom:1013.341500px;}
.y16e{bottom:1018.381500px;}
.y4{bottom:1019.103000px;}
.y1da{bottom:1019.461500px;}
.yf1{bottom:1020.541500px;}
.y121{bottom:1020.721500px;}
.y13e{bottom:1023.781500px;}
.y199{bottom:1024.501500px;}
.y120{bottom:1027.561500px;}
.ybf{bottom:1030.441500px;}
.y1d9{bottom:1033.141500px;}
.y61{bottom:1035.661500px;}
.yf0{bottom:1037.641500px;}
.y92{bottom:1038.721500px;}
.y13d{bottom:1041.061500px;}
.y198{bottom:1041.781500px;}
.y1d8{bottom:1047.001500px;}
.ybe{bottom:1047.721500px;}
.y16d{bottom:1052.941500px;}
.yef{bottom:1054.921500px;}
.y13c{bottom:1058.341500px;}
.y197{bottom:1059.061500px;}
.y1d7{bottom:1060.861500px;}
.y11e{bottom:1062.663000px;}
.y60{bottom:1065.001500px;}
.y16c{bottom:1070.221500px;}
.yee{bottom:1072.201500px;}
.y1d6{bottom:1074.541500px;}
.y13b{bottom:1075.621500px;}
.y196{bottom:1076.341500px;}
.y5f{bottom:1082.281500px;}
.y16b{bottom:1087.501500px;}
.y11d{bottom:1088.041500px;}
.y1d5{bottom:1088.401500px;}
.yed{bottom:1089.481500px;}
.y3{bottom:1092.073500px;}
.y13a{bottom:1093.441500px;}
.y5e{bottom:1099.561500px;}
.y1d4{bottom:1102.261500px;}
.y11c{bottom:1102.621500px;}
.y16a{bottom:1104.781500px;}
.yec{bottom:1106.761500px;}
.y195{bottom:1110.721500px;}
.y139{bottom:1112.341500px;}
.y1d3{bottom:1115.941500px;}
.y5d{bottom:1116.841500px;}
.yeb{bottom:1124.041500px;}
.y169{bottom:1126.381500px;}
.y194{bottom:1128.001500px;}
.y138{bottom:1129.441500px;}
.y1d2{bottom:1129.801500px;}
.y2{bottom:1133.473500px;}
.y5c{bottom:1133.941500px;}
.y1d1{bottom:1143.661500px;}
.y193{bottom:1145.281500px;}
.yea{bottom:1145.641500px;}
.y137{bottom:1146.721500px;}
.y5b{bottom:1151.221500px;}
.y168{bottom:1152.481500px;}
.y1d0{bottom:1157.341500px;}
.y5a{bottom:1168.501500px;}
.y167{bottom:1169.041500px;}
.y1{bottom:1171.023000px;}
.ye9{bottom:1171.201500px;}
.hc{height:13.320015px;}
.h12{height:13.680000px;}
.h13{height:16.200000px;}
.h15{height:16.380000px;}
.hd{height:32.693906px;}
.h16{height:33.494766px;}
.ha{height:33.518320px;}
.h8{height:34.453125px;}
.h5{height:36.571289px;}
.h4{height:36.597656px;}
.h3{height:37.494141px;}
.h2{height:37.520508px;}
.hb{height:41.493516px;}
.h9{height:41.522695px;}
.h6{height:41.522737px;}
.h7{height:43.066406px;}
.h10{height:44.119688px;}
.hf{height:50.027344px;}
.h11{height:59.333906px;}
.h14{height:60.878320px;}
.he{height:61.598320px;}
.h1{height:99.984375px;}
.h0{height:1263.000000px;}
.we{width:3.960015px;}
.w3{width:6.119985px;}
.w7{width:6.120000px;}
.wa{width:6.120030px;}
.w12{width:7.559985px;}
.w10{width:7.560000px;}
.w11{width:7.560015px;}
.wd{width:8.099985px;}
.wb{width:23.940000px;}
.w9{width:32.760000px;}
.w4{width:38.700000px;}
.w5{width:39.960000px;}
.wc{width:40.140000px;}
.wf{width:41.220000px;}
.w2{width:44.640000px;}
.w6{width:54.000000px;}
.w8{width:55.980000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1a{left:26.400000px;}
.x68{left:66.960000px;}
.x15{left:68.039652px;}
.x23{left:73.080000px;}
.x8{left:84.384761px;}
.x14{left:88.373444px;}
.x64{left:89.640000px;}
.x5{left:93.060096px;}
.x40{left:95.040205px;}
.x6{left:102.594420px;}
.x4{left:103.859667px;}
.x38{left:105.120000px;}
.x1{left:106.184972px;}
.x5b{left:108.540000px;}
.x66{left:116.100000px;}
.x41{left:122.040144px;}
.x3c{left:124.920879px;}
.x7{left:126.704566px;}
.x36{left:136.260287px;}
.x2{left:143.543852px;}
.x56{left:151.020000px;}
.x42{left:157.680782px;}
.x39{left:159.120000px;}
.x5c{left:169.020000px;}
.x1b{left:171.899561px;}
.x5d{left:174.420000px;}
.x62{left:178.020000px;}
.x21{left:185.040000px;}
.x45{left:188.280038px;}
.x16{left:192.419979px;}
.x43{left:193.500011px;}
.x63{left:195.300000px;}
.x1c{left:204.119837px;}
.x57{left:212.760000px;}
.x60{left:215.100000px;}
.x3d{left:220.860605px;}
.x3f{left:244.800188px;}
.x35{left:250.560812px;}
.x3e{left:252.180398px;}
.x3a{left:264.600000px;}
.x61{left:269.820000px;}
.x58{left:272.160000px;}
.x1d{left:273.780070px;}
.x1e{left:283.680086px;}
.x3{left:293.514571px;}
.x5f{left:312.660000px;}
.x3b{left:320.580000px;}
.x1f{left:322.380260px;}
.x44{left:333.540914px;}
.x5e{left:347.400000px;}
.x59{left:355.140000px;}
.xa{left:364.145205px;}
.xd{left:368.546584px;}
.x37{left:370.259590px;}
.xb{left:373.667535px;}
.xe{left:384.467106px;}
.x5a{left:387.720000px;}
.xc{left:397.756694px;}
.x9{left:400.859846px;}
.x22{left:431.640000px;}
.x19{left:435.165000px;}
.x46{left:449.280422px;}
.x17{left:459.902893px;}
.x31{left:470.160000px;}
.x2c{left:478.080000px;}
.x2d{left:479.700000px;}
.x18{left:481.143640px;}
.x33{left:483.120000px;}
.x34{left:484.740000px;}
.x26{left:485.820000px;}
.x4b{left:486.900446px;}
.x55{left:487.979819px;}
.x30{left:490.500000px;}
.x32{left:493.380000px;}
.x4d{left:508.140000px;}
.x25{left:513.900000px;}
.x24{left:517.140000px;}
.x4c{left:525.240658px;}
.x27{left:530.460000px;}
.x4e{left:532.080000px;}
.x28{left:568.260000px;}
.x2e{left:579.600000px;}
.x47{left:587.160661px;}
.x4f{left:590.400000px;}
.x65{left:595.260000px;}
.x29{left:606.960000px;}
.x2f{left:626.940000px;}
.x50{left:630.360000px;}
.x10{left:635.041425px;}
.x67{left:642.420000px;}
.x13{left:643.572846px;}
.x11{left:644.574250px;}
.xf{left:657.354141px;}
.x12{left:668.655913px;}
.x51{left:676.980000px;}
.x52{left:680.940000px;}
.x2a{left:701.820000px;}
.x4a{left:706.140494px;}
.x53{left:722.160000px;}
.x48{left:736.920000px;}
.x2b{left:741.780000px;}
.x49{left:769.500000px;}
.x54{left:802.080000px;}
.x20{left:822.061267px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:23.680000pt;}
.v1{vertical-align:24.960000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.101333pt;}
.lsf{letter-spacing:0.136320pt;}
.lsc{letter-spacing:0.170667pt;}
.lsd{letter-spacing:0.231016pt;}
.ls4{letter-spacing:0.242063pt;}
.ls1{letter-spacing:0.304053pt;}
.ls2{letter-spacing:0.309333pt;}
.ls19{letter-spacing:7.643307pt;}
.lse{letter-spacing:9.552640pt;}
.ls15{letter-spacing:10.165973pt;}
.ls8{letter-spacing:10.181973pt;}
.lsa{letter-spacing:10.208640pt;}
.ls14{letter-spacing:13.365973pt;}
.ls7{letter-spacing:13.408640pt;}
.ls1d{letter-spacing:14.122667pt;}
.ls10{letter-spacing:15.925973pt;}
.ls1a{letter-spacing:15.941973pt;}
.ls9{letter-spacing:15.947307pt;}
.ls12{letter-spacing:15.952640pt;}
.ls1c{letter-spacing:15.968640pt;}
.ls6{letter-spacing:15.973973pt;}
.ls20{letter-spacing:17.232640pt;}
.ls5{letter-spacing:18.533973pt;}
.lsb{letter-spacing:29.060693pt;}
.ls18{letter-spacing:40.944640pt;}
.ls17{letter-spacing:44.149973pt;}
.ls11{letter-spacing:52.079360pt;}
.ls1b{letter-spacing:70.047360pt;}
.ls16{letter-spacing:83.498027pt;}
.ls13{letter-spacing:84.079360pt;}
.ls1e{letter-spacing:84.138027pt;}
.ls1f{letter-spacing:162.720000pt;}
.ws7{word-spacing:-13.522063pt;}
.wsa{word-spacing:-13.511016pt;}
.ws9{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws8{word-spacing:-10.720000pt;}
.ws6{word-spacing:-0.309333pt;}
.ws5{word-spacing:-0.304053pt;}
.ws4{word-spacing:-0.101333pt;}
.ws3{word-spacing:0.000000pt;}
.ws2{word-spacing:0.016053pt;}
.ws1{word-spacing:28.513623pt;}
._1e{margin-left:-1360.586667pt;}
._1d{margin-left:-3.178183pt;}
._e{margin-left:-2.213312pt;}
._1{margin-left:-0.925340pt;}
._0{width:1.060360pt;}
._8{width:2.060048pt;}
._6{width:2.961077pt;}
._5{width:4.681090pt;}
._7{width:5.939954pt;}
._9{width:7.185083pt;}
._a{width:8.187217pt;}
._b{width:9.965575pt;}
._f{width:10.872509pt;}
._1b{width:11.931986pt;}
._c{width:13.213334pt;}
._11{width:14.258125pt;}
._10{width:15.243728pt;}
._d{width:16.411179pt;}
._17{width:17.691218pt;}
._20{width:18.853658pt;}
._14{width:20.084159pt;}
._13{width:20.975446pt;}
._1a{width:22.723733pt;}
._2{width:23.974934pt;}
._1f{width:24.958253pt;}
._15{width:26.167984pt;}
._3{width:27.635744pt;}
._4{width:28.574908pt;}
._18{width:29.761217pt;}
._1c{width:31.636269pt;}
._28{width:33.386671pt;}
._12{width:34.346139pt;}
._22{width:35.703962pt;}
._16{width:36.724817pt;}
._2a{width:41.276110pt;}
._29{width:42.352679pt;}
._21{width:43.783684pt;}
._40{width:48.825726pt;}
._30{width:64.095370pt;}
._19{width:81.334390pt;}
._34{width:87.898176pt;}
._33{width:89.266560pt;}
._39{width:91.167737pt;}
._3a{width:92.288472pt;}
._31{width:99.067393pt;}
._23{width:100.441167pt;}
._27{width:101.519581pt;}
._25{width:103.237948pt;}
._26{width:104.359196pt;}
._37{width:106.044012pt;}
._3f{width:110.162089pt;}
._36{width:111.167297pt;}
._35{width:120.518374pt;}
._38{width:129.682443pt;}
._24{width:144.565200pt;}
._2e{width:146.277973pt;}
._3d{width:148.221923pt;}
._3e{width:149.342658pt;}
._32{width:155.335807pt;}
._2b{width:175.739307pt;}
._2c{width:178.939307pt;}
._2d{width:185.344640pt;}
._3b{width:195.484959pt;}
._2f{width:208.395307pt;}
._3c{width:228.355353pt;}
.fs9{font-size:21.120000pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:42.879947pt;}
.fs7{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:53.120053pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:64.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yf5{bottom:2.398667pt;}
.y11f{bottom:2.558667pt;}
.y17b{bottom:2.718667pt;}
.y58{bottom:26.666667pt;}
.ye8{bottom:93.068000pt;}
.y91{bottom:97.388000pt;}
.ybd{bottom:98.508000pt;}
.ye7{bottom:102.828000pt;}
.y11b{bottom:106.028000pt;}
.y166{bottom:106.668000pt;}
.y57{bottom:109.068000pt;}
.y3b{bottom:109.228000pt;}
.y90{bottom:112.748000pt;}
.ybc{bottom:113.868000pt;}
.y1cf{bottom:121.228000pt;}
.y11a{bottom:121.388000pt;}
.y56{bottom:124.268000pt;}
.y3a{bottom:124.588000pt;}
.y8f{bottom:128.108000pt;}
.ybb{bottom:129.068000pt;}
.y192{bottom:133.388000pt;}
.y1ce{bottom:133.548000pt;}
.y165{bottom:136.108000pt;}
.y119{bottom:136.588000pt;}
.y136{bottom:137.868000pt;}
.y55{bottom:139.628000pt;}
.y39{bottom:139.948000pt;}
.y8e{bottom:143.468000pt;}
.yba{bottom:144.428000pt;}
.y1cd{bottom:145.868000pt;}
.y191{bottom:148.748000pt;}
.y164{bottom:150.668000pt;}
.y118{bottom:151.948000pt;}
.y54{bottom:154.988000pt;}
.y38{bottom:155.308000pt;}
.y1cc{bottom:158.028000pt;}
.yb9{bottom:159.788000pt;}
.y8d{bottom:162.668000pt;}
.y190{bottom:163.948000pt;}
.y163{bottom:165.388000pt;}
.y135{bottom:166.348000pt;}
.y117{bottom:167.308000pt;}
.y53{bottom:170.348000pt;}
.y37{bottom:170.668000pt;}
.yb8{bottom:175.148000pt;}
.y18f{bottom:179.308000pt;}
.y162{bottom:180.108000pt;}
.y1cb{bottom:182.668000pt;}
.y52{bottom:185.708000pt;}
.y36{bottom:185.868000pt;}
.y8c{bottom:186.028000pt;}
.y116{bottom:186.668000pt;}
.yb7{bottom:190.508000pt;}
.y18e{bottom:194.668000pt;}
.y161{bottom:194.828000pt;}
.y51{bottom:201.068000pt;}
.y35{bottom:201.228000pt;}
.y8b{bottom:201.388000pt;}
.yb6{bottom:205.868000pt;}
.y1ca{bottom:207.148000pt;}
.y160{bottom:208.748000pt;}
.y115{bottom:210.028000pt;}
.y50{bottom:216.268000pt;}
.y34{bottom:216.588000pt;}
.y8a{bottom:216.748000pt;}
.y1c9{bottom:219.468000pt;}
.yb5{bottom:221.068000pt;}
.y114{bottom:225.388000pt;}
.y15f{bottom:228.748000pt;}
.y4f{bottom:231.628000pt;}
.y33{bottom:231.948000pt;}
.y89{bottom:232.108000pt;}
.y59{bottom:234.714667pt;}
.yb4{bottom:236.428000pt;}
.y113{bottom:240.588000pt;}
.y18d{bottom:240.748000pt;}
.y1c8{bottom:243.948000pt;}
.y4e{bottom:246.988000pt;}
.y32{bottom:247.308000pt;}
.y88{bottom:247.468000pt;}
.yb3{bottom:251.788000pt;}
.y15e{bottom:255.628000pt;}
.y112{bottom:255.948000pt;}
.y1c7{bottom:256.268000pt;}
.y4d{bottom:262.348000pt;}
.y31{bottom:262.668000pt;}
.yb2{bottom:267.148000pt;}
.y1c6{bottom:268.428000pt;}
.y111{bottom:271.308000pt;}
.y4c{bottom:277.708000pt;}
.y87{bottom:278.028000pt;}
.ye6{bottom:280.108000pt;}
.y1c5{bottom:280.748000pt;}
.yb1{bottom:282.508000pt;}
.y15d{bottom:282.668000pt;}
.y30{bottom:283.148000pt;}
.y110{bottom:286.668000pt;}
.y4b{bottom:292.908000pt;}
.y1c4{bottom:293.068000pt;}
.y86{bottom:293.388000pt;}
.ye5{bottom:295.468000pt;}
.yb0{bottom:297.708000pt;}
.y10f{bottom:302.028000pt;}
.y1c3{bottom:305.228000pt;}
.y4a{bottom:308.268000pt;}
.y2f{bottom:308.588000pt;}
.y85{bottom:308.748000pt;}
.y15c{bottom:309.548000pt;}
.ye4{bottom:310.668000pt;}
.yaf{bottom:313.068000pt;}
.y10e{bottom:317.388000pt;}
.y1c2{bottom:317.548000pt;}
.y2e{bottom:322.348000pt;}
.y49{bottom:323.628000pt;}
.ye3{bottom:326.028000pt;}
.y84{bottom:328.108000pt;}
.yae{bottom:328.428000pt;}
.y1c1{bottom:329.868000pt;}
.y10d{bottom:332.588000pt;}
.y18c{bottom:332.748000pt;}
.y15b{bottom:336.428000pt;}
.y48{bottom:338.988000pt;}
.ye2{bottom:341.388000pt;}
.y1c0{bottom:342.028000pt;}
.yad{bottom:343.788000pt;}
.y10c{bottom:347.948000pt;}
.y2d{bottom:349.388000pt;}
.y83{bottom:351.468000pt;}
.y47{bottom:354.348000pt;}
.ye1{bottom:356.748000pt;}
.yac{bottom:359.148000pt;}
.y2c{bottom:363.308000pt;}
.y15a{bottom:363.468000pt;}
.y82{bottom:366.668000pt;}
.ye0{bottom:372.108000pt;}
.yab{bottom:374.508000pt;}
.y2b{bottom:377.068000pt;}
.y10b{bottom:378.668000pt;}
.y1bf{bottom:378.828000pt;}
.y81{bottom:382.028000pt;}
.y46{bottom:384.268000pt;}
.ydf{bottom:387.468000pt;}
.yaa{bottom:389.708000pt;}
.y2a{bottom:390.828000pt;}
.y1be{bottom:391.148000pt;}
.y10a{bottom:394.028000pt;}
.y159{bottom:395.629333pt;}
.y80{bottom:397.388000pt;}
.yde{bottom:402.668000pt;}
.y1bd{bottom:403.308000pt;}
.y29{bottom:404.588000pt;}
.ya9{bottom:405.068000pt;}
.y109{bottom:409.388000pt;}
.y7f{bottom:412.748000pt;}
.y1bc{bottom:415.628000pt;}
.ydd{bottom:418.028000pt;}
.y28{bottom:418.508000pt;}
.ya8{bottom:420.428000pt;}
.y108{bottom:424.588000pt;}
.y158{bottom:426.028000pt;}
.y1bb{bottom:427.948000pt;}
.y7e{bottom:428.108000pt;}
.y27{bottom:432.268000pt;}
.ydc{bottom:433.388000pt;}
.ya7{bottom:435.788000pt;}
.y107{bottom:439.948000pt;}
.y1ba{bottom:440.108000pt;}
.y7d{bottom:443.308000pt;}
.y26{bottom:446.028000pt;}
.y157{bottom:446.348000pt;}
.ydb{bottom:448.748000pt;}
.ya6{bottom:451.148000pt;}
.y1b9{bottom:452.428000pt;}
.y106{bottom:455.308000pt;}
.y7c{bottom:458.668000pt;}
.y25{bottom:459.788000pt;}
.y156{bottom:461.068000pt;}
.yda{bottom:464.108000pt;}
.y1b8{bottom:464.748000pt;}
.ya5{bottom:466.508000pt;}
.y105{bottom:470.668000pt;}
.y24{bottom:473.708000pt;}
.y155{bottom:475.788000pt;}
.y1b7{bottom:476.908000pt;}
.y7b{bottom:478.028000pt;}
.yd9{bottom:479.308000pt;}
.ya4{bottom:481.708000pt;}
.y104{bottom:486.028000pt;}
.y23{bottom:487.468000pt;}
.y1b6{bottom:489.228000pt;}
.y154{bottom:490.508000pt;}
.ya3{bottom:497.068000pt;}
.yd8{bottom:498.668000pt;}
.y22{bottom:501.228000pt;}
.y7a{bottom:501.388000pt;}
.y1b5{bottom:501.548000pt;}
.ya2{bottom:512.428000pt;}
.y153{bottom:513.228000pt;}
.y1b4{bottom:513.708000pt;}
.y21{bottom:514.988000pt;}
.y103{bottom:516.588000pt;}
.y79{bottom:516.748000pt;}
.yd7{bottom:522.028000pt;}
.y1b3{bottom:526.028000pt;}
.ya1{bottom:527.788000pt;}
.y152{bottom:528.108000pt;}
.y20{bottom:528.908000pt;}
.y102{bottom:531.948000pt;}
.y78{bottom:532.108000pt;}
.y134{bottom:538.028000pt;}
.y1b2{bottom:538.348000pt;}
.y1f{bottom:542.668000pt;}
.ya0{bottom:543.148000pt;}
.y77{bottom:547.308000pt;}
.yd6{bottom:548.108000pt;}
.y1b1{bottom:550.508000pt;}
.y151{bottom:550.668000pt;}
.y1e{bottom:556.428000pt;}
.y9f{bottom:558.348000pt;}
.y133{bottom:561.388000pt;}
.y76{bottom:562.668000pt;}
.y1b0{bottom:562.828000pt;}
.yd5{bottom:563.308000pt;}
.y1d{bottom:570.188000pt;}
.y9e{bottom:573.708000pt;}
.y1af{bottom:575.148000pt;}
.y150{bottom:577.548000pt;}
.y75{bottom:578.028000pt;}
.yd4{bottom:578.668000pt;}
.y45{bottom:583.308000pt;}
.y1c{bottom:584.108000pt;}
.y1ae{bottom:587.308000pt;}
.y9d{bottom:589.068000pt;}
.y132{bottom:589.548000pt;}
.y74{bottom:593.388000pt;}
.yd3{bottom:594.028000pt;}
.y101{bottom:597.228000pt;}
.y1b{bottom:597.868000pt;}
.y44{bottom:598.508000pt;}
.y1ad{bottom:599.628000pt;}
.y9c{bottom:604.428000pt;}
.y14f{bottom:604.588000pt;}
.y131{bottom:607.148000pt;}
.y18b{bottom:608.588000pt;}
.y73{bottom:608.748000pt;}
.yd2{bottom:609.388000pt;}
.y1a{bottom:611.628000pt;}
.y1ac{bottom:611.948000pt;}
.y43{bottom:613.868000pt;}
.y9b{bottom:619.788000pt;}
.y18a{bottom:621.389333pt;}
.y189{bottom:623.948000pt;}
.y1ab{bottom:624.108000pt;}
.yd1{bottom:624.748000pt;}
.y130{bottom:624.908000pt;}
.y19{bottom:625.388000pt;}
.y100{bottom:627.948000pt;}
.y72{bottom:628.108000pt;}
.y42{bottom:629.228000pt;}
.y14e{bottom:631.468000pt;}
.y9a{bottom:635.148000pt;}
.y187{bottom:636.268000pt;}
.y1aa{bottom:636.428000pt;}
.y18{bottom:639.308000pt;}
.yd0{bottom:640.108000pt;}
.yff{bottom:640.268000pt;}
.y12f{bottom:642.508000pt;}
.y41{bottom:644.588000pt;}
.y188{bottom:648.588000pt;}
.y1a9{bottom:648.748000pt;}
.y99{bottom:650.348000pt;}
.y71{bottom:651.308000pt;}
.yfe{bottom:652.428000pt;}
.y17{bottom:653.068000pt;}
.ycf{bottom:655.308000pt;}
.y12e{bottom:658.028000pt;}
.y14d{bottom:658.348000pt;}
.y186{bottom:658.829333pt;}
.y40{bottom:659.948000pt;}
.y1a8{bottom:660.908000pt;}
.y185{bottom:661.388000pt;}
.y98{bottom:665.708000pt;}
.y70{bottom:666.668000pt;}
.y16{bottom:666.828000pt;}
.yce{bottom:670.668000pt;}
.y1a7{bottom:673.228000pt;}
.y12d{bottom:673.388000pt;}
.y184{bottom:673.708000pt;}
.y3f{bottom:675.308000pt;}
.yfd{bottom:679.468000pt;}
.y15{bottom:680.588000pt;}
.y97{bottom:681.068000pt;}
.y6f{bottom:682.028000pt;}
.y14c{bottom:685.388000pt;}
.y1a6{bottom:685.548000pt;}
.ycd{bottom:686.028000pt;}
.y12c{bottom:688.588000pt;}
.y3e{bottom:690.508000pt;}
.yfc{bottom:691.628000pt;}
.y14{bottom:694.508000pt;}
.y183{bottom:696.269333pt;}
.y96{bottom:696.428000pt;}
.y6e{bottom:697.388000pt;}
.y1a5{bottom:697.708000pt;}
.y182{bottom:698.828000pt;}
.y1ec{bottom:701.068000pt;}
.ycc{bottom:701.388000pt;}
.y3d{bottom:705.868000pt;}
.y13{bottom:708.268000pt;}
.y1e9{bottom:709.868000pt;}
.y180{bottom:711.148000pt;}
.y12b{bottom:711.308000pt;}
.y95{bottom:711.788000pt;}
.y14b{bottom:712.108000pt;}
.y6d{bottom:712.748000pt;}
.y1a4{bottom:715.948000pt;}
.ycb{bottom:716.748000pt;}
.y12a{bottom:717.388000pt;}
.yfb{bottom:718.668000pt;}
.y3c{bottom:721.228000pt;}
.y12{bottom:722.028000pt;}
.y1e8{bottom:722.188000pt;}
.y181{bottom:723.468000pt;}
.y1eb{bottom:724.108000pt;}
.y94{bottom:726.348000pt;}
.y149{bottom:727.468000pt;}
.y6c{bottom:727.948000pt;}
.yfa{bottom:730.828000pt;}
.yca{bottom:731.948000pt;}
.y148{bottom:733.388000pt;}
.y17f{bottom:733.709333pt;}
.y1e7{bottom:734.348000pt;}
.y93{bottom:735.948000pt;}
.y17e{bottom:736.428000pt;}
.y1a3{bottom:742.028000pt;}
.y6b{bottom:743.308000pt;}
.y14a{bottom:744.429333pt;}
.y1e6{bottom:746.668000pt;}
.yc9{bottom:747.308000pt;}
.y17c{bottom:748.588000pt;}
.y129{bottom:750.508000pt;}
.y128{bottom:756.588000pt;}
.y1a2{bottom:757.388000pt;}
.yf9{bottom:757.868000pt;}
.y1e5{bottom:758.988000pt;}
.y17d{bottom:760.908000pt;}
.y6a{bottom:762.668000pt;}
.yd{bottom:765.229333pt;}
.y1ea{bottom:769.228000pt;}
.yf8{bottom:770.028000pt;}
.y1e4{bottom:771.148000pt;}
.y17a{bottom:771.149333pt;}
.y1a1{bottom:772.748000pt;}
.y179{bottom:773.868000pt;}
.y147{bottom:774.828000pt;}
.yc8{bottom:778.028000pt;}
.yc{bottom:779.029333pt;}
.y178{bottom:779.948000pt;}
.y1e3{bottom:783.468000pt;}
.y69{bottom:786.028000pt;}
.y146{bottom:787.468000pt;}
.y1a0{bottom:787.948000pt;}
.y127{bottom:789.708000pt;}
.yb{bottom:792.829333pt;}
.yc7{bottom:793.388000pt;}
.y126{bottom:795.788000pt;}
.y177{bottom:796.429333pt;}
.yf7{bottom:797.068000pt;}
.y176{bottom:798.988000pt;}
.y68{bottom:801.388000pt;}
.y145{bottom:802.668000pt;}
.y19f{bottom:803.308000pt;}
.ya{bottom:806.629333pt;}
.y1e2{bottom:807.948000pt;}
.yc6{bottom:808.748000pt;}
.y174{bottom:811.308000pt;}
.y67{bottom:816.748000pt;}
.y144{bottom:818.028000pt;}
.y19e{bottom:818.668000pt;}
.y1e1{bottom:820.268000pt;}
.y9{bottom:820.429333pt;}
.y175{bottom:823.628000pt;}
.yc5{bottom:823.948000pt;}
.y125{bottom:828.908000pt;}
.y66{bottom:831.948000pt;}
.y1e0{bottom:832.588000pt;}
.y143{bottom:833.388000pt;}
.y173{bottom:833.869333pt;}
.y19d{bottom:834.028000pt;}
.y124{bottom:834.988000pt;}
.yf6{bottom:836.268000pt;}
.yc4{bottom:839.308000pt;}
.y1df{bottom:844.748000pt;}
.y65{bottom:847.308000pt;}
.y142{bottom:848.748000pt;}
.y172{bottom:849.388000pt;}
.y11{bottom:850.669333pt;}
.y8{bottom:850.829333pt;}
.yc3{bottom:854.668000pt;}
.y1de{bottom:857.068000pt;}
.yf4{bottom:860.429333pt;}
.y171{bottom:861.708000pt;}
.y64{bottom:862.668000pt;}
.y141{bottom:864.108000pt;}
.y10{bottom:864.469333pt;}
.y7{bottom:864.589333pt;}
.y19c{bottom:864.748000pt;}
.y123{bottom:868.108000pt;}
.y1dd{bottom:869.388000pt;}
.yc2{bottom:870.028000pt;}
.y122{bottom:874.188000pt;}
.y170{bottom:874.668000pt;}
.y63{bottom:878.028000pt;}
.yf{bottom:878.269333pt;}
.y6{bottom:878.349333pt;}
.y140{bottom:879.468000pt;}
.y19b{bottom:879.948000pt;}
.y1dc{bottom:881.548000pt;}
.yf3{bottom:882.668000pt;}
.yc1{bottom:885.388000pt;}
.y16f{bottom:890.028000pt;}
.ye{bottom:892.069333pt;}
.y5{bottom:892.109333pt;}
.y1db{bottom:893.868000pt;}
.yf2{bottom:894.508000pt;}
.y13f{bottom:894.668000pt;}
.y19a{bottom:895.308000pt;}
.y62{bottom:897.228000pt;}
.yc0{bottom:900.748000pt;}
.y16e{bottom:905.228000pt;}
.y4{bottom:905.869333pt;}
.y1da{bottom:906.188000pt;}
.yf1{bottom:907.148000pt;}
.y121{bottom:907.308000pt;}
.y13e{bottom:910.028000pt;}
.y199{bottom:910.668000pt;}
.y120{bottom:913.388000pt;}
.ybf{bottom:915.948000pt;}
.y1d9{bottom:918.348000pt;}
.y61{bottom:920.588000pt;}
.yf0{bottom:922.348000pt;}
.y92{bottom:923.308000pt;}
.y13d{bottom:925.388000pt;}
.y198{bottom:926.028000pt;}
.y1d8{bottom:930.668000pt;}
.ybe{bottom:931.308000pt;}
.y16d{bottom:935.948000pt;}
.yef{bottom:937.708000pt;}
.y13c{bottom:940.748000pt;}
.y197{bottom:941.388000pt;}
.y1d7{bottom:942.988000pt;}
.y11e{bottom:944.589333pt;}
.y60{bottom:946.668000pt;}
.y16c{bottom:951.308000pt;}
.yee{bottom:953.068000pt;}
.y1d6{bottom:955.148000pt;}
.y13b{bottom:956.108000pt;}
.y196{bottom:956.748000pt;}
.y5f{bottom:962.028000pt;}
.y16b{bottom:966.668000pt;}
.y11d{bottom:967.148000pt;}
.y1d5{bottom:967.468000pt;}
.yed{bottom:968.428000pt;}
.y3{bottom:970.732000pt;}
.y13a{bottom:971.948000pt;}
.y5e{bottom:977.388000pt;}
.y1d4{bottom:979.788000pt;}
.y11c{bottom:980.108000pt;}
.y16a{bottom:982.028000pt;}
.yec{bottom:983.788000pt;}
.y195{bottom:987.308000pt;}
.y139{bottom:988.748000pt;}
.y1d3{bottom:991.948000pt;}
.y5d{bottom:992.748000pt;}
.yeb{bottom:999.148000pt;}
.y169{bottom:1001.228000pt;}
.y194{bottom:1002.668000pt;}
.y138{bottom:1003.948000pt;}
.y1d2{bottom:1004.268000pt;}
.y2{bottom:1007.532000pt;}
.y5c{bottom:1007.948000pt;}
.y1d1{bottom:1016.588000pt;}
.y193{bottom:1018.028000pt;}
.yea{bottom:1018.348000pt;}
.y137{bottom:1019.308000pt;}
.y5b{bottom:1023.308000pt;}
.y168{bottom:1024.428000pt;}
.y1d0{bottom:1028.748000pt;}
.y5a{bottom:1038.668000pt;}
.y167{bottom:1039.148000pt;}
.y1{bottom:1040.909333pt;}
.ye9{bottom:1041.068000pt;}
.hc{height:11.840013pt;}
.h12{height:12.160000pt;}
.h13{height:14.400000pt;}
.h15{height:14.560000pt;}
.hd{height:29.061250pt;}
.h16{height:29.773125pt;}
.ha{height:29.794062pt;}
.h8{height:30.625000pt;}
.h5{height:32.507812pt;}
.h4{height:32.531250pt;}
.h3{height:33.328125pt;}
.h2{height:33.351562pt;}
.hb{height:36.883125pt;}
.h9{height:36.909063pt;}
.h6{height:36.909100pt;}
.h7{height:38.281250pt;}
.h10{height:39.217500pt;}
.hf{height:44.468750pt;}
.h11{height:52.741250pt;}
.h14{height:54.114063pt;}
.he{height:54.754063pt;}
.h1{height:88.875000pt;}
.h0{height:1122.666667pt;}
.we{width:3.520013pt;}
.w3{width:5.439987pt;}
.w7{width:5.440000pt;}
.wa{width:5.440027pt;}
.w12{width:6.719987pt;}
.w10{width:6.720000pt;}
.w11{width:6.720013pt;}
.wd{width:7.199987pt;}
.wb{width:21.280000pt;}
.w9{width:29.120000pt;}
.w4{width:34.400000pt;}
.w5{width:35.520000pt;}
.wc{width:35.680000pt;}
.wf{width:36.640000pt;}
.w2{width:39.680000pt;}
.w6{width:48.000000pt;}
.w8{width:49.760000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1a{left:23.466667pt;}
.x68{left:59.520000pt;}
.x15{left:60.479690pt;}
.x23{left:64.960000pt;}
.x8{left:75.008677pt;}
.x14{left:78.554173pt;}
.x64{left:79.680000pt;}
.x5{left:82.720086pt;}
.x40{left:84.480182pt;}
.x6{left:91.195040pt;}
.x4{left:92.319704pt;}
.x38{left:93.440000pt;}
.x1{left:94.386641pt;}
.x5b{left:96.480000pt;}
.x66{left:103.200000pt;}
.x41{left:108.480128pt;}
.x3c{left:111.040781pt;}
.x7{left:112.626281pt;}
.x36{left:121.120255pt;}
.x2{left:127.594535pt;}
.x56{left:134.240000pt;}
.x42{left:140.160695pt;}
.x39{left:141.440000pt;}
.x5c{left:150.240000pt;}
.x1b{left:152.799610pt;}
.x5d{left:155.040000pt;}
.x62{left:158.240000pt;}
.x21{left:164.480000pt;}
.x45{left:167.360034pt;}
.x16{left:171.039981pt;}
.x43{left:172.000010pt;}
.x63{left:173.600000pt;}
.x1c{left:181.439855pt;}
.x57{left:189.120000pt;}
.x60{left:191.200000pt;}
.x3d{left:196.320538pt;}
.x3f{left:217.600167pt;}
.x35{left:222.720722pt;}
.x3e{left:224.160354pt;}
.x3a{left:235.200000pt;}
.x61{left:239.840000pt;}
.x58{left:241.920000pt;}
.x1d{left:243.360062pt;}
.x1e{left:252.160076pt;}
.x3{left:260.901840pt;}
.x5f{left:277.920000pt;}
.x3b{left:284.960000pt;}
.x1f{left:286.560231pt;}
.x44{left:296.480812pt;}
.x5e{left:308.800000pt;}
.x59{left:315.680000pt;}
.xa{left:323.684626pt;}
.xd{left:327.596964pt;}
.x37{left:329.119636pt;}
.xb{left:332.148920pt;}
.xe{left:341.748539pt;}
.x5a{left:344.640000pt;}
.xc{left:353.561506pt;}
.x9{left:356.319863pt;}
.x22{left:383.680000pt;}
.x19{left:386.813333pt;}
.x46{left:399.360375pt;}
.x17{left:408.802571pt;}
.x31{left:417.920000pt;}
.x2c{left:424.960000pt;}
.x2d{left:426.400000pt;}
.x18{left:427.683236pt;}
.x33{left:429.440000pt;}
.x34{left:430.880000pt;}
.x26{left:431.840000pt;}
.x4b{left:432.800397pt;}
.x55{left:433.759839pt;}
.x30{left:436.000000pt;}
.x32{left:438.560000pt;}
.x4d{left:451.680000pt;}
.x25{left:456.800000pt;}
.x24{left:459.680000pt;}
.x4c{left:466.880585pt;}
.x27{left:471.520000pt;}
.x4e{left:472.960000pt;}
.x28{left:505.120000pt;}
.x2e{left:515.200000pt;}
.x47{left:521.920588pt;}
.x4f{left:524.800000pt;}
.x65{left:529.120000pt;}
.x29{left:539.520000pt;}
.x2f{left:557.280000pt;}
.x50{left:560.320000pt;}
.x10{left:564.481267pt;}
.x67{left:571.040000pt;}
.x13{left:572.064752pt;}
.x11{left:572.954889pt;}
.xf{left:584.314792pt;}
.x12{left:594.360811pt;}
.x51{left:601.760000pt;}
.x52{left:605.280000pt;}
.x2a{left:623.840000pt;}
.x4a{left:627.680439pt;}
.x53{left:641.920000pt;}
.x48{left:655.040000pt;}
.x2b{left:659.360000pt;}
.x49{left:684.000000pt;}
.x54{left:712.960000pt;}
.x20{left:730.721127pt;}
}




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