
    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_dc26cee500fa3bb57b173ed4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_8af27c4e957e70fdb9c151b9.woff')format("woff");}.ff2{font-family:ff2;line-height:0.820000;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_96e2fe526390025c1b5a9b05.woff')format("woff");}.ff3{font-family:ff3;line-height:0.475000;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_197cd00e73eb11130372a71d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_54c1e07cc2b5ffa4883572c1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.592000;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_1672d76bab6949bdfb98a2b4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.575000;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_c6be0bbe2ee15bff76e40717.woff')format("woff");}.ff7{font-family:ff7;line-height:1.313477;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_ec65585091890b903b704a53.woff')format("woff");}.ff8{font-family:ff8;line-height:1.239258;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_3959a7ac6654fa28796ad8b8.woff')format("woff");}.ff9{font-family:ff9;line-height:1.592000;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_4eaa19168881100ac5e55a16.woff')format("woff");}.ffa{font-family:ffa;line-height:1.575000;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_09b25b80dca908e73e3b83e3.woff')format("woff");}.ffb{font-family:ffb;line-height:1.239258;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_b71c533ebc5a3ba099f4afa4.woff')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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;}
.mc{transform:matrix(0.000000,-0.248516,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248516,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248516,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249297,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249297,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249297,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.223184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223184,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.235583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235583,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.240313,0.000000,-0.068917,0.240313,0,0);-ms-transform:matrix(0.240313,0.000000,-0.068917,0.240313,0,0);-webkit-transform:matrix(0.240313,0.000000,-0.068917,0.240313,0,0);}
.m5{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249587,0.000000,0.000000,0.250000,0,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);}
.m9{transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250730,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-41.322750px;}
.v3{vertical-align:-27.018000px;}
.v1{vertical-align:-9.018000px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.756000px;}
.ls7{letter-spacing:-0.693000px;}
.ls9{letter-spacing:-0.456000px;}
.ls4{letter-spacing:-0.441000px;}
.lsc{letter-spacing:-0.063000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:2.646000px;}
.ls8{letter-spacing:2.679000px;}
.ls1{letter-spacing:2.691000px;}
.lsa{letter-spacing:2.892000px;}
.ls3{letter-spacing:3.339000px;}
.ls6{letter-spacing:9.348000px;}
.ls5{letter-spacing:10.017000px;}
.lsb{letter-spacing:283.781034px;}
.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;}
}
.ws1d{word-spacing:-26.688000px;}
.ws1e{word-spacing:-21.000000px;}
.wsd{word-spacing:-19.656000px;}
.ws0{word-spacing:-17.010000px;}
.ws9{word-spacing:-15.750000px;}
.ws1{word-spacing:-14.490000px;}
.ws24{word-spacing:-13.797000px;}
.ws19{word-spacing:-13.333500px;}
.ws10{word-spacing:-12.654000px;}
.ws1c{word-spacing:-11.877000px;}
.ws28{word-spacing:-0.756000px;}
.ws3{word-spacing:0.000000px;}
.wsc{word-spacing:1.938000px;}
.ws21{word-spacing:3.400272px;}
.ws17{word-spacing:3.834000px;}
.ws1f{word-spacing:3.888000px;}
.ws2{word-spacing:3.984000px;}
.ws22{word-spacing:4.044719px;}
.ws15{word-spacing:4.221000px;}
.ws16{word-spacing:4.275000px;}
.wsa{word-spacing:4.914000px;}
.ws5{word-spacing:5.727000px;}
.ws20{word-spacing:6.048000px;}
.ws7{word-spacing:6.480000px;}
.ws18{word-spacing:6.954000px;}
.ws6{word-spacing:7.560000px;}
.ws25{word-spacing:7.623000px;}
.wse{word-spacing:8.001000px;}
.ws27{word-spacing:8.064000px;}
.ws14{word-spacing:8.253000px;}
.wsb{word-spacing:8.280000px;}
.ws4{word-spacing:10.248000px;}
.ws11{word-spacing:100.206000px;}
.ws12{word-spacing:146.718000px;}
.ws13{word-spacing:171.057000px;}
.ws1a{word-spacing:236.937288px;}
.ws1b{word-spacing:291.620550px;}
.ws29{word-spacing:2032.443000px;}
.ws23{word-spacing:2035.152000px;}
.wsf{word-spacing:2035.782000px;}
.ws26{word-spacing:2037.357000px;}
.ws8{word-spacing:2038.050000px;}
._29{margin-left:-398.992560px;}
._1{margin-left:-8.484000px;}
._8{margin-left:-6.951000px;}
._5{margin-left:-5.775000px;}
._9{margin-left:-4.263000px;}
._a{margin-left:-3.087000px;}
._2{margin-left:-1.596000px;}
._0{width:1.344000px;}
._b{width:2.667000px;}
._6{width:3.738000px;}
._3{width:5.208000px;}
._2e{width:7.602000px;}
._2d{width:9.450000px;}
._7{width:10.458000px;}
._4{width:14.700000px;}
._c{width:31.626000px;}
._2c{width:47.496000px;}
._10{width:121.296000px;}
._27{width:126.312000px;}
._11{width:128.934000px;}
._17{width:130.017000px;}
._25{width:136.401000px;}
._1b{width:138.909000px;}
._18{width:145.185000px;}
._15{width:150.129000px;}
._24{width:151.221000px;}
._14{width:153.900000px;}
._1c{width:157.377000px;}
._f{width:161.124000px;}
._20{width:162.972000px;}
._19{width:171.342000px;}
._13{width:175.104000px;}
._12{width:177.954000px;}
._1f{width:180.576000px;}
._16{width:185.415000px;}
._26{width:190.209000px;}
._1a{width:198.588000px;}
._1e{width:209.760000px;}
._28{width:220.149000px;}
._1d{width:252.054000px;}
._2b{width:258.836118px;}
._21{width:260.889000px;}
._e{width:267.576000px;}
._22{width:279.699000px;}
._23{width:292.809000px;}
._2a{width:625.293198px;}
._d{width:750.708000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:47.226000px;}
.fs7{font-size:47.274000px;}
.fsb{font-size:47.508000px;}
.fs0{font-size:48.000000px;}
.fs9{font-size:53.184000px;}
.fs8{font-size:53.334000px;}
.fs4{font-size:54.000000px;}
.fsc{font-size:56.176652px;}
.fs6{font-size:57.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:69.000000px;}
.fs3{font-size:84.000000px;}
.fsd{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:3.561000px;}
.y2a{bottom:23.361000px;}
.y4{bottom:64.500000px;}
.y8b{bottom:155.694750px;}
.y5e{bottom:155.697750px;}
.yd3{bottom:156.000000px;}
.yd2{bottom:156.004500px;}
.y16b{bottom:156.188250px;}
.y28{bottom:156.217500px;}
.y131{bottom:156.338250px;}
.yff{bottom:156.465000px;}
.yb9{bottom:167.949000px;}
.yd1{bottom:174.004500px;}
.y8a{bottom:174.295500px;}
.y5d{bottom:174.298500px;}
.y5b{bottom:174.307500px;}
.y16a{bottom:174.930750px;}
.y27{bottom:174.960000px;}
.y130{bottom:175.080750px;}
.yfe{bottom:175.207500px;}
.yb8{bottom:185.205750px;}
.yd0{bottom:192.000000px;}
.y89{bottom:192.896250px;}
.y5c{bottom:192.899250px;}
.y5a{bottom:192.903750px;}
.y26{bottom:193.702500px;}
.y12f{bottom:193.823250px;}
.yfd{bottom:193.950000px;}
.y169{bottom:201.327750px;}
.yb7{bottom:208.461750px;}
.y88{bottom:211.497000px;}
.y59{bottom:211.500000px;}
.y25{bottom:212.445000px;}
.y12e{bottom:212.565750px;}
.yfc{bottom:212.692500px;}
.yce{bottom:221.952000px;}
.yb6{bottom:225.718500px;}
.y168{bottom:227.882250px;}
.y87{bottom:230.097750px;}
.y24{bottom:231.187500px;}
.y12d{bottom:231.308250px;}
.yfb{bottom:231.435000px;}
.y58{bottom:245.095500px;}
.y167{bottom:246.624750px;}
.y86{bottom:248.698500px;}
.yb5{bottom:248.974500px;}
.y23{bottom:249.930000px;}
.ycd{bottom:250.014750px;}
.y12c{bottom:250.050750px;}
.yfa{bottom:250.177500px;}
.y57{bottom:263.696250px;}
.yb4{bottom:266.231250px;}
.y83{bottom:267.153750px;}
.y85{bottom:267.299250px;}
.y22{bottom:268.672500px;}
.y12b{bottom:268.793250px;}
.yf9{bottom:268.920000px;}
.y166{bottom:280.975500px;}
.y56{bottom:282.297000px;}
.y82{bottom:285.750000px;}
.y84{bottom:285.900000px;}
.y21{bottom:287.415000px;}
.y12a{bottom:287.535750px;}
.yf8{bottom:287.662500px;}
.y141{bottom:288.007500px;}
.yb3{bottom:289.487250px;}
.y165{bottom:299.718000px;}
.y55{bottom:300.897750px;}
.y20{bottom:306.157500px;}
.y129{bottom:306.278250px;}
.yf7{bottom:306.405000px;}
.yb2{bottom:306.744000px;}
.y140{bottom:306.750000px;}
.y13f{bottom:306.757500px;}
.ycc{bottom:314.950500px;}
.y164{bottom:318.460500px;}
.y54{bottom:319.498500px;}
.y1f{bottom:324.900000px;}
.y128{bottom:325.020750px;}
.yf6{bottom:325.147500px;}
.y13e{bottom:325.500000px;}
.y13d{bottom:325.582500px;}
.ycf{bottom:325.780500px;}
.yb1{bottom:330.000000px;}
.y163{bottom:337.203000px;}
.y53{bottom:338.099250px;}
.y81{bottom:342.000000px;}
.y127{bottom:343.763250px;}
.yf5{bottom:343.890000px;}
.y13c{bottom:344.325000px;}
.y51{bottom:356.699250px;}
.y52{bottom:356.700000px;}
.y126{bottom:362.505750px;}
.yf4{bottom:362.632500px;}
.y13b{bottom:363.067500px;}
.y162{bottom:363.600000px;}
.y161{bottom:363.711000px;}
.yb0{bottom:366.761250px;}
.y4f{bottom:375.299250px;}
.y50{bottom:375.300000px;}
.ycb{bottom:379.886250px;}
.y1e{bottom:381.150000px;}
.y125{bottom:381.248250px;}
.yf3{bottom:381.375000px;}
.y13a{bottom:381.810000px;}
.y160{bottom:382.453500px;}
.yaf{bottom:382.507500px;}
.y80{bottom:391.049250px;}
.y4e{bottom:393.900000px;}
.yae{bottom:398.253750px;}
.y124{bottom:399.990750px;}
.yf2{bottom:400.117500px;}
.y139{bottom:400.552500px;}
.y15f{bottom:401.196000px;}
.y7e{bottom:409.646250px;}
.y7f{bottom:409.650000px;}
.yad{bottom:414.000000px;}
.y123{bottom:418.733250px;}
.yf1{bottom:418.860000px;}
.y138{bottom:419.295000px;}
.y15e{bottom:427.750500px;}
.y7d{bottom:428.247000px;}
.y122{bottom:437.475750px;}
.yf0{bottom:437.602500px;}
.y137{bottom:438.037500px;}
.y1d{bottom:438.142500px;}
.yca{bottom:444.822000px;}
.y15d{bottom:446.493000px;}
.y7c{bottom:446.847750px;}
.yac{bottom:449.998500px;}
.y4d{bottom:450.150000px;}
.y121{bottom:456.218250px;}
.yef{bottom:456.345000px;}
.y136{bottom:456.780000px;}
.y1c{bottom:456.885000px;}
.y15c{bottom:465.235500px;}
.y7b{bottom:465.448500px;}
.yab{bottom:468.750000px;}
.y120{bottom:474.960750px;}
.yee{bottom:475.087500px;}
.y135{bottom:475.522500px;}
.y1b{bottom:475.627500px;}
.y7a{bottom:484.049250px;}
.y15b{bottom:491.790000px;}
.y11f{bottom:493.703250px;}
.yed{bottom:493.830000px;}
.y134{bottom:494.265000px;}
.y1a{bottom:494.370000px;}
.y4c{bottom:499.026750px;}
.y78{bottom:502.640250px;}
.y79{bottom:502.650000px;}
.yc9{bottom:509.757750px;}
.y15a{bottom:510.532500px;}
.y11e{bottom:512.445750px;}
.yec{bottom:512.572500px;}
.y133{bottom:513.007500px;}
.yaa{bottom:513.030000px;}
.y19{bottom:513.112500px;}
.y4b{bottom:517.627500px;}
.y77{bottom:521.241000px;}
.y11d{bottom:531.188250px;}
.yeb{bottom:531.315000px;}
.y132{bottom:531.750000px;}
.ya9{bottom:531.772500px;}
.y18{bottom:531.855000px;}
.y4a{bottom:536.228250px;}
.y159{bottom:537.087000px;}
.y76{bottom:539.841750px;}
.y11c{bottom:549.930750px;}
.yea{bottom:550.057500px;}
.ya8{bottom:550.515000px;}
.y17{bottom:550.597500px;}
.y49{bottom:554.829000px;}
.y158{bottom:555.829500px;}
.y75{bottom:558.442500px;}
.y11b{bottom:568.673250px;}
.ye9{bottom:568.800000px;}
.ya6{bottom:569.247000px;}
.ya7{bottom:569.257500px;}
.y16{bottom:569.340000px;}
.y182{bottom:573.000000px;}
.y181{bottom:573.099000px;}
.y48{bottom:573.429750px;}
.y157{bottom:574.572000px;}
.yc8{bottom:574.693500px;}
.y74{bottom:577.043250px;}
.y11a{bottom:587.415750px;}
.ye8{bottom:587.542500px;}
.ya5{bottom:588.000000px;}
.y15{bottom:588.082500px;}
.y180{bottom:591.841500px;}
.y47{bottom:592.030500px;}
.y73{bottom:595.644000px;}
.y156{bottom:600.969000px;}
.y119{bottom:606.158250px;}
.ye7{bottom:606.285000px;}
.y14{bottom:606.825000px;}
.y17f{bottom:610.584000px;}
.y46{bottom:610.631250px;}
.y72{bottom:614.244750px;}
.y155{bottom:619.711500px;}
.y118{bottom:624.900750px;}
.ye6{bottom:625.027500px;}
.y13{bottom:625.567500px;}
.ya4{bottom:625.688250px;}
.y45{bottom:629.232000px;}
.y17e{bottom:629.326500px;}
.y71{bottom:632.845500px;}
.y154{bottom:638.454000px;}
.yc7{bottom:640.504500px;}
.y117{bottom:643.643250px;}
.ye5{bottom:643.770000px;}
.y12{bottom:644.310000px;}
.ya3{bottom:644.430750px;}
.y44{bottom:647.832750px;}
.y70{bottom:651.446250px;}
.y17d{bottom:655.581750px;}
.y153{bottom:657.196500px;}
.yc6{bottom:658.500000px;}
.yc5{bottom:658.504500px;}
.y116{bottom:662.385750px;}
.ye4{bottom:662.512500px;}
.y11{bottom:663.052500px;}
.ya2{bottom:663.173250px;}
.y43{bottom:666.433500px;}
.y6f{bottom:670.047000px;}
.y17c{bottom:674.324250px;}
.yc4{bottom:676.504500px;}
.y115{bottom:681.128250px;}
.ye3{bottom:681.255000px;}
.y10{bottom:681.795000px;}
.ya1{bottom:681.915750px;}
.y152{bottom:683.751000px;}
.y42{bottom:685.034250px;}
.y6e{bottom:688.647750px;}
.yc3{bottom:694.500000px;}
.y114{bottom:699.870750px;}
.ye2{bottom:699.997500px;}
.yf{bottom:700.537500px;}
.y17b{bottom:700.579500px;}
.ya0{bottom:700.658250px;}
.y151{bottom:702.493500px;}
.y41{bottom:703.635000px;}
.y6d{bottom:707.248500px;}
.y113{bottom:718.613250px;}
.ye1{bottom:718.740000px;}
.ye{bottom:719.280000px;}
.y17a{bottom:719.322000px;}
.y9f{bottom:719.400750px;}
.y40{bottom:722.235750px;}
.yc2{bottom:725.439000px;}
.y6c{bottom:725.849250px;}
.y6b{bottom:725.853750px;}
.y150{bottom:729.048000px;}
.y112{bottom:737.355750px;}
.ye0{bottom:737.482500px;}
.yd{bottom:738.022500px;}
.y179{bottom:738.064500px;}
.y9e{bottom:738.143250px;}
.y3f{bottom:740.836500px;}
.yc1{bottom:743.167500px;}
.y6a{bottom:744.450000px;}
.y14f{bottom:747.790500px;}
.ybf{bottom:754.505063px;}
.y111{bottom:756.098250px;}
.ydf{bottom:756.225000px;}
.yc{bottom:756.765000px;}
.y9d{bottom:756.885750px;}
.y3e{bottom:759.437250px;}
.y178{bottom:764.319750px;}
.y14e{bottom:774.345000px;}
.y110{bottom:774.840750px;}
.yde{bottom:774.967500px;}
.yb{bottom:775.507500px;}
.y9c{bottom:775.628250px;}
.y3d{bottom:778.038000px;}
.y69{bottom:778.042500px;}
.y177{bottom:783.062250px;}
.y14d{bottom:793.087500px;}
.y10f{bottom:793.583250px;}
.ydd{bottom:793.710000px;}
.ya{bottom:794.250000px;}
.y9b{bottom:794.370750px;}
.y3c{bottom:796.638750px;}
.y68{bottom:796.643250px;}
.y176{bottom:801.804750px;}
.y10e{bottom:812.325750px;}
.ydc{bottom:812.452500px;}
.y9a{bottom:813.113250px;}
.y3b{bottom:815.239500px;}
.y67{bottom:815.244000px;}
.y14c{bottom:819.484500px;}
.y175{bottom:820.547250px;}
.ybe{bottom:823.938750px;}
.y10d{bottom:831.068250px;}
.ydb{bottom:831.195000px;}
.y99{bottom:831.855750px;}
.y3a{bottom:833.840250px;}
.y66{bottom:833.844750px;}
.y14b{bottom:838.227000px;}
.y174{bottom:846.802500px;}
.y10c{bottom:849.810750px;}
.yda{bottom:849.937500px;}
.y9{bottom:850.500000px;}
.y98{bottom:850.598250px;}
.y39{bottom:852.441000px;}
.y65{bottom:852.445500px;}
.y14a{bottom:856.969500px;}
.y173{bottom:865.545000px;}
.y10b{bottom:868.553250px;}
.yd9{bottom:868.680000px;}
.y97{bottom:869.340750px;}
.y38{bottom:871.041750px;}
.y64{bottom:871.046250px;}
.y149{bottom:883.524000px;}
.yc0{bottom:883.723500px;}
.y172{bottom:884.287500px;}
.y10a{bottom:887.295750px;}
.yd8{bottom:887.422500px;}
.y96{bottom:888.083250px;}
.y37{bottom:889.642500px;}
.y63{bottom:889.647000px;}
.ybd{bottom:893.372437px;}
.y148{bottom:902.266500px;}
.y171{bottom:903.030000px;}
.y109{bottom:906.038250px;}
.yd7{bottom:906.165000px;}
.y95{bottom:906.825750px;}
.y36{bottom:908.243250px;}
.y62{bottom:908.247750px;}
.y108{bottom:924.780750px;}
.yd6{bottom:924.907500px;}
.y94{bottom:925.568250px;}
.y35{bottom:926.844000px;}
.y61{bottom:926.848500px;}
.y147{bottom:928.821000px;}
.y170{bottom:929.285250px;}
.y107{bottom:943.523250px;}
.yd5{bottom:943.650000px;}
.y93{bottom:944.310750px;}
.y34{bottom:945.444750px;}
.y60{bottom:945.449250px;}
.y16f{bottom:948.027750px;}
.y146{bottom:955.375500px;}
.y106{bottom:962.265750px;}
.ybc{bottom:962.806125px;}
.y92{bottom:963.053250px;}
.y33{bottom:964.045500px;}
.y5f{bottom:964.050000px;}
.y145{bottom:974.118000px;}
.y16e{bottom:974.283000px;}
.y105{bottom:981.008250px;}
.y91{bottom:981.795750px;}
.y32{bottom:982.646250px;}
.y144{bottom:992.860500px;}
.y16d{bottom:993.025500px;}
.y104{bottom:999.750750px;}
.yd4{bottom:999.900000px;}
.y90{bottom:1000.538250px;}
.y31{bottom:1001.247000px;}
.y8{bottom:1004.250000px;}
.y16c{bottom:1011.768000px;}
.y103{bottom:1018.650750px;}
.y143{bottom:1019.257500px;}
.y8f{bottom:1019.280750px;}
.y30{bottom:1019.847750px;}
.y7{bottom:1031.244000px;}
.ybb{bottom:1032.239812px;}
.y102{bottom:1037.550750px;}
.y142{bottom:1038.000000px;}
.y8e{bottom:1038.023250px;}
.y2f{bottom:1038.448500px;}
.y101{bottom:1056.450750px;}
.y8d{bottom:1056.765750px;}
.y2e{bottom:1057.049250px;}
.y6{bottom:1058.250000px;}
.y100{bottom:1075.350750px;}
.y8c{bottom:1075.508250px;}
.y2d{bottom:1075.650000px;}
.y5{bottom:1094.250000px;}
.y2c{bottom:1094.250750px;}
.yba{bottom:1101.673500px;}
.y29{bottom:1134.000018px;}
.y3{bottom:1200.000000px;}
.y2{bottom:1212.000000px;}
.y1{bottom:1224.000000px;}
.h3{height:31.947000px;}
.he{height:37.392000px;}
.ha{height:39.930225px;}
.h2{height:41.328000px;}
.h6{height:45.264000px;}
.h1{height:47.109375px;}
.h15{height:50.390142px;}
.h10{height:50.441358px;}
.h16{height:50.691036px;}
.h17{height:52.034721px;}
.h14{height:56.320312px;}
.h12{height:56.747328px;}
.h11{height:56.907378px;}
.h7{height:57.618000px;}
.hc{height:58.354980px;}
.hf{height:58.536000px;}
.hd{height:60.819000px;}
.hb{height:66.451172px;}
.h8{height:67.221000px;}
.h9{height:68.292000px;}
.h13{height:68.788641px;}
.h19{height:68.806641px;}
.h18{height:77.046000px;}
.h4{height:89.628000px;}
.h5{height:91.056000px;}
.h0{height:1188.000000px;}
.w1{width:899.524500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:9.237762px;}
.x1{left:75.000000px;}
.x13{left:156.333000px;}
.x1b{left:166.613323px;}
.x1a{left:171.333000px;}
.x7{left:174.000000px;}
.xf{left:184.619866px;}
.xe{left:190.726186px;}
.x14{left:200.502048px;}
.x1c{left:218.502048px;}
.xd{left:235.111500px;}
.x1d{left:237.085500px;}
.x20{left:253.076424px;}
.x3{left:295.777500px;}
.x4{left:336.000000px;}
.x23{left:348.840000px;}
.x5{left:354.001117px;}
.x29{left:358.998000px;}
.x22{left:363.877500px;}
.xb{left:370.366500px;}
.x8{left:371.996571px;}
.xc{left:384.063000px;}
.x36{left:389.997688px;}
.x26{left:403.362000px;}
.x2b{left:404.854500px;}
.x15{left:408.814500px;}
.x1f{left:414.234462px;}
.x2c{left:447.132000px;}
.x2d{left:454.543500px;}
.x24{left:460.122000px;}
.x37{left:461.628000px;}
.x18{left:473.130000px;}
.x38{left:482.740500px;}
.x27{left:485.566500px;}
.x28{left:497.236500px;}
.x2e{left:498.714000px;}
.x2f{left:510.384000px;}
.x11{left:514.531500px;}
.x25{left:516.696000px;}
.x19{left:521.821500px;}
.x12{left:533.251500px;}
.x2a{left:547.254000px;}
.x34{left:615.181500px;}
.x35{left:624.118500px;}
.x1e{left:632.278500px;}
.x30{left:711.946500px;}
.x32{left:749.985000px;}
.x31{left:756.039000px;}
.x16{left:759.048000px;}
.x9{left:764.926500px;}
.x17{left:771.912000px;}
.xa{left:775.069500px;}
.x21{left:792.962344px;}
.x33{left:807.610500px;}
.x10{left:808.777500px;}
.x2{left:809.778000px;}
@media print{
.v2{vertical-align:-36.731333pt;}
.v3{vertical-align:-24.016000pt;}
.v1{vertical-align:-8.016000pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.672000pt;}
.ls7{letter-spacing:-0.616000pt;}
.ls9{letter-spacing:-0.405333pt;}
.ls4{letter-spacing:-0.392000pt;}
.lsc{letter-spacing:-0.056000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:2.352000pt;}
.ls8{letter-spacing:2.381333pt;}
.ls1{letter-spacing:2.392000pt;}
.lsa{letter-spacing:2.570667pt;}
.ls3{letter-spacing:2.968000pt;}
.ls6{letter-spacing:8.309333pt;}
.ls5{letter-spacing:8.904000pt;}
.lsb{letter-spacing:252.249808pt;}
.ws1d{word-spacing:-23.722667pt;}
.ws1e{word-spacing:-18.666667pt;}
.wsd{word-spacing:-17.472000pt;}
.ws0{word-spacing:-15.120000pt;}
.ws9{word-spacing:-14.000000pt;}
.ws1{word-spacing:-12.880000pt;}
.ws24{word-spacing:-12.264000pt;}
.ws19{word-spacing:-11.852000pt;}
.ws10{word-spacing:-11.248000pt;}
.ws1c{word-spacing:-10.557333pt;}
.ws28{word-spacing:-0.672000pt;}
.ws3{word-spacing:0.000000pt;}
.wsc{word-spacing:1.722667pt;}
.ws21{word-spacing:3.022464pt;}
.ws17{word-spacing:3.408000pt;}
.ws1f{word-spacing:3.456000pt;}
.ws2{word-spacing:3.541333pt;}
.ws22{word-spacing:3.595306pt;}
.ws15{word-spacing:3.752000pt;}
.ws16{word-spacing:3.800000pt;}
.wsa{word-spacing:4.368000pt;}
.ws5{word-spacing:5.090667pt;}
.ws20{word-spacing:5.376000pt;}
.ws7{word-spacing:5.760000pt;}
.ws18{word-spacing:6.181333pt;}
.ws6{word-spacing:6.720000pt;}
.ws25{word-spacing:6.776000pt;}
.wse{word-spacing:7.112000pt;}
.ws27{word-spacing:7.168000pt;}
.ws14{word-spacing:7.336000pt;}
.wsb{word-spacing:7.360000pt;}
.ws4{word-spacing:9.109333pt;}
.ws11{word-spacing:89.072000pt;}
.ws12{word-spacing:130.416000pt;}
.ws13{word-spacing:152.050667pt;}
.ws1a{word-spacing:210.610923pt;}
.ws1b{word-spacing:259.218267pt;}
.ws29{word-spacing:1806.616000pt;}
.ws23{word-spacing:1809.024000pt;}
.wsf{word-spacing:1809.584000pt;}
.ws26{word-spacing:1810.984000pt;}
.ws8{word-spacing:1811.600000pt;}
._29{margin-left:-354.660053pt;}
._1{margin-left:-7.541333pt;}
._8{margin-left:-6.178667pt;}
._5{margin-left:-5.133333pt;}
._9{margin-left:-3.789333pt;}
._a{margin-left:-2.744000pt;}
._2{margin-left:-1.418667pt;}
._0{width:1.194667pt;}
._b{width:2.370667pt;}
._6{width:3.322667pt;}
._3{width:4.629333pt;}
._2e{width:6.757333pt;}
._2d{width:8.400000pt;}
._7{width:9.296000pt;}
._4{width:13.066667pt;}
._c{width:28.112000pt;}
._2c{width:42.218667pt;}
._10{width:107.818667pt;}
._27{width:112.277333pt;}
._11{width:114.608000pt;}
._17{width:115.570667pt;}
._25{width:121.245333pt;}
._1b{width:123.474667pt;}
._18{width:129.053333pt;}
._15{width:133.448000pt;}
._24{width:134.418667pt;}
._14{width:136.800000pt;}
._1c{width:139.890667pt;}
._f{width:143.221333pt;}
._20{width:144.864000pt;}
._19{width:152.304000pt;}
._13{width:155.648000pt;}
._12{width:158.181333pt;}
._1f{width:160.512000pt;}
._16{width:164.813333pt;}
._26{width:169.074667pt;}
._1a{width:176.522667pt;}
._1e{width:186.453333pt;}
._28{width:195.688000pt;}
._1d{width:224.048000pt;}
._2b{width:230.076549pt;}
._21{width:231.901333pt;}
._e{width:237.845333pt;}
._22{width:248.621333pt;}
._23{width:260.274667pt;}
._2a{width:555.816176pt;}
._d{width:667.296000pt;}
.fsa{font-size:41.978667pt;}
.fs7{font-size:42.021333pt;}
.fsb{font-size:42.229333pt;}
.fs0{font-size:42.666667pt;}
.fs9{font-size:47.274667pt;}
.fs8{font-size:47.408000pt;}
.fs4{font-size:48.000000pt;}
.fsc{font-size:49.934802pt;}
.fs6{font-size:50.666667pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:61.333333pt;}
.fs3{font-size:74.666667pt;}
.fsd{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:3.165333pt;}
.y2a{bottom:20.765333pt;}
.y4{bottom:57.333333pt;}
.y8b{bottom:138.395333pt;}
.y5e{bottom:138.398000pt;}
.yd3{bottom:138.666667pt;}
.yd2{bottom:138.670667pt;}
.y16b{bottom:138.834000pt;}
.y28{bottom:138.860000pt;}
.y131{bottom:138.967333pt;}
.yff{bottom:139.080000pt;}
.yb9{bottom:149.288000pt;}
.yd1{bottom:154.670667pt;}
.y8a{bottom:154.929333pt;}
.y5d{bottom:154.932000pt;}
.y5b{bottom:154.940000pt;}
.y16a{bottom:155.494000pt;}
.y27{bottom:155.520000pt;}
.y130{bottom:155.627333pt;}
.yfe{bottom:155.740000pt;}
.yb8{bottom:164.627333pt;}
.yd0{bottom:170.666667pt;}
.y89{bottom:171.463333pt;}
.y5c{bottom:171.466000pt;}
.y5a{bottom:171.470000pt;}
.y26{bottom:172.180000pt;}
.y12f{bottom:172.287333pt;}
.yfd{bottom:172.400000pt;}
.y169{bottom:178.958000pt;}
.yb7{bottom:185.299333pt;}
.y88{bottom:187.997333pt;}
.y59{bottom:188.000000pt;}
.y25{bottom:188.840000pt;}
.y12e{bottom:188.947333pt;}
.yfc{bottom:189.060000pt;}
.yce{bottom:197.290667pt;}
.yb6{bottom:200.638667pt;}
.y168{bottom:202.562000pt;}
.y87{bottom:204.531333pt;}
.y24{bottom:205.500000pt;}
.y12d{bottom:205.607333pt;}
.yfb{bottom:205.720000pt;}
.y58{bottom:217.862667pt;}
.y167{bottom:219.222000pt;}
.y86{bottom:221.065333pt;}
.yb5{bottom:221.310667pt;}
.y23{bottom:222.160000pt;}
.ycd{bottom:222.235333pt;}
.y12c{bottom:222.267333pt;}
.yfa{bottom:222.380000pt;}
.y57{bottom:234.396667pt;}
.yb4{bottom:236.650000pt;}
.y83{bottom:237.470000pt;}
.y85{bottom:237.599333pt;}
.y22{bottom:238.820000pt;}
.y12b{bottom:238.927333pt;}
.yf9{bottom:239.040000pt;}
.y166{bottom:249.756000pt;}
.y56{bottom:250.930667pt;}
.y82{bottom:254.000000pt;}
.y84{bottom:254.133333pt;}
.y21{bottom:255.480000pt;}
.y12a{bottom:255.587333pt;}
.yf8{bottom:255.700000pt;}
.y141{bottom:256.006667pt;}
.yb3{bottom:257.322000pt;}
.y165{bottom:266.416000pt;}
.y55{bottom:267.464667pt;}
.y20{bottom:272.140000pt;}
.y129{bottom:272.247333pt;}
.yf7{bottom:272.360000pt;}
.yb2{bottom:272.661333pt;}
.y140{bottom:272.666667pt;}
.y13f{bottom:272.673333pt;}
.ycc{bottom:279.956000pt;}
.y164{bottom:283.076000pt;}
.y54{bottom:283.998667pt;}
.y1f{bottom:288.800000pt;}
.y128{bottom:288.907333pt;}
.yf6{bottom:289.020000pt;}
.y13e{bottom:289.333333pt;}
.y13d{bottom:289.406667pt;}
.ycf{bottom:289.582667pt;}
.yb1{bottom:293.333333pt;}
.y163{bottom:299.736000pt;}
.y53{bottom:300.532667pt;}
.y81{bottom:304.000000pt;}
.y127{bottom:305.567333pt;}
.yf5{bottom:305.680000pt;}
.y13c{bottom:306.066667pt;}
.y51{bottom:317.066000pt;}
.y52{bottom:317.066667pt;}
.y126{bottom:322.227333pt;}
.yf4{bottom:322.340000pt;}
.y13b{bottom:322.726667pt;}
.y162{bottom:323.200000pt;}
.y161{bottom:323.298667pt;}
.yb0{bottom:326.010000pt;}
.y4f{bottom:333.599333pt;}
.y50{bottom:333.600000pt;}
.ycb{bottom:337.676667pt;}
.y1e{bottom:338.800000pt;}
.y125{bottom:338.887333pt;}
.yf3{bottom:339.000000pt;}
.y13a{bottom:339.386667pt;}
.y160{bottom:339.958667pt;}
.yaf{bottom:340.006667pt;}
.y80{bottom:347.599333pt;}
.y4e{bottom:350.133333pt;}
.yae{bottom:354.003333pt;}
.y124{bottom:355.547333pt;}
.yf2{bottom:355.660000pt;}
.y139{bottom:356.046667pt;}
.y15f{bottom:356.618667pt;}
.y7e{bottom:364.130000pt;}
.y7f{bottom:364.133333pt;}
.yad{bottom:368.000000pt;}
.y123{bottom:372.207333pt;}
.yf1{bottom:372.320000pt;}
.y138{bottom:372.706667pt;}
.y15e{bottom:380.222667pt;}
.y7d{bottom:380.664000pt;}
.y122{bottom:388.867333pt;}
.yf0{bottom:388.980000pt;}
.y137{bottom:389.366667pt;}
.y1d{bottom:389.460000pt;}
.yca{bottom:395.397333pt;}
.y15d{bottom:396.882667pt;}
.y7c{bottom:397.198000pt;}
.yac{bottom:399.998667pt;}
.y4d{bottom:400.133333pt;}
.y121{bottom:405.527333pt;}
.yef{bottom:405.640000pt;}
.y136{bottom:406.026667pt;}
.y1c{bottom:406.120000pt;}
.y15c{bottom:413.542667pt;}
.y7b{bottom:413.732000pt;}
.yab{bottom:416.666667pt;}
.y120{bottom:422.187333pt;}
.yee{bottom:422.300000pt;}
.y135{bottom:422.686667pt;}
.y1b{bottom:422.780000pt;}
.y7a{bottom:430.266000pt;}
.y15b{bottom:437.146667pt;}
.y11f{bottom:438.847333pt;}
.yed{bottom:438.960000pt;}
.y134{bottom:439.346667pt;}
.y1a{bottom:439.440000pt;}
.y4c{bottom:443.579333pt;}
.y78{bottom:446.791333pt;}
.y79{bottom:446.800000pt;}
.yc9{bottom:453.118000pt;}
.y15a{bottom:453.806667pt;}
.y11e{bottom:455.507333pt;}
.yec{bottom:455.620000pt;}
.y133{bottom:456.006667pt;}
.yaa{bottom:456.026667pt;}
.y19{bottom:456.100000pt;}
.y4b{bottom:460.113333pt;}
.y77{bottom:463.325333pt;}
.y11d{bottom:472.167333pt;}
.yeb{bottom:472.280000pt;}
.y132{bottom:472.666667pt;}
.ya9{bottom:472.686667pt;}
.y18{bottom:472.760000pt;}
.y4a{bottom:476.647333pt;}
.y159{bottom:477.410667pt;}
.y76{bottom:479.859333pt;}
.y11c{bottom:488.827333pt;}
.yea{bottom:488.940000pt;}
.ya8{bottom:489.346667pt;}
.y17{bottom:489.420000pt;}
.y49{bottom:493.181333pt;}
.y158{bottom:494.070667pt;}
.y75{bottom:496.393333pt;}
.y11b{bottom:505.487333pt;}
.ye9{bottom:505.600000pt;}
.ya6{bottom:505.997333pt;}
.ya7{bottom:506.006667pt;}
.y16{bottom:506.080000pt;}
.y182{bottom:509.333333pt;}
.y181{bottom:509.421333pt;}
.y48{bottom:509.715333pt;}
.y157{bottom:510.730667pt;}
.yc8{bottom:510.838667pt;}
.y74{bottom:512.927333pt;}
.y11a{bottom:522.147333pt;}
.ye8{bottom:522.260000pt;}
.ya5{bottom:522.666667pt;}
.y15{bottom:522.740000pt;}
.y180{bottom:526.081333pt;}
.y47{bottom:526.249333pt;}
.y73{bottom:529.461333pt;}
.y156{bottom:534.194667pt;}
.y119{bottom:538.807333pt;}
.ye7{bottom:538.920000pt;}
.y14{bottom:539.400000pt;}
.y17f{bottom:542.741333pt;}
.y46{bottom:542.783333pt;}
.y72{bottom:545.995333pt;}
.y155{bottom:550.854667pt;}
.y118{bottom:555.467333pt;}
.ye6{bottom:555.580000pt;}
.y13{bottom:556.060000pt;}
.ya4{bottom:556.167333pt;}
.y45{bottom:559.317333pt;}
.y17e{bottom:559.401333pt;}
.y71{bottom:562.529333pt;}
.y154{bottom:567.514667pt;}
.yc7{bottom:569.337333pt;}
.y117{bottom:572.127333pt;}
.ye5{bottom:572.240000pt;}
.y12{bottom:572.720000pt;}
.ya3{bottom:572.827333pt;}
.y44{bottom:575.851333pt;}
.y70{bottom:579.063333pt;}
.y17d{bottom:582.739333pt;}
.y153{bottom:584.174667pt;}
.yc6{bottom:585.333333pt;}
.yc5{bottom:585.337333pt;}
.y116{bottom:588.787333pt;}
.ye4{bottom:588.900000pt;}
.y11{bottom:589.380000pt;}
.ya2{bottom:589.487333pt;}
.y43{bottom:592.385333pt;}
.y6f{bottom:595.597333pt;}
.y17c{bottom:599.399333pt;}
.yc4{bottom:601.337333pt;}
.y115{bottom:605.447333pt;}
.ye3{bottom:605.560000pt;}
.y10{bottom:606.040000pt;}
.ya1{bottom:606.147333pt;}
.y152{bottom:607.778667pt;}
.y42{bottom:608.919333pt;}
.y6e{bottom:612.131333pt;}
.yc3{bottom:617.333333pt;}
.y114{bottom:622.107333pt;}
.ye2{bottom:622.220000pt;}
.yf{bottom:622.700000pt;}
.y17b{bottom:622.737333pt;}
.ya0{bottom:622.807333pt;}
.y151{bottom:624.438667pt;}
.y41{bottom:625.453333pt;}
.y6d{bottom:628.665333pt;}
.y113{bottom:638.767333pt;}
.ye1{bottom:638.880000pt;}
.ye{bottom:639.360000pt;}
.y17a{bottom:639.397333pt;}
.y9f{bottom:639.467333pt;}
.y40{bottom:641.987333pt;}
.yc2{bottom:644.834667pt;}
.y6c{bottom:645.199333pt;}
.y6b{bottom:645.203333pt;}
.y150{bottom:648.042667pt;}
.y112{bottom:655.427333pt;}
.ye0{bottom:655.540000pt;}
.yd{bottom:656.020000pt;}
.y179{bottom:656.057333pt;}
.y9e{bottom:656.127333pt;}
.y3f{bottom:658.521333pt;}
.yc1{bottom:660.593333pt;}
.y6a{bottom:661.733333pt;}
.y14f{bottom:664.702667pt;}
.ybf{bottom:670.671167pt;}
.y111{bottom:672.087333pt;}
.ydf{bottom:672.200000pt;}
.yc{bottom:672.680000pt;}
.y9d{bottom:672.787333pt;}
.y3e{bottom:675.055333pt;}
.y178{bottom:679.395333pt;}
.y14e{bottom:688.306667pt;}
.y110{bottom:688.747333pt;}
.yde{bottom:688.860000pt;}
.yb{bottom:689.340000pt;}
.y9c{bottom:689.447333pt;}
.y3d{bottom:691.589333pt;}
.y69{bottom:691.593333pt;}
.y177{bottom:696.055333pt;}
.y14d{bottom:704.966667pt;}
.y10f{bottom:705.407333pt;}
.ydd{bottom:705.520000pt;}
.ya{bottom:706.000000pt;}
.y9b{bottom:706.107333pt;}
.y3c{bottom:708.123333pt;}
.y68{bottom:708.127333pt;}
.y176{bottom:712.715333pt;}
.y10e{bottom:722.067333pt;}
.ydc{bottom:722.180000pt;}
.y9a{bottom:722.767333pt;}
.y3b{bottom:724.657333pt;}
.y67{bottom:724.661333pt;}
.y14c{bottom:728.430667pt;}
.y175{bottom:729.375333pt;}
.ybe{bottom:732.390000pt;}
.y10d{bottom:738.727333pt;}
.ydb{bottom:738.840000pt;}
.y99{bottom:739.427333pt;}
.y3a{bottom:741.191333pt;}
.y66{bottom:741.195333pt;}
.y14b{bottom:745.090667pt;}
.y174{bottom:752.713333pt;}
.y10c{bottom:755.387333pt;}
.yda{bottom:755.500000pt;}
.y9{bottom:756.000000pt;}
.y98{bottom:756.087333pt;}
.y39{bottom:757.725333pt;}
.y65{bottom:757.729333pt;}
.y14a{bottom:761.750667pt;}
.y173{bottom:769.373333pt;}
.y10b{bottom:772.047333pt;}
.yd9{bottom:772.160000pt;}
.y97{bottom:772.747333pt;}
.y38{bottom:774.259333pt;}
.y64{bottom:774.263333pt;}
.y149{bottom:785.354667pt;}
.yc0{bottom:785.532000pt;}
.y172{bottom:786.033333pt;}
.y10a{bottom:788.707333pt;}
.yd8{bottom:788.820000pt;}
.y96{bottom:789.407333pt;}
.y37{bottom:790.793333pt;}
.y63{bottom:790.797333pt;}
.ybd{bottom:794.108833pt;}
.y148{bottom:802.014667pt;}
.y171{bottom:802.693333pt;}
.y109{bottom:805.367333pt;}
.yd7{bottom:805.480000pt;}
.y95{bottom:806.067333pt;}
.y36{bottom:807.327333pt;}
.y62{bottom:807.331333pt;}
.y108{bottom:822.027333pt;}
.yd6{bottom:822.140000pt;}
.y94{bottom:822.727333pt;}
.y35{bottom:823.861333pt;}
.y61{bottom:823.865333pt;}
.y147{bottom:825.618667pt;}
.y170{bottom:826.031333pt;}
.y107{bottom:838.687333pt;}
.yd5{bottom:838.800000pt;}
.y93{bottom:839.387333pt;}
.y34{bottom:840.395333pt;}
.y60{bottom:840.399333pt;}
.y16f{bottom:842.691333pt;}
.y146{bottom:849.222667pt;}
.y106{bottom:855.347333pt;}
.ybc{bottom:855.827667pt;}
.y92{bottom:856.047333pt;}
.y33{bottom:856.929333pt;}
.y5f{bottom:856.933333pt;}
.y145{bottom:865.882667pt;}
.y16e{bottom:866.029333pt;}
.y105{bottom:872.007333pt;}
.y91{bottom:872.707333pt;}
.y32{bottom:873.463333pt;}
.y144{bottom:882.542667pt;}
.y16d{bottom:882.689333pt;}
.y104{bottom:888.667333pt;}
.yd4{bottom:888.800000pt;}
.y90{bottom:889.367333pt;}
.y31{bottom:889.997333pt;}
.y8{bottom:892.666667pt;}
.y16c{bottom:899.349333pt;}
.y103{bottom:905.467333pt;}
.y143{bottom:906.006667pt;}
.y8f{bottom:906.027333pt;}
.y30{bottom:906.531333pt;}
.y7{bottom:916.661333pt;}
.ybb{bottom:917.546500pt;}
.y102{bottom:922.267333pt;}
.y142{bottom:922.666667pt;}
.y8e{bottom:922.687333pt;}
.y2f{bottom:923.065333pt;}
.y101{bottom:939.067333pt;}
.y8d{bottom:939.347333pt;}
.y2e{bottom:939.599333pt;}
.y6{bottom:940.666667pt;}
.y100{bottom:955.867333pt;}
.y8c{bottom:956.007333pt;}
.y2d{bottom:956.133333pt;}
.y5{bottom:972.666667pt;}
.y2c{bottom:972.667333pt;}
.yba{bottom:979.265333pt;}
.y29{bottom:1008.000016pt;}
.y3{bottom:1066.666667pt;}
.y2{bottom:1077.333333pt;}
.y1{bottom:1088.000000pt;}
.h3{height:28.397333pt;}
.he{height:33.237333pt;}
.ha{height:35.493533pt;}
.h2{height:36.736000pt;}
.h6{height:40.234667pt;}
.h1{height:41.875000pt;}
.h15{height:44.791237pt;}
.h10{height:44.836763pt;}
.h16{height:45.058699pt;}
.h17{height:46.253085pt;}
.h14{height:50.062500pt;}
.h12{height:50.442069pt;}
.h11{height:50.584336pt;}
.h7{height:51.216000pt;}
.hc{height:51.871094pt;}
.hf{height:52.032000pt;}
.hd{height:54.061333pt;}
.hb{height:59.067708pt;}
.h8{height:59.752000pt;}
.h9{height:60.704000pt;}
.h13{height:61.145458pt;}
.h19{height:61.161458pt;}
.h18{height:68.485333pt;}
.h4{height:79.669333pt;}
.h5{height:80.938667pt;}
.h0{height:1056.000000pt;}
.w1{width:799.577333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:8.211344pt;}
.x1{left:66.666667pt;}
.x13{left:138.962667pt;}
.x1b{left:148.100732pt;}
.x1a{left:152.296000pt;}
.x7{left:154.666667pt;}
.xf{left:164.106548pt;}
.xe{left:169.534388pt;}
.x14{left:178.224043pt;}
.x1c{left:194.224043pt;}
.xd{left:208.988000pt;}
.x1d{left:210.742667pt;}
.x20{left:224.956821pt;}
.x3{left:262.913333pt;}
.x4{left:298.666667pt;}
.x23{left:310.080000pt;}
.x5{left:314.667660pt;}
.x29{left:319.109333pt;}
.x22{left:323.446667pt;}
.xb{left:329.214667pt;}
.x8{left:330.663619pt;}
.xc{left:341.389333pt;}
.x36{left:346.664612pt;}
.x26{left:358.544000pt;}
.x2b{left:359.870667pt;}
.x15{left:363.390667pt;}
.x1f{left:368.208411pt;}
.x2c{left:397.450667pt;}
.x2d{left:404.038667pt;}
.x24{left:408.997333pt;}
.x37{left:410.336000pt;}
.x18{left:420.560000pt;}
.x38{left:429.102667pt;}
.x27{left:431.614667pt;}
.x28{left:441.988000pt;}
.x2e{left:443.301333pt;}
.x2f{left:453.674667pt;}
.x11{left:457.361333pt;}
.x25{left:459.285333pt;}
.x19{left:463.841333pt;}
.x12{left:474.001333pt;}
.x2a{left:486.448000pt;}
.x34{left:546.828000pt;}
.x35{left:554.772000pt;}
.x1e{left:562.025333pt;}
.x30{left:632.841333pt;}
.x32{left:666.653333pt;}
.x31{left:672.034667pt;}
.x16{left:674.709333pt;}
.x9{left:679.934667pt;}
.x17{left:686.144000pt;}
.xa{left:688.950667pt;}
.x21{left:704.855417pt;}
.x33{left:717.876000pt;}
.x10{left:718.913333pt;}
.x2{left:719.802667pt;}
}




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