
    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_28b4d8c989fe52948b903155.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_d5a59b77abb506805f91cdf5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_24bc4522c4a9b6a6a392d9b6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.012207;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_da401e8ea5024b7f970e2382.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.006836;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_3b688abd90bf17b1f45a4af1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.012207;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_1900068d4cf0cd96aefa23d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.060059;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_be4ffa147cdf6c56f122ade6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.747559;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5170ad6916200fe2f868301d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006836;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_7a308818adefd993bf8d747b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.378906;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_27540d5dd84c285b238af67f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.014160;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);}
.v1{vertical-align:-27.600000px;}
.v3{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.600000px;}
.ls6{letter-spacing:-0.600000px;}
.ls12{letter-spacing:-0.480000px;}
.lse{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.300000px;}
.lsa{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.060000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.060000px;}
.ls10{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.240000px;}
.ls0{letter-spacing:0.300000px;}
.lsc{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.420000px;}
.lsb{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.600000px;}
.ls3{letter-spacing:0.750000px;}
.ls11{letter-spacing:1.740000px;}
.ls16{letter-spacing:4.140000px;}
.ls14{letter-spacing:7.740000px;}
.ls13{letter-spacing:19.800000px;}
.ls9{letter-spacing:45.660000px;}
.ls17{letter-spacing:45.720000px;}
.ls7{letter-spacing:45.840000px;}
.ls15{letter-spacing:201.000000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-60.000000px;}
.ws7{word-spacing:-15.540000px;}
.ws8{word-spacing:-15.360000px;}
.ws9{word-spacing:-15.240000px;}
.ws4{word-spacing:-15.000000px;}
.wsb{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.820000px;}
.wsa{word-spacing:-14.640000px;}
.wsd{word-spacing:-14.520000px;}
.ws0{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.000000px;}
.ws2{word-spacing:-10.500000px;}
.ws3{word-spacing:-9.000000px;}
.ws5{word-spacing:0.000000px;}
._22{margin-left:-5.160000px;}
._10{margin-left:-4.140000px;}
._f{margin-left:-2.460000px;}
._1{margin-left:-1.020000px;}
._0{width:1.080000px;}
._2{width:2.100000px;}
._3{width:3.378000px;}
._a{width:4.920000px;}
._16{width:6.180000px;}
._b{width:7.290000px;}
._12{width:8.850000px;}
._7{width:10.620000px;}
._11{width:11.940000px;}
._1b{width:13.740000px;}
._15{width:16.980000px;}
._c{width:18.240000px;}
._d{width:19.350000px;}
._1c{width:20.550000px;}
._1d{width:21.720000px;}
._e{width:22.920000px;}
._8{width:24.060000px;}
._9{width:25.260000px;}
._1f{width:26.700000px;}
._20{width:28.140000px;}
._1e{width:29.160000px;}
._14{width:30.420000px;}
._18{width:32.160000px;}
._17{width:33.360000px;}
._1a{width:34.380000px;}
._19{width:35.700000px;}
._21{width:37.620000px;}
._24{width:40.200000px;}
._25{width:41.310000px;}
._13{width:46.500000px;}
._26{width:131.400000px;}
._23{width:201.000000px;}
._6{width:391.920000px;}
._4{width:445.080000px;}
._5{width:480.696000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.000000px;}
.fs4{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y157{bottom:3.885000px;}
.y152{bottom:4.200000px;}
.y155{bottom:4.215000px;}
.y93{bottom:4.500000px;}
.yad{bottom:4.515000px;}
.y13e{bottom:4.545000px;}
.y13b{bottom:4.785000px;}
.y8d{bottom:4.800000px;}
.yaa{bottom:4.815000px;}
.y138{bottom:4.830000px;}
.y97{bottom:4.845000px;}
.y1b1{bottom:5.100000px;}
.y1aa{bottom:5.400000px;}
.y1a9{bottom:5.700000px;}
.y105{bottom:7.200000px;}
.y1cb{bottom:7.500000px;}
.y1c7{bottom:7.515000px;}
.y1c6{bottom:7.800000px;}
.y1c9{bottom:7.815000px;}
.y106{bottom:9.300000px;}
.y8b{bottom:15.000000px;}
.yf5{bottom:20.100000px;}
.y156{bottom:20.115000px;}
.yf3{bottom:20.400000px;}
.y165{bottom:20.415000px;}
.yec{bottom:24.600000px;}
.y153{bottom:24.630000px;}
.y163{bottom:24.885000px;}
.y8c{bottom:24.900000px;}
.yf0{bottom:24.915000px;}
.y11a{bottom:24.930000px;}
.ya7{bottom:25.800000px;}
.y54{bottom:30.037500px;}
.ya{bottom:30.337500px;}
.y154{bottom:40.530000px;}
.y162{bottom:45.000000px;}
.y15b{bottom:45.300000px;}
.y119{bottom:45.345000px;}
.y53{bottom:46.237500px;}
.yee{bottom:46.245000px;}
.y9{bottom:50.137500px;}
.y2d{bottom:50.737500px;}
.y8{bottom:64.537500px;}
.y191{bottom:64.837500px;}
.y161{bottom:65.085000px;}
.y118{bottom:65.445000px;}
.yd1{bottom:66.037500px;}
.y1b0{bottom:66.337500px;}
.y7d{bottom:68.137500px;}
.y6c{bottom:70.237500px;}
.y151{bottom:73.537500px;}
.y17f{bottom:74.737500px;}
.yea{bottom:75.637500px;}
.y116{bottom:77.737500px;}
.y52{bottom:78.037500px;}
.y7{bottom:78.637500px;}
.y8a{bottom:78.937500px;}
.y1d7{bottom:79.237500px;}
.y107{bottom:79.537500px;}
.y15a{bottom:81.345000px;}
.y7c{bottom:83.737500px;}
.y5c{bottom:84.637500px;}
.y190{bottom:84.937500px;}
.y159{bottom:85.230000px;}
.y160{bottom:85.530000px;}
.yb9{bottom:85.537500px;}
.y158{bottom:85.830000px;}
.yd0{bottom:86.437500px;}
.y1af{bottom:87.637500px;}
.y6b{bottom:90.337500px;}
.y91{bottom:90.345000px;}
.y6{bottom:93.337500px;}
.y150{bottom:93.637500px;}
.y17e{bottom:94.837500px;}
.ye9{bottom:95.737500px;}
.y16a{bottom:96.037500px;}
.y134{bottom:96.937500px;}
.y51{bottom:98.137500px;}
.y1d6{bottom:99.637500px;}
.y15f{bottom:101.430000px;}
.y5b{bottom:104.737500px;}
.y15e{bottom:105.330000px;}
.y18f{bottom:105.337500px;}
.y15d{bottom:105.630000px;}
.yb8{bottom:105.637500px;}
.ycf{bottom:106.537500px;}
.y1ae{bottom:107.737500px;}
.y5{bottom:109.537500px;}
.y90{bottom:110.445000px;}
.y6a{bottom:110.737500px;}
.y14f{bottom:113.737500px;}
.y17d{bottom:114.937500px;}
.ye8{bottom:115.837500px;}
.y169{bottom:116.137500px;}
.y133{bottom:117.337500px;}
.y50{bottom:118.237500px;}
.y1d5{bottom:119.737500px;}
.y89{bottom:124.837500px;}
.y5a{bottom:125.137500px;}
.y18e{bottom:125.437500px;}
.yb7{bottom:125.737500px;}
.y104{bottom:126.037500px;}
.yce{bottom:126.637500px;}
.y1ad{bottom:127.837500px;}
.y14e{bottom:130.237500px;}
.y8f{bottom:130.530000px;}
.y69{bottom:130.837500px;}
.y4{bottom:132.937500px;}
.ydf{bottom:133.537500px;}
.y19f{bottom:134.137500px;}
.y11b{bottom:134.145000px;}
.y17c{bottom:135.337500px;}
.y168{bottom:136.237500px;}
.y132{bottom:137.437500px;}
.y115{bottom:138.337500px;}
.y4f{bottom:138.637500px;}
.y1d4{bottom:140.137500px;}
.y59{bottom:145.275000px;}
.y18d{bottom:145.875000px;}
.yb6{bottom:146.175000px;}
.ycd{bottom:147.075000px;}
.y1ac{bottom:149.175000px;}
.y14d{bottom:150.375000px;}
.y68{bottom:150.975000px;}
.y103{bottom:154.275000px;}
.y17b{bottom:155.475000px;}
.ye7{bottom:156.075000px;}
.y167{bottom:156.675000px;}
.y131{bottom:157.875000px;}
.y4e{bottom:158.775000px;}
.y1d3{bottom:160.275000px;}
.ye0{bottom:160.882500px;}
.y2a{bottom:161.775000px;}
.y58{bottom:165.375000px;}
.y18c{bottom:165.975000px;}
.yb5{bottom:166.275000px;}
.ycc{bottom:167.175000px;}
.y1ab{bottom:169.575000px;}
.y67{bottom:171.375000px;}
.y102{bottom:174.675000px;}
.y17a{bottom:175.875000px;}
.y166{bottom:176.775000px;}
.y130{bottom:177.975000px;}
.ye6{bottom:178.575000px;}
.y114{bottom:178.875000px;}
.y4d{bottom:179.175000px;}
.y1d2{bottom:180.675000px;}
.y18b{bottom:181.575000px;}
.y29{bottom:182.175000px;}
.y57{bottom:185.775000px;}
.yb4{bottom:186.675000px;}
.ycb{bottom:187.575000px;}
.y1a8{bottom:189.675000px;}
.y19e{bottom:190.875000px;}
.y66{bottom:191.475000px;}
.y101{bottom:194.775000px;}
.y179{bottom:195.975000px;}
.y14c{bottom:197.175000px;}
.y12f{bottom:198.375000px;}
.y4c{bottom:199.275000px;}
.y1d1{bottom:200.775000px;}
.ye5{bottom:201.075000px;}
.y28{bottom:202.275000px;}
.y56{bottom:205.875000px;}
.yb3{bottom:206.775000px;}
.yca{bottom:207.675000px;}
.y65{bottom:211.875000px;}
.y100{bottom:215.175000px;}
.y178{bottom:216.375000px;}
.y14b{bottom:217.275000px;}
.y12e{bottom:218.475000px;}
.y113{bottom:219.375000px;}
.y4b{bottom:219.675000px;}
.y1d0{bottom:221.175000px;}
.y55{bottom:221.475000px;}
.y27{bottom:222.675000px;}
.ye4{bottom:223.575000px;}
.y88{bottom:225.975000px;}
.yb2{bottom:227.175000px;}
.y64{bottom:227.475000px;}
.yc9{bottom:228.075000px;}
.y19d{bottom:231.375000px;}
.y112{bottom:234.975000px;}
.yff{bottom:235.275000px;}
.y177{bottom:236.475000px;}
.y1a7{bottom:237.375000px;}
.y14a{bottom:237.675000px;}
.y12d{bottom:238.575000px;}
.y4a{bottom:239.775000px;}
.y1cf{bottom:241.275000px;}
.y26{bottom:242.775000px;}
.ye3{bottom:245.775000px;}
.y87{bottom:246.375000px;}
.yb1{bottom:247.275000px;}
.yc8{bottom:248.175000px;}
.y176{bottom:252.075000px;}
.y197{bottom:252.675000px;}
.yfe{bottom:255.675000px;}
.y149{bottom:257.775000px;}
.y12c{bottom:258.975000px;}
.y49{bottom:260.175000px;}
.y1ce{bottom:261.405000px;}
.y25{bottom:263.220000px;}
.y86{bottom:266.505000px;}
.yb0{bottom:267.720000px;}
.ye2{bottom:268.320000px;}
.yc7{bottom:268.605000px;}
.y19c{bottom:272.820000px;}
.y196{bottom:273.120000px;}
.yfd{bottom:275.820000px;}
.y1a6{bottom:277.920000px;}
.y148{bottom:278.220000px;}
.y12b{bottom:279.105000px;}
.y48{bottom:280.320000px;}
.y1cd{bottom:281.820000px;}
.y24{bottom:283.320000px;}
.y85{bottom:286.905000px;}
.yaf{bottom:287.820000px;}
.yc6{bottom:288.720000px;}
.ye1{bottom:289.905000px;}
.y7b{bottom:290.820000px;}
.y195{bottom:293.220000px;}
.y164{bottom:294.405000px;}
.yfc{bottom:296.205000px;}
.y1cc{bottom:298.005000px;}
.y147{bottom:298.320000px;}
.y1dc{bottom:298.620000px;}
.y12a{bottom:299.505000px;}
.y47{bottom:300.720000px;}
.y23{bottom:303.720000px;}
.yae{bottom:304.320000px;}
.y84{bottom:307.005000px;}
.yc5{bottom:309.105000px;}
.yde{bottom:310.905000px;}
.y7a{bottom:311.205000px;}
.y194{bottom:313.620000px;}
.y15c{bottom:314.820000px;}
.yfb{bottom:316.320000px;}
.y129{bottom:317.220000px;}
.y1db{bottom:318.120000px;}
.y1a5{bottom:318.420000px;}
.y146{bottom:318.720000px;}
.y46{bottom:320.820000px;}
.y1ca{bottom:321.405000px;}
.y22{bottom:323.820000px;}
.yab{bottom:325.605000px;}
.y83{bottom:327.405000px;}
.yc4{bottom:329.220000px;}
.y128{bottom:329.820000px;}
.y79{bottom:331.320000px;}
.y193{bottom:333.720000px;}
.ydd{bottom:336.405000px;}
.yfa{bottom:336.705000px;}
.y145{bottom:338.820000px;}
.y45{bottom:341.220000px;}
.y21{bottom:344.220000px;}
.y1c8{bottom:344.505000px;}
.yac{bottom:346.905000px;}
.y82{bottom:347.505000px;}
.yc3{bottom:349.320000px;}
.y127{bottom:349.905000px;}
.y78{bottom:351.705000px;}
.y192{bottom:354.120000px;}
.ydc{bottom:356.505000px;}
.yf9{bottom:356.820000px;}
.y144{bottom:358.920000px;}
.y1da{bottom:359.505000px;}
.y44{bottom:361.320000px;}
.y20{bottom:364.320000px;}
.y18a{bottom:364.905000px;}
.ya9{bottom:367.005000px;}
.y81{bottom:367.905000px;}
.yc2{bottom:369.720000px;}
.y126{bottom:370.320000px;}
.y77{bottom:371.820000px;}
.yf8{bottom:373.005000px;}
.ydb{bottom:376.905000px;}
.y1a4{bottom:379.020000px;}
.y143{bottom:379.320000px;}
.y1d9{bottom:380.205000px;}
.y43{bottom:381.450000px;}
.y1f{bottom:384.750000px;}
.y189{bottom:385.350000px;}
.y80{bottom:388.050000px;}
.ya6{bottom:388.650000px;}
.yc1{bottom:389.850000px;}
.y125{bottom:390.450000px;}
.y1c5{bottom:391.050000px;}
.y76{bottom:392.250000px;}
.yf7{bottom:393.450000px;}
.yda{bottom:397.050000px;}
.y142{bottom:399.450000px;}
.y42{bottom:401.850000px;}
.y1e{bottom:404.850000px;}
.y188{bottom:405.450000px;}
.y7f{bottom:408.450000px;}
.ya8{bottom:409.950000px;}
.yc0{bottom:410.250000px;}
.y124{bottom:410.850000px;}
.y75{bottom:412.350000px;}
.yf6{bottom:413.550000px;}
.y1c4{bottom:415.050000px;}
.yd9{bottom:417.450000px;}
.y1a3{bottom:419.550000px;}
.y141{bottom:419.850000px;}
.y41{bottom:421.950000px;}
.y7e{bottom:424.050000px;}
.y1d{bottom:424.950000px;}
.y187{bottom:425.850000px;}
.ybf{bottom:430.350000px;}
.ya5{bottom:430.950000px;}
.y74{bottom:432.750000px;}
.yf4{bottom:433.950000px;}
.y140{bottom:436.050000px;}
.yd8{bottom:437.550000px;}
.y19b{bottom:439.950000px;}
.y1c3{bottom:440.850000px;}
.y40{bottom:442.350000px;}
.y1c{bottom:445.350000px;}
.y186{bottom:445.950000px;}
.ybe{bottom:450.750000px;}
.y123{bottom:451.350000px;}
.y73{bottom:452.850000px;}
.yf2{bottom:454.050000px;}
.ya4{bottom:456.450000px;}
.yd7{bottom:457.950000px;}
.y1a2{bottom:460.050000px;}
.y19a{bottom:460.350000px;}
.y1c2{bottom:460.950000px;}
.y3f{bottom:462.450000px;}
.y1b{bottom:465.450000px;}
.y185{bottom:466.350000px;}
.y63{bottom:466.950000px;}
.ybd{bottom:470.850000px;}
.y122{bottom:471.450000px;}
.y72{bottom:472.950000px;}
.yf1{bottom:474.450000px;}
.y13f{bottom:476.550000px;}
.ya3{bottom:476.850000px;}
.yd6{bottom:478.050000px;}
.y111{bottom:478.350000px;}
.y199{bottom:480.450000px;}
.y1c1{bottom:481.350000px;}
.y3e{bottom:482.850000px;}
.y1a{bottom:485.850000px;}
.y184{bottom:486.450000px;}
.y175{bottom:486.750000px;}
.y62{bottom:487.050000px;}
.ybc{bottom:491.250000px;}
.y121{bottom:491.850000px;}
.y71{bottom:493.350000px;}
.yed{bottom:495.750000px;}
.ya2{bottom:496.950000px;}
.yd5{bottom:498.450000px;}
.y1a1{bottom:500.550000px;}
.y174{bottom:500.850000px;}
.y1c0{bottom:501.495000px;}
.y3d{bottom:502.995000px;}
.y19{bottom:505.995000px;}
.y183{bottom:506.595000px;}
.y61{bottom:507.495000px;}
.ybb{bottom:511.395000px;}
.y120{bottom:511.980000px;}
.y70{bottom:513.495000px;}
.y1a0{bottom:516.195000px;}
.yef{bottom:517.080000px;}
.y13d{bottom:517.095000px;}
.ya1{bottom:517.395000px;}
.yd4{bottom:518.595000px;}
.y110{bottom:518.880000px;}
.y173{bottom:520.995000px;}
.y1bf{bottom:521.880000px;}
.y3c{bottom:523.380000px;}
.y18{bottom:526.380000px;}
.yba{bottom:526.995000px;}
.y60{bottom:527.595000px;}
.y11f{bottom:532.380000px;}
.y6f{bottom:533.880000px;}
.y13c{bottom:537.480000px;}
.ya0{bottom:537.495000px;}
.yd3{bottom:538.995000px;}
.y172{bottom:541.380000px;}
.y1be{bottom:541.995000px;}
.y3b{bottom:543.495000px;}
.y17{bottom:546.495000px;}
.y182{bottom:547.080000px;}
.y5f{bottom:547.995000px;}
.y11e{bottom:552.495000px;}
.y6e{bottom:553.995000px;}
.yd2{bottom:554.580000px;}
.y13a{bottom:557.595000px;}
.y9f{bottom:557.880000px;}
.y198{bottom:558.480000px;}
.yeb{bottom:558.495000px;}
.y10f{bottom:559.380000px;}
.y171{bottom:561.495000px;}
.y1bd{bottom:562.380000px;}
.y3a{bottom:563.880000px;}
.y16{bottom:566.880000px;}
.y181{bottom:567.495000px;}
.y5e{bottom:568.080000px;}
.y6d{bottom:569.880000px;}
.y9e{bottom:577.995000px;}
.y10e{bottom:579.495000px;}
.y170{bottom:581.580000px;}
.y1bc{bottom:582.495000px;}
.y180{bottom:583.095000px;}
.y5d{bottom:583.695000px;}
.y39{bottom:583.995000px;}
.y15{bottom:586.995000px;}
.y139{bottom:598.080000px;}
.y9d{bottom:598.095000px;}
.y10d{bottom:599.595000px;}
.y16f{bottom:601.995000px;}
.y1bb{bottom:602.580000px;}
.y38{bottom:604.095000px;}
.y14{bottom:607.380000px;}
.y11d{bottom:612.795000px;}
.y137{bottom:618.195000px;}
.y9c{bottom:618.495000px;}
.y10c{bottom:619.995000px;}
.y16e{bottom:622.125000px;}
.y1ba{bottom:623.025000px;}
.y37{bottom:624.525000px;}
.y13{bottom:626.625000px;}
.y11c{bottom:635.325000px;}
.y9b{bottom:638.625000px;}
.y10b{bottom:640.125000px;}
.y16d{bottom:642.525000px;}
.y1b9{bottom:643.125000px;}
.y36{bottom:644.625000px;}
.y12{bottom:645.525000px;}
.y109{bottom:657.825000px;}
.y136{bottom:658.725000px;}
.y9a{bottom:659.025000px;}
.y1d8{bottom:659.625000px;}
.y11{bottom:661.725000px;}
.y16c{bottom:662.625000px;}
.y1b8{bottom:663.525000px;}
.y35{bottom:665.025000px;}
.y8e{bottom:675.225000px;}
.y10a{bottom:679.125000px;}
.y135{bottom:679.725000px;}
.y10{bottom:682.125000px;}
.y1b7{bottom:683.625000px;}
.y34{bottom:685.125000px;}
.y99{bottom:696.225000px;}
.y16b{bottom:699.225000px;}
.y108{bottom:700.125000px;}
.yf{bottom:700.425000px;}
.y1b6{bottom:704.025000px;}
.y33{bottom:705.525000px;}
.y98{bottom:717.225000px;}
.y117{bottom:720.225000px;}
.ye{bottom:720.525000px;}
.y1b5{bottom:724.125000px;}
.y32{bottom:725.625000px;}
.y96{bottom:738.225000px;}
.yd{bottom:741.525000px;}
.y1b4{bottom:744.570000px;}
.y31{bottom:746.070000px;}
.y95{bottom:759.270000px;}
.y1b3{bottom:764.655000px;}
.yc{bottom:765.870000px;}
.y30{bottom:766.155000px;}
.y94{bottom:780.270000px;}
.y1b2{bottom:781.170000px;}
.y2f{bottom:786.570000px;}
.yb{bottom:789.570000px;}
.y92{bottom:801.255000px;}
.y2e{bottom:806.670000px;}
.y3{bottom:813.570000px;}
.y2c{bottom:830.955000px;}
.y2{bottom:831.570000px;}
.y1{bottom:849.570000px;}
.y2b{bottom:851.370000px;}
.h20{height:20.085000px;}
.h11{height:20.100000px;}
.h1e{height:20.122500px;}
.h17{height:20.137500px;}
.h12{height:20.385000px;}
.h13{height:20.400000px;}
.h14{height:20.437500px;}
.h27{height:21.300000px;}
.h28{height:21.337500px;}
.h1a{height:22.837500px;}
.h2b{height:23.100000px;}
.h2a{height:23.137500px;}
.hb{height:23.179688px;}
.h1f{height:23.276367px;}
.h29{height:23.400000px;}
.h25{height:26.314453px;}
.h1b{height:29.400000px;}
.h5{height:30.700195px;}
.h3{height:33.328125px;}
.h4{height:35.085938px;}
.hc{height:35.179688px;}
.h2{height:39.577148px;}
.h18{height:40.200000px;}
.hf{height:40.500000px;}
.h22{height:40.522500px;}
.h26{height:40.537500px;}
.h15{height:41.400000px;}
.ha{height:43.857422px;}
.h1{height:43.974609px;}
.h9{height:44.179688px;}
.he{height:45.826172px;}
.hd{height:46.552734px;}
.h7{height:48.597656px;}
.h6{height:49.992188px;}
.h8{height:53.015625px;}
.h19{height:61.837500px;}
.h21{height:66.210938px;}
.h1c{height:81.037500px;}
.h23{height:101.437500px;}
.h24{height:121.237500px;}
.h10{height:146.137500px;}
.h1d{height:149.737500px;}
.h16{height:176.475000px;}
.h0{height:918.000000px;}
.w8{width:90.337500px;}
.w1a{width:92.137500px;}
.wa{width:95.737500px;}
.w11{width:106.237500px;}
.we{width:106.537500px;}
.w1f{width:109.875000px;}
.wc{width:116.775000px;}
.w14{width:118.875000px;}
.w10{width:127.575000px;}
.wf{width:127.837500px;}
.w16{width:127.875000px;}
.w18{width:133.537500px;}
.w15{width:138.037500px;}
.wb{width:138.337500px;}
.w1e{width:140.437500px;}
.w25{width:147.037500px;}
.w21{width:148.837500px;}
.w7{width:156.330000px;}
.w17{width:156.675000px;}
.w23{width:157.575000px;}
.w13{width:157.830000px;}
.w3{width:159.375000px;}
.w6{width:159.675000px;}
.w20{width:168.045000px;}
.w1c{width:170.175000px;}
.w1d{width:170.775000px;}
.w4{width:178.275000px;}
.wd{width:180.675000px;}
.w12{width:180.975000px;}
.w26{width:184.605000px;}
.w9{width:200.220000px;}
.w5{width:201.975000px;}
.w22{width:202.020000px;}
.w2{width:202.275000px;}
.w19{width:209.475000px;}
.w28{width:212.775000px;}
.w24{width:236.175000px;}
.w1b{width:241.005000px;}
.w29{width:244.605000px;}
.w2a{width:255.405000px;}
.w27{width:257.175000px;}
.w1{width:701.999990px;}
.w0{width:702.000000px;}
.x0{left:0.000000px;}
.x22{left:8.100000px;}
.x59{left:9.300000px;}
.x2d{left:10.500000px;}
.x5a{left:12.000000px;}
.x31{left:14.130000px;}
.x3a{left:16.200000px;}
.x50{left:18.300000px;}
.x38{left:21.300000px;}
.x25{left:22.815000px;}
.x61{left:24.300000px;}
.x26{left:25.515000px;}
.x4f{left:26.730000px;}
.x63{left:28.845000px;}
.x48{left:30.000000px;}
.x44{left:31.230000px;}
.x45{left:32.430000px;}
.x2b{left:34.530000px;}
.x23{left:36.300000px;}
.x2e{left:37.545000px;}
.x30{left:40.200000px;}
.x3e{left:42.000000px;}
.x4b{left:44.130000px;}
.x40{left:45.600000px;}
.x3c{left:47.145000px;}
.x3f{left:49.500000px;}
.x41{left:50.700000px;}
.x33{left:52.830000px;}
.xe{left:54.037490px;}
.x42{left:56.100000px;}
.x77{left:57.337490px;}
.x1{left:59.437490px;}
.x49{left:62.100000px;}
.x2f{left:64.830000px;}
.x3d{left:70.500000px;}
.x4a{left:74.730000px;}
.x32{left:75.930000px;}
.x69{left:79.537490px;}
.x6{left:81.037490px;}
.x67{left:83.445000px;}
.xa{left:84.637490px;}
.x13{left:86.437490px;}
.x21{left:89.737490px;}
.x74{left:91.530000px;}
.x7e{left:94.537490px;}
.x9{left:99.937490px;}
.x8{left:103.237490px;}
.x10{left:108.037490px;}
.x71{left:110.430000px;}
.xc{left:113.437490px;}
.x5d{left:116.730000px;}
.x5e{left:117.945000px;}
.x75{left:119.730000px;}
.x7{left:132.374990px;}
.x6c{left:141.374990px;}
.x1e{left:145.274990px;}
.x55{left:172.874990px;}
.x1d{left:187.274990px;}
.x37{left:192.375000px;}
.x65{left:202.875000px;}
.x72{left:206.475000px;}
.x29{left:210.375000px;}
.x51{left:211.875000px;}
.x6f{left:217.020000px;}
.x35{left:220.319990px;}
.xd{left:222.119990px;}
.x60{left:230.220000px;}
.x36{left:236.819990px;}
.x14{left:238.904990px;}
.x4c{left:240.420000px;}
.x56{left:243.420000px;}
.x2{left:250.319990px;}
.x6d{left:251.819990px;}
.x27{left:255.720000px;}
.x16{left:260.819990px;}
.x5b{left:263.520000px;}
.x78{left:266.820000px;}
.x7a{left:272.220000px;}
.x12{left:275.204990px;}
.xb{left:280.319990px;}
.x43{left:283.020000px;}
.xf{left:287.819990px;}
.x2a{left:300.720000px;}
.x19{left:302.819990px;}
.x7c{left:304.050000px;}
.x7d{left:305.849990px;}
.x39{left:309.450000px;}
.x6a{left:319.049990px;}
.x6b{left:324.449990px;}
.x52{left:330.750000px;}
.x4d{left:346.650000px;}
.x17{left:348.449990px;}
.x5{left:353.849990px;}
.x5c{left:355.650000px;}
.x4{left:360.749990px;}
.x5f{left:362.550000px;}
.x62{left:370.650000px;}
.x1a{left:380.849990px;}
.x73{left:391.095000px;}
.x57{left:400.095000px;}
.x66{left:404.895000px;}
.x46{left:410.595000px;}
.x28{left:415.395000px;}
.x24{left:420.780000px;}
.x79{left:436.995000px;}
.x7b{left:442.395000px;}
.x70{left:453.195000px;}
.x53{left:468.780000px;}
.x4e{left:474.495000px;}
.x64{left:480.225000px;}
.x6e{left:485.924990px;}
.x3b{left:490.125000px;}
.x2c{left:500.925000px;}
.x47{left:506.325000px;}
.x1c{left:526.424990px;}
.x58{left:533.625000px;}
.x18{left:534.824990px;}
.x15{left:536.324990px;}
.x54{left:546.524990px;}
.x76{left:548.624990px;}
.x20{left:550.424990px;}
.x1b{left:557.924990px;}
.x34{left:573.869990px;}
.x68{left:605.069990px;}
.x1f{left:636.254990px;}
.x11{left:642.269990px;}
.x3{left:648.254990px;}
@media print{
.v1{vertical-align:-24.533333pt;}
.v3{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.866667pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls12{letter-spacing:-0.426667pt;}
.lse{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.266667pt;}
.lsa{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.053333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.053333pt;}
.ls10{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.213333pt;}
.ls0{letter-spacing:0.266667pt;}
.lsc{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.373333pt;}
.lsb{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls3{letter-spacing:0.666667pt;}
.ls11{letter-spacing:1.546667pt;}
.ls16{letter-spacing:3.680000pt;}
.ls14{letter-spacing:6.880000pt;}
.ls13{letter-spacing:17.600000pt;}
.ls9{letter-spacing:40.586667pt;}
.ls17{letter-spacing:40.640000pt;}
.ls7{letter-spacing:40.746667pt;}
.ls15{letter-spacing:178.666667pt;}
.wsc{word-spacing:-53.333333pt;}
.ws7{word-spacing:-13.813333pt;}
.ws8{word-spacing:-13.653333pt;}
.ws9{word-spacing:-13.546667pt;}
.ws4{word-spacing:-13.333333pt;}
.wsb{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.173333pt;}
.wsa{word-spacing:-13.013333pt;}
.wsd{word-spacing:-12.906667pt;}
.ws0{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.666667pt;}
.ws2{word-spacing:-9.333333pt;}
.ws3{word-spacing:-8.000000pt;}
.ws5{word-spacing:0.000000pt;}
._22{margin-left:-4.586667pt;}
._10{margin-left:-3.680000pt;}
._f{margin-left:-2.186667pt;}
._1{margin-left:-0.906667pt;}
._0{width:0.960000pt;}
._2{width:1.866667pt;}
._3{width:3.002667pt;}
._a{width:4.373333pt;}
._16{width:5.493333pt;}
._b{width:6.480000pt;}
._12{width:7.866667pt;}
._7{width:9.440000pt;}
._11{width:10.613333pt;}
._1b{width:12.213333pt;}
._15{width:15.093333pt;}
._c{width:16.213333pt;}
._d{width:17.200000pt;}
._1c{width:18.266667pt;}
._1d{width:19.306667pt;}
._e{width:20.373333pt;}
._8{width:21.386667pt;}
._9{width:22.453333pt;}
._1f{width:23.733333pt;}
._20{width:25.013333pt;}
._1e{width:25.920000pt;}
._14{width:27.040000pt;}
._18{width:28.586667pt;}
._17{width:29.653333pt;}
._1a{width:30.560000pt;}
._19{width:31.733333pt;}
._21{width:33.440000pt;}
._24{width:35.733333pt;}
._25{width:36.720000pt;}
._13{width:41.333333pt;}
._26{width:116.800000pt;}
._23{width:178.666667pt;}
._6{width:348.373333pt;}
._4{width:395.626667pt;}
._5{width:427.285333pt;}
.fs7{font-size:26.666667pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y157{bottom:3.453333pt;}
.y152{bottom:3.733333pt;}
.y155{bottom:3.746667pt;}
.y93{bottom:4.000000pt;}
.yad{bottom:4.013333pt;}
.y13e{bottom:4.040000pt;}
.y13b{bottom:4.253333pt;}
.y8d{bottom:4.266667pt;}
.yaa{bottom:4.280000pt;}
.y138{bottom:4.293333pt;}
.y97{bottom:4.306667pt;}
.y1b1{bottom:4.533333pt;}
.y1aa{bottom:4.800000pt;}
.y1a9{bottom:5.066667pt;}
.y105{bottom:6.400000pt;}
.y1cb{bottom:6.666667pt;}
.y1c7{bottom:6.680000pt;}
.y1c6{bottom:6.933333pt;}
.y1c9{bottom:6.946667pt;}
.y106{bottom:8.266667pt;}
.y8b{bottom:13.333333pt;}
.yf5{bottom:17.866667pt;}
.y156{bottom:17.880000pt;}
.yf3{bottom:18.133333pt;}
.y165{bottom:18.146667pt;}
.yec{bottom:21.866667pt;}
.y153{bottom:21.893333pt;}
.y163{bottom:22.120000pt;}
.y8c{bottom:22.133333pt;}
.yf0{bottom:22.146667pt;}
.y11a{bottom:22.160000pt;}
.ya7{bottom:22.933333pt;}
.y54{bottom:26.700000pt;}
.ya{bottom:26.966667pt;}
.y154{bottom:36.026667pt;}
.y162{bottom:40.000000pt;}
.y15b{bottom:40.266667pt;}
.y119{bottom:40.306667pt;}
.y53{bottom:41.100000pt;}
.yee{bottom:41.106667pt;}
.y9{bottom:44.566667pt;}
.y2d{bottom:45.100000pt;}
.y8{bottom:57.366667pt;}
.y191{bottom:57.633333pt;}
.y161{bottom:57.853333pt;}
.y118{bottom:58.173333pt;}
.yd1{bottom:58.700000pt;}
.y1b0{bottom:58.966667pt;}
.y7d{bottom:60.566667pt;}
.y6c{bottom:62.433333pt;}
.y151{bottom:65.366667pt;}
.y17f{bottom:66.433333pt;}
.yea{bottom:67.233333pt;}
.y116{bottom:69.100000pt;}
.y52{bottom:69.366667pt;}
.y7{bottom:69.900000pt;}
.y8a{bottom:70.166667pt;}
.y1d7{bottom:70.433333pt;}
.y107{bottom:70.700000pt;}
.y15a{bottom:72.306667pt;}
.y7c{bottom:74.433333pt;}
.y5c{bottom:75.233333pt;}
.y190{bottom:75.500000pt;}
.y159{bottom:75.760000pt;}
.y160{bottom:76.026667pt;}
.yb9{bottom:76.033333pt;}
.y158{bottom:76.293333pt;}
.yd0{bottom:76.833333pt;}
.y1af{bottom:77.900000pt;}
.y6b{bottom:80.300000pt;}
.y91{bottom:80.306667pt;}
.y6{bottom:82.966667pt;}
.y150{bottom:83.233333pt;}
.y17e{bottom:84.300000pt;}
.ye9{bottom:85.100000pt;}
.y16a{bottom:85.366667pt;}
.y134{bottom:86.166667pt;}
.y51{bottom:87.233333pt;}
.y1d6{bottom:88.566667pt;}
.y15f{bottom:90.160000pt;}
.y5b{bottom:93.100000pt;}
.y15e{bottom:93.626667pt;}
.y18f{bottom:93.633333pt;}
.y15d{bottom:93.893333pt;}
.yb8{bottom:93.900000pt;}
.ycf{bottom:94.700000pt;}
.y1ae{bottom:95.766667pt;}
.y5{bottom:97.366667pt;}
.y90{bottom:98.173333pt;}
.y6a{bottom:98.433333pt;}
.y14f{bottom:101.100000pt;}
.y17d{bottom:102.166667pt;}
.ye8{bottom:102.966667pt;}
.y169{bottom:103.233333pt;}
.y133{bottom:104.300000pt;}
.y50{bottom:105.100000pt;}
.y1d5{bottom:106.433333pt;}
.y89{bottom:110.966667pt;}
.y5a{bottom:111.233333pt;}
.y18e{bottom:111.500000pt;}
.yb7{bottom:111.766667pt;}
.y104{bottom:112.033333pt;}
.yce{bottom:112.566667pt;}
.y1ad{bottom:113.633333pt;}
.y14e{bottom:115.766667pt;}
.y8f{bottom:116.026667pt;}
.y69{bottom:116.300000pt;}
.y4{bottom:118.166667pt;}
.ydf{bottom:118.700000pt;}
.y19f{bottom:119.233333pt;}
.y11b{bottom:119.240000pt;}
.y17c{bottom:120.300000pt;}
.y168{bottom:121.100000pt;}
.y132{bottom:122.166667pt;}
.y115{bottom:122.966667pt;}
.y4f{bottom:123.233333pt;}
.y1d4{bottom:124.566667pt;}
.y59{bottom:129.133333pt;}
.y18d{bottom:129.666667pt;}
.yb6{bottom:129.933333pt;}
.ycd{bottom:130.733333pt;}
.y1ac{bottom:132.600000pt;}
.y14d{bottom:133.666667pt;}
.y68{bottom:134.200000pt;}
.y103{bottom:137.133333pt;}
.y17b{bottom:138.200000pt;}
.ye7{bottom:138.733333pt;}
.y167{bottom:139.266667pt;}
.y131{bottom:140.333333pt;}
.y4e{bottom:141.133333pt;}
.y1d3{bottom:142.466667pt;}
.ye0{bottom:143.006667pt;}
.y2a{bottom:143.800000pt;}
.y58{bottom:147.000000pt;}
.y18c{bottom:147.533333pt;}
.yb5{bottom:147.800000pt;}
.ycc{bottom:148.600000pt;}
.y1ab{bottom:150.733333pt;}
.y67{bottom:152.333333pt;}
.y102{bottom:155.266667pt;}
.y17a{bottom:156.333333pt;}
.y166{bottom:157.133333pt;}
.y130{bottom:158.200000pt;}
.ye6{bottom:158.733333pt;}
.y114{bottom:159.000000pt;}
.y4d{bottom:159.266667pt;}
.y1d2{bottom:160.600000pt;}
.y18b{bottom:161.400000pt;}
.y29{bottom:161.933333pt;}
.y57{bottom:165.133333pt;}
.yb4{bottom:165.933333pt;}
.ycb{bottom:166.733333pt;}
.y1a8{bottom:168.600000pt;}
.y19e{bottom:169.666667pt;}
.y66{bottom:170.200000pt;}
.y101{bottom:173.133333pt;}
.y179{bottom:174.200000pt;}
.y14c{bottom:175.266667pt;}
.y12f{bottom:176.333333pt;}
.y4c{bottom:177.133333pt;}
.y1d1{bottom:178.466667pt;}
.ye5{bottom:178.733333pt;}
.y28{bottom:179.800000pt;}
.y56{bottom:183.000000pt;}
.yb3{bottom:183.800000pt;}
.yca{bottom:184.600000pt;}
.y65{bottom:188.333333pt;}
.y100{bottom:191.266667pt;}
.y178{bottom:192.333333pt;}
.y14b{bottom:193.133333pt;}
.y12e{bottom:194.200000pt;}
.y113{bottom:195.000000pt;}
.y4b{bottom:195.266667pt;}
.y1d0{bottom:196.600000pt;}
.y55{bottom:196.866667pt;}
.y27{bottom:197.933333pt;}
.ye4{bottom:198.733333pt;}
.y88{bottom:200.866667pt;}
.yb2{bottom:201.933333pt;}
.y64{bottom:202.200000pt;}
.yc9{bottom:202.733333pt;}
.y19d{bottom:205.666667pt;}
.y112{bottom:208.866667pt;}
.yff{bottom:209.133333pt;}
.y177{bottom:210.200000pt;}
.y1a7{bottom:211.000000pt;}
.y14a{bottom:211.266667pt;}
.y12d{bottom:212.066667pt;}
.y4a{bottom:213.133333pt;}
.y1cf{bottom:214.466667pt;}
.y26{bottom:215.800000pt;}
.ye3{bottom:218.466667pt;}
.y87{bottom:219.000000pt;}
.yb1{bottom:219.800000pt;}
.yc8{bottom:220.600000pt;}
.y176{bottom:224.066667pt;}
.y197{bottom:224.600000pt;}
.yfe{bottom:227.266667pt;}
.y149{bottom:229.133333pt;}
.y12c{bottom:230.200000pt;}
.y49{bottom:231.266667pt;}
.y1ce{bottom:232.360000pt;}
.y25{bottom:233.973333pt;}
.y86{bottom:236.893333pt;}
.yb0{bottom:237.973333pt;}
.ye2{bottom:238.506667pt;}
.yc7{bottom:238.760000pt;}
.y19c{bottom:242.506667pt;}
.y196{bottom:242.773333pt;}
.yfd{bottom:245.173333pt;}
.y1a6{bottom:247.040000pt;}
.y148{bottom:247.306667pt;}
.y12b{bottom:248.093333pt;}
.y48{bottom:249.173333pt;}
.y1cd{bottom:250.506667pt;}
.y24{bottom:251.840000pt;}
.y85{bottom:255.026667pt;}
.yaf{bottom:255.840000pt;}
.yc6{bottom:256.640000pt;}
.ye1{bottom:257.693333pt;}
.y7b{bottom:258.506667pt;}
.y195{bottom:260.640000pt;}
.y164{bottom:261.693333pt;}
.yfc{bottom:263.293333pt;}
.y1cc{bottom:264.893333pt;}
.y147{bottom:265.173333pt;}
.y1dc{bottom:265.440000pt;}
.y12a{bottom:266.226667pt;}
.y47{bottom:267.306667pt;}
.y23{bottom:269.973333pt;}
.yae{bottom:270.506667pt;}
.y84{bottom:272.893333pt;}
.yc5{bottom:274.760000pt;}
.yde{bottom:276.360000pt;}
.y7a{bottom:276.626667pt;}
.y194{bottom:278.773333pt;}
.y15c{bottom:279.840000pt;}
.yfb{bottom:281.173333pt;}
.y129{bottom:281.973333pt;}
.y1db{bottom:282.773333pt;}
.y1a5{bottom:283.040000pt;}
.y146{bottom:283.306667pt;}
.y46{bottom:285.173333pt;}
.y1ca{bottom:285.693333pt;}
.y22{bottom:287.840000pt;}
.yab{bottom:289.426667pt;}
.y83{bottom:291.026667pt;}
.yc4{bottom:292.640000pt;}
.y128{bottom:293.173333pt;}
.y79{bottom:294.506667pt;}
.y193{bottom:296.640000pt;}
.ydd{bottom:299.026667pt;}
.yfa{bottom:299.293333pt;}
.y145{bottom:301.173333pt;}
.y45{bottom:303.306667pt;}
.y21{bottom:305.973333pt;}
.y1c8{bottom:306.226667pt;}
.yac{bottom:308.360000pt;}
.y82{bottom:308.893333pt;}
.yc3{bottom:310.506667pt;}
.y127{bottom:311.026667pt;}
.y78{bottom:312.626667pt;}
.y192{bottom:314.773333pt;}
.ydc{bottom:316.893333pt;}
.yf9{bottom:317.173333pt;}
.y144{bottom:319.040000pt;}
.y1da{bottom:319.560000pt;}
.y44{bottom:321.173333pt;}
.y20{bottom:323.840000pt;}
.y18a{bottom:324.360000pt;}
.ya9{bottom:326.226667pt;}
.y81{bottom:327.026667pt;}
.yc2{bottom:328.640000pt;}
.y126{bottom:329.173333pt;}
.y77{bottom:330.506667pt;}
.yf8{bottom:331.560000pt;}
.ydb{bottom:335.026667pt;}
.y1a4{bottom:336.906667pt;}
.y143{bottom:337.173333pt;}
.y1d9{bottom:337.960000pt;}
.y43{bottom:339.066667pt;}
.y1f{bottom:342.000000pt;}
.y189{bottom:342.533333pt;}
.y80{bottom:344.933333pt;}
.ya6{bottom:345.466667pt;}
.yc1{bottom:346.533333pt;}
.y125{bottom:347.066667pt;}
.y1c5{bottom:347.600000pt;}
.y76{bottom:348.666667pt;}
.yf7{bottom:349.733333pt;}
.yda{bottom:352.933333pt;}
.y142{bottom:355.066667pt;}
.y42{bottom:357.200000pt;}
.y1e{bottom:359.866667pt;}
.y188{bottom:360.400000pt;}
.y7f{bottom:363.066667pt;}
.ya8{bottom:364.400000pt;}
.yc0{bottom:364.666667pt;}
.y124{bottom:365.200000pt;}
.y75{bottom:366.533333pt;}
.yf6{bottom:367.600000pt;}
.y1c4{bottom:368.933333pt;}
.yd9{bottom:371.066667pt;}
.y1a3{bottom:372.933333pt;}
.y141{bottom:373.200000pt;}
.y41{bottom:375.066667pt;}
.y7e{bottom:376.933333pt;}
.y1d{bottom:377.733333pt;}
.y187{bottom:378.533333pt;}
.ybf{bottom:382.533333pt;}
.ya5{bottom:383.066667pt;}
.y74{bottom:384.666667pt;}
.yf4{bottom:385.733333pt;}
.y140{bottom:387.600000pt;}
.yd8{bottom:388.933333pt;}
.y19b{bottom:391.066667pt;}
.y1c3{bottom:391.866667pt;}
.y40{bottom:393.200000pt;}
.y1c{bottom:395.866667pt;}
.y186{bottom:396.400000pt;}
.ybe{bottom:400.666667pt;}
.y123{bottom:401.200000pt;}
.y73{bottom:402.533333pt;}
.yf2{bottom:403.600000pt;}
.ya4{bottom:405.733333pt;}
.yd7{bottom:407.066667pt;}
.y1a2{bottom:408.933333pt;}
.y19a{bottom:409.200000pt;}
.y1c2{bottom:409.733333pt;}
.y3f{bottom:411.066667pt;}
.y1b{bottom:413.733333pt;}
.y185{bottom:414.533333pt;}
.y63{bottom:415.066667pt;}
.ybd{bottom:418.533333pt;}
.y122{bottom:419.066667pt;}
.y72{bottom:420.400000pt;}
.yf1{bottom:421.733333pt;}
.y13f{bottom:423.600000pt;}
.ya3{bottom:423.866667pt;}
.yd6{bottom:424.933333pt;}
.y111{bottom:425.200000pt;}
.y199{bottom:427.066667pt;}
.y1c1{bottom:427.866667pt;}
.y3e{bottom:429.200000pt;}
.y1a{bottom:431.866667pt;}
.y184{bottom:432.400000pt;}
.y175{bottom:432.666667pt;}
.y62{bottom:432.933333pt;}
.ybc{bottom:436.666667pt;}
.y121{bottom:437.200000pt;}
.y71{bottom:438.533333pt;}
.yed{bottom:440.666667pt;}
.ya2{bottom:441.733333pt;}
.yd5{bottom:443.066667pt;}
.y1a1{bottom:444.933333pt;}
.y174{bottom:445.200000pt;}
.y1c0{bottom:445.773333pt;}
.y3d{bottom:447.106667pt;}
.y19{bottom:449.773333pt;}
.y183{bottom:450.306667pt;}
.y61{bottom:451.106667pt;}
.ybb{bottom:454.573333pt;}
.y120{bottom:455.093333pt;}
.y70{bottom:456.440000pt;}
.y1a0{bottom:458.840000pt;}
.yef{bottom:459.626667pt;}
.y13d{bottom:459.640000pt;}
.ya1{bottom:459.906667pt;}
.yd4{bottom:460.973333pt;}
.y110{bottom:461.226667pt;}
.y173{bottom:463.106667pt;}
.y1bf{bottom:463.893333pt;}
.y3c{bottom:465.226667pt;}
.y18{bottom:467.893333pt;}
.yba{bottom:468.440000pt;}
.y60{bottom:468.973333pt;}
.y11f{bottom:473.226667pt;}
.y6f{bottom:474.560000pt;}
.y13c{bottom:477.760000pt;}
.ya0{bottom:477.773333pt;}
.yd3{bottom:479.106667pt;}
.y172{bottom:481.226667pt;}
.y1be{bottom:481.773333pt;}
.y3b{bottom:483.106667pt;}
.y17{bottom:485.773333pt;}
.y182{bottom:486.293333pt;}
.y5f{bottom:487.106667pt;}
.y11e{bottom:491.106667pt;}
.y6e{bottom:492.440000pt;}
.yd2{bottom:492.960000pt;}
.y13a{bottom:495.640000pt;}
.y9f{bottom:495.893333pt;}
.y198{bottom:496.426667pt;}
.yeb{bottom:496.440000pt;}
.y10f{bottom:497.226667pt;}
.y171{bottom:499.106667pt;}
.y1bd{bottom:499.893333pt;}
.y3a{bottom:501.226667pt;}
.y16{bottom:503.893333pt;}
.y181{bottom:504.440000pt;}
.y5e{bottom:504.960000pt;}
.y6d{bottom:506.560000pt;}
.y9e{bottom:513.773333pt;}
.y10e{bottom:515.106667pt;}
.y170{bottom:516.960000pt;}
.y1bc{bottom:517.773333pt;}
.y180{bottom:518.306667pt;}
.y5d{bottom:518.840000pt;}
.y39{bottom:519.106667pt;}
.y15{bottom:521.773333pt;}
.y139{bottom:531.626667pt;}
.y9d{bottom:531.640000pt;}
.y10d{bottom:532.973333pt;}
.y16f{bottom:535.106667pt;}
.y1bb{bottom:535.626667pt;}
.y38{bottom:536.973333pt;}
.y14{bottom:539.893333pt;}
.y11d{bottom:544.706667pt;}
.y137{bottom:549.506667pt;}
.y9c{bottom:549.773333pt;}
.y10c{bottom:551.106667pt;}
.y16e{bottom:553.000000pt;}
.y1ba{bottom:553.800000pt;}
.y37{bottom:555.133333pt;}
.y13{bottom:557.000000pt;}
.y11c{bottom:564.733333pt;}
.y9b{bottom:567.666667pt;}
.y10b{bottom:569.000000pt;}
.y16d{bottom:571.133333pt;}
.y1b9{bottom:571.666667pt;}
.y36{bottom:573.000000pt;}
.y12{bottom:573.800000pt;}
.y109{bottom:584.733333pt;}
.y136{bottom:585.533333pt;}
.y9a{bottom:585.800000pt;}
.y1d8{bottom:586.333333pt;}
.y11{bottom:588.200000pt;}
.y16c{bottom:589.000000pt;}
.y1b8{bottom:589.800000pt;}
.y35{bottom:591.133333pt;}
.y8e{bottom:600.200000pt;}
.y10a{bottom:603.666667pt;}
.y135{bottom:604.200000pt;}
.y10{bottom:606.333333pt;}
.y1b7{bottom:607.666667pt;}
.y34{bottom:609.000000pt;}
.y99{bottom:618.866667pt;}
.y16b{bottom:621.533333pt;}
.y108{bottom:622.333333pt;}
.yf{bottom:622.600000pt;}
.y1b6{bottom:625.800000pt;}
.y33{bottom:627.133333pt;}
.y98{bottom:637.533333pt;}
.y117{bottom:640.200000pt;}
.ye{bottom:640.466667pt;}
.y1b5{bottom:643.666667pt;}
.y32{bottom:645.000000pt;}
.y96{bottom:656.200000pt;}
.yd{bottom:659.133333pt;}
.y1b4{bottom:661.840000pt;}
.y31{bottom:663.173333pt;}
.y95{bottom:674.906667pt;}
.y1b3{bottom:679.693333pt;}
.yc{bottom:680.773333pt;}
.y30{bottom:681.026667pt;}
.y94{bottom:693.573333pt;}
.y1b2{bottom:694.373333pt;}
.y2f{bottom:699.173333pt;}
.yb{bottom:701.840000pt;}
.y92{bottom:712.226667pt;}
.y2e{bottom:717.040000pt;}
.y3{bottom:723.173333pt;}
.y2c{bottom:738.626667pt;}
.y2{bottom:739.173333pt;}
.y1{bottom:755.173333pt;}
.y2b{bottom:756.773333pt;}
.h20{height:17.853333pt;}
.h11{height:17.866667pt;}
.h1e{height:17.886667pt;}
.h17{height:17.900000pt;}
.h12{height:18.120000pt;}
.h13{height:18.133333pt;}
.h14{height:18.166667pt;}
.h27{height:18.933333pt;}
.h28{height:18.966667pt;}
.h1a{height:20.300000pt;}
.h2b{height:20.533333pt;}
.h2a{height:20.566667pt;}
.hb{height:20.604167pt;}
.h1f{height:20.690104pt;}
.h29{height:20.800000pt;}
.h25{height:23.390625pt;}
.h1b{height:26.133333pt;}
.h5{height:27.289062pt;}
.h3{height:29.625000pt;}
.h4{height:31.187500pt;}
.hc{height:31.270833pt;}
.h2{height:35.179688pt;}
.h18{height:35.733333pt;}
.hf{height:36.000000pt;}
.h22{height:36.020000pt;}
.h26{height:36.033333pt;}
.h15{height:36.800000pt;}
.ha{height:38.984375pt;}
.h1{height:39.088542pt;}
.h9{height:39.270833pt;}
.he{height:40.734375pt;}
.hd{height:41.380208pt;}
.h7{height:43.197917pt;}
.h6{height:44.437500pt;}
.h8{height:47.125000pt;}
.h19{height:54.966667pt;}
.h21{height:58.854167pt;}
.h1c{height:72.033333pt;}
.h23{height:90.166667pt;}
.h24{height:107.766667pt;}
.h10{height:129.900000pt;}
.h1d{height:133.100000pt;}
.h16{height:156.866667pt;}
.h0{height:816.000000pt;}
.w8{width:80.300000pt;}
.w1a{width:81.900000pt;}
.wa{width:85.100000pt;}
.w11{width:94.433333pt;}
.we{width:94.700000pt;}
.w1f{width:97.666667pt;}
.wc{width:103.800000pt;}
.w14{width:105.666667pt;}
.w10{width:113.400000pt;}
.wf{width:113.633333pt;}
.w16{width:113.666667pt;}
.w18{width:118.700000pt;}
.w15{width:122.700000pt;}
.wb{width:122.966667pt;}
.w1e{width:124.833333pt;}
.w25{width:130.700000pt;}
.w21{width:132.300000pt;}
.w7{width:138.960000pt;}
.w17{width:139.266667pt;}
.w23{width:140.066667pt;}
.w13{width:140.293333pt;}
.w3{width:141.666667pt;}
.w6{width:141.933333pt;}
.w20{width:149.373333pt;}
.w1c{width:151.266667pt;}
.w1d{width:151.800000pt;}
.w4{width:158.466667pt;}
.wd{width:160.600000pt;}
.w12{width:160.866667pt;}
.w26{width:164.093333pt;}
.w9{width:177.973333pt;}
.w5{width:179.533333pt;}
.w22{width:179.573333pt;}
.w2{width:179.800000pt;}
.w19{width:186.200000pt;}
.w28{width:189.133333pt;}
.w24{width:209.933333pt;}
.w1b{width:214.226667pt;}
.w29{width:217.426667pt;}
.w2a{width:227.026667pt;}
.w27{width:228.600000pt;}
.w1{width:623.999991pt;}
.w0{width:624.000000pt;}
.x0{left:0.000000pt;}
.x22{left:7.200000pt;}
.x59{left:8.266667pt;}
.x2d{left:9.333333pt;}
.x5a{left:10.666667pt;}
.x31{left:12.560000pt;}
.x3a{left:14.400000pt;}
.x50{left:16.266667pt;}
.x38{left:18.933333pt;}
.x25{left:20.280000pt;}
.x61{left:21.600000pt;}
.x26{left:22.680000pt;}
.x4f{left:23.760000pt;}
.x63{left:25.640000pt;}
.x48{left:26.666667pt;}
.x44{left:27.760000pt;}
.x45{left:28.826667pt;}
.x2b{left:30.693333pt;}
.x23{left:32.266667pt;}
.x2e{left:33.373333pt;}
.x30{left:35.733333pt;}
.x3e{left:37.333333pt;}
.x4b{left:39.226667pt;}
.x40{left:40.533333pt;}
.x3c{left:41.906667pt;}
.x3f{left:44.000000pt;}
.x41{left:45.066667pt;}
.x33{left:46.960000pt;}
.xe{left:48.033324pt;}
.x42{left:49.866667pt;}
.x77{left:50.966657pt;}
.x1{left:52.833324pt;}
.x49{left:55.200000pt;}
.x2f{left:57.626667pt;}
.x3d{left:62.666667pt;}
.x4a{left:66.426667pt;}
.x32{left:67.493333pt;}
.x69{left:70.699991pt;}
.x6{left:72.033324pt;}
.x67{left:74.173333pt;}
.xa{left:75.233324pt;}
.x13{left:76.833324pt;}
.x21{left:79.766657pt;}
.x74{left:81.360000pt;}
.x7e{left:84.033324pt;}
.x9{left:88.833324pt;}
.x8{left:91.766657pt;}
.x10{left:96.033324pt;}
.x71{left:98.160000pt;}
.xc{left:100.833324pt;}
.x5d{left:103.760000pt;}
.x5e{left:104.840000pt;}
.x75{left:106.426667pt;}
.x7{left:117.666657pt;}
.x6c{left:125.666657pt;}
.x1e{left:129.133324pt;}
.x55{left:153.666657pt;}
.x1d{left:166.466657pt;}
.x37{left:171.000000pt;}
.x65{left:180.333333pt;}
.x72{left:183.533333pt;}
.x29{left:187.000000pt;}
.x51{left:188.333333pt;}
.x6f{left:192.906667pt;}
.x35{left:195.839991pt;}
.xd{left:197.439991pt;}
.x60{left:204.640000pt;}
.x36{left:210.506657pt;}
.x14{left:212.359991pt;}
.x4c{left:213.706667pt;}
.x56{left:216.373333pt;}
.x2{left:222.506657pt;}
.x6d{left:223.839991pt;}
.x27{left:227.306667pt;}
.x16{left:231.839991pt;}
.x5b{left:234.240000pt;}
.x78{left:237.173333pt;}
.x7a{left:241.973333pt;}
.x12{left:244.626657pt;}
.xb{left:249.173324pt;}
.x43{left:251.573333pt;}
.xf{left:255.839991pt;}
.x2a{left:267.306667pt;}
.x19{left:269.173324pt;}
.x7c{left:270.266667pt;}
.x7d{left:271.866657pt;}
.x39{left:275.066667pt;}
.x6a{left:283.599991pt;}
.x6b{left:288.399991pt;}
.x52{left:294.000000pt;}
.x4d{left:308.133333pt;}
.x17{left:309.733324pt;}
.x5{left:314.533324pt;}
.x5c{left:316.133333pt;}
.x4{left:320.666657pt;}
.x5f{left:322.266667pt;}
.x62{left:329.466667pt;}
.x1a{left:338.533324pt;}
.x73{left:347.640000pt;}
.x57{left:355.640000pt;}
.x66{left:359.906667pt;}
.x46{left:364.973333pt;}
.x28{left:369.240000pt;}
.x24{left:374.026667pt;}
.x79{left:388.440000pt;}
.x7b{left:393.240000pt;}
.x70{left:402.840000pt;}
.x53{left:416.693333pt;}
.x4e{left:421.773333pt;}
.x64{left:426.866667pt;}
.x6e{left:431.933324pt;}
.x3b{left:435.666667pt;}
.x2c{left:445.266667pt;}
.x47{left:450.066667pt;}
.x1c{left:467.933324pt;}
.x58{left:474.333333pt;}
.x18{left:475.399991pt;}
.x15{left:476.733324pt;}
.x54{left:485.799991pt;}
.x76{left:487.666657pt;}
.x20{left:489.266657pt;}
.x1b{left:495.933324pt;}
.x34{left:510.106657pt;}
.x68{left:537.839991pt;}
.x1f{left:565.559991pt;}
.x11{left:570.906657pt;}
.x3{left:576.226657pt;}
}




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