
    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_0e8839cc087e6ecbf60c4893.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_2d188d2189de33f80178fe82.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_d6bfd6b07720908666dbe8ad.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_207652473b59ba56a8cf788b.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_6f6236fe14aa262cd5a2144f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_a9d5ced80b425470af88b035.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_ca6850f71d6eaa2a13353dae.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_6a294c24a03b8a13a76d5b14.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_8bb3adfc9b805185f38b86be.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_974b06a4c4e4e1c89062c91c.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_dcf3db8e6cd23ad422eccf46.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_1ea482f500313c71f7fab149.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_0f9db41a6d3ff4c45d42b42e.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_91f0dc2dfd5e2145027e3d3c.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;}
@font-face{font-family:ff14;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff14{font-family:ff14;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;}
.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.120000px;}
.ls7{letter-spacing:-2.724000px;}
.lsb{letter-spacing:-2.250000px;}
.ls17{letter-spacing:-1.740000px;}
.lsa{letter-spacing:-1.596000px;}
.lsc{letter-spacing:-1.482000px;}
.ls8{letter-spacing:-0.792000px;}
.lsd{letter-spacing:-0.780000px;}
.ls6{letter-spacing:-0.378000px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.090000px;}
.ls16{letter-spacing:0.256200px;}
.ls9{letter-spacing:0.690000px;}
.ls11{letter-spacing:1.026000px;}
.ls0{letter-spacing:1.296000px;}
.ls18{letter-spacing:1.740000px;}
.ls1{letter-spacing:1.854000px;}
.ls2{letter-spacing:1.966500px;}
.ls12{letter-spacing:2.164500px;}
.ls3{letter-spacing:2.250000px;}
.ls13{letter-spacing:3.375000px;}
.ls14{letter-spacing:3.435000px;}
.ls4{letter-spacing:4.779000px;}
.ls15{letter-spacing:15.387000px;}
.lse{letter-spacing:46.887000px;}
.ls10{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;}
}
.ws8{word-spacing:-16.875000px;}
.wsb{word-spacing:-16.789500px;}
.wse{word-spacing:-16.365000px;}
.ws3{word-spacing:-16.146000px;}
.wsa{word-spacing:-15.651000px;}
.ws2{word-spacing:-15.354000px;}
.wsc{word-spacing:-14.881200px;}
.ws7{word-spacing:-14.625000px;}
.ws5{word-spacing:-13.221000px;}
.wsf{word-spacing:-13.143000px;}
.wsd{word-spacing:-12.885000px;}
.ws1{word-spacing:-12.531000px;}
.ws6{word-spacing:-12.375000px;}
.ws0{word-spacing:-11.826000px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._7{margin-left:-10.449300px;}
._9{margin-left:-8.131500px;}
._16{margin-left:-6.516000px;}
._6{margin-left:-5.496000px;}
._8{margin-left:-3.546750px;}
._2{margin-left:-2.430000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._3{width:3.024000px;}
._a{width:4.741500px;}
._4{width:5.958000px;}
._d{width:7.284000px;}
._c{width:8.308500px;}
._5{width:9.924000px;}
._11{width:11.650500px;}
._12{width:13.126500px;}
._b{width:14.441250px;}
._10{width:16.245000px;}
._14{width:17.584500px;}
._17{width:20.541000px;}
._13{width:21.549000px;}
._1b{width:25.770000px;}
._1a{width:26.824500px;}
._f{width:29.358000px;}
._e{width:30.609000px;}
._19{width:57.707250px;}
._18{width:61.086000px;}
._15{width:102.387000px;}
._1c{width:2096.898000px;}
.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;}
.y4{bottom:3.375000px;}
.yd7{bottom:3.390000px;}
.yc2{bottom:3.405000px;}
.y53{bottom:4.500000px;}
.yab{bottom:4.515000px;}
.ya9{bottom:4.545000px;}
.y1d{bottom:11.250000px;}
.y10{bottom:11.295000px;}
.ye{bottom:13.500000px;}
.y7{bottom:20.250000px;}
.y3{bottom:20.287500px;}
.y50{bottom:21.375000px;}
.y1b{bottom:22.500000px;}
.y52{bottom:25.875000px;}
.yd{bottom:30.405000px;}
.y5{bottom:33.787500px;}
.y2{bottom:36.037500px;}
.y4f{bottom:38.250000px;}
.y1a{bottom:39.375000px;}
.y6{bottom:41.662500px;}
.yc{bottom:46.155000px;}
.y4e{bottom:55.155000px;}
.y19{bottom:56.295000px;}
.y1{bottom:64.162500px;}
.y18{bottom:68.670000px;}
.y4d{bottom:73.170000px;}
.yb{bottom:73.185000px;}
.y17{bottom:82.170000px;}
.y4c{bottom:90.075000px;}
.ya{bottom:93.435000px;}
.y16{bottom:96.825000px;}
.y4b{bottom:106.950000px;}
.y9{bottom:110.355000px;}
.y15{bottom:115.950000px;}
.y4a{bottom:124.980000px;}
.y56{bottom:124.987500px;}
.y8f{bottom:130.612500px;}
.y12f{bottom:132.862500px;}
.y129{bottom:136.237500px;}
.yc3{bottom:138.487500px;}
.ye1{bottom:140.737500px;}
.y49{bottom:141.855000px;}
.y55{bottom:141.862500px;}
.y14{bottom:141.870000px;}
.y131{bottom:144.112500px;}
.y8e{bottom:147.487500px;}
.y12e{bottom:149.737500px;}
.y128{bottom:154.245000px;}
.yc1{bottom:156.495000px;}
.ye0{bottom:157.620000px;}
.y48{bottom:158.730000px;}
.y54{bottom:159.900000px;}
.y8d{bottom:165.525000px;}
.y13{bottom:167.775000px;}
.y127{bottom:171.150000px;}
.ydf{bottom:175.650000px;}
.y47{bottom:176.775000px;}
.yc0{bottom:177.900000px;}
.y130{bottom:181.275000px;}
.y8c{bottom:182.400000px;}
.y12d{bottom:184.650000px;}
.y126{bottom:188.025000px;}
.y12{bottom:192.525000px;}
.y46{bottom:193.650000px;}
.ybf{bottom:194.775000px;}
.y8b{bottom:199.275000px;}
.y12c{bottom:201.570000px;}
.y125{bottom:206.070000px;}
.y51{bottom:208.320000px;}
.yde{bottom:209.445000px;}
.y45{bottom:210.570000px;}
.ybe{bottom:212.820000px;}
.y8a{bottom:218.445000px;}
.y31{bottom:219.555000px;}
.y12b{bottom:219.570000px;}
.y124{bottom:222.945000px;}
.ydd{bottom:224.070000px;}
.y44{bottom:228.570000px;}
.ybd{bottom:229.695000px;}
.y30{bottom:234.195000px;}
.y89{bottom:235.320000px;}
.y12a{bottom:236.445000px;}
.y123{bottom:239.820000px;}
.ydc{bottom:242.070000px;}
.y43{bottom:245.445000px;}
.y1e{bottom:245.475000px;}
.ybc{bottom:246.600000px;}
.y2f{bottom:252.225000px;}
.y88{bottom:253.350000px;}
.y122{bottom:257.850000px;}
.ydb{bottom:260.100000px;}
.y42{bottom:262.350000px;}
.ybb{bottom:264.600000px;}
.y2e{bottom:269.100000px;}
.y87{bottom:271.350000px;}
.y121{bottom:274.725000px;}
.yda{bottom:278.100000px;}
.y41{bottom:280.350000px;}
.yba{bottom:281.475000px;}
.y2d{bottom:287.100000px;}
.y86{bottom:288.270000px;}
.y120{bottom:291.645000px;}
.yd9{bottom:296.130000px;}
.y40{bottom:297.270000px;}
.yb9{bottom:298.395000px;}
.y2c{bottom:304.020000px;}
.y85{bottom:305.145000px;}
.y11f{bottom:309.630000px;}
.yd8{bottom:314.130000px;}
.y3f{bottom:314.145000px;}
.yb8{bottom:316.380000px;}
.y2b{bottom:322.020000px;}
.y84{bottom:323.130000px;}
.y11e{bottom:326.550000px;}
.y3e{bottom:332.175000px;}
.yb7{bottom:333.300000px;}
.y2a{bottom:338.925000px;}
.y83{bottom:340.050000px;}
.y11d{bottom:343.425000px;}
.y3d{bottom:349.050000px;}
.yb6{bottom:350.175000px;}
.y29{bottom:356.925000px;}
.y11c{bottom:361.425000px;}
.y3c{bottom:365.925000px;}
.yb5{bottom:368.205000px;}
.y28{bottom:373.845000px;}
.y82{bottom:374.955000px;}
.y11b{bottom:378.330000px;}
.y3b{bottom:383.970000px;}
.yb4{bottom:385.080000px;}
.yd6{bottom:386.205000px;}
.y103{bottom:389.595000px;}
.y81{bottom:391.830000px;}
.y27{bottom:391.845000px;}
.y11a{bottom:395.205000px;}
.y3a{bottom:400.845000px;}
.yb3{bottom:401.955000px;}
.yd5{bottom:404.205000px;}
.y80{bottom:408.705000px;}
.y26{bottom:408.720000px;}
.y119{bottom:413.250000px;}
.y39{bottom:417.750000px;}
.yb2{bottom:420.000000px;}
.yd4{bottom:422.250000px;}
.y25{bottom:425.625000px;}
.y7f{bottom:426.750000px;}
.y118{bottom:430.125000px;}
.y38{bottom:435.750000px;}
.yb1{bottom:436.875000px;}
.y102{bottom:440.250000px;}
.y24{bottom:443.625000px;}
.y117{bottom:447.000000px;}
.y37{bottom:452.625000px;}
.yb0{bottom:453.795000px;}
.y101{bottom:458.280000px;}
.y23{bottom:460.545000px;}
.yd3{bottom:461.655000px;}
.y116{bottom:465.030000px;}
.y36{bottom:469.530000px;}
.yaf{bottom:471.780000px;}
.y100{bottom:476.280000px;}
.y22{bottom:478.530000px;}
.y115{bottom:481.905000px;}
.y35{bottom:487.545000px;}
.yae{bottom:488.655000px;}
.yff{bottom:494.325000px;}
.y21{bottom:495.405000px;}
.y7e{bottom:495.450000px;}
.y114{bottom:498.825000px;}
.y34{bottom:504.450000px;}
.yad{bottom:505.575000px;}
.y7d{bottom:512.325000px;}
.yd2{bottom:513.450000px;}
.y113{bottom:516.825000px;}
.y33{bottom:521.325000px;}
.y20{bottom:523.575000px;}
.y7c{bottom:530.325000px;}
.y112{bottom:533.700000px;}
.yac{bottom:537.105000px;}
.y32{bottom:539.325000px;}
.y1f{bottom:541.605000px;}
.y7b{bottom:547.245000px;}
.yfe{bottom:548.355000px;}
.yaa{bottom:555.105000px;}
.y7a{bottom:564.120000px;}
.yd1{bottom:565.230000px;}
.yfd{bottom:566.355000px;}
.ya8{bottom:573.105000px;}
.y79{bottom:582.150000px;}
.yfc{bottom:584.400000px;}
.ya7{bottom:591.150000px;}
.y78{bottom:599.025000px;}
.yfb{bottom:602.400000px;}
.ya6{bottom:613.650000px;}
.y77{bottom:615.900000px;}
.yd0{bottom:617.025000px;}
.y111{bottom:620.445000px;}
.yfa{bottom:623.820000px;}
.ya5{bottom:630.570000px;}
.y76{bottom:633.945000px;}
.yf9{bottom:640.695000px;}
.y110{bottom:641.820000px;}
.ya4{bottom:647.445000px;}
.y75{bottom:650.820000px;}
.yf8{bottom:658.695000px;}
.ya3{bottom:664.350000px;}
.y74{bottom:667.725000px;}
.ycf{bottom:668.850000px;}
.yf7{bottom:675.600000px;}
.y10f{bottom:676.725000px;}
.ya2{bottom:682.350000px;}
.y73{bottom:685.725000px;}
.yf6{bottom:692.475000px;}
.y10e{bottom:693.600000px;}
.ya1{bottom:699.225000px;}
.y72{bottom:702.645000px;}
.yf5{bottom:710.505000px;}
.ya0{bottom:716.145000px;}
.y71{bottom:719.520000px;}
.yf4{bottom:727.380000px;}
.y10d{bottom:728.505000px;}
.y9f{bottom:734.130000px;}
.y70{bottom:737.505000px;}
.yf3{bottom:744.300000px;}
.y10c{bottom:745.425000px;}
.y9e{bottom:751.050000px;}
.y6f{bottom:754.425000px;}
.yf2{bottom:762.300000px;}
.y9d{bottom:767.925000px;}
.y6e{bottom:771.300000px;}
.yf1{bottom:779.175000px;}
.y10b{bottom:780.300000px;}
.y9c{bottom:785.955000px;}
.y6d{bottom:789.330000px;}
.yf0{bottom:796.080000px;}
.y10a{bottom:797.205000px;}
.y1c{bottom:798.330000px;}
.y9b{bottom:802.830000px;}
.y6c{bottom:806.205000px;}
.yef{bottom:814.080000px;}
.y9a{bottom:819.705000px;}
.y6b{bottom:823.080000px;}
.y11{bottom:827.625000px;}
.yee{bottom:831.000000px;}
.y109{bottom:832.125000px;}
.y99{bottom:837.750000px;}
.y6a{bottom:841.125000px;}
.yed{bottom:845.625000px;}
.y108{bottom:849.000000px;}
.y98{bottom:854.625000px;}
.y69{bottom:858.000000px;}
.yec{bottom:863.625000px;}
.y107{bottom:865.875000px;}
.y97{bottom:871.545000px;}
.y68{bottom:874.920000px;}
.yeb{bottom:881.670000px;}
.y106{bottom:883.920000px;}
.y96{bottom:889.545000px;}
.y67{bottom:892.920000px;}
.yea{bottom:899.655000px;}
.y105{bottom:900.795000px;}
.y95{bottom:906.420000px;}
.y66{bottom:909.795000px;}
.y104{bottom:914.325000px;}
.ye9{bottom:917.700000px;}
.y94{bottom:923.325000px;}
.y65{bottom:926.700000px;}
.ye8{bottom:935.700000px;}
.y93{bottom:941.325000px;}
.y64{bottom:944.700000px;}
.ye7{bottom:953.745000px;}
.y92{bottom:958.245000px;}
.y63{bottom:961.620000px;}
.ye6{bottom:971.745000px;}
.y91{bottom:976.245000px;}
.y62{bottom:978.495000px;}
.yce{bottom:987.495000px;}
.ye5{bottom:989.730000px;}
.y90{bottom:995.400000px;}
.y61{bottom:996.525000px;}
.ycd{bottom:1002.150000px;}
.ye4{bottom:1007.775000px;}
.y60{bottom:1013.400000px;}
.ycc{bottom:1020.150000px;}
.ye3{bottom:1025.775000px;}
.y5f{bottom:1030.275000px;}
.yf{bottom:1034.775000px;}
.ycb{bottom:1038.195000px;}
.ye2{bottom:1043.820000px;}
.y5e{bottom:1048.320000px;}
.yca{bottom:1056.195000px;}
.y8{bottom:1060.695000px;}
.y5d{bottom:1065.195000px;}
.yc9{bottom:1074.195000px;}
.y5c{bottom:1082.100000px;}
.yc8{bottom:1092.225000px;}
.y5b{bottom:1100.100000px;}
.yc7{bottom:1110.225000px;}
.y5a{bottom:1116.975000px;}
.yc6{bottom:1128.255000px;}
.y59{bottom:1133.880000px;}
.yc5{bottom:1146.255000px;}
.y58{bottom:1151.880000px;}
.yc4{bottom:1164.300000px;}
.y57{bottom:1168.800000px;}
.h23{height:16.860000px;}
.h21{height:16.875000px;}
.h22{height:16.897500px;}
.h20{height:16.912500px;}
.h1e{height:18.000000px;}
.h1f{height:18.037500px;}
.hc{height:25.912500px;}
.h13{height:29.287500px;}
.h12{height:29.953125px;}
.h9{height:37.125000px;}
.h1c{height:37.162500px;}
.h19{height:39.832031px;}
.h1b{height:40.847168px;}
.h1a{height:41.275635px;}
.h18{height:41.389893px;}
.h1d{height:42.589600px;}
.he{height:43.075195px;}
.h5{height:43.453125px;}
.hb{height:43.875000px;}
.h17{height:47.074219px;}
.h16{height:49.234131px;}
.h2{height:49.537500px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h10{height:58.185791px;}
.h11{height:59.899658px;}
.hf{height:64.237500px;}
.h6{height:69.114990px;}
.h7{height:71.613281px;}
.h14{height:73.722656px;}
.h8{height:121.612500px;}
.hd{height:207.150000px;}
.h15{height:552.870000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:74.362500px;}
.wc{width:113.775000px;}
.w13{width:132.937500px;}
.w4{width:152.055000px;}
.w9{width:156.555000px;}
.w10{width:172.305000px;}
.w14{width:174.555000px;}
.wd{width:185.850000px;}
.wf{width:186.975000px;}
.we{width:187.020000px;}
.w12{width:212.895000px;}
.w7{width:223.020000px;}
.w11{width:226.425000px;}
.wa{width:233.175000px;}
.wb{width:242.175000px;}
.w15{width:244.470000px;}
.w16{width:326.655000px;}
.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;}
.x2a{left:6.795000px;}
.x8{left:7.875000px;}
.x2{left:9.037500px;}
.x15{left:12.420000px;}
.xe{left:33.787500px;}
.x12{left:70.950000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x4{left:81.112487px;}
.x11{left:82.192500px;}
.x6{left:97.987500px;}
.x16{left:108.149987px;}
.x17{left:135.187487px;}
.x1c{left:158.804987px;}
.x10{left:170.062500px;}
.x22{left:188.099987px;}
.x21{left:191.519987px;}
.x23{left:211.769987px;}
.x13{left:214.012500px;}
.x7{left:225.300000px;}
.x19{left:230.925000px;}
.x24{left:246.675000px;}
.xf{left:248.932500px;}
.x1d{left:260.220000px;}
.x18{left:264.719987px;}
.x28{left:275.969987px;}
.x29{left:287.249987px;}
.xb{left:290.625000px;}
.x14{left:296.250000px;}
.x9{left:345.780000px;}
.xa{left:364.950000px;}
.xd{left:373.957500px;}
.x1e{left:447.195000px;}
.xc{left:453.945000px;}
.x1a{left:464.100000px;}
.x25{left:474.225000px;}
.x2b{left:494.520000px;}
.x1f{left:634.200000px;}
.x20{left:637.574987px;}
.x27{left:643.199987px;}
.x26{left:688.245000px;}
.x1b{left:707.400000px;}
.x3{left:746.820000px;}
@media print{
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.106667pt;}
.ls7{letter-spacing:-2.421333pt;}
.lsb{letter-spacing:-2.000000pt;}
.ls17{letter-spacing:-1.546667pt;}
.lsa{letter-spacing:-1.418667pt;}
.lsc{letter-spacing:-1.317333pt;}
.ls8{letter-spacing:-0.704000pt;}
.lsd{letter-spacing:-0.693333pt;}
.ls6{letter-spacing:-0.336000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.080000pt;}
.ls16{letter-spacing:0.227733pt;}
.ls9{letter-spacing:0.613333pt;}
.ls11{letter-spacing:0.912000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls18{letter-spacing:1.546667pt;}
.ls1{letter-spacing:1.648000pt;}
.ls2{letter-spacing:1.748000pt;}
.ls12{letter-spacing:1.924000pt;}
.ls3{letter-spacing:2.000000pt;}
.ls13{letter-spacing:3.000000pt;}
.ls14{letter-spacing:3.053333pt;}
.ls4{letter-spacing:4.248000pt;}
.ls15{letter-spacing:13.677333pt;}
.lse{letter-spacing:41.677333pt;}
.ls10{letter-spacing:57.677333pt;}
.ws8{word-spacing:-15.000000pt;}
.wsb{word-spacing:-14.924000pt;}
.wse{word-spacing:-14.546667pt;}
.ws3{word-spacing:-14.352000pt;}
.wsa{word-spacing:-13.912000pt;}
.ws2{word-spacing:-13.648000pt;}
.wsc{word-spacing:-13.227733pt;}
.ws7{word-spacing:-13.000000pt;}
.ws5{word-spacing:-11.752000pt;}
.wsf{word-spacing:-11.682667pt;}
.wsd{word-spacing:-11.453333pt;}
.ws1{word-spacing:-11.138667pt;}
.ws6{word-spacing:-11.000000pt;}
.ws0{word-spacing:-10.512000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._7{margin-left:-9.288267pt;}
._9{margin-left:-7.228000pt;}
._16{margin-left:-5.792000pt;}
._6{margin-left:-4.885333pt;}
._8{margin-left:-3.152667pt;}
._2{margin-left:-2.160000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._3{width:2.688000pt;}
._a{width:4.214667pt;}
._4{width:5.296000pt;}
._d{width:6.474667pt;}
._c{width:7.385333pt;}
._5{width:8.821333pt;}
._11{width:10.356000pt;}
._12{width:11.668000pt;}
._b{width:12.836667pt;}
._10{width:14.440000pt;}
._14{width:15.630667pt;}
._17{width:18.258667pt;}
._13{width:19.154667pt;}
._1b{width:22.906667pt;}
._1a{width:23.844000pt;}
._f{width:26.096000pt;}
._e{width:27.208000pt;}
._19{width:51.295333pt;}
._18{width:54.298667pt;}
._15{width:91.010667pt;}
._1c{width:1863.909333pt;}
.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;}
.y4{bottom:3.000000pt;}
.yd7{bottom:3.013333pt;}
.yc2{bottom:3.026667pt;}
.y53{bottom:4.000000pt;}
.yab{bottom:4.013333pt;}
.ya9{bottom:4.040000pt;}
.y1d{bottom:10.000000pt;}
.y10{bottom:10.040000pt;}
.ye{bottom:12.000000pt;}
.y7{bottom:18.000000pt;}
.y3{bottom:18.033333pt;}
.y50{bottom:19.000000pt;}
.y1b{bottom:20.000000pt;}
.y52{bottom:23.000000pt;}
.yd{bottom:27.026667pt;}
.y5{bottom:30.033333pt;}
.y2{bottom:32.033333pt;}
.y4f{bottom:34.000000pt;}
.y1a{bottom:35.000000pt;}
.y6{bottom:37.033333pt;}
.yc{bottom:41.026667pt;}
.y4e{bottom:49.026667pt;}
.y19{bottom:50.040000pt;}
.y1{bottom:57.033333pt;}
.y18{bottom:61.040000pt;}
.y4d{bottom:65.040000pt;}
.yb{bottom:65.053333pt;}
.y17{bottom:73.040000pt;}
.y4c{bottom:80.066667pt;}
.ya{bottom:83.053333pt;}
.y16{bottom:86.066667pt;}
.y4b{bottom:95.066667pt;}
.y9{bottom:98.093333pt;}
.y15{bottom:103.066667pt;}
.y4a{bottom:111.093333pt;}
.y56{bottom:111.100000pt;}
.y8f{bottom:116.100000pt;}
.y12f{bottom:118.100000pt;}
.y129{bottom:121.100000pt;}
.yc3{bottom:123.100000pt;}
.ye1{bottom:125.100000pt;}
.y49{bottom:126.093333pt;}
.y55{bottom:126.100000pt;}
.y14{bottom:126.106667pt;}
.y131{bottom:128.100000pt;}
.y8e{bottom:131.100000pt;}
.y12e{bottom:133.100000pt;}
.y128{bottom:137.106667pt;}
.yc1{bottom:139.106667pt;}
.ye0{bottom:140.106667pt;}
.y48{bottom:141.093333pt;}
.y54{bottom:142.133333pt;}
.y8d{bottom:147.133333pt;}
.y13{bottom:149.133333pt;}
.y127{bottom:152.133333pt;}
.ydf{bottom:156.133333pt;}
.y47{bottom:157.133333pt;}
.yc0{bottom:158.133333pt;}
.y130{bottom:161.133333pt;}
.y8c{bottom:162.133333pt;}
.y12d{bottom:164.133333pt;}
.y126{bottom:167.133333pt;}
.y12{bottom:171.133333pt;}
.y46{bottom:172.133333pt;}
.ybf{bottom:173.133333pt;}
.y8b{bottom:177.133333pt;}
.y12c{bottom:179.173333pt;}
.y125{bottom:183.173333pt;}
.y51{bottom:185.173333pt;}
.yde{bottom:186.173333pt;}
.y45{bottom:187.173333pt;}
.ybe{bottom:189.173333pt;}
.y8a{bottom:194.173333pt;}
.y31{bottom:195.160000pt;}
.y12b{bottom:195.173333pt;}
.y124{bottom:198.173333pt;}
.ydd{bottom:199.173333pt;}
.y44{bottom:203.173333pt;}
.ybd{bottom:204.173333pt;}
.y30{bottom:208.173333pt;}
.y89{bottom:209.173333pt;}
.y12a{bottom:210.173333pt;}
.y123{bottom:213.173333pt;}
.ydc{bottom:215.173333pt;}
.y43{bottom:218.173333pt;}
.y1e{bottom:218.200000pt;}
.ybc{bottom:219.200000pt;}
.y2f{bottom:224.200000pt;}
.y88{bottom:225.200000pt;}
.y122{bottom:229.200000pt;}
.ydb{bottom:231.200000pt;}
.y42{bottom:233.200000pt;}
.ybb{bottom:235.200000pt;}
.y2e{bottom:239.200000pt;}
.y87{bottom:241.200000pt;}
.y121{bottom:244.200000pt;}
.yda{bottom:247.200000pt;}
.y41{bottom:249.200000pt;}
.yba{bottom:250.200000pt;}
.y2d{bottom:255.200000pt;}
.y86{bottom:256.240000pt;}
.y120{bottom:259.240000pt;}
.yd9{bottom:263.226667pt;}
.y40{bottom:264.240000pt;}
.yb9{bottom:265.240000pt;}
.y2c{bottom:270.240000pt;}
.y85{bottom:271.240000pt;}
.y11f{bottom:275.226667pt;}
.yd8{bottom:279.226667pt;}
.y3f{bottom:279.240000pt;}
.yb8{bottom:281.226667pt;}
.y2b{bottom:286.240000pt;}
.y84{bottom:287.226667pt;}
.y11e{bottom:290.266667pt;}
.y3e{bottom:295.266667pt;}
.yb7{bottom:296.266667pt;}
.y2a{bottom:301.266667pt;}
.y83{bottom:302.266667pt;}
.y11d{bottom:305.266667pt;}
.y3d{bottom:310.266667pt;}
.yb6{bottom:311.266667pt;}
.y29{bottom:317.266667pt;}
.y11c{bottom:321.266667pt;}
.y3c{bottom:325.266667pt;}
.yb5{bottom:327.293333pt;}
.y28{bottom:332.306667pt;}
.y82{bottom:333.293333pt;}
.y11b{bottom:336.293333pt;}
.y3b{bottom:341.306667pt;}
.yb4{bottom:342.293333pt;}
.yd6{bottom:343.293333pt;}
.y103{bottom:346.306667pt;}
.y81{bottom:348.293333pt;}
.y27{bottom:348.306667pt;}
.y11a{bottom:351.293333pt;}
.y3a{bottom:356.306667pt;}
.yb3{bottom:357.293333pt;}
.yd5{bottom:359.293333pt;}
.y80{bottom:363.293333pt;}
.y26{bottom:363.306667pt;}
.y119{bottom:367.333333pt;}
.y39{bottom:371.333333pt;}
.yb2{bottom:373.333333pt;}
.yd4{bottom:375.333333pt;}
.y25{bottom:378.333333pt;}
.y7f{bottom:379.333333pt;}
.y118{bottom:382.333333pt;}
.y38{bottom:387.333333pt;}
.yb1{bottom:388.333333pt;}
.y102{bottom:391.333333pt;}
.y24{bottom:394.333333pt;}
.y117{bottom:397.333333pt;}
.y37{bottom:402.333333pt;}
.yb0{bottom:403.373333pt;}
.y101{bottom:407.360000pt;}
.y23{bottom:409.373333pt;}
.yd3{bottom:410.360000pt;}
.y116{bottom:413.360000pt;}
.y36{bottom:417.360000pt;}
.yaf{bottom:419.360000pt;}
.y100{bottom:423.360000pt;}
.y22{bottom:425.360000pt;}
.y115{bottom:428.360000pt;}
.y35{bottom:433.373333pt;}
.yae{bottom:434.360000pt;}
.yff{bottom:439.400000pt;}
.y21{bottom:440.360000pt;}
.y7e{bottom:440.400000pt;}
.y114{bottom:443.400000pt;}
.y34{bottom:448.400000pt;}
.yad{bottom:449.400000pt;}
.y7d{bottom:455.400000pt;}
.yd2{bottom:456.400000pt;}
.y113{bottom:459.400000pt;}
.y33{bottom:463.400000pt;}
.y20{bottom:465.400000pt;}
.y7c{bottom:471.400000pt;}
.y112{bottom:474.400000pt;}
.yac{bottom:477.426667pt;}
.y32{bottom:479.400000pt;}
.y1f{bottom:481.426667pt;}
.y7b{bottom:486.440000pt;}
.yfe{bottom:487.426667pt;}
.yaa{bottom:493.426667pt;}
.y7a{bottom:501.440000pt;}
.yd1{bottom:502.426667pt;}
.yfd{bottom:503.426667pt;}
.ya8{bottom:509.426667pt;}
.y79{bottom:517.466667pt;}
.yfc{bottom:519.466667pt;}
.ya7{bottom:525.466667pt;}
.y78{bottom:532.466667pt;}
.yfb{bottom:535.466667pt;}
.ya6{bottom:545.466667pt;}
.y77{bottom:547.466667pt;}
.yd0{bottom:548.466667pt;}
.y111{bottom:551.506667pt;}
.yfa{bottom:554.506667pt;}
.ya5{bottom:560.506667pt;}
.y76{bottom:563.506667pt;}
.yf9{bottom:569.506667pt;}
.y110{bottom:570.506667pt;}
.ya4{bottom:575.506667pt;}
.y75{bottom:578.506667pt;}
.yf8{bottom:585.506667pt;}
.ya3{bottom:590.533333pt;}
.y74{bottom:593.533333pt;}
.ycf{bottom:594.533333pt;}
.yf7{bottom:600.533333pt;}
.y10f{bottom:601.533333pt;}
.ya2{bottom:606.533333pt;}
.y73{bottom:609.533333pt;}
.yf6{bottom:615.533333pt;}
.y10e{bottom:616.533333pt;}
.ya1{bottom:621.533333pt;}
.y72{bottom:624.573333pt;}
.yf5{bottom:631.560000pt;}
.ya0{bottom:636.573333pt;}
.y71{bottom:639.573333pt;}
.yf4{bottom:646.560000pt;}
.y10d{bottom:647.560000pt;}
.y9f{bottom:652.560000pt;}
.y70{bottom:655.560000pt;}
.yf3{bottom:661.600000pt;}
.y10c{bottom:662.600000pt;}
.y9e{bottom:667.600000pt;}
.y6f{bottom:670.600000pt;}
.yf2{bottom:677.600000pt;}
.y9d{bottom:682.600000pt;}
.y6e{bottom:685.600000pt;}
.yf1{bottom:692.600000pt;}
.y10b{bottom:693.600000pt;}
.y9c{bottom:698.626667pt;}
.y6d{bottom:701.626667pt;}
.yf0{bottom:707.626667pt;}
.y10a{bottom:708.626667pt;}
.y1c{bottom:709.626667pt;}
.y9b{bottom:713.626667pt;}
.y6c{bottom:716.626667pt;}
.yef{bottom:723.626667pt;}
.y9a{bottom:728.626667pt;}
.y6b{bottom:731.626667pt;}
.y11{bottom:735.666667pt;}
.yee{bottom:738.666667pt;}
.y109{bottom:739.666667pt;}
.y99{bottom:744.666667pt;}
.y6a{bottom:747.666667pt;}
.yed{bottom:751.666667pt;}
.y108{bottom:754.666667pt;}
.y98{bottom:759.666667pt;}
.y69{bottom:762.666667pt;}
.yec{bottom:767.666667pt;}
.y107{bottom:769.666667pt;}
.y97{bottom:774.706667pt;}
.y68{bottom:777.706667pt;}
.yeb{bottom:783.706667pt;}
.y106{bottom:785.706667pt;}
.y96{bottom:790.706667pt;}
.y67{bottom:793.706667pt;}
.yea{bottom:799.693333pt;}
.y105{bottom:800.706667pt;}
.y95{bottom:805.706667pt;}
.y66{bottom:808.706667pt;}
.y104{bottom:812.733333pt;}
.ye9{bottom:815.733333pt;}
.y94{bottom:820.733333pt;}
.y65{bottom:823.733333pt;}
.ye8{bottom:831.733333pt;}
.y93{bottom:836.733333pt;}
.y64{bottom:839.733333pt;}
.ye7{bottom:847.773333pt;}
.y92{bottom:851.773333pt;}
.y63{bottom:854.773333pt;}
.ye6{bottom:863.773333pt;}
.y91{bottom:867.773333pt;}
.y62{bottom:869.773333pt;}
.yce{bottom:877.773333pt;}
.ye5{bottom:879.760000pt;}
.y90{bottom:884.800000pt;}
.y61{bottom:885.800000pt;}
.ycd{bottom:890.800000pt;}
.ye4{bottom:895.800000pt;}
.y60{bottom:900.800000pt;}
.ycc{bottom:906.800000pt;}
.ye3{bottom:911.800000pt;}
.y5f{bottom:915.800000pt;}
.yf{bottom:919.800000pt;}
.ycb{bottom:922.840000pt;}
.ye2{bottom:927.840000pt;}
.y5e{bottom:931.840000pt;}
.yca{bottom:938.840000pt;}
.y8{bottom:942.840000pt;}
.y5d{bottom:946.840000pt;}
.yc9{bottom:954.840000pt;}
.y5c{bottom:961.866667pt;}
.yc8{bottom:970.866667pt;}
.y5b{bottom:977.866667pt;}
.yc7{bottom:986.866667pt;}
.y5a{bottom:992.866667pt;}
.yc6{bottom:1002.893333pt;}
.y59{bottom:1007.893333pt;}
.yc5{bottom:1018.893333pt;}
.y58{bottom:1023.893333pt;}
.yc4{bottom:1034.933333pt;}
.y57{bottom:1038.933333pt;}
.h23{height:14.986667pt;}
.h21{height:15.000000pt;}
.h22{height:15.020000pt;}
.h20{height:15.033333pt;}
.h1e{height:16.000000pt;}
.h1f{height:16.033333pt;}
.hc{height:23.033333pt;}
.h13{height:26.033333pt;}
.h12{height:26.625000pt;}
.h9{height:33.000000pt;}
.h1c{height:33.033333pt;}
.h19{height:35.406250pt;}
.h1b{height:36.308594pt;}
.h1a{height:36.689453pt;}
.h18{height:36.791016pt;}
.h1d{height:37.857422pt;}
.he{height:38.289062pt;}
.h5{height:38.625000pt;}
.hb{height:39.000000pt;}
.h17{height:41.843750pt;}
.h16{height:43.763672pt;}
.h2{height:44.033333pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h10{height:51.720703pt;}
.h11{height:53.244141pt;}
.hf{height:57.100000pt;}
.h6{height:61.435547pt;}
.h7{height:63.656250pt;}
.h14{height:65.531250pt;}
.h8{height:108.100000pt;}
.hd{height:184.133333pt;}
.h15{height:491.440000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:66.100000pt;}
.wc{width:101.133333pt;}
.w13{width:118.166667pt;}
.w4{width:135.160000pt;}
.w9{width:139.160000pt;}
.w10{width:153.160000pt;}
.w14{width:155.160000pt;}
.wd{width:165.200000pt;}
.wf{width:166.200000pt;}
.we{width:166.240000pt;}
.w12{width:189.240000pt;}
.w7{width:198.240000pt;}
.w11{width:201.266667pt;}
.wa{width:207.266667pt;}
.wb{width:215.266667pt;}
.w15{width:217.306667pt;}
.w16{width:290.360000pt;}
.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;}
.x2a{left:6.040000pt;}
.x8{left:7.000000pt;}
.x2{left:8.033333pt;}
.x15{left:11.040000pt;}
.xe{left:30.033333pt;}
.x12{left:63.066667pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x4{left:72.099988pt;}
.x11{left:73.060000pt;}
.x6{left:87.100000pt;}
.x16{left:96.133322pt;}
.x17{left:120.166655pt;}
.x1c{left:141.159988pt;}
.x10{left:151.166667pt;}
.x22{left:167.199988pt;}
.x21{left:170.239988pt;}
.x23{left:188.239988pt;}
.x13{left:190.233333pt;}
.x7{left:200.266667pt;}
.x19{left:205.266667pt;}
.x24{left:219.266667pt;}
.xf{left:221.273333pt;}
.x1d{left:231.306667pt;}
.x18{left:235.306655pt;}
.x28{left:245.306655pt;}
.x29{left:255.333322pt;}
.xb{left:258.333333pt;}
.x14{left:263.333333pt;}
.x9{left:307.360000pt;}
.xa{left:324.400000pt;}
.xd{left:332.406667pt;}
.x1e{left:397.506667pt;}
.xc{left:403.506667pt;}
.x1a{left:412.533333pt;}
.x25{left:421.533333pt;}
.x2b{left:439.573333pt;}
.x1f{left:563.733333pt;}
.x20{left:566.733322pt;}
.x27{left:571.733322pt;}
.x26{left:611.773333pt;}
.x1b{left:628.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; }
  