
    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_4cf896a52af0b5e32268f64a.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_b57fc163cc4705966829ae68.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.884277;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_f20df0d541e3637e6b2eb218.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a98c84a91c04e90c38fa80a8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.690430;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_19492e4d1fb7cb16c1bf9cf1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_780e1281fdeba4f3f58ab988.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0ab5b36d7e685a669f3efb49.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_08b4e3c84371ea9ca014c993.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_bb966f635d058ff38a787fc3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.853027;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_a935376c97c6da4b4270fae5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.014706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014706,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.243699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243699,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v9{vertical-align:-80.640000px;}
.v4{vertical-align:-70.560000px;}
.v3{vertical-align:-67.680000px;}
.v5{vertical-align:-61.920000px;}
.v2{vertical-align:-27.360000px;}
.v8{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:21.600000px;}
.v1{vertical-align:27.360000px;}
.v6{vertical-align:57.290905px;}
.ls25{letter-spacing:-2.376000px;}
.lsd{letter-spacing:-1.134000px;}
.lse{letter-spacing:-0.972000px;}
.ls22{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.463800px;}
.ls1a{letter-spacing:-0.457800px;}
.ls13{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.295200px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.020160px;}
.ls18{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.178560px;}
.ls10{letter-spacing:0.190560px;}
.ls23{letter-spacing:0.322560px;}
.ls0{letter-spacing:0.339840px;}
.ls1{letter-spacing:0.380160px;}
.ls2{letter-spacing:0.424800px;}
.ls5{letter-spacing:0.452160px;}
.lsa{letter-spacing:0.464160px;}
.ls1c{letter-spacing:0.550080px;}
.ls6{letter-spacing:0.642720px;}
.ls9{letter-spacing:0.648000px;}
.ls3{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.982080px;}
.ls1f{letter-spacing:1.105160px;}
.ls1e{letter-spacing:1.151194px;}
.ls1d{letter-spacing:1.247127px;}
.ls1b{letter-spacing:1.440000px;}
.ls15{letter-spacing:1.797120px;}
.ls16{letter-spacing:1.804800px;}
.lsf{letter-spacing:2.160000px;}
.ls20{letter-spacing:5.040000px;}
.ls21{letter-spacing:6.480000px;}
.lsb{letter-spacing:10.800000px;}
.lsc{letter-spacing:12.240000px;}
.ls17{letter-spacing:533.796000px;}
.ls19{letter-spacing:914.496000px;}
.ls14{letter-spacing:924.216000px;}
.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;}
}
.ws13{word-spacing:-60.480000px;}
.ws0{word-spacing:-29.880000px;}
.ws1{word-spacing:-24.120000px;}
.ws5{word-spacing:-20.880000px;}
.ws2{word-spacing:-19.440000px;}
.wsa{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.254600px;}
.ws9{word-spacing:-16.102200px;}
.ws3{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.426000px;}
.ws15{word-spacing:-15.140160px;}
.ws14{word-spacing:-15.120000px;}
.ws12{word-spacing:-14.506440px;}
.wsd{word-spacing:-13.238735px;}
.wse{word-spacing:-13.142802px;}
.ws10{word-spacing:-13.117769px;}
.ws16{word-spacing:-12.744000px;}
.wsc{word-spacing:-12.012609px;}
.wsb{word-spacing:-11.991608px;}
.ws11{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
.wsf{word-spacing:1508.790853px;}
._1b{margin-left:-5.281887px;}
._1c{margin-left:-4.242694px;}
._5{margin-left:-3.156960px;}
._0{margin-left:-1.995840px;}
._1{width:1.451520px;}
._4{width:2.505120px;}
._9{width:3.704160px;}
._2{width:4.830240px;}
._a{width:5.871840px;}
._11{width:7.125120px;}
._10{width:8.585280px;}
._d{width:10.362240px;}
._e{width:11.733120px;}
._f{width:13.682880px;}
._12{width:15.516480px;}
._8{width:17.551200px;}
._6{width:18.809280px;}
._7{width:20.321280px;}
._14{width:21.666240px;}
._17{width:23.029440px;}
._16{width:24.610080px;}
._15{width:25.776000px;}
._1a{width:27.348960px;}
._c{width:28.909440px;}
._b{width:30.300480px;}
._20{width:31.685760px;}
._1f{width:33.143040px;}
._24{width:34.148160px;}
._23{width:36.057600px;}
._21{width:37.169280px;}
._22{width:38.295360px;}
._1d{width:40.332000px;}
._1e{width:41.857440px;}
._27{width:44.216640px;}
._29{width:45.596160px;}
._28{width:46.850880px;}
._25{width:78.865920px;}
._26{width:80.075520px;}
._2b{width:109.166400px;}
._2a{width:110.194560px;}
._13{width:121.017120px;}
._19{width:124.230240px;}
._3{width:196.716000px;}
._18{width:258.636000px;}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.000000px;}
.fsf{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs9{font-size:47.520000px;}
.fse{font-size:47.966432px;}
.fsd{font-size:48.050437px;}
.fs7{font-size:50.400000px;}
.fsc{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fsb{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs3{font-size:83.520000px;}
.fs5{font-size:96.480000px;}
.fs4{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y15e{bottom:3.240000px;}
.y159{bottom:3.600000px;}
.yaf{bottom:3.960000px;}
.yb1{bottom:5.400000px;}
.yb8{bottom:5.403000px;}
.yb4{bottom:6.840000px;}
.y161{bottom:12.240000px;}
.y147{bottom:12.665342px;}
.y13b{bottom:12.980341px;}
.y158{bottom:20.550000px;}
.y160{bottom:20.880000px;}
.y168{bottom:21.240000px;}
.yed{bottom:24.480000px;}
.yb3{bottom:25.920000px;}
.yef{bottom:26.280000px;}
.y146{bottom:26.568047px;}
.y13a{bottom:26.883047px;}
.y149{bottom:27.072064px;}
.y157{bottom:37.830000px;}
.y167{bottom:39.960000px;}
.yf8{bottom:48.600000px;}
.yf6{bottom:48.630000px;}
.yeb{bottom:48.645000px;}
.y14d{bottom:50.110235px;}
.y14b{bottom:68.318160px;}
.y14c{bottom:77.579620px;}
.y140{bottom:88.439704px;}
.y13d{bottom:89.590553px;}
.y4{bottom:91.476000px;}
.y34{bottom:91.836000px;}
.y13f{bottom:102.342410px;}
.y15c{bottom:103.350000px;}
.y13c{bottom:103.493260px;}
.y3{bottom:110.556000px;}
.y33{bottom:111.996000px;}
.y19a{bottom:133.992000px;}
.y148{bottom:134.196818px;}
.y64{bottom:135.072000px;}
.ye7{bottom:135.432000px;}
.y199{bottom:147.312000px;}
.y32{bottom:148.392000px;}
.yb7{bottom:148.752000px;}
.y103{bottom:149.112000px;}
.y17d{bottom:150.195000px;}
.y63{bottom:152.355000px;}
.ye6{bottom:154.515000px;}
.y134{bottom:155.235000px;}
.y102{bottom:161.715000px;}
.y198{bottom:164.595000px;}
.y31{bottom:167.475000px;}
.y17c{bottom:168.915000px;}
.y119{bottom:169.635000px;}
.y62{bottom:169.995000px;}
.y145{bottom:171.788731px;}
.y1ca{bottom:172.155000px;}
.ye5{bottom:173.235000px;}
.y133{bottom:173.955000px;}
.y139{bottom:174.308850px;}
.y137{bottom:174.628059px;}
.y8e{bottom:178.995000px;}
.y101{bottom:181.875000px;}
.y144{bottom:185.674636px;}
.y30{bottom:186.555000px;}
.y17b{bottom:187.995000px;}
.y138{bottom:188.211556px;}
.y118{bottom:188.355000px;}
.y136{bottom:188.530764px;}
.y14e{bottom:188.715576px;}
.y61{bottom:189.075000px;}
.ye4{bottom:192.315000px;}
.y132{bottom:193.035000px;}
.y8d{bottom:199.155000px;}
.y100{bottom:200.235000px;}
.y2f{bottom:205.275000px;}
.y14f{bottom:205.961661px;}
.y117{bottom:207.075000px;}
.y60{bottom:207.795000px;}
.y131{bottom:210.315000px;}
.ye3{bottom:211.395000px;}
.yb6{bottom:211.755000px;}
.y8c{bottom:218.235000px;}
.y197{bottom:218.955000px;}
.yff{bottom:220.755000px;}
.y130{bottom:221.835000px;}
.y1c9{bottom:222.555000px;}
.y2e{bottom:224.355000px;}
.y116{bottom:224.715000px;}
.y17a{bottom:225.795000px;}
.y5f{bottom:226.875000px;}
.ye2{bottom:230.475000px;}
.y8b{bottom:237.315000px;}
.y12f{bottom:239.115000px;}
.y14a{bottom:239.227346px;}
.y1c8{bottom:239.475000px;}
.yfe{bottom:240.915000px;}
.y196{bottom:241.995000px;}
.y2d{bottom:243.435000px;}
.y115{bottom:243.795000px;}
.y179{bottom:244.875000px;}
.y143{bottom:245.149651px;}
.y5e{bottom:245.955000px;}
.ye1{bottom:249.195000px;}
.y150{bottom:251.424755px;}
.y12c{bottom:252.825000px;}
.y135{bottom:253.184980px;}
.yb5{bottom:253.185000px;}
.y1c7{bottom:255.345000px;}
.y8a{bottom:256.065000px;}
.y195{bottom:259.665000px;}
.y142{bottom:259.682388px;}
.yfd{bottom:260.025000px;}
.y13e{bottom:261.950496px;}
.y114{bottom:262.185000px;}
.y2c{bottom:262.545000px;}
.y178{bottom:263.985000px;}
.y5d{bottom:265.425000px;}
.ye0{bottom:268.305000px;}
.y1c6{bottom:272.265000px;}
.y141{bottom:273.559892px;}
.y89{bottom:275.145000px;}
.y194{bottom:278.745000px;}
.yfc{bottom:279.105000px;}
.y113{bottom:279.825000px;}
.y2b{bottom:281.265000px;}
.y177{bottom:283.065000px;}
.y5c{bottom:285.225000px;}
.ydf{bottom:287.385000px;}
.y1c5{bottom:289.545000px;}
.y12e{bottom:292.395000px;}
.y88{bottom:294.225000px;}
.yb2{bottom:294.945000px;}
.y193{bottom:297.465000px;}
.yfb{bottom:297.825000px;}
.y112{bottom:298.905000px;}
.y2a{bottom:300.345000px;}
.y176{bottom:301.785000px;}
.y5b{bottom:304.305000px;}
.yde{bottom:306.105000px;}
.y1c4{bottom:306.825000px;}
.y12d{bottom:308.235000px;}
.y87{bottom:313.305000px;}
.y192{bottom:315.825000px;}
.yfa{bottom:316.545000px;}
.y111{bottom:317.985000px;}
.y29{bottom:319.425000px;}
.y175{bottom:320.865000px;}
.y5a{bottom:321.945000px;}
.y1c3{bottom:324.105000px;}
.ydd{bottom:325.185000px;}
.yf9{bottom:330.225000px;}
.y86{bottom:332.025000px;}
.yb0{bottom:336.705000px;}
.y28{bottom:338.145000px;}
.y174{bottom:339.945000px;}
.y59{bottom:340.665000px;}
.y1c2{bottom:341.385000px;}
.ydc{bottom:343.545000px;}
.y85{bottom:351.105000px;}
.y110{bottom:355.785000px;}
.y27{bottom:357.225000px;}
.yae{bottom:357.945000px;}
.y173{bottom:358.665000px;}
.y58{bottom:359.745000px;}
.ydb{bottom:361.545000px;}
.y84{bottom:370.185000px;}
.y10f{bottom:374.865000px;}
.y1c1{bottom:375.585000px;}
.y26{bottom:376.350000px;}
.y172{bottom:377.790000px;}
.y57{bottom:378.870000px;}
.yad{bottom:379.950000px;}
.yda{bottom:381.750000px;}
.y191{bottom:388.230000px;}
.y83{bottom:388.950000px;}
.y1c0{bottom:391.470000px;}
.y10e{bottom:393.630000px;}
.yf7{bottom:393.990000px;}
.y25{bottom:395.430000px;}
.y171{bottom:396.870000px;}
.y56{bottom:397.590000px;}
.yd9{bottom:399.390000px;}
.y190{bottom:402.990000px;}
.y82{bottom:408.030000px;}
.y1bf{bottom:408.750000px;}
.yac{bottom:409.470000px;}
.y10d{bottom:412.710000px;}
.y24{bottom:413.790000px;}
.y170{bottom:415.590000px;}
.y55{bottom:416.670000px;}
.yd8{bottom:418.470000px;}
.y18f{bottom:421.710000px;}
.y1be{bottom:426.030000px;}
.y81{bottom:426.750000px;}
.yab{bottom:428.550000px;}
.y10c{bottom:431.790000px;}
.y23{bottom:432.150000px;}
.y16f{bottom:432.870000px;}
.y54{bottom:435.750000px;}
.yd7{bottom:437.550000px;}
.y18e{bottom:440.790000px;}
.y1bd{bottom:442.950000px;}
.y80{bottom:444.390000px;}
.yaa{bottom:447.270000px;}
.y10b{bottom:450.510000px;}
.y16e{bottom:451.950000px;}
.y53{bottom:454.470000px;}
.y22{bottom:455.190000px;}
.yd6{bottom:456.270000px;}
.yf5{bottom:457.350000px;}
.y1bc{bottom:458.790000px;}
.y18d{bottom:459.870000px;}
.y7f{bottom:463.110000px;}
.ya9{bottom:466.350000px;}
.y10a{bottom:469.590000px;}
.y16d{bottom:471.030000px;}
.y21{bottom:472.470000px;}
.y52{bottom:473.550000px;}
.yd5{bottom:474.630000px;}
.y1bb{bottom:476.070000px;}
.y18c{bottom:478.950000px;}
.y7e{bottom:482.190000px;}
.ya8{bottom:485.430000px;}
.y109{bottom:488.670000px;}
.y20{bottom:489.750000px;}
.y16c{bottom:490.110000px;}
.y51{bottom:492.270000px;}
.yd4{bottom:492.630000px;}
.y1ba{bottom:493.350000px;}
.y18b{bottom:497.670000px;}
.y7d{bottom:500.910000px;}
.ya7{bottom:504.180000px;}
.y1f{bottom:506.700000px;}
.y108{bottom:507.420000px;}
.y16b{bottom:508.860000px;}
.y1b9{bottom:510.660000px;}
.y50{bottom:511.380000px;}
.yd3{bottom:512.460000px;}
.y18a{bottom:516.780000px;}
.y7c{bottom:518.580000px;}
.yf4{bottom:521.100000px;}
.ya6{bottom:523.620000px;}
.y107{bottom:525.060000px;}
.y1e{bottom:525.420000px;}
.y16a{bottom:527.220000px;}
.y1b8{bottom:527.940000px;}
.y4f{bottom:528.660000px;}
.yd2{bottom:531.180000px;}
.y189{bottom:534.780000px;}
.y7b{bottom:537.300000px;}
.ya5{bottom:542.700000px;}
.y106{bottom:543.780000px;}
.y1b7{bottom:545.220000px;}
.y169{bottom:545.940000px;}
.y4e{bottom:547.740000px;}
.y1d{bottom:548.460000px;}
.y188{bottom:552.060000px;}
.yd1{bottom:554.220000px;}
.y7a{bottom:556.020000px;}
.y105{bottom:559.260000px;}
.ya4{bottom:561.420000px;}
.y1b6{bottom:562.140000px;}
.y166{bottom:565.380000px;}
.y1c{bottom:565.740000px;}
.y4d{bottom:566.820000px;}
.yd0{bottom:571.860000px;}
.y79{bottom:573.660000px;}
.y187{bottom:575.460000px;}
.y12b{bottom:577.260000px;}
.y1b5{bottom:579.420000px;}
.ya3{bottom:580.500000px;}
.y1b{bottom:583.020000px;}
.yf3{bottom:584.820000px;}
.y4c{bottom:585.900000px;}
.ycf{bottom:590.940000px;}
.y78{bottom:592.740000px;}
.y186{bottom:594.540000px;}
.y12a{bottom:595.980000px;}
.y1b4{bottom:596.700000px;}
.ya2{bottom:599.580000px;}
.y1a{bottom:600.300000px;}
.y4b{bottom:604.620000px;}
.yce{bottom:610.020000px;}
.y77{bottom:611.460000px;}
.y185{bottom:613.260000px;}
.y1b3{bottom:613.620000px;}
.y129{bottom:615.060000px;}
.y19{bottom:617.580000px;}
.ya1{bottom:617.940000px;}
.y15b{bottom:622.260000px;}
.y4a{bottom:623.700000px;}
.ycd{bottom:628.770000px;}
.y1b2{bottom:629.490000px;}
.y76{bottom:630.570000px;}
.y184{bottom:632.370000px;}
.y128{bottom:633.810000px;}
.y18{bottom:634.890000px;}
.ya0{bottom:635.970000px;}
.y49{bottom:642.810000px;}
.y1b1{bottom:646.770000px;}
.ycc{bottom:647.850000px;}
.yf2{bottom:648.210000px;}
.y75{bottom:649.650000px;}
.y127{bottom:651.450000px;}
.y17{bottom:651.810000px;}
.y9f{bottom:655.770000px;}
.y48{bottom:661.530000px;}
.y165{bottom:663.330000px;}
.y1b0{bottom:664.050000px;}
.ycb{bottom:666.930000px;}
.y74{bottom:668.010000px;}
.y16{bottom:669.090000px;}
.y183{bottom:669.810000px;}
.y126{bottom:670.170000px;}
.y9e{bottom:674.490000px;}
.y47{bottom:680.610000px;}
.y1dc{bottom:682.050000px;}
.yca{bottom:685.650000px;}
.y15{bottom:686.370000px;}
.y73{bottom:686.730000px;}
.y182{bottom:687.450000px;}
.y125{bottom:689.250000px;}
.y1af{bottom:695.010000px;}
.y9d{bottom:698.610000px;}
.y1db{bottom:699.330000px;}
.y46{bottom:699.690000px;}
.y164{bottom:701.490000px;}
.y14{bottom:703.650000px;}
.yc9{bottom:704.730000px;}
.y181{bottom:706.530000px;}
.y124{bottom:708.330000px;}
.y72{bottom:710.130000px;}
.yf1{bottom:711.930000px;}
.y1ae{bottom:712.290000px;}
.y1da{bottom:716.610000px;}
.y45{bottom:720.210000px;}
.y13{bottom:720.930000px;}
.y163{bottom:722.010000px;}
.yc8{bottom:723.810000px;}
.y180{bottom:725.610000px;}
.y123{bottom:726.690000px;}
.y71{bottom:728.850000px;}
.y1ad{bottom:729.570000px;}
.y1d9{bottom:733.890000px;}
.y12{bottom:738.210000px;}
.y9c{bottom:738.570000px;}
.y162{bottom:742.530000px;}
.yc7{bottom:742.890000px;}
.y17f{bottom:743.970000px;}
.y122{bottom:744.330000px;}
.y44{bottom:746.130000px;}
.y70{bottom:747.930000px;}
.y1d8{bottom:751.170000px;}
.y11{bottom:755.535000px;}
.y9b{bottom:757.335000px;}
.y1ac{bottom:760.575000px;}
.yc6{bottom:761.655000px;}
.y15f{bottom:763.095000px;}
.y121{bottom:763.455000px;}
.y43{bottom:765.255000px;}
.y6f{bottom:766.695000px;}
.y1d7{bottom:768.135000px;}
.y10{bottom:772.815000px;}
.yf0{bottom:775.695000px;}
.y1ab{bottom:777.855000px;}
.yc5{bottom:780.735000px;}
.y9a{bottom:781.455000px;}
.y120{bottom:782.535000px;}
.y42{bottom:784.335000px;}
.y1d6{bottom:785.415000px;}
.yf{bottom:792.615000px;}
.y1aa{bottom:794.775000px;}
.yc4{bottom:799.815000px;}
.y11f{bottom:801.255000px;}
.y1d5{bottom:802.695000px;}
.y41{bottom:803.055000px;}
.y99{bottom:805.575000px;}
.y1a9{bottom:809.175000px;}
.ye{bottom:814.935000px;}
.yc3{bottom:818.535000px;}
.y11e{bottom:819.975000px;}
.y15d{bottom:821.775000px;}
.y40{bottom:822.135000px;}
.y1a8{bottom:826.095000px;}
.y98{bottom:829.695000px;}
.y1d4{bottom:837.255000px;}
.yc2{bottom:837.615000px;}
.yee{bottom:839.055000px;}
.y3f{bottom:841.215000px;}
.y15a{bottom:842.295000px;}
.yd{bottom:842.655000px;}
.y1a7{bottom:843.735000px;}
.y97{bottom:853.815000px;}
.y1d3{bottom:854.535000px;}
.yc1{bottom:855.975000px;}
.y11d{bottom:856.695000px;}
.y6e{bottom:859.575000px;}
.y3e{bottom:859.935000px;}
.y1a6{bottom:860.655000px;}
.yc{bottom:863.175000px;}
.y1d2{bottom:871.455000px;}
.yc0{bottom:873.975000px;}
.y1a5{bottom:875.055000px;}
.y11c{bottom:875.775000px;}
.y6d{bottom:876.855000px;}
.y96{bottom:877.935000px;}
.y3d{bottom:879.045000px;}
.yb{bottom:883.365000px;}
.y1d1{bottom:889.125000px;}
.y1a4{bottom:892.005000px;}
.ybf{bottom:894.165000px;}
.y11b{bottom:894.525000px;}
.y6c{bottom:895.965000px;}
.ya{bottom:896.325000px;}
.y3c{bottom:898.125000px;}
.yec{bottom:902.805000px;}
.y1d0{bottom:906.405000px;}
.y1a3{bottom:909.285000px;}
.ybe{bottom:911.805000px;}
.y6b{bottom:913.605000px;}
.y3b{bottom:916.485000px;}
.y9{bottom:917.565000px;}
.y156{bottom:917.925000px;}
.y95{bottom:919.365000px;}
.y1cf{bottom:923.685000px;}
.y1a2{bottom:926.565000px;}
.ybd{bottom:930.885000px;}
.y6a{bottom:932.685000px;}
.y155{bottom:934.125000px;}
.y3a{bottom:936.645000px;}
.y94{bottom:939.885000px;}
.y8{bottom:940.965000px;}
.y1a1{bottom:943.845000px;}
.ybc{bottom:949.965000px;}
.y69{bottom:951.405000px;}
.y154{bottom:953.205000px;}
.y1ce{bottom:957.525000px;}
.y93{bottom:960.765000px;}
.y1a0{bottom:961.125000px;}
.y39{bottom:961.845000px;}
.yea{bottom:963.285000px;}
.ybb{bottom:968.685000px;}
.y17e{bottom:970.125000px;}
.y68{bottom:970.485000px;}
.y153{bottom:972.285000px;}
.y7{bottom:974.805000px;}
.y19f{bottom:978.405000px;}
.y92{bottom:981.285000px;}
.y38{bottom:987.765000px;}
.y67{bottom:989.565000px;}
.y152{bottom:991.365000px;}
.y1cd{bottom:994.245000px;}
.y19e{bottom:995.325000px;}
.y91{bottom:1002.165000px;}
.y37{bottom:1006.890000px;}
.y11a{bottom:1007.970000px;}
.y6{bottom:1008.330000px;}
.y151{bottom:1009.410000px;}
.y19d{bottom:1011.210000px;}
.y1cc{bottom:1011.570000px;}
.y90{bottom:1022.730000px;}
.yba{bottom:1024.890000px;}
.y36{bottom:1025.610000px;}
.y66{bottom:1027.050000px;}
.y19c{bottom:1028.490000px;}
.y1cb{bottom:1028.850000px;}
.ye9{bottom:1029.930000px;}
.y5{bottom:1038.930000px;}
.yb9{bottom:1043.250000px;}
.y8f{bottom:1043.610000px;}
.y65{bottom:1044.330000px;}
.y35{bottom:1044.690000px;}
.y19b{bottom:1045.770000px;}
.ye8{bottom:1046.130000px;}
.y104{bottom:1049.730000px;}
.y2{bottom:1060.890000px;}
.y1{bottom:1073.130000px;}
.h2e{height:17.280000px;}
.h32{height:17.316000px;}
.h16{height:19.116000px;}
.h17{height:20.160000px;}
.h1a{height:20.520000px;}
.h2{height:27.298828px;}
.h2a{height:33.492187px;}
.h28{height:33.550842px;}
.h31{height:34.560000px;}
.h15{height:35.332031px;}
.h21{height:36.281250px;}
.h19{height:40.716000px;}
.h9{height:40.985156px;}
.h18{height:41.040000px;}
.h22{height:42.086250px;}
.h34{height:42.229688px;}
.h14{height:46.251562px;}
.ha{height:46.638281px;}
.h29{height:47.076430px;}
.h2b{height:47.158876px;}
.h27{height:48.341170px;}
.h26{height:48.425831px;}
.hf{height:49.848750px;}
.h3{height:50.229844px;}
.h2d{height:51.516000px;}
.h33{height:53.280000px;}
.h24{height:53.704687px;}
.h1b{height:55.147500px;}
.he{height:59.328281px;}
.h1{height:59.357813px;}
.h30{height:59.758594px;}
.h1d{height:59.760000px;}
.h10{height:60.952500px;}
.h1e{height:63.360000px;}
.h20{height:63.396000px;}
.h1f{height:63.720000px;}
.h1c{height:63.756000px;}
.hd{height:64.978594px;}
.h4{height:65.010937px;}
.h7{height:66.757500px;}
.h12{height:70.628906px;}
.hb{height:70.664062px;}
.h13{height:72.562500px;}
.hc{height:76.279219px;}
.h8{height:76.824844px;}
.h6{height:80.944453px;}
.h5{height:84.172500px;}
.h11{height:94.689844px;}
.h2c{height:104.367336px;}
.h2f{height:216.795000px;}
.h25{height:289.184685px;}
.h23{height:320.475000px;}
.h0{height:1188.000000px;}
.we{width:39.276000px;}
.w11{width:52.236000px;}
.wb{width:58.356000px;}
.wf{width:59.040000px;}
.wc{width:59.436000px;}
.wd{width:60.840000px;}
.w10{width:64.836000px;}
.w5{width:91.116000px;}
.w6{width:154.155000px;}
.w2{width:204.555000px;}
.w12{width:214.635000px;}
.wa{width:266.505000px;}
.w4{width:359.025000px;}
.w3{width:402.630000px;}
.w8{width:577.926629px;}
.w9{width:623.055000px;}
.w7{width:695.805000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:4.680000px;}
.xb{left:7.923000px;}
.x29{left:9.683160px;}
.x2a{left:11.177612px;}
.x3e{left:13.320000px;}
.x3c{left:14.400000px;}
.x3a{left:17.280000px;}
.x25{left:19.919057px;}
.x41{left:22.680000px;}
.x38{left:24.150000px;}
.x26{left:26.060593px;}
.x28{left:27.514079px;}
.x16{left:29.190000px;}
.x43{left:30.240000px;}
.x27{left:31.813152px;}
.x42{left:34.230000px;}
.x11{left:36.390000px;}
.x15{left:49.350000px;}
.x13{left:57.630000px;}
.x14{left:62.685000px;}
.x18{left:77.085000px;}
.x17{left:91.110000px;}
.x31{left:120.251256px;}
.x46{left:121.355986px;}
.x2d{left:126.802236px;}
.x2{left:128.195986px;}
.x5{left:134.675986px;}
.x33{left:140.796000px;}
.x36{left:142.596000px;}
.xa{left:148.392000px;}
.x1c{left:155.234986px;}
.x2c{left:159.598020px;}
.x45{left:162.074986px;}
.x4{left:163.874986px;}
.xe{left:166.755000px;}
.x2f{left:182.960431px;}
.x1d{left:185.639980px;}
.x40{left:194.835000px;}
.x7{left:211.394986px;}
.x1b{left:221.114986px;}
.x6{left:240.584986px;}
.x24{left:242.467794px;}
.x1{left:243.824986px;}
.x2b{left:253.055816px;}
.x22{left:254.775441px;}
.x1f{left:260.916969px;}
.x8{left:268.304986px;}
.x20{left:273.830571px;}
.x34{left:281.994000px;}
.x23{left:287.358331px;}
.x35{left:311.544000px;}
.xc{left:353.670000px;}
.xd{left:365.189986px;}
.x30{left:395.678619px;}
.x2e{left:400.591855px;}
.x37{left:412.710000px;}
.x32{left:439.938609px;}
.x3{left:452.339986px;}
.x1a{left:465.659986px;}
.x39{left:472.500000px;}
.x1e{left:476.198234px;}
.x21{left:498.627131px;}
.x10{left:525.780000px;}
.x3b{left:533.370000px;}
.x47{left:560.009986px;}
.x3d{left:595.650000px;}
.x12{left:616.890000px;}
.x19{left:635.649000px;}
.x3f{left:697.215000px;}
.x44{left:759.884986px;}
.x9{left:768.164986px;}
@media print{
.v9{vertical-align:-71.680000pt;}
.v4{vertical-align:-62.720000pt;}
.v3{vertical-align:-60.160000pt;}
.v5{vertical-align:-55.040000pt;}
.v2{vertical-align:-24.320000pt;}
.v8{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:19.200000pt;}
.v1{vertical-align:24.320000pt;}
.v6{vertical-align:50.925249pt;}
.ls25{letter-spacing:-2.112000pt;}
.lsd{letter-spacing:-1.008000pt;}
.lse{letter-spacing:-0.864000pt;}
.ls22{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.412267pt;}
.ls1a{letter-spacing:-0.406933pt;}
.ls13{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.262400pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.017920pt;}
.ls18{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.158720pt;}
.ls10{letter-spacing:0.169387pt;}
.ls23{letter-spacing:0.286720pt;}
.ls0{letter-spacing:0.302080pt;}
.ls1{letter-spacing:0.337920pt;}
.ls2{letter-spacing:0.377600pt;}
.ls5{letter-spacing:0.401920pt;}
.lsa{letter-spacing:0.412587pt;}
.ls1c{letter-spacing:0.488960pt;}
.ls6{letter-spacing:0.571307pt;}
.ls9{letter-spacing:0.576000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.872960pt;}
.ls1f{letter-spacing:0.982364pt;}
.ls1e{letter-spacing:1.023284pt;}
.ls1d{letter-spacing:1.108558pt;}
.ls1b{letter-spacing:1.280000pt;}
.ls15{letter-spacing:1.597440pt;}
.ls16{letter-spacing:1.604267pt;}
.lsf{letter-spacing:1.920000pt;}
.ls20{letter-spacing:4.480000pt;}
.ls21{letter-spacing:5.760000pt;}
.lsb{letter-spacing:9.600000pt;}
.lsc{letter-spacing:10.880000pt;}
.ls17{letter-spacing:474.485333pt;}
.ls19{letter-spacing:812.885333pt;}
.ls14{letter-spacing:821.525333pt;}
.ws13{word-spacing:-53.760000pt;}
.ws0{word-spacing:-26.560000pt;}
.ws1{word-spacing:-21.440000pt;}
.ws5{word-spacing:-18.560000pt;}
.ws2{word-spacing:-17.280000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.448533pt;}
.ws9{word-spacing:-14.313067pt;}
.ws3{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.712000pt;}
.ws15{word-spacing:-13.457920pt;}
.ws14{word-spacing:-13.440000pt;}
.ws12{word-spacing:-12.894613pt;}
.wsd{word-spacing:-11.767765pt;}
.wse{word-spacing:-11.682491pt;}
.ws10{word-spacing:-11.660239pt;}
.ws16{word-spacing:-11.328000pt;}
.wsc{word-spacing:-10.677875pt;}
.wsb{word-spacing:-10.659207pt;}
.ws11{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
.wsf{word-spacing:1341.147425pt;}
._1b{margin-left:-4.695011pt;}
._1c{margin-left:-3.771283pt;}
._5{margin-left:-2.806187pt;}
._0{margin-left:-1.774080pt;}
._1{width:1.290240pt;}
._4{width:2.226773pt;}
._9{width:3.292587pt;}
._2{width:4.293547pt;}
._a{width:5.219413pt;}
._11{width:6.333440pt;}
._10{width:7.631360pt;}
._d{width:9.210880pt;}
._e{width:10.429440pt;}
._f{width:12.162560pt;}
._12{width:13.792427pt;}
._8{width:15.601067pt;}
._6{width:16.719360pt;}
._7{width:18.063360pt;}
._14{width:19.258880pt;}
._17{width:20.470613pt;}
._16{width:21.875627pt;}
._15{width:22.912000pt;}
._1a{width:24.310187pt;}
._c{width:25.697280pt;}
._b{width:26.933760pt;}
._20{width:28.165120pt;}
._1f{width:29.460480pt;}
._24{width:30.353920pt;}
._23{width:32.051200pt;}
._21{width:33.039360pt;}
._22{width:34.040320pt;}
._1d{width:35.850667pt;}
._1e{width:37.206613pt;}
._27{width:39.303680pt;}
._29{width:40.529920pt;}
._28{width:41.645227pt;}
._25{width:70.103040pt;}
._26{width:71.178240pt;}
._2b{width:97.036800pt;}
._2a{width:97.950720pt;}
._13{width:107.570773pt;}
._19{width:110.426880pt;}
._3{width:174.858667pt;}
._18{width:229.898667pt;}
.fs1{font-size:32.000000pt;}
.fsf{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs9{font-size:42.240000pt;}
.fse{font-size:42.636829pt;}
.fsd{font-size:42.711499pt;}
.fs7{font-size:44.800000pt;}
.fsc{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fsb{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs3{font-size:74.240000pt;}
.fs5{font-size:85.760000pt;}
.fs4{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y15e{bottom:2.880000pt;}
.y159{bottom:3.200000pt;}
.yaf{bottom:3.520000pt;}
.yb1{bottom:4.800000pt;}
.yb8{bottom:4.802667pt;}
.yb4{bottom:6.080000pt;}
.y161{bottom:10.880000pt;}
.y147{bottom:11.258081pt;}
.y13b{bottom:11.538081pt;}
.y158{bottom:18.266667pt;}
.y160{bottom:18.560000pt;}
.y168{bottom:18.880000pt;}
.yed{bottom:21.760000pt;}
.yb3{bottom:23.040000pt;}
.yef{bottom:23.360000pt;}
.y146{bottom:23.616042pt;}
.y13a{bottom:23.896042pt;}
.y149{bottom:24.064057pt;}
.y157{bottom:33.626667pt;}
.y167{bottom:35.520000pt;}
.yf8{bottom:43.200000pt;}
.yf6{bottom:43.226667pt;}
.yeb{bottom:43.240000pt;}
.y14d{bottom:44.542431pt;}
.y14b{bottom:60.727254pt;}
.y14c{bottom:68.959663pt;}
.y140{bottom:78.613071pt;}
.y13d{bottom:79.636048pt;}
.y4{bottom:81.312000pt;}
.y34{bottom:81.632000pt;}
.y13f{bottom:90.971031pt;}
.y15c{bottom:91.866667pt;}
.y13c{bottom:91.994009pt;}
.y3{bottom:98.272000pt;}
.y33{bottom:99.552000pt;}
.y19a{bottom:119.104000pt;}
.y148{bottom:119.286060pt;}
.y64{bottom:120.064000pt;}
.ye7{bottom:120.384000pt;}
.y199{bottom:130.944000pt;}
.y32{bottom:131.904000pt;}
.yb7{bottom:132.224000pt;}
.y103{bottom:132.544000pt;}
.y17d{bottom:133.506667pt;}
.y63{bottom:135.426667pt;}
.ye6{bottom:137.346667pt;}
.y134{bottom:137.986667pt;}
.y102{bottom:143.746667pt;}
.y198{bottom:146.306667pt;}
.y31{bottom:148.866667pt;}
.y17c{bottom:150.146667pt;}
.y119{bottom:150.786667pt;}
.y62{bottom:151.106667pt;}
.y145{bottom:152.701094pt;}
.y1ca{bottom:153.026667pt;}
.ye5{bottom:153.986667pt;}
.y133{bottom:154.626667pt;}
.y139{bottom:154.941200pt;}
.y137{bottom:155.224942pt;}
.y8e{bottom:159.106667pt;}
.y101{bottom:161.666667pt;}
.y144{bottom:165.044121pt;}
.y30{bottom:165.826667pt;}
.y17b{bottom:167.106667pt;}
.y138{bottom:167.299161pt;}
.y118{bottom:167.426667pt;}
.y136{bottom:167.582902pt;}
.y14e{bottom:167.747179pt;}
.y61{bottom:168.066667pt;}
.ye4{bottom:170.946667pt;}
.y132{bottom:171.586667pt;}
.y8d{bottom:177.026667pt;}
.y100{bottom:177.986667pt;}
.y2f{bottom:182.466667pt;}
.y14f{bottom:183.077032pt;}
.y117{bottom:184.066667pt;}
.y60{bottom:184.706667pt;}
.y131{bottom:186.946667pt;}
.ye3{bottom:187.906667pt;}
.yb6{bottom:188.226667pt;}
.y8c{bottom:193.986667pt;}
.y197{bottom:194.626667pt;}
.yff{bottom:196.226667pt;}
.y130{bottom:197.186667pt;}
.y1c9{bottom:197.826667pt;}
.y2e{bottom:199.426667pt;}
.y116{bottom:199.746667pt;}
.y17a{bottom:200.706667pt;}
.y5f{bottom:201.666667pt;}
.ye2{bottom:204.866667pt;}
.y8b{bottom:210.946667pt;}
.y12f{bottom:212.546667pt;}
.y14a{bottom:212.646530pt;}
.y1c8{bottom:212.866667pt;}
.yfe{bottom:214.146667pt;}
.y196{bottom:215.106667pt;}
.y2d{bottom:216.386667pt;}
.y115{bottom:216.706667pt;}
.y179{bottom:217.666667pt;}
.y143{bottom:217.910801pt;}
.y5e{bottom:218.626667pt;}
.ye1{bottom:221.506667pt;}
.y150{bottom:223.488671pt;}
.y12c{bottom:224.733333pt;}
.y135{bottom:225.053315pt;}
.yb5{bottom:225.053333pt;}
.y1c7{bottom:226.973333pt;}
.y8a{bottom:227.613333pt;}
.y195{bottom:230.813333pt;}
.y142{bottom:230.828789pt;}
.yfd{bottom:231.133333pt;}
.y13e{bottom:232.844885pt;}
.y114{bottom:233.053333pt;}
.y2c{bottom:233.373333pt;}
.y178{bottom:234.653333pt;}
.y5d{bottom:235.933333pt;}
.ye0{bottom:238.493333pt;}
.y1c6{bottom:242.013333pt;}
.y141{bottom:243.164348pt;}
.y89{bottom:244.573333pt;}
.y194{bottom:247.773333pt;}
.yfc{bottom:248.093333pt;}
.y113{bottom:248.733333pt;}
.y2b{bottom:250.013333pt;}
.y177{bottom:251.613333pt;}
.y5c{bottom:253.533333pt;}
.ydf{bottom:255.453333pt;}
.y1c5{bottom:257.373333pt;}
.y12e{bottom:259.906667pt;}
.y88{bottom:261.533333pt;}
.yb2{bottom:262.173333pt;}
.y193{bottom:264.413333pt;}
.yfb{bottom:264.733333pt;}
.y112{bottom:265.693333pt;}
.y2a{bottom:266.973333pt;}
.y176{bottom:268.253333pt;}
.y5b{bottom:270.493333pt;}
.yde{bottom:272.093333pt;}
.y1c4{bottom:272.733333pt;}
.y12d{bottom:273.986667pt;}
.y87{bottom:278.493333pt;}
.y192{bottom:280.733333pt;}
.yfa{bottom:281.373333pt;}
.y111{bottom:282.653333pt;}
.y29{bottom:283.933333pt;}
.y175{bottom:285.213333pt;}
.y5a{bottom:286.173333pt;}
.y1c3{bottom:288.093333pt;}
.ydd{bottom:289.053333pt;}
.yf9{bottom:293.533333pt;}
.y86{bottom:295.133333pt;}
.yb0{bottom:299.293333pt;}
.y28{bottom:300.573333pt;}
.y174{bottom:302.173333pt;}
.y59{bottom:302.813333pt;}
.y1c2{bottom:303.453333pt;}
.ydc{bottom:305.373333pt;}
.y85{bottom:312.093333pt;}
.y110{bottom:316.253333pt;}
.y27{bottom:317.533333pt;}
.yae{bottom:318.173333pt;}
.y173{bottom:318.813333pt;}
.y58{bottom:319.773333pt;}
.ydb{bottom:321.373333pt;}
.y84{bottom:329.053333pt;}
.y10f{bottom:333.213333pt;}
.y1c1{bottom:333.853333pt;}
.y26{bottom:334.533333pt;}
.y172{bottom:335.813333pt;}
.y57{bottom:336.773333pt;}
.yad{bottom:337.733333pt;}
.yda{bottom:339.333333pt;}
.y191{bottom:345.093333pt;}
.y83{bottom:345.733333pt;}
.y1c0{bottom:347.973333pt;}
.y10e{bottom:349.893333pt;}
.yf7{bottom:350.213333pt;}
.y25{bottom:351.493333pt;}
.y171{bottom:352.773333pt;}
.y56{bottom:353.413333pt;}
.yd9{bottom:355.013333pt;}
.y190{bottom:358.213333pt;}
.y82{bottom:362.693333pt;}
.y1bf{bottom:363.333333pt;}
.yac{bottom:363.973333pt;}
.y10d{bottom:366.853333pt;}
.y24{bottom:367.813333pt;}
.y170{bottom:369.413333pt;}
.y55{bottom:370.373333pt;}
.yd8{bottom:371.973333pt;}
.y18f{bottom:374.853333pt;}
.y1be{bottom:378.693333pt;}
.y81{bottom:379.333333pt;}
.yab{bottom:380.933333pt;}
.y10c{bottom:383.813333pt;}
.y23{bottom:384.133333pt;}
.y16f{bottom:384.773333pt;}
.y54{bottom:387.333333pt;}
.yd7{bottom:388.933333pt;}
.y18e{bottom:391.813333pt;}
.y1bd{bottom:393.733333pt;}
.y80{bottom:395.013333pt;}
.yaa{bottom:397.573333pt;}
.y10b{bottom:400.453333pt;}
.y16e{bottom:401.733333pt;}
.y53{bottom:403.973333pt;}
.y22{bottom:404.613333pt;}
.yd6{bottom:405.573333pt;}
.yf5{bottom:406.533333pt;}
.y1bc{bottom:407.813333pt;}
.y18d{bottom:408.773333pt;}
.y7f{bottom:411.653333pt;}
.ya9{bottom:414.533333pt;}
.y10a{bottom:417.413333pt;}
.y16d{bottom:418.693333pt;}
.y21{bottom:419.973333pt;}
.y52{bottom:420.933333pt;}
.yd5{bottom:421.893333pt;}
.y1bb{bottom:423.173333pt;}
.y18c{bottom:425.733333pt;}
.y7e{bottom:428.613333pt;}
.ya8{bottom:431.493333pt;}
.y109{bottom:434.373333pt;}
.y20{bottom:435.333333pt;}
.y16c{bottom:435.653333pt;}
.y51{bottom:437.573333pt;}
.yd4{bottom:437.893333pt;}
.y1ba{bottom:438.533333pt;}
.y18b{bottom:442.373333pt;}
.y7d{bottom:445.253333pt;}
.ya7{bottom:448.160000pt;}
.y1f{bottom:450.400000pt;}
.y108{bottom:451.040000pt;}
.y16b{bottom:452.320000pt;}
.y1b9{bottom:453.920000pt;}
.y50{bottom:454.560000pt;}
.yd3{bottom:455.520000pt;}
.y18a{bottom:459.360000pt;}
.y7c{bottom:460.960000pt;}
.yf4{bottom:463.200000pt;}
.ya6{bottom:465.440000pt;}
.y107{bottom:466.720000pt;}
.y1e{bottom:467.040000pt;}
.y16a{bottom:468.640000pt;}
.y1b8{bottom:469.280000pt;}
.y4f{bottom:469.920000pt;}
.yd2{bottom:472.160000pt;}
.y189{bottom:475.360000pt;}
.y7b{bottom:477.600000pt;}
.ya5{bottom:482.400000pt;}
.y106{bottom:483.360000pt;}
.y1b7{bottom:484.640000pt;}
.y169{bottom:485.280000pt;}
.y4e{bottom:486.880000pt;}
.y1d{bottom:487.520000pt;}
.y188{bottom:490.720000pt;}
.yd1{bottom:492.640000pt;}
.y7a{bottom:494.240000pt;}
.y105{bottom:497.120000pt;}
.ya4{bottom:499.040000pt;}
.y1b6{bottom:499.680000pt;}
.y166{bottom:502.560000pt;}
.y1c{bottom:502.880000pt;}
.y4d{bottom:503.840000pt;}
.yd0{bottom:508.320000pt;}
.y79{bottom:509.920000pt;}
.y187{bottom:511.520000pt;}
.y12b{bottom:513.120000pt;}
.y1b5{bottom:515.040000pt;}
.ya3{bottom:516.000000pt;}
.y1b{bottom:518.240000pt;}
.yf3{bottom:519.840000pt;}
.y4c{bottom:520.800000pt;}
.ycf{bottom:525.280000pt;}
.y78{bottom:526.880000pt;}
.y186{bottom:528.480000pt;}
.y12a{bottom:529.760000pt;}
.y1b4{bottom:530.400000pt;}
.ya2{bottom:532.960000pt;}
.y1a{bottom:533.600000pt;}
.y4b{bottom:537.440000pt;}
.yce{bottom:542.240000pt;}
.y77{bottom:543.520000pt;}
.y185{bottom:545.120000pt;}
.y1b3{bottom:545.440000pt;}
.y129{bottom:546.720000pt;}
.y19{bottom:548.960000pt;}
.ya1{bottom:549.280000pt;}
.y15b{bottom:553.120000pt;}
.y4a{bottom:554.400000pt;}
.ycd{bottom:558.906667pt;}
.y1b2{bottom:559.546667pt;}
.y76{bottom:560.506667pt;}
.y184{bottom:562.106667pt;}
.y128{bottom:563.386667pt;}
.y18{bottom:564.346667pt;}
.ya0{bottom:565.306667pt;}
.y49{bottom:571.386667pt;}
.y1b1{bottom:574.906667pt;}
.ycc{bottom:575.866667pt;}
.yf2{bottom:576.186667pt;}
.y75{bottom:577.466667pt;}
.y127{bottom:579.066667pt;}
.y17{bottom:579.386667pt;}
.y9f{bottom:582.906667pt;}
.y48{bottom:588.026667pt;}
.y165{bottom:589.626667pt;}
.y1b0{bottom:590.266667pt;}
.ycb{bottom:592.826667pt;}
.y74{bottom:593.786667pt;}
.y16{bottom:594.746667pt;}
.y183{bottom:595.386667pt;}
.y126{bottom:595.706667pt;}
.y9e{bottom:599.546667pt;}
.y47{bottom:604.986667pt;}
.y1dc{bottom:606.266667pt;}
.yca{bottom:609.466667pt;}
.y15{bottom:610.106667pt;}
.y73{bottom:610.426667pt;}
.y182{bottom:611.066667pt;}
.y125{bottom:612.666667pt;}
.y1af{bottom:617.786667pt;}
.y9d{bottom:620.986667pt;}
.y1db{bottom:621.626667pt;}
.y46{bottom:621.946667pt;}
.y164{bottom:623.546667pt;}
.y14{bottom:625.466667pt;}
.yc9{bottom:626.426667pt;}
.y181{bottom:628.026667pt;}
.y124{bottom:629.626667pt;}
.y72{bottom:631.226667pt;}
.yf1{bottom:632.826667pt;}
.y1ae{bottom:633.146667pt;}
.y1da{bottom:636.986667pt;}
.y45{bottom:640.186667pt;}
.y13{bottom:640.826667pt;}
.y163{bottom:641.786667pt;}
.yc8{bottom:643.386667pt;}
.y180{bottom:644.986667pt;}
.y123{bottom:645.946667pt;}
.y71{bottom:647.866667pt;}
.y1ad{bottom:648.506667pt;}
.y1d9{bottom:652.346667pt;}
.y12{bottom:656.186667pt;}
.y9c{bottom:656.506667pt;}
.y162{bottom:660.026667pt;}
.yc7{bottom:660.346667pt;}
.y17f{bottom:661.306667pt;}
.y122{bottom:661.626667pt;}
.y44{bottom:663.226667pt;}
.y70{bottom:664.826667pt;}
.y1d8{bottom:667.706667pt;}
.y11{bottom:671.586667pt;}
.y9b{bottom:673.186667pt;}
.y1ac{bottom:676.066667pt;}
.yc6{bottom:677.026667pt;}
.y15f{bottom:678.306667pt;}
.y121{bottom:678.626667pt;}
.y43{bottom:680.226667pt;}
.y6f{bottom:681.506667pt;}
.y1d7{bottom:682.786667pt;}
.y10{bottom:686.946667pt;}
.yf0{bottom:689.506667pt;}
.y1ab{bottom:691.426667pt;}
.yc5{bottom:693.986667pt;}
.y9a{bottom:694.626667pt;}
.y120{bottom:695.586667pt;}
.y42{bottom:697.186667pt;}
.y1d6{bottom:698.146667pt;}
.yf{bottom:704.546667pt;}
.y1aa{bottom:706.466667pt;}
.yc4{bottom:710.946667pt;}
.y11f{bottom:712.226667pt;}
.y1d5{bottom:713.506667pt;}
.y41{bottom:713.826667pt;}
.y99{bottom:716.066667pt;}
.y1a9{bottom:719.266667pt;}
.ye{bottom:724.386667pt;}
.yc3{bottom:727.586667pt;}
.y11e{bottom:728.866667pt;}
.y15d{bottom:730.466667pt;}
.y40{bottom:730.786667pt;}
.y1a8{bottom:734.306667pt;}
.y98{bottom:737.506667pt;}
.y1d4{bottom:744.226667pt;}
.yc2{bottom:744.546667pt;}
.yee{bottom:745.826667pt;}
.y3f{bottom:747.746667pt;}
.y15a{bottom:748.706667pt;}
.yd{bottom:749.026667pt;}
.y1a7{bottom:749.986667pt;}
.y97{bottom:758.946667pt;}
.y1d3{bottom:759.586667pt;}
.yc1{bottom:760.866667pt;}
.y11d{bottom:761.506667pt;}
.y6e{bottom:764.066667pt;}
.y3e{bottom:764.386667pt;}
.y1a6{bottom:765.026667pt;}
.yc{bottom:767.266667pt;}
.y1d2{bottom:774.626667pt;}
.yc0{bottom:776.866667pt;}
.y1a5{bottom:777.826667pt;}
.y11c{bottom:778.466667pt;}
.y6d{bottom:779.426667pt;}
.y96{bottom:780.386667pt;}
.y3d{bottom:781.373333pt;}
.yb{bottom:785.213333pt;}
.y1d1{bottom:790.333333pt;}
.y1a4{bottom:792.893333pt;}
.ybf{bottom:794.813333pt;}
.y11b{bottom:795.133333pt;}
.y6c{bottom:796.413333pt;}
.ya{bottom:796.733333pt;}
.y3c{bottom:798.333333pt;}
.yec{bottom:802.493333pt;}
.y1d0{bottom:805.693333pt;}
.y1a3{bottom:808.253333pt;}
.ybe{bottom:810.493333pt;}
.y6b{bottom:812.093333pt;}
.y3b{bottom:814.653333pt;}
.y9{bottom:815.613333pt;}
.y156{bottom:815.933333pt;}
.y95{bottom:817.213333pt;}
.y1cf{bottom:821.053333pt;}
.y1a2{bottom:823.613333pt;}
.ybd{bottom:827.453333pt;}
.y6a{bottom:829.053333pt;}
.y155{bottom:830.333333pt;}
.y3a{bottom:832.573333pt;}
.y94{bottom:835.453333pt;}
.y8{bottom:836.413333pt;}
.y1a1{bottom:838.973333pt;}
.ybc{bottom:844.413333pt;}
.y69{bottom:845.693333pt;}
.y154{bottom:847.293333pt;}
.y1ce{bottom:851.133333pt;}
.y93{bottom:854.013333pt;}
.y1a0{bottom:854.333333pt;}
.y39{bottom:854.973333pt;}
.yea{bottom:856.253333pt;}
.ybb{bottom:861.053333pt;}
.y17e{bottom:862.333333pt;}
.y68{bottom:862.653333pt;}
.y153{bottom:864.253333pt;}
.y7{bottom:866.493333pt;}
.y19f{bottom:869.693333pt;}
.y92{bottom:872.253333pt;}
.y38{bottom:878.013333pt;}
.y67{bottom:879.613333pt;}
.y152{bottom:881.213333pt;}
.y1cd{bottom:883.773333pt;}
.y19e{bottom:884.733333pt;}
.y91{bottom:890.813333pt;}
.y37{bottom:895.013333pt;}
.y11a{bottom:895.973333pt;}
.y6{bottom:896.293333pt;}
.y151{bottom:897.253333pt;}
.y19d{bottom:898.853333pt;}
.y1cc{bottom:899.173333pt;}
.y90{bottom:909.093333pt;}
.yba{bottom:911.013333pt;}
.y36{bottom:911.653333pt;}
.y66{bottom:912.933333pt;}
.y19c{bottom:914.213333pt;}
.y1cb{bottom:914.533333pt;}
.ye9{bottom:915.493333pt;}
.y5{bottom:923.493333pt;}
.yb9{bottom:927.333333pt;}
.y8f{bottom:927.653333pt;}
.y65{bottom:928.293333pt;}
.y35{bottom:928.613333pt;}
.y19b{bottom:929.573333pt;}
.ye8{bottom:929.893333pt;}
.y104{bottom:933.093333pt;}
.y2{bottom:943.013333pt;}
.y1{bottom:953.893333pt;}
.h2e{height:15.360000pt;}
.h32{height:15.392000pt;}
.h16{height:16.992000pt;}
.h17{height:17.920000pt;}
.h1a{height:18.240000pt;}
.h2{height:24.265625pt;}
.h2a{height:29.770833pt;}
.h28{height:29.822971pt;}
.h31{height:30.720000pt;}
.h15{height:31.406250pt;}
.h21{height:32.250000pt;}
.h19{height:36.192000pt;}
.h9{height:36.431250pt;}
.h18{height:36.480000pt;}
.h22{height:37.410000pt;}
.h34{height:37.537500pt;}
.h14{height:41.112500pt;}
.ha{height:41.456250pt;}
.h29{height:41.845716pt;}
.h2b{height:41.919001pt;}
.h27{height:42.969929pt;}
.h26{height:43.045183pt;}
.hf{height:44.310000pt;}
.h3{height:44.648750pt;}
.h2d{height:45.792000pt;}
.h33{height:47.360000pt;}
.h24{height:47.737500pt;}
.h1b{height:49.020000pt;}
.he{height:52.736250pt;}
.h1{height:52.762500pt;}
.h30{height:53.118750pt;}
.h1d{height:53.120000pt;}
.h10{height:54.180000pt;}
.h1e{height:56.320000pt;}
.h20{height:56.352000pt;}
.h1f{height:56.640000pt;}
.h1c{height:56.672000pt;}
.hd{height:57.758750pt;}
.h4{height:57.787500pt;}
.h7{height:59.340000pt;}
.h12{height:62.781250pt;}
.hb{height:62.812500pt;}
.h13{height:64.500000pt;}
.hc{height:67.803750pt;}
.h8{height:68.288750pt;}
.h6{height:71.950625pt;}
.h5{height:74.820000pt;}
.h11{height:84.168750pt;}
.h2c{height:92.770965pt;}
.h2f{height:192.706667pt;}
.h25{height:257.053054pt;}
.h23{height:284.866667pt;}
.h0{height:1056.000000pt;}
.we{width:34.912000pt;}
.w11{width:46.432000pt;}
.wb{width:51.872000pt;}
.wf{width:52.480000pt;}
.wc{width:52.832000pt;}
.wd{width:54.080000pt;}
.w10{width:57.632000pt;}
.w5{width:80.992000pt;}
.w6{width:137.026667pt;}
.w2{width:181.826667pt;}
.w12{width:190.786667pt;}
.wa{width:236.893333pt;}
.w4{width:319.133333pt;}
.w3{width:357.893333pt;}
.w8{width:513.712559pt;}
.w9{width:553.826667pt;}
.w7{width:618.493333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:4.160000pt;}
.xb{left:7.042667pt;}
.x29{left:8.607254pt;}
.x2a{left:9.935655pt;}
.x3e{left:11.840000pt;}
.x3c{left:12.800000pt;}
.x3a{left:15.360000pt;}
.x25{left:17.705829pt;}
.x41{left:20.160000pt;}
.x38{left:21.466667pt;}
.x26{left:23.164972pt;}
.x28{left:24.456959pt;}
.x16{left:25.946667pt;}
.x43{left:26.880000pt;}
.x27{left:28.278357pt;}
.x42{left:30.426667pt;}
.x11{left:32.346667pt;}
.x15{left:43.866667pt;}
.x13{left:51.226667pt;}
.x14{left:55.720000pt;}
.x18{left:68.520000pt;}
.x17{left:80.986667pt;}
.x31{left:106.890006pt;}
.x46{left:107.871988pt;}
.x2d{left:112.713099pt;}
.x2{left:113.951988pt;}
.x5{left:119.711988pt;}
.x33{left:125.152000pt;}
.x36{left:126.752000pt;}
.xa{left:131.904000pt;}
.x1c{left:137.986655pt;}
.x2c{left:141.864907pt;}
.x45{left:144.066655pt;}
.x4{left:145.666655pt;}
.xe{left:148.226667pt;}
.x2f{left:162.631495pt;}
.x1d{left:165.013315pt;}
.x40{left:173.186667pt;}
.x7{left:187.906655pt;}
.x1b{left:196.546655pt;}
.x6{left:213.853321pt;}
.x24{left:215.526928pt;}
.x1{left:216.733321pt;}
.x2b{left:224.938503pt;}
.x22{left:226.467058pt;}
.x1f{left:231.926195pt;}
.x8{left:238.493321pt;}
.x20{left:243.404952pt;}
.x34{left:250.661333pt;}
.x23{left:255.429627pt;}
.x35{left:276.928000pt;}
.xc{left:314.373333pt;}
.xd{left:324.613321pt;}
.x30{left:351.714328pt;}
.x2e{left:356.081649pt;}
.x37{left:366.853333pt;}
.x32{left:391.056541pt;}
.x3{left:402.079988pt;}
.x1a{left:413.919988pt;}
.x39{left:420.000000pt;}
.x1e{left:423.287319pt;}
.x21{left:443.224117pt;}
.x10{left:467.360000pt;}
.x3b{left:474.106667pt;}
.x47{left:497.786655pt;}
.x3d{left:529.466667pt;}
.x12{left:548.346667pt;}
.x19{left:565.021333pt;}
.x3f{left:619.746667pt;}
.x44{left:675.453321pt;}
.x9{left:682.813321pt;}
}




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