
    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_dd91f69457b024fff7a0200e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_01f00c7e9ab3a63c67df16bf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2e870819b2d871f395e05fb2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b4d3fb6f0ceb326f70194c5d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_b9150eb8422e83e1bfbbac0e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.767578;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_5b0b98bc7ec6721c268e2b0c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.035156;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_aa04be8801057803201424d1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.003906;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_15e1fc9d8ffa20a76a1596c1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.783691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_6066613f8d459f7ef93ffa13.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;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_b28ccd7c63408b359026dc8c.woff2')format("woff");}.fff{font-family:fff;line-height:0.752441;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:ff10;src:url('chunks/assets/font_a22c7a005b6bd341e8613a6e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.035156;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;}
.m2{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);}
.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;}
.ls10{letter-spacing:-0.378000px;}
.ls8{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.252000px;}
.lsf{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.211800px;}
.ls19{letter-spacing:-0.162000px;}
.ls13{letter-spacing:-0.155400px;}
.ls5{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.072000px;}
.ls15{letter-spacing:-0.018000px;}
.ls2{letter-spacing:-0.000003px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.054000px;}
.ls14{letter-spacing:0.057600px;}
.ls0{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.102600px;}
.ls11{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.162000px;}
.ls18{letter-spacing:0.198000px;}
.ls3{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.264000px;}
.lsc{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.504000px;}
.lse{letter-spacing:0.576000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-54.000000px;}
.wse{word-spacing:-47.880000px;}
.ws9{word-spacing:-16.488000px;}
.ws0{word-spacing:-16.344000px;}
.ws1{word-spacing:-16.272000px;}
.ws7{word-spacing:-16.271997px;}
.ws4{word-spacing:-16.200000px;}
.ws3{word-spacing:-16.128000px;}
.wsa{word-spacing:-16.056000px;}
.ws6{word-spacing:-15.984000px;}
.ws8{word-spacing:-15.912000px;}
.ws10{word-spacing:-13.644720px;}
.ws11{word-spacing:-12.366000px;}
.ws5{word-spacing:-12.204000px;}
.ws12{word-spacing:-11.952000px;}
.wsb{word-spacing:-11.826000px;}
.wsd{word-spacing:-10.820880px;}
.wsf{word-spacing:-10.665480px;}
.ws2{word-spacing:0.000000px;}
._15{margin-left:-1617.696000px;}
._14{margin-left:-776.664000px;}
._1c{margin-left:-250.535880px;}
._22{margin-left:-234.345240px;}
._1e{margin-left:-216.193680px;}
._23{margin-left:-78.479520px;}
._20{margin-left:-67.873680px;}
._21{margin-left:-64.993680px;}
._24{margin-left:-54.515160px;}
._1f{margin-left:-43.190640px;}
._10{margin-left:-20.616000px;}
._4{margin-left:-4.824000px;}
._3{margin-left:-3.816000px;}
._5{margin-left:-2.808000px;}
._a{margin-left:-1.008000px;}
._0{width:1.054080px;}
._f{width:2.592000px;}
._d{width:3.936000px;}
._c{width:5.184000px;}
._e{width:6.696000px;}
._12{width:7.920000px;}
._11{width:9.936000px;}
._9{width:10.944000px;}
._1a{width:12.264000px;}
._17{width:13.512000px;}
._13{width:14.688000px;}
._6{width:17.928000px;}
._2{width:19.800000px;}
._1{width:20.808000px;}
._b{width:22.752000px;}
._7{width:26.784000px;}
._8{width:27.889920px;}
._1d{width:36.005760px;}
._1b{width:2034.864000px;}
._18{width:2072.880000px;}
._19{width:2111.328000px;}
._16{width:2322.648000px;}
.fc2{color:transparent;}
.fc1{color:rgb(50,50,50);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs6{font-size:47.880000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.120000px;}
.fs2{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y12e{bottom:2.880000px;}
.y129{bottom:2.970000px;}
.y126{bottom:3.240000px;}
.y15f{bottom:3.420000px;}
.y105{bottom:3.600000px;}
.y108{bottom:3.690000px;}
.y161{bottom:4.050000px;}
.y15e{bottom:4.140000px;}
.y4a{bottom:6.750000px;}
.y121{bottom:8.460000px;}
.y12c{bottom:9.810000px;}
.y13f{bottom:9.900000px;}
.y167{bottom:9.990000px;}
.y166{bottom:10.440000px;}
.y154{bottom:10.530000px;}
.y184{bottom:14.940000px;}
.y177{bottom:15.030000px;}
.y13a{bottom:17.100000px;}
.y13d{bottom:17.190000px;}
.y138{bottom:17.220000px;}
.y86{bottom:17.460000px;}
.y8b{bottom:17.550000px;}
.y8c{bottom:17.640000px;}
.y12b{bottom:17.820000px;}
.y125{bottom:17.910000px;}
.y137{bottom:17.940000px;}
.y91{bottom:18.090000px;}
.y85{bottom:19.260000px;}
.y84{bottom:20.070000px;}
.y88{bottom:21.060000px;}
.y189{bottom:21.090000px;}
.y180{bottom:21.150000px;}
.y5d{bottom:21.330000px;}
.y175{bottom:21.780000px;}
.y39{bottom:21.870000px;}
.y43{bottom:21.960000px;}
.y188{bottom:21.990000px;}
.y18{bottom:23.130000px;}
.y22{bottom:23.220000px;}
.yfd{bottom:23.760000px;}
.y32{bottom:24.300000px;}
.y142{bottom:24.390000px;}
.y127{bottom:24.480000px;}
.y164{bottom:24.660000px;}
.yfe{bottom:24.930000px;}
.y15c{bottom:25.110000px;}
.y163{bottom:25.200000px;}
.y4e{bottom:25.380000px;}
.yd6{bottom:26.820000px;}
.y98{bottom:26.910000px;}
.y92{bottom:28.170000px;}
.yd9{bottom:29.160000px;}
.y194{bottom:29.700000px;}
.yd3{bottom:30.510000px;}
.y195{bottom:30.600000px;}
.ye0{bottom:31.050000px;}
.y134{bottom:31.770000px;}
.y133{bottom:32.490000px;}
.y124{bottom:32.580000px;}
.y136{bottom:32.610000px;}
.yd2{bottom:34.020000px;}
.y36{bottom:35.280000px;}
.yd8{bottom:35.550000px;}
.y8d{bottom:35.640000px;}
.y16{bottom:35.820000px;}
.y3b{bottom:36.540000px;}
.ydd{bottom:39.150000px;}
.ydc{bottom:39.240000px;}
.y193{bottom:39.960000px;}
.y4f{bottom:40.320000px;}
.y47{bottom:42.780000px;}
.y4c{bottom:45.000000px;}
.y52{bottom:45.270000px;}
.y132{bottom:47.160000px;}
.y146{bottom:47.190000px;}
.y123{bottom:47.250000px;}
.y42{bottom:48.270000px;}
.y17{bottom:48.420000px;}
.y21{bottom:48.510000px;}
.y37{bottom:48.600000px;}
.ydb{bottom:51.570000px;}
.y96{bottom:53.370000px;}
.y120{bottom:54.180000px;}
.y5f{bottom:55.440000px;}
.y30{bottom:61.020000px;}
.ye1{bottom:61.410000px;}
.y131{bottom:61.830000px;}
.y151{bottom:61.860000px;}
.y58{bottom:63.360000px;}
.y60{bottom:63.450000px;}
.y40{bottom:63.480000px;}
.y46{bottom:63.660000px;}
.y4d{bottom:65.610000px;}
.y4b{bottom:68.130000px;}
.y25{bottom:73.650000px;}
.y29{bottom:73.710000px;}
.y41{bottom:74.640000px;}
.y59{bottom:75.960000px;}
.y148{bottom:76.500000px;}
.y54{bottom:80.640000px;}
.y11f{bottom:85.140000px;}
.y2f{bottom:86.310000px;}
.y57{bottom:88.650000px;}
.y20{bottom:88.740000px;}
.y3f{bottom:88.770000px;}
.y5e{bottom:88.950000px;}
.y1b{bottom:93.870000px;}
.y27{bottom:98.940000px;}
.y2b{bottom:99.000000px;}
.y5a{bottom:101.340000px;}
.y23{bottom:106.470000px;}
.y147{bottom:108.900000px;}
.y18c{bottom:112.410000px;}
.y169{bottom:113.580000px;}
.y56{bottom:113.940000px;}
.y3e{bottom:113.970000px;}
.y1f{bottom:114.060000px;}
.y19{bottom:114.210000px;}
.y11e{bottom:116.100000px;}
.y8a{bottom:119.070000px;}
.y1a{bottom:119.190000px;}
.ye3{bottom:122.040000px;}
.y26{bottom:124.230000px;}
.y2a{bottom:124.290000px;}
.y102{bottom:125.280000px;}
.y168{bottom:128.970000px;}
.y6d{bottom:129.420000px;}
.ye2{bottom:130.590000px;}
.y55{bottom:139.230000px;}
.y1e{bottom:139.260000px;}
.y53{bottom:139.410000px;}
.yf7{bottom:139.860000px;}
.yc4{bottom:142.830000px;}
.y3a{bottom:144.180000px;}
.y165{bottom:146.250000px;}
.y11d{bottom:147.060000px;}
.y18b{bottom:148.050000px;}
.yaa{bottom:152.460000px;}
.y101{bottom:158.220000px;}
.y6c{bottom:162.360000px;}
.y2d{bottom:164.520000px;}
.y1d{bottom:164.550000px;}
.ydf{bottom:170.370000px;}
.yf6{bottom:172.800000px;}
.yc3{bottom:175.770000px;}
.y162{bottom:176.220000px;}
.y11c{bottom:178.050000px;}
.y18a{bottom:183.690000px;}
.y3d{bottom:183.780000px;}
.y1c{bottom:189.840000px;}
.y100{bottom:194.130000px;}
.y6b{bottom:195.300000px;}
.y145{bottom:197.550000px;}
.ya9{bottom:200.520000px;}
.yf5{bottom:208.710000px;}
.yc2{bottom:208.800000px;}
.y11b{bottom:209.010000px;}
.y187{bottom:219.330000px;}
.y6a{bottom:228.270000px;}
.ya8{bottom:233.490000px;}
.y160{bottom:235.650000px;}
.yff{bottom:236.820000px;}
.y89{bottom:238.260000px;}
.y11a{bottom:240.060000px;}
.yc1{bottom:241.770000px;}
.y15d{bottom:252.840000px;}
.y186{bottom:255.000000px;}
.yf4{bottom:256.710000px;}
.y144{bottom:256.980000px;}
.y69{bottom:261.210000px;}
.ya7{bottom:266.430000px;}
.y15b{bottom:270.120000px;}
.y87{bottom:272.190000px;}
.yc0{bottom:274.710000px;}
.y3c{bottom:276.060000px;}
.yfc{bottom:276.510000px;}
.yde{bottom:279.120000px;}
.yf3{bottom:289.740000px;}
.y185{bottom:290.730000px;}
.y68{bottom:294.240000px;}
.ya6{bottom:299.370000px;}
.y83{bottom:306.120000px;}
.ybf{bottom:307.650000px;}
.y38{bottom:315.660000px;}
.y143{bottom:316.290000px;}
.yda{bottom:318.810000px;}
.y15{bottom:321.150000px;}
.yf2{bottom:322.680000px;}
.y183{bottom:328.620000px;}
.y15a{bottom:329.430000px;}
.ya5{bottom:332.400000px;}
.y67{bottom:334.470000px;}
.y118{bottom:342.930000px;}
.ybe{bottom:343.560000px;}
.y159{bottom:345.720000px;}
.y35{bottom:355.170000px;}
.yf1{bottom:355.620000px;}
.y66{bottom:359.490000px;}
.y141{bottom:361.020000px;}
.ya4{bottom:365.340000px;}
.y182{bottom:367.770000px;}
.yd7{bottom:383.250000px;}
.y65{bottom:385.230000px;}
.y117{bottom:388.110000px;}
.yf0{bottom:388.560000px;}
.y158{bottom:390.360000px;}
.ybd{bottom:391.620000px;}
.ya3{bottom:401.160000px;}
.y14{bottom:401.970000px;}
.y181{bottom:403.410000px;}
.yfb{bottom:409.530000px;}
.y140{bottom:420.330000px;}
.y157{bottom:420.420000px;}
.y116{bottom:421.050000px;}
.yef{bottom:421.500000px;}
.ybc{bottom:424.560000px;}
.y64{bottom:427.710000px;}
.y82{bottom:433.560000px;}
.y17f{bottom:439.050000px;}
.y34{bottom:443.910000px;}
.y13{bottom:447.150000px;}
.ya2{bottom:449.220000px;}
.y156{bottom:450.480000px;}
.y115{bottom:453.990000px;}
.yee{bottom:457.410000px;}
.ybb{bottom:457.500000px;}
.y33{bottom:461.910000px;}
.y13e{bottom:464.970000px;}
.y63{bottom:465.870000px;}
.y17e{bottom:474.780000px;}
.y12{bottom:480.090000px;}
.y155{bottom:480.540000px;}
.y81{bottom:481.530000px;}
.ya1{bottom:482.250000px;}
.yba{bottom:490.440000px;}
.y114{bottom:494.220000px;}
.yd5{bottom:494.850000px;}
.y13c{bottom:495.030000px;}
.y62{bottom:504.030000px;}
.y31{bottom:504.390000px;}
.yed{bottom:505.470000px;}
.y17d{bottom:510.420000px;}
.y153{bottom:510.600000px;}
.y11{bottom:513.030000px;}
.y80{bottom:514.470000px;}
.ya0{bottom:515.190000px;}
.yb9{bottom:523.380000px;}
.y61{bottom:532.830000px;}
.yd4{bottom:534.540000px;}
.yec{bottom:538.410000px;}
.y13b{bottom:539.760000px;}
.y152{bottom:540.660000px;}
.y113{bottom:545.250000px;}
.y10{bottom:545.970000px;}
.y17c{bottom:546.060000px;}
.y2e{bottom:546.960000px;}
.y7f{bottom:547.410000px;}
.y9f{bottom:548.130000px;}
.yb8{bottom:556.410000px;}
.y5c{bottom:565.860000px;}
.yeb{bottom:571.350000px;}
.yd1{bottom:574.320000px;}
.y112{bottom:578.190000px;}
.yf{bottom:580.260000px;}
.y7e{bottom:580.350000px;}
.y17b{bottom:581.700000px;}
.y9e{bottom:584.040000px;}
.y139{bottom:584.490000px;}
.y150{bottom:585.300000px;}
.yfa{bottom:589.350000px;}
.yb7{bottom:592.230000px;}
.yea{bottom:604.380000px;}
.y111{bottom:611.220000px;}
.y17a{bottom:617.340000px;}
.yf9{bottom:622.290000px;}
.y7d{bottom:628.320000px;}
.y135{bottom:629.130000px;}
.ye{bottom:631.200000px;}
.y9d{bottom:632.010000px;}
.ye9{bottom:637.320000px;}
.yb6{bottom:640.290000px;}
.y110{bottom:644.160000px;}
.y179{bottom:653.010000px;}
.yf8{bottom:658.230000px;}
.y14f{bottom:659.310000px;}
.y7c{bottom:661.290000px;}
.yd{bottom:664.170000px;}
.y9c{bottom:665.070000px;}
.ye8{bottom:670.290000px;}
.y5b{bottom:672.450000px;}
.yb5{bottom:673.260000px;}
.y130{bottom:673.890000px;}
.y10f{bottom:677.130000px;}
.y2c{bottom:688.290000px;}
.y178{bottom:688.650000px;}
.y7b{bottom:694.320000px;}
.yc{bottom:697.200000px;}
.y9b{bottom:698.010000px;}
.ye7{bottom:703.230000px;}
.y14e{bottom:704.040000px;}
.yb4{bottom:706.200000px;}
.y10e{bottom:710.070000px;}
.y51{bottom:712.050000px;}
.y176{bottom:726.540000px;}
.y7a{bottom:727.260000px;}
.yb{bottom:730.140000px;}
.y9a{bottom:733.830000px;}
.ye6{bottom:736.170000px;}
.yb3{bottom:739.230000px;}
.y10d{bottom:745.980000px;}
.y12f{bottom:747.870000px;}
.y14d{bottom:748.770000px;}
.yd0{bottom:754.170000px;}
.y79{bottom:760.200000px;}
.ya{bottom:763.080000px;}
.y174{bottom:765.780000px;}
.y99{bottom:767.940000px;}
.ye5{bottom:769.200000px;}
.yb2{bottom:772.170000px;}
.y97{bottom:776.490000px;}
.y12d{bottom:777.930000px;}
.y14c{bottom:778.830000px;}
.ycf{bottom:787.200000px;}
.y78{bottom:793.140000px;}
.y10c{bottom:794.040000px;}
.y12a{bottom:794.220000px;}
.y14b{bottom:795.030000px;}
.y9{bottom:796.020000px;}
.y199{bottom:804.480000px;}
.ye4{bottom:805.020000px;}
.yb1{bottom:805.110000px;}
.y95{bottom:816.270000px;}
.y173{bottom:817.080000px;}
.yce{bottom:820.140000px;}
.y128{bottom:824.190000px;}
.y14a{bottom:825.090000px;}
.y77{bottom:826.080000px;}
.y10b{bottom:826.980000px;}
.y8{bottom:828.960000px;}
.y122{bottom:840.480000px;}
.yb0{bottom:841.020000px;}
.y198{bottom:851.100000px;}
.ycd{bottom:853.080000px;}
.y76{bottom:859.110000px;}
.y7{bottom:861.990000px;}
.y172{bottom:862.260000px;}
.y10a{bottom:862.800000px;}
.y50{bottom:869.100000px;}
.y149{bottom:869.820000px;}
.y28{bottom:869.910000px;}
.y197{bottom:873.060000px;}
.ycc{bottom:886.020000px;}
.yaf{bottom:889.080000px;}
.y75{bottom:892.050000px;}
.y6{bottom:894.930000px;}
.y171{bottom:895.200000px;}
.y109{bottom:896.910000px;}
.y119{bottom:899.880000px;}
.y107{bottom:905.460000px;}
.y196{bottom:907.080000px;}
.y49{bottom:908.700000px;}
.y94{bottom:914.910000px;}
.y192{bottom:917.880000px;}
.ycb{bottom:918.960000px;}
.yae{bottom:922.020000px;}
.y106{bottom:922.740000px;}
.y74{bottom:924.990000px;}
.y170{bottom:928.140000px;}
.y5{bottom:929.220000px;}
.y104{bottom:939.930000px;}
.y93{bottom:948.840000px;}
.yca{bottom:951.990000px;}
.yad{bottom:954.960000px;}
.y73{bottom:957.930000px;}
.y16f{bottom:961.080000px;}
.y191{bottom:970.800000px;}
.y103{bottom:972.960000px;}
.y4{bottom:980.160000px;}
.y90{bottom:982.770000px;}
.yc9{bottom:987.810000px;}
.yac{bottom:987.900000px;}
.y16e{bottom:994.110000px;}
.y48{bottom:994.470000px;}
.y72{bottom:1005.900000px;}
.y190{bottom:1006.440000px;}
.y24{bottom:1011.300000px;}
.yab{bottom:1023.810000px;}
.y3{bottom:1026.690000px;}
.y16d{bottom:1028.400000px;}
.y45{bottom:1033.980000px;}
.yc8{bottom:1035.870000px;}
.y71{bottom:1038.840000px;}
.y18f{bottom:1044.330000px;}
.yc7{bottom:1068.840000px;}
.y70{bottom:1071.900000px;}
.y2{bottom:1073.340000px;}
.y16c{bottom:1079.370000px;}
.y18e{bottom:1083.600000px;}
.y8f{bottom:1087.020000px;}
.yc6{bottom:1101.780000px;}
.y6f{bottom:1104.840000px;}
.y16b{bottom:1112.310000px;}
.y44{bottom:1115.370000px;}
.y18d{bottom:1119.240000px;}
.y8e{bottom:1120.950000px;}
.y1{bottom:1129.140000px;}
.yc5{bottom:1137.690000px;}
.y6e{bottom:1137.780000px;}
.y16a{bottom:1146.330000px;}
.h4c{height:14.670000px;}
.h41{height:15.480000px;}
.h3f{height:15.570000px;}
.h4a{height:16.470000px;}
.h2a{height:17.190000px;}
.h2c{height:17.280000px;}
.h40{height:29.250000px;}
.h46{height:29.340000px;}
.h1f{height:33.930000px;}
.h4f{height:35.640000px;}
.h50{height:35.670000px;}
.h51{height:35.730000px;}
.h1c{height:35.806641px;}
.h4d{height:36.090000px;}
.h24{height:36.861328px;}
.h52{height:36.900000px;}
.h4e{height:36.990000px;}
.h53{height:37.020000px;}
.hf{height:38.790000px;}
.h14{height:38.880000px;}
.h3d{height:39.313477px;}
.h26{height:39.690000px;}
.h23{height:39.780000px;}
.hd{height:42.480000px;}
.hc{height:42.570000px;}
.h44{height:43.920000px;}
.h43{height:43.950000px;}
.h45{height:44.010000px;}
.h2e{height:47.622832px;}
.h2f{height:49.025566px;}
.h3e{height:49.213095px;}
.h54{height:52.920000px;}
.h4b{height:53.709961px;}
.h1e{height:55.291992px;}
.h2b{height:55.503491px;}
.h39{height:56.214804px;}
.h35{height:56.214808px;}
.h33{height:56.214811px;}
.h32{height:56.214816px;}
.h36{height:56.214818px;}
.h37{height:56.214820px;}
.h34{height:56.214822px;}
.h31{height:56.214824px;}
.h3b{height:56.214825px;}
.h3a{height:56.214828px;}
.h38{height:56.214834px;}
.h30{height:56.214844px;}
.h3c{height:58.590000px;}
.h47{height:58.620000px;}
.h1b{height:61.558418px;}
.h28{height:64.440000px;}
.h6{height:65.520000px;}
.h4{height:65.526152px;}
.h5{height:71.613281px;}
.h42{height:73.260000px;}
.h49{height:73.290000px;}
.h3{height:73.722656px;}
.h11{height:74.004637px;}
.h17{height:74.004642px;}
.h19{height:74.004643px;}
.he{height:74.004654px;}
.h7{height:74.953125px;}
.h15{height:80.580000px;}
.h16{height:85.050000px;}
.h48{height:87.930000px;}
.h13{height:91.560000px;}
.h22{height:98.640000px;}
.h1d{height:104.220000px;}
.h21{height:104.250000px;}
.h1a{height:105.870000px;}
.h25{height:108.750000px;}
.h29{height:109.890000px;}
.h2{height:110.583984px;}
.h27{height:111.600000px;}
.h20{height:119.190000px;}
.h12{height:131.070000px;}
.h9{height:141.330000px;}
.ha{height:141.390000px;}
.h18{height:156.330000px;}
.h10{height:170.670000px;}
.hb{height:181.620000px;}
.h8{height:206.940000px;}
.h2d{height:254.280000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:20.250000px;}
.w1d{width:20.610000px;}
.w7{width:20.970000px;}
.w27{width:27.360000px;}
.w2a{width:27.390000px;}
.w28{width:27.450000px;}
.w29{width:27.480000px;}
.w17{width:31.140000px;}
.wb{width:31.500000px;}
.w2d{width:31.950000px;}
.w2c{width:32.040000px;}
.w11{width:54.390000px;}
.w6{width:55.200000px;}
.w1c{width:63.120000px;}
.w19{width:63.180000px;}
.w15{width:72.990000px;}
.wf{width:73.350000px;}
.w14{width:73.470000px;}
.w18{width:73.620000px;}
.we{width:73.830000px;}
.w26{width:84.000000px;}
.w1b{width:85.050000px;}
.w3{width:102.630000px;}
.w5{width:104.400000px;}
.w1e{width:135.000000px;}
.wc{width:135.720000px;}
.w13{width:136.440000px;}
.w8{width:136.800000px;}
.wd{width:137.160000px;}
.w9{width:147.180000px;}
.w16{width:147.810000px;}
.w1a{width:147.900000px;}
.wa{width:148.170000px;}
.w10{width:148.620000px;}
.w21{width:193.710000px;}
.w2e{width:201.990000px;}
.w1f{width:219.900000px;}
.w22{width:225.660000px;}
.w23{width:225.750000px;}
.w20{width:263.460000px;}
.w24{width:318.660000px;}
.w25{width:357.600000px;}
.w2b{width:411.090000px;}
.w4{width:470.040000px;}
.w2f{width:677.070000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2f{left:2.070000px;}
.x2c{left:3.240000px;}
.x1c{left:6.390000px;}
.xe{left:8.100000px;}
.x18{left:10.440000px;}
.x26{left:12.240000px;}
.x10{left:13.590000px;}
.xf{left:14.670000px;}
.x21{left:15.750000px;}
.x49{left:17.130000px;}
.x27{left:19.980000px;}
.xc{left:22.320000px;}
.xd{left:24.060000px;}
.x7{left:25.860000px;}
.x13{left:27.090000px;}
.x2d{left:29.160000px;}
.x11{left:31.590000px;}
.x38{left:33.240000px;}
.x25{left:34.380000px;}
.x24{left:36.450000px;}
.xb{left:37.980000px;}
.x36{left:39.450000px;}
.x2e{left:40.620000px;}
.x29{left:42.570000px;}
.x1d{left:43.770000px;}
.x12{left:47.610000px;}
.x30{left:48.900000px;}
.x31{left:51.150000px;}
.x46{left:58.800000px;}
.x3c{left:65.550000px;}
.x15{left:66.780000px;}
.x1a{left:68.490000px;}
.x44{left:72.570000px;}
.x1f{left:73.890000px;}
.x37{left:81.300000px;}
.x3b{left:96.870000px;}
.x5{left:107.999987px;}
.x39{left:109.920000px;}
.x41{left:112.800000px;}
.x3a{left:131.700000px;}
.x2b{left:139.170000px;}
.x32{left:152.670000px;}
.x3f{left:155.550000px;}
.x43{left:160.050000px;}
.x3d{left:161.220000px;}
.x17{left:163.200000px;}
.x34{left:174.450000px;}
.x19{left:184.170000px;}
.x6{left:189.929987px;}
.x3{left:192.089987px;}
.x42{left:193.980000px;}
.x45{left:196.590000px;}
.x8{left:210.630000px;}
.x9{left:211.980000px;}
.x4a{left:221.610000px;}
.x48{left:237.179987px;}
.x1{left:240.779987px;}
.x4b{left:249.780000px;}
.x5b{left:251.669987px;}
.x28{left:258.150000px;}
.x14{left:276.870000px;}
.x4c{left:277.950000px;}
.x4d{left:306.120000px;}
.x2{left:314.939987px;}
.x1b{left:321.690000px;}
.x33{left:327.900000px;}
.x3e{left:333.660000px;}
.x4e{left:362.490000px;}
.x4f{left:390.660000px;}
.x23{left:395.880000px;}
.x50{left:418.740000px;}
.x47{left:426.660000px;}
.x4{left:446.549987px;}
.x1e{left:469.680000px;}
.x51{left:475.080000px;}
.x52{left:503.340000px;}
.x5c{left:519.090000px;}
.x53{left:531.420000px;}
.x5d{left:551.130000px;}
.x2a{left:554.730000px;}
.x40{left:559.320000px;}
.x5e{left:583.080000px;}
.x54{left:587.850000px;}
.x35{left:591.360000px;}
.x55{left:615.960000px;}
.x20{left:617.850000px;}
.x56{left:644.220000px;}
.x22{left:649.350000px;}
.x57{left:672.300000px;}
.xa{left:680.670000px;}
.x58{left:700.470000px;}
.x59{left:728.640000px;}
.x5a{left:756.810000px;}
.x16{left:775.439987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.336000pt;}
.ls8{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.224000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.188267pt;}
.ls19{letter-spacing:-0.144000pt;}
.ls13{letter-spacing:-0.138133pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls15{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:-0.000003pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.048000pt;}
.ls14{letter-spacing:0.051200pt;}
.ls0{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.091200pt;}
.ls11{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.144000pt;}
.ls18{letter-spacing:0.176000pt;}
.ls3{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.234667pt;}
.lsc{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.512000pt;}
.wsc{word-spacing:-48.000000pt;}
.wse{word-spacing:-42.560000pt;}
.ws9{word-spacing:-14.656000pt;}
.ws0{word-spacing:-14.528000pt;}
.ws1{word-spacing:-14.464000pt;}
.ws7{word-spacing:-14.463997pt;}
.ws4{word-spacing:-14.400000pt;}
.ws3{word-spacing:-14.336000pt;}
.wsa{word-spacing:-14.272000pt;}
.ws6{word-spacing:-14.208000pt;}
.ws8{word-spacing:-14.144000pt;}
.ws10{word-spacing:-12.128640pt;}
.ws11{word-spacing:-10.992000pt;}
.ws5{word-spacing:-10.848000pt;}
.ws12{word-spacing:-10.624000pt;}
.wsb{word-spacing:-10.512000pt;}
.wsd{word-spacing:-9.618560pt;}
.wsf{word-spacing:-9.480427pt;}
.ws2{word-spacing:0.000000pt;}
._15{margin-left:-1437.952000pt;}
._14{margin-left:-690.368000pt;}
._1c{margin-left:-222.698560pt;}
._22{margin-left:-208.306880pt;}
._1e{margin-left:-192.172160pt;}
._23{margin-left:-69.759573pt;}
._20{margin-left:-60.332160pt;}
._21{margin-left:-57.772160pt;}
._24{margin-left:-48.457920pt;}
._1f{margin-left:-38.391680pt;}
._10{margin-left:-18.325333pt;}
._4{margin-left:-4.288000pt;}
._3{margin-left:-3.392000pt;}
._5{margin-left:-2.496000pt;}
._a{margin-left:-0.896000pt;}
._0{width:0.936960pt;}
._f{width:2.304000pt;}
._d{width:3.498667pt;}
._c{width:4.608000pt;}
._e{width:5.952000pt;}
._12{width:7.040000pt;}
._11{width:8.832000pt;}
._9{width:9.728000pt;}
._1a{width:10.901333pt;}
._17{width:12.010667pt;}
._13{width:13.056000pt;}
._6{width:15.936000pt;}
._2{width:17.600000pt;}
._1{width:18.496000pt;}
._b{width:20.224000pt;}
._7{width:23.808000pt;}
._8{width:24.791040pt;}
._1d{width:32.005120pt;}
._1b{width:1808.768000pt;}
._18{width:1842.560000pt;}
._19{width:1876.736000pt;}
._16{width:2064.576000pt;}
.fs4{font-size:32.000000pt;}
.fs6{font-size:42.560000pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.440000pt;}
.fs2{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y12e{bottom:2.560000pt;}
.y129{bottom:2.640000pt;}
.y126{bottom:2.880000pt;}
.y15f{bottom:3.040000pt;}
.y105{bottom:3.200000pt;}
.y108{bottom:3.280000pt;}
.y161{bottom:3.600000pt;}
.y15e{bottom:3.680000pt;}
.y4a{bottom:6.000000pt;}
.y121{bottom:7.520000pt;}
.y12c{bottom:8.720000pt;}
.y13f{bottom:8.800000pt;}
.y167{bottom:8.880000pt;}
.y166{bottom:9.280000pt;}
.y154{bottom:9.360000pt;}
.y184{bottom:13.280000pt;}
.y177{bottom:13.360000pt;}
.y13a{bottom:15.200000pt;}
.y13d{bottom:15.280000pt;}
.y138{bottom:15.306667pt;}
.y86{bottom:15.520000pt;}
.y8b{bottom:15.600000pt;}
.y8c{bottom:15.680000pt;}
.y12b{bottom:15.840000pt;}
.y125{bottom:15.920000pt;}
.y137{bottom:15.946667pt;}
.y91{bottom:16.080000pt;}
.y85{bottom:17.120000pt;}
.y84{bottom:17.840000pt;}
.y88{bottom:18.720000pt;}
.y189{bottom:18.746667pt;}
.y180{bottom:18.800000pt;}
.y5d{bottom:18.960000pt;}
.y175{bottom:19.360000pt;}
.y39{bottom:19.440000pt;}
.y43{bottom:19.520000pt;}
.y188{bottom:19.546667pt;}
.y18{bottom:20.560000pt;}
.y22{bottom:20.640000pt;}
.yfd{bottom:21.120000pt;}
.y32{bottom:21.600000pt;}
.y142{bottom:21.680000pt;}
.y127{bottom:21.760000pt;}
.y164{bottom:21.920000pt;}
.yfe{bottom:22.160000pt;}
.y15c{bottom:22.320000pt;}
.y163{bottom:22.400000pt;}
.y4e{bottom:22.560000pt;}
.yd6{bottom:23.840000pt;}
.y98{bottom:23.920000pt;}
.y92{bottom:25.040000pt;}
.yd9{bottom:25.920000pt;}
.y194{bottom:26.400000pt;}
.yd3{bottom:27.120000pt;}
.y195{bottom:27.200000pt;}
.ye0{bottom:27.600000pt;}
.y134{bottom:28.240000pt;}
.y133{bottom:28.880000pt;}
.y124{bottom:28.960000pt;}
.y136{bottom:28.986667pt;}
.yd2{bottom:30.240000pt;}
.y36{bottom:31.360000pt;}
.yd8{bottom:31.600000pt;}
.y8d{bottom:31.680000pt;}
.y16{bottom:31.840000pt;}
.y3b{bottom:32.480000pt;}
.ydd{bottom:34.800000pt;}
.ydc{bottom:34.880000pt;}
.y193{bottom:35.520000pt;}
.y4f{bottom:35.840000pt;}
.y47{bottom:38.026667pt;}
.y4c{bottom:40.000000pt;}
.y52{bottom:40.240000pt;}
.y132{bottom:41.920000pt;}
.y146{bottom:41.946667pt;}
.y123{bottom:42.000000pt;}
.y42{bottom:42.906667pt;}
.y17{bottom:43.040000pt;}
.y21{bottom:43.120000pt;}
.y37{bottom:43.200000pt;}
.ydb{bottom:45.840000pt;}
.y96{bottom:47.440000pt;}
.y120{bottom:48.160000pt;}
.y5f{bottom:49.280000pt;}
.y30{bottom:54.240000pt;}
.ye1{bottom:54.586667pt;}
.y131{bottom:54.960000pt;}
.y151{bottom:54.986667pt;}
.y58{bottom:56.320000pt;}
.y60{bottom:56.400000pt;}
.y40{bottom:56.426667pt;}
.y46{bottom:56.586667pt;}
.y4d{bottom:58.320000pt;}
.y4b{bottom:60.560000pt;}
.y25{bottom:65.466667pt;}
.y29{bottom:65.520000pt;}
.y41{bottom:66.346667pt;}
.y59{bottom:67.520000pt;}
.y148{bottom:68.000000pt;}
.y54{bottom:71.680000pt;}
.y11f{bottom:75.680000pt;}
.y2f{bottom:76.720000pt;}
.y57{bottom:78.800000pt;}
.y20{bottom:78.880000pt;}
.y3f{bottom:78.906667pt;}
.y5e{bottom:79.066667pt;}
.y1b{bottom:83.440000pt;}
.y27{bottom:87.946667pt;}
.y2b{bottom:88.000000pt;}
.y5a{bottom:90.080000pt;}
.y23{bottom:94.640000pt;}
.y147{bottom:96.800000pt;}
.y18c{bottom:99.920000pt;}
.y169{bottom:100.960000pt;}
.y56{bottom:101.280000pt;}
.y3e{bottom:101.306667pt;}
.y1f{bottom:101.386667pt;}
.y19{bottom:101.520000pt;}
.y11e{bottom:103.200000pt;}
.y8a{bottom:105.840000pt;}
.y1a{bottom:105.946667pt;}
.ye3{bottom:108.480000pt;}
.y26{bottom:110.426667pt;}
.y2a{bottom:110.480000pt;}
.y102{bottom:111.360000pt;}
.y168{bottom:114.640000pt;}
.y6d{bottom:115.040000pt;}
.ye2{bottom:116.080000pt;}
.y55{bottom:123.760000pt;}
.y1e{bottom:123.786667pt;}
.y53{bottom:123.920000pt;}
.yf7{bottom:124.320000pt;}
.yc4{bottom:126.960000pt;}
.y3a{bottom:128.160000pt;}
.y165{bottom:130.000000pt;}
.y11d{bottom:130.720000pt;}
.y18b{bottom:131.600000pt;}
.yaa{bottom:135.520000pt;}
.y101{bottom:140.640000pt;}
.y6c{bottom:144.320000pt;}
.y2d{bottom:146.240000pt;}
.y1d{bottom:146.266667pt;}
.ydf{bottom:151.440000pt;}
.yf6{bottom:153.600000pt;}
.yc3{bottom:156.240000pt;}
.y162{bottom:156.640000pt;}
.y11c{bottom:158.266667pt;}
.y18a{bottom:163.280000pt;}
.y3d{bottom:163.360000pt;}
.y1c{bottom:168.746667pt;}
.y100{bottom:172.560000pt;}
.y6b{bottom:173.600000pt;}
.y145{bottom:175.600000pt;}
.ya9{bottom:178.240000pt;}
.yf5{bottom:185.520000pt;}
.yc2{bottom:185.600000pt;}
.y11b{bottom:185.786667pt;}
.y187{bottom:194.960000pt;}
.y6a{bottom:202.906667pt;}
.ya8{bottom:207.546667pt;}
.y160{bottom:209.466667pt;}
.yff{bottom:210.506667pt;}
.y89{bottom:211.786667pt;}
.y11a{bottom:213.386667pt;}
.yc1{bottom:214.906667pt;}
.y15d{bottom:224.746667pt;}
.y186{bottom:226.666667pt;}
.yf4{bottom:228.186667pt;}
.y144{bottom:228.426667pt;}
.y69{bottom:232.186667pt;}
.ya7{bottom:236.826667pt;}
.y15b{bottom:240.106667pt;}
.y87{bottom:241.946667pt;}
.yc0{bottom:244.186667pt;}
.y3c{bottom:245.386667pt;}
.yfc{bottom:245.786667pt;}
.yde{bottom:248.106667pt;}
.yf3{bottom:257.546667pt;}
.y185{bottom:258.426667pt;}
.y68{bottom:261.546667pt;}
.ya6{bottom:266.106667pt;}
.y83{bottom:272.106667pt;}
.ybf{bottom:273.466667pt;}
.y38{bottom:280.586667pt;}
.y143{bottom:281.146667pt;}
.yda{bottom:283.386667pt;}
.y15{bottom:285.466667pt;}
.yf2{bottom:286.826667pt;}
.y183{bottom:292.106667pt;}
.y15a{bottom:292.826667pt;}
.ya5{bottom:295.466667pt;}
.y67{bottom:297.306667pt;}
.y118{bottom:304.826667pt;}
.ybe{bottom:305.386667pt;}
.y159{bottom:307.306667pt;}
.y35{bottom:315.706667pt;}
.yf1{bottom:316.106667pt;}
.y66{bottom:319.546667pt;}
.y141{bottom:320.906667pt;}
.ya4{bottom:324.746667pt;}
.y182{bottom:326.906667pt;}
.yd7{bottom:340.666667pt;}
.y65{bottom:342.426667pt;}
.y117{bottom:344.986667pt;}
.yf0{bottom:345.386667pt;}
.y158{bottom:346.986667pt;}
.ybd{bottom:348.106667pt;}
.ya3{bottom:356.586667pt;}
.y14{bottom:357.306667pt;}
.y181{bottom:358.586667pt;}
.yfb{bottom:364.026667pt;}
.y140{bottom:373.626667pt;}
.y157{bottom:373.706667pt;}
.y116{bottom:374.266667pt;}
.yef{bottom:374.666667pt;}
.ybc{bottom:377.386667pt;}
.y64{bottom:380.186667pt;}
.y82{bottom:385.386667pt;}
.y17f{bottom:390.266667pt;}
.y34{bottom:394.586667pt;}
.y13{bottom:397.466667pt;}
.ya2{bottom:399.306667pt;}
.y156{bottom:400.426667pt;}
.y115{bottom:403.546667pt;}
.yee{bottom:406.586667pt;}
.ybb{bottom:406.666667pt;}
.y33{bottom:410.586667pt;}
.y13e{bottom:413.306667pt;}
.y63{bottom:414.106667pt;}
.y17e{bottom:422.026667pt;}
.y12{bottom:426.746667pt;}
.y155{bottom:427.146667pt;}
.y81{bottom:428.026667pt;}
.ya1{bottom:428.666667pt;}
.yba{bottom:435.946667pt;}
.y114{bottom:439.306667pt;}
.yd5{bottom:439.866667pt;}
.y13c{bottom:440.026667pt;}
.y62{bottom:448.026667pt;}
.y31{bottom:448.346667pt;}
.yed{bottom:449.306667pt;}
.y17d{bottom:453.706667pt;}
.y153{bottom:453.866667pt;}
.y11{bottom:456.026667pt;}
.y80{bottom:457.306667pt;}
.ya0{bottom:457.946667pt;}
.yb9{bottom:465.226667pt;}
.y61{bottom:473.626667pt;}
.yd4{bottom:475.146667pt;}
.yec{bottom:478.586667pt;}
.y13b{bottom:479.786667pt;}
.y152{bottom:480.586667pt;}
.y113{bottom:484.666667pt;}
.y10{bottom:485.306667pt;}
.y17c{bottom:485.386667pt;}
.y2e{bottom:486.186667pt;}
.y7f{bottom:486.586667pt;}
.y9f{bottom:487.226667pt;}
.yb8{bottom:494.586667pt;}
.y5c{bottom:502.986667pt;}
.yeb{bottom:507.866667pt;}
.yd1{bottom:510.506667pt;}
.y112{bottom:513.946667pt;}
.yf{bottom:515.786667pt;}
.y7e{bottom:515.866667pt;}
.y17b{bottom:517.066667pt;}
.y9e{bottom:519.146667pt;}
.y139{bottom:519.546667pt;}
.y150{bottom:520.266667pt;}
.yfa{bottom:523.866667pt;}
.yb7{bottom:526.426667pt;}
.yea{bottom:537.226667pt;}
.y111{bottom:543.306667pt;}
.y17a{bottom:548.746667pt;}
.yf9{bottom:553.146667pt;}
.y7d{bottom:558.506667pt;}
.y135{bottom:559.226667pt;}
.ye{bottom:561.066667pt;}
.y9d{bottom:561.786667pt;}
.ye9{bottom:566.506667pt;}
.yb6{bottom:569.146667pt;}
.y110{bottom:572.586667pt;}
.y179{bottom:580.453333pt;}
.yf8{bottom:585.093333pt;}
.y14f{bottom:586.053333pt;}
.y7c{bottom:587.813333pt;}
.yd{bottom:590.373333pt;}
.y9c{bottom:591.173333pt;}
.ye8{bottom:595.813333pt;}
.y5b{bottom:597.733333pt;}
.yb5{bottom:598.453333pt;}
.y130{bottom:599.013333pt;}
.y10f{bottom:601.893333pt;}
.y2c{bottom:611.813333pt;}
.y178{bottom:612.133333pt;}
.y7b{bottom:617.173333pt;}
.yc{bottom:619.733333pt;}
.y9b{bottom:620.453333pt;}
.ye7{bottom:625.093333pt;}
.y14e{bottom:625.813333pt;}
.yb4{bottom:627.733333pt;}
.y10e{bottom:631.173333pt;}
.y51{bottom:632.933333pt;}
.y176{bottom:645.813333pt;}
.y7a{bottom:646.453333pt;}
.yb{bottom:649.013333pt;}
.y9a{bottom:652.293333pt;}
.ye6{bottom:654.373333pt;}
.yb3{bottom:657.093333pt;}
.y10d{bottom:663.093333pt;}
.y12f{bottom:664.773333pt;}
.y14d{bottom:665.573333pt;}
.yd0{bottom:670.373333pt;}
.y79{bottom:675.733333pt;}
.ya{bottom:678.293333pt;}
.y174{bottom:680.693333pt;}
.y99{bottom:682.613333pt;}
.ye5{bottom:683.733333pt;}
.yb2{bottom:686.373333pt;}
.y97{bottom:690.213333pt;}
.y12d{bottom:691.493333pt;}
.y14c{bottom:692.293333pt;}
.ycf{bottom:699.733333pt;}
.y78{bottom:705.013333pt;}
.y10c{bottom:705.813333pt;}
.y12a{bottom:705.973333pt;}
.y14b{bottom:706.693333pt;}
.y9{bottom:707.573333pt;}
.y199{bottom:715.093333pt;}
.ye4{bottom:715.573333pt;}
.yb1{bottom:715.653333pt;}
.y95{bottom:725.573333pt;}
.y173{bottom:726.293333pt;}
.yce{bottom:729.013333pt;}
.y128{bottom:732.613333pt;}
.y14a{bottom:733.413333pt;}
.y77{bottom:734.293333pt;}
.y10b{bottom:735.093333pt;}
.y8{bottom:736.853333pt;}
.y122{bottom:747.093333pt;}
.yb0{bottom:747.573333pt;}
.y198{bottom:756.533333pt;}
.ycd{bottom:758.293333pt;}
.y76{bottom:763.653333pt;}
.y7{bottom:766.213333pt;}
.y172{bottom:766.453333pt;}
.y10a{bottom:766.933333pt;}
.y50{bottom:772.533333pt;}
.y149{bottom:773.173333pt;}
.y28{bottom:773.253333pt;}
.y197{bottom:776.053333pt;}
.ycc{bottom:787.573333pt;}
.yaf{bottom:790.293333pt;}
.y75{bottom:792.933333pt;}
.y6{bottom:795.493333pt;}
.y171{bottom:795.733333pt;}
.y109{bottom:797.253333pt;}
.y119{bottom:799.893333pt;}
.y107{bottom:804.853333pt;}
.y196{bottom:806.293333pt;}
.y49{bottom:807.733333pt;}
.y94{bottom:813.253333pt;}
.y192{bottom:815.893333pt;}
.ycb{bottom:816.853333pt;}
.yae{bottom:819.573333pt;}
.y106{bottom:820.213333pt;}
.y74{bottom:822.213333pt;}
.y170{bottom:825.013333pt;}
.y5{bottom:825.973333pt;}
.y104{bottom:835.493333pt;}
.y93{bottom:843.413333pt;}
.yca{bottom:846.213333pt;}
.yad{bottom:848.853333pt;}
.y73{bottom:851.493333pt;}
.y16f{bottom:854.293333pt;}
.y191{bottom:862.933333pt;}
.y103{bottom:864.853333pt;}
.y4{bottom:871.253333pt;}
.y90{bottom:873.573333pt;}
.yc9{bottom:878.053333pt;}
.yac{bottom:878.133333pt;}
.y16e{bottom:883.653333pt;}
.y48{bottom:883.973333pt;}
.y72{bottom:894.133333pt;}
.y190{bottom:894.613333pt;}
.y24{bottom:898.933333pt;}
.yab{bottom:910.053333pt;}
.y3{bottom:912.613333pt;}
.y16d{bottom:914.133333pt;}
.y45{bottom:919.093333pt;}
.yc8{bottom:920.773333pt;}
.y71{bottom:923.413333pt;}
.y18f{bottom:928.293333pt;}
.yc7{bottom:950.080000pt;}
.y70{bottom:952.800000pt;}
.y2{bottom:954.080000pt;}
.y16c{bottom:959.440000pt;}
.y18e{bottom:963.200000pt;}
.y8f{bottom:966.240000pt;}
.yc6{bottom:979.360000pt;}
.y6f{bottom:982.080000pt;}
.y16b{bottom:988.720000pt;}
.y44{bottom:991.440000pt;}
.y18d{bottom:994.880000pt;}
.y8e{bottom:996.400000pt;}
.y1{bottom:1003.680000pt;}
.yc5{bottom:1011.280000pt;}
.y6e{bottom:1011.360000pt;}
.y16a{bottom:1018.960000pt;}
.h4c{height:13.040000pt;}
.h41{height:13.760000pt;}
.h3f{height:13.840000pt;}
.h4a{height:14.640000pt;}
.h2a{height:15.280000pt;}
.h2c{height:15.360000pt;}
.h40{height:26.000000pt;}
.h46{height:26.080000pt;}
.h1f{height:30.160000pt;}
.h4f{height:31.680000pt;}
.h50{height:31.706667pt;}
.h51{height:31.760000pt;}
.h1c{height:31.828125pt;}
.h4d{height:32.080000pt;}
.h24{height:32.765625pt;}
.h52{height:32.800000pt;}
.h4e{height:32.880000pt;}
.h53{height:32.906667pt;}
.hf{height:34.480000pt;}
.h14{height:34.560000pt;}
.h3d{height:34.945312pt;}
.h26{height:35.280000pt;}
.h23{height:35.360000pt;}
.hd{height:37.760000pt;}
.hc{height:37.840000pt;}
.h44{height:39.040000pt;}
.h43{height:39.066667pt;}
.h45{height:39.120000pt;}
.h2e{height:42.331406pt;}
.h2f{height:43.578281pt;}
.h3e{height:43.744973pt;}
.h54{height:47.040000pt;}
.h4b{height:47.742188pt;}
.h1e{height:49.148438pt;}
.h2b{height:49.336436pt;}
.h39{height:49.968715pt;}
.h35{height:49.968718pt;}
.h33{height:49.968721pt;}
.h32{height:49.968725pt;}
.h36{height:49.968727pt;}
.h37{height:49.968729pt;}
.h34{height:49.968731pt;}
.h31{height:49.968733pt;}
.h3b{height:49.968734pt;}
.h3a{height:49.968736pt;}
.h38{height:49.968741pt;}
.h30{height:49.968750pt;}
.h3c{height:52.080000pt;}
.h47{height:52.106667pt;}
.h1b{height:54.718594pt;}
.h28{height:57.280000pt;}
.h6{height:58.240000pt;}
.h4{height:58.245469pt;}
.h5{height:63.656250pt;}
.h42{height:65.120000pt;}
.h49{height:65.146667pt;}
.h3{height:65.531250pt;}
.h11{height:65.781900pt;}
.h17{height:65.781904pt;}
.h19{height:65.781905pt;}
.he{height:65.781915pt;}
.h7{height:66.625000pt;}
.h15{height:71.626667pt;}
.h16{height:75.600000pt;}
.h48{height:78.160000pt;}
.h13{height:81.386667pt;}
.h22{height:87.680000pt;}
.h1d{height:92.640000pt;}
.h21{height:92.666667pt;}
.h1a{height:94.106667pt;}
.h25{height:96.666667pt;}
.h29{height:97.680000pt;}
.h2{height:98.296875pt;}
.h27{height:99.200000pt;}
.h20{height:105.946667pt;}
.h12{height:116.506667pt;}
.h9{height:125.626667pt;}
.ha{height:125.680000pt;}
.h18{height:138.960000pt;}
.h10{height:151.706667pt;}
.hb{height:161.440000pt;}
.h8{height:183.946667pt;}
.h2d{height:226.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:18.000000pt;}
.w1d{width:18.320000pt;}
.w7{width:18.640000pt;}
.w27{width:24.320000pt;}
.w2a{width:24.346667pt;}
.w28{width:24.400000pt;}
.w29{width:24.426667pt;}
.w17{width:27.680000pt;}
.wb{width:28.000000pt;}
.w2d{width:28.400000pt;}
.w2c{width:28.480000pt;}
.w11{width:48.346667pt;}
.w6{width:49.066667pt;}
.w1c{width:56.106667pt;}
.w19{width:56.160000pt;}
.w15{width:64.880000pt;}
.wf{width:65.200000pt;}
.w14{width:65.306667pt;}
.w18{width:65.440000pt;}
.we{width:65.626667pt;}
.w26{width:74.666667pt;}
.w1b{width:75.600000pt;}
.w3{width:91.226667pt;}
.w5{width:92.800000pt;}
.w1e{width:120.000000pt;}
.wc{width:120.640000pt;}
.w13{width:121.280000pt;}
.w8{width:121.600000pt;}
.wd{width:121.920000pt;}
.w9{width:130.826667pt;}
.w16{width:131.386667pt;}
.w1a{width:131.466667pt;}
.wa{width:131.706667pt;}
.w10{width:132.106667pt;}
.w21{width:172.186667pt;}
.w2e{width:179.546667pt;}
.w1f{width:195.466667pt;}
.w22{width:200.586667pt;}
.w23{width:200.666667pt;}
.w20{width:234.186667pt;}
.w24{width:283.253333pt;}
.w25{width:317.866667pt;}
.w2b{width:365.413333pt;}
.w4{width:417.813333pt;}
.w2f{width:601.840000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:1.840000pt;}
.x2c{left:2.880000pt;}
.x1c{left:5.680000pt;}
.xe{left:7.200000pt;}
.x18{left:9.280000pt;}
.x26{left:10.880000pt;}
.x10{left:12.080000pt;}
.xf{left:13.040000pt;}
.x21{left:14.000000pt;}
.x49{left:15.226667pt;}
.x27{left:17.760000pt;}
.xc{left:19.840000pt;}
.xd{left:21.386667pt;}
.x7{left:22.986667pt;}
.x13{left:24.080000pt;}
.x2d{left:25.920000pt;}
.x11{left:28.080000pt;}
.x38{left:29.546667pt;}
.x25{left:30.560000pt;}
.x24{left:32.400000pt;}
.xb{left:33.760000pt;}
.x36{left:35.066667pt;}
.x2e{left:36.106667pt;}
.x29{left:37.840000pt;}
.x1d{left:38.906667pt;}
.x12{left:42.320000pt;}
.x30{left:43.466667pt;}
.x31{left:45.466667pt;}
.x46{left:52.266667pt;}
.x3c{left:58.266667pt;}
.x15{left:59.360000pt;}
.x1a{left:60.880000pt;}
.x44{left:64.506667pt;}
.x1f{left:65.680000pt;}
.x37{left:72.266667pt;}
.x3b{left:86.106667pt;}
.x5{left:95.999988pt;}
.x39{left:97.706667pt;}
.x41{left:100.266667pt;}
.x3a{left:117.066667pt;}
.x2b{left:123.706667pt;}
.x32{left:135.706667pt;}
.x3f{left:138.266667pt;}
.x43{left:142.266667pt;}
.x3d{left:143.306667pt;}
.x17{left:145.066667pt;}
.x34{left:155.066667pt;}
.x19{left:163.706667pt;}
.x6{left:168.826655pt;}
.x3{left:170.746655pt;}
.x42{left:172.426667pt;}
.x45{left:174.746667pt;}
.x8{left:187.226667pt;}
.x9{left:188.426667pt;}
.x4a{left:196.986667pt;}
.x48{left:210.826655pt;}
.x1{left:214.026655pt;}
.x4b{left:222.026667pt;}
.x5b{left:223.706655pt;}
.x28{left:229.466667pt;}
.x14{left:246.106667pt;}
.x4c{left:247.066667pt;}
.x4d{left:272.106667pt;}
.x2{left:279.946655pt;}
.x1b{left:285.946667pt;}
.x33{left:291.466667pt;}
.x3e{left:296.586667pt;}
.x4e{left:322.213333pt;}
.x4f{left:347.253333pt;}
.x23{left:351.893333pt;}
.x50{left:372.213333pt;}
.x47{left:379.253333pt;}
.x4{left:396.933322pt;}
.x1e{left:417.493333pt;}
.x51{left:422.293333pt;}
.x52{left:447.413333pt;}
.x5c{left:461.413333pt;}
.x53{left:472.373333pt;}
.x5d{left:489.893333pt;}
.x2a{left:493.093333pt;}
.x40{left:497.173333pt;}
.x5e{left:518.293333pt;}
.x54{left:522.533333pt;}
.x35{left:525.653333pt;}
.x55{left:547.520000pt;}
.x20{left:549.200000pt;}
.x56{left:572.640000pt;}
.x22{left:577.200000pt;}
.x57{left:597.600000pt;}
.xa{left:605.040000pt;}
.x58{left:622.640000pt;}
.x59{left:647.680000pt;}
.x5a{left:672.720000pt;}
.x16{left:689.279988pt;}
}




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