
    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_9e11ace0e5ef66a5521ed789.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_f9431b5d4c9172e9fb6e8076.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_85e63578f15f204fd2b371f8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_83ba3cece6c49e301568d895.woff')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_3f41f99684d7f63ae42c94b7.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_b30c9c68cdba6cf9d0b1d8ff.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_8346372d6d1af2968efd6599.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_e2a6f7e22f1d1fba64a7abe3.woff')format("woff");}.ffc{font-family:ffc;line-height:0.976562;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_2d2baf55e6bc68ea99b2bb85.woff')format("woff");}.ffd{font-family:ffd;line-height:0.976562;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_a7705055f2cf055a060c704a.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_ff11cbe148dfac486431c7fa.woff')format("woff");}.fff{font-family:fff;line-height:1.112305;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_dadc45c83cbed12885e8aa45.woff')format("woff");}.ff10{font-family:ff10;line-height:1.112305;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_a847a36844c33d82c0382ceb.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_ab4f389d724932d8b7255e5c.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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff13{font-family:ff13;line-height:0.910156;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_130301694ab792f9947e2b7d.woff')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;}
@font-face{font-family:ff15;src:url('chunks/assets/font_3d39f2bf7322051b2b88a82a.woff')format("woff");}.ff15{font-family:ff15;line-height:0.682617;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.180000px;}
.lsb{letter-spacing:-2.724000px;}
.lse{letter-spacing:-1.596000px;}
.ls1a{letter-spacing:-1.128000px;}
.lsc{letter-spacing:-0.792000px;}
.lsf{letter-spacing:-0.780000px;}
.lsa{letter-spacing:-0.378000px;}
.ls9{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.090000px;}
.lsd{letter-spacing:0.690000px;}
.ls12{letter-spacing:0.900000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.476000px;}
.ls14{letter-spacing:1.737000px;}
.ls2{letter-spacing:1.854000px;}
.ls5{letter-spacing:1.966500px;}
.ls3{letter-spacing:2.086500px;}
.ls4{letter-spacing:2.146500px;}
.ls18{letter-spacing:2.164500px;}
.ls6{letter-spacing:2.250000px;}
.ls15{letter-spacing:2.310000px;}
.ls16{letter-spacing:2.400000px;}
.ls7{letter-spacing:2.430000px;}
.ls8{letter-spacing:4.779000px;}
.ls19{letter-spacing:15.387000px;}
.ls17{letter-spacing:46.887000px;}
.ls13{letter-spacing:55.737000px;}
.ls11{letter-spacing:64.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;}
}
.ws6{word-spacing:-16.875000px;}
.ws9{word-spacing:-16.789500px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.ws5{word-spacing:-14.625000px;}
.ws7{word-spacing:-13.221000px;}
.ws1{word-spacing:-12.531000px;}
.ws0{word-spacing:-11.826000px;}
.ws4{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._7{margin-left:-10.620600px;}
._8{margin-left:-8.131500px;}
._15{margin-left:-6.501000px;}
._6{margin-left:-5.174400px;}
._16{margin-left:-3.435300px;}
._3{margin-left:-2.322000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._2{width:3.024000px;}
._4{width:4.620000px;}
._a{width:5.629500px;}
._13{width:6.945000px;}
._b{width:8.313000px;}
._9{width:9.459000px;}
._5{width:11.004000px;}
._10{width:12.258000px;}
._f{width:13.525500px;}
._12{width:16.517100px;}
._14{width:17.521200px;}
._e{width:20.544600px;}
._11{width:22.218900px;}
._d{width:24.881400px;}
._c{width:26.629500px;}
.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;}
.y1c{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.375000px;}
.y90{bottom:3.390000px;}
.yb0{bottom:3.420000px;}
.y1a{bottom:4.500000px;}
.y8c{bottom:4.545000px;}
.y46{bottom:10.125000px;}
.ye{bottom:11.250000px;}
.y1d{bottom:12.405000px;}
.yc{bottom:13.530000px;}
.y4{bottom:16.912500px;}
.y2{bottom:19.162500px;}
.y43{bottom:21.375000px;}
.y47{bottom:21.390000px;}
.y45{bottom:24.765000px;}
.y19{bottom:29.295000px;}
.yb{bottom:30.405000px;}
.y5{bottom:38.287500px;}
.y42{bottom:38.295000px;}
.y18{bottom:45.045000px;}
.ya{bottom:46.185000px;}
.y41{bottom:56.295000px;}
.y1{bottom:61.912500px;}
.y17{bottom:61.920000px;}
.y40{bottom:73.170000px;}
.y9{bottom:73.185000px;}
.y16{bottom:78.825000px;}
.y3f{bottom:90.075000px;}
.y8{bottom:93.480000px;}
.y15{bottom:94.575000px;}
.y14{bottom:104.700000px;}
.y3e{bottom:108.075000px;}
.y7{bottom:110.355000px;}
.y84{bottom:112.575000px;}
.y13{bottom:119.370000px;}
.yad{bottom:123.862500px;}
.y49{bottom:124.987500px;}
.y3d{bottom:124.995000px;}
.y83{bottom:130.612500px;}
.y2d{bottom:133.980000px;}
.ye6{bottom:138.487500px;}
.y12{bottom:138.495000px;}
.y48{bottom:141.862500px;}
.y3c{bottom:141.870000px;}
.y82{bottom:147.487500px;}
.y2c{bottom:148.620000px;}
.ye5{bottom:156.480000px;}
.y3b{bottom:159.900000px;}
.y11{bottom:164.400000px;}
.y2b{bottom:166.650000px;}
.ye4{bottom:173.400000px;}
.y3a{bottom:176.775000px;}
.yac{bottom:181.275000px;}
.y81{bottom:182.400000px;}
.y2a{bottom:184.650000px;}
.y10{bottom:189.150000px;}
.ye3{bottom:190.275000px;}
.y39{bottom:193.650000px;}
.y80{bottom:199.275000px;}
.y29{bottom:201.570000px;}
.ye2{bottom:208.320000px;}
.y38{bottom:211.695000px;}
.y7f{bottom:216.195000px;}
.y28{bottom:218.445000px;}
.ye1{bottom:225.195000px;}
.y37{bottom:228.570000px;}
.yab{bottom:229.695000px;}
.y7e{bottom:234.195000px;}
.y27{bottom:236.445000px;}
.ye0{bottom:242.070000px;}
.y36{bottom:245.475000px;}
.y7d{bottom:251.100000px;}
.y26{bottom:253.350000px;}
.ydf{bottom:260.100000px;}
.y35{bottom:263.475000px;}
.y7c{bottom:267.975000px;}
.y25{bottom:271.350000px;}
.yde{bottom:276.975000px;}
.y34{bottom:280.350000px;}
.y7b{bottom:287.130000px;}
.y24{bottom:288.270000px;}
.ydd{bottom:293.880000px;}
.y33{bottom:297.255000px;}
.y7a{bottom:305.145000px;}
.y23{bottom:306.255000px;}
.ydc{bottom:311.895000px;}
.y32{bottom:315.270000px;}
.y22{bottom:323.130000px;}
.ydb{bottom:328.800000px;}
.y31{bottom:332.175000px;}
.y21{bottom:341.175000px;}
.yda{bottom:345.675000px;}
.y30{bottom:349.050000px;}
.y79{bottom:360.300000px;}
.yd9{bottom:363.675000px;}
.y2f{bottom:367.050000px;}
.y20{bottom:368.205000px;}
.y78{bottom:378.330000px;}
.yd8{bottom:380.580000px;}
.y44{bottom:381.705000px;}
.y2e{bottom:383.955000px;}
.y1f{bottom:386.205000px;}
.y77{bottom:395.205000px;}
.yd7{bottom:397.455000px;}
.y76{bottom:413.250000px;}
.yd6{bottom:415.500000px;}
.y1e{bottom:417.750000px;}
.y75{bottom:430.125000px;}
.yd5{bottom:432.375000px;}
.y74{bottom:447.000000px;}
.yd4{bottom:449.250000px;}
.y73{bottom:465.030000px;}
.yd3{bottom:467.295000px;}
.y72{bottom:481.905000px;}
.yd2{bottom:484.170000px;}
.y71{bottom:498.825000px;}
.yd1{bottom:501.075000px;}
.y70{bottom:516.825000px;}
.yd0{bottom:519.075000px;}
.yaa{bottom:521.325000px;}
.y6f{bottom:533.700000px;}
.ya9{bottom:535.980000px;}
.ycf{bottom:535.995000px;}
.y6e{bottom:550.620000px;}
.yce{bottom:552.870000px;}
.ya8{bottom:553.980000px;}
.y6d{bottom:568.605000px;}
.ycd{bottom:570.870000px;}
.ya7{bottom:571.980000px;}
.y6c{bottom:586.650000px;}
.ycc{bottom:587.775000px;}
.ya6{bottom:593.400000px;}
.y6b{bottom:604.650000px;}
.ya5{bottom:611.400000px;}
.ycb{bottom:622.695000px;}
.y6a{bottom:623.820000px;}
.ya4{bottom:624.945000px;}
.yca{bottom:639.570000px;}
.y69{bottom:641.820000px;}
.ya3{bottom:642.945000px;}
.yc9{bottom:656.445000px;}
.y68{bottom:659.820000px;}
.ya2{bottom:660.975000px;}
.yc8{bottom:674.475000px;}
.y67{bottom:677.850000px;}
.ya1{bottom:678.975000px;}
.yc7{bottom:691.350000px;}
.y66{bottom:694.725000px;}
.ya0{bottom:701.475000px;}
.yc6{bottom:708.255000px;}
.y65{bottom:711.630000px;}
.y9f{bottom:718.380000px;}
.yc5{bottom:726.270000px;}
.y64{bottom:729.645000px;}
.y9e{bottom:735.255000px;}
.yc4{bottom:743.145000px;}
.y63{bottom:746.550000px;}
.y9d{bottom:749.925000px;}
.yc3{bottom:760.050000px;}
.y62{bottom:763.425000px;}
.y9c{bottom:767.925000px;}
.yc2{bottom:778.050000px;}
.y61{bottom:781.425000px;}
.y9b{bottom:785.955000px;}
.yc1{bottom:794.955000px;}
.y60{bottom:800.580000px;}
.y9a{bottom:807.330000px;}
.yc0{bottom:811.830000px;}
.y1b{bottom:815.220000px;}
.y5f{bottom:817.455000px;}
.y99{bottom:825.330000px;}
.ybf{bottom:829.875000px;}
.y5e{bottom:834.375000px;}
.y98{bottom:842.250000px;}
.yf{bottom:844.500000px;}
.ybe{bottom:846.750000px;}
.y5d{bottom:852.375000px;}
.y97{bottom:856.875000px;}
.ybd{bottom:863.625000px;}
.y5c{bottom:870.420000px;}
.y96{bottom:874.920000px;}
.ybc{bottom:881.670000px;}
.y5b{bottom:888.420000px;}
.y95{bottom:892.920000px;}
.ybb{bottom:898.545000px;}
.y5a{bottom:906.420000px;}
.y94{bottom:914.325000px;}
.yba{bottom:915.450000px;}
.y59{bottom:923.325000px;}
.y93{bottom:931.200000px;}
.yb9{bottom:933.450000px;}
.y58{bottom:940.200000px;}
.y92{bottom:945.825000px;}
.yb8{bottom:950.325000px;}
.y57{bottom:958.245000px;}
.y91{bottom:963.870000px;}
.yb7{bottom:967.245000px;}
.y56{bottom:975.120000px;}
.y8f{bottom:981.855000px;}
.yb6{bottom:985.245000px;}
.y55{bottom:991.995000px;}
.yb5{bottom:1002.150000px;}
.y8e{bottom:1003.275000px;}
.y54{bottom:1010.025000px;}
.yb4{bottom:1016.775000px;}
.y8d{bottom:1021.275000px;}
.y53{bottom:1026.900000px;}
.y8b{bottom:1034.775000px;}
.y52{bottom:1043.820000px;}
.yd{bottom:1048.320000px;}
.y8a{bottom:1052.820000px;}
.y51{bottom:1061.820000px;}
.y89{bottom:1070.820000px;}
.y6{bottom:1074.195000px;}
.y50{bottom:1078.725000px;}
.y88{bottom:1088.850000px;}
.y4f{bottom:1095.600000px;}
.y87{bottom:1106.850000px;}
.yb3{bottom:1110.225000px;}
.y4e{bottom:1113.600000px;}
.y86{bottom:1124.880000px;}
.yb2{bottom:1127.130000px;}
.y4d{bottom:1130.505000px;}
.yb1{bottom:1141.755000px;}
.y85{bottom:1142.880000px;}
.y4c{bottom:1147.380000px;}
.yaf{bottom:1159.755000px;}
.y4b{bottom:1165.425000px;}
.yae{bottom:1177.800000px;}
.y4a{bottom:1182.300000px;}
.h20{height:16.860000px;}
.h21{height:16.875000px;}
.h23{height:16.897500px;}
.h1f{height:16.912500px;}
.h1e{height:18.000000px;}
.h22{height:18.022500px;}
.h1d{height:18.037500px;}
.hb{height:25.875000px;}
.h13{height:29.272500px;}
.h2{height:32.662500px;}
.h12{height:33.723633px;}
.h11{height:35.806641px;}
.h1b{height:36.037500px;}
.h8{height:37.125000px;}
.h1c{height:41.275635px;}
.hd{height:43.075195px;}
.h19{height:43.288330px;}
.ha{height:43.875000px;}
.h18{height:44.503418px;}
.h16{height:49.234131px;}
.h17{height:51.158936px;}
.h1a{height:52.444336px;}
.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;}
.h14{height:73.722656px;}
.h7{height:121.612500px;}
.hc{height:203.820000px;}
.h15{height:397.470000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:74.362500px;}
.wd{width:78.825000px;}
.wc{width:107.025000px;}
.w13{width:109.275000px;}
.w10{width:119.400000px;}
.w17{width:131.812500px;}
.w15{width:148.687500px;}
.w9{width:149.812500px;}
.w4{width:152.055000px;}
.w18{width:157.680000px;}
.w16{width:159.930000px;}
.w12{width:171.225000px;}
.w1b{width:201.600000px;}
.w1e{width:207.270000px;}
.w7{width:223.020000px;}
.wa{width:234.300000px;}
.wb{width:255.675000px;}
.w1f{width:257.925000px;}
.w1c{width:260.220000px;}
.we{width:262.455000px;}
.w20{width:280.500000px;}
.w19{width:281.625000px;}
.w1d{width:283.875000px;}
.wf{width:285.000000px;}
.w14{width:305.250000px;}
.w1a{width:306.375000px;}
.w11{width:312.000000px;}
.w21{width:326.655000px;}
.w22{width:420.150000px;}
.w8{width:524.925000px;}
.w5{width:595.875000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:6.750000px;}
.x8{left:7.875000px;}
.x2{left:9.037500px;}
.x14{left:12.420000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x4{left:81.112487px;}
.x6{left:97.987500px;}
.x15{left:108.149987px;}
.xe{left:111.487500px;}
.xf{left:122.782500px;}
.x11{left:131.782500px;}
.x16{left:135.187487px;}
.x1f{left:152.070000px;}
.x17{left:162.224987px;}
.x10{left:166.687500px;}
.x18{left:189.224987px;}
.x12{left:214.012500px;}
.x1a{left:224.175000px;}
.x7{left:225.300000px;}
.x2d{left:232.050000px;}
.x37{left:242.174987px;}
.x26{left:257.969987px;}
.x30{left:275.970000px;}
.x35{left:281.625000px;}
.xb{left:290.625000px;}
.x13{left:296.250000px;}
.x33{left:300.749987px;}
.x2f{left:304.124987px;}
.x19{left:313.154987px;}
.x22{left:322.169987px;}
.x2c{left:327.779987px;}
.x34{left:332.294987px;}
.x27{left:343.574987px;}
.x9{left:345.780000px;}
.x1e{left:359.324987px;}
.xa{left:364.950000px;}
.xd{left:373.957500px;}
.x2b{left:377.369987px;}
.x28{left:378.495000px;}
.x23{left:386.370000px;}
.x38{left:401.025000px;}
.x20{left:415.650000px;}
.xc{left:453.945000px;}
.x1c{left:458.475000px;}
.x2e{left:514.800000px;}
.x29{left:528.300000px;}
.x31{left:537.300000px;}
.x24{left:539.550000px;}
.x36{left:540.675000px;}
.x32{left:672.494987px;}
.x2a{left:689.370000px;}
.x21{left:701.775000px;}
.x25{left:711.900000px;}
.x1d{left:714.150000px;}
.x3{left:746.820000px;}
@media print{
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.160000pt;}
.lsb{letter-spacing:-2.421333pt;}
.lse{letter-spacing:-1.418667pt;}
.ls1a{letter-spacing:-1.002667pt;}
.lsc{letter-spacing:-0.704000pt;}
.lsf{letter-spacing:-0.693333pt;}
.lsa{letter-spacing:-0.336000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.080000pt;}
.lsd{letter-spacing:0.613333pt;}
.ls12{letter-spacing:0.800000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.312000pt;}
.ls14{letter-spacing:1.544000pt;}
.ls2{letter-spacing:1.648000pt;}
.ls5{letter-spacing:1.748000pt;}
.ls3{letter-spacing:1.854667pt;}
.ls4{letter-spacing:1.908000pt;}
.ls18{letter-spacing:1.924000pt;}
.ls6{letter-spacing:2.000000pt;}
.ls15{letter-spacing:2.053333pt;}
.ls16{letter-spacing:2.133333pt;}
.ls7{letter-spacing:2.160000pt;}
.ls8{letter-spacing:4.248000pt;}
.ls19{letter-spacing:13.677333pt;}
.ls17{letter-spacing:41.677333pt;}
.ls13{letter-spacing:49.544000pt;}
.ls11{letter-spacing:57.677333pt;}
.ws6{word-spacing:-15.000000pt;}
.ws9{word-spacing:-14.924000pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws5{word-spacing:-13.000000pt;}
.ws7{word-spacing:-11.752000pt;}
.ws1{word-spacing:-11.138667pt;}
.ws0{word-spacing:-10.512000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._7{margin-left:-9.440533pt;}
._8{margin-left:-7.228000pt;}
._15{margin-left:-5.778667pt;}
._6{margin-left:-4.599467pt;}
._16{margin-left:-3.053600pt;}
._3{margin-left:-2.064000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._2{width:2.688000pt;}
._4{width:4.106667pt;}
._a{width:5.004000pt;}
._13{width:6.173333pt;}
._b{width:7.389333pt;}
._9{width:8.408000pt;}
._5{width:9.781333pt;}
._10{width:10.896000pt;}
._f{width:12.022667pt;}
._12{width:14.681867pt;}
._14{width:15.574400pt;}
._e{width:18.261867pt;}
._11{width:19.750133pt;}
._d{width:22.116800pt;}
._c{width:23.670667pt;}
.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;}
.y1c{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.000000pt;}
.y90{bottom:3.013333pt;}
.yb0{bottom:3.040000pt;}
.y1a{bottom:4.000000pt;}
.y8c{bottom:4.040000pt;}
.y46{bottom:9.000000pt;}
.ye{bottom:10.000000pt;}
.y1d{bottom:11.026667pt;}
.yc{bottom:12.026667pt;}
.y4{bottom:15.033333pt;}
.y2{bottom:17.033333pt;}
.y43{bottom:19.000000pt;}
.y47{bottom:19.013333pt;}
.y45{bottom:22.013333pt;}
.y19{bottom:26.040000pt;}
.yb{bottom:27.026667pt;}
.y5{bottom:34.033333pt;}
.y42{bottom:34.040000pt;}
.y18{bottom:40.040000pt;}
.ya{bottom:41.053333pt;}
.y41{bottom:50.040000pt;}
.y1{bottom:55.033333pt;}
.y17{bottom:55.040000pt;}
.y40{bottom:65.040000pt;}
.y9{bottom:65.053333pt;}
.y16{bottom:70.066667pt;}
.y3f{bottom:80.066667pt;}
.y8{bottom:83.093333pt;}
.y15{bottom:84.066667pt;}
.y14{bottom:93.066667pt;}
.y3e{bottom:96.066667pt;}
.y7{bottom:98.093333pt;}
.y84{bottom:100.066667pt;}
.y13{bottom:106.106667pt;}
.yad{bottom:110.100000pt;}
.y49{bottom:111.100000pt;}
.y3d{bottom:111.106667pt;}
.y83{bottom:116.100000pt;}
.y2d{bottom:119.093333pt;}
.ye6{bottom:123.100000pt;}
.y12{bottom:123.106667pt;}
.y48{bottom:126.100000pt;}
.y3c{bottom:126.106667pt;}
.y82{bottom:131.100000pt;}
.y2c{bottom:132.106667pt;}
.ye5{bottom:139.093333pt;}
.y3b{bottom:142.133333pt;}
.y11{bottom:146.133333pt;}
.y2b{bottom:148.133333pt;}
.ye4{bottom:154.133333pt;}
.y3a{bottom:157.133333pt;}
.yac{bottom:161.133333pt;}
.y81{bottom:162.133333pt;}
.y2a{bottom:164.133333pt;}
.y10{bottom:168.133333pt;}
.ye3{bottom:169.133333pt;}
.y39{bottom:172.133333pt;}
.y80{bottom:177.133333pt;}
.y29{bottom:179.173333pt;}
.ye2{bottom:185.173333pt;}
.y38{bottom:188.173333pt;}
.y7f{bottom:192.173333pt;}
.y28{bottom:194.173333pt;}
.ye1{bottom:200.173333pt;}
.y37{bottom:203.173333pt;}
.yab{bottom:204.173333pt;}
.y7e{bottom:208.173333pt;}
.y27{bottom:210.173333pt;}
.ye0{bottom:215.173333pt;}
.y36{bottom:218.200000pt;}
.y7d{bottom:223.200000pt;}
.y26{bottom:225.200000pt;}
.ydf{bottom:231.200000pt;}
.y35{bottom:234.200000pt;}
.y7c{bottom:238.200000pt;}
.y25{bottom:241.200000pt;}
.yde{bottom:246.200000pt;}
.y34{bottom:249.200000pt;}
.y7b{bottom:255.226667pt;}
.y24{bottom:256.240000pt;}
.ydd{bottom:261.226667pt;}
.y33{bottom:264.226667pt;}
.y7a{bottom:271.240000pt;}
.y23{bottom:272.226667pt;}
.ydc{bottom:277.240000pt;}
.y32{bottom:280.240000pt;}
.y22{bottom:287.226667pt;}
.ydb{bottom:292.266667pt;}
.y31{bottom:295.266667pt;}
.y21{bottom:303.266667pt;}
.yda{bottom:307.266667pt;}
.y30{bottom:310.266667pt;}
.y79{bottom:320.266667pt;}
.yd9{bottom:323.266667pt;}
.y2f{bottom:326.266667pt;}
.y20{bottom:327.293333pt;}
.y78{bottom:336.293333pt;}
.yd8{bottom:338.293333pt;}
.y44{bottom:339.293333pt;}
.y2e{bottom:341.293333pt;}
.y1f{bottom:343.293333pt;}
.y77{bottom:351.293333pt;}
.yd7{bottom:353.293333pt;}
.y76{bottom:367.333333pt;}
.yd6{bottom:369.333333pt;}
.y1e{bottom:371.333333pt;}
.y75{bottom:382.333333pt;}
.yd5{bottom:384.333333pt;}
.y74{bottom:397.333333pt;}
.yd4{bottom:399.333333pt;}
.y73{bottom:413.360000pt;}
.yd3{bottom:415.373333pt;}
.y72{bottom:428.360000pt;}
.yd2{bottom:430.373333pt;}
.y71{bottom:443.400000pt;}
.yd1{bottom:445.400000pt;}
.y70{bottom:459.400000pt;}
.yd0{bottom:461.400000pt;}
.yaa{bottom:463.400000pt;}
.y6f{bottom:474.400000pt;}
.ya9{bottom:476.426667pt;}
.ycf{bottom:476.440000pt;}
.y6e{bottom:489.440000pt;}
.yce{bottom:491.440000pt;}
.ya8{bottom:492.426667pt;}
.y6d{bottom:505.426667pt;}
.ycd{bottom:507.440000pt;}
.ya7{bottom:508.426667pt;}
.y6c{bottom:521.466667pt;}
.ycc{bottom:522.466667pt;}
.ya6{bottom:527.466667pt;}
.y6b{bottom:537.466667pt;}
.ya5{bottom:543.466667pt;}
.ycb{bottom:553.506667pt;}
.y6a{bottom:554.506667pt;}
.ya4{bottom:555.506667pt;}
.yca{bottom:568.506667pt;}
.y69{bottom:570.506667pt;}
.ya3{bottom:571.506667pt;}
.yc9{bottom:583.506667pt;}
.y68{bottom:586.506667pt;}
.ya2{bottom:587.533333pt;}
.yc8{bottom:599.533333pt;}
.y67{bottom:602.533333pt;}
.ya1{bottom:603.533333pt;}
.yc7{bottom:614.533333pt;}
.y66{bottom:617.533333pt;}
.ya0{bottom:623.533333pt;}
.yc6{bottom:629.560000pt;}
.y65{bottom:632.560000pt;}
.y9f{bottom:638.560000pt;}
.yc5{bottom:645.573333pt;}
.y64{bottom:648.573333pt;}
.y9e{bottom:653.560000pt;}
.yc4{bottom:660.573333pt;}
.y63{bottom:663.600000pt;}
.y9d{bottom:666.600000pt;}
.yc3{bottom:675.600000pt;}
.y62{bottom:678.600000pt;}
.y9c{bottom:682.600000pt;}
.yc2{bottom:691.600000pt;}
.y61{bottom:694.600000pt;}
.y9b{bottom:698.626667pt;}
.yc1{bottom:706.626667pt;}
.y60{bottom:711.626667pt;}
.y9a{bottom:717.626667pt;}
.yc0{bottom:721.626667pt;}
.y1b{bottom:724.640000pt;}
.y5f{bottom:726.626667pt;}
.y99{bottom:733.626667pt;}
.ybf{bottom:737.666667pt;}
.y5e{bottom:741.666667pt;}
.y98{bottom:748.666667pt;}
.yf{bottom:750.666667pt;}
.ybe{bottom:752.666667pt;}
.y5d{bottom:757.666667pt;}
.y97{bottom:761.666667pt;}
.ybd{bottom:767.666667pt;}
.y5c{bottom:773.706667pt;}
.y96{bottom:777.706667pt;}
.ybc{bottom:783.706667pt;}
.y5b{bottom:789.706667pt;}
.y95{bottom:793.706667pt;}
.ybb{bottom:798.706667pt;}
.y5a{bottom:805.706667pt;}
.y94{bottom:812.733333pt;}
.yba{bottom:813.733333pt;}
.y59{bottom:820.733333pt;}
.y93{bottom:827.733333pt;}
.yb9{bottom:829.733333pt;}
.y58{bottom:835.733333pt;}
.y92{bottom:840.733333pt;}
.yb8{bottom:844.733333pt;}
.y57{bottom:851.773333pt;}
.y91{bottom:856.773333pt;}
.yb7{bottom:859.773333pt;}
.y56{bottom:866.773333pt;}
.y8f{bottom:872.760000pt;}
.yb6{bottom:875.773333pt;}
.y55{bottom:881.773333pt;}
.yb5{bottom:890.800000pt;}
.y8e{bottom:891.800000pt;}
.y54{bottom:897.800000pt;}
.yb4{bottom:903.800000pt;}
.y8d{bottom:907.800000pt;}
.y53{bottom:912.800000pt;}
.y8b{bottom:919.800000pt;}
.y52{bottom:927.840000pt;}
.yd{bottom:931.840000pt;}
.y8a{bottom:935.840000pt;}
.y51{bottom:943.840000pt;}
.y89{bottom:951.840000pt;}
.y6{bottom:954.840000pt;}
.y50{bottom:958.866667pt;}
.y88{bottom:967.866667pt;}
.y4f{bottom:973.866667pt;}
.y87{bottom:983.866667pt;}
.yb3{bottom:986.866667pt;}
.y4e{bottom:989.866667pt;}
.y86{bottom:999.893333pt;}
.yb2{bottom:1001.893333pt;}
.y4d{bottom:1004.893333pt;}
.yb1{bottom:1014.893333pt;}
.y85{bottom:1015.893333pt;}
.y4c{bottom:1019.893333pt;}
.yaf{bottom:1030.893333pt;}
.y4b{bottom:1035.933333pt;}
.yae{bottom:1046.933333pt;}
.y4a{bottom:1050.933333pt;}
.h20{height:14.986667pt;}
.h21{height:15.000000pt;}
.h23{height:15.020000pt;}
.h1f{height:15.033333pt;}
.h1e{height:16.000000pt;}
.h22{height:16.020000pt;}
.h1d{height:16.033333pt;}
.hb{height:23.000000pt;}
.h13{height:26.020000pt;}
.h2{height:29.033333pt;}
.h12{height:29.976562pt;}
.h11{height:31.828125pt;}
.h1b{height:32.033333pt;}
.h8{height:33.000000pt;}
.h1c{height:36.689453pt;}
.hd{height:38.289062pt;}
.h19{height:38.478516pt;}
.ha{height:39.000000pt;}
.h18{height:39.558594pt;}
.h16{height:43.763672pt;}
.h17{height:45.474609pt;}
.h1a{height:46.617188pt;}
.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;}
.h14{height:65.531250pt;}
.h7{height:108.100000pt;}
.hc{height:181.173333pt;}
.h15{height:353.306667pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:66.100000pt;}
.wd{width:70.066667pt;}
.wc{width:95.133333pt;}
.w13{width:97.133333pt;}
.w10{width:106.133333pt;}
.w17{width:117.166667pt;}
.w15{width:132.166667pt;}
.w9{width:133.166667pt;}
.w4{width:135.160000pt;}
.w18{width:140.160000pt;}
.w16{width:142.160000pt;}
.w12{width:152.200000pt;}
.w1b{width:179.200000pt;}
.w1e{width:184.240000pt;}
.w7{width:198.240000pt;}
.wa{width:208.266667pt;}
.wb{width:227.266667pt;}
.w1f{width:229.266667pt;}
.w1c{width:231.306667pt;}
.we{width:233.293333pt;}
.w20{width:249.333333pt;}
.w19{width:250.333333pt;}
.w1d{width:252.333333pt;}
.wf{width:253.333333pt;}
.w14{width:271.333333pt;}
.w1a{width:272.333333pt;}
.w11{width:277.333333pt;}
.w21{width:290.360000pt;}
.w22{width:373.466667pt;}
.w8{width:466.600000pt;}
.w5{width:529.666667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.000000pt;}
.x8{left:7.000000pt;}
.x2{left:8.033333pt;}
.x14{left:11.040000pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x4{left:72.099988pt;}
.x6{left:87.100000pt;}
.x15{left:96.133322pt;}
.xe{left:99.100000pt;}
.xf{left:109.140000pt;}
.x11{left:117.140000pt;}
.x16{left:120.166655pt;}
.x1f{left:135.173333pt;}
.x17{left:144.199988pt;}
.x10{left:148.166667pt;}
.x18{left:168.199988pt;}
.x12{left:190.233333pt;}
.x1a{left:199.266667pt;}
.x7{left:200.266667pt;}
.x2d{left:206.266667pt;}
.x37{left:215.266655pt;}
.x26{left:229.306655pt;}
.x30{left:245.306667pt;}
.x35{left:250.333333pt;}
.xb{left:258.333333pt;}
.x13{left:263.333333pt;}
.x33{left:267.333322pt;}
.x2f{left:270.333322pt;}
.x19{left:278.359988pt;}
.x22{left:286.373322pt;}
.x2c{left:291.359988pt;}
.x34{left:295.373322pt;}
.x27{left:305.399988pt;}
.x9{left:307.360000pt;}
.x1e{left:319.399988pt;}
.xa{left:324.400000pt;}
.xd{left:332.406667pt;}
.x2b{left:335.439988pt;}
.x28{left:336.440000pt;}
.x23{left:343.440000pt;}
.x38{left:356.466667pt;}
.x20{left:369.466667pt;}
.xc{left:403.506667pt;}
.x1c{left:407.533333pt;}
.x2e{left:457.600000pt;}
.x29{left:469.600000pt;}
.x31{left:477.600000pt;}
.x24{left:479.600000pt;}
.x36{left:480.600000pt;}
.x32{left:597.773322pt;}
.x2a{left:612.773333pt;}
.x21{left:623.800000pt;}
.x25{left:632.800000pt;}
.x1d{left:634.800000pt;}
.x3{left:663.840000pt;}
}




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