
    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_49394186b066433e8e0e57ff.woff')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_fa5948e7068c221abbf39435.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_96fd899cfe23f277833335ab.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_88966604bd98f679e83432cf.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_043cf2e7bae90c132e5d8ab5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_77d53fa81c6b1a3f97bb9533.woff')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_ab94abbedc12ffc547419784.woff')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_b0b15e2014e9299aee880581.woff')format("woff");}.ff9{font-family:ff9;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6a86e11b9979ea6f442f9b33.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_188005efd90de7ce671ef198.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3f4ddf87e1cd3125ffa400a9.woff')format("woff");}.ffc{font-family:ffc;line-height:1.061035;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_7a664ad30ce920bc23810dad.woff')format("woff");}.ffd{font-family:ffd;line-height:1.065430;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_6484086047b4e39ac5f39d68.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_db39b3a7d550919578f7bdcb.woff')format("woff");}.fff{font-family:fff;line-height:0.783691;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_6872a24c6d030c417b7d201f.woff')format("woff");}.ff10{font-family:ff10;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_1da25f00a929c5f2332015c8.woff')format("woff");}.ff11{font-family:ff11;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_5403868c06a1b5c6602bd6a1.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_357939d8ba50e10802516df7.woff')format("woff");}.ff13{font-family:ff13;line-height:1.040039;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v3{vertical-align:-69.120000px;}
.v1{vertical-align:-67.680000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:69.120000px;}
.ls24{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.053280px;}
.ls5{letter-spacing:-0.017280px;}
.ls4{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.022320px;}
.ls1f{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.224400px;}
.ls8{letter-spacing:0.259800px;}
.ls20{letter-spacing:0.259920px;}
.ls1a{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.lse{letter-spacing:0.548640px;}
.ls12{letter-spacing:0.828000px;}
.ls9{letter-spacing:0.900000px;}
.ls15{letter-spacing:1.080000px;}
.ls11{letter-spacing:2.340000px;}
.ls1d{letter-spacing:6.660000px;}
.ls23{letter-spacing:8.100000px;}
.ls1b{letter-spacing:8.820000px;}
.ls1c{letter-spacing:12.420000px;}
.ls22{letter-spacing:13.860000px;}
.ls1e{letter-spacing:25.380000px;}
.ls19{letter-spacing:42.660000px;}
.lsf{letter-spacing:43.842720px;}
.lsb{letter-spacing:54.900000px;}
.ls21{letter-spacing:100.002720px;}
.lsc{letter-spacing:194.556000px;}
.ls16{letter-spacing:685.776000px;}
.ls13{letter-spacing:758.496000px;}
.ls18{letter-spacing:814.656000px;}
.ls17{letter-spacing:925.536000px;}
.ls14{letter-spacing:1445.496000px;}
.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;}
}
.wsb{word-spacing:-15.768000px;}
.ws9{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.093600px;}
.wsc{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws5{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.147200px;}
.ws6{word-spacing:-12.060000px;}
.ws0{word-spacing:-10.924560px;}
.ws3{word-spacing:-10.612800px;}
.ws1{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._40{margin-left:-4.296000px;}
._6{margin-left:-3.255600px;}
._1{margin-left:-1.846560px;}
._0{width:1.068960px;}
._2{width:2.954880px;}
._7{width:4.468800px;}
._8{width:5.497920px;}
._9{width:7.171200px;}
._16{width:8.618880px;}
._e{width:9.681120px;}
._f{width:10.816560px;}
._10{width:12.071520px;}
._12{width:13.864320px;}
._a{width:16.194960px;}
._b{width:17.642640px;}
._2d{width:18.805200px;}
._17{width:20.058240px;}
._15{width:21.573360px;}
._1f{width:22.596000px;}
._3{width:23.814000px;}
._1a{width:25.067760px;}
._1c{width:26.396160px;}
._19{width:27.668880px;}
._1e{width:28.804320px;}
._18{width:30.178800px;}
._d{width:31.254480px;}
._c{width:32.628960px;}
._2f{width:33.777840px;}
._14{width:34.900560px;}
._13{width:35.915760px;}
._24{width:37.124400px;}
._25{width:38.294160px;}
._29{width:39.819600px;}
._11{width:41.175360px;}
._20{width:42.190560px;}
._21{width:43.195680px;}
._27{width:44.299680px;}
._1d{width:45.627840px;}
._23{width:46.992240px;}
._4{width:48.060000px;}
._41{width:49.302720px;}
._2b{width:50.317920px;}
._2a{width:51.393600px;}
._3d{width:52.588800px;}
._39{width:54.441360px;}
._1b{width:56.114640px;}
._22{width:57.668400px;}
._30{width:59.527680px;}
._31{width:60.933840px;}
._37{width:62.210160px;}
._36{width:63.345600px;}
._2c{width:64.779840px;}
._38{width:66.751920px;}
._34{width:70.038720px;}
._35{width:71.831520px;}
._28{width:73.325520px;}
._3e{width:78.584400px;}
._2e{width:79.839360px;}
._3a{width:84.440880px;}
._3b{width:85.695840px;}
._26{width:104.221440px;}
._5{width:105.894000px;}
._3c{width:112.767120px;}
._32{width:154.061280px;}
._3f{width:218.243520px;}
._33{width:399.973680px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:transparent;}
.fc4{color:rgb(205,29,142);}
.fc3{color:rgb(28,78,123);}
.fc1{color:rgb(112,48,160);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs9{font-size:23.760000px;}
.fs8{font-size:36.000000px;}
.fs2{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:81.965417px;}
.y5b{bottom:-34.740000px;}
.y7{bottom:-22.680000px;}
.y6{bottom:-10.620000px;}
.y5e{bottom:-8.100000px;}
.y0{bottom:0.000000px;}
.y5{bottom:1.260000px;}
.y5a{bottom:1.440000px;}
.y44{bottom:3.240000px;}
.y9f{bottom:3.600000px;}
.y46{bottom:4.680000px;}
.y5d{bottom:6.120000px;}
.y174{bottom:9.180000px;}
.y116{bottom:12.060000px;}
.y9e{bottom:12.240000px;}
.ya9{bottom:12.285000px;}
.y58{bottom:16.380000px;}
.ya2{bottom:20.700000px;}
.y43{bottom:20.880000px;}
.ya7{bottom:20.925000px;}
.ya4{bottom:29.520000px;}
.ya8{bottom:29.565000px;}
.ya5{bottom:38.160000px;}
.yaa{bottom:38.205000px;}
.y42{bottom:38.520000px;}
.y57{bottom:43.380000px;}
.y41{bottom:55.980000px;}
.y3{bottom:58.140000px;}
.y40{bottom:73.620000px;}
.y56{bottom:76.140000px;}
.y2{bottom:80.100000px;}
.y3f{bottom:91.260000px;}
.y55{bottom:97.560000px;}
.y3e{bottom:108.720000px;}
.y54{bottom:110.340000px;}
.y5c{bottom:114.300000px;}
.y134{bottom:115.020000px;}
.y109{bottom:118.260000px;}
.yeb{bottom:119.700000px;}
.y16e{bottom:121.860000px;}
.y111{bottom:122.940000px;}
.y9a{bottom:123.300000px;}
.y187{bottom:126.360000px;}
.y3d{bottom:126.405000px;}
.yb9{bottom:131.580000px;}
.y108{bottom:135.360000px;}
.yea{bottom:136.800000px;}
.y16c{bottom:139.140000px;}
.y110{bottom:140.220000px;}
.y99{bottom:140.580000px;}
.y186{bottom:143.640000px;}
.y3c{bottom:144.045000px;}
.yb8{bottom:148.860000px;}
.y133{bottom:150.120000px;}
.y51{bottom:152.100000px;}
.y107{bottom:152.640000px;}
.ye9{bottom:154.080000px;}
.y16b{bottom:156.420000px;}
.y10f{bottom:157.500000px;}
.y98{bottom:157.860000px;}
.y185{bottom:160.920000px;}
.y3b{bottom:161.505000px;}
.yb7{bottom:165.780000px;}
.ybc{bottom:166.140000px;}
.y50{bottom:169.380000px;}
.y106{bottom:169.920000px;}
.ye8{bottom:171.360000px;}
.y16a{bottom:173.700000px;}
.y10e{bottom:174.780000px;}
.y97{bottom:175.140000px;}
.y184{bottom:178.020000px;}
.y3a{bottom:179.145000px;}
.yb6{bottom:183.420000px;}
.y132{bottom:185.400000px;}
.y4f{bottom:186.480000px;}
.y105{bottom:187.200000px;}
.ye7{bottom:188.640000px;}
.y169{bottom:190.800000px;}
.y10d{bottom:192.060000px;}
.y96{bottom:192.420000px;}
.y183{bottom:195.300000px;}
.y39{bottom:196.785000px;}
.yb5{bottom:200.700000px;}
.y4e{bottom:203.760000px;}
.y104{bottom:204.480000px;}
.ye6{bottom:205.920000px;}
.y168{bottom:208.080000px;}
.y10c{bottom:209.340000px;}
.y95{bottom:209.700000px;}
.y182{bottom:212.610000px;}
.y38{bottom:214.245000px;}
.ybb{bottom:217.470000px;}
.yb4{bottom:217.830000px;}
.y131{bottom:220.710000px;}
.y4d{bottom:221.070000px;}
.y103{bottom:221.610000px;}
.y28{bottom:221.985000px;}
.ye5{bottom:223.230000px;}
.y167{bottom:225.390000px;}
.y10b{bottom:226.470000px;}
.y94{bottom:226.830000px;}
.y181{bottom:229.890000px;}
.y37{bottom:231.885000px;}
.yb3{bottom:235.110000px;}
.y4c{bottom:238.350000px;}
.y102{bottom:238.890000px;}
.y27{bottom:240.165000px;}
.ye4{bottom:240.330000px;}
.y166{bottom:242.670000px;}
.y93{bottom:244.110000px;}
.y180{bottom:247.170000px;}
.y36{bottom:249.525000px;}
.yb2{bottom:252.390000px;}
.y4b{bottom:255.630000px;}
.y101{bottom:256.170000px;}
.ye3{bottom:257.610000px;}
.y26{bottom:258.525000px;}
.y130{bottom:259.590000px;}
.y165{bottom:259.950000px;}
.y92{bottom:261.390000px;}
.y17f{bottom:264.450000px;}
.y35{bottom:267.165000px;}
.yb1{bottom:269.310000px;}
.yba{bottom:269.670000px;}
.y4a{bottom:272.910000px;}
.y100{bottom:273.450000px;}
.ye2{bottom:274.890000px;}
.y12f{bottom:276.510000px;}
.y25{bottom:276.705000px;}
.y164{bottom:277.230000px;}
.y91{bottom:278.670000px;}
.y17e{bottom:281.190000px;}
.y188{bottom:281.550000px;}
.y34{bottom:284.625000px;}
.y49{bottom:289.650000px;}
.y52{bottom:290.010000px;}
.yff{bottom:290.730000px;}
.ye1{bottom:292.170000px;}
.y24{bottom:292.185000px;}
.y12d{bottom:294.150000px;}
.y163{bottom:294.330000px;}
.y90{bottom:295.950000px;}
.y17d{bottom:298.470000px;}
.yb0{bottom:301.350000px;}
.y33{bottom:302.265000px;}
.y23{bottom:306.225000px;}
.y48{bottom:306.930000px;}
.yfe{bottom:308.010000px;}
.ye0{bottom:309.450000px;}
.y12c{bottom:311.250000px;}
.y162{bottom:311.610000px;}
.y8f{bottom:313.230000px;}
.y17c{bottom:316.110000px;}
.yaf{bottom:319.350000px;}
.y32{bottom:319.905000px;}
.y22{bottom:320.265000px;}
.y47{bottom:321.330000px;}
.y45{bottom:323.490000px;}
.yfd{bottom:325.110000px;}
.ydf{bottom:326.730000px;}
.y12b{bottom:328.530000px;}
.y161{bottom:328.890000px;}
.y16{bottom:329.430000px;}
.y17b{bottom:329.790000px;}
.y8e{bottom:330.330000px;}
.y21{bottom:334.305000px;}
.yae{bottom:337.350000px;}
.y31{bottom:337.365000px;}
.yfc{bottom:342.390000px;}
.yde{bottom:343.830000px;}
.y12a{bottom:345.810000px;}
.y160{bottom:346.170000px;}
.y8d{bottom:347.610000px;}
.y20{bottom:348.345000px;}
.y30{bottom:355.035000px;}
.yad{bottom:355.350000px;}
.yfb{bottom:359.670000px;}
.ydd{bottom:361.110000px;}
.y1f{bottom:362.235000px;}
.y129{bottom:363.090000px;}
.y15f{bottom:363.450000px;}
.y8c{bottom:364.890000px;}
.y2f{bottom:372.675000px;}
.yac{bottom:373.350000px;}
.y1e{bottom:376.095000px;}
.yfa{bottom:376.950000px;}
.ydc{bottom:378.030000px;}
.yee{bottom:378.390000px;}
.y128{bottom:380.370000px;}
.y15e{bottom:380.730000px;}
.y8b{bottom:382.170000px;}
.y1d{bottom:389.775000px;}
.y2e{bottom:390.135000px;}
.yf9{bottom:393.870000px;}
.y10a{bottom:394.230000px;}
.ydb{bottom:395.670000px;}
.y127{bottom:397.650000px;}
.y15d{bottom:397.830000px;}
.y8a{bottom:399.450000px;}
.y1c{bottom:403.995000px;}
.y2d{bottom:407.775000px;}
.yf8{bottom:411.150000px;}
.yab{bottom:411.870000px;}
.yda{bottom:412.950000px;}
.y126{bottom:414.750000px;}
.y15c{bottom:415.110000px;}
.y89{bottom:416.730000px;}
.y1b{bottom:418.035000px;}
.y2c{bottom:425.415000px;}
.yf7{bottom:428.610000px;}
.yd9{bottom:430.230000px;}
.y125{bottom:432.030000px;}
.y1a{bottom:432.075000px;}
.y15b{bottom:432.390000px;}
.y88{bottom:433.830000px;}
.yf6{bottom:442.290000px;}
.y2b{bottom:443.055000px;}
.ya6{bottom:443.730000px;}
.y19{bottom:446.655000px;}
.yd8{bottom:447.330000px;}
.y124{bottom:449.355000px;}
.y15a{bottom:449.715000px;}
.y87{bottom:451.155000px;}
.y2a{bottom:460.515000px;}
.y18{bottom:464.655000px;}
.y123{bottom:466.635000px;}
.y159{bottom:466.995000px;}
.y86{bottom:468.435000px;}
.y29{bottom:481.215000px;}
.y17{bottom:481.755000px;}
.yd7{bottom:481.935000px;}
.y122{bottom:483.915000px;}
.y158{bottom:484.095000px;}
.y85{bottom:485.715000px;}
.ya3{bottom:496.335000px;}
.yd6{bottom:499.215000px;}
.y121{bottom:501.015000px;}
.y157{bottom:501.375000px;}
.y84{bottom:502.995000px;}
.yd5{bottom:516.495000px;}
.y120{bottom:518.295000px;}
.y156{bottom:518.655000px;}
.y83{bottom:520.095000px;}
.yd4{bottom:533.595000px;}
.y11f{bottom:535.575000px;}
.y155{bottom:535.935000px;}
.y82{bottom:537.375000px;}
.ya1{bottom:548.895000px;}
.yed{bottom:550.515000px;}
.yd3{bottom:550.875000px;}
.y11e{bottom:552.855000px;}
.y154{bottom:553.215000px;}
.y81{bottom:554.655000px;}
.yd2{bottom:568.155000px;}
.y11d{bottom:570.135000px;}
.y153{bottom:570.495000px;}
.y80{bottom:571.935000px;}
.ya0{bottom:583.995000px;}
.yd1{bottom:585.075000px;}
.yec{bottom:585.435000px;}
.y11c{bottom:587.055000px;}
.y12e{bottom:587.415000px;}
.y152{bottom:587.595000px;}
.y7f{bottom:589.215000px;}
.yd0{bottom:602.715000px;}
.y11b{bottom:604.155000px;}
.y151{bottom:604.875000px;}
.y7e{bottom:606.495000px;}
.y9d{bottom:619.275000px;}
.ycf{bottom:619.995000px;}
.y11a{bottom:621.795000px;}
.y150{bottom:622.155000px;}
.y7d{bottom:623.595000px;}
.y119{bottom:635.475000px;}
.yce{bottom:637.095000px;}
.y14f{bottom:639.435000px;}
.y7c{bottom:640.875000px;}
.ycd{bottom:654.375000px;}
.y17a{bottom:655.095000px;}
.y14e{bottom:656.715000px;}
.y7b{bottom:658.155000px;}
.ycc{bottom:671.655000px;}
.y14d{bottom:673.995000px;}
.y9c{bottom:675.075000px;}
.y7a{bottom:675.435000px;}
.y179{bottom:686.805000px;}
.ycb{bottom:688.965000px;}
.y14c{bottom:691.125000px;}
.y79{bottom:692.745000px;}
.y178{bottom:704.805000px;}
.yca{bottom:706.245000px;}
.y14b{bottom:708.405000px;}
.y78{bottom:710.025000px;}
.y177{bottom:722.805000px;}
.yc9{bottom:723.525000px;}
.y14a{bottom:725.685000px;}
.y77{bottom:727.125000px;}
.yc8{bottom:740.625000px;}
.y149{bottom:742.965000px;}
.y76{bottom:744.405000px;}
.yc7{bottom:757.905000px;}
.y148{bottom:760.245000px;}
.y9b{bottom:761.325000px;}
.y75{bottom:761.685000px;}
.yc6{bottom:775.185000px;}
.y147{bottom:777.525000px;}
.y74{bottom:778.965000px;}
.yc5{bottom:792.465000px;}
.y176{bottom:793.365000px;}
.y146{bottom:794.625000px;}
.y73{bottom:796.245000px;}
.yc4{bottom:809.745000px;}
.y175{bottom:811.365000px;}
.y145{bottom:811.905000px;}
.y72{bottom:813.345000px;}
.yc3{bottom:826.845000px;}
.y144{bottom:829.185000px;}
.y173{bottom:829.365000px;}
.y15{bottom:830.265000px;}
.y71{bottom:830.625000px;}
.yc2{bottom:844.125000px;}
.y143{bottom:846.465000px;}
.y18b{bottom:847.545000px;}
.y70{bottom:847.905000px;}
.y14{bottom:854.925000px;}
.y142{bottom:863.745000px;}
.y6f{bottom:865.185000px;}
.y13{bottom:875.085000px;}
.yc1{bottom:875.805000px;}
.y172{bottom:879.405000px;}
.y141{bottom:880.845000px;}
.y6e{bottom:882.465000px;}
.y12{bottom:896.865000px;}
.y140{bottom:898.125000px;}
.y6d{bottom:899.745000px;}
.yc0{bottom:911.085000px;}
.y13f{bottom:915.405000px;}
.y6c{bottom:916.845000px;}
.y11{bottom:919.770000px;}
.y171{bottom:929.130000px;}
.yf5{bottom:930.390000px;}
.y13e{bottom:932.730000px;}
.y18a{bottom:933.810000px;}
.y6b{bottom:934.170000px;}
.y10{bottom:945.690000px;}
.ybf{bottom:946.410000px;}
.y170{bottom:947.130000px;}
.yf4{bottom:947.670000px;}
.y13d{bottom:950.010000px;}
.y6a{bottom:951.450000px;}
.y118{bottom:963.870000px;}
.ybe{bottom:964.410000px;}
.y13c{bottom:967.290000px;}
.y69{bottom:968.730000px;}
.yf{bottom:971.430000px;}
.yf3{bottom:979.350000px;}
.y13b{bottom:984.390000px;}
.y16f{bottom:985.650000px;}
.y68{bottom:986.010000px;}
.ye{bottom:993.750000px;}
.y117{bottom:995.910000px;}
.yf2{bottom:997.350000px;}
.y13a{bottom:1001.670000px;}
.y189{bottom:1002.930000px;}
.y67{bottom:1003.290000px;}
.yd{bottom:1017.330000px;}
.y139{bottom:1018.950000px;}
.ybd{bottom:1020.030000px;}
.y66{bottom:1020.390000px;}
.y53{bottom:1025.250000px;}
.y115{bottom:1031.190000px;}
.yf1{bottom:1032.630000px;}
.y138{bottom:1036.230000px;}
.y65{bottom:1037.670000px;}
.yc{bottom:1041.090000px;}
.yf0{bottom:1050.630000px;}
.y137{bottom:1053.510000px;}
.y64{bottom:1054.950000px;}
.yb{bottom:1064.850000px;}
.y114{bottom:1066.290000px;}
.y136{bottom:1070.790000px;}
.y63{bottom:1072.230000px;}
.y113{bottom:1084.290000px;}
.y135{bottom:1087.530000px;}
.y16d{bottom:1087.890000px;}
.ya{bottom:1088.790000px;}
.yef{bottom:1089.150000px;}
.y62{bottom:1089.510000px;}
.y61{bottom:1106.790000px;}
.y9{bottom:1112.550000px;}
.y112{bottom:1119.570000px;}
.y60{bottom:1123.890000px;}
.y8{bottom:1136.310000px;}
.y59{bottom:1140.090000px;}
.y5f{bottom:1141.170000px;}
.y4{bottom:1176.840000px;}
.y1{bottom:1191.240000px;}
.h12{height:5.653125px;}
.h13{height:5.805000px;}
.h14{height:5.920372px;}
.h11{height:5.940000px;}
.h4{height:10.980000px;}
.h1c{height:11.160000px;}
.h1d{height:17.280000px;}
.h27{height:17.316000px;}
.h19{height:23.945625px;}
.h28{height:28.440000px;}
.h22{height:34.380000px;}
.h21{height:34.560000px;}
.h25{height:34.596000px;}
.h18{height:36.281250px;}
.h1f{height:40.655391px;}
.he{height:40.843828px;}
.h6{height:40.985156px;}
.h2b{height:41.726953px;}
.h5{height:42.086250px;}
.h10{height:45.720703px;}
.h1e{height:47.321367px;}
.h3{height:47.980898px;}
.h1b{height:48.616875px;}
.hf{height:50.218594px;}
.hd{height:50.597578px;}
.h23{height:51.660000px;}
.h24{height:51.876000px;}
.h2a{height:58.621992px;}
.hb{height:58.651172px;}
.h15{height:60.226875px;}
.h16{height:61.423863px;}
.h20{height:62.211094px;}
.ha{height:66.757500px;}
.h1a{height:72.562500px;}
.h29{height:74.953125px;}
.h2{height:77.342344px;}
.h8{height:78.367500px;}
.h7{height:79.620469px;}
.h9{height:85.327280px;}
.h17{height:126.000000px;}
.h26{height:130.543863px;}
.hc{height:495.435000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:40.500000px;}
.w18{width:41.220000px;}
.w1c{width:42.840000px;}
.w17{width:43.560000px;}
.w11{width:43.740000px;}
.wb{width:44.280000px;}
.w2b{width:86.220000px;}
.w29{width:86.580000px;}
.w13{width:89.100000px;}
.wd{width:90.000000px;}
.w14{width:110.556000px;}
.we{width:111.276000px;}
.w25{width:124.740000px;}
.w21{width:125.100000px;}
.w1e{width:130.356000px;}
.w19{width:131.076000px;}
.w12{width:135.216000px;}
.wc{width:135.936000px;}
.w15{width:136.296000px;}
.wf{width:137.016000px;}
.w33{width:156.630000px;}
.w16{width:156.780000px;}
.w31{width:156.990000px;}
.w10{width:157.140000px;}
.w26{width:157.350000px;}
.w22{width:158.070000px;}
.w1f{width:169.590000px;}
.w1a{width:170.490000px;}
.w28{width:175.710000px;}
.w24{width:176.070000px;}
.w3{width:205.950000px;}
.w9{width:206.130000px;}
.w4{width:212.115000px;}
.w6{width:212.655000px;}
.w27{width:215.670000px;}
.w23{width:216.390000px;}
.w37{width:241.410000px;}
.w35{width:241.770000px;}
.w20{width:242.850000px;}
.w1b{width:243.210000px;}
.w2f{width:247.350000px;}
.w2d{width:247.710000px;}
.w3b{width:295.950000px;}
.w39{width:296.310000px;}
.w40{width:333.615000px;}
.w3e{width:333.975000px;}
.w3f{width:346.755000px;}
.w3d{width:347.115000px;}
.w3c{width:384.405000px;}
.w3a{width:384.765000px;}
.w30{width:427.575000px;}
.w2e{width:427.935000px;}
.w38{width:438.945000px;}
.w36{width:439.305000px;}
.w5{width:515.955000px;}
.w7{width:516.495000px;}
.w34{width:518.295000px;}
.w32{width:518.655000px;}
.w2c{width:588.525000px;}
.w2a{width:589.065000px;}
.w8{width:625.785000px;}
.wa{width:719.430000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x1d{left:9.180000px;}
.x10{left:10.800000px;}
.x14{left:12.240000px;}
.x3a{left:13.860000px;}
.x1f{left:15.120000px;}
.x18{left:16.560000px;}
.x1a{left:17.820000px;}
.x15{left:19.440000px;}
.xa{left:20.700000px;}
.x4b{left:22.140000px;}
.x31{left:23.220000px;}
.x24{left:25.740000px;}
.x1c{left:27.540000px;}
.x21{left:28.620000px;}
.x22{left:29.880000px;}
.x17{left:32.220000px;}
.x2a{left:34.200000px;}
.x39{left:36.000000px;}
.x1e{left:37.080000px;}
.x23{left:38.160000px;}
.x3{left:41.220000px;}
.x32{left:42.654000px;}
.x20{left:45.000000px;}
.x41{left:46.260000px;}
.x34{left:49.365000px;}
.x55{left:50.394000px;}
.x2c{left:51.840000px;}
.x7{left:53.999987px;}
.x60{left:56.334000px;}
.x36{left:57.630000px;}
.x38{left:59.445000px;}
.x5b{left:60.660000px;}
.x3c{left:61.965000px;}
.xe{left:63.360000px;}
.x3b{left:66.450000px;}
.x5a{left:69.474000px;}
.x2b{left:77.070000px;}
.x65{left:82.980000px;}
.x5f{left:89.130000px;}
.x64{left:90.714000px;}
.x3f{left:92.565000px;}
.x59{left:95.250000px;}
.x5e{left:101.694000px;}
.x4{left:102.990000px;}
.x4d{left:106.014000px;}
.x1{left:108.035987px;}
.x44{left:111.455987px;}
.x25{left:133.595987px;}
.x2d{left:135.035987px;}
.x63{left:145.080000px;}
.xc{left:151.950000px;}
.x12{left:153.030000px;}
.xf{left:157.905000px;}
.x61{left:159.879000px;}
.x2e{left:162.029987px;}
.x57{left:166.860000px;}
.x5d{left:170.490000px;}
.x4a{left:174.270000px;}
.x4e{left:176.430000px;}
.x4c{left:178.410000px;}
.x49{left:192.450000px;}
.x3d{left:195.330000px;}
.x26{left:196.770000px;}
.x30{left:210.629987px;}
.x54{left:214.590000px;}
.x53{left:220.710000px;}
.x56{left:227.910000px;}
.x33{left:233.850000px;}
.x40{left:234.945000px;}
.x27{left:237.990000px;}
.x43{left:239.249987px;}
.x52{left:265.755000px;}
.x9{left:267.195000px;}
.x3e{left:271.335000px;}
.x13{left:288.975000px;}
.x47{left:296.894987px;}
.xd{left:312.915000px;}
.x51{left:316.154987px;}
.x50{left:318.134987px;}
.x67{left:324.614987px;}
.x2{left:345.855000px;}
.x58{left:350.175000px;}
.x48{left:356.475000px;}
.x28{left:369.075000px;}
.x16{left:378.975000px;}
.x35{left:391.935000px;}
.x5c{left:404.715000px;}
.x6{left:446.504987px;}
.x46{left:448.304987px;}
.x62{left:455.505000px;}
.x5{left:463.964987px;}
.xb{left:472.964987px;}
.x45{left:476.564987px;}
.x19{left:490.245000px;}
.x11{left:498.704987px;}
.x2f{left:527.144987px;}
.x29{left:539.565000px;}
.x37{left:608.325000px;}
.x1b{left:627.270000px;}
.x42{left:640.409987px;}
.x4f{left:692.429987px;}
.x66{left:719.249987px;}
@media print{
.v3{vertical-align:-61.440000pt;}
.v1{vertical-align:-60.160000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:61.440000pt;}
.ls24{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:-0.015360pt;}
.ls4{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.019840pt;}
.ls1f{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.199467pt;}
.ls8{letter-spacing:0.230933pt;}
.ls20{letter-spacing:0.231040pt;}
.ls1a{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.487680pt;}
.ls12{letter-spacing:0.736000pt;}
.ls9{letter-spacing:0.800000pt;}
.ls15{letter-spacing:0.960000pt;}
.ls11{letter-spacing:2.080000pt;}
.ls1d{letter-spacing:5.920000pt;}
.ls23{letter-spacing:7.200000pt;}
.ls1b{letter-spacing:7.840000pt;}
.ls1c{letter-spacing:11.040000pt;}
.ls22{letter-spacing:12.320000pt;}
.ls1e{letter-spacing:22.560000pt;}
.ls19{letter-spacing:37.920000pt;}
.lsf{letter-spacing:38.971307pt;}
.lsb{letter-spacing:48.800000pt;}
.ls21{letter-spacing:88.891307pt;}
.lsc{letter-spacing:172.938667pt;}
.ls16{letter-spacing:609.578667pt;}
.ls13{letter-spacing:674.218667pt;}
.ls18{letter-spacing:724.138667pt;}
.ls17{letter-spacing:822.698667pt;}
.ls14{letter-spacing:1284.885333pt;}
.wsb{word-spacing:-14.016000pt;}
.ws9{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.416533pt;}
.wsc{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws5{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.686400pt;}
.ws6{word-spacing:-10.720000pt;}
.ws0{word-spacing:-9.710720pt;}
.ws3{word-spacing:-9.433600pt;}
.ws1{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._40{margin-left:-3.818667pt;}
._6{margin-left:-2.893867pt;}
._1{margin-left:-1.641387pt;}
._0{width:0.950187pt;}
._2{width:2.626560pt;}
._7{width:3.972267pt;}
._8{width:4.887040pt;}
._9{width:6.374400pt;}
._16{width:7.661227pt;}
._e{width:8.605440pt;}
._f{width:9.614720pt;}
._10{width:10.730240pt;}
._12{width:12.323840pt;}
._a{width:14.395520pt;}
._b{width:15.682347pt;}
._2d{width:16.715733pt;}
._17{width:17.829547pt;}
._15{width:19.176320pt;}
._1f{width:20.085333pt;}
._3{width:21.168000pt;}
._1a{width:22.282453pt;}
._1c{width:23.463253pt;}
._19{width:24.594560pt;}
._1e{width:25.603840pt;}
._18{width:26.825600pt;}
._d{width:27.781760pt;}
._c{width:29.003520pt;}
._2f{width:30.024747pt;}
._14{width:31.022720pt;}
._13{width:31.925120pt;}
._24{width:32.999467pt;}
._25{width:34.039253pt;}
._29{width:35.395200pt;}
._11{width:36.600320pt;}
._20{width:37.502720pt;}
._21{width:38.396160pt;}
._27{width:39.377493pt;}
._1d{width:40.558080pt;}
._23{width:41.770880pt;}
._4{width:42.720000pt;}
._41{width:43.824640pt;}
._2b{width:44.727040pt;}
._2a{width:45.683200pt;}
._3d{width:46.745600pt;}
._39{width:48.392320pt;}
._1b{width:49.879680pt;}
._22{width:51.260800pt;}
._30{width:52.913493pt;}
._31{width:54.163413pt;}
._37{width:55.297920pt;}
._36{width:56.307200pt;}
._2c{width:57.582080pt;}
._38{width:59.335040pt;}
._34{width:62.256640pt;}
._35{width:63.850240pt;}
._28{width:65.178240pt;}
._3e{width:69.852800pt;}
._2e{width:70.968320pt;}
._3a{width:75.058560pt;}
._3b{width:76.174080pt;}
._26{width:92.641280pt;}
._5{width:94.128000pt;}
._3c{width:100.237440pt;}
._32{width:136.943360pt;}
._3f{width:193.994240pt;}
._33{width:355.532160pt;}
.fs7{font-size:5.120000pt;}
.fs9{font-size:21.120000pt;}
.fs8{font-size:32.000000pt;}
.fs2{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:72.858149pt;}
.y5b{bottom:-30.880000pt;}
.y7{bottom:-20.160000pt;}
.y6{bottom:-9.440000pt;}
.y5e{bottom:-7.200000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:1.120000pt;}
.y5a{bottom:1.280000pt;}
.y44{bottom:2.880000pt;}
.y9f{bottom:3.200000pt;}
.y46{bottom:4.160000pt;}
.y5d{bottom:5.440000pt;}
.y174{bottom:8.160000pt;}
.y116{bottom:10.720000pt;}
.y9e{bottom:10.880000pt;}
.ya9{bottom:10.920000pt;}
.y58{bottom:14.560000pt;}
.ya2{bottom:18.400000pt;}
.y43{bottom:18.560000pt;}
.ya7{bottom:18.600000pt;}
.ya4{bottom:26.240000pt;}
.ya8{bottom:26.280000pt;}
.ya5{bottom:33.920000pt;}
.yaa{bottom:33.960000pt;}
.y42{bottom:34.240000pt;}
.y57{bottom:38.560000pt;}
.y41{bottom:49.760000pt;}
.y3{bottom:51.680000pt;}
.y40{bottom:65.440000pt;}
.y56{bottom:67.680000pt;}
.y2{bottom:71.200000pt;}
.y3f{bottom:81.120000pt;}
.y55{bottom:86.720000pt;}
.y3e{bottom:96.640000pt;}
.y54{bottom:98.080000pt;}
.y5c{bottom:101.600000pt;}
.y134{bottom:102.240000pt;}
.y109{bottom:105.120000pt;}
.yeb{bottom:106.400000pt;}
.y16e{bottom:108.320000pt;}
.y111{bottom:109.280000pt;}
.y9a{bottom:109.600000pt;}
.y187{bottom:112.320000pt;}
.y3d{bottom:112.360000pt;}
.yb9{bottom:116.960000pt;}
.y108{bottom:120.320000pt;}
.yea{bottom:121.600000pt;}
.y16c{bottom:123.680000pt;}
.y110{bottom:124.640000pt;}
.y99{bottom:124.960000pt;}
.y186{bottom:127.680000pt;}
.y3c{bottom:128.040000pt;}
.yb8{bottom:132.320000pt;}
.y133{bottom:133.440000pt;}
.y51{bottom:135.200000pt;}
.y107{bottom:135.680000pt;}
.ye9{bottom:136.960000pt;}
.y16b{bottom:139.040000pt;}
.y10f{bottom:140.000000pt;}
.y98{bottom:140.320000pt;}
.y185{bottom:143.040000pt;}
.y3b{bottom:143.560000pt;}
.yb7{bottom:147.360000pt;}
.ybc{bottom:147.680000pt;}
.y50{bottom:150.560000pt;}
.y106{bottom:151.040000pt;}
.ye8{bottom:152.320000pt;}
.y16a{bottom:154.400000pt;}
.y10e{bottom:155.360000pt;}
.y97{bottom:155.680000pt;}
.y184{bottom:158.240000pt;}
.y3a{bottom:159.240000pt;}
.yb6{bottom:163.040000pt;}
.y132{bottom:164.800000pt;}
.y4f{bottom:165.760000pt;}
.y105{bottom:166.400000pt;}
.ye7{bottom:167.680000pt;}
.y169{bottom:169.600000pt;}
.y10d{bottom:170.720000pt;}
.y96{bottom:171.040000pt;}
.y183{bottom:173.600000pt;}
.y39{bottom:174.920000pt;}
.yb5{bottom:178.400000pt;}
.y4e{bottom:181.120000pt;}
.y104{bottom:181.760000pt;}
.ye6{bottom:183.040000pt;}
.y168{bottom:184.960000pt;}
.y10c{bottom:186.080000pt;}
.y95{bottom:186.400000pt;}
.y182{bottom:188.986667pt;}
.y38{bottom:190.440000pt;}
.ybb{bottom:193.306667pt;}
.yb4{bottom:193.626667pt;}
.y131{bottom:196.186667pt;}
.y4d{bottom:196.506667pt;}
.y103{bottom:196.986667pt;}
.y28{bottom:197.320000pt;}
.ye5{bottom:198.426667pt;}
.y167{bottom:200.346667pt;}
.y10b{bottom:201.306667pt;}
.y94{bottom:201.626667pt;}
.y181{bottom:204.346667pt;}
.y37{bottom:206.120000pt;}
.yb3{bottom:208.986667pt;}
.y4c{bottom:211.866667pt;}
.y102{bottom:212.346667pt;}
.y27{bottom:213.480000pt;}
.ye4{bottom:213.626667pt;}
.y166{bottom:215.706667pt;}
.y93{bottom:216.986667pt;}
.y180{bottom:219.706667pt;}
.y36{bottom:221.800000pt;}
.yb2{bottom:224.346667pt;}
.y4b{bottom:227.226667pt;}
.y101{bottom:227.706667pt;}
.ye3{bottom:228.986667pt;}
.y26{bottom:229.800000pt;}
.y130{bottom:230.746667pt;}
.y165{bottom:231.066667pt;}
.y92{bottom:232.346667pt;}
.y17f{bottom:235.066667pt;}
.y35{bottom:237.480000pt;}
.yb1{bottom:239.386667pt;}
.yba{bottom:239.706667pt;}
.y4a{bottom:242.586667pt;}
.y100{bottom:243.066667pt;}
.ye2{bottom:244.346667pt;}
.y12f{bottom:245.786667pt;}
.y25{bottom:245.960000pt;}
.y164{bottom:246.426667pt;}
.y91{bottom:247.706667pt;}
.y17e{bottom:249.946667pt;}
.y188{bottom:250.266667pt;}
.y34{bottom:253.000000pt;}
.y49{bottom:257.466667pt;}
.y52{bottom:257.786667pt;}
.yff{bottom:258.426667pt;}
.ye1{bottom:259.706667pt;}
.y24{bottom:259.720000pt;}
.y12d{bottom:261.466667pt;}
.y163{bottom:261.626667pt;}
.y90{bottom:263.066667pt;}
.y17d{bottom:265.306667pt;}
.yb0{bottom:267.866667pt;}
.y33{bottom:268.680000pt;}
.y23{bottom:272.200000pt;}
.y48{bottom:272.826667pt;}
.yfe{bottom:273.786667pt;}
.ye0{bottom:275.066667pt;}
.y12c{bottom:276.666667pt;}
.y162{bottom:276.986667pt;}
.y8f{bottom:278.426667pt;}
.y17c{bottom:280.986667pt;}
.yaf{bottom:283.866667pt;}
.y32{bottom:284.360000pt;}
.y22{bottom:284.680000pt;}
.y47{bottom:285.626667pt;}
.y45{bottom:287.546667pt;}
.yfd{bottom:288.986667pt;}
.ydf{bottom:290.426667pt;}
.y12b{bottom:292.026667pt;}
.y161{bottom:292.346667pt;}
.y16{bottom:292.826667pt;}
.y17b{bottom:293.146667pt;}
.y8e{bottom:293.626667pt;}
.y21{bottom:297.160000pt;}
.yae{bottom:299.866667pt;}
.y31{bottom:299.880000pt;}
.yfc{bottom:304.346667pt;}
.yde{bottom:305.626667pt;}
.y12a{bottom:307.386667pt;}
.y160{bottom:307.706667pt;}
.y8d{bottom:308.986667pt;}
.y20{bottom:309.640000pt;}
.y30{bottom:315.586667pt;}
.yad{bottom:315.866667pt;}
.yfb{bottom:319.706667pt;}
.ydd{bottom:320.986667pt;}
.y1f{bottom:321.986667pt;}
.y129{bottom:322.746667pt;}
.y15f{bottom:323.066667pt;}
.y8c{bottom:324.346667pt;}
.y2f{bottom:331.266667pt;}
.yac{bottom:331.866667pt;}
.y1e{bottom:334.306667pt;}
.yfa{bottom:335.066667pt;}
.ydc{bottom:336.026667pt;}
.yee{bottom:336.346667pt;}
.y128{bottom:338.106667pt;}
.y15e{bottom:338.426667pt;}
.y8b{bottom:339.706667pt;}
.y1d{bottom:346.466667pt;}
.y2e{bottom:346.786667pt;}
.yf9{bottom:350.106667pt;}
.y10a{bottom:350.426667pt;}
.ydb{bottom:351.706667pt;}
.y127{bottom:353.466667pt;}
.y15d{bottom:353.626667pt;}
.y8a{bottom:355.066667pt;}
.y1c{bottom:359.106667pt;}
.y2d{bottom:362.466667pt;}
.yf8{bottom:365.466667pt;}
.yab{bottom:366.106667pt;}
.yda{bottom:367.066667pt;}
.y126{bottom:368.666667pt;}
.y15c{bottom:368.986667pt;}
.y89{bottom:370.426667pt;}
.y1b{bottom:371.586667pt;}
.y2c{bottom:378.146667pt;}
.yf7{bottom:380.986667pt;}
.yd9{bottom:382.426667pt;}
.y125{bottom:384.026667pt;}
.y1a{bottom:384.066667pt;}
.y15b{bottom:384.346667pt;}
.y88{bottom:385.626667pt;}
.yf6{bottom:393.146667pt;}
.y2b{bottom:393.826667pt;}
.ya6{bottom:394.426667pt;}
.y19{bottom:397.026667pt;}
.yd8{bottom:397.626667pt;}
.y124{bottom:399.426667pt;}
.y15a{bottom:399.746667pt;}
.y87{bottom:401.026667pt;}
.y2a{bottom:409.346667pt;}
.y18{bottom:413.026667pt;}
.y123{bottom:414.786667pt;}
.y159{bottom:415.106667pt;}
.y86{bottom:416.386667pt;}
.y29{bottom:427.746667pt;}
.y17{bottom:428.226667pt;}
.yd7{bottom:428.386667pt;}
.y122{bottom:430.146667pt;}
.y158{bottom:430.306667pt;}
.y85{bottom:431.746667pt;}
.ya3{bottom:441.186667pt;}
.yd6{bottom:443.746667pt;}
.y121{bottom:445.346667pt;}
.y157{bottom:445.666667pt;}
.y84{bottom:447.106667pt;}
.yd5{bottom:459.106667pt;}
.y120{bottom:460.706667pt;}
.y156{bottom:461.026667pt;}
.y83{bottom:462.306667pt;}
.yd4{bottom:474.306667pt;}
.y11f{bottom:476.066667pt;}
.y155{bottom:476.386667pt;}
.y82{bottom:477.666667pt;}
.ya1{bottom:487.906667pt;}
.yed{bottom:489.346667pt;}
.yd3{bottom:489.666667pt;}
.y11e{bottom:491.426667pt;}
.y154{bottom:491.746667pt;}
.y81{bottom:493.026667pt;}
.yd2{bottom:505.026667pt;}
.y11d{bottom:506.786667pt;}
.y153{bottom:507.106667pt;}
.y80{bottom:508.386667pt;}
.ya0{bottom:519.106667pt;}
.yd1{bottom:520.066667pt;}
.yec{bottom:520.386667pt;}
.y11c{bottom:521.826667pt;}
.y12e{bottom:522.146667pt;}
.y152{bottom:522.306667pt;}
.y7f{bottom:523.746667pt;}
.yd0{bottom:535.746667pt;}
.y11b{bottom:537.026667pt;}
.y151{bottom:537.666667pt;}
.y7e{bottom:539.106667pt;}
.y9d{bottom:550.466667pt;}
.ycf{bottom:551.106667pt;}
.y11a{bottom:552.706667pt;}
.y150{bottom:553.026667pt;}
.y7d{bottom:554.306667pt;}
.y119{bottom:564.866667pt;}
.yce{bottom:566.306667pt;}
.y14f{bottom:568.386667pt;}
.y7c{bottom:569.666667pt;}
.ycd{bottom:581.666667pt;}
.y17a{bottom:582.306667pt;}
.y14e{bottom:583.746667pt;}
.y7b{bottom:585.026667pt;}
.ycc{bottom:597.026667pt;}
.y14d{bottom:599.106667pt;}
.y9c{bottom:600.066667pt;}
.y7a{bottom:600.386667pt;}
.y179{bottom:610.493333pt;}
.ycb{bottom:612.413333pt;}
.y14c{bottom:614.333333pt;}
.y79{bottom:615.773333pt;}
.y178{bottom:626.493333pt;}
.yca{bottom:627.773333pt;}
.y14b{bottom:629.693333pt;}
.y78{bottom:631.133333pt;}
.y177{bottom:642.493333pt;}
.yc9{bottom:643.133333pt;}
.y14a{bottom:645.053333pt;}
.y77{bottom:646.333333pt;}
.yc8{bottom:658.333333pt;}
.y149{bottom:660.413333pt;}
.y76{bottom:661.693333pt;}
.yc7{bottom:673.693333pt;}
.y148{bottom:675.773333pt;}
.y9b{bottom:676.733333pt;}
.y75{bottom:677.053333pt;}
.yc6{bottom:689.053333pt;}
.y147{bottom:691.133333pt;}
.y74{bottom:692.413333pt;}
.yc5{bottom:704.413333pt;}
.y176{bottom:705.213333pt;}
.y146{bottom:706.333333pt;}
.y73{bottom:707.773333pt;}
.yc4{bottom:719.773333pt;}
.y175{bottom:721.213333pt;}
.y145{bottom:721.693333pt;}
.y72{bottom:722.973333pt;}
.yc3{bottom:734.973333pt;}
.y144{bottom:737.053333pt;}
.y173{bottom:737.213333pt;}
.y15{bottom:738.013333pt;}
.y71{bottom:738.333333pt;}
.yc2{bottom:750.333333pt;}
.y143{bottom:752.413333pt;}
.y18b{bottom:753.373333pt;}
.y70{bottom:753.693333pt;}
.y14{bottom:759.933333pt;}
.y142{bottom:767.773333pt;}
.y6f{bottom:769.053333pt;}
.y13{bottom:777.853333pt;}
.yc1{bottom:778.493333pt;}
.y172{bottom:781.693333pt;}
.y141{bottom:782.973333pt;}
.y6e{bottom:784.413333pt;}
.y12{bottom:797.213333pt;}
.y140{bottom:798.333333pt;}
.y6d{bottom:799.773333pt;}
.yc0{bottom:809.853333pt;}
.y13f{bottom:813.693333pt;}
.y6c{bottom:814.973333pt;}
.y11{bottom:817.573333pt;}
.y171{bottom:825.893333pt;}
.yf5{bottom:827.013333pt;}
.y13e{bottom:829.093333pt;}
.y18a{bottom:830.053333pt;}
.y6b{bottom:830.373333pt;}
.y10{bottom:840.613333pt;}
.ybf{bottom:841.253333pt;}
.y170{bottom:841.893333pt;}
.yf4{bottom:842.373333pt;}
.y13d{bottom:844.453333pt;}
.y6a{bottom:845.733333pt;}
.y118{bottom:856.773333pt;}
.ybe{bottom:857.253333pt;}
.y13c{bottom:859.813333pt;}
.y69{bottom:861.093333pt;}
.yf{bottom:863.493333pt;}
.yf3{bottom:870.533333pt;}
.y13b{bottom:875.013333pt;}
.y16f{bottom:876.133333pt;}
.y68{bottom:876.453333pt;}
.ye{bottom:883.333333pt;}
.y117{bottom:885.253333pt;}
.yf2{bottom:886.533333pt;}
.y13a{bottom:890.373333pt;}
.y189{bottom:891.493333pt;}
.y67{bottom:891.813333pt;}
.yd{bottom:904.293333pt;}
.y139{bottom:905.733333pt;}
.ybd{bottom:906.693333pt;}
.y66{bottom:907.013333pt;}
.y53{bottom:911.333333pt;}
.y115{bottom:916.613333pt;}
.yf1{bottom:917.893333pt;}
.y138{bottom:921.093333pt;}
.y65{bottom:922.373333pt;}
.yc{bottom:925.413333pt;}
.yf0{bottom:933.893333pt;}
.y137{bottom:936.453333pt;}
.y64{bottom:937.733333pt;}
.yb{bottom:946.533333pt;}
.y114{bottom:947.813333pt;}
.y136{bottom:951.813333pt;}
.y63{bottom:953.093333pt;}
.y113{bottom:963.813333pt;}
.y135{bottom:966.693333pt;}
.y16d{bottom:967.013333pt;}
.ya{bottom:967.813333pt;}
.yef{bottom:968.133333pt;}
.y62{bottom:968.453333pt;}
.y61{bottom:983.813333pt;}
.y9{bottom:988.933333pt;}
.y112{bottom:995.173333pt;}
.y60{bottom:999.013333pt;}
.y8{bottom:1010.053333pt;}
.y59{bottom:1013.413333pt;}
.y5f{bottom:1014.373333pt;}
.y4{bottom:1046.080000pt;}
.y1{bottom:1058.880000pt;}
.h12{height:5.025000pt;}
.h13{height:5.160000pt;}
.h14{height:5.262553pt;}
.h11{height:5.280000pt;}
.h4{height:9.760000pt;}
.h1c{height:9.920000pt;}
.h1d{height:15.360000pt;}
.h27{height:15.392000pt;}
.h19{height:21.285000pt;}
.h28{height:25.280000pt;}
.h22{height:30.560000pt;}
.h21{height:30.720000pt;}
.h25{height:30.752000pt;}
.h18{height:32.250000pt;}
.h1f{height:36.138125pt;}
.he{height:36.305625pt;}
.h6{height:36.431250pt;}
.h2b{height:37.090625pt;}
.h5{height:37.410000pt;}
.h10{height:40.640625pt;}
.h1e{height:42.063437pt;}
.h3{height:42.649687pt;}
.h1b{height:43.215000pt;}
.hf{height:44.638750pt;}
.hd{height:44.975625pt;}
.h23{height:45.920000pt;}
.h24{height:46.112000pt;}
.h2a{height:52.108438pt;}
.hb{height:52.134375pt;}
.h15{height:53.535000pt;}
.h16{height:54.598989pt;}
.h20{height:55.298750pt;}
.ha{height:59.340000pt;}
.h1a{height:64.500000pt;}
.h29{height:66.625000pt;}
.h2{height:68.748750pt;}
.h8{height:69.660000pt;}
.h7{height:70.773750pt;}
.h9{height:75.846471pt;}
.h17{height:112.000000pt;}
.h26{height:116.038989pt;}
.hc{height:440.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:36.000000pt;}
.w18{width:36.640000pt;}
.w1c{width:38.080000pt;}
.w17{width:38.720000pt;}
.w11{width:38.880000pt;}
.wb{width:39.360000pt;}
.w2b{width:76.640000pt;}
.w29{width:76.960000pt;}
.w13{width:79.200000pt;}
.wd{width:80.000000pt;}
.w14{width:98.272000pt;}
.we{width:98.912000pt;}
.w25{width:110.880000pt;}
.w21{width:111.200000pt;}
.w1e{width:115.872000pt;}
.w19{width:116.512000pt;}
.w12{width:120.192000pt;}
.wc{width:120.832000pt;}
.w15{width:121.152000pt;}
.wf{width:121.792000pt;}
.w33{width:139.226667pt;}
.w16{width:139.360000pt;}
.w31{width:139.546667pt;}
.w10{width:139.680000pt;}
.w26{width:139.866667pt;}
.w22{width:140.506667pt;}
.w1f{width:150.746667pt;}
.w1a{width:151.546667pt;}
.w28{width:156.186667pt;}
.w24{width:156.506667pt;}
.w3{width:183.066667pt;}
.w9{width:183.226667pt;}
.w4{width:188.546667pt;}
.w6{width:189.026667pt;}
.w27{width:191.706667pt;}
.w23{width:192.346667pt;}
.w37{width:214.586667pt;}
.w35{width:214.906667pt;}
.w20{width:215.866667pt;}
.w1b{width:216.186667pt;}
.w2f{width:219.866667pt;}
.w2d{width:220.186667pt;}
.w3b{width:263.066667pt;}
.w39{width:263.386667pt;}
.w40{width:296.546667pt;}
.w3e{width:296.866667pt;}
.w3f{width:308.226667pt;}
.w3d{width:308.546667pt;}
.w3c{width:341.693333pt;}
.w3a{width:342.013333pt;}
.w30{width:380.066667pt;}
.w2e{width:380.386667pt;}
.w38{width:390.173333pt;}
.w36{width:390.493333pt;}
.w5{width:458.626667pt;}
.w7{width:459.106667pt;}
.w34{width:460.706667pt;}
.w32{width:461.026667pt;}
.w2c{width:523.133333pt;}
.w2a{width:523.613333pt;}
.w8{width:556.253333pt;}
.wa{width:639.493333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x1d{left:8.160000pt;}
.x10{left:9.600000pt;}
.x14{left:10.880000pt;}
.x3a{left:12.320000pt;}
.x1f{left:13.440000pt;}
.x18{left:14.720000pt;}
.x1a{left:15.840000pt;}
.x15{left:17.280000pt;}
.xa{left:18.400000pt;}
.x4b{left:19.680000pt;}
.x31{left:20.640000pt;}
.x24{left:22.880000pt;}
.x1c{left:24.480000pt;}
.x21{left:25.440000pt;}
.x22{left:26.560000pt;}
.x17{left:28.640000pt;}
.x2a{left:30.400000pt;}
.x39{left:32.000000pt;}
.x1e{left:32.960000pt;}
.x23{left:33.920000pt;}
.x3{left:36.640000pt;}
.x32{left:37.914667pt;}
.x20{left:40.000000pt;}
.x41{left:41.120000pt;}
.x34{left:43.880000pt;}
.x55{left:44.794667pt;}
.x2c{left:46.080000pt;}
.x7{left:47.999988pt;}
.x60{left:50.074667pt;}
.x36{left:51.226667pt;}
.x38{left:52.840000pt;}
.x5b{left:53.920000pt;}
.x3c{left:55.080000pt;}
.xe{left:56.320000pt;}
.x3b{left:59.066667pt;}
.x5a{left:61.754667pt;}
.x2b{left:68.506667pt;}
.x65{left:73.760000pt;}
.x5f{left:79.226667pt;}
.x64{left:80.634667pt;}
.x3f{left:82.280000pt;}
.x59{left:84.666667pt;}
.x5e{left:90.394667pt;}
.x4{left:91.546667pt;}
.x4d{left:94.234667pt;}
.x1{left:96.031988pt;}
.x44{left:99.071988pt;}
.x25{left:118.751988pt;}
.x2d{left:120.031988pt;}
.x63{left:128.960000pt;}
.xc{left:135.066667pt;}
.x12{left:136.026667pt;}
.xf{left:140.360000pt;}
.x61{left:142.114667pt;}
.x2e{left:144.026655pt;}
.x57{left:148.320000pt;}
.x5d{left:151.546667pt;}
.x4a{left:154.906667pt;}
.x4e{left:156.826667pt;}
.x4c{left:158.586667pt;}
.x49{left:171.066667pt;}
.x3d{left:173.626667pt;}
.x26{left:174.906667pt;}
.x30{left:187.226655pt;}
.x54{left:190.746667pt;}
.x53{left:196.186667pt;}
.x56{left:202.586667pt;}
.x33{left:207.866667pt;}
.x40{left:208.840000pt;}
.x27{left:211.546667pt;}
.x43{left:212.666655pt;}
.x52{left:236.226667pt;}
.x9{left:237.506667pt;}
.x3e{left:241.186667pt;}
.x13{left:256.866667pt;}
.x47{left:263.906655pt;}
.xd{left:278.146667pt;}
.x51{left:281.026655pt;}
.x50{left:282.786655pt;}
.x67{left:288.546655pt;}
.x2{left:307.426667pt;}
.x58{left:311.266667pt;}
.x48{left:316.866667pt;}
.x28{left:328.066667pt;}
.x16{left:336.866667pt;}
.x35{left:348.386667pt;}
.x5c{left:359.746667pt;}
.x6{left:396.893322pt;}
.x46{left:398.493322pt;}
.x62{left:404.893333pt;}
.x5{left:412.413322pt;}
.xb{left:420.413322pt;}
.x45{left:423.613322pt;}
.x19{left:435.773333pt;}
.x11{left:443.293322pt;}
.x2f{left:468.573322pt;}
.x29{left:479.613333pt;}
.x37{left:540.733333pt;}
.x1b{left:557.573333pt;}
.x42{left:569.253322pt;}
.x4f{left:615.493322pt;}
.x66{left:639.333322pt;}
}




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