
    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_c25f41613aff2b25b1768c6e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.927734;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_855f7c60326a078ea9ec37ad.woff')format("woff");}.ff2{font-family:ff2;line-height:0.927734;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_e80447f3cd50b34b01a5f19a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.213379;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_1916f1032daeae19d76e9015.woff')format("woff");}.ff4{font-family:ff4;line-height:1.213379;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_cad890b847369f168f62b716.woff')format("woff");}.ff5{font-family:ff5;line-height:0.952637;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_d639d654f79d04c2f413672d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.952637;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_425be20fce0a714ec39a71e0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.747559;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_fb4a0206a50e4a4191047f9f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.003906;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.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-74.160000px;}
.v3{vertical-align:-69.120000px;}
.v1{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-2.880000px;}
.ls2{letter-spacing:-0.828000px;}
.ls3{letter-spacing:-0.630000px;}
.ls19{letter-spacing:-0.262200px;}
.ls16{letter-spacing:-0.253200px;}
.lsb{letter-spacing:-0.241800px;}
.ls10{letter-spacing:-0.234600px;}
.lsd{letter-spacing:-0.145200px;}
.lse{letter-spacing:-0.127200px;}
.ls1{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.057600px;}
.ls1e{letter-spacing:-0.048960px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.028906px;}
.ls8{letter-spacing:0.052560px;}
.ls1d{letter-spacing:0.057600px;}
.lsc{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.091200px;}
.ls11{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.271200px;}
.ls9{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.324000px;}
.ls17{letter-spacing:0.355200px;}
.ls7{letter-spacing:0.468000px;}
.lsa{letter-spacing:0.592800px;}
.ls12{letter-spacing:21.060000px;}
.ls13{letter-spacing:111.060000px;}
.ls14{letter-spacing:141.300000px;}
.ls1b{letter-spacing:297.360000px;}
.ls18{letter-spacing:370.260000px;}
.ls1c{letter-spacing:1259.436000px;}
.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;}
}
.ws10{word-spacing:-66.240000px;}
.ws4{word-spacing:-21.151200px;}
.ws0{word-spacing:-21.060000px;}
.ws3{word-spacing:-20.430000px;}
.ws5{word-spacing:-19.440000px;}
.ws7{word-spacing:-18.000000px;}
.wsf{word-spacing:-16.617600px;}
.ws1{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.511040px;}
.ws2{word-spacing:-16.453200px;}
.wsb{word-spacing:-16.306800px;}
.wsd{word-spacing:-16.297800px;}
.wsc{word-spacing:-15.295200px;}
.ws9{word-spacing:-14.992560px;}
.wse{word-spacing:-14.976000px;}
.ws8{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.882400px;}
.ws6{word-spacing:0.000000px;}
._19{margin-left:-4.703040px;}
._1{margin-left:-3.652800px;}
._2{margin-left:-2.527680px;}
._0{margin-left:-1.010880px;}
._3{width:1.589760px;}
._b{width:3.179520px;}
._4{width:4.703040px;}
._f{width:6.226560px;}
._7{width:7.603200px;}
._6{width:9.008640px;}
._10{width:10.062000px;}
._c{width:11.223360px;}
._d{width:12.345600px;}
._8{width:13.955520px;}
._9{width:15.277440px;}
._5{width:18.330720px;}
._e{width:22.008960px;}
._18{width:24.065280px;}
._17{width:25.303680px;}
._a{width:27.970560px;}
._11{width:29.001600px;}
._27{width:31.000320px;}
._2a{width:32.325120px;}
._14{width:48.037920px;}
._1b{width:49.860000px;}
._23{width:51.137280px;}
._12{width:52.740000px;}
._1c{width:58.624560px;}
._25{width:78.494400px;}
._26{width:79.899360px;}
._20{width:82.071360px;}
._1f{width:83.263680px;}
._1e{width:89.490240px;}
._1d{width:90.881280px;}
._28{width:92.206080px;}
._13{width:99.516000px;}
._29{width:107.061120px;}
._22{width:108.766080px;}
._21{width:110.269200px;}
._1a{width:111.332880px;}
._24{width:117.178560px;}
._16{width:126.041760px;}
._15{width:201.180000px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs9{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fsa{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs6{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y135{bottom:0.255000px;}
.y169{bottom:0.435000px;}
.y17e{bottom:1.875000px;}
.y148{bottom:2.055000px;}
.y10b{bottom:3.960000px;}
.y178{bottom:4.350000px;}
.yc{bottom:4.365000px;}
.y13a{bottom:4.575000px;}
.y171{bottom:7.410000px;}
.y146{bottom:9.615000px;}
.y17c{bottom:10.335000px;}
.y16d{bottom:10.515000px;}
.y13c{bottom:16.995000px;}
.y134{bottom:17.175000px;}
.y3c{bottom:18.540000px;}
.y10f{bottom:20.700000px;}
.y10d{bottom:20.880000px;}
.y3b{bottom:40.860000px;}
.y16f{bottom:41.250000px;}
.y17a{bottom:44.175000px;}
.y16b{bottom:44.355000px;}
.y3a{bottom:64.650000px;}
.y13e{bottom:71.535000px;}
.y137{bottom:72.075000px;}
.y142{bottom:77.115000px;}
.y173{bottom:88.815000px;}
.y9c{bottom:88.920000px;}
.y39{bottom:90.570000px;}
.y36{bottom:92.520000px;}
.y9b{bottom:92.700000px;}
.y1da{bottom:94.320000px;}
.y38{bottom:100.830000px;}
.y9a{bottom:105.840000px;}
.y117{bottom:109.620000px;}
.y1b4{bottom:111.060000px;}
.y1d9{bottom:112.860000px;}
.y99{bottom:122.580000px;}
.y98{bottom:126.360000px;}
.y1b3{bottom:129.780000px;}
.y35{bottom:131.040000px;}
.y1d8{bottom:131.400000px;}
.y97{bottom:139.536000px;}
.y116{bottom:143.316000px;}
.y1b2{bottom:148.356000px;}
.y34{bottom:148.536000px;}
.y1d7{bottom:149.976000px;}
.y96{bottom:156.450000px;}
.y95{bottom:160.230000px;}
.y1b1{bottom:166.890000px;}
.y33{bottom:168.510000px;}
.y94{bottom:173.370000px;}
.y115{bottom:177.150000px;}
.y1b0{bottom:185.430000px;}
.y32{bottom:187.050000px;}
.y1d6{bottom:187.230000px;}
.y93{bottom:190.110000px;}
.y92{bottom:193.890000px;}
.y1af{bottom:203.970000px;}
.y31{bottom:205.590000px;}
.y1d5{bottom:205.770000px;}
.y91{bottom:207.030000px;}
.y167{bottom:207.570000px;}
.ye1{bottom:210.810000px;}
.y1ae{bottom:222.510000px;}
.y90{bottom:223.950000px;}
.y30{bottom:224.130000px;}
.y1d4{bottom:224.310000px;}
.y132{bottom:224.490000px;}
.y8f{bottom:227.730000px;}
.y8e{bottom:240.870000px;}
.y1ad{bottom:241.050000px;}
.y2f{bottom:242.670000px;}
.y1d3{bottom:242.850000px;}
.ye0{bottom:244.650000px;}
.y166{bottom:245.550000px;}
.y131{bottom:253.110000px;}
.y8d{bottom:257.610000px;}
.y1ac{bottom:259.590000px;}
.y2e{bottom:261.390000px;}
.y165{bottom:265.710000px;}
.y130{bottom:271.650000px;}
.ydf{bottom:274.530000px;}
.y8c{bottom:275.610000px;}
.y114{bottom:278.310000px;}
.y8b{bottom:279.390000px;}
.y2d{bottom:279.930000px;}
.y164{bottom:285.690000px;}
.y12f{bottom:290.190000px;}
.yde{bottom:291.450000px;}
.y113{bottom:291.990000px;}
.y8a{bottom:292.530000px;}
.ydd{bottom:295.230000px;}
.y1ab{bottom:296.850000px;}
.y2c{bottom:298.470000px;}
.y172{bottom:304.200000px;}
.y163{bottom:304.230000px;}
.ydc{bottom:308.370000px;}
.y12e{bottom:308.730000px;}
.y89{bottom:309.450000px;}
.y112{bottom:309.810000px;}
.y88{bottom:313.230000px;}
.y16e{bottom:314.280000px;}
.y1aa{bottom:315.390000px;}
.y2b{bottom:317.010000px;}
.y162{bottom:322.770000px;}
.ydb{bottom:325.110000px;}
.y177{bottom:325.470000px;}
.y87{bottom:326.190000px;}
.y12d{bottom:327.270000px;}
.y111{bottom:327.450000px;}
.yda{bottom:328.890000px;}
.y1a9{bottom:333.930000px;}
.y2a{bottom:335.550000px;}
.y1d2{bottom:335.730000px;}
.y170{bottom:338.610000px;}
.y161{bottom:341.310000px;}
.yd9{bottom:342.030000px;}
.y176{bottom:342.390000px;}
.y86{bottom:343.110000px;}
.y110{bottom:345.090000px;}
.y12c{bottom:345.990000px;}
.y85{bottom:346.890000px;}
.y1a8{bottom:352.470000px;}
.y29{bottom:354.090000px;}
.y1d1{bottom:354.270000px;}
.yd8{bottom:358.950000px;}
.y175{bottom:359.310000px;}
.y84{bottom:360.030000px;}
.yd7{bottom:362.730000px;}
.y12b{bottom:364.530000px;}
.y1a7{bottom:371.010000px;}
.y28{bottom:372.630000px;}
.y1d0{bottom:372.810000px;}
.yd6{bottom:375.870000px;}
.y174{bottom:376.230000px;}
.y83{bottom:376.950000px;}
.y160{bottom:378.570000px;}
.y82{bottom:380.730000px;}
.y12a{bottom:383.070000px;}
.y179{bottom:384.480000px;}
.y1a6{bottom:389.595000px;}
.y27{bottom:391.215000px;}
.y1cf{bottom:391.395000px;}
.yd5{bottom:392.655000px;}
.y81{bottom:393.735000px;}
.yd4{bottom:396.435000px;}
.y15f{bottom:397.155000px;}
.y10e{bottom:397.335000px;}
.y129{bottom:401.655000px;}
.y1a5{bottom:408.135000px;}
.y17d{bottom:408.960000px;}
.yd3{bottom:409.575000px;}
.y26{bottom:409.935000px;}
.y80{bottom:410.655000px;}
.y17b{bottom:411.735000px;}
.y7f{bottom:414.435000px;}
.y15e{bottom:415.695000px;}
.y128{bottom:420.195000px;}
.yd2{bottom:426.495000px;}
.y13d{bottom:427.320000px;}
.y7e{bottom:427.575000px;}
.y1a4{bottom:427.935000px;}
.y25{bottom:428.475000px;}
.yd1{bottom:430.275000px;}
.y10c{bottom:431.715000px;}
.y15d{bottom:434.235000px;}
.y127{bottom:438.735000px;}
.yd0{bottom:443.415000px;}
.y7d{bottom:444.495000px;}
.y1a3{bottom:446.475000px;}
.y24{bottom:447.015000px;}
.y7c{bottom:448.275000px;}
.y13b{bottom:450.900000px;}
.y15c{bottom:452.775000px;}
.y126{bottom:457.275000px;}
.ycf{bottom:460.155000px;}
.y7b{bottom:461.235000px;}
.yce{bottom:463.935000px;}
.y1a2{bottom:465.015000px;}
.y140{bottom:465.195000px;}
.y23{bottom:465.555000px;}
.y10a{bottom:466.275000px;}
.y15b{bottom:471.315000px;}
.y168{bottom:472.500000px;}
.y16a{bottom:472.680000px;}
.y125{bottom:475.815000px;}
.ycd{bottom:477.075000px;}
.y7a{bottom:478.155000px;}
.y79{bottom:481.935000px;}
.y13f{bottom:482.115000px;}
.y1a1{bottom:483.555000px;}
.y22{bottom:484.095000px;}
.y1ce{bottom:484.275000px;}
.y109{bottom:487.155000px;}
.y15a{bottom:489.855000px;}
.y141{bottom:493.560000px;}
.ycc{bottom:493.995000px;}
.y124{bottom:494.535000px;}
.y78{bottom:495.075000px;}
.ycb{bottom:497.775000px;}
.y16c{bottom:500.115000px;}
.y1a0{bottom:502.275000px;}
.y21{bottom:502.635000px;}
.y1cd{bottom:502.815000px;}
.y159{bottom:508.575000px;}
.y77{bottom:511.995000px;}
.y123{bottom:513.075000px;}
.y76{bottom:515.775000px;}
.y145{bottom:520.095000px;}
.y108{bottom:520.275000px;}
.y19f{bottom:520.815000px;}
.y20{bottom:521.175000px;}
.y1cc{bottom:521.355000px;}
.y158{bottom:527.115000px;}
.yca{bottom:528.735000px;}
.y147{bottom:529.740000px;}
.y75{bottom:529.815000px;}
.y122{bottom:531.615000px;}
.y144{bottom:537.015000px;}
.y107{bottom:538.815000px;}
.y19e{bottom:539.355000px;}
.y1f{bottom:539.715000px;}
.y1cb{bottom:539.895000px;}
.yc9{bottom:545.655000px;}
.y74{bottom:546.735000px;}
.yc8{bottom:549.435000px;}
.y121{bottom:550.155000px;}
.y73{bottom:550.515000px;}
.y143{bottom:553.755000px;}
.y106{bottom:557.355000px;}
.y19d{bottom:557.895000px;}
.y1e{bottom:558.435000px;}
.yc7{bottom:562.575000px;}
.y72{bottom:563.655000px;}
.y157{bottom:564.195000px;}
.y136{bottom:565.740000px;}
.y120{bottom:568.695000px;}
.y105{bottom:576.075000px;}
.y19c{bottom:576.435000px;}
.y1d{bottom:576.975000px;}
.yc6{bottom:579.495000px;}
.y71{bottom:580.575000px;}
.y156{bottom:582.375000px;}
.yc5{bottom:583.275000px;}
.y11f{bottom:587.235000px;}
.y133{bottom:593.460000px;}
.y104{bottom:594.615000px;}
.y19b{bottom:594.975000px;}
.y1c{bottom:595.515000px;}
.y70{bottom:597.315000px;}
.y6f{bottom:601.095000px;}
.y139{bottom:604.155000px;}
.y11e{bottom:605.775000px;}
.y103{bottom:613.155000px;}
.y19a{bottom:613.515000px;}
.y1b{bottom:614.055000px;}
.y6e{bottom:614.235000px;}
.yc4{bottom:614.775000px;}
.y155{bottom:616.575000px;}
.y138{bottom:621.075000px;}
.y11d{bottom:624.315000px;}
.y6d{bottom:631.155000px;}
.y102{bottom:631.695000px;}
.y1a{bottom:632.595000px;}
.y1ca{bottom:632.775000px;}
.y199{bottom:633.315000px;}
.y6c{bottom:634.935000px;}
.y154{bottom:635.115000px;}
.y11c{bottom:643.065000px;}
.y6b{bottom:648.105000px;}
.y101{bottom:650.265000px;}
.y19{bottom:651.165000px;}
.y1c9{bottom:651.345000px;}
.y198{bottom:651.885000px;}
.y153{bottom:653.685000px;}
.y11b{bottom:661.605000px;}
.y6a{bottom:664.845000px;}
.y69{bottom:668.625000px;}
.y100{bottom:668.805000px;}
.y18{bottom:669.705000px;}
.y1c8{bottom:669.885000px;}
.y197{bottom:671.685000px;}
.y152{bottom:672.225000px;}
.y11a{bottom:679.785000px;}
.y68{bottom:681.765000px;}
.yff{bottom:687.345000px;}
.y17{bottom:688.245000px;}
.y1c7{bottom:688.425000px;}
.y196{bottom:690.225000px;}
.y151{bottom:690.765000px;}
.yc3{bottom:693.645000px;}
.y119{bottom:696.525000px;}
.y67{bottom:698.685000px;}
.y66{bottom:702.465000px;}
.yfe{bottom:705.885000px;}
.y16{bottom:706.965000px;}
.y1c6{bottom:708.225000px;}
.y195{bottom:708.765000px;}
.y150{bottom:709.305000px;}
.yc2{bottom:712.185000px;}
.y65{bottom:717.225000px;}
.yfd{bottom:724.605000px;}
.y15{bottom:725.505000px;}
.y1c5{bottom:726.765000px;}
.y194{bottom:727.305000px;}
.y14f{bottom:727.845000px;}
.yc0{bottom:730.725000px;}
.yc1{bottom:734.505000px;}
.yfc{bottom:743.145000px;}
.y14{bottom:744.045000px;}
.y63{bottom:744.765000px;}
.y1c4{bottom:745.305000px;}
.y193{bottom:745.845000px;}
.y14e{bottom:746.385000px;}
.y64{bottom:748.545000px;}
.ybf{bottom:749.265000px;}
.yfb{bottom:761.685000px;}
.y13{bottom:762.585000px;}
.y62{bottom:763.305000px;}
.y1c3{bottom:763.845000px;}
.y192{bottom:764.565000px;}
.y14d{bottom:765.105000px;}
.ybe{bottom:767.805000px;}
.yfa{bottom:780.585000px;}
.y12{bottom:781.125000px;}
.y61{bottom:781.845000px;}
.y1c2{bottom:782.385000px;}
.y191{bottom:783.105000px;}
.y14c{bottom:783.645000px;}
.ybd{bottom:786.345000px;}
.y11{bottom:799.665000px;}
.y5f{bottom:800.385000px;}
.yf9{bottom:800.745000px;}
.y1c1{bottom:800.925000px;}
.y190{bottom:801.645000px;}
.y14b{bottom:802.185000px;}
.y60{bottom:804.165000px;}
.ybb{bottom:805.065000px;}
.ybc{bottom:808.845000px;}
.y10{bottom:818.205000px;}
.y5d{bottom:819.105000px;}
.y1c0{bottom:819.465000px;}
.y18f{bottom:820.185000px;}
.yf8{bottom:820.725000px;}
.y5e{bottom:822.885000px;}
.yba{bottom:823.605000px;}
.yf{bottom:836.745000px;}
.y5b{bottom:837.645000px;}
.y1bf{bottom:838.005000px;}
.y18e{bottom:838.725000px;}
.yf6{bottom:839.265000px;}
.y5c{bottom:841.425000px;}
.yb8{bottom:842.145000px;}
.yf7{bottom:843.045000px;}
.yb9{bottom:845.925000px;}
.ye{bottom:855.465000px;}
.y5a{bottom:856.185000px;}
.y1be{bottom:856.725000px;}
.y18d{bottom:857.265000px;}
.yf5{bottom:857.805000px;}
.yb7{bottom:860.685000px;}
.yd{bottom:874.005000px;}
.y58{bottom:874.725000px;}
.y1bd{bottom:875.265000px;}
.y18c{bottom:875.805000px;}
.yf4{bottom:876.345000px;}
.y59{bottom:878.505000px;}
.yb6{bottom:879.225000px;}
.yb{bottom:888.225000px;}
.y57{bottom:893.310000px;}
.y1bc{bottom:893.850000px;}
.y18b{bottom:894.750000px;}
.yf2{bottom:894.930000px;}
.yb4{bottom:897.810000px;}
.yf3{bottom:898.710000px;}
.yb5{bottom:901.590000px;}
.ya{bottom:911.130000px;}
.y56{bottom:911.850000px;}
.y1bb{bottom:912.390000px;}
.yf1{bottom:913.650000px;}
.y18a{bottom:914.730000px;}
.yb3{bottom:916.350000px;}
.y9{bottom:929.670000px;}
.y54{bottom:930.390000px;}
.y1ba{bottom:930.930000px;}
.yf0{bottom:932.190000px;}
.y189{bottom:933.270000px;}
.y55{bottom:934.170000px;}
.yb2{bottom:934.890000px;}
.y118{bottom:938.670000px;}
.y8{bottom:948.210000px;}
.y52{bottom:948.930000px;}
.y1b9{bottom:949.470000px;}
.yef{bottom:950.730000px;}
.y188{bottom:951.810000px;}
.y53{bottom:952.710000px;}
.yb1{bottom:953.610000px;}
.y7{bottom:966.750000px;}
.y50{bottom:967.650000px;}
.y1b8{bottom:968.010000px;}
.yed{bottom:969.270000px;}
.y187{bottom:970.350000px;}
.y51{bottom:971.430000px;}
.yb0{bottom:972.150000px;}
.yee{bottom:973.050000px;}
.y4e{bottom:986.190000px;}
.y1b7{bottom:986.550000px;}
.yeb{bottom:987.810000px;}
.y186{bottom:988.890000px;}
.y6{bottom:989.070000px;}
.y4f{bottom:989.970000px;}
.yae{bottom:990.690000px;}
.yec{bottom:991.590000px;}
.yaf{bottom:994.470000px;}
.y4c{bottom:1004.730000px;}
.y1b6{bottom:1005.270000px;}
.yea{bottom:1006.350000px;}
.y185{bottom:1007.610000px;}
.y5{bottom:1007.790000px;}
.y4d{bottom:1008.510000px;}
.yac{bottom:1009.230000px;}
.yad{bottom:1013.010000px;}
.y4{bottom:1022.550000px;}
.y4a{bottom:1023.270000px;}
.y1b5{bottom:1023.810000px;}
.ye9{bottom:1024.890000px;}
.y184{bottom:1026.150000px;}
.y4b{bottom:1027.050000px;}
.yaa{bottom:1027.770000px;}
.yab{bottom:1031.550000px;}
.y3{bottom:1041.090000px;}
.y48{bottom:1041.810000px;}
.ye8{bottom:1043.430000px;}
.y183{bottom:1044.690000px;}
.y49{bottom:1045.590000px;}
.ya8{bottom:1046.310000px;}
.ya9{bottom:1050.090000px;}
.y46{bottom:1060.350000px;}
.y2{bottom:1060.890000px;}
.ye7{bottom:1062.150000px;}
.y182{bottom:1063.230000px;}
.y47{bottom:1064.130000px;}
.ya6{bottom:1064.850000px;}
.ya7{bottom:1068.630000px;}
.y44{bottom:1078.890000px;}
.ye6{bottom:1080.690000px;}
.y181{bottom:1081.770000px;}
.y45{bottom:1082.670000px;}
.ya4{bottom:1083.390000px;}
.y1{bottom:1084.470000px;}
.ya5{bottom:1087.170000px;}
.y42{bottom:1097.430000px;}
.ye5{bottom:1099.230000px;}
.y180{bottom:1100.310000px;}
.y43{bottom:1101.210000px;}
.ya2{bottom:1102.110000px;}
.y37{bottom:1102.470000px;}
.y14a{bottom:1103.010000px;}
.ya3{bottom:1105.890000px;}
.y40{bottom:1116.150000px;}
.ye4{bottom:1117.770000px;}
.y17f{bottom:1119.210000px;}
.y41{bottom:1119.930000px;}
.ya0{bottom:1120.650000px;}
.y149{bottom:1121.550000px;}
.ya1{bottom:1124.430000px;}
.y3f{bottom:1135.050000px;}
.ye2{bottom:1136.310000px;}
.y9f{bottom:1138.830000px;}
.ye3{bottom:1140.090000px;}
.y3e{bottom:1150.560000px;}
.y9e{bottom:1157.040000px;}
.y3d{bottom:1173.060000px;}
.y9d{bottom:1174.320000px;}
.h23{height:14.940000px;}
.h1d{height:15.120000px;}
.h14{height:16.920000px;}
.h7{height:18.576000px;}
.h19{height:30.240000px;}
.h16{height:33.660000px;}
.h15{height:33.840000px;}
.h17{height:33.876000px;}
.h11{height:35.386875px;}
.h5{height:38.008125px;}
.h18{height:41.610234px;}
.h13{height:43.905937px;}
.h3{height:44.860781px;}
.h6{height:45.168750px;}
.h8{height:46.122187px;}
.h9{height:48.761719px;}
.h1f{height:54.360000px;}
.ha{height:54.390938px;}
.h21{height:54.522000px;}
.h2{height:57.051211px;}
.h22{height:57.240000px;}
.h1e{height:57.420000px;}
.h12{height:59.439023px;}
.h4{height:60.288750px;}
.hf{height:65.531250px;}
.h10{height:65.884219px;}
.he{height:70.773750px;}
.hd{height:76.671562px;}
.hc{height:81.432070px;}
.h1b{height:84.780000px;}
.h1a{height:85.140000px;}
.h1c{height:90.360000px;}
.h20{height:102.060000px;}
.hb{height:116.316000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wa{width:38.916000px;}
.wb{width:107.820000px;}
.wd{width:114.120000px;}
.w10{width:126.900000px;}
.w12{width:128.160000px;}
.w11{width:165.420000px;}
.w4{width:166.170000px;}
.w3{width:166.710000px;}
.w6{width:187.770000px;}
.w5{width:194.790000px;}
.w7{width:233.715000px;}
.we{width:235.260000px;}
.wf{width:235.980000px;}
.w8{width:513.435000px;}
.wc{width:576.465000px;}
.w9{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.056000px;}
.x10{left:8.136000px;}
.x68{left:10.830000px;}
.x6d{left:14.070000px;}
.x70{left:15.555000px;}
.x73{left:18.105000px;}
.x85{left:25.410000px;}
.x6e{left:26.670000px;}
.x78{left:28.470000px;}
.x80{left:32.610000px;}
.x67{left:35.130000px;}
.x5a{left:36.714000px;}
.x83{left:69.735000px;}
.x6c{left:79.275000px;}
.xf{left:82.080000px;}
.xd{left:84.959987px;}
.x8{left:87.300000px;}
.x87{left:89.715000px;}
.x65{left:93.995987px;}
.x1{left:101.915987px;}
.x2f{left:106.415973px;}
.x16{left:117.035987px;}
.x43{left:119.555973px;}
.x36{left:121.535987px;}
.x59{left:123.876000px;}
.x37{left:126.035987px;}
.x51{left:127.475987px;}
.x44{left:129.275987px;}
.x39{left:133.415973px;}
.x1f{left:139.175973px;}
.x89{left:140.940000px;}
.x20{left:144.035987px;}
.x77{left:145.440000px;}
.x54{left:148.895973px;}
.x4a{left:154.109987px;}
.x55{left:158.609987px;}
.x48{left:163.829973px;}
.x7f{left:167.400000px;}
.x66{left:171.900000px;}
.x49{left:173.549987px;}
.x5c{left:177.885000px;}
.xe{left:184.349987px;}
.x64{left:188.129987px;}
.x56{left:194.969973px;}
.x84{left:199.649987px;}
.x57{left:204.689987px;}
.x7e{left:207.749987px;}
.x41{left:215.849973px;}
.x42{left:225.569987px;}
.x5b{left:231.690000px;}
.xa{left:256.170000px;}
.x38{left:265.169987px;}
.x5{left:275.609987px;}
.x3d{left:278.174973px;}
.x3e{left:287.894987px;}
.x29{left:298.694973px;}
.x35{left:301.034987px;}
.x33{left:302.474973px;}
.x2a{left:308.414987px;}
.x34{left:312.194987px;}
.x11{left:315.795000px;}
.x47{left:321.554987px;}
.x79{left:328.394973px;}
.x60{left:332.714973px;}
.x7a{left:338.114987px;}
.x61{left:342.434987px;}
.x81{left:343.620000px;}
.x6f{left:346.500000px;}
.x69{left:348.120000px;}
.x4b{left:352.694973px;}
.x82{left:357.914987px;}
.x6{left:359.174987px;}
.x4c{left:362.414987px;}
.x71{left:364.574987px;}
.x6a{left:368.534987px;}
.x7{left:369.614987px;}
.x86{left:370.874987px;}
.x72{left:372.854987px;}
.x6b{left:380.774987px;}
.x2{left:393.734987px;}
.x3f{left:407.414973px;}
.x17{left:410.474973px;}
.x4{left:412.454987px;}
.x18{left:415.334987px;}
.x40{left:417.134987px;}
.x30{left:419.474987px;}
.x2b{left:422.174987px;}
.xb{left:424.515000px;}
.x7b{left:436.034973px;}
.x4d{left:437.474973px;}
.x3{left:446.474987px;}
.x58{left:467.744987px;}
.x45{left:500.684973px;}
.x5e{left:507.884973px;}
.x46{left:510.404987px;}
.x5f{left:517.604987px;}
.x23{left:530.744973px;}
.x24{left:535.604987px;}
.x2e{left:545.684987px;}
.x4e{left:548.204973px;}
.x52{left:552.524973px;}
.x3c{left:554.684987px;}
.x4f{left:557.924987px;}
.x53{left:562.244987px;}
.x12{left:578.264987px;}
.x1b{left:585.104973px;}
.x1c{left:589.964987px;}
.x1d{left:602.564973px;}
.x1e{left:607.424987px;}
.x88{left:616.140000px;}
.xc{left:620.385000px;}
.x3a{left:628.124973px;}
.x2c{left:631.544973px;}
.x62{left:633.704973px;}
.x3b{left:637.844987px;}
.x5d{left:639.284973px;}
.x2d{left:641.264987px;}
.x63{left:643.424987px;}
.x75{left:645.944987px;}
.x76{left:648.284987px;}
.x19{left:649.904973px;}
.x74{left:650.984987px;}
.x1a{left:654.764987px;}
.x31{left:675.869973px;}
.x7c{left:680.009973px;}
.x32{left:685.589987px;}
.x7d{left:689.729987px;}
.x50{left:697.469973px;}
.x27{left:707.369973px;}
.x28{left:712.229987px;}
.x25{left:735.269973px;}
.x26{left:740.129987px;}
.x13{left:777.209987px;}
.x21{left:784.229973px;}
.x22{left:789.089987px;}
.x14{left:791.069987px;}
.x15{left:807.989987px;}
@media print{
.v2{vertical-align:-65.920000pt;}
.v3{vertical-align:-61.440000pt;}
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-2.560000pt;}
.ls2{letter-spacing:-0.736000pt;}
.ls3{letter-spacing:-0.560000pt;}
.ls19{letter-spacing:-0.233067pt;}
.ls16{letter-spacing:-0.225067pt;}
.lsb{letter-spacing:-0.214933pt;}
.ls10{letter-spacing:-0.208533pt;}
.lsd{letter-spacing:-0.129067pt;}
.lse{letter-spacing:-0.113067pt;}
.ls1{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.051200pt;}
.ls1e{letter-spacing:-0.043520pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.025694pt;}
.ls8{letter-spacing:0.046720pt;}
.ls1d{letter-spacing:0.051200pt;}
.lsc{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.081067pt;}
.ls11{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.241067pt;}
.ls9{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.288000pt;}
.ls17{letter-spacing:0.315733pt;}
.ls7{letter-spacing:0.416000pt;}
.lsa{letter-spacing:0.526933pt;}
.ls12{letter-spacing:18.720000pt;}
.ls13{letter-spacing:98.720000pt;}
.ls14{letter-spacing:125.600000pt;}
.ls1b{letter-spacing:264.320000pt;}
.ls18{letter-spacing:329.120000pt;}
.ls1c{letter-spacing:1119.498667pt;}
.ws10{word-spacing:-58.880000pt;}
.ws4{word-spacing:-18.801067pt;}
.ws0{word-spacing:-18.720000pt;}
.ws3{word-spacing:-18.160000pt;}
.ws5{word-spacing:-17.280000pt;}
.ws7{word-spacing:-16.000000pt;}
.wsf{word-spacing:-14.771200pt;}
.ws1{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.676480pt;}
.ws2{word-spacing:-14.625067pt;}
.wsb{word-spacing:-14.494933pt;}
.wsd{word-spacing:-14.486933pt;}
.wsc{word-spacing:-13.595733pt;}
.ws9{word-spacing:-13.326720pt;}
.wse{word-spacing:-13.312000pt;}
.ws8{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.228800pt;}
.ws6{word-spacing:0.000000pt;}
._19{margin-left:-4.180480pt;}
._1{margin-left:-3.246933pt;}
._2{margin-left:-2.246827pt;}
._0{margin-left:-0.898560pt;}
._3{width:1.413120pt;}
._b{width:2.826240pt;}
._4{width:4.180480pt;}
._f{width:5.534720pt;}
._7{width:6.758400pt;}
._6{width:8.007680pt;}
._10{width:8.944000pt;}
._c{width:9.976320pt;}
._d{width:10.973867pt;}
._8{width:12.404907pt;}
._9{width:13.579947pt;}
._5{width:16.293973pt;}
._e{width:19.563520pt;}
._18{width:21.391360pt;}
._17{width:22.492160pt;}
._a{width:24.862720pt;}
._11{width:25.779200pt;}
._27{width:27.555840pt;}
._2a{width:28.733440pt;}
._14{width:42.700373pt;}
._1b{width:44.320000pt;}
._23{width:45.455360pt;}
._12{width:46.880000pt;}
._1c{width:52.110720pt;}
._25{width:69.772800pt;}
._26{width:71.021653pt;}
._20{width:72.952320pt;}
._1f{width:74.012160pt;}
._1e{width:79.546880pt;}
._1d{width:80.783360pt;}
._28{width:81.960960pt;}
._13{width:88.458667pt;}
._29{width:95.165440pt;}
._22{width:96.680960pt;}
._21{width:98.017067pt;}
._1a{width:98.962560pt;}
._24{width:104.158720pt;}
._16{width:112.037120pt;}
._15{width:178.826667pt;}
.fs8{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs9{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fsa{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs6{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y135{bottom:0.226667pt;}
.y169{bottom:0.386667pt;}
.y17e{bottom:1.666667pt;}
.y148{bottom:1.826667pt;}
.y10b{bottom:3.520000pt;}
.y178{bottom:3.866667pt;}
.yc{bottom:3.880000pt;}
.y13a{bottom:4.066667pt;}
.y171{bottom:6.586667pt;}
.y146{bottom:8.546667pt;}
.y17c{bottom:9.186667pt;}
.y16d{bottom:9.346667pt;}
.y13c{bottom:15.106667pt;}
.y134{bottom:15.266667pt;}
.y3c{bottom:16.480000pt;}
.y10f{bottom:18.400000pt;}
.y10d{bottom:18.560000pt;}
.y3b{bottom:36.320000pt;}
.y16f{bottom:36.666667pt;}
.y17a{bottom:39.266667pt;}
.y16b{bottom:39.426667pt;}
.y3a{bottom:57.466667pt;}
.y13e{bottom:63.586667pt;}
.y137{bottom:64.066667pt;}
.y142{bottom:68.546667pt;}
.y173{bottom:78.946667pt;}
.y9c{bottom:79.040000pt;}
.y39{bottom:80.506667pt;}
.y36{bottom:82.240000pt;}
.y9b{bottom:82.400000pt;}
.y1da{bottom:83.840000pt;}
.y38{bottom:89.626667pt;}
.y9a{bottom:94.080000pt;}
.y117{bottom:97.440000pt;}
.y1b4{bottom:98.720000pt;}
.y1d9{bottom:100.320000pt;}
.y99{bottom:108.960000pt;}
.y98{bottom:112.320000pt;}
.y1b3{bottom:115.360000pt;}
.y35{bottom:116.480000pt;}
.y1d8{bottom:116.800000pt;}
.y97{bottom:124.032000pt;}
.y116{bottom:127.392000pt;}
.y1b2{bottom:131.872000pt;}
.y34{bottom:132.032000pt;}
.y1d7{bottom:133.312000pt;}
.y96{bottom:139.066667pt;}
.y95{bottom:142.426667pt;}
.y1b1{bottom:148.346667pt;}
.y33{bottom:149.786667pt;}
.y94{bottom:154.106667pt;}
.y115{bottom:157.466667pt;}
.y1b0{bottom:164.826667pt;}
.y32{bottom:166.266667pt;}
.y1d6{bottom:166.426667pt;}
.y93{bottom:168.986667pt;}
.y92{bottom:172.346667pt;}
.y1af{bottom:181.306667pt;}
.y31{bottom:182.746667pt;}
.y1d5{bottom:182.906667pt;}
.y91{bottom:184.026667pt;}
.y167{bottom:184.506667pt;}
.ye1{bottom:187.386667pt;}
.y1ae{bottom:197.786667pt;}
.y90{bottom:199.066667pt;}
.y30{bottom:199.226667pt;}
.y1d4{bottom:199.386667pt;}
.y132{bottom:199.546667pt;}
.y8f{bottom:202.426667pt;}
.y8e{bottom:214.106667pt;}
.y1ad{bottom:214.266667pt;}
.y2f{bottom:215.706667pt;}
.y1d3{bottom:215.866667pt;}
.ye0{bottom:217.466667pt;}
.y166{bottom:218.266667pt;}
.y131{bottom:224.986667pt;}
.y8d{bottom:228.986667pt;}
.y1ac{bottom:230.746667pt;}
.y2e{bottom:232.346667pt;}
.y165{bottom:236.186667pt;}
.y130{bottom:241.466667pt;}
.ydf{bottom:244.026667pt;}
.y8c{bottom:244.986667pt;}
.y114{bottom:247.386667pt;}
.y8b{bottom:248.346667pt;}
.y2d{bottom:248.826667pt;}
.y164{bottom:253.946667pt;}
.y12f{bottom:257.946667pt;}
.yde{bottom:259.066667pt;}
.y113{bottom:259.546667pt;}
.y8a{bottom:260.026667pt;}
.ydd{bottom:262.426667pt;}
.y1ab{bottom:263.866667pt;}
.y2c{bottom:265.306667pt;}
.y172{bottom:270.400000pt;}
.y163{bottom:270.426667pt;}
.ydc{bottom:274.106667pt;}
.y12e{bottom:274.426667pt;}
.y89{bottom:275.066667pt;}
.y112{bottom:275.386667pt;}
.y88{bottom:278.426667pt;}
.y16e{bottom:279.360000pt;}
.y1aa{bottom:280.346667pt;}
.y2b{bottom:281.786667pt;}
.y162{bottom:286.906667pt;}
.ydb{bottom:288.986667pt;}
.y177{bottom:289.306667pt;}
.y87{bottom:289.946667pt;}
.y12d{bottom:290.906667pt;}
.y111{bottom:291.066667pt;}
.yda{bottom:292.346667pt;}
.y1a9{bottom:296.826667pt;}
.y2a{bottom:298.266667pt;}
.y1d2{bottom:298.426667pt;}
.y170{bottom:300.986667pt;}
.y161{bottom:303.386667pt;}
.yd9{bottom:304.026667pt;}
.y176{bottom:304.346667pt;}
.y86{bottom:304.986667pt;}
.y110{bottom:306.746667pt;}
.y12c{bottom:307.546667pt;}
.y85{bottom:308.346667pt;}
.y1a8{bottom:313.306667pt;}
.y29{bottom:314.746667pt;}
.y1d1{bottom:314.906667pt;}
.yd8{bottom:319.066667pt;}
.y175{bottom:319.386667pt;}
.y84{bottom:320.026667pt;}
.yd7{bottom:322.426667pt;}
.y12b{bottom:324.026667pt;}
.y1a7{bottom:329.786667pt;}
.y28{bottom:331.226667pt;}
.y1d0{bottom:331.386667pt;}
.yd6{bottom:334.106667pt;}
.y174{bottom:334.426667pt;}
.y83{bottom:335.066667pt;}
.y160{bottom:336.506667pt;}
.y82{bottom:338.426667pt;}
.y12a{bottom:340.506667pt;}
.y179{bottom:341.760000pt;}
.y1a6{bottom:346.306667pt;}
.y27{bottom:347.746667pt;}
.y1cf{bottom:347.906667pt;}
.yd5{bottom:349.026667pt;}
.y81{bottom:349.986667pt;}
.yd4{bottom:352.386667pt;}
.y15f{bottom:353.026667pt;}
.y10e{bottom:353.186667pt;}
.y129{bottom:357.026667pt;}
.y1a5{bottom:362.786667pt;}
.y17d{bottom:363.520000pt;}
.yd3{bottom:364.066667pt;}
.y26{bottom:364.386667pt;}
.y80{bottom:365.026667pt;}
.y17b{bottom:365.986667pt;}
.y7f{bottom:368.386667pt;}
.y15e{bottom:369.506667pt;}
.y128{bottom:373.506667pt;}
.yd2{bottom:379.106667pt;}
.y13d{bottom:379.840000pt;}
.y7e{bottom:380.066667pt;}
.y1a4{bottom:380.386667pt;}
.y25{bottom:380.866667pt;}
.yd1{bottom:382.466667pt;}
.y10c{bottom:383.746667pt;}
.y15d{bottom:385.986667pt;}
.y127{bottom:389.986667pt;}
.yd0{bottom:394.146667pt;}
.y7d{bottom:395.106667pt;}
.y1a3{bottom:396.866667pt;}
.y24{bottom:397.346667pt;}
.y7c{bottom:398.466667pt;}
.y13b{bottom:400.800000pt;}
.y15c{bottom:402.466667pt;}
.y126{bottom:406.466667pt;}
.ycf{bottom:409.026667pt;}
.y7b{bottom:409.986667pt;}
.yce{bottom:412.386667pt;}
.y1a2{bottom:413.346667pt;}
.y140{bottom:413.506667pt;}
.y23{bottom:413.826667pt;}
.y10a{bottom:414.466667pt;}
.y15b{bottom:418.946667pt;}
.y168{bottom:420.000000pt;}
.y16a{bottom:420.160000pt;}
.y125{bottom:422.946667pt;}
.ycd{bottom:424.066667pt;}
.y7a{bottom:425.026667pt;}
.y79{bottom:428.386667pt;}
.y13f{bottom:428.546667pt;}
.y1a1{bottom:429.826667pt;}
.y22{bottom:430.306667pt;}
.y1ce{bottom:430.466667pt;}
.y109{bottom:433.026667pt;}
.y15a{bottom:435.426667pt;}
.y141{bottom:438.720000pt;}
.ycc{bottom:439.106667pt;}
.y124{bottom:439.586667pt;}
.y78{bottom:440.066667pt;}
.ycb{bottom:442.466667pt;}
.y16c{bottom:444.546667pt;}
.y1a0{bottom:446.466667pt;}
.y21{bottom:446.786667pt;}
.y1cd{bottom:446.946667pt;}
.y159{bottom:452.066667pt;}
.y77{bottom:455.106667pt;}
.y123{bottom:456.066667pt;}
.y76{bottom:458.466667pt;}
.y145{bottom:462.306667pt;}
.y108{bottom:462.466667pt;}
.y19f{bottom:462.946667pt;}
.y20{bottom:463.266667pt;}
.y1cc{bottom:463.426667pt;}
.y158{bottom:468.546667pt;}
.yca{bottom:469.986667pt;}
.y147{bottom:470.880000pt;}
.y75{bottom:470.946667pt;}
.y122{bottom:472.546667pt;}
.y144{bottom:477.346667pt;}
.y107{bottom:478.946667pt;}
.y19e{bottom:479.426667pt;}
.y1f{bottom:479.746667pt;}
.y1cb{bottom:479.906667pt;}
.yc9{bottom:485.026667pt;}
.y74{bottom:485.986667pt;}
.yc8{bottom:488.386667pt;}
.y121{bottom:489.026667pt;}
.y73{bottom:489.346667pt;}
.y143{bottom:492.226667pt;}
.y106{bottom:495.426667pt;}
.y19d{bottom:495.906667pt;}
.y1e{bottom:496.386667pt;}
.yc7{bottom:500.066667pt;}
.y72{bottom:501.026667pt;}
.y157{bottom:501.506667pt;}
.y136{bottom:502.880000pt;}
.y120{bottom:505.506667pt;}
.y105{bottom:512.066667pt;}
.y19c{bottom:512.386667pt;}
.y1d{bottom:512.866667pt;}
.yc6{bottom:515.106667pt;}
.y71{bottom:516.066667pt;}
.y156{bottom:517.666667pt;}
.yc5{bottom:518.466667pt;}
.y11f{bottom:521.986667pt;}
.y133{bottom:527.520000pt;}
.y104{bottom:528.546667pt;}
.y19b{bottom:528.866667pt;}
.y1c{bottom:529.346667pt;}
.y70{bottom:530.946667pt;}
.y6f{bottom:534.306667pt;}
.y139{bottom:537.026667pt;}
.y11e{bottom:538.466667pt;}
.y103{bottom:545.026667pt;}
.y19a{bottom:545.346667pt;}
.y1b{bottom:545.826667pt;}
.y6e{bottom:545.986667pt;}
.yc4{bottom:546.466667pt;}
.y155{bottom:548.066667pt;}
.y138{bottom:552.066667pt;}
.y11d{bottom:554.946667pt;}
.y6d{bottom:561.026667pt;}
.y102{bottom:561.506667pt;}
.y1a{bottom:562.306667pt;}
.y1ca{bottom:562.466667pt;}
.y199{bottom:562.946667pt;}
.y6c{bottom:564.386667pt;}
.y154{bottom:564.546667pt;}
.y11c{bottom:571.613333pt;}
.y6b{bottom:576.093333pt;}
.y101{bottom:578.013333pt;}
.y19{bottom:578.813333pt;}
.y1c9{bottom:578.973333pt;}
.y198{bottom:579.453333pt;}
.y153{bottom:581.053333pt;}
.y11b{bottom:588.093333pt;}
.y6a{bottom:590.973333pt;}
.y69{bottom:594.333333pt;}
.y100{bottom:594.493333pt;}
.y18{bottom:595.293333pt;}
.y1c8{bottom:595.453333pt;}
.y197{bottom:597.053333pt;}
.y152{bottom:597.533333pt;}
.y11a{bottom:604.253333pt;}
.y68{bottom:606.013333pt;}
.yff{bottom:610.973333pt;}
.y17{bottom:611.773333pt;}
.y1c7{bottom:611.933333pt;}
.y196{bottom:613.533333pt;}
.y151{bottom:614.013333pt;}
.yc3{bottom:616.573333pt;}
.y119{bottom:619.133333pt;}
.y67{bottom:621.053333pt;}
.y66{bottom:624.413333pt;}
.yfe{bottom:627.453333pt;}
.y16{bottom:628.413333pt;}
.y1c6{bottom:629.533333pt;}
.y195{bottom:630.013333pt;}
.y150{bottom:630.493333pt;}
.yc2{bottom:633.053333pt;}
.y65{bottom:637.533333pt;}
.yfd{bottom:644.093333pt;}
.y15{bottom:644.893333pt;}
.y1c5{bottom:646.013333pt;}
.y194{bottom:646.493333pt;}
.y14f{bottom:646.973333pt;}
.yc0{bottom:649.533333pt;}
.yc1{bottom:652.893333pt;}
.yfc{bottom:660.573333pt;}
.y14{bottom:661.373333pt;}
.y63{bottom:662.013333pt;}
.y1c4{bottom:662.493333pt;}
.y193{bottom:662.973333pt;}
.y14e{bottom:663.453333pt;}
.y64{bottom:665.373333pt;}
.ybf{bottom:666.013333pt;}
.yfb{bottom:677.053333pt;}
.y13{bottom:677.853333pt;}
.y62{bottom:678.493333pt;}
.y1c3{bottom:678.973333pt;}
.y192{bottom:679.613333pt;}
.y14d{bottom:680.093333pt;}
.ybe{bottom:682.493333pt;}
.yfa{bottom:693.853333pt;}
.y12{bottom:694.333333pt;}
.y61{bottom:694.973333pt;}
.y1c2{bottom:695.453333pt;}
.y191{bottom:696.093333pt;}
.y14c{bottom:696.573333pt;}
.ybd{bottom:698.973333pt;}
.y11{bottom:710.813333pt;}
.y5f{bottom:711.453333pt;}
.yf9{bottom:711.773333pt;}
.y1c1{bottom:711.933333pt;}
.y190{bottom:712.573333pt;}
.y14b{bottom:713.053333pt;}
.y60{bottom:714.813333pt;}
.ybb{bottom:715.613333pt;}
.ybc{bottom:718.973333pt;}
.y10{bottom:727.293333pt;}
.y5d{bottom:728.093333pt;}
.y1c0{bottom:728.413333pt;}
.y18f{bottom:729.053333pt;}
.yf8{bottom:729.533333pt;}
.y5e{bottom:731.453333pt;}
.yba{bottom:732.093333pt;}
.yf{bottom:743.773333pt;}
.y5b{bottom:744.573333pt;}
.y1bf{bottom:744.893333pt;}
.y18e{bottom:745.533333pt;}
.yf6{bottom:746.013333pt;}
.y5c{bottom:747.933333pt;}
.yb8{bottom:748.573333pt;}
.yf7{bottom:749.373333pt;}
.yb9{bottom:751.933333pt;}
.ye{bottom:760.413333pt;}
.y5a{bottom:761.053333pt;}
.y1be{bottom:761.533333pt;}
.y18d{bottom:762.013333pt;}
.yf5{bottom:762.493333pt;}
.yb7{bottom:765.053333pt;}
.yd{bottom:776.893333pt;}
.y58{bottom:777.533333pt;}
.y1bd{bottom:778.013333pt;}
.y18c{bottom:778.493333pt;}
.yf4{bottom:778.973333pt;}
.y59{bottom:780.893333pt;}
.yb6{bottom:781.533333pt;}
.yb{bottom:789.533333pt;}
.y57{bottom:794.053333pt;}
.y1bc{bottom:794.533333pt;}
.y18b{bottom:795.333333pt;}
.yf2{bottom:795.493333pt;}
.yb4{bottom:798.053333pt;}
.yf3{bottom:798.853333pt;}
.yb5{bottom:801.413333pt;}
.ya{bottom:809.893333pt;}
.y56{bottom:810.533333pt;}
.y1bb{bottom:811.013333pt;}
.yf1{bottom:812.133333pt;}
.y18a{bottom:813.093333pt;}
.yb3{bottom:814.533333pt;}
.y9{bottom:826.373333pt;}
.y54{bottom:827.013333pt;}
.y1ba{bottom:827.493333pt;}
.yf0{bottom:828.613333pt;}
.y189{bottom:829.573333pt;}
.y55{bottom:830.373333pt;}
.yb2{bottom:831.013333pt;}
.y118{bottom:834.373333pt;}
.y8{bottom:842.853333pt;}
.y52{bottom:843.493333pt;}
.y1b9{bottom:843.973333pt;}
.yef{bottom:845.093333pt;}
.y188{bottom:846.053333pt;}
.y53{bottom:846.853333pt;}
.yb1{bottom:847.653333pt;}
.y7{bottom:859.333333pt;}
.y50{bottom:860.133333pt;}
.y1b8{bottom:860.453333pt;}
.yed{bottom:861.573333pt;}
.y187{bottom:862.533333pt;}
.y51{bottom:863.493333pt;}
.yb0{bottom:864.133333pt;}
.yee{bottom:864.933333pt;}
.y4e{bottom:876.613333pt;}
.y1b7{bottom:876.933333pt;}
.yeb{bottom:878.053333pt;}
.y186{bottom:879.013333pt;}
.y6{bottom:879.173333pt;}
.y4f{bottom:879.973333pt;}
.yae{bottom:880.613333pt;}
.yec{bottom:881.413333pt;}
.yaf{bottom:883.973333pt;}
.y4c{bottom:893.093333pt;}
.y1b6{bottom:893.573333pt;}
.yea{bottom:894.533333pt;}
.y185{bottom:895.653333pt;}
.y5{bottom:895.813333pt;}
.y4d{bottom:896.453333pt;}
.yac{bottom:897.093333pt;}
.yad{bottom:900.453333pt;}
.y4{bottom:908.933333pt;}
.y4a{bottom:909.573333pt;}
.y1b5{bottom:910.053333pt;}
.ye9{bottom:911.013333pt;}
.y184{bottom:912.133333pt;}
.y4b{bottom:912.933333pt;}
.yaa{bottom:913.573333pt;}
.yab{bottom:916.933333pt;}
.y3{bottom:925.413333pt;}
.y48{bottom:926.053333pt;}
.ye8{bottom:927.493333pt;}
.y183{bottom:928.613333pt;}
.y49{bottom:929.413333pt;}
.ya8{bottom:930.053333pt;}
.ya9{bottom:933.413333pt;}
.y46{bottom:942.533333pt;}
.y2{bottom:943.013333pt;}
.ye7{bottom:944.133333pt;}
.y182{bottom:945.093333pt;}
.y47{bottom:945.893333pt;}
.ya6{bottom:946.533333pt;}
.ya7{bottom:949.893333pt;}
.y44{bottom:959.013333pt;}
.ye6{bottom:960.613333pt;}
.y181{bottom:961.573333pt;}
.y45{bottom:962.373333pt;}
.ya4{bottom:963.013333pt;}
.y1{bottom:963.973333pt;}
.ya5{bottom:966.373333pt;}
.y42{bottom:975.493333pt;}
.ye5{bottom:977.093333pt;}
.y180{bottom:978.053333pt;}
.y43{bottom:978.853333pt;}
.ya2{bottom:979.653333pt;}
.y37{bottom:979.973333pt;}
.y14a{bottom:980.453333pt;}
.ya3{bottom:983.013333pt;}
.y40{bottom:992.133333pt;}
.ye4{bottom:993.573333pt;}
.y17f{bottom:994.853333pt;}
.y41{bottom:995.493333pt;}
.ya0{bottom:996.133333pt;}
.y149{bottom:996.933333pt;}
.ya1{bottom:999.493333pt;}
.y3f{bottom:1008.933333pt;}
.ye2{bottom:1010.053333pt;}
.y9f{bottom:1012.293333pt;}
.ye3{bottom:1013.413333pt;}
.y3e{bottom:1022.720000pt;}
.y9e{bottom:1028.480000pt;}
.y3d{bottom:1042.720000pt;}
.y9d{bottom:1043.840000pt;}
.h23{height:13.280000pt;}
.h1d{height:13.440000pt;}
.h14{height:15.040000pt;}
.h7{height:16.512000pt;}
.h19{height:26.880000pt;}
.h16{height:29.920000pt;}
.h15{height:30.080000pt;}
.h17{height:30.112000pt;}
.h11{height:31.455000pt;}
.h5{height:33.785000pt;}
.h18{height:36.986875pt;}
.h13{height:39.027500pt;}
.h3{height:39.876250pt;}
.h6{height:40.150000pt;}
.h8{height:40.997500pt;}
.h9{height:43.343750pt;}
.h1f{height:48.320000pt;}
.ha{height:48.347500pt;}
.h21{height:48.464000pt;}
.h2{height:50.712187pt;}
.h22{height:50.880000pt;}
.h1e{height:51.040000pt;}
.h12{height:52.834688pt;}
.h4{height:53.590000pt;}
.hf{height:58.250000pt;}
.h10{height:58.563750pt;}
.he{height:62.910000pt;}
.hd{height:68.152500pt;}
.hc{height:72.384062pt;}
.h1b{height:75.360000pt;}
.h1a{height:75.680000pt;}
.h1c{height:80.320000pt;}
.h20{height:90.720000pt;}
.hb{height:103.392000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wa{width:34.592000pt;}
.wb{width:95.840000pt;}
.wd{width:101.440000pt;}
.w10{width:112.800000pt;}
.w12{width:113.920000pt;}
.w11{width:147.040000pt;}
.w4{width:147.706667pt;}
.w3{width:148.186667pt;}
.w6{width:166.906667pt;}
.w5{width:173.146667pt;}
.w7{width:207.746667pt;}
.we{width:209.120000pt;}
.wf{width:209.760000pt;}
.w8{width:456.386667pt;}
.wc{width:512.413333pt;}
.w9{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.272000pt;}
.x10{left:7.232000pt;}
.x68{left:9.626667pt;}
.x6d{left:12.506667pt;}
.x70{left:13.826667pt;}
.x73{left:16.093333pt;}
.x85{left:22.586667pt;}
.x6e{left:23.706667pt;}
.x78{left:25.306667pt;}
.x80{left:28.986667pt;}
.x67{left:31.226667pt;}
.x5a{left:32.634667pt;}
.x83{left:61.986667pt;}
.x6c{left:70.466667pt;}
.xf{left:72.960000pt;}
.xd{left:75.519988pt;}
.x8{left:77.600000pt;}
.x87{left:79.746667pt;}
.x65{left:83.551988pt;}
.x1{left:90.591988pt;}
.x2f{left:94.591976pt;}
.x16{left:104.031988pt;}
.x43{left:106.271976pt;}
.x36{left:108.031988pt;}
.x59{left:110.112000pt;}
.x37{left:112.031988pt;}
.x51{left:113.311988pt;}
.x44{left:114.911988pt;}
.x39{left:118.591976pt;}
.x1f{left:123.711976pt;}
.x89{left:125.280000pt;}
.x20{left:128.031988pt;}
.x77{left:129.280000pt;}
.x54{left:132.351976pt;}
.x4a{left:136.986655pt;}
.x55{left:140.986655pt;}
.x48{left:145.626643pt;}
.x7f{left:148.800000pt;}
.x66{left:152.800000pt;}
.x49{left:154.266655pt;}
.x5c{left:158.120000pt;}
.xe{left:163.866655pt;}
.x64{left:167.226655pt;}
.x56{left:173.306643pt;}
.x84{left:177.466655pt;}
.x57{left:181.946655pt;}
.x7e{left:184.666655pt;}
.x41{left:191.866643pt;}
.x42{left:200.506655pt;}
.x5b{left:205.946667pt;}
.xa{left:227.706667pt;}
.x38{left:235.706655pt;}
.x5{left:244.986655pt;}
.x3d{left:247.266643pt;}
.x3e{left:255.906655pt;}
.x29{left:265.506643pt;}
.x35{left:267.586655pt;}
.x33{left:268.866643pt;}
.x2a{left:274.146655pt;}
.x34{left:277.506655pt;}
.x11{left:280.706667pt;}
.x47{left:285.826655pt;}
.x79{left:291.906643pt;}
.x60{left:295.746643pt;}
.x7a{left:300.546655pt;}
.x61{left:304.386655pt;}
.x81{left:305.440000pt;}
.x6f{left:308.000000pt;}
.x69{left:309.440000pt;}
.x4b{left:313.506643pt;}
.x82{left:318.146655pt;}
.x6{left:319.266655pt;}
.x4c{left:322.146655pt;}
.x71{left:324.066655pt;}
.x6a{left:327.586655pt;}
.x7{left:328.546655pt;}
.x86{left:329.666655pt;}
.x72{left:331.426655pt;}
.x6b{left:338.466655pt;}
.x2{left:349.986655pt;}
.x3f{left:362.146643pt;}
.x17{left:364.866643pt;}
.x4{left:366.626655pt;}
.x18{left:369.186655pt;}
.x40{left:370.786655pt;}
.x30{left:372.866655pt;}
.x2b{left:375.266655pt;}
.xb{left:377.346667pt;}
.x7b{left:387.586643pt;}
.x4d{left:388.866643pt;}
.x3{left:396.866655pt;}
.x58{left:415.773322pt;}
.x45{left:445.053310pt;}
.x5e{left:451.453310pt;}
.x46{left:453.693322pt;}
.x5f{left:460.093322pt;}
.x23{left:471.773310pt;}
.x24{left:476.093322pt;}
.x2e{left:485.053322pt;}
.x4e{left:487.293310pt;}
.x52{left:491.133310pt;}
.x3c{left:493.053322pt;}
.x4f{left:495.933322pt;}
.x53{left:499.773322pt;}
.x12{left:514.013322pt;}
.x1b{left:520.093310pt;}
.x1c{left:524.413322pt;}
.x1d{left:535.613310pt;}
.x1e{left:539.933322pt;}
.x88{left:547.680000pt;}
.xc{left:551.453333pt;}
.x3a{left:558.333310pt;}
.x2c{left:561.373310pt;}
.x62{left:563.293310pt;}
.x3b{left:566.973322pt;}
.x5d{left:568.253310pt;}
.x2d{left:570.013322pt;}
.x63{left:571.933322pt;}
.x75{left:574.173322pt;}
.x76{left:576.253322pt;}
.x19{left:577.693310pt;}
.x74{left:578.653322pt;}
.x1a{left:582.013322pt;}
.x31{left:600.773310pt;}
.x7c{left:604.453310pt;}
.x32{left:609.413322pt;}
.x7d{left:613.093322pt;}
.x50{left:619.973310pt;}
.x27{left:628.773310pt;}
.x28{left:633.093322pt;}
.x25{left:653.573310pt;}
.x26{left:657.893322pt;}
.x13{left:690.853322pt;}
.x21{left:697.093310pt;}
.x22{left:701.413322pt;}
.x14{left:703.173322pt;}
.x15{left:718.213322pt;}
}




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