
    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_5905e0ff4c183f7b1b6c9ffc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7f7e57b3f8a29d7a66e4fdf1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_81dab72223fb9b28d084d0f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.680176;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_cb1779886c865c76b80dc36d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3e43e23bc23b3a06fc78ce4b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_fafe1545c4f51c3a7dd075bf.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a4c42d63d707c9b874963800.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_23bbda4432fe8b12ecc60476.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.690918;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_eed7575d9386761c94653f05.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0c8388b49b60a4bfa2563d20.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a27de4de56141d8292f1011d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9cb754a00308fc6106b3ef6e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-2.160000px;}
.ls7{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-0.936000px;}
.ls19{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.702000px;}
.ls8{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.023040px;}
.ls9{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.336000px;}
.ls4{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.504000px;}
.ls13{letter-spacing:2.384640px;}
.ls17{letter-spacing:5.040000px;}
.ls14{letter-spacing:21.824640px;}
.ls16{letter-spacing:25.424640px;}
.ls6{letter-spacing:31.680000px;}
.ls1{letter-spacing:31.824000px;}
.ls15{letter-spacing:36.944640px;}
.ls11{letter-spacing:41.184000px;}
.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;}
}
.ws1{word-spacing:-84.240000px;}
.ws3{word-spacing:-72.000000px;}
.ws5{word-spacing:-21.420000px;}
.ws2{word-spacing:-21.060000px;}
.ws8{word-spacing:-18.432000px;}
.ws6{word-spacing:-18.144000px;}
.ws12{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.928000px;}
.wsa{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws11{word-spacing:-17.303040px;}
.ws10{word-spacing:-17.280000px;}
.wsb{word-spacing:-17.064000px;}
.ws9{word-spacing:-16.560000px;}
.wsf{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.500000px;}
.wse{word-spacing:-12.798000px;}
.ws0{word-spacing:0.000000px;}
._20{margin-left:-14.873280px;}
._3{margin-left:-13.516560px;}
._21{margin-left:-10.258560px;}
._14{margin-left:-2.346960px;}
._2{margin-left:-1.094640px;}
._0{width:1.254960px;}
._c{width:2.465040px;}
._d{width:3.630960px;}
._6{width:4.896000px;}
._7{width:6.084000px;}
._8{width:7.212000px;}
._9{width:8.736000px;}
._b{width:9.828720px;}
._a{width:10.920000px;}
._13{width:12.768000px;}
._12{width:14.232000px;}
._10{width:15.840000px;}
._11{width:16.920000px;}
._e{width:19.368000px;}
._f{width:20.777040px;}
._17{width:22.296000px;}
._18{width:23.765040px;}
._1f{width:25.128000px;}
._25{width:26.280000px;}
._1b{width:27.288000px;}
._27{width:28.837680px;}
._23{width:29.964240px;}
._19{width:31.104000px;}
._1a{width:32.484000px;}
._15{width:33.984000px;}
._16{width:35.328000px;}
._22{width:37.102080px;}
._2a{width:38.932560px;}
._28{width:40.464000px;}
._29{width:41.616000px;}
._24{width:49.835520px;}
._1c{width:54.576000px;}
._1d{width:56.016000px;}
._1e{width:57.398640px;}
._35{width:59.112000px;}
._36{width:60.384000px;}
._2d{width:70.704000px;}
._2e{width:71.820000px;}
._37{width:86.040000px;}
._4{width:103.680000px;}
._32{width:107.280000px;}
._33{width:108.401040px;}
._34{width:121.968000px;}
._2f{width:142.380000px;}
._2c{width:278.868720px;}
._31{width:284.688000px;}
._30{width:285.954960px;}
._2b{width:843.120000px;}
._5{width:846.156000px;}
._26{width:1499.523360px;}
._1{width:1529.763360px;}
.fc5{color:rgb(146,205,220);}
.fc4{color:rgb(33,88,104);}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(49,132,155);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs6{font-size:69.120000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:0.180000px;}
.y98{bottom:5.580000px;}
.yb1{bottom:20.520000px;}
.yb9{bottom:20.700000px;}
.y100{bottom:22.140000px;}
.y117{bottom:25.194000px;}
.ya8{bottom:29.520000px;}
.y9d{bottom:35.820000px;}
.yb0{bottom:38.520000px;}
.y9b{bottom:43.740000px;}
.y116{bottom:44.994000px;}
.yff{bottom:45.174000px;}
.ya7{bottom:47.340000px;}
.yc2{bottom:47.520000px;}
.y9c{bottom:51.480000px;}
.yaf{bottom:56.340000px;}
.y3{bottom:56.736000px;}
.yfe{bottom:64.794000px;}
.ya6{bottom:65.160000px;}
.yb5{bottom:65.340000px;}
.yae{bottom:74.160000px;}
.ya0{bottom:82.800000px;}
.ya5{bottom:83.160000px;}
.yfd{bottom:84.594000px;}
.yad{bottom:91.980000px;}
.ybf{bottom:92.160000px;}
.y9f{bottom:100.620000px;}
.ya4{bottom:100.980000px;}
.yfc{bottom:104.394000px;}
.y96{bottom:107.856000px;}
.yac{bottom:109.800000px;}
.ybe{bottom:109.980000px;}
.y6c{bottom:111.456000px;}
.y192{bottom:112.896000px;}
.y20f{bottom:113.076000px;}
.y216{bottom:115.236000px;}
.ycf{bottom:116.136000px;}
.yde{bottom:116.856000px;}
.yb3{bottom:118.440000px;}
.y40{bottom:118.656000px;}
.ya3{bottom:118.800000px;}
.y118{bottom:121.896000px;}
.y115{bottom:124.194000px;}
.yfb{bottom:124.374000px;}
.y205{bottom:125.136000px;}
.y1be{bottom:126.936000px;}
.yab{bottom:127.620000px;}
.yb8{bottom:127.800000px;}
.y16c{bottom:127.836000px;}
.ya2{bottom:136.620000px;}
.yc1{bottom:136.800000px;}
.yce{bottom:137.016000px;}
.y3f{bottom:139.536000px;}
.y102{bottom:142.056000px;}
.yfa{bottom:144.174000px;}
.y114{bottom:144.219000px;}
.yaa{bottom:145.620000px;}
.ybd{bottom:145.650000px;}
.y143{bottom:147.096000px;}
.y6b{bottom:147.276000px;}
.y1bd{bottom:147.636000px;}
.y16b{bottom:148.716000px;}
.ya1{bottom:154.440000px;}
.yc0{bottom:154.650000px;}
.ycd{bottom:157.710000px;}
.y3e{bottom:160.230000px;}
.y1{bottom:161.310000px;}
.ya9{bottom:163.440000px;}
.ybc{bottom:163.470000px;}
.yf9{bottom:163.974000px;}
.y113{bottom:164.019000px;}
.y1e7{bottom:165.090000px;}
.y142{bottom:167.970000px;}
.y6a{bottom:168.150000px;}
.y1bc{bottom:168.330000px;}
.y16a{bottom:169.410000px;}
.yb4{bottom:172.440000px;}
.ycc{bottom:178.410000px;}
.y3d{bottom:180.930000px;}
.yb7{bottom:181.260000px;}
.ybb{bottom:181.470000px;}
.yf8{bottom:183.819000px;}
.y1e6{bottom:185.970000px;}
.y141{bottom:188.670000px;}
.y69{bottom:188.850000px;}
.y1bb{bottom:189.030000px;}
.y169{bottom:190.110000px;}
.yb6{bottom:199.080000px;}
.ycb{bottom:199.110000px;}
.y3c{bottom:201.630000px;}
.yf7{bottom:203.619000px;}
.y1e5{bottom:206.670000px;}
.y140{bottom:209.370000px;}
.y68{bottom:209.550000px;}
.y185{bottom:210.270000px;}
.y168{bottom:210.810000px;}
.yca{bottom:219.810000px;}
.y3b{bottom:222.330000px;}
.y112{bottom:223.419000px;}
.yf6{bottom:223.599000px;}
.y1ba{bottom:224.490000px;}
.y13f{bottom:230.070000px;}
.y67{bottom:230.250000px;}
.y167{bottom:231.510000px;}
.yc9{bottom:240.510000px;}
.y1e4{bottom:242.130000px;}
.y3a{bottom:243.030000px;}
.yf5{bottom:243.399000px;}
.y1b9{bottom:245.370000px;}
.y184{bottom:246.450000px;}
.y66{bottom:250.950000px;}
.y191{bottom:252.030000px;}
.y166{bottom:252.210000px;}
.yc8{bottom:261.210000px;}
.y1e3{bottom:263.010000px;}
.yf4{bottom:263.199000px;}
.y39{bottom:263.730000px;}
.y13e{bottom:265.530000px;}
.y1b8{bottom:266.070000px;}
.y95{bottom:267.150000px;}
.y183{bottom:267.330000px;}
.y123{bottom:272.550000px;}
.y165{bottom:272.910000px;}
.y175{bottom:278.670000px;}
.yc7{bottom:281.910000px;}
.yf3{bottom:282.999000px;}
.y38{bottom:284.475000px;}
.y65{bottom:286.455000px;}
.y1b7{bottom:286.815000px;}
.y94{bottom:288.075000px;}
.y164{bottom:293.655000px;}
.y1e2{bottom:298.515000px;}
.y174{bottom:299.595000px;}
.y13d{bottom:301.215000px;}
.yc6{bottom:302.655000px;}
.yf2{bottom:302.799000px;}
.y122{bottom:304.095000px;}
.y37{bottom:305.175000px;}
.y64{bottom:307.335000px;}
.y1b6{bottom:307.515000px;}
.y93{bottom:308.775000px;}
.y163{bottom:314.355000px;}
.y1e1{bottom:319.395000px;}
.y13c{bottom:322.095000px;}
.y111{bottom:322.599000px;}
.yf1{bottom:322.779000px;}
.yc5{bottom:323.355000px;}
.y36{bottom:325.875000px;}
.y63{bottom:328.035000px;}
.y1b5{bottom:328.215000px;}
.y92{bottom:329.475000px;}
.y162{bottom:335.055000px;}
.yf0{bottom:342.579000px;}
.y13b{bottom:342.795000px;}
.y35{bottom:346.575000px;}
.y62{bottom:348.735000px;}
.y1b4{bottom:348.915000px;}
.y91{bottom:350.175000px;}
.y1e0{bottom:355.035000px;}
.y161{bottom:355.755000px;}
.yc4{bottom:358.455000px;}
.yef{bottom:362.379000px;}
.y13a{bottom:363.495000px;}
.y173{bottom:366.555000px;}
.y34{bottom:367.275000px;}
.y61{bottom:369.435000px;}
.y1b3{bottom:369.615000px;}
.y90{bottom:370.875000px;}
.y1df{bottom:375.915000px;}
.y160{bottom:376.455000px;}
.y20e{bottom:382.035000px;}
.yee{bottom:382.179000px;}
.y139{bottom:384.195000px;}
.y33{bottom:387.975000px;}
.y1b2{bottom:390.315000px;}
.y8f{bottom:391.395000px;}
.y21c{bottom:393.555000px;}
.yc3{bottom:394.455000px;}
.y15f{bottom:397.155000px;}
.y11{bottom:399.315000px;}
.yed{bottom:401.979000px;}
.y20d{bottom:402.915000px;}
.y215{bottom:404.535000px;}
.y60{bottom:404.895000px;}
.y32{bottom:408.675000px;}
.y204{bottom:409.935000px;}
.y1b1{bottom:411.015000px;}
.y1de{bottom:411.375000px;}
.y8e{bottom:412.095000px;}
.y190{bottom:417.855000px;}
.yba{bottom:420.915000px;}
.y110{bottom:421.809000px;}
.yec{bottom:421.959000px;}
.y20c{bottom:423.615000px;}
.y214{bottom:425.415000px;}
.y138{bottom:425.595000px;}
.y5f{bottom:425.775000px;}
.y203{bottom:430.815000px;}
.y1b0{bottom:431.715000px;}
.y1dd{bottom:432.255000px;}
.y15e{bottom:432.615000px;}
.y18f{bottom:438.555000px;}
.yeb{bottom:441.759000px;}
.y10f{bottom:441.789000px;}
.y31{bottom:444.315000px;}
.y5e{bottom:446.475000px;}
.y8d{bottom:447.735000px;}
.y202{bottom:451.515000px;}
.y1af{bottom:452.415000px;}
.y1dc{bottom:452.955000px;}
.y15d{bottom:453.495000px;}
.y10{bottom:456.555000px;}
.y213{bottom:456.735000px;}
.y137{bottom:461.235000px;}
.yea{bottom:461.589000px;}
.y30{bottom:465.195000px;}
.y5d{bottom:467.175000px;}
.y8c{bottom:468.615000px;}
.y1ae{bottom:473.115000px;}
.y1db{bottom:473.655000px;}
.y18e{bottom:474.015000px;}
.y15c{bottom:474.195000px;}
.y20b{bottom:475.635000px;}
.ye9{bottom:481.389000px;}
.y201{bottom:482.835000px;}
.y1fb{bottom:484.455000px;}
.y2f{bottom:485.895000px;}
.y5c{bottom:487.875000px;}
.y8b{bottom:489.315000px;}
.y1ad{bottom:493.815000px;}
.y15b{bottom:494.895000px;}
.y136{bottom:496.515000px;}
.ye8{bottom:501.189000px;}
.y2e{bottom:506.595000px;}
.y5b{bottom:508.575000px;}
.y1da{bottom:509.115000px;}
.y8a{bottom:510.015000px;}
.y1ac{bottom:514.515000px;}
.y15a{bottom:515.595000px;}
.yf{bottom:516.855000px;}
.y10e{bottom:520.989000px;}
.ye7{bottom:521.169000px;}
.y1fa{bottom:523.335000px;}
.y2d{bottom:527.295000px;}
.y5a{bottom:529.275000px;}
.y89{bottom:530.715000px;}
.y135{bottom:532.515000px;}
.y159{bottom:536.295000px;}
.ye6{bottom:540.969000px;}
.y1d9{bottom:544.935000px;}
.y182{bottom:545.475000px;}
.y2c{bottom:547.995000px;}
.y59{bottom:549.975000px;}
.y88{bottom:551.415000px;}
.y134{bottom:553.395000px;}
.y158{bottom:556.995000px;}
.y1f9{bottom:558.975000px;}
.ye5{bottom:560.769000px;}
.y1d8{bottom:565.845000px;}
.y181{bottom:566.385000px;}
.y2b{bottom:568.725000px;}
.y1ab{bottom:570.885000px;}
.y87{bottom:572.145000px;}
.y152{bottom:573.945000px;}
.y133{bottom:574.125000px;}
.ye{bottom:577.365000px;}
.y18d{bottom:577.725000px;}
.y1f8{bottom:579.885000px;}
.ye4{bottom:580.569000px;}
.y58{bottom:585.645000px;}
.y1d7{bottom:586.545000px;}
.y180{bottom:587.085000px;}
.y2a{bottom:589.425000px;}
.y1aa{bottom:591.585000px;}
.y157{bottom:592.305000px;}
.y86{bottom:592.845000px;}
.y132{bottom:594.825000px;}
.y18c{bottom:598.425000px;}
.ye3{bottom:600.369000px;}
.y1f7{bottom:600.585000px;}
.y172{bottom:604.005000px;}
.y57{bottom:606.525000px;}
.y17f{bottom:607.785000px;}
.y29{bottom:610.125000px;}
.y1a9{bottom:612.285000px;}
.y85{bottom:613.545000px;}
.y131{bottom:615.525000px;}
.y18b{bottom:619.125000px;}
.y10d{bottom:620.169000px;}
.ye2{bottom:620.349000px;}
.y1f6{bottom:621.285000px;}
.y1d6{bottom:622.005000px;}
.y171{bottom:624.885000px;}
.yb2{bottom:625.785000px;}
.y56{bottom:627.225000px;}
.y156{bottom:628.305000px;}
.y17e{bottom:628.485000px;}
.y28{bottom:630.825000px;}
.y1a8{bottom:632.985000px;}
.y84{bottom:634.245000px;}
.y151{bottom:636.225000px;}
.yd{bottom:637.665000px;}
.y18a{bottom:639.825000px;}
.ye1{bottom:640.149000px;}
.y1d5{bottom:642.885000px;}
.y170{bottom:645.585000px;}
.y55{bottom:647.925000px;}
.y155{bottom:649.185000px;}
.y130{bottom:650.805000px;}
.y27{bottom:651.525000px;}
.y1a7{bottom:653.685000px;}
.y1c4{bottom:654.765000px;}
.y83{bottom:654.945000px;}
.y1f5{bottom:656.745000px;}
.y150{bottom:656.925000px;}
.ye0{bottom:659.949000px;}
.y189{bottom:660.525000px;}
.y54{bottom:668.625000px;}
.y21b{bottom:669.345000px;}
.y154{bottom:669.885000px;}
.y26{bottom:672.225000px;}
.y1a6{bottom:674.385000px;}
.y82{bottom:675.645000px;}
.y14f{bottom:677.625000px;}
.y1d4{bottom:678.345000px;}
.y10c{bottom:679.749000px;}
.y121{bottom:681.045000px;}
.y188{bottom:681.225000px;}
.y12f{bottom:686.805000px;}
.y53{bottom:689.325000px;}
.y17d{bottom:690.585000px;}
.yc{bottom:692.205000px;}
.y25{bottom:692.925000px;}
.y81{bottom:696.345000px;}
.ydf{bottom:697.749000px;}
.y1f4{bottom:698.325000px;}
.y1d3{bottom:699.225000px;}
.y10b{bottom:699.549000px;}
.y120{bottom:701.925000px;}
.y21a{bottom:705.165000px;}
.y153{bottom:705.345000px;}
.y12e{bottom:707.685000px;}
.y1a5{bottom:709.845000px;}
.y52{bottom:710.025000px;}
.y17c{bottom:711.285000px;}
.y14e{bottom:713.265000px;}
.y24{bottom:713.625000px;}
.y16f{bottom:716.865000px;}
.y80{bottom:717.045000px;}
.y1f3{bottom:719.025000px;}
.y10a{bottom:719.394000px;}
.y1d2{bottom:719.925000px;}
.y11f{bottom:722.625000px;}
.y219{bottom:726.045000px;}
.y20a{bottom:726.765000px;}
.y12d{bottom:728.385000px;}
.y51{bottom:730.545000px;}
.y1a4{bottom:730.725000px;}
.y17b{bottom:731.985000px;}
.y14d{bottom:734.145000px;}
.y23{bottom:734.325000px;}
.y7f{bottom:737.745000px;}
.y109{bottom:739.374000px;}
.yb{bottom:745.125000px;}
.y218{bottom:746.745000px;}
.y209{bottom:747.645000px;}
.y12c{bottom:749.085000px;}
.y200{bottom:749.625000px;}
.y50{bottom:751.245000px;}
.y1a3{bottom:751.425000px;}
.y17a{bottom:752.685000px;}
.y1f2{bottom:754.665000px;}
.y14c{bottom:754.845000px;}
.y22{bottom:755.025000px;}
.y1d1{bottom:755.565000px;}
.y11e{bottom:758.265000px;}
.y7e{bottom:758.445000px;}
.y108{bottom:759.174000px;}
.y212{bottom:766.365000px;}
.y208{bottom:768.345000px;}
.y12b{bottom:769.785000px;}
.y1ff{bottom:770.505000px;}
.y4f{bottom:771.945000px;}
.y1a2{bottom:772.125000px;}
.y179{bottom:773.385000px;}
.y14b{bottom:775.545000px;}
.y1d0{bottom:776.265000px;}
.y217{bottom:777.885000px;}
.y107{bottom:778.974000px;}
.y7d{bottom:779.145000px;}
.y211{bottom:787.245000px;}
.y21{bottom:790.485000px;}
.y1fe{bottom:791.205000px;}
.y4e{bottom:792.645000px;}
.y1a1{bottom:792.825000px;}
.y178{bottom:794.085000px;}
.y1f1{bottom:796.245000px;}
.ya{bottom:798.225000px;}
.y106{bottom:798.774000px;}
.y207{bottom:799.485000px;}
.y7c{bottom:799.845000px;}
.y14a{bottom:810.645000px;}
.y12a{bottom:811.185000px;}
.y20{bottom:811.365000px;}
.y1cf{bottom:811.905000px;}
.y1a0{bottom:813.525000px;}
.y177{bottom:814.785000px;}
.y210{bottom:818.385000px;}
.y105{bottom:818.574000px;}
.y7b{bottom:820.545000px;}
.y1fd{bottom:822.345000px;}
.y4d{bottom:828.285000px;}
.y1f0{bottom:831.705000px;}
.y129{bottom:831.885000px;}
.y1f{bottom:832.065000px;}
.y19f{bottom:834.225000px;}
.y176{bottom:835.485000px;}
.y7a{bottom:841.245000px;}
.y149{bottom:846.690000px;}
.y1ce{bottom:847.590000px;}
.y9e{bottom:848.490000px;}
.y4c{bottom:849.210000px;}
.y9{bottom:851.370000px;}
.y1ef{bottom:852.630000px;}
.y1e{bottom:852.810000px;}
.y19e{bottom:854.970000px;}
.y1c3{bottom:856.050000px;}
.y104{bottom:859.614000px;}
.y79{bottom:861.990000px;}
.y128{bottom:867.030000px;}
.y148{bottom:867.570000px;}
.y4b{bottom:869.910000px;}
.ydd{bottom:870.990000px;}
.y1ee{bottom:873.330000px;}
.y1d{bottom:873.510000px;}
.y19d{bottom:875.670000px;}
.y1c2{bottom:876.930000px;}
.y78{bottom:882.690000px;}
.y1cd{bottom:883.230000px;}
.y147{bottom:888.270000px;}
.y4a{bottom:890.610000px;}
.ydc{bottom:891.870000px;}
.y1c{bottom:894.210000px;}
.y19c{bottom:896.370000px;}
.y1c1{bottom:897.630000px;}
.y103{bottom:900.294000px;}
.y127{bottom:903.210000px;}
.y77{bottom:903.390000px;}
.y1cc{bottom:904.110000px;}
.y8{bottom:904.290000px;}
.y1ed{bottom:908.790000px;}
.y146{bottom:908.970000px;}
.ydb{bottom:912.570000px;}
.y1b{bottom:914.910000px;}
.y187{bottom:918.150000px;}
.y1c0{bottom:918.330000px;}
.y11d{bottom:924.090000px;}
.y1cb{bottom:924.810000px;}
.y49{bottom:925.710000px;}
.y1ec{bottom:929.670000px;}
.y19b{bottom:932.010000px;}
.yda{bottom:933.270000px;}
.y1a{bottom:935.610000px;}
.y76{bottom:938.850000px;}
.y186{bottom:939.030000px;}
.y145{bottom:944.610000px;}
.y11c{bottom:944.790000px;}
.y1eb{bottom:950.370000px;}
.y19a{bottom:952.890000px;}
.yd9{bottom:953.970000px;}
.y19{bottom:956.310000px;}
.y7{bottom:957.390000px;}
.y75{bottom:959.730000px;}
.y1ca{bottom:960.450000px;}
.y48{bottom:961.710000px;}
.y11b{bottom:965.490000px;}
.y199{bottom:973.590000px;}
.yd8{bottom:974.670000px;}
.y18{bottom:977.010000px;}
.y144{bottom:980.250000px;}
.y74{bottom:980.430000px;}
.y1c9{bottom:981.330000px;}
.y47{bottom:982.590000px;}
.y1ea{bottom:986.010000px;}
.y11a{bottom:986.190000px;}
.y198{bottom:994.290000px;}
.yd7{bottom:995.370000px;}
.y17{bottom:997.710000px;}
.y73{bottom:1001.130000px;}
.y1c8{bottom:1002.030000px;}
.y46{bottom:1003.290000px;}
.y126{bottom:1006.890000px;}
.y197{bottom:1014.990000px;}
.yd6{bottom:1016.070000px;}
.y6{bottom:1016.250000px;}
.y16{bottom:1018.410000px;}
.y119{bottom:1021.650000px;}
.y72{bottom:1021.830000px;}
.y45{bottom:1023.990000px;}
.y125{bottom:1027.590000px;}
.y99{bottom:1035.330000px;}
.y196{bottom:1035.690000px;}
.yd5{bottom:1036.770000px;}
.y1c7{bottom:1037.490000px;}
.y15{bottom:1039.110000px;}
.y1e9{bottom:1042.350000px;}
.y71{bottom:1042.530000px;}
.y44{bottom:1044.690000px;}
.y16e{bottom:1048.290000px;}
.y195{bottom:1056.390000px;}
.y206{bottom:1057.290000px;}
.yd4{bottom:1057.470000px;}
.y1c6{bottom:1058.370000px;}
.y14{bottom:1059.810000px;}
.y124{bottom:1062.690000px;}
.y70{bottom:1063.230000px;}
.y43{bottom:1065.390000px;}
.y5{bottom:1076.730000px;}
.y194{bottom:1077.090000px;}
.y1bf{bottom:1077.990000px;}
.yd3{bottom:1078.170000px;}
.y1fc{bottom:1080.330000px;}
.y13{bottom:1080.510000px;}
.y16d{bottom:1083.750000px;}
.y6f{bottom:1083.930000px;}
.y1c5{bottom:1094.370000px;}
.y101{bottom:1098.690000px;}
.yd2{bottom:1098.870000px;}
.y12{bottom:1101.210000px;}
.y42{bottom:1101.390000px;}
.y6e{bottom:1104.630000px;}
.y193{bottom:1112.910000px;}
.y1e8{bottom:1119.390000px;}
.yd1{bottom:1119.570000px;}
.y97{bottom:1128.600000px;}
.y4{bottom:1137.060000px;}
.y6d{bottom:1139.760000px;}
.y41{bottom:1140.120000px;}
.yd0{bottom:1140.300000px;}
.y2{bottom:1196.280000px;}
.hd{height:2.902500px;}
.ha{height:17.820000px;}
.h10{height:47.961914px;}
.hb{height:52.998047px;}
.he{height:54.421875px;}
.h3{height:58.651172px;}
.h14{height:67.837500px;}
.h16{height:68.951250px;}
.h18{height:70.628906px;}
.h7{height:70.664062px;}
.h15{height:71.044468px;}
.h9{height:72.562500px;}
.h6{height:74.004654px;}
.hc{height:81.900000px;}
.h4{height:84.898125px;}
.h5{height:86.585445px;}
.h8{height:87.695156px;}
.h2{height:143.964844px;}
.hf{height:175.680000px;}
.h12{height:193.710000px;}
.h11{height:211.320000px;}
.h13{height:731.445000px;}
.h17{height:933.945000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:201.450000px;}
.w3{width:219.090000px;}
.w2{width:640.005000px;}
.w5{width:645.045000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:1.260000px;}
.xa{left:3.060000px;}
.x1a{left:5.040000px;}
.x10{left:6.300000px;}
.x19{left:7.920000px;}
.xe{left:9.360000px;}
.x15{left:11.160000px;}
.xf{left:13.320000px;}
.x12{left:14.760000px;}
.x22{left:16.380000px;}
.x13{left:17.460000px;}
.xc{left:20.340000px;}
.x1e{left:22.860000px;}
.x1c{left:25.560000px;}
.x1f{left:27.180000px;}
.x11{left:28.440000px;}
.x20{left:29.880000px;}
.x1b{left:31.320000px;}
.x17{left:34.380000px;}
.x8{left:41.400000px;}
.x16{left:43.200000px;}
.x25{left:48.954000px;}
.x14{left:54.540000px;}
.x26{left:60.474000px;}
.x18{left:65.700000px;}
.xb{left:70.380000px;}
.xd{left:73.794000px;}
.x27{left:87.474000px;}
.x1d{left:89.640000px;}
.x24{left:104.754000px;}
.x28{left:114.474000px;}
.x23{left:121.176000px;}
.x5{left:126.576000px;}
.x1{left:127.656000px;}
.x2{left:148.896000px;}
.x3{left:170.130000px;}
.x6{left:218.019000px;}
.x2a{left:257.250000px;}
.x2d{left:308.055000px;}
.x2b{left:336.495000px;}
.x7{left:354.675000px;}
.x4{left:537.585000px;}
.x9{left:565.125000px;}
.x2e{left:582.405000px;}
.x39{left:591.585000px;}
.x2c{left:623.085000px;}
.x36{left:632.085000px;}
.x34{left:666.825000px;}
.x33{left:671.325000px;}
.x35{left:674.745000px;}
.x30{left:681.585000px;}
.x31{left:692.745000px;}
.x3a{left:695.085000px;}
.x32{left:697.245000px;}
.x38{left:700.710000px;}
.x37{left:719.790000px;}
.x2f{left:733.290000px;}
.x29{left:764.970000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-1.920000pt;}
.ls7{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-0.832000pt;}
.ls19{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.624000pt;}
.ls8{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.020480pt;}
.ls9{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.298667pt;}
.ls4{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.448000pt;}
.ls13{letter-spacing:2.119680pt;}
.ls17{letter-spacing:4.480000pt;}
.ls14{letter-spacing:19.399680pt;}
.ls16{letter-spacing:22.599680pt;}
.ls6{letter-spacing:28.160000pt;}
.ls1{letter-spacing:28.288000pt;}
.ls15{letter-spacing:32.839680pt;}
.ls11{letter-spacing:36.608000pt;}
.ws1{word-spacing:-74.880000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws5{word-spacing:-19.040000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws8{word-spacing:-16.384000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws12{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.936000pt;}
.wsa{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws11{word-spacing:-15.380480pt;}
.ws10{word-spacing:-15.360000pt;}
.wsb{word-spacing:-15.168000pt;}
.ws9{word-spacing:-14.720000pt;}
.wsf{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.376000pt;}
.ws0{word-spacing:0.000000pt;}
._20{margin-left:-13.220693pt;}
._3{margin-left:-12.014720pt;}
._21{margin-left:-9.118720pt;}
._14{margin-left:-2.086187pt;}
._2{margin-left:-0.973013pt;}
._0{width:1.115520pt;}
._c{width:2.191147pt;}
._d{width:3.227520pt;}
._6{width:4.352000pt;}
._7{width:5.408000pt;}
._8{width:6.410667pt;}
._9{width:7.765333pt;}
._b{width:8.736640pt;}
._a{width:9.706667pt;}
._13{width:11.349333pt;}
._12{width:12.650667pt;}
._10{width:14.080000pt;}
._11{width:15.040000pt;}
._e{width:17.216000pt;}
._f{width:18.468480pt;}
._17{width:19.818667pt;}
._18{width:21.124480pt;}
._1f{width:22.336000pt;}
._25{width:23.360000pt;}
._1b{width:24.256000pt;}
._27{width:25.633493pt;}
._23{width:26.634880pt;}
._19{width:27.648000pt;}
._1a{width:28.874667pt;}
._15{width:30.208000pt;}
._16{width:31.402667pt;}
._22{width:32.979627pt;}
._2a{width:34.606720pt;}
._28{width:35.968000pt;}
._29{width:36.992000pt;}
._24{width:44.298240pt;}
._1c{width:48.512000pt;}
._1d{width:49.792000pt;}
._1e{width:51.021013pt;}
._35{width:52.544000pt;}
._36{width:53.674667pt;}
._2d{width:62.848000pt;}
._2e{width:63.840000pt;}
._37{width:76.480000pt;}
._4{width:92.160000pt;}
._32{width:95.360000pt;}
._33{width:96.356480pt;}
._34{width:108.416000pt;}
._2f{width:126.560000pt;}
._2c{width:247.883307pt;}
._31{width:253.056000pt;}
._30{width:254.182187pt;}
._2b{width:749.440000pt;}
._5{width:752.138667pt;}
._26{width:1332.909653pt;}
._1{width:1359.789653pt;}
.fs5{font-size:2.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs6{font-size:61.440000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:0.160000pt;}
.y98{bottom:4.960000pt;}
.yb1{bottom:18.240000pt;}
.yb9{bottom:18.400000pt;}
.y100{bottom:19.680000pt;}
.y117{bottom:22.394667pt;}
.ya8{bottom:26.240000pt;}
.y9d{bottom:31.840000pt;}
.yb0{bottom:34.240000pt;}
.y9b{bottom:38.880000pt;}
.y116{bottom:39.994667pt;}
.yff{bottom:40.154667pt;}
.ya7{bottom:42.080000pt;}
.yc2{bottom:42.240000pt;}
.y9c{bottom:45.760000pt;}
.yaf{bottom:50.080000pt;}
.y3{bottom:50.432000pt;}
.yfe{bottom:57.594667pt;}
.ya6{bottom:57.920000pt;}
.yb5{bottom:58.080000pt;}
.yae{bottom:65.920000pt;}
.ya0{bottom:73.600000pt;}
.ya5{bottom:73.920000pt;}
.yfd{bottom:75.194667pt;}
.yad{bottom:81.760000pt;}
.ybf{bottom:81.920000pt;}
.y9f{bottom:89.440000pt;}
.ya4{bottom:89.760000pt;}
.yfc{bottom:92.794667pt;}
.y96{bottom:95.872000pt;}
.yac{bottom:97.600000pt;}
.ybe{bottom:97.760000pt;}
.y6c{bottom:99.072000pt;}
.y192{bottom:100.352000pt;}
.y20f{bottom:100.512000pt;}
.y216{bottom:102.432000pt;}
.ycf{bottom:103.232000pt;}
.yde{bottom:103.872000pt;}
.yb3{bottom:105.280000pt;}
.y40{bottom:105.472000pt;}
.ya3{bottom:105.600000pt;}
.y118{bottom:108.352000pt;}
.y115{bottom:110.394667pt;}
.yfb{bottom:110.554667pt;}
.y205{bottom:111.232000pt;}
.y1be{bottom:112.832000pt;}
.yab{bottom:113.440000pt;}
.yb8{bottom:113.600000pt;}
.y16c{bottom:113.632000pt;}
.ya2{bottom:121.440000pt;}
.yc1{bottom:121.600000pt;}
.yce{bottom:121.792000pt;}
.y3f{bottom:124.032000pt;}
.y102{bottom:126.272000pt;}
.yfa{bottom:128.154667pt;}
.y114{bottom:128.194667pt;}
.yaa{bottom:129.440000pt;}
.ybd{bottom:129.466667pt;}
.y143{bottom:130.752000pt;}
.y6b{bottom:130.912000pt;}
.y1bd{bottom:131.232000pt;}
.y16b{bottom:132.192000pt;}
.ya1{bottom:137.280000pt;}
.yc0{bottom:137.466667pt;}
.ycd{bottom:140.186667pt;}
.y3e{bottom:142.426667pt;}
.y1{bottom:143.386667pt;}
.ya9{bottom:145.280000pt;}
.ybc{bottom:145.306667pt;}
.yf9{bottom:145.754667pt;}
.y113{bottom:145.794667pt;}
.y1e7{bottom:146.746667pt;}
.y142{bottom:149.306667pt;}
.y6a{bottom:149.466667pt;}
.y1bc{bottom:149.626667pt;}
.y16a{bottom:150.586667pt;}
.yb4{bottom:153.280000pt;}
.ycc{bottom:158.586667pt;}
.y3d{bottom:160.826667pt;}
.yb7{bottom:161.120000pt;}
.ybb{bottom:161.306667pt;}
.yf8{bottom:163.394667pt;}
.y1e6{bottom:165.306667pt;}
.y141{bottom:167.706667pt;}
.y69{bottom:167.866667pt;}
.y1bb{bottom:168.026667pt;}
.y169{bottom:168.986667pt;}
.yb6{bottom:176.960000pt;}
.ycb{bottom:176.986667pt;}
.y3c{bottom:179.226667pt;}
.yf7{bottom:180.994667pt;}
.y1e5{bottom:183.706667pt;}
.y140{bottom:186.106667pt;}
.y68{bottom:186.266667pt;}
.y185{bottom:186.906667pt;}
.y168{bottom:187.386667pt;}
.yca{bottom:195.386667pt;}
.y3b{bottom:197.626667pt;}
.y112{bottom:198.594667pt;}
.yf6{bottom:198.754667pt;}
.y1ba{bottom:199.546667pt;}
.y13f{bottom:204.506667pt;}
.y67{bottom:204.666667pt;}
.y167{bottom:205.786667pt;}
.yc9{bottom:213.786667pt;}
.y1e4{bottom:215.226667pt;}
.y3a{bottom:216.026667pt;}
.yf5{bottom:216.354667pt;}
.y1b9{bottom:218.106667pt;}
.y184{bottom:219.066667pt;}
.y66{bottom:223.066667pt;}
.y191{bottom:224.026667pt;}
.y166{bottom:224.186667pt;}
.yc8{bottom:232.186667pt;}
.y1e3{bottom:233.786667pt;}
.yf4{bottom:233.954667pt;}
.y39{bottom:234.426667pt;}
.y13e{bottom:236.026667pt;}
.y1b8{bottom:236.506667pt;}
.y95{bottom:237.466667pt;}
.y183{bottom:237.626667pt;}
.y123{bottom:242.266667pt;}
.y165{bottom:242.586667pt;}
.y175{bottom:247.706667pt;}
.yc7{bottom:250.586667pt;}
.yf3{bottom:251.554667pt;}
.y38{bottom:252.866667pt;}
.y65{bottom:254.626667pt;}
.y1b7{bottom:254.946667pt;}
.y94{bottom:256.066667pt;}
.y164{bottom:261.026667pt;}
.y1e2{bottom:265.346667pt;}
.y174{bottom:266.306667pt;}
.y13d{bottom:267.746667pt;}
.yc6{bottom:269.026667pt;}
.yf2{bottom:269.154667pt;}
.y122{bottom:270.306667pt;}
.y37{bottom:271.266667pt;}
.y64{bottom:273.186667pt;}
.y1b6{bottom:273.346667pt;}
.y93{bottom:274.466667pt;}
.y163{bottom:279.426667pt;}
.y1e1{bottom:283.906667pt;}
.y13c{bottom:286.306667pt;}
.y111{bottom:286.754667pt;}
.yf1{bottom:286.914667pt;}
.yc5{bottom:287.426667pt;}
.y36{bottom:289.666667pt;}
.y63{bottom:291.586667pt;}
.y1b5{bottom:291.746667pt;}
.y92{bottom:292.866667pt;}
.y162{bottom:297.826667pt;}
.yf0{bottom:304.514667pt;}
.y13b{bottom:304.706667pt;}
.y35{bottom:308.066667pt;}
.y62{bottom:309.986667pt;}
.y1b4{bottom:310.146667pt;}
.y91{bottom:311.266667pt;}
.y1e0{bottom:315.586667pt;}
.y161{bottom:316.226667pt;}
.yc4{bottom:318.626667pt;}
.yef{bottom:322.114667pt;}
.y13a{bottom:323.106667pt;}
.y173{bottom:325.826667pt;}
.y34{bottom:326.466667pt;}
.y61{bottom:328.386667pt;}
.y1b3{bottom:328.546667pt;}
.y90{bottom:329.666667pt;}
.y1df{bottom:334.146667pt;}
.y160{bottom:334.626667pt;}
.y20e{bottom:339.586667pt;}
.yee{bottom:339.714667pt;}
.y139{bottom:341.506667pt;}
.y33{bottom:344.866667pt;}
.y1b2{bottom:346.946667pt;}
.y8f{bottom:347.906667pt;}
.y21c{bottom:349.826667pt;}
.yc3{bottom:350.626667pt;}
.y15f{bottom:353.026667pt;}
.y11{bottom:354.946667pt;}
.yed{bottom:357.314667pt;}
.y20d{bottom:358.146667pt;}
.y215{bottom:359.586667pt;}
.y60{bottom:359.906667pt;}
.y32{bottom:363.266667pt;}
.y204{bottom:364.386667pt;}
.y1b1{bottom:365.346667pt;}
.y1de{bottom:365.666667pt;}
.y8e{bottom:366.306667pt;}
.y190{bottom:371.426667pt;}
.yba{bottom:374.146667pt;}
.y110{bottom:374.941333pt;}
.yec{bottom:375.074667pt;}
.y20c{bottom:376.546667pt;}
.y214{bottom:378.146667pt;}
.y138{bottom:378.306667pt;}
.y5f{bottom:378.466667pt;}
.y203{bottom:382.946667pt;}
.y1b0{bottom:383.746667pt;}
.y1dd{bottom:384.226667pt;}
.y15e{bottom:384.546667pt;}
.y18f{bottom:389.826667pt;}
.yeb{bottom:392.674667pt;}
.y10f{bottom:392.701333pt;}
.y31{bottom:394.946667pt;}
.y5e{bottom:396.866667pt;}
.y8d{bottom:397.986667pt;}
.y202{bottom:401.346667pt;}
.y1af{bottom:402.146667pt;}
.y1dc{bottom:402.626667pt;}
.y15d{bottom:403.106667pt;}
.y10{bottom:405.826667pt;}
.y213{bottom:405.986667pt;}
.y137{bottom:409.986667pt;}
.yea{bottom:410.301333pt;}
.y30{bottom:413.506667pt;}
.y5d{bottom:415.266667pt;}
.y8c{bottom:416.546667pt;}
.y1ae{bottom:420.546667pt;}
.y1db{bottom:421.026667pt;}
.y18e{bottom:421.346667pt;}
.y15c{bottom:421.506667pt;}
.y20b{bottom:422.786667pt;}
.ye9{bottom:427.901333pt;}
.y201{bottom:429.186667pt;}
.y1fb{bottom:430.626667pt;}
.y2f{bottom:431.906667pt;}
.y5c{bottom:433.666667pt;}
.y8b{bottom:434.946667pt;}
.y1ad{bottom:438.946667pt;}
.y15b{bottom:439.906667pt;}
.y136{bottom:441.346667pt;}
.ye8{bottom:445.501333pt;}
.y2e{bottom:450.306667pt;}
.y5b{bottom:452.066667pt;}
.y1da{bottom:452.546667pt;}
.y8a{bottom:453.346667pt;}
.y1ac{bottom:457.346667pt;}
.y15a{bottom:458.306667pt;}
.yf{bottom:459.426667pt;}
.y10e{bottom:463.101333pt;}
.ye7{bottom:463.261333pt;}
.y1fa{bottom:465.186667pt;}
.y2d{bottom:468.706667pt;}
.y5a{bottom:470.466667pt;}
.y89{bottom:471.746667pt;}
.y135{bottom:473.346667pt;}
.y159{bottom:476.706667pt;}
.ye6{bottom:480.861333pt;}
.y1d9{bottom:484.386667pt;}
.y182{bottom:484.866667pt;}
.y2c{bottom:487.106667pt;}
.y59{bottom:488.866667pt;}
.y88{bottom:490.146667pt;}
.y134{bottom:491.906667pt;}
.y158{bottom:495.106667pt;}
.y1f9{bottom:496.866667pt;}
.ye5{bottom:498.461333pt;}
.y1d8{bottom:502.973333pt;}
.y181{bottom:503.453333pt;}
.y2b{bottom:505.533333pt;}
.y1ab{bottom:507.453333pt;}
.y87{bottom:508.573333pt;}
.y152{bottom:510.173333pt;}
.y133{bottom:510.333333pt;}
.ye{bottom:513.213333pt;}
.y18d{bottom:513.533333pt;}
.y1f8{bottom:515.453333pt;}
.ye4{bottom:516.061333pt;}
.y58{bottom:520.573333pt;}
.y1d7{bottom:521.373333pt;}
.y180{bottom:521.853333pt;}
.y2a{bottom:523.933333pt;}
.y1aa{bottom:525.853333pt;}
.y157{bottom:526.493333pt;}
.y86{bottom:526.973333pt;}
.y132{bottom:528.733333pt;}
.y18c{bottom:531.933333pt;}
.ye3{bottom:533.661333pt;}
.y1f7{bottom:533.853333pt;}
.y172{bottom:536.893333pt;}
.y57{bottom:539.133333pt;}
.y17f{bottom:540.253333pt;}
.y29{bottom:542.333333pt;}
.y1a9{bottom:544.253333pt;}
.y85{bottom:545.373333pt;}
.y131{bottom:547.133333pt;}
.y18b{bottom:550.333333pt;}
.y10d{bottom:551.261333pt;}
.ye2{bottom:551.421333pt;}
.y1f6{bottom:552.253333pt;}
.y1d6{bottom:552.893333pt;}
.y171{bottom:555.453333pt;}
.yb2{bottom:556.253333pt;}
.y56{bottom:557.533333pt;}
.y156{bottom:558.493333pt;}
.y17e{bottom:558.653333pt;}
.y28{bottom:560.733333pt;}
.y1a8{bottom:562.653333pt;}
.y84{bottom:563.773333pt;}
.y151{bottom:565.533333pt;}
.yd{bottom:566.813333pt;}
.y18a{bottom:568.733333pt;}
.ye1{bottom:569.021333pt;}
.y1d5{bottom:571.453333pt;}
.y170{bottom:573.853333pt;}
.y55{bottom:575.933333pt;}
.y155{bottom:577.053333pt;}
.y130{bottom:578.493333pt;}
.y27{bottom:579.133333pt;}
.y1a7{bottom:581.053333pt;}
.y1c4{bottom:582.013333pt;}
.y83{bottom:582.173333pt;}
.y1f5{bottom:583.773333pt;}
.y150{bottom:583.933333pt;}
.ye0{bottom:586.621333pt;}
.y189{bottom:587.133333pt;}
.y54{bottom:594.333333pt;}
.y21b{bottom:594.973333pt;}
.y154{bottom:595.453333pt;}
.y26{bottom:597.533333pt;}
.y1a6{bottom:599.453333pt;}
.y82{bottom:600.573333pt;}
.y14f{bottom:602.333333pt;}
.y1d4{bottom:602.973333pt;}
.y10c{bottom:604.221333pt;}
.y121{bottom:605.373333pt;}
.y188{bottom:605.533333pt;}
.y12f{bottom:610.493333pt;}
.y53{bottom:612.733333pt;}
.y17d{bottom:613.853333pt;}
.yc{bottom:615.293333pt;}
.y25{bottom:615.933333pt;}
.y81{bottom:618.973333pt;}
.ydf{bottom:620.221333pt;}
.y1f4{bottom:620.733333pt;}
.y1d3{bottom:621.533333pt;}
.y10b{bottom:621.821333pt;}
.y120{bottom:623.933333pt;}
.y21a{bottom:626.813333pt;}
.y153{bottom:626.973333pt;}
.y12e{bottom:629.053333pt;}
.y1a5{bottom:630.973333pt;}
.y52{bottom:631.133333pt;}
.y17c{bottom:632.253333pt;}
.y14e{bottom:634.013333pt;}
.y24{bottom:634.333333pt;}
.y16f{bottom:637.213333pt;}
.y80{bottom:637.373333pt;}
.y1f3{bottom:639.133333pt;}
.y10a{bottom:639.461333pt;}
.y1d2{bottom:639.933333pt;}
.y11f{bottom:642.333333pt;}
.y219{bottom:645.373333pt;}
.y20a{bottom:646.013333pt;}
.y12d{bottom:647.453333pt;}
.y51{bottom:649.373333pt;}
.y1a4{bottom:649.533333pt;}
.y17b{bottom:650.653333pt;}
.y14d{bottom:652.573333pt;}
.y23{bottom:652.733333pt;}
.y7f{bottom:655.773333pt;}
.y109{bottom:657.221333pt;}
.yb{bottom:662.333333pt;}
.y218{bottom:663.773333pt;}
.y209{bottom:664.573333pt;}
.y12c{bottom:665.853333pt;}
.y200{bottom:666.333333pt;}
.y50{bottom:667.773333pt;}
.y1a3{bottom:667.933333pt;}
.y17a{bottom:669.053333pt;}
.y1f2{bottom:670.813333pt;}
.y14c{bottom:670.973333pt;}
.y22{bottom:671.133333pt;}
.y1d1{bottom:671.613333pt;}
.y11e{bottom:674.013333pt;}
.y7e{bottom:674.173333pt;}
.y108{bottom:674.821333pt;}
.y212{bottom:681.213333pt;}
.y208{bottom:682.973333pt;}
.y12b{bottom:684.253333pt;}
.y1ff{bottom:684.893333pt;}
.y4f{bottom:686.173333pt;}
.y1a2{bottom:686.333333pt;}
.y179{bottom:687.453333pt;}
.y14b{bottom:689.373333pt;}
.y1d0{bottom:690.013333pt;}
.y217{bottom:691.453333pt;}
.y107{bottom:692.421333pt;}
.y7d{bottom:692.573333pt;}
.y211{bottom:699.773333pt;}
.y21{bottom:702.653333pt;}
.y1fe{bottom:703.293333pt;}
.y4e{bottom:704.573333pt;}
.y1a1{bottom:704.733333pt;}
.y178{bottom:705.853333pt;}
.y1f1{bottom:707.773333pt;}
.ya{bottom:709.533333pt;}
.y106{bottom:710.021333pt;}
.y207{bottom:710.653333pt;}
.y7c{bottom:710.973333pt;}
.y14a{bottom:720.573333pt;}
.y12a{bottom:721.053333pt;}
.y20{bottom:721.213333pt;}
.y1cf{bottom:721.693333pt;}
.y1a0{bottom:723.133333pt;}
.y177{bottom:724.253333pt;}
.y210{bottom:727.453333pt;}
.y105{bottom:727.621333pt;}
.y7b{bottom:729.373333pt;}
.y1fd{bottom:730.973333pt;}
.y4d{bottom:736.253333pt;}
.y1f0{bottom:739.293333pt;}
.y129{bottom:739.453333pt;}
.y1f{bottom:739.613333pt;}
.y19f{bottom:741.533333pt;}
.y176{bottom:742.653333pt;}
.y7a{bottom:747.773333pt;}
.y149{bottom:752.613333pt;}
.y1ce{bottom:753.413333pt;}
.y9e{bottom:754.213333pt;}
.y4c{bottom:754.853333pt;}
.y9{bottom:756.773333pt;}
.y1ef{bottom:757.893333pt;}
.y1e{bottom:758.053333pt;}
.y19e{bottom:759.973333pt;}
.y1c3{bottom:760.933333pt;}
.y104{bottom:764.101333pt;}
.y79{bottom:766.213333pt;}
.y128{bottom:770.693333pt;}
.y148{bottom:771.173333pt;}
.y4b{bottom:773.253333pt;}
.ydd{bottom:774.213333pt;}
.y1ee{bottom:776.293333pt;}
.y1d{bottom:776.453333pt;}
.y19d{bottom:778.373333pt;}
.y1c2{bottom:779.493333pt;}
.y78{bottom:784.613333pt;}
.y1cd{bottom:785.093333pt;}
.y147{bottom:789.573333pt;}
.y4a{bottom:791.653333pt;}
.ydc{bottom:792.773333pt;}
.y1c{bottom:794.853333pt;}
.y19c{bottom:796.773333pt;}
.y1c1{bottom:797.893333pt;}
.y103{bottom:800.261333pt;}
.y127{bottom:802.853333pt;}
.y77{bottom:803.013333pt;}
.y1cc{bottom:803.653333pt;}
.y8{bottom:803.813333pt;}
.y1ed{bottom:807.813333pt;}
.y146{bottom:807.973333pt;}
.ydb{bottom:811.173333pt;}
.y1b{bottom:813.253333pt;}
.y187{bottom:816.133333pt;}
.y1c0{bottom:816.293333pt;}
.y11d{bottom:821.413333pt;}
.y1cb{bottom:822.053333pt;}
.y49{bottom:822.853333pt;}
.y1ec{bottom:826.373333pt;}
.y19b{bottom:828.453333pt;}
.yda{bottom:829.573333pt;}
.y1a{bottom:831.653333pt;}
.y76{bottom:834.533333pt;}
.y186{bottom:834.693333pt;}
.y145{bottom:839.653333pt;}
.y11c{bottom:839.813333pt;}
.y1eb{bottom:844.773333pt;}
.y19a{bottom:847.013333pt;}
.yd9{bottom:847.973333pt;}
.y19{bottom:850.053333pt;}
.y7{bottom:851.013333pt;}
.y75{bottom:853.093333pt;}
.y1ca{bottom:853.733333pt;}
.y48{bottom:854.853333pt;}
.y11b{bottom:858.213333pt;}
.y199{bottom:865.413333pt;}
.yd8{bottom:866.373333pt;}
.y18{bottom:868.453333pt;}
.y144{bottom:871.333333pt;}
.y74{bottom:871.493333pt;}
.y1c9{bottom:872.293333pt;}
.y47{bottom:873.413333pt;}
.y1ea{bottom:876.453333pt;}
.y11a{bottom:876.613333pt;}
.y198{bottom:883.813333pt;}
.yd7{bottom:884.773333pt;}
.y17{bottom:886.853333pt;}
.y73{bottom:889.893333pt;}
.y1c8{bottom:890.693333pt;}
.y46{bottom:891.813333pt;}
.y126{bottom:895.013333pt;}
.y197{bottom:902.213333pt;}
.yd6{bottom:903.173333pt;}
.y6{bottom:903.333333pt;}
.y16{bottom:905.253333pt;}
.y119{bottom:908.133333pt;}
.y72{bottom:908.293333pt;}
.y45{bottom:910.213333pt;}
.y125{bottom:913.413333pt;}
.y99{bottom:920.293333pt;}
.y196{bottom:920.613333pt;}
.yd5{bottom:921.573333pt;}
.y1c7{bottom:922.213333pt;}
.y15{bottom:923.653333pt;}
.y1e9{bottom:926.533333pt;}
.y71{bottom:926.693333pt;}
.y44{bottom:928.613333pt;}
.y16e{bottom:931.813333pt;}
.y195{bottom:939.013333pt;}
.y206{bottom:939.813333pt;}
.yd4{bottom:939.973333pt;}
.y1c6{bottom:940.773333pt;}
.y14{bottom:942.053333pt;}
.y124{bottom:944.613333pt;}
.y70{bottom:945.093333pt;}
.y43{bottom:947.013333pt;}
.y5{bottom:957.093333pt;}
.y194{bottom:957.413333pt;}
.y1bf{bottom:958.213333pt;}
.yd3{bottom:958.373333pt;}
.y1fc{bottom:960.293333pt;}
.y13{bottom:960.453333pt;}
.y16d{bottom:963.333333pt;}
.y6f{bottom:963.493333pt;}
.y1c5{bottom:972.773333pt;}
.y101{bottom:976.613333pt;}
.yd2{bottom:976.773333pt;}
.y12{bottom:978.853333pt;}
.y42{bottom:979.013333pt;}
.y6e{bottom:981.893333pt;}
.y193{bottom:989.253333pt;}
.y1e8{bottom:995.013333pt;}
.yd1{bottom:995.173333pt;}
.y97{bottom:1003.200000pt;}
.y4{bottom:1010.720000pt;}
.y6d{bottom:1013.120000pt;}
.y41{bottom:1013.440000pt;}
.yd0{bottom:1013.600000pt;}
.y2{bottom:1063.360000pt;}
.hd{height:2.580000pt;}
.ha{height:15.840000pt;}
.h10{height:42.632812pt;}
.hb{height:47.109375pt;}
.he{height:48.375000pt;}
.h3{height:52.134375pt;}
.h14{height:60.300000pt;}
.h16{height:61.290000pt;}
.h18{height:62.781250pt;}
.h7{height:62.812500pt;}
.h15{height:63.150638pt;}
.h9{height:64.500000pt;}
.h6{height:65.781915pt;}
.hc{height:72.800000pt;}
.h4{height:75.465000pt;}
.h5{height:76.964840pt;}
.h8{height:77.951250pt;}
.h2{height:127.968750pt;}
.hf{height:156.160000pt;}
.h12{height:172.186667pt;}
.h11{height:187.840000pt;}
.h13{height:650.173333pt;}
.h17{height:830.173333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:179.066667pt;}
.w3{width:194.746667pt;}
.w2{width:568.893333pt;}
.w5{width:573.373333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:1.120000pt;}
.xa{left:2.720000pt;}
.x1a{left:4.480000pt;}
.x10{left:5.600000pt;}
.x19{left:7.040000pt;}
.xe{left:8.320000pt;}
.x15{left:9.920000pt;}
.xf{left:11.840000pt;}
.x12{left:13.120000pt;}
.x22{left:14.560000pt;}
.x13{left:15.520000pt;}
.xc{left:18.080000pt;}
.x1e{left:20.320000pt;}
.x1c{left:22.720000pt;}
.x1f{left:24.160000pt;}
.x11{left:25.280000pt;}
.x20{left:26.560000pt;}
.x1b{left:27.840000pt;}
.x17{left:30.560000pt;}
.x8{left:36.800000pt;}
.x16{left:38.400000pt;}
.x25{left:43.514667pt;}
.x14{left:48.480000pt;}
.x26{left:53.754667pt;}
.x18{left:58.400000pt;}
.xb{left:62.560000pt;}
.xd{left:65.594667pt;}
.x27{left:77.754667pt;}
.x1d{left:79.680000pt;}
.x24{left:93.114667pt;}
.x28{left:101.754667pt;}
.x23{left:107.712000pt;}
.x5{left:112.512000pt;}
.x1{left:113.472000pt;}
.x2{left:132.352000pt;}
.x3{left:151.226667pt;}
.x6{left:193.794667pt;}
.x2a{left:228.666667pt;}
.x2d{left:273.826667pt;}
.x2b{left:299.106667pt;}
.x7{left:315.266667pt;}
.x4{left:477.853333pt;}
.x9{left:502.333333pt;}
.x2e{left:517.693333pt;}
.x39{left:525.853333pt;}
.x2c{left:553.853333pt;}
.x36{left:561.853333pt;}
.x34{left:592.733333pt;}
.x33{left:596.733333pt;}
.x35{left:599.773333pt;}
.x30{left:605.853333pt;}
.x31{left:615.773333pt;}
.x3a{left:617.853333pt;}
.x32{left:619.773333pt;}
.x38{left:622.853333pt;}
.x37{left:639.813333pt;}
.x2f{left:651.813333pt;}
.x29{left:679.973333pt;}
}




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