
    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_b4bd2f0e9f2131206eb9ef34.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.862793;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_50abb1472f282444149868f2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_b9cbbc5ae5f6eeec0b371815.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.863770;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_12b39f1bdea49cedda166bef.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.863770;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_7a1386312c0aebc1fc53781f.woff2')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;}
.m4{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,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;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.042915px;}
.ls2{letter-spacing:0.152317px;}
.ls6{letter-spacing:0.158807px;}
.ls0{letter-spacing:2.477759px;}
.ls1{letter-spacing:21.929391px;}
.ls5{letter-spacing:41.381026px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc3{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,177,173),0 0.015em rgb(0,177,173),0.015em 0 rgb(0,177,173),0 -0.015em  rgb(0,177,173);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,177,173);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-27.174229px;}
.ws0{word-spacing:-14.970234px;}
.ws1{word-spacing:0.000000px;}
._18{margin-left:-8.888090px;}
._2{margin-left:-7.438734px;}
._15{margin-left:-6.248873px;}
._b{margin-left:-5.041123px;}
._11{margin-left:-3.938174px;}
._0{margin-left:-2.878286px;}
._1{margin-left:-1.062493px;}
._3{width:1.021463px;}
._8{width:2.347929px;}
._9{width:3.705416px;}
._d{width:4.812468px;}
._f{width:6.009689px;}
._10{width:7.031338px;}
._e{width:8.059701px;}
._6{width:9.232418px;}
._7{width:10.322594px;}
._a{width:11.832028px;}
._14{width:13.388748px;}
._c{width:16.174338px;}
._4{width:17.467372px;}
._5{width:18.955755px;}
._13{width:20.174853px;}
._17{width:21.640149px;}
._12{width:22.938544px;}
._1b{width:23.957752px;}
._16{width:25.148568px;}
._19{width:31.090844px;}
._1a{width:32.638862px;}
._1c{width:36.661824px;}
._1d{width:38.445545px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc5{color:rgb(255,0,0);}
.fc2{color:rgb(0,177,173);}
.fc1{color:rgb(0,21,136);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.759983px;}
.fs5{font-size:53.999978px;}
.fs4{font-size:59.759976px;}
.fs0{font-size:66.239974px;}
.fs2{font-size:84.239966px;}
.fs1{font-size:120.239952px;}
.y91{bottom:-2.701005px;}
.y0{bottom:0.000000px;}
.y39{bottom:3.598952px;}
.y3{bottom:57.900277px;}
.y2{bottom:81.660267px;}
.y3b{bottom:93.360263px;}
.y3a{bottom:93.540263px;}
.y34{bottom:126.659949px;}
.y12b{bottom:144.299942px;}
.y33{bottom:146.459941px;}
.ye0{bottom:148.439941px;}
.yc6{bottom:158.879936px;}
.y8f{bottom:162.299935px;}
.y32{bottom:166.079934px;}
.ydf{bottom:166.439933px;}
.y69{bottom:166.619933px;}
.yc1{bottom:175.439930px;}
.y8e{bottom:180.299928px;}
.yde{bottom:184.439926px;}
.y14f{bottom:184.440226px;}
.y31{bottom:185.879926px;}
.y68{bottom:186.779925px;}
.y12a{bottom:189.299924px;}
.yc0{bottom:193.439923px;}
.y8d{bottom:198.299921px;}
.ydd{bottom:202.439919px;}
.y14e{bottom:202.440219px;}
.yc5{bottom:203.699919px;}
.y30{bottom:205.679918px;}
.y67{bottom:206.939917px;}
.y129{bottom:207.299917px;}
.ybf{bottom:211.439915px;}
.y8c{bottom:216.299913px;}
.y14d{bottom:220.440212px;}
.y2f{bottom:225.479910px;}
.y66{bottom:227.099909px;}
.ybe{bottom:229.439908px;}
.yc4{bottom:230.879908px;}
.y109{bottom:232.139907px;}
.y8b{bottom:234.299906px;}
.y2e{bottom:245.279902px;}
.y65{bottom:247.259901px;}
.ybd{bottom:247.439901px;}
.y14c{bottom:247.440201px;}
.y108{bottom:250.139900px;}
.y8a{bottom:252.299899px;}
.y2d{bottom:264.899894px;}
.ybc{bottom:265.439894px;}
.y14b{bottom:265.440194px;}
.y107{bottom:268.139893px;}
.y89{bottom:270.299892px;}
.y128{bottom:279.299888px;}
.ybb{bottom:283.439887px;}
.y2c{bottom:284.699886px;}
.y106{bottom:286.139886px;}
.y64{bottom:287.399885px;}
.y14a{bottom:292.440183px;}
.y127{bottom:297.299881px;}
.y88{bottom:298.019881px;}
.yba{bottom:301.439879px;}
.y105{bottom:304.139878px;}
.y2b{bottom:304.499878px;}
.y63{bottom:305.399878px;}
.y87{bottom:318.179873px;}
.yb9{bottom:319.439872px;}
.y149{bottom:319.440172px;}
.y104{bottom:322.139871px;}
.y62{bottom:323.399871px;}
.y2a{bottom:324.299870px;}
.yb8{bottom:337.439865px;}
.y148{bottom:337.440165px;}
.y103{bottom:340.139864px;}
.y61{bottom:341.399863px;}
.y126{bottom:342.299863px;}
.y29{bottom:351.299859px;}
.y86{bottom:355.259858px;}
.yb7{bottom:355.439858px;}
.y147{bottom:355.440158px;}
.y60{bottom:359.399856px;}
.y102{bottom:367.139853px;}
.y125{bottom:369.299852px;}
.ydc{bottom:373.439851px;}
.y5f{bottom:377.399849px;}
.yb6{bottom:382.259847px;}
.y85{bottom:382.439847px;}
.y146{bottom:382.440147px;}
.y101{bottom:385.139846px;}
.y124{bottom:387.299845px;}
.y28{bottom:390.899844px;}
.y5e{bottom:395.399842px;}
.y84{bottom:400.259840px;}
.ydb{bottom:400.439840px;}
.y100{bottom:403.139839px;}
.yb5{bottom:409.439836px;}
.y145{bottom:409.440136px;}
.y5d{bottom:413.399835px;}
.y123{bottom:414.299834px;}
.yda{bottom:418.439833px;}
.yff{bottom:421.139832px;}
.y83{bottom:427.259829px;}
.yb4{bottom:427.439829px;}
.y144{bottom:427.440129px;}
.y27{bottom:430.139828px;}
.y5c{bottom:431.399827px;}
.y122{bottom:432.299827px;}
.yd9{bottom:436.439825px;}
.yfe{bottom:439.139824px;}
.yb3{bottom:445.439822px;}
.y143{bottom:445.440122px;}
.y26{bottom:448.499821px;}
.y82{bottom:454.259818px;}
.yd8{bottom:454.439818px;}
.y5b{bottom:458.399817px;}
.y121{bottom:460.199816px;}
.yb2{bottom:463.439815px;}
.y25{bottom:466.859813px;}
.yfd{bottom:467.039813px;}
.y142{bottom:472.440111px;}
.y5a{bottom:476.399809px;}
.y81{bottom:481.259807px;}
.yb1{bottom:481.439807px;}
.y24{bottom:485.039806px;}
.y141{bottom:490.440104px;}
.y59{bottom:494.399802px;}
.y120{bottom:497.459801px;}
.yb0{bottom:499.439800px;}
.y23{bottom:503.399799px;}
.yfc{bottom:504.299798px;}
.y80{bottom:508.259797px;}
.y58{bottom:512.399795px;}
.y11f{bottom:515.459794px;}
.yaf{bottom:517.439793px;}
.y140{bottom:517.440093px;}
.y22{bottom:521.759791px;}
.yfb{bottom:522.299791px;}
.yc3{bottom:526.439789px;}
.y57{bottom:530.399788px;}
.y11e{bottom:533.459787px;}
.y7f{bottom:535.259786px;}
.yae{bottom:535.439786px;}
.y13f{bottom:535.440086px;}
.y21{bottom:540.119784px;}
.yfa{bottom:540.299784px;}
.y56{bottom:548.399781px;}
.y11d{bottom:551.459779px;}
.yad{bottom:553.439779px;}
.y20{bottom:558.299777px;}
.y7e{bottom:562.259775px;}
.y13e{bottom:562.440075px;}
.y55{bottom:566.399773px;}
.y11c{bottom:569.459772px;}
.yc2{bottom:571.259771px;}
.yab{bottom:571.439771px;}
.yf9{bottom:576.299769px;}
.y1f{bottom:576.659769px;}
.yac{bottom:577.379769px;}
.y13d{bottom:580.440068px;}
.y54{bottom:584.399766px;}
.y11b{bottom:587.459765px;}
.y7d{bottom:589.259764px;}
.yaa{bottom:589.439764px;}
.yf8{bottom:594.299762px;}
.y1e{bottom:595.019762px;}
.yd7{bottom:598.439761px;}
.y11a{bottom:605.459758px;}
.y13c{bottom:607.440057px;}
.y53{bottom:611.399755px;}
.yf7{bottom:612.299755px;}
.y1d{bottom:613.199755px;}
.y7c{bottom:616.259753px;}
.ya9{bottom:616.439753px;}
.y119{bottom:623.459751px;}
.y13b{bottom:625.440050px;}
.y52{bottom:629.399748px;}
.yf6{bottom:630.299748px;}
.y1c{bottom:631.559747px;}
.yd6{bottom:634.439746px;}
.y118{bottom:641.459743px;}
.y7b{bottom:643.259743px;}
.ya8{bottom:643.439743px;}
.y51{bottom:647.399741px;}
.yf5{bottom:648.299741px;}
.y1b{bottom:649.919740px;}
.yd5{bottom:652.439739px;}
.y13a{bottom:652.440039px;}
.y117{bottom:659.459736px;}
.ya7{bottom:661.439735px;}
.y50{bottom:665.399734px;}
.yf4{bottom:666.299733px;}
.y1a{bottom:668.099733px;}
.y7a{bottom:670.259732px;}
.yd4{bottom:670.439732px;}
.y139{bottom:670.440032px;}
.y116{bottom:677.459729px;}
.ya6{bottom:679.439728px;}
.y4f{bottom:683.399727px;}
.yf3{bottom:684.299726px;}
.yd3{bottom:688.439725px;}
.y115{bottom:695.459722px;}
.y79{bottom:697.259721px;}
.ya5{bottom:697.439721px;}
.y138{bottom:697.440021px;}
.y4e{bottom:701.399719px;}
.yf2{bottom:702.299719px;}
.yd2{bottom:706.439717px;}
.y19{bottom:707.339717px;}
.y114{bottom:713.459715px;}
.ya4{bottom:715.439714px;}
.y137{bottom:715.440014px;}
.y4d{bottom:719.399712px;}
.yf1{bottom:720.299712px;}
.y78{bottom:724.439710px;}
.ya3{bottom:733.439707px;}
.y4c{bottom:737.399705px;}
.yf0{bottom:738.299705px;}
.y18{bottom:738.479705px;}
.y113{bottom:741.359703px;}
.y154{bottom:742.439703px;}
.y136{bottom:742.440003px;}
.y77{bottom:751.439699px;}
.yef{bottom:756.299697px;}
.y17{bottom:758.459697px;}
.y135{bottom:760.439996px;}
.y4b{bottom:764.399694px;}
.y76{bottom:769.259692px;}
.ya1{bottom:769.439692px;}
.yee{bottom:774.299690px;}
.ya2{bottom:775.379690px;}
.y134{bottom:778.439989px;}
.y16{bottom:778.619689px;}
.y4a{bottom:782.399687px;}
.y15{bottom:784.559686px;}
.ya0{bottom:787.439685px;}
.yed{bottom:792.299683px;}
.y75{bottom:796.259681px;}
.y14{bottom:798.779680px;}
.y49{bottom:800.399680px;}
.yd1{bottom:805.439678px;}
.y133{bottom:805.439978px;}
.y112{bottom:805.619678px;}
.yec{bottom:810.299676px;}
.y9f{bottom:814.439674px;}
.y48{bottom:818.399673px;}
.y13{bottom:818.939672px;}
.yd0{bottom:823.439671px;}
.y74{bottom:823.439971px;}
.y12{bottom:824.879670px;}
.yeb{bottom:828.299669px;}
.y153{bottom:832.259667px;}
.y47{bottom:836.399665px;}
.y11{bottom:839.099664px;}
.y9e{bottom:841.439663px;}
.y10{bottom:845.039662px;}
.yea{bottom:846.299661px;}
.y73{bottom:850.439960px;}
.y46{bottom:854.399658px;}
.y111{bottom:856.199958px;}
.yf{bottom:859.259656px;}
.y9d{bottom:859.439656px;}
.y152{bottom:859.439956px;}
.ye9{bottom:864.299654px;}
.y132{bottom:868.439953px;}
.y45{bottom:872.399651px;}
.y9c{bottom:877.439649px;}
.y72{bottom:877.439949px;}
.ye{bottom:879.419648px;}
.ye8{bottom:882.299647px;}
.y151{bottom:886.439945px;}
.y110{bottom:890.039944px;}
.y44{bottom:890.399644px;}
.y9b{bottom:895.439642px;}
.y131{bottom:895.439942px;}
.yd{bottom:899.579640px;}
.ye7{bottom:900.299640px;}
.y71{bottom:904.439938px;}
.yc{bottom:905.519638px;}
.y43{bottom:908.399637px;}
.y9a{bottom:913.439635px;}
.y150{bottom:913.439935px;}
.ye6{bottom:918.299633px;}
.y130{bottom:922.439931px;}
.y10f{bottom:923.699931px;}
.y42{bottom:926.399629px;}
.ya{bottom:928.739629px;}
.y99{bottom:931.439627px;}
.y70{bottom:931.439927px;}
.yb{bottom:934.679626px;}
.ycf{bottom:940.439624px;}
.y12f{bottom:940.439924px;}
.y41{bottom:944.399622px;}
.ye5{bottom:946.019622px;}
.y8{bottom:948.899620px;}
.y98{bottom:949.439620px;}
.y9{bottom:954.839618px;}
.y10e{bottom:957.539917px;}
.yce{bottom:958.439617px;}
.y6f{bottom:958.439917px;}
.ye4{bottom:966.179614px;}
.y97{bottom:967.439613px;}
.y12e{bottom:967.439913px;}
.y40{bottom:972.299611px;}
.ycd{bottom:976.439609px;}
.y7{bottom:977.879609px;}
.y96{bottom:985.439606px;}
.y6e{bottom:985.439906px;}
.y10d{bottom:991.199904px;}
.ycc{bottom:994.439602px;}
.y95{bottom:1003.439599px;}
.ye3{bottom:1003.439899px;}
.y6{bottom:1007.939597px;}
.y3f{bottom:1010.279596px;}
.ycb{bottom:1012.439595px;}
.y6d{bottom:1012.439895px;}
.y90{bottom:1015.500600px;}
.y94{bottom:1021.439591px;}
.ye2{bottom:1021.439891px;}
.y10c{bottom:1025.039890px;}
.yca{bottom:1030.439588px;}
.y12d{bottom:1030.439888px;}
.y5{bottom:1033.499587px;}
.y6c{bottom:1039.439884px;}
.y3e{bottom:1042.139583px;}
.y93{bottom:1048.259581px;}
.yc9{bottom:1048.439581px;}
.y12c{bottom:1048.439881px;}
.ye1{bottom:1057.439877px;}
.y10b{bottom:1058.699877px;}
.yc8{bottom:1066.439573px;}
.y6b{bottom:1066.439873px;}
.y4{bottom:1070.399572px;}
.y3d{bottom:1073.999570px;}
.y92{bottom:1075.439870px;}
.y1{bottom:1086.059566px;}
.y10a{bottom:1092.359863px;}
.yc7{bottom:1093.259563px;}
.y6a{bottom:1093.439863px;}
.y3c{bottom:1093.619563px;}
.y38{bottom:1117.020600px;}
.y37{bottom:1145.999542px;}
.y36{bottom:1171.559531px;}
.y35{bottom:1197.119521px;}
.he{height:12.780000px;}
.ha{height:16.380000px;}
.h5{height:34.439752px;}
.h9{height:37.019516px;}
.h8{height:40.968265px;}
.hf{height:45.281232px;}
.h1{height:45.345919px;}
.hb{height:45.410607px;}
.h7{height:49.284472px;}
.h4{height:54.628572px;}
.hd{height:55.348572px;}
.h6{height:69.086222px;}
.h3{height:69.473293px;}
.hc{height:69.806222px;}
.h2{height:99.162734px;}
.h0{height:1263.000000px;}
.w2{width:9.720000px;}
.w1{width:84.600000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x14{left:80.099968px;}
.x3{left:84.959966px;}
.x12{left:90.359964px;}
.x13{left:95.579958px;}
.x4{left:101.159960px;}
.x1a{left:112.139955px;}
.x15{left:138.051845px;}
.x17{left:145.801057px;}
.x6{left:211.139916px;}
.x16{left:213.120384px;}
.x7{left:216.359913px;}
.x5{left:227.699909px;}
.x1b{left:245.340000px;}
.x10{left:246.599901px;}
.x11{left:254.339898px;}
.x8{left:383.759846px;}
.x9{left:388.979844px;}
.x20{left:451.079820px;}
.x18{left:466.019814px;}
.xa{left:506.519797px;}
.xb{left:511.739795px;}
.x1c{left:526.679789px;}
.x1d{left:531.899787px;}
.xc{left:653.939738px;}
.xd{left:659.159736px;}
.x1e{left:748.079701px;}
.x1f{left:753.299699px;}
.x21{left:778.139689px;}
.x19{left:793.079683px;}
.xe{left:798.479681px;}
.xf{left:803.699679px;}
.x2{left:807.839677px;}
.x1{left:816.119674px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.038147pt;}
.ls2{letter-spacing:0.135393pt;}
.ls6{letter-spacing:0.141162pt;}
.ls0{letter-spacing:2.202452pt;}
.ls1{letter-spacing:19.492792pt;}
.ls5{letter-spacing:36.783134pt;}
.ws2{word-spacing:-24.154870pt;}
.ws0{word-spacing:-13.306875pt;}
.ws1{word-spacing:0.000000pt;}
._18{margin-left:-7.900525pt;}
._2{margin-left:-6.612208pt;}
._15{margin-left:-5.554553pt;}
._b{margin-left:-4.480998pt;}
._11{margin-left:-3.500599pt;}
._0{margin-left:-2.558476pt;}
._1{margin-left:-0.944439pt;}
._3{width:0.907968pt;}
._8{width:2.087048pt;}
._9{width:3.293703pt;}
._d{width:4.277749pt;}
._f{width:5.341946pt;}
._10{width:6.250078pt;}
._e{width:7.164179pt;}
._6{width:8.206593pt;}
._7{width:9.175640pt;}
._a{width:10.517358pt;}
._14{width:11.901109pt;}
._c{width:14.377190pt;}
._4{width:15.526553pt;}
._5{width:16.849560pt;}
._13{width:17.933202pt;}
._17{width:19.235688pt;}
._12{width:20.389817pt;}
._1b{width:21.295780pt;}
._16{width:22.354283pt;}
._19{width:27.636305pt;}
._1a{width:29.012322pt;}
._1c{width:32.588288pt;}
._1d{width:34.173818pt;}
.fs3{font-size:37.119985pt;}
.fs5{font-size:47.999981pt;}
.fs4{font-size:53.119979pt;}
.fs0{font-size:58.879976pt;}
.fs2{font-size:74.879970pt;}
.fs1{font-size:106.879957pt;}
.y91{bottom:-2.400893pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:3.199068pt;}
.y3{bottom:51.466913pt;}
.y2{bottom:72.586904pt;}
.y3b{bottom:82.986900pt;}
.y3a{bottom:83.146900pt;}
.y34{bottom:112.586622pt;}
.y12b{bottom:128.266615pt;}
.y33{bottom:130.186615pt;}
.ye0{bottom:131.946614pt;}
.yc6{bottom:141.226610pt;}
.y8f{bottom:144.266609pt;}
.y32{bottom:147.626608pt;}
.ydf{bottom:147.946607pt;}
.y69{bottom:148.106607pt;}
.yc1{bottom:155.946604pt;}
.y8e{bottom:160.266603pt;}
.yde{bottom:163.946601pt;}
.y14f{bottom:163.946868pt;}
.y31{bottom:165.226601pt;}
.y68{bottom:166.026600pt;}
.y12a{bottom:168.266599pt;}
.yc0{bottom:171.946598pt;}
.y8d{bottom:176.266596pt;}
.ydd{bottom:179.946595pt;}
.y14e{bottom:179.946861pt;}
.yc5{bottom:181.066594pt;}
.y30{bottom:182.826594pt;}
.y67{bottom:183.946593pt;}
.y129{bottom:184.266593pt;}
.ybf{bottom:187.946591pt;}
.y8c{bottom:192.266590pt;}
.y14d{bottom:195.946855pt;}
.y2f{bottom:200.426586pt;}
.y66{bottom:201.866586pt;}
.ybe{bottom:203.946585pt;}
.yc4{bottom:205.226585pt;}
.y109{bottom:206.346584pt;}
.y8b{bottom:208.266583pt;}
.y2e{bottom:218.026579pt;}
.y65{bottom:219.786579pt;}
.ybd{bottom:219.946579pt;}
.y14c{bottom:219.946845pt;}
.y108{bottom:222.346578pt;}
.y8a{bottom:224.266577pt;}
.y2d{bottom:235.466572pt;}
.ybc{bottom:235.946572pt;}
.y14b{bottom:235.946839pt;}
.y107{bottom:238.346571pt;}
.y89{bottom:240.266571pt;}
.y128{bottom:248.266567pt;}
.ybb{bottom:251.946566pt;}
.y2c{bottom:253.066565pt;}
.y106{bottom:254.346565pt;}
.y64{bottom:255.466564pt;}
.y14a{bottom:259.946829pt;}
.y127{bottom:264.266561pt;}
.y88{bottom:264.906561pt;}
.yba{bottom:267.946559pt;}
.y105{bottom:270.346559pt;}
.y2b{bottom:270.666558pt;}
.y63{bottom:271.466558pt;}
.y87{bottom:282.826554pt;}
.yb9{bottom:283.946553pt;}
.y149{bottom:283.946820pt;}
.y104{bottom:286.346552pt;}
.y62{bottom:287.466552pt;}
.y2a{bottom:288.266551pt;}
.yb8{bottom:299.946547pt;}
.y148{bottom:299.946813pt;}
.y103{bottom:302.346546pt;}
.y61{bottom:303.466545pt;}
.y126{bottom:304.266545pt;}
.y29{bottom:312.266542pt;}
.y86{bottom:315.786540pt;}
.yb7{bottom:315.946540pt;}
.y147{bottom:315.946807pt;}
.y60{bottom:319.466539pt;}
.y102{bottom:326.346536pt;}
.y125{bottom:328.266535pt;}
.ydc{bottom:331.946534pt;}
.y5f{bottom:335.466532pt;}
.yb6{bottom:339.786531pt;}
.y85{bottom:339.946531pt;}
.y146{bottom:339.946797pt;}
.y101{bottom:342.346530pt;}
.y124{bottom:344.266529pt;}
.y28{bottom:347.466528pt;}
.y5e{bottom:351.466526pt;}
.y84{bottom:355.786524pt;}
.ydb{bottom:355.946524pt;}
.y100{bottom:358.346523pt;}
.yb5{bottom:363.946521pt;}
.y145{bottom:363.946788pt;}
.y5d{bottom:367.466520pt;}
.y123{bottom:368.266519pt;}
.yda{bottom:371.946518pt;}
.yff{bottom:374.346517pt;}
.y83{bottom:379.786515pt;}
.yb4{bottom:379.946515pt;}
.y144{bottom:379.946781pt;}
.y27{bottom:382.346514pt;}
.y5c{bottom:383.466513pt;}
.y122{bottom:384.266513pt;}
.yd9{bottom:387.946511pt;}
.yfe{bottom:390.346511pt;}
.yb3{bottom:395.946508pt;}
.y143{bottom:395.946775pt;}
.y26{bottom:398.666507pt;}
.y82{bottom:403.786505pt;}
.yd8{bottom:403.946505pt;}
.y5b{bottom:407.466504pt;}
.y121{bottom:409.066503pt;}
.yb2{bottom:411.946502pt;}
.y25{bottom:414.986501pt;}
.yfd{bottom:415.146501pt;}
.y142{bottom:419.946765pt;}
.y5a{bottom:423.466497pt;}
.y81{bottom:427.786496pt;}
.yb1{bottom:427.946495pt;}
.y24{bottom:431.146494pt;}
.y141{bottom:435.946759pt;}
.y59{bottom:439.466491pt;}
.y120{bottom:442.186490pt;}
.yb0{bottom:443.946489pt;}
.y23{bottom:447.466488pt;}
.yfc{bottom:448.266487pt;}
.y80{bottom:451.786486pt;}
.y58{bottom:455.466484pt;}
.y11f{bottom:458.186483pt;}
.yaf{bottom:459.946483pt;}
.y140{bottom:459.946749pt;}
.y22{bottom:463.786481pt;}
.yfb{bottom:464.266481pt;}
.yc3{bottom:467.946479pt;}
.y57{bottom:471.466478pt;}
.y11e{bottom:474.186477pt;}
.y7f{bottom:475.786476pt;}
.yae{bottom:475.946476pt;}
.y13f{bottom:475.946743pt;}
.y21{bottom:480.106475pt;}
.yfa{bottom:480.266475pt;}
.y56{bottom:487.466472pt;}
.y11d{bottom:490.186471pt;}
.yad{bottom:491.946470pt;}
.y20{bottom:496.266468pt;}
.y7e{bottom:499.786467pt;}
.y13e{bottom:499.946733pt;}
.y55{bottom:503.466465pt;}
.y11c{bottom:506.186464pt;}
.yc2{bottom:507.786464pt;}
.yab{bottom:507.946463pt;}
.yf9{bottom:512.266462pt;}
.y1f{bottom:512.586462pt;}
.yac{bottom:513.226461pt;}
.y13d{bottom:515.946727pt;}
.y54{bottom:519.466459pt;}
.y11b{bottom:522.186458pt;}
.y7d{bottom:523.786457pt;}
.yaa{bottom:523.946457pt;}
.yf8{bottom:528.266455pt;}
.y1e{bottom:528.906455pt;}
.yd7{bottom:531.946454pt;}
.y11a{bottom:538.186451pt;}
.y13c{bottom:539.946717pt;}
.y53{bottom:543.466449pt;}
.yf7{bottom:544.266449pt;}
.y1d{bottom:545.066449pt;}
.y7c{bottom:547.786448pt;}
.ya9{bottom:547.946447pt;}
.y119{bottom:554.186445pt;}
.y13b{bottom:555.946711pt;}
.y52{bottom:559.466443pt;}
.yf6{bottom:560.266443pt;}
.y1c{bottom:561.386442pt;}
.yd6{bottom:563.946441pt;}
.y118{bottom:570.186439pt;}
.y7b{bottom:571.786438pt;}
.ya8{bottom:571.946438pt;}
.y51{bottom:575.466436pt;}
.yf5{bottom:576.266436pt;}
.y1b{bottom:577.706436pt;}
.yd5{bottom:579.946435pt;}
.y13a{bottom:579.946701pt;}
.y117{bottom:586.186432pt;}
.ya7{bottom:587.946431pt;}
.y50{bottom:591.466430pt;}
.yf4{bottom:592.266430pt;}
.y1a{bottom:593.866429pt;}
.y7a{bottom:595.786428pt;}
.yd4{bottom:595.946428pt;}
.y139{bottom:595.946695pt;}
.y116{bottom:602.186426pt;}
.ya6{bottom:603.946425pt;}
.y4f{bottom:607.466424pt;}
.yf3{bottom:608.266423pt;}
.yd3{bottom:611.946422pt;}
.y115{bottom:618.186419pt;}
.y79{bottom:619.786419pt;}
.ya5{bottom:619.946419pt;}
.y138{bottom:619.946685pt;}
.y4e{bottom:623.466417pt;}
.yf2{bottom:624.266417pt;}
.yd2{bottom:627.946415pt;}
.y19{bottom:628.746415pt;}
.y114{bottom:634.186413pt;}
.ya4{bottom:635.946412pt;}
.y137{bottom:635.946679pt;}
.y4d{bottom:639.466411pt;}
.yf1{bottom:640.266411pt;}
.y78{bottom:643.946409pt;}
.ya3{bottom:651.946406pt;}
.y4c{bottom:655.466404pt;}
.yf0{bottom:656.266404pt;}
.y18{bottom:656.426404pt;}
.y113{bottom:658.986403pt;}
.y154{bottom:659.946403pt;}
.y136{bottom:659.946669pt;}
.y77{bottom:667.946399pt;}
.yef{bottom:672.266398pt;}
.y17{bottom:674.186397pt;}
.y135{bottom:675.946663pt;}
.y4b{bottom:679.466395pt;}
.y76{bottom:683.786393pt;}
.ya1{bottom:683.946393pt;}
.yee{bottom:688.266391pt;}
.ya2{bottom:689.226391pt;}
.y134{bottom:691.946657pt;}
.y16{bottom:692.106390pt;}
.y4a{bottom:695.466388pt;}
.y15{bottom:697.386388pt;}
.ya0{bottom:699.946387pt;}
.yed{bottom:704.266385pt;}
.y75{bottom:707.786384pt;}
.y14{bottom:710.026383pt;}
.y49{bottom:711.466382pt;}
.yd1{bottom:715.946380pt;}
.y133{bottom:715.946647pt;}
.y112{bottom:716.106380pt;}
.yec{bottom:720.266379pt;}
.y9f{bottom:723.946377pt;}
.y48{bottom:727.466376pt;}
.y13{bottom:727.946375pt;}
.yd0{bottom:731.946374pt;}
.y74{bottom:731.946641pt;}
.y12{bottom:733.226373pt;}
.yeb{bottom:736.266372pt;}
.y153{bottom:739.786371pt;}
.y47{bottom:743.466369pt;}
.y11{bottom:745.866368pt;}
.y9e{bottom:747.946367pt;}
.y10{bottom:751.146366pt;}
.yea{bottom:752.266366pt;}
.y73{bottom:755.946631pt;}
.y46{bottom:759.466363pt;}
.y111{bottom:761.066629pt;}
.yf{bottom:763.786361pt;}
.y9d{bottom:763.946361pt;}
.y152{bottom:763.946628pt;}
.ye9{bottom:768.266359pt;}
.y132{bottom:771.946625pt;}
.y45{bottom:775.466356pt;}
.y9c{bottom:779.946355pt;}
.y72{bottom:779.946621pt;}
.ye{bottom:781.706354pt;}
.ye8{bottom:784.266353pt;}
.y151{bottom:787.946618pt;}
.y110{bottom:791.146617pt;}
.y44{bottom:791.466350pt;}
.y9b{bottom:795.946348pt;}
.y131{bottom:795.946615pt;}
.yd{bottom:799.626347pt;}
.ye7{bottom:800.266347pt;}
.y71{bottom:803.946612pt;}
.yc{bottom:804.906345pt;}
.y43{bottom:807.466344pt;}
.y9a{bottom:811.946342pt;}
.y150{bottom:811.946609pt;}
.ye6{bottom:816.266340pt;}
.y130{bottom:819.946605pt;}
.y10f{bottom:821.066605pt;}
.y42{bottom:823.466337pt;}
.ya{bottom:825.546336pt;}
.y99{bottom:827.946335pt;}
.y70{bottom:827.946602pt;}
.yb{bottom:830.826334pt;}
.ycf{bottom:835.946332pt;}
.y12f{bottom:835.946599pt;}
.y41{bottom:839.466331pt;}
.ye5{bottom:840.906330pt;}
.y8{bottom:843.466329pt;}
.y98{bottom:843.946329pt;}
.y9{bottom:848.746327pt;}
.y10e{bottom:851.146593pt;}
.yce{bottom:851.946326pt;}
.y6f{bottom:851.946593pt;}
.ye4{bottom:858.826323pt;}
.y97{bottom:859.946323pt;}
.y12e{bottom:859.946589pt;}
.y40{bottom:864.266321pt;}
.ycd{bottom:867.946319pt;}
.y7{bottom:869.226319pt;}
.y96{bottom:875.946316pt;}
.y6e{bottom:875.946583pt;}
.y10d{bottom:881.066581pt;}
.ycc{bottom:883.946313pt;}
.y95{bottom:891.946310pt;}
.ye3{bottom:891.946577pt;}
.y6{bottom:895.946308pt;}
.y3f{bottom:898.026307pt;}
.ycb{bottom:899.946307pt;}
.y6d{bottom:899.946573pt;}
.y90{bottom:902.667200pt;}
.y94{bottom:907.946303pt;}
.ye2{bottom:907.946570pt;}
.y10c{bottom:911.146569pt;}
.yca{bottom:915.946300pt;}
.y12d{bottom:915.946567pt;}
.y5{bottom:918.666299pt;}
.y6c{bottom:923.946564pt;}
.y3e{bottom:926.346296pt;}
.y93{bottom:931.786294pt;}
.yc9{bottom:931.946294pt;}
.y12c{bottom:931.946561pt;}
.ye1{bottom:939.946557pt;}
.y10b{bottom:941.066557pt;}
.yc8{bottom:947.946287pt;}
.y6b{bottom:947.946554pt;}
.y4{bottom:951.466286pt;}
.y3d{bottom:954.666285pt;}
.y92{bottom:955.946551pt;}
.y1{bottom:965.386281pt;}
.y10a{bottom:970.986545pt;}
.yc7{bottom:971.786278pt;}
.y6a{bottom:971.946545pt;}
.y3c{bottom:972.106278pt;}
.y38{bottom:992.907200pt;}
.y37{bottom:1018.666259pt;}
.y36{bottom:1041.386250pt;}
.y35{bottom:1064.106241pt;}
.he{height:11.360000pt;}
.ha{height:14.560000pt;}
.h5{height:30.613113pt;}
.h9{height:32.906237pt;}
.h8{height:36.416235pt;}
.hf{height:40.249984pt;}
.h1{height:40.307484pt;}
.hb{height:40.364984pt;}
.h7{height:43.808420pt;}
.h4{height:48.558731pt;}
.hd{height:49.198730pt;}
.h6{height:61.409975pt;}
.h3{height:61.754038pt;}
.hc{height:62.049975pt;}
.h2{height:88.144652pt;}
.h0{height:1122.666667pt;}
.w2{width:8.640000pt;}
.w1{width:75.200000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x14{left:71.199972pt;}
.x3{left:75.519970pt;}
.x12{left:80.319968pt;}
.x13{left:84.959963pt;}
.x4{left:89.919964pt;}
.x1a{left:99.679960pt;}
.x15{left:122.712751pt;}
.x17{left:129.600940pt;}
.x6{left:187.679925pt;}
.x16{left:189.440342pt;}
.x7{left:192.319923pt;}
.x5{left:202.399919pt;}
.x1b{left:218.080000pt;}
.x10{left:219.199912pt;}
.x11{left:226.079910pt;}
.x8{left:341.119864pt;}
.x9{left:345.759862pt;}
.x20{left:400.959840pt;}
.x18{left:414.239834pt;}
.xa{left:450.239820pt;}
.xb{left:454.879818pt;}
.x1c{left:468.159813pt;}
.x1d{left:472.799811pt;}
.xc{left:581.279767pt;}
.xd{left:585.919766pt;}
.x1e{left:664.959734pt;}
.x1f{left:669.599732pt;}
.x21{left:691.679723pt;}
.x19{left:704.959718pt;}
.xe{left:709.759716pt;}
.xf{left:714.399714pt;}
.x2{left:718.079713pt;}
.x1{left:725.439710pt;}
}




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