
    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_0ba13420eeec63aaa0e92875.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_f94602c88de6566a150d1981.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_f7387f35be69753a5d5a9d0b.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_f1ac56c0c4560f0bdc33baa6.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_d982672217822e02562de945.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_8c5b689a9e2f28e9f51eab52.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_6c512aaa962e770ea7074f5c.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_6f4216564988817048ef10a5.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_cc648ef3111ab02236afb8fa.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_6f39043bb841d297ec8864c7.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_0d0c81e886e3ab145a5d8239.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_1c506c7b5c9cb8f7a8ec09bb.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_92a0516db3a363c1b657056c.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_ad90b898473e3668d38115fb.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;}
@font-face{font-family:ff15;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff15{font-family:ff15;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);}
.v3{vertical-align:-18.000000px;}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsa{letter-spacing:-2.724000px;}
.ls17{letter-spacing:-2.250000px;}
.lsf{letter-spacing:-1.596000px;}
.ls10{letter-spacing:-1.482000px;}
.ls1e{letter-spacing:-1.128000px;}
.lsd{letter-spacing:-0.816000px;}
.lsb{letter-spacing:-0.792000px;}
.ls11{letter-spacing:-0.780000px;}
.ls18{letter-spacing:-0.454200px;}
.ls9{letter-spacing:-0.378000px;}
.ls8{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.090000px;}
.lsc{letter-spacing:0.690000px;}
.ls15{letter-spacing:1.026000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.476000px;}
.ls1d{letter-spacing:1.842000px;}
.ls3{letter-spacing:1.906500px;}
.lse{letter-spacing:1.944000px;}
.ls4{letter-spacing:1.966500px;}
.ls2{letter-spacing:2.034000px;}
.ls5{letter-spacing:2.086500px;}
.ls16{letter-spacing:2.164500px;}
.ls6{letter-spacing:2.250000px;}
.ls12{letter-spacing:2.370000px;}
.ls13{letter-spacing:2.430000px;}
.ls7{letter-spacing:4.779000px;}
.ls1c{letter-spacing:15.387000px;}
.ls14{letter-spacing:46.887000px;}
.ls1b{letter-spacing:64.887000px;}
.ls19{letter-spacing:2314.935000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-25.926000px;}
.ws4{word-spacing:-23.166000px;}
.wsd{word-spacing:-19.356900px;}
.ws11{word-spacing:-19.323000px;}
.ws8{word-spacing:-16.875000px;}
.ws10{word-spacing:-16.789500px;}
.ws3{word-spacing:-16.146000px;}
.wsc{word-spacing:-15.651000px;}
.ws2{word-spacing:-15.354000px;}
.ws14{word-spacing:-15.063000px;}
.ws7{word-spacing:-14.625000px;}
.wsa{word-spacing:-13.221000px;}
.ws9{word-spacing:-13.143000px;}
.ws1{word-spacing:-12.531000px;}
.wsf{word-spacing:-12.375000px;}
.ws12{word-spacing:-12.204000px;}
.ws0{word-spacing:-11.826000px;}
.ws6{word-spacing:-8.136000px;}
.ws13{word-spacing:-7.875000px;}
.wsb{word-spacing:0.000000px;}
.wse{word-spacing:70.296000px;}
._7{margin-left:-9.823650px;}
._8{margin-left:-7.351500px;}
._6{margin-left:-5.466150px;}
._b{margin-left:-4.270500px;}
._2{margin-left:-2.916000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._3{width:3.096000px;}
._4{width:5.052000px;}
._a{width:6.348150px;}
._14{width:7.351650px;}
._9{width:9.273000px;}
._5{width:10.518000px;}
._1c{width:11.596500px;}
._f{width:12.600000px;}
._16{width:15.824850px;}
._e{width:16.825500px;}
._d{width:20.740500px;}
._15{width:22.203000px;}
._12{width:25.800000px;}
._11{width:30.348000px;}
._29{width:34.194000px;}
._10{width:35.532000px;}
._24{width:38.803500px;}
._c{width:39.922500px;}
._13{width:43.731000px;}
._19{width:44.914500px;}
._18{width:47.857500px;}
._1b{width:48.969000px;}
._17{width:53.226000px;}
._1a{width:57.397500px;}
._1d{width:70.447500px;}
._28{width:71.451000px;}
._27{width:74.974500px;}
._30{width:76.410000px;}
._2f{width:79.281000px;}
._26{width:80.451000px;}
._2c{width:83.286000px;}
._25{width:84.721500px;}
._2d{width:86.194500px;}
._2b{width:87.264000px;}
._21{width:89.851500px;}
._22{width:97.596000px;}
._1e{width:98.622000px;}
._1f{width:112.077000px;}
._20{width:115.008000px;}
._23{width:138.631500px;}
._2a{width:156.640500px;}
._2e{width:197.358000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc6{color:rgb(89,89,89);}
.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;}
.fs8{font-size:54.150000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs9{font-size:85.500000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:1.125000px;}
.y3{bottom:3.375000px;}
.ya0{bottom:3.390000px;}
.y14e{bottom:3.405000px;}
.y1b{bottom:4.485000px;}
.y5c{bottom:4.500000px;}
.yab{bottom:4.515000px;}
.yad{bottom:4.530000px;}
.yd5{bottom:4.545000px;}
.y147{bottom:7.890000px;}
.y5a{bottom:11.242500px;}
.ye{bottom:11.250000px;}
.y1e{bottom:12.405000px;}
.yc{bottom:13.530000px;}
.y11d{bottom:16.425000px;}
.y95{bottom:16.575000px;}
.y4{bottom:16.875000px;}
.yc8{bottom:17.100000px;}
.y2{bottom:19.125000px;}
.yd8{bottom:20.250000px;}
.yca{bottom:20.280000px;}
.y57{bottom:21.375000px;}
.y145{bottom:21.390000px;}
.ycc{bottom:21.405000px;}
.ydc{bottom:21.420000px;}
.y5b{bottom:22.537500px;}
.y146{bottom:25.875000px;}
.y59{bottom:25.912500px;}
.y1a{bottom:28.155000px;}
.yb{bottom:30.405000px;}
.yc0{bottom:30.600000px;}
.y5{bottom:31.500000px;}
.yf7{bottom:38.250000px;}
.y144{bottom:38.265000px;}
.y100{bottom:38.280000px;}
.y56{bottom:38.295000px;}
.y19{bottom:45.030000px;}
.ya{bottom:46.155000px;}
.y1{bottom:55.162500px;}
.y55{bottom:55.170000px;}
.y14d{bottom:55.200000px;}
.ybf{bottom:55.920000px;}
.yff{bottom:56.325000px;}
.y18{bottom:61.950000px;}
.y9{bottom:73.185000px;}
.y54{bottom:73.200000px;}
.y17{bottom:77.700000px;}
.ybe{bottom:81.255000px;}
.y53{bottom:90.075000px;}
.y8{bottom:93.480000px;}
.y16{bottom:94.575000px;}
.y92{bottom:102.450000px;}
.ybd{bottom:106.620000px;}
.yb6{bottom:106.950000px;}
.y52{bottom:106.980000px;}
.y124{bottom:108.075000px;}
.y15{bottom:108.105000px;}
.y5e{bottom:109.200000px;}
.y7{bottom:110.355000px;}
.y91{bottom:115.950000px;}
.y93{bottom:118.125000px;}
.yf5{bottom:118.237500px;}
.y51{bottom:124.980000px;}
.yb5{bottom:124.987500px;}
.yc2{bottom:124.995000px;}
.y14{bottom:126.105000px;}
.y14f{bottom:126.112500px;}
.y5d{bottom:127.237500px;}
.ybc{bottom:131.925000px;}
.y11a{bottom:132.862500px;}
.y179{bottom:136.237500px;}
.yb4{bottom:138.487500px;}
.y50{bottom:141.855000px;}
.y58{bottom:141.862500px;}
.y123{bottom:142.987500px;}
.y12d{bottom:144.112500px;}
.y13{bottom:144.150000px;}
.yc3{bottom:147.900000px;}
.y119{bottom:149.737500px;}
.y178{bottom:153.105000px;}
.yf4{bottom:154.245000px;}
.yb3{bottom:156.495000px;}
.ybb{bottom:157.275000px;}
.y14c{bottom:157.620000px;}
.y4f{bottom:158.775000px;}
.y122{bottom:159.900000px;}
.y12c{bottom:161.025000px;}
.y12{bottom:163.275000px;}
.y118{bottom:167.775000px;}
.yc4{bottom:170.850000px;}
.y177{bottom:171.150000px;}
.yf3{bottom:172.275000px;}
.yb2{bottom:174.525000px;}
.y94{bottom:176.205000px;}
.y4e{bottom:176.775000px;}
.y1f{bottom:179.025000px;}
.yba{bottom:182.580000px;}
.y117{bottom:184.650000px;}
.y176{bottom:188.025000px;}
.y11{bottom:189.180000px;}
.yf2{bottom:190.275000px;}
.yb1{bottom:192.525000px;}
.y4d{bottom:193.695000px;}
.yc5{bottom:193.800000px;}
.y121{bottom:194.775000px;}
.y12b{bottom:195.900000px;}
.y116{bottom:201.570000px;}
.y175{bottom:206.070000px;}
.yb9{bottom:207.945000px;}
.yf1{bottom:208.320000px;}
.y4c{bottom:210.570000px;}
.y120{bottom:211.695000px;}
.y12a{bottom:212.820000px;}
.y10{bottom:213.930000px;}
.yc6{bottom:216.750000px;}
.y35{bottom:218.430000px;}
.y115{bottom:219.570000px;}
.y174{bottom:222.945000px;}
.y11f{bottom:225.195000px;}
.yf0{bottom:226.320000px;}
.y14b{bottom:227.445000px;}
.y4b{bottom:228.555000px;}
.yb0{bottom:228.570000px;}
.y129{bottom:230.820000px;}
.y114{bottom:233.070000px;}
.y34{bottom:233.100000px;}
.y173{bottom:239.820000px;}
.yc7{bottom:244.275000px;}
.yef{bottom:244.350000px;}
.y4a{bottom:245.475000px;}
.yaf{bottom:246.600000px;}
.y128{bottom:247.725000px;}
.y113{bottom:251.100000px;}
.y33{bottom:252.225000px;}
.yb8{bottom:254.100000px;}
.y172{bottom:257.850000px;}
.y49{bottom:262.350000px;}
.yae{bottom:264.600000px;}
.y11c{bottom:264.645000px;}
.y32{bottom:269.100000px;}
.y171{bottom:274.725000px;}
.y14a{bottom:279.225000px;}
.yee{bottom:280.350000px;}
.y48{bottom:280.395000px;}
.yac{bottom:282.600000px;}
.y31{bottom:286.005000px;}
.y112{bottom:287.130000px;}
.y170{bottom:291.645000px;}
.y149{bottom:297.255000px;}
.y47{bottom:297.270000px;}
.yed{bottom:298.380000px;}
.y127{bottom:299.505000px;}
.yaa{bottom:300.630000px;}
.y30{bottom:304.020000px;}
.y111{bottom:305.130000px;}
.y16f{bottom:309.630000px;}
.y46{bottom:314.175000px;}
.yec{bottom:316.380000px;}
.y2f{bottom:320.925000px;}
.ya9{bottom:323.130000px;}
.y16e{bottom:326.550000px;}
.y90{bottom:329.925000px;}
.y45{bottom:331.050000px;}
.y148{bottom:333.300000px;}
.yeb{bottom:334.425000px;}
.ya8{bottom:336.675000px;}
.yc1{bottom:337.500000px;}
.y2e{bottom:338.925000px;}
.y110{bottom:341.175000px;}
.y16d{bottom:343.425000px;}
.y8f{bottom:346.800000px;}
.y126{bottom:347.925000px;}
.y44{bottom:349.050000px;}
.y2d{bottom:355.830000px;}
.y10f{bottom:359.175000px;}
.y16c{bottom:361.425000px;}
.y8e{bottom:363.675000px;}
.y43{bottom:365.955000px;}
.y143{bottom:368.205000px;}
.yea{bottom:369.330000px;}
.y2c{bottom:373.845000px;}
.y10e{bottom:377.205000px;}
.y16b{bottom:378.330000px;}
.y8d{bottom:381.705000px;}
.y42{bottom:382.830000px;}
.ye9{bottom:387.330000px;}
.y2b{bottom:390.720000px;}
.y16a{bottom:395.205000px;}
.y8c{bottom:398.580000px;}
.y10d{bottom:399.720000px;}
.y41{bottom:400.875000px;}
.ye8{bottom:405.330000px;}
.y2a{bottom:408.750000px;}
.y10c{bottom:413.250000px;}
.y8b{bottom:415.500000px;}
.y11b{bottom:416.250000px;}
.y40{bottom:417.750000px;}
.ye7{bottom:423.375000px;}
.y142{bottom:424.500000px;}
.y29{bottom:425.625000px;}
.y169{bottom:430.125000px;}
.y8a{bottom:433.500000px;}
.y3f{bottom:434.625000px;}
.ye6{bottom:441.375000px;}
.y28{bottom:442.545000px;}
.y168{bottom:447.000000px;}
.y89{bottom:450.375000px;}
.y3e{bottom:452.670000px;}
.y141{bottom:459.420000px;}
.y27{bottom:460.545000px;}
.y167{bottom:465.030000px;}
.y88{bottom:467.295000px;}
.y3d{bottom:469.545000px;}
.ye5{bottom:476.280000px;}
.y140{bottom:476.295000px;}
.y26{bottom:477.420000px;}
.y166{bottom:481.905000px;}
.y87{bottom:485.280000px;}
.y3c{bottom:486.450000px;}
.y13f{bottom:493.200000px;}
.ye4{bottom:494.325000px;}
.y25{bottom:495.450000px;}
.y165{bottom:498.825000px;}
.y86{bottom:502.200000px;}
.y3b{bottom:504.450000px;}
.y13e{bottom:511.200000px;}
.y24{bottom:512.325000px;}
.y164{bottom:516.825000px;}
.y85{bottom:519.075000px;}
.y3a{bottom:521.325000px;}
.y13d{bottom:528.075000px;}
.y23{bottom:530.370000px;}
.y163{bottom:533.700000px;}
.y84{bottom:537.120000px;}
.y39{bottom:538.230000px;}
.y13c{bottom:544.980000px;}
.y22{bottom:547.245000px;}
.ye3{bottom:548.355000px;}
.y162{bottom:550.620000px;}
.y83{bottom:553.995000px;}
.y38{bottom:556.230000px;}
.y13b{bottom:562.995000px;}
.ye2{bottom:566.355000px;}
.y161{bottom:568.605000px;}
.y82{bottom:570.870000px;}
.y37{bottom:573.150000px;}
.y21{bottom:574.275000px;}
.y13a{bottom:579.900000px;}
.ye1{bottom:584.400000px;}
.y160{bottom:585.525000px;}
.y81{bottom:588.900000px;}
.y36{bottom:590.025000px;}
.y20{bottom:592.275000px;}
.y139{bottom:596.775000px;}
.y15f{bottom:602.400000px;}
.y80{bottom:605.775000px;}
.y138{bottom:614.775000px;}
.ya7{bottom:617.025000px;}
.ye0{bottom:619.320000px;}
.y15e{bottom:620.445000px;}
.y7f{bottom:622.695000px;}
.ya6{bottom:631.695000px;}
.ydf{bottom:637.320000px;}
.y7e{bottom:640.695000px;}
.y137{bottom:648.570000px;}
.ya5{bottom:649.695000px;}
.y15d{bottom:654.195000px;}
.yde{bottom:655.320000px;}
.y7d{bottom:657.570000px;}
.ya4{bottom:667.725000px;}
.y15c{bottom:671.100000px;}
.ydd{bottom:673.350000px;}
.y7c{bottom:674.475000px;}
.ya3{bottom:685.725000px;}
.y15b{bottom:689.100000px;}
.ydb{bottom:691.350000px;}
.y7b{bottom:692.475000px;}
.ya2{bottom:703.755000px;}
.y15a{bottom:706.020000px;}
.y7a{bottom:709.395000px;}
.y10b{bottom:716.145000px;}
.ya1{bottom:721.755000px;}
.y136{bottom:722.895000px;}
.yda{bottom:726.255000px;}
.y79{bottom:726.270000px;}
.y10a{bottom:733.020000px;}
.y9f{bottom:739.755000px;}
.y135{bottom:739.770000px;}
.y159{bottom:740.880000px;}
.y11e{bottom:743.145000px;}
.y78{bottom:744.300000px;}
.y109{bottom:751.050000px;}
.y134{bottom:756.675000px;}
.y9e{bottom:757.800000px;}
.y77{bottom:761.175000px;}
.y108{bottom:767.925000px;}
.y133{bottom:774.675000px;}
.y9d{bottom:775.800000px;}
.y76{bottom:778.050000px;}
.yd9{bottom:780.300000px;}
.y1c{bottom:782.550000px;}
.y107{bottom:784.800000px;}
.y132{bottom:791.580000px;}
.y158{bottom:792.705000px;}
.y9c{bottom:793.830000px;}
.y75{bottom:796.080000px;}
.yd7{bottom:798.330000px;}
.y106{bottom:802.830000px;}
.y131{bottom:809.580000px;}
.y74{bottom:812.955000px;}
.yf{bottom:812.970000px;}
.y9b{bottom:815.205000px;}
.y105{bottom:816.330000px;}
.y157{bottom:826.455000px;}
.y130{bottom:827.625000px;}
.y9a{bottom:828.750000px;}
.y73{bottom:829.875000px;}
.yb7{bottom:831.375000px;}
.y104{bottom:834.375000px;}
.y156{bottom:844.500000px;}
.y12f{bottom:845.625000px;}
.y72{bottom:847.875000px;}
.yd6{bottom:850.125000px;}
.y103{bottom:852.375000px;}
.y155{bottom:861.375000px;}
.y12e{bottom:863.625000px;}
.y71{bottom:864.750000px;}
.yd4{bottom:868.125000px;}
.y102{bottom:870.420000px;}
.y154{bottom:878.295000px;}
.y70{bottom:881.670000px;}
.yd3{bottom:886.170000px;}
.y101{bottom:888.420000px;}
.y153{bottom:896.295000px;}
.y6f{bottom:899.670000px;}
.yd2{bottom:904.155000px;}
.yfe{bottom:906.420000px;}
.y152{bottom:913.200000px;}
.y125{bottom:915.450000px;}
.y6e{bottom:916.575000px;}
.yd1{bottom:922.200000px;}
.y151{bottom:931.200000px;}
.y6d{bottom:933.450000px;}
.y150{bottom:950.325000px;}
.y6c{bottom:951.450000px;}
.yd0{bottom:958.245000px;}
.y6b{bottom:968.370000px;}
.ycf{bottom:976.245000px;}
.y6a{bottom:985.245000px;}
.yfd{bottom:994.275000px;}
.y69{bottom:1003.275000px;}
.yce{bottom:1011.150000px;}
.yfc{bottom:1012.275000px;}
.y68{bottom:1020.150000px;}
.yfb{bottom:1030.275000px;}
.y67{bottom:1037.070000px;}
.yd{bottom:1041.570000px;}
.ycd{bottom:1046.070000px;}
.yfa{bottom:1048.320000px;}
.y66{bottom:1055.070000px;}
.ycb{bottom:1064.070000px;}
.yf9{bottom:1066.320000px;}
.y6{bottom:1067.445000px;}
.y65{bottom:1071.945000px;}
.yf8{bottom:1084.350000px;}
.y64{bottom:1088.850000px;}
.yc9{bottom:1100.100000px;}
.y63{bottom:1106.850000px;}
.yf6{bottom:1119.255000px;}
.y99{bottom:1120.380000px;}
.y62{bottom:1123.755000px;}
.y98{bottom:1135.005000px;}
.y61{bottom:1140.630000px;}
.y97{bottom:1153.005000px;}
.y60{bottom:1158.630000px;}
.y96{bottom:1171.050000px;}
.y5f{bottom:1175.550000px;}
.h2c{height:16.860000px;}
.h20{height:16.875000px;}
.h32{height:16.897500px;}
.h21{height:16.912500px;}
.h2d{height:17.985000px;}
.h22{height:18.000000px;}
.h23{height:18.037500px;}
.hb{height:25.875000px;}
.h39{height:28.278809px;}
.h12{height:30.412500px;}
.h2{height:32.662500px;}
.h11{height:33.723633px;}
.h30{height:33.750000px;}
.h2b{height:33.772500px;}
.h28{height:33.787500px;}
.h2f{height:34.875000px;}
.h29{height:34.897500px;}
.h2a{height:34.912500px;}
.h8{height:37.125000px;}
.h1b{height:37.162500px;}
.h1a{height:40.847168px;}
.h19{height:41.275635px;}
.h17{height:41.389893px;}
.h1d{height:42.589600px;}
.hd{height:43.075195px;}
.h18{height:43.288330px;}
.ha{height:43.875000px;}
.h38{height:46.218809px;}
.h1c{height:46.278809px;}
.h37{height:46.338809px;}
.h36{height:46.398809px;}
.h35{height:46.458809px;}
.h15{height:49.234131px;}
.h16{height:51.158936px;}
.h2e{height:51.787500px;}
.h4{height:53.709961px;}
.h25{height:53.859155px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.hf{height:58.185791px;}
.h10{height:59.899658px;}
.he{height:64.237500px;}
.h31{height:68.662500px;}
.h3a{height:68.700000px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h27{height:85.040771px;}
.h1f{height:85.189966px;}
.h33{height:86.685000px;}
.h7{height:121.597500px;}
.h1e{height:208.125000px;}
.hc{height:228.585000px;}
.h26{height:276.750000px;}
.h24{height:285.750000px;}
.h34{height:297.000000px;}
.h14{height:603.525000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w16{width:70.950000px;}
.w2{width:73.237500px;}
.w19{width:77.700000px;}
.w17{width:77.722500px;}
.w18{width:77.737500px;}
.w1a{width:82.237500px;}
.w1b{width:101.400000px;}
.w13{width:140.812500px;}
.w4{width:152.055000px;}
.w12{width:163.350000px;}
.w14{width:179.100000px;}
.wf{width:207.270000px;}
.w7{width:224.145000px;}
.wa{width:242.175000px;}
.wb{width:243.300000px;}
.wc{width:243.345000px;}
.we{width:260.205000px;}
.wd{width:261.345000px;}
.w10{width:465.750000px;}
.w9{width:495.000000px;}
.w8{width:508.050000px;}
.w15{width:549.000000px;}
.w5{width:580.125000px;}
.w11{width:646.875000px;}
.w1{width:658.950000px;}
.w6{width:732.195000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x39{left:6.780000px;}
.x4{left:7.875000px;}
.x2{left:9.000000px;}
.x27{left:10.912500px;}
.x15{left:12.405000px;}
.x26{left:17.737500px;}
.x30{left:50.400000px;}
.xd{left:57.450000px;}
.x1{left:81.112500px;}
.x1c{left:82.237500px;}
.xc{left:86.737500px;}
.x5{left:97.987500px;}
.x16{left:108.149987px;}
.x25{left:121.500000px;}
.x37{left:135.187487px;}
.x38{left:154.320000px;}
.x31{left:155.429987px;}
.x10{left:166.687500px;}
.x11{left:167.812500px;}
.x2e{left:171.000000px;}
.x12{left:176.857500px;}
.xe{left:179.092500px;}
.x23{left:181.845000px;}
.x1b{left:188.175000px;}
.xf{left:194.857500px;}
.x19{left:198.000000px;}
.x2f{left:209.370000px;}
.x1a{left:211.800000px;}
.x13{left:214.012500px;}
.x6{left:233.175000px;}
.x28{left:253.950000px;}
.x9{left:273.705000px;}
.x29{left:288.150000px;}
.x14{left:305.250000px;}
.x3a{left:312.045000px;}
.x33{left:323.279987px;}
.x1d{left:325.545000px;}
.x2a{left:326.670000px;}
.x7{left:328.920000px;}
.x21{left:344.700000px;}
.x8{left:348.075000px;}
.xb{left:364.957500px;}
.x36{left:387.494987px;}
.x3b{left:390.870000px;}
.x24{left:400.920000px;}
.xa{left:437.055000px;}
.x18{left:447.194987px;}
.x3c{left:474.225000px;}
.x2b{left:491.145000px;}
.x3d{left:553.095000px;}
.x1e{left:568.845000px;}
.x22{left:604.905000px;}
.x3e{left:631.950000px;}
.x2c{left:633.075000px;}
.x1f{left:680.354987px;}
.x17{left:695.024987px;}
.x35{left:704.024987px;}
.x34{left:708.524987px;}
.x3f{left:710.775000px;}
.x2d{left:722.069987px;}
.x3{left:740.070000px;}
.x32{left:762.599987px;}
.x20{left:771.599987px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsa{letter-spacing:-2.421333pt;}
.ls17{letter-spacing:-2.000000pt;}
.lsf{letter-spacing:-1.418667pt;}
.ls10{letter-spacing:-1.317333pt;}
.ls1e{letter-spacing:-1.002667pt;}
.lsd{letter-spacing:-0.725333pt;}
.lsb{letter-spacing:-0.704000pt;}
.ls11{letter-spacing:-0.693333pt;}
.ls18{letter-spacing:-0.403733pt;}
.ls9{letter-spacing:-0.336000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.080000pt;}
.lsc{letter-spacing:0.613333pt;}
.ls15{letter-spacing:0.912000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.312000pt;}
.ls1d{letter-spacing:1.637333pt;}
.ls3{letter-spacing:1.694667pt;}
.lse{letter-spacing:1.728000pt;}
.ls4{letter-spacing:1.748000pt;}
.ls2{letter-spacing:1.808000pt;}
.ls5{letter-spacing:1.854667pt;}
.ls16{letter-spacing:1.924000pt;}
.ls6{letter-spacing:2.000000pt;}
.ls12{letter-spacing:2.106667pt;}
.ls13{letter-spacing:2.160000pt;}
.ls7{letter-spacing:4.248000pt;}
.ls1c{letter-spacing:13.677333pt;}
.ls14{letter-spacing:41.677333pt;}
.ls1b{letter-spacing:57.677333pt;}
.ls19{letter-spacing:2057.720000pt;}
.ws5{word-spacing:-23.045333pt;}
.ws4{word-spacing:-20.592000pt;}
.wsd{word-spacing:-17.206133pt;}
.ws11{word-spacing:-17.176000pt;}
.ws8{word-spacing:-15.000000pt;}
.ws10{word-spacing:-14.924000pt;}
.ws3{word-spacing:-14.352000pt;}
.wsc{word-spacing:-13.912000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws14{word-spacing:-13.389333pt;}
.ws7{word-spacing:-13.000000pt;}
.wsa{word-spacing:-11.752000pt;}
.ws9{word-spacing:-11.682667pt;}
.ws1{word-spacing:-11.138667pt;}
.wsf{word-spacing:-11.000000pt;}
.ws12{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.512000pt;}
.ws6{word-spacing:-7.232000pt;}
.ws13{word-spacing:-7.000000pt;}
.wsb{word-spacing:0.000000pt;}
.wse{word-spacing:62.485333pt;}
._7{margin-left:-8.732133pt;}
._8{margin-left:-6.534667pt;}
._6{margin-left:-4.858800pt;}
._b{margin-left:-3.796000pt;}
._2{margin-left:-2.592000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._3{width:2.752000pt;}
._4{width:4.490667pt;}
._a{width:5.642800pt;}
._14{width:6.534800pt;}
._9{width:8.242667pt;}
._5{width:9.349333pt;}
._1c{width:10.308000pt;}
._f{width:11.200000pt;}
._16{width:14.066533pt;}
._e{width:14.956000pt;}
._d{width:18.436000pt;}
._15{width:19.736000pt;}
._12{width:22.933333pt;}
._11{width:26.976000pt;}
._29{width:30.394667pt;}
._10{width:31.584000pt;}
._24{width:34.492000pt;}
._c{width:35.486667pt;}
._13{width:38.872000pt;}
._19{width:39.924000pt;}
._18{width:42.540000pt;}
._1b{width:43.528000pt;}
._17{width:47.312000pt;}
._1a{width:51.020000pt;}
._1d{width:62.620000pt;}
._28{width:63.512000pt;}
._27{width:66.644000pt;}
._30{width:67.920000pt;}
._2f{width:70.472000pt;}
._26{width:71.512000pt;}
._2c{width:74.032000pt;}
._25{width:75.308000pt;}
._2d{width:76.617333pt;}
._2b{width:77.568000pt;}
._21{width:79.868000pt;}
._22{width:86.752000pt;}
._1e{width:87.664000pt;}
._1f{width:99.624000pt;}
._20{width:102.229333pt;}
._23{width:123.228000pt;}
._2a{width:139.236000pt;}
._2e{width:175.429333pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:48.133333pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs9{font-size:76.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:1.000000pt;}
.y3{bottom:3.000000pt;}
.ya0{bottom:3.013333pt;}
.y14e{bottom:3.026667pt;}
.y1b{bottom:3.986667pt;}
.y5c{bottom:4.000000pt;}
.yab{bottom:4.013333pt;}
.yad{bottom:4.026667pt;}
.yd5{bottom:4.040000pt;}
.y147{bottom:7.013333pt;}
.y5a{bottom:9.993333pt;}
.ye{bottom:10.000000pt;}
.y1e{bottom:11.026667pt;}
.yc{bottom:12.026667pt;}
.y11d{bottom:14.600000pt;}
.y95{bottom:14.733333pt;}
.y4{bottom:15.000000pt;}
.yc8{bottom:15.200000pt;}
.y2{bottom:17.000000pt;}
.yd8{bottom:18.000000pt;}
.yca{bottom:18.026667pt;}
.y57{bottom:19.000000pt;}
.y145{bottom:19.013333pt;}
.ycc{bottom:19.026667pt;}
.ydc{bottom:19.040000pt;}
.y5b{bottom:20.033333pt;}
.y146{bottom:23.000000pt;}
.y59{bottom:23.033333pt;}
.y1a{bottom:25.026667pt;}
.yb{bottom:27.026667pt;}
.yc0{bottom:27.200000pt;}
.y5{bottom:28.000000pt;}
.yf7{bottom:34.000000pt;}
.y144{bottom:34.013333pt;}
.y100{bottom:34.026667pt;}
.y56{bottom:34.040000pt;}
.y19{bottom:40.026667pt;}
.ya{bottom:41.026667pt;}
.y1{bottom:49.033333pt;}
.y55{bottom:49.040000pt;}
.y14d{bottom:49.066667pt;}
.ybf{bottom:49.706667pt;}
.yff{bottom:50.066667pt;}
.y18{bottom:55.066667pt;}
.y9{bottom:65.053333pt;}
.y54{bottom:65.066667pt;}
.y17{bottom:69.066667pt;}
.ybe{bottom:72.226667pt;}
.y53{bottom:80.066667pt;}
.y8{bottom:83.093333pt;}
.y16{bottom:84.066667pt;}
.y92{bottom:91.066667pt;}
.ybd{bottom:94.773333pt;}
.yb6{bottom:95.066667pt;}
.y52{bottom:95.093333pt;}
.y124{bottom:96.066667pt;}
.y15{bottom:96.093333pt;}
.y5e{bottom:97.066667pt;}
.y7{bottom:98.093333pt;}
.y91{bottom:103.066667pt;}
.y93{bottom:105.000000pt;}
.yf5{bottom:105.100000pt;}
.y51{bottom:111.093333pt;}
.yb5{bottom:111.100000pt;}
.yc2{bottom:111.106667pt;}
.y14{bottom:112.093333pt;}
.y14f{bottom:112.100000pt;}
.y5d{bottom:113.100000pt;}
.ybc{bottom:117.266667pt;}
.y11a{bottom:118.100000pt;}
.y179{bottom:121.100000pt;}
.yb4{bottom:123.100000pt;}
.y50{bottom:126.093333pt;}
.y58{bottom:126.100000pt;}
.y123{bottom:127.100000pt;}
.y12d{bottom:128.100000pt;}
.y13{bottom:128.133333pt;}
.yc3{bottom:131.466667pt;}
.y119{bottom:133.100000pt;}
.y178{bottom:136.093333pt;}
.yf4{bottom:137.106667pt;}
.yb3{bottom:139.106667pt;}
.ybb{bottom:139.800000pt;}
.y14c{bottom:140.106667pt;}
.y4f{bottom:141.133333pt;}
.y122{bottom:142.133333pt;}
.y12c{bottom:143.133333pt;}
.y12{bottom:145.133333pt;}
.y118{bottom:149.133333pt;}
.yc4{bottom:151.866667pt;}
.y177{bottom:152.133333pt;}
.yf3{bottom:153.133333pt;}
.yb2{bottom:155.133333pt;}
.y94{bottom:156.626667pt;}
.y4e{bottom:157.133333pt;}
.y1f{bottom:159.133333pt;}
.yba{bottom:162.293333pt;}
.y117{bottom:164.133333pt;}
.y176{bottom:167.133333pt;}
.y11{bottom:168.160000pt;}
.yf2{bottom:169.133333pt;}
.yb1{bottom:171.133333pt;}
.y4d{bottom:172.173333pt;}
.yc5{bottom:172.266667pt;}
.y121{bottom:173.133333pt;}
.y12b{bottom:174.133333pt;}
.y116{bottom:179.173333pt;}
.y175{bottom:183.173333pt;}
.yb9{bottom:184.840000pt;}
.yf1{bottom:185.173333pt;}
.y4c{bottom:187.173333pt;}
.y120{bottom:188.173333pt;}
.y12a{bottom:189.173333pt;}
.y10{bottom:190.160000pt;}
.yc6{bottom:192.666667pt;}
.y35{bottom:194.160000pt;}
.y115{bottom:195.173333pt;}
.y174{bottom:198.173333pt;}
.y11f{bottom:200.173333pt;}
.yf0{bottom:201.173333pt;}
.y14b{bottom:202.173333pt;}
.y4b{bottom:203.160000pt;}
.yb0{bottom:203.173333pt;}
.y129{bottom:205.173333pt;}
.y114{bottom:207.173333pt;}
.y34{bottom:207.200000pt;}
.y173{bottom:213.173333pt;}
.yc7{bottom:217.133333pt;}
.yef{bottom:217.200000pt;}
.y4a{bottom:218.200000pt;}
.yaf{bottom:219.200000pt;}
.y128{bottom:220.200000pt;}
.y113{bottom:223.200000pt;}
.y33{bottom:224.200000pt;}
.yb8{bottom:225.866667pt;}
.y172{bottom:229.200000pt;}
.y49{bottom:233.200000pt;}
.yae{bottom:235.200000pt;}
.y11c{bottom:235.240000pt;}
.y32{bottom:239.200000pt;}
.y171{bottom:244.200000pt;}
.y14a{bottom:248.200000pt;}
.yee{bottom:249.200000pt;}
.y48{bottom:249.240000pt;}
.yac{bottom:251.200000pt;}
.y31{bottom:254.226667pt;}
.y112{bottom:255.226667pt;}
.y170{bottom:259.240000pt;}
.y149{bottom:264.226667pt;}
.y47{bottom:264.240000pt;}
.yed{bottom:265.226667pt;}
.y127{bottom:266.226667pt;}
.yaa{bottom:267.226667pt;}
.y30{bottom:270.240000pt;}
.y111{bottom:271.226667pt;}
.y16f{bottom:275.226667pt;}
.y46{bottom:279.266667pt;}
.yec{bottom:281.226667pt;}
.y2f{bottom:285.266667pt;}
.ya9{bottom:287.226667pt;}
.y16e{bottom:290.266667pt;}
.y90{bottom:293.266667pt;}
.y45{bottom:294.266667pt;}
.y148{bottom:296.266667pt;}
.yeb{bottom:297.266667pt;}
.ya8{bottom:299.266667pt;}
.yc1{bottom:300.000000pt;}
.y2e{bottom:301.266667pt;}
.y110{bottom:303.266667pt;}
.y16d{bottom:305.266667pt;}
.y8f{bottom:308.266667pt;}
.y126{bottom:309.266667pt;}
.y44{bottom:310.266667pt;}
.y2d{bottom:316.293333pt;}
.y10f{bottom:319.266667pt;}
.y16c{bottom:321.266667pt;}
.y8e{bottom:323.266667pt;}
.y43{bottom:325.293333pt;}
.y143{bottom:327.293333pt;}
.yea{bottom:328.293333pt;}
.y2c{bottom:332.306667pt;}
.y10e{bottom:335.293333pt;}
.y16b{bottom:336.293333pt;}
.y8d{bottom:339.293333pt;}
.y42{bottom:340.293333pt;}
.ye9{bottom:344.293333pt;}
.y2b{bottom:347.306667pt;}
.y16a{bottom:351.293333pt;}
.y8c{bottom:354.293333pt;}
.y10d{bottom:355.306667pt;}
.y41{bottom:356.333333pt;}
.ye8{bottom:360.293333pt;}
.y2a{bottom:363.333333pt;}
.y10c{bottom:367.333333pt;}
.y8b{bottom:369.333333pt;}
.y11b{bottom:370.000000pt;}
.y40{bottom:371.333333pt;}
.ye7{bottom:376.333333pt;}
.y142{bottom:377.333333pt;}
.y29{bottom:378.333333pt;}
.y169{bottom:382.333333pt;}
.y8a{bottom:385.333333pt;}
.y3f{bottom:386.333333pt;}
.ye6{bottom:392.333333pt;}
.y28{bottom:393.373333pt;}
.y168{bottom:397.333333pt;}
.y89{bottom:400.333333pt;}
.y3e{bottom:402.373333pt;}
.y141{bottom:408.373333pt;}
.y27{bottom:409.373333pt;}
.y167{bottom:413.360000pt;}
.y88{bottom:415.373333pt;}
.y3d{bottom:417.373333pt;}
.ye5{bottom:423.360000pt;}
.y140{bottom:423.373333pt;}
.y26{bottom:424.373333pt;}
.y166{bottom:428.360000pt;}
.y87{bottom:431.360000pt;}
.y3c{bottom:432.400000pt;}
.y13f{bottom:438.400000pt;}
.ye4{bottom:439.400000pt;}
.y25{bottom:440.400000pt;}
.y165{bottom:443.400000pt;}
.y86{bottom:446.400000pt;}
.y3b{bottom:448.400000pt;}
.y13e{bottom:454.400000pt;}
.y24{bottom:455.400000pt;}
.y164{bottom:459.400000pt;}
.y85{bottom:461.400000pt;}
.y3a{bottom:463.400000pt;}
.y13d{bottom:469.400000pt;}
.y23{bottom:471.440000pt;}
.y163{bottom:474.400000pt;}
.y84{bottom:477.440000pt;}
.y39{bottom:478.426667pt;}
.y13c{bottom:484.426667pt;}
.y22{bottom:486.440000pt;}
.ye3{bottom:487.426667pt;}
.y162{bottom:489.440000pt;}
.y83{bottom:492.440000pt;}
.y38{bottom:494.426667pt;}
.y13b{bottom:500.440000pt;}
.ye2{bottom:503.426667pt;}
.y161{bottom:505.426667pt;}
.y82{bottom:507.440000pt;}
.y37{bottom:509.466667pt;}
.y21{bottom:510.466667pt;}
.y13a{bottom:515.466667pt;}
.ye1{bottom:519.466667pt;}
.y160{bottom:520.466667pt;}
.y81{bottom:523.466667pt;}
.y36{bottom:524.466667pt;}
.y20{bottom:526.466667pt;}
.y139{bottom:530.466667pt;}
.y15f{bottom:535.466667pt;}
.y80{bottom:538.466667pt;}
.y138{bottom:546.466667pt;}
.ya7{bottom:548.466667pt;}
.ye0{bottom:550.506667pt;}
.y15e{bottom:551.506667pt;}
.y7f{bottom:553.506667pt;}
.ya6{bottom:561.506667pt;}
.ydf{bottom:566.506667pt;}
.y7e{bottom:569.506667pt;}
.y137{bottom:576.506667pt;}
.ya5{bottom:577.506667pt;}
.y15d{bottom:581.506667pt;}
.yde{bottom:582.506667pt;}
.y7d{bottom:584.506667pt;}
.ya4{bottom:593.533333pt;}
.y15c{bottom:596.533333pt;}
.ydd{bottom:598.533333pt;}
.y7c{bottom:599.533333pt;}
.ya3{bottom:609.533333pt;}
.y15b{bottom:612.533333pt;}
.ydb{bottom:614.533333pt;}
.y7b{bottom:615.533333pt;}
.ya2{bottom:625.560000pt;}
.y15a{bottom:627.573333pt;}
.y7a{bottom:630.573333pt;}
.y10b{bottom:636.573333pt;}
.ya1{bottom:641.560000pt;}
.y136{bottom:642.573333pt;}
.yda{bottom:645.560000pt;}
.y79{bottom:645.573333pt;}
.y10a{bottom:651.573333pt;}
.y9f{bottom:657.560000pt;}
.y135{bottom:657.573333pt;}
.y159{bottom:658.560000pt;}
.y11e{bottom:660.573333pt;}
.y78{bottom:661.600000pt;}
.y109{bottom:667.600000pt;}
.y134{bottom:672.600000pt;}
.y9e{bottom:673.600000pt;}
.y77{bottom:676.600000pt;}
.y108{bottom:682.600000pt;}
.y133{bottom:688.600000pt;}
.y9d{bottom:689.600000pt;}
.y76{bottom:691.600000pt;}
.yd9{bottom:693.600000pt;}
.y1c{bottom:695.600000pt;}
.y107{bottom:697.600000pt;}
.y132{bottom:703.626667pt;}
.y158{bottom:704.626667pt;}
.y9c{bottom:705.626667pt;}
.y75{bottom:707.626667pt;}
.yd7{bottom:709.626667pt;}
.y106{bottom:713.626667pt;}
.y131{bottom:719.626667pt;}
.y74{bottom:722.626667pt;}
.yf{bottom:722.640000pt;}
.y9b{bottom:724.626667pt;}
.y105{bottom:725.626667pt;}
.y157{bottom:734.626667pt;}
.y130{bottom:735.666667pt;}
.y9a{bottom:736.666667pt;}
.y73{bottom:737.666667pt;}
.yb7{bottom:739.000000pt;}
.y104{bottom:741.666667pt;}
.y156{bottom:750.666667pt;}
.y12f{bottom:751.666667pt;}
.y72{bottom:753.666667pt;}
.yd6{bottom:755.666667pt;}
.y103{bottom:757.666667pt;}
.y155{bottom:765.666667pt;}
.y12e{bottom:767.666667pt;}
.y71{bottom:768.666667pt;}
.yd4{bottom:771.666667pt;}
.y102{bottom:773.706667pt;}
.y154{bottom:780.706667pt;}
.y70{bottom:783.706667pt;}
.yd3{bottom:787.706667pt;}
.y101{bottom:789.706667pt;}
.y153{bottom:796.706667pt;}
.y6f{bottom:799.706667pt;}
.yd2{bottom:803.693333pt;}
.yfe{bottom:805.706667pt;}
.y152{bottom:811.733333pt;}
.y125{bottom:813.733333pt;}
.y6e{bottom:814.733333pt;}
.yd1{bottom:819.733333pt;}
.y151{bottom:827.733333pt;}
.y6d{bottom:829.733333pt;}
.y150{bottom:844.733333pt;}
.y6c{bottom:845.733333pt;}
.yd0{bottom:851.773333pt;}
.y6b{bottom:860.773333pt;}
.ycf{bottom:867.773333pt;}
.y6a{bottom:875.773333pt;}
.yfd{bottom:883.800000pt;}
.y69{bottom:891.800000pt;}
.yce{bottom:898.800000pt;}
.yfc{bottom:899.800000pt;}
.y68{bottom:906.800000pt;}
.yfb{bottom:915.800000pt;}
.y67{bottom:921.840000pt;}
.yd{bottom:925.840000pt;}
.ycd{bottom:929.840000pt;}
.yfa{bottom:931.840000pt;}
.y66{bottom:937.840000pt;}
.ycb{bottom:945.840000pt;}
.yf9{bottom:947.840000pt;}
.y6{bottom:948.840000pt;}
.y65{bottom:952.840000pt;}
.yf8{bottom:963.866667pt;}
.y64{bottom:967.866667pt;}
.yc9{bottom:977.866667pt;}
.y63{bottom:983.866667pt;}
.yf6{bottom:994.893333pt;}
.y99{bottom:995.893333pt;}
.y62{bottom:998.893333pt;}
.y98{bottom:1008.893333pt;}
.y61{bottom:1013.893333pt;}
.y97{bottom:1024.893333pt;}
.y60{bottom:1029.893333pt;}
.y96{bottom:1040.933333pt;}
.y5f{bottom:1044.933333pt;}
.h2c{height:14.986667pt;}
.h20{height:15.000000pt;}
.h32{height:15.020000pt;}
.h21{height:15.033333pt;}
.h2d{height:15.986667pt;}
.h22{height:16.000000pt;}
.h23{height:16.033333pt;}
.hb{height:23.000000pt;}
.h39{height:25.136719pt;}
.h12{height:27.033333pt;}
.h2{height:29.033333pt;}
.h11{height:29.976563pt;}
.h30{height:30.000000pt;}
.h2b{height:30.020000pt;}
.h28{height:30.033333pt;}
.h2f{height:31.000000pt;}
.h29{height:31.020000pt;}
.h2a{height:31.033333pt;}
.h8{height:33.000000pt;}
.h1b{height:33.033333pt;}
.h1a{height:36.308594pt;}
.h19{height:36.689453pt;}
.h17{height:36.791016pt;}
.h1d{height:37.857422pt;}
.hd{height:38.289062pt;}
.h18{height:38.478516pt;}
.ha{height:39.000000pt;}
.h38{height:41.083385pt;}
.h1c{height:41.136719pt;}
.h37{height:41.190052pt;}
.h36{height:41.243385pt;}
.h35{height:41.296719pt;}
.h15{height:43.763672pt;}
.h16{height:45.474609pt;}
.h2e{height:46.033333pt;}
.h4{height:47.742188pt;}
.h25{height:47.874805pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.hf{height:51.720703pt;}
.h10{height:53.244141pt;}
.he{height:57.100000pt;}
.h31{height:61.033333pt;}
.h3a{height:61.066667pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h27{height:75.591797pt;}
.h1f{height:75.724414pt;}
.h33{height:77.053333pt;}
.h7{height:108.086667pt;}
.h1e{height:185.000000pt;}
.hc{height:203.186667pt;}
.h26{height:246.000000pt;}
.h24{height:254.000000pt;}
.h34{height:264.000000pt;}
.h14{height:536.466667pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w16{width:63.066667pt;}
.w2{width:65.100000pt;}
.w19{width:69.066667pt;}
.w17{width:69.086667pt;}
.w18{width:69.100000pt;}
.w1a{width:73.100000pt;}
.w1b{width:90.133333pt;}
.w13{width:125.166667pt;}
.w4{width:135.160000pt;}
.w12{width:145.200000pt;}
.w14{width:159.200000pt;}
.wf{width:184.240000pt;}
.w7{width:199.240000pt;}
.wa{width:215.266667pt;}
.wb{width:216.266667pt;}
.wc{width:216.306667pt;}
.we{width:231.293333pt;}
.wd{width:232.306667pt;}
.w10{width:414.000000pt;}
.w9{width:440.000000pt;}
.w8{width:451.600000pt;}
.w15{width:488.000000pt;}
.w5{width:515.666667pt;}
.w11{width:575.000000pt;}
.w1{width:585.733333pt;}
.w6{width:650.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x39{left:6.026667pt;}
.x4{left:7.000000pt;}
.x2{left:8.000000pt;}
.x27{left:9.700000pt;}
.x15{left:11.026667pt;}
.x26{left:15.766667pt;}
.x30{left:44.800000pt;}
.xd{left:51.066667pt;}
.x1{left:72.100000pt;}
.x1c{left:73.100000pt;}
.xc{left:77.100000pt;}
.x5{left:87.100000pt;}
.x16{left:96.133322pt;}
.x25{left:108.000000pt;}
.x37{left:120.166655pt;}
.x38{left:137.173333pt;}
.x31{left:138.159988pt;}
.x10{left:148.166667pt;}
.x11{left:149.166667pt;}
.x2e{left:152.000000pt;}
.x12{left:157.206667pt;}
.xe{left:159.193333pt;}
.x23{left:161.640000pt;}
.x1b{left:167.266667pt;}
.xf{left:173.206667pt;}
.x19{left:176.000000pt;}
.x2f{left:186.106667pt;}
.x1a{left:188.266667pt;}
.x13{left:190.233333pt;}
.x6{left:207.266667pt;}
.x28{left:225.733333pt;}
.x9{left:243.293333pt;}
.x29{left:256.133333pt;}
.x14{left:271.333333pt;}
.x3a{left:277.373333pt;}
.x33{left:287.359988pt;}
.x1d{left:289.373333pt;}
.x2a{left:290.373333pt;}
.x7{left:292.373333pt;}
.x21{left:306.400000pt;}
.x8{left:309.400000pt;}
.xb{left:324.406667pt;}
.x36{left:344.439988pt;}
.x3b{left:347.440000pt;}
.x24{left:356.373333pt;}
.xa{left:388.493333pt;}
.x18{left:397.506655pt;}
.x3c{left:421.533333pt;}
.x2b{left:436.573333pt;}
.x3d{left:491.640000pt;}
.x1e{left:505.640000pt;}
.x22{left:537.693333pt;}
.x3e{left:561.733333pt;}
.x2c{left:562.733333pt;}
.x1f{left:604.759988pt;}
.x17{left:617.799988pt;}
.x35{left:625.799988pt;}
.x34{left:629.799988pt;}
.x3f{left:631.800000pt;}
.x2d{left:641.839988pt;}
.x3{left:657.840000pt;}
.x32{left:677.866655pt;}
.x20{left:685.866655pt;}
}




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