
    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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2346b93074f12a1aa765a059.woff')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_b6f4bac02b5fed23fafbdbee.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4135cc29845af8542c2653d3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.959473;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_9ff855095e28aa05457d83aa.woff')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_0ee2d5fce30cd96a5156c2af.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6150c1a9b198818c4ff93e60.woff')format("woff");}.ff7{font-family:ff7;line-height:0.959473;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_ffc9998b9ad7000d747d48ff.woff')format("woff");}.ff8{font-family:ff8;line-height:0.729412;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_99bb7eb3a4f2a1f611eeef43.woff')format("woff");}.ff9{font-family:ff9;line-height:0.899902;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_98b94171b1cd8a1d0031df2d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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_90d0657b6e8768fad9743454.woff')format("woff");}.ffb{font-family:ffb;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2cecec8e3854ed11bf8482f8.woff')format("woff");}.ffe{font-family:ffe;line-height:0.946777;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:fff;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.fff{font-family:fff;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_abc513fa220037f94a0a1ac8.woff')format("woff");}.ff10{font-family:ff10;line-height:0.708008;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:ff11;src:url('chunks/assets/font_384ab4545abfdd0d1dc62ef8.woff')format("woff");}.ff11{font-family:ff11;line-height:0.987305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.274800px;}
.ls2{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.032400px;}
.lsc{letter-spacing:0.052560px;}
.ls0{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.132600px;}
.ls7{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.239040px;}
.ls10{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.315600px;}
.lsd{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.514200px;}
.ls4{letter-spacing:0.624000px;}
.lsb{letter-spacing:0.792000px;}
.ls13{letter-spacing:85.680000px;}
.lsa{letter-spacing:139.800000px;}
.ls8{letter-spacing:172.002720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(118,113,113),0 0.015em rgb(118,113,113),0.015em 0 rgb(118,113,113),0 -0.015em  rgb(118,113,113);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(118,113,113);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-72.000000px;}
.ws9{word-spacing:-59.760000px;}
.ws7{word-spacing:-23.902800px;}
.wsd{word-spacing:-23.619600px;}
.ws1{word-spacing:-21.060000px;}
.wse{word-spacing:-18.288000px;}
.ws8{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.496000px;}
.ws6{word-spacing:-17.247000px;}
.wsf{word-spacing:-15.072600px;}
.wsb{word-spacing:-14.992560px;}
.wsc{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.665200px;}
.ws5{word-spacing:0.000000px;}
._18{margin-left:-5.184000px;}
._f{margin-left:-3.600000px;}
._7{margin-left:-2.214000px;}
._0{margin-left:-1.026000px;}
._3{width:1.020000px;}
._1{width:2.436000px;}
._2{width:3.672000px;}
._6{width:5.112000px;}
._c{width:6.624000px;}
._16{width:7.632000px;}
._d{width:8.640000px;}
._e{width:9.720000px;}
._10{width:11.664000px;}
._13{width:12.672000px;}
._12{width:13.680000px;}
._1f{width:14.724000px;}
._17{width:15.732000px;}
._1e{width:16.962000px;}
._11{width:19.092000px;}
._a{width:20.664000px;}
._b{width:21.816000px;}
._9{width:22.824000px;}
._8{width:23.904000px;}
._15{width:25.968000px;}
._14{width:27.432000px;}
._20{width:28.864080px;}
._21{width:30.174720px;}
._1c{width:31.680000px;}
._1d{width:33.336000px;}
._2f{width:34.416000px;}
._19{width:36.408000px;}
._23{width:40.338000px;}
._29{width:43.128000px;}
._28{width:44.424000px;}
._26{width:46.261440px;}
._25{width:47.502000px;}
._24{width:49.032000px;}
._1b{width:52.128000px;}
._22{width:59.935200px;}
._2a{width:79.920000px;}
._2e{width:85.044000px;}
._2d{width:86.184000px;}
._2c{width:97.632000px;}
._2b{width:99.144000px;}
._27{width:121.910400px;}
._1a{width:194.400000px;}
._5{width:470.916000px;}
._4{width:1433.832000px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc1{color:rgb(118,113,113);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y34{bottom:1.800000px;}
.yee{bottom:3.960000px;}
.y101{bottom:3.990000px;}
.y36{bottom:8.100000px;}
.y147{bottom:8.640000px;}
.y17d{bottom:16.740000px;}
.y17f{bottom:16.920000px;}
.y158{bottom:20.700000px;}
.y10d{bottom:20.880000px;}
.y1a6{bottom:20.910000px;}
.y118{bottom:21.600000px;}
.y146{bottom:25.560000px;}
.y181{bottom:37.800000px;}
.y156{bottom:37.845000px;}
.y145{bottom:42.300000px;}
.y32{bottom:51.840000px;}
.y11b{bottom:56.880000px;}
.y124{bottom:56.910000px;}
.y8{bottom:57.600000px;}
.y35{bottom:67.680000px;}
.y33{bottom:74.700000px;}
.y7{bottom:76.860000px;}
.y6{bottom:91.980000px;}
.y5{bottom:107.280000px;}
.y4{bottom:122.400000px;}
.y31{bottom:122.580000px;}
.y199{bottom:136.080000px;}
.y1b0{bottom:137.340000px;}
.y3{bottom:137.520000px;}
.yc5{bottom:141.840000px;}
.y13b{bottom:144.360000px;}
.y173{bottom:149.400000px;}
.y62{bottom:149.580000px;}
.y1d2{bottom:155.190000px;}
.y198{bottom:156.450000px;}
.yea{bottom:161.850000px;}
.ya6{bottom:162.030000px;}
.y2f{bottom:164.730000px;}
.y172{bottom:167.070000px;}
.y1af{bottom:169.050000px;}
.y61{bottom:169.950000px;}
.y1d1{bottom:175.530000px;}
.y197{bottom:176.610000px;}
.y14e{bottom:178.230000px;}
.y8a{bottom:180.030000px;}
.ye9{bottom:182.190000px;}
.ya5{bottom:182.370000px;}
.y171{bottom:184.710000px;}
.y13a{bottom:184.890000px;}
.y2e{bottom:185.070000px;}
.y60{bottom:190.110000px;}
.y1ae{bottom:193.710000px;}
.y14d{bottom:195.870000px;}
.y196{bottom:196.950000px;}
.y89{bottom:200.370000px;}
.ye8{bottom:202.350000px;}
.ya4{bottom:202.530000px;}
.y2d{bottom:205.230000px;}
.yc4{bottom:211.530000px;}
.y5f{bottom:219.270000px;}
.y88{bottom:220.530000px;}
.ye7{bottom:222.690000px;}
.ya3{bottom:222.870000px;}
.y1d0{bottom:225.030000px;}
.y139{bottom:225.390000px;}
.y2c{bottom:225.570000px;}
.y195{bottom:226.110000px;}
.y14c{bottom:230.430000px;}
.yc3{bottom:231.870000px;}
.y170{bottom:236.910000px;}
.y5e{bottom:239.610000px;}
.y87{bottom:240.870000px;}
.ye6{bottom:242.850000px;}
.y113{bottom:243.030000px;}
.y1cf{bottom:245.370000px;}
.y2b{bottom:245.730000px;}
.y194{bottom:246.450000px;}
.y14b{bottom:247.890000px;}
.ya2{bottom:252.030000px;}
.y138{bottom:254.550000px;}
.y5d{bottom:259.950000px;}
.y86{bottom:261.030000px;}
.ye5{bottom:264.450000px;}
.y14a{bottom:265.530000px;}
.y2a{bottom:266.070000px;}
.y193{bottom:266.610000px;}
.y112{bottom:272.190000px;}
.yc2{bottom:272.370000px;}
.y137{bottom:274.890000px;}
.y5c{bottom:280.110000px;}
.ya1{bottom:281.190000px;}
.y85{bottom:281.370000px;}
.y149{bottom:283.170000px;}
.ye4{bottom:284.610000px;}
.y29{bottom:286.230000px;}
.y111{bottom:288.570000px;}
.y16f{bottom:289.830000px;}
.yc1{bottom:292.530000px;}
.y1ce{bottom:294.690000px;}
.y136{bottom:295.230000px;}
.y192{bottom:295.770000px;}
.y5b{bottom:300.450000px;}
.ya0{bottom:301.530000px;}
.ye3{bottom:304.950000px;}
.y110{bottom:306.210000px;}
.y84{bottom:310.530000px;}
.yc0{bottom:312.870000px;}
.y1cd{bottom:315.030000px;}
.y135{bottom:315.390000px;}
.y191{bottom:316.110000px;}
.y28{bottom:316.290000px;}
.y148{bottom:317.730000px;}
.y5a{bottom:320.610000px;}
.y9f{bottom:321.870000px;}
.y10f{bottom:323.850000px;}
.y16e{bottom:324.210000px;}
.ye2{bottom:325.110000px;}
.y83{bottom:330.870000px;}
.ybf{bottom:333.030000px;}
.y144{bottom:335.370000px;}
.y134{bottom:335.730000px;}
.y190{bottom:336.450000px;}
.y59{bottom:340.950000px;}
.y10e{bottom:341.490000px;}
.y16d{bottom:341.850000px;}
.ye1{bottom:345.450000px;}
.y27{bottom:348.150000px;}
.y82{bottom:351.030000px;}
.ybe{bottom:353.370000px;}
.y133{bottom:355.890000px;}
.y18f{bottom:356.610000px;}
.y10c{bottom:359.130000px;}
.y16c{bottom:359.490000px;}
.y1cc{bottom:364.530000px;}
.ye0{bottom:365.610000px;}
.y58{bottom:371.010000px;}
.y81{bottom:371.370000px;}
.ybd{bottom:373.530000px;}
.y132{bottom:376.230000px;}
.y18e{bottom:376.950000px;}
.y16b{bottom:377.130000px;}
.y26{bottom:377.310000px;}
.y9e{bottom:380.190000px;}
.y1cb{bottom:384.870000px;}
.ydf{bottom:385.950000px;}
.ybc{bottom:393.870000px;}
.y131{bottom:396.390000px;}
.y18d{bottom:397.110000px;}
.y25{bottom:397.650000px;}
.y80{bottom:400.575000px;}
.y57{bottom:402.735000px;}
.y143{bottom:405.075000px;}
.yde{bottom:406.155000px;}
.y10b{bottom:407.235000px;}
.y9d{bottom:409.575000px;}
.ybb{bottom:414.075000px;}
.y130{bottom:416.775000px;}
.y18c{bottom:417.495000px;}
.y24{bottom:418.035000px;}
.y7f{bottom:420.915000px;}
.ydd{bottom:426.495000px;}
.y56{bottom:432.075000px;}
.y142{bottom:434.235000px;}
.yba{bottom:434.415000px;}
.y10a{bottom:436.575000px;}
.y12f{bottom:436.935000px;}
.y23{bottom:438.195000px;}
.y9c{bottom:438.735000px;}
.y7e{bottom:441.075000px;}
.y16a{bottom:442.155000px;}
.y18b{bottom:446.655000px;}
.yb9{bottom:454.575000px;}
.ydc{bottom:455.655000px;}
.y12e{bottom:457.275000px;}
.y55{bottom:461.235000px;}
.y7d{bottom:461.415000px;}
.y169{bottom:462.495000px;}
.y141{bottom:463.575000px;}
.y109{bottom:465.735000px;}
.y18a{bottom:466.995000px;}
.y22{bottom:467.355000px;}
.y9b{bottom:468.075000px;}
.yb8{bottom:474.915000px;}
.y12d{bottom:477.435000px;}
.y7c{bottom:481.575000px;}
.y140{bottom:483.915000px;}
.ydb{bottom:484.815000px;}
.y108{bottom:486.075000px;}
.y189{bottom:487.155000px;}
.y54{bottom:490.575000px;}
.y168{bottom:491.655000px;}
.yb7{bottom:495.075000px;}
.y21{bottom:496.695000px;}
.y9a{bottom:497.235000px;}
.y1ad{bottom:497.595000px;}
.y12c{bottom:497.775000px;}
.y7b{bottom:501.915000px;}
.y13f{bottom:504.075000px;}
.yda{bottom:505.155000px;}
.y107{bottom:506.415000px;}
.y188{bottom:507.495000px;}
.y53{bottom:510.915000px;}
.y167{bottom:511.995000px;}
.yb6{bottom:515.415000px;}
.y12b{bottom:517.935000px;}
.y1ca{bottom:524.235000px;}
.yd9{bottom:525.495000px;}
.y20{bottom:525.855000px;}
.y99{bottom:526.575000px;}
.y1ac{bottom:526.935000px;}
.y187{bottom:527.655000px;}
.y7a{bottom:531.075000px;}
.y166{bottom:532.155000px;}
.y13e{bottom:533.235000px;}
.yb5{bottom:535.575000px;}
.y12a{bottom:538.275000px;}
.y52{bottom:540.075000px;}
.y1c9{bottom:544.575000px;}
.yd8{bottom:545.655000px;}
.y106{bottom:546.915000px;}
.y1ab{bottom:547.275000px;}
.y186{bottom:547.995000px;}
.y79{bottom:551.415000px;}
.y165{bottom:552.495000px;}
.y1f{bottom:555.195000px;}
.y98{bottom:555.735000px;}
.yb4{bottom:555.915000px;}
.y129{bottom:558.435000px;}
.y13d{bottom:562.575000px;}
.y1c8{bottom:564.915000px;}
.yd7{bottom:565.995000px;}
.y105{bottom:567.075000px;}
.y1aa{bottom:567.435000px;}
.y185{bottom:568.155000px;}
.y51{bottom:569.235000px;}
.y78{bottom:571.575000px;}
.y164{bottom:572.655000px;}
.y1e{bottom:575.535000px;}
.yb3{bottom:576.075000px;}
.y184{bottom:584.535000px;}
.y97{bottom:585.075000px;}
.yd6{bottom:586.155000px;}
.y13c{bottom:587.055000px;}
.y128{bottom:587.595000px;}
.y1a9{bottom:587.775000px;}
.y50{bottom:589.575000px;}
.y163{bottom:592.995000px;}
.y1d{bottom:595.695000px;}
.y104{bottom:596.235000px;}
.yb2{bottom:596.415000px;}
.y77{bottom:600.735000px;}
.y123{bottom:603.975000px;}
.yd5{bottom:606.495000px;}
.y1a8{bottom:607.935000px;}
.y103{bottom:612.615000px;}
.y162{bottom:613.155000px;}
.y96{bottom:614.235000px;}
.y1c{bottom:616.035000px;}
.yb1{bottom:616.575000px;}
.y4f{bottom:618.735000px;}
.y183{bottom:619.095000px;}
.y76{bottom:621.075000px;}
.y127{bottom:621.615000px;}
.yd4{bottom:626.655000px;}
.y1a7{bottom:628.275000px;}
.y102{bottom:630.255000px;}
.y161{bottom:633.495000px;}
.y1c7{bottom:634.575000px;}
.y1b{bottom:636.195000px;}
.yb0{bottom:636.915000px;}
.y126{bottom:639.255000px;}
.y75{bottom:641.415000px;}
.y95{bottom:643.575000px;}
.y1a5{bottom:644.475000px;}
.yd3{bottom:646.995000px;}
.y100{bottom:647.895000px;}
.y4e{bottom:648.075000px;}
.y182{bottom:653.505000px;}
.y160{bottom:653.685000px;}
.y1c6{bottom:654.945000px;}
.y1a{bottom:656.565000px;}
.y125{bottom:656.925000px;}
.yaf{bottom:657.105000px;}
.yff{bottom:665.565000px;}
.yd2{bottom:667.185000px;}
.y4d{bottom:668.445000px;}
.y74{bottom:670.605000px;}
.y180{bottom:671.145000px;}
.y94{bottom:672.765000px;}
.y15f{bottom:674.025000px;}
.y11f{bottom:674.565000px;}
.y19{bottom:676.725000px;}
.yae{bottom:677.445000px;}
.y1a4{bottom:679.065000px;}
.yfe{bottom:683.205000px;}
.y1c5{bottom:684.105000px;}
.y1e2{bottom:686.985000px;}
.yd1{bottom:687.525000px;}
.y4c{bottom:688.605000px;}
.y15e{bottom:690.405000px;}
.y73{bottom:690.945000px;}
.y122{bottom:692.205000px;}
.y18{bottom:697.065000px;}
.yad{bottom:697.605000px;}
.y93{bottom:702.105000px;}
.y1c4{bottom:704.445000px;}
.yd0{bottom:707.685000px;}
.y15d{bottom:708.045000px;}
.y4b{bottom:708.945000px;}
.y121{bottom:709.845000px;}
.y72{bottom:711.105000px;}
.y1a3{bottom:713.625000px;}
.yfd{bottom:714.345000px;}
.y17{bottom:717.225000px;}
.yac{bottom:717.945000px;}
.y1e1{bottom:720.645000px;}
.y17e{bottom:722.625000px;}
.y1c3{bottom:724.605000px;}
.y15c{bottom:725.505000px;}
.y120{bottom:727.485000px;}
.ycf{bottom:728.025000px;}
.y4a{bottom:729.105000px;}
.y92{bottom:731.265000px;}
.y71{bottom:731.445000px;}
.y16{bottom:737.565000px;}
.yab{bottom:738.105000px;}
.y17c{bottom:740.265000px;}
.y15b{bottom:743.145000px;}
.yfc{bottom:743.685000px;}
.y11a{bottom:745.125000px;}
.yce{bottom:748.185000px;}
.y49{bottom:749.445000px;}
.y1e0{bottom:749.985000px;}
.y91{bottom:751.605000px;}
.y1c2{bottom:753.765000px;}
.y15{bottom:757.725000px;}
.y17b{bottom:757.905000px;}
.yaa{bottom:758.445000px;}
.y70{bottom:760.605000px;}
.y15a{bottom:760.785000px;}
.y11e{bottom:762.765000px;}
.y1a2{bottom:765.645000px;}
.ycd{bottom:768.525000px;}
.y48{bottom:769.605000px;}
.y1df{bottom:770.325000px;}
.y90{bottom:771.945000px;}
.yfb{bottom:772.845000px;}
.y1c1{bottom:774.105000px;}
.y17a{bottom:775.545000px;}
.y14{bottom:778.065000px;}
.ya9{bottom:778.605000px;}
.y11d{bottom:780.405000px;}
.y6f{bottom:780.945000px;}
.y1a1{bottom:783.285000px;}
.y47{bottom:789.945000px;}
.y1de{bottom:790.485000px;}
.yfa{bottom:793.185000px;}
.y1c0{bottom:794.445000px;}
.y159{bottom:795.345000px;}
.y11c{bottom:798.045000px;}
.y13{bottom:798.225000px;}
.ycc{bottom:798.585000px;}
.y1a0{bottom:800.925000px;}
.y6e{bottom:801.105000px;}
.ya8{bottom:807.765000px;}
.y179{bottom:809.925000px;}
.yf9{bottom:813.525000px;}
.y117{bottom:815.505000px;}
.y12{bottom:818.565000px;}
.y46{bottom:819.105000px;}
.y1dd{bottom:819.645000px;}
.y6d{bottom:821.445000px;}
.y1bf{bottom:824.325000px;}
.y178{bottom:827.565000px;}
.ya7{bottom:828.105000px;}
.y157{bottom:829.905000px;}
.ycb{bottom:830.265000px;}
.y119{bottom:833.145000px;}
.yf8{bottom:833.685000px;}
.y19f{bottom:836.205000px;}
.y1dc{bottom:839.985000px;}
.y8f{bottom:841.605000px;}
.y177{bottom:845.205000px;}
.y45{bottom:848.265000px;}
.y11{bottom:848.445000px;}
.y6c{bottom:850.605000px;}
.y116{bottom:850.785000px;}
.y19e{bottom:853.845000px;}
.yf7{bottom:854.025000px;}
.y1be{bottom:856.185000px;}
.yca{bottom:859.605000px;}
.y1db{bottom:860.325000px;}
.y8e{bottom:861.945000px;}
.y176{bottom:862.845000px;}
.y155{bottom:864.285000px;}
.y44{bottom:868.605000px;}
.y6b{bottom:870.945000px;}
.y19d{bottom:871.485000px;}
.yf6{bottom:874.185000px;}
.yc9{bottom:879.945000px;}
.y10{bottom:880.305000px;}
.y175{bottom:880.485000px;}
.y8d{bottom:882.105000px;}
.y1bd{bottom:885.345000px;}
.y43{bottom:888.945000px;}
.y19c{bottom:889.125000px;}
.y6a{bottom:891.105000px;}
.yf5{bottom:894.525000px;}
.y174{bottom:898.170000px;}
.yc8{bottom:900.150000px;}
.y1bc{bottom:905.730000px;}
.y42{bottom:909.150000px;}
.yf{bottom:909.510000px;}
.y1da{bottom:909.690000px;}
.y8c{bottom:911.310000px;}
.y69{bottom:911.490000px;}
.yf4{bottom:914.730000px;}
.y19b{bottom:920.310000px;}
.yc7{bottom:920.490000px;}
.y1bb{bottom:926.070000px;}
.y154{bottom:929.310000px;}
.y41{bottom:929.490000px;}
.ye{bottom:930.030000px;}
.y68{bottom:940.650000px;}
.yf3{bottom:943.890000px;}
.y1ba{bottom:946.230000px;}
.y40{bottom:949.650000px;}
.y1d9{bottom:950.370000px;}
.yf2{bottom:960.450000px;}
.y67{bottom:960.990000px;}
.y1b9{bottom:966.570000px;}
.y19a{bottom:969.810000px;}
.y3f{bottom:969.990000px;}
.yd{bottom:970.530000px;}
.yf1{bottom:978.090000px;}
.y153{bottom:978.810000px;}
.y1d8{bottom:979.530000px;}
.y66{bottom:981.150000px;}
.y1b8{bottom:986.730000px;}
.y3e{bottom:990.150000px;}
.yf0{bottom:995.550000px;}
.yc{bottom:997.530000px;}
.y152{bottom:999.150000px;}
.y1d7{bottom:999.870000px;}
.y65{bottom:1001.490000px;}
.y1b7{bottom:1007.070000px;}
.yc6{bottom:1010.310000px;}
.y3d{bottom:1010.490000px;}
.yef{bottom:1013.190000px;}
.y151{bottom:1019.490000px;}
.y1d6{bottom:1020.030000px;}
.y115{bottom:1021.650000px;}
.yb{bottom:1024.530000px;}
.y1b6{bottom:1027.230000px;}
.y3c{bottom:1030.650000px;}
.yed{bottom:1030.830000px;}
.y150{bottom:1039.650000px;}
.y114{bottom:1041.990000px;}
.y1b5{bottom:1047.570000px;}
.y1d5{bottom:1049.190000px;}
.y3b{bottom:1050.990000px;}
.ya{bottom:1051.530000px;}
.y8b{bottom:1059.810000px;}
.y14f{bottom:1059.990000px;}
.yec{bottom:1062.150000px;}
.y1b4{bottom:1067.730000px;}
.y1d4{bottom:1069.530000px;}
.y64{bottom:1071.150000px;}
.y3a{bottom:1080.150000px;}
.y9{bottom:1085.730000px;}
.y1b3{bottom:1088.070000px;}
.y1d3{bottom:1089.870000px;}
.yeb{bottom:1091.310000px;}
.y63{bottom:1091.490000px;}
.y39{bottom:1100.490000px;}
.y2{bottom:1101.390000px;}
.y1b2{bottom:1108.230000px;}
.y38{bottom:1120.650000px;}
.y1b1{bottom:1138.290000px;}
.y37{bottom:1140.990000px;}
.y30{bottom:1178.820000px;}
.y1{bottom:1194.120000px;}
.h10{height:16.740000px;}
.hf{height:16.920000px;}
.h11{height:16.956000px;}
.hb{height:22.500000px;}
.hd{height:24.120000px;}
.h18{height:33.660000px;}
.h1c{height:33.696000px;}
.h12{height:33.840000px;}
.h1d{height:33.876000px;}
.h13{height:34.560000px;}
.h3{height:36.571289px;}
.h9{height:41.610234px;}
.ha{height:47.796328px;}
.h7{height:48.761719px;}
.h4{height:50.132812px;}
.h1a{height:50.616000px;}
.h1b{height:50.760000px;}
.h19{height:50.796000px;}
.he{height:52.417969px;}
.h6{height:53.332031px;}
.h17{height:55.260000px;}
.h8{height:58.655391px;}
.h1e{height:60.679688px;}
.h2{height:65.884219px;}
.h5{height:66.676641px;}
.hc{height:67.375547px;}
.h14{height:69.660000px;}
.h15{height:69.840000px;}
.h16{height:69.876000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.536000px;}
.w1e{width:54.900000px;}
.w15{width:57.240000px;}
.w1a{width:59.040000px;}
.w24{width:68.400000px;}
.w1f{width:77.400000px;}
.w16{width:77.580000px;}
.w1b{width:77.760000px;}
.w2b{width:78.840000px;}
.w27{width:84.276000px;}
.w26{width:84.420000px;}
.w2d{width:85.176000px;}
.w1d{width:89.640000px;}
.w18{width:90.180000px;}
.wa{width:92.196000px;}
.w2a{width:99.756000px;}
.w25{width:100.296000px;}
.w20{width:103.896000px;}
.w17{width:104.616000px;}
.w1c{width:110.376000px;}
.wd{width:115.920000px;}
.we{width:116.136000px;}
.w23{width:137.376000px;}
.w12{width:139.536000px;}
.w8{width:139.860000px;}
.w6{width:148.356000px;}
.w28{width:149.400000px;}
.w13{width:149.760000px;}
.w7{width:151.770000px;}
.w11{width:167.970000px;}
.w29{width:173.550000px;}
.w22{width:184.890000px;}
.wc{width:201.270000px;}
.w10{width:219.450000px;}
.w5{width:236.730000px;}
.wf{width:243.210000px;}
.wb{width:261.570000px;}
.w2c{width:289.830000px;}
.w2e{width:302.430000px;}
.w9{width:323.490000px;}
.w21{width:323.670000px;}
.w19{width:339.150000px;}
.w14{width:349.815000px;}
.w4{width:677.340000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:7.740000px;}
.xf{left:10.836000px;}
.x24{left:12.240000px;}
.xe{left:14.040000px;}
.x12{left:15.480000px;}
.x2c{left:19.110000px;}
.x3{left:106.415987px;}
.x6{left:125.135987px;}
.x3f{left:148.895987px;}
.x27{left:164.189987px;}
.x1c{left:165.989987px;}
.x4{left:170.129987px;}
.xc{left:180.209987px;}
.x14{left:183.809987px;}
.x26{left:184.889987px;}
.x20{left:187.409987px;}
.x9{left:200.549987px;}
.x33{left:223.770000px;}
.x7{left:237.449987px;}
.x5{left:240.149987px;}
.x37{left:257.250000px;}
.x32{left:272.054987px;}
.x39{left:278.714987px;}
.x3e{left:286.094987px;}
.x19{left:289.154987px;}
.x1d{left:309.135000px;}
.x3d{left:322.094987px;}
.x21{left:327.315000px;}
.x13{left:342.614987px;}
.x16{left:344.595000px;}
.x8{left:353.234987px;}
.x34{left:361.875000px;}
.x10{left:367.454987px;}
.xb{left:390.134987px;}
.x11{left:396.074987px;}
.x3a{left:397.695000px;}
.xa{left:409.394987px;}
.x1e{left:425.775000px;}
.x1a{left:431.535000px;}
.x1{left:446.504987px;}
.x28{left:457.665000px;}
.x3b{left:483.585000px;}
.x17{left:493.665000px;}
.x22{left:496.005000px;}
.x2d{left:506.805000px;}
.x30{left:513.465000px;}
.x29{left:515.625000px;}
.x1b{left:524.445000px;}
.x35{left:532.005000px;}
.x1f{left:542.805000px;}
.x2e{left:585.285000px;}
.x31{left:591.765000px;}
.x2a{left:593.925000px;}
.x36{left:617.145000px;}
.x23{left:636.270000px;}
.x18{left:646.170000px;}
.x3c{left:689.549987px;}
.x2f{left:696.390000px;}
.x2b{left:699.270000px;}
.x38{left:702.150000px;}
.x25{left:784.589987px;}
.x2{left:786.749987px;}
.xd{left:789.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.244267pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.028800pt;}
.lsc{letter-spacing:0.046720pt;}
.ls0{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.117867pt;}
.ls7{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.212480pt;}
.ls10{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.280533pt;}
.lsd{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.457067pt;}
.ls4{letter-spacing:0.554667pt;}
.lsb{letter-spacing:0.704000pt;}
.ls13{letter-spacing:76.160000pt;}
.lsa{letter-spacing:124.266667pt;}
.ls8{letter-spacing:152.891307pt;}
.ws0{word-spacing:-64.000000pt;}
.ws9{word-spacing:-53.120000pt;}
.ws7{word-spacing:-21.246933pt;}
.wsd{word-spacing:-20.995200pt;}
.ws1{word-spacing:-18.720000pt;}
.wse{word-spacing:-16.256000pt;}
.ws8{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.552000pt;}
.ws6{word-spacing:-15.330667pt;}
.wsf{word-spacing:-13.397867pt;}
.wsb{word-spacing:-13.326720pt;}
.wsc{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.035733pt;}
.ws5{word-spacing:0.000000pt;}
._18{margin-left:-4.608000pt;}
._f{margin-left:-3.200000pt;}
._7{margin-left:-1.968000pt;}
._0{margin-left:-0.912000pt;}
._3{width:0.906667pt;}
._1{width:2.165333pt;}
._2{width:3.264000pt;}
._6{width:4.544000pt;}
._c{width:5.888000pt;}
._16{width:6.784000pt;}
._d{width:7.680000pt;}
._e{width:8.640000pt;}
._10{width:10.368000pt;}
._13{width:11.264000pt;}
._12{width:12.160000pt;}
._1f{width:13.088000pt;}
._17{width:13.984000pt;}
._1e{width:15.077333pt;}
._11{width:16.970667pt;}
._a{width:18.368000pt;}
._b{width:19.392000pt;}
._9{width:20.288000pt;}
._8{width:21.248000pt;}
._15{width:23.082667pt;}
._14{width:24.384000pt;}
._20{width:25.656960pt;}
._21{width:26.821973pt;}
._1c{width:28.160000pt;}
._1d{width:29.632000pt;}
._2f{width:30.592000pt;}
._19{width:32.362667pt;}
._23{width:35.856000pt;}
._29{width:38.336000pt;}
._28{width:39.488000pt;}
._26{width:41.121280pt;}
._25{width:42.224000pt;}
._24{width:43.584000pt;}
._1b{width:46.336000pt;}
._22{width:53.275733pt;}
._2a{width:71.040000pt;}
._2e{width:75.594667pt;}
._2d{width:76.608000pt;}
._2c{width:86.784000pt;}
._2b{width:88.128000pt;}
._27{width:108.364800pt;}
._1a{width:172.800000pt;}
._5{width:418.592000pt;}
._4{width:1274.517333pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:1.600000pt;}
.yee{bottom:3.520000pt;}
.y101{bottom:3.546667pt;}
.y36{bottom:7.200000pt;}
.y147{bottom:7.680000pt;}
.y17d{bottom:14.880000pt;}
.y17f{bottom:15.040000pt;}
.y158{bottom:18.400000pt;}
.y10d{bottom:18.560000pt;}
.y1a6{bottom:18.586667pt;}
.y118{bottom:19.200000pt;}
.y146{bottom:22.720000pt;}
.y181{bottom:33.600000pt;}
.y156{bottom:33.640000pt;}
.y145{bottom:37.600000pt;}
.y32{bottom:46.080000pt;}
.y11b{bottom:50.560000pt;}
.y124{bottom:50.586667pt;}
.y8{bottom:51.200000pt;}
.y35{bottom:60.160000pt;}
.y33{bottom:66.400000pt;}
.y7{bottom:68.320000pt;}
.y6{bottom:81.760000pt;}
.y5{bottom:95.360000pt;}
.y4{bottom:108.800000pt;}
.y31{bottom:108.960000pt;}
.y199{bottom:120.960000pt;}
.y1b0{bottom:122.080000pt;}
.y3{bottom:122.240000pt;}
.yc5{bottom:126.080000pt;}
.y13b{bottom:128.320000pt;}
.y173{bottom:132.800000pt;}
.y62{bottom:132.960000pt;}
.y1d2{bottom:137.946667pt;}
.y198{bottom:139.066667pt;}
.yea{bottom:143.866667pt;}
.ya6{bottom:144.026667pt;}
.y2f{bottom:146.426667pt;}
.y172{bottom:148.506667pt;}
.y1af{bottom:150.266667pt;}
.y61{bottom:151.066667pt;}
.y1d1{bottom:156.026667pt;}
.y197{bottom:156.986667pt;}
.y14e{bottom:158.426667pt;}
.y8a{bottom:160.026667pt;}
.ye9{bottom:161.946667pt;}
.ya5{bottom:162.106667pt;}
.y171{bottom:164.186667pt;}
.y13a{bottom:164.346667pt;}
.y2e{bottom:164.506667pt;}
.y60{bottom:168.986667pt;}
.y1ae{bottom:172.186667pt;}
.y14d{bottom:174.106667pt;}
.y196{bottom:175.066667pt;}
.y89{bottom:178.106667pt;}
.ye8{bottom:179.866667pt;}
.ya4{bottom:180.026667pt;}
.y2d{bottom:182.426667pt;}
.yc4{bottom:188.026667pt;}
.y5f{bottom:194.906667pt;}
.y88{bottom:196.026667pt;}
.ye7{bottom:197.946667pt;}
.ya3{bottom:198.106667pt;}
.y1d0{bottom:200.026667pt;}
.y139{bottom:200.346667pt;}
.y2c{bottom:200.506667pt;}
.y195{bottom:200.986667pt;}
.y14c{bottom:204.826667pt;}
.yc3{bottom:206.106667pt;}
.y170{bottom:210.586667pt;}
.y5e{bottom:212.986667pt;}
.y87{bottom:214.106667pt;}
.ye6{bottom:215.866667pt;}
.y113{bottom:216.026667pt;}
.y1cf{bottom:218.106667pt;}
.y2b{bottom:218.426667pt;}
.y194{bottom:219.066667pt;}
.y14b{bottom:220.346667pt;}
.ya2{bottom:224.026667pt;}
.y138{bottom:226.266667pt;}
.y5d{bottom:231.066667pt;}
.y86{bottom:232.026667pt;}
.ye5{bottom:235.066667pt;}
.y14a{bottom:236.026667pt;}
.y2a{bottom:236.506667pt;}
.y193{bottom:236.986667pt;}
.y112{bottom:241.946667pt;}
.yc2{bottom:242.106667pt;}
.y137{bottom:244.346667pt;}
.y5c{bottom:248.986667pt;}
.ya1{bottom:249.946667pt;}
.y85{bottom:250.106667pt;}
.y149{bottom:251.706667pt;}
.ye4{bottom:252.986667pt;}
.y29{bottom:254.426667pt;}
.y111{bottom:256.506667pt;}
.y16f{bottom:257.626667pt;}
.yc1{bottom:260.026667pt;}
.y1ce{bottom:261.946667pt;}
.y136{bottom:262.426667pt;}
.y192{bottom:262.906667pt;}
.y5b{bottom:267.066667pt;}
.ya0{bottom:268.026667pt;}
.ye3{bottom:271.066667pt;}
.y110{bottom:272.186667pt;}
.y84{bottom:276.026667pt;}
.yc0{bottom:278.106667pt;}
.y1cd{bottom:280.026667pt;}
.y135{bottom:280.346667pt;}
.y191{bottom:280.986667pt;}
.y28{bottom:281.146667pt;}
.y148{bottom:282.426667pt;}
.y5a{bottom:284.986667pt;}
.y9f{bottom:286.106667pt;}
.y10f{bottom:287.866667pt;}
.y16e{bottom:288.186667pt;}
.ye2{bottom:288.986667pt;}
.y83{bottom:294.106667pt;}
.ybf{bottom:296.026667pt;}
.y144{bottom:298.106667pt;}
.y134{bottom:298.426667pt;}
.y190{bottom:299.066667pt;}
.y59{bottom:303.066667pt;}
.y10e{bottom:303.546667pt;}
.y16d{bottom:303.866667pt;}
.ye1{bottom:307.066667pt;}
.y27{bottom:309.466667pt;}
.y82{bottom:312.026667pt;}
.ybe{bottom:314.106667pt;}
.y133{bottom:316.346667pt;}
.y18f{bottom:316.986667pt;}
.y10c{bottom:319.226667pt;}
.y16c{bottom:319.546667pt;}
.y1cc{bottom:324.026667pt;}
.ye0{bottom:324.986667pt;}
.y58{bottom:329.786667pt;}
.y81{bottom:330.106667pt;}
.ybd{bottom:332.026667pt;}
.y132{bottom:334.426667pt;}
.y18e{bottom:335.066667pt;}
.y16b{bottom:335.226667pt;}
.y26{bottom:335.386667pt;}
.y9e{bottom:337.946667pt;}
.y1cb{bottom:342.106667pt;}
.ydf{bottom:343.066667pt;}
.ybc{bottom:350.106667pt;}
.y131{bottom:352.346667pt;}
.y18d{bottom:352.986667pt;}
.y25{bottom:353.466667pt;}
.y80{bottom:356.066667pt;}
.y57{bottom:357.986667pt;}
.y143{bottom:360.066667pt;}
.yde{bottom:361.026667pt;}
.y10b{bottom:361.986667pt;}
.y9d{bottom:364.066667pt;}
.ybb{bottom:368.066667pt;}
.y130{bottom:370.466667pt;}
.y18c{bottom:371.106667pt;}
.y24{bottom:371.586667pt;}
.y7f{bottom:374.146667pt;}
.ydd{bottom:379.106667pt;}
.y56{bottom:384.066667pt;}
.y142{bottom:385.986667pt;}
.yba{bottom:386.146667pt;}
.y10a{bottom:388.066667pt;}
.y12f{bottom:388.386667pt;}
.y23{bottom:389.506667pt;}
.y9c{bottom:389.986667pt;}
.y7e{bottom:392.066667pt;}
.y16a{bottom:393.026667pt;}
.y18b{bottom:397.026667pt;}
.yb9{bottom:404.066667pt;}
.ydc{bottom:405.026667pt;}
.y12e{bottom:406.466667pt;}
.y55{bottom:409.986667pt;}
.y7d{bottom:410.146667pt;}
.y169{bottom:411.106667pt;}
.y141{bottom:412.066667pt;}
.y109{bottom:413.986667pt;}
.y18a{bottom:415.106667pt;}
.y22{bottom:415.426667pt;}
.y9b{bottom:416.066667pt;}
.yb8{bottom:422.146667pt;}
.y12d{bottom:424.386667pt;}
.y7c{bottom:428.066667pt;}
.y140{bottom:430.146667pt;}
.ydb{bottom:430.946667pt;}
.y108{bottom:432.066667pt;}
.y189{bottom:433.026667pt;}
.y54{bottom:436.066667pt;}
.y168{bottom:437.026667pt;}
.yb7{bottom:440.066667pt;}
.y21{bottom:441.506667pt;}
.y9a{bottom:441.986667pt;}
.y1ad{bottom:442.306667pt;}
.y12c{bottom:442.466667pt;}
.y7b{bottom:446.146667pt;}
.y13f{bottom:448.066667pt;}
.yda{bottom:449.026667pt;}
.y107{bottom:450.146667pt;}
.y188{bottom:451.106667pt;}
.y53{bottom:454.146667pt;}
.y167{bottom:455.106667pt;}
.yb6{bottom:458.146667pt;}
.y12b{bottom:460.386667pt;}
.y1ca{bottom:465.986667pt;}
.yd9{bottom:467.106667pt;}
.y20{bottom:467.426667pt;}
.y99{bottom:468.066667pt;}
.y1ac{bottom:468.386667pt;}
.y187{bottom:469.026667pt;}
.y7a{bottom:472.066667pt;}
.y166{bottom:473.026667pt;}
.y13e{bottom:473.986667pt;}
.yb5{bottom:476.066667pt;}
.y12a{bottom:478.466667pt;}
.y52{bottom:480.066667pt;}
.y1c9{bottom:484.066667pt;}
.yd8{bottom:485.026667pt;}
.y106{bottom:486.146667pt;}
.y1ab{bottom:486.466667pt;}
.y186{bottom:487.106667pt;}
.y79{bottom:490.146667pt;}
.y165{bottom:491.106667pt;}
.y1f{bottom:493.506667pt;}
.y98{bottom:493.986667pt;}
.yb4{bottom:494.146667pt;}
.y129{bottom:496.386667pt;}
.y13d{bottom:500.066667pt;}
.y1c8{bottom:502.146667pt;}
.yd7{bottom:503.106667pt;}
.y105{bottom:504.066667pt;}
.y1aa{bottom:504.386667pt;}
.y185{bottom:505.026667pt;}
.y51{bottom:505.986667pt;}
.y78{bottom:508.066667pt;}
.y164{bottom:509.026667pt;}
.y1e{bottom:511.586667pt;}
.yb3{bottom:512.066667pt;}
.y184{bottom:519.586667pt;}
.y97{bottom:520.066667pt;}
.yd6{bottom:521.026667pt;}
.y13c{bottom:521.826667pt;}
.y128{bottom:522.306667pt;}
.y1a9{bottom:522.466667pt;}
.y50{bottom:524.066667pt;}
.y163{bottom:527.106667pt;}
.y1d{bottom:529.506667pt;}
.y104{bottom:529.986667pt;}
.yb2{bottom:530.146667pt;}
.y77{bottom:533.986667pt;}
.y123{bottom:536.866667pt;}
.yd5{bottom:539.106667pt;}
.y1a8{bottom:540.386667pt;}
.y103{bottom:544.546667pt;}
.y162{bottom:545.026667pt;}
.y96{bottom:545.986667pt;}
.y1c{bottom:547.586667pt;}
.yb1{bottom:548.066667pt;}
.y4f{bottom:549.986667pt;}
.y183{bottom:550.306667pt;}
.y76{bottom:552.066667pt;}
.y127{bottom:552.546667pt;}
.yd4{bottom:557.026667pt;}
.y1a7{bottom:558.466667pt;}
.y102{bottom:560.226667pt;}
.y161{bottom:563.106667pt;}
.y1c7{bottom:564.066667pt;}
.y1b{bottom:565.506667pt;}
.yb0{bottom:566.146667pt;}
.y126{bottom:568.226667pt;}
.y75{bottom:570.146667pt;}
.y95{bottom:572.066667pt;}
.y1a5{bottom:572.866667pt;}
.yd3{bottom:575.106667pt;}
.y100{bottom:575.906667pt;}
.y4e{bottom:576.066667pt;}
.y182{bottom:580.893333pt;}
.y160{bottom:581.053333pt;}
.y1c6{bottom:582.173333pt;}
.y1a{bottom:583.613333pt;}
.y125{bottom:583.933333pt;}
.yaf{bottom:584.093333pt;}
.yff{bottom:591.613333pt;}
.yd2{bottom:593.053333pt;}
.y4d{bottom:594.173333pt;}
.y74{bottom:596.093333pt;}
.y180{bottom:596.573333pt;}
.y94{bottom:598.013333pt;}
.y15f{bottom:599.133333pt;}
.y11f{bottom:599.613333pt;}
.y19{bottom:601.533333pt;}
.yae{bottom:602.173333pt;}
.y1a4{bottom:603.613333pt;}
.yfe{bottom:607.293333pt;}
.y1c5{bottom:608.093333pt;}
.y1e2{bottom:610.653333pt;}
.yd1{bottom:611.133333pt;}
.y4c{bottom:612.093333pt;}
.y15e{bottom:613.693333pt;}
.y73{bottom:614.173333pt;}
.y122{bottom:615.293333pt;}
.y18{bottom:619.613333pt;}
.yad{bottom:620.093333pt;}
.y93{bottom:624.093333pt;}
.y1c4{bottom:626.173333pt;}
.yd0{bottom:629.053333pt;}
.y15d{bottom:629.373333pt;}
.y4b{bottom:630.173333pt;}
.y121{bottom:630.973333pt;}
.y72{bottom:632.093333pt;}
.y1a3{bottom:634.333333pt;}
.yfd{bottom:634.973333pt;}
.y17{bottom:637.533333pt;}
.yac{bottom:638.173333pt;}
.y1e1{bottom:640.573333pt;}
.y17e{bottom:642.333333pt;}
.y1c3{bottom:644.093333pt;}
.y15c{bottom:644.893333pt;}
.y120{bottom:646.653333pt;}
.ycf{bottom:647.133333pt;}
.y4a{bottom:648.093333pt;}
.y92{bottom:650.013333pt;}
.y71{bottom:650.173333pt;}
.y16{bottom:655.613333pt;}
.yab{bottom:656.093333pt;}
.y17c{bottom:658.013333pt;}
.y15b{bottom:660.573333pt;}
.yfc{bottom:661.053333pt;}
.y11a{bottom:662.333333pt;}
.yce{bottom:665.053333pt;}
.y49{bottom:666.173333pt;}
.y1e0{bottom:666.653333pt;}
.y91{bottom:668.093333pt;}
.y1c2{bottom:670.013333pt;}
.y15{bottom:673.533333pt;}
.y17b{bottom:673.693333pt;}
.yaa{bottom:674.173333pt;}
.y70{bottom:676.093333pt;}
.y15a{bottom:676.253333pt;}
.y11e{bottom:678.013333pt;}
.y1a2{bottom:680.573333pt;}
.ycd{bottom:683.133333pt;}
.y48{bottom:684.093333pt;}
.y1df{bottom:684.733333pt;}
.y90{bottom:686.173333pt;}
.yfb{bottom:686.973333pt;}
.y1c1{bottom:688.093333pt;}
.y17a{bottom:689.373333pt;}
.y14{bottom:691.613333pt;}
.ya9{bottom:692.093333pt;}
.y11d{bottom:693.693333pt;}
.y6f{bottom:694.173333pt;}
.y1a1{bottom:696.253333pt;}
.y47{bottom:702.173333pt;}
.y1de{bottom:702.653333pt;}
.yfa{bottom:705.053333pt;}
.y1c0{bottom:706.173333pt;}
.y159{bottom:706.973333pt;}
.y11c{bottom:709.373333pt;}
.y13{bottom:709.533333pt;}
.ycc{bottom:709.853333pt;}
.y1a0{bottom:711.933333pt;}
.y6e{bottom:712.093333pt;}
.ya8{bottom:718.013333pt;}
.y179{bottom:719.933333pt;}
.yf9{bottom:723.133333pt;}
.y117{bottom:724.893333pt;}
.y12{bottom:727.613333pt;}
.y46{bottom:728.093333pt;}
.y1dd{bottom:728.573333pt;}
.y6d{bottom:730.173333pt;}
.y1bf{bottom:732.733333pt;}
.y178{bottom:735.613333pt;}
.ya7{bottom:736.093333pt;}
.y157{bottom:737.693333pt;}
.ycb{bottom:738.013333pt;}
.y119{bottom:740.573333pt;}
.yf8{bottom:741.053333pt;}
.y19f{bottom:743.293333pt;}
.y1dc{bottom:746.653333pt;}
.y8f{bottom:748.093333pt;}
.y177{bottom:751.293333pt;}
.y45{bottom:754.013333pt;}
.y11{bottom:754.173333pt;}
.y6c{bottom:756.093333pt;}
.y116{bottom:756.253333pt;}
.y19e{bottom:758.973333pt;}
.yf7{bottom:759.133333pt;}
.y1be{bottom:761.053333pt;}
.yca{bottom:764.093333pt;}
.y1db{bottom:764.733333pt;}
.y8e{bottom:766.173333pt;}
.y176{bottom:766.973333pt;}
.y155{bottom:768.253333pt;}
.y44{bottom:772.093333pt;}
.y6b{bottom:774.173333pt;}
.y19d{bottom:774.653333pt;}
.yf6{bottom:777.053333pt;}
.yc9{bottom:782.173333pt;}
.y10{bottom:782.493333pt;}
.y175{bottom:782.653333pt;}
.y8d{bottom:784.093333pt;}
.y1bd{bottom:786.973333pt;}
.y43{bottom:790.173333pt;}
.y19c{bottom:790.333333pt;}
.y6a{bottom:792.093333pt;}
.yf5{bottom:795.133333pt;}
.y174{bottom:798.373333pt;}
.yc8{bottom:800.133333pt;}
.y1bc{bottom:805.093333pt;}
.y42{bottom:808.133333pt;}
.yf{bottom:808.453333pt;}
.y1da{bottom:808.613333pt;}
.y8c{bottom:810.053333pt;}
.y69{bottom:810.213333pt;}
.yf4{bottom:813.093333pt;}
.y19b{bottom:818.053333pt;}
.yc7{bottom:818.213333pt;}
.y1bb{bottom:823.173333pt;}
.y154{bottom:826.053333pt;}
.y41{bottom:826.213333pt;}
.ye{bottom:826.693333pt;}
.y68{bottom:836.133333pt;}
.yf3{bottom:839.013333pt;}
.y1ba{bottom:841.093333pt;}
.y40{bottom:844.133333pt;}
.y1d9{bottom:844.773333pt;}
.yf2{bottom:853.733333pt;}
.y67{bottom:854.213333pt;}
.y1b9{bottom:859.173333pt;}
.y19a{bottom:862.053333pt;}
.y3f{bottom:862.213333pt;}
.yd{bottom:862.693333pt;}
.yf1{bottom:869.413333pt;}
.y153{bottom:870.053333pt;}
.y1d8{bottom:870.693333pt;}
.y66{bottom:872.133333pt;}
.y1b8{bottom:877.093333pt;}
.y3e{bottom:880.133333pt;}
.yf0{bottom:884.933333pt;}
.yc{bottom:886.693333pt;}
.y152{bottom:888.133333pt;}
.y1d7{bottom:888.773333pt;}
.y65{bottom:890.213333pt;}
.y1b7{bottom:895.173333pt;}
.yc6{bottom:898.053333pt;}
.y3d{bottom:898.213333pt;}
.yef{bottom:900.613333pt;}
.y151{bottom:906.213333pt;}
.y1d6{bottom:906.693333pt;}
.y115{bottom:908.133333pt;}
.yb{bottom:910.693333pt;}
.y1b6{bottom:913.093333pt;}
.y3c{bottom:916.133333pt;}
.yed{bottom:916.293333pt;}
.y150{bottom:924.133333pt;}
.y114{bottom:926.213333pt;}
.y1b5{bottom:931.173333pt;}
.y1d5{bottom:932.613333pt;}
.y3b{bottom:934.213333pt;}
.ya{bottom:934.693333pt;}
.y8b{bottom:942.053333pt;}
.y14f{bottom:942.213333pt;}
.yec{bottom:944.133333pt;}
.y1b4{bottom:949.093333pt;}
.y1d4{bottom:950.693333pt;}
.y64{bottom:952.133333pt;}
.y3a{bottom:960.133333pt;}
.y9{bottom:965.093333pt;}
.y1b3{bottom:967.173333pt;}
.y1d3{bottom:968.773333pt;}
.yeb{bottom:970.053333pt;}
.y63{bottom:970.213333pt;}
.y39{bottom:978.213333pt;}
.y2{bottom:979.013333pt;}
.y1b2{bottom:985.093333pt;}
.y38{bottom:996.133333pt;}
.y1b1{bottom:1011.813333pt;}
.y37{bottom:1014.213333pt;}
.y30{bottom:1047.840000pt;}
.y1{bottom:1061.440000pt;}
.h10{height:14.880000pt;}
.hf{height:15.040000pt;}
.h11{height:15.072000pt;}
.hb{height:20.000000pt;}
.hd{height:21.440000pt;}
.h18{height:29.920000pt;}
.h1c{height:29.952000pt;}
.h12{height:30.080000pt;}
.h1d{height:30.112000pt;}
.h13{height:30.720000pt;}
.h3{height:32.507812pt;}
.h9{height:36.986875pt;}
.ha{height:42.485625pt;}
.h7{height:43.343750pt;}
.h4{height:44.562500pt;}
.h1a{height:44.992000pt;}
.h1b{height:45.120000pt;}
.h19{height:45.152000pt;}
.he{height:46.593750pt;}
.h6{height:47.406250pt;}
.h17{height:49.120000pt;}
.h8{height:52.138125pt;}
.h1e{height:53.937500pt;}
.h2{height:58.563750pt;}
.h5{height:59.268125pt;}
.hc{height:59.889375pt;}
.h14{height:61.920000pt;}
.h15{height:62.080000pt;}
.h16{height:62.112000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.032000pt;}
.w1e{width:48.800000pt;}
.w15{width:50.880000pt;}
.w1a{width:52.480000pt;}
.w24{width:60.800000pt;}
.w1f{width:68.800000pt;}
.w16{width:68.960000pt;}
.w1b{width:69.120000pt;}
.w2b{width:70.080000pt;}
.w27{width:74.912000pt;}
.w26{width:75.040000pt;}
.w2d{width:75.712000pt;}
.w1d{width:79.680000pt;}
.w18{width:80.160000pt;}
.wa{width:81.952000pt;}
.w2a{width:88.672000pt;}
.w25{width:89.152000pt;}
.w20{width:92.352000pt;}
.w17{width:92.992000pt;}
.w1c{width:98.112000pt;}
.wd{width:103.040000pt;}
.we{width:103.232000pt;}
.w23{width:122.112000pt;}
.w12{width:124.032000pt;}
.w8{width:124.320000pt;}
.w6{width:131.872000pt;}
.w28{width:132.800000pt;}
.w13{width:133.120000pt;}
.w7{width:134.906667pt;}
.w11{width:149.306667pt;}
.w29{width:154.266667pt;}
.w22{width:164.346667pt;}
.wc{width:178.906667pt;}
.w10{width:195.066667pt;}
.w5{width:210.426667pt;}
.wf{width:216.186667pt;}
.wb{width:232.506667pt;}
.w2c{width:257.626667pt;}
.w2e{width:268.826667pt;}
.w9{width:287.546667pt;}
.w21{width:287.706667pt;}
.w19{width:301.466667pt;}
.w14{width:310.946667pt;}
.w4{width:602.080000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.880000pt;}
.xf{left:9.632000pt;}
.x24{left:10.880000pt;}
.xe{left:12.480000pt;}
.x12{left:13.760000pt;}
.x2c{left:16.986667pt;}
.x3{left:94.591988pt;}
.x6{left:111.231988pt;}
.x3f{left:132.351988pt;}
.x27{left:145.946655pt;}
.x1c{left:147.546655pt;}
.x4{left:151.226655pt;}
.xc{left:160.186655pt;}
.x14{left:163.386655pt;}
.x26{left:164.346655pt;}
.x20{left:166.586655pt;}
.x9{left:178.266655pt;}
.x33{left:198.906667pt;}
.x7{left:211.066655pt;}
.x5{left:213.466655pt;}
.x37{left:228.666667pt;}
.x32{left:241.826655pt;}
.x39{left:247.746655pt;}
.x3e{left:254.306655pt;}
.x19{left:257.026655pt;}
.x1d{left:274.786667pt;}
.x3d{left:286.306655pt;}
.x21{left:290.946667pt;}
.x13{left:304.546655pt;}
.x16{left:306.306667pt;}
.x8{left:313.986655pt;}
.x34{left:321.666667pt;}
.x10{left:326.626655pt;}
.xb{left:346.786655pt;}
.x11{left:352.066655pt;}
.x3a{left:353.506667pt;}
.xa{left:363.906655pt;}
.x1e{left:378.466667pt;}
.x1a{left:383.586667pt;}
.x1{left:396.893322pt;}
.x28{left:406.813333pt;}
.x3b{left:429.853333pt;}
.x17{left:438.813333pt;}
.x22{left:440.893333pt;}
.x2d{left:450.493333pt;}
.x30{left:456.413333pt;}
.x29{left:458.333333pt;}
.x1b{left:466.173333pt;}
.x35{left:472.893333pt;}
.x1f{left:482.493333pt;}
.x2e{left:520.253333pt;}
.x31{left:526.013333pt;}
.x2a{left:527.933333pt;}
.x36{left:548.573333pt;}
.x23{left:565.573333pt;}
.x18{left:574.373333pt;}
.x3c{left:612.933322pt;}
.x2f{left:619.013333pt;}
.x2b{left:621.573333pt;}
.x38{left:624.133333pt;}
.x25{left:697.413322pt;}
.x2{left:699.333322pt;}
.xd{left:701.413333pt;}
}




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