
    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_1faf144e38ac79541a774b86.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.145000;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_383381b547ab964cf0b3f082.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f8bb621fdf545391ac3ee3cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969000;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_4cc455f068246dd08986c3aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.738000;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_3f631ecd4a81b73303debacd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.912000;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_7401250aa97b49e26dc1f96a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.335000;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_1cef0651a7d2128bdbbf4313.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.462000;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_0bf33032d8770961ca976546.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970000;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_cd82d6c2be035752bd2350a6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.460000;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.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);}
.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);}
.v2{vertical-align:-18.442980px;}
.v4{vertical-align:-17.360160px;}
.v6{vertical-align:-8.069520px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:17.357820px;}
.v3{vertical-align:19.530000px;}
.v1{vertical-align:26.040000px;}
.ls10{letter-spacing:-10.490700px;}
.ls13{letter-spacing:-9.325020px;}
.ls12{letter-spacing:-7.938240px;}
.ls14{letter-spacing:-6.981780px;}
.ls15{letter-spacing:-4.404276px;}
.lsb{letter-spacing:-3.371364px;}
.ls11{letter-spacing:-1.960644px;}
.lsa{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.002411px;}
.ls9{letter-spacing:0.591000px;}
.ls6{letter-spacing:0.593340px;}
.ls4{letter-spacing:2.986426px;}
.lsf{letter-spacing:2.986906px;}
.lse{letter-spacing:2.989246px;}
.lsd{letter-spacing:2.989426px;}
.ls5{letter-spacing:2.992426px;}
.ls2{letter-spacing:14.944125px;}
.ls3{letter-spacing:14.945107px;}
.lsc{letter-spacing:18.358426px;}
.ls8{letter-spacing:19.384380px;}
.ls7{letter-spacing:20.921042px;}
.ls1{letter-spacing:24.583235px;}
.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;}
}
.ws4{word-spacing:-26.779536px;}
.ws5{word-spacing:-20.084736px;}
.ws10{word-spacing:-18.410952px;}
.ws6{word-spacing:-16.713372px;}
.wsf{word-spacing:-15.063552px;}
.ws7{word-spacing:-14.226576px;}
.ws1{word-spacing:-13.389768px;}
.ws2{word-spacing:-13.294127px;}
.ws3{word-spacing:-0.071731px;}
.ws9{word-spacing:-0.053798px;}
.ws8{word-spacing:-0.050809px;}
.ws0{word-spacing:-0.047821px;}
.wsc{word-spacing:-0.035866px;}
.wsa{word-spacing:0.000000px;}
.ws11{word-spacing:1.912823px;}
.wsb{word-spacing:20.136005px;}
.wse{word-spacing:24.763162px;}
.wsd{word-spacing:30.386976px;}
._1{margin-left:-11.963875px;}
._9{margin-left:-9.326069px;}
._7{margin-left:-7.692257px;}
._0{margin-left:-6.359566px;}
._3{margin-left:-5.259233px;}
._2{margin-left:-3.592236px;}
._6{margin-left:-2.083446px;}
._8{width:1.960252px;}
._5{width:3.372507px;}
._4{width:7.968086px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,127,172);}
.fs1{font-size:0.001200px;}
.fs6{font-size:35.566200px;}
.fs9{font-size:35.865600px;}
.fs0{font-size:47.820600px;}
.fs7{font-size:50.809200px;}
.fs8{font-size:53.798400px;}
.fsa{font-size:65.753400px;}
.fs3{font-size:71.731200px;}
.fs5{font-size:83.686200px;}
.fs4{font-size:95.641200px;}
.fs2{font-size:113.574000px;}
.y0{bottom:0.000000px;}
.y40{bottom:106.997400px;}
.y3f{bottom:121.941150px;}
.yb8{bottom:124.995000px;}
.yb9{bottom:124.995150px;}
.yfa{bottom:125.187300px;}
.yf9{bottom:125.187750px;}
.yf7{bottom:140.130750px;}
.yf8{bottom:140.131500px;}
.yb7{bottom:141.433500px;}
.yb6{bottom:141.434100px;}
.y3e{bottom:152.014500px;}
.y3d{bottom:152.015100px;}
.yf6{bottom:155.074500px;}
.yf5{bottom:155.076000px;}
.y33{bottom:156.825915px;}
.y34{bottom:156.826500px;}
.yb5{bottom:157.872000px;}
.yb4{bottom:157.872600px;}
.y3c{bottom:168.453000px;}
.y3b{bottom:168.453600px;}
.yf4{bottom:170.019000px;}
.yf3{bottom:170.019165px;}
.y32{bottom:171.769665px;}
.yb3{bottom:174.310500px;}
.yb2{bottom:174.311100px;}
.y3a{bottom:184.891500px;}
.yf1{bottom:184.962165px;}
.yf2{bottom:184.963500px;}
.y31{bottom:186.714000px;}
.y30{bottom:186.714750px;}
.yb0{bottom:190.748100px;}
.yb1{bottom:190.749000px;}
.yf0{bottom:199.906500px;}
.y39{bottom:201.330000px;}
.y2f{bottom:201.658500px;}
.y2e{bottom:205.998000px;}
.yae{bottom:207.186000px;}
.yad{bottom:207.186600px;}
.yaf{bottom:207.187500px;}
.yef{bottom:214.851000px;}
.yee{bottom:214.851165px;}
.y38{bottom:217.768500px;}
.y37{bottom:217.769100px;}
.yac{bottom:223.624500px;}
.yaa{bottom:223.625100px;}
.yab{bottom:223.626000px;}
.yec{bottom:229.794750px;}
.yed{bottom:229.795500px;}
.y36{bottom:234.207000px;}
.y35{bottom:234.207600px;}
.ya8{bottom:240.063000px;}
.ya7{bottom:240.063600px;}
.ya9{bottom:240.064500px;}
.yeb{bottom:244.738500px;}
.y2d{bottom:250.645500px;}
.y2c{bottom:250.646100px;}
.ya5{bottom:256.501500px;}
.ya4{bottom:256.502100px;}
.ya6{bottom:256.503000px;}
.yea{bottom:259.683000px;}
.ye9{bottom:259.683165px;}
.y2b{bottom:267.084000px;}
.y2a{bottom:267.084600px;}
.ya3{bottom:272.940000px;}
.ya2{bottom:272.940600px;}
.ye7{bottom:274.626750px;}
.ye8{bottom:274.627500px;}
.y29{bottom:283.522500px;}
.ya1{bottom:289.378500px;}
.ya0{bottom:289.379100px;}
.ye6{bottom:289.570500px;}
.y28{bottom:299.961000px;}
.ye5{bottom:304.515165px;}
.y9f{bottom:305.817000px;}
.y9e{bottom:305.817600px;}
.y26{bottom:316.398600px;}
.y27{bottom:316.399500px;}
.ye3{bottom:319.458750px;}
.ye4{bottom:319.459500px;}
.y9d{bottom:322.255500px;}
.y9c{bottom:322.256100px;}
.y25{bottom:332.836500px;}
.y24{bottom:332.837100px;}
.ye2{bottom:334.402500px;}
.ye1{bottom:334.403250px;}
.y9b{bottom:338.694000px;}
.y23{bottom:349.275000px;}
.y22{bottom:349.275600px;}
.ye0{bottom:349.347000px;}
.y9a{bottom:355.132500px;}
.ydf{bottom:364.290750px;}
.y21{bottom:365.713500px;}
.y99{bottom:371.571000px;}
.y98{bottom:371.571600px;}
.yde{bottom:379.234500px;}
.ydd{bottom:379.235250px;}
.y20{bottom:382.152000px;}
.y1f{bottom:382.152600px;}
.y97{bottom:388.009500px;}
.y96{bottom:388.010100px;}
.ydb{bottom:394.177665px;}
.ydc{bottom:394.179000px;}
.y1e{bottom:398.590500px;}
.y1d{bottom:398.591100px;}
.y95{bottom:404.448000px;}
.y94{bottom:404.448600px;}
.yda{bottom:409.122000px;}
.y1c{bottom:415.029000px;}
.y1b{bottom:415.029600px;}
.y93{bottom:420.886500px;}
.yd9{bottom:424.066500px;}
.yd8{bottom:424.066665px;}
.y1a{bottom:431.467500px;}
.y19{bottom:431.468100px;}
.y92{bottom:437.325000px;}
.yd6{bottom:439.009665px;}
.yd7{bottom:439.011000px;}
.y18{bottom:447.906000px;}
.y90{bottom:453.762600px;}
.y91{bottom:453.763500px;}
.yd5{bottom:453.954000px;}
.yd4{bottom:453.954750px;}
.y17{bottom:464.344500px;}
.yd3{bottom:468.898500px;}
.yd2{bottom:468.899250px;}
.y8f{bottom:470.200500px;}
.y8e{bottom:470.201100px;}
.y16{bottom:480.783000px;}
.yd1{bottom:483.843000px;}
.yd0{bottom:483.843165px;}
.y8d{bottom:486.639000px;}
.y8c{bottom:486.639600px;}
.y15{bottom:497.221500px;}
.y14{bottom:497.222100px;}
.yce{bottom:498.786165px;}
.ycf{bottom:498.787500px;}
.y8b{bottom:503.077500px;}
.y13{bottom:513.660000px;}
.ycd{bottom:513.730500px;}
.ycc{bottom:513.731250px;}
.y8a{bottom:519.516000px;}
.ycb{bottom:528.675000px;}
.y12{bottom:530.098500px;}
.y11{bottom:530.099100px;}
.y89{bottom:535.954500px;}
.y88{bottom:535.955100px;}
.yc9{bottom:543.618165px;}
.yca{bottom:543.619500px;}
.y10{bottom:546.537000px;}
.y87{bottom:552.393000px;}
.y86{bottom:552.393600px;}
.yc8{bottom:558.562500px;}
.yc7{bottom:558.563250px;}
.y85{bottom:568.831500px;}
.y84{bottom:568.832100px;}
.yc5{bottom:573.505665px;}
.yc6{bottom:573.507000px;}
.y82{bottom:585.269100px;}
.y83{bottom:585.270000px;}
.yc4{bottom:588.450000px;}
.y81{bottom:601.707000px;}
.y80{bottom:601.708500px;}
.yc2{bottom:603.393750px;}
.yc3{bottom:603.394500px;}
.y7e{bottom:618.146100px;}
.y7f{bottom:618.147000px;}
.yc1{bottom:618.337500px;}
.yc0{bottom:618.337665px;}
.ybf{bottom:633.282000px;}
.ybe{bottom:633.282300px;}
.y7d{bottom:634.584000px;}
.y7b{bottom:634.584600px;}
.y7c{bottom:634.585500px;}
.y79{bottom:651.022500px;}
.y78{bottom:651.023100px;}
.y7a{bottom:651.024000px;}
.ybd{bottom:667.205100px;}
.y77{bottom:667.461000px;}
.y75{bottom:667.461600px;}
.y76{bottom:667.462500px;}
.y74{bottom:683.899500px;}
.y72{bottom:683.900100px;}
.y73{bottom:683.901000px;}
.y70{bottom:700.338000px;}
.y6f{bottom:700.338600px;}
.y71{bottom:700.339500px;}
.yf{bottom:710.322000px;}
.ye{bottom:710.322600px;}
.y6d{bottom:716.776500px;}
.y6c{bottom:716.777100px;}
.y6e{bottom:716.778000px;}
.y6a{bottom:733.215000px;}
.y69{bottom:733.215600px;}
.y6b{bottom:733.216500px;}
.yd{bottom:746.635500px;}
.y68{bottom:749.653500px;}
.y67{bottom:749.654100px;}
.yc{bottom:751.246845px;}
.yb{bottom:763.074000px;}
.y65{bottom:766.092000px;}
.y64{bottom:766.092600px;}
.y66{bottom:766.093500px;}
.ya{bottom:767.685000px;}
.y63{bottom:782.530500px;}
.y62{bottom:782.531100px;}
.y61{bottom:798.969000px;}
.y60{bottom:798.969600px;}
.y8{bottom:811.642350px;}
.y9{bottom:811.642500px;}
.y5f{bottom:815.407500px;}
.y5e{bottom:815.408100px;}
.y5d{bottom:831.846000px;}
.y5c{bottom:831.846600px;}
.y5b{bottom:848.284500px;}
.y7{bottom:855.201000px;}
.y6{bottom:855.201150px;}
.y5a{bottom:864.723000px;}
.y59{bottom:864.723600px;}
.y58{bottom:881.161500px;}
.y57{bottom:881.162100px;}
.y5{bottom:893.757000px;}
.y56{bottom:897.600000px;}
.y55{bottom:897.600600px;}
.y54{bottom:914.038500px;}
.y53{bottom:914.039100px;}
.y52{bottom:930.477000px;}
.y51{bottom:930.477600px;}
.y4{bottom:935.599500px;}
.y50{bottom:946.915500px;}
.y4f{bottom:946.916100px;}
.y4e{bottom:963.354000px;}
.ybc{bottom:979.791600px;}
.y4d{bottom:979.792500px;}
.y2{bottom:995.502000px;}
.ybb{bottom:996.229500px;}
.y4b{bottom:996.230100px;}
.y4c{bottom:996.231000px;}
.y4a{bottom:1012.668000px;}
.y49{bottom:1012.668600px;}
.y104{bottom:1021.975500px;}
.y103{bottom:1021.976250px;}
.y48{bottom:1029.106500px;}
.y47{bottom:1029.107100px;}
.y109{bottom:1036.919250px;}
.y102{bottom:1036.920000px;}
.y101{bottom:1036.920165px;}
.y46{bottom:1045.545000px;}
.y3{bottom:1048.702500px;}
.y108{bottom:1051.863000px;}
.y107{bottom:1051.863165px;}
.yff{bottom:1051.863750px;}
.y100{bottom:1051.864500px;}
.y45{bottom:1061.983500px;}
.yfe{bottom:1066.807500px;}
.y106{bottom:1066.808250px;}
.y44{bottom:1078.422000px;}
.y43{bottom:1078.422600px;}
.yfc{bottom:1081.750665px;}
.y105{bottom:1081.751250px;}
.yfd{bottom:1081.752000px;}
.y42{bottom:1094.860500px;}
.yba{bottom:1094.860650px;}
.yfb{bottom:1096.695000px;}
.y41{bottom:1129.789500px;}
.y1{bottom:1132.411500px;}
.h3{height:0.000000px;}
.h11{height:27.399922px;}
.hb{height:33.289963px;}
.h4{height:34.478653px;}
.h12{height:36.391477px;}
.hc{height:38.665801px;}
.h17{height:40.940582px;}
.h2{height:44.760082px;}
.h19{height:45.188988px;}
.h14{height:45.191332px;}
.hd{height:47.557411px;}
.h18{height:49.117790px;}
.he{height:50.355302px;}
.h13{height:50.838115px;}
.hf{height:50.840459px;}
.h15{height:53.094202px;}
.h16{height:53.097802px;}
.h10{height:53.100202px;}
.h9{height:53.583206px;}
.ha{height:61.761988px;}
.h8{height:62.513591px;}
.h6{height:67.140403px;}
.h7{height:71.443976px;}
.h5{height:80.637540px;}
.h1{height:1190.250000px;}
.h0{height:1190.550000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.199600px;}
.xc2{left:76.230450px;}
.x78{left:80.977200px;}
.x59{left:82.066350px;}
.x9e{left:84.837300px;}
.x5a{left:86.386500px;}
.xae{left:87.514500px;}
.x6f{left:90.687900px;}
.xbc{left:92.059500px;}
.x85{left:93.256650px;}
.x1a5{left:94.640700px;}
.x70{left:96.180450px;}
.x86{left:97.692150px;}
.x17d{left:99.024600px;}
.xa3{left:100.345950px;}
.xb1{left:102.348600px;}
.x194{left:103.491750px;}
.x80{left:104.944950px;}
.x8c{left:106.451400px;}
.x183{left:108.165300px;}
.x36{left:109.408050px;}
.x8d{left:111.198000px;}
.x1a{left:112.554450px;}
.xa8{left:114.493950px;}
.x47{left:116.496150px;}
.x1a3{left:117.720750px;}
.x1b{left:118.851600px;}
.x48{left:120.319350px;}
.x21{left:121.477200px;}
.x66{left:122.844150px;}
.x2{left:124.660500px;}
.x22{left:126.874800px;}
.x3{left:128.259450px;}
.x196{left:129.718350px;}
.x49{left:130.989900px;}
.x87{left:132.414900px;}
.x4a{left:134.813700px;}
.x95{left:136.018350px;}
.xa4{left:137.940000px;}
.x5b{left:139.756500px;}
.x170{left:141.085500px;}
.xb3{left:142.792500px;}
.x5c{left:144.076500px;}
.x18a{left:145.141500px;}
.xc3{left:146.790000px;}
.x4b{left:148.126500px;}
.x19a{left:149.250000px;}
.x96{left:150.705000px;}
.x4c{left:151.950000px;}
.x92{left:153.358500px;}
.xa5{left:154.578000px;}
.x97{left:156.063000px;}
.x10{left:157.863000px;}
.xaf{left:159.445500px;}
.xbd{left:161.200500px;}
.x27{left:162.538500px;}
.x8e{left:163.828500px;}
.x11{left:165.060000px;}
.x171{left:166.143000px;}
.xa9{left:167.365500px;}
.x8f{left:168.576000px;}
.x4d{left:169.771500px;}
.xaa{left:170.794500px;}
.x7c{left:172.867500px;}
.x4{left:174.535500px;}
.x28{left:176.436000px;}
.x5{left:178.134000px;}
.x29{left:180.259500px;}
.xab{left:181.272000px;}
.x98{left:182.451000px;}
.xbe{left:183.910500px;}
.x67{left:185.253000px;}
.x17e{left:186.771000px;}
.x99{left:187.809000px;}
.x1d8{left:189.120000px;}
.x68{left:190.777500px;}
.xb9{left:192.282000px;}
.x37{left:193.399500px;}
.x81{left:195.154500px;}
.x38{left:197.223000px;}
.x5d{left:198.580500px;}
.x88{left:199.672500px;}
.x181{left:200.737500px;}
.xac{left:202.239000px;}
.x195{left:203.346000px;}
.x6{left:204.469500px;}
.xb4{left:206.292000px;}
.x7{left:208.068000px;}
.x5e{left:209.532000px;}
.x184{left:210.939000px;}
.x9{left:212.025000px;}
.x188{left:214.594500px;}
.x4e{left:215.920500px;}
.x71{left:217.060500px;}
.x1c{left:219.172500px;}
.x90{left:220.438500px;}
.x23{left:222.738000px;}
.x175{left:224.332500px;}
.x1d{left:225.471000px;}
.x24{left:228.136500px;}
.x4f{left:229.920000px;}
.x199{left:231.256500px;}
.xc8{left:232.375500px;}
.x50{left:233.743500px;}
.x72{left:235.108500px;}
.x189{left:236.343000px;}
.x2a{left:237.486000px;}
.x89{left:239.466000px;}
.x2b{left:241.309500px;}
.x1a0{left:242.569500px;}
.x1a4{left:243.873000px;}
.x1e{left:245.242500px;}
.xc4{left:246.490500px;}
.x69{left:247.735500px;}
.x39{left:249.546000px;}
.x1f{left:251.539500px;}
.x3a{left:253.369500px;}
.xba{left:254.463000px;}
.x9a{left:255.913500px;}
.x25{left:257.976000px;}
.x3b{left:259.632000px;}
.x179{left:261.447000px;}
.x26{left:263.373000px;}
.x51{left:265.030500px;}
.x185{left:266.523000px;}
.x79{left:267.754500px;}
.x52{left:268.854000px;}
.x17f{left:270.361500px;}
.x8a{left:271.417500px;}
.x7a{left:272.434500px;}
.xbf{left:273.576000px;}
.x73{left:274.827000px;}
.x9f{left:276.835500px;}
.x192{left:278.122500px;}
.x74{left:280.320000px;}
.x19d{left:281.443500px;}
.x9b{left:282.760500px;}
.x6a{left:284.424000px;}
.xb2{left:286.197000px;}
.x5f{left:287.487000px;}
.xad{left:288.735000px;}
.x6b{left:289.950000px;}
.x60{left:291.807000px;}
.x197{left:293.697000px;}
.x12{left:295.084500px;}
.x2c{left:296.491500px;}
.x18e{left:298.024500px;}
.x9c{left:299.145000px;}
.x2d{left:300.313500px;}
.x13{left:302.281500px;}
.x186{left:303.510000px;}
.x61{left:304.584000px;}
.x93{left:305.734500px;}
.xc9{left:307.500000px;}
.x62{left:308.904000px;}
.xb5{left:310.521000px;}
.x6c{left:311.698500px;}
.xc5{left:313.066500px;}
.x82{left:314.836500px;}
.x3c{left:316.668000px;}
.xca{left:318.073500px;}
.xa0{left:319.155000px;}
.x3d{left:320.491500px;}
.x91{left:322.251000px;}
.x7d{left:323.826000px;}
.x53{left:325.230000px;}
.xc0{left:327.045000px;}
.x18f{left:329.037000px;}
.x63{left:330.652500px;}
.x14{left:331.834500px;}
.x190{left:334.042500px;}
.x54{left:335.899500px;}
.xa1{left:337.197000px;}
.x15{left:339.031500px;}
.x198{left:340.261500px;}
.x17a{left:341.362500px;}
.xa2{left:342.460500px;}
.x17c{left:343.555500px;}
.x7e{left:345.175500px;}
.x187{left:346.524000px;}
.x2e{left:347.632500px;}
.x176{left:348.807000px;}
.x18b{left:350.410500px;}
.x2f{left:351.456000px;}
.x55{left:353.035500px;}
.x17b{left:354.037500px;}
.xb6{left:355.648500px;}
.x56{left:356.859000px;}
.xbb{left:358.305000px;}
.xb7{left:359.329500px;}
.x1a2{left:361.206000px;}
.x7f{left:362.731500px;}
.x6d{left:364.057500px;}
.x83{left:365.323500px;}
.x16{left:367.390500px;}
.x19e{left:368.563500px;}
.x6e{left:369.582000px;}
.x57{left:370.857000px;}
.x84{left:371.955000px;}
.x20{left:372.970500px;}
.x17{left:374.587500px;}
.x19f{left:375.775500px;}
.x7b{left:376.885500px;}
.x94{left:378.075000px;}
.x1a1{left:379.254000px;}
.x8{left:380.295000px;}
.xb8{left:381.495000px;}
.x3e{left:382.545000px;}
.x75{left:384.271500px;}
.xa6{left:385.290000px;}
.x3f{left:386.368500px;}
.xa7{left:388.666500px;}
.x76{left:389.764500px;}
.x1d9{left:390.997500px;}
.x8b{left:393.054000px;}
.x9d{left:394.662000px;}
.x30{left:396.654000px;}
.x180{left:398.875500px;}
.x31{left:400.476000px;}
.xb0{left:402.721500px;}
.xc1{left:404.700000px;}
.xc6{left:406.252500px;}
.x64{left:407.724000px;}
.x193{left:408.841500px;}
.xa{left:410.103000px;}
.x65{left:412.044000px;}
.xc7{left:413.664000px;}
.x77{left:414.741000px;}
.x182{left:415.834500px;}
.xb{left:417.201000px;}
.x177{left:419.149500px;}
.x58{left:420.831000px;}
.x18c{left:423.369000px;}
.x178{left:424.819500px;}
.x19b{left:426.975000px;}
.x18d{left:428.208000px;}
.x19c{left:430.227000px;}
.x191{left:432.876000px;}
.x40{left:435.783000px;}
.x41{left:439.606500px;}
.x42{left:453.504000px;}
.x43{left:457.327500px;}
.x15e{left:460.814134px;}
.x151{left:465.051000px;}
.x1a6{left:466.394550px;}
.xe9{left:468.576000px;}
.x167{left:470.391000px;}
.xea{left:471.576000px;}
.x10d{left:473.754000px;}
.xda{left:475.059000px;}
.xdb{left:478.221000px;}
.x32{left:479.616000px;}
.x15f{left:480.828000px;}
.x18{left:483.976500px;}
.x1bc{left:485.512500px;}
.x44{left:488.322000px;}
.xdc{left:489.519000px;}
.x19{left:491.173500px;}
.xdd{left:492.682500px;}
.x10e{left:493.711500px;}
.x1b6{left:495.375000px;}
.x16b{left:496.497000px;}
.x102{left:497.964000px;}
.x160{left:499.263000px;}
.x1c1{left:500.835000px;}
.x103{left:501.877500px;}
.x14c{left:503.721000px;}
.x128{left:505.051500px;}
.xf5{left:507.580500px;}
.x156{left:509.214000px;}
.xf6{left:510.634500px;}
.x13e{left:511.683000px;}
.xcb{left:513.498000px;}
.x1bd{left:515.034000px;}
.xcc{left:516.957000px;}
.x1b1{left:518.428500px;}
.x121{left:519.448500px;}
.x149{left:520.869000px;}
.x118{left:522.247500px;}
.x14a{left:524.056500px;}
.xc{left:526.036500px;}
.x45{left:527.739000px;}
.x152{left:529.753500px;}
.x46{left:531.562500px;}
.xd{left:533.134500px;}
.x153{left:534.238500px;}
.x161{left:535.863000px;}
.x133{left:537.037500px;}
.x1b2{left:538.279500px;}
.x1d7{left:539.368500px;}
.x122{left:540.705000px;}
.x134{left:541.800000px;}
.x1a7{left:543.037500px;}
.x157{left:544.213500px;}
.xde{left:545.395500px;}
.xe{left:547.332000px;}
.xdf{left:548.559000px;}
.x33{left:550.714500px;}
.x144{left:552.741000px;}
.xf{left:554.430000px;}
.x154{left:556.384500px;}
.x119{left:557.634000px;}
.x1be{left:559.159500px;}
.x12c{left:560.394000px;}
.xf7{left:561.757500px;}
.x11a{left:562.959000px;}
.xf8{left:564.813000px;}
.x12d{left:566.764500px;}
.x34{left:568.434000px;}
.x10f{left:570.358500px;}
.x35{left:572.257500px;}
.x129{left:573.645000px;}
.xcd{left:575.896500px;}
.x110{left:576.990000px;}
.x1c9{left:578.145000px;}
.xf9{left:579.634500px;}
.x1c6{left:581.647500px;}
.xfa{left:582.688500px;}
.x12e{left:584.164500px;}
.x1c2{left:585.798000px;}
.x11b{left:588.297000px;}
.x1d1{left:589.516500px;}
.xce{left:590.718000px;}
.xe0{left:592.056000px;}
.xcf{left:594.175500px;}
.xe1{left:595.219500px;}
.x1bf{left:596.268000px;}
.xfb{left:597.376500px;}
.x138{left:598.597500px;}
.xfc{left:600.430500px;}
.x1c5{left:601.569000px;}
.x123{left:602.614500px;}
.x1c8{left:603.661500px;}
.x11c{left:604.935000px;}
.x135{left:606.630000px;}
.x1ad{left:608.161500px;}
.x124{left:609.196500px;}
.x11d{left:610.258500px;}
.x1c7{left:611.991000px;}
.x158{left:613.098000px;}
.x104{left:614.452500px;}
.x1b9{left:615.672000px;}
.x162{left:617.323500px;}
.x105{left:618.366000px;}
.x1ae{left:619.459500px;}
.x168{left:620.964000px;}
.xe2{left:622.066500px;}
.x16c{left:623.500500px;}
.xe3{left:625.230000px;}
.xd0{left:626.604000px;}
.xeb{left:627.759000px;}
.xd1{left:630.061500px;}
.x125{left:632.416500px;}
.x1d6{left:633.637500px;}
.x145{left:635.076000px;}
.xfd{left:636.315000px;}
.xec{left:637.821000px;}
.xfe{left:639.369000px;}
.xed{left:640.821000px;}
.xd2{left:642.838500px;}
.x1d3{left:643.875000px;}
.x1c0{left:645.132000px;}
.xd3{left:646.296000px;}
.x136{left:647.491500px;}
.x159{left:649.375500px;}
.x111{left:651.324000px;}
.x1ca{left:653.650500px;}
.x106{left:654.801000px;}
.x112{left:656.460000px;}
.x163{left:657.486000px;}
.x107{left:658.714500px;}
.x12f{left:660.811500px;}
.x14d{left:661.977000px;}
.x169{left:663.081000px;}
.x11e{left:665.026500px;}
.x1d5{left:666.126000px;}
.x130{left:667.182000px;}
.x113{left:669.237000px;}
.x16d{left:671.173500px;}
.x13f{left:672.300000px;}
.x108{left:673.860000px;}
.x164{left:675.771000px;}
.x140{left:677.101500px;}
.xee{left:678.427500px;}
.x1d2{left:680.064000px;}
.xef{left:681.427500px;}
.x126{left:683.688000px;}
.x114{left:685.402500px;}
.x11f{left:687.192000px;}
.xe4{left:688.404000px;}
.x115{left:690.538500px;}
.xe5{left:691.567500px;}
.x109{left:692.595000px;}
.x12a{left:694.518000px;}
.x10a{left:696.508500px;}
.x1da{left:697.537500px;}
.x1cb{left:698.721000px;}
.x141{left:699.831000px;}
.x1cc{left:701.274000px;}
.x146{left:702.474000px;}
.x1a9{left:703.632000px;}
.x120{left:705.294000px;}
.x1a8{left:706.683000px;}
.xe6{left:708.043500px;}
.x155{left:710.185500px;}
.xe7{left:711.207000px;}
.xd4{left:712.753500px;}
.x1b7{left:714.493500px;}
.xd5{left:716.211000px;}
.x1b3{left:717.801000px;}
.x147{left:718.987500px;}
.xf0{left:720.271500px;}
.x14e{left:721.522500px;}
.xf1{left:723.271500px;}
.x131{left:724.560000px;}
.x116{left:726.423000px;}
.x172{left:728.034000px;}
.xd6{left:729.903000px;}
.x117{left:731.557500px;}
.xd7{left:733.360500px;}
.x127{left:734.481000px;}
.x142{left:735.648000px;}
.xf2{left:737.301000px;}
.xff{left:738.403500px;}
.x1ab{left:740.322000px;}
.x100{left:741.457500px;}
.x1c3{left:743.325000px;}
.x139{left:744.715500px;}
.x1b8{left:745.781133px;}
.x16e{left:746.790000px;}
.x13a{left:748.875000px;}
.x143{left:750.322500px;}
.x132{left:752.679000px;}
.x12b{left:754.161000px;}
.xd8{left:755.526000px;}
.x1aa{left:756.849000px;}
.x1af{left:757.975500px;}
.xd9{left:758.983500px;}
.x1ce{left:760.033500px;}
.x101{left:761.149500px;}
.xe8{left:762.601500px;}
.x13b{left:764.064000px;}
.x1ba{left:765.384000px;}
.x137{left:766.609500px;}
.x1c4{left:768.498000px;}
.x14b{left:769.878634px;}
.x15a{left:771.498000px;}
.x16f{left:772.605000px;}
.x10b{left:773.752500px;}
.x173{left:775.269000px;}
.x165{left:776.367000px;}
.x10c{left:777.666000px;}
.x166{left:779.979000px;}
.x16a{left:781.230000px;}
.x1d0{left:782.379000px;}
.x15b{left:783.646500px;}
.x14f{left:785.545500px;}
.x1b0{left:787.342500px;}
.x174{left:789.136500px;}
.x150{left:790.254000px;}
.x1bb{left:791.616000px;}
.x13c{left:793.438500px;}
.xf3{left:795.607500px;}
.x13d{left:797.598000px;}
.xf4{left:798.607500px;}
.x15c{left:800.284500px;}
.x148{left:801.391500px;}
.x1cd{left:802.821000px;}
.x15d{left:805.371000px;}
.x1cf{left:806.659500px;}
.x1b4{left:809.115000px;}
.x1ac{left:810.388500px;}
.x1b5{left:814.032000px;}
.x1d4{left:818.770500px;}
@media print{
.v2{vertical-align:-16.393760pt;}
.v4{vertical-align:-15.431253pt;}
.v6{vertical-align:-7.172907pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:15.429173pt;}
.v3{vertical-align:17.360000pt;}
.v1{vertical-align:23.146667pt;}
.ls10{letter-spacing:-9.325067pt;}
.ls13{letter-spacing:-8.288907pt;}
.ls12{letter-spacing:-7.056213pt;}
.ls14{letter-spacing:-6.206027pt;}
.ls15{letter-spacing:-3.914912pt;}
.lsb{letter-spacing:-2.996768pt;}
.ls11{letter-spacing:-1.742795pt;}
.lsa{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.002143pt;}
.ls9{letter-spacing:0.525333pt;}
.ls6{letter-spacing:0.527413pt;}
.ls4{letter-spacing:2.654601pt;}
.lsf{letter-spacing:2.655027pt;}
.lse{letter-spacing:2.657107pt;}
.lsd{letter-spacing:2.657267pt;}
.ls5{letter-spacing:2.659934pt;}
.ls2{letter-spacing:13.283667pt;}
.ls3{letter-spacing:13.284539pt;}
.lsc{letter-spacing:16.318601pt;}
.ls8{letter-spacing:17.230560pt;}
.ls7{letter-spacing:18.596482pt;}
.ls1{letter-spacing:21.851764pt;}
.ws4{word-spacing:-23.804032pt;}
.ws5{word-spacing:-17.853099pt;}
.ws10{word-spacing:-16.365291pt;}
.ws6{word-spacing:-14.856331pt;}
.wsf{word-spacing:-13.389824pt;}
.ws7{word-spacing:-12.645845pt;}
.ws1{word-spacing:-11.902016pt;}
.ws2{word-spacing:-11.817002pt;}
.ws3{word-spacing:-0.063761pt;}
.ws9{word-spacing:-0.047821pt;}
.ws8{word-spacing:-0.045164pt;}
.ws0{word-spacing:-0.042507pt;}
.wsc{word-spacing:-0.031881pt;}
.wsa{word-spacing:0.000000pt;}
.ws11{word-spacing:1.700287pt;}
.wsb{word-spacing:17.898671pt;}
.wse{word-spacing:22.011699pt;}
.wsd{word-spacing:27.010645pt;}
._1{margin-left:-10.634556pt;}
._9{margin-left:-8.289839pt;}
._7{margin-left:-6.837561pt;}
._0{margin-left:-5.652948pt;}
._3{margin-left:-4.674874pt;}
._2{margin-left:-3.193098pt;}
._6{margin-left:-1.851952pt;}
._8{width:1.742447pt;}
._5{width:2.997784pt;}
._4{width:7.082743pt;}
.fs1{font-size:0.001067pt;}
.fs6{font-size:31.614400pt;}
.fs9{font-size:31.880533pt;}
.fs0{font-size:42.507200pt;}
.fs7{font-size:45.163733pt;}
.fs8{font-size:47.820800pt;}
.fsa{font-size:58.447467pt;}
.fs3{font-size:63.761067pt;}
.fs5{font-size:74.387733pt;}
.fs4{font-size:85.014400pt;}
.fs2{font-size:100.954667pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:95.108800pt;}
.y3f{bottom:108.392133pt;}
.yb8{bottom:111.106667pt;}
.yb9{bottom:111.106800pt;}
.yfa{bottom:111.277600pt;}
.yf9{bottom:111.278000pt;}
.yf7{bottom:124.560667pt;}
.yf8{bottom:124.561333pt;}
.yb7{bottom:125.718667pt;}
.yb6{bottom:125.719200pt;}
.y3e{bottom:135.124000pt;}
.y3d{bottom:135.124533pt;}
.yf6{bottom:137.844000pt;}
.yf5{bottom:137.845333pt;}
.y33{bottom:139.400813pt;}
.y34{bottom:139.401333pt;}
.yb5{bottom:140.330667pt;}
.yb4{bottom:140.331200pt;}
.y3c{bottom:149.736000pt;}
.y3b{bottom:149.736533pt;}
.yf4{bottom:151.128000pt;}
.yf3{bottom:151.128147pt;}
.y32{bottom:152.684147pt;}
.yb3{bottom:154.942667pt;}
.yb2{bottom:154.943200pt;}
.y3a{bottom:164.348000pt;}
.yf1{bottom:164.410813pt;}
.yf2{bottom:164.412000pt;}
.y31{bottom:165.968000pt;}
.y30{bottom:165.968667pt;}
.yb0{bottom:169.553867pt;}
.yb1{bottom:169.554667pt;}
.yf0{bottom:177.694667pt;}
.y39{bottom:178.960000pt;}
.y2f{bottom:179.252000pt;}
.y2e{bottom:183.109333pt;}
.yae{bottom:184.165333pt;}
.yad{bottom:184.165867pt;}
.yaf{bottom:184.166667pt;}
.yef{bottom:190.978667pt;}
.yee{bottom:190.978813pt;}
.y38{bottom:193.572000pt;}
.y37{bottom:193.572533pt;}
.yac{bottom:198.777333pt;}
.yaa{bottom:198.777867pt;}
.yab{bottom:198.778667pt;}
.yec{bottom:204.262000pt;}
.yed{bottom:204.262667pt;}
.y36{bottom:208.184000pt;}
.y35{bottom:208.184533pt;}
.ya8{bottom:213.389333pt;}
.ya7{bottom:213.389867pt;}
.ya9{bottom:213.390667pt;}
.yeb{bottom:217.545333pt;}
.y2d{bottom:222.796000pt;}
.y2c{bottom:222.796533pt;}
.ya5{bottom:228.001333pt;}
.ya4{bottom:228.001867pt;}
.ya6{bottom:228.002667pt;}
.yea{bottom:230.829333pt;}
.ye9{bottom:230.829480pt;}
.y2b{bottom:237.408000pt;}
.y2a{bottom:237.408533pt;}
.ya3{bottom:242.613333pt;}
.ya2{bottom:242.613867pt;}
.ye7{bottom:244.112667pt;}
.ye8{bottom:244.113333pt;}
.y29{bottom:252.020000pt;}
.ya1{bottom:257.225333pt;}
.ya0{bottom:257.225867pt;}
.ye6{bottom:257.396000pt;}
.y28{bottom:266.632000pt;}
.ye5{bottom:270.680147pt;}
.y9f{bottom:271.837333pt;}
.y9e{bottom:271.837867pt;}
.y26{bottom:281.243200pt;}
.y27{bottom:281.244000pt;}
.ye3{bottom:283.963333pt;}
.ye4{bottom:283.964000pt;}
.y9d{bottom:286.449333pt;}
.y9c{bottom:286.449867pt;}
.y25{bottom:295.854667pt;}
.y24{bottom:295.855200pt;}
.ye2{bottom:297.246667pt;}
.ye1{bottom:297.247333pt;}
.y9b{bottom:301.061333pt;}
.y23{bottom:310.466667pt;}
.y22{bottom:310.467200pt;}
.ye0{bottom:310.530667pt;}
.y9a{bottom:315.673333pt;}
.ydf{bottom:323.814000pt;}
.y21{bottom:325.078667pt;}
.y99{bottom:330.285333pt;}
.y98{bottom:330.285867pt;}
.yde{bottom:337.097333pt;}
.ydd{bottom:337.098000pt;}
.y20{bottom:339.690667pt;}
.y1f{bottom:339.691200pt;}
.y97{bottom:344.897333pt;}
.y96{bottom:344.897867pt;}
.ydb{bottom:350.380147pt;}
.ydc{bottom:350.381333pt;}
.y1e{bottom:354.302667pt;}
.y1d{bottom:354.303200pt;}
.y95{bottom:359.509333pt;}
.y94{bottom:359.509867pt;}
.yda{bottom:363.664000pt;}
.y1c{bottom:368.914667pt;}
.y1b{bottom:368.915200pt;}
.y93{bottom:374.121333pt;}
.yd9{bottom:376.948000pt;}
.yd8{bottom:376.948147pt;}
.y1a{bottom:383.526667pt;}
.y19{bottom:383.527200pt;}
.y92{bottom:388.733333pt;}
.yd6{bottom:390.230813pt;}
.yd7{bottom:390.232000pt;}
.y18{bottom:398.138667pt;}
.y90{bottom:403.344533pt;}
.y91{bottom:403.345333pt;}
.yd5{bottom:403.514667pt;}
.yd4{bottom:403.515333pt;}
.y17{bottom:412.750667pt;}
.yd3{bottom:416.798667pt;}
.yd2{bottom:416.799333pt;}
.y8f{bottom:417.956000pt;}
.y8e{bottom:417.956533pt;}
.y16{bottom:427.362667pt;}
.yd1{bottom:430.082667pt;}
.yd0{bottom:430.082813pt;}
.y8d{bottom:432.568000pt;}
.y8c{bottom:432.568533pt;}
.y15{bottom:441.974667pt;}
.y14{bottom:441.975200pt;}
.yce{bottom:443.365480pt;}
.ycf{bottom:443.366667pt;}
.y8b{bottom:447.180000pt;}
.y13{bottom:456.586667pt;}
.ycd{bottom:456.649333pt;}
.ycc{bottom:456.650000pt;}
.y8a{bottom:461.792000pt;}
.ycb{bottom:469.933333pt;}
.y12{bottom:471.198667pt;}
.y11{bottom:471.199200pt;}
.y89{bottom:476.404000pt;}
.y88{bottom:476.404533pt;}
.yc9{bottom:483.216147pt;}
.yca{bottom:483.217333pt;}
.y10{bottom:485.810667pt;}
.y87{bottom:491.016000pt;}
.y86{bottom:491.016533pt;}
.yc8{bottom:496.500000pt;}
.yc7{bottom:496.500667pt;}
.y85{bottom:505.628000pt;}
.y84{bottom:505.628533pt;}
.yc5{bottom:509.782813pt;}
.yc6{bottom:509.784000pt;}
.y82{bottom:520.239200pt;}
.y83{bottom:520.240000pt;}
.yc4{bottom:523.066667pt;}
.y81{bottom:534.850667pt;}
.y80{bottom:534.852000pt;}
.yc2{bottom:536.350000pt;}
.yc3{bottom:536.350667pt;}
.y7e{bottom:549.463200pt;}
.y7f{bottom:549.464000pt;}
.yc1{bottom:549.633333pt;}
.yc0{bottom:549.633480pt;}
.ybf{bottom:562.917333pt;}
.ybe{bottom:562.917600pt;}
.y7d{bottom:564.074667pt;}
.y7b{bottom:564.075200pt;}
.y7c{bottom:564.076000pt;}
.y79{bottom:578.686667pt;}
.y78{bottom:578.687200pt;}
.y7a{bottom:578.688000pt;}
.ybd{bottom:593.071200pt;}
.y77{bottom:593.298667pt;}
.y75{bottom:593.299200pt;}
.y76{bottom:593.300000pt;}
.y74{bottom:607.910667pt;}
.y72{bottom:607.911200pt;}
.y73{bottom:607.912000pt;}
.y70{bottom:622.522667pt;}
.y6f{bottom:622.523200pt;}
.y71{bottom:622.524000pt;}
.yf{bottom:631.397333pt;}
.ye{bottom:631.397867pt;}
.y6d{bottom:637.134667pt;}
.y6c{bottom:637.135200pt;}
.y6e{bottom:637.136000pt;}
.y6a{bottom:651.746667pt;}
.y69{bottom:651.747200pt;}
.y6b{bottom:651.748000pt;}
.yd{bottom:663.676000pt;}
.y68{bottom:666.358667pt;}
.y67{bottom:666.359200pt;}
.yc{bottom:667.774973pt;}
.yb{bottom:678.288000pt;}
.y65{bottom:680.970667pt;}
.y64{bottom:680.971200pt;}
.y66{bottom:680.972000pt;}
.ya{bottom:682.386667pt;}
.y63{bottom:695.582667pt;}
.y62{bottom:695.583200pt;}
.y61{bottom:710.194667pt;}
.y60{bottom:710.195200pt;}
.y8{bottom:721.459867pt;}
.y9{bottom:721.460000pt;}
.y5f{bottom:724.806667pt;}
.y5e{bottom:724.807200pt;}
.y5d{bottom:739.418667pt;}
.y5c{bottom:739.419200pt;}
.y5b{bottom:754.030667pt;}
.y7{bottom:760.178667pt;}
.y6{bottom:760.178800pt;}
.y5a{bottom:768.642667pt;}
.y59{bottom:768.643200pt;}
.y58{bottom:783.254667pt;}
.y57{bottom:783.255200pt;}
.y5{bottom:794.450667pt;}
.y56{bottom:797.866667pt;}
.y55{bottom:797.867200pt;}
.y54{bottom:812.478667pt;}
.y53{bottom:812.479200pt;}
.y52{bottom:827.090667pt;}
.y51{bottom:827.091200pt;}
.y4{bottom:831.644000pt;}
.y50{bottom:841.702667pt;}
.y4f{bottom:841.703200pt;}
.y4e{bottom:856.314667pt;}
.ybc{bottom:870.925867pt;}
.y4d{bottom:870.926667pt;}
.y2{bottom:884.890667pt;}
.ybb{bottom:885.537333pt;}
.y4b{bottom:885.537867pt;}
.y4c{bottom:885.538667pt;}
.y4a{bottom:900.149333pt;}
.y49{bottom:900.149867pt;}
.y104{bottom:908.422667pt;}
.y103{bottom:908.423333pt;}
.y48{bottom:914.761333pt;}
.y47{bottom:914.761867pt;}
.y109{bottom:921.706000pt;}
.y102{bottom:921.706667pt;}
.y101{bottom:921.706813pt;}
.y46{bottom:929.373333pt;}
.y3{bottom:932.180000pt;}
.y108{bottom:934.989333pt;}
.y107{bottom:934.989480pt;}
.yff{bottom:934.990000pt;}
.y100{bottom:934.990667pt;}
.y45{bottom:943.985333pt;}
.yfe{bottom:948.273333pt;}
.y106{bottom:948.274000pt;}
.y44{bottom:958.597333pt;}
.y43{bottom:958.597867pt;}
.yfc{bottom:961.556147pt;}
.y105{bottom:961.556667pt;}
.yfd{bottom:961.557333pt;}
.y42{bottom:973.209333pt;}
.yba{bottom:973.209467pt;}
.yfb{bottom:974.840000pt;}
.y41{bottom:1004.257333pt;}
.y1{bottom:1006.588000pt;}
.h3{height:0.000000pt;}
.h11{height:24.355486pt;}
.hb{height:29.591078pt;}
.h4{height:30.647691pt;}
.h12{height:32.347979pt;}
.hc{height:34.369601pt;}
.h17{height:36.391629pt;}
.h2{height:39.786739pt;}
.h19{height:40.167989pt;}
.h14{height:40.170073pt;}
.hd{height:42.273254pt;}
.h18{height:43.660258pt;}
.he{height:44.760269pt;}
.h13{height:45.189436pt;}
.hf{height:45.191519pt;}
.h15{height:47.194846pt;}
.h16{height:47.198046pt;}
.h10{height:47.200179pt;}
.h9{height:47.629517pt;}
.ha{height:54.899545pt;}
.h8{height:55.567637pt;}
.h6{height:59.680358pt;}
.h7{height:63.505757pt;}
.h5{height:71.677813pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.266667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.621867pt;}
.xc2{left:67.760400pt;}
.x78{left:71.979733pt;}
.x59{left:72.947867pt;}
.x9e{left:75.410933pt;}
.x5a{left:76.788000pt;}
.xae{left:77.790667pt;}
.x6f{left:80.611467pt;}
.xbc{left:81.830667pt;}
.x85{left:82.894800pt;}
.x1a5{left:84.125067pt;}
.x70{left:85.493733pt;}
.x86{left:86.837467pt;}
.x17d{left:88.021867pt;}
.xa3{left:89.196400pt;}
.xb1{left:90.976533pt;}
.x194{left:91.992667pt;}
.x80{left:93.284400pt;}
.x8c{left:94.623467pt;}
.x183{left:96.146933pt;}
.x36{left:97.251600pt;}
.x8d{left:98.842667pt;}
.x1a{left:100.048400pt;}
.xa8{left:101.772400pt;}
.x47{left:103.552133pt;}
.x1a3{left:104.640667pt;}
.x1b{left:105.645867pt;}
.x48{left:106.950533pt;}
.x21{left:107.979733pt;}
.x66{left:109.194800pt;}
.x2{left:110.809333pt;}
.x22{left:112.777600pt;}
.x3{left:114.008400pt;}
.x196{left:115.305200pt;}
.x49{left:116.435467pt;}
.x87{left:117.702133pt;}
.x4a{left:119.834400pt;}
.x95{left:120.905200pt;}
.xa4{left:122.613333pt;}
.x5b{left:124.228000pt;}
.x170{left:125.409333pt;}
.xb3{left:126.926667pt;}
.x5c{left:128.068000pt;}
.x18a{left:129.014667pt;}
.xc3{left:130.480000pt;}
.x4b{left:131.668000pt;}
.x19a{left:132.666667pt;}
.x96{left:133.960000pt;}
.x4c{left:135.066667pt;}
.x92{left:136.318667pt;}
.xa5{left:137.402667pt;}
.x97{left:138.722667pt;}
.x10{left:140.322667pt;}
.xaf{left:141.729333pt;}
.xbd{left:143.289333pt;}
.x27{left:144.478667pt;}
.x8e{left:145.625333pt;}
.x11{left:146.720000pt;}
.x171{left:147.682667pt;}
.xa9{left:148.769333pt;}
.x8f{left:149.845333pt;}
.x4d{left:150.908000pt;}
.xaa{left:151.817333pt;}
.x7c{left:153.660000pt;}
.x4{left:155.142667pt;}
.x28{left:156.832000pt;}
.x5{left:158.341333pt;}
.x29{left:160.230667pt;}
.xab{left:161.130667pt;}
.x98{left:162.178667pt;}
.xbe{left:163.476000pt;}
.x67{left:164.669333pt;}
.x17e{left:166.018667pt;}
.x99{left:166.941333pt;}
.x1d8{left:168.106667pt;}
.x68{left:169.580000pt;}
.xb9{left:170.917333pt;}
.x37{left:171.910667pt;}
.x81{left:173.470667pt;}
.x38{left:175.309333pt;}
.x5d{left:176.516000pt;}
.x88{left:177.486667pt;}
.x181{left:178.433333pt;}
.xac{left:179.768000pt;}
.x195{left:180.752000pt;}
.x6{left:181.750667pt;}
.xb4{left:183.370667pt;}
.x7{left:184.949333pt;}
.x5e{left:186.250667pt;}
.x184{left:187.501333pt;}
.x9{left:188.466667pt;}
.x188{left:190.750667pt;}
.x4e{left:191.929333pt;}
.x71{left:192.942667pt;}
.x1c{left:194.820000pt;}
.x90{left:195.945333pt;}
.x23{left:197.989333pt;}
.x175{left:199.406667pt;}
.x1d{left:200.418667pt;}
.x24{left:202.788000pt;}
.x4f{left:204.373333pt;}
.x199{left:205.561333pt;}
.xc8{left:206.556000pt;}
.x50{left:207.772000pt;}
.x72{left:208.985333pt;}
.x189{left:210.082667pt;}
.x2a{left:211.098667pt;}
.x89{left:212.858667pt;}
.x2b{left:214.497333pt;}
.x1a0{left:215.617333pt;}
.x1a4{left:216.776000pt;}
.x1e{left:217.993333pt;}
.xc4{left:219.102667pt;}
.x69{left:220.209333pt;}
.x39{left:221.818667pt;}
.x1f{left:223.590667pt;}
.x3a{left:225.217333pt;}
.xba{left:226.189333pt;}
.x9a{left:227.478667pt;}
.x25{left:229.312000pt;}
.x3b{left:230.784000pt;}
.x179{left:232.397333pt;}
.x26{left:234.109333pt;}
.x51{left:235.582667pt;}
.x185{left:236.909333pt;}
.x79{left:238.004000pt;}
.x52{left:238.981333pt;}
.x17f{left:240.321333pt;}
.x8a{left:241.260000pt;}
.x7a{left:242.164000pt;}
.xbf{left:243.178667pt;}
.x73{left:244.290667pt;}
.x9f{left:246.076000pt;}
.x192{left:247.220000pt;}
.x74{left:249.173333pt;}
.x19d{left:250.172000pt;}
.x9b{left:251.342667pt;}
.x6a{left:252.821333pt;}
.xb2{left:254.397333pt;}
.x5f{left:255.544000pt;}
.xad{left:256.653333pt;}
.x6b{left:257.733333pt;}
.x60{left:259.384000pt;}
.x197{left:261.064000pt;}
.x12{left:262.297333pt;}
.x2c{left:263.548000pt;}
.x18e{left:264.910667pt;}
.x9c{left:265.906667pt;}
.x2d{left:266.945333pt;}
.x13{left:268.694667pt;}
.x186{left:269.786667pt;}
.x61{left:270.741333pt;}
.x93{left:271.764000pt;}
.xc9{left:273.333333pt;}
.x62{left:274.581333pt;}
.xb5{left:276.018667pt;}
.x6c{left:277.065333pt;}
.xc5{left:278.281333pt;}
.x82{left:279.854667pt;}
.x3c{left:281.482667pt;}
.xca{left:282.732000pt;}
.xa0{left:283.693333pt;}
.x3d{left:284.881333pt;}
.x91{left:286.445333pt;}
.x7d{left:287.845333pt;}
.x53{left:289.093333pt;}
.xc0{left:290.706667pt;}
.x18f{left:292.477333pt;}
.x63{left:293.913333pt;}
.x14{left:294.964000pt;}
.x190{left:296.926667pt;}
.x54{left:298.577333pt;}
.xa1{left:299.730667pt;}
.x15{left:301.361333pt;}
.x198{left:302.454667pt;}
.x17a{left:303.433333pt;}
.xa2{left:304.409333pt;}
.x17c{left:305.382667pt;}
.x7e{left:306.822667pt;}
.x187{left:308.021333pt;}
.x2e{left:309.006667pt;}
.x176{left:310.050667pt;}
.x18b{left:311.476000pt;}
.x2f{left:312.405333pt;}
.x55{left:313.809333pt;}
.x17b{left:314.700000pt;}
.xb6{left:316.132000pt;}
.x56{left:317.208000pt;}
.xbb{left:318.493333pt;}
.xb7{left:319.404000pt;}
.x1a2{left:321.072000pt;}
.x7f{left:322.428000pt;}
.x6d{left:323.606667pt;}
.x83{left:324.732000pt;}
.x16{left:326.569333pt;}
.x19e{left:327.612000pt;}
.x6e{left:328.517333pt;}
.x57{left:329.650667pt;}
.x84{left:330.626667pt;}
.x20{left:331.529333pt;}
.x17{left:332.966667pt;}
.x19f{left:334.022667pt;}
.x7b{left:335.009333pt;}
.x94{left:336.066667pt;}
.x1a1{left:337.114667pt;}
.x8{left:338.040000pt;}
.xb8{left:339.106667pt;}
.x3e{left:340.040000pt;}
.x75{left:341.574667pt;}
.xa6{left:342.480000pt;}
.x3f{left:343.438667pt;}
.xa7{left:345.481333pt;}
.x76{left:346.457333pt;}
.x1d9{left:347.553333pt;}
.x8b{left:349.381333pt;}
.x9d{left:350.810667pt;}
.x30{left:352.581333pt;}
.x180{left:354.556000pt;}
.x31{left:355.978667pt;}
.xb0{left:357.974667pt;}
.xc1{left:359.733333pt;}
.xc6{left:361.113333pt;}
.x64{left:362.421333pt;}
.x193{left:363.414667pt;}
.xa{left:364.536000pt;}
.x65{left:366.261333pt;}
.xc7{left:367.701333pt;}
.x77{left:368.658667pt;}
.x182{left:369.630667pt;}
.xb{left:370.845333pt;}
.x177{left:372.577333pt;}
.x58{left:374.072000pt;}
.x18c{left:376.328000pt;}
.x178{left:377.617333pt;}
.x19b{left:379.533333pt;}
.x18d{left:380.629333pt;}
.x19c{left:382.424000pt;}
.x191{left:384.778667pt;}
.x40{left:387.362667pt;}
.x41{left:390.761333pt;}
.x42{left:403.114667pt;}
.x43{left:406.513333pt;}
.x15e{left:409.612563pt;}
.x151{left:413.378667pt;}
.x1a6{left:414.572933pt;}
.xe9{left:416.512000pt;}
.x167{left:418.125333pt;}
.xea{left:419.178667pt;}
.x10d{left:421.114667pt;}
.xda{left:422.274667pt;}
.xdb{left:425.085333pt;}
.x32{left:426.325333pt;}
.x15f{left:427.402667pt;}
.x18{left:430.201333pt;}
.x1bc{left:431.566667pt;}
.x44{left:434.064000pt;}
.xdc{left:435.128000pt;}
.x19{left:436.598667pt;}
.xdd{left:437.940000pt;}
.x10e{left:438.854667pt;}
.x1b6{left:440.333333pt;}
.x16b{left:441.330667pt;}
.x102{left:442.634667pt;}
.x160{left:443.789333pt;}
.x1c1{left:445.186667pt;}
.x103{left:446.113333pt;}
.x14c{left:447.752000pt;}
.x128{left:448.934667pt;}
.xf5{left:451.182667pt;}
.x156{left:452.634667pt;}
.xf6{left:453.897333pt;}
.x13e{left:454.829333pt;}
.xcb{left:456.442667pt;}
.x1bd{left:457.808000pt;}
.xcc{left:459.517333pt;}
.x1b1{left:460.825333pt;}
.x121{left:461.732000pt;}
.x149{left:462.994667pt;}
.x118{left:464.220000pt;}
.x14a{left:465.828000pt;}
.xc{left:467.588000pt;}
.x45{left:469.101333pt;}
.x152{left:470.892000pt;}
.x46{left:472.500000pt;}
.xd{left:473.897333pt;}
.x153{left:474.878667pt;}
.x161{left:476.322667pt;}
.x133{left:477.366667pt;}
.x1b2{left:478.470667pt;}
.x1d7{left:479.438667pt;}
.x122{left:480.626667pt;}
.x134{left:481.600000pt;}
.x1a7{left:482.700000pt;}
.x157{left:483.745333pt;}
.xde{left:484.796000pt;}
.xe{left:486.517333pt;}
.xdf{left:487.608000pt;}
.x33{left:489.524000pt;}
.x144{left:491.325333pt;}
.xf{left:492.826667pt;}
.x154{left:494.564000pt;}
.x119{left:495.674667pt;}
.x1be{left:497.030667pt;}
.x12c{left:498.128000pt;}
.xf7{left:499.340000pt;}
.x11a{left:500.408000pt;}
.xf8{left:502.056000pt;}
.x12d{left:503.790667pt;}
.x34{left:505.274667pt;}
.x10f{left:506.985333pt;}
.x35{left:508.673333pt;}
.x129{left:509.906667pt;}
.xcd{left:511.908000pt;}
.x110{left:512.880000pt;}
.x1c9{left:513.906667pt;}
.xf9{left:515.230667pt;}
.x1c6{left:517.020000pt;}
.xfa{left:517.945333pt;}
.x12e{left:519.257333pt;}
.x1c2{left:520.709333pt;}
.x11b{left:522.930667pt;}
.x1d1{left:524.014667pt;}
.xce{left:525.082667pt;}
.xe0{left:526.272000pt;}
.xcf{left:528.156000pt;}
.xe1{left:529.084000pt;}
.x1bf{left:530.016000pt;}
.xfb{left:531.001333pt;}
.x138{left:532.086667pt;}
.xfc{left:533.716000pt;}
.x1c5{left:534.728000pt;}
.x123{left:535.657333pt;}
.x1c8{left:536.588000pt;}
.x11c{left:537.720000pt;}
.x135{left:539.226667pt;}
.x1ad{left:540.588000pt;}
.x124{left:541.508000pt;}
.x11d{left:542.452000pt;}
.x1c7{left:543.992000pt;}
.x158{left:544.976000pt;}
.x104{left:546.180000pt;}
.x1b9{left:547.264000pt;}
.x162{left:548.732000pt;}
.x105{left:549.658667pt;}
.x1ae{left:550.630667pt;}
.x168{left:551.968000pt;}
.xe2{left:552.948000pt;}
.x16c{left:554.222667pt;}
.xe3{left:555.760000pt;}
.xd0{left:556.981333pt;}
.xeb{left:558.008000pt;}
.xd1{left:560.054667pt;}
.x125{left:562.148000pt;}
.x1d6{left:563.233333pt;}
.x145{left:564.512000pt;}
.xfd{left:565.613333pt;}
.xec{left:566.952000pt;}
.xfe{left:568.328000pt;}
.xed{left:569.618667pt;}
.xd2{left:571.412000pt;}
.x1d3{left:572.333333pt;}
.x1c0{left:573.450667pt;}
.xd3{left:574.485333pt;}
.x136{left:575.548000pt;}
.x159{left:577.222667pt;}
.x111{left:578.954667pt;}
.x1ca{left:581.022667pt;}
.x106{left:582.045333pt;}
.x112{left:583.520000pt;}
.x163{left:584.432000pt;}
.x107{left:585.524000pt;}
.x12f{left:587.388000pt;}
.x14d{left:588.424000pt;}
.x169{left:589.405333pt;}
.x11e{left:591.134667pt;}
.x1d5{left:592.112000pt;}
.x130{left:593.050667pt;}
.x113{left:594.877333pt;}
.x16d{left:596.598667pt;}
.x13f{left:597.600000pt;}
.x108{left:598.986667pt;}
.x164{left:600.685333pt;}
.x140{left:601.868000pt;}
.xee{left:603.046667pt;}
.x1d2{left:604.501333pt;}
.xef{left:605.713333pt;}
.x126{left:607.722667pt;}
.x114{left:609.246667pt;}
.x11f{left:610.837333pt;}
.xe4{left:611.914667pt;}
.x115{left:613.812000pt;}
.xe5{left:614.726667pt;}
.x109{left:615.640000pt;}
.x12a{left:617.349333pt;}
.x10a{left:619.118667pt;}
.x1da{left:620.033333pt;}
.x1cb{left:621.085333pt;}
.x141{left:622.072000pt;}
.x1cc{left:623.354667pt;}
.x146{left:624.421333pt;}
.x1a9{left:625.450667pt;}
.x120{left:626.928000pt;}
.x1a8{left:628.162667pt;}
.xe6{left:629.372000pt;}
.x155{left:631.276000pt;}
.xe7{left:632.184000pt;}
.xd4{left:633.558667pt;}
.x1b7{left:635.105333pt;}
.xd5{left:636.632000pt;}
.x1b3{left:638.045333pt;}
.x147{left:639.100000pt;}
.xf0{left:640.241333pt;}
.x14e{left:641.353333pt;}
.xf1{left:642.908000pt;}
.x131{left:644.053333pt;}
.x116{left:645.709333pt;}
.x172{left:647.141333pt;}
.xd6{left:648.802667pt;}
.x117{left:650.273333pt;}
.xd7{left:651.876000pt;}
.x127{left:652.872000pt;}
.x142{left:653.909333pt;}
.xf2{left:655.378667pt;}
.xff{left:656.358667pt;}
.x1ab{left:658.064000pt;}
.x100{left:659.073333pt;}
.x1c3{left:660.733333pt;}
.x139{left:661.969333pt;}
.x1b8{left:662.916563pt;}
.x16e{left:663.813333pt;}
.x13a{left:665.666667pt;}
.x143{left:666.953333pt;}
.x132{left:669.048000pt;}
.x12b{left:670.365333pt;}
.xd8{left:671.578667pt;}
.x1aa{left:672.754667pt;}
.x1af{left:673.756000pt;}
.xd9{left:674.652000pt;}
.x1ce{left:675.585333pt;}
.x101{left:676.577333pt;}
.xe8{left:677.868000pt;}
.x13b{left:679.168000pt;}
.x1ba{left:680.341333pt;}
.x137{left:681.430667pt;}
.x1c4{left:683.109333pt;}
.x14b{left:684.336563pt;}
.x15a{left:685.776000pt;}
.x16f{left:686.760000pt;}
.x10b{left:687.780000pt;}
.x173{left:689.128000pt;}
.x165{left:690.104000pt;}
.x10c{left:691.258667pt;}
.x166{left:693.314667pt;}
.x16a{left:694.426667pt;}
.x1d0{left:695.448000pt;}
.x15b{left:696.574667pt;}
.x14f{left:698.262667pt;}
.x1b0{left:699.860000pt;}
.x174{left:701.454667pt;}
.x150{left:702.448000pt;}
.x1bb{left:703.658667pt;}
.x13c{left:705.278667pt;}
.xf3{left:707.206667pt;}
.x13d{left:708.976000pt;}
.xf4{left:709.873333pt;}
.x15c{left:711.364000pt;}
.x148{left:712.348000pt;}
.x1cd{left:713.618667pt;}
.x15d{left:715.885333pt;}
.x1cf{left:717.030667pt;}
.x1b4{left:719.213333pt;}
.x1ac{left:720.345333pt;}
.x1b5{left:723.584000pt;}
.x1d4{left:727.796000pt;}
}




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