
    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_eeb4d68240740c531544ebb2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_d39b2f00b3dc014a6cdaa04e.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_70690be3ee029b3e4cc678de.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.201172;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_42a53f52c3fb7a2a4c59c970.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4fc4cb26b11597233c58723e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_272a3f37e9243fdb42a1ecef.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_be102c013cc3b10c14216a01.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d5477ba0071a37095e9d7c6f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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_d7979b6de18b0b9581e5d76f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.738770;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.241291,0.000000,-0.080422,0.236711,0,0);-ms-transform:matrix(0.241291,0.000000,-0.080422,0.236711,0,0);-webkit-transform:matrix(0.241291,0.000000,-0.080422,0.236711,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.254836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254836,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:14.400000px;}
.v3{vertical-align:18.720000px;}
.v1{vertical-align:27.360000px;}
.v7{vertical-align:32.528292px;}
.v4{vertical-align:36.000000px;}
.v2{vertical-align:42.480000px;}
.lsf{letter-spacing:-0.712597px;}
.ls16{letter-spacing:-0.576000px;}
.ls11{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.115200px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.203040px;}
.ls2{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.256200px;}
.lsb{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.720000px;}
.ls8{letter-spacing:2.340000px;}
.ls6{letter-spacing:14.400000px;}
.lsd{letter-spacing:24.202800px;}
.lse{letter-spacing:24.307200px;}
.lsc{letter-spacing:24.819120px;}
.ls9{letter-spacing:33.960000px;}
.lsa{letter-spacing:47.441520px;}
.ls5{letter-spacing:54.840000px;}
.ls13{letter-spacing:634.296000px;}
.ls12{letter-spacing:846.156000px;}
.ls0{letter-spacing:849.149760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-73.017810px;}
.ws4{word-spacing:-72.000000px;}
.ws6{word-spacing:-59.904000px;}
.ws5{word-spacing:-51.120000px;}
.ws7{word-spacing:-49.536000px;}
.ws0{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.000000px;}
.wse{word-spacing:-17.856000px;}
.wsf{word-spacing:-17.784000px;}
.wsd{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.855040px;}
.ws9{word-spacing:-10.654199px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:282.689786px;}
.ws13{word-spacing:291.072000px;}
.ws12{word-spacing:297.852000px;}
.ws10{word-spacing:311.592000px;}
.ws11{word-spacing:318.312000px;}
.wsb{word-spacing:325.790083px;}
.ws8{word-spacing:409.877027px;}
._15{margin-left:-319.954996px;}
._1c{margin-left:-252.164194px;}
._1e{margin-left:-243.229439px;}
._1a{margin-left:-231.493831px;}
._16{margin-left:-224.873944px;}
._18{margin-left:-220.753733px;}
._1b{margin-left:-219.349695px;}
._17{margin-left:-187.939233px;}
._19{margin-left:-177.204976px;}
._1d{margin-left:-141.219879px;}
._9{margin-left:-4.392000px;}
._8{margin-left:-3.384000px;}
._a{margin-left:-2.232000px;}
._0{margin-left:-1.010880px;}
._1{width:1.368000px;}
._2{width:3.024000px;}
._3{width:4.176000px;}
._7{width:5.184000px;}
._6{width:6.192000px;}
._c{width:8.117760px;}
._b{width:9.648000px;}
._4{width:11.448000px;}
._5{width:12.528000px;}
._10{width:13.968000px;}
._11{width:15.170880px;}
._12{width:16.767360px;}
._d{width:19.656000px;}
._e{width:20.952000px;}
._f{width:21.960000px;}
._1f{width:23.184000px;}
._20{width:24.192000px;}
._13{width:35.976000px;}
._23{width:117.504000px;}
._22{width:119.664000px;}
._21{width:180.864000px;}
._25{width:197.976000px;}
._14{width:648.444000px;}
._24{width:846.156000px;}
.fc1{color:transparent;}
.fc2{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs7{font-size:42.616794px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:51.120000px;}
.fs9{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:73.017810px;}
.fs8{font-size:77.116918px;}
.fs1{font-size:84.240000px;}
.fsa{font-size:95.760000px;}
.fsb{font-size:95.904000px;}
.y0{bottom:0.000000px;}
.yad{bottom:3.464856px;}
.yc5{bottom:3.960000px;}
.yc6{bottom:5.220000px;}
.y12d{bottom:5.580000px;}
.yc9{bottom:5.760000px;}
.yf9{bottom:6.840000px;}
.y137{bottom:7.020000px;}
.y1a2{bottom:9.900000px;}
.y191{bottom:10.080000px;}
.y1a0{bottom:10.110000px;}
.y193{bottom:10.980000px;}
.y1a5{bottom:11.160000px;}
.y19d{bottom:13.245000px;}
.y144{bottom:13.290000px;}
.y11d{bottom:13.350000px;}
.y180{bottom:13.395000px;}
.y177{bottom:14.214000px;}
.y155{bottom:14.220000px;}
.y171{bottom:14.265000px;}
.y157{bottom:14.400000px;}
.y120{bottom:18.900000px;}
.y12a{bottom:22.500000px;}
.yc3{bottom:24.660000px;}
.yaf{bottom:25.456353px;}
.y12c{bottom:27.900000px;}
.yf7{bottom:28.080000px;}
.yae{bottom:30.016681px;}
.y196{bottom:30.810000px;}
.y13a{bottom:30.855000px;}
.y14b{bottom:30.885000px;}
.y115{bottom:30.930000px;}
.yc1{bottom:35.100000px;}
.yc2{bottom:45.360000px;}
.y13b{bottom:56.415000px;}
.y2{bottom:58.356000px;}
.y197{bottom:62.850000px;}
.y116{bottom:63.750000px;}
.yc4{bottom:66.060000px;}
.y17a{bottom:69.270000px;}
.y14c{bottom:76.890000px;}
.y1{bottom:78.516000px;}
.y13c{bottom:81.930000px;}
.y198{bottom:94.860000px;}
.y117{bottom:96.630000px;}
.y13d{bottom:107.490000px;}
.y17b{bottom:107.610000px;}
.yca{bottom:111.276000px;}
.y194{bottom:112.176000px;}
.y167{bottom:113.076000px;}
.y178{bottom:116.136000px;}
.y72{bottom:117.216000px;}
.y64{bottom:120.456000px;}
.y14d{bottom:122.865000px;}
.y4e{bottom:124.416000px;}
.y1b7{bottom:126.216000px;}
.y199{bottom:126.900000px;}
.y118{bottom:129.450000px;}
.y166{bottom:129.816000px;}
.ye2{bottom:131.616000px;}
.y13e{bottom:133.050000px;}
.yc8{bottom:135.576000px;}
.y192{bottom:138.996000px;}
.y1c2{bottom:139.176000px;}
.yab{bottom:141.876000px;}
.y138{bottom:142.956000px;}
.y3d{bottom:145.296000px;}
.y17c{bottom:145.905000px;}
.y176{bottom:147.276000px;}
.y165{bottom:152.310000px;}
.y93{bottom:152.670000px;}
.y9d{bottom:155.550000px;}
.yb8{bottom:156.630000px;}
.y13f{bottom:158.610000px;}
.y19a{bottom:158.910000px;}
.yc7{bottom:159.870000px;}
.y136{bottom:160.410000px;}
.y119{bottom:162.330000px;}
.y1c7{bottom:163.110000px;}
.y71{bottom:166.710000px;}
.y4d{bottom:167.250000px;}
.y1b6{bottom:167.610000px;}
.y14e{bottom:168.870000px;}
.y63{bottom:173.910000px;}
.y164{bottom:175.890000px;}
.y175{bottom:178.230000px;}
.yaa{bottom:183.270000px;}
.y140{bottom:184.140000px;}
.y135{bottom:184.170000px;}
.y17d{bottom:184.245000px;}
.ye1{bottom:185.430000px;}
.y3c{bottom:186.690000px;}
.y19b{bottom:190.950000px;}
.y1c1{bottom:192.630000px;}
.y190{bottom:194.250000px;}
.y11a{bottom:195.150000px;}
.y7f{bottom:195.870000px;}
.y163{bottom:198.390000px;}
.y1c6{bottom:204.510000px;}
.y92{bottom:205.950000px;}
.y134{bottom:206.670000px;}
.yc0{bottom:208.110000px;}
.y4c{bottom:208.470000px;}
.y9c{bottom:209.010000px;}
.ye0{bottom:209.190000px;}
.y174{bottom:209.370000px;}
.y141{bottom:209.700000px;}
.yb7{bottom:209.910000px;}
.y14f{bottom:214.845000px;}
.y162{bottom:220.890000px;}
.y17e{bottom:222.555000px;}
.y19c{bottom:222.945000px;}
.ya9{bottom:224.670000px;}
.y62{bottom:227.370000px;}
.y3b{bottom:227.910000px;}
.y11b{bottom:228.030000px;}
.y133{bottom:229.170000px;}
.ydf{bottom:231.690000px;}
.y142{bottom:235.260000px;}
.y7e{bottom:238.710000px;}
.y173{bottom:240.330000px;}
.y1c0{bottom:245.910000px;}
.y91{bottom:247.350000px;}
.y1b5{bottom:250.410000px;}
.yb6{bottom:251.310000px;}
.y19e{bottom:251.925000px;}
.y132{bottom:252.750000px;}
.y18f{bottom:258.690000px;}
.y9b{bottom:258.870000px;}
.y143{bottom:260.790000px;}
.y150{bottom:260.820000px;}
.y11c{bottom:260.850000px;}
.y17f{bottom:260.895000px;}
.y9a{bottom:267.870000px;}
.y4b{bottom:269.310000px;}
.y172{bottom:271.470000px;}
.yde{bottom:273.090000px;}
.y131{bottom:275.250000px;}
.ya8{bottom:278.130000px;}
.y7d{bottom:279.930000px;}
.y61{bottom:280.650000px;}
.y151{bottom:286.815000px;}
.y3a{bottom:287.310000px;}
.y90{bottom:288.750000px;}
.y145{bottom:289.800000px;}
.y11e{bottom:289.830000px;}
.y181{bottom:289.875000px;}
.y1b4{bottom:291.810000px;}
.yfc{bottom:297.390000px;}
.y130{bottom:297.750000px;}
.y161{bottom:299.010000px;}
.y1bf{bottom:299.370000px;}
.y170{bottom:302.430000px;}
.yb5{bottom:304.770000px;}
.ybf{bottom:311.475000px;}
.y18e{bottom:315.075000px;}
.ydd{bottom:315.255000px;}
.y1dc{bottom:318.315000px;}
.y17{bottom:318.675000px;}
.yfb{bottom:319.935000px;}
.y12f{bottom:320.295000px;}
.y39{bottom:328.755000px;}
.y8f{bottom:330.195000px;}
.ya7{bottom:331.635000px;}
.y1b3{bottom:333.255000px;}
.y16f{bottom:333.435000px;}
.y60{bottom:334.155000px;}
.y160{bottom:334.695000px;}
.y7c{bottom:334.875000px;}
.y1c5{bottom:340.815000px;}
.yfa{bottom:342.435000px;}
.y12e{bottom:342.795000px;}
.ybe{bottom:352.875000px;}
.y1db{bottom:353.955000px;}
.y16{bottom:354.675000px;}
.y18d{bottom:356.475000px;}
.ydc{bottom:358.095000px;}
.yb4{bottom:358.275000px;}
.y113{bottom:364.575000px;}
.yf8{bottom:364.935000px;}
.y12b{bottom:366.015000px;}
.y38{bottom:370.155000px;}
.y28{bottom:370.875000px;}
.y8e{bottom:371.595000px;}
.ya6{bottom:373.035000px;}
.y1b2{bottom:374.655000px;}
.ydb{bottom:381.675000px;}
.y112{bottom:382.035000px;}
.y1c4{bottom:382.215000px;}
.y5f{bottom:387.435000px;}
.y7b{bottom:388.155000px;}
.yf6{bottom:388.515000px;}
.y1da{bottom:389.775000px;}
.y15{bottom:390.675000px;}
.ybd{bottom:394.275000px;}
.y16e{bottom:396.435000px;}
.y18c{bottom:397.875000px;}
.y111{bottom:405.615000px;}
.y1be{bottom:406.155000px;}
.y129{bottom:410.655000px;}
.y37{bottom:411.555000px;}
.y27{bottom:412.275000px;}
.y8d{bottom:412.995000px;}
.y15f{bottom:422.355000px;}
.yda{bottom:423.255000px;}
.y99{bottom:423.615000px;}
.y1d9{bottom:425.595000px;}
.y14{bottom:426.675000px;}
.ya5{bottom:426.855000px;}
.y110{bottom:428.115000px;}
.y5e{bottom:428.835000px;}
.y4a{bottom:429.555000px;}
.y7a{bottom:429.735000px;}
.y18b{bottom:433.515000px;}
.ybc{bottom:435.675000px;}
.yd9{bottom:439.995000px;}
.y10f{bottom:450.615000px;}
.yf5{bottom:452.235000px;}
.y36{bottom:452.955000px;}
.y26{bottom:453.675000px;}
.y8c{bottom:454.395000px;}
.y15e{bottom:456.735000px;}
.y1bd{bottom:459.615000px;}
.y1d8{bottom:461.415000px;}
.y13{bottom:462.495000px;}
.yd8{bottom:463.935000px;}
.y1c3{bottom:465.015000px;}
.y18a{bottom:469.155000px;}
.y1b1{bottom:469.335000px;}
.y5d{bottom:470.235000px;}
.y10e{bottom:474.195000px;}
.y98{bottom:477.075000px;}
.ya4{bottom:481.035000px;}
.y1d7{bottom:485.175000px;}
.y128{bottom:487.335000px;}
.yf4{bottom:487.875000px;}
.y149{bottom:488.595000px;}
.y49{bottom:488.955000px;}
.y79{bottom:489.135000px;}
.y35{bottom:494.355000px;}
.y25{bottom:495.075000px;}
.y8b{bottom:495.795000px;}
.y10d{bottom:496.695000px;}
.y12{bottom:498.495000px;}
.y1bc{bottom:501.015000px;}
.y189{bottom:504.975000px;}
.yd7{bottom:505.335000px;}
.yb3{bottom:506.415000px;}
.y1b0{bottom:510.735000px;}
.y5c{bottom:511.635000px;}
.ybb{bottom:518.475000px;}
.y148{bottom:519.015000px;}
.y14a{bottom:519.120000px;}
.y10c{bottom:519.195000px;}
.y1d6{bottom:520.995000px;}
.y127{bottom:522.975000px;}
.yf3{bottom:523.695000px;}
.yd6{bottom:527.835000px;}
.y48{bottom:530.355000px;}
.y16d{bottom:531.615000px;}
.y11{bottom:534.495000px;}
.ya3{bottom:535.215000px;}
.y34{bottom:535.755000px;}
.y15d{bottom:536.295000px;}
.y24{bottom:536.475000px;}
.y8a{bottom:537.195000px;}
.y10b{bottom:541.695000px;}
.y1bb{bottom:542.415000px;}
.y1d5{bottom:544.935000px;}
.y78{bottom:548.535000px;}
.y1af{bottom:552.135000px;}
.y5b{bottom:553.035000px;}
.y126{bottom:553.395000px;}
.y139{bottom:553.500000px;}
.y188{bottom:554.295000px;}
.y195{bottom:554.580000px;}
.yf2{bottom:559.335000px;}
.yb2{bottom:559.875000px;}
.y10a{bottom:564.225000px;}
.y15c{bottom:567.465000px;}
.yd5{bottom:569.265000px;}
.y10{bottom:570.525000px;}
.y47{bottom:571.785000px;}
.y33{bottom:577.185000px;}
.yf1{bottom:577.545000px;}
.y23{bottom:577.905000px;}
.y89{bottom:578.625000px;}
.y1d4{bottom:580.605000px;}
.y6f{bottom:583.845000px;}
.y16c{bottom:587.985000px;}
.y109{bottom:588.705000px;}
.ya2{bottom:589.425000px;}
.y1ae{bottom:593.565000px;}
.y5a{bottom:594.465000px;}
.y15b{bottom:598.425000px;}
.yb1{bottom:601.305000px;}
.y70{bottom:605.265000px;}
.yf{bottom:606.525000px;}
.y77{bottom:607.785000px;}
.yd4{bottom:611.385000px;}
.y46{bottom:613.185000px;}
.y1d3{bottom:615.705000px;}
.y32{bottom:618.585000px;}
.y22{bottom:619.305000px;}
.y88{bottom:620.025000px;}
.yf0{bottom:623.805000px;}
.y6e{bottom:625.245000px;}
.y16b{bottom:629.385000px;}
.y15a{bottom:629.565000px;}
.y59{bottom:635.865000px;}
.y1d2{bottom:639.645000px;}
.ye{bottom:642.525000px;}
.yb0{bottom:642.705000px;}
.ya1{bottom:643.245000px;}
.yef{bottom:646.305000px;}
.y1ad{bottom:647.025000px;}
.y76{bottom:649.185000px;}
.y108{bottom:649.725000px;}
.yd3{bottom:654.405000px;}
.y45{bottom:654.585000px;}
.y31{bottom:659.985000px;}
.y159{bottom:660.525000px;}
.y87{bottom:661.425000px;}
.y6d{bottom:666.645000px;}
.y16a{bottom:670.785000px;}
.y21{bottom:672.585000px;}
.y58{bottom:677.265000px;}
.yd2{bottom:677.985000px;}
.yd{bottom:678.525000px;}
.y1ba{bottom:678.705000px;}
.yba{bottom:683.925000px;}
.y1d1{bottom:684.465000px;}
.y107{bottom:685.545000px;}
.yee{bottom:688.425000px;}
.y75{bottom:690.585000px;}
.y158{bottom:691.665000px;}
.y11f{bottom:692.385000px;}
.yac{bottom:692.730000px;}
.y44{bottom:695.985000px;}
.y30{bottom:701.385000px;}
.y86{bottom:702.825000px;}
.y169{bottom:706.425000px;}
.y6c{bottom:708.045000px;}
.ya0{bottom:710.565000px;}
.y20{bottom:713.985000px;}
.yc{bottom:714.345000px;}
.y57{bottom:718.665000px;}
.yd1{bottom:719.385000px;}
.y106{bottom:719.745000px;}
.y1b9{bottom:719.925000px;}
.y156{bottom:722.625000px;}
.y1d0{bottom:729.105000px;}
.y1ac{bottom:729.825000px;}
.yed{bottom:731.265000px;}
.y74{bottom:731.985000px;}
.y114{bottom:734.940000px;}
.yb9{bottom:737.385000px;}
.y2f{bottom:742.785000px;}
.y6b{bottom:749.445000px;}
.yb{bottom:750.345000px;}
.y105{bottom:754.125000px;}
.y154{bottom:754.485000px;}
.yd0{bottom:755.025000px;}
.y1f{bottom:755.385000px;}
.y168{bottom:755.925000px;}
.y179{bottom:756.000000px;}
.y85{bottom:756.285000px;}
.y56{bottom:760.065000px;}
.y1b8{bottom:761.325000px;}
.y1ab{bottom:771.225000px;}
.y73{bottom:773.385000px;}
.yec{bottom:773.925000px;}
.y9f{bottom:778.785000px;}
.y2e{bottom:784.185000px;}
.ya{bottom:786.345000px;}
.y104{bottom:788.505000px;}
.y6a{bottom:790.845000px;}
.y1e{bottom:796.785000px;}
.ycf{bottom:796.965000px;}
.y1cf{bottom:797.865000px;}
.y55{bottom:801.465000px;}
.y84{bottom:809.565000px;}
.y1aa{bottom:812.670000px;}
.y43{bottom:814.830000px;}
.yce{bottom:819.510000px;}
.y9e{bottom:820.230000px;}
.y9{bottom:822.390000px;}
.y103{bottom:822.930000px;}
.y2d{bottom:825.630000px;}
.y69{bottom:832.290000px;}
.y153{bottom:836.250000px;}
.y1d{bottom:838.230000px;}
.ycd{bottom:842.010000px;}
.y1ce{bottom:842.550000px;}
.y54{bottom:842.910000px;}
.y97{bottom:844.170000px;}
.yeb{bottom:845.250000px;}
.y83{bottom:852.270000px;}
.y42{bottom:856.230000px;}
.y102{bottom:857.130000px;}
.y8{bottom:858.390000px;}
.y147{bottom:860.730000px;}
.yea{bottom:863.610000px;}
.y1a9{bottom:866.130000px;}
.y1cd{bottom:866.490000px;}
.y2c{bottom:867.030000px;}
.y152{bottom:870.630000px;}
.y68{bottom:873.690000px;}
.y187{bottom:877.290000px;}
.y1c{bottom:879.630000px;}
.ycc{bottom:884.130000px;}
.y53{bottom:884.310000px;}
.y96{bottom:885.570000px;}
.ye9{bottom:886.110000px;}
.y1cc{bottom:890.250000px;}
.y101{bottom:891.510000px;}
.y186{bottom:894.030000px;}
.y7{bottom:894.390000px;}
.y125{bottom:894.930000px;}
.y82{bottom:895.110000px;}
.y41{bottom:897.630000px;}
.y1a8{bottom:900.330000px;}
.ye8{bottom:907.710000px;}
.y2b{bottom:908.430000px;}
.y124{bottom:911.670000px;}
.y67{bottom:915.090000px;}
.y185{bottom:916.530000px;}
.y1a7{bottom:917.970000px;}
.y1b{bottom:921.030000px;}
.y52{bottom:925.710000px;}
.y100{bottom:925.890000px;}
.y95{bottom:926.970000px;}
.ye7{bottom:929.310000px;}
.y123{bottom:934.170000px;}
.y1cb{bottom:935.070000px;}
.y81{bottom:936.330000px;}
.y40{bottom:939.030000px;}
.y6{bottom:939.750000px;}
.y184{bottom:940.110000px;}
.y1a6{bottom:944.610000px;}
.ycb{bottom:950.730000px;}
.y66{bottom:956.490000px;}
.y122{bottom:956.670000px;}
.y146{bottom:957.930000px;}
.y1ca{bottom:958.830000px;}
.yff{bottom:960.270000px;}
.y1a{bottom:962.430000px;}
.y183{bottom:962.610000px;}
.y51{bottom:967.110000px;}
.y2a{bottom:967.830000px;}
.y94{bottom:968.370000px;}
.y1a4{bottom:971.250000px;}
.ye6{bottom:971.430000px;}
.y80{bottom:979.170000px;}
.y3f{bottom:980.430000px;}
.y1c9{bottom:982.590000px;}
.y182{bottom:985.110000px;}
.y5{bottom:987.990000px;}
.yfe{bottom:994.470000px;}
.y1a3{bottom:999.150000px;}
.y121{bottom:1002.930000px;}
.y19{bottom:1003.830000px;}
.y65{bottom:1009.770000px;}
.ye5{bottom:1014.270000px;}
.y50{bottom:1020.570000px;}
.y3e{bottom:1021.830000px;}
.y4{bottom:1024.170000px;}
.y1a1{bottom:1025.790000px;}
.y29{bottom:1027.230000px;}
.y1c8{bottom:1027.410000px;}
.yfd{bottom:1028.850000px;}
.ye4{bottom:1036.770000px;}
.y19f{bottom:1052.430000px;}
.ye3{bottom:1058.370000px;}
.y3{bottom:1060.350000px;}
.y4f{bottom:1061.790000px;}
.y18{bottom:1063.260000px;}
.h1b{height:21.600000px;}
.h1a{height:21.636000px;}
.h14{height:22.500000px;}
.h17{height:22.536000px;}
.h12{height:23.400000px;}
.h18{height:23.580000px;}
.h15{height:23.760000px;}
.h13{height:24.300000px;}
.h2e{height:26.640000px;}
.h2a{height:26.820000px;}
.h2d{height:26.856000px;}
.h2b{height:27.720000px;}
.h2f{height:27.900000px;}
.h25{height:30.960000px;}
.h28{height:30.996000px;}
.h24{height:31.140000px;}
.h26{height:31.176000px;}
.h20{height:35.640000px;}
.h16{height:41.400000px;}
.h19{height:41.436000px;}
.h21{height:44.640000px;}
.h1c{height:44.820000px;}
.h29{height:48.761719px;}
.hc{height:49.416000px;}
.h5{height:50.273438px;}
.h3{height:50.800781px;}
.hd{height:50.984115px;}
.h7{height:52.417969px;}
.h10{height:53.545047px;}
.h1e{height:53.709961px;}
.h6{height:59.343750px;}
.h2{height:59.436914px;}
.hb{height:60.679688px;}
.h8{height:61.043203px;}
.h27{height:62.100000px;}
.h23{height:62.136000px;}
.he{height:62.285136px;}
.h1{height:65.884219px;}
.h4{height:67.824844px;}
.hf{height:78.423958px;}
.h11{height:82.800000px;}
.h9{height:96.394219px;}
.ha{height:96.679688px;}
.h1f{height:98.051133px;}
.h22{height:98.198578px;}
.h2c{height:286.020000px;}
.h1d{height:324.000000px;}
.h0{height:1188.000000px;}
.w19{width:64.080000px;}
.w13{width:64.260000px;}
.we{width:64.440000px;}
.w17{width:70.020000px;}
.w11{width:70.560000px;}
.w6{width:72.000000px;}
.w20{width:72.036000px;}
.w27{width:74.700000px;}
.w1f{width:74.736000px;}
.w29{width:74.880000px;}
.w22{width:74.916000px;}
.w21{width:75.060000px;}
.w3{width:77.940000px;}
.w5{width:77.976000px;}
.w4{width:78.120000px;}
.w10{width:78.696000px;}
.wc{width:79.020000px;}
.w28{width:79.236000px;}
.w23{width:79.416000px;}
.w18{width:81.360000px;}
.w16{width:81.396000px;}
.w30{width:82.080000px;}
.w12{width:83.160000px;}
.w14{width:83.196000px;}
.wb{width:83.700000px;}
.wd{width:83.736000px;}
.w2b{width:84.060000px;}
.w1c{width:86.760000px;}
.w1e{width:86.796000px;}
.w1b{width:86.976000px;}
.w9{width:92.340000px;}
.w2d{width:92.700000px;}
.w2c{width:92.736000px;}
.w2f{width:92.916000px;}
.w2a{width:93.096000px;}
.w7{width:93.240000px;}
.w2e{width:101.700000px;}
.w31{width:105.876000px;}
.w8{width:113.256000px;}
.w15{width:114.120000px;}
.wf{width:114.660000px;}
.w32{width:115.920000px;}
.w1d{width:130.140000px;}
.wa{width:130.176000px;}
.w2{width:162.000000px;}
.w1a{width:216.930000px;}
.w26{width:378.075000px;}
.w33{width:526.500000px;}
.w24{width:540.000000px;}
.w25{width:540.105000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1b{left:3.113320px;}
.x1d{left:8.100000px;}
.x48{left:9.825000px;}
.x47{left:16.665000px;}
.x4b{left:23.472000px;}
.x46{left:30.345000px;}
.x60{left:37.152000px;}
.x57{left:43.995000px;}
.x18{left:71.968371px;}
.x4c{left:101.265000px;}
.x2{left:108.035986px;}
.x49{left:109.365000px;}
.x61{left:111.570000px;}
.x4{left:113.795986px;}
.x58{left:119.235000px;}
.x59{left:124.230000px;}
.x14{left:135.035986px;}
.x10{left:139.535986px;}
.x1a{left:141.619166px;}
.x3{left:143.315986px;}
.x17{left:144.651000px;}
.x19{left:151.542912px;}
.x15{left:162.029986px;}
.x11{left:166.529986px;}
.x2c{left:172.470000px;}
.x25{left:180.030000px;}
.x62{left:183.030000px;}
.x1e{left:185.970000px;}
.x5b{left:201.270000px;}
.x16{left:210.269986px;}
.x4e{left:216.930000px;}
.x45{left:223.380000px;}
.x55{left:227.370000px;}
.x40{left:233.310000px;}
.x38{left:238.170000px;}
.xb{left:249.869986px;}
.x1f{left:264.090000px;}
.x5c{left:283.350000px;}
.xa{left:286.589986px;}
.x4f{left:288.930000px;}
.xc{left:291.449986px;}
.x41{left:305.355000px;}
.x26{left:310.215000px;}
.x8{left:323.894986px;}
.x39{left:324.975000px;}
.x20{left:342.075000px;}
.x2d{left:365.835000px;}
.x50{left:366.915000px;}
.x6{left:368.534986px;}
.x5{left:370.694986px;}
.x54{left:375.195000px;}
.x42{left:380.415000px;}
.x3e{left:385.635000px;}
.x5d{left:389.235000px;}
.x27{left:393.915000px;}
.x36{left:396.975000px;}
.x3a{left:403.995000px;}
.x21{left:414.075000px;}
.x2e{left:436.395000px;}
.x33{left:437.835000px;}
.x9{left:439.634986px;}
.x51{left:444.855000px;}
.x7{left:446.474986px;}
.x1c{left:450.614986px;}
.xf{left:455.294986px;}
.x3f{left:457.635000px;}
.x1{left:459.074986px;}
.x4d{left:460.875000px;}
.x37{left:468.975000px;}
.x28{left:472.935000px;}
.x3b{left:490.965000px;}
.x22{left:492.045000px;}
.x5e{left:495.105000px;}
.x56{left:496.365000px;}
.x2f{left:515.085000px;}
.x34{left:519.225000px;}
.x43{left:530.385000px;}
.x52{left:537.945000px;}
.x29{left:556.665000px;}
.x3c{left:574.665000px;}
.x23{left:585.285000px;}
.x30{left:598.245000px;}
.x35{left:600.585000px;}
.x44{left:605.445000px;}
.x5f{left:611.025000px;}
.x53{left:622.005000px;}
.x5a{left:634.604986px;}
.x2a{left:640.365000px;}
.x4a{left:648.104986px;}
.x3d{left:658.365000px;}
.x31{left:662.505000px;}
.xe{left:665.024986px;}
.x24{left:698.550000px;}
.x13{left:702.509986px;}
.x12{left:709.349986px;}
.x2b{left:724.110000px;}
.x32{left:745.890000px;}
.xd{left:810.149986px;}
@media print{
.v5{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:12.800000pt;}
.v3{vertical-align:16.640000pt;}
.v1{vertical-align:24.320000pt;}
.v7{vertical-align:28.914038pt;}
.v4{vertical-align:32.000000pt;}
.v2{vertical-align:37.760000pt;}
.lsf{letter-spacing:-0.633419pt;}
.ls16{letter-spacing:-0.512000pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.102400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.180480pt;}
.ls2{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.227733pt;}
.lsb{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.640000pt;}
.ls8{letter-spacing:2.080000pt;}
.ls6{letter-spacing:12.800000pt;}
.lsd{letter-spacing:21.513600pt;}
.lse{letter-spacing:21.606400pt;}
.lsc{letter-spacing:22.061440pt;}
.ls9{letter-spacing:30.186667pt;}
.lsa{letter-spacing:42.170240pt;}
.ls5{letter-spacing:48.746667pt;}
.ls13{letter-spacing:563.818667pt;}
.ls12{letter-spacing:752.138667pt;}
.ls0{letter-spacing:754.799787pt;}
.wsc{word-spacing:-64.904720pt;}
.ws4{word-spacing:-64.000000pt;}
.ws6{word-spacing:-53.248000pt;}
.ws5{word-spacing:-45.440000pt;}
.ws7{word-spacing:-44.032000pt;}
.ws0{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.872000pt;}
.wsf{word-spacing:-15.808000pt;}
.wsd{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.204480pt;}
.ws9{word-spacing:-9.470399pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:251.279810pt;}
.ws13{word-spacing:258.730667pt;}
.ws12{word-spacing:264.757333pt;}
.ws10{word-spacing:276.970667pt;}
.ws11{word-spacing:282.944000pt;}
.wsb{word-spacing:289.591185pt;}
.ws8{word-spacing:364.335135pt;}
._15{margin-left:-284.404441pt;}
._1c{margin-left:-224.145950pt;}
._1e{margin-left:-216.203946pt;}
._1a{margin-left:-205.772294pt;}
._16{margin-left:-199.887950pt;}
._18{margin-left:-196.225540pt;}
._1b{margin-left:-194.977507pt;}
._17{margin-left:-167.057096pt;}
._19{margin-left:-157.515534pt;}
._1d{margin-left:-125.528781pt;}
._9{margin-left:-3.904000pt;}
._8{margin-left:-3.008000pt;}
._a{margin-left:-1.984000pt;}
._0{margin-left:-0.898560pt;}
._1{width:1.216000pt;}
._2{width:2.688000pt;}
._3{width:3.712000pt;}
._7{width:4.608000pt;}
._6{width:5.504000pt;}
._c{width:7.215787pt;}
._b{width:8.576000pt;}
._4{width:10.176000pt;}
._5{width:11.136000pt;}
._10{width:12.416000pt;}
._11{width:13.485227pt;}
._12{width:14.904320pt;}
._d{width:17.472000pt;}
._e{width:18.624000pt;}
._f{width:19.520000pt;}
._1f{width:20.608000pt;}
._20{width:21.504000pt;}
._13{width:31.978667pt;}
._23{width:104.448000pt;}
._22{width:106.368000pt;}
._21{width:160.768000pt;}
._25{width:175.978667pt;}
._14{width:576.394667pt;}
._24{width:752.138667pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:37.881595pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:45.440000pt;}
.fs9{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:64.904720pt;}
.fs8{font-size:68.548371pt;}
.fs1{font-size:74.880000pt;}
.fsa{font-size:85.120000pt;}
.fsb{font-size:85.248000pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:3.079872pt;}
.yc5{bottom:3.520000pt;}
.yc6{bottom:4.640000pt;}
.y12d{bottom:4.960000pt;}
.yc9{bottom:5.120000pt;}
.yf9{bottom:6.080000pt;}
.y137{bottom:6.240000pt;}
.y1a2{bottom:8.800000pt;}
.y191{bottom:8.960000pt;}
.y1a0{bottom:8.986667pt;}
.y193{bottom:9.760000pt;}
.y1a5{bottom:9.920000pt;}
.y19d{bottom:11.773333pt;}
.y144{bottom:11.813333pt;}
.y11d{bottom:11.866667pt;}
.y180{bottom:11.906667pt;}
.y177{bottom:12.634667pt;}
.y155{bottom:12.640000pt;}
.y171{bottom:12.680000pt;}
.y157{bottom:12.800000pt;}
.y120{bottom:16.800000pt;}
.y12a{bottom:20.000000pt;}
.yc3{bottom:21.920000pt;}
.yaf{bottom:22.627869pt;}
.y12c{bottom:24.800000pt;}
.yf7{bottom:24.960000pt;}
.yae{bottom:26.681494pt;}
.y196{bottom:27.386667pt;}
.y13a{bottom:27.426667pt;}
.y14b{bottom:27.453333pt;}
.y115{bottom:27.493333pt;}
.yc1{bottom:31.200000pt;}
.yc2{bottom:40.320000pt;}
.y13b{bottom:50.146667pt;}
.y2{bottom:51.872000pt;}
.y197{bottom:55.866667pt;}
.y116{bottom:56.666667pt;}
.yc4{bottom:58.720000pt;}
.y17a{bottom:61.573333pt;}
.y14c{bottom:68.346667pt;}
.y1{bottom:69.792000pt;}
.y13c{bottom:72.826667pt;}
.y198{bottom:84.320000pt;}
.y117{bottom:85.893333pt;}
.y13d{bottom:95.546667pt;}
.y17b{bottom:95.653333pt;}
.yca{bottom:98.912000pt;}
.y194{bottom:99.712000pt;}
.y167{bottom:100.512000pt;}
.y178{bottom:103.232000pt;}
.y72{bottom:104.192000pt;}
.y64{bottom:107.072000pt;}
.y14d{bottom:109.213333pt;}
.y4e{bottom:110.592000pt;}
.y1b7{bottom:112.192000pt;}
.y199{bottom:112.800000pt;}
.y118{bottom:115.066667pt;}
.y166{bottom:115.392000pt;}
.ye2{bottom:116.992000pt;}
.y13e{bottom:118.266667pt;}
.yc8{bottom:120.512000pt;}
.y192{bottom:123.552000pt;}
.y1c2{bottom:123.712000pt;}
.yab{bottom:126.112000pt;}
.y138{bottom:127.072000pt;}
.y3d{bottom:129.152000pt;}
.y17c{bottom:129.693333pt;}
.y176{bottom:130.912000pt;}
.y165{bottom:135.386667pt;}
.y93{bottom:135.706667pt;}
.y9d{bottom:138.266667pt;}
.yb8{bottom:139.226667pt;}
.y13f{bottom:140.986667pt;}
.y19a{bottom:141.253333pt;}
.yc7{bottom:142.106667pt;}
.y136{bottom:142.586667pt;}
.y119{bottom:144.293333pt;}
.y1c7{bottom:144.986667pt;}
.y71{bottom:148.186667pt;}
.y4d{bottom:148.666667pt;}
.y1b6{bottom:148.986667pt;}
.y14e{bottom:150.106667pt;}
.y63{bottom:154.586667pt;}
.y164{bottom:156.346667pt;}
.y175{bottom:158.426667pt;}
.yaa{bottom:162.906667pt;}
.y140{bottom:163.680000pt;}
.y135{bottom:163.706667pt;}
.y17d{bottom:163.773333pt;}
.ye1{bottom:164.826667pt;}
.y3c{bottom:165.946667pt;}
.y19b{bottom:169.733333pt;}
.y1c1{bottom:171.226667pt;}
.y190{bottom:172.666667pt;}
.y11a{bottom:173.466667pt;}
.y7f{bottom:174.106667pt;}
.y163{bottom:176.346667pt;}
.y1c6{bottom:181.786667pt;}
.y92{bottom:183.066667pt;}
.y134{bottom:183.706667pt;}
.yc0{bottom:184.986667pt;}
.y4c{bottom:185.306667pt;}
.y9c{bottom:185.786667pt;}
.ye0{bottom:185.946667pt;}
.y174{bottom:186.106667pt;}
.y141{bottom:186.400000pt;}
.yb7{bottom:186.586667pt;}
.y14f{bottom:190.973333pt;}
.y162{bottom:196.346667pt;}
.y17e{bottom:197.826667pt;}
.y19c{bottom:198.173333pt;}
.ya9{bottom:199.706667pt;}
.y62{bottom:202.106667pt;}
.y3b{bottom:202.586667pt;}
.y11b{bottom:202.693333pt;}
.y133{bottom:203.706667pt;}
.ydf{bottom:205.946667pt;}
.y142{bottom:209.120000pt;}
.y7e{bottom:212.186667pt;}
.y173{bottom:213.626667pt;}
.y1c0{bottom:218.586667pt;}
.y91{bottom:219.866667pt;}
.y1b5{bottom:222.586667pt;}
.yb6{bottom:223.386667pt;}
.y19e{bottom:223.933333pt;}
.y132{bottom:224.666667pt;}
.y18f{bottom:229.946667pt;}
.y9b{bottom:230.106667pt;}
.y143{bottom:231.813333pt;}
.y150{bottom:231.840000pt;}
.y11c{bottom:231.866667pt;}
.y17f{bottom:231.906667pt;}
.y9a{bottom:238.106667pt;}
.y4b{bottom:239.386667pt;}
.y172{bottom:241.306667pt;}
.yde{bottom:242.746667pt;}
.y131{bottom:244.666667pt;}
.ya8{bottom:247.226667pt;}
.y7d{bottom:248.826667pt;}
.y61{bottom:249.466667pt;}
.y151{bottom:254.946667pt;}
.y3a{bottom:255.386667pt;}
.y90{bottom:256.666667pt;}
.y145{bottom:257.600000pt;}
.y11e{bottom:257.626667pt;}
.y181{bottom:257.666667pt;}
.y1b4{bottom:259.386667pt;}
.yfc{bottom:264.346667pt;}
.y130{bottom:264.666667pt;}
.y161{bottom:265.786667pt;}
.y1bf{bottom:266.106667pt;}
.y170{bottom:268.826667pt;}
.yb5{bottom:270.906667pt;}
.ybf{bottom:276.866667pt;}
.y18e{bottom:280.066667pt;}
.ydd{bottom:280.226667pt;}
.y1dc{bottom:282.946667pt;}
.y17{bottom:283.266667pt;}
.yfb{bottom:284.386667pt;}
.y12f{bottom:284.706667pt;}
.y39{bottom:292.226667pt;}
.y8f{bottom:293.506667pt;}
.ya7{bottom:294.786667pt;}
.y1b3{bottom:296.226667pt;}
.y16f{bottom:296.386667pt;}
.y60{bottom:297.026667pt;}
.y160{bottom:297.506667pt;}
.y7c{bottom:297.666667pt;}
.y1c5{bottom:302.946667pt;}
.yfa{bottom:304.386667pt;}
.y12e{bottom:304.706667pt;}
.ybe{bottom:313.666667pt;}
.y1db{bottom:314.626667pt;}
.y16{bottom:315.266667pt;}
.y18d{bottom:316.866667pt;}
.ydc{bottom:318.306667pt;}
.yb4{bottom:318.466667pt;}
.y113{bottom:324.066667pt;}
.yf8{bottom:324.386667pt;}
.y12b{bottom:325.346667pt;}
.y38{bottom:329.026667pt;}
.y28{bottom:329.666667pt;}
.y8e{bottom:330.306667pt;}
.ya6{bottom:331.586667pt;}
.y1b2{bottom:333.026667pt;}
.ydb{bottom:339.266667pt;}
.y112{bottom:339.586667pt;}
.y1c4{bottom:339.746667pt;}
.y5f{bottom:344.386667pt;}
.y7b{bottom:345.026667pt;}
.yf6{bottom:345.346667pt;}
.y1da{bottom:346.466667pt;}
.y15{bottom:347.266667pt;}
.ybd{bottom:350.466667pt;}
.y16e{bottom:352.386667pt;}
.y18c{bottom:353.666667pt;}
.y111{bottom:360.546667pt;}
.y1be{bottom:361.026667pt;}
.y129{bottom:365.026667pt;}
.y37{bottom:365.826667pt;}
.y27{bottom:366.466667pt;}
.y8d{bottom:367.106667pt;}
.y15f{bottom:375.426667pt;}
.yda{bottom:376.226667pt;}
.y99{bottom:376.546667pt;}
.y1d9{bottom:378.306667pt;}
.y14{bottom:379.266667pt;}
.ya5{bottom:379.426667pt;}
.y110{bottom:380.546667pt;}
.y5e{bottom:381.186667pt;}
.y4a{bottom:381.826667pt;}
.y7a{bottom:381.986667pt;}
.y18b{bottom:385.346667pt;}
.ybc{bottom:387.266667pt;}
.yd9{bottom:391.106667pt;}
.y10f{bottom:400.546667pt;}
.yf5{bottom:401.986667pt;}
.y36{bottom:402.626667pt;}
.y26{bottom:403.266667pt;}
.y8c{bottom:403.906667pt;}
.y15e{bottom:405.986667pt;}
.y1bd{bottom:408.546667pt;}
.y1d8{bottom:410.146667pt;}
.y13{bottom:411.106667pt;}
.yd8{bottom:412.386667pt;}
.y1c3{bottom:413.346667pt;}
.y18a{bottom:417.026667pt;}
.y1b1{bottom:417.186667pt;}
.y5d{bottom:417.986667pt;}
.y10e{bottom:421.506667pt;}
.y98{bottom:424.066667pt;}
.ya4{bottom:427.586667pt;}
.y1d7{bottom:431.266667pt;}
.y128{bottom:433.186667pt;}
.yf4{bottom:433.666667pt;}
.y149{bottom:434.306667pt;}
.y49{bottom:434.626667pt;}
.y79{bottom:434.786667pt;}
.y35{bottom:439.426667pt;}
.y25{bottom:440.066667pt;}
.y8b{bottom:440.706667pt;}
.y10d{bottom:441.506667pt;}
.y12{bottom:443.106667pt;}
.y1bc{bottom:445.346667pt;}
.y189{bottom:448.866667pt;}
.yd7{bottom:449.186667pt;}
.yb3{bottom:450.146667pt;}
.y1b0{bottom:453.986667pt;}
.y5c{bottom:454.786667pt;}
.ybb{bottom:460.866667pt;}
.y148{bottom:461.346667pt;}
.y14a{bottom:461.440000pt;}
.y10c{bottom:461.506667pt;}
.y1d6{bottom:463.106667pt;}
.y127{bottom:464.866667pt;}
.yf3{bottom:465.506667pt;}
.yd6{bottom:469.186667pt;}
.y48{bottom:471.426667pt;}
.y16d{bottom:472.546667pt;}
.y11{bottom:475.106667pt;}
.ya3{bottom:475.746667pt;}
.y34{bottom:476.226667pt;}
.y15d{bottom:476.706667pt;}
.y24{bottom:476.866667pt;}
.y8a{bottom:477.506667pt;}
.y10b{bottom:481.506667pt;}
.y1bb{bottom:482.146667pt;}
.y1d5{bottom:484.386667pt;}
.y78{bottom:487.586667pt;}
.y1af{bottom:490.786667pt;}
.y5b{bottom:491.586667pt;}
.y126{bottom:491.906667pt;}
.y139{bottom:492.000000pt;}
.y188{bottom:492.706667pt;}
.y195{bottom:492.960000pt;}
.yf2{bottom:497.186667pt;}
.yb2{bottom:497.666667pt;}
.y10a{bottom:501.533333pt;}
.y15c{bottom:504.413333pt;}
.yd5{bottom:506.013333pt;}
.y10{bottom:507.133333pt;}
.y47{bottom:508.253333pt;}
.y33{bottom:513.053333pt;}
.yf1{bottom:513.373333pt;}
.y23{bottom:513.693333pt;}
.y89{bottom:514.333333pt;}
.y1d4{bottom:516.093333pt;}
.y6f{bottom:518.973333pt;}
.y16c{bottom:522.653333pt;}
.y109{bottom:523.293333pt;}
.ya2{bottom:523.933333pt;}
.y1ae{bottom:527.613333pt;}
.y5a{bottom:528.413333pt;}
.y15b{bottom:531.933333pt;}
.yb1{bottom:534.493333pt;}
.y70{bottom:538.013333pt;}
.yf{bottom:539.133333pt;}
.y77{bottom:540.253333pt;}
.yd4{bottom:543.453333pt;}
.y46{bottom:545.053333pt;}
.y1d3{bottom:547.293333pt;}
.y32{bottom:549.853333pt;}
.y22{bottom:550.493333pt;}
.y88{bottom:551.133333pt;}
.yf0{bottom:554.493333pt;}
.y6e{bottom:555.773333pt;}
.y16b{bottom:559.453333pt;}
.y15a{bottom:559.613333pt;}
.y59{bottom:565.213333pt;}
.y1d2{bottom:568.573333pt;}
.ye{bottom:571.133333pt;}
.yb0{bottom:571.293333pt;}
.ya1{bottom:571.773333pt;}
.yef{bottom:574.493333pt;}
.y1ad{bottom:575.133333pt;}
.y76{bottom:577.053333pt;}
.y108{bottom:577.533333pt;}
.yd3{bottom:581.693333pt;}
.y45{bottom:581.853333pt;}
.y31{bottom:586.653333pt;}
.y159{bottom:587.133333pt;}
.y87{bottom:587.933333pt;}
.y6d{bottom:592.573333pt;}
.y16a{bottom:596.253333pt;}
.y21{bottom:597.853333pt;}
.y58{bottom:602.013333pt;}
.yd2{bottom:602.653333pt;}
.yd{bottom:603.133333pt;}
.y1ba{bottom:603.293333pt;}
.yba{bottom:607.933333pt;}
.y1d1{bottom:608.413333pt;}
.y107{bottom:609.373333pt;}
.yee{bottom:611.933333pt;}
.y75{bottom:613.853333pt;}
.y158{bottom:614.813333pt;}
.y11f{bottom:615.453333pt;}
.yac{bottom:615.760000pt;}
.y44{bottom:618.653333pt;}
.y30{bottom:623.453333pt;}
.y86{bottom:624.733333pt;}
.y169{bottom:627.933333pt;}
.y6c{bottom:629.373333pt;}
.ya0{bottom:631.613333pt;}
.y20{bottom:634.653333pt;}
.yc{bottom:634.973333pt;}
.y57{bottom:638.813333pt;}
.yd1{bottom:639.453333pt;}
.y106{bottom:639.773333pt;}
.y1b9{bottom:639.933333pt;}
.y156{bottom:642.333333pt;}
.y1d0{bottom:648.093333pt;}
.y1ac{bottom:648.733333pt;}
.yed{bottom:650.013333pt;}
.y74{bottom:650.653333pt;}
.y114{bottom:653.280000pt;}
.yb9{bottom:655.453333pt;}
.y2f{bottom:660.253333pt;}
.y6b{bottom:666.173333pt;}
.yb{bottom:666.973333pt;}
.y105{bottom:670.333333pt;}
.y154{bottom:670.653333pt;}
.yd0{bottom:671.133333pt;}
.y1f{bottom:671.453333pt;}
.y168{bottom:671.933333pt;}
.y179{bottom:672.000000pt;}
.y85{bottom:672.253333pt;}
.y56{bottom:675.613333pt;}
.y1b8{bottom:676.733333pt;}
.y1ab{bottom:685.533333pt;}
.y73{bottom:687.453333pt;}
.yec{bottom:687.933333pt;}
.y9f{bottom:692.253333pt;}
.y2e{bottom:697.053333pt;}
.ya{bottom:698.973333pt;}
.y104{bottom:700.893333pt;}
.y6a{bottom:702.973333pt;}
.y1e{bottom:708.253333pt;}
.ycf{bottom:708.413333pt;}
.y1cf{bottom:709.213333pt;}
.y55{bottom:712.413333pt;}
.y84{bottom:719.613333pt;}
.y1aa{bottom:722.373333pt;}
.y43{bottom:724.293333pt;}
.yce{bottom:728.453333pt;}
.y9e{bottom:729.093333pt;}
.y9{bottom:731.013333pt;}
.y103{bottom:731.493333pt;}
.y2d{bottom:733.893333pt;}
.y69{bottom:739.813333pt;}
.y153{bottom:743.333333pt;}
.y1d{bottom:745.093333pt;}
.ycd{bottom:748.453333pt;}
.y1ce{bottom:748.933333pt;}
.y54{bottom:749.253333pt;}
.y97{bottom:750.373333pt;}
.yeb{bottom:751.333333pt;}
.y83{bottom:757.573333pt;}
.y42{bottom:761.093333pt;}
.y102{bottom:761.893333pt;}
.y8{bottom:763.013333pt;}
.y147{bottom:765.093333pt;}
.yea{bottom:767.653333pt;}
.y1a9{bottom:769.893333pt;}
.y1cd{bottom:770.213333pt;}
.y2c{bottom:770.693333pt;}
.y152{bottom:773.893333pt;}
.y68{bottom:776.613333pt;}
.y187{bottom:779.813333pt;}
.y1c{bottom:781.893333pt;}
.ycc{bottom:785.893333pt;}
.y53{bottom:786.053333pt;}
.y96{bottom:787.173333pt;}
.ye9{bottom:787.653333pt;}
.y1cc{bottom:791.333333pt;}
.y101{bottom:792.453333pt;}
.y186{bottom:794.693333pt;}
.y7{bottom:795.013333pt;}
.y125{bottom:795.493333pt;}
.y82{bottom:795.653333pt;}
.y41{bottom:797.893333pt;}
.y1a8{bottom:800.293333pt;}
.ye8{bottom:806.853333pt;}
.y2b{bottom:807.493333pt;}
.y124{bottom:810.373333pt;}
.y67{bottom:813.413333pt;}
.y185{bottom:814.693333pt;}
.y1a7{bottom:815.973333pt;}
.y1b{bottom:818.693333pt;}
.y52{bottom:822.853333pt;}
.y100{bottom:823.013333pt;}
.y95{bottom:823.973333pt;}
.ye7{bottom:826.053333pt;}
.y123{bottom:830.373333pt;}
.y1cb{bottom:831.173333pt;}
.y81{bottom:832.293333pt;}
.y40{bottom:834.693333pt;}
.y6{bottom:835.333333pt;}
.y184{bottom:835.653333pt;}
.y1a6{bottom:839.653333pt;}
.ycb{bottom:845.093333pt;}
.y66{bottom:850.213333pt;}
.y122{bottom:850.373333pt;}
.y146{bottom:851.493333pt;}
.y1ca{bottom:852.293333pt;}
.yff{bottom:853.573333pt;}
.y1a{bottom:855.493333pt;}
.y183{bottom:855.653333pt;}
.y51{bottom:859.653333pt;}
.y2a{bottom:860.293333pt;}
.y94{bottom:860.773333pt;}
.y1a4{bottom:863.333333pt;}
.ye6{bottom:863.493333pt;}
.y80{bottom:870.373333pt;}
.y3f{bottom:871.493333pt;}
.y1c9{bottom:873.413333pt;}
.y182{bottom:875.653333pt;}
.y5{bottom:878.213333pt;}
.yfe{bottom:883.973333pt;}
.y1a3{bottom:888.133333pt;}
.y121{bottom:891.493333pt;}
.y19{bottom:892.293333pt;}
.y65{bottom:897.573333pt;}
.ye5{bottom:901.573333pt;}
.y50{bottom:907.173333pt;}
.y3e{bottom:908.293333pt;}
.y4{bottom:910.373333pt;}
.y1a1{bottom:911.813333pt;}
.y29{bottom:913.093333pt;}
.y1c8{bottom:913.253333pt;}
.yfd{bottom:914.533333pt;}
.ye4{bottom:921.573333pt;}
.y19f{bottom:935.493333pt;}
.ye3{bottom:940.773333pt;}
.y3{bottom:942.533333pt;}
.y4f{bottom:943.813333pt;}
.y18{bottom:945.120000pt;}
.h1b{height:19.200000pt;}
.h1a{height:19.232000pt;}
.h14{height:20.000000pt;}
.h17{height:20.032000pt;}
.h12{height:20.800000pt;}
.h18{height:20.960000pt;}
.h15{height:21.120000pt;}
.h13{height:21.600000pt;}
.h2e{height:23.680000pt;}
.h2a{height:23.840000pt;}
.h2d{height:23.872000pt;}
.h2b{height:24.640000pt;}
.h2f{height:24.800000pt;}
.h25{height:27.520000pt;}
.h28{height:27.552000pt;}
.h24{height:27.680000pt;}
.h26{height:27.712000pt;}
.h20{height:31.680000pt;}
.h16{height:36.800000pt;}
.h19{height:36.832000pt;}
.h21{height:39.680000pt;}
.h1c{height:39.840000pt;}
.h29{height:43.343750pt;}
.hc{height:43.925333pt;}
.h5{height:44.687500pt;}
.h3{height:45.156250pt;}
.hd{height:45.319214pt;}
.h7{height:46.593750pt;}
.h10{height:47.595598pt;}
.h1e{height:47.742188pt;}
.h6{height:52.750000pt;}
.h2{height:52.832812pt;}
.hb{height:53.937500pt;}
.h8{height:54.260625pt;}
.h27{height:55.200000pt;}
.h23{height:55.232000pt;}
.he{height:55.364565pt;}
.h1{height:58.563750pt;}
.h4{height:60.288750pt;}
.hf{height:69.710185pt;}
.h11{height:73.600000pt;}
.h9{height:85.683750pt;}
.ha{height:85.937500pt;}
.h1f{height:87.156562pt;}
.h22{height:87.287625pt;}
.h2c{height:254.240000pt;}
.h1d{height:288.000000pt;}
.h0{height:1056.000000pt;}
.w19{width:56.960000pt;}
.w13{width:57.120000pt;}
.we{width:57.280000pt;}
.w17{width:62.240000pt;}
.w11{width:62.720000pt;}
.w6{width:64.000000pt;}
.w20{width:64.032000pt;}
.w27{width:66.400000pt;}
.w1f{width:66.432000pt;}
.w29{width:66.560000pt;}
.w22{width:66.592000pt;}
.w21{width:66.720000pt;}
.w3{width:69.280000pt;}
.w5{width:69.312000pt;}
.w4{width:69.440000pt;}
.w10{width:69.952000pt;}
.wc{width:70.240000pt;}
.w28{width:70.432000pt;}
.w23{width:70.592000pt;}
.w18{width:72.320000pt;}
.w16{width:72.352000pt;}
.w30{width:72.960000pt;}
.w12{width:73.920000pt;}
.w14{width:73.952000pt;}
.wb{width:74.400000pt;}
.wd{width:74.432000pt;}
.w2b{width:74.720000pt;}
.w1c{width:77.120000pt;}
.w1e{width:77.152000pt;}
.w1b{width:77.312000pt;}
.w9{width:82.080000pt;}
.w2d{width:82.400000pt;}
.w2c{width:82.432000pt;}
.w2f{width:82.592000pt;}
.w2a{width:82.752000pt;}
.w7{width:82.880000pt;}
.w2e{width:90.400000pt;}
.w31{width:94.112000pt;}
.w8{width:100.672000pt;}
.w15{width:101.440000pt;}
.wf{width:101.920000pt;}
.w32{width:103.040000pt;}
.w1d{width:115.680000pt;}
.wa{width:115.712000pt;}
.w2{width:144.000000pt;}
.w1a{width:192.826667pt;}
.w26{width:336.066667pt;}
.w33{width:468.000000pt;}
.w24{width:480.000000pt;}
.w25{width:480.093333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:2.767396pt;}
.x1d{left:7.200000pt;}
.x48{left:8.733333pt;}
.x47{left:14.813333pt;}
.x4b{left:20.864000pt;}
.x46{left:26.973333pt;}
.x60{left:33.024000pt;}
.x57{left:39.106667pt;}
.x18{left:63.971885pt;}
.x4c{left:90.013333pt;}
.x2{left:96.031988pt;}
.x49{left:97.213333pt;}
.x61{left:99.173333pt;}
.x4{left:101.151988pt;}
.x58{left:105.986667pt;}
.x59{left:110.426667pt;}
.x14{left:120.031988pt;}
.x10{left:124.031988pt;}
.x1a{left:125.883703pt;}
.x3{left:127.391988pt;}
.x17{left:128.578667pt;}
.x19{left:134.704811pt;}
.x15{left:144.026655pt;}
.x11{left:148.026655pt;}
.x2c{left:153.306667pt;}
.x25{left:160.026667pt;}
.x62{left:162.693333pt;}
.x1e{left:165.306667pt;}
.x5b{left:178.906667pt;}
.x16{left:186.906655pt;}
.x4e{left:192.826667pt;}
.x45{left:198.560000pt;}
.x55{left:202.106667pt;}
.x40{left:207.386667pt;}
.x38{left:211.706667pt;}
.xb{left:222.106655pt;}
.x1f{left:234.746667pt;}
.x5c{left:251.866667pt;}
.xa{left:254.746655pt;}
.x4f{left:256.826667pt;}
.xc{left:259.066655pt;}
.x41{left:271.426667pt;}
.x26{left:275.746667pt;}
.x8{left:287.906655pt;}
.x39{left:288.866667pt;}
.x20{left:304.066667pt;}
.x2d{left:325.186667pt;}
.x50{left:326.146667pt;}
.x6{left:327.586655pt;}
.x5{left:329.506655pt;}
.x54{left:333.506667pt;}
.x42{left:338.146667pt;}
.x3e{left:342.786667pt;}
.x5d{left:345.986667pt;}
.x27{left:350.146667pt;}
.x36{left:352.866667pt;}
.x3a{left:359.106667pt;}
.x21{left:368.066667pt;}
.x2e{left:387.906667pt;}
.x33{left:389.186667pt;}
.x9{left:390.786655pt;}
.x51{left:395.426667pt;}
.x7{left:396.866655pt;}
.x1c{left:400.546655pt;}
.xf{left:404.706655pt;}
.x3f{left:406.786667pt;}
.x1{left:408.066655pt;}
.x4d{left:409.666667pt;}
.x37{left:416.866667pt;}
.x28{left:420.386667pt;}
.x3b{left:436.413333pt;}
.x22{left:437.373333pt;}
.x5e{left:440.093333pt;}
.x56{left:441.213333pt;}
.x2f{left:457.853333pt;}
.x34{left:461.533333pt;}
.x43{left:471.453333pt;}
.x52{left:478.173333pt;}
.x29{left:494.813333pt;}
.x3c{left:510.813333pt;}
.x23{left:520.253333pt;}
.x30{left:531.773333pt;}
.x35{left:533.853333pt;}
.x44{left:538.173333pt;}
.x5f{left:543.133333pt;}
.x53{left:552.893333pt;}
.x5a{left:564.093321pt;}
.x2a{left:569.213333pt;}
.x4a{left:576.093321pt;}
.x3d{left:585.213333pt;}
.x31{left:588.893333pt;}
.xe{left:591.133321pt;}
.x24{left:620.933333pt;}
.x13{left:624.453321pt;}
.x12{left:630.533321pt;}
.x2b{left:643.653333pt;}
.x32{left:663.013333pt;}
.xd{left:720.133321pt;}
}




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