
    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_c79e2c8c112443fc0dbdb1a0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_acd8e071335e3738948df667.woff')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_48929ad35db43126568d4287.woff')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_fbb6e8e0407ad14d465800a9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_5bc2543fe797431bd86821be.woff')format("woff");}.ff5{font-family:ff5;line-height:0.774414;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_820f6927a4f60c9d1d45230d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.686523;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_e786889e92f200d0b0ee5c61.woff')format("woff");}.ff7{font-family:ff7;line-height:0.861816;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_7551ffaf9c1904a8e90e8385.woff')format("woff");}.ff8{font-family:ff8;line-height:0.766113;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_b2342b68c200d54e3b6eca49.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_154a98339ecaa0647fe4da75.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_d8c20e0914983d67c809495e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.866699;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_3090579307b9a111df45aa1f.woff')format("woff");}.ffc{font-family:ffc;line-height:0.909180;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_45bab497ac1eb6c1fea57d36.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_13a7fd2911a3c1b936149f44.woff')format("woff");}.ffe{font-family:ffe;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_bfe69879a1d812f01592079e.woff')format("woff");}.fff{font-family:fff;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;}
.m2{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:61.919975px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.034440px;}
.ls6{letter-spacing:0.050400px;}
.ls2{letter-spacing:0.062743px;}
.lsf{letter-spacing:0.063360px;}
.lsa{letter-spacing:0.068880px;}
.lsc{letter-spacing:0.069567px;}
.ls0{letter-spacing:0.187920px;}
.ls3{letter-spacing:0.200602px;}
.ls1{letter-spacing:0.210537px;}
.ls7{letter-spacing:23.988050px;}
.lse{letter-spacing:31.166688px;}
.lsd{letter-spacing:31.201788px;}
.ls5{letter-spacing:34.087306px;}
.ls10{letter-spacing:55.007378px;}
.lsb{letter-spacing:384.528446px;}
.ls8{letter-spacing:450.173820px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-35.999986px;}
.ws4{word-spacing:-32.462730px;}
.ws3{word-spacing:-32.399987px;}
.ws8{word-spacing:-17.999993px;}
.ws6{word-spacing:-16.613273px;}
.ws2{word-spacing:-15.011994px;}
.ws1{word-spacing:-14.970234px;}
.ws0{word-spacing:-14.939994px;}
.ws5{word-spacing:-13.505755px;}
.wsb{word-spacing:-10.971803px;}
.wsa{word-spacing:-10.902236px;}
.ws7{word-spacing:0.000000px;}
.ws9{word-spacing:86.247961px;}
._f{margin-left:-4.042338px;}
._12{margin-left:-2.766761px;}
._1{margin-left:-1.237605px;}
._0{width:1.152887px;}
._4{width:2.880806px;}
._b{width:4.533236px;}
._8{width:6.112824px;}
._1f{width:7.134914px;}
._6{width:8.145496px;}
._5{width:9.262940px;}
._9{width:10.308829px;}
._a{width:12.045952px;}
._7{width:13.740724px;}
._11{width:15.087816px;}
._10{width:16.214115px;}
._c{width:17.831889px;}
._67{width:19.376620px;}
._1e{width:21.476186px;}
._1d{width:22.755369px;}
._68{width:24.038042px;}
._2e{width:28.090696px;}
._e{width:64.455144px;}
._d{width:65.609037px;}
._30{width:75.724080px;}
._2{width:84.580166px;}
._5b{width:94.170202px;}
._77{width:95.256682px;}
._22{width:110.277170px;}
._2f{width:117.311456px;}
._31{width:123.041165px;}
._59{width:126.179468px;}
._44{width:135.524313px;}
._41{width:136.935497px;}
._5a{width:143.463216px;}
._15{width:147.066995px;}
._78{width:159.527962px;}
._53{width:167.240330px;}
._8f{width:173.079519px;}
._82{width:184.192467px;}
._4c{width:187.661231px;}
._8a{width:191.166272px;}
._63{width:194.875584px;}
._23{width:197.039183px;}
._75{width:201.621067px;}
._81{width:203.601037px;}
._76{width:205.453412px;}
._3e{width:206.620984px;}
._86{width:209.302982px;}
._7d{width:220.628623px;}
._85{width:227.234899px;}
._79{width:231.693689px;}
._8e{width:233.695966px;}
._7c{width:235.272652px;}
._40{width:238.994761px;}
._14{width:242.789021px;}
._7b{width:245.269930px;}
._7e{width:247.535687px;}
._83{width:251.142886px;}
._8d{width:256.707019px;}
._84{width:280.061888px;}
._89{width:281.509326px;}
._3f{width:287.027776px;}
._5f{width:289.375546px;}
._80{width:293.051641px;}
._61{width:299.474982px;}
._87{width:301.114204px;}
._13{width:308.977300px;}
._32{width:310.598550px;}
._5d{width:312.460177px;}
._3b{width:317.509535px;}
._27{width:319.673854px;}
._7f{width:320.951022px;}
._29{width:329.051850px;}
._21{width:331.518182px;}
._69{width:335.787510px;}
._45{width:347.807167px;}
._20{width:355.866605px;}
._33{width:359.349438px;}
._8c{width:365.186402px;}
._25{width:373.055353px;}
._2b{width:375.184392px;}
._5c{width:376.786916px;}
._7a{width:378.174327px;}
._64{width:388.387870px;}
._39{width:390.368466px;}
._71{width:391.811345px;}
._88{width:396.139984px;}
._4d{width:398.303627px;}
._6f{width:407.681579px;}
._24{width:410.590334px;}
._8b{width:421.776661px;}
._48{width:424.273296px;}
._56{width:428.566611px;}
._42{width:433.054174px;}
._35{width:434.372688px;}
._4a{width:436.537051px;}
._6a{width:446.635723px;}
._37{width:452.371961px;}
._16{width:458.178039px;}
._43{width:459.202214px;}
._19{width:470.406514px;}
._60{width:481.878839px;}
._6c{width:483.426269px;}
._57{width:487.686045px;}
._62{width:491.867662px;}
._2c{width:496.342601px;}
._5e{width:504.875360px;}
._54{width:507.917779px;}
._65{width:517.262193px;}
._3c{width:527.210706px;}
._73{width:528.804508px;}
._28{width:533.907814px;}
._66{width:535.503366px;}
._52{width:548.487841px;}
._34{width:552.513139px;}
._2a{width:560.564581px;}
._1c{width:571.572472px;}
._50{width:573.529451px;}
._47{width:584.488085px;}
._1b{width:585.529796px;}
._26{width:587.663166px;}
._58{width:592.375167px;}
._72{width:595.723894px;}
._3a{width:601.448195px;}
._18{width:607.571996px;}
._46{width:612.581809px;}
._4f{width:620.488294px;}
._36{width:627.393825px;}
._17{width:629.650914px;}
._6b{width:632.880544px;}
._1a{width:641.398234px;}
._70{width:642.812068px;}
._38{width:645.466597px;}
._3d{width:653.339368px;}
._6e{width:655.118506px;}
._6d{width:670.106504px;}
._2d{width:674.258960px;}
._74{width:678.587687px;}
._4e{width:681.280708px;}
._55{width:686.123896px;}
._49{width:688.251695px;}
._4b{width:701.116736px;}
._51{width:801.940109px;}
._3{width:2575.504310px;}
.fc6{color:rgb(0,0,255);}
.fc7{color:rgb(83,129,53);}
.fc5{color:rgb(0,32,96);}
.fcb{color:rgb(0,112,192);}
.fc4{color:rgb(192,0,0);}
.fc8{color:rgb(44,62,80);}
.fc3{color:rgb(31,73,124);}
.fca{color:rgb(0,176,80);}
.fc9{color:rgb(51,51,51);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.fs5{font-size:84.239966px;}
.y5{bottom:-14.399994px;}
.y0{bottom:0.000000px;}
.y141{bottom:2.879850px;}
.y155{bottom:3.239656px;}
.y157{bottom:3.239669px;}
.y159{bottom:3.239681px;}
.y15b{bottom:3.239694px;}
.y15d{bottom:3.239707px;}
.y15f{bottom:3.239720px;}
.y161{bottom:3.239732px;}
.y163{bottom:3.239745px;}
.y165{bottom:3.239758px;}
.y167{bottom:3.239771px;}
.y169{bottom:3.239783px;}
.y16c{bottom:3.239806px;}
.y16e{bottom:3.239819px;}
.y170{bottom:3.239832px;}
.y172{bottom:3.239845px;}
.y174{bottom:3.239857px;}
.y176{bottom:3.239870px;}
.y178{bottom:3.239883px;}
.y17a{bottom:3.239895px;}
.y17c{bottom:3.239908px;}
.y37{bottom:3.239917px;}
.y17e{bottom:3.239921px;}
.y180{bottom:3.239934px;}
.y3f{bottom:3.959603px;}
.y42{bottom:4.499580px;}
.y17{bottom:4.499707px;}
.y25{bottom:4.499726px;}
.y9{bottom:4.499980px;}
.ya{bottom:28.259989px;}
.y8{bottom:46.080000px;}
.y7{bottom:50.579980px;}
.y39{bottom:133.559947px;}
.y115{bottom:139.499944px;}
.y87{bottom:140.579944px;}
.y148{bottom:147.059941px;}
.y77{bottom:149.219940px;}
.y196{bottom:149.579940px;}
.y98{bottom:153.719939px;}
.y133{bottom:157.139937px;}
.y102{bottom:159.659936px;}
.yef{bottom:160.739936px;}
.yc4{bottom:161.819935px;}
.y17f{bottom:162.540000px;}
.ye0{bottom:170.279932px;}
.y60{bottom:173.159931px;}
.ya9{bottom:178.559929px;}
.y147{bottom:178.739929px;}
.y195{bottom:180.539928px;}
.y38{bottom:184.859926px;}
.y114{bottom:185.399926px;}
.y97{bottom:185.579926px;}
.y86{bottom:186.659925px;}
.y17d{bottom:194.400000px;}
.yee{bottom:196.379921px;}
.y76{bottom:198.359921px;}
.y132{bottom:203.219919px;}
.y36{bottom:205.380000px;}
.y101{bottom:205.559918px;}
.yc3{bottom:207.899917px;}
.y146{bottom:210.599916px;}
.y194{bottom:211.679915px;}
.y96{bottom:217.259913px;}
.ydf{bottom:222.119911px;}
.y5f{bottom:222.299911px;}
.y17b{bottom:226.260000px;}
.y23{bottom:226.979909px;}
.y113{bottom:227.519909px;}
.y75{bottom:229.499908px;}
.y1a0{bottom:229.679908px;}
.ya8{bottom:230.759908px;}
.y85{bottom:232.739907px;}
.yed{bottom:236.159906px;}
.y100{bottom:236.699905px;}
.y11e{bottom:241.379903px;}
.y145{bottom:241.739903px;}
.y193{bottom:242.639903px;}
.y95{bottom:249.119900px;}
.y131{bottom:249.299900px;}
.yc2{bottom:250.019900px;}
.y48{bottom:250.919900px;}
.yde{bottom:253.259899px;}
.y179{bottom:258.120000px;}
.y11d{bottom:259.739896px;}
.y74{bottom:260.459896px;}
.ya7{bottom:261.719895px;}
.yd0{bottom:264.059894px;}
.yff{bottom:267.659893px;}
.y5e{bottom:268.199893px;}
.y47{bottom:270.719892px;}
.y144{bottom:273.419891px;}
.y192{bottom:273.779890px;}
.y19f{bottom:274.499890px;}
.yec{bottom:276.119890px;}
.y84{bottom:278.819888px;}
.y116{bottom:279.179888px;}
.y94{bottom:280.979888px;}
.yc5{bottom:283.679887px;}
.ydd{bottom:284.219886px;}
.y177{bottom:289.980000px;}
.y46{bottom:290.699884px;}
.y73{bottom:291.599883px;}
.ya6{bottom:292.859883px;}
.y130{bottom:295.379882px;}
.yfe{bottom:298.799880px;}
.y191{bottom:304.739878px;}
.y143{bottom:305.279878px;}
.y19e{bottom:305.639878px;}
.y83{bottom:309.779876px;}
.y45{bottom:310.499876px;}
.yc6{bottom:311.399875px;}
.y117{bottom:311.579875px;}
.y93{bottom:312.659875px;}
.yeb{bottom:316.079874px;}
.y5d{bottom:316.439873px;}
.y175{bottom:321.840000px;}
.y72{bottom:322.559871px;}
.ya5{bottom:323.819870px;}
.y12f{bottom:326.339869px;}
.yfd{bottom:329.759868px;}
.y44{bottom:330.299868px;}
.y190{bottom:335.699866px;}
.y142{bottom:336.959865px;}
.yc7{bottom:339.299864px;}
.y118{bottom:343.979862px;}
.y92{bottom:344.519862px;}
.y19d{bottom:351.539859px;}
.y71{bottom:353.699859px;}
.y173{bottom:353.700000px;}
.ya4{bottom:354.779858px;}
.y82{bottom:355.859858px;}
.yfc{bottom:360.899856px;}
.y43{bottom:365.399854px;}
.y22{bottom:365.579854px;}
.yc8{bottom:367.199853px;}
.y18f{bottom:368.099853px;}
.y13f{bottom:368.819852px;}
.y12e{bottom:372.419851px;}
.y140{bottom:372.780000px;}
.y91{bottom:376.379849px;}
.y19c{bottom:382.679847px;}
.y70{bottom:384.659846px;}
.y171{bottom:385.380000px;}
.ya3{bottom:385.739846px;}
.yfb{bottom:391.859843px;}
.yc9{bottom:394.919842px;}
.y5c{bottom:396.539841px;}
.y18e{bottom:399.239840px;}
.y81{bottom:401.939839px;}
.yea{bottom:406.619837px;}
.y119{bottom:408.779836px;}
.y35{bottom:413.999834px;}
.y6f{bottom:415.799834px;}
.ydc{bottom:417.239833px;}
.y16f{bottom:417.240000px;}
.y13e{bottom:417.419833px;}
.y12d{bottom:418.499833px;}
.yca{bottom:422.819831px;}
.y90{bottom:423.179831px;}
.y5b{bottom:427.679829px;}
.y19b{bottom:428.759828px;}
.y18d{bottom:430.199828px;}
.y34{bottom:431.279827px;}
.ya2{bottom:437.939825px;}
.y11a{bottom:441.179824px;}
.y80{bottom:446.039822px;}
.y6e{bottom:446.759821px;}
.y16d{bottom:449.100000px;}
.ycb{bottom:450.719820px;}
.y21{bottom:450.899820px;}
.ye9{bottom:452.519819px;}
.y12c{bottom:457.919817px;}
.y5a{bottom:458.639817px;}
.y19a{bottom:459.719816px;}
.y18c{bottom:461.159816px;}
.y33{bottom:463.499815px;}
.y13d{bottom:465.479814px;}
.ydb{bottom:466.199814px;}
.y8f{bottom:469.079812px;}
.y11b{bottom:473.579811px;}
.y6d{bottom:477.899809px;}
.ycc{bottom:478.619809px;}
.ya1{bottom:479.879808px;}
.y32{bottom:480.779808px;}
.y16b{bottom:480.960000px;}
.ye8{bottom:483.659807px;}
.y20{bottom:485.099806px;}
.y18b{bottom:493.559803px;}
.yb5{bottom:495.359802px;}
.y31{bottom:498.059801px;}
.y16a{bottom:499.679800px;}
.y8e{bottom:500.219800px;}
.y7f{bottom:501.839799px;}
.y1f{bottom:502.739799px;}
.y12b{bottom:504.719798px;}
.y199{bottom:505.799798px;}
.y11c{bottom:505.979798px;}
.ycd{bottom:506.339797px;}
.y59{bottom:506.879797px;}
.y6c{bottom:508.859796px;}
.yb4{bottom:513.719795px;}
.ye7{bottom:514.619794px;}
.yda{bottom:514.799794px;}
.y13c{bottom:514.979794px;}
.y30{bottom:515.339794px;}
.y1e{bottom:520.199792px;}
.y18a{bottom:524.699790px;}
.y8d{bottom:531.179788px;}
.y2f{bottom:532.619787px;}
.yaa{bottom:533.159787px;}
.yce{bottom:534.239786px;}
.y1d{bottom:536.759785px;}
.y168{bottom:538.560000px;}
.y6b{bottom:539.999784px;}
.ye6{bottom:545.759782px;}
.y2e{bottom:549.899780px;}
.y12a{bottom:550.799780px;}
.y189{bottom:555.659778px;}
.y58{bottom:556.019778px;}
.y112{bottom:556.199778px;}
.y7e{bottom:557.639777px;}
.y104{bottom:559.259776px;}
.y13b{bottom:559.619776px;}
.ycf{bottom:562.139775px;}
.y8c{bottom:562.319775px;}
.yd9{bottom:563.939774px;}
.yab{bottom:565.199774px;}
.y2d{bottom:566.999773px;}
.y1c{bottom:569.339772px;}
.y166{bottom:570.420000px;}
.y6a{bottom:570.959772px;}
.ye5{bottom:576.719769px;}
.y198{bottom:582.839767px;}
.y2c{bottom:584.279766px;}
.y13a{bottom:586.619765px;}
.y57{bottom:586.979765px;}
.y8b{bottom:593.279763px;}
.yac{bottom:597.239761px;}
.y129{bottom:597.419761px;}
.y2b{bottom:601.559759px;}
.y69{bottom:601.919759px;}
.y1b{bottom:602.279759px;}
.y164{bottom:602.280000px;}
.ye4{bottom:607.859757px;}
.yc1{bottom:612.359755px;}
.yd8{bottom:613.079755px;}
.y7d{bottom:613.439755px;}
.y56{bottom:618.119753px;}
.y2a{bottom:618.839752px;}
.y8a{bottom:624.419750px;}
.yad{bottom:629.279748px;}
.y197{bottom:631.079748px;}
.y68{bottom:633.059747px;}
.y111{bottom:633.239747px;}
.y162{bottom:633.960000px;}
.y1a{bottom:635.039746px;}
.y29{bottom:636.119746px;}
.y188{bottom:636.299745px;}
.y139{bottom:640.439744px;}
.y128{bottom:644.219742px;}
.y55{bottom:649.079740px;}
.y103{bottom:650.339740px;}
.y19{bottom:653.039739px;}
.y28{bottom:653.219739px;}
.ye3{bottom:653.939738px;}
.yc0{bottom:658.259737px;}
.yae{bottom:661.319735px;}
.yd7{bottom:662.219735px;}
.y67{bottom:664.019734px;}
.y110{bottom:664.379734px;}
.y160{bottom:665.820000px;}
.y138{bottom:667.259733px;}
.y27{bottom:670.499732px;}
.y7c{bottom:671.939731px;}
.y54{bottom:680.219728px;}
.y24{bottom:681.660000px;}
.y187{bottom:685.259726px;}
.y26{bottom:687.779725px;}
.ybf{bottom:689.399724px;}
.y18{bottom:690.299724px;}
.y127{bottom:690.839724px;}
.yaf{bottom:693.359723px;}
.y137{bottom:694.259722px;}
.y66{bottom:695.159722px;}
.y10f{bottom:695.339722px;}
.y15e{bottom:697.680000px;}
.ye2{bottom:699.839720px;}
.y53{bottom:711.179716px;}
.yd6{bottom:711.359715px;}
.y89{bottom:712.619715px;}
.yfa{bottom:713.699715px;}
.y186{bottom:716.399713px;}
.y7b{bottom:719.999712px;}
.y136{bottom:721.079712px;}
.y14{bottom:724.139710px;}
.y15{bottom:724.319710px;}
.yb0{bottom:725.399710px;}
.y65{bottom:726.119710px;}
.y16{bottom:728.820000px;}
.y15c{bottom:729.540000px;}
.yf9{bottom:732.059707px;}
.ybe{bottom:735.479706px;}
.y126{bottom:737.639705px;}
.y10e{bottom:741.419703px;}
.y52{bottom:742.319703px;}
.y185{bottom:747.359701px;}
.yf0{bottom:751.499699px;}
.y13{bottom:753.659699px;}
.y64{bottom:757.259697px;}
.yb1{bottom:757.439697px;}
.y15a{bottom:761.400000px;}
.y135{bottom:767.159693px;}
.y7a{bottom:769.139692px;}
.yd5{bottom:772.379691px;}
.y51{bottom:773.279691px;}
.y12{bottom:774.179690px;}
.y99{bottom:774.899690px;}
.y184{bottom:778.499689px;}
.yf1{bottom:778.679689px;}
.ybd{bottom:781.379687px;}
.y10d{bottom:787.499685px;}
.y63{bottom:788.219685px;}
.yb2{bottom:789.299684px;}
.y158{bottom:793.260000px;}
.y11{bottom:793.619683px;}
.y125{bottom:797.579681px;}
.yd4{bottom:803.339679px;}
.y50{bottom:804.419678px;}
.yf2{bottom:806.039678px;}
.y134{bottom:809.279676px;}
.y183{bottom:809.459676px;}
.y10{bottom:811.619675px;}
.ybc{bottom:813.239675px;}
.y79{bottom:815.219674px;}
.y105{bottom:815.579674px;}
.y10c{bottom:819.179672px;}
.y62{bottom:819.359672px;}
.yb3{bottom:821.339671px;}
.y14e{bottom:823.139671px;}
.y156{bottom:825.120000px;}
.yf{bottom:832.139667px;}
.yf3{bottom:833.219667px;}
.y4f{bottom:835.379666px;}
.y182{bottom:840.599664px;}
.y149{bottom:842.579663px;}
.ybb{bottom:845.099662px;}
.y124{bottom:849.599660px;}
.y61{bottom:850.319660px;}
.y10b{bottom:851.039660px;}
.ye{bottom:851.579659px;}
.yd3{bottom:855.539658px;}
.y154{bottom:856.980000px;}
.yf4{bottom:860.579656px;}
.y78{bottom:863.459655px;}
.yd{bottom:869.399652px;}
.ya0{bottom:871.559651px;}
.y14a{bottom:875.339650px;}
.y153{bottom:875.519650px;}
.yba{bottom:876.779649px;}
.y123{bottom:880.559648px;}
.y4e{bottom:881.459647px;}
.y10a{bottom:882.899647px;}
.yd2{bottom:886.679645px;}
.yf5{bottom:887.759645px;}
.y9f{bottom:902.699639px;}
.yc{bottom:905.219638px;}
.y14b{bottom:908.279637px;}
.yb9{bottom:908.639637px;}
.y122{bottom:911.699635px;}
.y4d{bottom:912.419635px;}
.y109{bottom:914.579634px;}
.yf6{bottom:915.119634px;}
.yd1{bottom:917.639633px;}
.y9a{bottom:925.559630px;}
.yb{bottom:925.919630px;}
.y152{bottom:931.859627px;}
.yb8{bottom:940.499624px;}
.y14c{bottom:941.039624px;}
.yf7{bottom:942.299623px;}
.y121{bottom:942.659623px;}
.y4c{bottom:943.559623px;}
.y108{bottom:946.439621px;}
.y9e{bottom:948.779620px;}
.y151{bottom:951.119620px;}
.y3a{bottom:959.759616px;}
.yf8{bottom:969.659612px;}
.y40{bottom:971.999611px;}
.yb7{bottom:972.179611px;}
.y120{bottom:973.799610px;}
.y4b{bottom:974.519610px;}
.y107{bottom:978.299609px;}
.y9d{bottom:979.739608px;}
.y150{bottom:985.499606px;}
.y3e{bottom:989.100000px;}
.y3d{bottom:993.059603px;}
.y181{bottom:994.679602px;}
.y9b{bottom:1000.799600px;}
.yb6{bottom:1004.039598px;}
.y11f{bottom:1004.759598px;}
.y4a{bottom:1005.659598px;}
.y14d{bottom:1006.559597px;}
.y106{bottom:1009.979596px;}
.y9c{bottom:1010.879596px;}
.y3c{bottom:1016.819593px;}
.y14f{bottom:1021.139592px;}
.ye1{bottom:1025.819590px;}
.y3b{bottom:1046.159582px;}
.y41{bottom:1046.160000px;}
.y49{bottom:1053.719579px;}
.y88{bottom:1056.779577px;}
.y4{bottom:1078.019569px;}
.y6{bottom:1106.459557px;}
.y3{bottom:1109.699556px;}
.y2{bottom:1126.979549px;}
.y1{bottom:1144.259542px;}
.h3{height:1.440000px;}
.h19{height:12.780000px;}
.h1d{height:14.580000px;}
.h11{height:16.560000px;}
.h14{height:18.180000px;}
.hc{height:20.160000px;}
.h5{height:20.340000px;}
.h1a{height:33.518307px;}
.he{height:33.706744px;}
.h1e{height:34.625377px;}
.h10{height:36.624009px;}
.h4{height:36.703110px;}
.hb{height:38.759750px;}
.hf{height:39.339828px;}
.h1{height:41.522679px;}
.h15{height:41.785296px;}
.h6{height:42.894123px;}
.h16{height:43.536076px;}
.ha{height:44.149201px;}
.h9{height:44.207209px;}
.h1c{height:44.893107px;}
.hd{height:45.281232px;}
.h1f{height:46.025138px;}
.h2{height:47.545293px;}
.h7{height:48.796855px;}
.h8{height:50.027324px;}
.h17{height:52.417948px;}
.h18{height:52.453104px;}
.h12{height:57.092321px;}
.h13{height:57.585914px;}
.h1b{height:174.587274px;}
.h0{height:1188.000000px;}
.w2{width:5.040000px;}
.w9{width:5.940000px;}
.w8{width:6.120000px;}
.w7{width:6.300000px;}
.w5{width:7.560000px;}
.w3{width:8.100000px;}
.w4{width:8.280000px;}
.w1{width:9.720000px;}
.wd{width:12.240000px;}
.w6{width:15.660000px;}
.wa{width:21.240000px;}
.wb{width:27.360000px;}
.wc{width:33.480000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x19{left:98.999960px;}
.x17{left:105.119958px;}
.x1{left:107.999957px;}
.x59{left:116.100000px;}
.x35{left:117.719953px;}
.x14{left:119.159952px;}
.x16{left:121.139984px;}
.x15{left:122.399951px;}
.x34{left:125.279950px;}
.xf{left:128.159949px;}
.x2a{left:134.999946px;}
.x56{left:139.859944px;}
.x5{left:142.019943px;}
.x57{left:144.359942px;}
.x3b{left:148.859899px;}
.x47{left:151.919939px;}
.x2e{left:158.758802px;}
.x1a{left:159.839936px;}
.x18{left:161.819935px;}
.x38{left:163.981136px;}
.xc{left:166.679933px;}
.x3f{left:169.559932px;}
.x3c{left:171.179932px;}
.x2b{left:174.239171px;}
.x36{left:175.679930px;}
.x58{left:177.659929px;}
.x8{left:180.359928px;}
.x4d{left:183.421097px;}
.x2f{left:185.579926px;}
.x39{left:190.799924px;}
.x3d{left:192.959923px;}
.x2c{left:196.379921px;}
.x3e{left:197.459921px;}
.x2d{left:200.879920px;}
.x4e{left:205.739918px;}
.x4f{left:210.239916px;}
.x10{left:223.919910px;}
.x11{left:226.799909px;}
.x1b{left:245.699967px;}
.x1c{left:246.779901px;}
.x20{left:248.939900px;}
.x9{left:262.799644px;}
.x6a{left:269.459892px;}
.x12{left:270.900000px;}
.x24{left:275.039884px;}
.x64{left:278.100000px;}
.x40{left:281.519887px;}
.x5a{left:284.040000px;}
.x37{left:286.379885px;}
.xd{left:287.819876px;}
.x1d{left:290.339884px;}
.x13{left:293.939882px;}
.x29{left:296.459881px;}
.x65{left:299.340000px;}
.x2{left:302.579879px;}
.x48{left:305.639878px;}
.x1f{left:306.900000px;}
.x5f{left:311.400000px;}
.x21{left:313.019875px;}
.x63{left:317.520000px;}
.x31{left:350.999860px;}
.x7{left:359.099856px;}
.x44{left:363.419855px;}
.x45{left:369.179852px;}
.x46{left:372.239851px;}
.x32{left:374.579850px;}
.x26{left:375.839850px;}
.x22{left:382.319809px;}
.x49{left:386.999845px;}
.x6{left:388.618939px;}
.xb{left:390.239844px;}
.x30{left:424.259830px;}
.x66{left:440.100000px;}
.x5b{left:451.980000px;}
.xe{left:458.999816px;}
.x67{left:461.340000px;}
.x5c{left:473.220000px;}
.x60{left:479.340000px;}
.x62{left:485.460000px;}
.x6b{left:497.879801px;}
.x41{left:511.199796px;}
.x43{left:515.339794px;}
.x4a{left:540.179784px;}
.x1e{left:548.279781px;}
.x23{left:554.579778px;}
.x27{left:593.459763px;}
.x68{left:602.100000px;}
.x5d{left:619.920000px;}
.x69{left:629.460000px;}
.x42{left:633.419747px;}
.x4b{left:635.399746px;}
.x5e{left:647.280000px;}
.x61{left:653.400000px;}
.xa{left:655.199738px;}
.x4c{left:658.799736px;}
.x25{left:661.860000px;}
.x28{left:685.620000px;}
.x3{left:691.199724px;}
.x50{left:701.279719px;}
.x52{left:716.760000px;}
.x53{left:723.059711px;}
.x33{left:758.159016px;}
.x3a{left:760.319381px;}
.x51{left:782.999687px;}
.x54{left:793.080000px;}
.x55{left:799.199680px;}
.x4{left:804.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:55.039978pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.030613pt;}
.ls6{letter-spacing:0.044800pt;}
.ls2{letter-spacing:0.055772pt;}
.lsf{letter-spacing:0.056320pt;}
.lsa{letter-spacing:0.061227pt;}
.lsc{letter-spacing:0.061838pt;}
.ls0{letter-spacing:0.167040pt;}
.ls3{letter-spacing:0.178313pt;}
.ls1{letter-spacing:0.187144pt;}
.ls7{letter-spacing:21.322711pt;}
.lse{letter-spacing:27.703722pt;}
.lsd{letter-spacing:27.734922pt;}
.ls5{letter-spacing:30.299828pt;}
.ls10{letter-spacing:48.895447pt;}
.lsb{letter-spacing:341.803063pt;}
.ls8{letter-spacing:400.154507pt;}
.wsc{word-spacing:-31.999987pt;}
.ws4{word-spacing:-28.855760pt;}
.ws3{word-spacing:-28.799988pt;}
.ws8{word-spacing:-15.999994pt;}
.ws6{word-spacing:-14.767354pt;}
.ws2{word-spacing:-13.343995pt;}
.ws1{word-spacing:-13.306875pt;}
.ws0{word-spacing:-13.279995pt;}
.ws5{word-spacing:-12.005115pt;}
.wsb{word-spacing:-9.752714pt;}
.wsa{word-spacing:-9.690876pt;}
.ws7{word-spacing:0.000000pt;}
.ws9{word-spacing:76.664854pt;}
._f{margin-left:-3.593189pt;}
._12{margin-left:-2.459343pt;}
._1{margin-left:-1.100094pt;}
._0{width:1.024788pt;}
._4{width:2.560717pt;}
._b{width:4.029543pt;}
._8{width:5.433622pt;}
._1f{width:6.342146pt;}
._6{width:7.240441pt;}
._5{width:8.233724pt;}
._9{width:9.163404pt;}
._a{width:10.707513pt;}
._7{width:12.213977pt;}
._11{width:13.411392pt;}
._10{width:14.412547pt;}
._c{width:15.850568pt;}
._67{width:17.223662pt;}
._1e{width:19.089944pt;}
._1d{width:20.226995pt;}
._68{width:21.367148pt;}
._2e{width:24.969508pt;}
._e{width:57.293461pt;}
._d{width:58.319144pt;}
._30{width:67.310293pt;}
._2{width:75.182370pt;}
._5b{width:83.706847pt;}
._77{width:84.672606pt;}
._22{width:98.024151pt;}
._2f{width:104.276850pt;}
._31{width:109.369925pt;}
._59{width:112.159527pt;}
._44{width:120.466056pt;}
._41{width:121.720442pt;}
._5a{width:127.522859pt;}
._15{width:130.726218pt;}
._78{width:141.802633pt;}
._53{width:148.658071pt;}
._8f{width:153.848461pt;}
._82{width:163.726637pt;}
._4c{width:166.809983pt;}
._8a{width:169.925575pt;}
._63{width:173.222741pt;}
._23{width:175.145941pt;}
._75{width:179.218726pt;}
._81{width:180.978700pt;}
._76{width:182.625255pt;}
._3e{width:183.663097pt;}
._86{width:186.047095pt;}
._7d{width:196.114332pt;}
._85{width:201.986577pt;}
._79{width:205.949946pt;}
._8e{width:207.729748pt;}
._7c{width:209.131246pt;}
._40{width:212.439788pt;}
._14{width:215.812463pt;}
._7b{width:218.017716pt;}
._7e{width:220.031722pt;}
._83{width:223.238120pt;}
._8d{width:228.184017pt;}
._84{width:248.943900pt;}
._89{width:250.230512pt;}
._3f{width:255.135801pt;}
._5f{width:257.222708pt;}
._80{width:260.490348pt;}
._61{width:266.199984pt;}
._87{width:267.657071pt;}
._13{width:274.646489pt;}
._32{width:276.087600pt;}
._5d{width:277.742380pt;}
._3b{width:282.230698pt;}
._27{width:284.154537pt;}
._7f{width:285.289798pt;}
._29{width:292.490534pt;}
._21{width:294.682829pt;}
._69{width:298.477786pt;}
._45{width:309.161926pt;}
._20{width:316.325871pt;}
._33{width:319.421723pt;}
._8c{width:324.610135pt;}
._25{width:331.604758pt;}
._2b{width:333.497237pt;}
._5c{width:334.921704pt;}
._7a{width:336.154958pt;}
._64{width:345.233662pt;}
._39{width:346.994192pt;}
._71{width:348.276751pt;}
._88{width:352.124430pt;}
._4d{width:354.047668pt;}
._6f{width:362.383626pt;}
._24{width:364.969186pt;}
._8b{width:374.912588pt;}
._48{width:377.131819pt;}
._56{width:380.948098pt;}
._42{width:384.937044pt;}
._35{width:386.109056pt;}
._4a{width:388.032935pt;}
._6a{width:397.009532pt;}
._37{width:402.108410pt;}
._16{width:407.269368pt;}
._43{width:408.179746pt;}
._19{width:418.139123pt;}
._60{width:428.336746pt;}
._6c{width:429.712239pt;}
._57{width:433.498707pt;}
._62{width:437.215699pt;}
._2c{width:441.193424pt;}
._5e{width:448.778098pt;}
._54{width:451.482470pt;}
._65{width:459.788616pt;}
._3c{width:468.631739pt;}
._73{width:470.048452pt;}
._28{width:474.584724pt;}
._66{width:476.002992pt;}
._52{width:487.544748pt;}
._34{width:491.122790pt;}
._2a{width:498.279627pt;}
._1c{width:508.064419pt;}
._50{width:509.803956pt;}
._47{width:519.544964pt;}
._1b{width:520.470929pt;}
._26{width:522.367259pt;}
._58{width:526.555704pt;}
._72{width:529.532350pt;}
._3a{width:534.620618pt;}
._18{width:540.063996pt;}
._46{width:544.517163pt;}
._4f{width:551.545150pt;}
._36{width:557.683400pt;}
._17{width:559.689701pt;}
._6b{width:562.560484pt;}
._1a{width:570.131763pt;}
._70{width:571.388505pt;}
._38{width:573.748086pt;}
._3d{width:580.746105pt;}
._6e{width:582.327561pt;}
._6d{width:595.650226pt;}
._2d{width:599.341298pt;}
._74{width:603.189055pt;}
._4e{width:605.582852pt;}
._55{width:609.887907pt;}
._49{width:611.779285pt;}
._4b{width:623.214876pt;}
._51{width:712.835652pt;}
._3{width:2289.337164pt;}
.fs4{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.fs5{font-size:74.879970pt;}
.y5{bottom:-12.799995pt;}
.y0{bottom:0.000000pt;}
.y141{bottom:2.559866pt;}
.y155{bottom:2.879694pt;}
.y157{bottom:2.879705pt;}
.y159{bottom:2.879717pt;}
.y15b{bottom:2.879728pt;}
.y15d{bottom:2.879739pt;}
.y15f{bottom:2.879751pt;}
.y161{bottom:2.879762pt;}
.y163{bottom:2.879773pt;}
.y165{bottom:2.879785pt;}
.y167{bottom:2.879796pt;}
.y169{bottom:2.879807pt;}
.y16c{bottom:2.879828pt;}
.y16e{bottom:2.879839pt;}
.y170{bottom:2.879850pt;}
.y172{bottom:2.879862pt;}
.y174{bottom:2.879873pt;}
.y176{bottom:2.879884pt;}
.y178{bottom:2.879896pt;}
.y17a{bottom:2.879907pt;}
.y17c{bottom:2.879918pt;}
.y37{bottom:2.879926pt;}
.y17e{bottom:2.879930pt;}
.y180{bottom:2.879941pt;}
.y3f{bottom:3.519647pt;}
.y42{bottom:3.999626pt;}
.y17{bottom:3.999739pt;}
.y25{bottom:3.999756pt;}
.y9{bottom:3.999982pt;}
.ya{bottom:25.119990pt;}
.y8{bottom:40.960000pt;}
.y7{bottom:44.959982pt;}
.y39{bottom:118.719953pt;}
.y115{bottom:123.999950pt;}
.y87{bottom:124.959950pt;}
.y148{bottom:130.719948pt;}
.y77{bottom:132.639947pt;}
.y196{bottom:132.959947pt;}
.y98{bottom:136.639945pt;}
.y133{bottom:139.679944pt;}
.y102{bottom:141.919943pt;}
.yef{bottom:142.879943pt;}
.yc4{bottom:143.839942pt;}
.y17f{bottom:144.480000pt;}
.ye0{bottom:151.359939pt;}
.y60{bottom:153.919938pt;}
.ya9{bottom:158.719937pt;}
.y147{bottom:158.879936pt;}
.y195{bottom:160.479936pt;}
.y38{bottom:164.319934pt;}
.y114{bottom:164.799934pt;}
.y97{bottom:164.959934pt;}
.y86{bottom:165.919934pt;}
.y17d{bottom:172.800000pt;}
.yee{bottom:174.559930pt;}
.y76{bottom:176.319929pt;}
.y132{bottom:180.639928pt;}
.y36{bottom:182.560000pt;}
.y101{bottom:182.719927pt;}
.yc3{bottom:184.799926pt;}
.y146{bottom:187.199925pt;}
.y194{bottom:188.159925pt;}
.y96{bottom:193.119923pt;}
.ydf{bottom:197.439921pt;}
.y5f{bottom:197.599921pt;}
.y17b{bottom:201.120000pt;}
.y23{bottom:201.759919pt;}
.y113{bottom:202.239919pt;}
.y75{bottom:203.999918pt;}
.y1a0{bottom:204.159918pt;}
.ya8{bottom:205.119918pt;}
.y85{bottom:206.879917pt;}
.yed{bottom:209.919916pt;}
.y100{bottom:210.399916pt;}
.y11e{bottom:214.559914pt;}
.y145{bottom:214.879914pt;}
.y193{bottom:215.679914pt;}
.y95{bottom:221.439911pt;}
.y131{bottom:221.599911pt;}
.yc2{bottom:222.239911pt;}
.y48{bottom:223.039911pt;}
.yde{bottom:225.119910pt;}
.y179{bottom:229.440000pt;}
.y11d{bottom:230.879908pt;}
.y74{bottom:231.519907pt;}
.ya7{bottom:232.639907pt;}
.yd0{bottom:234.719906pt;}
.yff{bottom:237.919905pt;}
.y5e{bottom:238.399905pt;}
.y47{bottom:240.639904pt;}
.y144{bottom:243.039903pt;}
.y192{bottom:243.359903pt;}
.y19f{bottom:243.999902pt;}
.yec{bottom:245.439902pt;}
.y84{bottom:247.839901pt;}
.y116{bottom:248.159901pt;}
.y94{bottom:249.759900pt;}
.yc5{bottom:252.159899pt;}
.ydd{bottom:252.639899pt;}
.y177{bottom:257.760000pt;}
.y46{bottom:258.399897pt;}
.y73{bottom:259.199896pt;}
.ya6{bottom:260.319896pt;}
.y130{bottom:262.559895pt;}
.yfe{bottom:265.599894pt;}
.y191{bottom:270.879892pt;}
.y143{bottom:271.359891pt;}
.y19e{bottom:271.679891pt;}
.y83{bottom:275.359890pt;}
.y45{bottom:275.999890pt;}
.yc6{bottom:276.799889pt;}
.y117{bottom:276.959889pt;}
.y93{bottom:277.919889pt;}
.yeb{bottom:280.959888pt;}
.y5d{bottom:281.279887pt;}
.y175{bottom:286.080000pt;}
.y72{bottom:286.719885pt;}
.ya5{bottom:287.839885pt;}
.y12f{bottom:290.079884pt;}
.yfd{bottom:293.119883pt;}
.y44{bottom:293.599883pt;}
.y190{bottom:298.399881pt;}
.y142{bottom:299.519880pt;}
.yc7{bottom:301.599879pt;}
.y118{bottom:305.759878pt;}
.y92{bottom:306.239878pt;}
.y19d{bottom:312.479875pt;}
.y71{bottom:314.399874pt;}
.y173{bottom:314.400000pt;}
.ya4{bottom:315.359874pt;}
.y82{bottom:316.319873pt;}
.yfc{bottom:320.799872pt;}
.y43{bottom:324.799870pt;}
.y22{bottom:324.959870pt;}
.yc8{bottom:326.399869pt;}
.y18f{bottom:327.199869pt;}
.y13f{bottom:327.839869pt;}
.y12e{bottom:331.039868pt;}
.y140{bottom:331.360000pt;}
.y91{bottom:334.559866pt;}
.y19c{bottom:340.159864pt;}
.y70{bottom:341.919863pt;}
.y171{bottom:342.560000pt;}
.ya3{bottom:342.879863pt;}
.yfb{bottom:348.319861pt;}
.yc9{bottom:351.039860pt;}
.y5c{bottom:352.479859pt;}
.y18e{bottom:354.879858pt;}
.y81{bottom:357.279857pt;}
.yea{bottom:361.439855pt;}
.y119{bottom:363.359855pt;}
.y35{bottom:367.999853pt;}
.y6f{bottom:369.599852pt;}
.ydc{bottom:370.879852pt;}
.y16f{bottom:370.880000pt;}
.y13e{bottom:371.039852pt;}
.y12d{bottom:371.999851pt;}
.yca{bottom:375.839850pt;}
.y90{bottom:376.159850pt;}
.y5b{bottom:380.159848pt;}
.y19b{bottom:381.119848pt;}
.y18d{bottom:382.399847pt;}
.y34{bottom:383.359847pt;}
.ya2{bottom:389.279844pt;}
.y11a{bottom:392.159843pt;}
.y80{bottom:396.479841pt;}
.y6e{bottom:397.119841pt;}
.y16d{bottom:399.200000pt;}
.ycb{bottom:400.639840pt;}
.y21{bottom:400.799840pt;}
.ye9{bottom:402.239839pt;}
.y12c{bottom:407.039837pt;}
.y5a{bottom:407.679837pt;}
.y19a{bottom:408.639837pt;}
.y18c{bottom:409.919836pt;}
.y33{bottom:411.999835pt;}
.y13d{bottom:413.759834pt;}
.ydb{bottom:414.399834pt;}
.y8f{bottom:416.959833pt;}
.y11b{bottom:420.959832pt;}
.y6d{bottom:424.799830pt;}
.ycc{bottom:425.439830pt;}
.ya1{bottom:426.559829pt;}
.y32{bottom:427.359829pt;}
.y16b{bottom:427.520000pt;}
.ye8{bottom:429.919828pt;}
.y20{bottom:431.199828pt;}
.y18b{bottom:438.719825pt;}
.yb5{bottom:440.319824pt;}
.y31{bottom:442.719823pt;}
.y16a{bottom:444.159822pt;}
.y8e{bottom:444.639822pt;}
.y7f{bottom:446.079822pt;}
.y1f{bottom:446.879821pt;}
.y12b{bottom:448.639821pt;}
.y199{bottom:449.599820pt;}
.y11c{bottom:449.759820pt;}
.ycd{bottom:450.079820pt;}
.y59{bottom:450.559820pt;}
.y6c{bottom:452.319819pt;}
.yb4{bottom:456.639817pt;}
.ye7{bottom:457.439817pt;}
.yda{bottom:457.599817pt;}
.y13c{bottom:457.759817pt;}
.y30{bottom:458.079817pt;}
.y1e{bottom:462.399815pt;}
.y18a{bottom:466.399813pt;}
.y8d{bottom:472.159811pt;}
.y2f{bottom:473.439811pt;}
.yaa{bottom:473.919810pt;}
.yce{bottom:474.879810pt;}
.y1d{bottom:477.119809pt;}
.y168{bottom:478.720000pt;}
.y6b{bottom:479.999808pt;}
.ye6{bottom:485.119806pt;}
.y2e{bottom:488.799804pt;}
.y12a{bottom:489.599804pt;}
.y189{bottom:493.919802pt;}
.y58{bottom:494.239802pt;}
.y112{bottom:494.399802pt;}
.y7e{bottom:495.679802pt;}
.y104{bottom:497.119801pt;}
.y13b{bottom:497.439801pt;}
.ycf{bottom:499.679800pt;}
.y8c{bottom:499.839800pt;}
.yd9{bottom:501.279799pt;}
.yab{bottom:502.399799pt;}
.y2d{bottom:503.999798pt;}
.y1c{bottom:506.079798pt;}
.y166{bottom:507.040000pt;}
.y6a{bottom:507.519797pt;}
.ye5{bottom:512.639795pt;}
.y198{bottom:518.079793pt;}
.y2c{bottom:519.359792pt;}
.y13a{bottom:521.439791pt;}
.y57{bottom:521.759791pt;}
.y8b{bottom:527.359789pt;}
.yac{bottom:530.879788pt;}
.y129{bottom:531.039788pt;}
.y2b{bottom:534.719786pt;}
.y69{bottom:535.039786pt;}
.y1b{bottom:535.359786pt;}
.y164{bottom:535.360000pt;}
.ye4{bottom:540.319784pt;}
.yc1{bottom:544.319782pt;}
.yd8{bottom:544.959782pt;}
.y7d{bottom:545.279782pt;}
.y56{bottom:549.439780pt;}
.y2a{bottom:550.079780pt;}
.y8a{bottom:555.039778pt;}
.yad{bottom:559.359776pt;}
.y197{bottom:560.959776pt;}
.y68{bottom:562.719775pt;}
.y111{bottom:562.879775pt;}
.y162{bottom:563.520000pt;}
.y1a{bottom:564.479774pt;}
.y29{bottom:565.439774pt;}
.y188{bottom:565.599774pt;}
.y139{bottom:569.279772pt;}
.y128{bottom:572.639771pt;}
.y55{bottom:576.959769pt;}
.y103{bottom:578.079769pt;}
.y19{bottom:580.479768pt;}
.y28{bottom:580.639768pt;}
.ye3{bottom:581.279767pt;}
.yc0{bottom:585.119766pt;}
.yae{bottom:587.839765pt;}
.yd7{bottom:588.639765pt;}
.y67{bottom:590.239764pt;}
.y110{bottom:590.559764pt;}
.y160{bottom:591.840000pt;}
.y138{bottom:593.119763pt;}
.y27{bottom:595.999762pt;}
.y7c{bottom:597.279761pt;}
.y54{bottom:604.639758pt;}
.y24{bottom:605.920000pt;}
.y187{bottom:609.119756pt;}
.y26{bottom:611.359755pt;}
.ybf{bottom:612.799755pt;}
.y18{bottom:613.599755pt;}
.y127{bottom:614.079754pt;}
.yaf{bottom:616.319753pt;}
.y137{bottom:617.119753pt;}
.y66{bottom:617.919753pt;}
.y10f{bottom:618.079753pt;}
.y15e{bottom:620.160000pt;}
.ye2{bottom:622.079751pt;}
.y53{bottom:632.159747pt;}
.yd6{bottom:632.319747pt;}
.y89{bottom:633.439747pt;}
.yfa{bottom:634.399746pt;}
.y186{bottom:636.799745pt;}
.y7b{bottom:639.999744pt;}
.y136{bottom:640.959744pt;}
.y14{bottom:643.679743pt;}
.y15{bottom:643.839742pt;}
.yb0{bottom:644.799742pt;}
.y65{bottom:645.439742pt;}
.y16{bottom:647.840000pt;}
.y15c{bottom:648.480000pt;}
.yf9{bottom:650.719740pt;}
.ybe{bottom:653.759738pt;}
.y126{bottom:655.679738pt;}
.y10e{bottom:659.039736pt;}
.y52{bottom:659.839736pt;}
.y185{bottom:664.319734pt;}
.yf0{bottom:667.999733pt;}
.y13{bottom:669.919732pt;}
.y64{bottom:673.119731pt;}
.yb1{bottom:673.279731pt;}
.y15a{bottom:676.800000pt;}
.y135{bottom:681.919727pt;}
.y7a{bottom:683.679727pt;}
.yd5{bottom:686.559725pt;}
.y51{bottom:687.359725pt;}
.y12{bottom:688.159725pt;}
.y99{bottom:688.799724pt;}
.y184{bottom:691.999723pt;}
.yf1{bottom:692.159723pt;}
.ybd{bottom:694.559722pt;}
.y10d{bottom:699.999720pt;}
.y63{bottom:700.639720pt;}
.yb2{bottom:701.599719pt;}
.y158{bottom:705.120000pt;}
.y11{bottom:705.439718pt;}
.y125{bottom:708.959716pt;}
.yd4{bottom:714.079714pt;}
.y50{bottom:715.039714pt;}
.yf2{bottom:716.479713pt;}
.y134{bottom:719.359712pt;}
.y183{bottom:719.519712pt;}
.y10{bottom:721.439711pt;}
.ybc{bottom:722.879711pt;}
.y79{bottom:724.639710pt;}
.y105{bottom:724.959710pt;}
.y10c{bottom:728.159709pt;}
.y62{bottom:728.319709pt;}
.yb3{bottom:730.079708pt;}
.y14e{bottom:731.679707pt;}
.y156{bottom:733.440000pt;}
.yf{bottom:739.679704pt;}
.yf3{bottom:740.639704pt;}
.y4f{bottom:742.559703pt;}
.y182{bottom:747.199701pt;}
.y149{bottom:748.959700pt;}
.ybb{bottom:751.199700pt;}
.y124{bottom:755.199698pt;}
.y61{bottom:755.839698pt;}
.y10b{bottom:756.479697pt;}
.ye{bottom:756.959697pt;}
.yd3{bottom:760.479696pt;}
.y154{bottom:761.760000pt;}
.yf4{bottom:764.959694pt;}
.y78{bottom:767.519693pt;}
.yd{bottom:772.799691pt;}
.ya0{bottom:774.719690pt;}
.y14a{bottom:778.079689pt;}
.y153{bottom:778.239689pt;}
.yba{bottom:779.359688pt;}
.y123{bottom:782.719687pt;}
.y4e{bottom:783.519687pt;}
.y10a{bottom:784.799686pt;}
.yd2{bottom:788.159685pt;}
.yf5{bottom:789.119684pt;}
.y9f{bottom:802.399679pt;}
.yc{bottom:804.639678pt;}
.y14b{bottom:807.359677pt;}
.yb9{bottom:807.679677pt;}
.y122{bottom:810.399676pt;}
.y4d{bottom:811.039676pt;}
.y109{bottom:812.959675pt;}
.yf6{bottom:813.439675pt;}
.yd1{bottom:815.679674pt;}
.y9a{bottom:822.719671pt;}
.yb{bottom:823.039671pt;}
.y152{bottom:828.319669pt;}
.yb8{bottom:835.999666pt;}
.y14c{bottom:836.479665pt;}
.yf7{bottom:837.599665pt;}
.y121{bottom:837.919665pt;}
.y4c{bottom:838.719665pt;}
.y108{bottom:841.279663pt;}
.y9e{bottom:843.359663pt;}
.y151{bottom:845.439662pt;}
.y3a{bottom:853.119659pt;}
.yf8{bottom:861.919655pt;}
.y40{bottom:863.999654pt;}
.yb7{bottom:864.159654pt;}
.y120{bottom:865.599654pt;}
.y4b{bottom:866.239654pt;}
.y107{bottom:869.599652pt;}
.y9d{bottom:870.879652pt;}
.y150{bottom:875.999650pt;}
.y3e{bottom:879.200000pt;}
.y3d{bottom:882.719647pt;}
.y181{bottom:884.159646pt;}
.y9b{bottom:889.599644pt;}
.yb6{bottom:892.479643pt;}
.y11f{bottom:893.119643pt;}
.y4a{bottom:893.919642pt;}
.y14d{bottom:894.719642pt;}
.y106{bottom:897.759641pt;}
.y9c{bottom:898.559641pt;}
.y3c{bottom:903.839638pt;}
.y14f{bottom:907.679637pt;}
.ye1{bottom:911.839635pt;}
.y3b{bottom:929.919628pt;}
.y41{bottom:929.920000pt;}
.y49{bottom:936.639625pt;}
.y88{bottom:939.359624pt;}
.y4{bottom:958.239617pt;}
.y6{bottom:983.519607pt;}
.y3{bottom:986.399605pt;}
.y2{bottom:1001.759599pt;}
.y1{bottom:1017.119593pt;}
.h3{height:1.280000pt;}
.h19{height:11.360000pt;}
.h1d{height:12.960000pt;}
.h11{height:14.720000pt;}
.h14{height:16.160000pt;}
.hc{height:17.920000pt;}
.h5{height:18.080000pt;}
.h1a{height:29.794051pt;}
.he{height:29.961551pt;}
.h1e{height:30.778113pt;}
.h10{height:32.554674pt;}
.h4{height:32.624987pt;}
.hb{height:34.453111pt;}
.hf{height:34.968736pt;}
.h1{height:36.909048pt;}
.h15{height:37.142485pt;}
.h6{height:38.128110pt;}
.h16{height:38.698735pt;}
.ha{height:39.243734pt;}
.h9{height:39.295297pt;}
.h1c{height:39.904984pt;}
.hd{height:40.249984pt;}
.h1f{height:40.911234pt;}
.h2{height:42.262483pt;}
.h7{height:43.374983pt;}
.h8{height:44.468732pt;}
.h17{height:46.593731pt;}
.h18{height:46.624981pt;}
.h12{height:50.748730pt;}
.h13{height:51.187480pt;}
.h1b{height:155.188688pt;}
.h0{height:1056.000000pt;}
.w2{width:4.480000pt;}
.w9{width:5.280000pt;}
.w8{width:5.440000pt;}
.w7{width:5.600000pt;}
.w5{width:6.720000pt;}
.w3{width:7.200000pt;}
.w4{width:7.360000pt;}
.w1{width:8.640000pt;}
.wd{width:10.880000pt;}
.w6{width:13.920000pt;}
.wa{width:18.880000pt;}
.wb{width:24.320000pt;}
.wc{width:29.760000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x19{left:87.999965pt;}
.x17{left:93.439963pt;}
.x1{left:95.999962pt;}
.x59{left:103.200000pt;}
.x35{left:104.639958pt;}
.x14{left:105.919958pt;}
.x16{left:107.679986pt;}
.x15{left:108.799956pt;}
.x34{left:111.359955pt;}
.xf{left:113.919954pt;}
.x2a{left:119.999952pt;}
.x56{left:124.319950pt;}
.x5{left:126.239950pt;}
.x57{left:128.319949pt;}
.x3b{left:132.319910pt;}
.x47{left:135.039946pt;}
.x2e{left:141.118935pt;}
.x1a{left:142.079943pt;}
.x18{left:143.839942pt;}
.x38{left:145.761010pt;}
.xc{left:148.159941pt;}
.x3f{left:150.719940pt;}
.x3c{left:152.159939pt;}
.x2b{left:154.879263pt;}
.x36{left:156.159938pt;}
.x58{left:157.919937pt;}
.x8{left:160.319936pt;}
.x4d{left:163.040975pt;}
.x2f{left:164.959934pt;}
.x39{left:169.599932pt;}
.x3d{left:171.519931pt;}
.x2c{left:174.559930pt;}
.x3e{left:175.519930pt;}
.x2d{left:178.559929pt;}
.x4e{left:182.879927pt;}
.x4f{left:186.879925pt;}
.x10{left:199.039920pt;}
.x11{left:201.599919pt;}
.x1b{left:218.399971pt;}
.x1c{left:219.359912pt;}
.x20{left:221.279911pt;}
.x9{left:233.599684pt;}
.x6a{left:239.519904pt;}
.x12{left:240.800000pt;}
.x24{left:244.479897pt;}
.x64{left:247.200000pt;}
.x40{left:250.239900pt;}
.x5a{left:252.480000pt;}
.x37{left:254.559898pt;}
.xd{left:255.839890pt;}
.x1d{left:258.079897pt;}
.x13{left:261.279895pt;}
.x29{left:263.519895pt;}
.x65{left:266.080000pt;}
.x2{left:268.959892pt;}
.x48{left:271.679891pt;}
.x1f{left:272.800000pt;}
.x5f{left:276.800000pt;}
.x21{left:278.239889pt;}
.x63{left:282.240000pt;}
.x31{left:311.999875pt;}
.x7{left:319.199872pt;}
.x44{left:323.039871pt;}
.x45{left:328.159869pt;}
.x46{left:330.879868pt;}
.x32{left:332.959867pt;}
.x26{left:334.079866pt;}
.x22{left:339.839830pt;}
.x49{left:343.999862pt;}
.x6{left:345.439057pt;}
.xb{left:346.879861pt;}
.x30{left:377.119849pt;}
.x66{left:391.200000pt;}
.x5b{left:401.760000pt;}
.xe{left:407.999837pt;}
.x67{left:410.080000pt;}
.x5c{left:420.640000pt;}
.x60{left:426.080000pt;}
.x62{left:431.520000pt;}
.x6b{left:442.559823pt;}
.x41{left:454.399818pt;}
.x43{left:458.079817pt;}
.x4a{left:480.159808pt;}
.x1e{left:487.359805pt;}
.x23{left:492.959803pt;}
.x27{left:527.519789pt;}
.x68{left:535.200000pt;}
.x5d{left:551.040000pt;}
.x69{left:559.520000pt;}
.x42{left:563.039775pt;}
.x4b{left:564.799774pt;}
.x5e{left:575.360000pt;}
.x61{left:580.800000pt;}
.xa{left:582.399767pt;}
.x4c{left:585.599766pt;}
.x25{left:588.320000pt;}
.x28{left:609.440000pt;}
.x3{left:614.399754pt;}
.x50{left:623.359751pt;}
.x52{left:637.120000pt;}
.x53{left:642.719743pt;}
.x33{left:673.919125pt;}
.x3a{left:675.839450pt;}
.x51{left:695.999722pt;}
.x54{left:704.960000pt;}
.x55{left:710.399716pt;}
.x4{left:715.200000pt;}
}




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