
    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_eabc091c5d6b6882593bca2e.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_47a4c533af4228abfc8fb293.woff')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_5e74e6a156f408835c085b6c.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_1ddef65b40b0037df97074e6.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_7a322a3d9c66d3d3d4ba92e3.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_170ff3ee63cbf944fe65b106.woff')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v1{vertical-align:-15.000000px;}
.v4{vertical-align:-12.000000px;}
.v3{vertical-align:-9.000000px;}
.v5{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.000000px;}
.v9{vertical-align:33.000000px;}
.v8{vertical-align:45.000000px;}
.v7{vertical-align:48.000000px;}
.v6{vertical-align:54.000000px;}
.ls6{letter-spacing:-1.032000px;}
.ls7{letter-spacing:-0.984000px;}
.lse{letter-spacing:-0.888000px;}
.lsd{letter-spacing:-0.516000px;}
.ls11{letter-spacing:-0.240000px;}
.ls13{letter-spacing:-0.090000px;}
.ls5{letter-spacing:-0.036000px;}
.ls4{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.048000px;}
.lsf{letter-spacing:0.099000px;}
.ls25{letter-spacing:0.174000px;}
.ls16{letter-spacing:0.228000px;}
.lsc{letter-spacing:0.240000px;}
.ls12{letter-spacing:0.258000px;}
.ls1{letter-spacing:0.312000px;}
.ls15{letter-spacing:0.408000px;}
.ls1b{letter-spacing:0.432000px;}
.ls26{letter-spacing:0.492000px;}
.ls24{letter-spacing:0.936000px;}
.ls3{letter-spacing:0.984000px;}
.ls20{letter-spacing:1.008000px;}
.ls2{letter-spacing:1.320000px;}
.ls14{letter-spacing:1.440000px;}
.ls21{letter-spacing:1.908000px;}
.ls8{letter-spacing:1.968000px;}
.ls22{letter-spacing:2.088000px;}
.ls23{letter-spacing:2.148000px;}
.ls18{letter-spacing:2.517000px;}
.ls9{letter-spacing:3.000000px;}
.ls17{letter-spacing:3.270000px;}
.ls1d{letter-spacing:3.360000px;}
.lsb{letter-spacing:3.492000px;}
.lsa{letter-spacing:3.984000px;}
.ls1e{letter-spacing:9.492000px;}
.ls1c{letter-spacing:14.112000px;}
.ls10{letter-spacing:18.180000px;}
.ls1a{letter-spacing:21.216000px;}
.ls0{letter-spacing:166.806000px;}
.ls1f{letter-spacing:1065.417000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws2{word-spacing:-29.988000px;}
.ws8{word-spacing:-21.984000px;}
.ws21{word-spacing:-21.024000px;}
.wsa{word-spacing:-21.000000px;}
.ws4{word-spacing:-20.016000px;}
.ws5{word-spacing:-19.032000px;}
.ws6{word-spacing:-18.984000px;}
.ws3{word-spacing:-16.680000px;}
.wsb{word-spacing:-15.840000px;}
.wse{word-spacing:-14.952000px;}
.ws1f{word-spacing:-14.178000px;}
.ws0{word-spacing:-13.656000px;}
.ws1{word-spacing:-13.344000px;}
.ws17{word-spacing:-13.200000px;}
.ws1a{word-spacing:-13.110000px;}
.ws18{word-spacing:-12.960000px;}
.wsf{word-spacing:-11.319000px;}
.wsc{word-spacing:-10.704000px;}
.ws16{word-spacing:-9.240000px;}
.ws9{word-spacing:0.000000px;}
.ws11{word-spacing:5.550000px;}
.ws15{word-spacing:5.556000px;}
.ws12{word-spacing:5.580000px;}
.ws1e{word-spacing:6.318000px;}
.ws13{word-spacing:8.400000px;}
.ws1d{word-spacing:8.520000px;}
.ws14{word-spacing:8.580000px;}
.ws10{word-spacing:9.942000px;}
.ws1b{word-spacing:10.716000px;}
.ws20{word-spacing:10.902000px;}
.ws1c{word-spacing:10.986000px;}
.ws19{word-spacing:11.166000px;}
.wsd{word-spacing:12.942000px;}
._e{margin-left:-5.730000px;}
._5{margin-left:-4.446000px;}
._2{margin-left:-2.454000px;}
._1{margin-left:-1.008000px;}
._0{width:1.584000px;}
._3{width:3.222000px;}
._8{width:4.980000px;}
._9{width:6.912000px;}
._12{width:8.016000px;}
._a{width:9.606000px;}
._d{width:10.800000px;}
._1a{width:11.814000px;}
._10{width:12.888000px;}
._f{width:13.920000px;}
._b{width:15.912000px;}
._c{width:17.100000px;}
._11{width:18.594000px;}
._17{width:19.974000px;}
._19{width:21.072000px;}
._13{width:24.360000px;}
._14{width:25.848000px;}
._15{width:27.486000px;}
._16{width:28.872000px;}
._1b{width:75.462000px;}
._6{width:488.334000px;}
._4{width:508.986000px;}
._7{width:1173.702000px;}
._18{width:1442.184000px;}
.fc4{color:rgb(255,0,0);}
.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;}
.fs9{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.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;}
.ya5{bottom:-13.380000px;}
.ya0{bottom:-13.095000px;}
.y0{bottom:0.000000px;}
.ya4{bottom:3.870000px;}
.y9f{bottom:4.170000px;}
.ya7{bottom:5.250000px;}
.y9b{bottom:5.505000px;}
.ya2{bottom:23.400000px;}
.y9d{bottom:23.655000px;}
.y5{bottom:28.413862px;}
.y6{bottom:36.114559px;}
.y3{bottom:66.037500px;}
.y52{bottom:94.575000px;}
.y73{bottom:96.075000px;}
.yee{bottom:101.325000px;}
.yca{bottom:107.325000px;}
.y99{bottom:109.575000px;}
.y51{bottom:114.825000px;}
.y72{bottom:117.825000px;}
.yed{bottom:122.325000px;}
.y113{bottom:126.075000px;}
.yc9{bottom:127.575000px;}
.y98{bottom:129.825000px;}
.y50{bottom:135.825000px;}
.y71{bottom:141.112500px;}
.yec{bottom:142.612500px;}
.y112{bottom:146.362500px;}
.yc8{bottom:148.612500px;}
.y97{bottom:150.870000px;}
.y2e{bottom:153.870000px;}
.y4f{bottom:156.870000px;}
.y95{bottom:159.105000px;}
.y70{bottom:162.105000px;}
.yeb{bottom:163.620000px;}
.yc7{bottom:168.855000px;}
.y96{bottom:171.870000px;}
.y2d{bottom:174.120000px;}
.y4e{bottom:177.120000px;}
.y94{bottom:180.120000px;}
.y6f{bottom:182.355000px;}
.yea{bottom:183.870000px;}
.y111{bottom:185.370000px;}
.yc6{bottom:189.855000px;}
.y2c{bottom:195.120000px;}
.ya1{bottom:197.250000px;}
.y4d{bottom:198.120000px;}
.y93{bottom:200.370000px;}
.y6e{bottom:203.355000px;}
.ye9{bottom:204.900000px;}
.y110{bottom:206.400000px;}
.yc5{bottom:210.900000px;}
.y2b{bottom:216.150000px;}
.ya3{bottom:217.650000px;}
.y4c{bottom:218.400000px;}
.y92{bottom:221.400000px;}
.y6d{bottom:223.650000px;}
.ye8{bottom:225.900000px;}
.y10f{bottom:228.900000px;}
.yc4{bottom:231.150000px;}
.y2a{bottom:236.400000px;}
.y4b{bottom:239.400000px;}
.y91{bottom:242.400000px;}
.y6c{bottom:244.650000px;}
.ye7{bottom:246.150000px;}
.y10e{bottom:249.900000px;}
.yc3{bottom:252.150000px;}
.y29{bottom:257.400000px;}
.y4a{bottom:260.400000px;}
.y90{bottom:263.400000px;}
.y6b{bottom:265.650000px;}
.ye6{bottom:267.150000px;}
.y10d{bottom:270.195000px;}
.yc2{bottom:272.445000px;}
.y28{bottom:277.695000px;}
.y49{bottom:280.695000px;}
.y8f{bottom:284.445000px;}
.y6a{bottom:286.695000px;}
.ye5{bottom:287.445000px;}
.y10c{bottom:291.195000px;}
.yc1{bottom:293.445000px;}
.y27{bottom:298.695000px;}
.y48{bottom:301.695000px;}
.y8e{bottom:304.695000px;}
.y69{bottom:307.695000px;}
.ye4{bottom:308.445000px;}
.y10b{bottom:311.445000px;}
.yc0{bottom:314.445000px;}
.y26{bottom:315.945000px;}
.y47{bottom:321.945000px;}
.y8d{bottom:325.695000px;}
.y68{bottom:327.945000px;}
.ye3{bottom:328.695000px;}
.y10a{bottom:332.475000px;}
.ybf{bottom:334.725000px;}
.y46{bottom:342.975000px;}
.y8c{bottom:345.975000px;}
.y67{bottom:348.975000px;}
.ye2{bottom:349.725000px;}
.y109{bottom:353.475000px;}
.ybe{bottom:355.725000px;}
.y45{bottom:363.225000px;}
.y8b{bottom:366.975000px;}
.y66{bottom:369.975000px;}
.ye1{bottom:370.725000px;}
.y108{bottom:373.725000px;}
.ybd{bottom:375.975000px;}
.y44{bottom:384.225000px;}
.y8a{bottom:387.975000px;}
.y65{bottom:390.225000px;}
.ye0{bottom:390.975000px;}
.y107{bottom:394.725000px;}
.ybc{bottom:397.005000px;}
.y43{bottom:405.255000px;}
.y89{bottom:409.005000px;}
.y64{bottom:411.255000px;}
.ydf{bottom:412.005000px;}
.y9a{bottom:413.250000px;}
.y106{bottom:415.005000px;}
.ybb{bottom:418.005000px;}
.y42{bottom:425.505000px;}
.y88{bottom:430.005000px;}
.y63{bottom:431.505000px;}
.yde{bottom:432.255000px;}
.y105{bottom:436.005000px;}
.yba{bottom:438.255000px;}
.y41{bottom:446.505000px;}
.y87{bottom:451.005000px;}
.y62{bottom:452.505000px;}
.ydd{bottom:453.255000px;}
.y104{bottom:457.005000px;}
.yb9{bottom:459.255000px;}
.y40{bottom:466.800000px;}
.y86{bottom:472.050000px;}
.y61{bottom:473.550000px;}
.ydc{bottom:474.300000px;}
.y103{bottom:477.300000px;}
.yb8{bottom:479.550000px;}
.y25{bottom:487.800000px;}
.y85{bottom:492.300000px;}
.y60{bottom:494.550000px;}
.yb7{bottom:497.550000px;}
.y102{bottom:498.300000px;}
.y24{bottom:508.800000px;}
.yb6{bottom:509.550000px;}
.y84{bottom:513.300000px;}
.y5f{bottom:515.550000px;}
.y101{bottom:518.550000px;}
.y23{bottom:529.095000px;}
.y83{bottom:533.595000px;}
.y5e{bottom:535.845000px;}
.y100{bottom:539.580000px;}
.yb5{bottom:541.845000px;}
.y22{bottom:550.080000px;}
.y82{bottom:554.595000px;}
.y5d{bottom:556.830000px;}
.yff{bottom:560.595000px;}
.yb4{bottom:562.845000px;}
.y21{bottom:570.330000px;}
.y81{bottom:575.595000px;}
.y5c{bottom:577.845000px;}
.yfe{bottom:580.845000px;}
.yb3{bottom:583.830000px;}
.y20{bottom:591.375000px;}
.y80{bottom:595.875000px;}
.y5b{bottom:598.125000px;}
.yfd{bottom:601.875000px;}
.yb2{bottom:604.875000px;}
.y1f{bottom:612.375000px;}
.y7f{bottom:616.875000px;}
.y5a{bottom:619.125000px;}
.yfc{bottom:622.125000px;}
.yb1{bottom:625.125000px;}
.y1e{bottom:632.625000px;}
.y7e{bottom:637.125000px;}
.y59{bottom:639.375000px;}
.yfb{bottom:643.125000px;}
.yb0{bottom:646.125000px;}
.y1d{bottom:653.625000px;}
.y7d{bottom:658.170000px;}
.y58{bottom:660.405000px;}
.yfa{bottom:664.155000px;}
.yaf{bottom:667.155000px;}
.y1c{bottom:673.905000px;}
.y7c{bottom:679.155000px;}
.y57{bottom:681.405000px;}
.yf9{bottom:684.405000px;}
.yae{bottom:688.155000px;}
.y9c{bottom:689.250000px;}
.y1b{bottom:694.905000px;}
.y7b{bottom:700.170000px;}
.y56{bottom:701.655000px;}
.yf8{bottom:705.420000px;}
.yad{bottom:709.155000px;}
.y9e{bottom:709.905000px;}
.y1a{bottom:715.905000px;}
.y7a{bottom:721.200000px;}
.y55{bottom:722.700000px;}
.yf7{bottom:725.700000px;}
.yac{bottom:729.450000px;}
.y19{bottom:736.200000px;}
.y79{bottom:742.200000px;}
.y54{bottom:742.950000px;}
.yf6{bottom:746.700000px;}
.yab{bottom:750.450000px;}
.y18{bottom:757.200000px;}
.y78{bottom:762.450000px;}
.y53{bottom:763.950000px;}
.yf5{bottom:767.700000px;}
.yaa{bottom:770.700000px;}
.y17{bottom:777.450000px;}
.y77{bottom:783.495000px;}
.ydb{bottom:784.995000px;}
.yf4{bottom:787.995000px;}
.ya9{bottom:791.745000px;}
.y16{bottom:798.495000px;}
.y76{bottom:803.745000px;}
.yda{bottom:805.245000px;}
.ya8{bottom:808.995000px;}
.y15{bottom:819.480000px;}
.y3f{bottom:820.245000px;}
.y75{bottom:824.730000px;}
.yd9{bottom:826.230000px;}
.yf3{bottom:829.245000px;}
.y14{bottom:839.745000px;}
.y74{bottom:841.995000px;}
.y3e{bottom:844.245000px;}
.yd8{bottom:846.495000px;}
.yf2{bottom:850.275000px;}
.y13{bottom:861.525000px;}
.y3d{bottom:867.525000px;}
.yf1{bottom:871.275000px;}
.y12{bottom:884.775000px;}
.y3c{bottom:888.525000px;}
.yf0{bottom:891.525000px;}
.y11{bottom:905.775000px;}
.y3b{bottom:908.775000px;}
.yd7{bottom:909.525000px;}
.yef{bottom:912.570000px;}
.ya6{bottom:920.820000px;}
.y10{bottom:926.070000px;}
.y3a{bottom:929.820000px;}
.yd6{bottom:932.820000px;}
.yf{bottom:946.320000px;}
.y39{bottom:950.070000px;}
.yd5{bottom:953.820000px;}
.ye{bottom:964.320000px;}
.y38{bottom:971.070000px;}
.yd4{bottom:974.820000px;}
.yd{bottom:984.600000px;}
.y37{bottom:992.100000px;}
.yd3{bottom:995.100000px;}
.yc{bottom:1005.600000px;}
.y36{bottom:1012.350000px;}
.yd2{bottom:1016.100000px;}
.yb{bottom:1028.100000px;}
.y35{bottom:1033.350000px;}
.yd1{bottom:1036.350000px;}
.y34{bottom:1053.630000px;}
.yd0{bottom:1057.380000px;}
.ya{bottom:1058.880000px;}
.y33{bottom:1074.630000px;}
.ycf{bottom:1078.380000px;}
.y9{bottom:1090.380000px;}
.y32{bottom:1095.630000px;}
.yce{bottom:1098.630000px;}
.y31{bottom:1115.925000px;}
.ycd{bottom:1119.675000px;}
.y8{bottom:1121.175000px;}
.y30{bottom:1136.925000px;}
.ycc{bottom:1139.925000px;}
.y7{bottom:1152.675000px;}
.y2f{bottom:1158.675000px;}
.ycb{bottom:1160.925000px;}
.y2{bottom:1189.455000px;}
.y4{bottom:1192.050000px;}
.y1{bottom:1208.955000px;}
.h13{height:22.500000px;}
.hf{height:23.250000px;}
.h6{height:33.876323px;}
.h10{height:38.250000px;}
.h1{height:43.054688px;}
.h3{height:44.070184px;}
.h5{height:44.098032px;}
.h2{height:49.992188px;}
.hd{height:53.121094px;}
.h12{height:53.484375px;}
.hb{height:53.818359px;}
.ha{height:54.140625px;}
.hc{height:63.164062px;}
.h9{height:64.582031px;}
.h4{height:66.396148px;}
.h11{height:76.406250px;}
.h8{height:81.210938px;}
.he{height:91.687500px;}
.h7{height:96.873047px;}
.h15{height:139.687500px;}
.h14{height:145.687500px;}
.h0{height:1263.000000px;}
.w2{width:53.450377px;}
.w3{width:53.557224px;}
.w4{width:60.750000px;}
.w7{width:60.787500px;}
.w5{width:148.500000px;}
.w6{width:149.250000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:10.575000px;}
.x1d{left:11.625000px;}
.x14{left:15.900000px;}
.x19{left:19.770000px;}
.x21{left:21.480000px;}
.x17{left:38.400000px;}
.x16{left:45.150000px;}
.x1b{left:48.300000px;}
.x23{left:50.025000px;}
.x2{left:73.491283px;}
.x1{left:84.824987px;}
.x11{left:87.750000px;}
.x5{left:105.824987px;}
.xb{left:113.324987px;}
.x13{left:149.250000px;}
.x15{left:170.399987px;}
.x20{left:174.899987px;}
.x6{left:177.149987px;}
.x28{left:180.899987px;}
.x7{left:183.149987px;}
.x8{left:226.694987px;}
.x18{left:298.500000px;}
.x1a{left:323.504987px;}
.xd{left:336.254987px;}
.xe{left:371.549987px;}
.x25{left:374.549987px;}
.xc{left:385.049987px;}
.x27{left:389.594987px;}
.xf{left:397.094987px;}
.x9{left:403.844987px;}
.x3{left:407.594987px;}
.x10{left:441.374987px;}
.x4{left:446.624987px;}
.x26{left:463.124987px;}
.x1c{left:472.874987px;}
.x1e{left:593.250000px;}
.x1f{left:618.494987px;}
.x22{left:620.024987px;}
.xa{left:635.774987px;}
.x24{left:741.599987px;}
@media print{
.v1{vertical-align:-13.333333pt;}
.v4{vertical-align:-10.666667pt;}
.v3{vertical-align:-8.000000pt;}
.v5{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.333333pt;}
.v9{vertical-align:29.333333pt;}
.v8{vertical-align:40.000000pt;}
.v7{vertical-align:42.666667pt;}
.v6{vertical-align:48.000000pt;}
.ls6{letter-spacing:-0.917333pt;}
.ls7{letter-spacing:-0.874667pt;}
.lse{letter-spacing:-0.789333pt;}
.lsd{letter-spacing:-0.458667pt;}
.ls11{letter-spacing:-0.213333pt;}
.ls13{letter-spacing:-0.080000pt;}
.ls5{letter-spacing:-0.032000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.042667pt;}
.lsf{letter-spacing:0.088000pt;}
.ls25{letter-spacing:0.154667pt;}
.ls16{letter-spacing:0.202667pt;}
.lsc{letter-spacing:0.213333pt;}
.ls12{letter-spacing:0.229333pt;}
.ls1{letter-spacing:0.277333pt;}
.ls15{letter-spacing:0.362667pt;}
.ls1b{letter-spacing:0.384000pt;}
.ls26{letter-spacing:0.437333pt;}
.ls24{letter-spacing:0.832000pt;}
.ls3{letter-spacing:0.874667pt;}
.ls20{letter-spacing:0.896000pt;}
.ls2{letter-spacing:1.173333pt;}
.ls14{letter-spacing:1.280000pt;}
.ls21{letter-spacing:1.696000pt;}
.ls8{letter-spacing:1.749333pt;}
.ls22{letter-spacing:1.856000pt;}
.ls23{letter-spacing:1.909333pt;}
.ls18{letter-spacing:2.237333pt;}
.ls9{letter-spacing:2.666667pt;}
.ls17{letter-spacing:2.906667pt;}
.ls1d{letter-spacing:2.986667pt;}
.lsb{letter-spacing:3.104000pt;}
.lsa{letter-spacing:3.541333pt;}
.ls1e{letter-spacing:8.437333pt;}
.ls1c{letter-spacing:12.544000pt;}
.ls10{letter-spacing:16.160000pt;}
.ls1a{letter-spacing:18.858667pt;}
.ls0{letter-spacing:148.272000pt;}
.ls1f{letter-spacing:947.037333pt;}
.ws7{word-spacing:-64.000000pt;}
.ws2{word-spacing:-26.656000pt;}
.ws8{word-spacing:-19.541333pt;}
.ws21{word-spacing:-18.688000pt;}
.wsa{word-spacing:-18.666667pt;}
.ws4{word-spacing:-17.792000pt;}
.ws5{word-spacing:-16.917333pt;}
.ws6{word-spacing:-16.874667pt;}
.ws3{word-spacing:-14.826667pt;}
.wsb{word-spacing:-14.080000pt;}
.wse{word-spacing:-13.290667pt;}
.ws1f{word-spacing:-12.602667pt;}
.ws0{word-spacing:-12.138667pt;}
.ws1{word-spacing:-11.861333pt;}
.ws17{word-spacing:-11.733333pt;}
.ws1a{word-spacing:-11.653333pt;}
.ws18{word-spacing:-11.520000pt;}
.wsf{word-spacing:-10.061333pt;}
.wsc{word-spacing:-9.514667pt;}
.ws16{word-spacing:-8.213333pt;}
.ws9{word-spacing:0.000000pt;}
.ws11{word-spacing:4.933333pt;}
.ws15{word-spacing:4.938667pt;}
.ws12{word-spacing:4.960000pt;}
.ws1e{word-spacing:5.616000pt;}
.ws13{word-spacing:7.466667pt;}
.ws1d{word-spacing:7.573333pt;}
.ws14{word-spacing:7.626667pt;}
.ws10{word-spacing:8.837333pt;}
.ws1b{word-spacing:9.525333pt;}
.ws20{word-spacing:9.690667pt;}
.ws1c{word-spacing:9.765333pt;}
.ws19{word-spacing:9.925333pt;}
.wsd{word-spacing:11.504000pt;}
._e{margin-left:-5.093333pt;}
._5{margin-left:-3.952000pt;}
._2{margin-left:-2.181333pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.408000pt;}
._3{width:2.864000pt;}
._8{width:4.426667pt;}
._9{width:6.144000pt;}
._12{width:7.125333pt;}
._a{width:8.538667pt;}
._d{width:9.600000pt;}
._1a{width:10.501333pt;}
._10{width:11.456000pt;}
._f{width:12.373333pt;}
._b{width:14.144000pt;}
._c{width:15.200000pt;}
._11{width:16.528000pt;}
._17{width:17.754667pt;}
._19{width:18.730667pt;}
._13{width:21.653333pt;}
._14{width:22.976000pt;}
._15{width:24.432000pt;}
._16{width:25.664000pt;}
._1b{width:67.077333pt;}
._6{width:434.074667pt;}
._4{width:452.432000pt;}
._7{width:1043.290667pt;}
._18{width:1281.941333pt;}
.fs1{font-size:26.666667pt;}
.fs4{font-size:30.274897pt;}
.fs9{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.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;}
.ya5{bottom:-11.893333pt;}
.ya0{bottom:-11.640000pt;}
.y0{bottom:0.000000pt;}
.ya4{bottom:3.440000pt;}
.y9f{bottom:3.706667pt;}
.ya7{bottom:4.666667pt;}
.y9b{bottom:4.893333pt;}
.ya2{bottom:20.800000pt;}
.y9d{bottom:21.026667pt;}
.y5{bottom:25.256766pt;}
.y6{bottom:32.101830pt;}
.y3{bottom:58.700000pt;}
.y52{bottom:84.066667pt;}
.y73{bottom:85.400000pt;}
.yee{bottom:90.066667pt;}
.yca{bottom:95.400000pt;}
.y99{bottom:97.400000pt;}
.y51{bottom:102.066667pt;}
.y72{bottom:104.733333pt;}
.yed{bottom:108.733333pt;}
.y113{bottom:112.066667pt;}
.yc9{bottom:113.400000pt;}
.y98{bottom:115.400000pt;}
.y50{bottom:120.733333pt;}
.y71{bottom:125.433333pt;}
.yec{bottom:126.766667pt;}
.y112{bottom:130.100000pt;}
.yc8{bottom:132.100000pt;}
.y97{bottom:134.106667pt;}
.y2e{bottom:136.773333pt;}
.y4f{bottom:139.440000pt;}
.y95{bottom:141.426667pt;}
.y70{bottom:144.093333pt;}
.yeb{bottom:145.440000pt;}
.yc7{bottom:150.093333pt;}
.y96{bottom:152.773333pt;}
.y2d{bottom:154.773333pt;}
.y4e{bottom:157.440000pt;}
.y94{bottom:160.106667pt;}
.y6f{bottom:162.093333pt;}
.yea{bottom:163.440000pt;}
.y111{bottom:164.773333pt;}
.yc6{bottom:168.760000pt;}
.y2c{bottom:173.440000pt;}
.ya1{bottom:175.333333pt;}
.y4d{bottom:176.106667pt;}
.y93{bottom:178.106667pt;}
.y6e{bottom:180.760000pt;}
.ye9{bottom:182.133333pt;}
.y110{bottom:183.466667pt;}
.yc5{bottom:187.466667pt;}
.y2b{bottom:192.133333pt;}
.ya3{bottom:193.466667pt;}
.y4c{bottom:194.133333pt;}
.y92{bottom:196.800000pt;}
.y6d{bottom:198.800000pt;}
.ye8{bottom:200.800000pt;}
.y10f{bottom:203.466667pt;}
.yc4{bottom:205.466667pt;}
.y2a{bottom:210.133333pt;}
.y4b{bottom:212.800000pt;}
.y91{bottom:215.466667pt;}
.y6c{bottom:217.466667pt;}
.ye7{bottom:218.800000pt;}
.y10e{bottom:222.133333pt;}
.yc3{bottom:224.133333pt;}
.y29{bottom:228.800000pt;}
.y4a{bottom:231.466667pt;}
.y90{bottom:234.133333pt;}
.y6b{bottom:236.133333pt;}
.ye6{bottom:237.466667pt;}
.y10d{bottom:240.173333pt;}
.yc2{bottom:242.173333pt;}
.y28{bottom:246.840000pt;}
.y49{bottom:249.506667pt;}
.y8f{bottom:252.840000pt;}
.y6a{bottom:254.840000pt;}
.ye5{bottom:255.506667pt;}
.y10c{bottom:258.840000pt;}
.yc1{bottom:260.840000pt;}
.y27{bottom:265.506667pt;}
.y48{bottom:268.173333pt;}
.y8e{bottom:270.840000pt;}
.y69{bottom:273.506667pt;}
.ye4{bottom:274.173333pt;}
.y10b{bottom:276.840000pt;}
.yc0{bottom:279.506667pt;}
.y26{bottom:280.840000pt;}
.y47{bottom:286.173333pt;}
.y8d{bottom:289.506667pt;}
.y68{bottom:291.506667pt;}
.ye3{bottom:292.173333pt;}
.y10a{bottom:295.533333pt;}
.ybf{bottom:297.533333pt;}
.y46{bottom:304.866667pt;}
.y8c{bottom:307.533333pt;}
.y67{bottom:310.200000pt;}
.ye2{bottom:310.866667pt;}
.y109{bottom:314.200000pt;}
.ybe{bottom:316.200000pt;}
.y45{bottom:322.866667pt;}
.y8b{bottom:326.200000pt;}
.y66{bottom:328.866667pt;}
.ye1{bottom:329.533333pt;}
.y108{bottom:332.200000pt;}
.ybd{bottom:334.200000pt;}
.y44{bottom:341.533333pt;}
.y8a{bottom:344.866667pt;}
.y65{bottom:346.866667pt;}
.ye0{bottom:347.533333pt;}
.y107{bottom:350.866667pt;}
.ybc{bottom:352.893333pt;}
.y43{bottom:360.226667pt;}
.y89{bottom:363.560000pt;}
.y64{bottom:365.560000pt;}
.ydf{bottom:366.226667pt;}
.y9a{bottom:367.333333pt;}
.y106{bottom:368.893333pt;}
.ybb{bottom:371.560000pt;}
.y42{bottom:378.226667pt;}
.y88{bottom:382.226667pt;}
.y63{bottom:383.560000pt;}
.yde{bottom:384.226667pt;}
.y105{bottom:387.560000pt;}
.yba{bottom:389.560000pt;}
.y41{bottom:396.893333pt;}
.y87{bottom:400.893333pt;}
.y62{bottom:402.226667pt;}
.ydd{bottom:402.893333pt;}
.y104{bottom:406.226667pt;}
.yb9{bottom:408.226667pt;}
.y40{bottom:414.933333pt;}
.y86{bottom:419.600000pt;}
.y61{bottom:420.933333pt;}
.ydc{bottom:421.600000pt;}
.y103{bottom:424.266667pt;}
.yb8{bottom:426.266667pt;}
.y25{bottom:433.600000pt;}
.y85{bottom:437.600000pt;}
.y60{bottom:439.600000pt;}
.yb7{bottom:442.266667pt;}
.y102{bottom:442.933333pt;}
.y24{bottom:452.266667pt;}
.yb6{bottom:452.933333pt;}
.y84{bottom:456.266667pt;}
.y5f{bottom:458.266667pt;}
.y101{bottom:460.933333pt;}
.y23{bottom:470.306667pt;}
.y83{bottom:474.306667pt;}
.y5e{bottom:476.306667pt;}
.y100{bottom:479.626667pt;}
.yb5{bottom:481.640000pt;}
.y22{bottom:488.960000pt;}
.y82{bottom:492.973333pt;}
.y5d{bottom:494.960000pt;}
.yff{bottom:498.306667pt;}
.yb4{bottom:500.306667pt;}
.y21{bottom:506.960000pt;}
.y81{bottom:511.640000pt;}
.y5c{bottom:513.640000pt;}
.yfe{bottom:516.306667pt;}
.yb3{bottom:518.960000pt;}
.y20{bottom:525.666667pt;}
.y80{bottom:529.666667pt;}
.y5b{bottom:531.666667pt;}
.yfd{bottom:535.000000pt;}
.yb2{bottom:537.666667pt;}
.y1f{bottom:544.333333pt;}
.y7f{bottom:548.333333pt;}
.y5a{bottom:550.333333pt;}
.yfc{bottom:553.000000pt;}
.yb1{bottom:555.666667pt;}
.y1e{bottom:562.333333pt;}
.y7e{bottom:566.333333pt;}
.y59{bottom:568.333333pt;}
.yfb{bottom:571.666667pt;}
.yb0{bottom:574.333333pt;}
.y1d{bottom:581.000000pt;}
.y7d{bottom:585.040000pt;}
.y58{bottom:587.026667pt;}
.yfa{bottom:590.360000pt;}
.yaf{bottom:593.026667pt;}
.y1c{bottom:599.026667pt;}
.y7c{bottom:603.693333pt;}
.y57{bottom:605.693333pt;}
.yf9{bottom:608.360000pt;}
.yae{bottom:611.693333pt;}
.y9c{bottom:612.666667pt;}
.y1b{bottom:617.693333pt;}
.y7b{bottom:622.373333pt;}
.y56{bottom:623.693333pt;}
.yf8{bottom:627.040000pt;}
.yad{bottom:630.360000pt;}
.y9e{bottom:631.026667pt;}
.y1a{bottom:636.360000pt;}
.y7a{bottom:641.066667pt;}
.y55{bottom:642.400000pt;}
.yf7{bottom:645.066667pt;}
.yac{bottom:648.400000pt;}
.y19{bottom:654.400000pt;}
.y79{bottom:659.733333pt;}
.y54{bottom:660.400000pt;}
.yf6{bottom:663.733333pt;}
.yab{bottom:667.066667pt;}
.y18{bottom:673.066667pt;}
.y78{bottom:677.733333pt;}
.y53{bottom:679.066667pt;}
.yf5{bottom:682.400000pt;}
.yaa{bottom:685.066667pt;}
.y17{bottom:691.066667pt;}
.y77{bottom:696.440000pt;}
.ydb{bottom:697.773333pt;}
.yf4{bottom:700.440000pt;}
.ya9{bottom:703.773333pt;}
.y16{bottom:709.773333pt;}
.y76{bottom:714.440000pt;}
.yda{bottom:715.773333pt;}
.ya8{bottom:719.106667pt;}
.y15{bottom:728.426667pt;}
.y3f{bottom:729.106667pt;}
.y75{bottom:733.093333pt;}
.yd9{bottom:734.426667pt;}
.yf3{bottom:737.106667pt;}
.y14{bottom:746.440000pt;}
.y74{bottom:748.440000pt;}
.y3e{bottom:750.440000pt;}
.yd8{bottom:752.440000pt;}
.yf2{bottom:755.800000pt;}
.y13{bottom:765.800000pt;}
.y3d{bottom:771.133333pt;}
.yf1{bottom:774.466667pt;}
.y12{bottom:786.466667pt;}
.y3c{bottom:789.800000pt;}
.yf0{bottom:792.466667pt;}
.y11{bottom:805.133333pt;}
.y3b{bottom:807.800000pt;}
.yd7{bottom:808.466667pt;}
.yef{bottom:811.173333pt;}
.ya6{bottom:818.506667pt;}
.y10{bottom:823.173333pt;}
.y3a{bottom:826.506667pt;}
.yd6{bottom:829.173333pt;}
.yf{bottom:841.173333pt;}
.y39{bottom:844.506667pt;}
.yd5{bottom:847.840000pt;}
.ye{bottom:857.173333pt;}
.y38{bottom:863.173333pt;}
.yd4{bottom:866.506667pt;}
.yd{bottom:875.200000pt;}
.y37{bottom:881.866667pt;}
.yd3{bottom:884.533333pt;}
.yc{bottom:893.866667pt;}
.y36{bottom:899.866667pt;}
.yd2{bottom:903.200000pt;}
.yb{bottom:913.866667pt;}
.y35{bottom:918.533333pt;}
.yd1{bottom:921.200000pt;}
.y34{bottom:936.560000pt;}
.yd0{bottom:939.893333pt;}
.ya{bottom:941.226667pt;}
.y33{bottom:955.226667pt;}
.ycf{bottom:958.560000pt;}
.y9{bottom:969.226667pt;}
.y32{bottom:973.893333pt;}
.yce{bottom:976.560000pt;}
.y31{bottom:991.933333pt;}
.ycd{bottom:995.266667pt;}
.y8{bottom:996.600000pt;}
.y30{bottom:1010.600000pt;}
.ycc{bottom:1013.266667pt;}
.y7{bottom:1024.600000pt;}
.y2f{bottom:1029.933333pt;}
.ycb{bottom:1031.933333pt;}
.y2{bottom:1057.293333pt;}
.y4{bottom:1059.600000pt;}
.y1{bottom:1074.626667pt;}
.h13{height:20.000000pt;}
.hf{height:20.666667pt;}
.h6{height:30.112287pt;}
.h10{height:34.000000pt;}
.h1{height:38.270833pt;}
.h3{height:39.173497pt;}
.h5{height:39.198251pt;}
.h2{height:44.437500pt;}
.hd{height:47.218750pt;}
.h12{height:47.541667pt;}
.hb{height:47.838542pt;}
.ha{height:48.125000pt;}
.hc{height:56.145833pt;}
.h9{height:57.406250pt;}
.h4{height:59.018798pt;}
.h11{height:67.916667pt;}
.h8{height:72.187500pt;}
.he{height:81.500000pt;}
.h7{height:86.109375pt;}
.h15{height:124.166667pt;}
.h14{height:129.500000pt;}
.h0{height:1122.666667pt;}
.w2{width:47.511447pt;}
.w3{width:47.606421pt;}
.w4{width:54.000000pt;}
.w7{width:54.033333pt;}
.w5{width:132.000000pt;}
.w6{width:132.666667pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:9.400000pt;}
.x1d{left:10.333333pt;}
.x14{left:14.133333pt;}
.x19{left:17.573333pt;}
.x21{left:19.093333pt;}
.x17{left:34.133333pt;}
.x16{left:40.133333pt;}
.x1b{left:42.933333pt;}
.x23{left:44.466667pt;}
.x2{left:65.325585pt;}
.x1{left:75.399988pt;}
.x11{left:78.000000pt;}
.x5{left:94.066655pt;}
.xb{left:100.733322pt;}
.x13{left:132.666667pt;}
.x15{left:151.466655pt;}
.x20{left:155.466655pt;}
.x6{left:157.466655pt;}
.x28{left:160.799988pt;}
.x7{left:162.799988pt;}
.x8{left:201.506655pt;}
.x18{left:265.333333pt;}
.x1a{left:287.559988pt;}
.xd{left:298.893322pt;}
.xe{left:330.266655pt;}
.x25{left:332.933322pt;}
.xc{left:342.266655pt;}
.x27{left:346.306655pt;}
.xf{left:352.973322pt;}
.x9{left:358.973322pt;}
.x3{left:362.306655pt;}
.x10{left:392.333322pt;}
.x4{left:396.999988pt;}
.x26{left:411.666655pt;}
.x1c{left:420.333322pt;}
.x1e{left:527.333333pt;}
.x1f{left:549.773322pt;}
.x22{left:551.133322pt;}
.xa{left:565.133322pt;}
.x24{left:659.199988pt;}
}




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