
    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_b959e63992918ec3051d0442.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_2684d5b2c18bb559dc8ac690.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005859;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_bb513eb08de355252278b7aa.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_9f903caead3271a4ecd76d27.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b7c46a09ba9f066cec9fc56a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.972656;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_d4262fd1eabb7e97171b8682.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_c99531dfba49e7221150d5db.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8d259c695aa87afa251b035d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_69dc25b99443bc93c843508a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4dfa59110b988678a236e6ac.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.040000px;}
.v1{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:13.500000px;}
.v5{vertical-align:18.000000px;}
.v3{vertical-align:49.500000px;}
.v6{vertical-align:58.440000px;}
.ls7{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.131400px;}
.lsb{letter-spacing:-0.072000px;}
.ls1b{letter-spacing:-0.069600px;}
.ls13{letter-spacing:-0.058320px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.085800px;}
.ls11{letter-spacing:0.132480px;}
.lsf{letter-spacing:0.132960px;}
.lsa{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.274800px;}
.lsd{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.720000px;}
.ls21{letter-spacing:0.864000px;}
.ls20{letter-spacing:8.640000px;}
.ls2{letter-spacing:12.960000px;}
.ls8{letter-spacing:32.544000px;}
.ls1f{letter-spacing:33.984000px;}
.ls19{letter-spacing:44.274240px;}
.ls3{letter-spacing:54.864000px;}
.ls18{letter-spacing:89.154240px;}
.ls1e{letter-spacing:89.334240px;}
.ls10{letter-spacing:95.904000px;}
.ls1a{letter-spacing:116.394240px;}
.ls17{letter-spacing:152.394240px;}
.lse{letter-spacing:264.918240px;}
.ls14{letter-spacing:849.185760px;}
.ls1d{letter-spacing:850.650240px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws2{word-spacing:-47.520000px;}
.ws8{word-spacing:-47.376000px;}
.ws6{word-spacing:-18.144000px;}
.ws16{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.856000px;}
.ws17{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.wsd{word-spacing:-14.993280px;}
.wse{word-spacing:-13.591560px;}
.wsb{word-spacing:-13.447440px;}
.wsa{word-spacing:-13.406904px;}
.ws9{word-spacing:-0.095760px;}
.ws0{word-spacing:0.000000px;}
.ws15{word-spacing:69.613680px;}
.wsc{word-spacing:82.296000px;}
.ws11{word-spacing:98.071920px;}
.ws12{word-spacing:313.661280px;}
.wsf{word-spacing:313.721280px;}
.ws14{word-spacing:441.368400px;}
.ws13{word-spacing:441.386688px;}
.ws10{word-spacing:441.446688px;}
._1f{margin-left:-15.840000px;}
._28{margin-left:-9.351120px;}
._30{margin-left:-8.220000px;}
._2d{margin-left:-5.940000px;}
._27{margin-left:-4.548960px;}
._e{margin-left:-2.364000px;}
._0{margin-left:-1.008000px;}
._1{width:1.092000px;}
._9{width:2.112000px;}
._a{width:3.960000px;}
._d{width:5.040000px;}
._7{width:6.336000px;}
._3{width:7.704000px;}
._4{width:8.796000px;}
._8{width:10.788000px;}
._b{width:12.168000px;}
._c{width:13.176000px;}
._5{width:14.832000px;}
._6{width:15.912000px;}
._14{width:16.944000px;}
._1c{width:19.008000px;}
._11{width:20.016000px;}
._15{width:21.384000px;}
._16{width:22.752000px;}
._17{width:24.192000px;}
._18{width:25.332000px;}
._19{width:26.784000px;}
._f{width:28.152000px;}
._10{width:29.292000px;}
._1a{width:31.248000px;}
._1b{width:32.256000px;}
._20{width:34.188000px;}
._23{width:35.256000px;}
._24{width:37.104000px;}
._29{width:39.888000px;}
._1d{width:46.296000px;}
._1e{width:47.304000px;}
._12{width:49.872000px;}
._13{width:51.156000px;}
._3b{width:55.572000px;}
._32{width:67.194960px;}
._40{width:70.704000px;}
._41{width:71.784000px;}
._21{width:90.840000px;}
._22{width:92.256000px;}
._39{width:94.968000px;}
._3c{width:96.048000px;}
._26{width:109.416000px;}
._2a{width:113.058960px;}
._35{width:114.351360px;}
._2f{width:115.871760px;}
._34{width:118.353600px;}
._36{width:120.159600px;}
._37{width:121.668240px;}
._3e{width:128.952000px;}
._3d{width:130.380000px;}
._3a{width:133.908000px;}
._2e{width:142.299840px;}
._25{width:194.376000px;}
._33{width:221.196240px;}
._2c{width:248.160960px;}
._2b{width:278.428512px;}
._31{width:368.325360px;}
._3f{width:532.512000px;}
._38{width:573.624000px;}
._2{width:846.156000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(54,95,145);}
.fc5{color:rgb(51,51,51);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fsa{font-size:59.760000px;}
.fsb{font-size:59.904000px;}
.fs7{font-size:64.080000px;}
.fs0{font-size:66.240000px;}
.fs9{font-size:66.384000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fsc{font-size:108.000000px;}
.fs1{font-size:120.240000px;}
.fs3{font-size:167.760000px;}
.fs4{font-size:216.000000px;}
.y8e{bottom:-15.150000px;}
.y0{bottom:0.000000px;}
.y15{bottom:0.360000px;}
.yd1{bottom:2.700000px;}
.ye7{bottom:4.140000px;}
.y18{bottom:4.680000px;}
.y4d{bottom:5.623050px;}
.y4{bottom:6.652500px;}
.y87{bottom:8.820000px;}
.y140{bottom:9.540000px;}
.y6{bottom:10.260000px;}
.yab{bottom:11.520000px;}
.y3f{bottom:14.580000px;}
.y41{bottom:14.760000px;}
.y8d{bottom:15.120000px;}
.y17{bottom:24.660000px;}
.y86{bottom:32.580000px;}
.y81{bottom:38.010000px;}
.yaa{bottom:42.480000px;}
.yc9{bottom:42.735000px;}
.y8c{bottom:46.260000px;}
.y11d{bottom:50.910000px;}
.y165{bottom:51.450000px;}
.y12b{bottom:51.870000px;}
.y15a{bottom:52.740000px;}
.yd6{bottom:54.285000px;}
.y85{bottom:56.520000px;}
.y150{bottom:57.600000px;}
.y2{bottom:57.636000px;}
.y4e{bottom:59.392950px;}
.y151{bottom:59.865000px;}
.y8{bottom:61.560000px;}
.ya8{bottom:64.365000px;}
.yc8{bottom:66.675000px;}
.y8b{bottom:77.220000px;}
.y12c{bottom:78.870000px;}
.y101{bottom:80.130000px;}
.y84{bottom:80.280000px;}
.yec{bottom:82.260000px;}
.yf6{bottom:82.335000px;}
.yc7{bottom:85.215000px;}
.y15b{bottom:86.505000px;}
.y3{bottom:86.623500px;}
.y13a{bottom:89.070000px;}
.y7{bottom:92.520000px;}
.ya7{bottom:92.625000px;}
.y14f{bottom:99.255000px;}
.y11e{bottom:100.410000px;}
.ye0{bottom:102.525000px;}
.y83{bottom:104.040000px;}
.y8a{bottom:108.360000px;}
.y12a{bottom:118.260000px;}
.y152{bottom:119.490000px;}
.y100{bottom:126.285000px;}
.y10e{bottom:130.785000px;}
.y89{bottom:139.320000px;}
.ybb{bottom:141.156000px;}
.yca{bottom:141.516000px;}
.yc2{bottom:141.870000px;}
.ya6{bottom:143.565000px;}
.y166{bottom:145.950000px;}
.y139{bottom:146.445000px;}
.y16d{bottom:151.230000px;}
.y55{bottom:152.490000px;}
.yc6{bottom:154.260000px;}
.y3d{bottom:154.470000px;}
.y73{bottom:155.010000px;}
.ycb{bottom:155.340000px;}
.y38{bottom:156.270000px;}
.y13{bottom:159.330000px;}
.yd5{bottom:160.050000px;}
.y80{bottom:161.640000px;}
.ycd{bottom:164.445000px;}
.yc1{bottom:165.450000px;}
.y7f{bottom:171.750000px;}
.ya5{bottom:171.825000px;}
.yba{bottom:172.290000px;}
.yc5{bottom:172.800000px;}
.y15c{bottom:175.395000px;}
.y11f{bottom:181.410000px;}
.y54{bottom:183.450000px;}
.yf5{bottom:184.710000px;}
.y3c{bottom:185.430000px;}
.y72{bottom:186.150000px;}
.y37{bottom:187.050000px;}
.y76{bottom:187.410000px;}
.y102{bottom:189.285000px;}
.y12{bottom:190.110000px;}
.yc0{bottom:190.470000px;}
.ycc{bottom:193.680000px;}
.y11c{bottom:193.785000px;}
.y18c{bottom:195.150000px;}
.yd7{bottom:200.550000px;}
.yb9{bottom:203.250000px;}
.y164{bottom:206.715000px;}
.y12d{bottom:209.415000px;}
.y53{bottom:214.590000px;}
.ydf{bottom:215.025000px;}
.ybf{bottom:215.670000px;}
.y16c{bottom:215.850000px;}
.y71{bottom:217.110000px;}
.y3b{bottom:217.650000px;}
.y36{bottom:218.010000px;}
.y75{bottom:218.370000px;}
.y103{bottom:219.675000px;}
.y11{bottom:221.070000px;}
.y159{bottom:222.660000px;}
.y10d{bottom:223.050000px;}
.y13b{bottom:230.835000px;}
.ya3{bottom:232.410000px;}
.yb8{bottom:234.390000px;}
.ybe{bottom:240.870000px;}
.yc4{bottom:241.845000px;}
.y14e{bottom:244.410000px;}
.y52{bottom:246.810000px;}
.y70{bottom:248.070000px;}
.y16b{bottom:248.250000px;}
.y3a{bottom:249.150000px;}
.y35{bottom:249.510000px;}
.y153{bottom:252.255000px;}
.y10{bottom:252.570000px;}
.yed{bottom:254.415000px;}
.yc3{bottom:260.385000px;}
.y129{bottom:261.180000px;}
.ya2{bottom:263.550000px;}
.y104{bottom:264.675000px;}
.yb7{bottom:265.350000px;}
.ybd{bottom:266.115000px;}
.ydd{bottom:266.430000px;}
.y120{bottom:266.940000px;}
.y15d{bottom:272.160000px;}
.yf7{bottom:274.710000px;}
.yff{bottom:274.785000px;}
.y127{bottom:277.230000px;}
.y51{bottom:277.950000px;}
.y6f{bottom:279.210000px;}
.y136{bottom:279.390000px;}
.y34{bottom:280.470000px;}
.yf{bottom:283.575000px;}
.y13c{bottom:284.835000px;}
.ye1{bottom:285.915000px;}
.y138{bottom:287.100000px;}
.y167{bottom:288.870000px;}
.ya9{bottom:289.875000px;}
.y15e{bottom:292.395000px;}
.ya1{bottom:294.555000px;}
.yd4{bottom:295.050000px;}
.ydc{bottom:295.275000px;}
.yb6{bottom:296.535000px;}
.ye9{bottom:297.975000px;}
.y115{bottom:298.440000px;}
.yeb{bottom:301.680000px;}
.yf4{bottom:301.710000px;}
.y105{bottom:302.940000px;}
.yd8{bottom:304.050000px;}
.yfd{bottom:305.355000px;}
.y126{bottom:306.075000px;}
.y12f{bottom:307.290000px;}
.y135{bottom:308.055000px;}
.y186{bottom:308.955000px;}
.yde{bottom:309.060000px;}
.y11a{bottom:309.495000px;}
.y50{bottom:310.215000px;}
.y33{bottom:311.655000px;}
.yf8{bottom:311.835000px;}
.ye2{bottom:314.025000px;}
.ye{bottom:314.355000px;}
.y128{bottom:319.860000px;}
.y14{bottom:320.475000px;}
.y145{bottom:321.015000px;}
.y137{bottom:321.840000px;}
.ya0{bottom:325.695000px;}
.ye8{bottom:326.775000px;}
.yb5{bottom:327.495000px;}
.y12e{bottom:329.790000px;}
.yfc{bottom:334.155000px;}
.y10b{bottom:334.695000px;}
.y116{bottom:335.550000px;}
.y121{bottom:336.675000px;}
.y130{bottom:337.680000px;}
.y119{bottom:338.295000px;}
.y185{bottom:340.095000px;}
.yea{bottom:340.560000px;}
.yf3{bottom:341.100000px;}
.yd9{bottom:341.205000px;}
.y4f{bottom:341.355000px;}
.y32{bottom:342.615000px;}
.yd{bottom:345.675000px;}
.y11b{bottom:351.900000px;}
.y144{bottom:351.975000px;}
.y113{bottom:354.855000px;}
.yfe{bottom:356.400000px;}
.yfb{bottom:356.475000px;}
.y9f{bottom:356.655000px;}
.yf1{bottom:356.835000px;}
.yb4{bottom:358.635000px;}
.y160{bottom:361.620000px;}
.y10a{bottom:363.495000px;}
.y187{bottom:365.655000px;}
.y13e{bottom:367.560000px;}
.y149{bottom:370.695000px;}
.y184{bottom:371.055000px;}
.y109{bottom:371.880000px;}
.y6e{bottom:372.315000px;}
.yc{bottom:372.495000px;}
.y155{bottom:373.245000px;}
.y16a{bottom:373.470000px;}
.y31{bottom:373.755000px;}
.y110{bottom:374.400000px;}
.ybc{bottom:375.120000px;}
.y125{bottom:376.380000px;}
.y118{bottom:376.665000px;}
.y10c{bottom:377.100000px;}
.y134{bottom:377.385000px;}
.ycf{bottom:378.795000px;}
.yef{bottom:379.875000px;}
.y143{bottom:383.115000px;}
.yfa{bottom:383.325000px;}
.ydb{bottom:383.400000px;}
.y112{bottom:383.655000px;}
.ye5{bottom:384.270000px;}
.yf0{bottom:385.455000px;}
.yb3{bottom:387.615000px;}
.y9e{bottom:387.795000px;}
.y15f{bottom:397.905000px;}
.y108{bottom:399.030000px;}
.yf2{bottom:399.240000px;}
.y183{bottom:402.195000px;}
.y6d{bottom:403.455000px;}
.y124{bottom:403.530000px;}
.y13d{bottom:403.845000px;}
.y133{bottom:404.490000px;}
.y30{bottom:404.715000px;}
.y14c{bottom:405.795000px;}
.y114{bottom:405.900000px;}
.y111{bottom:405.975000px;}
.y148{bottom:406.980000px;}
.y154{bottom:409.500000px;}
.y157{bottom:409.575000px;}
.y169{bottom:409.785000px;}
.y10f{bottom:410.685000px;}
.ye4{bottom:411.375000px;}
.y117{bottom:412.920000px;}
.y142{bottom:414.075000px;}
.yce{bottom:415.080000px;}
.yee{bottom:416.160000px;}
.yd2{bottom:416.595000px;}
.y9d{bottom:418.755000px;}
.yf9{bottom:419.580000px;}
.yda{bottom:419.685000px;}
.y107{bottom:426.165000px;}
.y162{bottom:426.855000px;}
.yd3{bottom:430.200000px;}
.y123{bottom:430.665000px;}
.y132{bottom:431.640000px;}
.y14b{bottom:431.895000px;}
.y182{bottom:433.155000px;}
.y6c{bottom:434.415000px;}
.y2f{bottom:435.855000px;}
.y156{bottom:438.375000px;}
.y147{bottom:439.920000px;}
.y141{bottom:440.895000px;}
.y146{bottom:441.000000px;}
.y168{bottom:442.725000px;}
.ye3{bottom:447.660000px;}
.y9c{bottom:449.895000px;}
.y158{bottom:451.980000px;}
.y161{bottom:455.655000px;}
.y14a{bottom:457.815000px;}
.y106{bottom:462.420000px;}
.y181{bottom:464.295000px;}
.y6b{bottom:465.555000px;}
.y7e{bottom:466.455000px;}
.y2e{bottom:466.815000px;}
.y122{bottom:466.920000px;}
.y131{bottom:467.925000px;}
.y163{bottom:469.260000px;}
.y14d{bottom:471.420000px;}
.y9b{bottom:480.855000px;}
.y180{bottom:495.255000px;}
.y6a{bottom:496.515000px;}
.y2d{bottom:497.955000px;}
.y194{bottom:498.855000px;}
.y9a{bottom:511.995000px;}
.y17f{bottom:526.395000px;}
.y69{bottom:527.655000px;}
.y2c{bottom:528.915000px;}
.y193{bottom:529.995000px;}
.y99{bottom:542.955000px;}
.y17e{bottom:557.355000px;}
.y68{bottom:558.615000px;}
.y2b{bottom:560.055000px;}
.y192{bottom:560.955000px;}
.y98{bottom:574.125000px;}
.y88{bottom:575.205000px;}
.y17d{bottom:588.525000px;}
.y67{bottom:589.785000px;}
.y2a{bottom:591.045000px;}
.y191{bottom:592.125000px;}
.y18a{bottom:596.625000px;}
.y97{bottom:604.725000px;}
.y18e{bottom:612.645000px;}
.y17c{bottom:619.485000px;}
.y66{bottom:620.745000px;}
.y29{bottom:622.005000px;}
.y190{bottom:623.085000px;}
.y96{bottom:635.865000px;}
.y18d{bottom:639.285000px;}
.y18f{bottom:649.725000px;}
.y17b{bottom:650.625000px;}
.y65{bottom:651.885000px;}
.y28{bottom:653.145000px;}
.y18b{bottom:654.585000px;}
.y95{bottom:666.825000px;}
.yb2{bottom:679.065000px;}
.y17a{bottom:681.585000px;}
.y64{bottom:682.845000px;}
.ya4{bottom:683.640000px;}
.y4c{bottom:683.745000px;}
.y27{bottom:684.105000px;}
.y4b{bottom:700.485000px;}
.yb1{bottom:710.025000px;}
.y179{bottom:712.725000px;}
.y63{bottom:713.985000px;}
.y77{bottom:714.885000px;}
.y26{bottom:715.245000px;}
.y4a{bottom:731.625000px;}
.yb0{bottom:741.165000px;}
.y178{bottom:743.685000px;}
.y62{bottom:744.945000px;}
.y189{bottom:745.845000px;}
.y25{bottom:746.205000px;}
.y49{bottom:762.585000px;}
.yaf{bottom:772.125000px;}
.y188{bottom:773.025000px;}
.y177{bottom:774.825000px;}
.y61{bottom:776.085000px;}
.y24{bottom:777.345000px;}
.y48{bottom:793.725000px;}
.yae{bottom:804.525000px;}
.y176{bottom:805.785000px;}
.y60{bottom:807.045000px;}
.y23{bottom:808.305000px;}
.y47{bottom:824.685000px;}
.yad{bottom:835.665000px;}
.y175{bottom:836.925000px;}
.y5f{bottom:838.185000px;}
.y22{bottom:839.445000px;}
.y46{bottom:855.870000px;}
.yac{bottom:867.930000px;}
.y5e{bottom:869.190000px;}
.y21{bottom:870.450000px;}
.y45{bottom:886.830000px;}
.y174{bottom:898.890000px;}
.y5d{bottom:900.330000px;}
.y7d{bottom:901.230000px;}
.y20{bottom:901.590000px;}
.y44{bottom:917.970000px;}
.y82{bottom:920.850000px;}
.y94{bottom:921.570000px;}
.y173{bottom:930.030000px;}
.y5c{bottom:931.290000px;}
.y7c{bottom:932.190000px;}
.y1f{bottom:932.550000px;}
.yb{bottom:947.490000px;}
.y43{bottom:948.930000px;}
.y172{bottom:960.990000px;}
.y5b{bottom:962.430000px;}
.y7b{bottom:963.330000px;}
.y1e{bottom:963.690000px;}
.y93{bottom:973.770000px;}
.ya{bottom:978.450000px;}
.y42{bottom:980.070000px;}
.y171{bottom:992.130000px;}
.y5a{bottom:993.390000px;}
.y7a{bottom:994.290000px;}
.y1d{bottom:994.650000px;}
.y92{bottom:1004.730000px;}
.y9{bottom:1009.590000px;}
.y40{bottom:1011.030000px;}
.y170{bottom:1023.090000px;}
.y59{bottom:1024.530000px;}
.y79{bottom:1025.430000px;}
.y1c{bottom:1025.790000px;}
.y5{bottom:1025.970000px;}
.y91{bottom:1035.870000px;}
.y3e{bottom:1042.170000px;}
.yd0{bottom:1054.050000px;}
.y16f{bottom:1054.230000px;}
.y58{bottom:1055.490000px;}
.y78{bottom:1056.390000px;}
.y1b{bottom:1056.750000px;}
.y90{bottom:1066.830000px;}
.y16e{bottom:1085.370000px;}
.y57{bottom:1086.630000px;}
.y39{bottom:1087.530000px;}
.y1a{bottom:1087.890000px;}
.y13f{bottom:1089.510000px;}
.ye6{bottom:1091.490000px;}
.y56{bottom:1117.590000px;}
.y19{bottom:1118.490000px;}
.y74{bottom:1118.850000px;}
.y8f{bottom:1119.030000px;}
.y16{bottom:1179.000000px;}
.y1{bottom:1194.300000px;}
.h23{height:19.065000px;}
.h27{height:20.505000px;}
.h31{height:25.905000px;}
.hd{height:30.945000px;}
.h10{height:30.960000px;}
.he{height:31.125000px;}
.h11{height:31.140000px;}
.hf{height:31.162500px;}
.h3{height:35.092500px;}
.h8{height:40.125000px;}
.ha{height:40.140000px;}
.h21{height:49.284492px;}
.h20{height:49.403250px;}
.h2{height:54.628594px;}
.h1d{height:54.747352px;}
.h24{height:58.651172px;}
.h1b{height:58.845000px;}
.hc{height:59.378906px;}
.hb{height:64.546875px;}
.h1e{height:65.010937px;}
.h1a{height:69.473320px;}
.h37{height:70.628906px;}
.h7{height:70.664062px;}
.h6{height:72.562500px;}
.h15{height:73.260000px;}
.h14{height:74.004654px;}
.h16{height:78.973945px;}
.h2e{height:80.784492px;}
.h22{height:89.068359px;}
.h2a{height:98.784492px;}
.h4{height:101.335078px;}
.h36{height:107.724492px;}
.h5{height:109.290000px;}
.h12{height:110.512950px;}
.h17{height:120.405000px;}
.h9{height:138.352852px;}
.h18{height:155.700000px;}
.h13{height:182.039062px;}
.h19{height:202.320000px;}
.h1c{height:289.260000px;}
.h34{height:434.880000px;}
.h30{height:440.820000px;}
.h33{height:446.580000px;}
.h2b{height:447.660000px;}
.h2c{height:450.000000px;}
.h1f{height:452.160000px;}
.h28{height:453.240000px;}
.h25{height:456.660000px;}
.h32{height:477.000000px;}
.h35{height:479.700000px;}
.h26{height:484.740000px;}
.h29{height:499.500000px;}
.h2d{height:504.000000px;}
.h2f{height:504.900000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:66.045000px;}
.w9{width:125.490000px;}
.w2{width:177.495000px;}
.w13{width:213.679500px;}
.w10{width:216.019500px;}
.we{width:219.259500px;}
.w5{width:291.990000px;}
.w4{width:324.075000px;}
.w3{width:324.199500px;}
.w7{width:582.210000px;}
.wa{width:594.090000px;}
.wc{width:597.330000px;}
.wb{width:602.730000px;}
.wd{width:613.080000px;}
.w12{width:616.500000px;}
.w11{width:634.500000px;}
.w6{width:637.830000px;}
.wf{width:637.920000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:8.089500px;}
.x24{left:10.783500px;}
.x20{left:19.245000px;}
.x1f{left:22.305000px;}
.x7{left:26.640000px;}
.x21{left:31.305000px;}
.x1a{left:32.940000px;}
.x14{left:39.960000px;}
.x16{left:47.880000px;}
.x13{left:48.960000px;}
.xd{left:52.020000px;}
.x73{left:61.020000px;}
.x7a{left:68.760000px;}
.x7d{left:76.575000px;}
.x48{left:85.860000px;}
.x7e{left:102.810000px;}
.x37{left:103.965000px;}
.x5{left:107.083500px;}
.x5d{left:108.255000px;}
.x65{left:116.790000px;}
.x4{left:119.566500px;}
.x1{left:127.656000px;}
.x4a{left:129.060000px;}
.x85{left:132.876000px;}
.x66{left:133.966500px;}
.x3e{left:136.126500px;}
.x54{left:138.060000px;}
.x29{left:139.284000px;}
.x30{left:140.806500px;}
.x23{left:144.046500px;}
.x26{left:147.466500px;}
.x3d{left:149.835000px;}
.x1e{left:152.685000px;}
.x19{left:154.470000px;}
.x1b{left:159.510000px;}
.x3{left:166.710000px;}
.x69{left:170.205000px;}
.x2d{left:172.290000px;}
.x50{left:174.570000px;}
.x51{left:176.505000px;}
.x72{left:178.125000px;}
.x10{left:180.210000px;}
.x4e{left:181.335000px;}
.x60{left:184.680000px;}
.x58{left:186.480000px;}
.x77{left:188.070000px;}
.x4f{left:190.335000px;}
.x61{left:191.550000px;}
.x41{left:193.605000px;}
.x68{left:194.790000px;}
.x70{left:198.180000px;}
.x3c{left:199.905000px;}
.x64{left:201.525000px;}
.x17{left:207.210000px;}
.x7f{left:208.650000px;}
.x5b{left:210.570000px;}
.x71{left:211.680000px;}
.x22{left:218.190000px;}
.x6a{left:219.390000px;}
.x46{left:221.790000px;}
.x76{left:225.180000px;}
.x45{left:229.680000px;}
.x3a{left:230.790000px;}
.x4d{left:231.990000px;}
.x18{left:234.210000px;}
.x52{left:237.960000px;}
.x78{left:246.570000px;}
.x7c{left:253.290000px;}
.x8{left:256.215000px;}
.x56{left:257.910000px;}
.x2e{left:259.485000px;}
.x2f{left:264.210000px;}
.x6f{left:265.680000px;}
.x5c{left:266.790000px;}
.x34{left:269.025000px;}
.x2a{left:276.915000px;}
.x33{left:284.835000px;}
.x36{left:287.610000px;}
.x57{left:289.410000px;}
.x3b{left:291.570000px;}
.x5a{left:292.680000px;}
.x47{left:296.070000px;}
.x79{left:298.290000px;}
.x6b{left:302.475000px;}
.xc{left:304.275000px;}
.x35{left:306.180000px;}
.x25{left:311.970000px;}
.x7b{left:315.210000px;}
.x5f{left:316.335000px;}
.x86{left:319.395000px;}
.x42{left:320.790000px;}
.x75{left:321.945000px;}
.x55{left:337.830000px;}
.x3f{left:341.070000px;}
.x62{left:347.835000px;}
.x6e{left:350.070000px;}
.x43{left:356.790000px;}
.x31{left:362.445000px;}
.x4b{left:376.020000px;}
.x40{left:381.600000px;}
.x1d{left:392.655000px;}
.xa{left:394.995000px;}
.x5e{left:399.600000px;}
.x6d{left:406.335000px;}
.x74{left:409.710000px;}
.x6c{left:412.275000px;}
.x2c{left:414.210000px;}
.x4c{left:415.410000px;}
.x67{left:416.490000px;}
.x2b{left:418.035000px;}
.xf{left:420.358500px;}
.x63{left:422.100000px;}
.xb{left:425.415000px;}
.x59{left:426.600000px;}
.x39{left:427.710000px;}
.x32{left:431.100000px;}
.x44{left:433.335000px;}
.x6{left:443.775000px;}
.x38{left:446.475000px;}
.xe{left:463.918500px;}
.x27{left:473.115000px;}
.x2{left:587.640000px;}
.x1c{left:624.525000px;}
.x12{left:701.790000px;}
.x83{left:705.030000px;}
.x80{left:707.010000px;}
.x82{left:708.090000px;}
.x84{left:711.510000px;}
.x53{left:754.890000px;}
.x49{left:763.890000px;}
.x9{left:765.510000px;}
.x15{left:766.590000px;}
.x28{left:782.430000px;}
.x81{left:785.850000px;}
@media print{
.v2{vertical-align:-20.480000pt;}
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.000000pt;}
.v5{vertical-align:16.000000pt;}
.v3{vertical-align:44.000000pt;}
.v6{vertical-align:51.946667pt;}
.ls7{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.116800pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls1b{letter-spacing:-0.061867pt;}
.ls13{letter-spacing:-0.051840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.076267pt;}
.ls11{letter-spacing:0.117760pt;}
.lsf{letter-spacing:0.118187pt;}
.lsa{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.244267pt;}
.lsd{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls21{letter-spacing:0.768000pt;}
.ls20{letter-spacing:7.680000pt;}
.ls2{letter-spacing:11.520000pt;}
.ls8{letter-spacing:28.928000pt;}
.ls1f{letter-spacing:30.208000pt;}
.ls19{letter-spacing:39.354880pt;}
.ls3{letter-spacing:48.768000pt;}
.ls18{letter-spacing:79.248213pt;}
.ls1e{letter-spacing:79.408213pt;}
.ls10{letter-spacing:85.248000pt;}
.ls1a{letter-spacing:103.461547pt;}
.ls17{letter-spacing:135.461547pt;}
.lse{letter-spacing:235.482880pt;}
.ls14{letter-spacing:754.831787pt;}
.ls1d{letter-spacing:756.133547pt;}
.ws4{word-spacing:-64.000000pt;}
.ws2{word-spacing:-42.240000pt;}
.ws8{word-spacing:-42.112000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws16{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws17{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.wsd{word-spacing:-13.327360pt;}
.wse{word-spacing:-12.081387pt;}
.wsb{word-spacing:-11.953280pt;}
.wsa{word-spacing:-11.917248pt;}
.ws9{word-spacing:-0.085120pt;}
.ws0{word-spacing:0.000000pt;}
.ws15{word-spacing:61.878827pt;}
.wsc{word-spacing:73.152000pt;}
.ws11{word-spacing:87.175040pt;}
.ws12{word-spacing:278.810027pt;}
.wsf{word-spacing:278.863360pt;}
.ws14{word-spacing:392.327467pt;}
.ws13{word-spacing:392.343723pt;}
.ws10{word-spacing:392.397056pt;}
._1f{margin-left:-14.080000pt;}
._28{margin-left:-8.312107pt;}
._30{margin-left:-7.306667pt;}
._2d{margin-left:-5.280000pt;}
._27{margin-left:-4.043520pt;}
._e{margin-left:-2.101333pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.970667pt;}
._9{width:1.877333pt;}
._a{width:3.520000pt;}
._d{width:4.480000pt;}
._7{width:5.632000pt;}
._3{width:6.848000pt;}
._4{width:7.818667pt;}
._8{width:9.589333pt;}
._b{width:10.816000pt;}
._c{width:11.712000pt;}
._5{width:13.184000pt;}
._6{width:14.144000pt;}
._14{width:15.061333pt;}
._1c{width:16.896000pt;}
._11{width:17.792000pt;}
._15{width:19.008000pt;}
._16{width:20.224000pt;}
._17{width:21.504000pt;}
._18{width:22.517333pt;}
._19{width:23.808000pt;}
._f{width:25.024000pt;}
._10{width:26.037333pt;}
._1a{width:27.776000pt;}
._1b{width:28.672000pt;}
._20{width:30.389333pt;}
._23{width:31.338667pt;}
._24{width:32.981333pt;}
._29{width:35.456000pt;}
._1d{width:41.152000pt;}
._1e{width:42.048000pt;}
._12{width:44.330667pt;}
._13{width:45.472000pt;}
._3b{width:49.397333pt;}
._32{width:59.728853pt;}
._40{width:62.848000pt;}
._41{width:63.808000pt;}
._21{width:80.746667pt;}
._22{width:82.005333pt;}
._39{width:84.416000pt;}
._3c{width:85.376000pt;}
._26{width:97.258667pt;}
._2a{width:100.496853pt;}
._35{width:101.645653pt;}
._2f{width:102.997120pt;}
._34{width:105.203200pt;}
._36{width:106.808533pt;}
._37{width:108.149547pt;}
._3e{width:114.624000pt;}
._3d{width:115.893333pt;}
._3a{width:119.029333pt;}
._2e{width:126.488747pt;}
._25{width:172.778667pt;}
._33{width:196.618880pt;}
._2c{width:220.587520pt;}
._2b{width:247.492011pt;}
._31{width:327.400320pt;}
._3f{width:473.344000pt;}
._38{width:509.888000pt;}
._2{width:752.138667pt;}
.fs5{font-size:42.880000pt;}
.fsa{font-size:53.120000pt;}
.fsb{font-size:53.248000pt;}
.fs7{font-size:56.960000pt;}
.fs0{font-size:58.880000pt;}
.fs9{font-size:59.008000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fsc{font-size:96.000000pt;}
.fs1{font-size:106.880000pt;}
.fs3{font-size:149.120000pt;}
.fs4{font-size:192.000000pt;}
.y8e{bottom:-13.466667pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:0.320000pt;}
.yd1{bottom:2.400000pt;}
.ye7{bottom:3.680000pt;}
.y18{bottom:4.160000pt;}
.y4d{bottom:4.998267pt;}
.y4{bottom:5.913333pt;}
.y87{bottom:7.840000pt;}
.y140{bottom:8.480000pt;}
.y6{bottom:9.120000pt;}
.yab{bottom:10.240000pt;}
.y3f{bottom:12.960000pt;}
.y41{bottom:13.120000pt;}
.y8d{bottom:13.440000pt;}
.y17{bottom:21.920000pt;}
.y86{bottom:28.960000pt;}
.y81{bottom:33.786667pt;}
.yaa{bottom:37.760000pt;}
.yc9{bottom:37.986667pt;}
.y8c{bottom:41.120000pt;}
.y11d{bottom:45.253333pt;}
.y165{bottom:45.733333pt;}
.y12b{bottom:46.106667pt;}
.y15a{bottom:46.880000pt;}
.yd6{bottom:48.253333pt;}
.y85{bottom:50.240000pt;}
.y150{bottom:51.200000pt;}
.y2{bottom:51.232000pt;}
.y4e{bottom:52.793733pt;}
.y151{bottom:53.213333pt;}
.y8{bottom:54.720000pt;}
.ya8{bottom:57.213333pt;}
.yc8{bottom:59.266667pt;}
.y8b{bottom:68.640000pt;}
.y12c{bottom:70.106667pt;}
.y101{bottom:71.226667pt;}
.y84{bottom:71.360000pt;}
.yec{bottom:73.120000pt;}
.yf6{bottom:73.186667pt;}
.yc7{bottom:75.746667pt;}
.y15b{bottom:76.893333pt;}
.y3{bottom:76.998667pt;}
.y13a{bottom:79.173333pt;}
.y7{bottom:82.240000pt;}
.ya7{bottom:82.333333pt;}
.y14f{bottom:88.226667pt;}
.y11e{bottom:89.253333pt;}
.ye0{bottom:91.133333pt;}
.y83{bottom:92.480000pt;}
.y8a{bottom:96.320000pt;}
.y12a{bottom:105.120000pt;}
.y152{bottom:106.213333pt;}
.y100{bottom:112.253333pt;}
.y10e{bottom:116.253333pt;}
.y89{bottom:123.840000pt;}
.ybb{bottom:125.472000pt;}
.yca{bottom:125.792000pt;}
.yc2{bottom:126.106667pt;}
.ya6{bottom:127.613333pt;}
.y166{bottom:129.733333pt;}
.y139{bottom:130.173333pt;}
.y16d{bottom:134.426667pt;}
.y55{bottom:135.546667pt;}
.yc6{bottom:137.120000pt;}
.y3d{bottom:137.306667pt;}
.y73{bottom:137.786667pt;}
.ycb{bottom:138.080000pt;}
.y38{bottom:138.906667pt;}
.y13{bottom:141.626667pt;}
.yd5{bottom:142.266667pt;}
.y80{bottom:143.680000pt;}
.ycd{bottom:146.173333pt;}
.yc1{bottom:147.066667pt;}
.y7f{bottom:152.666667pt;}
.ya5{bottom:152.733333pt;}
.yba{bottom:153.146667pt;}
.yc5{bottom:153.600000pt;}
.y15c{bottom:155.906667pt;}
.y11f{bottom:161.253333pt;}
.y54{bottom:163.066667pt;}
.yf5{bottom:164.186667pt;}
.y3c{bottom:164.826667pt;}
.y72{bottom:165.466667pt;}
.y37{bottom:166.266667pt;}
.y76{bottom:166.586667pt;}
.y102{bottom:168.253333pt;}
.y12{bottom:168.986667pt;}
.yc0{bottom:169.306667pt;}
.ycc{bottom:172.160000pt;}
.y11c{bottom:172.253333pt;}
.y18c{bottom:173.466667pt;}
.yd7{bottom:178.266667pt;}
.yb9{bottom:180.666667pt;}
.y164{bottom:183.746667pt;}
.y12d{bottom:186.146667pt;}
.y53{bottom:190.746667pt;}
.ydf{bottom:191.133333pt;}
.ybf{bottom:191.706667pt;}
.y16c{bottom:191.866667pt;}
.y71{bottom:192.986667pt;}
.y3b{bottom:193.466667pt;}
.y36{bottom:193.786667pt;}
.y75{bottom:194.106667pt;}
.y103{bottom:195.266667pt;}
.y11{bottom:196.506667pt;}
.y159{bottom:197.920000pt;}
.y10d{bottom:198.266667pt;}
.y13b{bottom:205.186667pt;}
.ya3{bottom:206.586667pt;}
.yb8{bottom:208.346667pt;}
.ybe{bottom:214.106667pt;}
.yc4{bottom:214.973333pt;}
.y14e{bottom:217.253333pt;}
.y52{bottom:219.386667pt;}
.y70{bottom:220.506667pt;}
.y16b{bottom:220.666667pt;}
.y3a{bottom:221.466667pt;}
.y35{bottom:221.786667pt;}
.y153{bottom:224.226667pt;}
.y10{bottom:224.506667pt;}
.yed{bottom:226.146667pt;}
.yc3{bottom:231.453333pt;}
.y129{bottom:232.160000pt;}
.ya2{bottom:234.266667pt;}
.y104{bottom:235.266667pt;}
.yb7{bottom:235.866667pt;}
.ybd{bottom:236.546667pt;}
.ydd{bottom:236.826667pt;}
.y120{bottom:237.280000pt;}
.y15d{bottom:241.920000pt;}
.yf7{bottom:244.186667pt;}
.yff{bottom:244.253333pt;}
.y127{bottom:246.426667pt;}
.y51{bottom:247.066667pt;}
.y6f{bottom:248.186667pt;}
.y136{bottom:248.346667pt;}
.y34{bottom:249.306667pt;}
.yf{bottom:252.066667pt;}
.y13c{bottom:253.186667pt;}
.ye1{bottom:254.146667pt;}
.y138{bottom:255.200000pt;}
.y167{bottom:256.773333pt;}
.ya9{bottom:257.666667pt;}
.y15e{bottom:259.906667pt;}
.ya1{bottom:261.826667pt;}
.yd4{bottom:262.266667pt;}
.ydc{bottom:262.466667pt;}
.yb6{bottom:263.586667pt;}
.ye9{bottom:264.866667pt;}
.y115{bottom:265.280000pt;}
.yeb{bottom:268.160000pt;}
.yf4{bottom:268.186667pt;}
.y105{bottom:269.280000pt;}
.yd8{bottom:270.266667pt;}
.yfd{bottom:271.426667pt;}
.y126{bottom:272.066667pt;}
.y12f{bottom:273.146667pt;}
.y135{bottom:273.826667pt;}
.y186{bottom:274.626667pt;}
.yde{bottom:274.720000pt;}
.y11a{bottom:275.106667pt;}
.y50{bottom:275.746667pt;}
.y33{bottom:277.026667pt;}
.yf8{bottom:277.186667pt;}
.ye2{bottom:279.133333pt;}
.ye{bottom:279.426667pt;}
.y128{bottom:284.320000pt;}
.y14{bottom:284.866667pt;}
.y145{bottom:285.346667pt;}
.y137{bottom:286.080000pt;}
.ya0{bottom:289.506667pt;}
.ye8{bottom:290.466667pt;}
.yb5{bottom:291.106667pt;}
.y12e{bottom:293.146667pt;}
.yfc{bottom:297.026667pt;}
.y10b{bottom:297.506667pt;}
.y116{bottom:298.266667pt;}
.y121{bottom:299.266667pt;}
.y130{bottom:300.160000pt;}
.y119{bottom:300.706667pt;}
.y185{bottom:302.306667pt;}
.yea{bottom:302.720000pt;}
.yf3{bottom:303.200000pt;}
.yd9{bottom:303.293333pt;}
.y4f{bottom:303.426667pt;}
.y32{bottom:304.546667pt;}
.yd{bottom:307.266667pt;}
.y11b{bottom:312.800000pt;}
.y144{bottom:312.866667pt;}
.y113{bottom:315.426667pt;}
.yfe{bottom:316.800000pt;}
.yfb{bottom:316.866667pt;}
.y9f{bottom:317.026667pt;}
.yf1{bottom:317.186667pt;}
.yb4{bottom:318.786667pt;}
.y160{bottom:321.440000pt;}
.y10a{bottom:323.106667pt;}
.y187{bottom:325.026667pt;}
.y13e{bottom:326.720000pt;}
.y149{bottom:329.506667pt;}
.y184{bottom:329.826667pt;}
.y109{bottom:330.560000pt;}
.y6e{bottom:330.946667pt;}
.yc{bottom:331.106667pt;}
.y155{bottom:331.773333pt;}
.y16a{bottom:331.973333pt;}
.y31{bottom:332.226667pt;}
.y110{bottom:332.800000pt;}
.ybc{bottom:333.440000pt;}
.y125{bottom:334.560000pt;}
.y118{bottom:334.813333pt;}
.y10c{bottom:335.200000pt;}
.y134{bottom:335.453333pt;}
.ycf{bottom:336.706667pt;}
.yef{bottom:337.666667pt;}
.y143{bottom:340.546667pt;}
.yfa{bottom:340.733333pt;}
.ydb{bottom:340.800000pt;}
.y112{bottom:341.026667pt;}
.ye5{bottom:341.573333pt;}
.yf0{bottom:342.626667pt;}
.yb3{bottom:344.546667pt;}
.y9e{bottom:344.706667pt;}
.y15f{bottom:353.693333pt;}
.y108{bottom:354.693333pt;}
.yf2{bottom:354.880000pt;}
.y183{bottom:357.506667pt;}
.y6d{bottom:358.626667pt;}
.y124{bottom:358.693333pt;}
.y13d{bottom:358.973333pt;}
.y133{bottom:359.546667pt;}
.y30{bottom:359.746667pt;}
.y14c{bottom:360.706667pt;}
.y114{bottom:360.800000pt;}
.y111{bottom:360.866667pt;}
.y148{bottom:361.760000pt;}
.y154{bottom:364.000000pt;}
.y157{bottom:364.066667pt;}
.y169{bottom:364.253333pt;}
.y10f{bottom:365.053333pt;}
.ye4{bottom:365.666667pt;}
.y117{bottom:367.040000pt;}
.y142{bottom:368.066667pt;}
.yce{bottom:368.960000pt;}
.yee{bottom:369.920000pt;}
.yd2{bottom:370.306667pt;}
.y9d{bottom:372.226667pt;}
.yf9{bottom:372.960000pt;}
.yda{bottom:373.053333pt;}
.y107{bottom:378.813333pt;}
.y162{bottom:379.426667pt;}
.yd3{bottom:382.400000pt;}
.y123{bottom:382.813333pt;}
.y132{bottom:383.680000pt;}
.y14b{bottom:383.906667pt;}
.y182{bottom:385.026667pt;}
.y6c{bottom:386.146667pt;}
.y2f{bottom:387.426667pt;}
.y156{bottom:389.666667pt;}
.y147{bottom:391.040000pt;}
.y141{bottom:391.906667pt;}
.y146{bottom:392.000000pt;}
.y168{bottom:393.533333pt;}
.ye3{bottom:397.920000pt;}
.y9c{bottom:399.906667pt;}
.y158{bottom:401.760000pt;}
.y161{bottom:405.026667pt;}
.y14a{bottom:406.946667pt;}
.y106{bottom:411.040000pt;}
.y181{bottom:412.706667pt;}
.y6b{bottom:413.826667pt;}
.y7e{bottom:414.626667pt;}
.y2e{bottom:414.946667pt;}
.y122{bottom:415.040000pt;}
.y131{bottom:415.933333pt;}
.y163{bottom:417.120000pt;}
.y14d{bottom:419.040000pt;}
.y9b{bottom:427.426667pt;}
.y180{bottom:440.226667pt;}
.y6a{bottom:441.346667pt;}
.y2d{bottom:442.626667pt;}
.y194{bottom:443.426667pt;}
.y9a{bottom:455.106667pt;}
.y17f{bottom:467.906667pt;}
.y69{bottom:469.026667pt;}
.y2c{bottom:470.146667pt;}
.y193{bottom:471.106667pt;}
.y99{bottom:482.626667pt;}
.y17e{bottom:495.426667pt;}
.y68{bottom:496.546667pt;}
.y2b{bottom:497.826667pt;}
.y192{bottom:498.626667pt;}
.y98{bottom:510.333333pt;}
.y88{bottom:511.293333pt;}
.y17d{bottom:523.133333pt;}
.y67{bottom:524.253333pt;}
.y2a{bottom:525.373333pt;}
.y191{bottom:526.333333pt;}
.y18a{bottom:530.333333pt;}
.y97{bottom:537.533333pt;}
.y18e{bottom:544.573333pt;}
.y17c{bottom:550.653333pt;}
.y66{bottom:551.773333pt;}
.y29{bottom:552.893333pt;}
.y190{bottom:553.853333pt;}
.y96{bottom:565.213333pt;}
.y18d{bottom:568.253333pt;}
.y18f{bottom:577.533333pt;}
.y17b{bottom:578.333333pt;}
.y65{bottom:579.453333pt;}
.y28{bottom:580.573333pt;}
.y18b{bottom:581.853333pt;}
.y95{bottom:592.733333pt;}
.yb2{bottom:603.613333pt;}
.y17a{bottom:605.853333pt;}
.y64{bottom:606.973333pt;}
.ya4{bottom:607.680000pt;}
.y4c{bottom:607.773333pt;}
.y27{bottom:608.093333pt;}
.y4b{bottom:622.653333pt;}
.yb1{bottom:631.133333pt;}
.y179{bottom:633.533333pt;}
.y63{bottom:634.653333pt;}
.y77{bottom:635.453333pt;}
.y26{bottom:635.773333pt;}
.y4a{bottom:650.333333pt;}
.yb0{bottom:658.813333pt;}
.y178{bottom:661.053333pt;}
.y62{bottom:662.173333pt;}
.y189{bottom:662.973333pt;}
.y25{bottom:663.293333pt;}
.y49{bottom:677.853333pt;}
.yaf{bottom:686.333333pt;}
.y188{bottom:687.133333pt;}
.y177{bottom:688.733333pt;}
.y61{bottom:689.853333pt;}
.y24{bottom:690.973333pt;}
.y48{bottom:705.533333pt;}
.yae{bottom:715.133333pt;}
.y176{bottom:716.253333pt;}
.y60{bottom:717.373333pt;}
.y23{bottom:718.493333pt;}
.y47{bottom:733.053333pt;}
.yad{bottom:742.813333pt;}
.y175{bottom:743.933333pt;}
.y5f{bottom:745.053333pt;}
.y22{bottom:746.173333pt;}
.y46{bottom:760.773333pt;}
.yac{bottom:771.493333pt;}
.y5e{bottom:772.613333pt;}
.y21{bottom:773.733333pt;}
.y45{bottom:788.293333pt;}
.y174{bottom:799.013333pt;}
.y5d{bottom:800.293333pt;}
.y7d{bottom:801.093333pt;}
.y20{bottom:801.413333pt;}
.y44{bottom:815.973333pt;}
.y82{bottom:818.533333pt;}
.y94{bottom:819.173333pt;}
.y173{bottom:826.693333pt;}
.y5c{bottom:827.813333pt;}
.y7c{bottom:828.613333pt;}
.y1f{bottom:828.933333pt;}
.yb{bottom:842.213333pt;}
.y43{bottom:843.493333pt;}
.y172{bottom:854.213333pt;}
.y5b{bottom:855.493333pt;}
.y7b{bottom:856.293333pt;}
.y1e{bottom:856.613333pt;}
.y93{bottom:865.573333pt;}
.ya{bottom:869.733333pt;}
.y42{bottom:871.173333pt;}
.y171{bottom:881.893333pt;}
.y5a{bottom:883.013333pt;}
.y7a{bottom:883.813333pt;}
.y1d{bottom:884.133333pt;}
.y92{bottom:893.093333pt;}
.y9{bottom:897.413333pt;}
.y40{bottom:898.693333pt;}
.y170{bottom:909.413333pt;}
.y59{bottom:910.693333pt;}
.y79{bottom:911.493333pt;}
.y1c{bottom:911.813333pt;}
.y5{bottom:911.973333pt;}
.y91{bottom:920.773333pt;}
.y3e{bottom:926.373333pt;}
.yd0{bottom:936.933333pt;}
.y16f{bottom:937.093333pt;}
.y58{bottom:938.213333pt;}
.y78{bottom:939.013333pt;}
.y1b{bottom:939.333333pt;}
.y90{bottom:948.293333pt;}
.y16e{bottom:964.773333pt;}
.y57{bottom:965.893333pt;}
.y39{bottom:966.693333pt;}
.y1a{bottom:967.013333pt;}
.y13f{bottom:968.453333pt;}
.ye6{bottom:970.213333pt;}
.y56{bottom:993.413333pt;}
.y19{bottom:994.213333pt;}
.y74{bottom:994.533333pt;}
.y8f{bottom:994.693333pt;}
.y16{bottom:1048.000000pt;}
.y1{bottom:1061.600000pt;}
.h23{height:16.946667pt;}
.h27{height:18.226667pt;}
.h31{height:23.026667pt;}
.hd{height:27.506667pt;}
.h10{height:27.520000pt;}
.he{height:27.666667pt;}
.h11{height:27.680000pt;}
.hf{height:27.700000pt;}
.h3{height:31.193333pt;}
.h8{height:35.666667pt;}
.ha{height:35.680000pt;}
.h21{height:43.808438pt;}
.h20{height:43.914000pt;}
.h2{height:48.558750pt;}
.h1d{height:48.664313pt;}
.h24{height:52.134375pt;}
.h1b{height:52.306667pt;}
.hc{height:52.781250pt;}
.hb{height:57.375000pt;}
.h1e{height:57.787500pt;}
.h1a{height:61.754062pt;}
.h37{height:62.781250pt;}
.h7{height:62.812500pt;}
.h6{height:64.500000pt;}
.h15{height:65.120000pt;}
.h14{height:65.781915pt;}
.h16{height:70.199062pt;}
.h2e{height:71.808437pt;}
.h22{height:79.171875pt;}
.h2a{height:87.808437pt;}
.h4{height:90.075625pt;}
.h36{height:95.755104pt;}
.h5{height:97.146667pt;}
.h12{height:98.233733pt;}
.h17{height:107.026667pt;}
.h9{height:122.980312pt;}
.h18{height:138.400000pt;}
.h13{height:161.812500pt;}
.h19{height:179.840000pt;}
.h1c{height:257.120000pt;}
.h34{height:386.560000pt;}
.h30{height:391.840000pt;}
.h33{height:396.960000pt;}
.h2b{height:397.920000pt;}
.h2c{height:400.000000pt;}
.h1f{height:401.920000pt;}
.h28{height:402.880000pt;}
.h25{height:405.920000pt;}
.h32{height:424.000000pt;}
.h35{height:426.400000pt;}
.h26{height:430.880000pt;}
.h29{height:444.000000pt;}
.h2d{height:448.000000pt;}
.h2f{height:448.800000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:58.706667pt;}
.w9{width:111.546667pt;}
.w2{width:157.773333pt;}
.w13{width:189.937333pt;}
.w10{width:192.017333pt;}
.we{width:194.897333pt;}
.w5{width:259.546667pt;}
.w4{width:288.066667pt;}
.w3{width:288.177333pt;}
.w7{width:517.520000pt;}
.wa{width:528.080000pt;}
.wc{width:530.960000pt;}
.wb{width:535.760000pt;}
.wd{width:544.960000pt;}
.w12{width:548.000000pt;}
.w11{width:564.000000pt;}
.w6{width:566.960000pt;}
.wf{width:567.040000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:7.190667pt;}
.x24{left:9.585333pt;}
.x20{left:17.106667pt;}
.x1f{left:19.826667pt;}
.x7{left:23.680000pt;}
.x21{left:27.826667pt;}
.x1a{left:29.280000pt;}
.x14{left:35.520000pt;}
.x16{left:42.560000pt;}
.x13{left:43.520000pt;}
.xd{left:46.240000pt;}
.x73{left:54.240000pt;}
.x7a{left:61.120000pt;}
.x7d{left:68.066667pt;}
.x48{left:76.320000pt;}
.x7e{left:91.386667pt;}
.x37{left:92.413333pt;}
.x5{left:95.185333pt;}
.x5d{left:96.226667pt;}
.x65{left:103.813333pt;}
.x4{left:106.281333pt;}
.x1{left:113.472000pt;}
.x4a{left:114.720000pt;}
.x85{left:118.112000pt;}
.x66{left:119.081333pt;}
.x3e{left:121.001333pt;}
.x54{left:122.720000pt;}
.x29{left:123.808000pt;}
.x30{left:125.161333pt;}
.x23{left:128.041333pt;}
.x26{left:131.081333pt;}
.x3d{left:133.186667pt;}
.x1e{left:135.720000pt;}
.x19{left:137.306667pt;}
.x1b{left:141.786667pt;}
.x3{left:148.186667pt;}
.x69{left:151.293333pt;}
.x2d{left:153.146667pt;}
.x50{left:155.173333pt;}
.x51{left:156.893333pt;}
.x72{left:158.333333pt;}
.x10{left:160.186667pt;}
.x4e{left:161.186667pt;}
.x60{left:164.160000pt;}
.x58{left:165.760000pt;}
.x77{left:167.173333pt;}
.x4f{left:169.186667pt;}
.x61{left:170.266667pt;}
.x41{left:172.093333pt;}
.x68{left:173.146667pt;}
.x70{left:176.160000pt;}
.x3c{left:177.693333pt;}
.x64{left:179.133333pt;}
.x17{left:184.186667pt;}
.x7f{left:185.466667pt;}
.x5b{left:187.173333pt;}
.x71{left:188.160000pt;}
.x22{left:193.946667pt;}
.x6a{left:195.013333pt;}
.x46{left:197.146667pt;}
.x76{left:200.160000pt;}
.x45{left:204.160000pt;}
.x3a{left:205.146667pt;}
.x4d{left:206.213333pt;}
.x18{left:208.186667pt;}
.x52{left:211.520000pt;}
.x78{left:219.173333pt;}
.x7c{left:225.146667pt;}
.x8{left:227.746667pt;}
.x56{left:229.253333pt;}
.x2e{left:230.653333pt;}
.x2f{left:234.853333pt;}
.x6f{left:236.160000pt;}
.x5c{left:237.146667pt;}
.x34{left:239.133333pt;}
.x2a{left:246.146667pt;}
.x33{left:253.186667pt;}
.x36{left:255.653333pt;}
.x57{left:257.253333pt;}
.x3b{left:259.173333pt;}
.x5a{left:260.160000pt;}
.x47{left:263.173333pt;}
.x79{left:265.146667pt;}
.x6b{left:268.866667pt;}
.xc{left:270.466667pt;}
.x35{left:272.160000pt;}
.x25{left:277.306667pt;}
.x7b{left:280.186667pt;}
.x5f{left:281.186667pt;}
.x86{left:283.906667pt;}
.x42{left:285.146667pt;}
.x75{left:286.173333pt;}
.x55{left:300.293333pt;}
.x3f{left:303.173333pt;}
.x62{left:309.186667pt;}
.x6e{left:311.173333pt;}
.x43{left:317.146667pt;}
.x31{left:322.173333pt;}
.x4b{left:334.240000pt;}
.x40{left:339.200000pt;}
.x1d{left:349.026667pt;}
.xa{left:351.106667pt;}
.x5e{left:355.200000pt;}
.x6d{left:361.186667pt;}
.x74{left:364.186667pt;}
.x6c{left:366.466667pt;}
.x2c{left:368.186667pt;}
.x4c{left:369.253333pt;}
.x67{left:370.213333pt;}
.x2b{left:371.586667pt;}
.xf{left:373.652000pt;}
.x63{left:375.200000pt;}
.xb{left:378.146667pt;}
.x59{left:379.200000pt;}
.x39{left:380.186667pt;}
.x32{left:383.200000pt;}
.x44{left:385.186667pt;}
.x6{left:394.466667pt;}
.x38{left:396.866667pt;}
.xe{left:412.372000pt;}
.x27{left:420.546667pt;}
.x2{left:522.346667pt;}
.x1c{left:555.133333pt;}
.x12{left:623.813333pt;}
.x83{left:626.693333pt;}
.x80{left:628.453333pt;}
.x82{left:629.413333pt;}
.x84{left:632.453333pt;}
.x53{left:671.013333pt;}
.x49{left:679.013333pt;}
.x9{left:680.453333pt;}
.x15{left:681.413333pt;}
.x28{left:695.493333pt;}
.x81{left:698.533333pt;}
}




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