
    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_ba1672cb6eb833cd7b936073.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_111ad29077cac8fcecea6b00.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.721000;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_12bf5665e6c07b71635aa870.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_c9da9d171faa9f775d2873ed.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.905000;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_3a9d7da813ceeec3a6946382.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.898000;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_8f6c9d4c8d17b2258d22e1b9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_10aabf205fedd88dd3dcc765.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.846000;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_3a1dd86bfecce12cccc1933b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.904000;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_2bf3c380450f330d7421b70e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_dddc34eeea6ab4ac6caab5a8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0e62086b80fddc96513cab46.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.892578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_6612b041963f1d6ed87076b5.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_8f847772f05512f7e6de3b9f.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_1a4ef519c812eaf11ba41aa5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_4729beb81d6f905cb89f2d2b.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.v4{vertical-align:-27.360077px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.982000px;}
.v1{vertical-align:8.664000px;}
.v3{vertical-align:33.119933px;}
.v5{vertical-align:47.519986px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.004916px;}
.ls2{letter-spacing:0.214764px;}
.ls6{letter-spacing:0.359041px;}
.ls1{letter-spacing:0.359109px;}
.ls5{letter-spacing:32.615219px;}
.ls3{letter-spacing:54.935251px;}
.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:-22.910945px;}
.ws9{word-spacing:-20.906199px;}
.ws1f{word-spacing:-18.183288px;}
.ws23{word-spacing:-18.000676px;}
.ws24{word-spacing:-9.720371px;}
.ws1e{word-spacing:-2.081456px;}
.wsf{word-spacing:-0.772364px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:0.864001px;}
.ws22{word-spacing:0.879311px;}
.ws1a{word-spacing:1.191274px;}
.ws1d{word-spacing:1.911274px;}
.ws10{word-spacing:2.107638px;}
.ws3{word-spacing:2.338437px;}
.ws1{word-spacing:2.671987px;}
.wsb{word-spacing:2.696730px;}
.ws2{word-spacing:2.707853px;}
.ws18{word-spacing:2.893093px;}
.ws15{word-spacing:3.613094px;}
.ws11{word-spacing:3.678549px;}
.wsa{word-spacing:4.005822px;}
.ws19{word-spacing:4.136731px;}
.ws14{word-spacing:4.162913px;}
.ws6{word-spacing:4.203448px;}
.ws13{word-spacing:4.464004px;}
.wsd{word-spacing:4.660368px;}
.ws4{word-spacing:5.379825px;}
.ws7{word-spacing:5.624884px;}
.ws1b{word-spacing:5.773096px;}
.ws17{word-spacing:6.362187px;}
.ws21{word-spacing:6.951279px;}
.ws1c{word-spacing:7.540370px;}
.ws20{word-spacing:8.024734px;}
.ws16{word-spacing:8.177700px;}
.wsc{word-spacing:8.194916px;}
.ws12{word-spacing:9.818421px;}
.ws8{word-spacing:62.704604px;}
._14{margin-left:-48.461464px;}
._11{margin-left:-45.706993px;}
._13{margin-left:-37.701814px;}
._1a{margin-left:-34.090193px;}
._19{margin-left:-32.065518px;}
._c{margin-left:-29.392837px;}
._15{margin-left:-26.319985px;}
._1b{margin-left:-25.211713px;}
._5{margin-left:-21.913882px;}
._10{margin-left:-16.415695px;}
._12{margin-left:-10.759650px;}
._a{margin-left:-8.091257px;}
._16{margin-left:-6.664715px;}
._f{margin-left:-5.498186px;}
._0{margin-left:-4.016947px;}
._8{margin-left:-2.668393px;}
._2{margin-left:-1.362893px;}
._7{width:1.362893px;}
._d{width:2.610948px;}
._1{width:3.722903px;}
._1f{width:4.844816px;}
._20{width:6.021280px;}
._24{width:7.042190px;}
._21{width:8.218519px;}
._1e{width:9.951849px;}
._23{width:11.419682px;}
._22{width:12.443981px;}
._25{width:13.841029px;}
._3{width:14.892858px;}
._26{width:16.760753px;}
._4{width:19.582618px;}
._b{width:20.959727px;}
._28{width:22.298337px;}
._27{width:23.605918px;}
._17{width:25.599985px;}
._1d{width:27.437131px;}
._e{width:29.108460px;}
._18{width:31.037134px;}
._1c{width:36.267784px;}
._9{width:43.038600px;}
._5e{width:60.833451px;}
._2a{width:70.121603px;}
._61{width:102.243840px;}
._2b{width:111.372137px;}
._44{width:118.627816px;}
._45{width:131.764949px;}
._2c{width:134.273126px;}
._43{width:155.525842px;}
._5a{width:156.704982px;}
._55{width:160.577563px;}
._57{width:161.789514px;}
._62{width:166.326247px;}
._46{width:171.366437px;}
._41{width:172.806491px;}
._60{width:175.686599px;}
._5b{width:179.070164px;}
._42{width:193.688963px;}
._64{width:198.856329px;}
._3b{width:205.553500px;}
._4d{width:211.473068px;}
._4b{width:213.571553px;}
._3f{width:220.833420px;}
._51{width:240.557272px;}
._4a{width:245.529222px;}
._47{width:249.849385px;}
._4e{width:253.204557px;}
._29{width:258.614003px;}
._6{width:260.707046px;}
._4f{width:262.564909px;}
._39{width:265.896144px;}
._34{width:277.585333px;}
._33{width:281.951622px;}
._63{width:283.308794px;}
._35{width:285.130710px;}
._49{width:291.610953px;}
._50{width:293.771034px;}
._31{width:297.688697px;}
._53{width:298.734062px;}
._6a{width:301.469513px;}
._3c{width:304.188727px;}
._67{width:312.456580px;}
._6c{width:314.280273px;}
._48{width:316.811900px;}
._38{width:321.132062px;}
._68{width:326.641113px;}
._65{width:330.697453px;}
._2e{width:333.372522px;}
._3e{width:336.384541px;}
._69{width:338.607343px;}
._52{width:339.852765px;}
._59{width:342.012846px;}
._4c{width:344.245493px;}
._56{width:346.619894px;}
._5c{width:347.773063px;}
._5d{width:350.952151px;}
._58{width:354.253306px;}
._54{width:355.693360px;}
._30{width:357.133414px;}
._3d{width:360.013523px;}
._66{width:362.173604px;}
._6b{width:370.214843px;}
._32{width:423.413873px;}
._2f{width:497.362041px;}
._40{width:501.858850px;}
._3a{width:679.237794px;}
._36{width:727.193874px;}
._5f{width:728.200871px;}
._37{width:763.483237px;}
._2d{width:783.461990px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fsd{font-size:38.881485px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:48.241800px;}
.fse{font-size:59.762250px;}
.fs8{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:65.454600px;}
.fsa{font-size:66.242700px;}
.fs7{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:72.002705px;}
.fs6{font-size:86.077200px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.yc2{bottom:3.779983px;}
.ya8{bottom:4.319996px;}
.ya5{bottom:4.319997px;}
.ya1{bottom:4.320014px;}
.yb9{bottom:4.320029px;}
.yaf{bottom:4.320030px;}
.y51{bottom:57.780121px;}
.y5{bottom:66.525004px;}
.y50{bottom:77.940033px;}
.y4{bottom:97.125005px;}
.y8f{bottom:109.620072px;}
.y9e{bottom:116.460091px;}
.ydc{bottom:119.880066px;}
.y72{bottom:120.060036px;}
.y166{bottom:123.660049px;}
.y8e{bottom:126.900055px;}
.y9d{bottom:127.800041px;}
.y143{bottom:130.500068px;}
.y12a{bottom:131.940033px;}
.y3e{bottom:137.449500px;}
.yfe{bottom:137.520058px;}
.y21{bottom:139.264499px;}
.ydb{bottom:144.540047px;}
.yfd{bottom:149.400055px;}
.y8d{bottom:151.020058px;}
.y71{bottom:151.200096px;}
.y128{bottom:155.700096px;}
.y142{bottom:161.460091px;}
.y8c{bottom:162.360077px;}
.y165{bottom:163.800041px;}
.yda{bottom:169.020058px;}
.y1a3{bottom:172.260064px;}
.y129{bottom:179.460091px;}
.y70{bottom:182.160049px;}
.yfc{bottom:185.760064px;}
.y8b{bottom:186.300041px;}
.y141{bottom:192.600083px;}
.yd9{bottom:193.680039px;}
.y18{bottom:196.933500px;}
.yfb{bottom:197.640060px;}
.y9c{bottom:199.260064px;}
.y3d{bottom:201.957000px;}
.y1a2{bottom:203.400055px;}
.y164{bottom:203.760064px;}
.y127{bottom:204.120072px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y6f{bottom:213.300041px;}
.y8a{bottom:217.260064px;}
.yd8{bottom:217.440033px;}
.y17c{bottom:219.600083px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y140{bottom:223.560036px;}
.y126{bottom:227.880066px;}
.yfa{bottom:234.180039px;}
.y1a1{bottom:234.360077px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y9b{bottom:239.400055px;}
.yd7{bottom:241.200096px;}
.y163{bottom:243.900055px;}
.y6e{bottom:244.260064px;}
.y89{bottom:248.400055px;}
.y124{bottom:251.640060px;}
.y13f{bottom:254.700096px;}
.yf9{bottom:258.660049px;}
.y17b{bottom:259.560036px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.yd6{bottom:265.860077px;}
.yf8{bottom:270.540047px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y1a0{bottom:274.500068px;}
.y162{bottom:274.860077px;}
.y6d{bottom:275.400055px;}
.y9a{bottom:279.360077px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y13e{bottom:285.660049px;}
.y88{bottom:288.360077px;}
.yd5{bottom:289.620072px;}
.y125{bottom:299.160049px;}
.y17a{bottom:299.520058px;}
.y19f{bottom:305.460091px;}
.y161{bottom:306.000068px;}
.y6c{bottom:306.360077px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y99{bottom:310.500068px;}
.yd4{bottom:313.380066px;}
.y13d{bottom:316.800041px;}
.y87{bottom:319.500068px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.yf7{bottom:323.280052px;}
.y123{bottom:323.820099px;}
.y160{bottom:336.960091px;}
.y6b{bottom:337.500068px;}
.yd3{bottom:337.860077px;}
.y179{bottom:339.660049px;}
.y98{bottom:341.460091px;}
.y19e{bottom:345.600083px;}
.y122{bottom:347.580093px;}
.yf{bottom:348.133500px;}
.y86{bottom:350.460091px;}
.y13c{bottom:356.760064px;}
.yd2{bottom:361.800041px;}
.y15f{bottom:368.100083px;}
.y6a{bottom:368.460091px;}
.y11f{bottom:371.340088px;}
.y97{bottom:372.600083px;}
.y19d{bottom:376.560036px;}
.y192{bottom:377.460091px;}
.y178{bottom:379.620072px;}
.yf6{bottom:381.420043px;}
.y85{bottom:381.600083px;}
.yd1{bottom:385.560036px;}
.ye{bottom:386.785499px;}
.y13b{bottom:387.900055px;}
.y121{bottom:395.280052px;}
.y15e{bottom:399.060036px;}
.y69{bottom:399.600083px;}
.yd{bottom:408.044999px;}
.y191{bottom:408.600083px;}
.yd0{bottom:410.040047px;}
.y96{bottom:412.200096px;}
.yf5{bottom:412.380066px;}
.y84{bottom:412.560036px;}
.y19c{bottom:416.520058px;}
.y13a{bottom:418.860077px;}
.y120{bottom:419.040047px;}
.y177{bottom:419.760064px;}
.y15d{bottom:430.200096px;}
.y68{bottom:430.560036px;}
.ycf{bottom:433.980079px;}
.y190{bottom:439.560036px;}
.y83{bottom:443.520058px;}
.y19b{bottom:447.660049px;}
.y139{bottom:450.000068px;}
.yce{bottom:454.140060px;}
.ycd{bottom:458.460091px;}
.y176{bottom:459.720085px;}
.y15c{bottom:461.160049px;}
.y67{bottom:461.520058px;}
.y11e{bottom:467.280052px;}
.y18f{bottom:470.520058px;}
.y3c{bottom:472.096500px;}
.yf4{bottom:474.480079px;}
.y82{bottom:474.660049px;}
.y11b{bottom:479.340088px;}
.y138{bottom:480.960091px;}
.ycc{bottom:482.940033px;}
.y95{bottom:483.660049px;}
.y19a{bottom:487.620072px;}
.y11d{bottom:491.220085px;}
.y15b{bottom:492.300041px;}
.y3b{bottom:492.421500px;}
.y66{bottom:492.660049px;}
.y175{bottom:499.860077px;}
.y18e{bottom:501.660049px;}
.yc{bottom:502.864502px;}
.y81{bottom:505.620072px;}
.ycb{bottom:506.880066px;}
.y1b2{bottom:509.760064px;}
.y137{bottom:512.100083px;}
.y3a{bottom:512.745000px;}
.y94{bottom:514.620072px;}
.y11c{bottom:514.980079px;}
.y199{bottom:518.760064px;}
.yb{bottom:520.864502px;}
.y15a{bottom:523.260064px;}
.y65{bottom:523.620072px;}
.yca{bottom:531.360077px;}
.y18d{bottom:532.620072px;}
.y39{bottom:533.068500px;}
.yf3{bottom:536.580093px;}
.y80{bottom:536.760064px;}
.ya{bottom:538.864499px;}
.y11a{bottom:539.460091px;}
.y174{bottom:539.820099px;}
.y1b1{bottom:540.720085px;}
.y136{bottom:543.060036px;}
.y93{bottom:545.760064px;}
.y159{bottom:554.400055px;}
.y64{bottom:554.760064px;}
.yc8{bottom:556.740074px;}
.y9{bottom:556.864499px;}
.y198{bottom:558.720085px;}
.y119{bottom:563.400055px;}
.y7f{bottom:567.720085px;}
.y1b0{bottom:571.860077px;}
.y18c{bottom:572.400055px;}
.y38{bottom:573.715500px;}
.y116{bottom:575.280052px;}
.yc9{bottom:576.180039px;}
.y173{bottom:579.960091px;}
.yc7{bottom:580.500068px;}
.y135{bottom:583.200096px;}
.y158{bottom:585.360077px;}
.y63{bottom:585.720085px;}
.y118{bottom:587.160049px;}
.y197{bottom:589.860077px;}
.y37{bottom:594.040500px;}
.yf2{bottom:598.680039px;}
.y7e{bottom:598.860077px;}
.y18b{bottom:603.360077px;}
.y117{bottom:610.920043px;}
.yc6{bottom:611.100083px;}
.y1af{bottom:611.820099px;}
.y134{bottom:614.160049px;}
.y36{bottom:614.364000px;}
.y4f{bottom:614.382000px;}
.y157{bottom:616.500068px;}
.y62{bottom:616.860077px;}
.y172{bottom:619.920043px;}
.yf1{bottom:629.640060px;}
.y7d{bottom:629.820099px;}
.y35{bottom:634.687500px;}
.y4e{bottom:634.705500px;}
.y115{bottom:635.400055px;}
.y1ae{bottom:642.960091px;}
.y18a{bottom:643.860077px;}
.y133{bottom:645.300041px;}
.y8{bottom:645.510000px;}
.y156{bottom:647.460091px;}
.y61{bottom:647.820099px;}
.y34{bottom:655.011000px;}
.y4d{bottom:655.029000px;}
.y92{bottom:656.820099px;}
.y114{bottom:659.340088px;}
.yc5{bottom:659.880066px;}
.y171{bottom:660.060036px;}
.yf0{bottom:660.780052px;}
.y7c{bottom:660.960091px;}
.y7{bottom:666.771000px;}
.y111{bottom:671.220085px;}
.y189{bottom:674.820099px;}
.y33{bottom:675.334500px;}
.y4c{bottom:675.354000px;}
.y132{bottom:676.260064px;}
.y1ad{bottom:682.920043px;}
.y113{bottom:683.100083px;}
.y155{bottom:687.600083px;}
.y60{bottom:687.960056px;}
.yc4{bottom:691.020058px;}
.yef{bottom:691.740074px;}
.y7b{bottom:691.920078px;}
.y32{bottom:695.659500px;}
.y170{bottom:700.020058px;}
.y188{bottom:705.960056px;}
.y112{bottom:706.860077px;}
.y131{bottom:707.400055px;}
.y1ac{bottom:714.060070px;}
.y31{bottom:715.983000px;}
.y154{bottom:718.560070px;}
.y5f{bottom:718.920078px;}
.yee{bottom:722.880066px;}
.y6{bottom:726.298500px;}
.yc3{bottom:730.980079px;}
.y110{bottom:731.520058px;}
.y7a{bottom:732.060070px;}
.y187{bottom:736.920078px;}
.y4b{bottom:737.260500px;}
.y130{bottom:738.360077px;}
.y16f{bottom:740.160049px;}
.y30{bottom:743.608500px;}
.yc1{bottom:747.360077px;}
.y153{bottom:749.700061px;}
.y5e{bottom:750.060070px;}
.yc0{bottom:751.140060px;}
.y3{bottom:752.599495px;}
.y1ab{bottom:754.020058px;}
.y10f{bottom:755.280052px;}
.y4a{bottom:757.584000px;}
.y79{bottom:763.020058px;}
.y10c{bottom:767.160049px;}
.y186{bottom:768.060070px;}
.ybf{bottom:768.420078px;}
.y12f{bottom:769.500068px;}
.yed{bottom:771.840054px;}
.y49{bottom:777.909000px;}
.y10e{bottom:779.040081px;}
.y16e{bottom:780.120072px;}
.y152{bottom:780.660049px;}
.y5d{bottom:781.020058px;}
.y1aa{bottom:785.160049px;}
.ybe{bottom:785.700061px;}
.ybd{bottom:790.020058px;}
.y2f{bottom:791.295000px;}
.yec{bottom:792.000068px;}
.y78{bottom:794.160049px;}
.y48{bottom:798.232500px;}
.y185{bottom:799.020058px;}
.y12e{bottom:800.460056px;}
.y10d{bottom:802.800076px;}
.y196{bottom:803.160049px;}
.yeb{bottom:809.280052px;}
.ybc{bottom:810.360077px;}
.y2e{bottom:811.618500px;}
.y91{bottom:812.160049px;}
.ybb{bottom:814.680073px;}
.y151{bottom:818.280052px;}
.y47{bottom:818.556000px;}
.y16d{bottom:820.260064px;}
.y5c{bottom:821.160049px;}
.y1a9{bottom:825.120072px;}
.yea{bottom:826.560070px;}
.y10b{bottom:827.460056px;}
.y184{bottom:830.160049px;}
.y2d{bottom:831.942000px;}
.y77{bottom:833.760064px;}
.y195{bottom:834.120072px;}
.y46{bottom:838.879500px;}
.yb7{bottom:839.160049px;}
.y150{bottom:840.060070px;}
.y12d{bottom:840.600083px;}
.y90{bottom:843.120072px;}
.yb8{bottom:846.720051px;}
.ye9{bottom:848.160049px;}
.yba{bottom:851.040081px;}
.y109{bottom:851.220051px;}
.y5b{bottom:852.120072px;}
.y2c{bottom:852.265500px;}
.y1a8{bottom:856.260064px;}
.y45{bottom:859.203000px;}
.y16c{bottom:860.220051px;}
.y12c{bottom:860.580059px;}
.y183{bottom:861.120072px;}
.yb6{bottom:863.100083px;}
.y14f{bottom:864.540081px;}
.ye8{bottom:872.100083px;}
.y194{bottom:873.900055px;}
.y76{bottom:874.260064px;}
.y10a{bottom:874.980079px;}
.y12b{bottom:877.860077px;}
.y2{bottom:879.369000px;}
.y44{bottom:879.528000px;}
.y5a{bottom:883.260064px;}
.yb3{bottom:887.580059px;}
.y14e{bottom:889.200061px;}
.y182{bottom:892.260064px;}
.yb4{bottom:895.140060px;}
.y2b{bottom:895.699500px;}
.y1a7{bottom:896.220051px;}
.ye7{bottom:896.580059px;}
.yb5{bottom:899.460056px;}
.y108{bottom:899.640060px;}
.y43{bottom:899.851500px;}
.y16b{bottom:900.360077px;}
.yb2{bottom:911.340054px;}
.y14d{bottom:913.680073px;}
.y193{bottom:913.860077px;}
.y59{bottom:914.220051px;}
.y2a{bottom:916.023000px;}
.ye6{bottom:920.340054px;}
.y181{bottom:923.220051px;}
.y106{bottom:923.400055px;}
.y1a6{bottom:927.360077px;}
.yb1{bottom:931.680073px;}
.yb0{bottom:936.000068px;}
.y29{bottom:936.346500px;}
.y42{bottom:938.107500px;}
.y14c{bottom:938.340054px;}
.y16a{bottom:940.320065px;}
.ye5{bottom:945.000068px;}
.y58{bottom:945.360077px;}
.y107{bottom:947.160049px;}
.y180{bottom:954.360077px;}
.yae{bottom:956.160049px;}
.y28{bottom:956.670000px;}
.yad{bottom:960.480079px;}
.y14b{bottom:962.820065px;}
.y1{bottom:966.726000px;}
.y1a5{bottom:967.320065px;}
.ye4{bottom:969.480079px;}
.y105{bottom:971.640060px;}
.y57{bottom:976.320065px;}
.y169{bottom:980.460074px;}
.yac{bottom:980.640060px;}
.yab{bottom:984.960074px;}
.y17f{bottom:985.320065px;}
.y14a{bottom:987.300058px;}
.ye3{bottom:993.960074px;}
.y103{bottom:995.580059px;}
.y27{bottom:995.853000px;}
.y1a4{bottom:998.460074px;}
.yaa{bottom:1005.300058px;}
.y56{bottom:1007.460074px;}
.ya9{bottom:1009.620072px;}
.y149{bottom:1011.960074px;}
.y41{bottom:1015.557000px;}
.y26{bottom:1016.176500px;}
.y17e{bottom:1016.460074px;}
.ye2{bottom:1017.900072px;}
.y104{bottom:1019.340070px;}
.y168{bottom:1020.420061px;}
.ya7{bottom:1029.780069px;}
.ya6{bottom:1034.100065px;}
.y40{bottom:1035.880500px;}
.y148{bottom:1036.440067px;}
.y55{bottom:1038.420061px;}
.ye1{bottom:1042.380066px;}
.y102{bottom:1043.820065px;}
.y17d{bottom:1047.420061px;}
.ya4{bottom:1054.440067px;}
.y3f{bottom:1056.204000px;}
.y25{bottom:1056.382500px;}
.ya3{bottom:1058.760064px;}
.y167{bottom:1060.560070px;}
.y147{bottom:1061.100065px;}
.ye0{bottom:1066.140060px;}
.y24{bottom:1066.843500px;}
.y100{bottom:1067.760064px;}
.y54{bottom:1069.560070px;}
.y23{bottom:1077.304500px;}
.y75{bottom:1078.560070px;}
.ya2{bottom:1083.240074px;}
.y146{bottom:1085.580059px;}
.y22{bottom:1088.836500px;}
.ya0{bottom:1090.800058px;}
.y101{bottom:1091.520058px;}
.y9f{bottom:1095.120072px;}
.y53{bottom:1100.520058px;}
.y74{bottom:1109.520058px;}
.y145{bottom:1110.240074px;}
.yde{bottom:1116.000068px;}
.yff{bottom:1127.880066px;}
.ydf{bottom:1135.440067px;}
.ydd{bottom:1139.760064px;}
.y52{bottom:1140.300067px;}
.y73{bottom:1140.660067px;}
.y144{bottom:1140.840063px;}
.h26{height:20.339984px;}
.h21{height:20.519989px;}
.h25{height:20.519990px;}
.h28{height:20.519998px;}
.h1f{height:20.520007px;}
.h24{height:20.520022px;}
.h22{height:20.520024px;}
.h27{height:20.520057px;}
.hc{height:25.356979px;}
.he{height:26.899200px;}
.h1d{height:27.148693px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.hb{height:34.020979px;}
.hd{height:34.026979px;}
.h13{height:36.881545px;}
.h1e{height:41.728524px;}
.h12{height:44.831700px;}
.h7{height:45.960000px;}
.h14{height:46.080038px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h15{height:49.090950px;}
.h18{height:49.607332px;}
.h17{height:50.231891px;}
.h19{height:50.275326px;}
.h11{height:50.570496px;}
.h1c{height:52.419938px;}
.h1a{height:52.630883px;}
.h2{height:55.152000px;}
.h10{height:56.552496px;}
.hf{height:60.598349px;}
.h1b{height:66.804392px;}
.h2a{height:66.804532px;}
.h5{height:78.132000px;}
.h20{height:97.795312px;}
.h29{height:97.795317px;}
.h23{height:97.795452px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h16{height:1262.880060px;}
.h1{height:1263.000000px;}
.w6{width:7.559967px;}
.w5{width:7.919975px;}
.w8{width:8.819962px;}
.w9{width:8.819997px;}
.w7{width:9.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w4{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x45{left:109.260003px;}
.x43{left:116.280001px;}
.x49{left:119.700002px;}
.x2f{left:121.500000px;}
.x47{left:124.200002px;}
.x1b{left:127.079999px;}
.x1c{left:132.840002px;}
.x35{left:136.439999px;}
.x55{left:139.680005px;}
.x1d{left:158.939999px;}
.x15{left:176.742000px;}
.x46{left:180.360008px;}
.x18{left:193.069500px;}
.x9{left:194.392500px;}
.x4{left:203.484001px;}
.x19{left:205.044000px;}
.x36{left:209.879998px;}
.x54{left:230.219999px;}
.x38{left:239.400003px;}
.xf{left:249.708000px;}
.x52{left:251.099997px;}
.x48{left:252.180005px;}
.x16{left:253.735500px;}
.x51{left:264.419992px;}
.x4b{left:275.939999px;}
.x4f{left:277.379998px;}
.xe{left:279.046500px;}
.x1e{left:280.439999px;}
.xa{left:282.147000px;}
.x4d{left:283.319996px;}
.x4c{left:284.400003px;}
.x4e{left:286.379998px;}
.x53{left:290.339985px;}
.x50{left:294.480011px;}
.xb{left:310.093500px;}
.x4a{left:318.420010px;}
.x11{left:320.506500px;}
.x44{left:338.399987px;}
.x13{left:343.741500px;}
.x10{left:347.664000px;}
.x37{left:349.199993px;}
.xc{left:356.763000px;}
.x2e{left:359.279983px;}
.x12{left:367.176000px;}
.x1f{left:384.660015px;}
.x14{left:392.904000px;}
.x1a{left:397.552500px;}
.x20{left:404.639992px;}
.x17{left:433.461000px;}
.xd{left:447.327000px;}
.x5{left:448.608000px;}
.x3{left:454.959000px;}
.x30{left:464.579990px;}
.x31{left:466.560001px;}
.x8{left:479.874000px;}
.x29{left:517.860008px;}
.x7{left:526.033500px;}
.x32{left:533.879998px;}
.x22{left:535.860008px;}
.x6{left:540.712500px;}
.x3d{left:542.339985px;}
.x39{left:546.120002px;}
.x41{left:551.699993px;}
.x3e{left:568.620002px;}
.x23{left:576.360008px;}
.x3b{left:582.120002px;}
.x2c{left:602.639992px;}
.x2a{left:611.639992px;}
.x28{left:614.700027px;}
.x24{left:620.639992px;}
.x33{left:630.360008px;}
.x3c{left:649.620002px;}
.x3f{left:651.779983px;}
.x3a{left:654.120002px;}
.x40{left:656.279983px;}
.x25{left:661.139992px;}
.x42{left:665.279983px;}
.x21{left:681.840019px;}
.x34{left:687.059967px;}
.x2b{left:707.580025px;}
.x26{left:716.580025px;}
.x2d{left:741.059967px;}
.x27{left:757.080025px;}
@media print{
.v4{vertical-align:-24.320068pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.317333pt;}
.v1{vertical-align:7.701333pt;}
.v3{vertical-align:29.439940pt;}
.v5{vertical-align:42.239988pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.004370pt;}
.ls2{letter-spacing:0.190901pt;}
.ls6{letter-spacing:0.319148pt;}
.ls1{letter-spacing:0.319208pt;}
.ls5{letter-spacing:28.991306pt;}
.ls3{letter-spacing:48.831334pt;}
.ws5{word-spacing:-20.365285pt;}
.ws9{word-spacing:-18.583288pt;}
.ws1f{word-spacing:-16.162923pt;}
.ws23{word-spacing:-16.000601pt;}
.ws24{word-spacing:-8.640330pt;}
.ws1e{word-spacing:-1.850183pt;}
.wsf{word-spacing:-0.686546pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:0.768001pt;}
.ws22{word-spacing:0.781610pt;}
.ws1a{word-spacing:1.058910pt;}
.ws1d{word-spacing:1.698911pt;}
.ws10{word-spacing:1.873456pt;}
.ws3{word-spacing:2.078611pt;}
.ws1{word-spacing:2.375100pt;}
.wsb{word-spacing:2.397093pt;}
.ws2{word-spacing:2.406980pt;}
.ws18{word-spacing:2.571639pt;}
.ws15{word-spacing:3.211639pt;}
.ws11{word-spacing:3.269821pt;}
.wsa{word-spacing:3.560730pt;}
.ws19{word-spacing:3.677094pt;}
.ws14{word-spacing:3.700367pt;}
.ws6{word-spacing:3.736399pt;}
.ws13{word-spacing:3.968003pt;}
.wsd{word-spacing:4.142549pt;}
.ws4{word-spacing:4.782067pt;}
.ws7{word-spacing:4.999897pt;}
.ws1b{word-spacing:5.131641pt;}
.ws17{word-spacing:5.655277pt;}
.ws21{word-spacing:6.178914pt;}
.ws1c{word-spacing:6.702551pt;}
.ws20{word-spacing:7.133097pt;}
.ws16{word-spacing:7.269067pt;}
.wsc{word-spacing:7.284370pt;}
.ws12{word-spacing:8.727485pt;}
.ws8{word-spacing:55.737426pt;}
._14{margin-left:-43.076857pt;}
._11{margin-left:-40.628438pt;}
._13{margin-left:-33.512723pt;}
._1a{margin-left:-30.302394pt;}
._19{margin-left:-28.502682pt;}
._c{margin-left:-26.126966pt;}
._15{margin-left:-23.395543pt;}
._1b{margin-left:-22.410412pt;}
._5{margin-left:-19.479006pt;}
._10{margin-left:-14.591729pt;}
._12{margin-left:-9.564133pt;}
._a{margin-left:-7.192228pt;}
._16{margin-left:-5.924191pt;}
._f{margin-left:-4.887277pt;}
._0{margin-left:-3.570620pt;}
._8{margin-left:-2.371905pt;}
._2{margin-left:-1.211460pt;}
._7{width:1.211460pt;}
._d{width:2.320842pt;}
._1{width:3.309247pt;}
._1f{width:4.306503pt;}
._20{width:5.352249pt;}
._24{width:6.259724pt;}
._21{width:7.305350pt;}
._1e{width:8.846088pt;}
._23{width:10.150829pt;}
._22{width:11.061317pt;}
._25{width:12.303137pt;}
._3{width:13.238096pt;}
._26{width:14.898447pt;}
._4{width:17.406771pt;}
._b{width:18.630868pt;}
._28{width:19.820744pt;}
._27{width:20.983038pt;}
._17{width:22.755542pt;}
._1d{width:24.388561pt;}
._e{width:25.874187pt;}
._18{width:27.588564pt;}
._1c{width:32.238030pt;}
._9{width:38.256533pt;}
._5e{width:54.074178pt;}
._2a{width:62.330314pt;}
._61{width:90.883414pt;}
._2b{width:98.997455pt;}
._44{width:105.446947pt;}
._45{width:117.124399pt;}
._2c{width:119.353890pt;}
._43{width:138.245193pt;}
._5a{width:139.293317pt;}
._55{width:142.735611pt;}
._57{width:143.812902pt;}
._62{width:147.845553pt;}
._46{width:152.325722pt;}
._41{width:153.605770pt;}
._60{width:156.165866pt;}
._5b{width:159.173479pt;}
._42{width:172.167967pt;}
._64{width:176.761181pt;}
._3b{width:182.714222pt;}
._4d{width:187.976061pt;}
._4b{width:189.841381pt;}
._3f{width:196.296373pt;}
._51{width:213.828686pt;}
._4a{width:218.248198pt;}
._47{width:222.088342pt;}
._4e{width:225.070718pt;}
._29{width:229.879114pt;}
._6{width:231.739597pt;}
._4f{width:233.391030pt;}
._39{width:236.352128pt;}
._34{width:246.742518pt;}
._33{width:250.623664pt;}
._63{width:251.830039pt;}
._35{width:253.449520pt;}
._49{width:259.209736pt;}
._50{width:261.129808pt;}
._31{width:264.612175pt;}
._53{width:265.541389pt;}
._6a{width:267.972901pt;}
._3c{width:270.389979pt;}
._67{width:277.739182pt;}
._6c{width:279.360243pt;}
._48{width:281.610578pt;}
._38{width:285.450722pt;}
._68{width:290.347656pt;}
._65{width:293.953291pt;}
._2e{width:296.331131pt;}
._3e{width:299.008481pt;}
._69{width:300.984305pt;}
._52{width:302.091347pt;}
._59{width:304.011419pt;}
._4c{width:305.995994pt;}
._56{width:308.106573pt;}
._5c{width:309.131611pt;}
._5d{width:311.957467pt;}
._58{width:314.891828pt;}
._54{width:316.171876pt;}
._30{width:317.451924pt;}
._3d{width:320.012020pt;}
._66{width:321.932092pt;}
._6b{width:329.079861pt;}
._32{width:376.367887pt;}
._2f{width:442.099592pt;}
._40{width:446.096756pt;}
._3a{width:603.766928pt;}
._36{width:646.394555pt;}
._5f{width:647.289663pt;}
._37{width:678.651767pt;}
._2d{width:696.410658pt;}
.fs5{font-size:31.880533pt;}
.fsd{font-size:34.561320pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:42.881600pt;}
.fse{font-size:53.122000pt;}
.fs8{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:58.181867pt;}
.fsa{font-size:58.882400pt;}
.fs7{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:64.002404pt;}
.fs6{font-size:76.513067pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.yc2{bottom:3.359985pt;}
.ya8{bottom:3.839996pt;}
.ya5{bottom:3.839997pt;}
.ya1{bottom:3.840012pt;}
.yb9{bottom:3.840026pt;}
.yaf{bottom:3.840027pt;}
.y51{bottom:51.360108pt;}
.y5{bottom:59.133337pt;}
.y50{bottom:69.280030pt;}
.y4{bottom:86.333337pt;}
.y8f{bottom:97.440064pt;}
.y9e{bottom:103.520081pt;}
.ydc{bottom:106.560059pt;}
.y72{bottom:106.720032pt;}
.y166{bottom:109.920044pt;}
.y8e{bottom:112.800049pt;}
.y9d{bottom:113.600037pt;}
.y143{bottom:116.000061pt;}
.y12a{bottom:117.280030pt;}
.y3e{bottom:122.177333pt;}
.yfe{bottom:122.240052pt;}
.y21{bottom:123.790666pt;}
.ydb{bottom:128.480042pt;}
.yfd{bottom:132.800049pt;}
.y8d{bottom:134.240052pt;}
.y71{bottom:134.400086pt;}
.y128{bottom:138.400086pt;}
.y142{bottom:143.520081pt;}
.y8c{bottom:144.320069pt;}
.y165{bottom:145.600037pt;}
.yda{bottom:150.240052pt;}
.y1a3{bottom:153.120057pt;}
.y129{bottom:159.520081pt;}
.y70{bottom:161.920044pt;}
.yfc{bottom:165.120057pt;}
.y8b{bottom:165.600037pt;}
.y141{bottom:171.200074pt;}
.yd9{bottom:172.160035pt;}
.y18{bottom:175.052000pt;}
.yfb{bottom:175.680054pt;}
.y9c{bottom:177.120057pt;}
.y3d{bottom:179.517333pt;}
.y1a2{bottom:180.800049pt;}
.y164{bottom:181.120057pt;}
.y127{bottom:181.440064pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y6f{bottom:189.600037pt;}
.y8a{bottom:193.120057pt;}
.yd8{bottom:193.280030pt;}
.y17c{bottom:195.200074pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y140{bottom:198.720032pt;}
.y126{bottom:202.560059pt;}
.yfa{bottom:208.160035pt;}
.y1a1{bottom:208.320069pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y9b{bottom:212.800049pt;}
.yd7{bottom:214.400086pt;}
.y163{bottom:216.800049pt;}
.y6e{bottom:217.120057pt;}
.y89{bottom:220.800049pt;}
.y124{bottom:223.680054pt;}
.y13f{bottom:226.400086pt;}
.yf9{bottom:229.920044pt;}
.y17b{bottom:230.720032pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.yd6{bottom:236.320069pt;}
.yf8{bottom:240.480042pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y1a0{bottom:244.000061pt;}
.y162{bottom:244.320069pt;}
.y6d{bottom:244.800049pt;}
.y9a{bottom:248.320069pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y13e{bottom:253.920044pt;}
.y88{bottom:256.320069pt;}
.yd5{bottom:257.440064pt;}
.y125{bottom:265.920044pt;}
.y17a{bottom:266.240052pt;}
.y19f{bottom:271.520081pt;}
.y161{bottom:272.000061pt;}
.y6c{bottom:272.320069pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y99{bottom:276.000061pt;}
.yd4{bottom:278.560059pt;}
.y13d{bottom:281.600037pt;}
.y87{bottom:284.000061pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.yf7{bottom:287.360047pt;}
.y123{bottom:287.840088pt;}
.y160{bottom:299.520081pt;}
.y6b{bottom:300.000061pt;}
.yd3{bottom:300.320069pt;}
.y179{bottom:301.920044pt;}
.y98{bottom:303.520081pt;}
.y19e{bottom:307.200074pt;}
.y122{bottom:308.960083pt;}
.yf{bottom:309.452000pt;}
.y86{bottom:311.520081pt;}
.y13c{bottom:317.120057pt;}
.yd2{bottom:321.600037pt;}
.y15f{bottom:327.200074pt;}
.y6a{bottom:327.520081pt;}
.y11f{bottom:330.080079pt;}
.y97{bottom:331.200074pt;}
.y19d{bottom:334.720032pt;}
.y192{bottom:335.520081pt;}
.y178{bottom:337.440064pt;}
.yf6{bottom:339.040039pt;}
.y85{bottom:339.200074pt;}
.yd1{bottom:342.720032pt;}
.ye{bottom:343.809333pt;}
.y13b{bottom:344.800049pt;}
.y121{bottom:351.360047pt;}
.y15e{bottom:354.720032pt;}
.y69{bottom:355.200074pt;}
.yd{bottom:362.706666pt;}
.y191{bottom:363.200074pt;}
.yd0{bottom:364.480042pt;}
.y96{bottom:366.400086pt;}
.yf5{bottom:366.560059pt;}
.y84{bottom:366.720032pt;}
.y19c{bottom:370.240052pt;}
.y13a{bottom:372.320069pt;}
.y120{bottom:372.480042pt;}
.y177{bottom:373.120057pt;}
.y15d{bottom:382.400086pt;}
.y68{bottom:382.720032pt;}
.ycf{bottom:385.760071pt;}
.y190{bottom:390.720032pt;}
.y83{bottom:394.240052pt;}
.y19b{bottom:397.920044pt;}
.y139{bottom:400.000061pt;}
.yce{bottom:403.680054pt;}
.ycd{bottom:407.520081pt;}
.y176{bottom:408.640076pt;}
.y15c{bottom:409.920044pt;}
.y67{bottom:410.240052pt;}
.y11e{bottom:415.360047pt;}
.y18f{bottom:418.240052pt;}
.y3c{bottom:419.641333pt;}
.yf4{bottom:421.760071pt;}
.y82{bottom:421.920044pt;}
.y11b{bottom:426.080079pt;}
.y138{bottom:427.520081pt;}
.ycc{bottom:429.280030pt;}
.y95{bottom:429.920044pt;}
.y19a{bottom:433.440064pt;}
.y11d{bottom:436.640076pt;}
.y15b{bottom:437.600037pt;}
.y3b{bottom:437.708000pt;}
.y66{bottom:437.920044pt;}
.y175{bottom:444.320069pt;}
.y18e{bottom:445.920044pt;}
.yc{bottom:446.990669pt;}
.y81{bottom:449.440064pt;}
.ycb{bottom:450.560059pt;}
.y1b2{bottom:453.120057pt;}
.y137{bottom:455.200074pt;}
.y3a{bottom:455.773333pt;}
.y94{bottom:457.440064pt;}
.y11c{bottom:457.760071pt;}
.y199{bottom:461.120057pt;}
.yb{bottom:462.990669pt;}
.y15a{bottom:465.120057pt;}
.y65{bottom:465.440064pt;}
.yca{bottom:472.320069pt;}
.y18d{bottom:473.440064pt;}
.y39{bottom:473.838667pt;}
.yf3{bottom:476.960083pt;}
.y80{bottom:477.120057pt;}
.ya{bottom:478.990666pt;}
.y11a{bottom:479.520081pt;}
.y174{bottom:479.840088pt;}
.y1b1{bottom:480.640076pt;}
.y136{bottom:482.720032pt;}
.y93{bottom:485.120057pt;}
.y159{bottom:492.800049pt;}
.y64{bottom:493.120057pt;}
.yc8{bottom:494.880066pt;}
.y9{bottom:494.990666pt;}
.y198{bottom:496.640076pt;}
.y119{bottom:500.800049pt;}
.y7f{bottom:504.640076pt;}
.y1b0{bottom:508.320069pt;}
.y18c{bottom:508.800049pt;}
.y38{bottom:509.969333pt;}
.y116{bottom:511.360047pt;}
.yc9{bottom:512.160035pt;}
.y173{bottom:515.520081pt;}
.yc7{bottom:516.000061pt;}
.y135{bottom:518.400086pt;}
.y158{bottom:520.320069pt;}
.y63{bottom:520.640076pt;}
.y118{bottom:521.920044pt;}
.y197{bottom:524.320069pt;}
.y37{bottom:528.036000pt;}
.yf2{bottom:532.160035pt;}
.y7e{bottom:532.320069pt;}
.y18b{bottom:536.320069pt;}
.y117{bottom:543.040039pt;}
.yc6{bottom:543.200074pt;}
.y1af{bottom:543.840088pt;}
.y134{bottom:545.920044pt;}
.y36{bottom:546.101333pt;}
.y4f{bottom:546.117333pt;}
.y157{bottom:548.000061pt;}
.y62{bottom:548.320069pt;}
.y172{bottom:551.040039pt;}
.yf1{bottom:559.680054pt;}
.y7d{bottom:559.840088pt;}
.y35{bottom:564.166667pt;}
.y4e{bottom:564.182667pt;}
.y115{bottom:564.800049pt;}
.y1ae{bottom:571.520081pt;}
.y18a{bottom:572.320069pt;}
.y133{bottom:573.600037pt;}
.y8{bottom:573.786667pt;}
.y156{bottom:575.520081pt;}
.y61{bottom:575.840088pt;}
.y34{bottom:582.232000pt;}
.y4d{bottom:582.248000pt;}
.y92{bottom:583.840088pt;}
.y114{bottom:586.080079pt;}
.yc5{bottom:586.560059pt;}
.y171{bottom:586.720032pt;}
.yf0{bottom:587.360047pt;}
.y7c{bottom:587.520081pt;}
.y7{bottom:592.685334pt;}
.y111{bottom:596.640076pt;}
.y189{bottom:599.840088pt;}
.y33{bottom:600.297333pt;}
.y4c{bottom:600.314667pt;}
.y132{bottom:601.120057pt;}
.y1ad{bottom:607.040039pt;}
.y113{bottom:607.200074pt;}
.y155{bottom:611.200074pt;}
.y60{bottom:611.520050pt;}
.yc4{bottom:614.240052pt;}
.yef{bottom:614.880066pt;}
.y7b{bottom:615.040070pt;}
.y32{bottom:618.364000pt;}
.y170{bottom:622.240052pt;}
.y188{bottom:627.520050pt;}
.y112{bottom:628.320069pt;}
.y131{bottom:628.800049pt;}
.y1ac{bottom:634.720063pt;}
.y31{bottom:636.429333pt;}
.y154{bottom:638.720063pt;}
.y5f{bottom:639.040070pt;}
.yee{bottom:642.560059pt;}
.y6{bottom:645.598667pt;}
.yc3{bottom:649.760071pt;}
.y110{bottom:650.240052pt;}
.y7a{bottom:650.720063pt;}
.y187{bottom:655.040070pt;}
.y4b{bottom:655.342667pt;}
.y130{bottom:656.320069pt;}
.y16f{bottom:657.920044pt;}
.y30{bottom:660.985333pt;}
.yc1{bottom:664.320069pt;}
.y153{bottom:666.400055pt;}
.y5e{bottom:666.720063pt;}
.yc0{bottom:667.680054pt;}
.y3{bottom:668.977329pt;}
.y1ab{bottom:670.240052pt;}
.y10f{bottom:671.360047pt;}
.y4a{bottom:673.408000pt;}
.y79{bottom:678.240052pt;}
.y10c{bottom:681.920044pt;}
.y186{bottom:682.720063pt;}
.ybf{bottom:683.040070pt;}
.y12f{bottom:684.000061pt;}
.yed{bottom:686.080048pt;}
.y49{bottom:691.474667pt;}
.y10e{bottom:692.480072pt;}
.y16e{bottom:693.440064pt;}
.y152{bottom:693.920044pt;}
.y5d{bottom:694.240052pt;}
.y1aa{bottom:697.920044pt;}
.ybe{bottom:698.400055pt;}
.ybd{bottom:702.240052pt;}
.y2f{bottom:703.373333pt;}
.yec{bottom:704.000061pt;}
.y78{bottom:705.920044pt;}
.y48{bottom:709.540000pt;}
.y185{bottom:710.240052pt;}
.y12e{bottom:711.520050pt;}
.y10d{bottom:713.600068pt;}
.y196{bottom:713.920044pt;}
.yeb{bottom:719.360047pt;}
.ybc{bottom:720.320069pt;}
.y2e{bottom:721.438667pt;}
.y91{bottom:721.920044pt;}
.ybb{bottom:724.160065pt;}
.y151{bottom:727.360047pt;}
.y47{bottom:727.605333pt;}
.y16d{bottom:729.120057pt;}
.y5c{bottom:729.920044pt;}
.y1a9{bottom:733.440064pt;}
.yea{bottom:734.720063pt;}
.y10b{bottom:735.520050pt;}
.y184{bottom:737.920044pt;}
.y2d{bottom:739.504000pt;}
.y77{bottom:741.120057pt;}
.y195{bottom:741.440064pt;}
.y46{bottom:745.670667pt;}
.yb7{bottom:745.920044pt;}
.y150{bottom:746.720063pt;}
.y12d{bottom:747.200074pt;}
.y90{bottom:749.440064pt;}
.yb8{bottom:752.640046pt;}
.ye9{bottom:753.920044pt;}
.yba{bottom:756.480072pt;}
.y109{bottom:756.640046pt;}
.y5b{bottom:757.440064pt;}
.y2c{bottom:757.569333pt;}
.y1a8{bottom:761.120057pt;}
.y45{bottom:763.736000pt;}
.y16c{bottom:764.640046pt;}
.y12c{bottom:764.960053pt;}
.y183{bottom:765.440064pt;}
.yb6{bottom:767.200074pt;}
.y14f{bottom:768.480072pt;}
.ye8{bottom:775.200074pt;}
.y194{bottom:776.800049pt;}
.y76{bottom:777.120057pt;}
.y10a{bottom:777.760071pt;}
.y12b{bottom:780.320069pt;}
.y2{bottom:781.661334pt;}
.y44{bottom:781.802667pt;}
.y5a{bottom:785.120057pt;}
.yb3{bottom:788.960053pt;}
.y14e{bottom:790.400055pt;}
.y182{bottom:793.120057pt;}
.yb4{bottom:795.680054pt;}
.y2b{bottom:796.177333pt;}
.y1a7{bottom:796.640046pt;}
.ye7{bottom:796.960053pt;}
.yb5{bottom:799.520050pt;}
.y108{bottom:799.680054pt;}
.y43{bottom:799.868000pt;}
.y16b{bottom:800.320069pt;}
.yb2{bottom:810.080048pt;}
.y14d{bottom:812.160065pt;}
.y193{bottom:812.320069pt;}
.y59{bottom:812.640046pt;}
.y2a{bottom:814.242667pt;}
.ye6{bottom:818.080048pt;}
.y181{bottom:820.640046pt;}
.y106{bottom:820.800049pt;}
.y1a6{bottom:824.320069pt;}
.yb1{bottom:828.160065pt;}
.yb0{bottom:832.000061pt;}
.y29{bottom:832.308000pt;}
.y42{bottom:833.873333pt;}
.y14c{bottom:834.080048pt;}
.y16a{bottom:835.840058pt;}
.ye5{bottom:840.000061pt;}
.y58{bottom:840.320069pt;}
.y107{bottom:841.920044pt;}
.y180{bottom:848.320069pt;}
.yae{bottom:849.920044pt;}
.y28{bottom:850.373333pt;}
.yad{bottom:853.760071pt;}
.y14b{bottom:855.840058pt;}
.y1{bottom:859.312000pt;}
.y1a5{bottom:859.840058pt;}
.ye4{bottom:861.760071pt;}
.y105{bottom:863.680054pt;}
.y57{bottom:867.840058pt;}
.y169{bottom:871.520066pt;}
.yac{bottom:871.680054pt;}
.yab{bottom:875.520066pt;}
.y17f{bottom:875.840058pt;}
.y14a{bottom:877.600052pt;}
.ye3{bottom:883.520066pt;}
.y103{bottom:884.960053pt;}
.y27{bottom:885.202667pt;}
.y1a4{bottom:887.520066pt;}
.yaa{bottom:893.600052pt;}
.y56{bottom:895.520066pt;}
.ya9{bottom:897.440064pt;}
.y149{bottom:899.520066pt;}
.y41{bottom:902.717333pt;}
.y26{bottom:903.268000pt;}
.y17e{bottom:903.520066pt;}
.ye2{bottom:904.800064pt;}
.y104{bottom:906.080063pt;}
.y168{bottom:907.040055pt;}
.ya7{bottom:915.360062pt;}
.ya6{bottom:919.200058pt;}
.y40{bottom:920.782667pt;}
.y148{bottom:921.280060pt;}
.y55{bottom:923.040055pt;}
.ye1{bottom:926.560059pt;}
.y102{bottom:927.840058pt;}
.y17d{bottom:931.040055pt;}
.ya4{bottom:937.280060pt;}
.y3f{bottom:938.848000pt;}
.y25{bottom:939.006667pt;}
.ya3{bottom:941.120057pt;}
.y167{bottom:942.720063pt;}
.y147{bottom:943.200058pt;}
.ye0{bottom:947.680054pt;}
.y24{bottom:948.305333pt;}
.y100{bottom:949.120057pt;}
.y54{bottom:950.720063pt;}
.y23{bottom:957.604000pt;}
.y75{bottom:958.720063pt;}
.ya2{bottom:962.880066pt;}
.y146{bottom:964.960053pt;}
.y22{bottom:967.854667pt;}
.ya0{bottom:969.600052pt;}
.y101{bottom:970.240052pt;}
.y9f{bottom:973.440064pt;}
.y53{bottom:978.240052pt;}
.y74{bottom:986.240052pt;}
.y145{bottom:986.880066pt;}
.yde{bottom:992.000061pt;}
.yff{bottom:1002.560059pt;}
.ydf{bottom:1009.280060pt;}
.ydd{bottom:1013.120057pt;}
.y52{bottom:1013.600060pt;}
.y73{bottom:1013.920060pt;}
.y144{bottom:1014.080056pt;}
.h26{height:18.079986pt;}
.h21{height:18.239990pt;}
.h25{height:18.239991pt;}
.h28{height:18.239998pt;}
.h1f{height:18.240006pt;}
.h24{height:18.240020pt;}
.h22{height:18.240021pt;}
.h27{height:18.240051pt;}
.hc{height:22.539537pt;}
.he{height:23.910400pt;}
.h1d{height:24.132172pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.hb{height:30.240870pt;}
.hd{height:30.246204pt;}
.h13{height:32.783596pt;}
.h1e{height:37.092021pt;}
.h12{height:39.850400pt;}
.h7{height:40.853333pt;}
.h14{height:40.960034pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h15{height:43.636400pt;}
.h18{height:44.095406pt;}
.h17{height:44.650570pt;}
.h19{height:44.689179pt;}
.h11{height:44.951552pt;}
.h1c{height:46.595500pt;}
.h1a{height:46.783007pt;}
.h2{height:49.024000pt;}
.h10{height:50.268885pt;}
.hf{height:53.865199pt;}
.h1b{height:59.381682pt;}
.h2a{height:59.381806pt;}
.h5{height:69.450667pt;}
.h20{height:86.929167pt;}
.h29{height:86.929171pt;}
.h23{height:86.929291pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h16{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w6{width:6.719971pt;}
.w5{width:7.039978pt;}
.w8{width:7.839966pt;}
.w9{width:7.839997pt;}
.w7{width:8.000000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w4{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x45{left:97.120003pt;}
.x43{left:103.360001pt;}
.x49{left:106.400002pt;}
.x2f{left:108.000000pt;}
.x47{left:110.400002pt;}
.x1b{left:112.959999pt;}
.x1c{left:118.080002pt;}
.x35{left:121.279999pt;}
.x55{left:124.160004pt;}
.x1d{left:141.279999pt;}
.x15{left:157.104000pt;}
.x46{left:160.320007pt;}
.x18{left:171.617333pt;}
.x9{left:172.793333pt;}
.x4{left:180.874667pt;}
.x19{left:182.261333pt;}
.x36{left:186.559998pt;}
.x54{left:204.639999pt;}
.x38{left:212.800003pt;}
.xf{left:221.962667pt;}
.x52{left:223.199997pt;}
.x48{left:224.160004pt;}
.x16{left:225.542667pt;}
.x51{left:235.039993pt;}
.x4b{left:245.279999pt;}
.x4f{left:246.559998pt;}
.xe{left:248.041333pt;}
.x1e{left:249.279999pt;}
.xa{left:250.797333pt;}
.x4d{left:251.839996pt;}
.x4c{left:252.800003pt;}
.x4e{left:254.559998pt;}
.x53{left:258.079987pt;}
.x50{left:261.760010pt;}
.xb{left:275.638667pt;}
.x4a{left:283.040009pt;}
.x11{left:284.894667pt;}
.x44{left:300.799988pt;}
.x13{left:305.548000pt;}
.x10{left:309.034667pt;}
.x37{left:310.399994pt;}
.xc{left:317.122667pt;}
.x2e{left:319.359985pt;}
.x12{left:326.378667pt;}
.x1f{left:341.920013pt;}
.x14{left:349.248000pt;}
.x1a{left:353.380000pt;}
.x20{left:359.679993pt;}
.x17{left:385.298667pt;}
.xd{left:397.624000pt;}
.x5{left:398.762667pt;}
.x3{left:404.408000pt;}
.x30{left:412.959991pt;}
.x31{left:414.720001pt;}
.x8{left:426.554667pt;}
.x29{left:460.320007pt;}
.x7{left:467.585333pt;}
.x32{left:474.559998pt;}
.x22{left:476.320007pt;}
.x6{left:480.633333pt;}
.x3d{left:482.079987pt;}
.x39{left:485.440002pt;}
.x41{left:490.399994pt;}
.x3e{left:505.440002pt;}
.x23{left:512.320007pt;}
.x3b{left:517.440002pt;}
.x2c{left:535.679993pt;}
.x2a{left:543.679993pt;}
.x28{left:546.400024pt;}
.x24{left:551.679993pt;}
.x33{left:560.320007pt;}
.x3c{left:577.440002pt;}
.x3f{left:579.359985pt;}
.x3a{left:581.440002pt;}
.x40{left:583.359985pt;}
.x25{left:587.679993pt;}
.x42{left:591.359985pt;}
.x21{left:606.080017pt;}
.x34{left:610.719971pt;}
.x2b{left:628.960022pt;}
.x26{left:636.960022pt;}
.x2d{left:658.719971pt;}
.x27{left:672.960022pt;}
}




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