
    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_7b7b0f0c1df4fa445e1812d1.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_bac210251cc9d63b4572d96d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.692871;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_19a4a5643aecd0ebdb0590be.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b60683fcc023547e1aa1fe93.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986816;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_4d18498b41645f241bb55d38.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_27cd926b77602ddd929219b3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.856934;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_bd8c9eca6425744f22c524cb.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cfd56d4888452b009556af99.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_eb3e78b37b5f4a1ef0fa9cc1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b6bbe21dcc6e6b37a1225c83.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.986816;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_5b8ac496b9755a8c7abda387.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_590dc921e959b8e4506384ed.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.094727;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_8f4b87e1613f55eb4478ab0d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.959961;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_3f3fb4fda64cea18cb3db4b4.woff2')format("woff");}.ffe{font-family:ffe;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.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);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.010620px;}
.ls6{letter-spacing:0.018600px;}
.ls13{letter-spacing:0.094934px;}
.ls12{letter-spacing:0.094978px;}
.lsb{letter-spacing:0.188889px;}
.ls0{letter-spacing:0.188921px;}
.ls9{letter-spacing:0.188962px;}
.ls1{letter-spacing:0.188987px;}
.ls8{letter-spacing:0.189002px;}
.lsc{letter-spacing:0.189164px;}
.lsa{letter-spacing:0.189202px;}
.ls7{letter-spacing:0.189310px;}
.ls3{letter-spacing:0.297773px;}
.lsd{letter-spacing:5.946178px;}
.ls11{letter-spacing:33.295427px;}
.ls5{letter-spacing:55.770483px;}
.ls4{letter-spacing:196.253311px;}
.lsf{letter-spacing:303.085199px;}
.ls10{letter-spacing:929.126748px;}
.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;}
}
.ws8{word-spacing:-35.855986px;}
.ws3{word-spacing:-32.418587px;}
.ws9{word-spacing:-19.871992px;}
.wsa{word-spacing:-19.822926px;}
.wsb{word-spacing:-19.799992px;}
.ws7{word-spacing:-19.727992px;}
.ws6{word-spacing:-19.077112px;}
.ws4{word-spacing:-16.613273px;}
.ws1{word-spacing:-16.271993px;}
.ws2{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.939994px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-8.591225px;}
._6{margin-left:-5.580015px;}
._2{margin-left:-4.242803px;}
._7{margin-left:-3.110604px;}
._3{margin-left:-1.570800px;}
._0{width:1.013430px;}
._15{width:2.039087px;}
._d{width:3.839954px;}
._c{width:5.156546px;}
._b{width:7.057076px;}
._a{width:8.217988px;}
._1a{width:9.251807px;}
._e{width:10.328240px;}
._12{width:12.002497px;}
._11{width:13.181106px;}
._16{width:14.402269px;}
._18{width:15.496419px;}
._13{width:16.503723px;}
._14{width:17.643909px;}
._17{width:18.646328px;}
._10{width:20.355571px;}
._f{width:21.692092px;}
._2b{width:22.731279px;}
._29{width:23.845766px;}
._28{width:24.889571px;}
._27{width:26.558306px;}
._9{width:27.715192px;}
._8{width:29.106791px;}
._22{width:30.889310px;}
._1b{width:36.354224px;}
._19{width:37.414700px;}
._1e{width:39.451965px;}
._23{width:42.426519px;}
._2a{width:43.988313px;}
._20{width:48.401897px;}
._1f{width:49.860786px;}
._25{width:53.002349px;}
._26{width:54.061522px;}
._2c{width:55.220077px;}
._1d{width:72.355411px;}
._4{width:87.469172px;}
._24{width:113.453506px;}
._1c{width:329.343694px;}
._21{width:373.511270px;}
._5{width:2802.750103px;}
.fce{color:rgb(0,112,192);}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fcc{color:rgb(51,51,51);}
.fc8{color:rgb(0,176,80);}
.fc3{color:rgb(14,40,65);}
.fc4{color:rgb(192,0,0);}
.fc6{color:rgb(15,17,21);}
.fcd{color:transparent;}
.fc5{color:rgb(0,32,96);}
.fc7{color:rgb(0,0,255);}
.fc9{color:rgb(112,48,160);}
.fca{color:rgb(58,123,34);}
.fc1{color:rgb(0,0,0);}
.fcb{color:rgb(44,62,80);}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs4{font-size:69.119972px;}
.fs1{font-size:71.999971px;}
.y6{bottom:-10.979990px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y96{bottom:3.599228px;}
.y9d{bottom:3.599251px;}
.ya4{bottom:3.599285px;}
.y16{bottom:3.958966px;}
.y80{bottom:4.139102px;}
.y89{bottom:4.139181px;}
.y90{bottom:4.139227px;}
.y6e{bottom:4.318978px;}
.ya0{bottom:4.319306px;}
.y70{bottom:4.498966px;}
.y74{bottom:4.498980px;}
.y94{bottom:4.499228px;}
.y9b{bottom:4.499251px;}
.ya2{bottom:4.499285px;}
.ya{bottom:4.860038px;}
.yb{bottom:33.240287px;}
.y9{bottom:49.620240px;}
.y8{bottom:54.480278px;}
.yb6{bottom:129.720248px;}
.yd4{bottom:129.900248px;}
.y42{bottom:137.460245px;}
.y6a{bottom:140.520244px;}
.yb5{bottom:149.160240px;}
.yd3{bottom:153.839938px;}
.yed{bottom:157.079937px;}
.yd2{bottom:177.779929px;}
.y114{bottom:181.379927px;}
.y69{bottom:182.459927px;}
.y47{bottom:187.499925px;}
.ya5{bottom:192.359923px;}
.yd1{bottom:201.719919px;}
.y113{bottom:205.319918px;}
.y46{bottom:207.479917px;}
.yec{bottom:218.279913px;}
.y68{bottom:224.399910px;}
.yd0{bottom:225.659910px;}
.y45{bottom:227.459909px;}
.y112{bottom:229.259908px;}
.y9f{bottom:230.520600px;}
.yeb{bottom:242.219903px;}
.y44{bottom:247.439901px;}
.y67{bottom:248.339901px;}
.y111{bottom:253.199899px;}
.y9e{bottom:262.919895px;}
.yea{bottom:266.159894px;}
.ycf{bottom:267.599893px;}
.y43{bottom:268.319893px;}
.y66{bottom:272.279891px;}
.y110{bottom:277.139889px;}
.ya1{bottom:282.180600px;}
.ya3{bottom:283.080600px;}
.y23{bottom:284.519886px;}
.ye9{bottom:290.099884px;}
.y99{bottom:291.899883px;}
.y65{bottom:296.219882px;}
.y10f{bottom:301.079880px;}
.yce{bottom:309.539876px;}
.ye8{bottom:314.039874px;}
.y41{bottom:315.659874px;}
.y98{bottom:319.979872px;}
.y10e{bottom:325.019870px;}
.y40{bottom:332.939867px;}
.ycd{bottom:333.479867px;}
.y64{bottom:338.159865px;}
.y97{bottom:348.059861px;}
.y10d{bottom:348.959860px;}
.ye7{bottom:355.979858px;}
.y3f{bottom:359.219856px;}
.y9a{bottom:367.320600px;}
.y9c{bottom:368.220600px;}
.y10c{bottom:372.899851px;}
.ycc{bottom:375.419850px;}
.y3e{bottom:376.319849px;}
.y92{bottom:377.039849px;}
.y63{bottom:380.099848px;}
.y3d{bottom:393.599843px;}
.y10b{bottom:396.839841px;}
.y91{bottom:405.119838px;}
.ye6{bottom:405.479838px;}
.y3c{bottom:410.879836px;}
.ycb{bottom:417.359833px;}
.y10a{bottom:420.779832px;}
.y93{bottom:424.380600px;}
.y95{bottom:425.280600px;}
.y3b{bottom:428.159829px;}
.ye5{bottom:429.419828px;}
.y62{bottom:429.599828px;}
.y8f{bottom:429.600600px;}
.y109{bottom:444.719822px;}
.ye4{bottom:453.359819px;}
.y61{bottom:453.539819px;}
.y3a{bottom:454.439818px;}
.y22{bottom:455.339818px;}
.yca{bottom:459.299816px;}
.y8e{bottom:461.819815px;}
.y108{bottom:468.659813px;}
.y39{bottom:471.719811px;}
.ye3{bottom:477.299809px;}
.y60{bottom:477.479809px;}
.yc9{bottom:483.239807px;}
.y38{bottom:488.819804px;}
.y8d{bottom:490.079804px;}
.y8b{bottom:490.259804px;}
.y107{bottom:492.599803px;}
.ye2{bottom:501.239800px;}
.y5f{bottom:501.419799px;}
.y37{bottom:506.099798px;}
.y106{bottom:516.539793px;}
.y8c{bottom:518.159793px;}
.y8a{bottom:518.339793px;}
.y36{bottom:523.379791px;}
.yc8{bottom:525.179790px;}
.y5e{bottom:525.359790px;}
.y105{bottom:540.479784px;}
.y35{bottom:540.659784px;}
.y88{bottom:542.820600px;}
.ye1{bottom:543.179783px;}
.y34{bottom:557.939777px;}
.y21{bottom:560.459776px;}
.y104{bottom:564.419774px;}
.yc7{bottom:567.119773px;}
.y5d{bottom:567.299773px;}
.y87{bottom:575.219770px;}
.y33{bottom:584.219766px;}
.y103{bottom:588.359765px;}
.yc6{bottom:591.059764px;}
.y5c{bottom:591.239764px;}
.y32{bottom:601.319759px;}
.y86{bottom:603.299759px;}
.y102{bottom:612.299755px;}
.y20{bottom:613.199755px;}
.yc5{bottom:614.999754px;}
.y5b{bottom:615.179754px;}
.y31{bottom:618.599753px;}
.y1f{bottom:628.499749px;}
.y122{bottom:631.199748px;}
.y85{bottom:631.379747px;}
.y30{bottom:635.879746px;}
.y101{bottom:636.239746px;}
.yc4{bottom:638.939744px;}
.y5a{bottom:639.119744px;}
.y1e{bottom:643.799742px;}
.y121{bottom:652.799739px;}
.y2f{bottom:653.159739px;}
.y1d{bottom:657.839737px;}
.y84{bottom:659.459736px;}
.y100{bottom:660.179736px;}
.ye0{bottom:662.879735px;}
.y59{bottom:663.059735px;}
.y2e{bottom:670.439732px;}
.y120{bottom:676.739729px;}
.yc3{bottom:680.879728px;}
.yff{bottom:684.119726px;}
.ydf{bottom:686.819725px;}
.y58{bottom:686.999725px;}
.y2d{bottom:687.719725px;}
.y82{bottom:687.899725px;}
.y11f{bottom:700.679720px;}
.yfe{bottom:708.059717px;}
.y1c{bottom:709.319716px;}
.y2c{bottom:713.819714px;}
.y83{bottom:715.799714px;}
.y81{bottom:715.979714px;}
.yb4{bottom:718.499713px;}
.yc2{bottom:722.819711px;}
.y11e{bottom:724.619710px;}
.yde{bottom:728.759708px;}
.y57{bottom:728.939708px;}
.y2b{bottom:731.099708px;}
.yfd{bottom:731.999707px;}
.y7f{bottom:740.460600px;}
.yb3{bottom:742.439703px;}
.y2a{bottom:748.379701px;}
.y11d{bottom:748.559701px;}
.ydd{bottom:752.699699px;}
.y56{bottom:752.879699px;}
.yfc{bottom:755.939698px;}
.y1b{bottom:760.799696px;}
.yb2{bottom:766.379693px;}
.yc1{bottom:772.319691px;}
.y11c{bottom:772.499691px;}
.y7e{bottom:772.859691px;}
.y29{bottom:774.659690px;}
.y1a{bottom:776.459689px;}
.ydc{bottom:776.639689px;}
.y55{bottom:776.819689px;}
.yfb{bottom:779.879688px;}
.y28{bottom:791.939683px;}
.yc0{bottom:796.259681px;}
.y11b{bottom:796.439681px;}
.y54{bottom:800.759680px;}
.y7d{bottom:800.939680px;}
.yfa{bottom:803.819678px;}
.yb1{bottom:808.319677px;}
.y27{bottom:809.039676px;}
.ydb{bottom:818.579673px;}
.ybf{bottom:820.199672px;}
.y11a{bottom:820.379672px;}
.y53{bottom:824.699670px;}
.y26{bottom:826.319669px;}
.yf9{bottom:827.759669px;}
.y7c{bottom:829.019668px;}
.y19{bottom:837.299665px;}
.y24{bottom:840.539664px;}
.yda{bottom:842.519663px;}
.y25{bottom:843.599663px;}
.ybe{bottom:844.139662px;}
.y119{bottom:844.319662px;}
.y52{bottom:848.639661px;}
.yb0{bottom:850.259660px;}
.yf8{bottom:851.699659px;}
.y7b{bottom:857.099657px;}
.yd9{bottom:866.459653px;}
.ybd{bottom:868.079653px;}
.y118{bottom:868.259653px;}
.y51{bottom:872.579651px;}
.yaf{bottom:874.199650px;}
.yf7{bottom:875.639650px;}
.y18{bottom:876.179650px;}
.y7a{bottom:885.359646px;}
.yd8{bottom:890.399644px;}
.ybc{bottom:892.019643px;}
.y117{bottom:892.199643px;}
.y50{bottom:896.519641px;}
.yae{bottom:898.139641px;}
.yf6{bottom:899.579640px;}
.y12{bottom:903.179639px;}
.y79{bottom:913.439635px;}
.y116{bottom:916.139634px;}
.y11{bottom:920.639632px;}
.yad{bottom:922.079631px;}
.yf5{bottom:923.519631px;}
.yd7{bottom:932.339627px;}
.ybb{bottom:933.959626px;}
.y10{bottom:937.919625px;}
.y4f{bottom:938.459625px;}
.y115{bottom:940.079624px;}
.y78{bottom:941.519623px;}
.y76{bottom:941.699623px;}
.yf4{bottom:947.459621px;}
.y4e{bottom:962.399615px;}
.yac{bottom:964.019614px;}
.yf{bottom:964.199614px;}
.y77{bottom:969.599612px;}
.y75{bottom:969.779612px;}
.yf3{bottom:971.399611px;}
.yba{bottom:975.899610px;}
.ye{bottom:981.479607px;}
.yd6{bottom:981.839607px;}
.y4d{bottom:986.339605px;}
.yab{bottom:987.959605px;}
.yf2{bottom:995.339602px;}
.y72{bottom:998.759600px;}
.yb9{bottom:999.839600px;}
.yd{bottom:1009.019596px;}
.y4c{bottom:1010.279596px;}
.yaa{bottom:1011.899595px;}
.yf1{bottom:1019.279592px;}
.yb8{bottom:1023.779590px;}
.y71{bottom:1026.839589px;}
.yc{bottom:1032.959587px;}
.y4b{bottom:1034.219586px;}
.ya9{bottom:1035.839586px;}
.yf0{bottom:1043.219583px;}
.y73{bottom:1046.100600px;}
.y6d{bottom:1051.320600px;}
.y4a{bottom:1058.159577px;}
.ya8{bottom:1059.779576px;}
.y17{bottom:1061.759575px;}
.yb7{bottom:1065.719574px;}
.yef{bottom:1067.159573px;}
.y6f{bottom:1079.400600px;}
.y15{bottom:1081.920600px;}
.y49{bottom:1082.099567px;}
.ya7{bottom:1083.719567px;}
.y6c{bottom:1083.899566px;}
.yd5{bottom:1089.659564px;}
.yee{bottom:1091.099564px;}
.ya6{bottom:1107.659557px;}
.y14{bottom:1109.819556px;}
.y48{bottom:1124.039550px;}
.y6b{bottom:1131.599547px;}
.y13{bottom:1133.759546px;}
.y4{bottom:1155.899538px;}
.y7{bottom:1185.959526px;}
.y3{bottom:1189.019524px;}
.y2{bottom:1206.299517px;}
.y1{bottom:1223.579511px;}
.h1a{height:3.600000px;}
.h16{height:4.500000px;}
.h3{height:6.120000px;}
.h9{height:20.520000px;}
.h5{height:21.960000px;}
.h19{height:22.680000px;}
.h13{height:22.860000px;}
.h15{height:23.040000px;}
.h18{height:25.020000px;}
.hb{height:32.976549px;}
.hd{height:36.624009px;}
.h4{height:36.703110px;}
.he{height:36.914048px;}
.hc{height:39.339828px;}
.h6{height:40.851546px;}
.h1{height:41.522679px;}
.h10{height:43.536076px;}
.h17{height:44.819982px;}
.hf{height:44.936701px;}
.h8{height:48.796855px;}
.h2{height:49.218730px;}
.ha{height:50.027324px;}
.h14{height:51.974979px;}
.h7{height:54.140603px;}
.h12{height:59.399976px;}
.h11{height:61.874975px;}
.h0{height:1263.000000px;}
.w3{width:5.400000px;}
.wb{width:7.560000px;}
.w7{width:7.920000px;}
.w6{width:9.540000px;}
.w2{width:10.620000px;}
.w5{width:53.820000px;}
.w8{width:78.300000px;}
.wc{width:79.920000px;}
.w9{width:183.240000px;}
.wa{width:275.400000px;}
.w4{width:394.740000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x4{left:58.499977px;}
.x11{left:68.759972px;}
.x17{left:70.559972px;}
.x15{left:76.499969px;}
.x13{left:92.339963px;}
.x12{left:94.499962px;}
.x14{left:96.479994px;}
.x1{left:107.999957px;}
.x8{left:114.659954px;}
.x25{left:116.459953px;}
.x1c{left:124.919950px;}
.x7{left:130.859948px;}
.x16{left:133.199947px;}
.x26{left:134.999946px;}
.xa{left:138.239945px;}
.x6{left:143.999942px;}
.x27{left:161.999935px;}
.x24{left:204.840000px;}
.x9{left:214.199914px;}
.x29{left:232.199907px;}
.x18{left:242.459914px;}
.xb{left:246.779901px;}
.xc{left:249.299900px;}
.x19{left:260.459896px;}
.x1b{left:266.039894px;}
.x1a{left:269.459892px;}
.xe{left:280.620000px;}
.xf{left:299.159880px;}
.x2{left:302.579879px;}
.x1d{left:334.080000px;}
.x1e{left:365.399854px;}
.xd{left:384.479846px;}
.x21{left:443.700000px;}
.x22{left:548.640000px;}
.x23{left:640.800000px;}
.x3{left:654.839738px;}
.x20{left:710.099716px;}
.x10{left:731.699755px;}
.x1f{left:767.880000px;}
.x2a{left:784.979686px;}
.x28{left:809.999676px;}
.x5{left:816.120000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.009440pt;}
.ls6{letter-spacing:0.016533pt;}
.ls13{letter-spacing:0.084386pt;}
.ls12{letter-spacing:0.084425pt;}
.lsb{letter-spacing:0.167901pt;}
.ls0{letter-spacing:0.167930pt;}
.ls9{letter-spacing:0.167966pt;}
.ls1{letter-spacing:0.167989pt;}
.ls8{letter-spacing:0.168002pt;}
.lsc{letter-spacing:0.168146pt;}
.lsa{letter-spacing:0.168179pt;}
.ls7{letter-spacing:0.168275pt;}
.ls3{letter-spacing:0.264687pt;}
.lsd{letter-spacing:5.285491pt;}
.ls11{letter-spacing:29.595935pt;}
.ls5{letter-spacing:49.573762pt;}
.ls4{letter-spacing:174.447388pt;}
.lsf{letter-spacing:269.409066pt;}
.ls10{letter-spacing:825.890443pt;}
.ws8{word-spacing:-31.871987pt;}
.ws3{word-spacing:-28.816521pt;}
.ws9{word-spacing:-17.663993pt;}
.wsa{word-spacing:-17.620379pt;}
.wsb{word-spacing:-17.599993pt;}
.ws7{word-spacing:-17.535993pt;}
.ws6{word-spacing:-16.957433pt;}
.ws4{word-spacing:-14.767354pt;}
.ws1{word-spacing:-14.463994pt;}
.ws2{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.279995pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-7.636645pt;}
._6{margin-left:-4.960014pt;}
._2{margin-left:-3.771380pt;}
._7{margin-left:-2.764982pt;}
._3{margin-left:-1.396267pt;}
._0{width:0.900827pt;}
._15{width:1.812522pt;}
._d{width:3.413292pt;}
._c{width:4.583597pt;}
._b{width:6.272956pt;}
._a{width:7.304879pt;}
._1a{width:8.223828pt;}
._e{width:9.180657pt;}
._12{width:10.668886pt;}
._11{width:11.716539pt;}
._16{width:12.802017pt;}
._18{width:13.774595pt;}
._13{width:14.669976pt;}
._14{width:15.683475pt;}
._17{width:16.574514pt;}
._10{width:18.093841pt;}
._f{width:19.281860pt;}
._2b{width:20.205581pt;}
._29{width:21.196237pt;}
._28{width:22.124063pt;}
._27{width:23.607383pt;}
._9{width:24.635726pt;}
._8{width:25.872703pt;}
._22{width:27.457164pt;}
._1b{width:32.314866pt;}
._19{width:33.257511pt;}
._1e{width:35.068413pt;}
._23{width:37.712461pt;}
._2a{width:39.100723pt;}
._20{width:43.023908pt;}
._1f{width:44.320699pt;}
._25{width:47.113199pt;}
._26{width:48.054686pt;}
._2c{width:49.084513pt;}
._1d{width:64.315921pt;}
._4{width:77.750375pt;}
._24{width:100.847561pt;}
._1c{width:292.749950pt;}
._21{width:332.010018pt;}
._5{width:2491.333425pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs4{font-size:61.439975pt;}
.fs1{font-size:63.999974pt;}
.y6{bottom:-9.759991pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y96{bottom:3.199314pt;}
.y9d{bottom:3.199334pt;}
.ya4{bottom:3.199365pt;}
.y16{bottom:3.519081pt;}
.y80{bottom:3.679202pt;}
.y89{bottom:3.679272pt;}
.y90{bottom:3.679312pt;}
.y6e{bottom:3.839091pt;}
.ya0{bottom:3.839383pt;}
.y70{bottom:3.999081pt;}
.y74{bottom:3.999093pt;}
.y94{bottom:3.999314pt;}
.y9b{bottom:3.999334pt;}
.ya2{bottom:3.999365pt;}
.ya{bottom:4.320034pt;}
.yb{bottom:29.546922pt;}
.y9{bottom:44.106880pt;}
.y8{bottom:48.426914pt;}
.yb6{bottom:115.306887pt;}
.yd4{bottom:115.466887pt;}
.y42{bottom:122.186884pt;}
.y6a{bottom:124.906883pt;}
.yb5{bottom:132.586880pt;}
.yd3{bottom:136.746612pt;}
.yed{bottom:139.626611pt;}
.yd2{bottom:158.026603pt;}
.y114{bottom:161.226602pt;}
.y69{bottom:162.186602pt;}
.y47{bottom:166.666600pt;}
.ya5{bottom:170.986598pt;}
.yd1{bottom:179.306595pt;}
.y113{bottom:182.506594pt;}
.y46{bottom:184.426593pt;}
.yec{bottom:194.026589pt;}
.y68{bottom:199.466587pt;}
.yd0{bottom:200.586586pt;}
.y45{bottom:202.186586pt;}
.y112{bottom:203.786585pt;}
.y9f{bottom:204.907200pt;}
.yeb{bottom:215.306581pt;}
.y44{bottom:219.946579pt;}
.y67{bottom:220.746578pt;}
.y111{bottom:225.066577pt;}
.y9e{bottom:233.706573pt;}
.yea{bottom:236.586572pt;}
.ycf{bottom:237.866572pt;}
.y43{bottom:238.506571pt;}
.y66{bottom:242.026570pt;}
.y110{bottom:246.346568pt;}
.ya1{bottom:250.827200pt;}
.ya3{bottom:251.627200pt;}
.y23{bottom:252.906566pt;}
.ye9{bottom:257.866564pt;}
.y99{bottom:259.466563pt;}
.y65{bottom:263.306561pt;}
.y10f{bottom:267.626560pt;}
.yce{bottom:275.146557pt;}
.ye8{bottom:279.146555pt;}
.y41{bottom:280.586554pt;}
.y98{bottom:284.426553pt;}
.y10e{bottom:288.906551pt;}
.y40{bottom:295.946548pt;}
.ycd{bottom:296.426548pt;}
.y64{bottom:300.586546pt;}
.y97{bottom:309.386543pt;}
.y10d{bottom:310.186543pt;}
.ye7{bottom:316.426540pt;}
.y3f{bottom:319.306539pt;}
.y9a{bottom:326.507200pt;}
.y9c{bottom:327.307200pt;}
.y10c{bottom:331.466534pt;}
.ycc{bottom:333.706533pt;}
.y3e{bottom:334.506533pt;}
.y92{bottom:335.146533pt;}
.y63{bottom:337.866532pt;}
.y3d{bottom:349.866527pt;}
.y10b{bottom:352.746526pt;}
.y91{bottom:360.106523pt;}
.ye6{bottom:360.426522pt;}
.y3c{bottom:365.226521pt;}
.ycb{bottom:370.986518pt;}
.y10a{bottom:374.026517pt;}
.y93{bottom:377.227200pt;}
.y95{bottom:378.027200pt;}
.y3b{bottom:380.586514pt;}
.ye5{bottom:381.706514pt;}
.y62{bottom:381.866514pt;}
.y8f{bottom:381.867200pt;}
.y109{bottom:395.306509pt;}
.ye4{bottom:402.986505pt;}
.y61{bottom:403.146505pt;}
.y3a{bottom:403.946505pt;}
.y22{bottom:404.746505pt;}
.yca{bottom:408.266503pt;}
.y8e{bottom:410.506502pt;}
.y108{bottom:416.586500pt;}
.y39{bottom:419.306499pt;}
.ye3{bottom:424.266497pt;}
.y60{bottom:424.426497pt;}
.yc9{bottom:429.546495pt;}
.y38{bottom:434.506493pt;}
.y8d{bottom:435.626492pt;}
.y8b{bottom:435.786492pt;}
.y107{bottom:437.866492pt;}
.ye2{bottom:445.546488pt;}
.y5f{bottom:445.706488pt;}
.y37{bottom:449.866487pt;}
.y106{bottom:459.146483pt;}
.y8c{bottom:460.586482pt;}
.y8a{bottom:460.746482pt;}
.y36{bottom:465.226481pt;}
.yc8{bottom:466.826480pt;}
.y5e{bottom:466.986480pt;}
.y105{bottom:480.426474pt;}
.y35{bottom:480.586474pt;}
.y88{bottom:482.507200pt;}
.ye1{bottom:482.826474pt;}
.y34{bottom:495.946468pt;}
.y21{bottom:498.186467pt;}
.y104{bottom:501.706466pt;}
.yc7{bottom:504.106465pt;}
.y5d{bottom:504.266465pt;}
.y87{bottom:511.306462pt;}
.y33{bottom:519.306459pt;}
.y103{bottom:522.986457pt;}
.yc6{bottom:525.386457pt;}
.y5c{bottom:525.546456pt;}
.y32{bottom:534.506453pt;}
.y86{bottom:536.266452pt;}
.y102{bottom:544.266449pt;}
.y20{bottom:545.066449pt;}
.yc5{bottom:546.666448pt;}
.y5b{bottom:546.826448pt;}
.y31{bottom:549.866447pt;}
.y1f{bottom:558.666443pt;}
.y122{bottom:561.066442pt;}
.y85{bottom:561.226442pt;}
.y30{bottom:565.226441pt;}
.y101{bottom:565.546440pt;}
.yc4{bottom:567.946439pt;}
.y5a{bottom:568.106439pt;}
.y1e{bottom:572.266438pt;}
.y121{bottom:580.266435pt;}
.y2f{bottom:580.586434pt;}
.y1d{bottom:584.746433pt;}
.y84{bottom:586.186432pt;}
.y100{bottom:586.826432pt;}
.ye0{bottom:589.226431pt;}
.y59{bottom:589.386431pt;}
.y2e{bottom:595.946428pt;}
.y120{bottom:601.546426pt;}
.yc3{bottom:605.226425pt;}
.yff{bottom:608.106423pt;}
.ydf{bottom:610.506422pt;}
.y58{bottom:610.666422pt;}
.y2d{bottom:611.306422pt;}
.y82{bottom:611.466422pt;}
.y11f{bottom:622.826418pt;}
.yfe{bottom:629.386415pt;}
.y1c{bottom:630.506414pt;}
.y2c{bottom:634.506413pt;}
.y83{bottom:636.266412pt;}
.y81{bottom:636.426412pt;}
.yb4{bottom:638.666411pt;}
.yc2{bottom:642.506410pt;}
.y11e{bottom:644.106409pt;}
.yde{bottom:647.786408pt;}
.y57{bottom:647.946407pt;}
.y2b{bottom:649.866407pt;}
.yfd{bottom:650.666406pt;}
.y7f{bottom:658.187200pt;}
.yb3{bottom:659.946403pt;}
.y2a{bottom:665.226401pt;}
.y11d{bottom:665.386401pt;}
.ydd{bottom:669.066399pt;}
.y56{bottom:669.226399pt;}
.yfc{bottom:671.946398pt;}
.y1b{bottom:676.266396pt;}
.yb2{bottom:681.226394pt;}
.yc1{bottom:686.506392pt;}
.y11c{bottom:686.666392pt;}
.y7e{bottom:686.986392pt;}
.y29{bottom:688.586391pt;}
.y1a{bottom:690.186391pt;}
.ydc{bottom:690.346391pt;}
.y55{bottom:690.506390pt;}
.yfb{bottom:693.226389pt;}
.y28{bottom:703.946385pt;}
.yc0{bottom:707.786384pt;}
.y11b{bottom:707.946383pt;}
.y54{bottom:711.786382pt;}
.y7d{bottom:711.946382pt;}
.yfa{bottom:714.506381pt;}
.yb1{bottom:718.506379pt;}
.y27{bottom:719.146379pt;}
.ydb{bottom:727.626376pt;}
.ybf{bottom:729.066375pt;}
.y11a{bottom:729.226375pt;}
.y53{bottom:733.066373pt;}
.y26{bottom:734.506373pt;}
.yf9{bottom:735.786372pt;}
.y7c{bottom:736.906372pt;}
.y19{bottom:744.266369pt;}
.y24{bottom:747.146368pt;}
.yda{bottom:748.906367pt;}
.y25{bottom:749.866367pt;}
.ybe{bottom:750.346367pt;}
.y119{bottom:750.506366pt;}
.y52{bottom:754.346365pt;}
.yb0{bottom:755.786364pt;}
.yf8{bottom:757.066364pt;}
.y7b{bottom:761.866362pt;}
.yd9{bottom:770.186359pt;}
.ybd{bottom:771.626358pt;}
.y118{bottom:771.786358pt;}
.y51{bottom:775.626356pt;}
.yaf{bottom:777.066356pt;}
.yf7{bottom:778.346355pt;}
.y18{bottom:778.826355pt;}
.y7a{bottom:786.986352pt;}
.yd8{bottom:791.466350pt;}
.ybc{bottom:792.906350pt;}
.y117{bottom:793.066349pt;}
.y50{bottom:796.906348pt;}
.yae{bottom:798.346347pt;}
.yf6{bottom:799.626347pt;}
.y12{bottom:802.826346pt;}
.y79{bottom:811.946342pt;}
.y116{bottom:814.346341pt;}
.y11{bottom:818.346339pt;}
.yad{bottom:819.626339pt;}
.yf5{bottom:820.906338pt;}
.yd7{bottom:828.746335pt;}
.ybb{bottom:830.186335pt;}
.y10{bottom:833.706333pt;}
.y4f{bottom:834.186333pt;}
.y115{bottom:835.626332pt;}
.y78{bottom:836.906332pt;}
.y76{bottom:837.066332pt;}
.yf4{bottom:842.186330pt;}
.y4e{bottom:855.466324pt;}
.yac{bottom:856.906324pt;}
.yf{bottom:857.066324pt;}
.y77{bottom:861.866322pt;}
.y75{bottom:862.026322pt;}
.yf3{bottom:863.466321pt;}
.yba{bottom:867.466320pt;}
.ye{bottom:872.426318pt;}
.yd6{bottom:872.746318pt;}
.y4d{bottom:876.746316pt;}
.yab{bottom:878.186315pt;}
.yf2{bottom:884.746313pt;}
.y72{bottom:887.786312pt;}
.yb9{bottom:888.746311pt;}
.yd{bottom:896.906308pt;}
.y4c{bottom:898.026307pt;}
.yaa{bottom:899.466307pt;}
.yf1{bottom:906.026304pt;}
.yb8{bottom:910.026303pt;}
.y71{bottom:912.746302pt;}
.yc{bottom:918.186299pt;}
.y4b{bottom:919.306299pt;}
.ya9{bottom:920.746298pt;}
.yf0{bottom:927.306296pt;}
.y73{bottom:929.867200pt;}
.y6d{bottom:934.507200pt;}
.y4a{bottom:940.586290pt;}
.ya8{bottom:942.026290pt;}
.y17{bottom:943.786289pt;}
.yb7{bottom:947.306288pt;}
.yef{bottom:948.586287pt;}
.y6f{bottom:959.467200pt;}
.y15{bottom:961.707200pt;}
.y49{bottom:961.866282pt;}
.ya7{bottom:963.306281pt;}
.y6c{bottom:963.466281pt;}
.yd5{bottom:968.586279pt;}
.yee{bottom:969.866279pt;}
.ya6{bottom:984.586273pt;}
.y14{bottom:986.506272pt;}
.y48{bottom:999.146267pt;}
.y6b{bottom:1005.866264pt;}
.y13{bottom:1007.786264pt;}
.y4{bottom:1027.466256pt;}
.y7{bottom:1054.186245pt;}
.y3{bottom:1056.906244pt;}
.y2{bottom:1072.266238pt;}
.y1{bottom:1087.626232pt;}
.h1a{height:3.200000pt;}
.h16{height:4.000000pt;}
.h3{height:5.440000pt;}
.h9{height:18.240000pt;}
.h5{height:19.520000pt;}
.h19{height:20.160000pt;}
.h13{height:20.320000pt;}
.h15{height:20.480000pt;}
.h18{height:22.240000pt;}
.hb{height:29.312488pt;}
.hd{height:32.554674pt;}
.h4{height:32.624987pt;}
.he{height:32.812487pt;}
.hc{height:34.968736pt;}
.h6{height:36.312485pt;}
.h1{height:36.909048pt;}
.h10{height:38.698735pt;}
.h17{height:39.839984pt;}
.hf{height:39.943734pt;}
.h8{height:43.374983pt;}
.h2{height:43.749982pt;}
.ha{height:44.468732pt;}
.h14{height:46.199982pt;}
.h7{height:48.124981pt;}
.h12{height:52.799979pt;}
.h11{height:54.999978pt;}
.h0{height:1122.666667pt;}
.w3{width:4.800000pt;}
.wb{width:6.720000pt;}
.w7{width:7.040000pt;}
.w6{width:8.480000pt;}
.w2{width:9.440000pt;}
.w5{width:47.840000pt;}
.w8{width:69.600000pt;}
.wc{width:71.040000pt;}
.w9{width:162.880000pt;}
.wa{width:244.800000pt;}
.w4{width:350.880000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x4{left:51.999979pt;}
.x11{left:61.119976pt;}
.x17{left:62.719975pt;}
.x15{left:67.999973pt;}
.x13{left:82.079967pt;}
.x12{left:83.999966pt;}
.x14{left:85.759994pt;}
.x1{left:95.999962pt;}
.x8{left:101.919959pt;}
.x25{left:103.519959pt;}
.x1c{left:111.039956pt;}
.x7{left:116.319953pt;}
.x16{left:118.399953pt;}
.x26{left:119.999952pt;}
.xa{left:122.879951pt;}
.x6{left:127.999949pt;}
.x27{left:143.999942pt;}
.x24{left:182.080000pt;}
.x9{left:190.399924pt;}
.x29{left:206.399917pt;}
.x18{left:215.519923pt;}
.xb{left:219.359912pt;}
.xc{left:221.599911pt;}
.x19{left:231.519907pt;}
.x1b{left:236.479905pt;}
.x1a{left:239.519904pt;}
.xe{left:249.440000pt;}
.xf{left:265.919894pt;}
.x2{left:268.959892pt;}
.x1d{left:296.960000pt;}
.x1e{left:324.799870pt;}
.xd{left:341.759863pt;}
.x21{left:394.400000pt;}
.x22{left:487.680000pt;}
.x23{left:569.600000pt;}
.x3{left:582.079767pt;}
.x20{left:631.199748pt;}
.x10{left:650.399783pt;}
.x1f{left:682.560000pt;}
.x2a{left:697.759721pt;}
.x28{left:719.999712pt;}
.x5{left:725.440000pt;}
}




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