
    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_f12ca0b9f7c51e2f636fb431.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984027;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_7f617d3271b4402afc81a9d6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.859000;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_8d836e280465c4c63a9b691d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.934082;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_d846952d09b49946506a584f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978000;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_46f4279cbcf071f41f66d7b4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bcff3f974ea97603e5288729.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_2ea4aaf1000168ff57d5322a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_5c4fa596d23867e21ac1dda5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.929688;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_82ca5a80e3fe2f2389db8a00.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978000;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_90b379a1d5e95f05cdf4ea9d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.948242;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_71a6af98cd943307da80dde8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ef09f1a7473373715714615e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.066406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,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);}
.v2{vertical-align:-28.068434px;}
.v7{vertical-align:-25.193711px;}
.v3{vertical-align:-22.350177px;}
.v6{vertical-align:-14.399228px;}
.vf{vertical-align:-11.534458px;}
.vb{vertical-align:-2.890736px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.468890px;}
.vd{vertical-align:8.633090px;}
.v10{vertical-align:11.534458px;}
.vc{vertical-align:16.537012px;}
.v11{vertical-align:20.155359px;}
.v1{vertical-align:28.068434px;}
.v12{vertical-align:37.441935px;}
.ve{vertical-align:39.603907px;}
.v4{vertical-align:53.317456px;}
.v5{vertical-align:56.916000px;}
.va{vertical-align:60.507437px;}
.v8{vertical-align:65.577542px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.031599px;}
.ls3{letter-spacing:0.031744px;}
.ls1{letter-spacing:0.063358px;}
.ls0{letter-spacing:0.063382px;}
.ls4{letter-spacing:0.171366px;}
.ls19{letter-spacing:3.801882px;}
.ls7{letter-spacing:30.715834px;}
.ls6{letter-spacing:30.733300px;}
.lsb{letter-spacing:30.733411px;}
.lsc{letter-spacing:35.622597px;}
.lsd{letter-spacing:35.650287px;}
.lse{letter-spacing:35.652033px;}
.ls10{letter-spacing:35.657045px;}
.lsf{letter-spacing:35.664835px;}
.ls15{letter-spacing:42.655729px;}
.lsa{letter-spacing:61.016895px;}
.ls8{letter-spacing:61.046256px;}
.ls9{letter-spacing:61.085206px;}
.ls18{letter-spacing:67.507334px;}
.ls12{letter-spacing:84.809811px;}
.ls11{letter-spacing:84.809880px;}
.ls16{letter-spacing:84.823588px;}
.ls13{letter-spacing:84.854155px;}
.ls14{letter-spacing:84.862372px;}
.ls17{letter-spacing:88.596120px;}
.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;}
}
.ws2{word-spacing:-95.039814px;}
.ws1a{word-spacing:-84.240136px;}
.ws29{word-spacing:-73.440459px;}
.ws18{word-spacing:-67.352368px;}
.ws2d{word-spacing:-55.440506px;}
.ws0{word-spacing:-46.837440px;}
.ws31{word-spacing:-43.112573px;}
.ws33{word-spacing:-40.859653px;}
.ws2f{word-spacing:-40.582450px;}
.ws30{word-spacing:-40.320368px;}
.ws4{word-spacing:-35.028000px;}
.ws1c{word-spacing:-29.223360px;}
.ws5{word-spacing:-26.421120px;}
.ws15{word-spacing:-23.418720px;}
.ws11{word-spacing:-21.478998px;}
.ws2e{word-spacing:-21.460344px;}
.wse{word-spacing:-20.416320px;}
.ws19{word-spacing:-19.038271px;}
.ws27{word-spacing:-18.360115px;}
.ws1{word-spacing:-17.614080px;}
.ws10{word-spacing:-16.012800px;}
.ws22{word-spacing:-15.412320px;}
.ws21{word-spacing:-14.611680px;}
.ws1f{word-spacing:-14.559311px;}
.ws2c{word-spacing:-14.319443px;}
.ws28{word-spacing:-12.529554px;}
.ws20{word-spacing:-11.567392px;}
.ws12{word-spacing:-1.516320px;}
.ws1e{word-spacing:-1.330560px;}
.wsc{word-spacing:-1.140480px;}
.ws26{word-spacing:-0.336960px;}
.ws7{word-spacing:-0.210240px;}
.ws13{word-spacing:-0.084147px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:0.105120px;}
.ws17{word-spacing:0.589681px;}
.ws14{word-spacing:0.842462px;}
.ws9{word-spacing:1.805760px;}
.ws8{word-spacing:2.566288px;}
.ws32{word-spacing:6.473130px;}
.wsb{word-spacing:8.553600px;}
.ws25{word-spacing:15.078960px;}
.ws24{word-spacing:16.511040px;}
.wsa{word-spacing:18.627840px;}
.ws16{word-spacing:22.913280px;}
.ws23{word-spacing:27.462240px;}
.ws1d{word-spacing:99.338397px;}
.ws2b{word-spacing:165.143343px;}
.wsf{word-spacing:449.526262px;}
.ws2a{word-spacing:577.628946px;}
.wsd{word-spacing:589.062193px;}
.ws1b{word-spacing:908.579911px;}
._19{margin-left:-2958.984087px;}
._17{margin-left:-2661.603991px;}
._1a{margin-left:-2495.128353px;}
._18{margin-left:-2198.689890px;}
._a{margin-left:-1148.278297px;}
._e{margin-left:-639.550057px;}
._1d{margin-left:-16.174080px;}
._d{margin-left:-13.356000px;}
._27{margin-left:-11.975760px;}
._c{margin-left:-10.454400px;}
._15{margin-left:-9.218862px;}
._8{margin-left:-7.888320px;}
._7{margin-left:-6.727682px;}
._6{margin-left:-5.417280px;}
._29{margin-left:-4.043520px;}
._1{margin-left:-3.032640px;}
._2{margin-left:-2.021760px;}
._3{margin-left:-1.010880px;}
._0{width:1.010880px;}
._5{width:2.190240px;}
._4{width:3.538080px;}
._1c{width:7.444800px;}
._2b{width:9.348309px;}
._25{width:12.853440px;}
._2e{width:20.346666px;}
._2d{width:21.524411px;}
._b{width:25.021440px;}
._1b{width:27.928800px;}
._10{width:29.522880px;}
._13{width:33.765120px;}
._12{width:36.141120px;}
._2a{width:39.761280px;}
._28{width:41.361840px;}
._11{width:46.362240px;}
._26{width:62.346240px;}
._9{width:113.319360px;}
._16{width:184.131744px;}
._23{width:187.328649px;}
._2f{width:278.730519px;}
._2c{width:476.671483px;}
._24{width:587.798424px;}
._f{width:601.181254px;}
._22{width:689.195578px;}
._21{width:837.362803px;}
._14{width:1047.038311px;}
._20{width:1185.688796px;}
._1e{width:1328.745606px;}
._1f{width:1824.462720px;}
.fc14{color:rgb(146,208,80);}
.fc12{color:rgb(34,34,34);}
.fc11{color:rgb(133,64,6);}
.fc10{color:rgb(49,124,153);}
.fcd{color:rgb(248,145,52);}
.fc13{color:rgb(182,210,231);}
.fc0{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,31,31);}
.fc2{color:rgb(0,91,127);}
.fc5{color:rgb(192,0,0);}
.fc7{color:rgb(222,172,67);}
.fce{color:rgb(71,120,146);}
.fc8{color:rgb(150,90,80);}
.fc6{color:rgb(119,137,53);}
.fc9{color:rgb(0,0,255);}
.fca{color:transparent;}
.fcf{color:rgb(40,118,148);}
.fc3{color:rgb(23,156,125);}
.fcc{color:rgb(58,151,211);}
.fcb{color:rgb(68,114,196);}
.fs10{font-size:31.680000px;}
.fs1a{font-size:40.320368px;}
.fs13{font-size:41.759538px;}
.fs15{font-size:41.760000px;}
.fs14{font-size:47.520000px;}
.fs1b{font-size:47.520644px;}
.fs5{font-size:48.960000px;}
.fs9{font-size:52.560000px;}
.fs12{font-size:52.560690px;}
.fsf{font-size:55.440000px;}
.fs18{font-size:55.440506px;}
.fsb{font-size:57.600000px;}
.fs1c{font-size:57.600736px;}
.fs7{font-size:58.592964px;}
.fs3{font-size:63.360000px;}
.fs19{font-size:63.360367px;}
.fs6{font-size:73.440000px;}
.fs17{font-size:73.440459px;}
.fs11{font-size:79.200000px;}
.fse{font-size:84.240000px;}
.fsd{font-size:84.240136px;}
.fs4{font-size:95.039814px;}
.fs2{font-size:95.040000px;}
.fsa{font-size:105.120000px;}
.fs8{font-size:126.000000px;}
.fs0{font-size:168.480000px;}
.fs1{font-size:218.880000px;}
.fs16{font-size:231.840000px;}
.fsc{font-size:315.360000px;}
.y0{bottom:0.000000px;}
.ya2{bottom:5.940000px;}
.yea{bottom:106.199478px;}
.yc{bottom:115.738890px;}
.ye{bottom:122.043042px;}
.y109{bottom:122.754919px;}
.ye9{bottom:131.576752px;}
.yb{bottom:132.301607px;}
.y108{bottom:139.314488px;}
.y5f{bottom:139.496334px;}
.y54{bottom:141.295897px;}
.yee{bottom:153.715351px;}
.ye8{bottom:156.785575px;}
.ya{bottom:166.850685px;}
.y5e{bottom:177.486442px;}
.y53{bottom:179.286006px;}
.y107{bottom:180.175882px;}
.y8c{bottom:181.629336px;}
.ye7{bottom:182.162914px;}
.y68{bottom:183.058595px;}
.y10b{bottom:184.491989px;}
.y83{bottom:187.200353px;}
.y45{bottom:190.254227px;}
.y11c{bottom:193.856138px;}
.y10a{bottom:198.530041px;}
.ye3{bottom:199.449336px;}
.y59{bottom:203.220162px;}
.y4e{bottom:203.222914px;}
.y70{bottom:211.495673px;}
.y5d{bottom:215.290252px;}
.y52{bottom:217.080365px;}
.y67{bottom:217.803950px;}
.yb5{bottom:221.940388px;}
.y31{bottom:222.288133px;}
.yf2{bottom:223.195500px;}
.y11f{bottom:226.436699px;}
.y136{bottom:228.605077px;}
.y6b{bottom:229.674268px;}
.y9e{bottom:229.842720px;}
.y66{bottom:234.366667px;}
.y9c{bottom:236.701788px;}
.y75{bottom:238.318929px;}
.y6f{bottom:239.940908px;}
.y4d{bottom:241.023862px;}
.y9{bottom:243.721448px;}
.y1e{bottom:244.617119px;}
.y44{bottom:245.163625px;}
.y11b{bottom:248.577159px;}
.y111{bottom:249.113716px;}
.y19{bottom:249.297842px;}
.yaa{bottom:252.719288px;}
.y5c{bottom:253.075766px;}
.y51{bottom:254.875330px;}
.y8d{bottom:254.875337px;}
.y135{bottom:254.878233px;}
.y9b{bottom:257.043625px;}
.yb6{bottom:263.525777px;}
.y8{bottom:265.863640px;}
.y15{bottom:270.360183px;}
.y1d{bottom:270.895673px;}
.yd4{bottom:271.432345px;}
.y18{bottom:275.576396px;}
.yda{bottom:277.374999px;}
.y43{bottom:277.738565px;}
.y4c{bottom:278.999786px;}
.y9d{bottom:280.260365px;}
.y9a{bottom:280.625432px;}
.ya9{bottom:281.160010px;}
.y110{bottom:283.314354px;}
.y7{bottom:287.822166px;}
.yd9{bottom:289.976022px;}
.y5b{bottom:291.061983px;}
.y50{bottom:292.861547px;}
.yab{bottom:295.914986px;}
.y6e{bottom:296.651541px;}
.y1c{bottom:297.174264px;}
.y1b{bottom:297.720733px;}
.ydb{bottom:300.783806px;}
.y17{bottom:301.854986px;}
.yd3{bottom:303.653198px;}
.yd8{bottom:305.635163px;}
.y42{bottom:306.179288px;}
.y7d{bottom:313.925035px;}
.y65{bottom:314.281456px;}
.y106{bottom:314.996491px;}
.y11a{bottom:316.253334px;}
.yed{bottom:316.441466px;}
.y10f{bottom:317.514992px;}
.y3c{bottom:318.425355px;}
.y4b{bottom:320.400040px;}
.yd7{bottom:321.482000px;}
.y6{bottom:324.712095px;}
.y6d{bottom:325.084627px;}
.y14{bottom:327.056903px;}
.y5a{bottom:328.863110px;}
.ya8{bottom:329.036396px;}
.y4f{bottom:330.662674px;}
.y134{bottom:332.100388px;}
.yf7{bottom:335.690219px;}
.y7c{bottom:342.359338px;}
.y64{bottom:342.718982px;}
.y114{bottom:343.616833px;}
.yec{bottom:344.876852px;}
.y41{bottom:344.884348px;}
.y118{bottom:349.738501px;}
.y2e{bottom:351.352803px;}
.yde{bottom:351.352891px;}
.y10e{bottom:351.715631px;}
.y3b{bottom:352.626672px;}
.y5{bottom:353.342902px;}
.y133{bottom:358.373544px;}
.y113{bottom:363.774986px;}
.yf5{bottom:364.676900px;}
.ye6{bottom:371.339991px;}
.yef{bottom:373.499895px;}
.y4a{bottom:378.900020px;}
.y30{bottom:380.362357px;}
.ye0{bottom:380.874776px;}
.y40{bottom:381.427203px;}
.y6c{bottom:381.955364px;}
.yd6{bottom:382.140010px;}
.y13{bottom:383.939253px;}
.y132{bottom:384.665077px;}
.y116{bottom:385.013650px;}
.y10d{bottom:385.921084px;}
.y119{bottom:386.636556px;}
.y3a{bottom:386.816412px;}
.yf4{bottom:392.030822px;}
.yca{bottom:394.198755px;}
.yd5{bottom:396.360372px;}
.ydf{bottom:396.721613px;}
.yfe{bottom:396.722100px;}
.ycd{bottom:398.876592px;}
.y7b{bottom:399.056058px;}
.yd0{bottom:399.423994px;}
.ycb{bottom:401.751349px;}
.yd2{bottom:401.754255px;}
.y115{bottom:404.817465px;}
.y4{bottom:408.051355px;}
.ye5{bottom:409.139991px;}
.y97{bottom:409.671388px;}
.yc9{bottom:409.861613px;}
.yaf{bottom:410.580733px;}
.y131{bottom:410.938233px;}
.ycf{bottom:411.664612px;}
.ycc{bottom:414.723429px;}
.y99{bottom:416.164348px;}
.y94{bottom:416.877119px;}
.yf6{bottom:417.054195px;}
.yd1{bottom:417.601092px;}
.y3e{bottom:418.492818px;}
.y10c{bottom:420.120779px;}
.y117{bottom:420.654456px;}
.y39{bottom:421.017765px;}
.y112{bottom:422.275743px;}
.ydd{bottom:423.002516px;}
.yce{bottom:424.265242px;}
.yc8{bottom:425.695337px;}
.y95{bottom:427.680010px;}
.y96{bottom:431.648283px;}
.yfd{bottom:434.523227px;}
.y98{bottom:435.061456px;}
.ydc{bottom:435.603604px;}
.y93{bottom:435.774227px;}
.y130{bottom:437.211360px;}
.y12{bottom:440.635973px;}
.yf3{bottom:443.870969px;}
.y6a{bottom:451.083601px;}
.y38{bottom:455.219117px;}
.y7a{bottom:455.938407px;}
.y80{bottom:455.943602px;}
.y36{bottom:456.651372px;}
.y3{bottom:457.206494px;}
.y82{bottom:457.572990px;}
.y3f{bottom:459.360010px;}
.y69{bottom:460.619312px;}
.yc7{bottom:462.050301px;}
.y12f{bottom:463.502894px;}
.ya7{bottom:466.202902px;}
.y7e{bottom:471.422521px;}
.y63{bottom:471.786115px;}
.yfc{bottom:472.499151px;}
.y104{bottom:477.358932px;}
.yb0{bottom:479.516766px;}
.y105{bottom:482.399596px;}
.yc6{bottom:487.259123px;}
.y7f{bottom:487.427031px;}
.y81{bottom:489.056419px;}
.y37{bottom:489.420434px;}
.y12e{bottom:489.776049px;}
.ya6{bottom:494.643625px;}
.y2d{bottom:496.260010px;}
.y3d{bottom:496.972095px;}
.y11{bottom:497.518322px;}
.ye4{bottom:504.184320px;}
.y74{bottom:505.430649px;}
.y72{bottom:506.689926px;}
.y2{bottom:507.582010px;}
.y92{bottom:507.600063px;}
.y8b{bottom:508.135684px;}
.yeb{bottom:508.504982px;}
.yfb{bottom:510.300246px;}
.yc5{bottom:510.303206px;}
.y88{bottom:515.520358px;}
.y12d{bottom:516.067583px;}
.y85{bottom:516.965766px;}
.yb2{bottom:518.403625px;}
.yae{bottom:519.116396px;}
.y49{bottom:529.212255px;}
.y2f{bottom:529.369939px;}
.yf0{bottom:530.098789px;}
.y86{bottom:532.812602px;}
.y73{bottom:533.871372px;}
.y71{bottom:535.130649px;}
.y103{bottom:535.495109px;}
.y91{bottom:535.861398px;}
.y8a{bottom:539.829358px;}
.y47{bottom:540.001456px;}
.y35{bottom:540.896462px;}
.y12c{bottom:542.340738px;}
.y124{bottom:545.755699px;}
.yb1{bottom:546.844348px;}
.y87{bottom:547.030092px;}
.yb3{bottom:547.200733px;}
.yad{bottom:547.557119px;}
.yfa{bottom:548.101373px;}
.y102{bottom:548.280104px;}
.y84{bottom:548.449194px;}
.y10{bottom:554.400671px;}
.y1{bottom:558.168139px;}
.y90{bottom:564.296784px;}
.y46{bottom:566.280010px;}
.y34{bottom:567.185556px;}
.y127{bottom:570.065770px;}
.y89{bottom:571.312807px;}
.y123{bottom:572.047205px;}
.ye2{bottom:573.122902px;}
.yac{bottom:575.997842px;}
.yb7{bottom:576.187926px;}
.y48{bottom:580.153518px;}
.yf9{bottom:586.077297px;}
.y11e{bottom:588.593306px;}
.y79{bottom:589.683607px;}
.y8f{bottom:592.748649px;}
.y33{bottom:593.463037px;}
.y122{bottom:598.320360px;}
.y24{bottom:599.403037px;}
.y1f{bottom:599.577071px;}
.y62{bottom:604.264085px;}
.y11d{bottom:606.059152px;}
.yf{bottom:611.097392px;}
.y78{bottom:617.221456px;}
.y32{bottom:619.740010px;}
.y8e{bottom:621.179133px;}
.yf8{bottom:623.878424px;}
.y121{bottom:624.593544px;}
.y1a{bottom:626.040181px;}
.yb4{bottom:626.226499px;}
.ye1{bottom:626.582884px;}
.y55{bottom:631.073522px;}
.y26{bottom:637.372088px;}
.yff{bottom:642.420029px;}
.y77{bottom:645.662179px;}
.y29{bottom:647.818933px;}
.y25{bottom:650.334244px;}
.y120{bottom:650.885049px;}
.y101{bottom:659.337733px;}
.ya5{bottom:667.069926px;}
.yf1{bottom:671.215284px;}
.ybd{bottom:671.750649px;}
.y58{bottom:672.487203px;}
.y28{bottom:674.092088px;}
.y76{bottom:674.459288px;}
.y23{bottom:674.815691px;}
.y100{bottom:675.179085px;}
.yc2{bottom:683.820733px;}
.ya4{bottom:687.408499px;}
.ybb{bottom:687.954968px;}
.yb8{bottom:691.376414px;}
.ya3{bottom:693.348499px;}
.y16{bottom:694.802521px;}
.yc4{bottom:696.769926px;}
.yc0{bottom:700.025053px;}
.y27{bottom:700.383608px;}
.y57{bottom:700.927926px;}
.y22{bottom:701.094245px;}
.y2c{bottom:702.187203px;}
.ybf{bottom:704.872095px;}
.ya1{bottom:713.710818px;}
.ya0{bottom:719.650818px;}
.yc3{bottom:725.210649px;}
.y61{bottom:726.469926px;}
.y21{bottom:727.372818px;}
.y56{bottom:729.368649px;}
.yd{bottom:729.369015px;}
.y2b{bottom:730.627926px;}
.ybe{bottom:733.312818px;}
.yba{bottom:736.924330px;}
.y129{bottom:742.317855px;}
.y12b{bottom:742.685049px;}
.y9f{bottom:745.929372px;}
.y20{bottom:753.651372px;}
.y60{bottom:754.910649px;}
.y126{bottom:757.437131px;}
.y2a{bottom:759.068649px;}
.ybc{bottom:765.911532px;}
.y125{bottom:767.162890px;}
.y128{bottom:768.591010px;}
.y12a{bottom:768.958205px;}
.yb9{bottom:774.536414px;}
.yc1{bottom:777.957851px;}
.h35{height:24.140160px;}
.h45{height:27.894235px;}
.h46{height:28.084319px;}
.h4b{height:30.524428px;}
.h4e{height:31.821120px;}
.h57{height:33.980935px;}
.h4d{height:36.210240px;}
.h6{height:37.307520px;}
.h4a{height:38.419606px;}
.h4c{height:38.778908px;}
.ha{height:40.050720px;}
.h32{height:42.245280px;}
.h19{height:43.891200px;}
.h8{height:44.647839px;}
.h56{height:46.723786px;}
.h33{height:47.187372px;}
.h59{height:47.265406px;}
.h42{height:48.280320px;}
.h50{height:50.992350px;}
.h53{height:52.278382px;}
.h5b{height:54.136293px;}
.h51{height:55.142730px;}
.h52{height:55.510660px;}
.h18{height:55.961280px;}
.h5a{height:57.291357px;}
.h44{height:57.430170px;}
.h43{height:60.350400px;}
.h55{height:63.020053px;}
.h26{height:64.157417px;}
.h24{height:64.161767px;}
.h23{height:64.167905px;}
.h2c{height:64.175406px;}
.h20{height:64.178744px;}
.h2e{height:64.186879px;}
.h22{height:64.190880px;}
.h1f{height:64.193600px;}
.h2d{height:64.195476px;}
.h21{height:64.197730px;}
.h2b{height:64.199569px;}
.h2a{height:64.205964px;}
.h25{height:64.221925px;}
.h27{height:64.233141px;}
.h28{height:69.391167px;}
.h3d{height:70.119706px;}
.h37{height:72.355892px;}
.h2f{height:72.358133px;}
.h11{height:72.376705px;}
.h41{height:72.391498px;}
.hb{height:72.396401px;}
.h36{height:72.398730px;}
.h38{height:72.402430px;}
.h13{height:72.405413px;}
.h34{height:72.405902px;}
.h1c{height:72.409865px;}
.h15{height:72.414156px;}
.h1b{height:72.414158px;}
.hc{height:72.417836px;}
.h7{height:72.420480px;}
.h3a{height:72.421110px;}
.hd{height:72.421450px;}
.h30{height:72.421942px;}
.h3b{height:72.424724px;}
.he{height:72.425064px;}
.h31{height:72.433267px;}
.h40{height:72.443702px;}
.h3c{height:72.446160px;}
.hf{height:72.446499px;}
.h10{height:72.450258px;}
.h1d{height:72.452024px;}
.h3e{height:72.461437px;}
.h3f{height:72.465050px;}
.h14{height:72.478286px;}
.h49{height:72.849838px;}
.h4{height:76.348754px;}
.h5{height:76.380416px;}
.h12{height:80.101440px;}
.h29{height:83.787675px;}
.h5c{height:84.165721px;}
.h5d{height:84.965766px;}
.h48{height:88.957492px;}
.h1e{height:94.529346px;}
.h9{height:96.012000px;}
.h54{height:102.623960px;}
.h16{height:109.278736px;}
.h17{height:112.877280px;}
.h58{height:115.575399px;}
.h2{height:128.381760px;}
.h47{height:132.927917px;}
.h39{height:137.998022px;}
.h3{height:164.160000px;}
.h4f{height:176.662080px;}
.h1a{height:240.304320px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w2{width:0.535072px;}
.w3{width:102.251554px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.xf{left:48.239205px;}
.x4{left:49.864500px;}
.x2e{left:51.662899px;}
.x1{left:56.693520px;}
.x55{left:59.214261px;}
.x7{left:69.664319px;}
.x22{left:81.187916px;}
.x3c{left:86.771521px;}
.x8{left:89.456404px;}
.x9{left:92.521437px;}
.x6{left:97.197701px;}
.x26{left:99.720723px;}
.x4d{left:102.597122px;}
.x23{left:103.688639px;}
.x27{left:106.207202px;}
.x24{left:108.369361px;}
.x25{left:110.151361px;}
.x4e{left:114.291724px;}
.x7b{left:118.982704px;}
.x1b{left:126.545756px;}
.x6d{left:130.133521px;}
.x12{left:140.931364px;}
.x5{left:144.001255px;}
.xae{left:150.662156px;}
.x96{left:160.382056px;}
.x21{left:166.134049px;}
.x95{left:173.345307px;}
.x3b{left:174.596398px;}
.x20{left:179.997886px;}
.x58{left:181.268286px;}
.x1e{left:185.763853px;}
.x59{left:189.548636px;}
.x1f{left:194.755046px;}
.x49{left:198.363126px;}
.x6b{left:203.591163px;}
.x7a{left:223.742240px;}
.x3a{left:225.363608px;}
.x60{left:235.613883px;}
.xa{left:238.136214px;}
.x43{left:243.540000px;}
.x28{left:247.674235px;}
.x44{left:256.322873px;}
.x42{left:261.360000px;}
.x2a{left:265.327916px;}
.x29{left:278.633512px;}
.x7e{left:302.037903px;}
.x7c{left:305.096463px;}
.x2c{left:314.098551px;}
.x7d{left:315.898278px;}
.x97{left:330.301436px;}
.xc{left:346.135663px;}
.x13{left:357.120350px;}
.xd{left:365.048639px;}
.x4c{left:370.442898px;}
.x1d{left:374.576385px;}
.x81{left:375.842325px;}
.x8e{left:384.835494px;}
.x6a{left:395.817831px;}
.x6f{left:402.653156px;}
.x68{left:407.697831px;}
.xe{left:409.313530px;}
.x8f{left:410.413479px;}
.x94{left:420.660235px;}
.x34{left:424.805024px;}
.x2f{left:429.303880px;}
.x93{left:432.180555px;}
.x37{left:435.425747px;}
.x92{left:441.717023px;}
.x91{left:443.700911px;}
.x30{left:447.840887px;}
.x6e{left:455.930639px;}
.x69{left:461.870639px;}
.x80{left:469.794418px;}
.x7f{left:474.656234px;}
.x2{left:484.199108px;}
.x90{left:486.907194px;}
.x5a{left:490.137108px;}
.x5b{left:500.940000px;}
.x48{left:509.411510px;}
.x3{left:513.540705px;}
.x2b{left:516.946502px;}
.x39{left:530.457226px;}
.x2d{left:536.949021px;}
.x54{left:544.151530px;}
.x47{left:551.170429px;}
.x75{left:553.322892px;}
.x38{left:560.878554px;}
.x51{left:568.068490px;}
.x72{left:573.114976px;}
.x4f{left:579.947021px;}
.x78{left:582.310084px;}
.x40{left:595.972084px;}
.x50{left:605.333510px;}
.x71{left:609.491494px;}
.x3f{left:610.917108px;}
.xb{left:619.375663px;}
.x74{left:625.862169px;}
.x57{left:631.255663px;}
.x56{left:635.405783px;}
.x77{left:637.385783px;}
.x6c{left:652.140723px;}
.x9a{left:666.904411px;}
.x18{left:670.147207px;}
.x19{left:671.760000px;}
.x1c{left:678.956903px;}
.x73{left:680.937831px;}
.x99{left:683.824223px;}
.x11{left:686.521130px;}
.x98{left:689.049039px;}
.x79{left:695.336385px;}
.x9d{left:696.787771px;}
.xa5{left:698.045898px;}
.x70{left:700.563615px;}
.x10{left:702.535663px;}
.x88{left:707.580705px;}
.x76{left:732.948506px;}
.x66{left:736.013494px;}
.xa1{left:737.283587px;}
.xa0{left:746.463395px;}
.x45{left:749.154929px;}
.x9f{left:750.248417px;}
.x4b{left:753.841816px;}
.x9b{left:755.647021px;}
.x4a{left:760.858531px;}
.x15{left:768.604689px;}
.x46{left:778.686506px;}
.x3e{left:779.945783px;}
.x67{left:783.533494px;}
.x3d{left:786.242169px;}
.x41{left:796.494205px;}
.xa7{left:798.667955px;}
.x31{left:804.424153px;}
.x5c{left:806.762892px;}
.x9e{left:809.111204px;}
.xa8{left:816.662892px;}
.x5d{left:819.894217px;}
.x32{left:822.961597px;}
.x36{left:824.219352px;}
.x8b{left:826.754586px;}
.x33{left:829.627952px;}
.x8a{left:838.260251px;}
.x89{left:840.961562px;}
.x16{left:843.476767px;}
.x35{left:844.739277px;}
.x61{left:851.225783px;}
.x14{left:852.656767px;}
.x1a{left:854.783266px;}
.xaa{left:855.898603px;}
.xa2{left:868.503914px;}
.xa3{left:871.388670px;}
.x65{left:873.180000px;}
.xa4{left:882.546767px;}
.xab{left:894.058544px;}
.x64{left:895.134217px;}
.x9c{left:904.501709px;}
.x8d{left:935.633684px;}
.x8c{left:940.495500px;}
.xa6{left:947.708151px;}
.x5e{left:950.756386px;}
.x5f{left:995.048976px;}
.x17{left:997.563615px;}
.x84{left:1000.980563px;}
.x87{left:1004.223626px;}
.xa9{left:1009.800000px;}
.x86{left:1017.547624px;}
.x52{left:1024.210469px;}
.xad{left:1026.727866px;}
.x85{left:1036.072559px;}
.x53{left:1045.970306px;}
.x83{left:1054.446511px;}
.x82{left:1064.878636px;}
.xac{left:1070.461400px;}
.x63{left:1160.628506px;}
.x62{left:1262.344988px;}
@media print{
.v2{vertical-align:-24.949719pt;}
.v7{vertical-align:-22.394410pt;}
.v3{vertical-align:-19.866824pt;}
.v6{vertical-align:-12.799314pt;}
.vf{vertical-align:-10.252852pt;}
.vb{vertical-align:-2.569543pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.305680pt;}
.vd{vertical-align:7.673858pt;}
.v10{vertical-align:10.252852pt;}
.vc{vertical-align:14.699566pt;}
.v11{vertical-align:17.915874pt;}
.v1{vertical-align:24.949719pt;}
.v12{vertical-align:33.281720pt;}
.ve{vertical-align:35.203473pt;}
.v4{vertical-align:47.393294pt;}
.v5{vertical-align:50.592000pt;}
.va{vertical-align:53.784389pt;}
.v8{vertical-align:58.291149pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.028088pt;}
.ls3{letter-spacing:0.028216pt;}
.ls1{letter-spacing:0.056318pt;}
.ls0{letter-spacing:0.056340pt;}
.ls4{letter-spacing:0.152325pt;}
.ls19{letter-spacing:3.379451pt;}
.ls7{letter-spacing:27.302963pt;}
.ls6{letter-spacing:27.318489pt;}
.lsb{letter-spacing:27.318587pt;}
.lsc{letter-spacing:31.664531pt;}
.lsd{letter-spacing:31.689144pt;}
.lse{letter-spacing:31.690696pt;}
.ls10{letter-spacing:31.695151pt;}
.lsf{letter-spacing:31.702076pt;}
.ls15{letter-spacing:37.916203pt;}
.lsa{letter-spacing:54.237240pt;}
.ls8{letter-spacing:54.263339pt;}
.ls9{letter-spacing:54.297961pt;}
.ls18{letter-spacing:60.006519pt;}
.ls12{letter-spacing:75.386499pt;}
.ls11{letter-spacing:75.386560pt;}
.ls16{letter-spacing:75.398745pt;}
.ls13{letter-spacing:75.425916pt;}
.ls14{letter-spacing:75.433220pt;}
.ls17{letter-spacing:78.752107pt;}
.ws2{word-spacing:-84.479834pt;}
.ws1a{word-spacing:-74.880121pt;}
.ws29{word-spacing:-65.280408pt;}
.ws18{word-spacing:-59.868772pt;}
.ws2d{word-spacing:-49.280450pt;}
.ws0{word-spacing:-41.633280pt;}
.ws31{word-spacing:-38.322287pt;}
.ws33{word-spacing:-36.319691pt;}
.ws2f{word-spacing:-36.073289pt;}
.ws30{word-spacing:-35.840327pt;}
.ws4{word-spacing:-31.136000pt;}
.ws1c{word-spacing:-25.976320pt;}
.ws5{word-spacing:-23.485440pt;}
.ws15{word-spacing:-20.816640pt;}
.ws11{word-spacing:-19.092443pt;}
.ws2e{word-spacing:-19.075861pt;}
.wse{word-spacing:-18.147840pt;}
.ws19{word-spacing:-16.922907pt;}
.ws27{word-spacing:-16.320102pt;}
.ws1{word-spacing:-15.656960pt;}
.ws10{word-spacing:-14.233600pt;}
.ws22{word-spacing:-13.699840pt;}
.ws21{word-spacing:-12.988160pt;}
.ws1f{word-spacing:-12.941610pt;}
.ws2c{word-spacing:-12.728394pt;}
.ws28{word-spacing:-11.137382pt;}
.ws20{word-spacing:-10.282126pt;}
.ws12{word-spacing:-1.347840pt;}
.ws1e{word-spacing:-1.182720pt;}
.wsc{word-spacing:-1.013760pt;}
.ws26{word-spacing:-0.299520pt;}
.ws7{word-spacing:-0.186880pt;}
.ws13{word-spacing:-0.074798pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:0.093440pt;}
.ws17{word-spacing:0.524161pt;}
.ws14{word-spacing:0.748855pt;}
.ws9{word-spacing:1.605120pt;}
.ws8{word-spacing:2.281145pt;}
.ws32{word-spacing:5.753893pt;}
.wsb{word-spacing:7.603200pt;}
.ws25{word-spacing:13.403520pt;}
.ws24{word-spacing:14.676480pt;}
.wsa{word-spacing:16.558080pt;}
.ws16{word-spacing:20.367360pt;}
.ws23{word-spacing:24.410880pt;}
.ws1d{word-spacing:88.300797pt;}
.ws2b{word-spacing:146.794083pt;}
.wsf{word-spacing:399.578900pt;}
.ws2a{word-spacing:513.447952pt;}
.wsd{word-spacing:523.610838pt;}
.ws1b{word-spacing:807.626587pt;}
._19{margin-left:-2630.208078pt;}
._17{margin-left:-2365.870214pt;}
._1a{margin-left:-2217.891870pt;}
._18{margin-left:-1954.391013pt;}
._a{margin-left:-1020.691819pt;}
._e{margin-left:-568.488939pt;}
._1d{margin-left:-14.376960pt;}
._d{margin-left:-11.872000pt;}
._27{margin-left:-10.645120pt;}
._c{margin-left:-9.292800pt;}
._15{margin-left:-8.194544pt;}
._8{margin-left:-7.011840pt;}
._7{margin-left:-5.980162pt;}
._6{margin-left:-4.815360pt;}
._29{margin-left:-3.594240pt;}
._1{margin-left:-2.695680pt;}
._2{margin-left:-1.797120pt;}
._3{margin-left:-0.898560pt;}
._0{width:0.898560pt;}
._5{width:1.946880pt;}
._4{width:3.144960pt;}
._1c{width:6.617600pt;}
._2b{width:8.309608pt;}
._25{width:11.425280pt;}
._2e{width:18.085925pt;}
._2d{width:19.132810pt;}
._b{width:22.241280pt;}
._1b{width:24.825600pt;}
._10{width:26.242560pt;}
._13{width:30.013440pt;}
._12{width:32.125440pt;}
._2a{width:35.343360pt;}
._28{width:36.766080pt;}
._11{width:41.210880pt;}
._26{width:55.418880pt;}
._9{width:100.728320pt;}
._16{width:163.672662pt;}
._23{width:166.514355pt;}
._2f{width:247.760461pt;}
._2c{width:423.707985pt;}
._24{width:522.487488pt;}
._f{width:534.383337pt;}
._22{width:612.618291pt;}
._21{width:744.322492pt;}
._14{width:930.700721pt;}
._20{width:1053.945596pt;}
._1e{width:1181.107205pt;}
._1f{width:1621.744640pt;}
.fs10{font-size:28.160000pt;}
.fs1a{font-size:35.840327pt;}
.fs13{font-size:37.119590pt;}
.fs15{font-size:37.120000pt;}
.fs14{font-size:42.240000pt;}
.fs1b{font-size:42.240573pt;}
.fs5{font-size:43.520000pt;}
.fs9{font-size:46.720000pt;}
.fs12{font-size:46.720613pt;}
.fsf{font-size:49.280000pt;}
.fs18{font-size:49.280450pt;}
.fsb{font-size:51.200000pt;}
.fs1c{font-size:51.200654pt;}
.fs7{font-size:52.082635pt;}
.fs3{font-size:56.320000pt;}
.fs19{font-size:56.320326pt;}
.fs6{font-size:65.280000pt;}
.fs17{font-size:65.280408pt;}
.fs11{font-size:70.400000pt;}
.fse{font-size:74.880000pt;}
.fsd{font-size:74.880121pt;}
.fs4{font-size:84.479834pt;}
.fs2{font-size:84.480000pt;}
.fsa{font-size:93.440000pt;}
.fs8{font-size:112.000000pt;}
.fs0{font-size:149.760000pt;}
.fs1{font-size:194.560000pt;}
.fs16{font-size:206.080000pt;}
.fsc{font-size:280.320000pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:5.280000pt;}
.yea{bottom:94.399536pt;}
.yc{bottom:102.879013pt;}
.ye{bottom:108.482704pt;}
.y109{bottom:109.115483pt;}
.ye9{bottom:116.957113pt;}
.yb{bottom:117.601428pt;}
.y108{bottom:123.835100pt;}
.y5f{bottom:123.996741pt;}
.y54{bottom:125.596353pt;}
.yee{bottom:136.635868pt;}
.ye8{bottom:139.364956pt;}
.ya{bottom:148.311720pt;}
.y5e{bottom:157.765726pt;}
.y53{bottom:159.365338pt;}
.y107{bottom:160.156340pt;}
.y8c{bottom:161.448298pt;}
.ye7{bottom:161.922590pt;}
.y68{bottom:162.718751pt;}
.y10b{bottom:163.992879pt;}
.y83{bottom:166.400314pt;}
.y45{bottom:169.114869pt;}
.y11c{bottom:172.316567pt;}
.y10a{bottom:176.471148pt;}
.ye3{bottom:177.288298pt;}
.y59{bottom:180.640144pt;}
.y4e{bottom:180.642590pt;}
.y70{bottom:187.996154pt;}
.y5d{bottom:191.369113pt;}
.y52{bottom:192.960325pt;}
.y67{bottom:193.603511pt;}
.yb5{bottom:197.280345pt;}
.y31{bottom:197.589452pt;}
.yf2{bottom:198.396000pt;}
.y11f{bottom:201.277066pt;}
.y136{bottom:203.204513pt;}
.y6b{bottom:204.154905pt;}
.y9e{bottom:204.304640pt;}
.y66{bottom:208.325926pt;}
.y9c{bottom:210.401589pt;}
.y75{bottom:211.839048pt;}
.y6f{bottom:213.280808pt;}
.y4d{bottom:214.243433pt;}
.y9{bottom:216.641287pt;}
.y1e{bottom:217.437439pt;}
.y44{bottom:217.923222pt;}
.y11b{bottom:220.957475pt;}
.y111{bottom:221.434414pt;}
.y19{bottom:221.598082pt;}
.yaa{bottom:224.639367pt;}
.y5c{bottom:224.956237pt;}
.y51{bottom:226.555849pt;}
.y8d{bottom:226.555855pt;}
.y135{bottom:226.558429pt;}
.y9b{bottom:228.483222pt;}
.yb6{bottom:234.245135pt;}
.y8{bottom:236.323236pt;}
.y15{bottom:240.320163pt;}
.y1d{bottom:240.796154pt;}
.yd4{bottom:241.273196pt;}
.y18{bottom:244.956796pt;}
.yda{bottom:246.555554pt;}
.y43{bottom:246.878724pt;}
.y4c{bottom:247.999810pt;}
.y9d{bottom:249.120325pt;}
.y9a{bottom:249.444829pt;}
.ya9{bottom:249.920009pt;}
.y110{bottom:251.834981pt;}
.y7{bottom:255.841925pt;}
.yd9{bottom:257.756464pt;}
.y5b{bottom:258.721763pt;}
.y50{bottom:260.321375pt;}
.yab{bottom:263.035543pt;}
.y6e{bottom:263.690258pt;}
.y1c{bottom:264.154901pt;}
.y1b{bottom:264.640652pt;}
.ydb{bottom:267.363383pt;}
.y17{bottom:268.315543pt;}
.yd3{bottom:269.913953pt;}
.yd8{bottom:271.675701pt;}
.y42{bottom:272.159367pt;}
.y7d{bottom:279.044475pt;}
.y65{bottom:279.361294pt;}
.y106{bottom:279.996881pt;}
.y11a{bottom:281.114075pt;}
.yed{bottom:281.281303pt;}
.y10f{bottom:282.235549pt;}
.y3c{bottom:283.044760pt;}
.y4b{bottom:284.800036pt;}
.yd7{bottom:285.761778pt;}
.y6{bottom:288.632973pt;}
.y6d{bottom:288.964113pt;}
.y14{bottom:290.717248pt;}
.y5a{bottom:292.322765pt;}
.ya8{bottom:292.476796pt;}
.y4f{bottom:293.922377pt;}
.y134{bottom:295.200345pt;}
.yf7{bottom:298.391305pt;}
.y7c{bottom:304.319411pt;}
.y64{bottom:304.639096pt;}
.y114{bottom:305.437185pt;}
.yec{bottom:306.557202pt;}
.y41{bottom:306.563865pt;}
.y118{bottom:310.878667pt;}
.y2e{bottom:312.313603pt;}
.yde{bottom:312.313681pt;}
.y10e{bottom:312.636116pt;}
.y3b{bottom:313.445931pt;}
.y5{bottom:314.082580pt;}
.y133{bottom:318.554261pt;}
.y113{bottom:323.355543pt;}
.yf5{bottom:324.157244pt;}
.ye6{bottom:330.079992pt;}
.yef{bottom:331.999907pt;}
.y4a{bottom:336.800018pt;}
.y30{bottom:338.099873pt;}
.ye0{bottom:338.555356pt;}
.y40{bottom:339.046403pt;}
.y6c{bottom:339.515879pt;}
.yd6{bottom:339.680009pt;}
.y13{bottom:341.279336pt;}
.y132{bottom:341.924513pt;}
.y116{bottom:342.234355pt;}
.y10d{bottom:343.040964pt;}
.y119{bottom:343.676939pt;}
.y3a{bottom:343.836811pt;}
.yf4{bottom:348.471841pt;}
.yca{bottom:350.398894pt;}
.yd5{bottom:352.320331pt;}
.ydf{bottom:352.641434pt;}
.yfe{bottom:352.641867pt;}
.ycd{bottom:354.556971pt;}
.y7b{bottom:354.716496pt;}
.yd0{bottom:355.043550pt;}
.ycb{bottom:357.112310pt;}
.yd2{bottom:357.114894pt;}
.y115{bottom:359.837746pt;}
.y4{bottom:362.712316pt;}
.ye5{bottom:363.679992pt;}
.y97{bottom:364.152345pt;}
.yc9{bottom:364.321434pt;}
.yaf{bottom:364.960652pt;}
.y131{bottom:365.278429pt;}
.ycf{bottom:365.924100pt;}
.ycc{bottom:368.643048pt;}
.y99{bottom:369.923865pt;}
.y94{bottom:370.557439pt;}
.yf6{bottom:370.714840pt;}
.yd1{bottom:371.200971pt;}
.y3e{bottom:371.993616pt;}
.y10c{bottom:373.440692pt;}
.y117{bottom:373.915072pt;}
.y39{bottom:374.238013pt;}
.y112{bottom:375.356216pt;}
.ydd{bottom:376.002237pt;}
.yce{bottom:377.124660pt;}
.yc8{bottom:378.395855pt;}
.y95{bottom:380.160009pt;}
.y96{bottom:383.687362pt;}
.yfd{bottom:386.242868pt;}
.y98{bottom:386.721295pt;}
.ydc{bottom:387.203204pt;}
.y93{bottom:387.354869pt;}
.y130{bottom:388.632320pt;}
.y12{bottom:391.676420pt;}
.yf3{bottom:394.551972pt;}
.y6a{bottom:400.963201pt;}
.y38{bottom:404.639215pt;}
.y7a{bottom:405.278584pt;}
.y80{bottom:405.283202pt;}
.y36{bottom:405.912331pt;}
.y3{bottom:406.405773pt;}
.y82{bottom:406.731546pt;}
.y3f{bottom:408.320009pt;}
.y69{bottom:409.439388pt;}
.yc7{bottom:410.711378pt;}
.y12f{bottom:412.002572pt;}
.ya7{bottom:414.402580pt;}
.y7e{bottom:419.042241pt;}
.y63{bottom:419.365436pt;}
.yfc{bottom:419.999245pt;}
.y104{bottom:424.319051pt;}
.yb0{bottom:426.237125pt;}
.y105{bottom:428.799641pt;}
.yc6{bottom:433.119221pt;}
.y7f{bottom:433.268472pt;}
.y81{bottom:434.716816pt;}
.y37{bottom:435.040386pt;}
.y12e{bottom:435.356488pt;}
.ya6{bottom:439.683222pt;}
.y2d{bottom:441.120009pt;}
.y3d{bottom:441.752973pt;}
.y11{bottom:442.238509pt;}
.ye4{bottom:448.163840pt;}
.y74{bottom:449.271688pt;}
.y72{bottom:450.391046pt;}
.y2{bottom:451.184009pt;}
.y92{bottom:451.200056pt;}
.y8b{bottom:451.676164pt;}
.yeb{bottom:452.004428pt;}
.yfb{bottom:453.600219pt;}
.yc5{bottom:453.602850pt;}
.y88{bottom:458.240318pt;}
.y12d{bottom:458.726740pt;}
.y85{bottom:459.525125pt;}
.yb2{bottom:460.803222pt;}
.yae{bottom:461.436796pt;}
.y49{bottom:470.410894pt;}
.y2f{bottom:470.551057pt;}
.yf0{bottom:471.198924pt;}
.y86{bottom:473.611202pt;}
.y73{bottom:474.552331pt;}
.y71{bottom:475.671688pt;}
.y103{bottom:475.995652pt;}
.y91{bottom:476.321242pt;}
.y8a{bottom:479.848318pt;}
.y47{bottom:480.001294pt;}
.y35{bottom:480.796855pt;}
.y12c{bottom:482.080656pt;}
.y124{bottom:485.116177pt;}
.yb1{bottom:486.083865pt;}
.y87{bottom:486.248971pt;}
.yb3{bottom:486.400652pt;}
.yad{bottom:486.717439pt;}
.yfa{bottom:487.201221pt;}
.y102{bottom:487.360092pt;}
.y84{bottom:487.510395pt;}
.y10{bottom:492.800597pt;}
.y1{bottom:496.149457pt;}
.y90{bottom:501.597141pt;}
.y46{bottom:503.360009pt;}
.y34{bottom:504.164938pt;}
.y127{bottom:506.725128pt;}
.y89{bottom:507.833606pt;}
.y123{bottom:508.486404pt;}
.ye2{bottom:509.442580pt;}
.yac{bottom:511.998082pt;}
.yb7{bottom:512.167046pt;}
.y48{bottom:515.692016pt;}
.yf9{bottom:520.957597pt;}
.y11e{bottom:523.194050pt;}
.y79{bottom:524.163206pt;}
.y8f{bottom:526.887688pt;}
.y33{bottom:527.522699pt;}
.y122{bottom:531.840320pt;}
.y24{bottom:532.802700pt;}
.y1f{bottom:532.957396pt;}
.y62{bottom:537.123631pt;}
.y11d{bottom:538.719246pt;}
.yf{bottom:543.197681pt;}
.y78{bottom:548.641294pt;}
.y32{bottom:550.880009pt;}
.y8e{bottom:552.159229pt;}
.yf8{bottom:554.558599pt;}
.y121{bottom:555.194261pt;}
.y1a{bottom:556.480161pt;}
.yb4{bottom:556.645776pt;}
.ye1{bottom:556.962564pt;}
.y55{bottom:560.954242pt;}
.y26{bottom:566.552967pt;}
.yff{bottom:571.040026pt;}
.y77{bottom:573.921937pt;}
.y29{bottom:575.839051pt;}
.y25{bottom:578.074883pt;}
.y120{bottom:578.564488pt;}
.y101{bottom:586.077985pt;}
.ya5{bottom:592.951046pt;}
.yf1{bottom:596.635808pt;}
.ybd{bottom:597.111688pt;}
.y58{bottom:597.766403pt;}
.y28{bottom:599.192967pt;}
.y76{bottom:599.519367pt;}
.y23{bottom:599.836170pt;}
.y100{bottom:600.159187pt;}
.yc2{bottom:607.840652pt;}
.ya4{bottom:611.029776pt;}
.ybb{bottom:611.515527pt;}
.yb8{bottom:614.556813pt;}
.ya3{bottom:616.309776pt;}
.y16{bottom:617.602241pt;}
.yc4{bottom:619.351046pt;}
.yc0{bottom:622.244491pt;}
.y27{bottom:622.563207pt;}
.y57{bottom:623.047046pt;}
.y22{bottom:623.194885pt;}
.y2c{bottom:624.166403pt;}
.ybf{bottom:626.552973pt;}
.ya1{bottom:634.409616pt;}
.ya0{bottom:639.689616pt;}
.yc3{bottom:644.631688pt;}
.y61{bottom:645.751046pt;}
.y21{bottom:646.553616pt;}
.y56{bottom:648.327688pt;}
.yd{bottom:648.328013pt;}
.y2b{bottom:649.447046pt;}
.ybe{bottom:651.833616pt;}
.yba{bottom:655.043849pt;}
.y129{bottom:659.838093pt;}
.y12b{bottom:660.164488pt;}
.y9f{bottom:663.048331pt;}
.y20{bottom:669.912331pt;}
.y60{bottom:671.031688pt;}
.y126{bottom:673.277450pt;}
.y2a{bottom:674.727688pt;}
.ybc{bottom:680.810250pt;}
.y125{bottom:681.922569pt;}
.y128{bottom:683.192009pt;}
.y12a{bottom:683.518404pt;}
.yb9{bottom:688.476813pt;}
.yc1{bottom:691.518090pt;}
.h35{height:21.457920pt;}
.h45{height:24.794876pt;}
.h46{height:24.963839pt;}
.h4b{height:27.132825pt;}
.h4e{height:28.285440pt;}
.h57{height:30.205276pt;}
.h4d{height:32.186880pt;}
.h6{height:33.162240pt;}
.h4a{height:34.150761pt;}
.h4c{height:34.470140pt;}
.ha{height:35.600640pt;}
.h32{height:37.551360pt;}
.h19{height:39.014400pt;}
.h8{height:39.686968pt;}
.h56{height:41.532254pt;}
.h33{height:41.944330pt;}
.h59{height:42.013694pt;}
.h42{height:42.915840pt;}
.h50{height:45.326533pt;}
.h53{height:46.469673pt;}
.h5b{height:48.121150pt;}
.h51{height:49.015760pt;}
.h52{height:49.342809pt;}
.h18{height:49.743360pt;}
.h5a{height:50.925651pt;}
.h44{height:51.049040pt;}
.h43{height:53.644800pt;}
.h55{height:56.017825pt;}
.h26{height:57.028815pt;}
.h24{height:57.032681pt;}
.h23{height:57.038138pt;}
.h2c{height:57.044805pt;}
.h20{height:57.047773pt;}
.h2e{height:57.055003pt;}
.h22{height:57.058560pt;}
.h1f{height:57.060978pt;}
.h2d{height:57.062645pt;}
.h21{height:57.064649pt;}
.h2b{height:57.066284pt;}
.h2a{height:57.071968pt;}
.h25{height:57.086156pt;}
.h27{height:57.096125pt;}
.h28{height:61.681037pt;}
.h3d{height:62.328628pt;}
.h37{height:64.316348pt;}
.h2f{height:64.318340pt;}
.h11{height:64.334849pt;}
.h41{height:64.347998pt;}
.hb{height:64.352357pt;}
.h36{height:64.354426pt;}
.h38{height:64.357715pt;}
.h13{height:64.360367pt;}
.h34{height:64.360802pt;}
.h1c{height:64.364325pt;}
.h15{height:64.368139pt;}
.h1b{height:64.368141pt;}
.hc{height:64.371410pt;}
.h7{height:64.373760pt;}
.h3a{height:64.374320pt;}
.hd{height:64.374622pt;}
.h30{height:64.375059pt;}
.h3b{height:64.377533pt;}
.he{height:64.377834pt;}
.h31{height:64.385126pt;}
.h40{height:64.394402pt;}
.h3c{height:64.396586pt;}
.hf{height:64.396888pt;}
.h10{height:64.400229pt;}
.h1d{height:64.401799pt;}
.h3e{height:64.410166pt;}
.h3f{height:64.413378pt;}
.h14{height:64.425143pt;}
.h49{height:64.755411pt;}
.h4{height:67.865559pt;}
.h5{height:67.893704pt;}
.h12{height:71.201280pt;}
.h29{height:74.477933pt;}
.h5c{height:74.813974pt;}
.h5d{height:75.525125pt;}
.h48{height:79.073326pt;}
.h1e{height:84.026085pt;}
.h9{height:85.344000pt;}
.h54{height:91.221298pt;}
.h16{height:97.136654pt;}
.h17{height:100.335360pt;}
.h58{height:102.733688pt;}
.h2{height:114.117120pt;}
.h47{height:118.158149pt;}
.h39{height:122.664909pt;}
.h3{height:145.920000pt;}
.h4f{height:157.032960pt;}
.h1a{height:213.603840pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w2{width:0.475620pt;}
.w3{width:90.890270pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xf{left:42.879294pt;}
.x4{left:44.324000pt;}
.x2e{left:45.922577pt;}
.x1{left:50.394240pt;}
.x55{left:52.634899pt;}
.x7{left:61.923839pt;}
.x22{left:72.167036pt;}
.x3c{left:77.130241pt;}
.x8{left:79.516803pt;}
.x9{left:82.241277pt;}
.x6{left:86.397956pt;}
.x26{left:88.640643pt;}
.x4d{left:91.197442pt;}
.x23{left:92.167679pt;}
.x27{left:94.406402pt;}
.x24{left:96.328321pt;}
.x25{left:97.912321pt;}
.x4e{left:101.592644pt;}
.x7b{left:105.762404pt;}
.x1b{left:112.485116pt;}
.x6d{left:115.674241pt;}
.x12{left:125.272323pt;}
.x5{left:128.001116pt;}
.xae{left:133.921916pt;}
.x96{left:142.561827pt;}
.x21{left:147.674710pt;}
.x95{left:154.084717pt;}
.x3b{left:155.196798pt;}
.x20{left:159.998121pt;}
.x58{left:161.127366pt;}
.x1e{left:165.123425pt;}
.x59{left:168.487677pt;}
.x1f{left:173.115597pt;}
.x49{left:176.322779pt;}
.x6b{left:180.969923pt;}
.x7a{left:198.881991pt;}
.x3a{left:200.323208pt;}
.x60{left:209.434563pt;}
.xa{left:211.676635pt;}
.x43{left:216.480000pt;}
.x28{left:220.154876pt;}
.x44{left:227.842554pt;}
.x42{left:232.320000pt;}
.x2a{left:235.847036pt;}
.x29{left:247.674233pt;}
.x7e{left:268.478136pt;}
.x7c{left:271.196856pt;}
.x2c{left:279.198712pt;}
.x7d{left:280.798470pt;}
.x97{left:293.601277pt;}
.xc{left:307.676145pt;}
.x13{left:317.440311pt;}
.xd{left:324.487679pt;}
.x4c{left:329.282576pt;}
.x1d{left:332.956787pt;}
.x81{left:334.082066pt;}
.x8e{left:342.075995pt;}
.x6a{left:351.838072pt;}
.x6f{left:357.913916pt;}
.x68{left:362.398072pt;}
.xe{left:363.834249pt;}
.x8f{left:364.811981pt;}
.x94{left:373.920209pt;}
.x34{left:377.604466pt;}
.x2f{left:381.603449pt;}
.x93{left:384.160494pt;}
.x37{left:387.045108pt;}
.x92{left:392.637353pt;}
.x91{left:394.400810pt;}
.x30{left:398.080789pt;}
.x6e{left:405.271679pt;}
.x69{left:410.551679pt;}
.x80{left:417.595039pt;}
.x7f{left:421.916653pt;}
.x2{left:430.399208pt;}
.x90{left:432.806394pt;}
.x5a{left:435.677430pt;}
.x5b{left:445.280000pt;}
.x48{left:452.810231pt;}
.x3{left:456.480626pt;}
.x2b{left:459.508002pt;}
.x39{left:471.517534pt;}
.x2d{left:477.288019pt;}
.x54{left:483.690249pt;}
.x47{left:489.929270pt;}
.x75{left:491.842570pt;}
.x38{left:498.558715pt;}
.x51{left:504.949769pt;}
.x72{left:509.435534pt;}
.x4f{left:515.508463pt;}
.x78{left:517.608964pt;}
.x40{left:529.752964pt;}
.x50{left:538.074231pt;}
.x71{left:541.770217pt;}
.x3f{left:543.037430pt;}
.xb{left:550.556145pt;}
.x74{left:556.321928pt;}
.x57{left:561.116145pt;}
.x56{left:564.805141pt;}
.x77{left:566.565141pt;}
.x6c{left:579.680643pt;}
.x9a{left:592.803921pt;}
.x18{left:595.686406pt;}
.x19{left:597.120000pt;}
.x1c{left:603.517247pt;}
.x73{left:605.278072pt;}
.x99{left:607.843754pt;}
.x11{left:610.241004pt;}
.x98{left:612.488035pt;}
.x79{left:618.076787pt;}
.x9d{left:619.366908pt;}
.xa5{left:620.485242pt;}
.x70{left:622.723213pt;}
.x10{left:624.476145pt;}
.x88{left:628.960626pt;}
.x76{left:651.509783pt;}
.x66{left:654.234217pt;}
.xa1{left:655.363188pt;}
.xa0{left:663.523018pt;}
.x45{left:665.915493pt;}
.x9f{left:666.887482pt;}
.x4b{left:670.081614pt;}
.x9b{left:671.686241pt;}
.x4a{left:676.318694pt;}
.x15{left:683.204168pt;}
.x46{left:692.165783pt;}
.x3e{left:693.285141pt;}
.x67{left:696.474217pt;}
.x3d{left:698.881928pt;}
.x41{left:707.994849pt;}
.xa7{left:709.927071pt;}
.x31{left:715.043692pt;}
.x5c{left:717.122570pt;}
.x9e{left:719.209959pt;}
.xa8{left:725.922570pt;}
.x5d{left:728.794859pt;}
.x32{left:731.521419pt;}
.x36{left:732.639424pt;}
.x8b{left:734.892965pt;}
.x33{left:737.447068pt;}
.x8a{left:745.120223pt;}
.x89{left:747.521389pt;}
.x16{left:749.757126pt;}
.x35{left:750.879357pt;}
.x61{left:756.645141pt;}
.x14{left:757.917126pt;}
.x1a{left:759.807347pt;}
.xaa{left:760.798758pt;}
.xa2{left:772.003479pt;}
.xa3{left:774.567707pt;}
.x65{left:776.160000pt;}
.xa4{left:784.486015pt;}
.xab{left:794.718706pt;}
.x64{left:795.674859pt;}
.x9c{left:804.001519pt;}
.x8d{left:831.674386pt;}
.x8c{left:835.996000pt;}
.xa6{left:842.407245pt;}
.x5e{left:845.116787pt;}
.x5f{left:884.487979pt;}
.x17{left:886.723213pt;}
.x84{left:889.760500pt;}
.x87{left:892.643223pt;}
.xa9{left:897.600000pt;}
.x86{left:904.486777pt;}
.x52{left:910.409306pt;}
.xad{left:912.646992pt;}
.x85{left:920.953386pt;}
.x53{left:929.751383pt;}
.x83{left:937.285787pt;}
.x82{left:946.558787pt;}
.xac{left:951.521244pt;}
.x63{left:1031.669783pt;}
.x62{left:1122.084434pt;}
}




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