
    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_8918a8ad17391e9b56633c9b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104000;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_17cf0f5baffd24077272b5be.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.176270;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_8af660b8abb101ec8b9b9d34.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.991211;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_56e36aeeee3445e0f7c1ca6d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.056641;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_b2a2cd2b322ff5caa1a9edc6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f936a1753ac01982cecb9e2f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003418;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_c62b21a2a7a8fdfc3b69415d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.717285;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_e3f478b83e634bfe7cb42de2.woff2')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_37508de3482a4214a0b21aaa.woff2')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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-2.188000px;}
.ls14{letter-spacing:-1.386000px;}
.ls2{letter-spacing:-1.254000px;}
.ls13{letter-spacing:-1.056000px;}
.ls1b{letter-spacing:-0.990000px;}
.lsb{letter-spacing:-0.013200px;}
.ls7{letter-spacing:-0.012000px;}
.ls1a{letter-spacing:-0.005280px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000468px;}
.ls5{letter-spacing:0.000516px;}
.ls19{letter-spacing:0.010560px;}
.ls4{letter-spacing:0.012000px;}
.ls1d{letter-spacing:0.012600px;}
.ls6{letter-spacing:0.013200px;}
.ls9{letter-spacing:0.396000px;}
.ls11{letter-spacing:0.528000px;}
.ls18{letter-spacing:0.594000px;}
.ls16{letter-spacing:0.660000px;}
.lsc{letter-spacing:0.686400px;}
.ls10{letter-spacing:0.876000px;}
.ls17{letter-spacing:1.042800px;}
.lsf{letter-spacing:1.254000px;}
.lsd{letter-spacing:1.326000px;}
.ls12{letter-spacing:1.489920px;}
.ls0{letter-spacing:1.876200px;}
.ls1c{letter-spacing:1.940400px;}
.ls8{letter-spacing:5.940000px;}
.lse{letter-spacing:6.560400px;}
.lsa{letter-spacing:14.190000px;}
.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;}
}
.ws6{word-spacing:-17.186400px;}
.ws3{word-spacing:-16.513200px;}
.ws0{word-spacing:-16.500000px;}
.ws5{word-spacing:-16.486800px;}
.ws8{word-spacing:-15.012000px;}
.ws1{word-spacing:-15.000000px;}
.ws4{word-spacing:-14.988000px;}
.ws9{word-spacing:-13.944000px;}
.wsa{word-spacing:-13.210560px;}
.ws7{word-spacing:-13.200000px;}
.wsb{word-spacing:-13.194720px;}
.ws2{word-spacing:0.000000px;}
._20{margin-left:-16.965600px;}
._1a{margin-left:-14.235600px;}
._16{margin-left:-6.840600px;}
._e{margin-left:-5.626800px;}
._b{margin-left:-4.434000px;}
._2{margin-left:-3.384000px;}
._0{margin-left:-2.016000px;}
._3{margin-left:-1.008000px;}
._5{width:1.008000px;}
._1{width:2.232000px;}
._8{width:3.714000px;}
._4{width:4.968000px;}
._d{width:6.042000px;}
._15{width:7.109640px;}
._c{width:8.117640px;}
._6{width:9.504000px;}
._9{width:11.106000px;}
._f{width:12.131400px;}
._11{width:13.258800px;}
._12{width:14.422200px;}
._1c{width:16.062000px;}
._7{width:17.088000px;}
._18{width:18.374400px;}
._13{width:20.321400px;}
._14{width:22.249800px;}
._21{width:23.370600px;}
._10{width:24.389400px;}
._a{width:25.704000px;}
._1b{width:27.635400px;}
._1d{width:28.920000px;}
._1e{width:30.468600px;}
._1f{width:31.482600px;}
._19{width:32.765400px;}
._17{width:33.787200px;}
._25{width:35.212200px;}
._23{width:38.256600px;}
._22{width:40.927200px;}
._24{width:44.043000px;}
.fc2{color:rgb(33,37,41);}
.fc3{color:rgb(146,146,146);}
.fc1{color:rgb(94,94,94);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:40.000002px;}
.fs3{font-size:44.000004px;}
.fs5{font-size:52.800000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y6d{bottom:8.285520px;}
.y70{bottom:8.285535px;}
.y6b{bottom:8.285550px;}
.y8b{bottom:9.000000px;}
.y1d{bottom:11.550030px;}
.y71{bottom:11.759655px;}
.y6e{bottom:11.759670px;}
.y129{bottom:13.160145px;}
.yfc{bottom:19.160145px;}
.y225{bottom:20.244135px;}
.y222{bottom:25.576125px;}
.y1b{bottom:27.425895px;}
.y9a{bottom:27.785520px;}
.y6a{bottom:27.785550px;}
.y7b{bottom:28.195650px;}
.y8a{bottom:29.660145px;}
.y18e{bottom:31.259700px;}
.y128{bottom:32.660175px;}
.y39{bottom:36.076125px;}
.y224{bottom:36.744075px;}
.y1da{bottom:38.660145px;}
.yfb{bottom:38.660175px;}
.y221{bottom:46.576125px;}
.y1a{bottom:46.925895px;}
.y99{bottom:47.285520px;}
.y69{bottom:47.285550px;}
.y7a{bottom:47.695650px;}
.y89{bottom:49.160145px;}
.y153{bottom:49.576125px;}
.y207{bottom:51.114030px;}
.y127{bottom:52.160175px;}
.y223{bottom:53.244075px;}
.y1c{bottom:56.354505px;}
.yd3{bottom:56.660175px;}
.y38{bottom:57.076125px;}
.y1d9{bottom:58.160145px;}
.yfa{bottom:58.160175px;}
.y22d{bottom:66.348150px;}
.y19{bottom:66.425895px;}
.y98{bottom:66.785520px;}
.y68{bottom:66.785550px;}
.y79{bottom:67.195650px;}
.y220{bottom:67.576125px;}
.y88{bottom:68.660145px;}
.y181{bottom:70.259670px;}
.y152{bottom:70.576125px;}
.y126{bottom:71.660175px;}
.ya6{bottom:72.134295px;}
.yd2{bottom:76.160175px;}
.y1d8{bottom:77.660145px;}
.yf9{bottom:77.660175px;}
.y37{bottom:78.076125px;}
.y18{bottom:85.925895px;}
.y97{bottom:86.285520px;}
.y67{bottom:86.285550px;}
.y78{bottom:86.695650px;}
.y22c{bottom:87.348150px;}
.y87{bottom:88.160145px;}
.y21f{bottom:88.576125px;}
.ya4{bottom:89.759670px;}
.y125{bottom:91.160175px;}
.y151{bottom:91.576125px;}
.y206{bottom:93.114030px;}
.yd1{bottom:95.660175px;}
.y1d7{bottom:97.160145px;}
.yf8{bottom:97.160175px;}
.y36{bottom:99.076125px;}
.y17{bottom:105.425895px;}
.y96{bottom:105.785520px;}
.y66{bottom:105.785550px;}
.y77{bottom:106.195650px;}
.y86{bottom:107.660145px;}
.y22b{bottom:108.348150px;}
.y190{bottom:109.259670px;}
.y21e{bottom:109.576125px;}
.y124{bottom:110.660175px;}
.y150{bottom:112.576125px;}
.y205{bottom:114.114030px;}
.yd0{bottom:115.160175px;}
.y1d6{bottom:116.660145px;}
.yf7{bottom:116.660175px;}
.y180{bottom:119.377095px;}
.y35{bottom:120.076125px;}
.y1d2{bottom:121.559055px;}
.y1db{bottom:122.738070px;}
.y7c{bottom:123.059055px;}
.y6f{bottom:123.433680px;}
.y16{bottom:124.925895px;}
.y95{bottom:125.285520px;}
.y65{bottom:125.285550px;}
.y75{bottom:125.695650px;}
.y85{bottom:127.160145px;}
.y1e{bottom:127.275975px;}
.y1{bottom:127.559055px;}
.y76{bottom:129.169800px;}
.y22a{bottom:129.348150px;}
.y123{bottom:130.160175px;}
.ya3{bottom:130.293045px;}
.y21d{bottom:130.576125px;}
.y14f{bottom:133.160175px;}
.ycf{bottom:134.660175px;}
.y204{bottom:135.114030px;}
.y1d5{bottom:136.160145px;}
.yf6{bottom:136.160175px;}
.y17f{bottom:138.877095px;}
.y34{bottom:141.076125px;}
.y6c{bottom:144.433680px;}
.y94{bottom:144.785520px;}
.y64{bottom:144.785550px;}
.y84{bottom:146.660145px;}
.y122{bottom:149.660175px;}
.y229{bottom:150.348150px;}
.ya2{bottom:151.293045px;}
.y21c{bottom:151.576125px;}
.y14e{bottom:152.660175px;}
.yce{bottom:154.160175px;}
.y1d3{bottom:155.660145px;}
.yf5{bottom:155.660175px;}
.y203{bottom:156.114030px;}
.y17e{bottom:158.377095px;}
.y1d4{bottom:159.134295px;}
.y33{bottom:162.076125px;}
.y15{bottom:163.925895px;}
.y93{bottom:164.285520px;}
.y63{bottom:164.285550px;}
.y5e{bottom:165.433650px;}
.y83{bottom:166.160145px;}
.y121{bottom:169.160175px;}
.y228{bottom:171.348150px;}
.y14d{bottom:172.160175px;}
.ya1{bottom:172.293045px;}
.y21b{bottom:172.576125px;}
.ycd{bottom:173.660175px;}
.yf4{bottom:175.160175px;}
.y202{bottom:177.114030px;}
.y17d{bottom:177.877095px;}
.y32{bottom:183.076125px;}
.y14{bottom:183.425895px;}
.y92{bottom:183.785520px;}
.y62{bottom:183.785550px;}
.y82{bottom:185.660145px;}
.y120{bottom:188.660175px;}
.y14c{bottom:191.660175px;}
.y227{bottom:192.348150px;}
.ycc{bottom:193.160175px;}
.ya0{bottom:193.293045px;}
.y21a{bottom:193.576125px;}
.y17c{bottom:197.377095px;}
.y1d1{bottom:197.793045px;}
.y201{bottom:198.114030px;}
.y13{bottom:202.925895px;}
.y91{bottom:203.285520px;}
.y61{bottom:203.285550px;}
.y31{bottom:204.076125px;}
.y81{bottom:205.160145px;}
.y11f{bottom:208.160175px;}
.y14b{bottom:211.160175px;}
.ycb{bottom:212.660175px;}
.y9f{bottom:214.293045px;}
.y219{bottom:214.576125px;}
.yf3{bottom:216.076125px;}
.y17b{bottom:216.877095px;}
.y1d0{bottom:218.793045px;}
.y200{bottom:219.114030px;}
.y12{bottom:222.425895px;}
.y90{bottom:222.785520px;}
.y5f{bottom:222.785550px;}
.y80{bottom:224.660145px;}
.y30{bottom:225.076125px;}
.y60{bottom:226.259700px;}
.y11e{bottom:227.660175px;}
.y14a{bottom:230.660175px;}
.yca{bottom:232.160175px;}
.y9e{bottom:235.293045px;}
.y218{bottom:235.576125px;}
.y17a{bottom:236.377095px;}
.yf2{bottom:237.076125px;}
.y1cf{bottom:239.793045px;}
.y1ff{bottom:240.114030px;}
.y18f{bottom:241.933650px;}
.y8f{bottom:242.285520px;}
.y7f{bottom:244.160145px;}
.y2f{bottom:246.076125px;}
.y11d{bottom:247.160175px;}
.y18c{bottom:247.293045px;}
.y149{bottom:250.160175px;}
.y179{bottom:255.877095px;}
.y9d{bottom:256.293045px;}
.y217{bottom:256.576125px;}
.yf1{bottom:258.076125px;}
.y1ce{bottom:260.793045px;}
.y1fe{bottom:261.114030px;}
.y11{bottom:261.425895px;}
.y8d{bottom:261.785520px;}
.y7d{bottom:263.660145px;}
.y8e{bottom:265.259670px;}
.y11c{bottom:266.660175px;}
.y2e{bottom:267.076125px;}
.y7e{bottom:267.134295px;}
.y18b{bottom:267.877095px;}
.y148{bottom:269.660175px;}
.yc9{bottom:271.576125px;}
.y178{bottom:275.377095px;}
.y9c{bottom:277.293045px;}
.y216{bottom:277.576125px;}
.yf0{bottom:279.076125px;}
.y10{bottom:280.925895px;}
.y1ab{bottom:281.285520px;}
.y1cd{bottom:281.793045px;}
.y1fd{bottom:282.114030px;}
.y18d{bottom:282.433650px;}
.y1ac{bottom:284.759670px;}
.y11b{bottom:286.160175px;}
.y18a{bottom:287.377095px;}
.y2d{bottom:288.076125px;}
.y147{bottom:289.160175px;}
.yc8{bottom:292.576125px;}
.y177{bottom:294.877095px;}
.y9b{bottom:298.293045px;}
.y215{bottom:298.576125px;}
.yef{bottom:300.076125px;}
.yf{bottom:300.425895px;}
.y1cb{bottom:302.793045px;}
.y1fc{bottom:303.114030px;}
.y1cc{bottom:306.614595px;}
.y189{bottom:306.877095px;}
.y146{bottom:308.660175px;}
.y2c{bottom:309.076125px;}
.yc7{bottom:313.576125px;}
.y176{bottom:314.377095px;}
.y5d{bottom:319.293045px;}
.y214{bottom:319.576125px;}
.ye{bottom:319.925895px;}
.yee{bottom:321.076125px;}
.y1ca{bottom:323.793045px;}
.y1fb{bottom:324.114030px;}
.y11a{bottom:325.576125px;}
.y188{bottom:326.377095px;}
.y1aa{bottom:327.877095px;}
.y145{bottom:328.160175px;}
.y2b{bottom:330.076125px;}
.y174{bottom:333.877095px;}
.yc6{bottom:334.576125px;}
.y175{bottom:337.351245px;}
.yd{bottom:339.425895px;}
.y5c{bottom:340.293045px;}
.y213{bottom:340.576125px;}
.yed{bottom:342.076125px;}
.y1c9{bottom:344.793045px;}
.y1fa{bottom:345.114030px;}
.y187{bottom:345.877095px;}
.y119{bottom:346.576125px;}
.y1a9{bottom:347.377095px;}
.y144{bottom:347.660175px;}
.y2a{bottom:351.076125px;}
.y173{bottom:353.377095px;}
.yc5{bottom:355.576125px;}
.yc{bottom:358.925895px;}
.y5b{bottom:361.293045px;}
.y212{bottom:361.576125px;}
.yec{bottom:363.076125px;}
.ya5{bottom:365.114595px;}
.y186{bottom:365.377095px;}
.y1c8{bottom:365.793045px;}
.y1f9{bottom:366.114030px;}
.y1a8{bottom:366.877095px;}
.y143{bottom:367.160175px;}
.y118{bottom:367.576125px;}
.y172{bottom:372.877095px;}
.yc4{bottom:376.576125px;}
.yb{bottom:378.425895px;}
.y5a{bottom:382.293045px;}
.y211{bottom:382.576125px;}
.yeb{bottom:384.076125px;}
.y185{bottom:384.877095px;}
.y1a7{bottom:386.377095px;}
.y142{bottom:386.660175px;}
.y1c7{bottom:386.793045px;}
.y1f8{bottom:387.114030px;}
.y117{bottom:388.160175px;}
.y171{bottom:392.377095px;}
.yc3{bottom:397.160175px;}
.ya{bottom:397.925895px;}
.y74{bottom:399.433650px;}
.y59{bottom:403.293045px;}
.y210{bottom:403.576125px;}
.yea{bottom:405.076125px;}
.y1a6{bottom:405.877095px;}
.y141{bottom:406.160175px;}
.y116{bottom:407.660175px;}
.y1c6{bottom:407.793045px;}
.y1f7{bottom:408.114030px;}
.y170{bottom:411.877095px;}
.yc2{bottom:416.660175px;}
.y9{bottom:417.425895px;}
.y58{bottom:424.293045px;}
.y20f{bottom:424.576125px;}
.y1a5{bottom:425.377095px;}
.y140{bottom:425.660175px;}
.ye9{bottom:426.076125px;}
.y115{bottom:427.160175px;}
.y1c5{bottom:428.793045px;}
.y1f6{bottom:429.114030px;}
.y16f{bottom:431.377095px;}
.yc1{bottom:436.160175px;}
.y1a4{bottom:444.877095px;}
.y13f{bottom:445.160175px;}
.y57{bottom:445.293045px;}
.y20e{bottom:445.576125px;}
.y114{bottom:446.660175px;}
.ye8{bottom:447.076125px;}
.y1c4{bottom:449.793045px;}
.y1f5{bottom:450.114030px;}
.y16e{bottom:450.877095px;}
.yc0{bottom:455.660175px;}
.y13e{bottom:464.660175px;}
.y113{bottom:466.160175px;}
.y56{bottom:466.293045px;}
.y20d{bottom:466.576125px;}
.ye7{bottom:468.076125px;}
.y16d{bottom:470.377095px;}
.y1c3{bottom:470.793045px;}
.y1f4{bottom:471.114030px;}
.ybf{bottom:475.160175px;}
.y13d{bottom:484.160175px;}
.y1a3{bottom:484.293045px;}
.y112{bottom:485.660175px;}
.y55{bottom:487.293045px;}
.y20c{bottom:487.576125px;}
.ye6{bottom:489.076125px;}
.y1c2{bottom:491.793045px;}
.y1f3{bottom:492.114030px;}
.ybe{bottom:494.660175px;}
.y29{bottom:497.660175px;}
.y13c{bottom:503.660175px;}
.y111{bottom:505.160175px;}
.y1a2{bottom:505.293045px;}
.y54{bottom:508.293045px;}
.y20b{bottom:508.576125px;}
.ye5{bottom:510.076125px;}
.y16c{bottom:511.293045px;}
.y1c1{bottom:512.793045px;}
.y1f2{bottom:513.114030px;}
.ybd{bottom:514.160175px;}
.y28{bottom:517.160175px;}
.y13b{bottom:523.160175px;}
.y110{bottom:524.660175px;}
.y1a1{bottom:526.293045px;}
.y53{bottom:529.293045px;}
.y20a{bottom:529.576125px;}
.ye4{bottom:531.076125px;}
.y16b{bottom:532.293045px;}
.ybc{bottom:533.660175px;}
.y1c0{bottom:533.793045px;}
.y1f1{bottom:534.114030px;}
.y27{bottom:536.660175px;}
.y8{bottom:540.841845px;}
.y13a{bottom:542.660175px;}
.y10f{bottom:544.160175px;}
.y1a0{bottom:547.293045px;}
.y52{bottom:550.293045px;}
.y209{bottom:550.576125px;}
.ye3{bottom:552.076125px;}
.ybb{bottom:553.160175px;}
.y16a{bottom:553.293045px;}
.y1bf{bottom:554.793045px;}
.y1f0{bottom:555.114030px;}
.y26{bottom:556.160175px;}
.y7{bottom:561.841845px;}
.y10e{bottom:563.660175px;}
.y19f{bottom:568.293045px;}
.y51{bottom:571.293045px;}
.y208{bottom:571.576125px;}
.ye2{bottom:572.660175px;}
.y169{bottom:574.293045px;}
.y25{bottom:575.660175px;}
.y1be{bottom:575.793045px;}
.y1ef{bottom:576.114030px;}
.y6{bottom:582.841845px;}
.y10d{bottom:583.160175px;}
.y139{bottom:583.576125px;}
.y19e{bottom:589.293045px;}
.ye1{bottom:592.160175px;}
.y50{bottom:592.293045px;}
.yba{bottom:592.576125px;}
.y24{bottom:595.160175px;}
.y168{bottom:595.293045px;}
.y1bd{bottom:596.793045px;}
.y1ee{bottom:597.114030px;}
.y10c{bottom:602.660175px;}
.y5{bottom:603.841845px;}
.y138{bottom:604.576125px;}
.y19d{bottom:609.877095px;}
.ye0{bottom:611.660175px;}
.y4f{bottom:613.293045px;}
.yb9{bottom:613.576125px;}
.y23{bottom:615.076125px;}
.y167{bottom:616.293045px;}
.y73{bottom:617.114595px;}
.y1bc{bottom:617.793045px;}
.y1ed{bottom:618.114030px;}
.y10b{bottom:622.160175px;}
.y137{bottom:625.576125px;}
.y19c{bottom:629.377095px;}
.ydf{bottom:631.160175px;}
.y4d{bottom:634.293045px;}
.yb8{bottom:634.576125px;}
.y166{bottom:637.293045px;}
.y4e{bottom:638.114595px;}
.y1bb{bottom:638.793045px;}
.y1ec{bottom:639.114030px;}
.y136{bottom:646.576125px;}
.y19b{bottom:648.877095px;}
.yde{bottom:650.660175px;}
.y4c{bottom:655.293045px;}
.yb7{bottom:655.576125px;}
.y165{bottom:658.293045px;}
.y1ba{bottom:659.793045px;}
.y1eb{bottom:660.114030px;}
.y10a{bottom:663.076125px;}
.y135{bottom:667.576125px;}
.y19a{bottom:668.377095px;}
.ydd{bottom:670.160175px;}
.y4b{bottom:676.293045px;}
.yb6{bottom:676.576125px;}
.y164{bottom:679.293045px;}
.y1b9{bottom:680.793045px;}
.y1ea{bottom:681.114030px;}
.y109{bottom:684.076125px;}
.y199{bottom:687.877095px;}
.y134{bottom:688.576125px;}
.ydc{bottom:689.660175px;}
.y4a{bottom:697.293045px;}
.yb5{bottom:697.576125px;}
.y163{bottom:699.877095px;}
.y1b8{bottom:701.793045px;}
.y1e9{bottom:702.114030px;}
.y108{bottom:705.076125px;}
.y198{bottom:707.377095px;}
.ydb{bottom:709.160175px;}
.y133{bottom:709.576125px;}
.y49{bottom:718.293045px;}
.yb4{bottom:718.576125px;}
.y162{bottom:719.377095px;}
.y1b7{bottom:722.793045px;}
.y1e8{bottom:723.114030px;}
.y107{bottom:726.076125px;}
.y197{bottom:726.877095px;}
.yda{bottom:728.660175px;}
.y132{bottom:730.576125px;}
.y4{bottom:733.365795px;}
.y161{bottom:738.877095px;}
.y48{bottom:739.293045px;}
.yb3{bottom:739.576125px;}
.y184{bottom:742.351245px;}
.y8c{bottom:743.114595px;}
.y1b6{bottom:743.793045px;}
.y1e7{bottom:744.114030px;}
.y196{bottom:746.377095px;}
.y106{bottom:747.076125px;}
.yd9{bottom:748.160175px;}
.y131{bottom:751.576125px;}
.y3{bottom:754.365795px;}
.y160{bottom:758.377095px;}
.y47{bottom:760.293045px;}
.yb2{bottom:760.576125px;}
.y1b5{bottom:764.793045px;}
.y1e6{bottom:765.114030px;}
.y195{bottom:765.877095px;}
.yd8{bottom:767.660175px;}
.y105{bottom:768.076125px;}
.y130{bottom:772.576125px;}
.y2{bottom:775.365795px;}
.y15f{bottom:777.877095px;}
.y45{bottom:781.293045px;}
.yb1{bottom:781.576125px;}
.y46{bottom:785.114595px;}
.y194{bottom:785.377095px;}
.y1b4{bottom:785.793045px;}
.y1e5{bottom:786.114030px;}
.yd7{bottom:787.160175px;}
.y104{bottom:789.076125px;}
.y12f{bottom:793.576125px;}
.y15e{bottom:797.377095px;}
.y44{bottom:802.293045px;}
.yb0{bottom:802.576125px;}
.y193{bottom:804.877095px;}
.yd6{bottom:806.660175px;}
.y1b3{bottom:806.793045px;}
.y1e4{bottom:807.114030px;}
.y103{bottom:810.076125px;}
.y12e{bottom:814.576125px;}
.y15d{bottom:816.877095px;}
.y43{bottom:823.293045px;}
.yaf{bottom:823.576125px;}
.y192{bottom:824.377095px;}
.yd5{bottom:826.160175px;}
.y1b2{bottom:827.793045px;}
.y1e3{bottom:828.114030px;}
.y22{bottom:829.576125px;}
.y102{bottom:831.076125px;}
.y12d{bottom:835.576125px;}
.y15c{bottom:836.377095px;}
.y42{bottom:844.293045px;}
.yae{bottom:844.576125px;}
.yd4{bottom:845.660175px;}
.y1b1{bottom:848.793045px;}
.y1e2{bottom:849.114030px;}
.y101{bottom:852.076125px;}
.y15b{bottom:855.877095px;}
.y12c{bottom:856.160175px;}
.y183{bottom:859.351245px;}
.y41{bottom:865.293045px;}
.yad{bottom:865.576125px;}
.y226{bottom:865.753950px;}
.y1b0{bottom:869.793045px;}
.y1e1{bottom:870.114030px;}
.y100{bottom:873.076125px;}
.y15a{bottom:875.377095px;}
.y12b{bottom:875.660175px;}
.y40{bottom:886.293045px;}
.yac{bottom:886.576125px;}
.y1af{bottom:890.793045px;}
.y1e0{bottom:891.114030px;}
.yff{bottom:894.076125px;}
.y159{bottom:894.877095px;}
.y12a{bottom:895.160175px;}
.y3f{bottom:907.293045px;}
.yab{bottom:907.576125px;}
.y191{bottom:911.114595px;}
.y1ae{bottom:911.793045px;}
.y1df{bottom:912.114030px;}
.y158{bottom:914.377095px;}
.yfe{bottom:914.660175px;}
.y3e{bottom:928.293045px;}
.yaa{bottom:928.576125px;}
.y1ad{bottom:932.793045px;}
.y1de{bottom:933.114030px;}
.y157{bottom:933.877095px;}
.y21{bottom:934.160175px;}
.y3d{bottom:949.293045px;}
.ya9{bottom:949.576125px;}
.y72{bottom:953.114595px;}
.y156{bottom:953.377095px;}
.yfd{bottom:953.660175px;}
.y1dd{bottom:954.114030px;}
.y3c{bottom:970.293045px;}
.ya8{bottom:970.576125px;}
.y155{bottom:972.877095px;}
.y20{bottom:973.160175px;}
.y182{bottom:976.351245px;}
.y3a{bottom:991.293045px;}
.ya7{bottom:991.576125px;}
.y154{bottom:992.377095px;}
.y1f{bottom:992.660175px;}
.y3b{bottom:995.114595px;}
.y1dc{bottom:996.114030px;}
.h8{height:27.750015px;}
.hf{height:27.750735px;}
.he{height:35.957033px;}
.hc{height:39.552738px;}
.h6{height:39.990234px;}
.h20{height:42.108398px;}
.hb{height:43.989258px;}
.h7{height:46.787109px;}
.h19{height:47.250735px;}
.h1e{height:48.243164px;}
.h18{height:51.465820px;}
.h5{height:53.935547px;}
.h9{height:56.232000px;}
.h4{height:59.329102px;}
.h3{height:61.344000px;}
.h17{height:86.250735px;}
.h14{height:88.125360px;}
.h13{height:105.750735px;}
.h1a{height:125.250735px;}
.h10{height:145.160895px;}
.h1c{height:175.125300px;}
.hd{height:242.250750px;}
.h21{height:267.271950px;}
.h12{height:281.250750px;}
.h11{height:283.125300px;}
.h1b{height:300.750750px;}
.h1f{height:1008.000000px;}
.h16{height:1011.842250px;}
.ha{height:1012.125300px;}
.h2{height:1012.254750px;}
.h15{height:1012.537950px;}
.h1d{height:1017.075750px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w9{width:517.141500px;}
.w14{width:517.224000px;}
.w3{width:519.121500px;}
.w10{width:519.171000px;}
.w19{width:519.435000px;}
.w4{width:519.517500px;}
.w17{width:519.649500px;}
.wd{width:519.732000px;}
.wb{width:519.880500px;}
.wa{width:519.946500px;}
.w12{width:519.979500px;}
.w16{width:520.029000px;}
.w11{width:520.243500px;}
.we{width:520.491000px;}
.w1a{width:520.573500px;}
.w18{width:520.590000px;}
.wc{width:520.821000px;}
.w7{width:520.903500px;}
.w13{width:521.052000px;}
.w1b{width:548.262600px;}
.w6{width:561.013350px;}
.w8{width:561.762600px;}
.w5{width:561.838350px;}
.w15{width:564.762600px;}
.wf{width:566.645850px;}
.w2{width:572.593350px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:4.537800px;}
.x24{left:6.000000px;}
.x15{left:9.125299px;}
.x1f{left:13.578426px;}
.xe{left:14.956650px;}
.x23{left:16.000000px;}
.x25{left:25.797750px;}
.xf{left:31.231050px;}
.x27{left:37.500000px;}
.x14{left:45.127200px;}
.xb{left:47.057550px;}
.xd{left:56.704650px;}
.x12{left:58.537864px;}
.x3{left:60.492900px;}
.xc{left:73.550400px;}
.x19{left:76.918650px;}
.x17{left:79.158450px;}
.x2{left:97.068900px;}
.x4{left:98.247900px;}
.x1a{left:112.537800px;}
.x1e{left:135.061350px;}
.x22{left:164.078700px;}
.x1{left:165.540900px;}
.x13{left:169.757850px;}
.x26{left:172.328700px;}
.xa{left:186.899250px;}
.x10{left:207.004950px;}
.x20{left:213.956100px;}
.x1d{left:315.190800px;}
.x1b{left:346.877700px;}
.x18{left:372.531150px;}
.x7{left:401.074050px;}
.x6{left:413.674650px;}
.x8{left:429.127350px;}
.x11{left:440.493750px;}
.x5{left:456.721350px;}
.x1c{left:501.178200px;}
.x21{left:546.300450px;}
.x16{left:551.800350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-1.944889pt;}
.ls14{letter-spacing:-1.232000pt;}
.ls2{letter-spacing:-1.114667pt;}
.ls13{letter-spacing:-0.938667pt;}
.ls1b{letter-spacing:-0.880000pt;}
.lsb{letter-spacing:-0.011733pt;}
.ls7{letter-spacing:-0.010667pt;}
.ls1a{letter-spacing:-0.004693pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000416pt;}
.ls5{letter-spacing:0.000459pt;}
.ls19{letter-spacing:0.009387pt;}
.ls4{letter-spacing:0.010667pt;}
.ls1d{letter-spacing:0.011200pt;}
.ls6{letter-spacing:0.011733pt;}
.ls9{letter-spacing:0.352000pt;}
.ls11{letter-spacing:0.469333pt;}
.ls18{letter-spacing:0.528000pt;}
.ls16{letter-spacing:0.586667pt;}
.lsc{letter-spacing:0.610133pt;}
.ls10{letter-spacing:0.778667pt;}
.ls17{letter-spacing:0.926933pt;}
.lsf{letter-spacing:1.114667pt;}
.lsd{letter-spacing:1.178667pt;}
.ls12{letter-spacing:1.324373pt;}
.ls0{letter-spacing:1.667733pt;}
.ls1c{letter-spacing:1.724800pt;}
.ls8{letter-spacing:5.280000pt;}
.lse{letter-spacing:5.831467pt;}
.lsa{letter-spacing:12.613333pt;}
.ws6{word-spacing:-15.276800pt;}
.ws3{word-spacing:-14.678400pt;}
.ws0{word-spacing:-14.666667pt;}
.ws5{word-spacing:-14.654933pt;}
.ws8{word-spacing:-13.344000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws4{word-spacing:-13.322667pt;}
.ws9{word-spacing:-12.394667pt;}
.wsa{word-spacing:-11.742720pt;}
.ws7{word-spacing:-11.733333pt;}
.wsb{word-spacing:-11.728640pt;}
.ws2{word-spacing:0.000000pt;}
._20{margin-left:-15.080533pt;}
._1a{margin-left:-12.653867pt;}
._16{margin-left:-6.080533pt;}
._e{margin-left:-5.001600pt;}
._b{margin-left:-3.941333pt;}
._2{margin-left:-3.008000pt;}
._0{margin-left:-1.792000pt;}
._3{margin-left:-0.896000pt;}
._5{width:0.896000pt;}
._1{width:1.984000pt;}
._8{width:3.301333pt;}
._4{width:4.416000pt;}
._d{width:5.370667pt;}
._15{width:6.319680pt;}
._c{width:7.215680pt;}
._6{width:8.448000pt;}
._9{width:9.872000pt;}
._f{width:10.783467pt;}
._11{width:11.785600pt;}
._12{width:12.819733pt;}
._1c{width:14.277333pt;}
._7{width:15.189333pt;}
._18{width:16.332800pt;}
._13{width:18.063467pt;}
._14{width:19.777600pt;}
._21{width:20.773867pt;}
._10{width:21.679467pt;}
._a{width:22.848000pt;}
._1b{width:24.564800pt;}
._1d{width:25.706667pt;}
._1e{width:27.083200pt;}
._1f{width:27.984533pt;}
._19{width:29.124800pt;}
._17{width:30.033067pt;}
._25{width:31.299733pt;}
._23{width:34.005867pt;}
._22{width:36.379733pt;}
._24{width:39.149333pt;}
.fs4{font-size:35.555557pt;}
.fs3{font-size:39.111115pt;}
.fs5{font-size:46.933333pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:7.364907pt;}
.y70{bottom:7.364920pt;}
.y6b{bottom:7.364933pt;}
.y8b{bottom:8.000000pt;}
.y1d{bottom:10.266693pt;}
.y71{bottom:10.453027pt;}
.y6e{bottom:10.453040pt;}
.y129{bottom:11.697907pt;}
.yfc{bottom:17.031240pt;}
.y225{bottom:17.994787pt;}
.y222{bottom:22.734333pt;}
.y1b{bottom:24.378573pt;}
.y9a{bottom:24.698240pt;}
.y6a{bottom:24.698267pt;}
.y7b{bottom:25.062800pt;}
.y8a{bottom:26.364573pt;}
.y18e{bottom:27.786400pt;}
.y128{bottom:29.031267pt;}
.y39{bottom:32.067667pt;}
.y224{bottom:32.661400pt;}
.y1da{bottom:34.364573pt;}
.yfb{bottom:34.364600pt;}
.y221{bottom:41.401000pt;}
.y1a{bottom:41.711907pt;}
.y99{bottom:42.031573pt;}
.y69{bottom:42.031600pt;}
.y7a{bottom:42.396133pt;}
.y89{bottom:43.697907pt;}
.y153{bottom:44.067667pt;}
.y207{bottom:45.434693pt;}
.y127{bottom:46.364600pt;}
.y223{bottom:47.328067pt;}
.y1c{bottom:50.092893pt;}
.yd3{bottom:50.364600pt;}
.y38{bottom:50.734333pt;}
.y1d9{bottom:51.697907pt;}
.yfa{bottom:51.697933pt;}
.y22d{bottom:58.976133pt;}
.y19{bottom:59.045240pt;}
.y98{bottom:59.364907pt;}
.y68{bottom:59.364933pt;}
.y79{bottom:59.729467pt;}
.y220{bottom:60.067667pt;}
.y88{bottom:61.031240pt;}
.y181{bottom:62.453040pt;}
.y152{bottom:62.734333pt;}
.y126{bottom:63.697933pt;}
.ya6{bottom:64.119373pt;}
.yd2{bottom:67.697933pt;}
.y1d8{bottom:69.031240pt;}
.yf9{bottom:69.031267pt;}
.y37{bottom:69.401000pt;}
.y18{bottom:76.378573pt;}
.y97{bottom:76.698240pt;}
.y67{bottom:76.698267pt;}
.y78{bottom:77.062800pt;}
.y22c{bottom:77.642800pt;}
.y87{bottom:78.364573pt;}
.y21f{bottom:78.734333pt;}
.ya4{bottom:79.786373pt;}
.y125{bottom:81.031267pt;}
.y151{bottom:81.401000pt;}
.y206{bottom:82.768027pt;}
.yd1{bottom:85.031267pt;}
.y1d7{bottom:86.364573pt;}
.yf8{bottom:86.364600pt;}
.y36{bottom:88.067667pt;}
.y17{bottom:93.711907pt;}
.y96{bottom:94.031573pt;}
.y66{bottom:94.031600pt;}
.y77{bottom:94.396133pt;}
.y86{bottom:95.697907pt;}
.y22b{bottom:96.309467pt;}
.y190{bottom:97.119707pt;}
.y21e{bottom:97.401000pt;}
.y124{bottom:98.364600pt;}
.y150{bottom:100.067667pt;}
.y205{bottom:101.434693pt;}
.yd0{bottom:102.364600pt;}
.y1d6{bottom:103.697907pt;}
.yf7{bottom:103.697933pt;}
.y180{bottom:106.112973pt;}
.y35{bottom:106.734333pt;}
.y1d2{bottom:108.052493pt;}
.y1db{bottom:109.100507pt;}
.y7c{bottom:109.385827pt;}
.y6f{bottom:109.718827pt;}
.y16{bottom:111.045240pt;}
.y95{bottom:111.364907pt;}
.y65{bottom:111.364933pt;}
.y75{bottom:111.729467pt;}
.y85{bottom:113.031240pt;}
.y1e{bottom:113.134200pt;}
.y1{bottom:113.385827pt;}
.y76{bottom:114.817600pt;}
.y22a{bottom:114.976133pt;}
.y123{bottom:115.697933pt;}
.ya3{bottom:115.816040pt;}
.y21d{bottom:116.067667pt;}
.y14f{bottom:118.364600pt;}
.ycf{bottom:119.697933pt;}
.y204{bottom:120.101360pt;}
.y1d5{bottom:121.031240pt;}
.yf6{bottom:121.031267pt;}
.y17f{bottom:123.446307pt;}
.y34{bottom:125.401000pt;}
.y6c{bottom:128.385493pt;}
.y94{bottom:128.698240pt;}
.y64{bottom:128.698267pt;}
.y84{bottom:130.364573pt;}
.y122{bottom:133.031267pt;}
.y229{bottom:133.642800pt;}
.ya2{bottom:134.482707pt;}
.y21c{bottom:134.734333pt;}
.y14e{bottom:135.697933pt;}
.yce{bottom:137.031267pt;}
.y1d3{bottom:138.364573pt;}
.yf5{bottom:138.364600pt;}
.y203{bottom:138.768027pt;}
.y17e{bottom:140.779640pt;}
.y1d4{bottom:141.452707pt;}
.y33{bottom:144.067667pt;}
.y15{bottom:145.711907pt;}
.y93{bottom:146.031573pt;}
.y63{bottom:146.031600pt;}
.y5e{bottom:147.052133pt;}
.y83{bottom:147.697907pt;}
.y121{bottom:150.364600pt;}
.y228{bottom:152.309467pt;}
.y14d{bottom:153.031267pt;}
.ya1{bottom:153.149373pt;}
.y21b{bottom:153.401000pt;}
.ycd{bottom:154.364600pt;}
.yf4{bottom:155.697933pt;}
.y202{bottom:157.434693pt;}
.y17d{bottom:158.112973pt;}
.y32{bottom:162.734333pt;}
.y14{bottom:163.045240pt;}
.y92{bottom:163.364907pt;}
.y62{bottom:163.364933pt;}
.y82{bottom:165.031240pt;}
.y120{bottom:167.697933pt;}
.y14c{bottom:170.364600pt;}
.y227{bottom:170.976133pt;}
.ycc{bottom:171.697933pt;}
.ya0{bottom:171.816040pt;}
.y21a{bottom:172.067667pt;}
.y17c{bottom:175.446307pt;}
.y1d1{bottom:175.816040pt;}
.y201{bottom:176.101360pt;}
.y13{bottom:180.378573pt;}
.y91{bottom:180.698240pt;}
.y61{bottom:180.698267pt;}
.y31{bottom:181.401000pt;}
.y81{bottom:182.364573pt;}
.y11f{bottom:185.031267pt;}
.y14b{bottom:187.697933pt;}
.ycb{bottom:189.031267pt;}
.y9f{bottom:190.482707pt;}
.y219{bottom:190.734333pt;}
.yf3{bottom:192.067667pt;}
.y17b{bottom:192.779640pt;}
.y1d0{bottom:194.482707pt;}
.y200{bottom:194.768027pt;}
.y12{bottom:197.711907pt;}
.y90{bottom:198.031573pt;}
.y5f{bottom:198.031600pt;}
.y80{bottom:199.697907pt;}
.y30{bottom:200.067667pt;}
.y60{bottom:201.119733pt;}
.y11e{bottom:202.364600pt;}
.y14a{bottom:205.031267pt;}
.yca{bottom:206.364600pt;}
.y9e{bottom:209.149373pt;}
.y218{bottom:209.401000pt;}
.y17a{bottom:210.112973pt;}
.yf2{bottom:210.734333pt;}
.y1cf{bottom:213.149373pt;}
.y1ff{bottom:213.434693pt;}
.y18f{bottom:215.052133pt;}
.y8f{bottom:215.364907pt;}
.y7f{bottom:217.031240pt;}
.y2f{bottom:218.734333pt;}
.y11d{bottom:219.697933pt;}
.y18c{bottom:219.816040pt;}
.y149{bottom:222.364600pt;}
.y179{bottom:227.446307pt;}
.y9d{bottom:227.816040pt;}
.y217{bottom:228.067667pt;}
.yf1{bottom:229.401000pt;}
.y1ce{bottom:231.816040pt;}
.y1fe{bottom:232.101360pt;}
.y11{bottom:232.378573pt;}
.y8d{bottom:232.698240pt;}
.y7d{bottom:234.364573pt;}
.y8e{bottom:235.786373pt;}
.y11c{bottom:237.031267pt;}
.y2e{bottom:237.401000pt;}
.y7e{bottom:237.452707pt;}
.y18b{bottom:238.112973pt;}
.y148{bottom:239.697933pt;}
.yc9{bottom:241.401000pt;}
.y178{bottom:244.779640pt;}
.y9c{bottom:246.482707pt;}
.y216{bottom:246.734333pt;}
.yf0{bottom:248.067667pt;}
.y10{bottom:249.711907pt;}
.y1ab{bottom:250.031573pt;}
.y1cd{bottom:250.482707pt;}
.y1fd{bottom:250.768027pt;}
.y18d{bottom:251.052133pt;}
.y1ac{bottom:253.119707pt;}
.y11b{bottom:254.364600pt;}
.y18a{bottom:255.446307pt;}
.y2d{bottom:256.067667pt;}
.y147{bottom:257.031267pt;}
.yc8{bottom:260.067667pt;}
.y177{bottom:262.112973pt;}
.y9b{bottom:265.149373pt;}
.y215{bottom:265.401000pt;}
.yef{bottom:266.734333pt;}
.yf{bottom:267.045240pt;}
.y1cb{bottom:269.149373pt;}
.y1fc{bottom:269.434693pt;}
.y1cc{bottom:272.546307pt;}
.y189{bottom:272.779640pt;}
.y146{bottom:274.364600pt;}
.y2c{bottom:274.734333pt;}
.yc7{bottom:278.734333pt;}
.y176{bottom:279.446307pt;}
.y5d{bottom:283.816040pt;}
.y214{bottom:284.067667pt;}
.ye{bottom:284.378573pt;}
.yee{bottom:285.401000pt;}
.y1ca{bottom:287.816040pt;}
.y1fb{bottom:288.101360pt;}
.y11a{bottom:289.401000pt;}
.y188{bottom:290.112973pt;}
.y1aa{bottom:291.446307pt;}
.y145{bottom:291.697933pt;}
.y2b{bottom:293.401000pt;}
.y174{bottom:296.779640pt;}
.yc6{bottom:297.401000pt;}
.y175{bottom:299.867773pt;}
.yd{bottom:301.711907pt;}
.y5c{bottom:302.482707pt;}
.y213{bottom:302.734333pt;}
.yed{bottom:304.067667pt;}
.y1c9{bottom:306.482707pt;}
.y1fa{bottom:306.768027pt;}
.y187{bottom:307.446307pt;}
.y119{bottom:308.067667pt;}
.y1a9{bottom:308.779640pt;}
.y144{bottom:309.031267pt;}
.y2a{bottom:312.067667pt;}
.y173{bottom:314.112973pt;}
.yc5{bottom:316.067667pt;}
.yc{bottom:319.045240pt;}
.y5b{bottom:321.149373pt;}
.y212{bottom:321.401000pt;}
.yec{bottom:322.734333pt;}
.ya5{bottom:324.546307pt;}
.y186{bottom:324.779640pt;}
.y1c8{bottom:325.149373pt;}
.y1f9{bottom:325.434693pt;}
.y1a8{bottom:326.112973pt;}
.y143{bottom:326.364600pt;}
.y118{bottom:326.734333pt;}
.y172{bottom:331.446307pt;}
.yc4{bottom:334.734333pt;}
.yb{bottom:336.378573pt;}
.y5a{bottom:339.816040pt;}
.y211{bottom:340.067667pt;}
.yeb{bottom:341.401000pt;}
.y185{bottom:342.112973pt;}
.y1a7{bottom:343.446307pt;}
.y142{bottom:343.697933pt;}
.y1c7{bottom:343.816040pt;}
.y1f8{bottom:344.101360pt;}
.y117{bottom:345.031267pt;}
.y171{bottom:348.779640pt;}
.yc3{bottom:353.031267pt;}
.ya{bottom:353.711907pt;}
.y74{bottom:355.052133pt;}
.y59{bottom:358.482707pt;}
.y210{bottom:358.734333pt;}
.yea{bottom:360.067667pt;}
.y1a6{bottom:360.779640pt;}
.y141{bottom:361.031267pt;}
.y116{bottom:362.364600pt;}
.y1c6{bottom:362.482707pt;}
.y1f7{bottom:362.768027pt;}
.y170{bottom:366.112973pt;}
.yc2{bottom:370.364600pt;}
.y9{bottom:371.045240pt;}
.y58{bottom:377.149373pt;}
.y20f{bottom:377.401000pt;}
.y1a5{bottom:378.112973pt;}
.y140{bottom:378.364600pt;}
.ye9{bottom:378.734333pt;}
.y115{bottom:379.697933pt;}
.y1c5{bottom:381.149373pt;}
.y1f6{bottom:381.434693pt;}
.y16f{bottom:383.446307pt;}
.yc1{bottom:387.697933pt;}
.y1a4{bottom:395.446307pt;}
.y13f{bottom:395.697933pt;}
.y57{bottom:395.816040pt;}
.y20e{bottom:396.067667pt;}
.y114{bottom:397.031267pt;}
.ye8{bottom:397.401000pt;}
.y1c4{bottom:399.816040pt;}
.y1f5{bottom:400.101360pt;}
.y16e{bottom:400.779640pt;}
.yc0{bottom:405.031267pt;}
.y13e{bottom:413.031267pt;}
.y113{bottom:414.364600pt;}
.y56{bottom:414.482707pt;}
.y20d{bottom:414.734333pt;}
.ye7{bottom:416.067667pt;}
.y16d{bottom:418.112973pt;}
.y1c3{bottom:418.482707pt;}
.y1f4{bottom:418.768027pt;}
.ybf{bottom:422.364600pt;}
.y13d{bottom:430.364600pt;}
.y1a3{bottom:430.482707pt;}
.y112{bottom:431.697933pt;}
.y55{bottom:433.149373pt;}
.y20c{bottom:433.401000pt;}
.ye6{bottom:434.734333pt;}
.y1c2{bottom:437.149373pt;}
.y1f3{bottom:437.434693pt;}
.ybe{bottom:439.697933pt;}
.y29{bottom:442.364600pt;}
.y13c{bottom:447.697933pt;}
.y111{bottom:449.031267pt;}
.y1a2{bottom:449.149373pt;}
.y54{bottom:451.816040pt;}
.y20b{bottom:452.067667pt;}
.ye5{bottom:453.401000pt;}
.y16c{bottom:454.482707pt;}
.y1c1{bottom:455.816040pt;}
.y1f2{bottom:456.101360pt;}
.ybd{bottom:457.031267pt;}
.y28{bottom:459.697933pt;}
.y13b{bottom:465.031267pt;}
.y110{bottom:466.364600pt;}
.y1a1{bottom:467.816040pt;}
.y53{bottom:470.482707pt;}
.y20a{bottom:470.734333pt;}
.ye4{bottom:472.067667pt;}
.y16b{bottom:473.149373pt;}
.ybc{bottom:474.364600pt;}
.y1c0{bottom:474.482707pt;}
.y1f1{bottom:474.768027pt;}
.y27{bottom:477.031267pt;}
.y8{bottom:480.748307pt;}
.y13a{bottom:482.364600pt;}
.y10f{bottom:483.697933pt;}
.y1a0{bottom:486.482707pt;}
.y52{bottom:489.149373pt;}
.y209{bottom:489.401000pt;}
.ye3{bottom:490.734333pt;}
.ybb{bottom:491.697933pt;}
.y16a{bottom:491.816040pt;}
.y1bf{bottom:493.149373pt;}
.y1f0{bottom:493.434693pt;}
.y26{bottom:494.364600pt;}
.y7{bottom:499.414973pt;}
.y10e{bottom:501.031267pt;}
.y19f{bottom:505.149373pt;}
.y51{bottom:507.816040pt;}
.y208{bottom:508.067667pt;}
.ye2{bottom:509.031267pt;}
.y169{bottom:510.482707pt;}
.y25{bottom:511.697933pt;}
.y1be{bottom:511.816040pt;}
.y1ef{bottom:512.101360pt;}
.y6{bottom:518.081640pt;}
.y10d{bottom:518.364600pt;}
.y139{bottom:518.734333pt;}
.y19e{bottom:523.816040pt;}
.ye1{bottom:526.364600pt;}
.y50{bottom:526.482707pt;}
.yba{bottom:526.734333pt;}
.y24{bottom:529.031267pt;}
.y168{bottom:529.149373pt;}
.y1bd{bottom:530.482707pt;}
.y1ee{bottom:530.768027pt;}
.y10c{bottom:535.697933pt;}
.y5{bottom:536.748307pt;}
.y138{bottom:537.401000pt;}
.y19d{bottom:542.112973pt;}
.ye0{bottom:543.697933pt;}
.y4f{bottom:545.149373pt;}
.yb9{bottom:545.401000pt;}
.y23{bottom:546.734333pt;}
.y167{bottom:547.816040pt;}
.y73{bottom:548.546307pt;}
.y1bc{bottom:549.149373pt;}
.y1ed{bottom:549.434693pt;}
.y10b{bottom:553.031267pt;}
.y137{bottom:556.067667pt;}
.y19c{bottom:559.446307pt;}
.ydf{bottom:561.031267pt;}
.y4d{bottom:563.816040pt;}
.yb8{bottom:564.067667pt;}
.y166{bottom:566.482707pt;}
.y4e{bottom:567.212973pt;}
.y1bb{bottom:567.816040pt;}
.y1ec{bottom:568.101360pt;}
.y136{bottom:574.734333pt;}
.y19b{bottom:576.779640pt;}
.yde{bottom:578.364600pt;}
.y4c{bottom:582.482707pt;}
.yb7{bottom:582.734333pt;}
.y165{bottom:585.149373pt;}
.y1ba{bottom:586.482707pt;}
.y1eb{bottom:586.768027pt;}
.y10a{bottom:589.401000pt;}
.y135{bottom:593.401000pt;}
.y19a{bottom:594.112973pt;}
.ydd{bottom:595.697933pt;}
.y4b{bottom:601.149373pt;}
.yb6{bottom:601.401000pt;}
.y164{bottom:603.816040pt;}
.y1b9{bottom:605.149373pt;}
.y1ea{bottom:605.434693pt;}
.y109{bottom:608.067667pt;}
.y199{bottom:611.446307pt;}
.y134{bottom:612.067667pt;}
.ydc{bottom:613.031267pt;}
.y4a{bottom:619.816040pt;}
.yb5{bottom:620.067667pt;}
.y163{bottom:622.112973pt;}
.y1b8{bottom:623.816040pt;}
.y1e9{bottom:624.101360pt;}
.y108{bottom:626.734333pt;}
.y198{bottom:628.779640pt;}
.ydb{bottom:630.364600pt;}
.y133{bottom:630.734333pt;}
.y49{bottom:638.482707pt;}
.yb4{bottom:638.734333pt;}
.y162{bottom:639.446307pt;}
.y1b7{bottom:642.482707pt;}
.y1e8{bottom:642.768027pt;}
.y107{bottom:645.401000pt;}
.y197{bottom:646.112973pt;}
.yda{bottom:647.697933pt;}
.y132{bottom:649.401000pt;}
.y4{bottom:651.880707pt;}
.y161{bottom:656.779640pt;}
.y48{bottom:657.149373pt;}
.yb3{bottom:657.401000pt;}
.y184{bottom:659.867773pt;}
.y8c{bottom:660.546307pt;}
.y1b6{bottom:661.149373pt;}
.y1e7{bottom:661.434693pt;}
.y196{bottom:663.446307pt;}
.y106{bottom:664.067667pt;}
.yd9{bottom:665.031267pt;}
.y131{bottom:668.067667pt;}
.y3{bottom:670.547373pt;}
.y160{bottom:674.112973pt;}
.y47{bottom:675.816040pt;}
.yb2{bottom:676.067667pt;}
.y1b5{bottom:679.816040pt;}
.y1e6{bottom:680.101360pt;}
.y195{bottom:680.779640pt;}
.yd8{bottom:682.364600pt;}
.y105{bottom:682.734333pt;}
.y130{bottom:686.734333pt;}
.y2{bottom:689.214040pt;}
.y15f{bottom:691.446307pt;}
.y45{bottom:694.482707pt;}
.yb1{bottom:694.734333pt;}
.y46{bottom:697.879640pt;}
.y194{bottom:698.112973pt;}
.y1b4{bottom:698.482707pt;}
.y1e5{bottom:698.768027pt;}
.yd7{bottom:699.697933pt;}
.y104{bottom:701.401000pt;}
.y12f{bottom:705.401000pt;}
.y15e{bottom:708.779640pt;}
.y44{bottom:713.149373pt;}
.yb0{bottom:713.401000pt;}
.y193{bottom:715.446307pt;}
.yd6{bottom:717.031267pt;}
.y1b3{bottom:717.149373pt;}
.y1e4{bottom:717.434693pt;}
.y103{bottom:720.067667pt;}
.y12e{bottom:724.067667pt;}
.y15d{bottom:726.112973pt;}
.y43{bottom:731.816040pt;}
.yaf{bottom:732.067667pt;}
.y192{bottom:732.779640pt;}
.yd5{bottom:734.364600pt;}
.y1b2{bottom:735.816040pt;}
.y1e3{bottom:736.101360pt;}
.y22{bottom:737.401000pt;}
.y102{bottom:738.734333pt;}
.y12d{bottom:742.734333pt;}
.y15c{bottom:743.446307pt;}
.y42{bottom:750.482707pt;}
.yae{bottom:750.734333pt;}
.yd4{bottom:751.697933pt;}
.y1b1{bottom:754.482707pt;}
.y1e2{bottom:754.768027pt;}
.y101{bottom:757.401000pt;}
.y15b{bottom:760.779640pt;}
.y12c{bottom:761.031267pt;}
.y183{bottom:763.867773pt;}
.y41{bottom:769.149373pt;}
.yad{bottom:769.401000pt;}
.y226{bottom:769.559067pt;}
.y1b0{bottom:773.149373pt;}
.y1e1{bottom:773.434693pt;}
.y100{bottom:776.067667pt;}
.y15a{bottom:778.112973pt;}
.y12b{bottom:778.364600pt;}
.y40{bottom:787.816040pt;}
.yac{bottom:788.067667pt;}
.y1af{bottom:791.816040pt;}
.y1e0{bottom:792.101360pt;}
.yff{bottom:794.734333pt;}
.y159{bottom:795.446307pt;}
.y12a{bottom:795.697933pt;}
.y3f{bottom:806.482707pt;}
.yab{bottom:806.734333pt;}
.y191{bottom:809.879640pt;}
.y1ae{bottom:810.482707pt;}
.y1df{bottom:810.768027pt;}
.y158{bottom:812.779640pt;}
.yfe{bottom:813.031267pt;}
.y3e{bottom:825.149373pt;}
.yaa{bottom:825.401000pt;}
.y1ad{bottom:829.149373pt;}
.y1de{bottom:829.434693pt;}
.y157{bottom:830.112973pt;}
.y21{bottom:830.364600pt;}
.y3d{bottom:843.816040pt;}
.ya9{bottom:844.067667pt;}
.y72{bottom:847.212973pt;}
.y156{bottom:847.446307pt;}
.yfd{bottom:847.697933pt;}
.y1dd{bottom:848.101360pt;}
.y3c{bottom:862.482707pt;}
.ya8{bottom:862.734333pt;}
.y155{bottom:864.779640pt;}
.y20{bottom:865.031267pt;}
.y182{bottom:867.867773pt;}
.y3a{bottom:881.149373pt;}
.ya7{bottom:881.401000pt;}
.y154{bottom:882.112973pt;}
.y1f{bottom:882.364600pt;}
.y3b{bottom:884.546307pt;}
.y1dc{bottom:885.434693pt;}
.h8{height:24.666680pt;}
.hf{height:24.667320pt;}
.he{height:31.961807pt;}
.hc{height:35.157989pt;}
.h6{height:35.546875pt;}
.h20{height:37.429688pt;}
.hb{height:39.101562pt;}
.h7{height:41.588542pt;}
.h19{height:42.000653pt;}
.h1e{height:42.882812pt;}
.h18{height:45.747396pt;}
.h5{height:47.942708pt;}
.h9{height:49.984000pt;}
.h4{height:52.736979pt;}
.h3{height:54.528000pt;}
.h17{height:76.667320pt;}
.h14{height:78.333653pt;}
.h13{height:94.000653pt;}
.h1a{height:111.333987pt;}
.h10{height:129.031907pt;}
.h1c{height:155.666933pt;}
.hd{height:215.334000pt;}
.h21{height:237.575067pt;}
.h12{height:250.000667pt;}
.h11{height:251.666933pt;}
.h1b{height:267.334000pt;}
.h1f{height:896.000000pt;}
.h16{height:899.415333pt;}
.ha{height:899.666933pt;}
.h2{height:899.782000pt;}
.h15{height:900.033733pt;}
.h1d{height:904.067333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w9{width:459.681333pt;}
.w14{width:459.754667pt;}
.w3{width:461.441333pt;}
.w10{width:461.485333pt;}
.w19{width:461.720000pt;}
.w4{width:461.793333pt;}
.w17{width:461.910667pt;}
.wd{width:461.984000pt;}
.wb{width:462.116000pt;}
.wa{width:462.174667pt;}
.w12{width:462.204000pt;}
.w16{width:462.248000pt;}
.w11{width:462.438667pt;}
.we{width:462.658667pt;}
.w1a{width:462.732000pt;}
.w18{width:462.746667pt;}
.wc{width:462.952000pt;}
.w7{width:463.025333pt;}
.w13{width:463.157333pt;}
.w1b{width:487.344533pt;}
.w6{width:498.678533pt;}
.w8{width:499.344533pt;}
.w5{width:499.411867pt;}
.w15{width:502.011200pt;}
.wf{width:503.685200pt;}
.w2{width:508.971867pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:4.033600pt;}
.x24{left:5.333333pt;}
.x15{left:8.111377pt;}
.x1f{left:12.069712pt;}
.xe{left:13.294800pt;}
.x23{left:14.222223pt;}
.x25{left:22.931333pt;}
.xf{left:27.760933pt;}
.x27{left:33.333333pt;}
.x14{left:40.113067pt;}
.xb{left:41.828933pt;}
.xd{left:50.404133pt;}
.x12{left:52.033657pt;}
.x3{left:53.771467pt;}
.xc{left:65.378133pt;}
.x19{left:68.372133pt;}
.x17{left:70.363067pt;}
.x2{left:86.283467pt;}
.x4{left:87.331467pt;}
.x1a{left:100.033600pt;}
.x1e{left:120.054533pt;}
.x22{left:145.847733pt;}
.x1{left:147.147467pt;}
.x13{left:150.895867pt;}
.x26{left:153.181067pt;}
.xa{left:166.132667pt;}
.x10{left:184.004400pt;}
.x20{left:190.183200pt;}
.x1d{left:280.169600pt;}
.x1b{left:308.335733pt;}
.x18{left:331.138800pt;}
.x7{left:356.510267pt;}
.x6{left:367.710800pt;}
.x8{left:381.446533pt;}
.x11{left:391.550000pt;}
.x5{left:405.974533pt;}
.x1c{left:445.491733pt;}
.x21{left:485.600400pt;}
.x16{left:490.489200pt;}
}




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