
    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_49b15f52436b87d45debfe6a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_831e775e62f21d4a430834e2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_aae86e74ec71e4301dcd789a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_99dcae890d80b3434aaa453f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.742188;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_68e534b34f49d87061258c20.woff2')format("woff");}.ff5{font-family:ff5;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.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:-22.768068px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321681px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:14.994141px;}
.ls7{letter-spacing:17.985914px;}
.lsa{letter-spacing:18.000000px;}
.ls3{letter-spacing:19.494141px;}
.ls5{letter-spacing:22.485959px;}
.ls9{letter-spacing:23.994141px;}
.ls8{letter-spacing:26.985914px;}
.ls2{letter-spacing:26.985937px;}
.ls1{letter-spacing:31.485914px;}
.ls6{letter-spacing:64.511718px;}
.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;}
}
.ws48{word-spacing:-40.605468px;}
.ws39{word-spacing:-36.000000px;}
.ws33{word-spacing:-33.837890px;}
.ws32{word-spacing:-29.999999px;}
.ws1e{word-spacing:-29.329908px;}
.ws1f{word-spacing:-26.482263px;}
.ws0{word-spacing:-24.018905px;}
.ws1{word-spacing:-24.018878px;}
.ws2{word-spacing:-24.018873px;}
.ws1d{word-spacing:-23.529150px;}
.ws1b{word-spacing:-22.605503px;}
.ws3c{word-spacing:-22.605494px;}
.ws26{word-spacing:-22.605491px;}
.ws6a{word-spacing:-22.605481px;}
.ws1c{word-spacing:-22.605480px;}
.ws19{word-spacing:-22.605471px;}
.ws4{word-spacing:-22.605469px;}
.ws27{word-spacing:-22.605468px;}
.ws22{word-spacing:-22.605466px;}
.ws2e{word-spacing:-22.605458px;}
.ws56{word-spacing:-22.605446px;}
.ws13{word-spacing:-22.605435px;}
.ws7b{word-spacing:-18.860814px;}
.ws66{word-spacing:-18.860642px;}
.ws63{word-spacing:-18.860639px;}
.ws6d{word-spacing:-18.859320px;}
.ws6c{word-spacing:-18.855557px;}
.ws6f{word-spacing:-18.855528px;}
.ws31{word-spacing:-18.855495px;}
.ws41{word-spacing:-18.855487px;}
.ws3e{word-spacing:-18.855473px;}
.ws3f{word-spacing:-18.855468px;}
.ws67{word-spacing:-18.855467px;}
.ws3d{word-spacing:-18.855383px;}
.ws7c{word-spacing:-18.854144px;}
.ws59{word-spacing:-18.854119px;}
.ws77{word-spacing:-18.852854px;}
.ws5f{word-spacing:-18.852836px;}
.ws70{word-spacing:-18.849610px;}
.ws7f{word-spacing:-18.849608px;}
.ws12{word-spacing:-18.105504px;}
.wsa{word-spacing:-18.105503px;}
.wsf{word-spacing:-18.105492px;}
.ws11{word-spacing:-18.105491px;}
.ws89{word-spacing:-18.105481px;}
.ws9{word-spacing:-18.105480px;}
.ws81{word-spacing:-18.105471px;}
.ws2c{word-spacing:-18.105470px;}
.ws10{word-spacing:-18.105468px;}
.ws87{word-spacing:-18.105466px;}
.ws43{word-spacing:-18.105458px;}
.ws2f{word-spacing:-18.105447px;}
.ws8a{word-spacing:-18.000034px;}
.ws28{word-spacing:-18.000023px;}
.ws35{word-spacing:-18.000013px;}
.ws5a{word-spacing:-18.000011px;}
.ws47{word-spacing:-18.000001px;}
.ws5{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.999996px;}
.ws90{word-spacing:-17.999979px;}
.ws40{word-spacing:-15.020134px;}
.ws6e{word-spacing:-15.017579px;}
.ws51{word-spacing:-15.017577px;}
.ws68{word-spacing:-15.017576px;}
.ws42{word-spacing:-15.017571px;}
.ws80{word-spacing:-15.016231px;}
.ws49{word-spacing:-14.355474px;}
.ws78{word-spacing:-14.355470px;}
.ws65{word-spacing:-14.354119px;}
.ws62{word-spacing:-14.354098px;}
.ws7a{word-spacing:-14.352854px;}
.ws7d{word-spacing:-14.349620px;}
.ws21{word-spacing:-13.605502px;}
.wsd{word-spacing:-13.605491px;}
.ws36{word-spacing:-13.605481px;}
.ws7{word-spacing:-13.605480px;}
.ws46{word-spacing:-13.605471px;}
.wsb{word-spacing:-13.605469px;}
.ws24{word-spacing:-13.605466px;}
.ws2a{word-spacing:-13.605458px;}
.ws57{word-spacing:-13.605447px;}
.ws82{word-spacing:-13.500011px;}
.ws25{word-spacing:-13.500001px;}
.ws4d{word-spacing:-13.500000px;}
.ws52{word-spacing:-13.499998px;}
.ws7e{word-spacing:-9.861971px;}
.ws79{word-spacing:-9.855466px;}
.ws58{word-spacing:-9.852834px;}
.ws37{word-spacing:-9.105503px;}
.ws23{word-spacing:-9.105492px;}
.wse{word-spacing:-9.105480px;}
.ws5c{word-spacing:-9.105470px;}
.ws8{word-spacing:-9.105469px;}
.ws61{word-spacing:-9.105467px;}
.ws5d{word-spacing:-9.105458px;}
.ws34{word-spacing:-9.105446px;}
.ws98{word-spacing:-9.000023px;}
.ws45{word-spacing:-9.000013px;}
.ws73{word-spacing:-9.000012px;}
.ws53{word-spacing:-9.000001px;}
.ws85{word-spacing:-8.999967px;}
.ws64{word-spacing:-5.354188px;}
.ws18{word-spacing:-4.605491px;}
.ws16{word-spacing:-4.605480px;}
.ws4a{word-spacing:-4.605471px;}
.ws72{word-spacing:-4.605470px;}
.ws14{word-spacing:-4.605468px;}
.ws44{word-spacing:-4.605458px;}
.ws76{word-spacing:-4.605446px;}
.ws94{word-spacing:-4.605437px;}
.ws8e{word-spacing:-4.500023px;}
.ws88{word-spacing:-4.500001px;}
.ws4c{word-spacing:-4.500000px;}
.ws50{word-spacing:-4.499998px;}
.ws8c{word-spacing:-4.499978px;}
.ws71{word-spacing:-0.105491px;}
.ws15{word-spacing:-0.105480px;}
.wsa0{word-spacing:-0.105471px;}
.ws2d{word-spacing:-0.105468px;}
.ws84{word-spacing:-0.105446px;}
.ws30{word-spacing:-0.000022px;}
.ws4b{word-spacing:-0.000011px;}
.ws83{word-spacing:-0.000003px;}
.ws6{word-spacing:0.000000px;}
.ws3a{word-spacing:4.394506px;}
.ws17{word-spacing:4.394509px;}
.ws2b{word-spacing:4.394520px;}
.ws4f{word-spacing:4.394532px;}
.ws5e{word-spacing:4.394553px;}
.wsa1{word-spacing:4.499988px;}
.ws74{word-spacing:4.500000px;}
.wsc{word-spacing:8.894498px;}
.ws29{word-spacing:8.894509px;}
.ws69{word-spacing:8.894520px;}
.ws6b{word-spacing:8.894532px;}
.ws60{word-spacing:8.894533px;}
.ws1a{word-spacing:9.000000px;}
.ws5b{word-spacing:13.394509px;}
.ws3b{word-spacing:13.394520px;}
.ws54{word-spacing:13.394529px;}
.ws38{word-spacing:13.394531px;}
.ws4e{word-spacing:13.500003px;}
.ws55{word-spacing:17.999988px;}
.ws86{word-spacing:17.999999px;}
.ws75{word-spacing:31.394519px;}
.ws97{word-spacing:35.894532px;}
.ws95{word-spacing:40.394531px;}
.ws96{word-spacing:45.000000px;}
.ws9e{word-spacing:53.894532px;}
.ws9c{word-spacing:58.394520px;}
.ws9d{word-spacing:62.999988px;}
.ws91{word-spacing:67.394520px;}
.ws8f{word-spacing:67.394532px;}
.ws9b{word-spacing:71.894509px;}
.ws99{word-spacing:71.894529px;}
.ws20{word-spacing:72.000000px;}
.ws93{word-spacing:76.394532px;}
.ws9a{word-spacing:76.499999px;}
.ws9f{word-spacing:80.894531px;}
.ws8b{word-spacing:85.394532px;}
.ws92{word-spacing:85.499998px;}
.wsa2{word-spacing:107.894531px;}
.wsa3{word-spacing:157.394530px;}
.wsa4{word-spacing:157.394532px;}
.ws8d{word-spacing:166.394532px;}
._20{margin-left:-8.515423px;}
._0{margin-left:-7.214615px;}
._2{margin-left:-5.491609px;}
._5{margin-left:-4.211504px;}
._6{margin-left:-2.882811px;}
._1{margin-left:-1.773382px;}
._13{width:1.396660px;}
._15{width:2.910736px;}
._11{width:4.814045px;}
._10{width:7.408374px;}
._e{width:8.970818px;}
._f{width:12.963138px;}
._12{width:15.010447px;}
._a{width:18.000010px;}
._18{width:19.451229px;}
._7{width:22.500009px;}
._1b{width:23.943448px;}
._4{width:26.999999px;}
._1c{width:28.455211px;}
._3{width:31.500000px;}
._19{width:32.958988px;}
._9{width:36.000002px;}
._b{width:40.500000px;}
._d{width:44.999999px;}
._c{width:49.499999px;}
._8{width:53.999999px;}
._16{width:62.515175px;}
._17{width:63.969652px;}
._1a{width:67.500044px;}
._21{width:81.210924px;}
._14{width:108.000000px;}
._1f{width:112.500002px;}
._22{width:117.000003px;}
._1d{width:120.734165px;}
._23{width:125.999997px;}
._24{width:144.815838px;}
._1e{width:211.500001px;}
.fc1{color:rgb(17,85,204);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:43.200002px;}
.fs2{font-size:59.999999px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000003px;}
.y0{bottom:0.000000px;}
.y91{bottom:11.118155px;}
.ya3{bottom:11.119625px;}
.ya8{bottom:11.121093px;}
.yc0{bottom:19.743168px;}
.y50{bottom:19.743900px;}
.ya7{bottom:28.368153px;}
.y90{bottom:28.368155px;}
.ya2{bottom:28.368170px;}
.y8f{bottom:45.615230px;}
.y4f{bottom:45.616695px;}
.ya1{bottom:45.616700px;}
.ya6{bottom:45.618153px;}
.y8e{bottom:62.865230px;}
.y5d{bottom:65.493168px;}
.y18{bottom:65.493903px;}
.yd1{bottom:65.496093px;}
.ya0{bottom:80.113775px;}
.y5a{bottom:109.709478px;}
.y58{bottom:114.348637px;}
.y8c{bottom:115.333012px;}
.yb0{bottom:119.039063px;}
.y6f{bottom:126.958008px;}
.y59{bottom:132.650025px;}
.ybf{bottom:135.196290px;}
.y57{bottom:145.395998px;}
.yd0{bottom:146.378902px;}
.y4d{bottom:146.380373px;}
.y5b{bottom:149.898555px;}
.yaf{bottom:150.087892px;}
.y5c{bottom:167.147100px;}
.y8{bottom:171.266783px;}
.y56{bottom:176.443358px;}
.y8b{bottom:177.071783px;}
.y4c{bottom:177.427733px;}
.yae{bottom:181.133783px;}
.y9e{bottom:182.601563px;}
.y7{bottom:202.314142px;}
.y55{bottom:207.490717px;}
.y8a{bottom:208.119142px;}
.y4b{bottom:208.475092px;}
.ycf{bottom:208.476563px;}
.yad{bottom:212.182613px;}
.y9d{bottom:213.650393px;}
.y6{bottom:233.361517px;}
.y54{bottom:238.538092px;}
.y6e{bottom:238.929202px;}
.y89{bottom:239.166503px;}
.y4a{bottom:239.522467px;}
.yac{bottom:243.228517px;}
.y9c{bottom:244.696283px;}
.y5{bottom:264.408878px;}
.y53{bottom:269.585452px;}
.y6d{bottom:269.976563px;}
.y88{bottom:270.213863px;}
.yce{bottom:270.568358px;}
.y33{bottom:270.569828px;}
.yab{bottom:274.277348px;}
.y9b{bottom:275.745113px;}
.y4{bottom:295.456238px;}
.y52{bottom:300.632812px;}
.y6c{bottom:301.063471px;}
.y87{bottom:301.261238px;}
.y32{bottom:301.617187px;}
.yaa{bottom:305.323238px;}
.y51{bottom:331.680172px;}
.y6b{bottom:332.189948px;}
.y86{bottom:332.308598px;}
.y49{bottom:332.664548px;}
.ycd{bottom:332.666017px;}
.ya9{bottom:336.372067px;}
.y9a{bottom:337.839847px;}
.ya5{bottom:344.733393px;}
.y6a{bottom:363.237307px;}
.y85{bottom:363.355957px;}
.y31{bottom:363.711908px;}
.y99{bottom:368.885738px;}
.y4e{bottom:380.657223px;}
.ya4{bottom:385.347660px;}
.y69{bottom:394.284668px;}
.y84{bottom:394.403318px;}
.ycc{bottom:394.757812px;}
.y30{bottom:394.759283px;}
.y47{bottom:397.901363px;}
.y98{bottom:399.934567px;}
.y68{bottom:425.371576px;}
.y2f{bottom:425.806642px;}
.y97{bottom:430.980473px;}
.y46{bottom:433.448738px;}
.y67{bottom:456.498053px;}
.y2e{bottom:456.854002px;}
.ycb{bottom:456.855473px;}
.y45{bottom:468.996098px;}
.y96{bottom:470.003898px;}
.ybe{bottom:482.727533px;}
.y66{bottom:487.545412px;}
.y2d{bottom:487.901363px;}
.y95{bottom:495.875973px;}
.y44{bottom:504.543458px;}
.ybd{bottom:513.773438px;}
.y83{bottom:518.592773px;}
.y65{bottom:518.632321px;}
.yca{bottom:518.947268px;}
.y2c{bottom:518.948738px;}
.y94{bottom:521.749518px;}
.y43{bottom:540.090818px;}
.ybc{bottom:544.822268px;}
.y93{bottom:547.623048px;}
.y82{bottom:549.640133px;}
.y64{bottom:549.758783px;}
.y2b{bottom:549.996098px;}
.y92{bottom:573.495123px;}
.y42{bottom:575.638178px;}
.ybb{bottom:575.868158px;}
.y81{bottom:580.687492px;}
.y63{bottom:580.806158px;}
.y2a{bottom:581.043458px;}
.yc9{bottom:581.044928px;}
.y3{bottom:589.979146px;}
.y41{bottom:611.185552px;}
.y80{bottom:611.734868px;}
.y62{bottom:611.893066px;}
.y29{bottom:612.090818px;}
.y17{bottom:612.090998px;}
.yba{bottom:614.891598px;}
.y2{bottom:631.375621px;}
.yb9{bottom:640.763673px;}
.y7f{bottom:642.782228px;}
.y61{bottom:643.019527px;}
.yc8{bottom:643.136723px;}
.y28{bottom:643.138178px;}
.y16{bottom:643.138373px;}
.y40{bottom:646.732912px;}
.yb8{bottom:666.638673px;}
.y1{bottom:672.772066px;}
.y7e{bottom:673.829588px;}
.y60{bottom:674.066888px;}
.y27{bottom:674.185552px;}
.y15{bottom:674.185732px;}
.y3f{bottom:682.280273px;}
.yb7{bottom:692.510748px;}
.y7d{bottom:704.876948px;}
.y5f{bottom:705.114262px;}
.y26{bottom:705.232912px;}
.y14{bottom:705.233092px;}
.yc7{bottom:705.234367px;}
.y3e{bottom:717.827633px;}
.yb6{bottom:718.382808px;}
.y7c{bottom:735.924322px;}
.y5e{bottom:736.201171px;}
.y25{bottom:736.280273px;}
.y13{bottom:736.280453px;}
.yb5{bottom:744.254883px;}
.y3d{bottom:753.374992px;}
.y7b{bottom:766.971683px;}
.yc6{bottom:767.326178px;}
.y24{bottom:767.327633px;}
.y12{bottom:767.327812px;}
.yb4{bottom:770.126958px;}
.y9f{bottom:772.939453px;}
.y8d{bottom:781.037113px;}
.y3c{bottom:788.922367px;}
.yb3{bottom:796.001958px;}
.y23{bottom:798.374992px;}
.yb2{bottom:821.874018px;}
.y3b{bottom:824.469727px;}
.y7a{bottom:829.066402px;}
.y22{bottom:829.422367px;}
.y11{bottom:829.422548px;}
.yc5{bottom:829.423822px;}
.y3a{bottom:860.017088px;}
.y79{bottom:860.113763px;}
.y21{bottom:860.469727px;}
.y10{bottom:860.469907px;}
.y78{bottom:891.200686px;}
.yb1{bottom:891.515617px;}
.y20{bottom:891.517088px;}
.yf{bottom:891.517267px;}
.y39{bottom:895.564448px;}
.y77{bottom:922.327147px;}
.y1f{bottom:922.564448px;}
.ye{bottom:922.564642px;}
.y38{bottom:931.111823px;}
.y76{bottom:953.374508px;}
.y1e{bottom:953.611823px;}
.yc4{bottom:953.613277px;}
.y37{bottom:966.659182px;}
.y75{bottom:984.421867px;}
.y1d{bottom:984.659182px;}
.yd{bottom:984.659362px;}
.y36{bottom:1002.206543px;}
.y74{bottom:1015.508789px;}
.yc3{bottom:1015.705079px;}
.y1c{bottom:1015.706543px;}
.yc{bottom:1015.706725px;}
.y35{bottom:1037.753905px;}
.y73{bottom:1046.635254px;}
.y1b{bottom:1046.753905px;}
.yb{bottom:1046.754090px;}
.y34{bottom:1073.301270px;}
.y72{bottom:1077.682617px;}
.y1a{bottom:1077.801270px;}
.ya{bottom:1077.801453px;}
.yc2{bottom:1077.802734px;}
.y71{bottom:1108.729980px;}
.y48{bottom:1108.848633px;}
.y70{bottom:1139.816894px;}
.yc1{bottom:1139.894530px;}
.y19{bottom:1139.895996px;}
.y9{bottom:1139.896179px;}
.h9{height:25.839844px;}
.ha{height:41.660155px;}
.h5{height:43.066405px;}
.h3{height:48.796875px;}
.h2{height:51.679688px;}
.h8{height:52.875000px;}
.h7{height:58.329494px;}
.h1{height:65.062502px;}
.h4{height:105.924315px;}
.hf{height:105.925785px;}
.h6{height:247.113282px;}
.he{height:301.116210px;}
.hd{height:366.612300px;}
.hb{height:374.538570px;}
.hc{height:382.636230px;}
.h0{height:1263.000000px;}
.w4{width:232.875000px;}
.w3{width:235.125000px;}
.w5{width:475.874955px;}
.w2{width:498.374955px;}
.w6{width:546.749955px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xe{left:6.750000px;}
.x13{left:11.259218px;}
.x12{left:16.691245px;}
.x11{left:53.968020px;}
.x16{left:56.561540px;}
.xa{left:70.243869px;}
.x14{left:82.367206px;}
.x9{left:97.171995px;}
.x3{left:106.299213px;}
.x7{left:119.799213px;}
.x6{left:133.299213px;}
.xf{left:149.049213px;}
.x4{left:160.299213px;}
.x15{left:172.674213px;}
.x8{left:197.424225px;}
.xc{left:200.799213px;}
.x1{left:208.601025px;}
.x2{left:261.369038px;}
.xd{left:550.364130px;}
.x10{left:552.614130px;}
.xb{left:771.620051px;}
.x5{left:779.117118px;}
@media print{
.v2{vertical-align:-20.238283pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285938pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:13.328125pt;}
.ls7{letter-spacing:15.987479pt;}
.lsa{letter-spacing:16.000000pt;}
.ls3{letter-spacing:17.328125pt;}
.ls5{letter-spacing:19.987519pt;}
.ls9{letter-spacing:21.328125pt;}
.ls8{letter-spacing:23.987479pt;}
.ls2{letter-spacing:23.987499pt;}
.ls1{letter-spacing:27.987479pt;}
.ls6{letter-spacing:57.343750pt;}
.ws48{word-spacing:-36.093750pt;}
.ws39{word-spacing:-32.000000pt;}
.ws33{word-spacing:-30.078124pt;}
.ws32{word-spacing:-26.666666pt;}
.ws1e{word-spacing:-26.071030pt;}
.ws1f{word-spacing:-23.539790pt;}
.ws0{word-spacing:-21.350138pt;}
.ws1{word-spacing:-21.350114pt;}
.ws2{word-spacing:-21.350110pt;}
.ws1d{word-spacing:-20.914800pt;}
.ws1b{word-spacing:-20.093780pt;}
.ws3c{word-spacing:-20.093772pt;}
.ws26{word-spacing:-20.093770pt;}
.ws6a{word-spacing:-20.093761pt;}
.ws1c{word-spacing:-20.093760pt;}
.ws19{word-spacing:-20.093752pt;}
.ws4{word-spacing:-20.093750pt;}
.ws27{word-spacing:-20.093749pt;}
.ws22{word-spacing:-20.093748pt;}
.ws2e{word-spacing:-20.093740pt;}
.ws56{word-spacing:-20.093730pt;}
.ws13{word-spacing:-20.093720pt;}
.ws7b{word-spacing:-16.765168pt;}
.ws66{word-spacing:-16.765015pt;}
.ws63{word-spacing:-16.765012pt;}
.ws6d{word-spacing:-16.763840pt;}
.ws6c{word-spacing:-16.760495pt;}
.ws6f{word-spacing:-16.760469pt;}
.ws31{word-spacing:-16.760440pt;}
.ws41{word-spacing:-16.760433pt;}
.ws3e{word-spacing:-16.760421pt;}
.ws3f{word-spacing:-16.760416pt;}
.ws67{word-spacing:-16.760415pt;}
.ws3d{word-spacing:-16.760341pt;}
.ws7c{word-spacing:-16.759239pt;}
.ws59{word-spacing:-16.759217pt;}
.ws77{word-spacing:-16.758093pt;}
.ws5f{word-spacing:-16.758076pt;}
.ws70{word-spacing:-16.755209pt;}
.ws7f{word-spacing:-16.755207pt;}
.ws12{word-spacing:-16.093782pt;}
.wsa{word-spacing:-16.093780pt;}
.wsf{word-spacing:-16.093771pt;}
.ws11{word-spacing:-16.093770pt;}
.ws89{word-spacing:-16.093761pt;}
.ws9{word-spacing:-16.093760pt;}
.ws81{word-spacing:-16.093752pt;}
.ws2c{word-spacing:-16.093751pt;}
.ws10{word-spacing:-16.093750pt;}
.ws87{word-spacing:-16.093748pt;}
.ws43{word-spacing:-16.093740pt;}
.ws2f{word-spacing:-16.093730pt;}
.ws8a{word-spacing:-16.000030pt;}
.ws28{word-spacing:-16.000020pt;}
.ws35{word-spacing:-16.000012pt;}
.ws5a{word-spacing:-16.000010pt;}
.ws47{word-spacing:-16.000001pt;}
.ws5{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.999997pt;}
.ws90{word-spacing:-15.999981pt;}
.ws40{word-spacing:-13.351230pt;}
.ws6e{word-spacing:-13.348959pt;}
.ws51{word-spacing:-13.348958pt;}
.ws68{word-spacing:-13.348956pt;}
.ws42{word-spacing:-13.348952pt;}
.ws80{word-spacing:-13.347761pt;}
.ws49{word-spacing:-12.760422pt;}
.ws78{word-spacing:-12.760418pt;}
.ws65{word-spacing:-12.759217pt;}
.ws62{word-spacing:-12.759199pt;}
.ws7a{word-spacing:-12.758093pt;}
.ws7d{word-spacing:-12.755217pt;}
.ws21{word-spacing:-12.093780pt;}
.wsd{word-spacing:-12.093770pt;}
.ws36{word-spacing:-12.093761pt;}
.ws7{word-spacing:-12.093760pt;}
.ws46{word-spacing:-12.093752pt;}
.wsb{word-spacing:-12.093750pt;}
.ws24{word-spacing:-12.093748pt;}
.ws2a{word-spacing:-12.093741pt;}
.ws57{word-spacing:-12.093730pt;}
.ws82{word-spacing:-12.000010pt;}
.ws25{word-spacing:-12.000001pt;}
.ws4d{word-spacing:-12.000000pt;}
.ws52{word-spacing:-11.999998pt;}
.ws7e{word-spacing:-8.766197pt;}
.ws79{word-spacing:-8.760414pt;}
.ws58{word-spacing:-8.758075pt;}
.ws37{word-spacing:-8.093780pt;}
.ws23{word-spacing:-8.093770pt;}
.wse{word-spacing:-8.093760pt;}
.ws5c{word-spacing:-8.093751pt;}
.ws8{word-spacing:-8.093750pt;}
.ws61{word-spacing:-8.093748pt;}
.ws5d{word-spacing:-8.093740pt;}
.ws34{word-spacing:-8.093730pt;}
.ws98{word-spacing:-8.000020pt;}
.ws45{word-spacing:-8.000012pt;}
.ws73{word-spacing:-8.000011pt;}
.ws53{word-spacing:-8.000000pt;}
.ws85{word-spacing:-7.999970pt;}
.ws64{word-spacing:-4.759279pt;}
.ws18{word-spacing:-4.093770pt;}
.ws16{word-spacing:-4.093760pt;}
.ws4a{word-spacing:-4.093752pt;}
.ws72{word-spacing:-4.093751pt;}
.ws14{word-spacing:-4.093750pt;}
.ws44{word-spacing:-4.093740pt;}
.ws76{word-spacing:-4.093730pt;}
.ws94{word-spacing:-4.093722pt;}
.ws8e{word-spacing:-4.000020pt;}
.ws88{word-spacing:-4.000001pt;}
.ws4c{word-spacing:-4.000000pt;}
.ws50{word-spacing:-3.999998pt;}
.ws8c{word-spacing:-3.999980pt;}
.ws71{word-spacing:-0.093770pt;}
.ws15{word-spacing:-0.093760pt;}
.wsa0{word-spacing:-0.093752pt;}
.ws2d{word-spacing:-0.093750pt;}
.ws84{word-spacing:-0.093730pt;}
.ws30{word-spacing:-0.000019pt;}
.ws4b{word-spacing:-0.000010pt;}
.ws83{word-spacing:-0.000003pt;}
.ws6{word-spacing:0.000000pt;}
.ws3a{word-spacing:3.906228pt;}
.ws17{word-spacing:3.906230pt;}
.ws2b{word-spacing:3.906240pt;}
.ws4f{word-spacing:3.906250pt;}
.ws5e{word-spacing:3.906269pt;}
.wsa1{word-spacing:3.999989pt;}
.ws74{word-spacing:4.000000pt;}
.wsc{word-spacing:7.906220pt;}
.ws29{word-spacing:7.906230pt;}
.ws69{word-spacing:7.906240pt;}
.ws6b{word-spacing:7.906250pt;}
.ws60{word-spacing:7.906252pt;}
.ws1a{word-spacing:8.000000pt;}
.ws5b{word-spacing:11.906230pt;}
.ws3b{word-spacing:11.906240pt;}
.ws54{word-spacing:11.906248pt;}
.ws38{word-spacing:11.906250pt;}
.ws4e{word-spacing:12.000003pt;}
.ws55{word-spacing:15.999989pt;}
.ws86{word-spacing:15.999999pt;}
.ws75{word-spacing:27.906239pt;}
.ws97{word-spacing:31.906250pt;}
.ws95{word-spacing:35.906250pt;}
.ws96{word-spacing:40.000000pt;}
.ws9e{word-spacing:47.906250pt;}
.ws9c{word-spacing:51.906240pt;}
.ws9d{word-spacing:55.999989pt;}
.ws91{word-spacing:59.906240pt;}
.ws8f{word-spacing:59.906250pt;}
.ws9b{word-spacing:63.906230pt;}
.ws99{word-spacing:63.906248pt;}
.ws20{word-spacing:64.000000pt;}
.ws93{word-spacing:67.906250pt;}
.ws9a{word-spacing:67.999999pt;}
.ws9f{word-spacing:71.906250pt;}
.ws8b{word-spacing:75.906250pt;}
.ws92{word-spacing:75.999998pt;}
.wsa2{word-spacing:95.906250pt;}
.wsa3{word-spacing:139.906249pt;}
.wsa4{word-spacing:139.906250pt;}
.ws8d{word-spacing:147.906250pt;}
._20{margin-left:-7.569265pt;}
._0{margin-left:-6.412991pt;}
._2{margin-left:-4.881430pt;}
._5{margin-left:-3.743559pt;}
._6{margin-left:-2.562498pt;}
._1{margin-left:-1.576340pt;}
._13{width:1.241476pt;}
._15{width:2.587321pt;}
._11{width:4.279151pt;}
._10{width:6.585221pt;}
._e{width:7.974060pt;}
._f{width:11.522789pt;}
._12{width:13.342619pt;}
._a{width:16.000009pt;}
._18{width:17.289982pt;}
._7{width:20.000008pt;}
._1b{width:21.283065pt;}
._4{width:23.999999pt;}
._1c{width:25.293521pt;}
._3{width:28.000000pt;}
._19{width:29.296878pt;}
._9{width:32.000001pt;}
._b{width:36.000000pt;}
._d{width:39.999999pt;}
._c{width:44.000000pt;}
._8{width:48.000000pt;}
._16{width:55.569044pt;}
._17{width:56.861913pt;}
._1a{width:60.000039pt;}
._21{width:72.187488pt;}
._14{width:96.000000pt;}
._1f{width:100.000002pt;}
._22{width:104.000002pt;}
._1d{width:107.319258pt;}
._23{width:111.999998pt;}
._24{width:128.725190pt;}
._1e{width:188.000001pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:38.400002pt;}
.fs2{font-size:53.333332pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333336pt;}
.y0{bottom:0.000000pt;}
.y91{bottom:9.882804pt;}
.ya3{bottom:9.884111pt;}
.ya8{bottom:9.885416pt;}
.yc0{bottom:17.549483pt;}
.y50{bottom:17.550134pt;}
.ya7{bottom:25.216136pt;}
.y90{bottom:25.216138pt;}
.ya2{bottom:25.216151pt;}
.y8f{bottom:40.546871pt;}
.y4f{bottom:40.548174pt;}
.ya1{bottom:40.548178pt;}
.ya6{bottom:40.549470pt;}
.y8e{bottom:55.880204pt;}
.y5d{bottom:58.216150pt;}
.y18{bottom:58.216803pt;}
.yd1{bottom:58.218750pt;}
.ya0{bottom:71.212244pt;}
.y5a{bottom:97.519536pt;}
.y58{bottom:101.643233pt;}
.y8c{bottom:102.518233pt;}
.yb0{bottom:105.812500pt;}
.y6f{bottom:112.851563pt;}
.y59{bottom:117.911134pt;}
.ybf{bottom:120.174480pt;}
.y57{bottom:129.240887pt;}
.yd0{bottom:130.114580pt;}
.y4d{bottom:130.115887pt;}
.y5b{bottom:133.243160pt;}
.yaf{bottom:133.411460pt;}
.y5c{bottom:148.575200pt;}
.y8{bottom:152.237140pt;}
.y56{bottom:156.838540pt;}
.y8b{bottom:157.397140pt;}
.y4c{bottom:157.713540pt;}
.yae{bottom:161.007807pt;}
.y9e{bottom:162.312500pt;}
.y7{bottom:179.834793pt;}
.y55{bottom:184.436193pt;}
.y8a{bottom:184.994793pt;}
.y4b{bottom:185.311193pt;}
.ycf{bottom:185.312500pt;}
.yad{bottom:188.606767pt;}
.y9d{bottom:189.911460pt;}
.y6{bottom:207.432460pt;}
.y54{bottom:212.033860pt;}
.y6e{bottom:212.381513pt;}
.y89{bottom:212.592447pt;}
.y4a{bottom:212.908860pt;}
.yac{bottom:216.203127pt;}
.y9c{bottom:217.507807pt;}
.y5{bottom:235.030113pt;}
.y53{bottom:239.631513pt;}
.y6d{bottom:239.979167pt;}
.y88{bottom:240.190100pt;}
.yce{bottom:240.505207pt;}
.y33{bottom:240.506513pt;}
.yab{bottom:243.802087pt;}
.y9b{bottom:245.106767pt;}
.y4{bottom:262.627767pt;}
.y52{bottom:267.229167pt;}
.y6c{bottom:267.611974pt;}
.y87{bottom:267.787767pt;}
.y32{bottom:268.104167pt;}
.yaa{bottom:271.398433pt;}
.y51{bottom:294.826820pt;}
.y6b{bottom:295.279953pt;}
.y86{bottom:295.385420pt;}
.y49{bottom:295.701820pt;}
.ycd{bottom:295.703127pt;}
.ya9{bottom:298.997393pt;}
.y9a{bottom:300.302087pt;}
.ya5{bottom:306.429683pt;}
.y6a{bottom:322.877607pt;}
.y85{bottom:322.983073pt;}
.y31{bottom:323.299473pt;}
.y99{bottom:327.898433pt;}
.y4e{bottom:338.361976pt;}
.ya4{bottom:342.531253pt;}
.y69{bottom:350.475260pt;}
.y84{bottom:350.580727pt;}
.ycc{bottom:350.895833pt;}
.y30{bottom:350.897140pt;}
.y47{bottom:353.690100pt;}
.y98{bottom:355.497393pt;}
.y68{bottom:378.108067pt;}
.y2f{bottom:378.494793pt;}
.y97{bottom:383.093753pt;}
.y46{bottom:385.287767pt;}
.y67{bottom:405.776047pt;}
.y2e{bottom:406.092447pt;}
.ycb{bottom:406.093753pt;}
.y45{bottom:416.885420pt;}
.y96{bottom:417.781243pt;}
.ybe{bottom:429.091140pt;}
.y66{bottom:433.373700pt;}
.y2d{bottom:433.690100pt;}
.y95{bottom:440.778643pt;}
.y44{bottom:448.483073pt;}
.ybd{bottom:456.687500pt;}
.y83{bottom:460.971353pt;}
.y65{bottom:461.006507pt;}
.yca{bottom:461.286460pt;}
.y2c{bottom:461.287767pt;}
.y94{bottom:463.777350pt;}
.y43{bottom:480.080727pt;}
.ybc{bottom:484.286460pt;}
.y93{bottom:486.776043pt;}
.y82{bottom:488.569007pt;}
.y64{bottom:488.674473pt;}
.y2b{bottom:488.885420pt;}
.y92{bottom:509.773443pt;}
.y42{bottom:511.678380pt;}
.ybb{bottom:511.882807pt;}
.y81{bottom:516.166660pt;}
.y63{bottom:516.272140pt;}
.y2a{bottom:516.483073pt;}
.yc9{bottom:516.484380pt;}
.y3{bottom:524.425907pt;}
.y41{bottom:543.276047pt;}
.y80{bottom:543.764327pt;}
.y62{bottom:543.904948pt;}
.y29{bottom:544.080727pt;}
.y17{bottom:544.080887pt;}
.yba{bottom:546.570310pt;}
.y2{bottom:561.222774pt;}
.yb9{bottom:569.567710pt;}
.y7f{bottom:571.361980pt;}
.y61{bottom:571.572913pt;}
.yc8{bottom:571.677087pt;}
.y28{bottom:571.678380pt;}
.y16{bottom:571.678553pt;}
.y40{bottom:574.873700pt;}
.yb8{bottom:592.567710pt;}
.y1{bottom:598.019614pt;}
.y7e{bottom:598.959633pt;}
.y60{bottom:599.170567pt;}
.y27{bottom:599.276047pt;}
.y15{bottom:599.276207pt;}
.y3f{bottom:606.471353pt;}
.yb7{bottom:615.565110pt;}
.y7d{bottom:626.557287pt;}
.y5f{bottom:626.768233pt;}
.y26{bottom:626.873700pt;}
.y14{bottom:626.873860pt;}
.yc7{bottom:626.874993pt;}
.y3e{bottom:638.069007pt;}
.yb6{bottom:638.562496pt;}
.y7c{bottom:654.154953pt;}
.y5e{bottom:654.401041pt;}
.y25{bottom:654.471353pt;}
.y13{bottom:654.471513pt;}
.yb5{bottom:661.559896pt;}
.y3d{bottom:669.666660pt;}
.y7b{bottom:681.752607pt;}
.yc6{bottom:682.067713pt;}
.y24{bottom:682.069007pt;}
.y12{bottom:682.069167pt;}
.yb4{bottom:684.557296pt;}
.y9f{bottom:687.057292pt;}
.y8d{bottom:694.255212pt;}
.y3c{bottom:701.264327pt;}
.yb3{bottom:707.557296pt;}
.y23{bottom:709.666660pt;}
.yb2{bottom:730.554683pt;}
.y3b{bottom:732.861980pt;}
.y7a{bottom:736.947913pt;}
.y22{bottom:737.264327pt;}
.y11{bottom:737.264487pt;}
.yc5{bottom:737.265620pt;}
.y3a{bottom:764.459633pt;}
.y79{bottom:764.545567pt;}
.y21{bottom:764.861980pt;}
.y10{bottom:764.862140pt;}
.y78{bottom:792.178387pt;}
.yb1{bottom:792.458327pt;}
.y20{bottom:792.459633pt;}
.yf{bottom:792.459793pt;}
.y39{bottom:796.057287pt;}
.y77{bottom:819.846353pt;}
.y1f{bottom:820.057287pt;}
.ye{bottom:820.057460pt;}
.y38{bottom:827.654953pt;}
.y76{bottom:847.444007pt;}
.y1e{bottom:847.654953pt;}
.yc4{bottom:847.656247pt;}
.y37{bottom:859.252607pt;}
.y75{bottom:875.041660pt;}
.y1d{bottom:875.252607pt;}
.yd{bottom:875.252767pt;}
.y36{bottom:890.850260pt;}
.y74{bottom:902.674480pt;}
.yc3{bottom:902.848959pt;}
.y1c{bottom:902.850260pt;}
.yc{bottom:902.850423pt;}
.y35{bottom:922.447916pt;}
.y73{bottom:930.342448pt;}
.y1b{bottom:930.447916pt;}
.yb{bottom:930.448080pt;}
.y34{bottom:954.045573pt;}
.y72{bottom:957.940104pt;}
.y1a{bottom:958.045573pt;}
.ya{bottom:958.045736pt;}
.yc2{bottom:958.046875pt;}
.y71{bottom:985.537760pt;}
.y48{bottom:985.643229pt;}
.y70{bottom:1013.170573pt;}
.yc1{bottom:1013.239583pt;}
.y19{bottom:1013.240885pt;}
.y9{bottom:1013.241048pt;}
.h9{height:22.968750pt;}
.ha{height:37.031249pt;}
.h5{height:38.281249pt;}
.h3{height:43.375000pt;}
.h2{height:45.937500pt;}
.h8{height:47.000000pt;}
.h7{height:51.848439pt;}
.h1{height:57.833335pt;}
.h4{height:94.154947pt;}
.hf{height:94.156253pt;}
.h6{height:219.656251pt;}
.he{height:267.658853pt;}
.hd{height:325.877600pt;}
.hb{height:332.923173pt;}
.hc{height:340.121093pt;}
.h0{height:1122.666667pt;}
.w4{width:207.000000pt;}
.w3{width:209.000000pt;}
.w5{width:422.999960pt;}
.w2{width:442.999960pt;}
.w6{width:485.999960pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xe{left:6.000000pt;}
.x13{left:10.008194pt;}
.x12{left:14.836662pt;}
.x11{left:47.971573pt;}
.x16{left:50.276924pt;}
.xa{left:62.438995pt;}
.x14{left:73.215294pt;}
.x9{left:86.375107pt;}
.x3{left:94.488189pt;}
.x7{left:106.488189pt;}
.x6{left:118.488189pt;}
.xf{left:132.488189pt;}
.x4{left:142.488189pt;}
.x15{left:153.488189pt;}
.x8{left:175.488200pt;}
.xc{left:178.488189pt;}
.x1{left:185.423133pt;}
.x2{left:232.328033pt;}
.xd{left:489.212560pt;}
.x10{left:491.212560pt;}
.xb{left:685.884489pt;}
.x5{left:692.548549pt;}
}




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