
    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_aa62584a52de0aeefc42aa79.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_6d8e6ee910b38bb4f0d40d4f.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_16ac876009ab7c065a77d239.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_6d211b87bc8d241b6aa92265.woff')format("woff");}.ff6{font-family:ff6;line-height:2.150879;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_dc13c32695758bcd9900d6f3.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;}
.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);}
.v9{vertical-align:-24.000000px;}
.v1{vertical-align:-15.000000px;}
.v15{vertical-align:-9.120000px;}
.v3{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.000000px;}
.v4{vertical-align:15.000000px;}
.v7{vertical-align:18.000000px;}
.vd{vertical-align:21.000000px;}
.vf{vertical-align:36.000000px;}
.ve{vertical-align:39.000000px;}
.v8{vertical-align:42.000000px;}
.v6{vertical-align:51.180000px;}
.v13{vertical-align:54.000000px;}
.v14{vertical-align:66.120000px;}
.va{vertical-align:69.000000px;}
.v12{vertical-align:72.000000px;}
.v5{vertical-align:99.180000px;}
.vb{vertical-align:111.000000px;}
.vc{vertical-align:114.000000px;}
.v10{vertical-align:117.000000px;}
.v11{vertical-align:120.000000px;}
.ls2e{letter-spacing:-2.016000px;}
.ls7{letter-spacing:-1.032000px;}
.ls2c{letter-spacing:-0.984000px;}
.ls31{letter-spacing:-0.888000px;}
.ls6{letter-spacing:-0.036000px;}
.ls8{letter-spacing:-0.024000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.024000px;}
.lsd{letter-spacing:0.120000px;}
.ls28{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.240000px;}
.ls13{letter-spacing:0.300000px;}
.ls1{letter-spacing:0.312000px;}
.ls15{letter-spacing:0.672000px;}
.ls1f{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.792000px;}
.ls2d{letter-spacing:0.936000px;}
.ls9{letter-spacing:0.984000px;}
.ls2a{letter-spacing:1.008000px;}
.ls2{letter-spacing:1.320000px;}
.lse{letter-spacing:1.560000px;}
.ls24{letter-spacing:1.668000px;}
.lsb{letter-spacing:1.680000px;}
.ls1a{letter-spacing:1.728000px;}
.ls17{letter-spacing:1.848000px;}
.ls26{letter-spacing:1.908000px;}
.ls2b{letter-spacing:1.968000px;}
.ls33{letter-spacing:2.088000px;}
.ls23{letter-spacing:2.880000px;}
.ls19{letter-spacing:3.000000px;}
.ls32{letter-spacing:3.312000px;}
.ls12{letter-spacing:3.471000px;}
.lsf{letter-spacing:3.651000px;}
.ls2f{letter-spacing:3.984000px;}
.ls18{letter-spacing:4.362000px;}
.ls16{letter-spacing:4.422000px;}
.ls14{letter-spacing:4.728000px;}
.lsc{letter-spacing:6.099000px;}
.lsa{letter-spacing:10.176000px;}
.ls25{letter-spacing:12.180000px;}
.ls30{letter-spacing:12.240000px;}
.ls11{letter-spacing:15.060000px;}
.ls27{letter-spacing:18.120000px;}
.ls1b{letter-spacing:21.120000px;}
.ls1c{letter-spacing:21.336000px;}
.ls20{letter-spacing:24.180000px;}
.ls1d{letter-spacing:75.720000px;}
.ls21{letter-spacing:78.660000px;}
.ls0{letter-spacing:166.806000px;}
.ls4{letter-spacing:846.780000px;}
.ls22{letter-spacing:1017.060000px;}
.ls29{letter-spacing:1387.611000px;}
.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;}
}
.ws3{word-spacing:-30.048000px;}
.ws2{word-spacing:-29.988000px;}
.wsf{word-spacing:-20.040000px;}
.wsd{word-spacing:-20.016000px;}
.ws7{word-spacing:-19.992000px;}
.ws12{word-spacing:-19.032000px;}
.ws5{word-spacing:-18.984000px;}
.ws4{word-spacing:-16.680000px;}
.ws8{word-spacing:-15.840000px;}
.ws13{word-spacing:-14.952000px;}
.ws0{word-spacing:-13.656000px;}
.ws1{word-spacing:-13.344000px;}
.wsc{word-spacing:-11.220000px;}
.ws6{word-spacing:0.000000px;}
.ws9{word-spacing:8.496000px;}
.ws10{word-spacing:12.348000px;}
.wse{word-spacing:13.176000px;}
.wsa{word-spacing:13.656000px;}
.ws11{word-spacing:68.556000px;}
.wsb{word-spacing:826.032000px;}
._1f{margin-left:-7.992000px;}
._1c{margin-left:-5.844000px;}
._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;}
._d{width:6.630000px;}
._c{width:7.848000px;}
._b{width:9.936000px;}
._22{width:11.712000px;}
._9{width:12.816000px;}
._1a{width:14.568000px;}
._a{width:15.630000px;}
._11{width:16.848000px;}
._e{width:18.864000px;}
._12{width:21.618000px;}
._13{width:22.800000px;}
._14{width:24.840000px;}
._1d{width:25.842000px;}
._10{width:27.864000px;}
._1e{width:29.340000px;}
._f{width:30.888000px;}
._19{width:33.192000px;}
._18{width:34.746000px;}
._17{width:36.720000px;}
._16{width:37.878000px;}
._15{width:39.888000px;}
._21{width:51.462000px;}
._20{width:92.070000px;}
._6{width:487.374000px;}
._4{width:508.986000px;}
._1b{width:852.684000px;}
._7{width:1173.702000px;}
.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;}
.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;}
.y0{bottom:0.000000px;}
.ya2{bottom:3.750000px;}
.ya8{bottom:4.500000px;}
.y9b{bottom:5.235000px;}
.ya6{bottom:6.000000px;}
.ya5{bottom:6.750000px;}
.ydb{bottom:8.295000px;}
.ya1{bottom:24.787500px;}
.yd6{bottom:25.500000px;}
.y9a{bottom:26.235000px;}
.yc1{bottom:27.037500px;}
.y6{bottom:28.413862px;}
.yda{bottom:29.295000px;}
.y7{bottom:36.114559px;}
.yd5{bottom:42.000000px;}
.ya0{bottom:42.045000px;}
.y4{bottom:45.787500px;}
.yd9{bottom:46.545000px;}
.y99{bottom:47.280000px;}
.yc0{bottom:48.030000px;}
.y98{bottom:63.780000px;}
.y3{bottom:65.287500px;}
.ybf{bottom:68.280000px;}
.ybe{bottom:85.575000px;}
.y9d{bottom:90.075000px;}
.y97{bottom:93.825000px;}
.y68{bottom:101.325000px;}
.y108{bottom:105.075000px;}
.yd1{bottom:112.575000px;}
.y96{bottom:114.075000px;}
.y9e{bottom:117.825000px;}
.y7b{bottom:120.075000px;}
.yba{bottom:120.825000px;}
.y67{bottom:122.325000px;}
.y107{bottom:126.075000px;}
.yd0{bottom:132.825000px;}
.y95{bottom:135.075000px;}
.y7a{bottom:141.112500px;}
.y66{bottom:142.612500px;}
.ycf{bottom:153.870000px;}
.y35{bottom:159.870000px;}
.y79{bottom:162.105000px;}
.y65{bottom:163.620000px;}
.y106{bottom:164.370000px;}
.yce{bottom:174.120000px;}
.y34{bottom:180.870000px;}
.y78{bottom:183.105000px;}
.y64{bottom:183.870000px;}
.y105{bottom:185.370000px;}
.ycd{bottom:195.120000px;}
.y33{bottom:201.120000px;}
.y77{bottom:204.150000px;}
.y63{bottom:204.900000px;}
.y104{bottom:208.650000px;}
.ycc{bottom:216.150000px;}
.y32{bottom:222.150000px;}
.y76{bottom:225.150000px;}
.y62{bottom:225.900000px;}
.yd4{bottom:228.870000px;}
.y103{bottom:228.900000px;}
.yd8{bottom:232.650000px;}
.ycb{bottom:236.400000px;}
.y31{bottom:243.150000px;}
.yd3{bottom:245.370000px;}
.y61{bottom:246.150000px;}
.y102{bottom:249.900000px;}
.yca{bottom:257.400000px;}
.y75{bottom:262.650000px;}
.y30{bottom:263.400000px;}
.y60{bottom:267.150000px;}
.y101{bottom:270.195000px;}
.ybd{bottom:272.400000px;}
.y9f{bottom:273.900000px;}
.y74{bottom:274.695000px;}
.yc9{bottom:277.695000px;}
.y2f{bottom:284.445000px;}
.y5f{bottom:287.445000px;}
.ybc{bottom:288.930000px;}
.y100{bottom:291.195000px;}
.yc8{bottom:299.445000px;}
.y2e{bottom:304.695000px;}
.y73{bottom:306.945000px;}
.y5e{bottom:308.445000px;}
.yff{bottom:311.445000px;}
.yc7{bottom:322.695000px;}
.y2d{bottom:325.695000px;}
.y72{bottom:327.945000px;}
.y5d{bottom:328.695000px;}
.yfe{bottom:332.475000px;}
.yc6{bottom:343.725000px;}
.y2c{bottom:345.975000px;}
.y71{bottom:348.975000px;}
.y5c{bottom:349.725000px;}
.yfd{bottom:353.475000px;}
.yc5{bottom:363.975000px;}
.y2b{bottom:366.975000px;}
.y70{bottom:369.975000px;}
.y5b{bottom:370.725000px;}
.yfc{bottom:373.725000px;}
.yc4{bottom:384.975000px;}
.y2a{bottom:387.975000px;}
.y5a{bottom:390.975000px;}
.yfb{bottom:394.725000px;}
.yc3{bottom:406.005000px;}
.y29{bottom:408.255000px;}
.y59{bottom:412.005000px;}
.yfa{bottom:415.005000px;}
.yc2{bottom:426.255000px;}
.y28{bottom:429.255000px;}
.yd2{bottom:432.225000px;}
.y58{bottom:432.255000px;}
.yf9{bottom:436.005000px;}
.y27{bottom:449.505000px;}
.y57{bottom:453.255000px;}
.yd7{bottom:454.755000px;}
.yf8{bottom:457.005000px;}
.y26{bottom:470.550000px;}
.y56{bottom:474.300000px;}
.ybb{bottom:475.800000px;}
.yf7{bottom:477.300000px;}
.y25{bottom:491.550000px;}
.y55{bottom:494.550000px;}
.yf6{bottom:498.300000px;}
.y24{bottom:511.800000px;}
.y54{bottom:515.550000px;}
.yf5{bottom:518.550000px;}
.y23{bottom:532.830000px;}
.y53{bottom:535.845000px;}
.yf4{bottom:539.580000px;}
.y22{bottom:553.080000px;}
.y52{bottom:556.830000px;}
.yf3{bottom:560.595000px;}
.y21{bottom:574.095000px;}
.y51{bottom:577.845000px;}
.yf2{bottom:580.845000px;}
.y20{bottom:595.125000px;}
.y50{bottom:598.125000px;}
.yf1{bottom:601.875000px;}
.y1f{bottom:615.375000px;}
.y4f{bottom:619.125000px;}
.yf0{bottom:622.125000px;}
.y94{bottom:622.875000px;}
.yb9{bottom:635.625000px;}
.y1e{bottom:636.375000px;}
.y4e{bottom:639.375000px;}
.yef{bottom:643.125000px;}
.y93{bottom:643.875000px;}
.y1d{bottom:656.670000px;}
.y4d{bottom:660.405000px;}
.yee{bottom:664.155000px;}
.y92{bottom:664.920000px;}
.yb8{bottom:676.920000px;}
.y1c{bottom:677.655000px;}
.y4c{bottom:681.405000px;}
.yed{bottom:684.405000px;}
.y91{bottom:685.170000px;}
.yb7{bottom:697.905000px;}
.y1b{bottom:698.670000px;}
.y4b{bottom:701.655000px;}
.yec{bottom:705.420000px;}
.y90{bottom:706.155000px;}
.yb6{bottom:718.200000px;}
.y1a{bottom:718.950000px;}
.y4a{bottom:722.700000px;}
.yeb{bottom:725.700000px;}
.y8f{bottom:726.450000px;}
.yb5{bottom:739.200000px;}
.y19{bottom:739.950000px;}
.y49{bottom:742.950000px;}
.yea{bottom:746.700000px;}
.y8e{bottom:747.450000px;}
.y18{bottom:760.200000px;}
.y48{bottom:763.950000px;}
.ye9{bottom:767.700000px;}
.y8d{bottom:771.450000px;}
.yb4{bottom:780.450000px;}
.y17{bottom:781.200000px;}
.y8c{bottom:783.495000px;}
.y47{bottom:784.995000px;}
.ye8{bottom:787.995000px;}
.yb3{bottom:801.495000px;}
.y16{bottom:802.980000px;}
.y46{bottom:805.245000px;}
.ye7{bottom:808.995000px;}
.y8b{bottom:814.995000px;}
.yb2{bottom:821.745000px;}
.y15{bottom:826.230000px;}
.ye6{bottom:829.245000px;}
.y8a{bottom:835.980000px;}
.yb1{bottom:842.730000px;}
.y14{bottom:845.745000px;}
.y45{bottom:846.495000px;}
.ye5{bottom:850.275000px;}
.y89{bottom:856.275000px;}
.y13{bottom:863.025000px;}
.yb0{bottom:863.775000px;}
.y44{bottom:867.525000px;}
.ye4{bottom:871.275000px;}
.y88{bottom:877.275000px;}
.y12{bottom:881.025000px;}
.yaf{bottom:884.025000px;}
.y43{bottom:888.525000px;}
.ye3{bottom:891.525000px;}
.y87{bottom:898.275000px;}
.y11{bottom:902.025000px;}
.yae{bottom:905.025000px;}
.y42{bottom:908.775000px;}
.ye2{bottom:912.570000px;}
.y86{bottom:918.570000px;}
.y10{bottom:923.070000px;}
.yad{bottom:925.320000px;}
.y41{bottom:929.820000px;}
.ye1{bottom:932.820000px;}
.y85{bottom:939.570000px;}
.yf{bottom:943.320000px;}
.yac{bottom:946.320000px;}
.y40{bottom:950.070000px;}
.ye0{bottom:953.820000px;}
.y84{bottom:959.820000px;}
.ye{bottom:965.820000px;}
.yab{bottom:967.320000px;}
.y3f{bottom:971.070000px;}
.ydf{bottom:974.820000px;}
.y83{bottom:980.850000px;}
.yaa{bottom:984.600000px;}
.y3e{bottom:992.100000px;}
.yde{bottom:995.100000px;}
.yd{bottom:997.350000px;}
.ya9{bottom:1005.600000px;}
.y3d{bottom:1012.350000px;}
.y81{bottom:1014.600000px;}
.ydd{bottom:1016.100000px;}
.ya7{bottom:1026.600000px;}
.yc{bottom:1028.100000px;}
.y3c{bottom:1033.350000px;}
.y6f{bottom:1034.100000px;}
.y82{bottom:1035.600000px;}
.ydc{bottom:1036.350000px;}
.y80{bottom:1048.380000px;}
.y3b{bottom:1053.630000px;}
.y6e{bottom:1057.380000px;}
.yb{bottom:1058.880000px;}
.y7f{bottom:1069.380000px;}
.y3a{bottom:1074.630000px;}
.y6d{bottom:1078.380000px;}
.ya{bottom:1090.380000px;}
.y39{bottom:1095.630000px;}
.y6c{bottom:1098.630000px;}
.y7e{bottom:1107.675000px;}
.ya4{bottom:1112.175000px;}
.y38{bottom:1115.925000px;}
.y7d{bottom:1116.675000px;}
.y6b{bottom:1119.675000px;}
.y9{bottom:1121.175000px;}
.ya3{bottom:1136.175000px;}
.y37{bottom:1136.925000px;}
.y9c{bottom:1137.675000px;}
.y6a{bottom:1139.925000px;}
.y7c{bottom:1145.175000px;}
.y8{bottom:1152.675000px;}
.y36{bottom:1158.675000px;}
.y69{bottom:1160.925000px;}
.y2{bottom:1189.455000px;}
.y5{bottom:1192.050000px;}
.y1{bottom:1208.955000px;}
.h1b{height:21.000000px;}
.h1d{height:21.037500px;}
.h1e{height:21.787500px;}
.h1c{height:23.250000px;}
.h6{height:33.876323px;}
.h1{height:43.054688px;}
.h3{height:44.070184px;}
.h5{height:44.098032px;}
.h2{height:49.992188px;}
.h22{height:53.121094px;}
.hb{height:53.818359px;}
.ha{height:54.140625px;}
.hc{height:63.164062px;}
.h9{height:64.582031px;}
.h4{height:66.396148px;}
.h15{height:69.278320px;}
.h8{height:81.210938px;}
.h7{height:96.873047px;}
.hd{height:97.804688px;}
.he{height:100.804688px;}
.h12{height:136.804688px;}
.h13{height:139.804688px;}
.h18{height:148.924687px;}
.h10{height:148.984688px;}
.h17{height:151.804688px;}
.h16{height:169.804688px;}
.hf{height:196.984688px;}
.h11{height:211.804688px;}
.h14{height:217.804688px;}
.h21{height:249.900000px;}
.h1a{height:291.195000px;}
.h19{height:443.505000px;}
.h20{height:449.505000px;}
.h1f{height:493.050000px;}
.h0{height:1263.000000px;}
.w2{width:53.450377px;}
.w3{width:53.557224px;}
.w7{width:242.445000px;}
.w8{width:242.475000px;}
.w4{width:719.100000px;}
.w9{width:719.850000px;}
.w5{width:720.600000px;}
.w6{width:728.100000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:11.250000px;}
.x22{left:58.575000px;}
.x20{left:69.825000px;}
.x2{left:73.491283px;}
.x1{left:84.824987px;}
.x24{left:87.825000px;}
.x7{left:95.324987px;}
.x5{left:99.074987px;}
.x23{left:102.870000px;}
.x1e{left:120.870000px;}
.x6{left:130.612487px;}
.x2b{left:132.862487px;}
.xb{left:136.612487px;}
.x9{left:162.149987px;}
.xa{left:166.649987px;}
.x2c{left:180.899987px;}
.xc{left:226.694987px;}
.x10{left:317.504987px;}
.x19{left:319.019987px;}
.x1f{left:328.020000px;}
.x11{left:353.549987px;}
.x12{left:362.549987px;}
.x16{left:365.549987px;}
.x8{left:376.049987px;}
.x27{left:377.549987px;}
.xe{left:385.049987px;}
.x2a{left:389.594987px;}
.xf{left:391.844987px;}
.xd{left:403.844987px;}
.x3{left:407.594987px;}
.x18{left:429.344987px;}
.x17{left:436.124987px;}
.x4{left:446.624987px;}
.x13{left:457.124987px;}
.x14{left:466.124987px;}
.x1a{left:471.374987px;}
.x15{left:479.624987px;}
.x29{left:488.655000px;}
.x26{left:505.920000px;}
.x21{left:570.450000px;}
.x28{left:616.995000px;}
.x25{left:652.275000px;}
.x1d{left:670.275000px;}
.x1b{left:687.555000px;}
@media print{
.v9{vertical-align:-21.333333pt;}
.v1{vertical-align:-13.333333pt;}
.v15{vertical-align:-8.106667pt;}
.v3{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.666667pt;}
.v4{vertical-align:13.333333pt;}
.v7{vertical-align:16.000000pt;}
.vd{vertical-align:18.666667pt;}
.vf{vertical-align:32.000000pt;}
.ve{vertical-align:34.666667pt;}
.v8{vertical-align:37.333333pt;}
.v6{vertical-align:45.493333pt;}
.v13{vertical-align:48.000000pt;}
.v14{vertical-align:58.773333pt;}
.va{vertical-align:61.333333pt;}
.v12{vertical-align:64.000000pt;}
.v5{vertical-align:88.160000pt;}
.vb{vertical-align:98.666667pt;}
.vc{vertical-align:101.333333pt;}
.v10{vertical-align:104.000000pt;}
.v11{vertical-align:106.666667pt;}
.ls2e{letter-spacing:-1.792000pt;}
.ls7{letter-spacing:-0.917333pt;}
.ls2c{letter-spacing:-0.874667pt;}
.ls31{letter-spacing:-0.789333pt;}
.ls6{letter-spacing:-0.032000pt;}
.ls8{letter-spacing:-0.021333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.021333pt;}
.lsd{letter-spacing:0.106667pt;}
.ls28{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.213333pt;}
.ls13{letter-spacing:0.266667pt;}
.ls1{letter-spacing:0.277333pt;}
.ls15{letter-spacing:0.597333pt;}
.ls1f{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.704000pt;}
.ls2d{letter-spacing:0.832000pt;}
.ls9{letter-spacing:0.874667pt;}
.ls2a{letter-spacing:0.896000pt;}
.ls2{letter-spacing:1.173333pt;}
.lse{letter-spacing:1.386667pt;}
.ls24{letter-spacing:1.482667pt;}
.lsb{letter-spacing:1.493333pt;}
.ls1a{letter-spacing:1.536000pt;}
.ls17{letter-spacing:1.642667pt;}
.ls26{letter-spacing:1.696000pt;}
.ls2b{letter-spacing:1.749333pt;}
.ls33{letter-spacing:1.856000pt;}
.ls23{letter-spacing:2.560000pt;}
.ls19{letter-spacing:2.666667pt;}
.ls32{letter-spacing:2.944000pt;}
.ls12{letter-spacing:3.085333pt;}
.lsf{letter-spacing:3.245333pt;}
.ls2f{letter-spacing:3.541333pt;}
.ls18{letter-spacing:3.877333pt;}
.ls16{letter-spacing:3.930667pt;}
.ls14{letter-spacing:4.202667pt;}
.lsc{letter-spacing:5.421333pt;}
.lsa{letter-spacing:9.045333pt;}
.ls25{letter-spacing:10.826667pt;}
.ls30{letter-spacing:10.880000pt;}
.ls11{letter-spacing:13.386667pt;}
.ls27{letter-spacing:16.106667pt;}
.ls1b{letter-spacing:18.773333pt;}
.ls1c{letter-spacing:18.965333pt;}
.ls20{letter-spacing:21.493333pt;}
.ls1d{letter-spacing:67.306667pt;}
.ls21{letter-spacing:69.920000pt;}
.ls0{letter-spacing:148.272000pt;}
.ls4{letter-spacing:752.693333pt;}
.ls22{letter-spacing:904.053333pt;}
.ls29{letter-spacing:1233.432000pt;}
.ws3{word-spacing:-26.709333pt;}
.ws2{word-spacing:-26.656000pt;}
.wsf{word-spacing:-17.813333pt;}
.wsd{word-spacing:-17.792000pt;}
.ws7{word-spacing:-17.770667pt;}
.ws12{word-spacing:-16.917333pt;}
.ws5{word-spacing:-16.874667pt;}
.ws4{word-spacing:-14.826667pt;}
.ws8{word-spacing:-14.080000pt;}
.ws13{word-spacing:-13.290667pt;}
.ws0{word-spacing:-12.138667pt;}
.ws1{word-spacing:-11.861333pt;}
.wsc{word-spacing:-9.973333pt;}
.ws6{word-spacing:0.000000pt;}
.ws9{word-spacing:7.552000pt;}
.ws10{word-spacing:10.976000pt;}
.wse{word-spacing:11.712000pt;}
.wsa{word-spacing:12.138667pt;}
.ws11{word-spacing:60.938667pt;}
.wsb{word-spacing:734.250667pt;}
._1f{margin-left:-7.104000pt;}
._1c{margin-left:-5.194667pt;}
._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;}
._d{width:5.893333pt;}
._c{width:6.976000pt;}
._b{width:8.832000pt;}
._22{width:10.410667pt;}
._9{width:11.392000pt;}
._1a{width:12.949333pt;}
._a{width:13.893333pt;}
._11{width:14.976000pt;}
._e{width:16.768000pt;}
._12{width:19.216000pt;}
._13{width:20.266667pt;}
._14{width:22.080000pt;}
._1d{width:22.970667pt;}
._10{width:24.768000pt;}
._1e{width:26.080000pt;}
._f{width:27.456000pt;}
._19{width:29.504000pt;}
._18{width:30.885333pt;}
._17{width:32.640000pt;}
._16{width:33.669333pt;}
._15{width:35.456000pt;}
._21{width:45.744000pt;}
._20{width:81.840000pt;}
._6{width:433.221333pt;}
._4{width:452.432000pt;}
._1b{width:757.941333pt;}
._7{width:1043.290667pt;}
.fs1{font-size:26.666667pt;}
.fs4{font-size:30.274897pt;}
.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;}
.y0{bottom:0.000000pt;}
.ya2{bottom:3.333333pt;}
.ya8{bottom:4.000000pt;}
.y9b{bottom:4.653333pt;}
.ya6{bottom:5.333333pt;}
.ya5{bottom:6.000000pt;}
.ydb{bottom:7.373333pt;}
.ya1{bottom:22.033333pt;}
.yd6{bottom:22.666667pt;}
.y9a{bottom:23.320000pt;}
.yc1{bottom:24.033333pt;}
.y6{bottom:25.256766pt;}
.yda{bottom:26.040000pt;}
.y7{bottom:32.101830pt;}
.yd5{bottom:37.333333pt;}
.ya0{bottom:37.373333pt;}
.y4{bottom:40.700000pt;}
.yd9{bottom:41.373333pt;}
.y99{bottom:42.026667pt;}
.yc0{bottom:42.693333pt;}
.y98{bottom:56.693333pt;}
.y3{bottom:58.033333pt;}
.ybf{bottom:60.693333pt;}
.ybe{bottom:76.066667pt;}
.y9d{bottom:80.066667pt;}
.y97{bottom:83.400000pt;}
.y68{bottom:90.066667pt;}
.y108{bottom:93.400000pt;}
.yd1{bottom:100.066667pt;}
.y96{bottom:101.400000pt;}
.y9e{bottom:104.733333pt;}
.y7b{bottom:106.733333pt;}
.yba{bottom:107.400000pt;}
.y67{bottom:108.733333pt;}
.y107{bottom:112.066667pt;}
.yd0{bottom:118.066667pt;}
.y95{bottom:120.066667pt;}
.y7a{bottom:125.433333pt;}
.y66{bottom:126.766667pt;}
.ycf{bottom:136.773333pt;}
.y35{bottom:142.106667pt;}
.y79{bottom:144.093333pt;}
.y65{bottom:145.440000pt;}
.y106{bottom:146.106667pt;}
.yce{bottom:154.773333pt;}
.y34{bottom:160.773333pt;}
.y78{bottom:162.760000pt;}
.y64{bottom:163.440000pt;}
.y105{bottom:164.773333pt;}
.ycd{bottom:173.440000pt;}
.y33{bottom:178.773333pt;}
.y77{bottom:181.466667pt;}
.y63{bottom:182.133333pt;}
.y104{bottom:185.466667pt;}
.ycc{bottom:192.133333pt;}
.y32{bottom:197.466667pt;}
.y76{bottom:200.133333pt;}
.y62{bottom:200.800000pt;}
.yd4{bottom:203.440000pt;}
.y103{bottom:203.466667pt;}
.yd8{bottom:206.800000pt;}
.ycb{bottom:210.133333pt;}
.y31{bottom:216.133333pt;}
.yd3{bottom:218.106667pt;}
.y61{bottom:218.800000pt;}
.y102{bottom:222.133333pt;}
.yca{bottom:228.800000pt;}
.y75{bottom:233.466667pt;}
.y30{bottom:234.133333pt;}
.y60{bottom:237.466667pt;}
.y101{bottom:240.173333pt;}
.ybd{bottom:242.133333pt;}
.y9f{bottom:243.466667pt;}
.y74{bottom:244.173333pt;}
.yc9{bottom:246.840000pt;}
.y2f{bottom:252.840000pt;}
.y5f{bottom:255.506667pt;}
.ybc{bottom:256.826667pt;}
.y100{bottom:258.840000pt;}
.yc8{bottom:266.173333pt;}
.y2e{bottom:270.840000pt;}
.y73{bottom:272.840000pt;}
.y5e{bottom:274.173333pt;}
.yff{bottom:276.840000pt;}
.yc7{bottom:286.840000pt;}
.y2d{bottom:289.506667pt;}
.y72{bottom:291.506667pt;}
.y5d{bottom:292.173333pt;}
.yfe{bottom:295.533333pt;}
.yc6{bottom:305.533333pt;}
.y2c{bottom:307.533333pt;}
.y71{bottom:310.200000pt;}
.y5c{bottom:310.866667pt;}
.yfd{bottom:314.200000pt;}
.yc5{bottom:323.533333pt;}
.y2b{bottom:326.200000pt;}
.y70{bottom:328.866667pt;}
.y5b{bottom:329.533333pt;}
.yfc{bottom:332.200000pt;}
.yc4{bottom:342.200000pt;}
.y2a{bottom:344.866667pt;}
.y5a{bottom:347.533333pt;}
.yfb{bottom:350.866667pt;}
.yc3{bottom:360.893333pt;}
.y29{bottom:362.893333pt;}
.y59{bottom:366.226667pt;}
.yfa{bottom:368.893333pt;}
.yc2{bottom:378.893333pt;}
.y28{bottom:381.560000pt;}
.yd2{bottom:384.200000pt;}
.y58{bottom:384.226667pt;}
.yf9{bottom:387.560000pt;}
.y27{bottom:399.560000pt;}
.y57{bottom:402.893333pt;}
.yd7{bottom:404.226667pt;}
.yf8{bottom:406.226667pt;}
.y26{bottom:418.266667pt;}
.y56{bottom:421.600000pt;}
.ybb{bottom:422.933333pt;}
.yf7{bottom:424.266667pt;}
.y25{bottom:436.933333pt;}
.y55{bottom:439.600000pt;}
.yf6{bottom:442.933333pt;}
.y24{bottom:454.933333pt;}
.y54{bottom:458.266667pt;}
.yf5{bottom:460.933333pt;}
.y23{bottom:473.626667pt;}
.y53{bottom:476.306667pt;}
.yf4{bottom:479.626667pt;}
.y22{bottom:491.626667pt;}
.y52{bottom:494.960000pt;}
.yf3{bottom:498.306667pt;}
.y21{bottom:510.306667pt;}
.y51{bottom:513.640000pt;}
.yf2{bottom:516.306667pt;}
.y20{bottom:529.000000pt;}
.y50{bottom:531.666667pt;}
.yf1{bottom:535.000000pt;}
.y1f{bottom:547.000000pt;}
.y4f{bottom:550.333333pt;}
.yf0{bottom:553.000000pt;}
.y94{bottom:553.666667pt;}
.yb9{bottom:565.000000pt;}
.y1e{bottom:565.666667pt;}
.y4e{bottom:568.333333pt;}
.yef{bottom:571.666667pt;}
.y93{bottom:572.333333pt;}
.y1d{bottom:583.706667pt;}
.y4d{bottom:587.026667pt;}
.yee{bottom:590.360000pt;}
.y92{bottom:591.040000pt;}
.yb8{bottom:601.706667pt;}
.y1c{bottom:602.360000pt;}
.y4c{bottom:605.693333pt;}
.yed{bottom:608.360000pt;}
.y91{bottom:609.040000pt;}
.yb7{bottom:620.360000pt;}
.y1b{bottom:621.040000pt;}
.y4b{bottom:623.693333pt;}
.yec{bottom:627.040000pt;}
.y90{bottom:627.693333pt;}
.yb6{bottom:638.400000pt;}
.y1a{bottom:639.066667pt;}
.y4a{bottom:642.400000pt;}
.yeb{bottom:645.066667pt;}
.y8f{bottom:645.733333pt;}
.yb5{bottom:657.066667pt;}
.y19{bottom:657.733333pt;}
.y49{bottom:660.400000pt;}
.yea{bottom:663.733333pt;}
.y8e{bottom:664.400000pt;}
.y18{bottom:675.733333pt;}
.y48{bottom:679.066667pt;}
.ye9{bottom:682.400000pt;}
.y8d{bottom:685.733333pt;}
.yb4{bottom:693.733333pt;}
.y17{bottom:694.400000pt;}
.y8c{bottom:696.440000pt;}
.y47{bottom:697.773333pt;}
.ye8{bottom:700.440000pt;}
.yb3{bottom:712.440000pt;}
.y16{bottom:713.760000pt;}
.y46{bottom:715.773333pt;}
.ye7{bottom:719.106667pt;}
.y8b{bottom:724.440000pt;}
.yb2{bottom:730.440000pt;}
.y15{bottom:734.426667pt;}
.ye6{bottom:737.106667pt;}
.y8a{bottom:743.093333pt;}
.yb1{bottom:749.093333pt;}
.y14{bottom:751.773333pt;}
.y45{bottom:752.440000pt;}
.ye5{bottom:755.800000pt;}
.y89{bottom:761.133333pt;}
.y13{bottom:767.133333pt;}
.yb0{bottom:767.800000pt;}
.y44{bottom:771.133333pt;}
.ye4{bottom:774.466667pt;}
.y88{bottom:779.800000pt;}
.y12{bottom:783.133333pt;}
.yaf{bottom:785.800000pt;}
.y43{bottom:789.800000pt;}
.ye3{bottom:792.466667pt;}
.y87{bottom:798.466667pt;}
.y11{bottom:801.800000pt;}
.yae{bottom:804.466667pt;}
.y42{bottom:807.800000pt;}
.ye2{bottom:811.173333pt;}
.y86{bottom:816.506667pt;}
.y10{bottom:820.506667pt;}
.yad{bottom:822.506667pt;}
.y41{bottom:826.506667pt;}
.ye1{bottom:829.173333pt;}
.y85{bottom:835.173333pt;}
.yf{bottom:838.506667pt;}
.yac{bottom:841.173333pt;}
.y40{bottom:844.506667pt;}
.ye0{bottom:847.840000pt;}
.y84{bottom:853.173333pt;}
.ye{bottom:858.506667pt;}
.yab{bottom:859.840000pt;}
.y3f{bottom:863.173333pt;}
.ydf{bottom:866.506667pt;}
.y83{bottom:871.866667pt;}
.yaa{bottom:875.200000pt;}
.y3e{bottom:881.866667pt;}
.yde{bottom:884.533333pt;}
.yd{bottom:886.533333pt;}
.ya9{bottom:893.866667pt;}
.y3d{bottom:899.866667pt;}
.y81{bottom:901.866667pt;}
.ydd{bottom:903.200000pt;}
.ya7{bottom:912.533333pt;}
.yc{bottom:913.866667pt;}
.y3c{bottom:918.533333pt;}
.y6f{bottom:919.200000pt;}
.y82{bottom:920.533333pt;}
.ydc{bottom:921.200000pt;}
.y80{bottom:931.893333pt;}
.y3b{bottom:936.560000pt;}
.y6e{bottom:939.893333pt;}
.yb{bottom:941.226667pt;}
.y7f{bottom:950.560000pt;}
.y3a{bottom:955.226667pt;}
.y6d{bottom:958.560000pt;}
.ya{bottom:969.226667pt;}
.y39{bottom:973.893333pt;}
.y6c{bottom:976.560000pt;}
.y7e{bottom:984.600000pt;}
.ya4{bottom:988.600000pt;}
.y38{bottom:991.933333pt;}
.y7d{bottom:992.600000pt;}
.y6b{bottom:995.266667pt;}
.y9{bottom:996.600000pt;}
.ya3{bottom:1009.933333pt;}
.y37{bottom:1010.600000pt;}
.y9c{bottom:1011.266667pt;}
.y6a{bottom:1013.266667pt;}
.y7c{bottom:1017.933333pt;}
.y8{bottom:1024.600000pt;}
.y36{bottom:1029.933333pt;}
.y69{bottom:1031.933333pt;}
.y2{bottom:1057.293333pt;}
.y5{bottom:1059.600000pt;}
.y1{bottom:1074.626667pt;}
.h1b{height:18.666667pt;}
.h1d{height:18.700000pt;}
.h1e{height:19.366667pt;}
.h1c{height:20.666667pt;}
.h6{height:30.112287pt;}
.h1{height:38.270833pt;}
.h3{height:39.173497pt;}
.h5{height:39.198251pt;}
.h2{height:44.437500pt;}
.h22{height:47.218750pt;}
.hb{height:47.838542pt;}
.ha{height:48.125000pt;}
.hc{height:56.145833pt;}
.h9{height:57.406250pt;}
.h4{height:59.018798pt;}
.h15{height:61.580729pt;}
.h8{height:72.187500pt;}
.h7{height:86.109375pt;}
.hd{height:86.937500pt;}
.he{height:89.604167pt;}
.h12{height:121.604167pt;}
.h13{height:124.270833pt;}
.h18{height:132.377500pt;}
.h10{height:132.430833pt;}
.h17{height:134.937500pt;}
.h16{height:150.937500pt;}
.hf{height:175.097500pt;}
.h11{height:188.270833pt;}
.h14{height:193.604167pt;}
.h21{height:222.133333pt;}
.h1a{height:258.840000pt;}
.h19{height:394.226667pt;}
.h20{height:399.560000pt;}
.h1f{height:438.266667pt;}
.h0{height:1122.666667pt;}
.w2{width:47.511447pt;}
.w3{width:47.606421pt;}
.w7{width:215.506667pt;}
.w8{width:215.533333pt;}
.w4{width:639.200000pt;}
.w9{width:639.866667pt;}
.w5{width:640.533333pt;}
.w6{width:647.200000pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:10.000000pt;}
.x22{left:52.066667pt;}
.x20{left:62.066667pt;}
.x2{left:65.325585pt;}
.x1{left:75.399988pt;}
.x24{left:78.066667pt;}
.x7{left:84.733322pt;}
.x5{left:88.066655pt;}
.x23{left:91.440000pt;}
.x1e{left:107.440000pt;}
.x6{left:116.099988pt;}
.x2b{left:118.099988pt;}
.xb{left:121.433322pt;}
.x9{left:144.133322pt;}
.xa{left:148.133322pt;}
.x2c{left:160.799988pt;}
.xc{left:201.506655pt;}
.x10{left:282.226655pt;}
.x19{left:283.573322pt;}
.x1f{left:291.573333pt;}
.x11{left:314.266655pt;}
.x12{left:322.266655pt;}
.x16{left:324.933322pt;}
.x8{left:334.266655pt;}
.x27{left:335.599988pt;}
.xe{left:342.266655pt;}
.x2a{left:346.306655pt;}
.xf{left:348.306655pt;}
.xd{left:358.973322pt;}
.x3{left:362.306655pt;}
.x18{left:381.639988pt;}
.x17{left:387.666655pt;}
.x4{left:396.999988pt;}
.x13{left:406.333322pt;}
.x14{left:414.333322pt;}
.x1a{left:418.999988pt;}
.x15{left:426.333322pt;}
.x29{left:434.360000pt;}
.x26{left:449.706667pt;}
.x21{left:507.066667pt;}
.x28{left:548.440000pt;}
.x25{left:579.800000pt;}
.x1d{left:595.800000pt;}
.x1b{left:611.160000pt;}
}




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