
    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_17b0f4e8e0f0b3fd31fcaafd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_dab3af9a1d6a92d3b5b389ce.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b3bde9d446c02a01caa31582.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.119629;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_8a5b80d423776c7eb652c128.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_85218e3ca1f7beb238db5653.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4affebd1611d9d649aefdaab.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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_1b5518a83ed823a97dc1e6ac.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ffbf3f98a17e45cf8c1ff66d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ad9a612607393915c4085d19.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_556e515a0073ac0f87abd1c0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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.245684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245684,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247457,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);}
.v1{vertical-align:-76.320000px;}
.v3{vertical-align:-30.240000px;}
.v4{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.360000px;}
.v2{vertical-align:30.240000px;}
.ls7{letter-spacing:-1.008000px;}
.ls8{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.612000px;}
.ls19{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.108000px;}
.lsd{letter-spacing:-0.017280px;}
.lsc{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.lse{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.149760px;}
.ls14{letter-spacing:0.162000px;}
.ls2{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.259800px;}
.ls16{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls3{letter-spacing:1.049760px;}
.ls17{letter-spacing:20.340000px;}
.ls18{letter-spacing:25.308000px;}
.lsb{letter-spacing:52.668000px;}
.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;}
}
.ws5{word-spacing:-19.457280px;}
.ws7{word-spacing:-19.431360px;}
.ws3{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.840000px;}
.ws1{word-spacing:-14.940000px;}
.ws8{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.824000px;}
.wsa{word-spacing:-13.716000px;}
.ws11{word-spacing:-13.608000px;}
.wse{word-spacing:-13.518000px;}
.ws0{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.392000px;}
.wsb{word-spacing:-13.284000px;}
.wsd{word-spacing:-12.996000px;}
.ws2{word-spacing:-10.440000px;}
.ws9{word-spacing:-9.072000px;}
.wsc{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
._26{margin-left:-5.447040px;}
._25{margin-left:-4.025520px;}
._3{margin-left:-2.078640px;}
._0{margin-left:-1.026000px;}
._1{width:1.146000px;}
._e{width:2.189760px;}
._9{width:3.253200px;}
._7{width:4.380240px;}
._16{width:5.592960px;}
._8{width:6.932160px;}
._b{width:8.126400px;}
._5{width:9.252240px;}
._6{width:10.391280px;}
._a{width:11.414160px;}
._d{width:12.918000px;}
._4{width:13.924080px;}
._c{width:15.941040px;}
._f{width:17.928000px;}
._1a{width:18.954000px;}
._10{width:20.250000px;}
._17{width:22.140000px;}
._18{width:23.328000px;}
._19{width:24.516000px;}
._1c{width:25.596000px;}
._11{width:26.838000px;}
._14{width:28.404000px;}
._15{width:29.532000px;}
._23{width:30.618000px;}
._12{width:31.860000px;}
._13{width:32.982000px;}
._2d{width:34.032000px;}
._30{width:35.424000px;}
._2b{width:36.522000px;}
._1b{width:37.908000px;}
._27{width:40.446000px;}
._1d{width:42.854640px;}
._1e{width:44.008080px;}
._20{width:45.349920px;}
._22{width:46.764000px;}
._21{width:48.204000px;}
._1f{width:49.256640px;}
._2c{width:51.042000px;}
._2a{width:65.628000px;}
._2f{width:66.956640px;}
._31{width:79.334640px;}
._28{width:80.514000px;}
._29{width:82.404000px;}
._33{width:96.984000px;}
._34{width:124.662000px;}
._2e{width:127.340640px;}
._32{width:136.722000px;}
._24{width:202.491120px;}
._2{width:1224.300000px;}
.fc8{color:rgb(206,8,39);}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fsb{font-size:67.279026px;}
.fsa{font-size:67.513578px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs7{font-size:87.120000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y130{bottom:3.087587px;}
.yea{bottom:3.098351px;}
.y131{bottom:6.825000px;}
.y147{bottom:6.840000px;}
.y162{bottom:7.020000px;}
.yeb{bottom:8.625000px;}
.y102{bottom:8.640000px;}
.ye7{bottom:9.705000px;}
.yc3{bottom:9.720000px;}
.y165{bottom:9.900000px;}
.yed{bottom:10.065000px;}
.yc6{bottom:10.080000px;}
.y11b{bottom:10.110000px;}
.y166{bottom:10.260000px;}
.ye8{bottom:14.205000px;}
.y100{bottom:14.220000px;}
.y135{bottom:14.565000px;}
.y14b{bottom:14.580000px;}
.y12e{bottom:15.465000px;}
.y145{bottom:15.480000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.yc5{bottom:27.900000px;}
.yca{bottom:27.945000px;}
.yc8{bottom:28.080000px;}
.y5{bottom:39.780000px;}
.y1{bottom:60.660000px;}
.y3e{bottom:70.380000px;}
.y3d{bottom:90.180000px;}
.y1d2{bottom:103.140000px;}
.y13f{bottom:106.920000px;}
.y1bc{bottom:107.460000px;}
.yfc{bottom:108.000000px;}
.y2d{bottom:109.260000px;}
.y3c{bottom:110.010000px;}
.yf5{bottom:116.820000px;}
.y7b{bottom:117.180000px;}
.y2e{bottom:118.620000px;}
.y13e{bottom:124.740000px;}
.y1bb{bottom:125.280000px;}
.yfb{bottom:125.820000px;}
.y2c{bottom:127.080000px;}
.y3b{bottom:129.990000px;}
.y182{bottom:132.840000px;}
.y141{bottom:133.560000px;}
.yf4{bottom:134.640000px;}
.y7a{bottom:135.000000px;}
.y40{bottom:140.040000px;}
.y13d{bottom:142.560000px;}
.y1ba{bottom:143.100000px;}
.yfa{bottom:143.640000px;}
.y2b{bottom:144.900000px;}
.y3a{bottom:149.790000px;}
.y181{bottom:150.660000px;}
.y140{bottom:151.380000px;}
.y198{bottom:151.560000px;}
.yf3{bottom:152.460000px;}
.y79{bottom:153.000000px;}
.y1d1{bottom:155.340000px;}
.y13c{bottom:160.380000px;}
.y1b9{bottom:161.100000px;}
.yf9{bottom:161.460000px;}
.y2a{bottom:162.720000px;}
.y180{bottom:168.480000px;}
.y3f{bottom:169.200000px;}
.y197{bottom:169.380000px;}
.y39{bottom:169.590000px;}
.yf2{bottom:170.280000px;}
.y78{bottom:170.820000px;}
.y13b{bottom:178.380000px;}
.y1b8{bottom:178.920000px;}
.yf8{bottom:179.280000px;}
.y29{bottom:180.540000px;}
.y17f{bottom:186.480000px;}
.y196{bottom:187.200000px;}
.yf1{bottom:188.280000px;}
.y77{bottom:188.640000px;}
.y38{bottom:189.390000px;}
.y13a{bottom:196.200000px;}
.y1b7{bottom:196.740000px;}
.yf7{bottom:197.280000px;}
.y28{bottom:198.360000px;}
.y17e{bottom:204.300000px;}
.y195{bottom:205.020000px;}
.yf0{bottom:206.130000px;}
.y76{bottom:206.490000px;}
.y9e{bottom:207.390000px;}
.y37{bottom:209.190000px;}
.y139{bottom:214.050000px;}
.y1b6{bottom:214.590000px;}
.yf6{bottom:215.130000px;}
.y27{bottom:216.390000px;}
.y17d{bottom:222.150000px;}
.y75{bottom:224.310000px;}
.y194{bottom:224.850000px;}
.yef{bottom:228.105000px;}
.y36{bottom:229.170000px;}
.y138{bottom:231.870000px;}
.y1b5{bottom:232.410000px;}
.y26{bottom:234.210000px;}
.y9d{bottom:236.370000px;}
.y17c{bottom:239.970000px;}
.y74{bottom:242.310000px;}
.y35{bottom:248.970000px;}
.y137{bottom:249.690000px;}
.y1b4{bottom:250.230000px;}
.y25{bottom:252.030000px;}
.yee{bottom:255.645000px;}
.y193{bottom:257.610000px;}
.y17b{bottom:257.790000px;}
.y1d0{bottom:259.410000px;}
.y73{bottom:260.130000px;}
.y136{bottom:261.945000px;}
.y1b3{bottom:268.230000px;}
.y34{bottom:268.770000px;}
.y9c{bottom:269.130000px;}
.y17a{bottom:275.610000px;}
.y72{bottom:277.950000px;}
.y24{bottom:278.850000px;}
.yec{bottom:283.365000px;}
.y1b2{bottom:286.050000px;}
.y9b{bottom:286.950000px;}
.y33{bottom:288.570000px;}
.y134{bottom:289.665000px;}
.y192{bottom:293.430000px;}
.y179{bottom:293.610000px;}
.y71{bottom:295.770000px;}
.y1b1{bottom:303.870000px;}
.y9a{bottom:304.770000px;}
.y23{bottom:305.670000px;}
.y32{bottom:308.370000px;}
.ye6{bottom:310.905000px;}
.y191{bottom:311.250000px;}
.y178{bottom:311.430000px;}
.y70{bottom:313.590000px;}
.ye9{bottom:316.515000px;}
.y133{bottom:317.205000px;}
.y1b0{bottom:321.690000px;}
.y99{bottom:322.590000px;}
.y31{bottom:328.350000px;}
.y190{bottom:329.070000px;}
.y177{bottom:329.250000px;}
.y6f{bottom:331.410000px;}
.y22{bottom:332.670000px;}
.y1af{bottom:339.510000px;}
.y98{bottom:340.410000px;}
.ye5{bottom:344.190000px;}
.y132{bottom:344.745000px;}
.y30{bottom:348.195000px;}
.y176{bottom:349.050000px;}
.y6e{bottom:349.410000px;}
.y18f{bottom:355.890000px;}
.y1ae{bottom:357.510000px;}
.y97{bottom:358.410000px;}
.y21{bottom:359.490000px;}
.ye4{bottom:362.010000px;}
.y1cf{bottom:363.450000px;}
.y6d{bottom:367.230000px;}
.y12d{bottom:372.465000px;}
.y18e{bottom:373.890000px;}
.y1ad{bottom:375.330000px;}
.y96{bottom:376.230000px;}
.y2f{bottom:378.435000px;}
.y12f{bottom:379.365000px;}
.y175{bottom:381.810000px;}
.y20{bottom:386.310000px;}
.ye3{bottom:388.830000px;}
.y18d{bottom:391.710000px;}
.y1ac{bottom:393.150000px;}
.yc0{bottom:393.690000px;}
.y6c{bottom:394.050000px;}
.y174{bottom:399.810000px;}
.ye2{bottom:406.650000px;}
.y18c{bottom:409.530000px;}
.y1ab{bottom:410.970000px;}
.ybf{bottom:411.510000px;}
.y6b{bottom:411.870000px;}
.y1ce{bottom:415.470000px;}
.y173{bottom:417.630000px;}
.y1f{bottom:421.950000px;}
.ye1{bottom:424.470000px;}
.y18b{bottom:427.350000px;}
.y1aa{bottom:428.790000px;}
.ybe{bottom:429.330000px;}
.y6a{bottom:429.690000px;}
.y172{bottom:435.450000px;}
.y1e{bottom:439.770000px;}
.ye0{bottom:442.335000px;}
.y1a9{bottom:446.655000px;}
.ybd{bottom:447.195000px;}
.y69{bottom:447.735000px;}
.y171{bottom:453.315000px;}
.y18a{bottom:454.215000px;}
.y126{bottom:456.195000px;}
.y1d{bottom:459.615000px;}
.ydf{bottom:462.315000px;}
.y1a8{bottom:464.655000px;}
.y68{bottom:465.555000px;}
.ybc{bottom:466.995000px;}
.y1cd{bottom:467.715000px;}
.y170{bottom:471.135000px;}
.y189{bottom:472.035000px;}
.y125{bottom:474.015000px;}
.y1a7{bottom:482.475000px;}
.y1c{bottom:483.375000px;}
.y16f{bottom:489.135000px;}
.y188{bottom:490.035000px;}
.y124{bottom:491.835000px;}
.yde{bottom:495.075000px;}
.ybb{bottom:499.935000px;}
.y1a6{bottom:500.295000px;}
.y67{bottom:501.195000px;}
.y16e{bottom:506.955000px;}
.y1b{bottom:507.135000px;}
.y187{bottom:507.855000px;}
.y123{bottom:509.835000px;}
.ydd{bottom:512.895000px;}
.yba{bottom:517.755000px;}
.y1a5{bottom:518.115000px;}
.y66{bottom:519.015000px;}
.y1cc{bottom:519.735000px;}
.y16d{bottom:524.775000px;}
.y186{bottom:525.675000px;}
.y122{bottom:527.655000px;}
.ydc{bottom:530.715000px;}
.y1a{bottom:530.895000px;}
.yb9{bottom:535.575000px;}
.y1a4{bottom:535.935000px;}
.y12c{bottom:536.655000px;}
.y65{bottom:536.835000px;}
.y16c{bottom:542.595000px;}
.y121{bottom:545.475000px;}
.ydb{bottom:548.535000px;}
.y185{bottom:552.495000px;}
.yb8{bottom:553.395000px;}
.y1a3{bottom:553.935000px;}
.y12b{bottom:554.475000px;}
.y19{bottom:554.655000px;}
.y64{bottom:554.835000px;}
.y16b{bottom:560.415000px;}
.y120{bottom:563.295000px;}
.yda{bottom:566.535000px;}
.yb7{bottom:571.215000px;}
.y1a2{bottom:571.755000px;}
.y12a{bottom:572.295000px;}
.y63{bottom:572.655000px;}
.y16a{bottom:578.235000px;}
.y11f{bottom:581.115000px;}
.yd9{bottom:584.355000px;}
.y18{bottom:585.435000px;}
.yb6{bottom:589.035000px;}
.y1a1{bottom:589.575000px;}
.y129{bottom:590.115000px;}
.y62{bottom:590.475000px;}
.y169{bottom:596.235000px;}
.y11e{bottom:598.935000px;}
.yd8{bottom:602.175000px;}
.y184{bottom:605.235000px;}
.yb5{bottom:607.035000px;}
.y1a0{bottom:607.395000px;}
.y128{bottom:607.935000px;}
.y61{bottom:608.295000px;}
.y168{bottom:614.055000px;}
.y1cb{bottom:615.135000px;}
.y17{bottom:616.215000px;}
.y11d{bottom:616.935000px;}
.yd7{bottom:619.995000px;}
.y183{bottom:623.055000px;}
.yb4{bottom:624.855000px;}
.y19f{bottom:625.215000px;}
.y127{bottom:625.935000px;}
.y60{bottom:626.115000px;}
.y167{bottom:636.015000px;}
.y11c{bottom:638.895000px;}
.y1ca{bottom:641.955000px;}
.yb3{bottom:642.675000px;}
.y19e{bottom:643.035000px;}
.y5f{bottom:644.115000px;}
.yd6{bottom:646.815000px;}
.yb2{bottom:660.495000px;}
.y19d{bottom:661.035000px;}
.y5e{bottom:661.935000px;}
.y164{bottom:663.555000px;}
.yd5{bottom:664.635000px;}
.y11a{bottom:666.435000px;}
.y1c9{bottom:668.775000px;}
.y16{bottom:672.555000px;}
.yb1{bottom:678.345000px;}
.y19c{bottom:678.885000px;}
.y5d{bottom:679.785000px;}
.yd4{bottom:682.665000px;}
.y163{bottom:691.305000px;}
.y119{bottom:694.185000px;}
.y1c8{bottom:695.625000px;}
.yb0{bottom:696.165000px;}
.y19b{bottom:696.705000px;}
.y5c{bottom:697.605000px;}
.yd3{bottom:700.485000px;}
.y15{bottom:703.365000px;}
.y19a{bottom:714.525000px;}
.y5b{bottom:715.425000px;}
.y95{bottom:717.405000px;}
.yd2{bottom:718.305000px;}
.y160{bottom:718.845000px;}
.y117{bottom:721.725000px;}
.y1c7{bottom:722.445000px;}
.yaf{bottom:723.165000px;}
.y161{bottom:725.865000px;}
.y118{bottom:727.290000px;}
.y199{bottom:732.345000px;}
.y5a{bottom:733.245000px;}
.yd1{bottom:736.125000px;}
.y14{bottom:739.905000px;}
.yae{bottom:740.985000px;}
.y1c6{bottom:749.445000px;}
.y94{bottom:750.165000px;}
.y59{bottom:751.245000px;}
.yd0{bottom:753.945000px;}
.y116{bottom:754.845000px;}
.y15f{bottom:757.905000px;}
.yad{bottom:767.445000px;}
.y93{bottom:768.165000px;}
.y58{bottom:769.065000px;}
.ycf{bottom:771.945000px;}
.y115{bottom:772.845000px;}
.y15e{bottom:775.725000px;}
.y1c5{bottom:776.265000px;}
.y92{bottom:785.985000px;}
.y13{bottom:786.165000px;}
.y57{bottom:786.885000px;}
.yce{bottom:789.405000px;}
.yac{bottom:794.625000px;}
.y10e{bottom:799.665000px;}
.y157{bottom:802.545000px;}
.y1c4{bottom:803.085000px;}
.y91{bottom:803.805000px;}
.yab{bottom:812.445000px;}
.y56{bottom:813.705000px;}
.y12{bottom:814.965000px;}
.ycd{bottom:816.585000px;}
.y10d{bottom:817.485000px;}
.y156{bottom:820.545000px;}
.y90{bottom:821.625000px;}
.y1c3{bottom:829.905000px;}
.yaa{bottom:830.445000px;}
.y55{bottom:831.525000px;}
.ycc{bottom:834.405000px;}
.y10c{bottom:835.305000px;}
.y155{bottom:838.365000px;}
.y8f{bottom:839.445000px;}
.ya9{bottom:848.265000px;}
.y54{bottom:849.345000px;}
.y10b{bottom:853.125000px;}
.y154{bottom:856.185000px;}
.ycb{bottom:856.365000px;}
.y1c2{bottom:856.725000px;}
.y8e{bottom:857.445000px;}
.ya8{bottom:866.085000px;}
.y11{bottom:866.445000px;}
.y53{bottom:867.345000px;}
.y10a{bottom:870.945000px;}
.y153{bottom:874.005000px;}
.y8d{bottom:875.265000px;}
.y114{bottom:879.945000px;}
.y1c1{bottom:883.545000px;}
.ya7{bottom:883.905000px;}
.yc9{bottom:884.085000px;}
.y52{bottom:885.165000px;}
.y109{bottom:888.945000px;}
.y10{bottom:889.125000px;}
.y152{bottom:891.825000px;}
.y8c{bottom:893.085000px;}
.y113{bottom:897.945000px;}
.y15d{bottom:900.825000px;}
.ya6{bottom:901.725000px;}
.y51{bottom:902.985000px;}
.y108{bottom:906.765000px;}
.y151{bottom:909.645000px;}
.y1c0{bottom:910.590000px;}
.yf{bottom:910.950000px;}
.y112{bottom:915.810000px;}
.y15c{bottom:918.690000px;}
.ya5{bottom:919.590000px;}
.y50{bottom:920.850000px;}
.y107{bottom:924.630000px;}
.y150{bottom:927.690000px;}
.y8b{bottom:928.770000px;}
.yc7{bottom:929.490000px;}
.ye{bottom:932.730000px;}
.y111{bottom:933.630000px;}
.y15b{bottom:936.690000px;}
.y1bf{bottom:937.410000px;}
.ya4{bottom:937.590000px;}
.y4f{bottom:938.670000px;}
.y106{bottom:942.450000px;}
.y14f{bottom:945.510000px;}
.y8a{bottom:946.590000px;}
.y110{bottom:951.450000px;}
.yd{bottom:954.150000px;}
.y15a{bottom:954.510000px;}
.ya3{bottom:955.410000px;}
.y4e{bottom:956.670000px;}
.y105{bottom:960.270000px;}
.y14e{bottom:963.330000px;}
.y1be{bottom:964.230000px;}
.y89{bottom:964.590000px;}
.y10f{bottom:969.270000px;}
.y159{bottom:972.330000px;}
.ya2{bottom:973.230000px;}
.y4d{bottom:974.490000px;}
.yc4{bottom:975.030000px;}
.yc{bottom:976.290000px;}
.y14d{bottom:981.150000px;}
.y88{bottom:982.410000px;}
.y158{bottom:990.150000px;}
.ya1{bottom:991.050000px;}
.y4c{bottom:992.310000px;}
.y87{bottom:1000.230000px;}
.y14c{bottom:1007.970000px;}
.y104{bottom:1009.950000px;}
.y4b{bottom:1010.130000px;}
.yb{bottom:1017.510000px;}
.ya0{bottom:1017.870000px;}
.y86{bottom:1018.050000px;}
.yc2{bottom:1020.390000px;}
.y4a{bottom:1027.950000px;}
.ya{bottom:1029.570000px;}
.y14a{bottom:1030.110000px;}
.y85{bottom:1035.870000px;}
.y103{bottom:1037.490000px;}
.y9{bottom:1041.630000px;}
.y9f{bottom:1044.510000px;}
.y1bd{bottom:1044.870000px;}
.y49{bottom:1045.770000px;}
.y8{bottom:1053.690000px;}
.y84{bottom:1053.870000px;}
.y149{bottom:1057.650000px;}
.y48{bottom:1063.770000px;}
.yff{bottom:1065.210000px;}
.y7{bottom:1068.270000px;}
.y101{bottom:1070.715000px;}
.y83{bottom:1071.690000px;}
.yc1{bottom:1080.510000px;}
.y47{bottom:1081.590000px;}
.y148{bottom:1085.190000px;}
.y82{bottom:1089.510000px;}
.y6{bottom:1093.830000px;}
.yfe{bottom:1098.330000px;}
.y46{bottom:1099.410000px;}
.y81{bottom:1107.330000px;}
.y144{bottom:1112.910000px;}
.yfd{bottom:1116.150000px;}
.y45{bottom:1117.230000px;}
.y146{bottom:1119.690000px;}
.y80{bottom:1125.150000px;}
.y44{bottom:1135.050000px;}
.y7f{bottom:1142.970000px;}
.y143{bottom:1152.000000px;}
.y43{bottom:1153.080000px;}
.y7e{bottom:1161.000000px;}
.y142{bottom:1169.820000px;}
.y42{bottom:1170.900000px;}
.y7d{bottom:1178.820000px;}
.y41{bottom:1190.700000px;}
.y7c{bottom:1196.640000px;}
.h24{height:21.375924px;}
.h1e{height:21.450446px;}
.h1d{height:26.805000px;}
.h21{height:26.811000px;}
.h20{height:26.815500px;}
.h18{height:26.820000px;}
.h22{height:26.850000px;}
.h29{height:27.030000px;}
.h2{height:31.135500px;}
.h23{height:32.565000px;}
.h26{height:32.575500px;}
.h27{height:32.602500px;}
.h28{height:32.760000px;}
.h15{height:37.705078px;}
.h7{height:40.985156px;}
.h13{height:43.681992px;}
.h19{height:44.640000px;}
.h1b{height:44.676000px;}
.h1a{height:44.820000px;}
.h1c{height:52.971680px;}
.h3{height:52.998047px;}
.h10{height:54.421875px;}
.h16{height:55.503491px;}
.h17{height:56.214844px;}
.h14{height:58.621992px;}
.h8{height:58.651172px;}
.h9{height:60.226875px;}
.hb{height:61.468945px;}
.h4{height:65.884219px;}
.h25{height:65.997834px;}
.h1f{height:66.227919px;}
.he{height:66.757500px;}
.hd{height:72.326250px;}
.hf{height:72.562500px;}
.h12{height:78.367500px;}
.ha{height:82.676953px;}
.h5{height:84.898125px;}
.hc{height:87.800625px;}
.h6{height:90.703125px;}
.h11{height:405.720000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:20.323907px;}
.w1c{width:20.399505px;}
.w1f{width:63.705000px;}
.w1b{width:63.756000px;}
.w27{width:66.225000px;}
.w25{width:66.240000px;}
.w5{width:66.405000px;}
.w2c{width:66.420000px;}
.w10{width:66.780000px;}
.w9{width:66.816000px;}
.w16{width:68.580000px;}
.w3{width:80.310000px;}
.w20{width:81.741000px;}
.w28{width:84.981000px;}
.w2e{width:85.161000px;}
.w21{width:90.165000px;}
.w29{width:93.765000px;}
.w2f{width:93.945000px;}
.w1d{width:105.480000px;}
.w1e{width:105.516000px;}
.w26{width:109.836000px;}
.w2d{width:110.016000px;}
.wb{width:110.520000px;}
.wc{width:110.556000px;}
.w12{width:111.996000px;}
.w11{width:112.176000px;}
.w7{width:112.350000px;}
.w17{width:113.616000px;}
.w22{width:114.150000px;}
.w2a{width:118.830000px;}
.w2b{width:128.902500px;}
.w24{width:131.242500px;}
.wf{width:131.422500px;}
.w15{width:133.042500px;}
.wd{width:139.701000px;}
.w8{width:143.482500px;}
.w18{width:143.841000px;}
.w13{width:145.101000px;}
.w1a{width:160.585500px;}
.w6{width:180.375000px;}
.we{width:207.570000px;}
.w19{width:213.690000px;}
.w14{width:215.490000px;}
.w2{width:722.115000px;}
.w23{width:790.915500px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:4.071543px;}
.x34{left:6.475500px;}
.x3e{left:7.560000px;}
.x5{left:8.640000px;}
.x13{left:10.800000px;}
.x51{left:21.585000px;}
.x5a{left:22.845000px;}
.x49{left:25.725000px;}
.x43{left:27.000000px;}
.x1f{left:28.440000px;}
.x38{left:29.520000px;}
.x4d{left:31.845000px;}
.x29{left:33.300000px;}
.x59{left:34.740000px;}
.x12{left:39.240000px;}
.x4e{left:40.845000px;}
.x31{left:42.645000px;}
.x48{left:44.100000px;}
.x1{left:45.364500px;}
.x24{left:46.620000px;}
.x3b{left:48.060000px;}
.x14{left:50.040000px;}
.x37{left:51.484500px;}
.x50{left:52.740000px;}
.x6{left:54.000000px;}
.x1d{left:55.264500px;}
.x4f{left:57.060000px;}
.x33{left:59.580000px;}
.x46{left:62.820000px;}
.x23{left:65.340000px;}
.x28{left:67.531500px;}
.xd{left:70.020000px;}
.x35{left:71.805000px;}
.x52{left:73.651500px;}
.x17{left:81.000000px;}
.x2a{left:85.140000px;}
.x40{left:87.660000px;}
.xe{left:89.136000px;}
.xc{left:91.116000px;}
.x27{left:103.680000px;}
.x3f{left:106.200000px;}
.x18{left:108.036000px;}
.xf{left:120.996000px;}
.x41{left:155.370000px;}
.x5d{left:183.810000px;}
.x2c{left:185.430000px;}
.x1c{left:192.630000px;}
.x5c{left:196.230000px;}
.x1e{left:199.470000px;}
.x42{left:212.790000px;}
.x36{left:214.590000px;}
.x2b{left:218.550000px;}
.x53{left:219.810000px;}
.x2{left:222.370500px;}
.x5f{left:250.950000px;}
.x2e{left:252.930000px;}
.x39{left:254.730000px;}
.x22{left:267.015000px;}
.x3{left:271.330500px;}
.x45{left:277.275000px;}
.x9{left:283.575000px;}
.xa{left:288.435000px;}
.x5e{left:295.815000px;}
.x54{left:297.090000px;}
.x2d{left:298.890000px;}
.x7{left:300.495000px;}
.x20{left:312.015000px;}
.x10{left:314.355000px;}
.x44{left:319.740000px;}
.x60{left:361.695000px;}
.x55{left:362.955000px;}
.x8{left:364.395000px;}
.x2f{left:365.835000px;}
.x3a{left:369.075000px;}
.xb{left:378.795000px;}
.x47{left:383.475000px;}
.x61{left:472.260000px;}
.x11{left:473.505000px;}
.x19{left:476.040000px;}
.x30{left:478.560000px;}
.x3c{left:483.420000px;}
.x25{left:489.540000px;}
.x15{left:500.505000px;}
.x16{left:527.505000px;}
.x62{left:539.400000px;}
.x56{left:540.660000px;}
.x1a{left:543.180000px;}
.x4a{left:554.160000px;}
.x32{left:624.390000px;}
.x57{left:626.370000px;}
.x3d{left:627.990000px;}
.x26{left:630.150000px;}
.x4b{left:636.630000px;}
.x5b{left:648.150000px;}
.x58{left:721.050000px;}
.x1b{left:724.290000px;}
.x4c{left:727.530000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-67.840000pt;}
.v3{vertical-align:-26.880000pt;}
.v4{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.320000pt;}
.v2{vertical-align:26.880000pt;}
.ls7{letter-spacing:-0.896000pt;}
.ls8{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.544000pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:-0.015360pt;}
.lsc{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.lse{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls14{letter-spacing:0.144000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls16{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.933120pt;}
.ls17{letter-spacing:18.080000pt;}
.ls18{letter-spacing:22.496000pt;}
.lsb{letter-spacing:46.816000pt;}
.ws5{word-spacing:-17.295360pt;}
.ws7{word-spacing:-17.272320pt;}
.ws3{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.288000pt;}
.wsa{word-spacing:-12.192000pt;}
.ws11{word-spacing:-12.096000pt;}
.wse{word-spacing:-12.016000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.904000pt;}
.wsb{word-spacing:-11.808000pt;}
.wsd{word-spacing:-11.552000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws9{word-spacing:-8.064000pt;}
.wsc{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
._26{margin-left:-4.841813pt;}
._25{margin-left:-3.578240pt;}
._3{margin-left:-1.847680pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.018667pt;}
._e{width:1.946453pt;}
._9{width:2.891733pt;}
._7{width:3.893547pt;}
._16{width:4.971520pt;}
._8{width:6.161920pt;}
._b{width:7.223467pt;}
._5{width:8.224213pt;}
._6{width:9.236693pt;}
._a{width:10.145920pt;}
._d{width:11.482667pt;}
._4{width:12.376960pt;}
._c{width:14.169813pt;}
._f{width:15.936000pt;}
._1a{width:16.848000pt;}
._10{width:18.000000pt;}
._17{width:19.680000pt;}
._18{width:20.736000pt;}
._19{width:21.792000pt;}
._1c{width:22.752000pt;}
._11{width:23.856000pt;}
._14{width:25.248000pt;}
._15{width:26.250667pt;}
._23{width:27.216000pt;}
._12{width:28.320000pt;}
._13{width:29.317333pt;}
._2d{width:30.250667pt;}
._30{width:31.488000pt;}
._2b{width:32.464000pt;}
._1b{width:33.696000pt;}
._27{width:35.952000pt;}
._1d{width:38.093013pt;}
._1e{width:39.118293pt;}
._20{width:40.311040pt;}
._22{width:41.568000pt;}
._21{width:42.848000pt;}
._1f{width:43.783680pt;}
._2c{width:45.370667pt;}
._2a{width:58.336000pt;}
._2f{width:59.517013pt;}
._31{width:70.519680pt;}
._28{width:71.568000pt;}
._29{width:73.248000pt;}
._33{width:86.208000pt;}
._34{width:110.810667pt;}
._2e{width:113.191680pt;}
._32{width:121.530667pt;}
._24{width:179.992107pt;}
._2{width:1088.266667pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fsb{font-size:59.803579pt;}
.fsa{font-size:60.012070pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs7{font-size:77.440000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y130{bottom:2.744522pt;}
.yea{bottom:2.754090pt;}
.y131{bottom:6.066667pt;}
.y147{bottom:6.080000pt;}
.y162{bottom:6.240000pt;}
.yeb{bottom:7.666667pt;}
.y102{bottom:7.680000pt;}
.ye7{bottom:8.626667pt;}
.yc3{bottom:8.640000pt;}
.y165{bottom:8.800000pt;}
.yed{bottom:8.946667pt;}
.yc6{bottom:8.960000pt;}
.y11b{bottom:8.986667pt;}
.y166{bottom:9.120000pt;}
.ye8{bottom:12.626667pt;}
.y100{bottom:12.640000pt;}
.y135{bottom:12.946667pt;}
.y14b{bottom:12.960000pt;}
.y12e{bottom:13.746667pt;}
.y145{bottom:13.760000pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.yc5{bottom:24.800000pt;}
.yca{bottom:24.840000pt;}
.yc8{bottom:24.960000pt;}
.y5{bottom:35.360000pt;}
.y1{bottom:53.920000pt;}
.y3e{bottom:62.560000pt;}
.y3d{bottom:80.160000pt;}
.y1d2{bottom:91.680000pt;}
.y13f{bottom:95.040000pt;}
.y1bc{bottom:95.520000pt;}
.yfc{bottom:96.000000pt;}
.y2d{bottom:97.120000pt;}
.y3c{bottom:97.786667pt;}
.yf5{bottom:103.840000pt;}
.y7b{bottom:104.160000pt;}
.y2e{bottom:105.440000pt;}
.y13e{bottom:110.880000pt;}
.y1bb{bottom:111.360000pt;}
.yfb{bottom:111.840000pt;}
.y2c{bottom:112.960000pt;}
.y3b{bottom:115.546667pt;}
.y182{bottom:118.080000pt;}
.y141{bottom:118.720000pt;}
.yf4{bottom:119.680000pt;}
.y7a{bottom:120.000000pt;}
.y40{bottom:124.480000pt;}
.y13d{bottom:126.720000pt;}
.y1ba{bottom:127.200000pt;}
.yfa{bottom:127.680000pt;}
.y2b{bottom:128.800000pt;}
.y3a{bottom:133.146667pt;}
.y181{bottom:133.920000pt;}
.y140{bottom:134.560000pt;}
.y198{bottom:134.720000pt;}
.yf3{bottom:135.520000pt;}
.y79{bottom:136.000000pt;}
.y1d1{bottom:138.080000pt;}
.y13c{bottom:142.560000pt;}
.y1b9{bottom:143.200000pt;}
.yf9{bottom:143.520000pt;}
.y2a{bottom:144.640000pt;}
.y180{bottom:149.760000pt;}
.y3f{bottom:150.400000pt;}
.y197{bottom:150.560000pt;}
.y39{bottom:150.746667pt;}
.yf2{bottom:151.360000pt;}
.y78{bottom:151.840000pt;}
.y13b{bottom:158.560000pt;}
.y1b8{bottom:159.040000pt;}
.yf8{bottom:159.360000pt;}
.y29{bottom:160.480000pt;}
.y17f{bottom:165.760000pt;}
.y196{bottom:166.400000pt;}
.yf1{bottom:167.360000pt;}
.y77{bottom:167.680000pt;}
.y38{bottom:168.346667pt;}
.y13a{bottom:174.400000pt;}
.y1b7{bottom:174.880000pt;}
.yf7{bottom:175.360000pt;}
.y28{bottom:176.320000pt;}
.y17e{bottom:181.600000pt;}
.y195{bottom:182.240000pt;}
.yf0{bottom:183.226667pt;}
.y76{bottom:183.546667pt;}
.y9e{bottom:184.346667pt;}
.y37{bottom:185.946667pt;}
.y139{bottom:190.266667pt;}
.y1b6{bottom:190.746667pt;}
.yf6{bottom:191.226667pt;}
.y27{bottom:192.346667pt;}
.y17d{bottom:197.466667pt;}
.y75{bottom:199.386667pt;}
.y194{bottom:199.866667pt;}
.yef{bottom:202.760000pt;}
.y36{bottom:203.706667pt;}
.y138{bottom:206.106667pt;}
.y1b5{bottom:206.586667pt;}
.y26{bottom:208.186667pt;}
.y9d{bottom:210.106667pt;}
.y17c{bottom:213.306667pt;}
.y74{bottom:215.386667pt;}
.y35{bottom:221.306667pt;}
.y137{bottom:221.946667pt;}
.y1b4{bottom:222.426667pt;}
.y25{bottom:224.026667pt;}
.yee{bottom:227.240000pt;}
.y193{bottom:228.986667pt;}
.y17b{bottom:229.146667pt;}
.y1d0{bottom:230.586667pt;}
.y73{bottom:231.226667pt;}
.y136{bottom:232.840000pt;}
.y1b3{bottom:238.426667pt;}
.y34{bottom:238.906667pt;}
.y9c{bottom:239.226667pt;}
.y17a{bottom:244.986667pt;}
.y72{bottom:247.066667pt;}
.y24{bottom:247.866667pt;}
.yec{bottom:251.880000pt;}
.y1b2{bottom:254.266667pt;}
.y9b{bottom:255.066667pt;}
.y33{bottom:256.506667pt;}
.y134{bottom:257.480000pt;}
.y192{bottom:260.826667pt;}
.y179{bottom:260.986667pt;}
.y71{bottom:262.906667pt;}
.y1b1{bottom:270.106667pt;}
.y9a{bottom:270.906667pt;}
.y23{bottom:271.706667pt;}
.y32{bottom:274.106667pt;}
.ye6{bottom:276.360000pt;}
.y191{bottom:276.666667pt;}
.y178{bottom:276.826667pt;}
.y70{bottom:278.746667pt;}
.ye9{bottom:281.346667pt;}
.y133{bottom:281.960000pt;}
.y1b0{bottom:285.946667pt;}
.y99{bottom:286.746667pt;}
.y31{bottom:291.866667pt;}
.y190{bottom:292.506667pt;}
.y177{bottom:292.666667pt;}
.y6f{bottom:294.586667pt;}
.y22{bottom:295.706667pt;}
.y1af{bottom:301.786667pt;}
.y98{bottom:302.586667pt;}
.ye5{bottom:305.946667pt;}
.y132{bottom:306.440000pt;}
.y30{bottom:309.506667pt;}
.y176{bottom:310.266667pt;}
.y6e{bottom:310.586667pt;}
.y18f{bottom:316.346667pt;}
.y1ae{bottom:317.786667pt;}
.y97{bottom:318.586667pt;}
.y21{bottom:319.546667pt;}
.ye4{bottom:321.786667pt;}
.y1cf{bottom:323.066667pt;}
.y6d{bottom:326.426667pt;}
.y12d{bottom:331.080000pt;}
.y18e{bottom:332.346667pt;}
.y1ad{bottom:333.626667pt;}
.y96{bottom:334.426667pt;}
.y2f{bottom:336.386667pt;}
.y12f{bottom:337.213333pt;}
.y175{bottom:339.386667pt;}
.y20{bottom:343.386667pt;}
.ye3{bottom:345.626667pt;}
.y18d{bottom:348.186667pt;}
.y1ac{bottom:349.466667pt;}
.yc0{bottom:349.946667pt;}
.y6c{bottom:350.266667pt;}
.y174{bottom:355.386667pt;}
.ye2{bottom:361.466667pt;}
.y18c{bottom:364.026667pt;}
.y1ab{bottom:365.306667pt;}
.ybf{bottom:365.786667pt;}
.y6b{bottom:366.106667pt;}
.y1ce{bottom:369.306667pt;}
.y173{bottom:371.226667pt;}
.y1f{bottom:375.066667pt;}
.ye1{bottom:377.306667pt;}
.y18b{bottom:379.866667pt;}
.y1aa{bottom:381.146667pt;}
.ybe{bottom:381.626667pt;}
.y6a{bottom:381.946667pt;}
.y172{bottom:387.066667pt;}
.y1e{bottom:390.906667pt;}
.ye0{bottom:393.186667pt;}
.y1a9{bottom:397.026667pt;}
.ybd{bottom:397.506667pt;}
.y69{bottom:397.986667pt;}
.y171{bottom:402.946667pt;}
.y18a{bottom:403.746667pt;}
.y126{bottom:405.506667pt;}
.y1d{bottom:408.546667pt;}
.ydf{bottom:410.946667pt;}
.y1a8{bottom:413.026667pt;}
.y68{bottom:413.826667pt;}
.ybc{bottom:415.106667pt;}
.y1cd{bottom:415.746667pt;}
.y170{bottom:418.786667pt;}
.y189{bottom:419.586667pt;}
.y125{bottom:421.346667pt;}
.y1a7{bottom:428.866667pt;}
.y1c{bottom:429.666667pt;}
.y16f{bottom:434.786667pt;}
.y188{bottom:435.586667pt;}
.y124{bottom:437.186667pt;}
.yde{bottom:440.066667pt;}
.ybb{bottom:444.386667pt;}
.y1a6{bottom:444.706667pt;}
.y67{bottom:445.506667pt;}
.y16e{bottom:450.626667pt;}
.y1b{bottom:450.786667pt;}
.y187{bottom:451.426667pt;}
.y123{bottom:453.186667pt;}
.ydd{bottom:455.906667pt;}
.yba{bottom:460.226667pt;}
.y1a5{bottom:460.546667pt;}
.y66{bottom:461.346667pt;}
.y1cc{bottom:461.986667pt;}
.y16d{bottom:466.466667pt;}
.y186{bottom:467.266667pt;}
.y122{bottom:469.026667pt;}
.ydc{bottom:471.746667pt;}
.y1a{bottom:471.906667pt;}
.yb9{bottom:476.066667pt;}
.y1a4{bottom:476.386667pt;}
.y12c{bottom:477.026667pt;}
.y65{bottom:477.186667pt;}
.y16c{bottom:482.306667pt;}
.y121{bottom:484.866667pt;}
.ydb{bottom:487.586667pt;}
.y185{bottom:491.106667pt;}
.yb8{bottom:491.906667pt;}
.y1a3{bottom:492.386667pt;}
.y12b{bottom:492.866667pt;}
.y19{bottom:493.026667pt;}
.y64{bottom:493.186667pt;}
.y16b{bottom:498.146667pt;}
.y120{bottom:500.706667pt;}
.yda{bottom:503.586667pt;}
.yb7{bottom:507.746667pt;}
.y1a2{bottom:508.226667pt;}
.y12a{bottom:508.706667pt;}
.y63{bottom:509.026667pt;}
.y16a{bottom:513.986667pt;}
.y11f{bottom:516.546667pt;}
.yd9{bottom:519.426667pt;}
.y18{bottom:520.386667pt;}
.yb6{bottom:523.586667pt;}
.y1a1{bottom:524.066667pt;}
.y129{bottom:524.546667pt;}
.y62{bottom:524.866667pt;}
.y169{bottom:529.986667pt;}
.y11e{bottom:532.386667pt;}
.yd8{bottom:535.266667pt;}
.y184{bottom:537.986667pt;}
.yb5{bottom:539.586667pt;}
.y1a0{bottom:539.906667pt;}
.y128{bottom:540.386667pt;}
.y61{bottom:540.706667pt;}
.y168{bottom:545.826667pt;}
.y1cb{bottom:546.786667pt;}
.y17{bottom:547.746667pt;}
.y11d{bottom:548.386667pt;}
.yd7{bottom:551.106667pt;}
.y183{bottom:553.826667pt;}
.yb4{bottom:555.426667pt;}
.y19f{bottom:555.746667pt;}
.y127{bottom:556.386667pt;}
.y60{bottom:556.546667pt;}
.y167{bottom:565.346667pt;}
.y11c{bottom:567.906667pt;}
.y1ca{bottom:570.626667pt;}
.yb3{bottom:571.266667pt;}
.y19e{bottom:571.586667pt;}
.y5f{bottom:572.546667pt;}
.yd6{bottom:574.946667pt;}
.yb2{bottom:587.106667pt;}
.y19d{bottom:587.586667pt;}
.y5e{bottom:588.386667pt;}
.y164{bottom:589.826667pt;}
.yd5{bottom:590.786667pt;}
.y11a{bottom:592.386667pt;}
.y1c9{bottom:594.466667pt;}
.y16{bottom:597.826667pt;}
.yb1{bottom:602.973333pt;}
.y19c{bottom:603.453333pt;}
.y5d{bottom:604.253333pt;}
.yd4{bottom:606.813333pt;}
.y163{bottom:614.493333pt;}
.y119{bottom:617.053333pt;}
.y1c8{bottom:618.333333pt;}
.yb0{bottom:618.813333pt;}
.y19b{bottom:619.293333pt;}
.y5c{bottom:620.093333pt;}
.yd3{bottom:622.653333pt;}
.y15{bottom:625.213333pt;}
.y19a{bottom:635.133333pt;}
.y5b{bottom:635.933333pt;}
.y95{bottom:637.693333pt;}
.yd2{bottom:638.493333pt;}
.y160{bottom:638.973333pt;}
.y117{bottom:641.533333pt;}
.y1c7{bottom:642.173333pt;}
.yaf{bottom:642.813333pt;}
.y161{bottom:645.213333pt;}
.y118{bottom:646.480000pt;}
.y199{bottom:650.973333pt;}
.y5a{bottom:651.773333pt;}
.yd1{bottom:654.333333pt;}
.y14{bottom:657.693333pt;}
.yae{bottom:658.653333pt;}
.y1c6{bottom:666.173333pt;}
.y94{bottom:666.813333pt;}
.y59{bottom:667.773333pt;}
.yd0{bottom:670.173333pt;}
.y116{bottom:670.973333pt;}
.y15f{bottom:673.693333pt;}
.yad{bottom:682.173333pt;}
.y93{bottom:682.813333pt;}
.y58{bottom:683.613333pt;}
.ycf{bottom:686.173333pt;}
.y115{bottom:686.973333pt;}
.y15e{bottom:689.533333pt;}
.y1c5{bottom:690.013333pt;}
.y92{bottom:698.653333pt;}
.y13{bottom:698.813333pt;}
.y57{bottom:699.453333pt;}
.yce{bottom:701.693333pt;}
.yac{bottom:706.333333pt;}
.y10e{bottom:710.813333pt;}
.y157{bottom:713.373333pt;}
.y1c4{bottom:713.853333pt;}
.y91{bottom:714.493333pt;}
.yab{bottom:722.173333pt;}
.y56{bottom:723.293333pt;}
.y12{bottom:724.413333pt;}
.ycd{bottom:725.853333pt;}
.y10d{bottom:726.653333pt;}
.y156{bottom:729.373333pt;}
.y90{bottom:730.333333pt;}
.y1c3{bottom:737.693333pt;}
.yaa{bottom:738.173333pt;}
.y55{bottom:739.133333pt;}
.ycc{bottom:741.693333pt;}
.y10c{bottom:742.493333pt;}
.y155{bottom:745.213333pt;}
.y8f{bottom:746.173333pt;}
.ya9{bottom:754.013333pt;}
.y54{bottom:754.973333pt;}
.y10b{bottom:758.333333pt;}
.y154{bottom:761.053333pt;}
.ycb{bottom:761.213333pt;}
.y1c2{bottom:761.533333pt;}
.y8e{bottom:762.173333pt;}
.ya8{bottom:769.853333pt;}
.y11{bottom:770.173333pt;}
.y53{bottom:770.973333pt;}
.y10a{bottom:774.173333pt;}
.y153{bottom:776.893333pt;}
.y8d{bottom:778.013333pt;}
.y114{bottom:782.173333pt;}
.y1c1{bottom:785.373333pt;}
.ya7{bottom:785.693333pt;}
.yc9{bottom:785.853333pt;}
.y52{bottom:786.813333pt;}
.y109{bottom:790.173333pt;}
.y10{bottom:790.333333pt;}
.y152{bottom:792.733333pt;}
.y8c{bottom:793.853333pt;}
.y113{bottom:798.173333pt;}
.y15d{bottom:800.733333pt;}
.ya6{bottom:801.533333pt;}
.y51{bottom:802.653333pt;}
.y108{bottom:806.013333pt;}
.y151{bottom:808.573333pt;}
.y1c0{bottom:809.413333pt;}
.yf{bottom:809.733333pt;}
.y112{bottom:814.053333pt;}
.y15c{bottom:816.613333pt;}
.ya5{bottom:817.413333pt;}
.y50{bottom:818.533333pt;}
.y107{bottom:821.893333pt;}
.y150{bottom:824.613333pt;}
.y8b{bottom:825.573333pt;}
.yc7{bottom:826.213333pt;}
.ye{bottom:829.093333pt;}
.y111{bottom:829.893333pt;}
.y15b{bottom:832.613333pt;}
.y1bf{bottom:833.253333pt;}
.ya4{bottom:833.413333pt;}
.y4f{bottom:834.373333pt;}
.y106{bottom:837.733333pt;}
.y14f{bottom:840.453333pt;}
.y8a{bottom:841.413333pt;}
.y110{bottom:845.733333pt;}
.yd{bottom:848.133333pt;}
.y15a{bottom:848.453333pt;}
.ya3{bottom:849.253333pt;}
.y4e{bottom:850.373333pt;}
.y105{bottom:853.573333pt;}
.y14e{bottom:856.293333pt;}
.y1be{bottom:857.093333pt;}
.y89{bottom:857.413333pt;}
.y10f{bottom:861.573333pt;}
.y159{bottom:864.293333pt;}
.ya2{bottom:865.093333pt;}
.y4d{bottom:866.213333pt;}
.yc4{bottom:866.693333pt;}
.yc{bottom:867.813333pt;}
.y14d{bottom:872.133333pt;}
.y88{bottom:873.253333pt;}
.y158{bottom:880.133333pt;}
.ya1{bottom:880.933333pt;}
.y4c{bottom:882.053333pt;}
.y87{bottom:889.093333pt;}
.y14c{bottom:895.973333pt;}
.y104{bottom:897.733333pt;}
.y4b{bottom:897.893333pt;}
.yb{bottom:904.453333pt;}
.ya0{bottom:904.773333pt;}
.y86{bottom:904.933333pt;}
.yc2{bottom:907.013333pt;}
.y4a{bottom:913.733333pt;}
.ya{bottom:915.173333pt;}
.y14a{bottom:915.653333pt;}
.y85{bottom:920.773333pt;}
.y103{bottom:922.213333pt;}
.y9{bottom:925.893333pt;}
.y9f{bottom:928.453333pt;}
.y1bd{bottom:928.773333pt;}
.y49{bottom:929.573333pt;}
.y8{bottom:936.613333pt;}
.y84{bottom:936.773333pt;}
.y149{bottom:940.133333pt;}
.y48{bottom:945.573333pt;}
.yff{bottom:946.853333pt;}
.y7{bottom:949.573333pt;}
.y101{bottom:951.746667pt;}
.y83{bottom:952.613333pt;}
.yc1{bottom:960.453333pt;}
.y47{bottom:961.413333pt;}
.y148{bottom:964.613333pt;}
.y82{bottom:968.453333pt;}
.y6{bottom:972.293333pt;}
.yfe{bottom:976.293333pt;}
.y46{bottom:977.253333pt;}
.y81{bottom:984.293333pt;}
.y144{bottom:989.253333pt;}
.yfd{bottom:992.133333pt;}
.y45{bottom:993.093333pt;}
.y146{bottom:995.280000pt;}
.y80{bottom:1000.133333pt;}
.y44{bottom:1008.933333pt;}
.y7f{bottom:1015.973333pt;}
.y143{bottom:1024.000000pt;}
.y43{bottom:1024.960000pt;}
.y7e{bottom:1032.000000pt;}
.y142{bottom:1039.840000pt;}
.y42{bottom:1040.800000pt;}
.y7d{bottom:1047.840000pt;}
.y41{bottom:1058.400000pt;}
.y7c{bottom:1063.680000pt;}
.h24{height:19.000821pt;}
.h1e{height:19.067063pt;}
.h1d{height:23.826667pt;}
.h21{height:23.832000pt;}
.h20{height:23.836000pt;}
.h18{height:23.840000pt;}
.h22{height:23.866667pt;}
.h29{height:24.026667pt;}
.h2{height:27.676000pt;}
.h23{height:28.946667pt;}
.h26{height:28.956000pt;}
.h27{height:28.980000pt;}
.h28{height:29.120000pt;}
.h15{height:33.515625pt;}
.h7{height:36.431250pt;}
.h13{height:38.828437pt;}
.h19{height:39.680000pt;}
.h1b{height:39.712000pt;}
.h1a{height:39.840000pt;}
.h1c{height:47.085938pt;}
.h3{height:47.109375pt;}
.h10{height:48.375000pt;}
.h16{height:49.336436pt;}
.h17{height:49.968750pt;}
.h14{height:52.108438pt;}
.h8{height:52.134375pt;}
.h9{height:53.535000pt;}
.hb{height:54.639063pt;}
.h4{height:58.563750pt;}
.h25{height:58.664741pt;}
.h1f{height:58.869262pt;}
.he{height:59.340000pt;}
.hd{height:64.290000pt;}
.hf{height:64.500000pt;}
.h12{height:69.660000pt;}
.ha{height:73.490625pt;}
.h5{height:75.465000pt;}
.hc{height:78.045000pt;}
.h6{height:80.625000pt;}
.h11{height:360.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:18.065695pt;}
.w1c{width:18.132893pt;}
.w1f{width:56.626667pt;}
.w1b{width:56.672000pt;}
.w27{width:58.866667pt;}
.w25{width:58.880000pt;}
.w5{width:59.026667pt;}
.w2c{width:59.040000pt;}
.w10{width:59.360000pt;}
.w9{width:59.392000pt;}
.w16{width:60.960000pt;}
.w3{width:71.386667pt;}
.w20{width:72.658667pt;}
.w28{width:75.538667pt;}
.w2e{width:75.698667pt;}
.w21{width:80.146667pt;}
.w29{width:83.346667pt;}
.w2f{width:83.506667pt;}
.w1d{width:93.760000pt;}
.w1e{width:93.792000pt;}
.w26{width:97.632000pt;}
.w2d{width:97.792000pt;}
.wb{width:98.240000pt;}
.wc{width:98.272000pt;}
.w12{width:99.552000pt;}
.w11{width:99.712000pt;}
.w7{width:99.866667pt;}
.w17{width:100.992000pt;}
.w22{width:101.466667pt;}
.w2a{width:105.626667pt;}
.w2b{width:114.580000pt;}
.w24{width:116.660000pt;}
.wf{width:116.820000pt;}
.w15{width:118.260000pt;}
.wd{width:124.178667pt;}
.w8{width:127.540000pt;}
.w18{width:127.858667pt;}
.w13{width:128.978667pt;}
.w1a{width:142.742667pt;}
.w6{width:160.333333pt;}
.we{width:184.506667pt;}
.w19{width:189.946667pt;}
.w14{width:191.546667pt;}
.w2{width:641.880000pt;}
.w23{width:703.036000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:3.619149pt;}
.x34{left:5.756000pt;}
.x3e{left:6.720000pt;}
.x5{left:7.680000pt;}
.x13{left:9.600000pt;}
.x51{left:19.186667pt;}
.x5a{left:20.306667pt;}
.x49{left:22.866667pt;}
.x43{left:24.000000pt;}
.x1f{left:25.280000pt;}
.x38{left:26.240000pt;}
.x4d{left:28.306667pt;}
.x29{left:29.600000pt;}
.x59{left:30.880000pt;}
.x12{left:34.880000pt;}
.x4e{left:36.306667pt;}
.x31{left:37.906667pt;}
.x48{left:39.200000pt;}
.x1{left:40.324000pt;}
.x24{left:41.440000pt;}
.x3b{left:42.720000pt;}
.x14{left:44.480000pt;}
.x37{left:45.764000pt;}
.x50{left:46.880000pt;}
.x6{left:48.000000pt;}
.x1d{left:49.124000pt;}
.x4f{left:50.720000pt;}
.x33{left:52.960000pt;}
.x46{left:55.840000pt;}
.x23{left:58.080000pt;}
.x28{left:60.028000pt;}
.xd{left:62.240000pt;}
.x35{left:63.826667pt;}
.x52{left:65.468000pt;}
.x17{left:72.000000pt;}
.x2a{left:75.680000pt;}
.x40{left:77.920000pt;}
.xe{left:79.232000pt;}
.xc{left:80.992000pt;}
.x27{left:92.160000pt;}
.x3f{left:94.400000pt;}
.x18{left:96.032000pt;}
.xf{left:107.552000pt;}
.x41{left:138.106667pt;}
.x5d{left:163.386667pt;}
.x2c{left:164.826667pt;}
.x1c{left:171.226667pt;}
.x5c{left:174.426667pt;}
.x1e{left:177.306667pt;}
.x42{left:189.146667pt;}
.x36{left:190.746667pt;}
.x2b{left:194.266667pt;}
.x53{left:195.386667pt;}
.x2{left:197.662667pt;}
.x5f{left:223.066667pt;}
.x2e{left:224.826667pt;}
.x39{left:226.426667pt;}
.x22{left:237.346667pt;}
.x3{left:241.182667pt;}
.x45{left:246.466667pt;}
.x9{left:252.066667pt;}
.xa{left:256.386667pt;}
.x5e{left:262.946667pt;}
.x54{left:264.080000pt;}
.x2d{left:265.680000pt;}
.x7{left:267.106667pt;}
.x20{left:277.346667pt;}
.x10{left:279.426667pt;}
.x44{left:284.213333pt;}
.x60{left:321.506667pt;}
.x55{left:322.626667pt;}
.x8{left:323.906667pt;}
.x2f{left:325.186667pt;}
.x3a{left:328.066667pt;}
.xb{left:336.706667pt;}
.x47{left:340.866667pt;}
.x61{left:419.786667pt;}
.x11{left:420.893333pt;}
.x19{left:423.146667pt;}
.x30{left:425.386667pt;}
.x3c{left:429.706667pt;}
.x25{left:435.146667pt;}
.x15{left:444.893333pt;}
.x16{left:468.893333pt;}
.x62{left:479.466667pt;}
.x56{left:480.586667pt;}
.x1a{left:482.826667pt;}
.x4a{left:492.586667pt;}
.x32{left:555.013333pt;}
.x57{left:556.773333pt;}
.x3d{left:558.213333pt;}
.x26{left:560.133333pt;}
.x4b{left:565.893333pt;}
.x5b{left:576.133333pt;}
.x58{left:640.933333pt;}
.x1b{left:643.813333pt;}
.x4c{left:646.693333pt;}
.x4{left:682.213333pt;}
}




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