
    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_8f143ff761d1db446d20218f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6d5a81c9067bbecd685fcf80.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_41184a8e050252cae7ad3a38.woff2')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_d0f40131c6d2ceb3e11ced44.woff2')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_43b0192c579bde55b77463fc.woff2')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_17ec487f2be6ec95c1eaf724.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_93b9cb4062dcac7980ca6313.woff2')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_51912599cf499ddc6f44149f.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5e12021861a5bcc48b5981a5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.754395;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_c111620965cb76fd6f6c76b4.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_17f44ae44fc1f1dc00aa1902.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_49f1e9d3e94ac842c9a449f6.woff2')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_5b4a5b1a3094bec2a2a03a9e.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_2f6e95477a1c6bd116128009.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_fbbfb7b30a7dafff8606d992.woff2')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_6c4f0cf5997df8e887044d11.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_fd60c49cfe57f639a4997c2b.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_c47e360bbced62d3e6737279.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff14{font-family:ff14;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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsc{letter-spacing:-1.260000px;}
.lsa{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.100200px;}
.lsd{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls10{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.ls5{letter-spacing:0.180000px;}
.lse{letter-spacing:0.206400px;}
.ls2{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls12{letter-spacing:0.618000px;}
.ls3{letter-spacing:0.786240px;}
.ls14{letter-spacing:15.786720px;}
.ls11{letter-spacing:45.306720px;}
.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;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws7{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.146400px;}
.wsf{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.wse{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.220000px;}
.wsa{word-spacing:-13.505760px;}
.ws5{word-spacing:-12.854880px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._f{margin-left:-6.633360px;}
._4{margin-left:-5.557680px;}
._3{margin-left:-4.320000px;}
._2{margin-left:-2.795040px;}
._0{margin-left:-1.080000px;}
._1{width:1.128000px;}
._10{width:2.802240px;}
._9{width:4.489440px;}
._15{width:5.841600px;}
._8{width:6.939600px;}
._6{width:8.075040px;}
._a{width:9.203040px;}
._b{width:10.244160px;}
._14{width:11.545440px;}
._17{width:12.623520px;}
._13{width:13.685040px;}
._16{width:15.973200px;}
._18{width:17.083680px;}
._5{width:18.114960px;}
._7{width:19.600800px;}
._1a{width:21.931920px;}
._1c{width:23.334720px;}
._d{width:26.264640px;}
._11{width:27.340320px;}
._12{width:28.726800px;}
._e{width:29.730480px;}
._c{width:31.082640px;}
._1b{width:40.457520px;}
._19{width:44.229840px;}
._1d{width:65.338560px;}
._1e{width:66.545760px;}
.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(23,54,93);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:3.240000px;}
.y51{bottom:3.420000px;}
.y4{bottom:3.600000px;}
.yf{bottom:4.140000px;}
.y1b{bottom:4.860000px;}
.y1d{bottom:12.420000px;}
.yd{bottom:13.680000px;}
.y52{bottom:14.940000px;}
.y5{bottom:17.316000px;}
.y50{bottom:18.000000px;}
.y3{bottom:20.016000px;}
.yaf{bottom:20.340000px;}
.y4d{bottom:20.520000px;}
.y1a{bottom:29.340000px;}
.yc{bottom:30.060000px;}
.y6{bottom:31.140000px;}
.y4c{bottom:37.800000px;}
.y19{bottom:45.945000px;}
.yb{bottom:46.440000px;}
.y2{bottom:52.200000px;}
.y4b{bottom:55.080000px;}
.y18{bottom:62.325000px;}
.y4a{bottom:72.180000px;}
.ya{bottom:73.260000px;}
.y17{bottom:78.885000px;}
.y49{bottom:89.460000px;}
.y9{bottom:92.910000px;}
.y16{bottom:94.725000px;}
.ybf{bottom:98.856000px;}
.y57{bottom:100.296000px;}
.y95{bottom:104.796000px;}
.y15{bottom:105.165000px;}
.y48{bottom:106.740000px;}
.ye6{bottom:106.956000px;}
.y8{bottom:111.270000px;}
.ybe{bottom:116.136000px;}
.y56{bottom:117.576000px;}
.y94{bottom:119.556000px;}
.y14{bottom:123.525000px;}
.y47{bottom:124.065000px;}
.ye5{bottom:124.236000px;}
.ybd{bottom:129.996000px;}
.y55{bottom:134.856000px;}
.y93{bottom:137.556000px;}
.y46{bottom:141.345000px;}
.ye4{bottom:141.516000px;}
.y13{bottom:142.425000px;}
.yed{bottom:146.016000px;}
.y54{bottom:152.130000px;}
.y92{bottom:155.550000px;}
.y45{bottom:158.625000px;}
.ye3{bottom:158.790000px;}
.yec{bottom:163.290000px;}
.y12{bottom:168.165000px;}
.y53{bottom:169.230000px;}
.y91{bottom:173.550000px;}
.y44{bottom:175.725000px;}
.ye2{bottom:175.890000px;}
.yeb{bottom:180.570000px;}
.y4f{bottom:183.270000px;}
.y90{bottom:191.550000px;}
.y11{bottom:192.645000px;}
.y43{bottom:193.005000px;}
.ye1{bottom:193.170000px;}
.yea{bottom:197.670000px;}
.y8f{bottom:209.550000px;}
.y42{bottom:210.285000px;}
.ye0{bottom:210.450000px;}
.y1e{bottom:212.610000px;}
.ye9{bottom:214.950000px;}
.y8e{bottom:227.550000px;}
.y41{bottom:227.565000px;}
.ydf{bottom:227.730000px;}
.ye8{bottom:232.230000px;}
.y40{bottom:244.845000px;}
.yde{bottom:245.010000px;}
.y8d{bottom:245.550000px;}
.ye7{bottom:249.510000px;}
.y3f{bottom:261.945000px;}
.ydd{bottom:262.290000px;}
.y8c{bottom:266.790000px;}
.y3e{bottom:279.225000px;}
.ydc{bottom:279.390000px;}
.y8b{bottom:284.070000px;}
.y3d{bottom:296.505000px;}
.ydb{bottom:296.670000px;}
.y8a{bottom:301.170000px;}
.y3c{bottom:313.785000px;}
.yda{bottom:313.950000px;}
.y89{bottom:318.450000px;}
.y3b{bottom:331.065000px;}
.yd9{bottom:331.230000px;}
.y88{bottom:335.730000px;}
.y2c{bottom:337.545000px;}
.y3a{bottom:348.345000px;}
.yd8{bottom:348.555000px;}
.y2b{bottom:352.845000px;}
.y87{bottom:353.055000px;}
.y39{bottom:365.445000px;}
.yd7{bottom:365.835000px;}
.y86{bottom:370.335000px;}
.y2a{bottom:370.485000px;}
.y38{bottom:382.725000px;}
.yd6{bottom:382.935000px;}
.y85{bottom:387.615000px;}
.y29{bottom:387.765000px;}
.y37{bottom:400.035000px;}
.yd5{bottom:400.215000px;}
.y84{bottom:404.715000px;}
.y28{bottom:405.075000px;}
.y36{bottom:417.315000px;}
.yd4{bottom:417.495000px;}
.y83{bottom:421.995000px;}
.y27{bottom:422.715000px;}
.ybc{bottom:430.995000px;}
.y35{bottom:434.595000px;}
.yd3{bottom:434.775000px;}
.y82{bottom:439.275000px;}
.y26{bottom:440.175000px;}
.ybb{bottom:445.755000px;}
.y34{bottom:451.875000px;}
.yd2{bottom:452.055000px;}
.y81{bottom:456.555000px;}
.y25{bottom:457.635000px;}
.y33{bottom:468.975000px;}
.yd1{bottom:469.155000px;}
.y80{bottom:473.835000px;}
.y24{bottom:474.915000px;}
.yba{bottom:481.035000px;}
.y32{bottom:486.255000px;}
.yd0{bottom:486.435000px;}
.y7f{bottom:490.935000px;}
.y23{bottom:492.375000px;}
.yb9{bottom:499.035000px;}
.y31{bottom:503.535000px;}
.ycf{bottom:503.715000px;}
.y7e{bottom:508.215000px;}
.y22{bottom:509.835000px;}
.yb8{bottom:517.035000px;}
.y30{bottom:520.815000px;}
.yce{bottom:520.995000px;}
.y7d{bottom:525.495000px;}
.y21{bottom:529.995000px;}
.yb7{bottom:535.035000px;}
.y2f{bottom:538.095000px;}
.ycd{bottom:538.275000px;}
.y7c{bottom:542.775000px;}
.yb6{bottom:553.035000px;}
.y2e{bottom:555.195000px;}
.ycc{bottom:555.555000px;}
.y20{bottom:557.535000px;}
.y7b{bottom:560.055000px;}
.y2d{bottom:572.475000px;}
.ycb{bottom:572.655000px;}
.y1f{bottom:575.175000px;}
.y7a{bottom:577.335000px;}
.yca{bottom:589.935000px;}
.yb5{bottom:591.555000px;}
.y79{bottom:594.435000px;}
.yc9{bottom:607.245000px;}
.yb4{bottom:608.865000px;}
.y78{bottom:611.745000px;}
.yb3{bottom:623.625000px;}
.yc8{bottom:624.525000px;}
.y77{bottom:629.025000px;}
.yb2{bottom:641.625000px;}
.yc7{bottom:641.805000px;}
.y76{bottom:646.305000px;}
.yc6{bottom:659.085000px;}
.yb1{bottom:659.625000px;}
.y75{bottom:663.585000px;}
.yc5{bottom:676.185000px;}
.yb0{bottom:677.625000px;}
.y74{bottom:680.865000px;}
.yc4{bottom:693.465000px;}
.yae{bottom:695.625000px;}
.y73{bottom:697.965000px;}
.yc3{bottom:710.745000px;}
.y72{bottom:715.245000px;}
.yc2{bottom:728.025000px;}
.y71{bottom:732.525000px;}
.yad{bottom:733.965000px;}
.yc1{bottom:745.305000px;}
.y70{bottom:749.805000px;}
.yac{bottom:751.245000px;}
.yc0{bottom:759.345000px;}
.yab{bottom:766.005000px;}
.y6f{bottom:767.085000px;}
.yaa{bottom:784.005000px;}
.y6e{bottom:784.365000px;}
.y1c{bottom:799.125000px;}
.y6d{bottom:801.465000px;}
.ya9{bottom:802.005000px;}
.y6c{bottom:818.745000px;}
.ya8{bottom:820.005000px;}
.y10{bottom:828.645000px;}
.y6b{bottom:836.025000px;}
.ya7{bottom:838.005000px;}
.y6a{bottom:853.305000px;}
.ya6{bottom:856.005000px;}
.y69{bottom:870.630000px;}
.ya5{bottom:874.050000px;}
.y68{bottom:887.730000px;}
.ya4{bottom:892.050000px;}
.y67{bottom:905.010000px;}
.ya3{bottom:913.290000px;}
.y66{bottom:922.290000px;}
.ya2{bottom:930.570000px;}
.y65{bottom:939.570000px;}
.ya1{bottom:945.330000px;}
.y64{bottom:956.850000px;}
.ya0{bottom:963.330000px;}
.y63{bottom:974.130000px;}
.y9f{bottom:981.330000px;}
.y62{bottom:991.230000px;}
.y9e{bottom:999.330000px;}
.y61{bottom:1008.510000px;}
.y9d{bottom:1017.330000px;}
.y60{bottom:1025.790000px;}
.y9c{bottom:1035.330000px;}
.ye{bottom:1036.410000px;}
.y5f{bottom:1043.070000px;}
.y7{bottom:1056.390000px;}
.y9b{bottom:1056.570000px;}
.y5e{bottom:1060.350000px;}
.y9a{bottom:1073.850000px;}
.y5d{bottom:1077.630000px;}
.y99{bottom:1088.610000px;}
.y5c{bottom:1094.730000px;}
.y98{bottom:1106.610000px;}
.y5b{bottom:1112.010000px;}
.y97{bottom:1124.610000px;}
.y5a{bottom:1129.290000px;}
.y96{bottom:1142.640000px;}
.y59{bottom:1146.600000px;}
.y58{bottom:1163.880000px;}
.y1{bottom:1220.400000px;}
.h22{height:17.100000px;}
.h1f{height:17.280000px;}
.h20{height:17.316000px;}
.hc{height:19.440000px;}
.h13{height:28.968750px;}
.h1e{height:29.340000px;}
.h14{height:29.520000px;}
.h3{height:32.976000px;}
.h21{height:34.380000px;}
.h23{height:34.560000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1b{height:38.818125px;}
.h1d{height:41.726953px;}
.h1c{height:42.164648px;}
.h1a{height:42.281367px;}
.h5{height:43.453125px;}
.h24{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h19{height:45.770625px;}
.h17{height:47.980898px;}
.ha{height:54.000000px;}
.h4{height:55.291992px;}
.h18{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:62.028281px;}
.h2{height:65.884219px;}
.h6{height:67.824844px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:207.750000px;}
.h16{height:586.515000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:53.316000px;}
.w4{width:73.080000px;}
.w10{width:73.296000px;}
.w1a{width:73.476000px;}
.w1b{width:74.160000px;}
.w1e{width:80.820000px;}
.w1d{width:84.276000px;}
.w1c{width:95.040000px;}
.w22{width:103.500000px;}
.w20{width:103.536000px;}
.w21{width:103.680000px;}
.w1f{width:103.716000px;}
.wd{width:105.336000px;}
.wa{width:105.696000px;}
.w14{width:115.956000px;}
.w17{width:134.460000px;}
.w16{width:147.996000px;}
.w5{width:151.950000px;}
.we{width:185.070000px;}
.w11{width:206.850000px;}
.w12{width:212.790000px;}
.w8{width:216.075000px;}
.wf{width:218.550000px;}
.w13{width:234.390000px;}
.w19{width:264.090000px;}
.wc{width:311.250000px;}
.wb{width:311.295000px;}
.w15{width:328.755000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w3{width:658.050000px;}
.w7{width:731.130000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:7.560000px;}
.x2{left:8.676000px;}
.x14{left:12.600000px;}
.xb{left:25.056000px;}
.x1{left:80.999987px;}
.x11{left:87.510000px;}
.xf{left:88.950000px;}
.x4{left:98.130000px;}
.xe{left:102.990000px;}
.x10{left:104.430000px;}
.x36{left:107.855987px;}
.x25{left:135.756000px;}
.xd{left:139.710000px;}
.x1c{left:155.730000px;}
.x2c{left:186.150000px;}
.x16{left:188.130000px;}
.x21{left:198.570000px;}
.x2b{left:211.529987px;}
.x12{left:215.175000px;}
.x32{left:221.969987px;}
.x24{left:223.949987px;}
.x5{left:232.950000px;}
.xc{left:269.355000px;}
.x8{left:272.235000px;}
.x20{left:281.234987px;}
.x2d{left:290.415000px;}
.x1b{left:291.674987px;}
.x34{left:295.814987px;}
.x13{left:297.075000px;}
.x18{left:325.334987px;}
.x6{left:331.995000px;}
.x15{left:333.794987px;}
.x7{left:351.255000px;}
.x1d{left:363.315000px;}
.xa{left:365.475000px;}
.x19{left:373.575000px;}
.x2e{left:394.815000px;}
.x35{left:396.074987px;}
.x26{left:400.575000px;}
.x9{left:439.500000px;}
.x27{left:474.945000px;}
.x2f{left:499.065000px;}
.x17{left:500.145000px;}
.x22{left:528.045000px;}
.x28{left:549.825000px;}
.x1e{left:577.005000px;}
.x1a{left:592.845000px;}
.x33{left:598.424987px;}
.x30{left:603.465000px;}
.x29{left:645.585000px;}
.x23{left:676.950000px;}
.x31{left:707.910000px;}
.x2a{left:730.590000px;}
.x3{left:739.050000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsc{letter-spacing:-1.120000pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.089067pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls10{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.ls5{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.183467pt;}
.ls2{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls12{letter-spacing:0.549333pt;}
.ls3{letter-spacing:0.698880pt;}
.ls14{letter-spacing:14.032640pt;}
.ls11{letter-spacing:40.272640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws7{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.463467pt;}
.wsf{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.185067pt;}
.ws9{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.640000pt;}
.wsa{word-spacing:-12.005120pt;}
.ws5{word-spacing:-11.426560pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._f{margin-left:-5.896320pt;}
._4{margin-left:-4.940160pt;}
._3{margin-left:-3.840000pt;}
._2{margin-left:-2.484480pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.002667pt;}
._10{width:2.490880pt;}
._9{width:3.990613pt;}
._15{width:5.192533pt;}
._8{width:6.168533pt;}
._6{width:7.177813pt;}
._a{width:8.180480pt;}
._b{width:9.105920pt;}
._14{width:10.262613pt;}
._17{width:11.220907pt;}
._13{width:12.164480pt;}
._16{width:14.198400pt;}
._18{width:15.185493pt;}
._5{width:16.102187pt;}
._7{width:17.422933pt;}
._1a{width:19.495040pt;}
._1c{width:20.741973pt;}
._d{width:23.346347pt;}
._11{width:24.302507pt;}
._12{width:25.534933pt;}
._e{width:26.427093pt;}
._c{width:27.629013pt;}
._1b{width:35.962240pt;}
._19{width:39.315413pt;}
._1d{width:58.078720pt;}
._1e{width:59.151787pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:2.880000pt;}
.y51{bottom:3.040000pt;}
.y4{bottom:3.200000pt;}
.yf{bottom:3.680000pt;}
.y1b{bottom:4.320000pt;}
.y1d{bottom:11.040000pt;}
.yd{bottom:12.160000pt;}
.y52{bottom:13.280000pt;}
.y5{bottom:15.392000pt;}
.y50{bottom:16.000000pt;}
.y3{bottom:17.792000pt;}
.yaf{bottom:18.080000pt;}
.y4d{bottom:18.240000pt;}
.y1a{bottom:26.080000pt;}
.yc{bottom:26.720000pt;}
.y6{bottom:27.680000pt;}
.y4c{bottom:33.600000pt;}
.y19{bottom:40.840000pt;}
.yb{bottom:41.280000pt;}
.y2{bottom:46.400000pt;}
.y4b{bottom:48.960000pt;}
.y18{bottom:55.400000pt;}
.y4a{bottom:64.160000pt;}
.ya{bottom:65.120000pt;}
.y17{bottom:70.120000pt;}
.y49{bottom:79.520000pt;}
.y9{bottom:82.586667pt;}
.y16{bottom:84.200000pt;}
.ybf{bottom:87.872000pt;}
.y57{bottom:89.152000pt;}
.y95{bottom:93.152000pt;}
.y15{bottom:93.480000pt;}
.y48{bottom:94.880000pt;}
.ye6{bottom:95.072000pt;}
.y8{bottom:98.906667pt;}
.ybe{bottom:103.232000pt;}
.y56{bottom:104.512000pt;}
.y94{bottom:106.272000pt;}
.y14{bottom:109.800000pt;}
.y47{bottom:110.280000pt;}
.ye5{bottom:110.432000pt;}
.ybd{bottom:115.552000pt;}
.y55{bottom:119.872000pt;}
.y93{bottom:122.272000pt;}
.y46{bottom:125.640000pt;}
.ye4{bottom:125.792000pt;}
.y13{bottom:126.600000pt;}
.yed{bottom:129.792000pt;}
.y54{bottom:135.226667pt;}
.y92{bottom:138.266667pt;}
.y45{bottom:141.000000pt;}
.ye3{bottom:141.146667pt;}
.yec{bottom:145.146667pt;}
.y12{bottom:149.480000pt;}
.y53{bottom:150.426667pt;}
.y91{bottom:154.266667pt;}
.y44{bottom:156.200000pt;}
.ye2{bottom:156.346667pt;}
.yeb{bottom:160.506667pt;}
.y4f{bottom:162.906667pt;}
.y90{bottom:170.266667pt;}
.y11{bottom:171.240000pt;}
.y43{bottom:171.560000pt;}
.ye1{bottom:171.706667pt;}
.yea{bottom:175.706667pt;}
.y8f{bottom:186.266667pt;}
.y42{bottom:186.920000pt;}
.ye0{bottom:187.066667pt;}
.y1e{bottom:188.986667pt;}
.ye9{bottom:191.066667pt;}
.y8e{bottom:202.266667pt;}
.y41{bottom:202.280000pt;}
.ydf{bottom:202.426667pt;}
.ye8{bottom:206.426667pt;}
.y40{bottom:217.640000pt;}
.yde{bottom:217.786667pt;}
.y8d{bottom:218.266667pt;}
.ye7{bottom:221.786667pt;}
.y3f{bottom:232.840000pt;}
.ydd{bottom:233.146667pt;}
.y8c{bottom:237.146667pt;}
.y3e{bottom:248.200000pt;}
.ydc{bottom:248.346667pt;}
.y8b{bottom:252.506667pt;}
.y3d{bottom:263.560000pt;}
.ydb{bottom:263.706667pt;}
.y8a{bottom:267.706667pt;}
.y3c{bottom:278.920000pt;}
.yda{bottom:279.066667pt;}
.y89{bottom:283.066667pt;}
.y3b{bottom:294.280000pt;}
.yd9{bottom:294.426667pt;}
.y88{bottom:298.426667pt;}
.y2c{bottom:300.040000pt;}
.y3a{bottom:309.640000pt;}
.yd8{bottom:309.826667pt;}
.y2b{bottom:313.640000pt;}
.y87{bottom:313.826667pt;}
.y39{bottom:324.840000pt;}
.yd7{bottom:325.186667pt;}
.y86{bottom:329.186667pt;}
.y2a{bottom:329.320000pt;}
.y38{bottom:340.200000pt;}
.yd6{bottom:340.386667pt;}
.y85{bottom:344.546667pt;}
.y29{bottom:344.680000pt;}
.y37{bottom:355.586667pt;}
.yd5{bottom:355.746667pt;}
.y84{bottom:359.746667pt;}
.y28{bottom:360.066667pt;}
.y36{bottom:370.946667pt;}
.yd4{bottom:371.106667pt;}
.y83{bottom:375.106667pt;}
.y27{bottom:375.746667pt;}
.ybc{bottom:383.106667pt;}
.y35{bottom:386.306667pt;}
.yd3{bottom:386.466667pt;}
.y82{bottom:390.466667pt;}
.y26{bottom:391.266667pt;}
.ybb{bottom:396.226667pt;}
.y34{bottom:401.666667pt;}
.yd2{bottom:401.826667pt;}
.y81{bottom:405.826667pt;}
.y25{bottom:406.786667pt;}
.y33{bottom:416.866667pt;}
.yd1{bottom:417.026667pt;}
.y80{bottom:421.186667pt;}
.y24{bottom:422.146667pt;}
.yba{bottom:427.586667pt;}
.y32{bottom:432.226667pt;}
.yd0{bottom:432.386667pt;}
.y7f{bottom:436.386667pt;}
.y23{bottom:437.666667pt;}
.yb9{bottom:443.586667pt;}
.y31{bottom:447.586667pt;}
.ycf{bottom:447.746667pt;}
.y7e{bottom:451.746667pt;}
.y22{bottom:453.186667pt;}
.yb8{bottom:459.586667pt;}
.y30{bottom:462.946667pt;}
.yce{bottom:463.106667pt;}
.y7d{bottom:467.106667pt;}
.y21{bottom:471.106667pt;}
.yb7{bottom:475.586667pt;}
.y2f{bottom:478.306667pt;}
.ycd{bottom:478.466667pt;}
.y7c{bottom:482.466667pt;}
.yb6{bottom:491.586667pt;}
.y2e{bottom:493.506667pt;}
.ycc{bottom:493.826667pt;}
.y20{bottom:495.586667pt;}
.y7b{bottom:497.826667pt;}
.y2d{bottom:508.866667pt;}
.ycb{bottom:509.026667pt;}
.y1f{bottom:511.266667pt;}
.y7a{bottom:513.186667pt;}
.yca{bottom:524.386667pt;}
.yb5{bottom:525.826667pt;}
.y79{bottom:528.386667pt;}
.yc9{bottom:539.773333pt;}
.yb4{bottom:541.213333pt;}
.y78{bottom:543.773333pt;}
.yb3{bottom:554.333333pt;}
.yc8{bottom:555.133333pt;}
.y77{bottom:559.133333pt;}
.yb2{bottom:570.333333pt;}
.yc7{bottom:570.493333pt;}
.y76{bottom:574.493333pt;}
.yc6{bottom:585.853333pt;}
.yb1{bottom:586.333333pt;}
.y75{bottom:589.853333pt;}
.yc5{bottom:601.053333pt;}
.yb0{bottom:602.333333pt;}
.y74{bottom:605.213333pt;}
.yc4{bottom:616.413333pt;}
.yae{bottom:618.333333pt;}
.y73{bottom:620.413333pt;}
.yc3{bottom:631.773333pt;}
.y72{bottom:635.773333pt;}
.yc2{bottom:647.133333pt;}
.y71{bottom:651.133333pt;}
.yad{bottom:652.413333pt;}
.yc1{bottom:662.493333pt;}
.y70{bottom:666.493333pt;}
.yac{bottom:667.773333pt;}
.yc0{bottom:674.973333pt;}
.yab{bottom:680.893333pt;}
.y6f{bottom:681.853333pt;}
.yaa{bottom:696.893333pt;}
.y6e{bottom:697.213333pt;}
.y1c{bottom:710.333333pt;}
.y6d{bottom:712.413333pt;}
.ya9{bottom:712.893333pt;}
.y6c{bottom:727.773333pt;}
.ya8{bottom:728.893333pt;}
.y10{bottom:736.573333pt;}
.y6b{bottom:743.133333pt;}
.ya7{bottom:744.893333pt;}
.y6a{bottom:758.493333pt;}
.ya6{bottom:760.893333pt;}
.y69{bottom:773.893333pt;}
.ya5{bottom:776.933333pt;}
.y68{bottom:789.093333pt;}
.ya4{bottom:792.933333pt;}
.y67{bottom:804.453333pt;}
.ya3{bottom:811.813333pt;}
.y66{bottom:819.813333pt;}
.ya2{bottom:827.173333pt;}
.y65{bottom:835.173333pt;}
.ya1{bottom:840.293333pt;}
.y64{bottom:850.533333pt;}
.ya0{bottom:856.293333pt;}
.y63{bottom:865.893333pt;}
.y9f{bottom:872.293333pt;}
.y62{bottom:881.093333pt;}
.y9e{bottom:888.293333pt;}
.y61{bottom:896.453333pt;}
.y9d{bottom:904.293333pt;}
.y60{bottom:911.813333pt;}
.y9c{bottom:920.293333pt;}
.ye{bottom:921.253333pt;}
.y5f{bottom:927.173333pt;}
.y7{bottom:939.013333pt;}
.y9b{bottom:939.173333pt;}
.y5e{bottom:942.533333pt;}
.y9a{bottom:954.533333pt;}
.y5d{bottom:957.893333pt;}
.y99{bottom:967.653333pt;}
.y5c{bottom:973.093333pt;}
.y98{bottom:983.653333pt;}
.y5b{bottom:988.453333pt;}
.y97{bottom:999.653333pt;}
.y5a{bottom:1003.813333pt;}
.y96{bottom:1015.680000pt;}
.y59{bottom:1019.200000pt;}
.y58{bottom:1034.560000pt;}
.y1{bottom:1084.800000pt;}
.h22{height:15.200000pt;}
.h1f{height:15.360000pt;}
.h20{height:15.392000pt;}
.hc{height:17.280000pt;}
.h13{height:25.750000pt;}
.h1e{height:26.080000pt;}
.h14{height:26.240000pt;}
.h3{height:29.312000pt;}
.h21{height:30.560000pt;}
.h23{height:30.720000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1b{height:34.505000pt;}
.h1d{height:37.090625pt;}
.h1c{height:37.479688pt;}
.h1a{height:37.583438pt;}
.h5{height:38.625000pt;}
.h24{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h19{height:40.685000pt;}
.h17{height:42.649687pt;}
.ha{height:48.000000pt;}
.h4{height:49.148438pt;}
.h18{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:55.136250pt;}
.h2{height:58.563750pt;}
.h6{height:60.288750pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:184.666667pt;}
.h16{height:521.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:47.392000pt;}
.w4{width:64.960000pt;}
.w10{width:65.152000pt;}
.w1a{width:65.312000pt;}
.w1b{width:65.920000pt;}
.w1e{width:71.840000pt;}
.w1d{width:74.912000pt;}
.w1c{width:84.480000pt;}
.w22{width:92.000000pt;}
.w20{width:92.032000pt;}
.w21{width:92.160000pt;}
.w1f{width:92.192000pt;}
.wd{width:93.632000pt;}
.wa{width:93.952000pt;}
.w14{width:103.072000pt;}
.w17{width:119.520000pt;}
.w16{width:131.552000pt;}
.w5{width:135.066667pt;}
.we{width:164.506667pt;}
.w11{width:183.866667pt;}
.w12{width:189.146667pt;}
.w8{width:192.066667pt;}
.wf{width:194.266667pt;}
.w13{width:208.346667pt;}
.w19{width:234.746667pt;}
.wc{width:276.666667pt;}
.wb{width:276.706667pt;}
.w15{width:292.226667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w3{width:584.933333pt;}
.w7{width:649.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.720000pt;}
.x2{left:7.712000pt;}
.x14{left:11.200000pt;}
.xb{left:22.272000pt;}
.x1{left:71.999988pt;}
.x11{left:77.786667pt;}
.xf{left:79.066667pt;}
.x4{left:87.226667pt;}
.xe{left:91.546667pt;}
.x10{left:92.826667pt;}
.x36{left:95.871988pt;}
.x25{left:120.672000pt;}
.xd{left:124.186667pt;}
.x1c{left:138.426667pt;}
.x2c{left:165.466667pt;}
.x16{left:167.226667pt;}
.x21{left:176.506667pt;}
.x2b{left:188.026655pt;}
.x12{left:191.266667pt;}
.x32{left:197.306655pt;}
.x24{left:199.066655pt;}
.x5{left:207.066667pt;}
.xc{left:239.426667pt;}
.x8{left:241.986667pt;}
.x20{left:249.986655pt;}
.x2d{left:258.146667pt;}
.x1b{left:259.266655pt;}
.x34{left:262.946655pt;}
.x13{left:264.066667pt;}
.x18{left:289.186655pt;}
.x6{left:295.106667pt;}
.x15{left:296.706655pt;}
.x7{left:312.226667pt;}
.x1d{left:322.946667pt;}
.xa{left:324.866667pt;}
.x19{left:332.066667pt;}
.x2e{left:350.946667pt;}
.x35{left:352.066655pt;}
.x26{left:356.066667pt;}
.x9{left:390.666667pt;}
.x27{left:422.173333pt;}
.x2f{left:443.613333pt;}
.x17{left:444.573333pt;}
.x22{left:469.373333pt;}
.x28{left:488.733333pt;}
.x1e{left:512.893333pt;}
.x1a{left:526.973333pt;}
.x33{left:531.933322pt;}
.x30{left:536.413333pt;}
.x29{left:573.853333pt;}
.x23{left:601.733333pt;}
.x31{left:629.253333pt;}
.x2a{left:649.413333pt;}
.x3{left:656.933333pt;}
}




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