
    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_76cb679f0b6060b0321ea05a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_14657d06d30610a51387fbda.woff')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_a9c7ccdd0fe4e2a3702e4e28.woff')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_e3ffe35bcee680cbec025b76.woff')format("woff");}.ff4{font-family:ff4;line-height:0.774000;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_f8cc229ca504cd7026ae94ed.woff')format("woff");}.ff5{font-family:ff5;line-height:1.005000;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_392e7d98c125278d59df3725.woff')format("woff");}.ff6{font-family:ff6;line-height:0.906000;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_aec3e3c6453e62d14da3515c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.006000;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_aa3a17e6261af797c5912327.woff')format("woff");}.ff8{font-family:ff8;line-height:1.007000;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_b821363a4b82331c0da7b4a6.woff')format("woff");}.ff9{font-family:ff9;line-height:1.005000;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_3d76dc1db1746450c77cf56a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.842000;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_93149c43222ba16692169501.woff')format("woff");}.ffb{font-family:ffb;line-height:0.908203;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_648d057d001c510b40ce43e7.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666000;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_3f199e023d9418a13bb3542c.woff')format("woff");}.ffd{font-family:ffd;line-height:1.005000;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_93b16cd187b77e663a017974.woff')format("woff");}.ffe{font-family:ffe;line-height:1.005000;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_a2efb4ada609fb7f8578bfde.woff')format("woff");}.fff{font-family:fff;line-height:1.005000;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_5a6e9d40dd4329173c757f48.woff')format("woff");}.ff10{font-family:ff10;line-height:0.954000;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_e8a9c3bd1b1019f6891307b7.woff')format("woff");}.ff11{font-family:ff11;line-height:1.005000;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_5d584edcc6ed455115446239.woff')format("woff");}.ff12{font-family:ff12;line-height:1.005000;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_721091db5775952562007424.woff')format("woff");}.ff13{font-family:ff13;line-height:1.000000;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);}
.m2{transform:matrix(0.250506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250506,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);}
.v6{vertical-align:-41.496000px;}
.v5{vertical-align:-17.982000px;}
.v2{vertical-align:-16.020000px;}
.v7{vertical-align:-11.988000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.820000px;}
.v4{vertical-align:17.982000px;}
.v1{vertical-align:21.600000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.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;}
}
.ws7{word-spacing:-14.820000px;}
.wse{word-spacing:-14.352000px;}
.ws0{word-spacing:-14.040000px;}
.wsd{word-spacing:-13.500000px;}
.ws2{word-spacing:-12.480000px;}
.ws6{word-spacing:-11.700000px;}
.ws1{word-spacing:-10.405200px;}
.wsf{word-spacing:-9.360000px;}
.ws8{word-spacing:-7.870500px;}
.ws11{word-spacing:-5.456880px;}
.ws10{word-spacing:-0.036000px;}
.ws5{word-spacing:0.000000px;}
.wsb{word-spacing:54.419040px;}
.wsc{word-spacing:85.203144px;}
.wsa{word-spacing:90.502776px;}
.ws9{word-spacing:187.052112px;}
.ws4{word-spacing:341.964000px;}
.ws3{word-spacing:387.564000px;}
._11{margin-left:-14.166600px;}
._a{margin-left:-12.804600px;}
._1c{margin-left:-7.182000px;}
._22{margin-left:-6.048000px;}
._19{margin-left:-4.752000px;}
._13{margin-left:-3.030000px;}
._4{margin-left:-1.140000px;}
._1b{width:1.013400px;}
._1a{width:5.130000px;}
._12{width:6.858000px;}
._1f{width:8.262000px;}
._18{width:9.612000px;}
._16{width:11.502000px;}
._f{width:14.742000px;}
._e{width:16.038000px;}
._b{width:17.064000px;}
._6{width:18.522000px;}
._5{width:20.304000px;}
._7{width:21.492000px;}
._1{width:22.524000px;}
._24{width:23.814000px;}
._15{width:25.428000px;}
._14{width:27.114000px;}
._10{width:28.836000px;}
._8{width:30.834000px;}
._9{width:31.914000px;}
._d{width:33.642000px;}
._25{width:34.722000px;}
._1d{width:35.856000px;}
._20{width:37.152000px;}
._26{width:38.232000px;}
._c{width:39.258000px;}
._1e{width:40.560000px;}
._2b{width:42.066000px;}
._2d{width:43.326000px;}
._17{width:46.008000px;}
._2e{width:47.040000px;}
._23{width:48.060000px;}
._21{width:49.248000px;}
._2f{width:62.460000px;}
._29{width:67.225077px;}
._2{width:72.000000px;}
._2c{width:73.782000px;}
._0{width:81.018000px;}
._28{width:107.824392px;}
._27{width:115.240320px;}
._2a{width:154.080576px;}
._30{width:175.786923px;}
._3{width:244.656000px;}
.fc7{color:transparent;}
.fc6{color:rgb(0,68,148);}
.fc1{color:rgb(0,68,148);}
.fc5{color:rgb(35,31,32);}
.fc4{color:rgb(35,31,32);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(51,51,51);}
.fs11{font-size:20.988000px;}
.fsd{font-size:31.482000px;}
.fs8{font-size:36.000000px;}
.fs4{font-size:40.020000px;}
.fs10{font-size:41.496000px;}
.fsa{font-size:42.000000px;}
.fsb{font-size:45.000000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:49.500000px;}
.fsf{font-size:53.352000px;}
.fs0{font-size:54.000000px;}
.fse{font-size:55.200000px;}
.fsc{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs13{font-size:63.000000px;}
.fs3{font-size:78.000000px;}
.fs9{font-size:81.000000px;}
.fs6{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs12{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yde{bottom:4.446450px;}
.ydf{bottom:11.347050px;}
.ydd{bottom:14.820450px;}
.y72{bottom:16.725000px;}
.ydc{bottom:23.527200px;}
.y32{bottom:45.135000px;}
.y73{bottom:46.140000px;}
.y34{bottom:61.500000px;}
.y33{bottom:70.185000px;}
.yf2{bottom:101.436300px;}
.y1a9{bottom:119.835000px;}
.y113{bottom:122.674800px;}
.y12f{bottom:123.120300px;}
.y1c9{bottom:136.530000px;}
.y60{bottom:136.950000px;}
.y25{bottom:137.175000px;}
.ybb{bottom:138.843000px;}
.y112{bottom:139.174800px;}
.y1a8{bottom:139.335000px;}
.y12e{bottom:148.620300px;}
.y5f{bottom:154.500000px;}
.y111{bottom:155.674800px;}
.y1c8{bottom:156.030000px;}
.y1a7{bottom:158.835000px;}
.y12d{bottom:165.120300px;}
.y24{bottom:170.655000px;}
.y5e{bottom:172.050000px;}
.y110{bottom:172.174800px;}
.y1c7{bottom:175.530000px;}
.y1a6{bottom:178.335000px;}
.y12c{bottom:181.620300px;}
.y10f{bottom:188.674800px;}
.y5d{bottom:189.600000px;}
.y23{bottom:190.635000px;}
.y1c6{bottom:195.030000px;}
.y1a5{bottom:197.835000px;}
.y10e{bottom:205.174800px;}
.y5c{bottom:207.150000px;}
.y1c5{bottom:214.530000px;}
.y1a4{bottom:217.335000px;}
.y12b{bottom:217.620300px;}
.y10d{bottom:221.674800px;}
.y22{bottom:224.115000px;}
.y5b{bottom:224.700000px;}
.y1c4{bottom:234.030000px;}
.y12a{bottom:234.120300px;}
.y1a3{bottom:236.835000px;}
.y10c{bottom:238.174800px;}
.y5a{bottom:242.250000px;}
.y21{bottom:244.095000px;}
.y129{bottom:250.620300px;}
.y1c3{bottom:253.530000px;}
.y10b{bottom:254.674800px;}
.y1a2{bottom:256.335000px;}
.y59{bottom:259.800000px;}
.y1c2{bottom:273.030000px;}
.y1e6{bottom:274.410000px;}
.y1a1{bottom:275.835000px;}
.y58{bottom:277.350000px;}
.y20{bottom:277.575000px;}
.y128{bottom:285.120300px;}
.y10a{bottom:289.174800px;}
.y1c1{bottom:292.530000px;}
.y57{bottom:294.900000px;}
.y1a0{bottom:295.335000px;}
.y1e5{bottom:296.610000px;}
.y127{bottom:301.620300px;}
.y109{bottom:305.674800px;}
.y1f{bottom:311.055000px;}
.y1c0{bottom:312.030000px;}
.y56{bottom:312.450000px;}
.y19f{bottom:314.835000px;}
.y108{bottom:322.174800px;}
.y55{bottom:330.000000px;}
.y1e4{bottom:333.810000px;}
.y19e{bottom:334.335000px;}
.y126{bottom:336.120300px;}
.y107{bottom:338.674800px;}
.y163{bottom:339.502650px;}
.y182{bottom:340.040550px;}
.y54{bottom:347.550000px;}
.y1e{bottom:347.775000px;}
.y1bf{bottom:347.880000px;}
.y181{bottom:350.840550px;}
.y125{bottom:352.620300px;}
.y162{bottom:353.302500px;}
.y19d{bottom:353.835000px;}
.y106{bottom:355.174800px;}
.y180{bottom:361.640550px;}
.y161{bottom:364.102500px;}
.y53{bottom:365.100000px;}
.y124{bottom:369.120300px;}
.y1e3{bottom:371.010000px;}
.y1be{bottom:371.235000px;}
.y105{bottom:371.674800px;}
.y19c{bottom:373.335000px;}
.y160{bottom:374.902650px;}
.y17f{bottom:375.740550px;}
.y52{bottom:382.650000px;}
.y1d{bottom:384.495000px;}
.y17e{bottom:386.540550px;}
.y104{bottom:388.174800px;}
.y15f{bottom:388.702650px;}
.y19b{bottom:392.835000px;}
.y17d{bottom:397.340550px;}
.y15e{bottom:399.502650px;}
.y51{bottom:400.200000px;}
.y123{bottom:403.620300px;}
.y1c{bottom:404.475000px;}
.y103{bottom:404.674800px;}
.y30{bottom:404.730000px;}
.y1e2{bottom:408.210000px;}
.y15d{bottom:410.302500px;}
.y17c{bottom:411.440550px;}
.y19a{bottom:412.335000px;}
.y50{bottom:417.750000px;}
.y102{bottom:421.174800px;}
.y17b{bottom:422.240550px;}
.y15c{bottom:424.102500px;}
.y1b{bottom:424.455000px;}
.y1bd{bottom:426.090000px;}
.y2f{bottom:428.265000px;}
.y1e1{bottom:430.410000px;}
.y199{bottom:431.835000px;}
.y17a{bottom:433.040550px;}
.y15b{bottom:434.902650px;}
.y4f{bottom:435.300000px;}
.y101{bottom:437.674800px;}
.y122{bottom:438.120300px;}
.y1a{bottom:444.435000px;}
.y1bc{bottom:445.590000px;}
.y15a{bottom:445.702650px;}
.y179{bottom:447.140550px;}
.yba{bottom:451.105950px;}
.y97{bottom:451.230000px;}
.y198{bottom:451.335000px;}
.y4e{bottom:452.850000px;}
.y100{bottom:454.174800px;}
.y121{bottom:454.620300px;}
.y178{bottom:457.940550px;}
.y2e{bottom:458.325000px;}
.y159{bottom:459.502650px;}
.y19{bottom:464.415000px;}
.y1bb{bottom:465.090000px;}
.yb9{bottom:467.605950px;}
.y1e0{bottom:467.610000px;}
.y96{bottom:467.730000px;}
.y177{bottom:468.740550px;}
.y158{bottom:470.302500px;}
.y4d{bottom:470.400000px;}
.yff{bottom:470.674800px;}
.y197{bottom:470.835000px;}
.y120{bottom:471.120300px;}
.y176{bottom:479.540550px;}
.y157{bottom:481.102500px;}
.y2d{bottom:481.860000px;}
.yb8{bottom:484.105950px;}
.y95{bottom:484.230000px;}
.y18{bottom:484.395000px;}
.yd9{bottom:484.855950px;}
.yfe{bottom:487.174800px;}
.y11f{bottom:487.620300px;}
.y4c{bottom:487.950000px;}
.y1df{bottom:489.810000px;}
.y196{bottom:490.335000px;}
.y175{bottom:490.340550px;}
.y156{bottom:494.902650px;}
.y6e{bottom:496.365000px;}
.yb7{bottom:500.605950px;}
.y94{bottom:500.730000px;}
.yd8{bottom:501.355950px;}
.yfd{bottom:503.674800px;}
.y11e{bottom:504.120300px;}
.y17{bottom:504.375000px;}
.y174{bottom:504.440550px;}
.y4b{bottom:505.500000px;}
.y155{bottom:505.702650px;}
.y1ba{bottom:505.935000px;}
.y195{bottom:509.835000px;}
.y2c{bottom:513.705000px;}
.y173{bottom:515.240550px;}
.y6d{bottom:516.390000px;}
.y154{bottom:516.502650px;}
.yb6{bottom:517.105950px;}
.y93{bottom:517.230000px;}
.yd7{bottom:517.855950px;}
.yfc{bottom:520.174800px;}
.y16{bottom:524.355000px;}
.y172{bottom:526.040550px;}
.y1de{bottom:527.010000px;}
.y194{bottom:529.335000px;}
.y153{bottom:530.302500px;}
.y6c{bottom:531.015000px;}
.yb5{bottom:533.605950px;}
.y92{bottom:533.730000px;}
.yd6{bottom:534.355950px;}
.y171{bottom:536.840550px;}
.y2b{bottom:537.240000px;}
.y4a{bottom:537.765000px;}
.y152{bottom:541.102500px;}
.y15{bottom:544.335000px;}
.y6b{bottom:545.640000px;}
.y193{bottom:548.835000px;}
.y1dd{bottom:549.210000px;}
.yb4{bottom:550.105950px;}
.y91{bottom:550.230000px;}
.yd5{bottom:550.855950px;}
.y170{bottom:550.940550px;}
.y151{bottom:551.902650px;}
.yfb{bottom:554.674800px;}
.y11d{bottom:556.620300px;}
.y49{bottom:557.745000px;}
.y16f{bottom:561.740550px;}
.y150{bottom:562.702650px;}
.y6a{bottom:565.665000px;}
.yb3{bottom:566.605950px;}
.y90{bottom:566.730000px;}
.yd4{bottom:567.355950px;}
.y192{bottom:568.335000px;}
.yfa{bottom:571.174800px;}
.y16e{bottom:572.540550px;}
.y11c{bottom:573.120300px;}
.y14f{bottom:576.502650px;}
.y2a{bottom:577.320000px;}
.y48{bottom:577.725000px;}
.y69{bottom:580.290000px;}
.y14{bottom:581.055000px;}
.yb2{bottom:583.105950px;}
.y16d{bottom:583.340550px;}
.y1b9{bottom:586.410000px;}
.y14e{bottom:587.302500px;}
.yf9{bottom:587.674800px;}
.y191{bottom:587.835000px;}
.y11b{bottom:589.620300px;}
.y29{bottom:594.075000px;}
.y16c{bottom:597.440550px;}
.y47{bottom:597.705000px;}
.y14d{bottom:598.102500px;}
.yf1{bottom:598.855950px;}
.yb1{bottom:599.605950px;}
.y68{bottom:600.315000px;}
.y8f{bottom:601.230000px;}
.yd3{bottom:601.855950px;}
.yf8{bottom:604.174800px;}
.y11a{bottom:606.120300px;}
.y190{bottom:607.335000px;}
.y16b{bottom:608.240550px;}
.y1b8{bottom:608.610000px;}
.y14c{bottom:608.902650px;}
.y67{bottom:614.940000px;}
.yf0{bottom:615.355950px;}
.yb0{bottom:616.105950px;}
.y13{bottom:616.560000px;}
.y46{bottom:617.685000px;}
.y8e{bottom:617.730000px;}
.yd2{bottom:618.355950px;}
.y14b{bottom:619.702500px;}
.yf7{bottom:620.674800px;}
.y16a{bottom:622.340550px;}
.y119{bottom:622.620300px;}
.y18f{bottom:626.835000px;}
.y66{bottom:629.565000px;}
.yef{bottom:631.855950px;}
.yaf{bottom:632.605950px;}
.y169{bottom:633.140550px;}
.y14a{bottom:633.502650px;}
.y12{bottom:634.110000px;}
.y8d{bottom:634.230000px;}
.yd1{bottom:634.855950px;}
.y28{bottom:637.110000px;}
.yf6{bottom:637.174800px;}
.y45{bottom:637.665000px;}
.y118{bottom:639.120300px;}
.y168{bottom:643.940550px;}
.y149{bottom:644.302650px;}
.y1b7{bottom:645.810000px;}
.y18e{bottom:646.335000px;}
.yee{bottom:648.355950px;}
.yae{bottom:649.105950px;}
.y65{bottom:649.590000px;}
.y8c{bottom:650.730000px;}
.yd0{bottom:651.355950px;}
.y167{bottom:654.740550px;}
.y148{bottom:655.102500px;}
.y117{bottom:655.620300px;}
.y44{bottom:657.645000px;}
.yed{bottom:664.855950px;}
.yad{bottom:665.605950px;}
.y18d{bottom:665.835000px;}
.y8b{bottom:667.230000px;}
.ycf{bottom:667.855950px;}
.y1dc{bottom:668.010000px;}
.y10{bottom:668.415000px;}
.y166{bottom:668.840550px;}
.y147{bottom:668.902650px;}
.y64{bottom:669.615000px;}
.yf5{bottom:671.674800px;}
.y27{bottom:671.895000px;}
.y116{bottom:672.120300px;}
.y165{bottom:679.640550px;}
.y146{bottom:679.702500px;}
.yec{bottom:681.355950px;}
.yac{bottom:682.105950px;}
.y1b6{bottom:683.010000px;}
.yf{bottom:683.415000px;}
.y8a{bottom:683.730000px;}
.y63{bottom:684.240000px;}
.yce{bottom:684.355950px;}
.yf4{bottom:688.174800px;}
.y115{bottom:688.620300px;}
.y164{bottom:690.440550px;}
.y145{bottom:690.502650px;}
.y43{bottom:694.365000px;}
.yeb{bottom:697.855950px;}
.y62{bottom:698.865000px;}
.y89{bottom:700.230000px;}
.ycd{bottom:700.855950px;}
.y18c{bottom:701.685000px;}
.ye{bottom:703.815000px;}
.yf3{bottom:704.674800px;}
.y114{bottom:705.120300px;}
.y1db{bottom:705.210000px;}
.y26{bottom:713.505000px;}
.yea{bottom:714.355950px;}
.y11{bottom:716.280000px;}
.y88{bottom:716.730000px;}
.ycc{bottom:717.355950px;}
.yab{bottom:718.105950px;}
.yd{bottom:718.815000px;}
.y61{bottom:718.890000px;}
.y1b5{bottom:720.210000px;}
.y18b{bottom:725.040000px;}
.y1da{bottom:727.410000px;}
.y144{bottom:728.264550px;}
.ye9{bottom:730.855950px;}
.y42{bottom:731.085000px;}
.y87{bottom:733.230000px;}
.ycb{bottom:733.855950px;}
.yaa{bottom:734.605950px;}
.y1b4{bottom:742.410000px;}
.ye8{bottom:747.355950px;}
.y1d9{bottom:748.260000px;}
.y86{bottom:749.730000px;}
.yca{bottom:750.355950px;}
.y41{bottom:751.065000px;}
.ya9{bottom:751.105950px;}
.y85{bottom:766.230000px;}
.yc9{bottom:766.855950px;}
.ya8{bottom:767.605950px;}
.y1d8{bottom:767.760000px;}
.y40{bottom:771.045000px;}
.yc{bottom:777.645000px;}
.y1b3{bottom:779.610000px;}
.y18a{bottom:779.895000px;}
.y74{bottom:781.050000px;}
.y130{bottom:781.760250px;}
.ye7{bottom:781.855950px;}
.y84{bottom:782.729850px;}
.yc8{bottom:783.355950px;}
.ya7{bottom:784.105950px;}
.y1d7{bottom:787.260000px;}
.y3f{bottom:791.025000px;}
.yb{bottom:794.445000px;}
.ye6{bottom:798.355950px;}
.y189{bottom:799.395000px;}
.ya6{bottom:800.605950px;}
.y1b2{bottom:801.810000px;}
.y1d6{bottom:806.760000px;}
.y3e{bottom:811.005000px;}
.ya{bottom:811.245000px;}
.ye5{bottom:814.855950px;}
.ya5{bottom:817.105950px;}
.y83{bottom:817.229850px;}
.yc7{bottom:817.855950px;}
.y188{bottom:818.895000px;}
.y1d5{bottom:826.260000px;}
.y9{bottom:828.045000px;}
.y3d{bottom:830.985000px;}
.ye4{bottom:831.355950px;}
.ya4{bottom:833.605950px;}
.y82{bottom:833.729850px;}
.yc6{bottom:834.355950px;}
.y1b1{bottom:839.010000px;}
.y8{bottom:840.840000px;}
.y1d4{bottom:845.760000px;}
.ye3{bottom:847.855950px;}
.y143{bottom:849.205950px;}
.y138{bottom:849.355950px;}
.ya3{bottom:850.105950px;}
.y81{bottom:850.229850px;}
.yc5{bottom:850.855950px;}
.y187{bottom:859.740000px;}
.y1b0{bottom:861.210000px;}
.y7{bottom:861.645000px;}
.ye2{bottom:864.355950px;}
.y1d3{bottom:865.260000px;}
.y142{bottom:865.705950px;}
.y137{bottom:865.855950px;}
.ya2{bottom:866.605950px;}
.y80{bottom:866.729850px;}
.yc4{bottom:867.355950px;}
.y3c{bottom:867.705000px;}
.ye1{bottom:880.855950px;}
.y141{bottom:882.205950px;}
.ya1{bottom:883.105950px;}
.y7f{bottom:883.230000px;}
.yc3{bottom:883.855950px;}
.y1d2{bottom:884.760000px;}
.y71{bottom:885.525000px;}
.y6{bottom:888.180000px;}
.y186{bottom:891.570000px;}
.y136{bottom:894.355950px;}
.y1af{bottom:898.410000px;}
.y140{bottom:898.706100px;}
.ya0{bottom:899.605950px;}
.y7e{bottom:899.730000px;}
.yc2{bottom:900.355950px;}
.y1d1{bottom:904.260000px;}
.y3b{bottom:904.425000px;}
.y135{bottom:910.855950px;}
.y5{bottom:915.165000px;}
.y13f{bottom:915.206100px;}
.ye0{bottom:915.355950px;}
.y9f{bottom:916.105950px;}
.y7d{bottom:916.230000px;}
.yc1{bottom:916.855950px;}
.y1ae{bottom:920.610000px;}
.y1d0{bottom:923.760000px;}
.y3a{bottom:924.405000px;}
.y9e{bottom:932.605950px;}
.y7c{bottom:932.730000px;}
.yc0{bottom:933.355950px;}
.ydb{bottom:937.099500px;}
.y134{bottom:939.355950px;}
.y185{bottom:941.145000px;}
.y1cf{bottom:943.260000px;}
.y39{bottom:944.385000px;}
.y4{bottom:946.620000px;}
.y13e{bottom:948.206100px;}
.y9d{bottom:949.105950px;}
.y7b{bottom:949.230000px;}
.ybf{bottom:949.855950px;}
.y1ad{bottom:957.810000px;}
.y1ce{bottom:962.760000px;}
.y9c{bottom:965.605950px;}
.y7a{bottom:965.730000px;}
.ybe{bottom:966.355950px;}
.y133{bottom:967.855950px;}
.y13d{bottom:972.206100px;}
.y3{bottom:973.470000px;}
.y38{bottom:977.865000px;}
.y1ac{bottom:980.010000px;}
.y79{bottom:982.230000px;}
.y1cd{bottom:982.260000px;}
.ybd{bottom:982.855950px;}
.yda{bottom:984.355950px;}
.y13c{bottom:988.706100px;}
.y37{bottom:997.845000px;}
.y78{bottom:998.730000px;}
.ybc{bottom:999.355950px;}
.y9b{bottom:1000.855950px;}
.y1cc{bottom:1001.760000px;}
.y70{bottom:1003.740000px;}
.y13b{bottom:1005.206100px;}
.y184{bottom:1006.350000px;}
.y132{bottom:1012.855950px;}
.y77{bottom:1015.230000px;}
.y1ab{bottom:1017.210000px;}
.y9a{bottom:1017.355950px;}
.y2{bottom:1020.540000px;}
.y1cb{bottom:1021.260000px;}
.y6f{bottom:1021.290000px;}
.y131{bottom:1029.355950px;}
.y36{bottom:1031.325000px;}
.y76{bottom:1031.730000px;}
.y13a{bottom:1033.706100px;}
.y99{bottom:1033.855950px;}
.y1aa{bottom:1039.410000px;}
.y1ca{bottom:1040.760000px;}
.y75{bottom:1048.230000px;}
.y139{bottom:1050.206100px;}
.y98{bottom:1050.355950px;}
.y183{bottom:1052.055000px;}
.y1{bottom:1055.715000px;}
.y31{bottom:1080.000000px;}
.y35{bottom:1123.500000px;}
.h19{height:27.540000px;}
.h16{height:28.812164px;}
.h5{height:30.615300px;}
.hc{height:32.130000px;}
.hd{height:34.425000px;}
.h18{height:35.532432px;}
.h15{height:36.065952px;}
.h6{height:36.720000px;}
.h17{height:37.044211px;}
.h14{height:37.050000px;}
.h11{height:37.152000px;}
.h8{height:37.867500px;}
.h10{height:39.641616px;}
.h12{height:39.642216px;}
.h1{height:41.310000px;}
.h13{height:42.228000px;}
.h9{height:42.360000px;}
.hf{height:43.605000px;}
.h3{height:45.900000px;}
.h1b{height:48.195000px;}
.hb{height:61.965000px;}
.h4{height:62.910000px;}
.h7{height:64.260000px;}
.h2{height:73.440000px;}
.h1a{height:82.620000px;}
.he{height:93.225000px;}
.ha{height:108.000000px;}
.h0{height:1188.000000px;}
.w5{width:141.075000px;}
.w2{width:447.120000px;}
.w1{width:745.200000px;}
.w0{width:918.000000px;}
.w3{width:918.424500px;}
.w4{width:918.750000px;}
.x0{left:0.000000px;}
.x15{left:1.530900px;}
.x13{left:9.095100px;}
.x16{left:27.379200px;}
.x12{left:78.194100px;}
.xe{left:85.039350px;}
.x1{left:86.400000px;}
.xc{left:90.000000px;}
.xd{left:93.900000px;}
.xb{left:97.755000px;}
.x1c{left:98.775000px;}
.x19{left:109.039350px;}
.x1a{left:110.551350px;}
.x14{left:117.778500px;}
.x2{left:118.800000px;}
.x11{left:125.946000px;}
.x1d{left:137.025000px;}
.x8{left:370.650000px;}
.xf{left:471.968550px;}
.x17{left:495.968550px;}
.x1b{left:497.480550px;}
.x18{left:512.303400px;}
.xa{left:532.410000px;}
.x3{left:550.095000px;}
.x5{left:551.715000px;}
.x7{left:554.895000px;}
.x6{left:568.095000px;}
.x10{left:586.719000px;}
.x4{left:667.605000px;}
.x1e{left:766.680000px;}
.x9{left:772.680000px;}
@media print{
.v6{vertical-align:-36.885333pt;}
.v5{vertical-align:-15.984000pt;}
.v2{vertical-align:-14.240000pt;}
.v7{vertical-align:-10.656000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.173333pt;}
.v4{vertical-align:15.984000pt;}
.v1{vertical-align:19.200000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ws7{word-spacing:-13.173333pt;}
.wse{word-spacing:-12.757333pt;}
.ws0{word-spacing:-12.480000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.093333pt;}
.ws6{word-spacing:-10.400000pt;}
.ws1{word-spacing:-9.249067pt;}
.wsf{word-spacing:-8.320000pt;}
.ws8{word-spacing:-6.996000pt;}
.ws11{word-spacing:-4.850560pt;}
.ws10{word-spacing:-0.032000pt;}
.ws5{word-spacing:0.000000pt;}
.wsb{word-spacing:48.372480pt;}
.wsc{word-spacing:75.736128pt;}
.wsa{word-spacing:80.446912pt;}
.ws9{word-spacing:166.268544pt;}
.ws4{word-spacing:303.968000pt;}
.ws3{word-spacing:344.501333pt;}
._11{margin-left:-12.592533pt;}
._a{margin-left:-11.381867pt;}
._1c{margin-left:-6.384000pt;}
._22{margin-left:-5.376000pt;}
._19{margin-left:-4.224000pt;}
._13{margin-left:-2.693333pt;}
._4{margin-left:-1.013333pt;}
._1b{width:0.900800pt;}
._1a{width:4.560000pt;}
._12{width:6.096000pt;}
._1f{width:7.344000pt;}
._18{width:8.544000pt;}
._16{width:10.224000pt;}
._f{width:13.104000pt;}
._e{width:14.256000pt;}
._b{width:15.168000pt;}
._6{width:16.464000pt;}
._5{width:18.048000pt;}
._7{width:19.104000pt;}
._1{width:20.021333pt;}
._24{width:21.168000pt;}
._15{width:22.602667pt;}
._14{width:24.101333pt;}
._10{width:25.632000pt;}
._8{width:27.408000pt;}
._9{width:28.368000pt;}
._d{width:29.904000pt;}
._25{width:30.864000pt;}
._1d{width:31.872000pt;}
._20{width:33.024000pt;}
._26{width:33.984000pt;}
._c{width:34.896000pt;}
._1e{width:36.053333pt;}
._2b{width:37.392000pt;}
._2d{width:38.512000pt;}
._17{width:40.896000pt;}
._2e{width:41.813333pt;}
._23{width:42.720000pt;}
._21{width:43.776000pt;}
._2f{width:55.520000pt;}
._29{width:59.755624pt;}
._2{width:64.000000pt;}
._2c{width:65.584000pt;}
._0{width:72.016000pt;}
._28{width:95.843904pt;}
._27{width:102.435840pt;}
._2a{width:136.960512pt;}
._30{width:156.255043pt;}
._3{width:217.472000pt;}
.fs11{font-size:18.656000pt;}
.fsd{font-size:27.984000pt;}
.fs8{font-size:32.000000pt;}
.fs4{font-size:35.573333pt;}
.fs10{font-size:36.885333pt;}
.fsa{font-size:37.333333pt;}
.fsb{font-size:40.000000pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:44.000000pt;}
.fsf{font-size:47.424000pt;}
.fs0{font-size:48.000000pt;}
.fse{font-size:49.066667pt;}
.fsc{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs13{font-size:56.000000pt;}
.fs3{font-size:69.333333pt;}
.fs9{font-size:72.000000pt;}
.fs6{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs12{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:3.952400pt;}
.ydf{bottom:10.086267pt;}
.ydd{bottom:13.173733pt;}
.y72{bottom:14.866667pt;}
.ydc{bottom:20.913067pt;}
.y32{bottom:40.120000pt;}
.y73{bottom:41.013333pt;}
.y34{bottom:54.666667pt;}
.y33{bottom:62.386667pt;}
.yf2{bottom:90.165600pt;}
.y1a9{bottom:106.520000pt;}
.y113{bottom:109.044267pt;}
.y12f{bottom:109.440267pt;}
.y1c9{bottom:121.360000pt;}
.y60{bottom:121.733333pt;}
.y25{bottom:121.933333pt;}
.ybb{bottom:123.416000pt;}
.y112{bottom:123.710933pt;}
.y1a8{bottom:123.853333pt;}
.y12e{bottom:132.106933pt;}
.y5f{bottom:137.333333pt;}
.y111{bottom:138.377600pt;}
.y1c8{bottom:138.693333pt;}
.y1a7{bottom:141.186667pt;}
.y12d{bottom:146.773600pt;}
.y24{bottom:151.693333pt;}
.y5e{bottom:152.933333pt;}
.y110{bottom:153.044267pt;}
.y1c7{bottom:156.026667pt;}
.y1a6{bottom:158.520000pt;}
.y12c{bottom:161.440267pt;}
.y10f{bottom:167.710933pt;}
.y5d{bottom:168.533333pt;}
.y23{bottom:169.453333pt;}
.y1c6{bottom:173.360000pt;}
.y1a5{bottom:175.853333pt;}
.y10e{bottom:182.377600pt;}
.y5c{bottom:184.133333pt;}
.y1c5{bottom:190.693333pt;}
.y1a4{bottom:193.186667pt;}
.y12b{bottom:193.440267pt;}
.y10d{bottom:197.044267pt;}
.y22{bottom:199.213333pt;}
.y5b{bottom:199.733333pt;}
.y1c4{bottom:208.026667pt;}
.y12a{bottom:208.106933pt;}
.y1a3{bottom:210.520000pt;}
.y10c{bottom:211.710933pt;}
.y5a{bottom:215.333333pt;}
.y21{bottom:216.973333pt;}
.y129{bottom:222.773600pt;}
.y1c3{bottom:225.360000pt;}
.y10b{bottom:226.377600pt;}
.y1a2{bottom:227.853333pt;}
.y59{bottom:230.933333pt;}
.y1c2{bottom:242.693333pt;}
.y1e6{bottom:243.920000pt;}
.y1a1{bottom:245.186667pt;}
.y58{bottom:246.533333pt;}
.y20{bottom:246.733333pt;}
.y128{bottom:253.440267pt;}
.y10a{bottom:257.044267pt;}
.y1c1{bottom:260.026667pt;}
.y57{bottom:262.133333pt;}
.y1a0{bottom:262.520000pt;}
.y1e5{bottom:263.653333pt;}
.y127{bottom:268.106933pt;}
.y109{bottom:271.710933pt;}
.y1f{bottom:276.493333pt;}
.y1c0{bottom:277.360000pt;}
.y56{bottom:277.733333pt;}
.y19f{bottom:279.853333pt;}
.y108{bottom:286.377600pt;}
.y55{bottom:293.333333pt;}
.y1e4{bottom:296.720000pt;}
.y19e{bottom:297.186667pt;}
.y126{bottom:298.773600pt;}
.y107{bottom:301.044267pt;}
.y163{bottom:301.780133pt;}
.y182{bottom:302.258267pt;}
.y54{bottom:308.933333pt;}
.y1e{bottom:309.133333pt;}
.y1bf{bottom:309.226667pt;}
.y181{bottom:311.858267pt;}
.y125{bottom:313.440267pt;}
.y162{bottom:314.046667pt;}
.y19d{bottom:314.520000pt;}
.y106{bottom:315.710933pt;}
.y180{bottom:321.458267pt;}
.y161{bottom:323.646667pt;}
.y53{bottom:324.533333pt;}
.y124{bottom:328.106933pt;}
.y1e3{bottom:329.786667pt;}
.y1be{bottom:329.986667pt;}
.y105{bottom:330.377600pt;}
.y19c{bottom:331.853333pt;}
.y160{bottom:333.246800pt;}
.y17f{bottom:333.991600pt;}
.y52{bottom:340.133333pt;}
.y1d{bottom:341.773333pt;}
.y17e{bottom:343.591600pt;}
.y104{bottom:345.044267pt;}
.y15f{bottom:345.513467pt;}
.y19b{bottom:349.186667pt;}
.y17d{bottom:353.191600pt;}
.y15e{bottom:355.113467pt;}
.y51{bottom:355.733333pt;}
.y123{bottom:358.773600pt;}
.y1c{bottom:359.533333pt;}
.y103{bottom:359.710933pt;}
.y30{bottom:359.760000pt;}
.y1e2{bottom:362.853333pt;}
.y15d{bottom:364.713333pt;}
.y17c{bottom:365.724933pt;}
.y19a{bottom:366.520000pt;}
.y50{bottom:371.333333pt;}
.y102{bottom:374.377600pt;}
.y17b{bottom:375.324933pt;}
.y15c{bottom:376.980000pt;}
.y1b{bottom:377.293333pt;}
.y1bd{bottom:378.746667pt;}
.y2f{bottom:380.680000pt;}
.y1e1{bottom:382.586667pt;}
.y199{bottom:383.853333pt;}
.y17a{bottom:384.924933pt;}
.y15b{bottom:386.580133pt;}
.y4f{bottom:386.933333pt;}
.y101{bottom:389.044267pt;}
.y122{bottom:389.440267pt;}
.y1a{bottom:395.053333pt;}
.y1bc{bottom:396.080000pt;}
.y15a{bottom:396.180133pt;}
.y179{bottom:397.458267pt;}
.yba{bottom:400.983067pt;}
.y97{bottom:401.093333pt;}
.y198{bottom:401.186667pt;}
.y4e{bottom:402.533333pt;}
.y100{bottom:403.710933pt;}
.y121{bottom:404.106933pt;}
.y178{bottom:407.058267pt;}
.y2e{bottom:407.400000pt;}
.y159{bottom:408.446800pt;}
.y19{bottom:412.813333pt;}
.y1bb{bottom:413.413333pt;}
.yb9{bottom:415.649733pt;}
.y1e0{bottom:415.653333pt;}
.y96{bottom:415.760000pt;}
.y177{bottom:416.658267pt;}
.y158{bottom:418.046667pt;}
.y4d{bottom:418.133333pt;}
.yff{bottom:418.377600pt;}
.y197{bottom:418.520000pt;}
.y120{bottom:418.773600pt;}
.y176{bottom:426.258267pt;}
.y157{bottom:427.646667pt;}
.y2d{bottom:428.320000pt;}
.yb8{bottom:430.316400pt;}
.y95{bottom:430.426667pt;}
.y18{bottom:430.573333pt;}
.yd9{bottom:430.983067pt;}
.yfe{bottom:433.044267pt;}
.y11f{bottom:433.440267pt;}
.y4c{bottom:433.733333pt;}
.y1df{bottom:435.386667pt;}
.y196{bottom:435.853333pt;}
.y175{bottom:435.858267pt;}
.y156{bottom:439.913467pt;}
.y6e{bottom:441.213333pt;}
.yb7{bottom:444.983067pt;}
.y94{bottom:445.093333pt;}
.yd8{bottom:445.649733pt;}
.yfd{bottom:447.710933pt;}
.y11e{bottom:448.106933pt;}
.y17{bottom:448.333333pt;}
.y174{bottom:448.391600pt;}
.y4b{bottom:449.333333pt;}
.y155{bottom:449.513467pt;}
.y1ba{bottom:449.720000pt;}
.y195{bottom:453.186667pt;}
.y2c{bottom:456.626667pt;}
.y173{bottom:457.991600pt;}
.y6d{bottom:459.013333pt;}
.y154{bottom:459.113467pt;}
.yb6{bottom:459.649733pt;}
.y93{bottom:459.760000pt;}
.yd7{bottom:460.316400pt;}
.yfc{bottom:462.377600pt;}
.y16{bottom:466.093333pt;}
.y172{bottom:467.591600pt;}
.y1de{bottom:468.453333pt;}
.y194{bottom:470.520000pt;}
.y153{bottom:471.380000pt;}
.y6c{bottom:472.013333pt;}
.yb5{bottom:474.316400pt;}
.y92{bottom:474.426667pt;}
.yd6{bottom:474.983067pt;}
.y171{bottom:477.191600pt;}
.y2b{bottom:477.546667pt;}
.y4a{bottom:478.013333pt;}
.y152{bottom:480.980000pt;}
.y15{bottom:483.853333pt;}
.y6b{bottom:485.013333pt;}
.y193{bottom:487.853333pt;}
.y1dd{bottom:488.186667pt;}
.yb4{bottom:488.983067pt;}
.y91{bottom:489.093333pt;}
.yd5{bottom:489.649733pt;}
.y170{bottom:489.724933pt;}
.y151{bottom:490.580133pt;}
.yfb{bottom:493.044267pt;}
.y11d{bottom:494.773600pt;}
.y49{bottom:495.773333pt;}
.y16f{bottom:499.324933pt;}
.y150{bottom:500.180133pt;}
.y6a{bottom:502.813333pt;}
.yb3{bottom:503.649733pt;}
.y90{bottom:503.760000pt;}
.yd4{bottom:504.316400pt;}
.y192{bottom:505.186667pt;}
.yfa{bottom:507.710933pt;}
.y16e{bottom:508.924933pt;}
.y11c{bottom:509.440267pt;}
.y14f{bottom:512.446800pt;}
.y2a{bottom:513.173333pt;}
.y48{bottom:513.533333pt;}
.y69{bottom:515.813333pt;}
.y14{bottom:516.493333pt;}
.yb2{bottom:518.316400pt;}
.y16d{bottom:518.524933pt;}
.y1b9{bottom:521.253333pt;}
.y14e{bottom:522.046667pt;}
.yf9{bottom:522.377600pt;}
.y191{bottom:522.520000pt;}
.y11b{bottom:524.106933pt;}
.y29{bottom:528.066667pt;}
.y16c{bottom:531.058267pt;}
.y47{bottom:531.293333pt;}
.y14d{bottom:531.646667pt;}
.yf1{bottom:532.316400pt;}
.yb1{bottom:532.983067pt;}
.y68{bottom:533.613333pt;}
.y8f{bottom:534.426667pt;}
.yd3{bottom:534.983067pt;}
.yf8{bottom:537.044267pt;}
.y11a{bottom:538.773600pt;}
.y190{bottom:539.853333pt;}
.y16b{bottom:540.658267pt;}
.y1b8{bottom:540.986667pt;}
.y14c{bottom:541.246800pt;}
.y67{bottom:546.613333pt;}
.yf0{bottom:546.983067pt;}
.yb0{bottom:547.649733pt;}
.y13{bottom:548.053333pt;}
.y46{bottom:549.053333pt;}
.y8e{bottom:549.093333pt;}
.yd2{bottom:549.649733pt;}
.y14b{bottom:550.846667pt;}
.yf7{bottom:551.710933pt;}
.y16a{bottom:553.191600pt;}
.y119{bottom:553.440267pt;}
.y18f{bottom:557.186667pt;}
.y66{bottom:559.613333pt;}
.yef{bottom:561.649733pt;}
.yaf{bottom:562.316400pt;}
.y169{bottom:562.791600pt;}
.y14a{bottom:563.113467pt;}
.y12{bottom:563.653333pt;}
.y8d{bottom:563.760000pt;}
.yd1{bottom:564.316400pt;}
.y28{bottom:566.320000pt;}
.yf6{bottom:566.377600pt;}
.y45{bottom:566.813333pt;}
.y118{bottom:568.106933pt;}
.y168{bottom:572.391600pt;}
.y149{bottom:572.713467pt;}
.y1b7{bottom:574.053333pt;}
.y18e{bottom:574.520000pt;}
.yee{bottom:576.316400pt;}
.yae{bottom:576.983067pt;}
.y65{bottom:577.413333pt;}
.y8c{bottom:578.426667pt;}
.yd0{bottom:578.983067pt;}
.y167{bottom:581.991600pt;}
.y148{bottom:582.313333pt;}
.y117{bottom:582.773600pt;}
.y44{bottom:584.573333pt;}
.yed{bottom:590.983067pt;}
.yad{bottom:591.649733pt;}
.y18d{bottom:591.853333pt;}
.y8b{bottom:593.093333pt;}
.ycf{bottom:593.649733pt;}
.y1dc{bottom:593.786667pt;}
.y10{bottom:594.146667pt;}
.y166{bottom:594.524933pt;}
.y147{bottom:594.580133pt;}
.y64{bottom:595.213333pt;}
.yf5{bottom:597.044267pt;}
.y27{bottom:597.240000pt;}
.y116{bottom:597.440267pt;}
.y165{bottom:604.124933pt;}
.y146{bottom:604.180000pt;}
.yec{bottom:605.649733pt;}
.yac{bottom:606.316400pt;}
.y1b6{bottom:607.120000pt;}
.yf{bottom:607.480000pt;}
.y8a{bottom:607.760000pt;}
.y63{bottom:608.213333pt;}
.yce{bottom:608.316400pt;}
.yf4{bottom:611.710933pt;}
.y115{bottom:612.106933pt;}
.y164{bottom:613.724933pt;}
.y145{bottom:613.780133pt;}
.y43{bottom:617.213333pt;}
.yeb{bottom:620.316400pt;}
.y62{bottom:621.213333pt;}
.y89{bottom:622.426667pt;}
.ycd{bottom:622.983067pt;}
.y18c{bottom:623.720000pt;}
.ye{bottom:625.613333pt;}
.yf3{bottom:626.377600pt;}
.y114{bottom:626.773600pt;}
.y1db{bottom:626.853333pt;}
.y26{bottom:634.226667pt;}
.yea{bottom:634.983067pt;}
.y11{bottom:636.693333pt;}
.y88{bottom:637.093333pt;}
.ycc{bottom:637.649733pt;}
.yab{bottom:638.316400pt;}
.yd{bottom:638.946667pt;}
.y61{bottom:639.013333pt;}
.y1b5{bottom:640.186667pt;}
.y18b{bottom:644.480000pt;}
.y1da{bottom:646.586667pt;}
.y144{bottom:647.346267pt;}
.ye9{bottom:649.649733pt;}
.y42{bottom:649.853333pt;}
.y87{bottom:651.760000pt;}
.ycb{bottom:652.316400pt;}
.yaa{bottom:652.983067pt;}
.y1b4{bottom:659.920000pt;}
.ye8{bottom:664.316400pt;}
.y1d9{bottom:665.120000pt;}
.y86{bottom:666.426667pt;}
.yca{bottom:666.983067pt;}
.y41{bottom:667.613333pt;}
.ya9{bottom:667.649733pt;}
.y85{bottom:681.093333pt;}
.yc9{bottom:681.649733pt;}
.ya8{bottom:682.316400pt;}
.y1d8{bottom:682.453333pt;}
.y40{bottom:685.373333pt;}
.yc{bottom:691.240000pt;}
.y1b3{bottom:692.986667pt;}
.y18a{bottom:693.240000pt;}
.y74{bottom:694.266667pt;}
.y130{bottom:694.898000pt;}
.ye7{bottom:694.983067pt;}
.y84{bottom:695.759867pt;}
.yc8{bottom:696.316400pt;}
.ya7{bottom:696.983067pt;}
.y1d7{bottom:699.786667pt;}
.y3f{bottom:703.133333pt;}
.yb{bottom:706.173333pt;}
.ye6{bottom:709.649733pt;}
.y189{bottom:710.573333pt;}
.ya6{bottom:711.649733pt;}
.y1b2{bottom:712.720000pt;}
.y1d6{bottom:717.120000pt;}
.y3e{bottom:720.893333pt;}
.ya{bottom:721.106667pt;}
.ye5{bottom:724.316400pt;}
.ya5{bottom:726.316400pt;}
.y83{bottom:726.426533pt;}
.yc7{bottom:726.983067pt;}
.y188{bottom:727.906667pt;}
.y1d5{bottom:734.453333pt;}
.y9{bottom:736.040000pt;}
.y3d{bottom:738.653333pt;}
.ye4{bottom:738.983067pt;}
.ya4{bottom:740.983067pt;}
.y82{bottom:741.093200pt;}
.yc6{bottom:741.649733pt;}
.y1b1{bottom:745.786667pt;}
.y8{bottom:747.413333pt;}
.y1d4{bottom:751.786667pt;}
.ye3{bottom:753.649733pt;}
.y143{bottom:754.849733pt;}
.y138{bottom:754.983067pt;}
.ya3{bottom:755.649733pt;}
.y81{bottom:755.759867pt;}
.yc5{bottom:756.316400pt;}
.y187{bottom:764.213333pt;}
.y1b0{bottom:765.520000pt;}
.y7{bottom:765.906667pt;}
.ye2{bottom:768.316400pt;}
.y1d3{bottom:769.120000pt;}
.y142{bottom:769.516400pt;}
.y137{bottom:769.649733pt;}
.ya2{bottom:770.316400pt;}
.y80{bottom:770.426533pt;}
.yc4{bottom:770.983067pt;}
.y3c{bottom:771.293333pt;}
.ye1{bottom:782.983067pt;}
.y141{bottom:784.183067pt;}
.ya1{bottom:784.983067pt;}
.y7f{bottom:785.093333pt;}
.yc3{bottom:785.649733pt;}
.y1d2{bottom:786.453333pt;}
.y71{bottom:787.133333pt;}
.y6{bottom:789.493333pt;}
.y186{bottom:792.506667pt;}
.y136{bottom:794.983067pt;}
.y1af{bottom:798.586667pt;}
.y140{bottom:798.849867pt;}
.ya0{bottom:799.649733pt;}
.y7e{bottom:799.760000pt;}
.yc2{bottom:800.316400pt;}
.y1d1{bottom:803.786667pt;}
.y3b{bottom:803.933333pt;}
.y135{bottom:809.649733pt;}
.y5{bottom:813.480000pt;}
.y13f{bottom:813.516533pt;}
.ye0{bottom:813.649733pt;}
.y9f{bottom:814.316400pt;}
.y7d{bottom:814.426667pt;}
.yc1{bottom:814.983067pt;}
.y1ae{bottom:818.320000pt;}
.y1d0{bottom:821.120000pt;}
.y3a{bottom:821.693333pt;}
.y9e{bottom:828.983067pt;}
.y7c{bottom:829.093333pt;}
.yc0{bottom:829.649733pt;}
.ydb{bottom:832.977333pt;}
.y134{bottom:834.983067pt;}
.y185{bottom:836.573333pt;}
.y1cf{bottom:838.453333pt;}
.y39{bottom:839.453333pt;}
.y4{bottom:841.440000pt;}
.y13e{bottom:842.849867pt;}
.y9d{bottom:843.649733pt;}
.y7b{bottom:843.760000pt;}
.ybf{bottom:844.316400pt;}
.y1ad{bottom:851.386667pt;}
.y1ce{bottom:855.786667pt;}
.y9c{bottom:858.316400pt;}
.y7a{bottom:858.426667pt;}
.ybe{bottom:858.983067pt;}
.y133{bottom:860.316400pt;}
.y13d{bottom:864.183200pt;}
.y3{bottom:865.306667pt;}
.y38{bottom:869.213333pt;}
.y1ac{bottom:871.120000pt;}
.y79{bottom:873.093333pt;}
.y1cd{bottom:873.120000pt;}
.ybd{bottom:873.649733pt;}
.yda{bottom:874.983067pt;}
.y13c{bottom:878.849867pt;}
.y37{bottom:886.973333pt;}
.y78{bottom:887.760000pt;}
.ybc{bottom:888.316400pt;}
.y9b{bottom:889.649733pt;}
.y1cc{bottom:890.453333pt;}
.y70{bottom:892.213333pt;}
.y13b{bottom:893.516533pt;}
.y184{bottom:894.533333pt;}
.y132{bottom:900.316400pt;}
.y77{bottom:902.426667pt;}
.y1ab{bottom:904.186667pt;}
.y9a{bottom:904.316400pt;}
.y2{bottom:907.146667pt;}
.y1cb{bottom:907.786667pt;}
.y6f{bottom:907.813333pt;}
.y131{bottom:914.983067pt;}
.y36{bottom:916.733333pt;}
.y76{bottom:917.093333pt;}
.y13a{bottom:918.849867pt;}
.y99{bottom:918.983067pt;}
.y1aa{bottom:923.920000pt;}
.y1ca{bottom:925.120000pt;}
.y75{bottom:931.760000pt;}
.y139{bottom:933.516533pt;}
.y98{bottom:933.649733pt;}
.y183{bottom:935.160000pt;}
.y1{bottom:938.413333pt;}
.y31{bottom:960.000000pt;}
.y35{bottom:998.666667pt;}
.h19{height:24.480000pt;}
.h16{height:25.610813pt;}
.h5{height:27.213600pt;}
.hc{height:28.560000pt;}
.hd{height:30.600000pt;}
.h18{height:31.584384pt;}
.h15{height:32.058624pt;}
.h6{height:32.640000pt;}
.h17{height:32.928187pt;}
.h14{height:32.933333pt;}
.h11{height:33.024000pt;}
.h8{height:33.660000pt;}
.h10{height:35.236992pt;}
.h12{height:35.237525pt;}
.h1{height:36.720000pt;}
.h13{height:37.536000pt;}
.h9{height:37.653333pt;}
.hf{height:38.760000pt;}
.h3{height:40.800000pt;}
.h1b{height:42.840000pt;}
.hb{height:55.080000pt;}
.h4{height:55.920000pt;}
.h7{height:57.120000pt;}
.h2{height:65.280000pt;}
.h1a{height:73.440000pt;}
.he{height:82.866667pt;}
.ha{height:96.000000pt;}
.h0{height:1056.000000pt;}
.w5{width:125.400000pt;}
.w2{width:397.440000pt;}
.w1{width:662.400000pt;}
.w0{width:816.000000pt;}
.w3{width:816.377333pt;}
.w4{width:816.666667pt;}
.x0{left:0.000000pt;}
.x15{left:1.360800pt;}
.x13{left:8.084533pt;}
.x16{left:24.337067pt;}
.x12{left:69.505867pt;}
.xe{left:75.590533pt;}
.x1{left:76.800000pt;}
.xc{left:80.000000pt;}
.xd{left:83.466667pt;}
.xb{left:86.893333pt;}
.x1c{left:87.800000pt;}
.x19{left:96.923867pt;}
.x1a{left:98.267867pt;}
.x14{left:104.692000pt;}
.x2{left:105.600000pt;}
.x11{left:111.952000pt;}
.x1d{left:121.800000pt;}
.x8{left:329.466667pt;}
.xf{left:419.527600pt;}
.x17{left:440.860933pt;}
.x1b{left:442.204933pt;}
.x18{left:455.380800pt;}
.xa{left:473.253333pt;}
.x3{left:488.973333pt;}
.x5{left:490.413333pt;}
.x7{left:493.240000pt;}
.x6{left:504.973333pt;}
.x10{left:521.528000pt;}
.x4{left:593.426667pt;}
.x1e{left:681.493333pt;}
.x9{left:686.826667pt;}
}




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