
    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_55a4ab34aeba3e89d4795ba1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_3267ee6e8404442711061c95.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_c870d2188457f7dbe7073a21.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_14c440b3d8a3852df87b82cd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_014c7e9aad8360bf67fa4078.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_e28ea8b608fba66ac762a553.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3d6ff8709587a8f1116f0246.woff')format("woff");}.ff9{font-family:ff9;line-height:0.944336;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a3c2a7b90cd5e711b72d6d49.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ebf80da90daca0edf30e7ddd.woff')format("woff");}.ffb{font-family:ffb;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b3dccae993a96d0b60eb9bc3.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8db9da7545d992eae76a9162.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_99d04f6f1f9e82a3485127b3.woff')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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:fff;src:url('chunks/assets/font_d13180f59911aac79c4dd961.woff')format("woff");}.fff{font-family:fff;line-height:0.914062;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:ff10;src:url('chunks/assets/font_0d0469053ec870dee6fb50c4.woff')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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:ff11;src:url('chunks/assets/font_54243d88312848835ea15506.woff')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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:ff12;src:url('chunks/assets/font_fee15c4707b60d954186ffae.woff')format("woff");}.ff12{font-family:ff12;line-height:0.921387;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:ff13;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff13{font-family:ff13;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls9{letter-spacing:-2.724000px;}
.lsd{letter-spacing:-1.596000px;}
.lse{letter-spacing:-1.482000px;}
.lsa{letter-spacing:-0.792000px;}
.lsf{letter-spacing:-0.780000px;}
.ls8{letter-spacing:-0.378000px;}
.ls7{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.256200px;}
.lsb{letter-spacing:0.690000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.476000px;}
.lsc{letter-spacing:1.944000px;}
.ls3{letter-spacing:1.966500px;}
.ls2{letter-spacing:2.034000px;}
.ls4{letter-spacing:2.086500px;}
.ls10{letter-spacing:2.164500px;}
.ls5{letter-spacing:2.250000px;}
.ls6{letter-spacing:4.779000px;}
.ls13{letter-spacing:6.780000px;}
.ls14{letter-spacing:15.387000px;}
.ls12{letter-spacing:46.887000px;}
.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;}
}
.ws5{word-spacing:-25.926000px;}
.ws8{word-spacing:-16.875000px;}
.wsb{word-spacing:-16.789500px;}
.ws4{word-spacing:-16.146000px;}
.ws3{word-spacing:-15.354000px;}
.wsc{word-spacing:-14.881200px;}
.ws9{word-spacing:-14.625000px;}
.ws7{word-spacing:-13.221000px;}
.ws2{word-spacing:-12.531000px;}
.ws1{word-spacing:-12.204000px;}
.ws0{word-spacing:-11.826000px;}
.ws6{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._7{margin-left:-10.546050px;}
._6{margin-left:-9.474300px;}
._9{margin-left:-8.131500px;}
._d{margin-left:-6.235500px;}
._8{margin-left:-5.145900px;}
._17{margin-left:-4.040100px;}
._2{margin-left:-2.982000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._3{width:3.096000px;}
._4{width:4.740000px;}
._b{width:6.690000px;}
._13{width:7.738500px;}
._c{width:8.764500px;}
._5{width:10.584000px;}
._e{width:12.189000px;}
._16{width:13.318500px;}
._a{width:14.334000px;}
._10{width:16.807500px;}
._f{width:21.013500px;}
._15{width:22.078500px;}
._12{width:25.788000px;}
._11{width:30.325500px;}
._14{width:34.840500px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.375000px;}
.y99{bottom:3.390000px;}
.y9f{bottom:3.420000px;}
.yad{bottom:4.492500px;}
.y18{bottom:4.500000px;}
.y9c{bottom:4.515000px;}
.yd5{bottom:4.530000px;}
.yc5{bottom:4.545000px;}
.y97{bottom:7.875000px;}
.y93{bottom:7.905000px;}
.y9a{bottom:9.000000px;}
.yd6{bottom:9.030000px;}
.ya0{bottom:9.045000px;}
.y46{bottom:10.125000px;}
.ye{bottom:11.280000px;}
.y1a{bottom:12.375000px;}
.yc{bottom:13.500000px;}
.y4{bottom:16.875000px;}
.y2{bottom:19.125000px;}
.y44{bottom:21.375000px;}
.y47{bottom:21.390000px;}
.y45{bottom:24.765000px;}
.y17{bottom:29.250000px;}
.yb{bottom:30.405000px;}
.y43{bottom:38.250000px;}
.y16{bottom:45.030000px;}
.ya{bottom:46.155000px;}
.y42{bottom:56.295000px;}
.y5{bottom:57.412500px;}
.y15{bottom:61.905000px;}
.y41{bottom:73.170000px;}
.y9{bottom:73.200000px;}
.y14{bottom:75.405000px;}
.y1{bottom:81.075000px;}
.y40{bottom:90.075000px;}
.y8{bottom:93.450000px;}
.y3f{bottom:108.075000px;}
.y7{bottom:110.355000px;}
.y13{bottom:111.450000px;}
.y2c{bottom:115.950000px;}
.y3e{bottom:124.995000px;}
.yae{bottom:126.112500px;}
.y12{bottom:130.605000px;}
.y90{bottom:131.737500px;}
.y55{bottom:136.237500px;}
.y105{bottom:141.862500px;}
.y3d{bottom:141.870000px;}
.yac{bottom:148.612500px;}
.y8f{bottom:149.737500px;}
.y2b{bottom:149.745000px;}
.y54{bottom:153.105000px;}
.y11{bottom:156.480000px;}
.y104{bottom:158.745000px;}
.y3c{bottom:159.870000px;}
.y2a{bottom:166.650000px;}
.y53{bottom:170.025000px;}
.yd8{bottom:171.150000px;}
.yab{bottom:172.275000px;}
.y3b{bottom:176.775000px;}
.y10{bottom:181.275000px;}
.y29{bottom:183.525000px;}
.y52{bottom:188.025000px;}
.y3a{bottom:193.650000px;}
.yd7{bottom:194.775000px;}
.yaa{bottom:195.900000px;}
.y28{bottom:201.525000px;}
.y8e{bottom:201.570000px;}
.y51{bottom:204.945000px;}
.y103{bottom:210.570000px;}
.y39{bottom:211.695000px;}
.y27{bottom:218.445000px;}
.y50{bottom:221.820000px;}
.y38{bottom:228.570000px;}
.y8d{bottom:235.320000px;}
.y26{bottom:236.445000px;}
.y4f{bottom:239.820000px;}
.yd4{bottom:240.945000px;}
.ya9{bottom:244.350000px;}
.y37{bottom:245.445000px;}
.y102{bottom:245.475000px;}
.y25{bottom:253.350000px;}
.y4e{bottom:256.725000px;}
.ya8{bottom:262.350000px;}
.y36{bottom:263.475000px;}
.yd3{bottom:264.600000px;}
.y8c{bottom:270.225000px;}
.y24{bottom:271.350000px;}
.y4d{bottom:273.600000px;}
.y35{bottom:280.350000px;}
.y8b{bottom:287.130000px;}
.y23{bottom:288.225000px;}
.yd2{bottom:288.255000px;}
.y4c{bottom:291.645000px;}
.y34{bottom:297.255000px;}
.ya7{bottom:304.005000px;}
.y8a{bottom:305.145000px;}
.y22{bottom:306.255000px;}
.y4b{bottom:308.520000px;}
.yd1{bottom:310.755000px;}
.y101{bottom:314.130000px;}
.y33{bottom:315.270000px;}
.y89{bottom:322.020000px;}
.y21{bottom:323.130000px;}
.y4a{bottom:325.395000px;}
.ya6{bottom:326.550000px;}
.y32{bottom:332.145000px;}
.y100{bottom:332.175000px;}
.yd0{bottom:334.425000px;}
.y88{bottom:338.925000px;}
.y20{bottom:341.175000px;}
.y49{bottom:343.425000px;}
.y31{bottom:349.050000px;}
.ya5{bottom:350.175000px;}
.y87{bottom:356.925000px;}
.y1f{bottom:358.050000px;}
.y48{bottom:360.300000px;}
.yff{bottom:365.925000px;}
.y30{bottom:367.050000px;}
.y86{bottom:373.830000px;}
.y1e{bottom:374.955000px;}
.ycf{bottom:380.580000px;}
.y2f{bottom:383.955000px;}
.y85{bottom:390.705000px;}
.ya4{bottom:396.330000px;}
.y2e{bottom:400.830000px;}
.y1d{bottom:403.080000px;}
.yce{bottom:404.205000px;}
.y84{bottom:408.705000px;}
.y1b{bottom:411.000000px;}
.yfe{bottom:417.750000px;}
.y2d{bottom:418.875000px;}
.ya3{bottom:420.000000px;}
.y1c{bottom:421.125000px;}
.y83{bottom:425.625000px;}
.ycd{bottom:427.875000px;}
.yfd{bottom:435.750000px;}
.y82{bottom:442.500000px;}
.ya2{bottom:443.625000px;}
.yfc{bottom:452.670000px;}
.ycc{bottom:453.795000px;}
.y81{bottom:460.545000px;}
.ya1{bottom:466.155000px;}
.yfb{bottom:469.545000px;}
.ycb{bottom:470.670000px;}
.y80{bottom:477.420000px;}
.yfa{bottom:487.545000px;}
.yca{bottom:488.655000px;}
.y9e{bottom:489.780000px;}
.y7f{bottom:494.325000px;}
.yf9{bottom:504.450000px;}
.y7e{bottom:512.325000px;}
.y9d{bottom:513.450000px;}
.yf8{bottom:521.325000px;}
.y7d{bottom:529.200000px;}
.y9b{bottom:535.980000px;}
.yf7{bottom:539.370000px;}
.y7c{bottom:546.120000px;}
.yf6{bottom:556.245000px;}
.yc9{bottom:558.480000px;}
.y98{bottom:559.605000px;}
.y7b{bottom:564.120000px;}
.yf5{bottom:573.120000px;}
.y7a{bottom:581.025000px;}
.yc8{bottom:582.150000px;}
.y96{bottom:583.275000px;}
.yf4{bottom:591.150000px;}
.y79{bottom:597.900000px;}
.y95{bottom:605.775000px;}
.yf3{bottom:608.025000px;}
.y78{bottom:615.900000px;}
.yf2{bottom:624.945000px;}
.yc7{bottom:628.320000px;}
.y94{bottom:629.445000px;}
.y77{bottom:632.820000px;}
.yf1{bottom:642.945000px;}
.y76{bottom:649.695000px;}
.yc6{bottom:651.945000px;}
.y92{bottom:653.070000px;}
.yf0{bottom:659.820000px;}
.y75{bottom:667.725000px;}
.y91{bottom:675.600000px;}
.yef{bottom:676.725000px;}
.y74{bottom:684.600000px;}
.yee{bottom:694.725000px;}
.yc4{bottom:698.100000px;}
.y73{bottom:701.475000px;}
.yed{bottom:711.630000px;}
.y72{bottom:719.520000px;}
.yc3{bottom:721.755000px;}
.yec{bottom:728.505000px;}
.y71{bottom:736.395000px;}
.yc2{bottom:745.425000px;}
.yeb{bottom:746.550000px;}
.y70{bottom:753.300000px;}
.yea{bottom:763.425000px;}
.yc1{bottom:767.925000px;}
.y6f{bottom:771.300000px;}
.ye9{bottom:780.300000px;}
.y6e{bottom:788.205000px;}
.yc0{bottom:791.580000px;}
.ye8{bottom:798.330000px;}
.y6d{bottom:805.080000px;}
.ybf{bottom:815.205000px;}
.y6c{bottom:823.080000px;}
.ye7{bottom:832.125000px;}
.ybe{bottom:837.750000px;}
.y6b{bottom:840.000000px;}
.y19{bottom:843.375000px;}
.ye6{bottom:851.250000px;}
.y6a{bottom:856.875000px;}
.ybd{bottom:861.375000px;}
.yf{bottom:872.670000px;}
.ye5{bottom:873.795000px;}
.y69{bottom:874.920000px;}
.ybc{bottom:885.045000px;}
.y68{bottom:891.795000px;}
.ye4{bottom:897.420000px;}
.y67{bottom:908.670000px;}
.ybb{bottom:910.950000px;}
.ye3{bottom:921.075000px;}
.y66{bottom:926.700000px;}
.yba{bottom:927.825000px;}
.y65{bottom:943.575000px;}
.yb9{bottom:945.825000px;}
.y64{bottom:960.495000px;}
.ye2{bottom:967.245000px;}
.yb8{bottom:969.495000px;}
.y63{bottom:978.495000px;}
.ye1{bottom:990.855000px;}
.yb7{bottom:993.105000px;}
.y62{bottom:995.400000px;}
.y61{bottom:1012.275000px;}
.ye0{bottom:1013.400000px;}
.yb6{bottom:1015.650000px;}
.y60{bottom:1030.275000px;}
.ydf{bottom:1037.070000px;}
.yb5{bottom:1039.320000px;}
.y5f{bottom:1047.195000px;}
.yde{bottom:1060.695000px;}
.y5e{bottom:1064.070000px;}
.yb4{bottom:1065.195000px;}
.yd{bottom:1068.570000px;}
.y5d{bottom:1082.100000px;}
.ydd{bottom:1083.225000px;}
.y6{bottom:1094.475000px;}
.y5c{bottom:1098.975000px;}
.yb3{bottom:1101.225000px;}
.ydc{bottom:1106.850000px;}
.y5b{bottom:1115.850000px;}
.yb2{bottom:1123.755000px;}
.ydb{bottom:1130.505000px;}
.y5a{bottom:1133.880000px;}
.yb1{bottom:1147.380000px;}
.y59{bottom:1150.755000px;}
.yda{bottom:1153.005000px;}
.y58{bottom:1167.675000px;}
.yb0{bottom:1171.050000px;}
.yd9{bottom:1176.675000px;}
.y57{bottom:1185.675000px;}
.yaf{bottom:1193.550000px;}
.y56{bottom:1202.580000px;}
.h21{height:16.860000px;}
.h1e{height:16.875000px;}
.h1d{height:16.897500px;}
.h20{height:16.912500px;}
.h22{height:17.985000px;}
.h1c{height:18.000000px;}
.h1f{height:18.037500px;}
.hb{height:25.912500px;}
.h12{height:29.287500px;}
.h11{height:29.953125px;}
.h2{height:32.625000px;}
.h1b{height:36.037500px;}
.h8{height:37.125000px;}
.h18{height:39.832031px;}
.h1a{height:40.847168px;}
.h19{height:41.275635px;}
.h17{height:41.389893px;}
.h23{height:42.589600px;}
.hd{height:43.075195px;}
.ha{height:43.875000px;}
.h16{height:47.074219px;}
.h15{height:49.234131px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.hf{height:58.185791px;}
.h10{height:59.899658px;}
.he{height:64.237500px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.612500px;}
.hc{height:195.900000px;}
.h14{height:432.375000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w20{width:50.700000px;}
.wd{width:55.200000px;}
.w17{width:56.325000px;}
.w12{width:57.450000px;}
.w1b{width:66.487500px;}
.w2{width:73.237500px;}
.w24{width:93.525000px;}
.w23{width:111.525000px;}
.wa{width:114.900000px;}
.w14{width:116.025000px;}
.wf{width:118.275000px;}
.w1d{width:127.275000px;}
.w1f{width:139.687500px;}
.wb{width:140.775000px;}
.w15{width:141.900000px;}
.w10{width:144.187500px;}
.w4{width:152.055000px;}
.w1e{width:158.850000px;}
.w22{width:162.180000px;}
.w19{width:167.850000px;}
.wc{width:174.600000px;}
.w16{width:178.005000px;}
.w11{width:180.255000px;}
.w1a{width:210.630000px;}
.we{width:211.770000px;}
.w13{width:218.520000px;}
.w7{width:224.145000px;}
.w9{width:224.175000px;}
.w1c{width:234.300000px;}
.w18{width:269.220000px;}
.w21{width:345.825000px;}
.w8{width:508.050000px;}
.w5{width:580.125000px;}
.w1{width:658.950000px;}
.w6{width:732.195000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:1.125000px;}
.x4{left:7.875000px;}
.x2{left:9.000000px;}
.x13{left:12.405000px;}
.xc{left:20.250000px;}
.xe{left:58.575000px;}
.xf{left:69.817500px;}
.x1{left:81.112500px;}
.x15{left:84.487500px;}
.x5{left:97.987500px;}
.x32{left:108.149987px;}
.x33{left:135.187487px;}
.xd{left:136.282500px;}
.x10{left:149.812500px;}
.x11{left:214.012500px;}
.x24{left:221.924987px;}
.x6{left:233.175000px;}
.x2e{left:242.174987px;}
.x9{left:273.705000px;}
.x14{left:286.124987px;}
.x1c{left:299.625000px;}
.x2d{left:301.874987px;}
.x12{left:305.250000px;}
.x20{left:306.375000px;}
.x17{left:312.045000px;}
.x1b{left:318.794987px;}
.x29{left:322.170000px;}
.x7{left:328.920000px;}
.x28{left:330.029987px;}
.x8{left:348.075000px;}
.x25{left:358.200000px;}
.xb{left:364.957500px;}
.x1d{left:421.275000px;}
.x21{left:426.945000px;}
.x18{left:430.320000px;}
.x2f{left:433.695000px;}
.xa{left:437.055000px;}
.x2a{left:453.945000px;}
.x26{left:529.425000px;}
.x1e{left:568.845000px;}
.x22{left:572.220000px;}
.x19{left:575.625000px;}
.x30{left:600.375000px;}
.x2b{left:616.155000px;}
.x31{left:716.400000px;}
.x3{left:740.070000px;}
.x27{left:743.445000px;}
.x1f{left:752.475000px;}
.x23{left:753.600000px;}
.x1a{left:754.725000px;}
.x2c{left:759.225000px;}
@media print{
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls9{letter-spacing:-2.421333pt;}
.lsd{letter-spacing:-1.418667pt;}
.lse{letter-spacing:-1.317333pt;}
.lsa{letter-spacing:-0.704000pt;}
.lsf{letter-spacing:-0.693333pt;}
.ls8{letter-spacing:-0.336000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.227733pt;}
.lsb{letter-spacing:0.613333pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.312000pt;}
.lsc{letter-spacing:1.728000pt;}
.ls3{letter-spacing:1.748000pt;}
.ls2{letter-spacing:1.808000pt;}
.ls4{letter-spacing:1.854667pt;}
.ls10{letter-spacing:1.924000pt;}
.ls5{letter-spacing:2.000000pt;}
.ls6{letter-spacing:4.248000pt;}
.ls13{letter-spacing:6.026667pt;}
.ls14{letter-spacing:13.677333pt;}
.ls12{letter-spacing:41.677333pt;}
.ws5{word-spacing:-23.045333pt;}
.ws8{word-spacing:-15.000000pt;}
.wsb{word-spacing:-14.924000pt;}
.ws4{word-spacing:-14.352000pt;}
.ws3{word-spacing:-13.648000pt;}
.wsc{word-spacing:-13.227733pt;}
.ws9{word-spacing:-13.000000pt;}
.ws7{word-spacing:-11.752000pt;}
.ws2{word-spacing:-11.138667pt;}
.ws1{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.512000pt;}
.ws6{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._7{margin-left:-9.374267pt;}
._6{margin-left:-8.421600pt;}
._9{margin-left:-7.228000pt;}
._d{margin-left:-5.542667pt;}
._8{margin-left:-4.574133pt;}
._17{margin-left:-3.591200pt;}
._2{margin-left:-2.650667pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._3{width:2.752000pt;}
._4{width:4.213333pt;}
._b{width:5.946667pt;}
._13{width:6.878667pt;}
._c{width:7.790667pt;}
._5{width:9.408000pt;}
._e{width:10.834667pt;}
._16{width:11.838667pt;}
._a{width:12.741333pt;}
._10{width:14.940000pt;}
._f{width:18.678667pt;}
._15{width:19.625333pt;}
._12{width:22.922667pt;}
._11{width:26.956000pt;}
._14{width:30.969333pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.000000pt;}
.y99{bottom:3.013333pt;}
.y9f{bottom:3.040000pt;}
.yad{bottom:3.993333pt;}
.y18{bottom:4.000000pt;}
.y9c{bottom:4.013333pt;}
.yd5{bottom:4.026667pt;}
.yc5{bottom:4.040000pt;}
.y97{bottom:7.000000pt;}
.y93{bottom:7.026667pt;}
.y9a{bottom:8.000000pt;}
.yd6{bottom:8.026667pt;}
.ya0{bottom:8.040000pt;}
.y46{bottom:9.000000pt;}
.ye{bottom:10.026667pt;}
.y1a{bottom:11.000000pt;}
.yc{bottom:12.000000pt;}
.y4{bottom:15.000000pt;}
.y2{bottom:17.000000pt;}
.y44{bottom:19.000000pt;}
.y47{bottom:19.013333pt;}
.y45{bottom:22.013333pt;}
.y17{bottom:26.000000pt;}
.yb{bottom:27.026667pt;}
.y43{bottom:34.000000pt;}
.y16{bottom:40.026667pt;}
.ya{bottom:41.026667pt;}
.y42{bottom:50.040000pt;}
.y5{bottom:51.033333pt;}
.y15{bottom:55.026667pt;}
.y41{bottom:65.040000pt;}
.y9{bottom:65.066667pt;}
.y14{bottom:67.026667pt;}
.y1{bottom:72.066667pt;}
.y40{bottom:80.066667pt;}
.y8{bottom:83.066667pt;}
.y3f{bottom:96.066667pt;}
.y7{bottom:98.093333pt;}
.y13{bottom:99.066667pt;}
.y2c{bottom:103.066667pt;}
.y3e{bottom:111.106667pt;}
.yae{bottom:112.100000pt;}
.y12{bottom:116.093333pt;}
.y90{bottom:117.100000pt;}
.y55{bottom:121.100000pt;}
.y105{bottom:126.100000pt;}
.y3d{bottom:126.106667pt;}
.yac{bottom:132.100000pt;}
.y8f{bottom:133.100000pt;}
.y2b{bottom:133.106667pt;}
.y54{bottom:136.093333pt;}
.y11{bottom:139.093333pt;}
.y104{bottom:141.106667pt;}
.y3c{bottom:142.106667pt;}
.y2a{bottom:148.133333pt;}
.y53{bottom:151.133333pt;}
.yd8{bottom:152.133333pt;}
.yab{bottom:153.133333pt;}
.y3b{bottom:157.133333pt;}
.y10{bottom:161.133333pt;}
.y29{bottom:163.133333pt;}
.y52{bottom:167.133333pt;}
.y3a{bottom:172.133333pt;}
.yd7{bottom:173.133333pt;}
.yaa{bottom:174.133333pt;}
.y28{bottom:179.133333pt;}
.y8e{bottom:179.173333pt;}
.y51{bottom:182.173333pt;}
.y103{bottom:187.173333pt;}
.y39{bottom:188.173333pt;}
.y27{bottom:194.173333pt;}
.y50{bottom:197.173333pt;}
.y38{bottom:203.173333pt;}
.y8d{bottom:209.173333pt;}
.y26{bottom:210.173333pt;}
.y4f{bottom:213.173333pt;}
.yd4{bottom:214.173333pt;}
.ya9{bottom:217.200000pt;}
.y37{bottom:218.173333pt;}
.y102{bottom:218.200000pt;}
.y25{bottom:225.200000pt;}
.y4e{bottom:228.200000pt;}
.ya8{bottom:233.200000pt;}
.y36{bottom:234.200000pt;}
.yd3{bottom:235.200000pt;}
.y8c{bottom:240.200000pt;}
.y24{bottom:241.200000pt;}
.y4d{bottom:243.200000pt;}
.y35{bottom:249.200000pt;}
.y8b{bottom:255.226667pt;}
.y23{bottom:256.200000pt;}
.yd2{bottom:256.226667pt;}
.y4c{bottom:259.240000pt;}
.y34{bottom:264.226667pt;}
.ya7{bottom:270.226667pt;}
.y8a{bottom:271.240000pt;}
.y22{bottom:272.226667pt;}
.y4b{bottom:274.240000pt;}
.yd1{bottom:276.226667pt;}
.y101{bottom:279.226667pt;}
.y33{bottom:280.240000pt;}
.y89{bottom:286.240000pt;}
.y21{bottom:287.226667pt;}
.y4a{bottom:289.240000pt;}
.ya6{bottom:290.266667pt;}
.y32{bottom:295.240000pt;}
.y100{bottom:295.266667pt;}
.yd0{bottom:297.266667pt;}
.y88{bottom:301.266667pt;}
.y20{bottom:303.266667pt;}
.y49{bottom:305.266667pt;}
.y31{bottom:310.266667pt;}
.ya5{bottom:311.266667pt;}
.y87{bottom:317.266667pt;}
.y1f{bottom:318.266667pt;}
.y48{bottom:320.266667pt;}
.yff{bottom:325.266667pt;}
.y30{bottom:326.266667pt;}
.y86{bottom:332.293333pt;}
.y1e{bottom:333.293333pt;}
.ycf{bottom:338.293333pt;}
.y2f{bottom:341.293333pt;}
.y85{bottom:347.293333pt;}
.ya4{bottom:352.293333pt;}
.y2e{bottom:356.293333pt;}
.y1d{bottom:358.293333pt;}
.yce{bottom:359.293333pt;}
.y84{bottom:363.293333pt;}
.y1b{bottom:365.333333pt;}
.yfe{bottom:371.333333pt;}
.y2d{bottom:372.333333pt;}
.ya3{bottom:373.333333pt;}
.y1c{bottom:374.333333pt;}
.y83{bottom:378.333333pt;}
.ycd{bottom:380.333333pt;}
.yfd{bottom:387.333333pt;}
.y82{bottom:393.333333pt;}
.ya2{bottom:394.333333pt;}
.yfc{bottom:402.373333pt;}
.ycc{bottom:403.373333pt;}
.y81{bottom:409.373333pt;}
.ya1{bottom:414.360000pt;}
.yfb{bottom:417.373333pt;}
.ycb{bottom:418.373333pt;}
.y80{bottom:424.373333pt;}
.yfa{bottom:433.373333pt;}
.yca{bottom:434.360000pt;}
.y9e{bottom:435.360000pt;}
.y7f{bottom:439.400000pt;}
.yf9{bottom:448.400000pt;}
.y7e{bottom:455.400000pt;}
.y9d{bottom:456.400000pt;}
.yf8{bottom:463.400000pt;}
.y7d{bottom:470.400000pt;}
.y9b{bottom:476.426667pt;}
.yf7{bottom:479.440000pt;}
.y7c{bottom:485.440000pt;}
.yf6{bottom:494.440000pt;}
.yc9{bottom:496.426667pt;}
.y98{bottom:497.426667pt;}
.y7b{bottom:501.440000pt;}
.yf5{bottom:509.440000pt;}
.y7a{bottom:516.466667pt;}
.yc8{bottom:517.466667pt;}
.y96{bottom:518.466667pt;}
.yf4{bottom:525.466667pt;}
.y79{bottom:531.466667pt;}
.y95{bottom:538.466667pt;}
.yf3{bottom:540.466667pt;}
.y78{bottom:547.466667pt;}
.yf2{bottom:555.506667pt;}
.yc7{bottom:558.506667pt;}
.y94{bottom:559.506667pt;}
.y77{bottom:562.506667pt;}
.yf1{bottom:571.506667pt;}
.y76{bottom:577.506667pt;}
.yc6{bottom:579.506667pt;}
.y92{bottom:580.506667pt;}
.yf0{bottom:586.506667pt;}
.y75{bottom:593.533333pt;}
.y91{bottom:600.533333pt;}
.yef{bottom:601.533333pt;}
.y74{bottom:608.533333pt;}
.yee{bottom:617.533333pt;}
.yc4{bottom:620.533333pt;}
.y73{bottom:623.533333pt;}
.yed{bottom:632.560000pt;}
.y72{bottom:639.573333pt;}
.yc3{bottom:641.560000pt;}
.yec{bottom:647.560000pt;}
.y71{bottom:654.573333pt;}
.yc2{bottom:662.600000pt;}
.yeb{bottom:663.600000pt;}
.y70{bottom:669.600000pt;}
.yea{bottom:678.600000pt;}
.yc1{bottom:682.600000pt;}
.y6f{bottom:685.600000pt;}
.ye9{bottom:693.600000pt;}
.y6e{bottom:700.626667pt;}
.yc0{bottom:703.626667pt;}
.ye8{bottom:709.626667pt;}
.y6d{bottom:715.626667pt;}
.ybf{bottom:724.626667pt;}
.y6c{bottom:731.626667pt;}
.ye7{bottom:739.666667pt;}
.ybe{bottom:744.666667pt;}
.y6b{bottom:746.666667pt;}
.y19{bottom:749.666667pt;}
.ye6{bottom:756.666667pt;}
.y6a{bottom:761.666667pt;}
.ybd{bottom:765.666667pt;}
.yf{bottom:775.706667pt;}
.ye5{bottom:776.706667pt;}
.y69{bottom:777.706667pt;}
.ybc{bottom:786.706667pt;}
.y68{bottom:792.706667pt;}
.ye4{bottom:797.706667pt;}
.y67{bottom:807.706667pt;}
.ybb{bottom:809.733333pt;}
.ye3{bottom:818.733333pt;}
.y66{bottom:823.733333pt;}
.yba{bottom:824.733333pt;}
.y65{bottom:838.733333pt;}
.yb9{bottom:840.733333pt;}
.y64{bottom:853.773333pt;}
.ye2{bottom:859.773333pt;}
.yb8{bottom:861.773333pt;}
.y63{bottom:869.773333pt;}
.ye1{bottom:880.760000pt;}
.yb7{bottom:882.760000pt;}
.y62{bottom:884.800000pt;}
.y61{bottom:899.800000pt;}
.ye0{bottom:900.800000pt;}
.yb6{bottom:902.800000pt;}
.y60{bottom:915.800000pt;}
.ydf{bottom:921.840000pt;}
.yb5{bottom:923.840000pt;}
.y5f{bottom:930.840000pt;}
.yde{bottom:942.840000pt;}
.y5e{bottom:945.840000pt;}
.yb4{bottom:946.840000pt;}
.yd{bottom:949.840000pt;}
.y5d{bottom:961.866667pt;}
.ydd{bottom:962.866667pt;}
.y6{bottom:972.866667pt;}
.y5c{bottom:976.866667pt;}
.yb3{bottom:978.866667pt;}
.ydc{bottom:983.866667pt;}
.y5b{bottom:991.866667pt;}
.yb2{bottom:998.893333pt;}
.ydb{bottom:1004.893333pt;}
.y5a{bottom:1007.893333pt;}
.yb1{bottom:1019.893333pt;}
.y59{bottom:1022.893333pt;}
.yda{bottom:1024.893333pt;}
.y58{bottom:1037.933333pt;}
.yb0{bottom:1040.933333pt;}
.yd9{bottom:1045.933333pt;}
.y57{bottom:1053.933333pt;}
.yaf{bottom:1060.933333pt;}
.y56{bottom:1068.960000pt;}
.h21{height:14.986667pt;}
.h1e{height:15.000000pt;}
.h1d{height:15.020000pt;}
.h20{height:15.033333pt;}
.h22{height:15.986667pt;}
.h1c{height:16.000000pt;}
.h1f{height:16.033333pt;}
.hb{height:23.033333pt;}
.h12{height:26.033333pt;}
.h11{height:26.625000pt;}
.h2{height:29.000000pt;}
.h1b{height:32.033333pt;}
.h8{height:33.000000pt;}
.h18{height:35.406250pt;}
.h1a{height:36.308594pt;}
.h19{height:36.689453pt;}
.h17{height:36.791016pt;}
.h23{height:37.857422pt;}
.hd{height:38.289062pt;}
.ha{height:39.000000pt;}
.h16{height:41.843750pt;}
.h15{height:43.763672pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.hf{height:51.720703pt;}
.h10{height:53.244141pt;}
.he{height:57.100000pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.100000pt;}
.hc{height:174.133333pt;}
.h14{height:384.333333pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w20{width:45.066667pt;}
.wd{width:49.066667pt;}
.w17{width:50.066667pt;}
.w12{width:51.066667pt;}
.w1b{width:59.100000pt;}
.w2{width:65.100000pt;}
.w24{width:83.133333pt;}
.w23{width:99.133333pt;}
.wa{width:102.133333pt;}
.w14{width:103.133333pt;}
.wf{width:105.133333pt;}
.w1d{width:113.133333pt;}
.w1f{width:124.166667pt;}
.wb{width:125.133333pt;}
.w15{width:126.133333pt;}
.w10{width:128.166667pt;}
.w4{width:135.160000pt;}
.w1e{width:141.200000pt;}
.w22{width:144.160000pt;}
.w19{width:149.200000pt;}
.wc{width:155.200000pt;}
.w16{width:158.226667pt;}
.w11{width:160.226667pt;}
.w1a{width:187.226667pt;}
.we{width:188.240000pt;}
.w13{width:194.240000pt;}
.w7{width:199.240000pt;}
.w9{width:199.266667pt;}
.w1c{width:208.266667pt;}
.w18{width:239.306667pt;}
.w21{width:307.400000pt;}
.w8{width:451.600000pt;}
.w5{width:515.666667pt;}
.w1{width:585.733333pt;}
.w6{width:650.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:1.000000pt;}
.x4{left:7.000000pt;}
.x2{left:8.000000pt;}
.x13{left:11.026667pt;}
.xc{left:18.000000pt;}
.xe{left:52.066667pt;}
.xf{left:62.060000pt;}
.x1{left:72.100000pt;}
.x15{left:75.100000pt;}
.x5{left:87.100000pt;}
.x32{left:96.133322pt;}
.x33{left:120.166655pt;}
.xd{left:121.140000pt;}
.x10{left:133.166667pt;}
.x11{left:190.233333pt;}
.x24{left:197.266655pt;}
.x6{left:207.266667pt;}
.x2e{left:215.266655pt;}
.x9{left:243.293333pt;}
.x14{left:254.333322pt;}
.x1c{left:266.333333pt;}
.x2d{left:268.333322pt;}
.x12{left:271.333333pt;}
.x20{left:272.333333pt;}
.x17{left:277.373333pt;}
.x1b{left:283.373322pt;}
.x29{left:286.373333pt;}
.x7{left:292.373333pt;}
.x28{left:293.359988pt;}
.x8{left:309.400000pt;}
.x25{left:318.400000pt;}
.xb{left:324.406667pt;}
.x1d{left:374.466667pt;}
.x21{left:379.506667pt;}
.x18{left:382.506667pt;}
.x2f{left:385.506667pt;}
.xa{left:388.493333pt;}
.x2a{left:403.506667pt;}
.x26{left:470.600000pt;}
.x1e{left:505.640000pt;}
.x22{left:508.640000pt;}
.x19{left:511.666667pt;}
.x30{left:533.666667pt;}
.x2b{left:547.693333pt;}
.x31{left:636.800000pt;}
.x3{left:657.840000pt;}
.x27{left:660.840000pt;}
.x1f{left:668.866667pt;}
.x23{left:669.866667pt;}
.x1a{left:670.866667pt;}
.x2c{left:674.866667pt;}
}




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