
    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_3c5a6a77f2dfc63be5627d8d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_aae3e393a59fc5a1138c2dca.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_352cec77a89416aa6fd6cf87.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_2ff14c1e29d5a95485571b53.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_b6e5eb5eb9807d9eb181b08f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.115723;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_f04a791144096070dc2bc122.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_a944011644aae9cea2ea1517.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_55c92a377bad7d0fa8ded580.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_0b92c5c7d52f18e06bf161b3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_46e30672bc13cf967e08970c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.113281;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_95225beb8622577ccb048a56.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_b0c2cba51ce52f6dccfe024d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.055664;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9ea4853f629b4a8203cc2edb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.599965px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.605946px;}
.ls10{letter-spacing:-6.599989px;}
.lse{letter-spacing:-0.575999px;}
.lsa{letter-spacing:-0.551999px;}
.ls14{letter-spacing:-0.479999px;}
.ls13{letter-spacing:-0.431999px;}
.ls1e{letter-spacing:-0.417599px;}
.ls6{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.007200px;}
.ls1a{letter-spacing:0.048000px;}
.ls8{letter-spacing:0.096000px;}
.ls1{letter-spacing:0.156000px;}
.lsb{letter-spacing:0.199200px;}
.ls11{letter-spacing:0.210000px;}
.ls4{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.371999px;}
.ls3{letter-spacing:0.398399px;}
.ls5{letter-spacing:0.431999px;}
.ls1d{letter-spacing:0.551999px;}
.lsd{letter-spacing:0.623999px;}
.ls7{letter-spacing:0.641999px;}
.ls1c{letter-spacing:0.719999px;}
.ls18{letter-spacing:0.851999px;}
.ls12{letter-spacing:0.905999px;}
.lsf{letter-spacing:0.911999px;}
.lsc{letter-spacing:0.923999px;}
.ls16{letter-spacing:1.631997px;}
.ls17{letter-spacing:2.111997px;}
.ls21{letter-spacing:42.884331px;}
.ls1b{letter-spacing:43.043931px;}
.ls19{letter-spacing:49.091921px;}
.ls15{letter-spacing:53.717914px;}
.ls20{letter-spacing:60.884303px;}
.ls0{letter-spacing:837.650260px;}
.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;}
}
.ws0{word-spacing:-156.833449px;}
.ws5{word-spacing:-33.359947px;}
.ws10{word-spacing:-28.319955px;}
.ws9{word-spacing:-27.599956px;}
.ws11{word-spacing:-27.407956px;}
.wsa{word-spacing:-27.311956px;}
.wsd{word-spacing:-27.119957px;}
.ws4{word-spacing:-26.975957px;}
.ws3{word-spacing:-26.687957px;}
.ws7{word-spacing:-26.399958px;}
.wse{word-spacing:-26.255958px;}
.wsf{word-spacing:-26.207958px;}
.ws8{word-spacing:-26.111958px;}
.wsc{word-spacing:-25.019960px;}
.ws13{word-spacing:-23.903962px;}
.ws6{word-spacing:-23.447962px;}
.ws2{word-spacing:-23.351963px;}
.wsb{word-spacing:-20.087968px;}
.ws12{word-spacing:-17.680772px;}
.ws1{word-spacing:0.000000px;}
._19{margin-left:-22.706788px;}
._18{margin-left:-17.468183px;}
._6a{margin-left:-11.468438px;}
._35{margin-left:-10.465446px;}
._13{margin-left:-8.519986px;}
._65{margin-left:-7.100979px;}
._6{margin-left:-6.050914px;}
._12{margin-left:-4.446734px;}
._4{margin-left:-3.360667px;}
._11{margin-left:-2.304755px;}
._7{margin-left:-1.224140px;}
._5{width:1.011091px;}
._3{width:2.253161px;}
._a{width:3.577905px;}
._e{width:4.806466px;}
._10{width:6.206308px;}
._c{width:7.238217px;}
._d{width:9.122889px;}
._f{width:10.437054px;}
._16{width:12.178625px;}
._2b{width:13.751780px;}
._2d{width:15.129087px;}
._33{width:16.887078px;}
._24{width:18.417643px;}
._36{width:19.717581px;}
._2c{width:20.800511px;}
._23{width:21.846540px;}
._32{width:23.826593px;}
._34{width:25.044018px;}
._1b{width:26.070345px;}
._b{width:27.341205px;}
._4e{width:28.542522px;}
._2a{width:29.847426px;}
._29{width:31.517928px;}
._3a{width:32.536520px;}
._1c{width:33.602922px;}
._1d{width:35.335305px;}
._20{width:36.913412px;}
._1f{width:38.209519px;}
._25{width:39.451236px;}
._3c{width:41.438233px;}
._14{width:42.584152px;}
._15{width:43.651841px;}
._27{width:45.485043px;}
._26{width:46.742905px;}
._28{width:47.993343px;}
._45{width:49.603531px;}
._9{width:51.261458px;}
._2e{width:52.403412px;}
._8{width:53.582052px;}
._3d{width:54.607638px;}
._3e{width:56.288651px;}
._67{width:57.883413px;}
._3f{width:59.220741px;}
._5b{width:60.820819px;}
._2f{width:62.204244px;}
._17{width:63.334428px;}
._6c{width:64.477201px;}
._41{width:65.693102px;}
._40{width:66.878324px;}
._6b{width:67.901090px;}
._4c{width:68.933507px;}
._1e{width:70.434094px;}
._37{width:71.476397px;}
._56{width:73.438434px;}
._4d{width:75.317375px;}
._50{width:76.616926px;}
._22{width:78.595491px;}
._3b{width:80.421220px;}
._48{width:82.019133px;}
._52{width:85.094913px;}
._57{width:87.121414px;}
._31{width:88.948559px;}
._4a{width:90.214915px;}
._69{width:91.326656px;}
._60{width:93.693595px;}
._61{width:95.642432px;}
._68{width:97.453637px;}
._38{width:99.331409px;}
._63{width:105.822177px;}
._42{width:109.725904px;}
._43{width:112.697793px;}
._44{width:114.414135px;}
._51{width:116.075179px;}
._46{width:119.610049px;}
._4b{width:121.607325px;}
._59{width:122.625333px;}
._5e{width:124.316708px;}
._5d{width:125.601465px;}
._5f{width:126.779244px;}
._49{width:131.215657px;}
._55{width:132.417006px;}
._64{width:134.613166px;}
._5a{width:137.269773px;}
._21{width:140.707046px;}
._47{width:153.275818px;}
._5c{width:162.797740px;}
._62{width:166.502591px;}
._54{width:185.729021px;}
._4f{width:191.683778px;}
._66{width:194.520602px;}
._30{width:197.277773px;}
._58{width:198.395683px;}
._53{width:213.368482px;}
._1{width:261.244382px;}
._39{width:331.333231px;}
._2{width:918.038131px;}
._1a{width:1693.548890px;}
._0{width:1812.342700px;}
._6d{width:2685.983302px;}
.fc8{color:rgb(0,26,87);}
.fc7{color:rgb(0,0,204);}
.fc5{color:rgb(0,21,64);}
.fc6{color:rgb(46,127,0);}
.fc4{color:rgb(0,32,96);}
.fc3{color:transparent;}
.fc1{color:rgb(255,255,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:5.999990px;}
.fsa{font-size:11.999981px;}
.fsf{font-size:39.599937px;}
.fs9{font-size:47.999923px;}
.fs8{font-size:59.999904px;}
.fse{font-size:63.599898px;}
.fsd{font-size:65.999894px;}
.fs7{font-size:71.999885px;}
.fsc{font-size:83.999866px;}
.fs6{font-size:87.599860px;}
.fsb{font-size:89.999856px;}
.fs0{font-size:95.999846px;}
.fs5{font-size:101.999837px;}
.fs2{font-size:119.999808px;}
.fs4{font-size:167.999731px;}
.fs3{font-size:564.149097px;}
.y0{bottom:0.000000px;}
.y141{bottom:16.199701px;}
.y145{bottom:16.496875px;}
.y13d{bottom:16.499946px;}
.y136{bottom:16.514582px;}
.yc{bottom:20.112844px;}
.y139{bottom:23.396099px;}
.y13{bottom:33.298542px;}
.y11{bottom:34.198706px;}
.y1a7{bottom:40.198898px;}
.y140{bottom:52.496643px;}
.y144{bottom:52.496818px;}
.y135{bottom:52.546024px;}
.y13c{bottom:52.801387px;}
.y3{bottom:58.837406px;}
.y138{bottom:59.378042px;}
.y198{bottom:63.337536px;}
.yb{bottom:63.911274px;}
.y10{bottom:78.298636px;}
.y1a6{bottom:81.598832px;}
.y2{bottom:86.138262px;}
.y13f{bottom:88.798085px;}
.y143{bottom:88.798260px;}
.y13b{bottom:89.143329px;}
.ya{bottom:108.042704px;}
.yf{bottom:122.101566px;}
.y1a5{bottom:123.038666px;}
.y158{bottom:131.436390px;}
.yef{bottom:133.236387px;}
.y2e{bottom:133.838186px;}
.yff{bottom:136.836381px;}
.yba{bottom:138.338179px;}
.y189{bottom:140.436375px;}
.ya1{bottom:147.937263px;}
.y59{bottom:148.837262px;}
.y162{bottom:149.138161px;}
.y124{bottom:150.331259px;}
.y132{bottom:153.931254px;}
.y8f{bottom:156.631249px;}
.y41{bottom:158.129747px;}
.y157{bottom:164.429737px;}
.y1a4{bottom:164.438600px;}
.y2d{bottom:164.731236px;}
.y9{bottom:165.341112px;}
.ye{bottom:166.228495px;}
.y180{bottom:169.573229px;}
.yee{bottom:174.676221px;}
.yfe{bottom:178.276215px;}
.yb9{bottom:179.774712px;}
.y17a{bottom:180.373211px;}
.y188{bottom:181.876209px;}
.y58{bottom:190.273196px;}
.y8e{bottom:192.973191px;}
.y161{bottom:193.873190px;}
.y123{bottom:195.376187px;}
.y2c{bottom:195.974686px;}
.y1a3{bottom:196.235549px;}
.y14b{bottom:201.073178px;}
.y156{bottom:205.874671px;}
.y40{bottom:209.776164px;}
.y17f{bottom:210.973162px;}
.yd{bottom:211.874400px;}
.yed{bottom:216.076154px;}
.yfd{bottom:219.676149px;}
.yb8{bottom:221.174646px;}
.y179{bottom:221.773145px;}
.y14a{bottom:223.573142px;}
.y1a2{bottom:226.538500px;}
.y187{bottom:226.574637px;}
.y2b{bottom:226.876137px;}
.yd2{bottom:228.073135px;}
.y8d{bottom:229.274633px;}
.y57{bottom:231.673129px;}
.ya0{bottom:234.373125px;}
.y122{bottom:236.776121px;}
.y160{bottom:238.576118px;}
.y155{bottom:240.074616px;}
.y3f{bottom:244.876108px;}
.y82{bottom:247.873103px;}
.y8{bottom:250.584476px;}
.y149{bottom:251.176098px;}
.y17e{bottom:252.373096px;}
.yd1{bottom:256.576089px;}
.yec{bottom:257.476088px;}
.y2a{bottom:258.074587px;}
.yb7{bottom:262.574580px;}
.y178{bottom:263.173079px;}
.yfc{bottom:264.374577px;}
.y8c{bottom:265.274576px;}
.y1a1{bottom:267.938434px;}
.y186{bottom:267.974571px;}
.y3e{bottom:272.173065px;}
.y56{bottom:273.073063px;}
.y81{bottom:275.773059px;}
.y121{bottom:278.176055px;}
.y15f{bottom:283.274547px;}
.yd0{bottom:285.074544px;}
.y29{bottom:288.976038px;}
.y148{bottom:292.576032px;}
.y17d{bottom:293.773030px;}
.yeb{bottom:298.876022px;}
.y3d{bottom:300.676019px;}
.y8b{bottom:301.576017px;}
.yb6{bottom:303.974514px;}
.y177{bottom:304.573013px;}
.yfb{bottom:309.073005px;}
.y1a0{bottom:309.365368px;}
.y80{bottom:311.773001px;}
.y185{bottom:312.673000px;}
.y55{bottom:314.472997px;}
.y9f{bottom:317.172993px;}
.y15e{bottom:317.474492px;}
.ycf{bottom:318.374491px;}
.y120{bottom:319.575989px;}
.y28{bottom:320.174488px;}
.y17c{bottom:327.972975px;}
.y3c{bottom:328.872974px;}
.y18f{bottom:333.075967px;}
.y147{bottom:333.975966px;}
.y8a{bottom:337.904459px;}
.yea{bottom:340.320955px;}
.yb5{bottom:345.419447px;}
.y176{bottom:346.004446px;}
.y7f{bottom:348.119443px;}
.yfa{bottom:350.504439px;}
.y19f{bottom:350.783301px;}
.y27{bottom:351.102938px;}
.y3b{bottom:352.619436px;}
.y184{bottom:354.405933px;}
.y54{bottom:355.917931px;}
.yce{bottom:357.402928px;}
.y9e{bottom:358.617926px;}
.y11f{bottom:361.002922px;}
.y131{bottom:363.405919px;}
.y18e{bottom:366.119414px;}
.y89{bottom:373.904402px;}
.y146{bottom:375.420899px;}
.y197{bottom:376.617897px;}
.ye9{bottom:381.720889px;}
.y19e{bottom:382.566751px;}
.y7e{bottom:384.402885px;}
.y26{bottom:386.819381px;}
.y175{bottom:387.404380px;}
.y3a{bottom:388.304379px;}
.y154{bottom:390.117876px;}
.yf9{bottom:391.904373px;}
.y17b{bottom:395.220868px;}
.ycd{bottom:396.120866px;}
.y53{bottom:397.317864px;}
.y142{bottom:398.820960px;}
.y183{bottom:399.117861px;}
.y9d{bottom:400.004360px;}
.y11e{bottom:402.420856px;}
.y130{bottom:404.819352px;}
.y18d{bottom:407.505848px;}
.y88{bottom:410.205844px;}
.y19d{bottom:412.865202px;}
.y196{bottom:418.004331px;}
.y7d{bottom:420.704327px;}
.y174{bottom:421.617825px;}
.ye8{bottom:423.120823px;}
.y25{bottom:428.205815px;}
.yb4{bottom:429.119313px;}
.yf8{bottom:433.317807px;}
.ycc{bottom:434.820804px;}
.y6b{bottom:438.119299px;}
.y52{bottom:438.704298px;}
.y182{bottom:440.504295px;}
.y9c{bottom:441.404294px;}
.y11d{bottom:443.820790px;}
.y12f{bottom:446.205786px;}
.y87{bottom:446.502786px;}
.y18c{bottom:448.905782px;}
.y19c{bottom:454.310136px;}
.y173{bottom:454.620773px;}
.y7c{bottom:456.704269px;}
.ye7{bottom:457.320768px;}
.y195{bottom:459.404265px;}
.y39{bottom:460.902763px;}
.y153{bottom:464.502757px;}
.y24{bottom:469.619249px;}
.yb3{bottom:470.505747px;}
.ycb{bottom:473.817742px;}
.yf7{bottom:474.704240px;}
.y181{bottom:478.002735px;}
.y51{bottom:480.117732px;}
.y6a{bottom:482.817727px;}
.y11c{bottom:485.202724px;}
.y172{bottom:489.117717px;}
.ye6{bottom:490.319215px;}
.y12e{bottom:490.620715px;}
.y7b{bottom:493.005711px;}
.y19b{bottom:495.710070px;}
.y152{bottom:498.702702px;}
.y194{bottom:500.817699px;}
.y13e{bottom:508.350960px;}
.y23{bottom:511.050682px;}
.yb2{bottom:511.950681px;}
.yca{bottom:512.549180px;}
.yf6{bottom:516.149174px;}
.y69{bottom:518.849170px;}
.y50{bottom:521.549166px;}
.y171{bottom:522.147665px;}
.y9b{bottom:524.249161px;}
.y11b{bottom:526.647657px;}
.y7a{bottom:529.347653px;}
.ye5{bottom:531.750649px;}
.y38{bottom:533.249147px;}
.y19a{bottom:537.110003px;}
.y12d{bottom:538.347639px;}
.y12{bottom:540.149040px;}
.y193{bottom:542.249132px;}
.y10d{bottom:545.849127px;}
.yc9{bottom:551.550618px;}
.y22{bottom:552.450616px;}
.yb1{bottom:553.350615px;}
.y68{bottom:555.150612px;}
.yf5{bottom:557.549108px;}
.y4f{bottom:562.949099px;}
.y170{bottom:563.547598px;}
.y79{bottom:565.649095px;}
.y11a{bottom:568.047591px;}
.ye4{bottom:573.150583px;}
.y199{bottom:578.509937px;}
.y37{bottom:581.849069px;}
.yb0{bottom:583.649066px;}
.y12c{bottom:586.349062px;}
.y10c{bottom:587.249060px;}
.yc8{bottom:590.250556px;}
.y67{bottom:591.447554px;}
.y21{bottom:593.850550px;}
.yf4{bottom:598.949042px;}
.y78{bottom:601.649037px;}
.y4e{bottom:604.349033px;}
.y9a{bottom:607.049029px;}
.y16f{bottom:608.250527px;}
.y119{bottom:609.447525px;}
.yaf{bottom:613.947518px;}
.ye3{bottom:614.550517px;}
.y13a{bottom:617.549040px;}
.y192{bottom:625.049000px;}
.y36{bottom:626.547498px;}
.y66{bottom:627.748996px;}
.y10b{bottom:628.648994px;}
.yc7{bottom:628.950494px;}
.y12b{bottom:634.048986px;}
.y20{bottom:635.250484px;}
.y77{bottom:637.950479px;}
.yf3{bottom:640.348975px;}
.yae{bottom:644.250469px;}
.y4d{bottom:645.748967px;}
.y99{bottom:648.448962px;}
.y151{bottom:648.750462px;}
.y118{bottom:650.847459px;}
.y16e{bottom:652.948955px;}
.ye2{bottom:655.950450px;}
.y65{bottom:663.748938px;}
.y191{bottom:666.448934px;}
.yc6{bottom:667.947431px;}
.y10a{bottom:670.048928px;}
.y76{bottom:674.247421px;}
.yad{bottom:674.850420px;}
.y1f{bottom:676.695417px;}
.yf2{bottom:681.780409px;}
.y12a{bottom:682.077409px;}
.y4c{bottom:687.193900px;}
.y98{bottom:689.880396px;}
.y117{bottom:692.278892px;}
.y16d{bottom:694.380389px;}
.ye1{bottom:697.377384px;}
.y35{bottom:698.880382px;}
.y64{bottom:700.095380px;}
.yc5{bottom:706.692369px;}
.y15d{bottom:707.880367px;}
.y75{bottom:710.593863px;}
.y109{bottom:711.480362px;}
.yac{bottom:716.277354px;}
.y1e{bottom:718.077351px;}
.yf1{bottom:723.180343px;}
.y137{bottom:727.099200px;}
.y4b{bottom:728.580334px;}
.y129{bottom:730.078832px;}
.y97{bottom:731.280330px;}
.y116{bottom:733.692326px;}
.y63{bottom:736.378822px;}
.ye0{bottom:738.777318px;}
.y16c{bottom:739.092317px;}
.yc4{bottom:745.378807px;}
.y74{bottom:746.580305px;}
.y15c{bottom:749.280301px;}
.y34{bottom:749.878800px;}
.y108{bottom:752.880295px;}
.yab{bottom:757.695288px;}
.y1d{bottom:759.477285px;}
.y7{bottom:764.582400px;}
.yf0{bottom:764.593777px;}
.y4a{bottom:769.980268px;}
.y62{bottom:772.693764px;}
.ydf{bottom:772.977263px;}
.y115{bottom:775.078760px;}
.y128{bottom:777.792256px;}
.y16b{bottom:780.780251px;}
.y73{bottom:782.877247px;}
.y33{bottom:784.078745px;}
.yc3{bottom:784.380245px;}
.y15b{bottom:790.693735px;}
.y107{bottom:794.280229px;}
.yaa{bottom:799.077221px;}
.y1c{bottom:800.877219px;}
.yde{bottom:805.980210px;}
.y134{bottom:807.177600px;}
.y61{bottom:808.693706px;}
.y49{bottom:811.380202px;}
.y96{bottom:814.080197px;}
.y114{bottom:816.492194px;}
.y72{bottom:819.192189px;}
.yc2{bottom:823.080183px;}
.y16a{bottom:825.478679px;}
.y127{bottom:825.793679px;}
.y32{bottom:828.192175px;}
.y150{bottom:832.080169px;}
.y106{bottom:835.693663px;}
.ya9{bottom:840.477155px;}
.y1b{bottom:842.295152px;}
.y60{bottom:844.977148px;}
.ydd{bottom:847.425144px;}
.y48{bottom:852.825135px;}
.y71{bottom:855.525131px;}
.y113{bottom:857.923627px;}
.yc1{bottom:861.825121px;}
.y15a{bottom:866.325114px;}
.y169{bottom:866.923613px;}
.y126{bottom:873.525102px;}
.y105{bottom:876.823597px;}
.y5f{bottom:881.323590px;}
.ya8{bottom:881.922089px;}
.y1a{bottom:883.722086px;}
.y31{bottom:885.225084px;}
.ydc{bottom:888.825078px;}
.y70{bottom:891.525074px;}
.y47{bottom:894.225069px;}
.y95{bottom:896.925065px;}
.y112{bottom:899.323561px;}
.yc0{bottom:900.822059px;}
.y168{bottom:911.622041px;}
.y14f{bottom:914.925036px;}
.y5e{bottom:917.625032px;}
.y104{bottom:918.223531px;}
.y125{bottom:921.522026px;}
.ya7{bottom:923.322023px;}
.y19{bottom:925.122020px;}
.y6f{bottom:927.822015px;}
.ydb{bottom:930.225012px;}
.y133{bottom:933.523506px;}
.y46{bottom:935.625003px;}
.y94{bottom:938.324999px;}
.ybf{bottom:939.521997px;}
.y111{bottom:940.723495px;}
.y167{bottom:953.021975px;}
.y5d{bottom:953.624974px;}
.y18b{bottom:956.324970px;}
.y14e{bottom:958.723466px;}
.y103{bottom:959.924964px;}
.y6e{bottom:964.123457px;}
.ya6{bottom:964.721956px;}
.y18{bottom:966.521954px;}
.y30{bottom:970.724947px;}
.yda{bottom:971.624945px;}
.yd6{bottom:977.024937px;}
.ybe{bottom:978.523434px;}
.y93{bottom:979.724932px;}
.y45{bottom:981.524930px;}
.y110{bottom:982.123429px;}
.y5c{bottom:989.921916px;}
.y166{bottom:997.724904px;}
.y6d{bottom:1000.424899px;}
.y14d{bottom:1002.823395px;}
.y102{bottom:1004.623393px;}
.ya5{bottom:1006.121890px;}
.y17{bottom:1007.921887px;}
.y92{bottom:1010.023384px;}
.yd9{bottom:1013.024879px;}
.y159{bottom:1016.354874px;}
.ybd{bottom:1017.254872px;}
.yd5{bottom:1018.451870px;}
.yd7{bottom:1022.951863px;}
.y10f{bottom:1023.568362px;}
.y44{bottom:1024.153361px;}
.y86{bottom:1026.254858px;}
.y5b{bottom:1028.666854px;}
.y6c{bottom:1034.354845px;}
.ya4{bottom:1036.451842px;}
.y14c{bottom:1037.068341px;}
.y18a{bottom:1039.169837px;}
.y91{bottom:1041.851833px;}
.y165{bottom:1042.454832px;}
.y101{bottom:1046.068326px;}
.y16{bottom:1049.353321px;}
.yd8{bottom:1054.451813px;}
.y43{bottom:1055.068312px;}
.ybc{bottom:1055.954810px;}
.y10e{bottom:1057.754808px;}
.yd4{bottom:1059.869804px;}
.y85{bottom:1062.569800px;}
.y5a{bottom:1074.868280px;}
.y90{bottom:1077.253276px;}
.ya3{bottom:1080.569771px;}
.y6{bottom:1082.954767px;}
.y164{bottom:1084.151765px;}
.y190{bottom:1085.069764px;}
.y42{bottom:1086.253262px;}
.y100{bottom:1087.454760px;}
.ybb{bottom:1088.953258px;}
.y15{bottom:1090.753255px;}
.yd3{bottom:1091.666753px;}
.y84{bottom:1098.569742px;}
.y2f{bottom:1126.451698px;}
.ya2{bottom:1128.566694px;}
.y163{bottom:1128.868194px;}
.y5{bottom:1130.353191px;}
.y14{bottom:1132.166689px;}
.y83{bottom:1134.866684px;}
.y4{bottom:1153.154655px;}
.y1{bottom:1186.198102px;}
.h3{height:3.999017px;}
.h12{height:7.998034px;}
.h11{height:31.992136px;}
.h28{height:35.500724px;}
.hf{height:39.990170px;}
.h1f{height:43.989187px;}
.hd{height:47.988204px;}
.he{height:52.417885px;}
.h29{height:53.788976px;}
.h1a{height:55.986239px;}
.h20{height:59.747951px;}
.h13{height:59.985256px;}
.h19{height:61.154199px;}
.h2{height:63.984273px;}
.h1e{height:65.522356px;}
.h9{height:67.983290px;}
.h18{height:69.890513px;}
.h23{height:72.337680px;}
.hc{height:72.601920px;}
.h14{height:75.304567px;}
.h1b{height:75.837769px;}
.h24{height:79.200000px;}
.h4{height:79.980341px;}
.h1d{height:80.683465px;}
.h1c{height:81.254753px;}
.h17{height:86.062362px;}
.h16{height:86.671736px;}
.h21{height:86.906111px;}
.h22{height:91.025972px;}
.hb{height:91.441260px;}
.h8{height:92.337743px;}
.h15{height:108.339670px;}
.h26{height:108.599040px;}
.h2a{height:108.632639px;}
.h27{height:108.635760px;}
.h25{height:108.939600px;}
.h10{height:111.972477px;}
.h7{height:152.085694px;}
.ha{height:190.231920px;}
.h5{height:382.874400px;}
.h6{height:510.709193px;}
.h2b{height:622.350000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w6{width:148.275360px;}
.w5{width:179.445600px;}
.w7{width:346.320000px;}
.w4{width:562.350960px;}
.w2{width:662.625360px;}
.w3{width:687.526560px;}
.w8{width:730.720800px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x48{left:7.500594px;}
.x5{left:10.799675px;}
.x4a{left:14.146615px;}
.x5f{left:32.998704px;}
.x6{left:38.393031px;}
.x4b{left:49.845057px;}
.x60{left:70.492044px;}
.x7{left:90.336448px;}
.x5c{left:102.037680px;}
.x1{left:108.036427px;}
.x4d{left:114.038218px;}
.x3{left:117.036720px;}
.x5d{left:123.038460px;}
.x4{left:126.637890px;}
.x46{left:135.036384px;}
.x21{left:137.137281px;}
.x59{left:139.238177px;}
.x5a{left:140.436375px;}
.x44{left:144.936368px;}
.xb{left:153.629754px;}
.x55{left:156.343250px;}
.x18{left:158.728246px;}
.x47{left:161.144742px;}
.x51{left:166.531234px;}
.x24{left:169.528229px;}
.x1a{left:171.031226px;}
.x2a{left:175.531219px;}
.x2f{left:178.276215px;}
.x3e{left:186.974701px;}
.x3f{left:189.674697px;}
.x9{left:197.775360px;}
.x50{left:200.474679px;}
.xc{left:205.573171px;}
.x5b{left:212.476160px;}
.x13{left:214.276157px;}
.x3b{left:220.873147px;}
.xd{left:223.276143px;}
.x14{left:226.574637px;}
.x3c{left:233.473126px;}
.x2b{left:240.376115px;}
.xa{left:242.176113px;}
.x22{left:243.976110px;}
.x54{left:251.774597px;}
.x34{left:256.873089px;}
.x16{left:259.573085px;}
.x28{left:262.574580px;}
.x36{left:264.374577px;}
.x17{left:270.674567px;}
.x42{left:275.174560px;}
.x45{left:279.373053px;}
.x52{left:282.374548px;}
.x43{left:285.074544px;}
.x41{left:287.473040px;}
.x49{left:289.274400px;}
.x2d{left:293.773030px;}
.x15{left:295.321027px;}
.x11{left:297.121025px;}
.x4f{left:299.218021px;}
.x40{left:301.918017px;}
.xe{left:309.118005px;}
.x57{left:310.904503px;}
.x3d{left:315.120996px;}
.x12{left:316.920993px;}
.x10{left:318.117991px;}
.x4e{left:323.819482px;}
.x19{left:326.217978px;}
.x8{left:331.311063px;}
.x53{left:346.620945px;}
.x38{left:349.617941px;}
.x5e{left:365.210072px;}
.x58{left:378.120895px;}
.xf{left:389.217877px;}
.x56{left:394.617869px;}
.x1f{left:395.819367px;}
.x33{left:415.047836px;}
.x20{left:433.349307px;}
.x4c{left:438.150960px;}
.x1e{left:439.950796px;}
.x2{left:446.547786px;}
.x27{left:454.949272px;}
.x32{left:457.050769px;}
.x23{left:466.649253px;}
.x25{left:475.050740px;}
.x35{left:477.147737px;}
.x37{left:479.550733px;}
.x2c{left:493.050711px;}
.x29{left:502.050697px;}
.x2e{left:504.147693px;}
.x26{left:507.450688px;}
.x31{left:513.147679px;}
.x30{left:517.647672px;}
.x3a{left:531.750649px;}
.x39{left:556.077610px;}
.x1b{left:580.692571px;}
.x1c{left:600.780539px;}
.x1d{left:785.370243px;}
@media print{
.v2{vertical-align:-19.199969pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.871952pt;}
.ls10{letter-spacing:-5.866657pt;}
.lse{letter-spacing:-0.511999pt;}
.lsa{letter-spacing:-0.490666pt;}
.ls14{letter-spacing:-0.426666pt;}
.ls13{letter-spacing:-0.383999pt;}
.ls1e{letter-spacing:-0.371199pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.006400pt;}
.ls1a{letter-spacing:0.042667pt;}
.ls8{letter-spacing:0.085333pt;}
.ls1{letter-spacing:0.138666pt;}
.lsb{letter-spacing:0.177066pt;}
.ls11{letter-spacing:0.186666pt;}
.ls4{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.330666pt;}
.ls3{letter-spacing:0.354133pt;}
.ls5{letter-spacing:0.383999pt;}
.ls1d{letter-spacing:0.490666pt;}
.lsd{letter-spacing:0.554666pt;}
.ls7{letter-spacing:0.570666pt;}
.ls1c{letter-spacing:0.639999pt;}
.ls18{letter-spacing:0.757332pt;}
.ls12{letter-spacing:0.805332pt;}
.lsf{letter-spacing:0.810665pt;}
.lsc{letter-spacing:0.821332pt;}
.ls16{letter-spacing:1.450664pt;}
.ls17{letter-spacing:1.877330pt;}
.ls21{letter-spacing:38.119406pt;}
.ls1b{letter-spacing:38.261272pt;}
.ls19{letter-spacing:43.637264pt;}
.ls15{letter-spacing:47.749257pt;}
.ls20{letter-spacing:54.119380pt;}
.ls0{letter-spacing:744.578009pt;}
.ws0{word-spacing:-139.407510pt;}
.ws5{word-spacing:-29.653286pt;}
.ws10{word-spacing:-25.173293pt;}
.ws9{word-spacing:-24.533294pt;}
.ws11{word-spacing:-24.362628pt;}
.wsa{word-spacing:-24.277294pt;}
.wsd{word-spacing:-24.106628pt;}
.ws4{word-spacing:-23.978628pt;}
.ws3{word-spacing:-23.722629pt;}
.ws7{word-spacing:-23.466629pt;}
.wse{word-spacing:-23.338629pt;}
.wsf{word-spacing:-23.295963pt;}
.ws8{word-spacing:-23.210630pt;}
.wsc{word-spacing:-22.239964pt;}
.ws13{word-spacing:-21.247966pt;}
.ws6{word-spacing:-20.842633pt;}
.ws2{word-spacing:-20.757300pt;}
.wsb{word-spacing:-17.855971pt;}
.ws12{word-spacing:-15.716242pt;}
.ws1{word-spacing:0.000000pt;}
._19{margin-left:-20.183812pt;}
._18{margin-left:-15.527274pt;}
._6a{margin-left:-10.194167pt;}
._35{margin-left:-9.302618pt;}
._13{margin-left:-7.573321pt;}
._65{margin-left:-6.311981pt;}
._6{margin-left:-5.378590pt;}
._12{margin-left:-3.952653pt;}
._4{margin-left:-2.987259pt;}
._11{margin-left:-2.048671pt;}
._7{margin-left:-1.088124pt;}
._5{width:0.898748pt;}
._3{width:2.002810pt;}
._a{width:3.180360pt;}
._e{width:4.272414pt;}
._10{width:5.516718pt;}
._c{width:6.433971pt;}
._d{width:8.109235pt;}
._f{width:9.277381pt;}
._16{width:10.825444pt;}
._2b{width:12.223804pt;}
._2d{width:13.448077pt;}
._33{width:15.010736pt;}
._24{width:16.371239pt;}
._36{width:17.526739pt;}
._2c{width:18.489343pt;}
._23{width:19.419146pt;}
._32{width:21.179193pt;}
._34{width:22.261349pt;}
._1b{width:23.173640pt;}
._b{width:24.303293pt;}
._4e{width:25.371131pt;}
._2a{width:26.531045pt;}
._29{width:28.015936pt;}
._3a{width:28.921351pt;}
._1c{width:29.869264pt;}
._1d{width:31.409160pt;}
._20{width:32.811922pt;}
._1f{width:33.964017pt;}
._25{width:35.067765pt;}
._3c{width:36.833985pt;}
._14{width:37.852579pt;}
._15{width:38.801636pt;}
._27{width:40.431149pt;}
._26{width:41.549249pt;}
._28{width:42.660750pt;}
._45{width:44.092028pt;}
._9{width:45.565740pt;}
._2e{width:46.580810pt;}
._8{width:47.628491pt;}
._3d{width:48.540123pt;}
._3e{width:50.034357pt;}
._67{width:51.451922pt;}
._3f{width:52.640659pt;}
._5b{width:54.062950pt;}
._2f{width:55.292661pt;}
._17{width:56.297269pt;}
._6c{width:57.313067pt;}
._41{width:58.393869pt;}
._40{width:59.447399pt;}
._6b{width:60.356524pt;}
._4c{width:61.274228pt;}
._1e{width:62.608084pt;}
._37{width:63.534575pt;}
._56{width:65.278608pt;}
._4d{width:66.948778pt;}
._50{width:68.103935pt;}
._22{width:69.862658pt;}
._3b{width:71.485528pt;}
._48{width:72.905896pt;}
._52{width:75.639922pt;}
._57{width:77.441257pt;}
._31{width:79.065386pt;}
._4a{width:80.191035pt;}
._69{width:81.179249pt;}
._60{width:83.283196pt;}
._61{width:85.015496pt;}
._68{width:86.625455pt;}
._38{width:88.294586pt;}
._63{width:94.064158pt;}
._42{width:97.534137pt;}
._43{width:100.175816pt;}
._44{width:101.701453pt;}
._51{width:103.177937pt;}
._46{width:106.320043pt;}
._4b{width:108.095400pt;}
._59{width:109.000296pt;}
._5e{width:110.503741pt;}
._5d{width:111.645746pt;}
._5f{width:112.692661pt;}
._49{width:116.636140pt;}
._55{width:117.704006pt;}
._64{width:119.656148pt;}
._5a{width:122.017576pt;}
._21{width:125.072929pt;}
._47{width:136.245171pt;}
._5c{width:144.709102pt;}
._62{width:148.002303pt;}
._54{width:165.092463pt;}
._4f{width:170.385581pt;}
._66{width:172.907202pt;}
._30{width:175.358020pt;}
._58{width:176.351718pt;}
._53{width:189.660873pt;}
._1{width:232.217228pt;}
._39{width:294.518428pt;}
._2{width:816.033894pt;}
._1a{width:1505.376791pt;}
._0{width:1610.971289pt;}
._6d{width:2387.540713pt;}
.fs1{font-size:5.333325pt;}
.fsa{font-size:10.666650pt;}
.fsf{font-size:35.199944pt;}
.fs9{font-size:42.666598pt;}
.fs8{font-size:53.333248pt;}
.fse{font-size:56.533243pt;}
.fsd{font-size:58.666573pt;}
.fs7{font-size:63.999898pt;}
.fsc{font-size:74.666547pt;}
.fs6{font-size:77.866542pt;}
.fsb{font-size:79.999872pt;}
.fs0{font-size:85.333197pt;}
.fs5{font-size:90.666522pt;}
.fs2{font-size:106.666496pt;}
.fs4{font-size:149.333094pt;}
.fs3{font-size:501.465864pt;}
.y0{bottom:0.000000pt;}
.y141{bottom:14.399734pt;}
.y145{bottom:14.663889pt;}
.y13d{bottom:14.666618pt;}
.y136{bottom:14.679629pt;}
.yc{bottom:17.878084pt;}
.y139{bottom:20.796533pt;}
.y13{bottom:29.598704pt;}
.y11{bottom:30.398850pt;}
.y1a7{bottom:35.732354pt;}
.y140{bottom:46.663682pt;}
.y144{bottom:46.663838pt;}
.y135{bottom:46.707577pt;}
.y13c{bottom:46.934567pt;}
.y3{bottom:52.299916pt;}
.y138{bottom:52.780481pt;}
.y198{bottom:56.300032pt;}
.yb{bottom:56.810022pt;}
.y10{bottom:69.598787pt;}
.y1a6{bottom:72.532295pt;}
.y2{bottom:76.567344pt;}
.y13f{bottom:78.931631pt;}
.y143{bottom:78.931786pt;}
.y13b{bottom:79.238515pt;}
.ya{bottom:96.037959pt;}
.yf{bottom:108.534725pt;}
.y1a5{bottom:109.367703pt;}
.y158{bottom:116.832346pt;}
.yef{bottom:118.432344pt;}
.y2e{bottom:118.967276pt;}
.yff{bottom:121.632339pt;}
.yba{bottom:122.967270pt;}
.y189{bottom:124.832334pt;}
.ya1{bottom:131.499790pt;}
.y59{bottom:132.299788pt;}
.y162{bottom:132.567255pt;}
.y124{bottom:133.627786pt;}
.y132{bottom:136.827781pt;}
.y8f{bottom:139.227777pt;}
.y41{bottom:140.559775pt;}
.y157{bottom:146.159766pt;}
.y1a4{bottom:146.167644pt;}
.y2d{bottom:146.427766pt;}
.y9{bottom:146.969877pt;}
.ye{bottom:147.758662pt;}
.y180{bottom:150.731759pt;}
.yee{bottom:155.267752pt;}
.yfe{bottom:158.467746pt;}
.yb9{bottom:159.799744pt;}
.y17a{bottom:160.331743pt;}
.y188{bottom:161.667741pt;}
.y58{bottom:169.131729pt;}
.y8e{bottom:171.531726pt;}
.y161{bottom:172.331724pt;}
.y123{bottom:173.667722pt;}
.y2c{bottom:174.199721pt;}
.y1a3{bottom:174.431599pt;}
.y14b{bottom:178.731714pt;}
.y156{bottom:182.999707pt;}
.y40{bottom:186.467702pt;}
.y17f{bottom:187.531700pt;}
.yd{bottom:188.332800pt;}
.yed{bottom:192.067693pt;}
.yfd{bottom:195.267688pt;}
.yb8{bottom:196.599685pt;}
.y179{bottom:197.131685pt;}
.y14a{bottom:198.731682pt;}
.y1a2{bottom:201.367556pt;}
.y187{bottom:201.399678pt;}
.y2b{bottom:201.667677pt;}
.yd2{bottom:202.731676pt;}
.y8d{bottom:203.799674pt;}
.y57{bottom:205.931671pt;}
.ya0{bottom:208.331667pt;}
.y122{bottom:210.467663pt;}
.y160{bottom:212.067661pt;}
.y155{bottom:213.399659pt;}
.y3f{bottom:217.667652pt;}
.y82{bottom:220.331647pt;}
.y8{bottom:222.741756pt;}
.y149{bottom:223.267643pt;}
.y17e{bottom:224.331641pt;}
.yd1{bottom:228.067635pt;}
.yec{bottom:228.867634pt;}
.y2a{bottom:229.399633pt;}
.yb7{bottom:233.399627pt;}
.y178{bottom:233.931626pt;}
.yfc{bottom:234.999624pt;}
.y8c{bottom:235.799623pt;}
.y1a1{bottom:238.167497pt;}
.y186{bottom:238.199619pt;}
.y3e{bottom:241.931613pt;}
.y56{bottom:242.731612pt;}
.y81{bottom:245.131608pt;}
.y121{bottom:247.267604pt;}
.y15f{bottom:251.799597pt;}
.yd0{bottom:253.399595pt;}
.y29{bottom:256.867589pt;}
.y148{bottom:260.067584pt;}
.y17d{bottom:261.131582pt;}
.yeb{bottom:265.667575pt;}
.y3d{bottom:267.267572pt;}
.y8b{bottom:268.067571pt;}
.yb6{bottom:270.199568pt;}
.y177{bottom:270.731567pt;}
.yfb{bottom:274.731560pt;}
.y1a0{bottom:274.991438pt;}
.y80{bottom:277.131557pt;}
.y185{bottom:277.931555pt;}
.y55{bottom:279.531553pt;}
.y9f{bottom:281.931549pt;}
.y15e{bottom:282.199548pt;}
.ycf{bottom:282.999547pt;}
.y120{bottom:284.067545pt;}
.y28{bottom:284.599545pt;}
.y17c{bottom:291.531534pt;}
.y3c{bottom:292.331532pt;}
.y18f{bottom:296.067526pt;}
.y147{bottom:296.867525pt;}
.y8a{bottom:300.359519pt;}
.yea{bottom:302.507516pt;}
.yb5{bottom:307.039509pt;}
.y176{bottom:307.559508pt;}
.y7f{bottom:309.439505pt;}
.yfa{bottom:311.559502pt;}
.y19f{bottom:311.807379pt;}
.y27{bottom:312.091501pt;}
.y3b{bottom:313.439498pt;}
.y184{bottom:315.027496pt;}
.y54{bottom:316.371494pt;}
.yce{bottom:317.691492pt;}
.y9e{bottom:318.771490pt;}
.y11f{bottom:320.891487pt;}
.y131{bottom:323.027483pt;}
.y18e{bottom:325.439479pt;}
.y89{bottom:332.359468pt;}
.y146{bottom:333.707466pt;}
.y197{bottom:334.771464pt;}
.ye9{bottom:339.307457pt;}
.y19e{bottom:340.059334pt;}
.y7e{bottom:341.691453pt;}
.y26{bottom:343.839450pt;}
.y175{bottom:344.359449pt;}
.y3a{bottom:345.159448pt;}
.y154{bottom:346.771445pt;}
.yf9{bottom:348.359443pt;}
.y17b{bottom:351.307438pt;}
.ycd{bottom:352.107437pt;}
.y53{bottom:353.171435pt;}
.y142{bottom:354.507520pt;}
.y183{bottom:354.771432pt;}
.y9d{bottom:355.559431pt;}
.y11e{bottom:357.707428pt;}
.y130{bottom:359.839424pt;}
.y18d{bottom:362.227420pt;}
.y88{bottom:364.627417pt;}
.y19d{bottom:366.991291pt;}
.y196{bottom:371.559406pt;}
.y7d{bottom:373.959402pt;}
.y174{bottom:374.771400pt;}
.ye8{bottom:376.107398pt;}
.y25{bottom:380.627391pt;}
.yb4{bottom:381.439390pt;}
.yf8{bottom:385.171384pt;}
.ycc{bottom:386.507382pt;}
.y6b{bottom:389.439377pt;}
.y52{bottom:389.959376pt;}
.y182{bottom:391.559374pt;}
.y9c{bottom:392.359372pt;}
.y11d{bottom:394.507369pt;}
.y12f{bottom:396.627365pt;}
.y87{bottom:396.891365pt;}
.y18c{bottom:399.027362pt;}
.y19c{bottom:403.831232pt;}
.y173{bottom:404.107353pt;}
.y7c{bottom:405.959350pt;}
.ye7{bottom:406.507350pt;}
.y195{bottom:408.359347pt;}
.y39{bottom:409.691344pt;}
.y153{bottom:412.891339pt;}
.y24{bottom:417.439332pt;}
.yb3{bottom:418.227331pt;}
.ycb{bottom:421.171326pt;}
.yf7{bottom:421.959325pt;}
.y181{bottom:424.891320pt;}
.y51{bottom:426.771317pt;}
.y6a{bottom:429.171313pt;}
.y11c{bottom:431.291310pt;}
.y172{bottom:434.771304pt;}
.ye6{bottom:435.839303pt;}
.y12e{bottom:436.107302pt;}
.y7b{bottom:438.227299pt;}
.y19b{bottom:440.631173pt;}
.y152{bottom:443.291291pt;}
.y194{bottom:445.171288pt;}
.y13e{bottom:451.867520pt;}
.y23{bottom:454.267273pt;}
.yb2{bottom:455.067272pt;}
.yca{bottom:455.599271pt;}
.yf6{bottom:458.799266pt;}
.y69{bottom:461.199262pt;}
.y50{bottom:463.599258pt;}
.y171{bottom:464.131257pt;}
.y9b{bottom:465.999254pt;}
.y11b{bottom:468.131251pt;}
.y7a{bottom:470.531247pt;}
.ye5{bottom:472.667244pt;}
.y38{bottom:473.999242pt;}
.y19a{bottom:477.431114pt;}
.y12d{bottom:478.531234pt;}
.y12{bottom:480.132480pt;}
.y193{bottom:481.999229pt;}
.y10d{bottom:485.199224pt;}
.yc9{bottom:490.267216pt;}
.y22{bottom:491.067214pt;}
.yb1{bottom:491.867213pt;}
.y68{bottom:493.467210pt;}
.yf5{bottom:495.599207pt;}
.y4f{bottom:500.399199pt;}
.y170{bottom:500.931199pt;}
.y79{bottom:502.799196pt;}
.y11a{bottom:504.931192pt;}
.ye4{bottom:509.467185pt;}
.y199{bottom:514.231055pt;}
.y37{bottom:517.199172pt;}
.yb0{bottom:518.799170pt;}
.y12c{bottom:521.199166pt;}
.y10c{bottom:521.999165pt;}
.yc8{bottom:524.667161pt;}
.y67{bottom:525.731159pt;}
.y21{bottom:527.867155pt;}
.yf4{bottom:532.399148pt;}
.y78{bottom:534.799144pt;}
.y4e{bottom:537.199140pt;}
.y9a{bottom:539.599137pt;}
.y16f{bottom:540.667135pt;}
.y119{bottom:541.731133pt;}
.yaf{bottom:545.731127pt;}
.ye3{bottom:546.267126pt;}
.y13a{bottom:548.932480pt;}
.y192{bottom:555.599111pt;}
.y36{bottom:556.931109pt;}
.y66{bottom:557.999107pt;}
.y10b{bottom:558.799106pt;}
.yc7{bottom:559.067105pt;}
.y12b{bottom:563.599098pt;}
.y20{bottom:564.667097pt;}
.y77{bottom:567.067093pt;}
.yf3{bottom:569.199089pt;}
.yae{bottom:572.667084pt;}
.y4d{bottom:573.999082pt;}
.y99{bottom:576.399078pt;}
.y151{bottom:576.667077pt;}
.y118{bottom:578.531074pt;}
.y16e{bottom:580.399071pt;}
.ye2{bottom:583.067067pt;}
.y65{bottom:589.999056pt;}
.y191{bottom:592.399052pt;}
.yc6{bottom:593.731050pt;}
.y10a{bottom:595.599047pt;}
.y76{bottom:599.331041pt;}
.yad{bottom:599.867040pt;}
.y1f{bottom:601.507038pt;}
.yf2{bottom:606.027030pt;}
.y12a{bottom:606.291030pt;}
.y4c{bottom:610.839023pt;}
.y98{bottom:613.227019pt;}
.y117{bottom:615.359015pt;}
.y16d{bottom:617.227012pt;}
.ye1{bottom:619.891008pt;}
.y35{bottom:621.227006pt;}
.y64{bottom:622.307004pt;}
.yc5{bottom:628.170995pt;}
.y15d{bottom:629.226993pt;}
.y75{bottom:631.638989pt;}
.y109{bottom:632.426988pt;}
.yac{bottom:636.690981pt;}
.y1e{bottom:638.290979pt;}
.yf1{bottom:642.826971pt;}
.y137{bottom:646.310400pt;}
.y4b{bottom:647.626964pt;}
.y129{bottom:648.958962pt;}
.y97{bottom:650.026960pt;}
.y116{bottom:652.170957pt;}
.y63{bottom:654.558953pt;}
.ye0{bottom:656.690949pt;}
.y16c{bottom:656.970949pt;}
.yc4{bottom:662.558940pt;}
.y74{bottom:663.626938pt;}
.y15c{bottom:666.026934pt;}
.y34{bottom:666.558934pt;}
.y108{bottom:669.226929pt;}
.yab{bottom:673.506922pt;}
.y1d{bottom:675.090920pt;}
.y7{bottom:679.628800pt;}
.yf0{bottom:679.638913pt;}
.y4a{bottom:684.426905pt;}
.y62{bottom:686.838901pt;}
.ydf{bottom:687.090901pt;}
.y115{bottom:688.958898pt;}
.y128{bottom:691.370894pt;}
.y16b{bottom:694.026890pt;}
.y73{bottom:695.890887pt;}
.y33{bottom:696.958885pt;}
.yc3{bottom:697.226884pt;}
.y15b{bottom:702.838875pt;}
.y107{bottom:706.026870pt;}
.yaa{bottom:710.290864pt;}
.y1c{bottom:711.890861pt;}
.yde{bottom:716.426854pt;}
.y134{bottom:717.491200pt;}
.y61{bottom:718.838850pt;}
.y49{bottom:721.226846pt;}
.y96{bottom:723.626842pt;}
.y114{bottom:725.770839pt;}
.y72{bottom:728.170835pt;}
.yc2{bottom:731.626829pt;}
.y16a{bottom:733.758826pt;}
.y127{bottom:734.038826pt;}
.y32{bottom:736.170822pt;}
.y150{bottom:739.626817pt;}
.y106{bottom:742.838811pt;}
.ya9{bottom:747.090805pt;}
.y1b{bottom:748.706802pt;}
.y60{bottom:751.090798pt;}
.ydd{bottom:753.266795pt;}
.y48{bottom:758.066787pt;}
.y71{bottom:760.466783pt;}
.y113{bottom:762.598780pt;}
.yc1{bottom:766.066774pt;}
.y15a{bottom:770.066768pt;}
.y169{bottom:770.598767pt;}
.y126{bottom:776.466758pt;}
.y105{bottom:779.398753pt;}
.y5f{bottom:783.398747pt;}
.ya8{bottom:783.930746pt;}
.y1a{bottom:785.530743pt;}
.y31{bottom:786.866741pt;}
.ydc{bottom:790.066736pt;}
.y70{bottom:792.466732pt;}
.y47{bottom:794.866728pt;}
.y95{bottom:797.266724pt;}
.y112{bottom:799.398721pt;}
.yc0{bottom:800.730719pt;}
.y168{bottom:810.330703pt;}
.y14f{bottom:813.266699pt;}
.y5e{bottom:815.666695pt;}
.y104{bottom:816.198694pt;}
.y125{bottom:819.130689pt;}
.ya7{bottom:820.730687pt;}
.y19{bottom:822.330684pt;}
.y6f{bottom:824.730680pt;}
.ydb{bottom:826.866677pt;}
.y133{bottom:829.798672pt;}
.y46{bottom:831.666669pt;}
.y94{bottom:834.066665pt;}
.ybf{bottom:835.130664pt;}
.y111{bottom:836.198662pt;}
.y167{bottom:847.130645pt;}
.y5d{bottom:847.666644pt;}
.y18b{bottom:850.066640pt;}
.y14e{bottom:852.198636pt;}
.y103{bottom:853.266635pt;}
.y6e{bottom:856.998629pt;}
.ya6{bottom:857.530628pt;}
.y18{bottom:859.130625pt;}
.y30{bottom:862.866619pt;}
.yda{bottom:863.666618pt;}
.yd6{bottom:868.466610pt;}
.ybe{bottom:869.798608pt;}
.y93{bottom:870.866607pt;}
.y45{bottom:872.466604pt;}
.y110{bottom:872.998603pt;}
.y5c{bottom:879.930592pt;}
.y166{bottom:886.866581pt;}
.y6d{bottom:889.266577pt;}
.y14d{bottom:891.398574pt;}
.y102{bottom:892.998571pt;}
.ya5{bottom:894.330569pt;}
.y17{bottom:895.930567pt;}
.y92{bottom:897.798564pt;}
.yd9{bottom:900.466559pt;}
.y159{bottom:903.426555pt;}
.ybd{bottom:904.226553pt;}
.yd5{bottom:905.290552pt;}
.yd7{bottom:909.290545pt;}
.y10f{bottom:909.838544pt;}
.y44{bottom:910.358543pt;}
.y86{bottom:912.226540pt;}
.y5b{bottom:914.370537pt;}
.y6c{bottom:919.426529pt;}
.ya4{bottom:921.290526pt;}
.y14c{bottom:921.838525pt;}
.y18a{bottom:923.706522pt;}
.y91{bottom:926.090518pt;}
.y165{bottom:926.626517pt;}
.y101{bottom:929.838512pt;}
.y16{bottom:932.758508pt;}
.yd8{bottom:937.290500pt;}
.y43{bottom:937.838499pt;}
.ybc{bottom:938.626498pt;}
.y10e{bottom:940.226496pt;}
.yd4{bottom:942.106493pt;}
.y85{bottom:944.506489pt;}
.y5a{bottom:955.438471pt;}
.y90{bottom:957.558468pt;}
.ya3{bottom:960.506463pt;}
.y6{bottom:962.626460pt;}
.y164{bottom:963.690458pt;}
.y190{bottom:964.506457pt;}
.y42{bottom:965.558455pt;}
.y100{bottom:966.626453pt;}
.ybb{bottom:967.958451pt;}
.y15{bottom:969.558449pt;}
.yd3{bottom:970.370447pt;}
.y84{bottom:976.506438pt;}
.y2f{bottom:1001.290398pt;}
.ya2{bottom:1003.170395pt;}
.y163{bottom:1003.438394pt;}
.y5{bottom:1004.758392pt;}
.y14{bottom:1006.370390pt;}
.y83{bottom:1008.770386pt;}
.y4{bottom:1025.026360pt;}
.y1{bottom:1054.398313pt;}
.h3{height:3.554682pt;}
.h12{height:7.109364pt;}
.h11{height:28.437455pt;}
.h28{height:31.556200pt;}
.hf{height:35.546818pt;}
.h1f{height:39.101500pt;}
.hd{height:42.656182pt;}
.he{height:46.593675pt;}
.h29{height:47.812424pt;}
.h1a{height:49.765545pt;}
.h20{height:53.109290pt;}
.h13{height:53.320227pt;}
.h19{height:54.359288pt;}
.h2{height:56.874909pt;}
.h1e{height:58.242094pt;}
.h9{height:60.429591pt;}
.h18{height:62.124901pt;}
.h23{height:64.300160pt;}
.hc{height:64.535040pt;}
.h14{height:66.937393pt;}
.h1b{height:67.411350pt;}
.h24{height:70.400000pt;}
.h4{height:71.093636pt;}
.h1d{height:71.718635pt;}
.h1c{height:72.226447pt;}
.h17{height:76.499878pt;}
.h16{height:77.041543pt;}
.h21{height:77.249876pt;}
.h22{height:80.911975pt;}
.hb{height:81.281120pt;}
.h8{height:82.077994pt;}
.h15{height:96.301929pt;}
.h26{height:96.532480pt;}
.h2a{height:96.562346pt;}
.h27{height:96.565120pt;}
.h25{height:96.835200pt;}
.h10{height:99.531091pt;}
.h7{height:135.187284pt;}
.ha{height:169.095040pt;}
.h5{height:340.332800pt;}
.h6{height:453.963727pt;}
.h2b{height:553.200000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w6{width:131.800320pt;}
.w5{width:159.507200pt;}
.w7{width:307.840000pt;}
.w4{width:499.867520pt;}
.w2{width:589.000320pt;}
.w3{width:611.134720pt;}
.w8{width:649.529600pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x48{left:6.667194pt;}
.x5{left:9.599712pt;}
.x4a{left:12.574768pt;}
.x5f{left:29.332181pt;}
.x6{left:34.127139pt;}
.x4b{left:44.306718pt;}
.x60{left:62.659595pt;}
.x7{left:80.299065pt;}
.x5c{left:90.700160pt;}
.x1{left:96.032380pt;}
.x4d{left:101.367304pt;}
.x3{left:104.032640pt;}
.x5d{left:109.367520pt;}
.x4{left:112.567013pt;}
.x46{left:120.032341pt;}
.x21{left:121.899805pt;}
.x59{left:123.767269pt;}
.x5a{left:124.832334pt;}
.x44{left:128.832327pt;}
.xb{left:136.559782pt;}
.x55{left:138.971778pt;}
.x18{left:141.091774pt;}
.x47{left:143.239771pt;}
.x51{left:148.027763pt;}
.x24{left:150.691759pt;}
.x1a{left:152.027757pt;}
.x2a{left:156.027750pt;}
.x2f{left:158.467746pt;}
.x3e{left:166.199734pt;}
.x3f{left:168.599730pt;}
.x9{left:175.800320pt;}
.x50{left:178.199715pt;}
.xc{left:182.731708pt;}
.x5b{left:188.867698pt;}
.x13{left:190.467695pt;}
.x3b{left:196.331686pt;}
.xd{left:198.467682pt;}
.x14{left:201.399678pt;}
.x3c{left:207.531668pt;}
.x2b{left:213.667658pt;}
.xa{left:215.267656pt;}
.x22{left:216.867653pt;}
.x54{left:223.799642pt;}
.x34{left:228.331635pt;}
.x16{left:230.731631pt;}
.x28{left:233.399627pt;}
.x36{left:234.999624pt;}
.x17{left:240.599615pt;}
.x42{left:244.599609pt;}
.x45{left:248.331603pt;}
.x52{left:250.999598pt;}
.x43{left:253.399595pt;}
.x41{left:255.531591pt;}
.x49{left:257.132800pt;}
.x2d{left:261.131582pt;}
.x15{left:262.507580pt;}
.x11{left:264.107577pt;}
.x4f{left:265.971574pt;}
.x40{left:268.371571pt;}
.xe{left:274.771560pt;}
.x57{left:276.359558pt;}
.x3d{left:280.107552pt;}
.x12{left:281.707549pt;}
.x10{left:282.771548pt;}
.x4e{left:287.839539pt;}
.x19{left:289.971536pt;}
.x8{left:294.498722pt;}
.x53{left:308.107507pt;}
.x38{left:310.771503pt;}
.x5e{left:324.631175pt;}
.x58{left:336.107462pt;}
.xf{left:345.971446pt;}
.x56{left:350.771439pt;}
.x1f{left:351.839437pt;}
.x33{left:368.931410pt;}
.x20{left:385.199384pt;}
.x4c{left:389.467520pt;}
.x1e{left:391.067374pt;}
.x2{left:396.931365pt;}
.x27{left:404.399353pt;}
.x32{left:406.267350pt;}
.x23{left:414.799336pt;}
.x25{left:422.267324pt;}
.x35{left:424.131321pt;}
.x37{left:426.267318pt;}
.x2c{left:438.267299pt;}
.x29{left:446.267286pt;}
.x2e{left:448.131283pt;}
.x26{left:451.067278pt;}
.x31{left:456.131270pt;}
.x30{left:460.131264pt;}
.x3a{left:472.667244pt;}
.x39{left:494.291209pt;}
.x1b{left:516.171174pt;}
.x1c{left:534.027146pt;}
.x1d{left:698.106883pt;}
}




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