
    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_247adc266c1b4619f0d4d710.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_242fe516bf561568f2681178.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.115723;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_d7dc6d16a4c7da461f9cdb30.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_c122ba928026cd39938b4405.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_fc23e77711d6a0f6abfb41ae.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_3091609de526ebb50388f1a2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.925293;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_2dd4c9e3a767aba1dae13ad8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.727539;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_054f0deae024ac50f6b5cda8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4ab2913bf6a9968683561121.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f516ed60beccdf3c9d2f8f83.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_69604e47de9c080bf99fb1ae.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940918;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_c691024b2316f059a3df0e59.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_12ee62cbf786d74a100a849e.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_a208d75f8254418824ed5908.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.687012;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_bfec30f85875ab58f9db9ff7.woff2')format("woff");}.fff{font-family:fff;line-height:0.687012;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_d62441f92eb6de7e71261df3.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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(0.250396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250396,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v4{vertical-align:-64.800000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.340000px;}
.v2{vertical-align:54.480000px;}
.v5{vertical-align:57.000000px;}
.v1{vertical-align:64.800000px;}
.lsd{letter-spacing:-2.880000px;}
.ls1d{letter-spacing:-0.612000px;}
.ls19{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.259800px;}
.ls2{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls4{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.036000px;}
.ls15{letter-spacing:0.070560px;}
.lse{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.162000px;}
.ls13{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.226080px;}
.ls12{letter-spacing:0.252000px;}
.ls1{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.ls1c{letter-spacing:3.708000px;}
.ls1b{letter-spacing:11.628000px;}
.ls9{letter-spacing:20.268000px;}
.ls14{letter-spacing:36.828000px;}
.lsa{letter-spacing:48.780000px;}
.ls5{letter-spacing:61.028640px;}
.ls1a{letter-spacing:62.460000px;}
.ls17{letter-spacing:70.248000px;}
.ls6{letter-spacing:89.100000px;}
.ls10{letter-spacing:92.988000px;}
.lsf{letter-spacing:200.988000px;}
.ls16{letter-spacing:202.589280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-54.000000px;}
.wsa{word-spacing:-20.304000px;}
.wsb{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.613280px;}
.ws8{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.506480px;}
.ws7{word-spacing:-16.353480px;}
.ws9{word-spacing:-15.228000px;}
.ws6{word-spacing:-15.012000px;}
.wsd{word-spacing:-13.410720px;}
.ws1{word-spacing:0.000000px;}
.ws0{word-spacing:27.072000px;}
.ws2{word-spacing:38.580480px;}
.ws3{word-spacing:40.526640px;}
._3{margin-left:-8.424000px;}
._2{margin-left:-6.654960px;}
._a{margin-left:-5.184000px;}
._4{margin-left:-3.387600px;}
._8{margin-left:-2.368080px;}
._1{margin-left:-1.179360px;}
._0{width:1.188000px;}
._6{width:2.538000px;}
._7{width:3.960000px;}
._f{width:7.099680px;}
._10{width:8.526000px;}
._17{width:11.628000px;}
._b{width:21.918000px;}
._11{width:28.908000px;}
._16{width:66.348000px;}
._c{width:75.776160px;}
._14{width:92.988000px;}
._12{width:157.068000px;}
._15{width:186.156000px;}
._d{width:188.068080px;}
._13{width:200.988000px;}
._5{width:202.769280px;}
._e{width:209.175360px;}
._9{width:326.587680px;}
.fce{color:rgb(51,51,204);}
.fcd{color:rgb(148,0,74);}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc2{color:rgb(172,0,86);}
.fc7{color:rgb(192,0,0);}
.fc3{color:rgb(0,0,102);}
.fc6{color:rgb(51,51,153);}
.fc4{color:transparent;}
.fc8{color:rgb(0,102,0);}
.fcf{color:rgb(218,4,14);}
.fc9{color:rgb(255,192,0);}
.fca{color:rgb(0,0,153);}
.fc5{color:rgb(165,0,33);}
.fcb{color:rgb(204,0,102);}
.fcc{color:rgb(176,0,88);}
.fs1{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs9{font-size:48.605121px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs8{font-size:84.384000px;}
.fsa{font-size:95.760000px;}
.fsb{font-size:95.904000px;}
.y13{bottom:-8.715000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:2.916289px;}
.y4c{bottom:8.870435px;}
.y50{bottom:8.890687px;}
.y57{bottom:9.599511px;}
.y54{bottom:9.720012px;}
.y5a{bottom:9.721024px;}
.y58{bottom:9.842537px;}
.y55{bottom:9.963037px;}
.y5b{bottom:9.964050px;}
.y1{bottom:10.440000px;}
.y12{bottom:12.345000px;}
.y52{bottom:14.115737px;}
.y4d{bottom:14.966327px;}
.y12c{bottom:18.000000px;}
.y2e{bottom:21.450000px;}
.y153{bottom:21.600000px;}
.y163{bottom:22.110000px;}
.y1a5{bottom:23.910000px;}
.y11c{bottom:24.555000px;}
.y81{bottom:27.030000px;}
.y4f{bottom:28.940299px;}
.y5d{bottom:30.888554px;}
.y11{bottom:33.945000px;}
.y51{bottom:35.167830px;}
.y152{bottom:37.800000px;}
.y1f6{bottom:39.390000px;}
.y2d{bottom:39.450000px;}
.y16d{bottom:40.710000px;}
.y1a4{bottom:41.190000px;}
.y12b{bottom:42.300000px;}
.y80{bottom:43.230000px;}
.y194{bottom:46.335000px;}
.y45{bottom:46.770000px;}
.y8b{bottom:46.800000px;}
.y151{bottom:54.000000px;}
.y1a3{bottom:54.150000px;}
.y162{bottom:54.510000px;}
.y10{bottom:55.545000px;}
.y1d8{bottom:56.730000px;}
.y1f5{bottom:57.390000px;}
.y2c{bottom:57.450000px;}
.y11b{bottom:59.115000px;}
.y7f{bottom:59.430000px;}
.y193{bottom:62.535000px;}
.y106{bottom:63.330000px;}
.yfb{bottom:63.690000px;}
.ye0{bottom:64.290000px;}
.y44{bottom:64.770000px;}
.y16c{bottom:65.010000px;}
.y1e{bottom:65.595000px;}
.y142{bottom:66.090000px;}
.y96{bottom:66.270000px;}
.y12a{bottom:66.600000px;}
.yaf{bottom:68.610000px;}
.y150{bottom:70.200000px;}
.y161{bottom:70.710000px;}
.y1a2{bottom:71.430000px;}
.y1d7{bottom:72.930000px;}
.y8a{bottom:73.800000px;}
.y1f4{bottom:75.390000px;}
.y2b{bottom:75.450000px;}
.y7e{bottom:75.630000px;}
.y11a{bottom:76.035000px;}
.yf{bottom:77.145000px;}
.yba{bottom:77.970000px;}
.y192{bottom:78.765000px;}
.ydf{bottom:80.490000px;}
.y141{bottom:80.670000px;}
.y95{bottom:81.030000px;}
.y1be{bottom:81.465000px;}
.y105{bottom:82.590000px;}
.y43{bottom:82.770000px;}
.yfa{bottom:82.950000px;}
.y14f{bottom:86.400000px;}
.y160{bottom:86.910000px;}
.y1b2{bottom:87.585000px;}
.y1a1{bottom:88.710000px;}
.y1d6{bottom:89.130000px;}
.y16b{bottom:89.310000px;}
.y1e4{bottom:89.715000px;}
.y1c9{bottom:90.000000px;}
.yae{bottom:90.255000px;}
.y129{bottom:90.900000px;}
.y7d{bottom:91.830000px;}
.yb9{bottom:92.370000px;}
.y1f3{bottom:93.390000px;}
.y2a{bottom:93.450000px;}
.y191{bottom:94.965000px;}
.y140{bottom:95.250000px;}
.yde{bottom:96.690000px;}
.y6d{bottom:96.735000px;}
.y94{bottom:97.230000px;}
.y1bd{bottom:97.665000px;}
.y1d{bottom:98.025000px;}
.ye{bottom:98.745000px;}
.y42{bottom:100.770000px;}
.y89{bottom:100.800000px;}
.y14e{bottom:102.600000px;}
.y15f{bottom:103.110000px;}
.y109{bottom:103.320000px;}
.y1b1{bottom:103.785000px;}
.yad{bottom:104.655000px;}
.y187{bottom:104.940000px;}
.y1d5{bottom:105.330000px;}
.y1e3{bottom:105.915000px;}
.y1a0{bottom:106.350000px;}
.yb8{bottom:106.770000px;}
.y104{bottom:106.890000px;}
.yf9{bottom:107.250000px;}
.y7c{bottom:108.390000px;}
.y13f{bottom:109.830000px;}
.y119{bottom:110.265000px;}
.y32{bottom:110.805000px;}
.y190{bottom:111.165000px;}
.y1f2{bottom:111.390000px;}
.y29{bottom:111.450000px;}
.ydd{bottom:112.890000px;}
.y16a{bottom:113.610000px;}
.y1bc{bottom:113.865000px;}
.y6c{bottom:114.765000px;}
.y128{bottom:115.200000px;}
.y1c8{bottom:117.360000px;}
.y186{bottom:117.900000px;}
.y41{bottom:118.770000px;}
.y14d{bottom:118.800000px;}
.yac{bottom:119.055000px;}
.y15e{bottom:119.310000px;}
.y1b0{bottom:119.985000px;}
.yd{bottom:120.705000px;}
.y108{bottom:121.320000px;}
.yee{bottom:121.530000px;}
.y19f{bottom:122.910000px;}
.y7b{bottom:126.390000px;}
.y118{bottom:127.185000px;}
.y18f{bottom:127.365000px;}
.yb7{bottom:128.415000px;}
.ydc{bottom:129.090000px;}
.y1f1{bottom:129.390000px;}
.y28{bottom:129.450000px;}
.y1bb{bottom:130.065000px;}
.y1c{bottom:130.425000px;}
.y103{bottom:131.190000px;}
.y127{bottom:131.400000px;}
.yf8{bottom:131.550000px;}
.ybe{bottom:131.970000px;}
.y13e{bottom:132.510000px;}
.y6b{bottom:132.765000px;}
.y1c7{bottom:134.640000px;}
.y14c{bottom:135.000000px;}
.y15d{bottom:135.510000px;}
.y1af{bottom:136.185000px;}
.y40{bottom:136.770000px;}
.yed{bottom:137.730000px;}
.y1d4{bottom:137.775000px;}
.y1e2{bottom:137.805000px;}
.y185{bottom:138.060000px;}
.y14{bottom:138.960000px;}
.y169{bottom:138.990000px;}
.y107{bottom:139.320000px;}
.yab{bottom:140.655000px;}
.yb6{bottom:142.815000px;}
.y18e{bottom:143.565000px;}
.y7a{bottom:144.030000px;}
.yc{bottom:146.130000px;}
.ya2{bottom:146.670000px;}
.yce{bottom:146.775000px;}
.y13d{bottom:147.090000px;}
.y1f0{bottom:147.390000px;}
.y27{bottom:147.495000px;}
.y126{bottom:147.630000px;}
.yc8{bottom:147.675000px;}
.ybd{bottom:148.170000px;}
.ya1{bottom:149.250000px;}
.ycd{bottom:149.325000px;}
.y88{bottom:149.970000px;}
.y6a{bottom:150.765000px;}
.y184{bottom:151.020000px;}
.y14b{bottom:151.200000px;}
.y15c{bottom:151.710000px;}
.y1c6{bottom:151.920000px;}
.y1ae{bottom:152.385000px;}
.y19e{bottom:153.690000px;}
.yec{bottom:153.930000px;}
.y1d3{bottom:153.975000px;}
.y1e1{bottom:154.005000px;}
.y3f{bottom:154.770000px;}
.yaa{bottom:155.055000px;}
.y102{bottom:155.490000px;}
.yf7{bottom:155.850000px;}
.y168{bottom:159.510000px;}
.y18d{bottom:159.765000px;}
.y79{bottom:160.230000px;}
.y117{bottom:161.385000px;}
.ydb{bottom:161.535000px;}
.y13c{bottom:161.670000px;}
.y38{bottom:161.895000px;}
.y1ba{bottom:162.465000px;}
.y1b{bottom:162.825000px;}
.y133{bottom:163.590000px;}
.yb5{bottom:164.415000px;}
.y1ef{bottom:165.390000px;}
.ya0{bottom:165.450000px;}
.y26{bottom:165.495000px;}
.ycc{bottom:165.525000px;}
.yc7{bottom:165.675000px;}
.y174{bottom:167.115000px;}
.y14a{bottom:167.400000px;}
.y15b{bottom:167.910000px;}
.y19d{bottom:168.270000px;}
.y1ad{bottom:168.585000px;}
.y69{bottom:168.765000px;}
.y1c5{bottom:169.200000px;}
.yeb{bottom:170.130000px;}
.y1d2{bottom:170.175000px;}
.y183{bottom:171.180000px;}
.y125{bottom:171.930000px;}
.ybc{bottom:172.470000px;}
.y3e{bottom:172.770000px;}
.y92{bottom:174.345000px;}
.y9b{bottom:174.420000px;}
.y18c{bottom:175.965000px;}
.y37{bottom:176.295000px;}
.y78{bottom:176.430000px;}
.ya9{bottom:176.655000px;}
.yda{bottom:177.735000px;}
.y116{bottom:178.305000px;}
.y1b9{bottom:178.665000px;}
.yb4{bottom:178.815000px;}
.y101{bottom:179.790000px;}
.yb{bottom:179.970000px;}
.yf6{bottom:180.150000px;}
.y87{bottom:180.570000px;}
.y17b{bottom:183.210000px;}
.y173{bottom:183.315000px;}
.y1ee{bottom:183.420000px;}
.y25{bottom:183.495000px;}
.y149{bottom:183.600000px;}
.yc6{bottom:183.675000px;}
.y167{bottom:183.810000px;}
.y15a{bottom:184.110000px;}
.y13b{bottom:184.350000px;}
.y182{bottom:184.500000px;}
.y1ac{bottom:184.785000px;}
.y1e0{bottom:185.865000px;}
.yea{bottom:186.330000px;}
.y68{bottom:186.765000px;}
.y1c4{bottom:186.840000px;}
.y132{bottom:187.890000px;}
.ybb{bottom:188.670000px;}
.y9a{bottom:188.820000px;}
.y36{bottom:190.695000px;}
.y3d{bottom:190.770000px;}
.ya8{bottom:191.055000px;}
.y18b{bottom:192.165000px;}
.y77{bottom:192.630000px;}
.yb3{bottom:193.215000px;}
.yd9{bottom:193.935000px;}
.y1b8{bottom:194.865000px;}
.y1a{bottom:195.225000px;}
.y124{bottom:196.230000px;}
.y10e{bottom:198.210000px;}
.y13a{bottom:198.930000px;}
.y19c{bottom:199.050000px;}
.y148{bottom:199.800000px;}
.y159{bottom:200.340000px;}
.y1ab{bottom:200.985000px;}
.y91{bottom:201.345000px;}
.y1ed{bottom:201.420000px;}
.y24{bottom:201.495000px;}
.yc5{bottom:201.675000px;}
.y1df{bottom:202.065000px;}
.ye9{bottom:202.530000px;}
.y1d1{bottom:202.575000px;}
.y99{bottom:203.580000px;}
.y100{bottom:204.090000px;}
.yf5{bottom:204.480000px;}
.y67{bottom:204.765000px;}
.y35{bottom:205.125000px;}
.y181{bottom:207.180000px;}
.y172{bottom:207.615000px;}
.ya{bottom:207.690000px;}
.y166{bottom:208.155000px;}
.y18a{bottom:208.365000px;}
.y17a{bottom:208.410000px;}
.y3c{bottom:208.770000px;}
.y76{bottom:209.190000px;}
.yd8{bottom:210.135000px;}
.y1b7{bottom:211.065000px;}
.y86{bottom:211.170000px;}
.y123{bottom:212.430000px;}
.y115{bottom:212.505000px;}
.ya7{bottom:212.655000px;}
.yb2{bottom:214.815000px;}
.y147{bottom:216.000000px;}
.y19{bottom:216.825000px;}
.y1aa{bottom:217.185000px;}
.y5e{bottom:217.360232px;}
.y1c3{bottom:217.620000px;}
.y9d{bottom:218.010000px;}
.ycb{bottom:218.085000px;}
.ye8{bottom:218.730000px;}
.y1d0{bottom:218.775000px;}
.y90{bottom:219.345000px;}
.y1ec{bottom:219.420000px;}
.y23{bottom:219.495000px;}
.y34{bottom:219.525000px;}
.yc4{bottom:219.705000px;}
.y180{bottom:221.790000px;}
.y10d{bottom:222.555000px;}
.y66{bottom:222.765000px;}
.y171{bottom:223.815000px;}
.y189{bottom:225.285000px;}
.y3b{bottom:226.770000px;}
.ya6{bottom:227.055000px;}
.y75{bottom:227.190000px;}
.y1b6{bottom:227.265000px;}
.yff{bottom:228.390000px;}
.yf4{bottom:228.780000px;}
.yb1{bottom:229.215000px;}
.y114{bottom:229.425000px;}
.y19b{bottom:229.830000px;}
.y5c{bottom:231.723128px;}
.y146{bottom:232.200000px;}
.y1c2{bottom:232.230000px;}
.y165{bottom:232.455000px;}
.y158{bottom:232.740000px;}
.y9{bottom:232.890000px;}
.y1a9{bottom:233.385000px;}
.y179{bottom:233.610000px;}
.y1de{bottom:233.745000px;}
.ye7{bottom:234.930000px;}
.y1cf{bottom:234.975000px;}
.y33{bottom:235.365000px;}
.y17f{bottom:236.370000px;}
.y122{bottom:236.730000px;}
.y8f{bottom:237.345000px;}
.y1eb{bottom:237.420000px;}
.y22{bottom:237.495000px;}
.yd2{bottom:237.630000px;}
.y9f{bottom:237.675000px;}
.yc3{bottom:237.705000px;}
.yd0{bottom:237.750000px;}
.y188{bottom:238.605000px;}
.y10c{bottom:238.755000px;}
.y65{bottom:240.765000px;}
.yd7{bottom:242.535000px;}
.y1b5{bottom:243.465000px;}
.y19a{bottom:244.410000px;}
.y131{bottom:244.590000px;}
.y3a{bottom:244.800000px;}
.y74{bottom:244.830000px;}
.y113{bottom:246.525000px;}
.y1c1{bottom:246.810000px;}
.y139{bottom:246.855000px;}
.y170{bottom:248.145000px;}
.yb0{bottom:248.580000px;}
.y18{bottom:249.225000px;}
.y1dd{bottom:249.945000px;}
.y157{bottom:250.020000px;}
.y39{bottom:250.920000px;}
.ye6{bottom:251.130000px;}
.y1ce{bottom:251.175000px;}
.yfe{bottom:252.690000px;}
.yf3{bottom:253.080000px;}
.y145{bottom:253.440000px;}
.yd1{bottom:253.830000px;}
.y9e{bottom:253.905000px;}
.ycf{bottom:253.950000px;}
.y8e{bottom:255.345000px;}
.y1ea{bottom:255.420000px;}
.y21{bottom:255.495000px;}
.yc2{bottom:255.705000px;}
.y164{bottom:256.755000px;}
.y64{bottom:258.765000px;}
.y178{bottom:258.810000px;}
.y199{bottom:259.020000px;}
.y1b4{bottom:259.665000px;}
.y8{bottom:260.610000px;}
.y121{bottom:261.030000px;}
.y73{bottom:261.075000px;}
.y10b{bottom:263.055000px;}
.ye4{bottom:264.930000px;}
.y1dc{bottom:266.145000px;}
.y17e{bottom:267.150000px;}
.ye5{bottom:267.375000px;}
.y85{bottom:268.770000px;}
.y130{bottom:268.890000px;}
.y138{bottom:269.535000px;}
.y156{bottom:270.540000px;}
.y16f{bottom:272.445000px;}
.y8d{bottom:273.345000px;}
.y1e9{bottom:273.420000px;}
.y20{bottom:273.495000px;}
.yfd{bottom:273.570000px;}
.y98{bottom:273.630000px;}
.y59{bottom:273.669347px;}
.yc1{bottom:273.705000px;}
.ye2{bottom:273.930000px;}
.yf2{bottom:273.960000px;}
.yd6{bottom:274.935000px;}
.y1b3{bottom:275.910000px;}
.y63{bottom:276.765000px;}
.y72{bottom:277.275000px;}
.y1c0{bottom:277.590000px;}
.y10a{bottom:279.615000px;}
.yf0{bottom:280.515000px;}
.y112{bottom:280.545000px;}
.ye3{bottom:281.130000px;}
.y17{bottom:281.625000px;}
.y17d{bottom:281.730000px;}
.y144{bottom:282.270000px;}
.y1cd{bottom:283.575000px;}
.y177{bottom:284.010000px;}
.y137{bottom:284.115000px;}
.y120{bottom:285.690000px;}
.y155{bottom:286.740000px;}
.y1cc{bottom:288.285000px;}
.y7{bottom:288.330000px;}
.yfc{bottom:288.360000px;}
.y16e{bottom:288.645000px;}
.yf1{bottom:288.720000px;}
.y198{bottom:289.800000px;}
.y97{bottom:289.830000px;}
.ye1{bottom:290.130000px;}
.y8c{bottom:291.345000px;}
.y1e8{bottom:291.420000px;}
.y1f{bottom:291.495000px;}
.yc0{bottom:291.705000px;}
.y12f{bottom:293.190000px;}
.y71{bottom:293.475000px;}
.y56{bottom:294.715365px;}
.y62{bottom:294.765000px;}
.y1a8{bottom:295.020000px;}
.yef{bottom:296.715000px;}
.y111{bottom:297.645000px;}
.y1db{bottom:298.005000px;}
.y48{bottom:302.790000px;}
.y154{bottom:304.020000px;}
.y84{bottom:304.230000px;}
.y197{bottom:304.380000px;}
.y143{bottom:305.670000px;}
.y136{bottom:306.795000px;}
.ya5{bottom:308.490000px;}
.y12e{bottom:309.390000px;}
.y1e7{bottom:309.420000px;}
.y70{bottom:309.675000px;}
.y1cb{bottom:311.865000px;}
.y61{bottom:312.765000px;}
.y11f{bottom:312.870000px;}
.y16{bottom:314.025000px;}
.y1da{bottom:314.205000px;}
.y110{bottom:314.565000px;}
.y53{bottom:315.639869px;}
.y6{bottom:316.050000px;}
.y1a7{bottom:316.620000px;}
.y196{bottom:318.960000px;}
.y135{bottom:321.375000px;}
.y4a{bottom:324.510000px;}
.y176{bottom:325.335000px;}
.y6f{bottom:325.875000px;}
.yd4{bottom:326.805000px;}
.yca{bottom:326.880000px;}
.y1ca{bottom:327.030000px;}
.y1e6{bottom:327.420000px;}
.y47{bottom:327.990000px;}
.y31{bottom:330.990000px;}
.y17c{bottom:333.975000px;}
.y1bf{bottom:334.080000px;}
.y12d{bottom:334.260000px;}
.y4e{bottom:336.660571px;}
.y83{bottom:338.115000px;}
.y1a6{bottom:338.220000px;}
.y11e{bottom:340.740000px;}
.y6e{bottom:342.435000px;}
.y5{bottom:343.770000px;}
.y134{bottom:344.955000px;}
.y1e5{bottom:345.420000px;}
.ya4{bottom:345.450000px;}
.y2f{bottom:346.830000px;}
.y175{bottom:346.935000px;}
.yd3{bottom:348.405000px;}
.yc9{bottom:348.480000px;}
.y9c{bottom:348.765000px;}
.y49{bottom:349.740000px;}
.y93{bottom:350.205000px;}
.y10f{bottom:350.715000px;}
.ybf{bottom:351.540000px;}
.yd5{bottom:351.615000px;}
.y46{bottom:353.235000px;}
.y60{bottom:355.350000px;}
.y30{bottom:356.190000px;}
.y1d9{bottom:357.840000px;}
.y11d{bottom:362.340000px;}
.y82{bottom:363.315000px;}
.y195{bottom:363.705000px;}
.ya3{bottom:370.650000px;}
.y4{bottom:371.490000px;}
.y4b{bottom:382.886066px;}
.y15{bottom:393.735000px;}
.y3{bottom:393.810000px;}
.y2{bottom:664.920000px;}
.h14{height:20.924504px;}
.h13{height:21.021715px;}
.h15{height:21.046017px;}
.he{height:26.028042px;}
.h4{height:32.589844px;}
.hf{height:34.792533px;}
.h16{height:41.946219px;}
.h25{height:43.554375px;}
.h9{height:43.670391px;}
.h11{height:46.223470px;}
.h12{height:47.679535px;}
.h10{height:47.703268px;}
.h18{height:48.410156px;}
.h8{height:50.312812px;}
.h1f{height:54.099141px;}
.h7{height:56.320312px;}
.h1d{height:58.651172px;}
.hc{height:61.329023px;}
.h1b{height:61.660313px;}
.h1e{height:62.211094px;}
.ha{height:62.327813px;}
.h20{height:64.946602px;}
.h21{height:65.044266px;}
.hb{height:65.179688px;}
.h22{height:70.664062px;}
.h6{height:75.093750px;}
.h5{height:76.260234px;}
.h2{height:76.317188px;}
.hd{height:76.390594px;}
.h24{height:87.859687px;}
.h1a{height:110.800313px;}
.h1c{height:110.920313px;}
.h23{height:113.320312px;}
.h19{height:121.120312px;}
.h17{height:192.157390px;}
.h3{height:405.000000px;}
.h0{height:1208.880000px;}
.h1{height:1209.000000px;}
.w5{width:36.535976px;}
.w3{width:103.743754px;}
.w4{width:109.555190px;}
.w7{width:146.097251px;}
.w6{width:209.769486px;}
.w8{width:460.584136px;}
.w2{width:540.000000px;}
.w0{width:838.440000px;}
.w1{width:838.500000px;}
.x0{left:0.000000px;}
.x1a{left:3.286047px;}
.x53{left:16.020000px;}
.x11{left:18.105000px;}
.xd{left:20.160000px;}
.x54{left:22.320000px;}
.x22{left:24.555000px;}
.x4b{left:26.535000px;}
.x28{left:28.725000px;}
.x3c{left:30.135000px;}
.x52{left:31.215000px;}
.x42{left:33.090000px;}
.x4c{left:34.950000px;}
.x7{left:39.090000px;}
.xb{left:41.550000px;}
.x23{left:42.840000px;}
.x4e{left:45.870000px;}
.xe{left:47.160000px;}
.x15{left:50.010000px;}
.x49{left:51.450000px;}
.x45{left:53.535000px;}
.x16{left:55.230000px;}
.x2f{left:57.345000px;}
.x46{left:58.605000px;}
.x12{left:61.665000px;}
.x4d{left:62.820000px;}
.x4a{left:64.470000px;}
.x25{left:65.625000px;}
.x47{left:67.425000px;}
.xc{left:68.550000px;}
.x5{left:72.750000px;}
.x24{left:76.500000px;}
.x10{left:80.820000px;}
.x14{left:88.305000px;}
.x2a{left:90.795000px;}
.x26{left:92.625000px;}
.x13{left:95.685000px;}
.x18{left:104.910000px;}
.xf{left:107.820000px;}
.x3b{left:113.040000px;}
.x35{left:123.765000px;}
.x1f{left:137.202611px;}
.x2{left:149.220000px;}
.x20{left:155.093312px;}
.x6{left:158.070000px;}
.x4f{left:163.695000px;}
.x2b{left:165.780000px;}
.x21{left:167.872385px;}
.xa{left:169.410000px;}
.x9{left:181.110000px;}
.x19{left:189.921822px;}
.x2c{left:191.370000px;}
.x34{left:194.730000px;}
.x33{left:199.410000px;}
.x8{left:200.955000px;}
.x2d{left:204.150000px;}
.x1e{left:206.483439px;}
.x30{left:215.385000px;}
.x17{left:223.170000px;}
.x43{left:228.240000px;}
.x27{left:232.890000px;}
.x29{left:234.690000px;}
.x44{left:245.160000px;}
.x38{left:262.110000px;}
.x3a{left:266.610000px;}
.x39{left:271.650000px;}
.x4{left:277.455000px;}
.x37{left:282.810000px;}
.x48{left:287.970000px;}
.x31{left:291.930000px;}
.x1b{left:293.665576px;}
.x32{left:304.170000px;}
.x50{left:318.990000px;}
.x36{left:325.005000px;}
.x51{left:348.690000px;}
.x2e{left:354.270000px;}
.x3{left:364.965000px;}
.x1c{left:403.220766px;}
.x3e{left:406.185000px;}
.x3f{left:414.465000px;}
.x41{left:434.700000px;}
.x1d{left:439.762828px;}
.x3d{left:452.190000px;}
.x40{left:807.375000px;}
.x1{left:817.095000px;}
@media print{
.v4{vertical-align:-57.600000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.746667pt;}
.v2{vertical-align:48.426667pt;}
.v5{vertical-align:50.666667pt;}
.v1{vertical-align:57.600000pt;}
.lsd{letter-spacing:-2.560000pt;}
.ls1d{letter-spacing:-0.544000pt;}
.ls19{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.230933pt;}
.ls2{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.032000pt;}
.ls15{letter-spacing:0.062720pt;}
.lse{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.144000pt;}
.ls13{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.200960pt;}
.ls12{letter-spacing:0.224000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:3.296000pt;}
.ls1b{letter-spacing:10.336000pt;}
.ls9{letter-spacing:18.016000pt;}
.ls14{letter-spacing:32.736000pt;}
.lsa{letter-spacing:43.360000pt;}
.ls5{letter-spacing:54.247680pt;}
.ls1a{letter-spacing:55.520000pt;}
.ls17{letter-spacing:62.442667pt;}
.ls6{letter-spacing:79.200000pt;}
.ls10{letter-spacing:82.656000pt;}
.lsf{letter-spacing:178.656000pt;}
.ls16{letter-spacing:180.079360pt;}
.wsc{word-spacing:-48.000000pt;}
.wsa{word-spacing:-18.048000pt;}
.wsb{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.767360pt;}
.ws8{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.672427pt;}
.ws7{word-spacing:-14.536427pt;}
.ws9{word-spacing:-13.536000pt;}
.ws6{word-spacing:-13.344000pt;}
.wsd{word-spacing:-11.920640pt;}
.ws1{word-spacing:0.000000pt;}
.ws0{word-spacing:24.064000pt;}
.ws2{word-spacing:34.293760pt;}
.ws3{word-spacing:36.023680pt;}
._3{margin-left:-7.488000pt;}
._2{margin-left:-5.915520pt;}
._a{margin-left:-4.608000pt;}
._4{margin-left:-3.011200pt;}
._8{margin-left:-2.104960pt;}
._1{margin-left:-1.048320pt;}
._0{width:1.056000pt;}
._6{width:2.256000pt;}
._7{width:3.520000pt;}
._f{width:6.310827pt;}
._10{width:7.578667pt;}
._17{width:10.336000pt;}
._b{width:19.482667pt;}
._11{width:25.696000pt;}
._16{width:58.976000pt;}
._c{width:67.356587pt;}
._14{width:82.656000pt;}
._12{width:139.616000pt;}
._15{width:165.472000pt;}
._d{width:167.171627pt;}
._13{width:178.656000pt;}
._5{width:180.239360pt;}
._e{width:185.933653pt;}
._9{width:290.300160pt;}
.fs1{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs9{font-size:43.204552pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs8{font-size:75.008000pt;}
.fsa{font-size:85.120000pt;}
.fsb{font-size:85.248000pt;}
.y13{bottom:-7.746667pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:2.592257pt;}
.y4c{bottom:7.884831pt;}
.y50{bottom:7.902833pt;}
.y57{bottom:8.532899pt;}
.y54{bottom:8.640010pt;}
.y5a{bottom:8.640910pt;}
.y58{bottom:8.748922pt;}
.y55{bottom:8.856033pt;}
.y5b{bottom:8.856933pt;}
.y1{bottom:9.280000pt;}
.y12{bottom:10.973333pt;}
.y52{bottom:12.547322pt;}
.y4d{bottom:13.303402pt;}
.y12c{bottom:16.000000pt;}
.y2e{bottom:19.066667pt;}
.y153{bottom:19.200000pt;}
.y163{bottom:19.653333pt;}
.y1a5{bottom:21.253333pt;}
.y11c{bottom:21.826667pt;}
.y81{bottom:24.026667pt;}
.y4f{bottom:25.724710pt;}
.y5d{bottom:27.456493pt;}
.y11{bottom:30.173333pt;}
.y51{bottom:31.260293pt;}
.y152{bottom:33.600000pt;}
.y1f6{bottom:35.013333pt;}
.y2d{bottom:35.066667pt;}
.y16d{bottom:36.186667pt;}
.y1a4{bottom:36.613333pt;}
.y12b{bottom:37.600000pt;}
.y80{bottom:38.426667pt;}
.y194{bottom:41.186667pt;}
.y45{bottom:41.573333pt;}
.y8b{bottom:41.600000pt;}
.y151{bottom:48.000000pt;}
.y1a3{bottom:48.133333pt;}
.y162{bottom:48.453333pt;}
.y10{bottom:49.373333pt;}
.y1d8{bottom:50.426667pt;}
.y1f5{bottom:51.013333pt;}
.y2c{bottom:51.066667pt;}
.y11b{bottom:52.546667pt;}
.y7f{bottom:52.826667pt;}
.y193{bottom:55.586667pt;}
.y106{bottom:56.293333pt;}
.yfb{bottom:56.613333pt;}
.ye0{bottom:57.146667pt;}
.y44{bottom:57.573333pt;}
.y16c{bottom:57.786667pt;}
.y1e{bottom:58.306667pt;}
.y142{bottom:58.746667pt;}
.y96{bottom:58.906667pt;}
.y12a{bottom:59.200000pt;}
.yaf{bottom:60.986667pt;}
.y150{bottom:62.400000pt;}
.y161{bottom:62.853333pt;}
.y1a2{bottom:63.493333pt;}
.y1d7{bottom:64.826667pt;}
.y8a{bottom:65.600000pt;}
.y1f4{bottom:67.013333pt;}
.y2b{bottom:67.066667pt;}
.y7e{bottom:67.226667pt;}
.y11a{bottom:67.586667pt;}
.yf{bottom:68.573333pt;}
.yba{bottom:69.306667pt;}
.y192{bottom:70.013333pt;}
.ydf{bottom:71.546667pt;}
.y141{bottom:71.706667pt;}
.y95{bottom:72.026667pt;}
.y1be{bottom:72.413333pt;}
.y105{bottom:73.413333pt;}
.y43{bottom:73.573333pt;}
.yfa{bottom:73.733333pt;}
.y14f{bottom:76.800000pt;}
.y160{bottom:77.253333pt;}
.y1b2{bottom:77.853333pt;}
.y1a1{bottom:78.853333pt;}
.y1d6{bottom:79.226667pt;}
.y16b{bottom:79.386667pt;}
.y1e4{bottom:79.746667pt;}
.y1c9{bottom:80.000000pt;}
.yae{bottom:80.226667pt;}
.y129{bottom:80.800000pt;}
.y7d{bottom:81.626667pt;}
.yb9{bottom:82.106667pt;}
.y1f3{bottom:83.013333pt;}
.y2a{bottom:83.066667pt;}
.y191{bottom:84.413333pt;}
.y140{bottom:84.666667pt;}
.yde{bottom:85.946667pt;}
.y6d{bottom:85.986667pt;}
.y94{bottom:86.426667pt;}
.y1bd{bottom:86.813333pt;}
.y1d{bottom:87.133333pt;}
.ye{bottom:87.773333pt;}
.y42{bottom:89.573333pt;}
.y89{bottom:89.600000pt;}
.y14e{bottom:91.200000pt;}
.y15f{bottom:91.653333pt;}
.y109{bottom:91.840000pt;}
.y1b1{bottom:92.253333pt;}
.yad{bottom:93.026667pt;}
.y187{bottom:93.280000pt;}
.y1d5{bottom:93.626667pt;}
.y1e3{bottom:94.146667pt;}
.y1a0{bottom:94.533333pt;}
.yb8{bottom:94.906667pt;}
.y104{bottom:95.013333pt;}
.yf9{bottom:95.333333pt;}
.y7c{bottom:96.346667pt;}
.y13f{bottom:97.626667pt;}
.y119{bottom:98.013333pt;}
.y32{bottom:98.493333pt;}
.y190{bottom:98.813333pt;}
.y1f2{bottom:99.013333pt;}
.y29{bottom:99.066667pt;}
.ydd{bottom:100.346667pt;}
.y16a{bottom:100.986667pt;}
.y1bc{bottom:101.213333pt;}
.y6c{bottom:102.013333pt;}
.y128{bottom:102.400000pt;}
.y1c8{bottom:104.320000pt;}
.y186{bottom:104.800000pt;}
.y41{bottom:105.573333pt;}
.y14d{bottom:105.600000pt;}
.yac{bottom:105.826667pt;}
.y15e{bottom:106.053333pt;}
.y1b0{bottom:106.653333pt;}
.yd{bottom:107.293333pt;}
.y108{bottom:107.840000pt;}
.yee{bottom:108.026667pt;}
.y19f{bottom:109.253333pt;}
.y7b{bottom:112.346667pt;}
.y118{bottom:113.053333pt;}
.y18f{bottom:113.213333pt;}
.yb7{bottom:114.146667pt;}
.ydc{bottom:114.746667pt;}
.y1f1{bottom:115.013333pt;}
.y28{bottom:115.066667pt;}
.y1bb{bottom:115.613333pt;}
.y1c{bottom:115.933333pt;}
.y103{bottom:116.613333pt;}
.y127{bottom:116.800000pt;}
.yf8{bottom:116.933333pt;}
.ybe{bottom:117.306667pt;}
.y13e{bottom:117.786667pt;}
.y6b{bottom:118.013333pt;}
.y1c7{bottom:119.680000pt;}
.y14c{bottom:120.000000pt;}
.y15d{bottom:120.453333pt;}
.y1af{bottom:121.053333pt;}
.y40{bottom:121.573333pt;}
.yed{bottom:122.426667pt;}
.y1d4{bottom:122.466667pt;}
.y1e2{bottom:122.493333pt;}
.y185{bottom:122.720000pt;}
.y14{bottom:123.520000pt;}
.y169{bottom:123.546667pt;}
.y107{bottom:123.840000pt;}
.yab{bottom:125.026667pt;}
.yb6{bottom:126.946667pt;}
.y18e{bottom:127.613333pt;}
.y7a{bottom:128.026667pt;}
.yc{bottom:129.893333pt;}
.ya2{bottom:130.373333pt;}
.yce{bottom:130.466667pt;}
.y13d{bottom:130.746667pt;}
.y1f0{bottom:131.013333pt;}
.y27{bottom:131.106667pt;}
.y126{bottom:131.226667pt;}
.yc8{bottom:131.266667pt;}
.ybd{bottom:131.706667pt;}
.ya1{bottom:132.666667pt;}
.ycd{bottom:132.733333pt;}
.y88{bottom:133.306667pt;}
.y6a{bottom:134.013333pt;}
.y184{bottom:134.240000pt;}
.y14b{bottom:134.400000pt;}
.y15c{bottom:134.853333pt;}
.y1c6{bottom:135.040000pt;}
.y1ae{bottom:135.453333pt;}
.y19e{bottom:136.613333pt;}
.yec{bottom:136.826667pt;}
.y1d3{bottom:136.866667pt;}
.y1e1{bottom:136.893333pt;}
.y3f{bottom:137.573333pt;}
.yaa{bottom:137.826667pt;}
.y102{bottom:138.213333pt;}
.yf7{bottom:138.533333pt;}
.y168{bottom:141.786667pt;}
.y18d{bottom:142.013333pt;}
.y79{bottom:142.426667pt;}
.y117{bottom:143.453333pt;}
.ydb{bottom:143.586667pt;}
.y13c{bottom:143.706667pt;}
.y38{bottom:143.906667pt;}
.y1ba{bottom:144.413333pt;}
.y1b{bottom:144.733333pt;}
.y133{bottom:145.413333pt;}
.yb5{bottom:146.146667pt;}
.y1ef{bottom:147.013333pt;}
.ya0{bottom:147.066667pt;}
.y26{bottom:147.106667pt;}
.ycc{bottom:147.133333pt;}
.yc7{bottom:147.266667pt;}
.y174{bottom:148.546667pt;}
.y14a{bottom:148.800000pt;}
.y15b{bottom:149.253333pt;}
.y19d{bottom:149.573333pt;}
.y1ad{bottom:149.853333pt;}
.y69{bottom:150.013333pt;}
.y1c5{bottom:150.400000pt;}
.yeb{bottom:151.226667pt;}
.y1d2{bottom:151.266667pt;}
.y183{bottom:152.160000pt;}
.y125{bottom:152.826667pt;}
.ybc{bottom:153.306667pt;}
.y3e{bottom:153.573333pt;}
.y92{bottom:154.973333pt;}
.y9b{bottom:155.040000pt;}
.y18c{bottom:156.413333pt;}
.y37{bottom:156.706667pt;}
.y78{bottom:156.826667pt;}
.ya9{bottom:157.026667pt;}
.yda{bottom:157.986667pt;}
.y116{bottom:158.493333pt;}
.y1b9{bottom:158.813333pt;}
.yb4{bottom:158.946667pt;}
.y101{bottom:159.813333pt;}
.yb{bottom:159.973333pt;}
.yf6{bottom:160.133333pt;}
.y87{bottom:160.506667pt;}
.y17b{bottom:162.853333pt;}
.y173{bottom:162.946667pt;}
.y1ee{bottom:163.040000pt;}
.y25{bottom:163.106667pt;}
.y149{bottom:163.200000pt;}
.yc6{bottom:163.266667pt;}
.y167{bottom:163.386667pt;}
.y15a{bottom:163.653333pt;}
.y13b{bottom:163.866667pt;}
.y182{bottom:164.000000pt;}
.y1ac{bottom:164.253333pt;}
.y1e0{bottom:165.213333pt;}
.yea{bottom:165.626667pt;}
.y68{bottom:166.013333pt;}
.y1c4{bottom:166.080000pt;}
.y132{bottom:167.013333pt;}
.ybb{bottom:167.706667pt;}
.y9a{bottom:167.840000pt;}
.y36{bottom:169.506667pt;}
.y3d{bottom:169.573333pt;}
.ya8{bottom:169.826667pt;}
.y18b{bottom:170.813333pt;}
.y77{bottom:171.226667pt;}
.yb3{bottom:171.746667pt;}
.yd9{bottom:172.386667pt;}
.y1b8{bottom:173.213333pt;}
.y1a{bottom:173.533333pt;}
.y124{bottom:174.426667pt;}
.y10e{bottom:176.186667pt;}
.y13a{bottom:176.826667pt;}
.y19c{bottom:176.933333pt;}
.y148{bottom:177.600000pt;}
.y159{bottom:178.080000pt;}
.y1ab{bottom:178.653333pt;}
.y91{bottom:178.973333pt;}
.y1ed{bottom:179.040000pt;}
.y24{bottom:179.106667pt;}
.yc5{bottom:179.266667pt;}
.y1df{bottom:179.613333pt;}
.ye9{bottom:180.026667pt;}
.y1d1{bottom:180.066667pt;}
.y99{bottom:180.960000pt;}
.y100{bottom:181.413333pt;}
.yf5{bottom:181.760000pt;}
.y67{bottom:182.013333pt;}
.y35{bottom:182.333333pt;}
.y181{bottom:184.160000pt;}
.y172{bottom:184.546667pt;}
.ya{bottom:184.613333pt;}
.y166{bottom:185.026667pt;}
.y18a{bottom:185.213333pt;}
.y17a{bottom:185.253333pt;}
.y3c{bottom:185.573333pt;}
.y76{bottom:185.946667pt;}
.yd8{bottom:186.786667pt;}
.y1b7{bottom:187.613333pt;}
.y86{bottom:187.706667pt;}
.y123{bottom:188.826667pt;}
.y115{bottom:188.893333pt;}
.ya7{bottom:189.026667pt;}
.yb2{bottom:190.946667pt;}
.y147{bottom:192.000000pt;}
.y19{bottom:192.733333pt;}
.y1aa{bottom:193.053333pt;}
.y5e{bottom:193.209095pt;}
.y1c3{bottom:193.440000pt;}
.y9d{bottom:193.786667pt;}
.ycb{bottom:193.853333pt;}
.ye8{bottom:194.426667pt;}
.y1d0{bottom:194.466667pt;}
.y90{bottom:194.973333pt;}
.y1ec{bottom:195.040000pt;}
.y23{bottom:195.106667pt;}
.y34{bottom:195.133333pt;}
.yc4{bottom:195.293333pt;}
.y180{bottom:197.146667pt;}
.y10d{bottom:197.826667pt;}
.y66{bottom:198.013333pt;}
.y171{bottom:198.946667pt;}
.y189{bottom:200.253333pt;}
.y3b{bottom:201.573333pt;}
.ya6{bottom:201.826667pt;}
.y75{bottom:201.946667pt;}
.y1b6{bottom:202.013333pt;}
.yff{bottom:203.013333pt;}
.yf4{bottom:203.360000pt;}
.yb1{bottom:203.746667pt;}
.y114{bottom:203.933333pt;}
.y19b{bottom:204.293333pt;}
.y5c{bottom:205.976114pt;}
.y146{bottom:206.400000pt;}
.y1c2{bottom:206.426667pt;}
.y165{bottom:206.626667pt;}
.y158{bottom:206.880000pt;}
.y9{bottom:207.013333pt;}
.y1a9{bottom:207.453333pt;}
.y179{bottom:207.653333pt;}
.y1de{bottom:207.773333pt;}
.ye7{bottom:208.826667pt;}
.y1cf{bottom:208.866667pt;}
.y33{bottom:209.213333pt;}
.y17f{bottom:210.106667pt;}
.y122{bottom:210.426667pt;}
.y8f{bottom:210.973333pt;}
.y1eb{bottom:211.040000pt;}
.y22{bottom:211.106667pt;}
.yd2{bottom:211.226667pt;}
.y9f{bottom:211.266667pt;}
.yc3{bottom:211.293333pt;}
.yd0{bottom:211.333333pt;}
.y188{bottom:212.093333pt;}
.y10c{bottom:212.226667pt;}
.y65{bottom:214.013333pt;}
.yd7{bottom:215.586667pt;}
.y1b5{bottom:216.413333pt;}
.y19a{bottom:217.253333pt;}
.y131{bottom:217.413333pt;}
.y3a{bottom:217.600000pt;}
.y74{bottom:217.626667pt;}
.y113{bottom:219.133333pt;}
.y1c1{bottom:219.386667pt;}
.y139{bottom:219.426667pt;}
.y170{bottom:220.573333pt;}
.yb0{bottom:220.960000pt;}
.y18{bottom:221.533333pt;}
.y1dd{bottom:222.173333pt;}
.y157{bottom:222.240000pt;}
.y39{bottom:223.040000pt;}
.ye6{bottom:223.226667pt;}
.y1ce{bottom:223.266667pt;}
.yfe{bottom:224.613333pt;}
.yf3{bottom:224.960000pt;}
.y145{bottom:225.280000pt;}
.yd1{bottom:225.626667pt;}
.y9e{bottom:225.693333pt;}
.ycf{bottom:225.733333pt;}
.y8e{bottom:226.973333pt;}
.y1ea{bottom:227.040000pt;}
.y21{bottom:227.106667pt;}
.yc2{bottom:227.293333pt;}
.y164{bottom:228.226667pt;}
.y64{bottom:230.013333pt;}
.y178{bottom:230.053333pt;}
.y199{bottom:230.240000pt;}
.y1b4{bottom:230.813333pt;}
.y8{bottom:231.653333pt;}
.y121{bottom:232.026667pt;}
.y73{bottom:232.066667pt;}
.y10b{bottom:233.826667pt;}
.ye4{bottom:235.493333pt;}
.y1dc{bottom:236.573333pt;}
.y17e{bottom:237.466667pt;}
.ye5{bottom:237.666667pt;}
.y85{bottom:238.906667pt;}
.y130{bottom:239.013333pt;}
.y138{bottom:239.586667pt;}
.y156{bottom:240.480000pt;}
.y16f{bottom:242.173333pt;}
.y8d{bottom:242.973333pt;}
.y1e9{bottom:243.040000pt;}
.y20{bottom:243.106667pt;}
.yfd{bottom:243.173333pt;}
.y98{bottom:243.226667pt;}
.y59{bottom:243.261642pt;}
.yc1{bottom:243.293333pt;}
.ye2{bottom:243.493333pt;}
.yf2{bottom:243.520000pt;}
.yd6{bottom:244.386667pt;}
.y1b3{bottom:245.253333pt;}
.y63{bottom:246.013333pt;}
.y72{bottom:246.466667pt;}
.y1c0{bottom:246.746667pt;}
.y10a{bottom:248.546667pt;}
.yf0{bottom:249.346667pt;}
.y112{bottom:249.373333pt;}
.ye3{bottom:249.893333pt;}
.y17{bottom:250.333333pt;}
.y17d{bottom:250.426667pt;}
.y144{bottom:250.906667pt;}
.y1cd{bottom:252.066667pt;}
.y177{bottom:252.453333pt;}
.y137{bottom:252.546667pt;}
.y120{bottom:253.946667pt;}
.y155{bottom:254.880000pt;}
.y1cc{bottom:256.253333pt;}
.y7{bottom:256.293333pt;}
.yfc{bottom:256.320000pt;}
.y16e{bottom:256.573333pt;}
.yf1{bottom:256.640000pt;}
.y198{bottom:257.600000pt;}
.y97{bottom:257.626667pt;}
.ye1{bottom:257.893333pt;}
.y8c{bottom:258.973333pt;}
.y1e8{bottom:259.040000pt;}
.y1f{bottom:259.106667pt;}
.yc0{bottom:259.293333pt;}
.y12f{bottom:260.613333pt;}
.y71{bottom:260.866667pt;}
.y56{bottom:261.969213pt;}
.y62{bottom:262.013333pt;}
.y1a8{bottom:262.240000pt;}
.yef{bottom:263.746667pt;}
.y111{bottom:264.573333pt;}
.y1db{bottom:264.893333pt;}
.y48{bottom:269.146667pt;}
.y154{bottom:270.240000pt;}
.y84{bottom:270.426667pt;}
.y197{bottom:270.560000pt;}
.y143{bottom:271.706667pt;}
.y136{bottom:272.706667pt;}
.ya5{bottom:274.213333pt;}
.y12e{bottom:275.013333pt;}
.y1e7{bottom:275.040000pt;}
.y70{bottom:275.266667pt;}
.y1cb{bottom:277.213333pt;}
.y61{bottom:278.013333pt;}
.y11f{bottom:278.106667pt;}
.y16{bottom:279.133333pt;}
.y1da{bottom:279.293333pt;}
.y110{bottom:279.613333pt;}
.y53{bottom:280.568773pt;}
.y6{bottom:280.933333pt;}
.y1a7{bottom:281.440000pt;}
.y196{bottom:283.520000pt;}
.y135{bottom:285.666667pt;}
.y4a{bottom:288.453333pt;}
.y176{bottom:289.186667pt;}
.y6f{bottom:289.666667pt;}
.yd4{bottom:290.493333pt;}
.yca{bottom:290.560000pt;}
.y1ca{bottom:290.693333pt;}
.y1e6{bottom:291.040000pt;}
.y47{bottom:291.546667pt;}
.y31{bottom:294.213333pt;}
.y17c{bottom:296.866667pt;}
.y1bf{bottom:296.960000pt;}
.y12d{bottom:297.120000pt;}
.y4e{bottom:299.253841pt;}
.y83{bottom:300.546667pt;}
.y1a6{bottom:300.640000pt;}
.y11e{bottom:302.880000pt;}
.y6e{bottom:304.386667pt;}
.y5{bottom:305.573333pt;}
.y134{bottom:306.626667pt;}
.y1e5{bottom:307.040000pt;}
.ya4{bottom:307.066667pt;}
.y2f{bottom:308.293333pt;}
.y175{bottom:308.386667pt;}
.yd3{bottom:309.693333pt;}
.yc9{bottom:309.760000pt;}
.y9c{bottom:310.013333pt;}
.y49{bottom:310.880000pt;}
.y93{bottom:311.293333pt;}
.y10f{bottom:311.746667pt;}
.ybf{bottom:312.480000pt;}
.yd5{bottom:312.546667pt;}
.y46{bottom:313.986667pt;}
.y60{bottom:315.866667pt;}
.y30{bottom:316.613333pt;}
.y1d9{bottom:318.080000pt;}
.y11d{bottom:322.080000pt;}
.y82{bottom:322.946667pt;}
.y195{bottom:323.293333pt;}
.ya3{bottom:329.466667pt;}
.y4{bottom:330.213333pt;}
.y4b{bottom:340.343170pt;}
.y15{bottom:349.986667pt;}
.y3{bottom:350.053333pt;}
.y2{bottom:591.040000pt;}
.h14{height:18.599559pt;}
.h13{height:18.685969pt;}
.h15{height:18.707571pt;}
.he{height:23.136037pt;}
.h4{height:28.968750pt;}
.hf{height:30.926696pt;}
.h16{height:37.285528pt;}
.h25{height:38.715000pt;}
.h9{height:38.818125pt;}
.h11{height:41.087529pt;}
.h12{height:42.381809pt;}
.h10{height:42.402905pt;}
.h18{height:43.031250pt;}
.h8{height:44.722500pt;}
.h1f{height:48.088125pt;}
.h7{height:50.062500pt;}
.h1d{height:52.134375pt;}
.hc{height:54.514687pt;}
.h1b{height:54.809167pt;}
.h1e{height:55.298750pt;}
.ha{height:55.402500pt;}
.h20{height:57.730313pt;}
.h21{height:57.817125pt;}
.hb{height:57.937500pt;}
.h22{height:62.812500pt;}
.h6{height:66.750000pt;}
.h5{height:67.786875pt;}
.h2{height:67.837500pt;}
.hd{height:67.902750pt;}
.h24{height:78.097500pt;}
.h1a{height:98.489167pt;}
.h1c{height:98.595833pt;}
.h23{height:100.729167pt;}
.h19{height:107.662500pt;}
.h17{height:170.806569pt;}
.h3{height:360.000000pt;}
.h0{height:1074.560000pt;}
.h1{height:1074.666667pt;}
.w5{width:32.476423pt;}
.w3{width:92.216671pt;}
.w4{width:97.382391pt;}
.w7{width:129.864223pt;}
.w6{width:186.461765pt;}
.w8{width:409.408120pt;}
.w2{width:480.000000pt;}
.w0{width:745.280000pt;}
.w1{width:745.333333pt;}
.x0{left:0.000000pt;}
.x1a{left:2.920931pt;}
.x53{left:14.240000pt;}
.x11{left:16.093333pt;}
.xd{left:17.920000pt;}
.x54{left:19.840000pt;}
.x22{left:21.826667pt;}
.x4b{left:23.586667pt;}
.x28{left:25.533333pt;}
.x3c{left:26.786667pt;}
.x52{left:27.746667pt;}
.x42{left:29.413333pt;}
.x4c{left:31.066667pt;}
.x7{left:34.746667pt;}
.xb{left:36.933333pt;}
.x23{left:38.080000pt;}
.x4e{left:40.773333pt;}
.xe{left:41.920000pt;}
.x15{left:44.453333pt;}
.x49{left:45.733333pt;}
.x45{left:47.586667pt;}
.x16{left:49.093333pt;}
.x2f{left:50.973333pt;}
.x46{left:52.093333pt;}
.x12{left:54.813333pt;}
.x4d{left:55.840000pt;}
.x4a{left:57.306667pt;}
.x25{left:58.333333pt;}
.x47{left:59.933333pt;}
.xc{left:60.933333pt;}
.x5{left:64.666667pt;}
.x24{left:68.000000pt;}
.x10{left:71.840000pt;}
.x14{left:78.493333pt;}
.x2a{left:80.706667pt;}
.x26{left:82.333333pt;}
.x13{left:85.053333pt;}
.x18{left:93.253333pt;}
.xf{left:95.840000pt;}
.x3b{left:100.480000pt;}
.x35{left:110.013333pt;}
.x1f{left:121.957877pt;}
.x2{left:132.640000pt;}
.x20{left:137.860722pt;}
.x6{left:140.506667pt;}
.x4f{left:145.506667pt;}
.x2b{left:147.360000pt;}
.x21{left:149.219898pt;}
.xa{left:150.586667pt;}
.x9{left:160.986667pt;}
.x19{left:168.819397pt;}
.x2c{left:170.106667pt;}
.x34{left:173.093333pt;}
.x33{left:177.253333pt;}
.x8{left:178.626667pt;}
.x2d{left:181.466667pt;}
.x1e{left:183.540835pt;}
.x30{left:191.453333pt;}
.x17{left:198.373333pt;}
.x43{left:202.880000pt;}
.x27{left:207.013333pt;}
.x29{left:208.613333pt;}
.x44{left:217.920000pt;}
.x38{left:232.986667pt;}
.x3a{left:236.986667pt;}
.x39{left:241.466667pt;}
.x4{left:246.626667pt;}
.x37{left:251.386667pt;}
.x48{left:255.973333pt;}
.x31{left:259.493333pt;}
.x1b{left:261.036068pt;}
.x32{left:270.373333pt;}
.x50{left:283.546667pt;}
.x36{left:288.893333pt;}
.x51{left:309.946667pt;}
.x2e{left:314.906667pt;}
.x3{left:324.413333pt;}
.x1c{left:358.418459pt;}
.x3e{left:361.053333pt;}
.x3f{left:368.413333pt;}
.x41{left:386.400000pt;}
.x1d{left:390.900291pt;}
.x3d{left:401.946667pt;}
.x40{left:717.666667pt;}
.x1{left:726.306667pt;}
}




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