
    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_497b5eaaf2f08efd63e5b4f8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.042222;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_04b9cacc9c02ba645e343efc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.830667;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_47f6115423af7670c151a709.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.908444;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_44bcf0a75b518c42013837d6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666667;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_d26b51b8e16d9d8308ab9102.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.043556;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_fed04c080af4a882efe6d20e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666667;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_ff21ccc2666fa3dfdef7db8e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.710222;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_44bcf0a75b518c42013837d6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666667;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_6fd13db280448581a00938f4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f32de70681097e6059fc13eb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.713867;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_363761e67e81fbcf4edb442b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_48fc77d349c0013b3be09654.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.908444;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.999993px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880124px;}
.lsd{letter-spacing:-1.943999px;}
.lse{letter-spacing:-0.594000px;}
.lsc{letter-spacing:-0.425400px;}
.lsf{letter-spacing:-0.349200px;}
.ls0{letter-spacing:-0.306000px;}
.ls1e{letter-spacing:-0.285600px;}
.ls1b{letter-spacing:-0.223200px;}
.ls7{letter-spacing:-0.175200px;}
.ls1a{letter-spacing:-0.069600px;}
.ls11{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.036510px;}
.ls4{letter-spacing:0.039661px;}
.ls12{letter-spacing:0.054000px;}
.lsa{letter-spacing:0.079034px;}
.ls1d{letter-spacing:0.084000px;}
.ls8{letter-spacing:0.089400px;}
.ls2{letter-spacing:0.126000px;}
.ls1f{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.149702px;}
.ls14{letter-spacing:0.149766px;}
.ls21{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.208800px;}
.ls24{letter-spacing:0.255006px;}
.ls10{letter-spacing:0.270000px;}
.ls9{letter-spacing:0.286974px;}
.ls6{letter-spacing:0.294600px;}
.ls25{letter-spacing:0.305311px;}
.ls1c{letter-spacing:0.314400px;}
.ls13{letter-spacing:0.370800px;}
.ls3{letter-spacing:0.565200px;}
.ls23{letter-spacing:1.014000px;}
.ls5{letter-spacing:1.044000px;}
.ls26{letter-spacing:3.855004px;}
.ls22{letter-spacing:14.655000px;}
.ls20{letter-spacing:26.894995px;}
.ls19{letter-spacing:56.808502px;}
.ls17{letter-spacing:58.968501px;}
.ls18{letter-spacing:59.688501px;}
.ls16{letter-spacing:65.448498px;}
.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;}
}
.ws3{word-spacing:-20.511992px;}
.ws13{word-spacing:-17.694713px;}
.wsd{word-spacing:-17.339387px;}
.ws14{word-spacing:-17.233787px;}
.ws10{word-spacing:-17.168987px;}
.ws6{word-spacing:-17.114387px;}
.wse{word-spacing:-17.108987px;}
.ws2{word-spacing:-17.024987px;}
.wsb{word-spacing:-16.955387px;}
.ws5{word-spacing:-16.849788px;}
.wsc{word-spacing:-16.801788px;}
.wsf{word-spacing:-16.739388px;}
.ws11{word-spacing:-15.564028px;}
.wsa{word-spacing:-15.438028px;}
.ws1{word-spacing:-15.384028px;}
.ws9{word-spacing:-15.366028px;}
.ws7{word-spacing:-15.080988px;}
.ws0{word-spacing:-15.078028px;}
.ws8{word-spacing:-13.762554px;}
.ws12{word-spacing:-0.059760px;}
.ws4{word-spacing:0.000000px;}
._17{margin-left:-12.939671px;}
._19{margin-left:-7.563771px;}
._3{margin-left:-4.548958px;}
._2{margin-left:-3.453839px;}
._4{margin-left:-2.425914px;}
._0{margin-left:-1.027082px;}
._1{width:1.115102px;}
._5{width:2.591219px;}
._9{width:4.544158px;}
._14{width:5.609147px;}
._c{width:6.633968px;}
._f{width:7.692960px;}
._10{width:8.863639px;}
._1c{width:9.920774px;}
._6{width:10.937293px;}
._7{width:11.946641px;}
._8{width:13.841288px;}
._b{width:15.085860px;}
._a{width:18.586585px;}
._11{width:20.244970px;}
._e{width:21.276387px;}
._d{width:22.613494px;}
._1a{width:24.445465px;}
._1d{width:25.760785px;}
._1e{width:27.763105px;}
._18{width:34.241124px;}
._15{width:35.277004px;}
._16{width:36.446487px;}
._1f{width:229.427435px;}
._1b{width:233.747433px;}
._13{width:235.907433px;}
._12{width:344.807401px;}
.fc2{color:rgb(32,33,34);}
.fc1{color:rgb(23,23,23);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.239988px;}
.fs5{font-size:38.879984px;}
.fs7{font-size:48.240101px;}
.fs0{font-size:54.000098px;}
.fs2{font-size:59.760096px;}
.fs4{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.fs1{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y10{bottom:10.080390px;}
.yf{bottom:28.980383px;}
.ye{bottom:47.700375px;}
.y3{bottom:56.374452px;}
.y27{bottom:57.634487px;}
.y4d{bottom:57.635828px;}
.yd{bottom:66.420368px;}
.y2{bottom:73.294445px;}
.yc{bottom:85.140360px;}
.yb{bottom:103.905353px;}
.yc7{bottom:109.116559px;}
.y6a{bottom:109.116988px;}
.y4b{bottom:114.695338px;}
.yfa{bottom:115.055336px;}
.y82{bottom:118.835334px;}
.y25{bottom:119.916117px;}
.ya{bottom:122.805345px;}
.ya4{bottom:123.336108px;}
.y69{bottom:124.236982px;}
.yc6{bottom:128.736552px;}
.y4a{bottom:133.415330px;}
.ye4{bottom:133.775328px;}
.y81{bottom:135.755328px;}
.y24{bottom:138.636110px;}
.y68{bottom:139.176976px;}
.yde{bottom:140.435326px;}
.yc5{bottom:140.975797px;}
.y9{bottom:141.525338px;}
.ya3{bottom:142.056101px;}
.y11a{bottom:143.136090px;}
.y49{bottom:152.128273px;}
.ye3{bottom:152.488271px;}
.y80{bottom:152.668271px;}
.y23{bottom:157.349052px;}
.y67{bottom:158.609934px;}
.ydd{bottom:159.328268px;}
.ya2{bottom:160.769043px;}
.y119{bottom:161.849032px;}
.y7f{bottom:169.588264px;}
.y48{bottom:170.848265px;}
.y66{bottom:170.849935px;}
.ye2{bottom:171.208264px;}
.yc4{bottom:171.208282px;}
.yf9{bottom:171.208432px;}
.y22{bottom:176.069045px;}
.ydc{bottom:178.048261px;}
.ya1{bottom:179.489036px;}
.y118{bottom:180.569025px;}
.y7e{bottom:186.328257px;}
.y47{bottom:189.568258px;}
.ye1{bottom:189.928256px;}
.yc3{bottom:189.928274px;}
.yf8{bottom:189.928424px;}
.y21{bottom:194.789037px;}
.ydb{bottom:196.768253px;}
.ya0{bottom:198.209028px;}
.y117{bottom:199.469017px;}
.y7d{bottom:203.248251px;}
.y46{bottom:208.288250px;}
.ye0{bottom:208.828248px;}
.yc2{bottom:208.828266px;}
.yf7{bottom:208.828416px;}
.y20{bottom:213.509030px;}
.yda{bottom:215.488246px;}
.y9f{bottom:217.109021px;}
.y116{bottom:218.189010px;}
.y7c{bottom:220.168244px;}
.y45{bottom:227.188993px;}
.y65{bottom:227.189912px;}
.ydf{bottom:227.548241px;}
.yc1{bottom:227.548259px;}
.yf6{bottom:227.548409px;}
.y1f{bottom:232.409022px;}
.yd9{bottom:234.253238px;}
.y9e{bottom:235.874013px;}
.y115{bottom:236.954002px;}
.y44{bottom:245.953985px;}
.y64{bottom:245.954905px;}
.yf5{bottom:246.312483px;}
.y7b{bottom:246.313233px;}
.yc0{bottom:246.313251px;}
.y1e{bottom:251.174015px;}
.yd8{bottom:253.153231px;}
.y9d{bottom:254.594006px;}
.y114{bottom:255.673995px;}
.y43{bottom:264.673978px;}
.yf4{bottom:265.032476px;}
.y7a{bottom:265.033226px;}
.ybf{bottom:265.033244px;}
.y63{bottom:265.034897px;}
.y1d{bottom:269.894007px;}
.yd7{bottom:271.873223px;}
.y9c{bottom:273.313998px;}
.y113{bottom:274.393987px;}
.y42{bottom:283.393970px;}
.y62{bottom:283.750985px;}
.yf3{bottom:283.752468px;}
.y79{bottom:283.753218px;}
.ybe{bottom:283.753236px;}
.y1c{bottom:288.614000px;}
.yd6{bottom:290.593216px;}
.y9b{bottom:292.033991px;}
.y112{bottom:293.113980px;}
.y41{bottom:302.113963px;}
.y61{bottom:302.650977px;}
.yf2{bottom:302.652461px;}
.y78{bottom:302.653211px;}
.ybd{bottom:302.653229px;}
.y1b{bottom:307.333992px;}
.yd5{bottom:309.313208px;}
.y9a{bottom:310.753983px;}
.y111{bottom:312.013972px;}
.y40{bottom:321.013955px;}
.y60{bottom:321.370970px;}
.yf1{bottom:321.372453px;}
.y77{bottom:321.373203px;}
.ybc{bottom:321.373221px;}
.y1a{bottom:326.233985px;}
.yd4{bottom:328.033201px;}
.y99{bottom:329.653976px;}
.y110{bottom:330.733965px;}
.y3f{bottom:339.733948px;}
.y5f{bottom:340.090962px;}
.yf0{bottom:340.092446px;}
.y76{bottom:340.093196px;}
.ybb{bottom:340.093214px;}
.y19{bottom:344.953977px;}
.yd3{bottom:346.753193px;}
.y10f{bottom:349.453957px;}
.y3e{bottom:358.453940px;}
.y5e{bottom:358.810955px;}
.yef{bottom:358.812438px;}
.y75{bottom:358.813188px;}
.yba{bottom:358.813206px;}
.y18{bottom:363.673970px;}
.yd2{bottom:365.653186px;}
.y98{bottom:366.013961px;}
.y10e{bottom:368.173950px;}
.y3d{bottom:377.173933px;}
.y5d{bottom:377.530947px;}
.yee{bottom:377.532431px;}
.y74{bottom:377.533181px;}
.yb9{bottom:377.533199px;}
.y17{bottom:382.393962px;}
.y97{bottom:382.933954px;}
.yd1{bottom:384.373178px;}
.y10d{bottom:386.893942px;}
.y3c{bottom:395.893925px;}
.y5c{bottom:396.250940px;}
.yed{bottom:396.252423px;}
.y73{bottom:396.253173px;}
.yb8{bottom:396.253191px;}
.y96{bottom:399.853948px;}
.y16{bottom:401.113955px;}
.yd0{bottom:403.093171px;}
.y10c{bottom:405.793935px;}
.y3b{bottom:414.793918px;}
.y5b{bottom:415.150932px;}
.yec{bottom:415.152416px;}
.y72{bottom:415.153166px;}
.yb7{bottom:415.153184px;}
.y95{bottom:416.773941px;}
.y15{bottom:420.013947px;}
.ycf{bottom:421.813163px;}
.y10b{bottom:424.544827px;}
.y3a{bottom:433.544810px;}
.y94{bottom:433.544834px;}
.y5a{bottom:433.901825px;}
.yeb{bottom:433.903308px;}
.y71{bottom:433.904058px;}
.yb6{bottom:433.904076px;}
.y14{bottom:438.764839px;}
.y10a{bottom:443.264820px;}
.y93{bottom:450.464827px;}
.y39{bottom:452.264803px;}
.y59{bottom:452.621817px;}
.yea{bottom:452.623301px;}
.y70{bottom:452.624801px;}
.yb5{bottom:452.624834px;}
.yce{bottom:452.804051px;}
.y13{bottom:461.624815px;}
.y109{bottom:461.984812px;}
.y92{bottom:467.384821px;}
.y38{bottom:470.984795px;}
.y58{bottom:471.341810px;}
.ye9{bottom:471.343293px;}
.ycd{bottom:471.344043px;}
.y6f{bottom:471.344793px;}
.yb4{bottom:471.344826px;}
.y108{bottom:480.704805px;}
.y12{bottom:485.204825px;}
.y37{bottom:489.704788px;}
.y57{bottom:490.061802px;}
.ye8{bottom:490.063286px;}
.ycc{bottom:490.064036px;}
.y6e{bottom:490.064786px;}
.yb3{bottom:490.064819px;}
.y91{bottom:496.724809px;}
.y107{bottom:499.424797px;}
.y11{bottom:505.004817px;}
.y36{bottom:508.424780px;}
.y56{bottom:508.961795px;}
.ye7{bottom:508.963278px;}
.ycb{bottom:508.964028px;}
.y6d{bottom:508.964778px;}
.yb2{bottom:508.964811px;}
.y90{bottom:515.264801px;}
.y106{bottom:518.324790px;}
.y8{bottom:519.944414px;}
.y35{bottom:527.324773px;}
.y55{bottom:527.682537px;}
.ye6{bottom:527.683271px;}
.yca{bottom:527.684021px;}
.y6c{bottom:527.684771px;}
.yb1{bottom:527.684804px;}
.y8f{bottom:533.984794px;}
.y105{bottom:537.044782px;}
.ye5{bottom:546.403263px;}
.y54{bottom:546.403280px;}
.yc9{bottom:546.404013px;}
.y6b{bottom:546.404763px;}
.y34{bottom:546.404765px;}
.yb0{bottom:546.404796px;}
.y8e{bottom:552.704786px;}
.y104{bottom:555.764775px;}
.yc8{bottom:565.124006px;}
.y53{bottom:565.124022px;}
.y33{bottom:565.124756px;}
.yaf{bottom:565.124789px;}
.y8d{bottom:571.604779px;}
.y103{bottom:574.484767px;}
.y32{bottom:583.844748px;}
.y52{bottom:583.844765px;}
.yae{bottom:583.844781px;}
.y8c{bottom:590.324771px;}
.y102{bottom:593.204760px;}
.y31{bottom:602.744741px;}
.y51{bottom:602.744757px;}
.yad{bottom:602.744774px;}
.y8b{bottom:609.044764px;}
.y101{bottom:612.104752px;}
.y30{bottom:621.509733px;}
.y50{bottom:621.509750px;}
.yac{bottom:621.509766px;}
.y8a{bottom:627.809756px;}
.y100{bottom:630.869745px;}
.y2f{bottom:640.229726px;}
.y4f{bottom:640.229742px;}
.yab{bottom:640.229759px;}
.y89{bottom:646.529749px;}
.yff{bottom:649.589737px;}
.y2e{bottom:658.949718px;}
.y4e{bottom:658.949735px;}
.yaa{bottom:658.949751px;}
.y88{bottom:665.249741px;}
.yfe{bottom:669.029740px;}
.y2d{bottom:677.669711px;}
.ya9{bottom:677.669744px;}
.y7{bottom:682.349718px;}
.y87{bottom:684.149734px;}
.yfd{bottom:691.349731px;}
.y2c{bottom:696.389703px;}
.ya8{bottom:696.389736px;}
.y6{bottom:702.689710px;}
.y86{bottom:702.869726px;}
.yfc{bottom:711.869723px;}
.ya7{bottom:715.289691px;}
.y2b{bottom:715.289696px;}
.y5{bottom:722.849702px;}
.yfb{bottom:732.569714px;}
.y2a{bottom:734.009688px;}
.ya6{bottom:734.009700px;}
.y85{bottom:739.409712px;}
.y4{bottom:747.509695px;}
.y29{bottom:752.729681px;}
.ya5{bottom:752.729709px;}
.y84{bottom:756.149705px;}
.y28{bottom:771.449673px;}
.y83{bottom:773.069698px;}
.y26{bottom:807.479688px;}
.y4c{bottom:809.459651px;}
.y1{bottom:826.379644px;}
.he{height:21.685530px;}
.h10{height:21.749850px;}
.hc{height:36.000066px;}
.hf{height:39.685523px;}
.h12{height:39.749843px;}
.h9{height:39.830337px;}
.h5{height:39.840064px;}
.h7{height:41.539907px;}
.hb{height:44.149201px;}
.h13{height:44.159982px;}
.h2{height:44.424081px;}
.h8{height:49.162639px;}
.hd{height:49.162705px;}
.h11{height:49.166311px;}
.h4{height:49.242319px;}
.ha{height:49.599980px;}
.h3{height:58.031977px;}
.h6{height:156.629531px;}
.h0{height:892.979850px;}
.h1{height:893.250000px;}
.w2{width:413.564414px;}
.w1{width:629.250000px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x5{left:7.740008px;}
.x4{left:106.416553px;}
.x6{left:127.656550px;}
.x9{left:136.116991px;}
.x8{left:148.895936px;}
.x3{left:160.046954px;}
.x2{left:186.911943px;}
.x7{left:212.654921px;}
.x1{left:509.549814px;}
@media print{
.v2{vertical-align:-15.999994pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560110pt;}
.lsd{letter-spacing:-1.727999pt;}
.lse{letter-spacing:-0.528000pt;}
.lsc{letter-spacing:-0.378133pt;}
.lsf{letter-spacing:-0.310400pt;}
.ls0{letter-spacing:-0.272000pt;}
.ls1e{letter-spacing:-0.253867pt;}
.ls1b{letter-spacing:-0.198400pt;}
.ls7{letter-spacing:-0.155733pt;}
.ls1a{letter-spacing:-0.061867pt;}
.ls11{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.032453pt;}
.ls4{letter-spacing:0.035255pt;}
.ls12{letter-spacing:0.048000pt;}
.lsa{letter-spacing:0.070252pt;}
.ls1d{letter-spacing:0.074667pt;}
.ls8{letter-spacing:0.079467pt;}
.ls2{letter-spacing:0.112000pt;}
.ls1f{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.133069pt;}
.ls14{letter-spacing:0.133125pt;}
.ls21{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.185600pt;}
.ls24{letter-spacing:0.226672pt;}
.ls10{letter-spacing:0.240000pt;}
.ls9{letter-spacing:0.255088pt;}
.ls6{letter-spacing:0.261867pt;}
.ls25{letter-spacing:0.271387pt;}
.ls1c{letter-spacing:0.279467pt;}
.ls13{letter-spacing:0.329600pt;}
.ls3{letter-spacing:0.502400pt;}
.ls23{letter-spacing:0.901333pt;}
.ls5{letter-spacing:0.928000pt;}
.ls26{letter-spacing:3.426670pt;}
.ls22{letter-spacing:13.026667pt;}
.ls20{letter-spacing:23.906662pt;}
.ls19{letter-spacing:50.496446pt;}
.ls17{letter-spacing:52.416445pt;}
.ls18{letter-spacing:53.056445pt;}
.ls16{letter-spacing:58.176443pt;}
.ws3{word-spacing:-18.232882pt;}
.ws13{word-spacing:-15.728634pt;}
.wsd{word-spacing:-15.412789pt;}
.ws14{word-spacing:-15.318922pt;}
.ws10{word-spacing:-15.261322pt;}
.ws6{word-spacing:-15.212789pt;}
.wse{word-spacing:-15.207989pt;}
.ws2{word-spacing:-15.133322pt;}
.wsb{word-spacing:-15.071456pt;}
.ws5{word-spacing:-14.977589pt;}
.wsc{word-spacing:-14.934922pt;}
.wsf{word-spacing:-14.879456pt;}
.ws11{word-spacing:-13.834692pt;}
.wsa{word-spacing:-13.722692pt;}
.ws1{word-spacing:-13.674692pt;}
.ws9{word-spacing:-13.658692pt;}
.ws7{word-spacing:-13.405323pt;}
.ws0{word-spacing:-13.402692pt;}
.ws8{word-spacing:-12.233382pt;}
.ws12{word-spacing:-0.053120pt;}
.ws4{word-spacing:0.000000pt;}
._17{margin-left:-11.501930pt;}
._19{margin-left:-6.723352pt;}
._3{margin-left:-4.043518pt;}
._2{margin-left:-3.070079pt;}
._4{margin-left:-2.156368pt;}
._0{margin-left:-0.912962pt;}
._1{width:0.991202pt;}
._5{width:2.303306pt;}
._9{width:4.039251pt;}
._14{width:4.985908pt;}
._c{width:5.896861pt;}
._f{width:6.838187pt;}
._10{width:7.878790pt;}
._1c{width:8.818465pt;}
._6{width:9.722038pt;}
._7{width:10.619236pt;}
._8{width:12.303367pt;}
._b{width:13.409653pt;}
._a{width:16.521409pt;}
._11{width:17.995529pt;}
._e{width:18.912344pt;}
._d{width:20.100883pt;}
._1a{width:21.729302pt;}
._1d{width:22.898475pt;}
._1e{width:24.678316pt;}
._18{width:30.436555pt;}
._15{width:31.357337pt;}
._16{width:32.396878pt;}
._1f{width:203.935498pt;}
._1b{width:207.775496pt;}
._13{width:209.695496pt;}
._12{width:306.495467pt;}
.fs6{font-size:26.879989pt;}
.fs5{font-size:34.559986pt;}
.fs7{font-size:42.880090pt;}
.fs0{font-size:48.000087pt;}
.fs2{font-size:53.120085pt;}
.fs4{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.fs1{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:8.960347pt;}
.yf{bottom:25.760340pt;}
.ye{bottom:42.400334pt;}
.y3{bottom:50.110624pt;}
.y27{bottom:51.230656pt;}
.y4d{bottom:51.231848pt;}
.yd{bottom:59.040327pt;}
.y2{bottom:65.150618pt;}
.yc{bottom:75.680320pt;}
.yb{bottom:92.360314pt;}
.yc7{bottom:96.992497pt;}
.y6a{bottom:96.992879pt;}
.y4b{bottom:101.951411pt;}
.yfa{bottom:102.271410pt;}
.y82{bottom:105.631408pt;}
.y25{bottom:106.592104pt;}
.ya{bottom:109.160307pt;}
.ya4{bottom:109.632096pt;}
.y69{bottom:110.432873pt;}
.yc6{bottom:114.432490pt;}
.y4a{bottom:118.591405pt;}
.ye4{bottom:118.911403pt;}
.y81{bottom:120.671402pt;}
.y24{bottom:123.232097pt;}
.y68{bottom:123.712868pt;}
.yde{bottom:124.831401pt;}
.yc5{bottom:125.311819pt;}
.y9{bottom:125.800300pt;}
.ya3{bottom:126.272089pt;}
.y11a{bottom:127.232080pt;}
.y49{bottom:135.225131pt;}
.ye3{bottom:135.545130pt;}
.y80{bottom:135.705130pt;}
.y23{bottom:139.865824pt;}
.y67{bottom:140.986608pt;}
.ydd{bottom:141.625127pt;}
.ya2{bottom:142.905816pt;}
.y119{bottom:143.865806pt;}
.y7f{bottom:150.745124pt;}
.y48{bottom:151.865125pt;}
.y66{bottom:151.866609pt;}
.ye2{bottom:152.185123pt;}
.yc4{bottom:152.185139pt;}
.yf9{bottom:152.185272pt;}
.y22{bottom:156.505817pt;}
.ydc{bottom:158.265121pt;}
.ya1{bottom:159.545810pt;}
.y118{bottom:160.505800pt;}
.y7e{bottom:165.625118pt;}
.y47{bottom:168.505118pt;}
.ye1{bottom:168.825116pt;}
.yc3{bottom:168.825132pt;}
.yf8{bottom:168.825266pt;}
.y21{bottom:173.145811pt;}
.ydb{bottom:174.905114pt;}
.ya0{bottom:176.185803pt;}
.y117{bottom:177.305793pt;}
.y7d{bottom:180.665112pt;}
.y46{bottom:185.145111pt;}
.ye0{bottom:185.625110pt;}
.yc2{bottom:185.625126pt;}
.yf7{bottom:185.625259pt;}
.y20{bottom:189.785804pt;}
.yda{bottom:191.545107pt;}
.y9f{bottom:192.985796pt;}
.y116{bottom:193.945786pt;}
.y7c{bottom:195.705106pt;}
.y45{bottom:201.945771pt;}
.y65{bottom:201.946589pt;}
.ydf{bottom:202.265103pt;}
.yc1{bottom:202.265119pt;}
.yf6{bottom:202.265252pt;}
.y1f{bottom:206.585797pt;}
.yd9{bottom:208.225101pt;}
.y9e{bottom:209.665789pt;}
.y115{bottom:210.625780pt;}
.y44{bottom:218.625765pt;}
.y64{bottom:218.626582pt;}
.yf5{bottom:218.944430pt;}
.y7b{bottom:218.945096pt;}
.yc0{bottom:218.945112pt;}
.y1e{bottom:223.265791pt;}
.yd8{bottom:225.025094pt;}
.y9d{bottom:226.305783pt;}
.y114{bottom:227.265773pt;}
.y43{bottom:235.265758pt;}
.yf4{bottom:235.584423pt;}
.y7a{bottom:235.585090pt;}
.ybf{bottom:235.585106pt;}
.y63{bottom:235.586575pt;}
.y1d{bottom:239.905784pt;}
.yd7{bottom:241.665087pt;}
.y9c{bottom:242.945776pt;}
.y113{bottom:243.905766pt;}
.y42{bottom:251.905751pt;}
.y62{bottom:252.223098pt;}
.yf3{bottom:252.224416pt;}
.y79{bottom:252.225083pt;}
.ybe{bottom:252.225099pt;}
.y1c{bottom:256.545777pt;}
.yd6{bottom:258.305081pt;}
.y9b{bottom:259.585769pt;}
.y112{bottom:260.545760pt;}
.y41{bottom:268.545745pt;}
.y61{bottom:269.023091pt;}
.yf2{bottom:269.024410pt;}
.y78{bottom:269.025076pt;}
.ybd{bottom:269.025092pt;}
.y1b{bottom:273.185771pt;}
.yd5{bottom:274.945074pt;}
.y9a{bottom:276.225763pt;}
.y111{bottom:277.345753pt;}
.y40{bottom:285.345738pt;}
.y60{bottom:285.663084pt;}
.yf1{bottom:285.664403pt;}
.y77{bottom:285.665070pt;}
.ybc{bottom:285.665086pt;}
.y1a{bottom:289.985764pt;}
.yd4{bottom:291.585067pt;}
.y99{bottom:293.025756pt;}
.y110{bottom:293.985746pt;}
.y3f{bottom:301.985731pt;}
.y5f{bottom:302.303078pt;}
.yf0{bottom:302.304396pt;}
.y76{bottom:302.305063pt;}
.ybb{bottom:302.305079pt;}
.y19{bottom:306.625757pt;}
.yd3{bottom:308.225061pt;}
.y10f{bottom:310.625740pt;}
.y3e{bottom:318.625725pt;}
.y5e{bottom:318.943071pt;}
.yef{bottom:318.944390pt;}
.y75{bottom:318.945056pt;}
.yba{bottom:318.945072pt;}
.y18{bottom:323.265751pt;}
.yd2{bottom:325.025054pt;}
.y98{bottom:325.345743pt;}
.y10e{bottom:327.265733pt;}
.y3d{bottom:335.265718pt;}
.y5d{bottom:335.583064pt;}
.yee{bottom:335.584383pt;}
.y74{bottom:335.585050pt;}
.yb9{bottom:335.585066pt;}
.y17{bottom:339.905744pt;}
.y97{bottom:340.385737pt;}
.yd1{bottom:341.665047pt;}
.y10d{bottom:343.905726pt;}
.y3c{bottom:351.905711pt;}
.y5c{bottom:352.223058pt;}
.yed{bottom:352.224376pt;}
.y73{bottom:352.225043pt;}
.yb8{bottom:352.225059pt;}
.y96{bottom:355.425731pt;}
.y16{bottom:356.545737pt;}
.yd0{bottom:358.305041pt;}
.y10c{bottom:360.705720pt;}
.y3b{bottom:368.705705pt;}
.y5b{bottom:369.023051pt;}
.yec{bottom:369.024370pt;}
.y72{bottom:369.025036pt;}
.yb7{bottom:369.025052pt;}
.y95{bottom:370.465725pt;}
.y15{bottom:373.345731pt;}
.ycf{bottom:374.945034pt;}
.y10b{bottom:377.373180pt;}
.y3a{bottom:385.373165pt;}
.y94{bottom:385.373186pt;}
.y5a{bottom:385.690511pt;}
.yeb{bottom:385.691830pt;}
.y71{bottom:385.692496pt;}
.yb6{bottom:385.692512pt;}
.y14{bottom:390.013191pt;}
.y10a{bottom:394.013173pt;}
.y93{bottom:400.413180pt;}
.y39{bottom:402.013158pt;}
.y59{bottom:402.330504pt;}
.yea{bottom:402.331823pt;}
.y70{bottom:402.333156pt;}
.yb5{bottom:402.333186pt;}
.yce{bottom:402.492490pt;}
.y13{bottom:410.333169pt;}
.y109{bottom:410.653166pt;}
.y92{bottom:415.453174pt;}
.y38{bottom:418.653151pt;}
.y58{bottom:418.970498pt;}
.ye9{bottom:418.971816pt;}
.ycd{bottom:418.972483pt;}
.y6f{bottom:418.973150pt;}
.yb4{bottom:418.973179pt;}
.y108{bottom:427.293160pt;}
.y12{bottom:431.293178pt;}
.y37{bottom:435.293145pt;}
.y57{bottom:435.610491pt;}
.ye8{bottom:435.611810pt;}
.ycc{bottom:435.612476pt;}
.y6e{bottom:435.613143pt;}
.yb3{bottom:435.613172pt;}
.y91{bottom:441.533163pt;}
.y107{bottom:443.933153pt;}
.y11{bottom:448.893171pt;}
.y36{bottom:451.933138pt;}
.y56{bottom:452.410484pt;}
.ye7{bottom:452.411803pt;}
.ycb{bottom:452.412470pt;}
.y6d{bottom:452.413136pt;}
.yb2{bottom:452.413166pt;}
.y90{bottom:458.013157pt;}
.y106{bottom:460.733146pt;}
.y8{bottom:462.172812pt;}
.y35{bottom:468.733131pt;}
.y55{bottom:469.051144pt;}
.ye6{bottom:469.051796pt;}
.yca{bottom:469.052463pt;}
.y6c{bottom:469.053130pt;}
.yb1{bottom:469.053159pt;}
.y8f{bottom:474.653150pt;}
.y105{bottom:477.373140pt;}
.ye5{bottom:485.691790pt;}
.y54{bottom:485.691804pt;}
.yc9{bottom:485.692456pt;}
.y6b{bottom:485.693123pt;}
.y34{bottom:485.693124pt;}
.yb0{bottom:485.693152pt;}
.y8e{bottom:491.293143pt;}
.y104{bottom:494.013133pt;}
.yc8{bottom:502.332450pt;}
.y53{bottom:502.332464pt;}
.y33{bottom:502.333116pt;}
.yaf{bottom:502.333146pt;}
.y8d{bottom:508.093137pt;}
.y103{bottom:510.653126pt;}
.y32{bottom:518.973110pt;}
.y52{bottom:518.973124pt;}
.yae{bottom:518.973139pt;}
.y8c{bottom:524.733130pt;}
.y102{bottom:527.293120pt;}
.y31{bottom:535.773103pt;}
.y51{bottom:535.773118pt;}
.yad{bottom:535.773132pt;}
.y8b{bottom:541.373123pt;}
.y101{bottom:544.093113pt;}
.y30{bottom:552.453096pt;}
.y50{bottom:552.453111pt;}
.yac{bottom:552.453126pt;}
.y8a{bottom:558.053117pt;}
.y100{bottom:560.773106pt;}
.y2f{bottom:569.093090pt;}
.y4f{bottom:569.093104pt;}
.yab{bottom:569.093119pt;}
.y89{bottom:574.693110pt;}
.yff{bottom:577.413100pt;}
.y2e{bottom:585.733083pt;}
.y4e{bottom:585.733098pt;}
.yaa{bottom:585.733112pt;}
.y88{bottom:591.333103pt;}
.yfe{bottom:594.693102pt;}
.y2d{bottom:602.373076pt;}
.ya9{bottom:602.373106pt;}
.y7{bottom:606.533083pt;}
.y87{bottom:608.133097pt;}
.yfd{bottom:614.533094pt;}
.y2c{bottom:619.013070pt;}
.ya8{bottom:619.013099pt;}
.y6{bottom:624.613075pt;}
.y86{bottom:624.773090pt;}
.yfc{bottom:632.773087pt;}
.ya7{bottom:635.813059pt;}
.y2b{bottom:635.813063pt;}
.y5{bottom:642.533068pt;}
.yfb{bottom:651.173080pt;}
.y2a{bottom:652.453056pt;}
.ya6{bottom:652.453067pt;}
.y85{bottom:657.253077pt;}
.y4{bottom:664.453062pt;}
.y29{bottom:669.093050pt;}
.ya5{bottom:669.093075pt;}
.y84{bottom:672.133071pt;}
.y28{bottom:685.733043pt;}
.y83{bottom:687.173065pt;}
.y26{bottom:717.759722pt;}
.y4c{bottom:719.519690pt;}
.y1{bottom:734.559684pt;}
.he{height:19.276027pt;}
.h10{height:19.333200pt;}
.hc{height:32.000058pt;}
.hf{height:35.276020pt;}
.h12{height:35.333194pt;}
.h9{height:35.404744pt;}
.h5{height:35.413390pt;}
.h7{height:36.924362pt;}
.hb{height:39.243734pt;}
.h13{height:39.253318pt;}
.h2{height:39.488072pt;}
.h8{height:43.700124pt;}
.hd{height:43.700182pt;}
.h11{height:43.703388pt;}
.h4{height:43.770950pt;}
.ha{height:44.088871pt;}
.h3{height:51.583979pt;}
.h6{height:139.226250pt;}
.h0{height:793.759867pt;}
.h1{height:794.000000pt;}
.w2{width:367.612812pt;}
.w1{width:559.333333pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880007pt;}
.x4{left:94.592491pt;}
.x6{left:113.472489pt;}
.x9{left:120.992881pt;}
.x8{left:132.351943pt;}
.x3{left:142.263959pt;}
.x2{left:166.143950pt;}
.x7{left:189.026596pt;}
.x1{left:452.933168pt;}
}




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