
    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_a0b9cd68a84ec5ce7da1c341.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ec0b9e162deb88e6db26cd57.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.975586;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_e94a0b3166bac2cc81f8ee4e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.975098;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_413b1ffcf1a4558f72fab288.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_428ebf80e599541ca0f29832.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ee6026a1cb3f66b41976e379.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_942dcad4dbd8573d525880e7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_3fbe091085716d7f40aff014.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7f8cab1aa490c3c93a922f5f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.752441;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_bd8c9eca6425744f22c524cb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c5b493633419e628cda9ca31.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8effda9b1afa31fea92e934c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2468eb768bdd418b04397a72.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.724121;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1123f5ebae07c7c86d1436a2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5b8ac496b9755a8c7abda387.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3f3fb4fda64cea18cb3db4b4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.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);}
.m1{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);}
.m5{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m4{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);}
.v2{vertical-align:-10.799996px;}
.v1{vertical-align:-9.359996px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.009900px;}
.ls2{letter-spacing:0.159199px;}
.lsd{letter-spacing:0.209264px;}
.lsc{letter-spacing:0.378602px;}
.ls7{letter-spacing:0.871440px;}
.ls9{letter-spacing:0.915360px;}
.lse{letter-spacing:14.365667px;}
.ls1{letter-spacing:40.992944px;}
.lsa{letter-spacing:46.785634px;}
.lsb{letter-spacing:46.785832px;}
.ls5{letter-spacing:53.760820px;}
.ls8{letter-spacing:64.047094px;}
.ls4{letter-spacing:156.914866px;}
.ls0{letter-spacing:1816.786806px;}
.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;}
}
.ws9{word-spacing:-35.855986px;}
.ws4{word-spacing:-32.399987px;}
.ws7{word-spacing:-24.749990px;}
.ws2{word-spacing:-18.282233px;}
.ws0{word-spacing:-18.149753px;}
.ws8{word-spacing:-17.279993px;}
.wsa{word-spacing:-16.643258px;}
.ws5{word-spacing:-16.613273px;}
.ws1{word-spacing:-16.433993px;}
.wsb{word-spacing:-15.318596px;}
.ws3{word-spacing:-15.011994px;}
.wsc{word-spacing:-14.939994px;}
.ws6{word-spacing:0.000000px;}
._19{margin-left:-5.757439px;}
._1a{margin-left:-4.671647px;}
._2{margin-left:-2.724600px;}
._1{margin-left:-1.644497px;}
._0{width:1.013430px;}
._7{width:2.410599px;}
._8{width:3.677906px;}
._6{width:5.089523px;}
._4{width:6.560177px;}
._5{width:7.612236px;}
._b{width:8.698244px;}
._a{width:10.133192px;}
._9{width:11.519993px;}
._3{width:12.800622px;}
._e{width:13.928044px;}
._f{width:16.242812px;}
._c{width:18.615972px;}
._15{width:22.660808px;}
._11{width:32.089695px;}
._1d{width:43.263705px;}
._d{width:49.830153px;}
._1f{width:62.120506px;}
._14{width:68.176007px;}
._1c{width:92.233560px;}
._16{width:109.924463px;}
._17{width:150.532051px;}
._18{width:216.053247px;}
._10{width:254.447905px;}
._13{width:275.787286px;}
._1b{width:314.148870px;}
._1e{width:323.482911px;}
._20{width:633.370681px;}
._12{width:1134.701489px;}
.fce{color:rgb(0,112,192);}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fcb{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fca{color:rgb(44,62,80);}
.fc4{color:rgb(192,0,0);}
.fc6{color:rgb(15,17,21);}
.fc7{color:rgb(0,176,80);}
.fc3{color:rgb(31,73,124);}
.fc9{color:rgb(227,108,10);}
.fcd{color:transparent;}
.fc5{color:rgb(0,32,96);}
.fc8{color:rgb(112,48,160);}
.fcc{color:rgb(0,0,255);}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs7{font-size:69.119972px;}
.fs5{font-size:71.999971px;}
.fs4{font-size:84.239966px;}
.fs6{font-size:89.999964px;}
.y0{bottom:0.000000px;}
.y17{bottom:3.598981px;}
.y7e{bottom:4.139140px;}
.y9{bottom:4.320039px;}
.y1b{bottom:4.679079px;}
.ya{bottom:32.520287px;}
.y8{bottom:48.720240px;}
.y6{bottom:53.040279px;}
.y7{bottom:55.380278px;}
.yf7{bottom:107.760257px;}
.y96{bottom:109.560256px;}
.y13{bottom:114.599954px;}
.yf6{bottom:125.040250px;}
.ya3{bottom:126.119950px;}
.y95{bottom:126.660249px;}
.y68{bottom:136.199946px;}
.ycc{bottom:137.640245px;}
.y4{bottom:144.300242px;}
.yf5{bottom:153.479939px;}
.y67{bottom:158.519937px;}
.y94{bottom:161.579935px;}
.yf4{bottom:170.759932px;}
.ycb{bottom:172.919931px;}
.y26{bottom:174.359930px;}
.y66{bottom:181.019928px;}
.y93{bottom:181.199928px;}
.y46{bottom:185.339926px;}
.yca{bottom:190.199924px;}
.yf3{bottom:199.199920px;}
.y45{bottom:202.619919px;}
.y65{bottom:203.339919px;}
.yc9{bottom:207.479917px;}
.y92{bottom:208.199917px;}
.yf2{bottom:216.479913px;}
.y44{bottom:219.719912px;}
.yc8{bottom:224.759910px;}
.y91{bottom:225.479910px;}
.y64{bottom:225.839910px;}
.yf1{bottom:233.759906px;}
.y43{bottom:236.999905px;}
.y42{bottom:254.459898px;}
.y90{bottom:260.579896px;}
.yc7{bottom:261.659895px;}
.yf0{bottom:262.199895px;}
.y63{bottom:265.979894px;}
.yef{bottom:279.479888px;}
.y8f{bottom:280.019888px;}
.y62{bottom:288.479885px;}
.y41{bottom:306.299877px;}
.yc6{bottom:307.199877px;}
.yee{bottom:307.739877px;}
.y61{bottom:310.799876px;}
.y40{bottom:321.599871px;}
.yc5{bottom:324.479870px;}
.yed{bottom:325.019870px;}
.y60{bottom:333.299867px;}
.y8c{bottom:338.699865px;}
.y8e{bottom:341.399863px;}
.yc4{bottom:341.759863px;}
.yec{bottom:342.299863px;}
.y3f{bottom:343.019863px;}
.y25{bottom:345.179862px;}
.y8d{bottom:347.339861px;}
.y3e{bottom:358.679857px;}
.yc3{bottom:359.039856px;}
.y89{bottom:368.399853px;}
.yeb{bottom:370.739852px;}
.y5f{bottom:373.619851px;}
.y3d{bottom:374.159850px;}
.yea{bottom:388.019845px;}
.y3c{bottom:389.639844px;}
.yc2{bottom:393.779842px;}
.y88{bottom:396.119842px;}
.y5e{bottom:402.419839px;}
.yc1{bottom:413.219835px;}
.ye9{bottom:416.459833px;}
.y3b{bottom:422.939831px;}
.y87{bottom:423.839830px;}
.y8b{bottom:426.359829px;}
.y8a{bottom:432.479827px;}
.ye8{bottom:433.739827px;}
.y5d{bottom:436.079826px;}
.y3a{bottom:438.419825px;}
.yc0{bottom:440.579824px;}
.y39{bottom:454.079818px;}
.ybf{bottom:457.859817px;}
.y24{bottom:459.119816px;}
.ye7{bottom:462.179815px;}
.y5c{bottom:468.839812px;}
.y38{bottom:469.559812px;}
.ye6{bottom:479.459808px;}
.y84{bottom:481.079808px;}
.y37{bottom:485.039806px;}
.ybe{bottom:492.599803px;}
.y36{bottom:500.519800px;}
.ye5{bottom:507.719797px;}
.y83{bottom:508.799796px;}
.y5b{bottom:510.599796px;}
.y86{bottom:511.499795px;}
.ybd{bottom:512.039795px;}
.y35{bottom:516.179794px;}
.y85{bottom:517.439793px;}
.y23{bottom:520.859792px;}
.ye4{bottom:524.999790px;}
.y5a{bottom:533.099787px;}
.y22{bottom:536.159786px;}
.ye3{bottom:542.279783px;}
.y82{bottom:546.959781px;}
.y81{bottom:548.219781px;}
.y34{bottom:549.839780px;}
.ybc{bottom:550.379780px;}
.y21{bottom:551.459779px;}
.y59{bottom:557.759777px;}
.y33{bottom:565.319774px;}
.y20{bottom:565.679774px;}
.ybb{bottom:567.659773px;}
.ye2{bottom:570.719772px;}
.y80{bottom:572.339771px;}
.y32{bottom:580.979768px;}
.y58{bottom:582.419767px;}
.yba{bottom:584.759766px;}
.ye1{bottom:587.999765px;}
.y31{bottom:596.459761px;}
.y7f{bottom:596.639761px;}
.yb9{bottom:602.039759px;}
.y57{bottom:607.079757px;}
.y30{bottom:611.939755px;}
.ye0{bottom:616.439753px;}
.yb8{bottom:619.319752px;}
.y7b{bottom:623.099751px;}
.y1f{bottom:626.159750px;}
.y2f{bottom:627.419749px;}
.ydf{bottom:633.719747px;}
.y7d{bottom:646.860600px;}
.y56{bottom:650.459740px;}
.y7c{bottom:650.999740px;}
.y7a{bottom:653.699739px;}
.yb7{bottom:657.479737px;}
.y2e{bottom:660.899736px;}
.yde{bottom:661.979735px;}
.y109{bottom:668.999732px;}
.y55{bottom:672.959731px;}
.yb6{bottom:674.759730px;}
.y2d{bottom:676.379729px;}
.ydd{bottom:679.259728px;}
.y1e{bottom:686.639725px;}
.y2c{bottom:691.859723px;}
.yb5{bottom:692.039723px;}
.y79{bottom:692.219723px;}
.y54{bottom:695.279722px;}
.ydc{bottom:696.539721px;}
.y1d{bottom:702.119719px;}
.y108{bottom:712.559715px;}
.y53{bottom:717.779713px;}
.y78{bottom:718.319713px;}
.ydb{bottom:724.979710px;}
.y2b{bottom:725.519710px;}
.yb4{bottom:730.379708px;}
.y2a{bottom:740.999704px;}
.yda{bottom:742.259703px;}
.y77{bottom:742.619703px;}
.yb3{bottom:747.659701px;}
.y29{bottom:756.659697px;}
.y107{bottom:758.279697px;}
.yd9{bottom:759.539696px;}
.y52{bottom:761.159696px;}
.y1c{bottom:762.779695px;}
.yb2{bottom:764.939694px;}
.y76{bottom:766.739693px;}
.y27{bottom:766.919693px;}
.y28{bottom:772.139691px;}
.y106{bottom:775.559690px;}
.y51{bottom:783.659687px;}
.yd8{bottom:787.979685px;}
.y1a{bottom:797.880600px;}
.y75{bottom:802.199679px;}
.y19{bottom:802.559679px;}
.y105{bottom:803.819678px;}
.yb1{bottom:804.719678px;}
.yd7{bottom:805.259678px;}
.y50{bottom:805.979678px;}
.y104{bottom:821.099672px;}
.yd6{bottom:822.359671px;}
.y74{bottom:827.939669px;}
.y4f{bottom:828.479669px;}
.yb0{bottom:832.439667px;}
.y12{bottom:841.619663px;}
.ya2{bottom:849.539660px;}
.yd5{bottom:850.799660px;}
.y73{bottom:852.059659px;}
.y11{bottom:858.899656px;}
.y103{bottom:866.819653px;}
.yd4{bottom:868.079653px;}
.yaf{bottom:869.339652px;}
.y4e{bottom:871.859651px;}
.y10{bottom:876.179650px;}
.y102{bottom:884.099646px;}
.ya1{bottom:884.819646px;}
.yd3{bottom:885.359646px;}
.yae{bottom:886.439645px;}
.y4d{bottom:894.359642px;}
.yf{bottom:895.439642px;}
.y72{bottom:898.679641px;}
.ya0{bottom:902.099639px;}
.yad{bottom:903.899638px;}
.y101{bottom:912.539635px;}
.ye{bottom:912.719635px;}
.yd2{bottom:913.799634px;}
.y4c{bottom:916.679633px;}
.y9f{bottom:919.379632px;}
.y71{bottom:924.059630px;}
.y100{bottom:929.819628px;}
.yd{bottom:929.999628px;}
.yd1{bottom:931.079628px;}
.y9e{bottom:936.659625px;}
.yac{bottom:939.179624px;}
.y70{bottom:948.359621px;}
.yab{bottom:956.279617px;}
.yff{bottom:958.259617px;}
.yd0{bottom:959.519616px;}
.yc{bottom:959.699616px;}
.y4b{bottom:960.239616px;}
.y9d{bottom:971.399611px;}
.y6f{bottom:972.839611px;}
.yaa{bottom:973.559611px;}
.yfe{bottom:975.539610px;}
.ycf{bottom:976.799609px;}
.y4a{bottom:982.559607px;}
.yb{bottom:983.819606px;}
.ya9{bottom:991.919603px;}
.y9c{bottom:992.459603px;}
.yfd{bottom:992.639603px;}
.y6d{bottom:996.959601px;}
.y6e{bottom:997.139601px;}
.y49{bottom:1005.059598px;}
.ya8{bottom:1009.199596px;}
.y9b{bottom:1018.379593px;}
.yfc{bottom:1021.079592px;}
.y6c{bottom:1021.439591px;}
.yce{bottom:1022.339591px;}
.ya7{bottom:1026.479589px;}
.y18{bottom:1027.199589px;}
.y48{bottom:1027.379589px;}
.yfb{bottom:1038.359585px;}
.y16{bottom:1042.860600px;}
.ya6{bottom:1044.659582px;}
.y9a{bottom:1045.919582px;}
.y6b{bottom:1047.899581px;}
.yfa{bottom:1055.639578px;}
.ycd{bottom:1061.579575px;}
.ya5{bottom:1061.939575px;}
.y99{bottom:1063.199575px;}
.y15{bottom:1065.359574px;}
.y47{bottom:1067.339573px;}
.y6a{bottom:1078.319569px;}
.y98{bottom:1080.479568px;}
.yf9{bottom:1084.079566px;}
.ya4{bottom:1089.299564px;}
.y14{bottom:1093.259563px;}
.y97{bottom:1097.579561px;}
.yf8{bottom:1101.359559px;}
.y69{bottom:1103.519559px;}
.y5{bottom:1154.099538px;}
.y3{bottom:1160.399536px;}
.y2{bottom:1177.679529px;}
.y1{bottom:1194.959522px;}
.hb{height:18.720000px;}
.h1a{height:19.620000px;}
.h5{height:22.140000px;}
.hd{height:22.500000px;}
.h4{height:35.708892px;}
.h10{height:36.624009px;}
.h11{height:37.494126px;}
.hf{height:39.339828px;}
.h6{height:39.830258px;}
.h3{height:39.972640px;}
.h17{height:40.501390px;}
.h9{height:41.493499px;}
.h1{height:41.522679px;}
.h12{height:42.543967px;}
.h16{height:43.506897px;}
.h13{height:43.536076px;}
.h8{height:44.236389px;}
.ha{height:44.893107px;}
.hc{height:46.025138px;}
.h18{height:46.844981px;}
.h19{height:47.992481px;}
.h2{height:49.033105px;}
.he{height:53.296854px;}
.h7{height:57.092321px;}
.h15{height:60.996069px;}
.h14{height:66.621067px;}
.h0{height:1263.000000px;}
.w4{width:4.680000px;}
.w2{width:6.840000px;}
.w5{width:10.080000px;}
.w6{width:22.860000px;}
.w3{width:380.520000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x4{left:57.419977px;}
.x5{left:84.239966px;}
.x1{left:98.999960px;}
.x14{left:107.459957px;}
.x1c{left:109.259956px;}
.x1a{left:115.199954px;}
.x8{left:117.359953px;}
.x17{left:128.339949px;}
.x18{left:130.679948px;}
.x23{left:133.199961px;}
.x19{left:135.179922px;}
.xd{left:144.179942px;}
.x29{left:162.000447px;}
.xa{left:168.659933px;}
.x1d{left:169.919932px;}
.x1b{left:171.899931px;}
.xe{left:174.772734px;}
.x9{left:197.810521px;}
.xb{left:203.039919px;}
.x28{left:241.379903px;}
.x24{left:249.651539px;}
.x1e{left:252.719966px;}
.xf{left:263.339895px;}
.x1f{left:281.159820px;}
.x11{left:292.500000px;}
.x2{left:293.579883px;}
.x22{left:304.379878px;}
.x20{left:308.153877px;}
.x12{left:309.599876px;}
.x25{left:334.251452px;}
.x15{left:364.680000px;}
.x16{left:369.360000px;}
.x6{left:372.419851px;}
.x10{left:387.539845px;}
.x21{left:395.099842px;}
.xc{left:446.219164px;}
.x3{left:663.479735px;}
.x27{left:687.600000px;}
.x26{left:719.100111px;}
.x13{left:729.359738px;}
.x7{left:857.520000px;}
@media print{
.v2{vertical-align:-9.599996pt;}
.v1{vertical-align:-8.319997pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.008800pt;}
.ls2{letter-spacing:0.141511pt;}
.lsd{letter-spacing:0.186013pt;}
.lsc{letter-spacing:0.336535pt;}
.ls7{letter-spacing:0.774613pt;}
.ls9{letter-spacing:0.813653pt;}
.lse{letter-spacing:12.769482pt;}
.ls1{letter-spacing:36.438172pt;}
.lsa{letter-spacing:41.587230pt;}
.lsb{letter-spacing:41.587406pt;}
.ls5{letter-spacing:47.787396pt;}
.ls8{letter-spacing:56.930751pt;}
.ls4{letter-spacing:139.479881pt;}
.ls0{letter-spacing:1614.921605pt;}
.ws9{word-spacing:-31.871987pt;}
.ws4{word-spacing:-28.799988pt;}
.ws7{word-spacing:-21.999991pt;}
.ws2{word-spacing:-16.250873pt;}
.ws0{word-spacing:-16.133114pt;}
.ws8{word-spacing:-15.359994pt;}
.wsa{word-spacing:-14.794007pt;}
.ws5{word-spacing:-14.767354pt;}
.ws1{word-spacing:-14.607994pt;}
.wsb{word-spacing:-13.616529pt;}
.ws3{word-spacing:-13.343995pt;}
.wsc{word-spacing:-13.279995pt;}
.ws6{word-spacing:0.000000pt;}
._19{margin-left:-5.117723pt;}
._1a{margin-left:-4.152575pt;}
._2{margin-left:-2.421867pt;}
._1{margin-left:-1.461775pt;}
._0{width:0.900827pt;}
._7{width:2.142755pt;}
._8{width:3.269249pt;}
._6{width:4.524021pt;}
._4{width:5.831269pt;}
._5{width:6.766432pt;}
._b{width:7.731772pt;}
._a{width:9.007281pt;}
._9{width:10.239993pt;}
._3{width:11.378331pt;}
._e{width:12.380484pt;}
._f{width:14.438055pt;}
._c{width:16.547531pt;}
._15{width:20.142940pt;}
._11{width:28.524173pt;}
._1d{width:38.456626pt;}
._d{width:44.293470pt;}
._1f{width:55.218227pt;}
._14{width:60.600895pt;}
._1c{width:81.985387pt;}
._16{width:97.710634pt;}
._17{width:133.806267pt;}
._18{width:192.047331pt;}
._10{width:226.175915pt;}
._13{width:245.144254pt;}
._1b{width:279.243440pt;}
._1e{width:287.540365pt;}
._20{width:562.996161pt;}
._12{width:1008.623546pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs7{font-size:61.439975pt;}
.fs5{font-size:63.999974pt;}
.fs4{font-size:74.879970pt;}
.fs6{font-size:79.999968pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:3.199095pt;}
.y7e{bottom:3.679235pt;}
.y9{bottom:3.840034pt;}
.y1b{bottom:4.159181pt;}
.ya{bottom:28.906922pt;}
.y8{bottom:43.306880pt;}
.y6{bottom:47.146914pt;}
.y7{bottom:49.226914pt;}
.yf7{bottom:95.786895pt;}
.y96{bottom:97.386894pt;}
.y13{bottom:101.866626pt;}
.yf6{bottom:111.146889pt;}
.ya3{bottom:112.106622pt;}
.y95{bottom:112.586888pt;}
.y68{bottom:121.066618pt;}
.ycc{bottom:122.346884pt;}
.y4{bottom:128.266882pt;}
.yf5{bottom:136.426612pt;}
.y67{bottom:140.906610pt;}
.y94{bottom:143.626609pt;}
.yf4{bottom:151.786606pt;}
.ycb{bottom:153.706605pt;}
.y26{bottom:154.986605pt;}
.y66{bottom:160.906602pt;}
.y93{bottom:161.066602pt;}
.y46{bottom:164.746601pt;}
.yca{bottom:169.066599pt;}
.yf3{bottom:177.066596pt;}
.y45{bottom:180.106595pt;}
.y65{bottom:180.746594pt;}
.yc9{bottom:184.426593pt;}
.y92{bottom:185.066593pt;}
.yf2{bottom:192.426590pt;}
.y44{bottom:195.306589pt;}
.yc8{bottom:199.786587pt;}
.y91{bottom:200.426586pt;}
.y64{bottom:200.746586pt;}
.yf1{bottom:207.786584pt;}
.y43{bottom:210.666582pt;}
.y42{bottom:226.186576pt;}
.y90{bottom:231.626574pt;}
.yc7{bottom:232.586574pt;}
.yf0{bottom:233.066573pt;}
.y63{bottom:236.426572pt;}
.yef{bottom:248.426567pt;}
.y8f{bottom:248.906567pt;}
.y62{bottom:256.426564pt;}
.y41{bottom:272.266558pt;}
.yc6{bottom:273.066557pt;}
.yee{bottom:273.546557pt;}
.y61{bottom:276.266556pt;}
.y40{bottom:285.866552pt;}
.yc5{bottom:288.426551pt;}
.yed{bottom:288.906551pt;}
.y60{bottom:296.266548pt;}
.y8c{bottom:301.066546pt;}
.y8e{bottom:303.466545pt;}
.yc4{bottom:303.786545pt;}
.yec{bottom:304.266545pt;}
.y3f{bottom:304.906545pt;}
.y25{bottom:306.826544pt;}
.y8d{bottom:308.746543pt;}
.y3e{bottom:318.826539pt;}
.yc3{bottom:319.146539pt;}
.y89{bottom:327.466536pt;}
.yeb{bottom:329.546535pt;}
.y5f{bottom:332.106534pt;}
.y3d{bottom:332.586534pt;}
.yea{bottom:344.906529pt;}
.y3c{bottom:346.346528pt;}
.yc2{bottom:350.026527pt;}
.y88{bottom:352.106526pt;}
.y5e{bottom:357.706524pt;}
.yc1{bottom:367.306520pt;}
.ye9{bottom:370.186519pt;}
.y3b{bottom:375.946516pt;}
.y87{bottom:376.746516pt;}
.y8b{bottom:378.986515pt;}
.y8a{bottom:384.426513pt;}
.ye8{bottom:385.546512pt;}
.y5d{bottom:387.626512pt;}
.y3a{bottom:389.706511pt;}
.yc0{bottom:391.626510pt;}
.y39{bottom:403.626505pt;}
.ybf{bottom:406.986504pt;}
.y24{bottom:408.106503pt;}
.ye7{bottom:410.826502pt;}
.y5c{bottom:416.746500pt;}
.y38{bottom:417.386500pt;}
.ye6{bottom:426.186496pt;}
.y84{bottom:427.626496pt;}
.y37{bottom:431.146494pt;}
.ybe{bottom:437.866492pt;}
.y36{bottom:444.906489pt;}
.ye5{bottom:451.306486pt;}
.y83{bottom:452.266486pt;}
.y5b{bottom:453.866485pt;}
.y86{bottom:454.666485pt;}
.ybd{bottom:455.146485pt;}
.y35{bottom:458.826483pt;}
.y85{bottom:459.946483pt;}
.y23{bottom:462.986481pt;}
.ye4{bottom:466.666480pt;}
.y5a{bottom:473.866477pt;}
.y22{bottom:476.586476pt;}
.ye3{bottom:482.026474pt;}
.y82{bottom:486.186472pt;}
.y81{bottom:487.306472pt;}
.y34{bottom:488.746471pt;}
.ybc{bottom:489.226471pt;}
.y21{bottom:490.186471pt;}
.y59{bottom:495.786468pt;}
.y33{bottom:502.506466pt;}
.y20{bottom:502.826466pt;}
.ybb{bottom:504.586465pt;}
.ye2{bottom:507.306464pt;}
.y80{bottom:508.746463pt;}
.y32{bottom:516.426460pt;}
.y58{bottom:517.706460pt;}
.yba{bottom:519.786459pt;}
.ye1{bottom:522.666458pt;}
.y31{bottom:530.186455pt;}
.y7f{bottom:530.346455pt;}
.yb9{bottom:535.146453pt;}
.y57{bottom:539.626451pt;}
.y30{bottom:543.946449pt;}
.ye0{bottom:547.946447pt;}
.yb8{bottom:550.506446pt;}
.y7b{bottom:553.866445pt;}
.y1f{bottom:556.586444pt;}
.y2f{bottom:557.706444pt;}
.ydf{bottom:563.306441pt;}
.y7d{bottom:574.987200pt;}
.y56{bottom:578.186435pt;}
.y7c{bottom:578.666435pt;}
.y7a{bottom:581.066434pt;}
.yb7{bottom:584.426433pt;}
.y2e{bottom:587.466432pt;}
.yde{bottom:588.426431pt;}
.y109{bottom:594.666429pt;}
.y55{bottom:598.186427pt;}
.yb6{bottom:599.786427pt;}
.y2d{bottom:601.226426pt;}
.ydd{bottom:603.786425pt;}
.y1e{bottom:610.346423pt;}
.y2c{bottom:614.986421pt;}
.yb5{bottom:615.146421pt;}
.y79{bottom:615.306421pt;}
.y54{bottom:618.026419pt;}
.ydc{bottom:619.146419pt;}
.y1d{bottom:624.106417pt;}
.y108{bottom:633.386413pt;}
.y53{bottom:638.026411pt;}
.y78{bottom:638.506411pt;}
.ydb{bottom:644.426409pt;}
.y2b{bottom:644.906409pt;}
.yb4{bottom:649.226407pt;}
.y2a{bottom:658.666403pt;}
.yda{bottom:659.786403pt;}
.y77{bottom:660.106403pt;}
.yb3{bottom:664.586401pt;}
.y29{bottom:672.586398pt;}
.y107{bottom:674.026397pt;}
.yd9{bottom:675.146397pt;}
.y52{bottom:676.586396pt;}
.y1c{bottom:678.026395pt;}
.yb2{bottom:679.946395pt;}
.y76{bottom:681.546394pt;}
.y27{bottom:681.706394pt;}
.y28{bottom:686.346392pt;}
.y106{bottom:689.386391pt;}
.y51{bottom:696.586388pt;}
.yd8{bottom:700.426386pt;}
.y1a{bottom:709.227200pt;}
.y75{bottom:713.066381pt;}
.y19{bottom:713.386381pt;}
.y105{bottom:714.506381pt;}
.yb1{bottom:715.306381pt;}
.yd7{bottom:715.786380pt;}
.y50{bottom:716.426380pt;}
.y104{bottom:729.866375pt;}
.yd6{bottom:730.986374pt;}
.y74{bottom:735.946372pt;}
.y4f{bottom:736.426372pt;}
.yb0{bottom:739.946371pt;}
.y12{bottom:748.106367pt;}
.ya2{bottom:755.146365pt;}
.yd5{bottom:756.266364pt;}
.y73{bottom:757.386364pt;}
.y11{bottom:763.466361pt;}
.y103{bottom:770.506358pt;}
.yd4{bottom:771.626358pt;}
.yaf{bottom:772.746358pt;}
.y4e{bottom:774.986357pt;}
.y10{bottom:778.826355pt;}
.y102{bottom:785.866352pt;}
.ya1{bottom:786.506352pt;}
.yd3{bottom:786.986352pt;}
.yae{bottom:787.946351pt;}
.y4d{bottom:794.986349pt;}
.yf{bottom:795.946348pt;}
.y72{bottom:798.826347pt;}
.ya0{bottom:801.866346pt;}
.yad{bottom:803.466345pt;}
.y101{bottom:811.146342pt;}
.ye{bottom:811.306342pt;}
.yd2{bottom:812.266342pt;}
.y4c{bottom:814.826341pt;}
.y9f{bottom:817.226340pt;}
.y71{bottom:821.386338pt;}
.y100{bottom:826.506336pt;}
.yd{bottom:826.666336pt;}
.yd1{bottom:827.626336pt;}
.y9e{bottom:832.586334pt;}
.yac{bottom:834.826333pt;}
.y70{bottom:842.986329pt;}
.yab{bottom:850.026327pt;}
.yff{bottom:851.786326pt;}
.yd0{bottom:852.906326pt;}
.yc{bottom:853.066325pt;}
.y4b{bottom:853.546325pt;}
.y9d{bottom:863.466321pt;}
.y6f{bottom:864.746321pt;}
.yaa{bottom:865.386321pt;}
.yfe{bottom:867.146320pt;}
.ycf{bottom:868.266319pt;}
.y4a{bottom:873.386317pt;}
.yb{bottom:874.506317pt;}
.ya9{bottom:881.706314pt;}
.y9c{bottom:882.186314pt;}
.yfd{bottom:882.346314pt;}
.y6d{bottom:886.186312pt;}
.y6e{bottom:886.346312pt;}
.y49{bottom:893.386309pt;}
.ya8{bottom:897.066308pt;}
.y9b{bottom:905.226305pt;}
.yfc{bottom:907.626304pt;}
.y6c{bottom:907.946303pt;}
.yce{bottom:908.746303pt;}
.ya7{bottom:912.426302pt;}
.y18{bottom:913.066301pt;}
.y48{bottom:913.226301pt;}
.yfb{bottom:922.986297pt;}
.y16{bottom:926.987200pt;}
.ya6{bottom:928.586295pt;}
.y9a{bottom:929.706295pt;}
.y6b{bottom:931.466294pt;}
.yfa{bottom:938.346291pt;}
.ycd{bottom:943.626289pt;}
.ya5{bottom:943.946289pt;}
.y99{bottom:945.066289pt;}
.y15{bottom:946.986288pt;}
.y47{bottom:948.746287pt;}
.y6a{bottom:958.506283pt;}
.y98{bottom:960.426282pt;}
.yf9{bottom:963.626281pt;}
.ya4{bottom:968.266279pt;}
.y14{bottom:971.786278pt;}
.y97{bottom:975.626276pt;}
.yf8{bottom:978.986275pt;}
.y69{bottom:980.906274pt;}
.y5{bottom:1025.866256pt;}
.y3{bottom:1031.466254pt;}
.y2{bottom:1046.826248pt;}
.y1{bottom:1062.186242pt;}
.hb{height:16.640000pt;}
.h1a{height:17.440000pt;}
.h5{height:19.680000pt;}
.hd{height:20.000000pt;}
.h4{height:31.741237pt;}
.h10{height:32.554674pt;}
.h11{height:33.328112pt;}
.hf{height:34.968736pt;}
.h6{height:35.404673pt;}
.h3{height:35.531236pt;}
.h17{height:36.001236pt;}
.h9{height:36.883110pt;}
.h1{height:36.909048pt;}
.h12{height:37.816860pt;}
.h16{height:38.672797pt;}
.h13{height:38.698735pt;}
.h8{height:39.321234pt;}
.ha{height:39.904984pt;}
.hc{height:40.911234pt;}
.h18{height:41.639983pt;}
.h19{height:42.659983pt;}
.h2{height:43.584983pt;}
.he{height:47.374981pt;}
.h7{height:50.748730pt;}
.h15{height:54.218728pt;}
.h14{height:59.218726pt;}
.h0{height:1122.666667pt;}
.w4{width:4.160000pt;}
.w2{width:6.080000pt;}
.w5{width:8.960000pt;}
.w6{width:20.320000pt;}
.w3{width:338.240000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x4{left:51.039980pt;}
.x5{left:74.879970pt;}
.x1{left:87.999965pt;}
.x14{left:95.519962pt;}
.x1c{left:97.119961pt;}
.x1a{left:102.399959pt;}
.x8{left:104.319958pt;}
.x17{left:114.079954pt;}
.x18{left:116.159954pt;}
.x23{left:118.399966pt;}
.x19{left:120.159930pt;}
.xd{left:128.159949pt;}
.x29{left:144.000397pt;}
.xa{left:149.919940pt;}
.x1d{left:151.039940pt;}
.x1b{left:152.799939pt;}
.xe{left:155.353542pt;}
.x9{left:175.831574pt;}
.xb{left:180.479928pt;}
.x28{left:214.559914pt;}
.x24{left:221.912479pt;}
.x1e{left:224.639970pt;}
.xf{left:234.079906pt;}
.x1f{left:249.919840pt;}
.x11{left:260.000000pt;}
.x2{left:260.959896pt;}
.x22{left:270.559892pt;}
.x20{left:273.914557pt;}
.x12{left:275.199890pt;}
.x25{left:297.112402pt;}
.x15{left:324.160000pt;}
.x16{left:328.320000pt;}
.x6{left:331.039868pt;}
.x10{left:344.479862pt;}
.x21{left:351.199860pt;}
.xc{left:396.639257pt;}
.x3{left:589.759764pt;}
.x27{left:611.200000pt;}
.x26{left:639.200098pt;}
.x13{left:648.319767pt;}
.x7{left:762.240000pt;}
}




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