
    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_1a44f0a74c8affdeadb4a7ab.woff')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_e5b399d7793213ed7aa980db.woff')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_cfb6542600a86cb8b29817b9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.107422;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_3b39d7a3b16dbb51cbf7b7dc.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708008;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_39333238e403ea6780fa066d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.948242;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_d5004ad2fcb8a8a4cb970407.woff')format("woff");}.ff7{font-family:ff7;line-height:1.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:ff8;src:url('chunks/assets/font_8eeb1ad77b5f574f62b4c6c3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.948242;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;}
.m1{transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,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);}
.m3{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);}
.v4{vertical-align:-84.000000px;}
.v9{vertical-align:-27.000000px;}
.v3{vertical-align:-21.000000px;}
.v6{vertical-align:-15.000000px;}
.v1{vertical-align:-9.000000px;}
.va{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:15.000000px;}
.v2{vertical-align:21.000000px;}
.v5{vertical-align:27.000000px;}
.v8{vertical-align:42.000000px;}
.vc{vertical-align:45.000000px;}
.vd{vertical-align:48.000000px;}
.vb{vertical-align:54.000000px;}
.lsa{letter-spacing:-1.032000px;}
.ls16{letter-spacing:-0.984000px;}
.ls2b{letter-spacing:-0.888000px;}
.ls9{letter-spacing:-0.036000px;}
.ls19{letter-spacing:-0.024000px;}
.ls8{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1a{letter-spacing:0.024000px;}
.ls26{letter-spacing:0.096000px;}
.ls28{letter-spacing:0.204000px;}
.ls1b{letter-spacing:0.252000px;}
.ls1{letter-spacing:0.312000px;}
.ls18{letter-spacing:0.336000px;}
.ls5{letter-spacing:0.432000px;}
.ls2a{letter-spacing:0.471000px;}
.lsb{letter-spacing:0.492000px;}
.ls24{letter-spacing:0.552000px;}
.ls2f{letter-spacing:0.636000px;}
.ls1e{letter-spacing:0.672000px;}
.ls22{letter-spacing:0.696000px;}
.ls30{letter-spacing:0.726000px;}
.ls27{letter-spacing:0.756000px;}
.ls31{letter-spacing:0.816000px;}
.ls25{letter-spacing:0.846000px;}
.ls20{letter-spacing:0.852000px;}
.ls6{letter-spacing:0.984000px;}
.ls17{letter-spacing:1.008000px;}
.ls1d{letter-spacing:1.044000px;}
.ls1f{letter-spacing:1.074000px;}
.ls14{letter-spacing:1.104000px;}
.ls4{letter-spacing:1.134000px;}
.ls32{letter-spacing:1.140000px;}
.lse{letter-spacing:1.164000px;}
.ls23{letter-spacing:1.200000px;}
.ls2{letter-spacing:1.320000px;}
.ls7{letter-spacing:1.908000px;}
.ls1c{letter-spacing:1.968000px;}
.ls2c{letter-spacing:2.016000px;}
.ls21{letter-spacing:2.880000px;}
.ls2d{letter-spacing:3.276000px;}
.lsd{letter-spacing:3.471000px;}
.ls29{letter-spacing:3.492000px;}
.ls2e{letter-spacing:3.984000px;}
.ls15{letter-spacing:7.134000px;}
.ls13{letter-spacing:15.216000px;}
.ls11{letter-spacing:15.396000px;}
.ls12{letter-spacing:20.052000px;}
.ls10{letter-spacing:20.664000px;}
.lsf{letter-spacing:21.471000px;}
.ls0{letter-spacing:166.806000px;}
.lsc{letter-spacing:880.704000px;}
.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;}
}
.ws17{word-spacing:-72.000000px;}
.ws2{word-spacing:-29.988000px;}
.ws18{word-spacing:-22.032000px;}
.ws10{word-spacing:-21.984000px;}
.ws11{word-spacing:-21.216000px;}
.ws8{word-spacing:-21.024000px;}
.ws9{word-spacing:-21.000000px;}
.ws1a{word-spacing:-20.040000px;}
.ws4{word-spacing:-20.016000px;}
.wsf{word-spacing:-19.992000px;}
.ws7{word-spacing:-19.032000px;}
.ws5{word-spacing:-18.984000px;}
.wse{word-spacing:-16.824000px;}
.ws3{word-spacing:-16.680000px;}
.ws19{word-spacing:-16.536000px;}
.wsa{word-spacing:-16.176000px;}
.wsc{word-spacing:-15.840000px;}
.ws0{word-spacing:-13.656000px;}
.ws1{word-spacing:-13.344000px;}
.ws12{word-spacing:-12.294000px;}
.ws15{word-spacing:-11.691000px;}
.ws14{word-spacing:-11.220000px;}
.ws6{word-spacing:0.000000px;}
.wsd{word-spacing:5.652000px;}
.wsb{word-spacing:8.832000px;}
.ws13{word-spacing:11.916000px;}
.ws16{word-spacing:138.228000px;}
._1b{margin-left:-5.664000px;}
._6{margin-left:-4.398000px;}
._2{margin-left:-2.454000px;}
._1{margin-left:-1.008000px;}
._0{width:1.584000px;}
._3{width:3.222000px;}
._5{width:4.236000px;}
._9{width:5.748000px;}
._15{width:7.578000px;}
._d{width:9.072000px;}
._e{width:10.662000px;}
._13{width:12.702000px;}
._14{width:13.824000px;}
._16{width:15.798000px;}
._19{width:16.896000px;}
._17{width:18.216000px;}
._1c{width:19.770000px;}
._c{width:21.888000px;}
._1d{width:22.938000px;}
._b{width:24.738000px;}
._a{width:25.872000px;}
._1a{width:27.870000px;}
._10{width:29.898000px;}
._12{width:31.752000px;}
._11{width:33.912000px;}
._20{width:36.798000px;}
._1f{width:37.800000px;}
._f{width:39.816000px;}
._18{width:41.850000px;}
._21{width:50.070000px;}
._1e{width:71.070000px;}
._7{width:488.334000px;}
._4{width:508.986000px;}
._8{width:1173.654000px;}
.fc4{color:rgb(92,46,145);}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:30.000000px;}
.fs4{font-size:34.059259px;}
.fs0{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:66.754693px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yab{bottom:0.750000px;}
.y9d{bottom:6.750000px;}
.yaa{bottom:12.750000px;}
.yac{bottom:14.250000px;}
.y6{bottom:28.413862px;}
.y7{bottom:36.114559px;}
.y4{bottom:45.787500px;}
.y3{bottom:65.287500px;}
.y121{bottom:92.325000px;}
.y3a{bottom:99.825000px;}
.yf7{bottom:101.325000px;}
.y10e{bottom:104.325000px;}
.y88{bottom:109.575000px;}
.ya9{bottom:113.325000px;}
.y39{bottom:120.075000px;}
.yf6{bottom:122.325000px;}
.y10d{bottom:125.325000px;}
.y132{bottom:126.075000px;}
.y87{bottom:132.825000px;}
.ya8{bottom:133.575000px;}
.y66{bottom:138.825000px;}
.y38{bottom:140.362500px;}
.ydb{bottom:141.112500px;}
.yf5{bottom:142.612500px;}
.y10c{bottom:145.612500px;}
.y131{bottom:146.362500px;}
.y86{bottom:153.120000px;}
.ya7{bottom:154.620000px;}
.y37{bottom:158.370000px;}
.y65{bottom:159.105000px;}
.yda{bottom:162.105000px;}
.yf4{bottom:163.620000px;}
.y10b{bottom:166.620000px;}
.y85{bottom:174.120000px;}
.ya6{bottom:175.605000px;}
.y36{bottom:178.620000px;}
.y64{bottom:180.120000px;}
.yd9{bottom:182.355000px;}
.yf3{bottom:183.870000px;}
.y130{bottom:185.370000px;}
.y10a{bottom:187.620000px;}
.y84{bottom:194.370000px;}
.ya5{bottom:195.855000px;}
.y35{bottom:199.605000px;}
.y63{bottom:201.120000px;}
.yd8{bottom:203.355000px;}
.yf2{bottom:204.900000px;}
.y12f{bottom:206.400000px;}
.y109{bottom:207.900000px;}
.y83{bottom:215.400000px;}
.ya4{bottom:216.900000px;}
.y34{bottom:220.650000px;}
.y62{bottom:221.400000px;}
.yd7{bottom:223.650000px;}
.yf1{bottom:225.900000px;}
.y108{bottom:228.900000px;}
.y82{bottom:236.400000px;}
.y120{bottom:237.150000px;}
.ya3{bottom:237.900000px;}
.y33{bottom:240.900000px;}
.y61{bottom:242.400000px;}
.yd6{bottom:244.650000px;}
.yf0{bottom:246.150000px;}
.y107{bottom:249.150000px;}
.y12e{bottom:249.900000px;}
.y81{bottom:256.650000px;}
.ya2{bottom:258.150000px;}
.y11f{bottom:258.900000px;}
.y32{bottom:261.900000px;}
.y60{bottom:262.650000px;}
.yd5{bottom:265.650000px;}
.yef{bottom:267.150000px;}
.y106{bottom:270.195000px;}
.y80{bottom:277.695000px;}
.ya1{bottom:279.195000px;}
.y31{bottom:282.195000px;}
.y11e{bottom:282.945000px;}
.y5f{bottom:283.695000px;}
.yd4{bottom:285.945000px;}
.yee{bottom:287.445000px;}
.y105{bottom:291.195000px;}
.y7f{bottom:297.945000px;}
.ya0{bottom:300.195000px;}
.y30{bottom:303.195000px;}
.y5e{bottom:304.695000px;}
.y11d{bottom:306.195000px;}
.yd3{bottom:306.945000px;}
.yed{bottom:308.445000px;}
.y104{bottom:311.445000px;}
.y7e{bottom:318.945000px;}
.y9f{bottom:320.445000px;}
.y2f{bottom:324.195000px;}
.y5d{bottom:324.945000px;}
.yd2{bottom:327.195000px;}
.yec{bottom:329.445000px;}
.y103{bottom:332.475000px;}
.y7d{bottom:339.975000px;}
.y11c{bottom:342.225000px;}
.y9e{bottom:343.725000px;}
.y2e{bottom:344.475000px;}
.y5c{bottom:345.975000px;}
.yd1{bottom:348.225000px;}
.yeb{bottom:349.725000px;}
.y102{bottom:352.725000px;}
.y12d{bottom:353.475000px;}
.y7c{bottom:360.225000px;}
.y9c{bottom:360.975000px;}
.y11b{bottom:363.225000px;}
.y2d{bottom:365.475000px;}
.y5b{bottom:366.225000px;}
.yd0{bottom:369.225000px;}
.yea{bottom:370.725000px;}
.y101{bottom:373.725000px;}
.y7b{bottom:381.225000px;}
.y11a{bottom:383.475000px;}
.y2c{bottom:385.725000px;}
.y5a{bottom:387.225000px;}
.y9b{bottom:388.725000px;}
.ycf{bottom:389.475000px;}
.ye9{bottom:390.975000px;}
.y100{bottom:394.725000px;}
.y7a{bottom:401.505000px;}
.y119{bottom:404.505000px;}
.y2b{bottom:405.255000px;}
.y59{bottom:407.505000px;}
.yce{bottom:410.505000px;}
.y9a{bottom:411.255000px;}
.ye8{bottom:412.005000px;}
.yff{bottom:415.005000px;}
.y2a{bottom:420.255000px;}
.y79{bottom:422.505000px;}
.y118{bottom:425.505000px;}
.y58{bottom:428.505000px;}
.ycd{bottom:430.755000px;}
.y99{bottom:432.255000px;}
.ye7{bottom:433.005000px;}
.yfe{bottom:436.005000px;}
.y29{bottom:441.255000px;}
.y78{bottom:443.505000px;}
.y117{bottom:446.505000px;}
.y57{bottom:449.505000px;}
.ycc{bottom:451.755000px;}
.y98{bottom:453.255000px;}
.yfd{bottom:457.005000px;}
.y28{bottom:462.300000px;}
.y77{bottom:463.800000px;}
.y116{bottom:466.800000px;}
.y56{bottom:469.800000px;}
.ycb{bottom:472.800000px;}
.y97{bottom:474.300000px;}
.yfc{bottom:477.300000px;}
.y27{bottom:482.550000px;}
.y76{bottom:484.800000px;}
.y115{bottom:487.800000px;}
.y55{bottom:490.800000px;}
.yca{bottom:493.050000px;}
.y96{bottom:494.550000px;}
.yfb{bottom:498.300000px;}
.y26{bottom:503.550000px;}
.y75{bottom:505.050000px;}
.y114{bottom:508.050000px;}
.y54{bottom:511.050000px;}
.yc9{bottom:514.050000px;}
.y95{bottom:515.550000px;}
.y12c{bottom:518.550000px;}
.y25{bottom:523.800000px;}
.y74{bottom:526.080000px;}
.y113{bottom:529.095000px;}
.ye6{bottom:530.595000px;}
.y53{bottom:532.095000px;}
.yfa{bottom:533.595000px;}
.yc8{bottom:534.345000px;}
.y94{bottom:535.845000px;}
.y12b{bottom:539.580000px;}
.y24{bottom:544.830000px;}
.y73{bottom:547.095000px;}
.y112{bottom:550.080000px;}
.ye5{bottom:551.580000px;}
.y52{bottom:553.080000px;}
.yf9{bottom:554.595000px;}
.yc7{bottom:555.345000px;}
.y93{bottom:556.830000px;}
.y12a{bottom:560.595000px;}
.y23{bottom:565.080000px;}
.y72{bottom:567.345000px;}
.y111{bottom:571.095000px;}
.ye4{bottom:572.595000px;}
.y51{bottom:573.330000px;}
.yf8{bottom:575.595000px;}
.yc6{bottom:576.345000px;}
.y92{bottom:577.845000px;}
.y22{bottom:580.845000px;}
.y71{bottom:588.345000px;}
.y110{bottom:592.125000px;}
.ye3{bottom:593.625000px;}
.y50{bottom:594.375000px;}
.yc5{bottom:596.625000px;}
.y91{bottom:598.125000px;}
.y21{bottom:601.875000px;}
.y70{bottom:608.625000px;}
.y10f{bottom:609.375000px;}
.ye2{bottom:613.875000px;}
.yc4{bottom:617.625000px;}
.y90{bottom:619.125000px;}
.y20{bottom:622.125000px;}
.y6f{bottom:629.625000px;}
.ye1{bottom:634.875000px;}
.y4f{bottom:636.375000px;}
.yc3{bottom:637.875000px;}
.y8f{bottom:639.375000px;}
.y1f{bottom:643.125000px;}
.y6e{bottom:650.625000px;}
.ye0{bottom:655.905000px;}
.y4e{bottom:656.670000px;}
.yc2{bottom:658.905000px;}
.y8e{bottom:660.405000px;}
.y1e{bottom:664.155000px;}
.y6d{bottom:670.905000px;}
.ydf{bottom:673.170000px;}
.y4d{bottom:677.655000px;}
.yc1{bottom:680.655000px;}
.y8d{bottom:681.405000px;}
.y1d{bottom:684.405000px;}
.y6c{bottom:691.920000px;}
.y4c{bottom:698.670000px;}
.y8c{bottom:701.655000px;}
.yc0{bottom:703.920000px;}
.y1c{bottom:705.420000px;}
.y4b{bottom:718.950000px;}
.y8b{bottom:722.700000px;}
.ybf{bottom:724.200000px;}
.y1b{bottom:725.700000px;}
.y6b{bottom:727.200000px;}
.y4a{bottom:739.950000px;}
.ybe{bottom:745.200000px;}
.y1a{bottom:746.700000px;}
.y6a{bottom:748.200000px;}
.y8a{bottom:749.700000px;}
.y49{bottom:761.700000px;}
.y89{bottom:763.950000px;}
.ybd{bottom:766.200000px;}
.y19{bottom:767.700000px;}
.y69{bottom:769.200000px;}
.y48{bottom:784.995000px;}
.ybc{bottom:786.495000px;}
.y18{bottom:787.245000px;}
.y129{bottom:787.995000px;}
.y68{bottom:789.480000px;}
.y47{bottom:805.245000px;}
.y17{bottom:805.980000px;}
.y67{bottom:806.745000px;}
.ybb{bottom:807.495000px;}
.y128{bottom:808.995000px;}
.y46{bottom:826.230000px;}
.yba{bottom:827.745000px;}
.y16{bottom:829.245000px;}
.y45{bottom:846.495000px;}
.yb9{bottom:848.775000px;}
.y15{bottom:850.275000px;}
.y44{bottom:867.525000px;}
.yb8{bottom:869.775000px;}
.y14{bottom:871.275000px;}
.y43{bottom:888.525000px;}
.y13{bottom:890.775000px;}
.y127{bottom:891.525000px;}
.y12{bottom:908.775000px;}
.yb7{bottom:911.820000px;}
.y126{bottom:912.570000px;}
.y11{bottom:929.820000px;}
.yb6{bottom:932.070000px;}
.y125{bottom:932.820000px;}
.y10{bottom:950.070000px;}
.yb5{bottom:953.070000px;}
.y124{bottom:953.820000px;}
.yf{bottom:971.070000px;}
.yb4{bottom:974.070000px;}
.y123{bottom:974.820000px;}
.ye{bottom:992.100000px;}
.yb3{bottom:995.100000px;}
.yd{bottom:1011.600000px;}
.y42{bottom:1012.350000px;}
.yb2{bottom:1015.350000px;}
.y122{bottom:1016.100000px;}
.yc{bottom:1028.100000px;}
.y41{bottom:1033.350000px;}
.yb1{bottom:1036.350000px;}
.y40{bottom:1053.630000px;}
.yb0{bottom:1057.380000px;}
.yb{bottom:1058.880000px;}
.y3f{bottom:1074.630000px;}
.yaf{bottom:1077.630000px;}
.yde{bottom:1078.380000px;}
.ya{bottom:1090.380000px;}
.y3e{bottom:1095.630000px;}
.yae{bottom:1098.630000px;}
.y3d{bottom:1115.925000px;}
.yad{bottom:1119.675000px;}
.y9{bottom:1121.175000px;}
.y3c{bottom:1136.925000px;}
.ydd{bottom:1139.925000px;}
.y8{bottom:1152.675000px;}
.y3b{bottom:1158.675000px;}
.ydc{bottom:1160.925000px;}
.y2{bottom:1189.455000px;}
.y5{bottom:1192.050000px;}
.y1{bottom:1208.955000px;}
.h10{height:24.000000px;}
.h6{height:33.876323px;}
.h11{height:41.287500px;}
.he{height:41.976562px;}
.h1{height:43.054688px;}
.h3{height:44.070184px;}
.h5{height:44.098032px;}
.hd{height:48.436523px;}
.h2{height:49.992188px;}
.h14{height:53.121094px;}
.hb{height:53.818359px;}
.h9{height:62.964844px;}
.ha{height:64.582031px;}
.h4{height:66.396148px;}
.hc{height:73.458984px;}
.hf{height:91.687500px;}
.h8{height:94.447266px;}
.h7{height:96.873047px;}
.h13{height:136.687500px;}
.h12{height:145.687500px;}
.h0{height:1263.000000px;}
.w5{width:38.287500px;}
.w7{width:42.037500px;}
.w2{width:53.450377px;}
.w3{width:53.557224px;}
.w4{width:659.775000px;}
.w6{width:680.820000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:8.250000px;}
.x2{left:73.491283px;}
.x1{left:84.824987px;}
.x1d{left:87.074987px;}
.x5{left:88.574987px;}
.x27{left:90.824987px;}
.x1f{left:92.324987px;}
.x10{left:93.824987px;}
.x22{left:99.074987px;}
.x25{left:100.574987px;}
.x23{left:105.074987px;}
.x20{left:106.574987px;}
.x7{left:108.074987px;}
.x1e{left:111.074987px;}
.x26{left:115.612487px;}
.x29{left:118.612487px;}
.x12{left:121.612487px;}
.x2b{left:127.612487px;}
.x11{left:129.862487px;}
.x28{left:142.612487px;}
.x13{left:157.619987px;}
.x2c{left:180.899987px;}
.x18{left:190.650000px;}
.x8{left:192.149987px;}
.x9{left:201.899987px;}
.xa{left:225.944987px;}
.xb{left:233.444987px;}
.x6{left:241.694987px;}
.x14{left:243.944987px;}
.x15{left:260.475000px;}
.xe{left:336.254987px;}
.xd{left:385.049987px;}
.x2a{left:389.594987px;}
.x1b{left:397.094987px;}
.xc{left:403.844987px;}
.x3{left:407.594987px;}
.x19{left:414.330000px;}
.x4{left:446.624987px;}
.x1c{left:740.099987px;}
.x16{left:744.600000px;}
.x21{left:754.349987px;}
.xf{left:761.879987px;}
.x1a{left:765.645000px;}
.x24{left:786.629987px;}
@media print{
.v4{vertical-align:-74.666667pt;}
.v9{vertical-align:-24.000000pt;}
.v3{vertical-align:-18.666667pt;}
.v6{vertical-align:-13.333333pt;}
.v1{vertical-align:-8.000000pt;}
.va{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:13.333333pt;}
.v2{vertical-align:18.666667pt;}
.v5{vertical-align:24.000000pt;}
.v8{vertical-align:37.333333pt;}
.vc{vertical-align:40.000000pt;}
.vd{vertical-align:42.666667pt;}
.vb{vertical-align:48.000000pt;}
.lsa{letter-spacing:-0.917333pt;}
.ls16{letter-spacing:-0.874667pt;}
.ls2b{letter-spacing:-0.789333pt;}
.ls9{letter-spacing:-0.032000pt;}
.ls19{letter-spacing:-0.021333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1a{letter-spacing:0.021333pt;}
.ls26{letter-spacing:0.085333pt;}
.ls28{letter-spacing:0.181333pt;}
.ls1b{letter-spacing:0.224000pt;}
.ls1{letter-spacing:0.277333pt;}
.ls18{letter-spacing:0.298667pt;}
.ls5{letter-spacing:0.384000pt;}
.ls2a{letter-spacing:0.418667pt;}
.lsb{letter-spacing:0.437333pt;}
.ls24{letter-spacing:0.490667pt;}
.ls2f{letter-spacing:0.565333pt;}
.ls1e{letter-spacing:0.597333pt;}
.ls22{letter-spacing:0.618667pt;}
.ls30{letter-spacing:0.645333pt;}
.ls27{letter-spacing:0.672000pt;}
.ls31{letter-spacing:0.725333pt;}
.ls25{letter-spacing:0.752000pt;}
.ls20{letter-spacing:0.757333pt;}
.ls6{letter-spacing:0.874667pt;}
.ls17{letter-spacing:0.896000pt;}
.ls1d{letter-spacing:0.928000pt;}
.ls1f{letter-spacing:0.954667pt;}
.ls14{letter-spacing:0.981333pt;}
.ls4{letter-spacing:1.008000pt;}
.ls32{letter-spacing:1.013333pt;}
.lse{letter-spacing:1.034667pt;}
.ls23{letter-spacing:1.066667pt;}
.ls2{letter-spacing:1.173333pt;}
.ls7{letter-spacing:1.696000pt;}
.ls1c{letter-spacing:1.749333pt;}
.ls2c{letter-spacing:1.792000pt;}
.ls21{letter-spacing:2.560000pt;}
.ls2d{letter-spacing:2.912000pt;}
.lsd{letter-spacing:3.085333pt;}
.ls29{letter-spacing:3.104000pt;}
.ls2e{letter-spacing:3.541333pt;}
.ls15{letter-spacing:6.341333pt;}
.ls13{letter-spacing:13.525333pt;}
.ls11{letter-spacing:13.685333pt;}
.ls12{letter-spacing:17.824000pt;}
.ls10{letter-spacing:18.368000pt;}
.lsf{letter-spacing:19.085333pt;}
.ls0{letter-spacing:148.272000pt;}
.lsc{letter-spacing:782.848000pt;}
.ws17{word-spacing:-64.000000pt;}
.ws2{word-spacing:-26.656000pt;}
.ws18{word-spacing:-19.584000pt;}
.ws10{word-spacing:-19.541333pt;}
.ws11{word-spacing:-18.858667pt;}
.ws8{word-spacing:-18.688000pt;}
.ws9{word-spacing:-18.666667pt;}
.ws1a{word-spacing:-17.813333pt;}
.ws4{word-spacing:-17.792000pt;}
.wsf{word-spacing:-17.770667pt;}
.ws7{word-spacing:-16.917333pt;}
.ws5{word-spacing:-16.874667pt;}
.wse{word-spacing:-14.954667pt;}
.ws3{word-spacing:-14.826667pt;}
.ws19{word-spacing:-14.698667pt;}
.wsa{word-spacing:-14.378667pt;}
.wsc{word-spacing:-14.080000pt;}
.ws0{word-spacing:-12.138667pt;}
.ws1{word-spacing:-11.861333pt;}
.ws12{word-spacing:-10.928000pt;}
.ws15{word-spacing:-10.392000pt;}
.ws14{word-spacing:-9.973333pt;}
.ws6{word-spacing:0.000000pt;}
.wsd{word-spacing:5.024000pt;}
.wsb{word-spacing:7.850667pt;}
.ws13{word-spacing:10.592000pt;}
.ws16{word-spacing:122.869333pt;}
._1b{margin-left:-5.034667pt;}
._6{margin-left:-3.909333pt;}
._2{margin-left:-2.181333pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.408000pt;}
._3{width:2.864000pt;}
._5{width:3.765333pt;}
._9{width:5.109333pt;}
._15{width:6.736000pt;}
._d{width:8.064000pt;}
._e{width:9.477333pt;}
._13{width:11.290667pt;}
._14{width:12.288000pt;}
._16{width:14.042667pt;}
._19{width:15.018667pt;}
._17{width:16.192000pt;}
._1c{width:17.573333pt;}
._c{width:19.456000pt;}
._1d{width:20.389333pt;}
._b{width:21.989333pt;}
._a{width:22.997333pt;}
._1a{width:24.773333pt;}
._10{width:26.576000pt;}
._12{width:28.224000pt;}
._11{width:30.144000pt;}
._20{width:32.709333pt;}
._1f{width:33.600000pt;}
._f{width:35.392000pt;}
._18{width:37.200000pt;}
._21{width:44.506667pt;}
._1e{width:63.173333pt;}
._7{width:434.074667pt;}
._4{width:452.432000pt;}
._8{width:1043.248000pt;}
.fs1{font-size:26.666667pt;}
.fs4{font-size:30.274897pt;}
.fs0{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:59.337505pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:0.666667pt;}
.y9d{bottom:6.000000pt;}
.yaa{bottom:11.333333pt;}
.yac{bottom:12.666667pt;}
.y6{bottom:25.256766pt;}
.y7{bottom:32.101830pt;}
.y4{bottom:40.700000pt;}
.y3{bottom:58.033333pt;}
.y121{bottom:82.066667pt;}
.y3a{bottom:88.733333pt;}
.yf7{bottom:90.066667pt;}
.y10e{bottom:92.733333pt;}
.y88{bottom:97.400000pt;}
.ya9{bottom:100.733333pt;}
.y39{bottom:106.733333pt;}
.yf6{bottom:108.733333pt;}
.y10d{bottom:111.400000pt;}
.y132{bottom:112.066667pt;}
.y87{bottom:118.066667pt;}
.ya8{bottom:118.733333pt;}
.y66{bottom:123.400000pt;}
.y38{bottom:124.766667pt;}
.ydb{bottom:125.433333pt;}
.yf5{bottom:126.766667pt;}
.y10c{bottom:129.433333pt;}
.y131{bottom:130.100000pt;}
.y86{bottom:136.106667pt;}
.ya7{bottom:137.440000pt;}
.y37{bottom:140.773333pt;}
.y65{bottom:141.426667pt;}
.yda{bottom:144.093333pt;}
.yf4{bottom:145.440000pt;}
.y10b{bottom:148.106667pt;}
.y85{bottom:154.773333pt;}
.ya6{bottom:156.093333pt;}
.y36{bottom:158.773333pt;}
.y64{bottom:160.106667pt;}
.yd9{bottom:162.093333pt;}
.yf3{bottom:163.440000pt;}
.y130{bottom:164.773333pt;}
.y10a{bottom:166.773333pt;}
.y84{bottom:172.773333pt;}
.ya5{bottom:174.093333pt;}
.y35{bottom:177.426667pt;}
.y63{bottom:178.773333pt;}
.yd8{bottom:180.760000pt;}
.yf2{bottom:182.133333pt;}
.y12f{bottom:183.466667pt;}
.y109{bottom:184.800000pt;}
.y83{bottom:191.466667pt;}
.ya4{bottom:192.800000pt;}
.y34{bottom:196.133333pt;}
.y62{bottom:196.800000pt;}
.yd7{bottom:198.800000pt;}
.yf1{bottom:200.800000pt;}
.y108{bottom:203.466667pt;}
.y82{bottom:210.133333pt;}
.y120{bottom:210.800000pt;}
.ya3{bottom:211.466667pt;}
.y33{bottom:214.133333pt;}
.y61{bottom:215.466667pt;}
.yd6{bottom:217.466667pt;}
.yf0{bottom:218.800000pt;}
.y107{bottom:221.466667pt;}
.y12e{bottom:222.133333pt;}
.y81{bottom:228.133333pt;}
.ya2{bottom:229.466667pt;}
.y11f{bottom:230.133333pt;}
.y32{bottom:232.800000pt;}
.y60{bottom:233.466667pt;}
.yd5{bottom:236.133333pt;}
.yef{bottom:237.466667pt;}
.y106{bottom:240.173333pt;}
.y80{bottom:246.840000pt;}
.ya1{bottom:248.173333pt;}
.y31{bottom:250.840000pt;}
.y11e{bottom:251.506667pt;}
.y5f{bottom:252.173333pt;}
.yd4{bottom:254.173333pt;}
.yee{bottom:255.506667pt;}
.y105{bottom:258.840000pt;}
.y7f{bottom:264.840000pt;}
.ya0{bottom:266.840000pt;}
.y30{bottom:269.506667pt;}
.y5e{bottom:270.840000pt;}
.y11d{bottom:272.173333pt;}
.yd3{bottom:272.840000pt;}
.yed{bottom:274.173333pt;}
.y104{bottom:276.840000pt;}
.y7e{bottom:283.506667pt;}
.y9f{bottom:284.840000pt;}
.y2f{bottom:288.173333pt;}
.y5d{bottom:288.840000pt;}
.yd2{bottom:290.840000pt;}
.yec{bottom:292.840000pt;}
.y103{bottom:295.533333pt;}
.y7d{bottom:302.200000pt;}
.y11c{bottom:304.200000pt;}
.y9e{bottom:305.533333pt;}
.y2e{bottom:306.200000pt;}
.y5c{bottom:307.533333pt;}
.yd1{bottom:309.533333pt;}
.yeb{bottom:310.866667pt;}
.y102{bottom:313.533333pt;}
.y12d{bottom:314.200000pt;}
.y7c{bottom:320.200000pt;}
.y9c{bottom:320.866667pt;}
.y11b{bottom:322.866667pt;}
.y2d{bottom:324.866667pt;}
.y5b{bottom:325.533333pt;}
.yd0{bottom:328.200000pt;}
.yea{bottom:329.533333pt;}
.y101{bottom:332.200000pt;}
.y7b{bottom:338.866667pt;}
.y11a{bottom:340.866667pt;}
.y2c{bottom:342.866667pt;}
.y5a{bottom:344.200000pt;}
.y9b{bottom:345.533333pt;}
.ycf{bottom:346.200000pt;}
.ye9{bottom:347.533333pt;}
.y100{bottom:350.866667pt;}
.y7a{bottom:356.893333pt;}
.y119{bottom:359.560000pt;}
.y2b{bottom:360.226667pt;}
.y59{bottom:362.226667pt;}
.yce{bottom:364.893333pt;}
.y9a{bottom:365.560000pt;}
.ye8{bottom:366.226667pt;}
.yff{bottom:368.893333pt;}
.y2a{bottom:373.560000pt;}
.y79{bottom:375.560000pt;}
.y118{bottom:378.226667pt;}
.y58{bottom:380.893333pt;}
.ycd{bottom:382.893333pt;}
.y99{bottom:384.226667pt;}
.ye7{bottom:384.893333pt;}
.yfe{bottom:387.560000pt;}
.y29{bottom:392.226667pt;}
.y78{bottom:394.226667pt;}
.y117{bottom:396.893333pt;}
.y57{bottom:399.560000pt;}
.ycc{bottom:401.560000pt;}
.y98{bottom:402.893333pt;}
.yfd{bottom:406.226667pt;}
.y28{bottom:410.933333pt;}
.y77{bottom:412.266667pt;}
.y116{bottom:414.933333pt;}
.y56{bottom:417.600000pt;}
.ycb{bottom:420.266667pt;}
.y97{bottom:421.600000pt;}
.yfc{bottom:424.266667pt;}
.y27{bottom:428.933333pt;}
.y76{bottom:430.933333pt;}
.y115{bottom:433.600000pt;}
.y55{bottom:436.266667pt;}
.yca{bottom:438.266667pt;}
.y96{bottom:439.600000pt;}
.yfb{bottom:442.933333pt;}
.y26{bottom:447.600000pt;}
.y75{bottom:448.933333pt;}
.y114{bottom:451.600000pt;}
.y54{bottom:454.266667pt;}
.yc9{bottom:456.933333pt;}
.y95{bottom:458.266667pt;}
.y12c{bottom:460.933333pt;}
.y25{bottom:465.600000pt;}
.y74{bottom:467.626667pt;}
.y113{bottom:470.306667pt;}
.ye6{bottom:471.640000pt;}
.y53{bottom:472.973333pt;}
.yfa{bottom:474.306667pt;}
.yc8{bottom:474.973333pt;}
.y94{bottom:476.306667pt;}
.y12b{bottom:479.626667pt;}
.y24{bottom:484.293333pt;}
.y73{bottom:486.306667pt;}
.y112{bottom:488.960000pt;}
.ye5{bottom:490.293333pt;}
.y52{bottom:491.626667pt;}
.yf9{bottom:492.973333pt;}
.yc7{bottom:493.640000pt;}
.y93{bottom:494.960000pt;}
.y12a{bottom:498.306667pt;}
.y23{bottom:502.293333pt;}
.y72{bottom:504.306667pt;}
.y111{bottom:507.640000pt;}
.ye4{bottom:508.973333pt;}
.y51{bottom:509.626667pt;}
.yf8{bottom:511.640000pt;}
.yc6{bottom:512.306667pt;}
.y92{bottom:513.640000pt;}
.y22{bottom:516.306667pt;}
.y71{bottom:522.973333pt;}
.y110{bottom:526.333333pt;}
.ye3{bottom:527.666667pt;}
.y50{bottom:528.333333pt;}
.yc5{bottom:530.333333pt;}
.y91{bottom:531.666667pt;}
.y21{bottom:535.000000pt;}
.y70{bottom:541.000000pt;}
.y10f{bottom:541.666667pt;}
.ye2{bottom:545.666667pt;}
.yc4{bottom:549.000000pt;}
.y90{bottom:550.333333pt;}
.y20{bottom:553.000000pt;}
.y6f{bottom:559.666667pt;}
.ye1{bottom:564.333333pt;}
.y4f{bottom:565.666667pt;}
.yc3{bottom:567.000000pt;}
.y8f{bottom:568.333333pt;}
.y1f{bottom:571.666667pt;}
.y6e{bottom:578.333333pt;}
.ye0{bottom:583.026667pt;}
.y4e{bottom:583.706667pt;}
.yc2{bottom:585.693333pt;}
.y8e{bottom:587.026667pt;}
.y1e{bottom:590.360000pt;}
.y6d{bottom:596.360000pt;}
.ydf{bottom:598.373333pt;}
.y4d{bottom:602.360000pt;}
.yc1{bottom:605.026667pt;}
.y8d{bottom:605.693333pt;}
.y1d{bottom:608.360000pt;}
.y6c{bottom:615.040000pt;}
.y4c{bottom:621.040000pt;}
.y8c{bottom:623.693333pt;}
.yc0{bottom:625.706667pt;}
.y1c{bottom:627.040000pt;}
.y4b{bottom:639.066667pt;}
.y8b{bottom:642.400000pt;}
.ybf{bottom:643.733333pt;}
.y1b{bottom:645.066667pt;}
.y6b{bottom:646.400000pt;}
.y4a{bottom:657.733333pt;}
.ybe{bottom:662.400000pt;}
.y1a{bottom:663.733333pt;}
.y6a{bottom:665.066667pt;}
.y8a{bottom:666.400000pt;}
.y49{bottom:677.066667pt;}
.y89{bottom:679.066667pt;}
.ybd{bottom:681.066667pt;}
.y19{bottom:682.400000pt;}
.y69{bottom:683.733333pt;}
.y48{bottom:697.773333pt;}
.ybc{bottom:699.106667pt;}
.y18{bottom:699.773333pt;}
.y129{bottom:700.440000pt;}
.y68{bottom:701.760000pt;}
.y47{bottom:715.773333pt;}
.y17{bottom:716.426667pt;}
.y67{bottom:717.106667pt;}
.ybb{bottom:717.773333pt;}
.y128{bottom:719.106667pt;}
.y46{bottom:734.426667pt;}
.yba{bottom:735.773333pt;}
.y16{bottom:737.106667pt;}
.y45{bottom:752.440000pt;}
.yb9{bottom:754.466667pt;}
.y15{bottom:755.800000pt;}
.y44{bottom:771.133333pt;}
.yb8{bottom:773.133333pt;}
.y14{bottom:774.466667pt;}
.y43{bottom:789.800000pt;}
.y13{bottom:791.800000pt;}
.y127{bottom:792.466667pt;}
.y12{bottom:807.800000pt;}
.yb7{bottom:810.506667pt;}
.y126{bottom:811.173333pt;}
.y11{bottom:826.506667pt;}
.yb6{bottom:828.506667pt;}
.y125{bottom:829.173333pt;}
.y10{bottom:844.506667pt;}
.yb5{bottom:847.173333pt;}
.y124{bottom:847.840000pt;}
.yf{bottom:863.173333pt;}
.yb4{bottom:865.840000pt;}
.y123{bottom:866.506667pt;}
.ye{bottom:881.866667pt;}
.yb3{bottom:884.533333pt;}
.yd{bottom:899.200000pt;}
.y42{bottom:899.866667pt;}
.yb2{bottom:902.533333pt;}
.y122{bottom:903.200000pt;}
.yc{bottom:913.866667pt;}
.y41{bottom:918.533333pt;}
.yb1{bottom:921.200000pt;}
.y40{bottom:936.560000pt;}
.yb0{bottom:939.893333pt;}
.yb{bottom:941.226667pt;}
.y3f{bottom:955.226667pt;}
.yaf{bottom:957.893333pt;}
.yde{bottom:958.560000pt;}
.ya{bottom:969.226667pt;}
.y3e{bottom:973.893333pt;}
.yae{bottom:976.560000pt;}
.y3d{bottom:991.933333pt;}
.yad{bottom:995.266667pt;}
.y9{bottom:996.600000pt;}
.y3c{bottom:1010.600000pt;}
.ydd{bottom:1013.266667pt;}
.y8{bottom:1024.600000pt;}
.y3b{bottom:1029.933333pt;}
.ydc{bottom:1031.933333pt;}
.y2{bottom:1057.293333pt;}
.y5{bottom:1059.600000pt;}
.y1{bottom:1074.626667pt;}
.h10{height:21.333333pt;}
.h6{height:30.112287pt;}
.h11{height:36.700000pt;}
.he{height:37.312500pt;}
.h1{height:38.270833pt;}
.h3{height:39.173497pt;}
.h5{height:39.198251pt;}
.hd{height:43.054688pt;}
.h2{height:44.437500pt;}
.h14{height:47.218750pt;}
.hb{height:47.838542pt;}
.h9{height:55.968750pt;}
.ha{height:57.406250pt;}
.h4{height:59.018798pt;}
.hc{height:65.296875pt;}
.hf{height:81.500000pt;}
.h8{height:83.953125pt;}
.h7{height:86.109375pt;}
.h13{height:121.500000pt;}
.h12{height:129.500000pt;}
.h0{height:1122.666667pt;}
.w5{width:34.033333pt;}
.w7{width:37.366667pt;}
.w2{width:47.511447pt;}
.w3{width:47.606421pt;}
.w4{width:586.466667pt;}
.w6{width:605.173333pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:7.333333pt;}
.x2{left:65.325585pt;}
.x1{left:75.399988pt;}
.x1d{left:77.399988pt;}
.x5{left:78.733322pt;}
.x27{left:80.733322pt;}
.x1f{left:82.066655pt;}
.x10{left:83.399988pt;}
.x22{left:88.066655pt;}
.x25{left:89.399988pt;}
.x23{left:93.399988pt;}
.x20{left:94.733322pt;}
.x7{left:96.066655pt;}
.x1e{left:98.733322pt;}
.x26{left:102.766655pt;}
.x29{left:105.433322pt;}
.x12{left:108.099988pt;}
.x2b{left:113.433322pt;}
.x11{left:115.433322pt;}
.x28{left:126.766655pt;}
.x13{left:140.106655pt;}
.x2c{left:160.799988pt;}
.x18{left:169.466667pt;}
.x8{left:170.799988pt;}
.x9{left:179.466655pt;}
.xa{left:200.839988pt;}
.xb{left:207.506655pt;}
.x6{left:214.839988pt;}
.x14{left:216.839988pt;}
.x15{left:231.533333pt;}
.xe{left:298.893322pt;}
.xd{left:342.266655pt;}
.x2a{left:346.306655pt;}
.x1b{left:352.973322pt;}
.xc{left:358.973322pt;}
.x3{left:362.306655pt;}
.x19{left:368.293333pt;}
.x4{left:396.999988pt;}
.x1c{left:657.866655pt;}
.x16{left:661.866667pt;}
.x21{left:670.533322pt;}
.xf{left:677.226655pt;}
.x1a{left:680.573333pt;}
.x24{left:699.226655pt;}
}




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