
    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_fa5e1b163c2b82d89593e1cf.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_293e31c07ec198e1339d4dd6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.837402;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_7456d9da850f940892707e1d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.703000;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_bd2ec8c3931ce63f10225e15.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_bdb71711885aa37e23719c70.woff')format("woff");}.ff5{font-family:ff5;line-height:0.895000;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_d3edc6100641fd27f485c157.woff')format("woff");}.ff6{font-family:ff6;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_44cab63c064ef5c8a4b8ca82.woff')format("woff");}.ff7{font-family:ff7;line-height:0.689453;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_285cb6d36a7a6fec9c709990.woff')format("woff");}.ff8{font-family:ff8;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{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);}
.m5{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m1{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.046495px;}
.ls1{letter-spacing:0.907394px;}
.ls3{letter-spacing:0.938326px;}
.ls9{letter-spacing:27.666186px;}
.ls2{letter-spacing:62.762605px;}
.ls8{letter-spacing:73.964370px;}
.ls5{letter-spacing:74.685570px;}
.ls7{letter-spacing:94.162762px;}
.ls4{letter-spacing:98.491161px;}
.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;}
}
.ws1{word-spacing:-19.795792px;}
.ws0{word-spacing:-18.273593px;}
.ws8{word-spacing:-14.043594px;}
.ws5{word-spacing:-8.545483px;}
.ws6{word-spacing:-7.607157px;}
.ws3{word-spacing:-7.427840px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:91.992407px;}
.ws4{word-spacing:101.849156px;}
._11{margin-left:-2.164985px;}
._1{margin-left:-1.139216px;}
._0{width:1.487139px;}
._b{width:2.547851px;}
._2{width:3.573027px;}
._3{width:4.726472px;}
._4{width:5.960725px;}
._9{width:7.096001px;}
._7{width:8.224209px;}
._6{width:9.264809px;}
._a{width:10.380786px;}
._8{width:11.811777px;}
._5{width:12.936171px;}
._c{width:14.461308px;}
._26{width:15.600474px;}
._d{width:16.777668px;}
._e{width:18.133908px;}
._10{width:19.382274px;}
._f{width:20.428857px;}
._19{width:22.327867px;}
._28{width:28.192923px;}
._29{width:29.235434px;}
._25{width:111.167776px;}
._14{width:154.863181px;}
._24{width:198.589537px;}
._23{width:199.615280px;}
._12{width:220.389485px;}
._15{width:225.081163px;}
._17{width:271.788748px;}
._16{width:368.577312px;}
._18{width:399.754427px;}
._13{width:444.135503px;}
._20{width:612.108533px;}
._1f{width:615.141307px;}
._1b{width:617.158609px;}
._1a{width:620.191384px;}
._1c{width:644.682116px;}
._21{width:711.308678px;}
._1d{width:716.358754px;}
._22{width:796.999717px;}
._27{width:799.670351px;}
._1e{width:802.049793px;}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:32.866547px;}
.fsb{font-size:33.659987px;}
.fs6{font-size:45.343422px;}
.fs5{font-size:48.051341px;}
.fsa{font-size:50.394220px;}
.fsc{font-size:51.612459px;}
.fs0{font-size:56.174378px;}
.fs1{font-size:62.263175px;}
.fs7{font-size:67.679973px;}
.fs4{font-size:73.094371px;}
.fs8{font-size:79.183168px;}
.fs3{font-size:90.014364px;}
.fs2{font-size:113.023155px;}
.y0{bottom:0.000000px;}
.y151{bottom:3.419610px;}
.y154{bottom:3.419617px;}
.y156{bottom:3.419625px;}
.y158{bottom:3.419633px;}
.y15b{bottom:3.419640px;}
.y15e{bottom:3.419648px;}
.ye2{bottom:3.419717px;}
.ye4{bottom:3.419724px;}
.ye6{bottom:3.419731px;}
.ye8{bottom:3.419738px;}
.yea{bottom:3.419744px;}
.y135{bottom:3.419846px;}
.y137{bottom:3.419853px;}
.y13a{bottom:3.419861px;}
.y13c{bottom:3.419869px;}
.y13f{bottom:3.419876px;}
.y142{bottom:3.419884px;}
.y3{bottom:101.879959px;}
.y14b{bottom:129.599948px;}
.y6c{bottom:133.019947px;}
.y126{bottom:141.119944px;}
.y14a{bottom:147.419941px;}
.y185{bottom:149.399940px;}
.y6b{bottom:150.839940px;}
.yb9{bottom:152.279939px;}
.y9b{bottom:154.259938px;}
.y105{bottom:158.039937px;}
.y125{bottom:158.939936px;}
.y149{bottom:165.419934px;}
.y184{bottom:165.599934px;}
.y38{bottom:166.139934px;}
.y6a{bottom:168.659933px;}
.yb8{bottom:170.099932px;}
.y9a{bottom:171.899931px;}
.y104{bottom:176.039930px;}
.y124{bottom:176.939929px;}
.y183{bottom:181.799927px;}
.y148{bottom:183.059927px;}
.y37{bottom:183.959926px;}
.y69{bottom:186.479925px;}
.yb7{bottom:187.919925px;}
.y99{bottom:189.719924px;}
.y103{bottom:193.859922px;}
.y123{bottom:194.219922px;}
.y182{bottom:197.999921px;}
.y147{bottom:201.059920px;}
.y36{bottom:201.959919px;}
.y68{bottom:204.479918px;}
.yb6{bottom:205.559918px;}
.y98{bottom:207.719917px;}
.y102{bottom:211.499915px;}
.y122{bottom:212.579915px;}
.y181{bottom:214.199914px;}
.y146{bottom:218.879912px;}
.y35{bottom:219.599912px;}
.yb5{bottom:221.399911px;}
.y67{bottom:222.119911px;}
.y97{bottom:225.359910px;}
.y101{bottom:229.499908px;}
.y121{bottom:230.399908px;}
.y180{bottom:230.579908px;}
.yb4{bottom:234.539906px;}
.y145{bottom:236.519905px;}
.y34{bottom:237.419905px;}
.y66{bottom:239.939904px;}
.y96{bottom:243.359903px;}
.y17f{bottom:246.779901px;}
.y100{bottom:247.319901px;}
.y120{bottom:248.039901px;}
.y144{bottom:254.159898px;}
.y33{bottom:255.419898px;}
.y65{bottom:257.939897px;}
.y95{bottom:260.819896px;}
.y17e{bottom:262.799895px;}
.yff{bottom:265.139894px;}
.y11f{bottom:266.039894px;}
.yd5{bottom:271.079892px;}
.y143{bottom:271.979891px;}
.y32{bottom:273.059891px;}
.y1b2{bottom:273.419891px;}
.y64{bottom:275.579890px;}
.y94{bottom:278.819888px;}
.y17d{bottom:278.999888px;}
.yd4{bottom:281.339887px;}
.yfe{bottom:282.959887px;}
.y11e{bottom:283.859886px;}
.y141{bottom:287.280000px;}
.y1b1{bottom:290.159884px;}
.y140{bottom:290.699884px;}
.y31{bottom:291.059884px;}
.ycc{bottom:292.139883px;}
.y63{bottom:293.579883px;}
.y17c{bottom:295.379882px;}
.ydb{bottom:295.739882px;}
.y93{bottom:296.819881px;}
.yfd{bottom:300.959880px;}
.y11d{bottom:301.679879px;}
.y13e{bottom:306.180000px;}
.y1b0{bottom:306.539877px;}
.y30{bottom:308.879876px;}
.y13d{bottom:309.599876px;}
.ycd{bottom:311.039876px;}
.y62{bottom:311.399875px;}
.yda{bottom:311.579875px;}
.y92{bottom:314.639874px;}
.yfc{bottom:318.599873px;}
.y11c{bottom:319.499872px;}
.y1af{bottom:322.739871px;}
.y13b{bottom:325.260000px;}
.y2f{bottom:326.519869px;}
.yd9{bottom:327.419869px;}
.y17b{bottom:327.779869px;}
.y61{bottom:329.219868px;}
.yce{bottom:329.759868px;}
.y91{bottom:332.459867px;}
.yfb{bottom:336.419865px;}
.y11b{bottom:337.319865px;}
.y1ae{bottom:338.759864px;}
.yd8{bottom:343.079863px;}
.y139{bottom:344.160000px;}
.y2e{bottom:344.519862px;}
.y60{bottom:347.039861px;}
.y138{bottom:347.579861px;}
.ycf{bottom:348.659861px;}
.y90{bottom:350.279860px;}
.y17a{bottom:352.439859px;}
.yfa{bottom:354.419858px;}
.y1ad{bottom:354.959858px;}
.y11a{bottom:355.139858px;}
.yd7{bottom:358.919856px;}
.y2d{bottom:362.339855px;}
.y136{bottom:363.060000px;}
.y5f{bottom:366.479853px;}
.yd0{bottom:367.379853px;}
.y8f{bottom:368.099853px;}
.y179{bottom:370.979852px;}
.y1ac{bottom:371.339851px;}
.yf9{bottom:372.239851px;}
.y119{bottom:372.959851px;}
.yd6{bottom:374.759850px;}
.y2c{bottom:380.159848px;}
.y134{bottom:382.140000px;}
.y5e{bottom:384.299846px;}
.y8e{bottom:385.559846px;}
.yd1{bottom:386.099846px;}
.y1ab{bottom:387.539845px;}
.y118{bottom:390.959844px;}
.yf8{bottom:391.499843px;}
.y178{bottom:392.939843px;}
.y2b{bottom:397.979841px;}
.y5d{bottom:402.299839px;}
.y8d{bottom:403.739839px;}
.yd2{bottom:404.999838px;}
.y117{bottom:408.599837px;}
.yf7{bottom:409.499836px;}
.y177{bottom:410.759836px;}
.y2a{bottom:415.799834px;}
.y1aa{bottom:419.759832px;}
.y5c{bottom:419.939832px;}
.y8c{bottom:421.739831px;}
.yd3{bottom:423.719831px;}
.y116{bottom:426.419829px;}
.yf6{bottom:427.319829px;}
.y176{bottom:428.579829px;}
.y29{bottom:433.619827px;}
.y1a9{bottom:436.139826px;}
.ydc{bottom:436.679825px;}
.y5b{bottom:437.759825px;}
.y8b{bottom:439.379824px;}
.y115{bottom:444.419822px;}
.yf5{bottom:444.959822px;}
.y133{bottom:445.859822px;}
.y175{bottom:446.399821px;}
.y28{bottom:452.159819px;}
.y1a8{bottom:452.339819px;}
.y5a{bottom:455.759818px;}
.y8a{bottom:457.199817px;}
.yb3{bottom:458.999816px;}
.y114{bottom:462.059815px;}
.yf4{bottom:462.959815px;}
.y132{bottom:463.139815px;}
.y174{bottom:464.399814px;}
.y1a7{bottom:468.539813px;}
.y59{bottom:473.399811px;}
.y27{bottom:474.119810px;}
.y89{bottom:475.199810px;}
.yb2{bottom:476.819809px;}
.y113{bottom:480.059808px;}
.yf3{bottom:480.779808px;}
.y173{bottom:482.039807px;}
.y1a6{bottom:484.739806px;}
.y58{bottom:491.399803px;}
.y26{bottom:491.939803px;}
.yb1{bottom:492.659803px;}
.y88{bottom:492.839803px;}
.y112{bottom:497.879801px;}
.yf2{bottom:498.599801px;}
.y172{bottom:499.859800px;}
.y1a5{bottom:501.119800px;}
.yb0{bottom:505.799798px;}
.y25{bottom:508.139797px;}
.y57{bottom:509.219796px;}
.y87{bottom:510.839796px;}
.y111{bottom:515.519794px;}
.yf1{bottom:516.419793px;}
.y1a4{bottom:517.139793px;}
.y171{bottom:517.859793px;}
.y24{bottom:524.699790px;}
.y56{bottom:527.039789px;}
.y86{bottom:528.659789px;}
.yc4{bottom:530.999788px;}
.y1a3{bottom:533.339787px;}
.y110{bottom:533.519787px;}
.yf0{bottom:534.239786px;}
.y170{bottom:535.499786px;}
.yc3{bottom:541.079784px;}
.y55{bottom:544.859782px;}
.y23{bottom:545.579782px;}
.y85{bottom:546.479781px;}
.y1a2{bottom:549.539780px;}
.yc2{bottom:551.159780px;}
.y10f{bottom:551.339779px;}
.yef{bottom:552.599779px;}
.y16f{bottom:553.499779px;}
.yca{bottom:558.899776px;}
.yba{bottom:561.779775px;}
.y54{bottom:562.679775px;}
.y22{bottom:563.219775px;}
.y84{bottom:564.299774px;}
.y1a1{bottom:565.919774px;}
.y10e{bottom:569.159772px;}
.yee{bottom:569.519772px;}
.y16e{bottom:571.319771px;}
.yc9{bottom:574.379770px;}
.ybb{bottom:578.339769px;}
.y21{bottom:579.599768px;}
.y53{bottom:580.499768px;}
.y1a0{bottom:581.579767px;}
.y83{bottom:581.759767px;}
.yed{bottom:586.439765px;}
.y10d{bottom:586.979765px;}
.y16d{bottom:589.139764px;}
.yc8{bottom:589.859764px;}
.ybc{bottom:594.899762px;}
.y20{bottom:595.799762px;}
.y52{bottom:598.319761px;}
.y82{bottom:599.939760px;}
.yec{bottom:603.359759px;}
.y10c{bottom:604.439758px;}
.y131{bottom:604.799758px;}
.yc7{bottom:605.159758px;}
.y16c{bottom:606.959757px;}
.ybd{bottom:611.459755px;}
.y1f{bottom:611.819755px;}
.y19f{bottom:615.599754px;}
.y51{bottom:616.319753px;}
.y81{bottom:617.759753px;}
.yc6{bottom:620.639752px;}
.yeb{bottom:621.179752px;}
.y10b{bottom:622.619751px;}
.y16b{bottom:624.779750px;}
.ybe{bottom:628.019749px;}
.y1e{bottom:628.199749px;}
.y1bc{bottom:630.719748px;}
.y19e{bottom:631.799747px;}
.ye9{bottom:635.580000px;}
.y50{bottom:635.759746px;}
.yc5{bottom:635.939746px;}
.y10a{bottom:640.439744px;}
.y16a{bottom:642.599743px;}
.y1d{bottom:644.399742px;}
.ybf{bottom:644.579742px;}
.y1bb{bottom:646.919741px;}
.y19d{bottom:648.539741px;}
.ye7{bottom:652.500000px;}
.y4f{bottom:653.579739px;}
.y109{bottom:658.439737px;}
.y169{bottom:660.419736px;}
.y1c{bottom:660.599736px;}
.yc0{bottom:661.139736px;}
.y1ba{bottom:663.119735px;}
.y19c{bottom:664.739734px;}
.ye5{bottom:669.420000px;}
.y4e{bottom:671.219732px;}
.y108{bottom:676.079730px;}
.y1b{bottom:676.799729px;}
.yc1{bottom:677.699729px;}
.y168{bottom:678.419729px;}
.y1b9{bottom:679.319728px;}
.y19b{bottom:680.939728px;}
.ye3{bottom:686.340000px;}
.ycb{bottom:687.779725px;}
.y4d{bottom:689.219724px;}
.y1a{bottom:692.999723px;}
.y107{bottom:694.079722px;}
.y1b8{bottom:695.699722px;}
.y167{bottom:696.059722px;}
.y19a{bottom:697.139721px;}
.ye1{bottom:703.260000px;}
.y4c{bottom:707.039717px;}
.y80{bottom:708.659717px;}
.y19{bottom:709.199716px;}
.y1b7{bottom:711.719715px;}
.yaf{bottom:711.899715px;}
.y199{bottom:713.339715px;}
.y166{bottom:713.879714px;}
.ye0{bottom:723.959710px;}
.y4b{bottom:724.859710px;}
.y18{bottom:725.399710px;}
.y7f{bottom:726.479709px;}
.y1b6{bottom:727.919709px;}
.yae{bottom:729.719708px;}
.y165{bottom:731.879707px;}
.ydf{bottom:741.419703px;}
.y17{bottom:741.599703px;}
.y4a{bottom:742.679703px;}
.y1b5{bottom:744.119702px;}
.y7e{bottom:744.299702px;}
.y198{bottom:745.919702px;}
.yad{bottom:747.539701px;}
.y164{bottom:749.519700px;}
.y16{bottom:757.799697px;}
.y49{bottom:760.499696px;}
.y197{bottom:761.939695px;}
.y7d{bottom:762.119695px;}
.y130{bottom:764.999694px;}
.yac{bottom:765.359694px;}
.yde{bottom:766.979693px;}
.y163{bottom:768.059693px;}
.y15{bottom:774.179690px;}
.y1b4{bottom:776.159690px;}
.y196{bottom:778.139689px;}
.y48{bottom:778.319689px;}
.y7c{bottom:779.939688px;}
.yab{bottom:783.179687px;}
.ydd{bottom:784.259686px;}
.y14{bottom:790.199684px;}
.y1b3{bottom:792.899683px;}
.y195{bottom:794.519682px;}
.y47{bottom:796.139682px;}
.y7b{bottom:797.759681px;}
.yaa{bottom:800.999680px;}
.y12f{bottom:802.799679px;}
.y13{bottom:806.399677px;}
.y162{bottom:808.019677px;}
.y194{bottom:810.719676px;}
.y46{bottom:814.139674px;}
.y7a{bottom:815.579674px;}
.ya9{bottom:818.819672px;}
.y12e{bottom:820.439672px;}
.y12{bottom:822.959671px;}
.y161{bottom:825.839670px;}
.y193{bottom:826.919669px;}
.y45{bottom:831.419667px;}
.y79{bottom:833.579667px;}
.ya8{bottom:836.819665px;}
.y12d{bottom:838.259665px;}
.y192{bottom:843.119663px;}
.y160{bottom:843.659663px;}
.y11{bottom:843.839662px;}
.y44{bottom:849.599660px;}
.y78{bottom:851.219660px;}
.ya7{bottom:854.459658px;}
.y12c{bottom:856.259657px;}
.y191{bottom:859.319656px;}
.y15f{bottom:861.479655px;}
.y10{bottom:862.199655px;}
.y43{bottom:867.599653px;}
.y77{bottom:869.039652px;}
.yf{bottom:870.119652px;}
.y106{bottom:872.099651px;}
.ya6{bottom:872.459651px;}
.y12b{bottom:873.899650px;}
.y190{bottom:875.519650px;}
.y15d{bottom:876.420000px;}
.y15c{bottom:879.839648px;}
.ye{bottom:881.819647px;}
.y42{bottom:885.239646px;}
.y76{bottom:887.039645px;}
.yd{bottom:889.559644px;}
.ya5{bottom:890.279644px;}
.y18f{bottom:891.719643px;}
.y12a{bottom:891.899643px;}
.y15a{bottom:895.500000px;}
.y159{bottom:898.919640px;}
.yc{bottom:901.259639px;}
.y41{bottom:903.239639px;}
.y75{bottom:904.679638px;}
.ya4{bottom:907.919637px;}
.yb{bottom:908.999636px;}
.y129{bottom:909.719636px;}
.y157{bottom:914.760000px;}
.ya{bottom:920.159632px;}
.y40{bottom:921.059632px;}
.y74{bottom:922.679631px;}
.y18e{bottom:924.299630px;}
.ya3{bottom:925.919630px;}
.y128{bottom:927.359629px;}
.y155{bottom:933.840000px;}
.y8{bottom:938.519625px;}
.y3f{bottom:938.699625px;}
.y18d{bottom:940.319624px;}
.y73{bottom:941.219624px;}
.ya2{bottom:943.739623px;}
.y127{bottom:945.359622px;}
.y9{bottom:946.979621px;}
.y153{bottom:952.920000px;}
.y152{bottom:956.339617px;}
.y18c{bottom:956.519617px;}
.y3e{bottom:956.699617px;}
.y7{bottom:959.759616px;}
.ya1{bottom:961.559615px;}
.y72{bottom:963.179615px;}
.y150{bottom:972.000000px;}
.y18b{bottom:972.719611px;}
.y3d{bottom:974.519610px;}
.y14f{bottom:975.419610px;}
.ya0{bottom:979.379608px;}
.y71{bottom:980.999608px;}
.y6{bottom:982.259607px;}
.y18a{bottom:989.099604px;}
.y3c{bottom:992.339603px;}
.y9f{bottom:997.199601px;}
.y70{bottom:998.819600px;}
.y189{bottom:1005.299598px;}
.y5{bottom:1008.899596px;}
.y3b{bottom:1009.799596px;}
.y9e{bottom:1015.019594px;}
.y14e{bottom:1016.459593px;}
.y6f{bottom:1016.639593px;}
.y188{bottom:1021.499591px;}
.y3a{bottom:1028.159589px;}
.y9d{bottom:1032.839587px;}
.y6e{bottom:1034.459586px;}
.y14d{bottom:1036.079586px;}
.y187{bottom:1037.519585px;}
.y4{bottom:1040.759584px;}
.y39{bottom:1048.139581px;}
.y9c{bottom:1050.839580px;}
.y6d{bottom:1052.279579px;}
.y14c{bottom:1053.359579px;}
.y186{bottom:1053.899578px;}
.y2{bottom:1068.839572px;}
.y1{bottom:1086.659565px;}
.h13{height:15.840000px;}
.h14{height:16.020000px;}
.hf{height:22.355029px;}
.h11{height:22.894708px;}
.h7{height:31.196274px;}
.h6{height:33.059322px;}
.h10{height:34.671223px;}
.h12{height:35.509372px;}
.ha{height:38.535623px;}
.h1{height:38.647972px;}
.he{height:38.985018px;}
.h2{height:42.837064px;}
.hc{height:43.210644px;}
.h8{height:46.563821px;}
.hd{height:46.969901px;}
.h5{height:50.288927px;}
.h9{height:50.727493px;}
.hb{height:54.953119px;}
.h4{height:59.994925px;}
.h3{height:75.330374px;}
.h0{height:1188.000000px;}
.wf{width:3.240000px;}
.wc{width:3.420000px;}
.w2{width:7.020000px;}
.we{width:28.260000px;}
.w10{width:57.600000px;}
.wd{width:59.580000px;}
.w6{width:60.840000px;}
.w4{width:62.280000px;}
.w8{width:66.780000px;}
.w1{width:75.240000px;}
.wa{width:92.160000px;}
.w7{width:123.120000px;}
.w5{width:126.180000px;}
.w3{width:144.540000px;}
.w9{width:218.700000px;}
.wb{width:359.460000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:158.759936px;}
.x1{left:163.259935px;}
.x18{left:174.239930px;}
.x4{left:176.579852px;}
.x17{left:180.539928px;}
.x1c{left:184.140059px;}
.x58{left:186.119888px;}
.x1b{left:190.799924px;}
.x57{left:192.059923px;}
.x43{left:193.499923px;}
.x5{left:196.559921px;}
.x1d{left:209.520047px;}
.xa{left:235.080569px;}
.x4b{left:245.519902px;}
.x5a{left:249.479900px;}
.x47{left:254.340000px;}
.x45{left:255.780000px;}
.x48{left:260.280000px;}
.x35{left:261.899832px;}
.x10{left:263.519895px;}
.x25{left:266.579865px;}
.x11{left:269.279892px;}
.x24{left:270.719873px;}
.x61{left:274.319890px;}
.x4e{left:276.839889px;}
.x13{left:278.099889px;}
.x14{left:283.679887px;}
.x1f{left:287.639885px;}
.x34{left:291.599883px;}
.x8{left:298.439900px;}
.x5e{left:307.079877px;}
.x4c{left:311.040026px;}
.x26{left:316.260025px;}
.x36{left:319.680059px;}
.x41{left:325.799870px;}
.x56{left:327.960000px;}
.x22{left:331.199838px;}
.x6{left:334.259866px;}
.x51{left:336.420000px;}
.x65{left:339.299864px;}
.xb{left:340.559864px;}
.x5b{left:345.059862px;}
.xc{left:346.499861px;}
.x4d{left:351.359859px;}
.x7{left:353.339859px;}
.x68{left:358.559857px;}
.x27{left:363.960246px;}
.x37{left:365.400255px;}
.x33{left:383.939846px;}
.x40{left:404.999838px;}
.x6a{left:408.959836px;}
.x28{left:411.660466px;}
.x29{left:413.280464px;}
.x2a{left:415.260465px;}
.x38{left:452.160678px;}
.x2b{left:455.040624px;}
.x46{left:457.560000px;}
.x3{left:460.619816px;}
.x16{left:461.879815px;}
.x39{left:463.860722px;}
.x2c{left:466.380660px;}
.x44{left:475.920000px;}
.x60{left:482.579807px;}
.xd{left:485.459806px;}
.x55{left:489.060000px;}
.xe{left:494.459802px;}
.x66{left:497.699801px;}
.x52{left:498.780000px;}
.x3a{left:509.400902px;}
.x3b{left:511.020912px;}
.x3c{left:513.000924px;}
.x2d{left:514.080881px;}
.x2e{left:515.520885px;}
.x2f{left:517.500885px;}
.x64{left:520.919792px;}
.x4f{left:527.040000px;}
.x49{left:550.080000px;}
.x3d{left:559.801067px;}
.x3e{left:562.141082px;}
.x30{left:566.281004px;}
.x31{left:568.621005px;}
.x23{left:589.319764px;}
.x42{left:601.559759px;}
.x20{left:607.499757px;}
.x53{left:609.119756px;}
.x50{left:618.659753px;}
.x3f{left:620.279752px;}
.x9{left:622.439751px;}
.x32{left:627.119749px;}
.x54{left:637.380000px;}
.x15{left:645.119742px;}
.x21{left:647.460332px;}
.x1e{left:653.941145px;}
.x12{left:659.699736px;}
.xf{left:679.319728px;}
.x63{left:685.799726px;}
.x4a{left:690.840000px;}
.x67{left:710.639716px;}
.x5f{left:714.599714px;}
.x62{left:731.699707px;}
.x5c{left:737.099705px;}
.x5d{left:740.519704px;}
.x59{left:745.559702px;}
.x69{left:747.899913px;}
.x19{left:754.740320px;}
.x1a{left:761.939695px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.041329pt;}
.ls1{letter-spacing:0.806572pt;}
.ls3{letter-spacing:0.834068pt;}
.ls9{letter-spacing:24.592165pt;}
.ls2{letter-spacing:55.788982pt;}
.ls8{letter-spacing:65.746107pt;}
.ls5{letter-spacing:66.387173pt;}
.ls7{letter-spacing:83.700233pt;}
.ls4{letter-spacing:87.547698pt;}
.ws1{word-spacing:-17.596260pt;}
.ws0{word-spacing:-16.243194pt;}
.ws8{word-spacing:-12.483195pt;}
.ws5{word-spacing:-7.595985pt;}
.ws6{word-spacing:-6.761917pt;}
.ws3{word-spacing:-6.602524pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:81.771028pt;}
.ws4{word-spacing:90.532583pt;}
._11{margin-left:-1.924431pt;}
._1{margin-left:-1.012637pt;}
._0{width:1.321902pt;}
._b{width:2.264756pt;}
._2{width:3.176024pt;}
._3{width:4.201308pt;}
._4{width:5.298422pt;}
._9{width:6.307556pt;}
._7{width:7.310408pt;}
._6{width:8.235386pt;}
._a{width:9.227365pt;}
._8{width:10.499357pt;}
._5{width:11.498818pt;}
._c{width:12.854496pt;}
._26{width:13.867088pt;}
._d{width:14.913483pt;}
._e{width:16.119029pt;}
._10{width:17.228688pt;}
._f{width:18.158984pt;}
._19{width:19.846993pt;}
._28{width:25.060376pt;}
._29{width:25.987052pt;}
._25{width:98.815801pt;}
._14{width:137.656161pt;}
._24{width:176.524033pt;}
._23{width:177.435804pt;}
._12{width:195.901765pt;}
._15{width:200.072144pt;}
._17{width:241.589998pt;}
._16{width:327.624278pt;}
._18{width:355.337268pt;}
._13{width:394.787114pt;}
._20{width:544.096474pt;}
._1f{width:546.792273pt;}
._1b{width:548.585431pt;}
._1a{width:551.281230pt;}
._1c{width:573.050770pt;}
._21{width:632.274380pt;}
._1d{width:636.763337pt;}
._22{width:708.444193pt;}
._27{width:710.818090pt;}
._1e{width:712.933150pt;}
.fs9{font-size:29.214708pt;}
.fsb{font-size:29.919988pt;}
.fs6{font-size:40.305264pt;}
.fs5{font-size:42.712303pt;}
.fsa{font-size:44.794862pt;}
.fsc{font-size:45.877742pt;}
.fs0{font-size:49.932780pt;}
.fs1{font-size:55.345045pt;}
.fs7{font-size:60.159976pt;}
.fs4{font-size:64.972774pt;}
.fs8{font-size:70.385039pt;}
.fs3{font-size:80.012768pt;}
.fs2{font-size:100.465026pt;}
.y0{bottom:0.000000pt;}
.y151{bottom:3.039653pt;}
.y154{bottom:3.039660pt;}
.y156{bottom:3.039667pt;}
.y158{bottom:3.039674pt;}
.y15b{bottom:3.039680pt;}
.y15e{bottom:3.039687pt;}
.ye2{bottom:3.039749pt;}
.ye4{bottom:3.039755pt;}
.ye6{bottom:3.039761pt;}
.ye8{bottom:3.039767pt;}
.yea{bottom:3.039773pt;}
.y135{bottom:3.039863pt;}
.y137{bottom:3.039870pt;}
.y13a{bottom:3.039876pt;}
.y13c{bottom:3.039883pt;}
.y13f{bottom:3.039890pt;}
.y142{bottom:3.039897pt;}
.y3{bottom:90.559964pt;}
.y14b{bottom:115.199954pt;}
.y6c{bottom:118.239953pt;}
.y126{bottom:125.439950pt;}
.y14a{bottom:131.039948pt;}
.y185{bottom:132.799947pt;}
.y6b{bottom:134.079946pt;}
.yb9{bottom:135.359946pt;}
.y9b{bottom:137.119945pt;}
.y105{bottom:140.479944pt;}
.y125{bottom:141.279943pt;}
.y149{bottom:147.039941pt;}
.y184{bottom:147.199941pt;}
.y38{bottom:147.679941pt;}
.y6a{bottom:149.919940pt;}
.yb8{bottom:151.199940pt;}
.y9a{bottom:152.799939pt;}
.y104{bottom:156.479937pt;}
.y124{bottom:157.279937pt;}
.y183{bottom:161.599935pt;}
.y148{bottom:162.719935pt;}
.y37{bottom:163.519935pt;}
.y69{bottom:165.759934pt;}
.yb7{bottom:167.039933pt;}
.y99{bottom:168.639933pt;}
.y103{bottom:172.319931pt;}
.y123{bottom:172.639931pt;}
.y182{bottom:175.999930pt;}
.y147{bottom:178.719929pt;}
.y36{bottom:179.519928pt;}
.y68{bottom:181.759927pt;}
.yb6{bottom:182.719927pt;}
.y98{bottom:184.639926pt;}
.y102{bottom:187.999925pt;}
.y122{bottom:188.959924pt;}
.y181{bottom:190.399924pt;}
.y146{bottom:194.559922pt;}
.y35{bottom:195.199922pt;}
.yb5{bottom:196.799921pt;}
.y67{bottom:197.439921pt;}
.y97{bottom:200.319920pt;}
.y101{bottom:203.999918pt;}
.y121{bottom:204.799918pt;}
.y180{bottom:204.959918pt;}
.yb4{bottom:208.479917pt;}
.y145{bottom:210.239916pt;}
.y34{bottom:211.039916pt;}
.y66{bottom:213.279915pt;}
.y96{bottom:216.319913pt;}
.y17f{bottom:219.359912pt;}
.y100{bottom:219.839912pt;}
.y120{bottom:220.479912pt;}
.y144{bottom:225.919910pt;}
.y33{bottom:227.039909pt;}
.y65{bottom:229.279908pt;}
.y95{bottom:231.839907pt;}
.y17e{bottom:233.599907pt;}
.yff{bottom:235.679906pt;}
.y11f{bottom:236.479905pt;}
.yd5{bottom:240.959904pt;}
.y143{bottom:241.759903pt;}
.y32{bottom:242.719903pt;}
.y1b2{bottom:243.039903pt;}
.y64{bottom:244.959902pt;}
.y94{bottom:247.839901pt;}
.y17d{bottom:247.999901pt;}
.yd4{bottom:250.079900pt;}
.yfe{bottom:251.519899pt;}
.y11e{bottom:252.319899pt;}
.y141{bottom:255.360000pt;}
.y1b1{bottom:257.919897pt;}
.y140{bottom:258.399897pt;}
.y31{bottom:258.719897pt;}
.ycc{bottom:259.679896pt;}
.y63{bottom:260.959896pt;}
.y17c{bottom:262.559895pt;}
.ydb{bottom:262.879895pt;}
.y93{bottom:263.839894pt;}
.yfd{bottom:267.519893pt;}
.y11d{bottom:268.159893pt;}
.y13e{bottom:272.160000pt;}
.y1b0{bottom:272.479891pt;}
.y30{bottom:274.559890pt;}
.y13d{bottom:275.199890pt;}
.ycd{bottom:276.479889pt;}
.y62{bottom:276.799889pt;}
.yda{bottom:276.959889pt;}
.y92{bottom:279.679888pt;}
.yfc{bottom:283.199887pt;}
.y11c{bottom:283.999886pt;}
.y1af{bottom:286.879885pt;}
.y13b{bottom:289.120000pt;}
.y2f{bottom:290.239884pt;}
.yd9{bottom:291.039884pt;}
.y17b{bottom:291.359883pt;}
.y61{bottom:292.639883pt;}
.yce{bottom:293.119883pt;}
.y91{bottom:295.519882pt;}
.yfb{bottom:299.039880pt;}
.y11b{bottom:299.839880pt;}
.y1ae{bottom:301.119880pt;}
.yd8{bottom:304.959878pt;}
.y139{bottom:305.920000pt;}
.y2e{bottom:306.239878pt;}
.y60{bottom:308.479877pt;}
.y138{bottom:308.959876pt;}
.ycf{bottom:309.919876pt;}
.y90{bottom:311.359875pt;}
.y17a{bottom:313.279875pt;}
.yfa{bottom:315.039874pt;}
.y1ad{bottom:315.519874pt;}
.y11a{bottom:315.679874pt;}
.yd7{bottom:319.039872pt;}
.y2d{bottom:322.079871pt;}
.y136{bottom:322.720000pt;}
.y5f{bottom:325.759870pt;}
.yd0{bottom:326.559869pt;}
.y8f{bottom:327.199869pt;}
.y179{bottom:329.759868pt;}
.y1ac{bottom:330.079868pt;}
.yf9{bottom:330.879868pt;}
.y119{bottom:331.519867pt;}
.yd6{bottom:333.119867pt;}
.y2c{bottom:337.919865pt;}
.y134{bottom:339.680000pt;}
.y5e{bottom:341.599863pt;}
.y8e{bottom:342.719863pt;}
.yd1{bottom:343.199863pt;}
.y1ab{bottom:344.479862pt;}
.y118{bottom:347.519861pt;}
.yf8{bottom:347.999861pt;}
.y178{bottom:349.279860pt;}
.y2b{bottom:353.759858pt;}
.y5d{bottom:357.599857pt;}
.y8d{bottom:358.879856pt;}
.yd2{bottom:359.999856pt;}
.y117{bottom:363.199855pt;}
.yf7{bottom:363.999854pt;}
.y177{bottom:365.119854pt;}
.y2a{bottom:369.599852pt;}
.y1aa{bottom:373.119851pt;}
.y5c{bottom:373.279851pt;}
.y8c{bottom:374.879850pt;}
.yd3{bottom:376.639849pt;}
.y116{bottom:379.039848pt;}
.yf6{bottom:379.839848pt;}
.y176{bottom:380.959848pt;}
.y29{bottom:385.439846pt;}
.y1a9{bottom:387.679845pt;}
.ydc{bottom:388.159845pt;}
.y5b{bottom:389.119844pt;}
.y8b{bottom:390.559844pt;}
.y115{bottom:395.039842pt;}
.yf5{bottom:395.519842pt;}
.y133{bottom:396.319841pt;}
.y175{bottom:396.799841pt;}
.y28{bottom:401.919839pt;}
.y1a8{bottom:402.079839pt;}
.y5a{bottom:405.119838pt;}
.y8a{bottom:406.399837pt;}
.yb3{bottom:407.999837pt;}
.y114{bottom:410.719836pt;}
.yf4{bottom:411.519835pt;}
.y132{bottom:411.679835pt;}
.y174{bottom:412.799835pt;}
.y1a7{bottom:416.479833pt;}
.y59{bottom:420.799832pt;}
.y27{bottom:421.439831pt;}
.y89{bottom:422.399831pt;}
.yb2{bottom:423.839830pt;}
.y113{bottom:426.719829pt;}
.yf3{bottom:427.359829pt;}
.y173{bottom:428.479829pt;}
.y1a6{bottom:430.879828pt;}
.y58{bottom:436.799825pt;}
.y26{bottom:437.279825pt;}
.yb1{bottom:437.919825pt;}
.y88{bottom:438.079825pt;}
.y112{bottom:442.559823pt;}
.yf2{bottom:443.199823pt;}
.y172{bottom:444.319822pt;}
.y1a5{bottom:445.439822pt;}
.yb0{bottom:449.599820pt;}
.y25{bottom:451.679819pt;}
.y57{bottom:452.639819pt;}
.y87{bottom:454.079818pt;}
.y111{bottom:458.239817pt;}
.yf1{bottom:459.039816pt;}
.y1a4{bottom:459.679816pt;}
.y171{bottom:460.319816pt;}
.y24{bottom:466.399813pt;}
.y56{bottom:468.479813pt;}
.y86{bottom:469.919812pt;}
.yc4{bottom:471.999811pt;}
.y1a3{bottom:474.079810pt;}
.y110{bottom:474.239810pt;}
.yf0{bottom:474.879810pt;}
.y170{bottom:475.999810pt;}
.yc3{bottom:480.959808pt;}
.y55{bottom:484.319806pt;}
.y23{bottom:484.959806pt;}
.y85{bottom:485.759806pt;}
.y1a2{bottom:488.479805pt;}
.yc2{bottom:489.919804pt;}
.y10f{bottom:490.079804pt;}
.yef{bottom:491.199804pt;}
.y16f{bottom:491.999803pt;}
.yca{bottom:496.799801pt;}
.yba{bottom:499.359800pt;}
.y54{bottom:500.159800pt;}
.y22{bottom:500.639800pt;}
.y84{bottom:501.599799pt;}
.y1a1{bottom:503.039799pt;}
.y10e{bottom:505.919798pt;}
.yee{bottom:506.239798pt;}
.y16e{bottom:507.839797pt;}
.yc9{bottom:510.559796pt;}
.ybb{bottom:514.079794pt;}
.y21{bottom:515.199794pt;}
.y53{bottom:515.999794pt;}
.y1a0{bottom:516.959793pt;}
.y83{bottom:517.119793pt;}
.yed{bottom:521.279791pt;}
.y10d{bottom:521.759791pt;}
.y16d{bottom:523.679791pt;}
.yc8{bottom:524.319790pt;}
.ybc{bottom:528.799788pt;}
.y20{bottom:529.599788pt;}
.y52{bottom:531.839787pt;}
.y82{bottom:533.279787pt;}
.yec{bottom:536.319785pt;}
.y10c{bottom:537.279785pt;}
.y131{bottom:537.599785pt;}
.yc7{bottom:537.919785pt;}
.y16c{bottom:539.519784pt;}
.ybd{bottom:543.519783pt;}
.y1f{bottom:543.839782pt;}
.y19f{bottom:547.199781pt;}
.y51{bottom:547.839781pt;}
.y81{bottom:549.119780pt;}
.yc6{bottom:551.679779pt;}
.yeb{bottom:552.159779pt;}
.y10b{bottom:553.439779pt;}
.y16b{bottom:555.359778pt;}
.ybe{bottom:558.239777pt;}
.y1e{bottom:558.399777pt;}
.y1bc{bottom:560.639776pt;}
.y19e{bottom:561.599775pt;}
.ye9{bottom:564.960000pt;}
.y50{bottom:565.119774pt;}
.yc5{bottom:565.279774pt;}
.y10a{bottom:569.279772pt;}
.y16a{bottom:571.199772pt;}
.y1d{bottom:572.799771pt;}
.ybf{bottom:572.959771pt;}
.y1bb{bottom:575.039770pt;}
.y19d{bottom:576.479769pt;}
.ye7{bottom:580.000000pt;}
.y4f{bottom:580.959768pt;}
.y109{bottom:585.279766pt;}
.y169{bottom:587.039765pt;}
.y1c{bottom:587.199765pt;}
.yc0{bottom:587.679765pt;}
.y1ba{bottom:589.439764pt;}
.y19c{bottom:590.879764pt;}
.ye5{bottom:595.040000pt;}
.y4e{bottom:596.639761pt;}
.y108{bottom:600.959760pt;}
.y1b{bottom:601.599759pt;}
.yc1{bottom:602.399759pt;}
.y168{bottom:603.039759pt;}
.y1b9{bottom:603.839758pt;}
.y19b{bottom:605.279758pt;}
.ye3{bottom:610.080000pt;}
.ycb{bottom:611.359755pt;}
.y4d{bottom:612.639755pt;}
.y1a{bottom:615.999754pt;}
.y107{bottom:616.959753pt;}
.y1b8{bottom:618.399753pt;}
.y167{bottom:618.719753pt;}
.y19a{bottom:619.679752pt;}
.ye1{bottom:625.120000pt;}
.y4c{bottom:628.479749pt;}
.y80{bottom:629.919748pt;}
.y19{bottom:630.399748pt;}
.y1b7{bottom:632.639747pt;}
.yaf{bottom:632.799747pt;}
.y199{bottom:634.079746pt;}
.y166{bottom:634.559746pt;}
.ye0{bottom:643.519743pt;}
.y4b{bottom:644.319742pt;}
.y18{bottom:644.799742pt;}
.y7f{bottom:645.759742pt;}
.y1b6{bottom:647.039741pt;}
.yae{bottom:648.639741pt;}
.y165{bottom:650.559740pt;}
.ydf{bottom:659.039736pt;}
.y17{bottom:659.199736pt;}
.y4a{bottom:660.159736pt;}
.y1b5{bottom:661.439735pt;}
.y7e{bottom:661.599735pt;}
.y198{bottom:663.039735pt;}
.yad{bottom:664.479734pt;}
.y164{bottom:666.239734pt;}
.y16{bottom:673.599731pt;}
.y49{bottom:675.999730pt;}
.y197{bottom:677.279729pt;}
.y7d{bottom:677.439729pt;}
.y130{bottom:679.999728pt;}
.yac{bottom:680.319728pt;}
.yde{bottom:681.759727pt;}
.y163{bottom:682.719727pt;}
.y15{bottom:688.159725pt;}
.y1b4{bottom:689.919724pt;}
.y196{bottom:691.679723pt;}
.y48{bottom:691.839723pt;}
.y7c{bottom:693.279723pt;}
.yab{bottom:696.159722pt;}
.ydd{bottom:697.119721pt;}
.y14{bottom:702.399719pt;}
.y1b3{bottom:704.799718pt;}
.y195{bottom:706.239718pt;}
.y47{bottom:707.679717pt;}
.y7b{bottom:709.119716pt;}
.yaa{bottom:711.999715pt;}
.y12f{bottom:713.599715pt;}
.y13{bottom:716.799713pt;}
.y162{bottom:718.239713pt;}
.y194{bottom:720.639712pt;}
.y46{bottom:723.679711pt;}
.y7a{bottom:724.959710pt;}
.ya9{bottom:727.839709pt;}
.y12e{bottom:729.279708pt;}
.y12{bottom:731.519707pt;}
.y161{bottom:734.079706pt;}
.y193{bottom:735.039706pt;}
.y45{bottom:739.039704pt;}
.y79{bottom:740.959704pt;}
.ya8{bottom:743.839702pt;}
.y12d{bottom:745.119702pt;}
.y192{bottom:749.439700pt;}
.y160{bottom:749.919700pt;}
.y11{bottom:750.079700pt;}
.y44{bottom:755.199698pt;}
.y78{bottom:756.639697pt;}
.ya7{bottom:759.519696pt;}
.y12c{bottom:761.119696pt;}
.y191{bottom:763.839694pt;}
.y15f{bottom:765.759694pt;}
.y10{bottom:766.399693pt;}
.y43{bottom:771.199692pt;}
.y77{bottom:772.479691pt;}
.yf{bottom:773.439691pt;}
.y106{bottom:775.199690pt;}
.ya6{bottom:775.519690pt;}
.y12b{bottom:776.799689pt;}
.y190{bottom:778.239689pt;}
.y15d{bottom:779.040000pt;}
.y15c{bottom:782.079687pt;}
.ye{bottom:783.839686pt;}
.y42{bottom:786.879685pt;}
.y76{bottom:788.479685pt;}
.yd{bottom:790.719684pt;}
.ya5{bottom:791.359683pt;}
.y18f{bottom:792.639683pt;}
.y12a{bottom:792.799683pt;}
.y15a{bottom:796.000000pt;}
.y159{bottom:799.039680pt;}
.yc{bottom:801.119680pt;}
.y41{bottom:802.879679pt;}
.y75{bottom:804.159678pt;}
.ya4{bottom:807.039677pt;}
.yb{bottom:807.999677pt;}
.y129{bottom:808.639677pt;}
.y157{bottom:813.120000pt;}
.ya{bottom:817.919673pt;}
.y40{bottom:818.719673pt;}
.y74{bottom:820.159672pt;}
.y18e{bottom:821.599671pt;}
.ya3{bottom:823.039671pt;}
.y128{bottom:824.319670pt;}
.y155{bottom:830.080000pt;}
.y8{bottom:834.239666pt;}
.y3f{bottom:834.399666pt;}
.y18d{bottom:835.839666pt;}
.y73{bottom:836.639665pt;}
.ya2{bottom:838.879664pt;}
.y127{bottom:840.319664pt;}
.y9{bottom:841.759663pt;}
.y153{bottom:847.040000pt;}
.y152{bottom:850.079660pt;}
.y18c{bottom:850.239660pt;}
.y3e{bottom:850.399660pt;}
.y7{bottom:853.119659pt;}
.ya1{bottom:854.719658pt;}
.y72{bottom:856.159658pt;}
.y150{bottom:864.000000pt;}
.y18b{bottom:864.639654pt;}
.y3d{bottom:866.239654pt;}
.y14f{bottom:867.039653pt;}
.ya0{bottom:870.559652pt;}
.y71{bottom:871.999651pt;}
.y6{bottom:873.119651pt;}
.y18a{bottom:879.199648pt;}
.y3c{bottom:882.079647pt;}
.y9f{bottom:886.399645pt;}
.y70{bottom:887.839645pt;}
.y189{bottom:893.599643pt;}
.y5{bottom:896.799641pt;}
.y3b{bottom:897.599641pt;}
.y9e{bottom:902.239639pt;}
.y14e{bottom:903.519639pt;}
.y6f{bottom:903.679639pt;}
.y188{bottom:907.999637pt;}
.y3a{bottom:913.919634pt;}
.y9d{bottom:918.079633pt;}
.y6e{bottom:919.519632pt;}
.y14d{bottom:920.959632pt;}
.y187{bottom:922.239631pt;}
.y4{bottom:925.119630pt;}
.y39{bottom:931.679627pt;}
.y9c{bottom:934.079626pt;}
.y6d{bottom:935.359626pt;}
.y14c{bottom:936.319625pt;}
.y186{bottom:936.799625pt;}
.y2{bottom:950.079620pt;}
.y1{bottom:965.919614pt;}
.h13{height:14.080000pt;}
.h14{height:14.240000pt;}
.hf{height:19.871137pt;}
.h11{height:20.350851pt;}
.h7{height:27.730022pt;}
.h6{height:29.386064pt;}
.h10{height:30.818865pt;}
.h12{height:31.563886pt;}
.ha{height:34.253887pt;}
.h1{height:34.353753pt;}
.he{height:34.653349pt;}
.h2{height:38.077391pt;}
.hc{height:38.409461pt;}
.h8{height:41.390063pt;}
.hd{height:41.751023pt;}
.h5{height:44.701269pt;}
.h9{height:45.091105pt;}
.hb{height:48.847217pt;}
.h4{height:53.328822pt;}
.h3{height:66.960333pt;}
.h0{height:1056.000000pt;}
.wf{width:2.880000pt;}
.wc{width:3.040000pt;}
.w2{width:6.240000pt;}
.we{width:25.120000pt;}
.w10{width:51.200000pt;}
.wd{width:52.960000pt;}
.w6{width:54.080000pt;}
.w4{width:55.360000pt;}
.w8{width:59.360000pt;}
.w1{width:66.880000pt;}
.wa{width:81.920000pt;}
.w7{width:109.440000pt;}
.w5{width:112.160000pt;}
.w3{width:128.480000pt;}
.w9{width:194.400000pt;}
.wb{width:319.520000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:141.119944pt;}
.x1{left:145.119942pt;}
.x18{left:154.879938pt;}
.x4{left:156.959868pt;}
.x17{left:160.479936pt;}
.x1c{left:163.680053pt;}
.x58{left:165.439900pt;}
.x1b{left:169.599932pt;}
.x57{left:170.719932pt;}
.x43{left:171.999931pt;}
.x5{left:174.719930pt;}
.x1d{left:186.240042pt;}
.xa{left:208.960505pt;}
.x4b{left:218.239913pt;}
.x5a{left:221.759911pt;}
.x47{left:226.080000pt;}
.x45{left:227.360000pt;}
.x48{left:231.360000pt;}
.x35{left:232.799851pt;}
.x10{left:234.239906pt;}
.x25{left:236.959880pt;}
.x11{left:239.359904pt;}
.x24{left:240.639888pt;}
.x61{left:243.839902pt;}
.x4e{left:246.079902pt;}
.x13{left:247.199901pt;}
.x14{left:252.159899pt;}
.x1f{left:255.679898pt;}
.x34{left:259.199896pt;}
.x8{left:265.279912pt;}
.x5e{left:272.959891pt;}
.x4c{left:276.480023pt;}
.x26{left:281.120023pt;}
.x36{left:284.160053pt;}
.x41{left:289.599884pt;}
.x56{left:291.520000pt;}
.x22{left:294.399856pt;}
.x6{left:297.119881pt;}
.x51{left:299.040000pt;}
.x65{left:301.599879pt;}
.xb{left:302.719879pt;}
.x5b{left:306.719877pt;}
.xc{left:307.999877pt;}
.x4d{left:312.319875pt;}
.x7{left:314.079874pt;}
.x68{left:318.719873pt;}
.x27{left:323.520218pt;}
.x37{left:324.800227pt;}
.x33{left:341.279863pt;}
.x40{left:359.999856pt;}
.x6a{left:363.519855pt;}
.x28{left:365.920414pt;}
.x29{left:367.360413pt;}
.x2a{left:369.120413pt;}
.x38{left:401.920603pt;}
.x2b{left:404.480555pt;}
.x46{left:406.720000pt;}
.x3{left:409.439836pt;}
.x16{left:410.559836pt;}
.x39{left:412.320641pt;}
.x2c{left:414.560587pt;}
.x44{left:423.040000pt;}
.x60{left:428.959828pt;}
.xd{left:431.519827pt;}
.x55{left:434.720000pt;}
.xe{left:439.519824pt;}
.x66{left:442.399823pt;}
.x52{left:443.360000pt;}
.x3a{left:452.800801pt;}
.x3b{left:454.240810pt;}
.x3c{left:456.000821pt;}
.x2d{left:456.960783pt;}
.x2e{left:458.240786pt;}
.x2f{left:460.000786pt;}
.x64{left:463.039815pt;}
.x4f{left:468.480000pt;}
.x49{left:488.960000pt;}
.x3d{left:497.600948pt;}
.x3e{left:499.680961pt;}
.x30{left:503.360892pt;}
.x31{left:505.440894pt;}
.x23{left:523.839790pt;}
.x42{left:534.719786pt;}
.x20{left:539.999784pt;}
.x53{left:541.439783pt;}
.x50{left:549.919780pt;}
.x3f{left:551.359779pt;}
.x9{left:553.279779pt;}
.x32{left:557.439777pt;}
.x54{left:566.560000pt;}
.x15{left:573.439771pt;}
.x21{left:575.520295pt;}
.x1e{left:581.281018pt;}
.x12{left:586.399765pt;}
.xf{left:603.839758pt;}
.x63{left:609.599756pt;}
.x4a{left:614.080000pt;}
.x67{left:631.679747pt;}
.x5f{left:635.199746pt;}
.x62{left:650.399740pt;}
.x5c{left:655.199738pt;}
.x5d{left:658.239737pt;}
.x59{left:662.719735pt;}
.x69{left:664.799923pt;}
.x19{left:670.880285pt;}
.x1a{left:677.279729pt;}
}




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