
    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_8271c524ea422ea6436e4a74.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_1d8d94c2419ca0c0bbe10663.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.731445;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_a62910d366028265576634ef.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_0c57dafaff455d88091a1f0d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.113281;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_19d20ed6557d43cdb8df0104.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_8271c524ea422ea6436e4a74.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.113281;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_5fea21c5a22a6f06317dceb6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_8271c524ea422ea6436e4a74.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.113281;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_8271c524ea422ea6436e4a74.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.113281;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_8271c524ea422ea6436e4a74.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.113281;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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);}
.v2{vertical-align:-17.982000px;}
.v5{vertical-align:-11.988000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:11.988000px;}
.v4{vertical-align:15.984000px;}
.v1{vertical-align:17.982000px;}
.lsa{letter-spacing:-6.090000px;}
.ls6{letter-spacing:-5.460000px;}
.lsb{letter-spacing:-2.970000px;}
.lsd{letter-spacing:-2.329668px;}
.lsf{letter-spacing:-0.540000px;}
.ls5{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.003072px;}
.lsc{letter-spacing:0.003672px;}
.ls1{letter-spacing:0.004608px;}
.ls12{letter-spacing:0.004800px;}
.ls2{letter-spacing:0.005208px;}
.lse{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.017400px;}
.ls4{letter-spacing:0.023400px;}
.ls9{letter-spacing:1.458204px;}
.ls7{letter-spacing:1.680000px;}
.ls11{letter-spacing:2.960004px;}
.ls10{letter-spacing:7.814004px;}
.ls8{letter-spacing:70.027200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-15.012000px;}
.ws0{word-spacing:-13.344000px;}
.ws23{word-spacing:-11.676000px;}
.wsb{word-spacing:-10.008000px;}
.ws1{word-spacing:-8.751996px;}
.wsa{word-spacing:-6.422328px;}
.ws10{word-spacing:-4.482000px;}
.ws12{word-spacing:-2.808000px;}
.ws20{word-spacing:-2.214000px;}
.ws5{word-spacing:-1.680000px;}
.ws11{word-spacing:-0.918000px;}
.ws13{word-spacing:-0.540000px;}
.wse{word-spacing:-0.486000px;}
.ws4{word-spacing:-0.288000px;}
.ws2{word-spacing:0.000000px;}
.ws1d{word-spacing:0.108000px;}
.ws14{word-spacing:0.540000px;}
.ws1a{word-spacing:0.972000px;}
.ws15{word-spacing:1.350000px;}
.ws21{word-spacing:2.484000px;}
.ws8{word-spacing:2.970000px;}
.ws18{word-spacing:3.564000px;}
.ws1e{word-spacing:3.834000px;}
.ws22{word-spacing:4.158000px;}
.ws3{word-spacing:5.460000px;}
.wsc{word-spacing:5.832000px;}
.ws7{word-spacing:6.090000px;}
.ws1c{word-spacing:7.560000px;}
.ws16{word-spacing:8.100000px;}
.ws9{word-spacing:8.532000px;}
.ws17{word-spacing:9.126000px;}
.ws1f{word-spacing:9.342000px;}
.ws1b{word-spacing:10.530000px;}
.wsf{word-spacing:11.232000px;}
.wsd{word-spacing:12.852000px;}
.ws19{word-spacing:13.392000px;}
._9{margin-left:-6.996000px;}
._3{margin-left:-5.602800px;}
._4{margin-left:-4.460400px;}
._0{margin-left:-3.116400px;}
._7{margin-left:-1.286400px;}
._5{width:1.364400px;}
._2{width:2.872800px;}
._6{width:4.089600px;}
._1{width:5.468400px;}
._8{width:6.724200px;}
._b{width:8.316000px;}
._c{width:9.568800px;}
._a{width:10.627800px;}
._13{width:12.533400px;}
._f{width:13.899600px;}
._19{width:14.994000px;}
._e{width:16.983000px;}
._12{width:18.127800px;}
._16{width:19.148400px;}
._11{width:20.271600px;}
._10{width:22.032000px;}
._17{width:23.322600px;}
._1e{width:25.405800px;}
._1d{width:26.649000px;}
._1b{width:27.938400px;}
._1c{width:29.080800px;}
._1a{width:30.282000px;}
._18{width:38.346000px;}
._14{width:49.231800px;}
._15{width:51.138000px;}
._d{width:70.038000px;}
.fc5{color:rgb(210,32,39);}
.fc4{color:transparent;}
.fc3{color:rgb(37,74,165);}
.fc2{color:rgb(145,143,143);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:20.988000px;}
.fs7{font-size:27.984000px;}
.fs5{font-size:31.482000px;}
.fs3{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y40{bottom:45.676500px;}
.y2{bottom:46.480200px;}
.y3{bottom:46.780950px;}
.y3f{bottom:47.572200px;}
.ye9{bottom:85.039350px;}
.y2c{bottom:85.313850px;}
.y1ee{bottom:85.367550px;}
.y123{bottom:87.495900px;}
.y12e{bottom:87.683400px;}
.y7a{bottom:87.683550px;}
.y1a2{bottom:87.859650px;}
.yb1{bottom:87.949050px;}
.y180{bottom:88.344900px;}
.y196{bottom:88.675650px;}
.ye8{bottom:97.039350px;}
.y2b{bottom:98.813850px;}
.y1ed{bottom:98.867550px;}
.y1a1{bottom:101.359650px;}
.y195{bottom:102.175650px;}
.y122{bottom:105.495900px;}
.y12d{bottom:105.683400px;}
.y79{bottom:105.683550px;}
.yb0{bottom:105.949050px;}
.y17f{bottom:106.344900px;}
.y2a{bottom:112.313850px;}
.y1ec{bottom:112.367550px;}
.y1a0{bottom:114.859650px;}
.y152{bottom:115.326750px;}
.ye7{bottom:115.562850px;}
.y194{bottom:115.675650px;}
.y121{bottom:123.495900px;}
.y12c{bottom:123.683400px;}
.y78{bottom:123.683550px;}
.yaf{bottom:123.949050px;}
.y17e{bottom:124.344900px;}
.y29{bottom:125.813850px;}
.y1eb{bottom:125.867550px;}
.y19f{bottom:128.359650px;}
.y193{bottom:129.175650px;}
.y151{bottom:130.326750px;}
.ye6{bottom:136.822800px;}
.y28{bottom:139.313850px;}
.y1ea{bottom:139.367550px;}
.y120{bottom:141.495900px;}
.y12b{bottom:141.683400px;}
.y77{bottom:141.683550px;}
.y19e{bottom:141.859650px;}
.yae{bottom:141.949050px;}
.y17d{bottom:142.344900px;}
.y192{bottom:142.675650px;}
.y150{bottom:145.326750px;}
.y27{bottom:152.813850px;}
.y1e9{bottom:152.867550px;}
.y19d{bottom:155.359650px;}
.y191{bottom:156.175650px;}
.ye5{bottom:158.082600px;}
.y11f{bottom:159.495900px;}
.y12a{bottom:159.683400px;}
.y76{bottom:159.683550px;}
.yad{bottom:159.949050px;}
.y17c{bottom:160.344900px;}
.y26{bottom:166.313850px;}
.y14f{bottom:166.324800px;}
.y1e8{bottom:166.367550px;}
.y19c{bottom:168.859650px;}
.y190{bottom:169.675650px;}
.y11e{bottom:177.495900px;}
.y129{bottom:177.683400px;}
.y75{bottom:177.683550px;}
.yac{bottom:177.949050px;}
.y17b{bottom:178.344900px;}
.ye4{bottom:179.342400px;}
.y25{bottom:179.813850px;}
.y1e7{bottom:179.867550px;}
.y19b{bottom:182.359650px;}
.y18f{bottom:183.175650px;}
.y14e{bottom:187.584600px;}
.y24{bottom:193.313850px;}
.y1e6{bottom:193.367550px;}
.y11d{bottom:195.495900px;}
.y128{bottom:195.683400px;}
.y74{bottom:195.683550px;}
.y19a{bottom:195.859650px;}
.yab{bottom:195.949050px;}
.y17a{bottom:196.344900px;}
.y18e{bottom:196.675650px;}
.ye3{bottom:200.602200px;}
.y23{bottom:206.813850px;}
.y1e5{bottom:206.867550px;}
.y14d{bottom:208.844400px;}
.y199{bottom:209.359650px;}
.y18d{bottom:210.175650px;}
.y11c{bottom:213.495900px;}
.y127{bottom:213.683400px;}
.y73{bottom:213.683550px;}
.yaa{bottom:213.949050px;}
.y179{bottom:214.344900px;}
.y22{bottom:220.313850px;}
.y1e4{bottom:220.367550px;}
.ye2{bottom:221.338650px;}
.y198{bottom:222.859650px;}
.y18c{bottom:223.675650px;}
.y14c{bottom:230.990100px;}
.y11b{bottom:231.495900px;}
.y126{bottom:231.683400px;}
.y72{bottom:231.683550px;}
.ya9{bottom:231.949050px;}
.y178{bottom:232.344900px;}
.y21{bottom:233.813850px;}
.y1e3{bottom:233.867550px;}
.y197{bottom:236.359650px;}
.y18b{bottom:237.175650px;}
.y14b{bottom:245.990100px;}
.y20{bottom:247.313850px;}
.y1e2{bottom:247.367550px;}
.y11a{bottom:249.495900px;}
.ye1{bottom:249.683400px;}
.y71{bottom:249.683550px;}
.ya8{bottom:249.949050px;}
.y177{bottom:250.344900px;}
.y18a{bottom:250.675650px;}
.y1f{bottom:260.813850px;}
.y1e1{bottom:260.867550px;}
.y14a{bottom:260.990100px;}
.y119{bottom:267.495900px;}
.ye0{bottom:267.683400px;}
.y70{bottom:267.683550px;}
.ya7{bottom:267.949050px;}
.y176{bottom:268.344900px;}
.y1e{bottom:274.313850px;}
.y1e0{bottom:274.367550px;}
.y149{bottom:275.990100px;}
.y118{bottom:285.495900px;}
.ydf{bottom:285.683400px;}
.y6f{bottom:285.683550px;}
.ya6{bottom:285.949050px;}
.y175{bottom:286.344900px;}
.y1d{bottom:287.813850px;}
.y1df{bottom:287.867550px;}
.y148{bottom:301.029450px;}
.y1c{bottom:301.313850px;}
.y1de{bottom:301.367550px;}
.y117{bottom:303.495900px;}
.yde{bottom:303.683400px;}
.y6e{bottom:303.683550px;}
.ya5{bottom:303.949050px;}
.y174{bottom:304.344900px;}
.y1b{bottom:314.813850px;}
.y1dd{bottom:314.867550px;}
.y147{bottom:316.029450px;}
.y116{bottom:321.495900px;}
.ydd{bottom:321.683400px;}
.y6d{bottom:321.683550px;}
.ya4{bottom:321.949050px;}
.y173{bottom:322.344900px;}
.y1a{bottom:328.313850px;}
.y1dc{bottom:328.367550px;}
.y146{bottom:331.029450px;}
.y115{bottom:339.495900px;}
.ydc{bottom:339.683400px;}
.y6c{bottom:339.683550px;}
.ya3{bottom:339.949050px;}
.y172{bottom:340.344900px;}
.y19{bottom:341.813850px;}
.y1db{bottom:341.867550px;}
.y145{bottom:346.029450px;}
.y18{bottom:355.313850px;}
.y1da{bottom:355.367550px;}
.y114{bottom:357.495900px;}
.ydb{bottom:357.683400px;}
.y6b{bottom:357.683550px;}
.ya2{bottom:357.949050px;}
.y171{bottom:358.344900px;}
.y144{bottom:361.029450px;}
.y17{bottom:368.813850px;}
.y1d9{bottom:368.867550px;}
.y113{bottom:375.495900px;}
.yda{bottom:375.683400px;}
.y6a{bottom:375.683550px;}
.ya1{bottom:375.949050px;}
.y143{bottom:376.029450px;}
.y170{bottom:376.344900px;}
.y16{bottom:382.313850px;}
.y1d8{bottom:382.367550px;}
.y112{bottom:393.495900px;}
.yd9{bottom:393.683400px;}
.y69{bottom:393.683550px;}
.ya0{bottom:393.949050px;}
.y16f{bottom:394.344900px;}
.y1d7{bottom:395.867550px;}
.y142{bottom:405.320850px;}
.y1d6{bottom:409.367550px;}
.y111{bottom:411.495900px;}
.yd8{bottom:411.683400px;}
.y68{bottom:411.683550px;}
.y9f{bottom:411.949050px;}
.y16e{bottom:412.344900px;}
.y141{bottom:420.320850px;}
.y1d5{bottom:422.867550px;}
.y110{bottom:429.495900px;}
.yd7{bottom:429.683400px;}
.y67{bottom:429.683550px;}
.y9e{bottom:429.949050px;}
.y16d{bottom:430.344900px;}
.y140{bottom:435.320850px;}
.y1d4{bottom:436.367550px;}
.y10f{bottom:447.495900px;}
.yd6{bottom:447.683400px;}
.y66{bottom:447.683550px;}
.y9d{bottom:447.949050px;}
.y16c{bottom:448.344900px;}
.y1d3{bottom:449.867550px;}
.y13f{bottom:450.320850px;}
.y3d{bottom:458.692650px;}
.y1d2{bottom:463.367550px;}
.y10e{bottom:465.495900px;}
.yd5{bottom:465.683400px;}
.y65{bottom:465.683550px;}
.y9c{bottom:465.949050px;}
.y16b{bottom:466.344900px;}
.y3c{bottom:473.692650px;}
.y13e{bottom:475.596450px;}
.y1d1{bottom:476.867550px;}
.y10d{bottom:483.495900px;}
.yd4{bottom:483.683400px;}
.y64{bottom:483.683550px;}
.y16a{bottom:484.344900px;}
.y3b{bottom:488.692650px;}
.y1d0{bottom:490.367550px;}
.y13d{bottom:490.596450px;}
.y10c{bottom:501.495900px;}
.yd3{bottom:501.683400px;}
.y63{bottom:501.683550px;}
.y9b{bottom:501.949050px;}
.y169{bottom:502.344900px;}
.y3a{bottom:503.692650px;}
.y1cf{bottom:503.867550px;}
.y13c{bottom:512.623950px;}
.y1ce{bottom:517.367550px;}
.y39{bottom:518.692650px;}
.y10b{bottom:519.495900px;}
.yd2{bottom:519.683400px;}
.y62{bottom:519.683550px;}
.y9a{bottom:519.949050px;}
.y168{bottom:520.344900px;}
.y13b{bottom:527.623950px;}
.y1cd{bottom:530.867550px;}
.y38{bottom:533.692650px;}
.y10a{bottom:537.495900px;}
.yd1{bottom:537.683400px;}
.y61{bottom:537.683550px;}
.y99{bottom:537.949050px;}
.y167{bottom:538.344900px;}
.y13a{bottom:542.623950px;}
.y1cc{bottom:544.367550px;}
.y37{bottom:548.692650px;}
.y109{bottom:555.495900px;}
.yd0{bottom:555.683400px;}
.y60{bottom:555.683550px;}
.y98{bottom:555.949050px;}
.y166{bottom:556.344900px;}
.y139{bottom:557.623950px;}
.y1cb{bottom:557.867550px;}
.y36{bottom:563.692650px;}
.y1ca{bottom:571.367550px;}
.y138{bottom:572.623950px;}
.y108{bottom:573.495900px;}
.ycf{bottom:573.683400px;}
.y5f{bottom:573.683550px;}
.y97{bottom:573.949050px;}
.y165{bottom:574.344900px;}
.y35{bottom:578.692650px;}
.y1c9{bottom:584.867550px;}
.y107{bottom:591.495900px;}
.yce{bottom:591.683400px;}
.y5e{bottom:591.683550px;}
.y96{bottom:591.949050px;}
.y164{bottom:592.344900px;}
.y34{bottom:593.692650px;}
.y137{bottom:596.659350px;}
.y1c8{bottom:598.367550px;}
.y33{bottom:608.692650px;}
.y106{bottom:609.495900px;}
.ycd{bottom:609.683400px;}
.y5d{bottom:609.683550px;}
.y95{bottom:609.949050px;}
.y163{bottom:610.344900px;}
.y136{bottom:611.659350px;}
.y1c7{bottom:611.867550px;}
.y32{bottom:623.692650px;}
.y1c6{bottom:625.367550px;}
.y135{bottom:626.659350px;}
.y105{bottom:627.495900px;}
.ycc{bottom:627.683400px;}
.y5c{bottom:627.683550px;}
.y94{bottom:627.949050px;}
.y162{bottom:628.344900px;}
.y1c5{bottom:638.867550px;}
.y134{bottom:641.659350px;}
.y104{bottom:645.495900px;}
.ycb{bottom:645.683400px;}
.y5b{bottom:645.683550px;}
.y93{bottom:645.949050px;}
.y161{bottom:646.344900px;}
.y11{bottom:647.428950px;}
.y1c4{bottom:652.367550px;}
.y10{bottom:662.428950px;}
.y103{bottom:663.495900px;}
.yca{bottom:663.683400px;}
.y5a{bottom:663.683550px;}
.y133{bottom:663.805050px;}
.y92{bottom:663.949050px;}
.y160{bottom:664.344900px;}
.y1c3{bottom:665.867550px;}
.yf{bottom:677.428950px;}
.y1c2{bottom:679.367550px;}
.y102{bottom:681.495900px;}
.yc9{bottom:681.683400px;}
.y59{bottom:681.683550px;}
.y91{bottom:681.949050px;}
.y132{bottom:685.065000px;}
.ye{bottom:692.428950px;}
.y1c1{bottom:692.867550px;}
.y101{bottom:699.495900px;}
.yc8{bottom:699.683400px;}
.y58{bottom:699.683550px;}
.y90{bottom:699.949050px;}
.y15f{bottom:700.344900px;}
.y131{bottom:706.324800px;}
.y1c0{bottom:706.367550px;}
.yd{bottom:707.428950px;}
.y100{bottom:717.495900px;}
.yc7{bottom:717.683400px;}
.y57{bottom:717.683550px;}
.y8f{bottom:717.949050px;}
.y15e{bottom:718.344900px;}
.y1bf{bottom:719.867550px;}
.yc{bottom:722.428950px;}
.y130{bottom:727.322850px;}
.y1be{bottom:733.367550px;}
.yff{bottom:735.495900px;}
.yc6{bottom:735.683400px;}
.y56{bottom:735.683550px;}
.y8e{bottom:735.949050px;}
.y15d{bottom:736.344900px;}
.yb{bottom:737.428950px;}
.y1bd{bottom:746.867550px;}
.ya{bottom:752.428950px;}
.yfe{bottom:753.495900px;}
.yc5{bottom:753.683400px;}
.y55{bottom:753.683550px;}
.y8d{bottom:753.949050px;}
.y15c{bottom:754.344900px;}
.y1bc{bottom:760.367550px;}
.y9{bottom:767.428950px;}
.yfd{bottom:771.495900px;}
.yc4{bottom:771.683400px;}
.y54{bottom:771.683550px;}
.y8c{bottom:771.949050px;}
.y15b{bottom:772.344900px;}
.y1bb{bottom:773.867550px;}
.y8{bottom:782.428950px;}
.y1ba{bottom:787.367550px;}
.yfc{bottom:789.495900px;}
.yc3{bottom:789.683400px;}
.y53{bottom:789.683550px;}
.y8b{bottom:789.949050px;}
.y15a{bottom:790.344900px;}
.y7{bottom:797.428950px;}
.y1b9{bottom:800.867550px;}
.yfb{bottom:807.495900px;}
.yc2{bottom:807.683400px;}
.y52{bottom:807.683550px;}
.y8a{bottom:807.949050px;}
.y159{bottom:808.344900px;}
.y6{bottom:812.428950px;}
.y1b8{bottom:814.367550px;}
.yfa{bottom:825.495900px;}
.yc1{bottom:825.683400px;}
.y51{bottom:825.683550px;}
.y89{bottom:825.949050px;}
.y158{bottom:826.344900px;}
.y5{bottom:827.428950px;}
.y1b7{bottom:827.867550px;}
.y1b6{bottom:841.367550px;}
.y4{bottom:842.428950px;}
.yf9{bottom:843.495900px;}
.yc0{bottom:843.683400px;}
.y50{bottom:843.683550px;}
.y88{bottom:843.949050px;}
.y157{bottom:844.344900px;}
.y1b5{bottom:854.867550px;}
.yf8{bottom:861.495900px;}
.ybf{bottom:861.683400px;}
.y4f{bottom:861.683550px;}
.y87{bottom:861.949050px;}
.y156{bottom:862.344900px;}
.y1b4{bottom:868.367550px;}
.y31{bottom:868.923600px;}
.yf7{bottom:879.495900px;}
.ybe{bottom:879.683400px;}
.y4e{bottom:879.683550px;}
.y86{bottom:879.949050px;}
.y155{bottom:880.344900px;}
.y1b3{bottom:881.867550px;}
.y30{bottom:882.423600px;}
.y1b2{bottom:895.367550px;}
.y2f{bottom:897.423600px;}
.yf6{bottom:897.495900px;}
.ybd{bottom:897.683400px;}
.y4d{bottom:897.683550px;}
.y85{bottom:897.949050px;}
.y154{bottom:898.344900px;}
.y1b1{bottom:908.867550px;}
.y2e{bottom:912.423600px;}
.yf5{bottom:915.495900px;}
.ybc{bottom:915.683400px;}
.y4c{bottom:915.683550px;}
.y84{bottom:915.949050px;}
.y1b0{bottom:922.367550px;}
.y2d{bottom:927.423600px;}
.yf4{bottom:933.495900px;}
.ybb{bottom:933.683400px;}
.y4b{bottom:933.683550px;}
.y83{bottom:933.949050px;}
.y1af{bottom:935.867550px;}
.y189{bottom:939.213300px;}
.y1ae{bottom:949.367550px;}
.yf3{bottom:951.495900px;}
.yba{bottom:951.683400px;}
.y4a{bottom:951.683550px;}
.y82{bottom:951.949050px;}
.y188{bottom:954.478050px;}
.y1ad{bottom:962.867550px;}
.y15{bottom:967.826550px;}
.yf2{bottom:969.495900px;}
.yb9{bottom:969.683400px;}
.y49{bottom:969.683550px;}
.y81{bottom:969.949050px;}
.y3e{bottom:975.023400px;}
.y187{bottom:975.737850px;}
.y1ac{bottom:976.367550px;}
.yf1{bottom:987.495900px;}
.yb8{bottom:987.683400px;}
.y48{bottom:987.683550px;}
.y80{bottom:987.949050px;}
.y1ab{bottom:989.867550px;}
.y186{bottom:996.997800px;}
.y14{bottom:997.826550px;}
.y1aa{bottom:1003.367550px;}
.yf0{bottom:1005.495900px;}
.yb7{bottom:1005.683400px;}
.y47{bottom:1005.683550px;}
.y7f{bottom:1005.949050px;}
.y125{bottom:1010.178900px;}
.y1a9{bottom:1016.867550px;}
.y185{bottom:1018.257600px;}
.yef{bottom:1023.495900px;}
.yb6{bottom:1023.683400px;}
.y46{bottom:1023.683550px;}
.y7e{bottom:1023.949050px;}
.y1a8{bottom:1030.367550px;}
.y184{bottom:1039.517550px;}
.y124{bottom:1041.495900px;}
.yb5{bottom:1041.683400px;}
.y45{bottom:1041.683550px;}
.y7d{bottom:1041.949050px;}
.y1a7{bottom:1043.867550px;}
.y1a6{bottom:1057.367550px;}
.y13{bottom:1057.826550px;}
.yee{bottom:1059.495900px;}
.yb4{bottom:1059.683400px;}
.y44{bottom:1059.683550px;}
.y7c{bottom:1059.949050px;}
.y183{bottom:1060.777350px;}
.y1a5{bottom:1070.867550px;}
.yed{bottom:1077.495900px;}
.yb3{bottom:1077.683400px;}
.y43{bottom:1077.683550px;}
.y7b{bottom:1077.949050px;}
.y182{bottom:1081.775550px;}
.y1a4{bottom:1084.367550px;}
.y12{bottom:1087.826550px;}
.y1{bottom:1094.409750px;}
.yec{bottom:1095.495900px;}
.yb2{bottom:1095.683400px;}
.y42{bottom:1095.683550px;}
.y181{bottom:1096.775550px;}
.y1a3{bottom:1097.867550px;}
.yea{bottom:1137.658800px;}
.yeb{bottom:1137.658950px;}
.y153{bottom:1137.682500px;}
.y12f{bottom:1137.906900px;}
.y41{bottom:1138.698450px;}
.hd{height:20.285438px;}
.hc{height:30.428156px;}
.h8{height:32.273438px;}
.h3{height:34.500000px;}
.h4{height:37.652344px;}
.h2{height:37.918945px;}
.hb{height:38.812500px;}
.h6{height:43.031250px;}
.h5{height:43.335938px;}
.h9{height:48.410156px;}
.ha{height:48.752930px;}
.h7{height:86.671875px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w1{width:850.500000px;}
.w0{width:850.692000px;}
.x0{left:0.000000px;}
.x1{left:6.660600px;}
.xa{left:42.519750px;}
.xf{left:63.779550px;}
.x4{left:85.039350px;}
.xd{left:91.039350px;}
.x5{left:99.921300px;}
.x12{left:106.299300px;}
.x13{left:112.299150px;}
.x14{left:113.539350px;}
.x9{left:127.814850px;}
.x15{left:168.356100px;}
.xe{left:170.334450px;}
.x17{left:172.312800px;}
.x7{left:194.512050px;}
.x3{left:237.140400px;}
.x8{left:392.924400px;}
.xb{left:413.085900px;}
.x16{left:419.085900px;}
.x2{left:435.177450px;}
.xc{left:455.605500px;}
.x10{left:476.865450px;}
.x11{left:498.125250px;}
.x6{left:844.218150px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v5{vertical-align:-10.656000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.656000pt;}
.v4{vertical-align:14.208000pt;}
.v1{vertical-align:15.984000pt;}
.lsa{letter-spacing:-5.413333pt;}
.ls6{letter-spacing:-4.853333pt;}
.lsb{letter-spacing:-2.640000pt;}
.lsd{letter-spacing:-2.070816pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.002731pt;}
.lsc{letter-spacing:0.003264pt;}
.ls1{letter-spacing:0.004096pt;}
.ls12{letter-spacing:0.004267pt;}
.ls2{letter-spacing:0.004629pt;}
.lse{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.015467pt;}
.ls4{letter-spacing:0.020800pt;}
.ls9{letter-spacing:1.296181pt;}
.ls7{letter-spacing:1.493333pt;}
.ls11{letter-spacing:2.631115pt;}
.ls10{letter-spacing:6.945781pt;}
.ls8{letter-spacing:62.246400pt;}
.ws6{word-spacing:-13.344000pt;}
.ws0{word-spacing:-11.861333pt;}
.ws23{word-spacing:-10.378667pt;}
.wsb{word-spacing:-8.896000pt;}
.ws1{word-spacing:-7.779552pt;}
.wsa{word-spacing:-5.708736pt;}
.ws10{word-spacing:-3.984000pt;}
.ws12{word-spacing:-2.496000pt;}
.ws20{word-spacing:-1.968000pt;}
.ws5{word-spacing:-1.493333pt;}
.ws11{word-spacing:-0.816000pt;}
.ws13{word-spacing:-0.480000pt;}
.wse{word-spacing:-0.432000pt;}
.ws4{word-spacing:-0.256000pt;}
.ws2{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.096000pt;}
.ws14{word-spacing:0.480000pt;}
.ws1a{word-spacing:0.864000pt;}
.ws15{word-spacing:1.200000pt;}
.ws21{word-spacing:2.208000pt;}
.ws8{word-spacing:2.640000pt;}
.ws18{word-spacing:3.168000pt;}
.ws1e{word-spacing:3.408000pt;}
.ws22{word-spacing:3.696000pt;}
.ws3{word-spacing:4.853333pt;}
.wsc{word-spacing:5.184000pt;}
.ws7{word-spacing:5.413333pt;}
.ws1c{word-spacing:6.720000pt;}
.ws16{word-spacing:7.200000pt;}
.ws9{word-spacing:7.584000pt;}
.ws17{word-spacing:8.112000pt;}
.ws1f{word-spacing:8.304000pt;}
.ws1b{word-spacing:9.360000pt;}
.wsf{word-spacing:9.984000pt;}
.wsd{word-spacing:11.424000pt;}
.ws19{word-spacing:11.904000pt;}
._9{margin-left:-6.218667pt;}
._3{margin-left:-4.980267pt;}
._4{margin-left:-3.964800pt;}
._0{margin-left:-2.770133pt;}
._7{margin-left:-1.143467pt;}
._5{width:1.212800pt;}
._2{width:2.553600pt;}
._6{width:3.635200pt;}
._1{width:4.860800pt;}
._8{width:5.977067pt;}
._b{width:7.392000pt;}
._c{width:8.505600pt;}
._a{width:9.446933pt;}
._13{width:11.140800pt;}
._f{width:12.355200pt;}
._19{width:13.328000pt;}
._e{width:15.096000pt;}
._12{width:16.113600pt;}
._16{width:17.020800pt;}
._11{width:18.019200pt;}
._10{width:19.584000pt;}
._17{width:20.731200pt;}
._1e{width:22.582933pt;}
._1d{width:23.688000pt;}
._1b{width:24.834133pt;}
._1c{width:25.849600pt;}
._1a{width:26.917333pt;}
._18{width:34.085333pt;}
._14{width:43.761600pt;}
._15{width:45.456000pt;}
._d{width:62.256000pt;}
.fs6{font-size:18.656000pt;}
.fs7{font-size:24.874667pt;}
.fs5{font-size:27.984000pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:40.601333pt;}
.y2{bottom:41.315733pt;}
.y3{bottom:41.583067pt;}
.y3f{bottom:42.286400pt;}
.ye9{bottom:75.590533pt;}
.y2c{bottom:75.834533pt;}
.y1ee{bottom:75.882267pt;}
.y123{bottom:77.774133pt;}
.y12e{bottom:77.940800pt;}
.y7a{bottom:77.940933pt;}
.y1a2{bottom:78.097467pt;}
.yb1{bottom:78.176933pt;}
.y180{bottom:78.528800pt;}
.y196{bottom:78.822800pt;}
.ye8{bottom:86.257200pt;}
.y2b{bottom:87.834533pt;}
.y1ed{bottom:87.882267pt;}
.y1a1{bottom:90.097467pt;}
.y195{bottom:90.822800pt;}
.y122{bottom:93.774133pt;}
.y12d{bottom:93.940800pt;}
.y79{bottom:93.940933pt;}
.yb0{bottom:94.176933pt;}
.y17f{bottom:94.528800pt;}
.y2a{bottom:99.834533pt;}
.y1ec{bottom:99.882267pt;}
.y1a0{bottom:102.097467pt;}
.y152{bottom:102.512667pt;}
.ye7{bottom:102.722533pt;}
.y194{bottom:102.822800pt;}
.y121{bottom:109.774133pt;}
.y12c{bottom:109.940800pt;}
.y78{bottom:109.940933pt;}
.yaf{bottom:110.176933pt;}
.y17e{bottom:110.528800pt;}
.y29{bottom:111.834533pt;}
.y1eb{bottom:111.882267pt;}
.y19f{bottom:114.097467pt;}
.y193{bottom:114.822800pt;}
.y151{bottom:115.846000pt;}
.ye6{bottom:121.620267pt;}
.y28{bottom:123.834533pt;}
.y1ea{bottom:123.882267pt;}
.y120{bottom:125.774133pt;}
.y12b{bottom:125.940800pt;}
.y77{bottom:125.940933pt;}
.y19e{bottom:126.097467pt;}
.yae{bottom:126.176933pt;}
.y17d{bottom:126.528800pt;}
.y192{bottom:126.822800pt;}
.y150{bottom:129.179333pt;}
.y27{bottom:135.834533pt;}
.y1e9{bottom:135.882267pt;}
.y19d{bottom:138.097467pt;}
.y191{bottom:138.822800pt;}
.ye5{bottom:140.517867pt;}
.y11f{bottom:141.774133pt;}
.y12a{bottom:141.940800pt;}
.y76{bottom:141.940933pt;}
.yad{bottom:142.176933pt;}
.y17c{bottom:142.528800pt;}
.y26{bottom:147.834533pt;}
.y14f{bottom:147.844267pt;}
.y1e8{bottom:147.882267pt;}
.y19c{bottom:150.097467pt;}
.y190{bottom:150.822800pt;}
.y11e{bottom:157.774133pt;}
.y129{bottom:157.940800pt;}
.y75{bottom:157.940933pt;}
.yac{bottom:158.176933pt;}
.y17b{bottom:158.528800pt;}
.ye4{bottom:159.415467pt;}
.y25{bottom:159.834533pt;}
.y1e7{bottom:159.882267pt;}
.y19b{bottom:162.097467pt;}
.y18f{bottom:162.822800pt;}
.y14e{bottom:166.741867pt;}
.y24{bottom:171.834533pt;}
.y1e6{bottom:171.882267pt;}
.y11d{bottom:173.774133pt;}
.y128{bottom:173.940800pt;}
.y74{bottom:173.940933pt;}
.y19a{bottom:174.097467pt;}
.yab{bottom:174.176933pt;}
.y17a{bottom:174.528800pt;}
.y18e{bottom:174.822800pt;}
.ye3{bottom:178.313067pt;}
.y23{bottom:183.834533pt;}
.y1e5{bottom:183.882267pt;}
.y14d{bottom:185.639467pt;}
.y199{bottom:186.097467pt;}
.y18d{bottom:186.822800pt;}
.y11c{bottom:189.774133pt;}
.y127{bottom:189.940800pt;}
.y73{bottom:189.940933pt;}
.yaa{bottom:190.176933pt;}
.y179{bottom:190.528800pt;}
.y22{bottom:195.834533pt;}
.y1e4{bottom:195.882267pt;}
.ye2{bottom:196.745467pt;}
.y198{bottom:198.097467pt;}
.y18c{bottom:198.822800pt;}
.y14c{bottom:205.324533pt;}
.y11b{bottom:205.774133pt;}
.y126{bottom:205.940800pt;}
.y72{bottom:205.940933pt;}
.ya9{bottom:206.176933pt;}
.y178{bottom:206.528800pt;}
.y21{bottom:207.834533pt;}
.y1e3{bottom:207.882267pt;}
.y197{bottom:210.097467pt;}
.y18b{bottom:210.822800pt;}
.y14b{bottom:218.657867pt;}
.y20{bottom:219.834533pt;}
.y1e2{bottom:219.882267pt;}
.y11a{bottom:221.774133pt;}
.ye1{bottom:221.940800pt;}
.y71{bottom:221.940933pt;}
.ya8{bottom:222.176933pt;}
.y177{bottom:222.528800pt;}
.y18a{bottom:222.822800pt;}
.y1f{bottom:231.834533pt;}
.y1e1{bottom:231.882267pt;}
.y14a{bottom:231.991200pt;}
.y119{bottom:237.774133pt;}
.ye0{bottom:237.940800pt;}
.y70{bottom:237.940933pt;}
.ya7{bottom:238.176933pt;}
.y176{bottom:238.528800pt;}
.y1e{bottom:243.834533pt;}
.y1e0{bottom:243.882267pt;}
.y149{bottom:245.324533pt;}
.y118{bottom:253.774133pt;}
.ydf{bottom:253.940800pt;}
.y6f{bottom:253.940933pt;}
.ya6{bottom:254.176933pt;}
.y175{bottom:254.528800pt;}
.y1d{bottom:255.834533pt;}
.y1df{bottom:255.882267pt;}
.y148{bottom:267.581733pt;}
.y1c{bottom:267.834533pt;}
.y1de{bottom:267.882267pt;}
.y117{bottom:269.774133pt;}
.yde{bottom:269.940800pt;}
.y6e{bottom:269.940933pt;}
.ya5{bottom:270.176933pt;}
.y174{bottom:270.528800pt;}
.y1b{bottom:279.834533pt;}
.y1dd{bottom:279.882267pt;}
.y147{bottom:280.915067pt;}
.y116{bottom:285.774133pt;}
.ydd{bottom:285.940800pt;}
.y6d{bottom:285.940933pt;}
.ya4{bottom:286.176933pt;}
.y173{bottom:286.528800pt;}
.y1a{bottom:291.834533pt;}
.y1dc{bottom:291.882267pt;}
.y146{bottom:294.248400pt;}
.y115{bottom:301.774133pt;}
.ydc{bottom:301.940800pt;}
.y6c{bottom:301.940933pt;}
.ya3{bottom:302.176933pt;}
.y172{bottom:302.528800pt;}
.y19{bottom:303.834533pt;}
.y1db{bottom:303.882267pt;}
.y145{bottom:307.581733pt;}
.y18{bottom:315.834533pt;}
.y1da{bottom:315.882267pt;}
.y114{bottom:317.774133pt;}
.ydb{bottom:317.940800pt;}
.y6b{bottom:317.940933pt;}
.ya2{bottom:318.176933pt;}
.y171{bottom:318.528800pt;}
.y144{bottom:320.915067pt;}
.y17{bottom:327.834533pt;}
.y1d9{bottom:327.882267pt;}
.y113{bottom:333.774133pt;}
.yda{bottom:333.940800pt;}
.y6a{bottom:333.940933pt;}
.ya1{bottom:334.176933pt;}
.y143{bottom:334.248400pt;}
.y170{bottom:334.528800pt;}
.y16{bottom:339.834533pt;}
.y1d8{bottom:339.882267pt;}
.y112{bottom:349.774133pt;}
.yd9{bottom:349.940800pt;}
.y69{bottom:349.940933pt;}
.ya0{bottom:350.176933pt;}
.y16f{bottom:350.528800pt;}
.y1d7{bottom:351.882267pt;}
.y142{bottom:360.285200pt;}
.y1d6{bottom:363.882267pt;}
.y111{bottom:365.774133pt;}
.yd8{bottom:365.940800pt;}
.y68{bottom:365.940933pt;}
.y9f{bottom:366.176933pt;}
.y16e{bottom:366.528800pt;}
.y141{bottom:373.618533pt;}
.y1d5{bottom:375.882267pt;}
.y110{bottom:381.774133pt;}
.yd7{bottom:381.940800pt;}
.y67{bottom:381.940933pt;}
.y9e{bottom:382.176933pt;}
.y16d{bottom:382.528800pt;}
.y140{bottom:386.951867pt;}
.y1d4{bottom:387.882267pt;}
.y10f{bottom:397.774133pt;}
.yd6{bottom:397.940800pt;}
.y66{bottom:397.940933pt;}
.y9d{bottom:398.176933pt;}
.y16c{bottom:398.528800pt;}
.y1d3{bottom:399.882267pt;}
.y13f{bottom:400.285200pt;}
.y3d{bottom:407.726800pt;}
.y1d2{bottom:411.882267pt;}
.y10e{bottom:413.774133pt;}
.yd5{bottom:413.940800pt;}
.y65{bottom:413.940933pt;}
.y9c{bottom:414.176933pt;}
.y16b{bottom:414.528800pt;}
.y3c{bottom:421.060133pt;}
.y13e{bottom:422.752400pt;}
.y1d1{bottom:423.882267pt;}
.y10d{bottom:429.774133pt;}
.yd4{bottom:429.940800pt;}
.y64{bottom:429.940933pt;}
.y16a{bottom:430.528800pt;}
.y3b{bottom:434.393467pt;}
.y1d0{bottom:435.882267pt;}
.y13d{bottom:436.085733pt;}
.y10c{bottom:445.774133pt;}
.yd3{bottom:445.940800pt;}
.y63{bottom:445.940933pt;}
.y9b{bottom:446.176933pt;}
.y169{bottom:446.528800pt;}
.y3a{bottom:447.726800pt;}
.y1cf{bottom:447.882267pt;}
.y13c{bottom:455.665733pt;}
.y1ce{bottom:459.882267pt;}
.y39{bottom:461.060133pt;}
.y10b{bottom:461.774133pt;}
.yd2{bottom:461.940800pt;}
.y62{bottom:461.940933pt;}
.y9a{bottom:462.176933pt;}
.y168{bottom:462.528800pt;}
.y13b{bottom:468.999067pt;}
.y1cd{bottom:471.882267pt;}
.y38{bottom:474.393467pt;}
.y10a{bottom:477.774133pt;}
.yd1{bottom:477.940800pt;}
.y61{bottom:477.940933pt;}
.y99{bottom:478.176933pt;}
.y167{bottom:478.528800pt;}
.y13a{bottom:482.332400pt;}
.y1cc{bottom:483.882267pt;}
.y37{bottom:487.726800pt;}
.y109{bottom:493.774133pt;}
.yd0{bottom:493.940800pt;}
.y60{bottom:493.940933pt;}
.y98{bottom:494.176933pt;}
.y166{bottom:494.528800pt;}
.y139{bottom:495.665733pt;}
.y1cb{bottom:495.882267pt;}
.y36{bottom:501.060133pt;}
.y1ca{bottom:507.882267pt;}
.y138{bottom:508.999067pt;}
.y108{bottom:509.774133pt;}
.ycf{bottom:509.940800pt;}
.y5f{bottom:509.940933pt;}
.y97{bottom:510.176933pt;}
.y165{bottom:510.528800pt;}
.y35{bottom:514.393467pt;}
.y1c9{bottom:519.882267pt;}
.y107{bottom:525.774133pt;}
.yce{bottom:525.940800pt;}
.y5e{bottom:525.940933pt;}
.y96{bottom:526.176933pt;}
.y164{bottom:526.528800pt;}
.y34{bottom:527.726800pt;}
.y137{bottom:530.363867pt;}
.y1c8{bottom:531.882267pt;}
.y33{bottom:541.060133pt;}
.y106{bottom:541.774133pt;}
.ycd{bottom:541.940800pt;}
.y5d{bottom:541.940933pt;}
.y95{bottom:542.176933pt;}
.y163{bottom:542.528800pt;}
.y136{bottom:543.697200pt;}
.y1c7{bottom:543.882267pt;}
.y32{bottom:554.393467pt;}
.y1c6{bottom:555.882267pt;}
.y135{bottom:557.030533pt;}
.y105{bottom:557.774133pt;}
.ycc{bottom:557.940800pt;}
.y5c{bottom:557.940933pt;}
.y94{bottom:558.176933pt;}
.y162{bottom:558.528800pt;}
.y1c5{bottom:567.882267pt;}
.y134{bottom:570.363867pt;}
.y104{bottom:573.774133pt;}
.ycb{bottom:573.940800pt;}
.y5b{bottom:573.940933pt;}
.y93{bottom:574.176933pt;}
.y161{bottom:574.528800pt;}
.y11{bottom:575.492400pt;}
.y1c4{bottom:579.882267pt;}
.y10{bottom:588.825733pt;}
.y103{bottom:589.774133pt;}
.yca{bottom:589.940800pt;}
.y5a{bottom:589.940933pt;}
.y133{bottom:590.048933pt;}
.y92{bottom:590.176933pt;}
.y160{bottom:590.528800pt;}
.y1c3{bottom:591.882267pt;}
.yf{bottom:602.159067pt;}
.y1c2{bottom:603.882267pt;}
.y102{bottom:605.774133pt;}
.yc9{bottom:605.940800pt;}
.y59{bottom:605.940933pt;}
.y91{bottom:606.176933pt;}
.y132{bottom:608.946667pt;}
.ye{bottom:615.492400pt;}
.y1c1{bottom:615.882267pt;}
.y101{bottom:621.774133pt;}
.yc8{bottom:621.940800pt;}
.y58{bottom:621.940933pt;}
.y90{bottom:622.176933pt;}
.y15f{bottom:622.528800pt;}
.y131{bottom:627.844267pt;}
.y1c0{bottom:627.882267pt;}
.yd{bottom:628.825733pt;}
.y100{bottom:637.774133pt;}
.yc7{bottom:637.940800pt;}
.y57{bottom:637.940933pt;}
.y8f{bottom:638.176933pt;}
.y15e{bottom:638.528800pt;}
.y1bf{bottom:639.882267pt;}
.yc{bottom:642.159067pt;}
.y130{bottom:646.509200pt;}
.y1be{bottom:651.882267pt;}
.yff{bottom:653.774133pt;}
.yc6{bottom:653.940800pt;}
.y56{bottom:653.940933pt;}
.y8e{bottom:654.176933pt;}
.y15d{bottom:654.528800pt;}
.yb{bottom:655.492400pt;}
.y1bd{bottom:663.882267pt;}
.ya{bottom:668.825733pt;}
.yfe{bottom:669.774133pt;}
.yc5{bottom:669.940800pt;}
.y55{bottom:669.940933pt;}
.y8d{bottom:670.176933pt;}
.y15c{bottom:670.528800pt;}
.y1bc{bottom:675.882267pt;}
.y9{bottom:682.159067pt;}
.yfd{bottom:685.774133pt;}
.yc4{bottom:685.940800pt;}
.y54{bottom:685.940933pt;}
.y8c{bottom:686.176933pt;}
.y15b{bottom:686.528800pt;}
.y1bb{bottom:687.882267pt;}
.y8{bottom:695.492400pt;}
.y1ba{bottom:699.882267pt;}
.yfc{bottom:701.774133pt;}
.yc3{bottom:701.940800pt;}
.y53{bottom:701.940933pt;}
.y8b{bottom:702.176933pt;}
.y15a{bottom:702.528800pt;}
.y7{bottom:708.825733pt;}
.y1b9{bottom:711.882267pt;}
.yfb{bottom:717.774133pt;}
.yc2{bottom:717.940800pt;}
.y52{bottom:717.940933pt;}
.y8a{bottom:718.176933pt;}
.y159{bottom:718.528800pt;}
.y6{bottom:722.159067pt;}
.y1b8{bottom:723.882267pt;}
.yfa{bottom:733.774133pt;}
.yc1{bottom:733.940800pt;}
.y51{bottom:733.940933pt;}
.y89{bottom:734.176933pt;}
.y158{bottom:734.528800pt;}
.y5{bottom:735.492400pt;}
.y1b7{bottom:735.882267pt;}
.y1b6{bottom:747.882267pt;}
.y4{bottom:748.825733pt;}
.yf9{bottom:749.774133pt;}
.yc0{bottom:749.940800pt;}
.y50{bottom:749.940933pt;}
.y88{bottom:750.176933pt;}
.y157{bottom:750.528800pt;}
.y1b5{bottom:759.882267pt;}
.yf8{bottom:765.774133pt;}
.ybf{bottom:765.940800pt;}
.y4f{bottom:765.940933pt;}
.y87{bottom:766.176933pt;}
.y156{bottom:766.528800pt;}
.y1b4{bottom:771.882267pt;}
.y31{bottom:772.376533pt;}
.yf7{bottom:781.774133pt;}
.ybe{bottom:781.940800pt;}
.y4e{bottom:781.940933pt;}
.y86{bottom:782.176933pt;}
.y155{bottom:782.528800pt;}
.y1b3{bottom:783.882267pt;}
.y30{bottom:784.376533pt;}
.y1b2{bottom:795.882267pt;}
.y2f{bottom:797.709867pt;}
.yf6{bottom:797.774133pt;}
.ybd{bottom:797.940800pt;}
.y4d{bottom:797.940933pt;}
.y85{bottom:798.176933pt;}
.y154{bottom:798.528800pt;}
.y1b1{bottom:807.882267pt;}
.y2e{bottom:811.043200pt;}
.yf5{bottom:813.774133pt;}
.ybc{bottom:813.940800pt;}
.y4c{bottom:813.940933pt;}
.y84{bottom:814.176933pt;}
.y1b0{bottom:819.882267pt;}
.y2d{bottom:824.376533pt;}
.yf4{bottom:829.774133pt;}
.ybb{bottom:829.940800pt;}
.y4b{bottom:829.940933pt;}
.y83{bottom:830.176933pt;}
.y1af{bottom:831.882267pt;}
.y189{bottom:834.856267pt;}
.y1ae{bottom:843.882267pt;}
.yf3{bottom:845.774133pt;}
.yba{bottom:845.940800pt;}
.y4a{bottom:845.940933pt;}
.y82{bottom:846.176933pt;}
.y188{bottom:848.424933pt;}
.y1ad{bottom:855.882267pt;}
.y15{bottom:860.290267pt;}
.yf2{bottom:861.774133pt;}
.yb9{bottom:861.940800pt;}
.y49{bottom:861.940933pt;}
.y81{bottom:862.176933pt;}
.y3e{bottom:866.687467pt;}
.y187{bottom:867.322533pt;}
.y1ac{bottom:867.882267pt;}
.yf1{bottom:877.774133pt;}
.yb8{bottom:877.940800pt;}
.y48{bottom:877.940933pt;}
.y80{bottom:878.176933pt;}
.y1ab{bottom:879.882267pt;}
.y186{bottom:886.220267pt;}
.y14{bottom:886.956933pt;}
.y1aa{bottom:891.882267pt;}
.yf0{bottom:893.774133pt;}
.yb7{bottom:893.940800pt;}
.y47{bottom:893.940933pt;}
.y7f{bottom:894.176933pt;}
.y125{bottom:897.936800pt;}
.y1a9{bottom:903.882267pt;}
.y185{bottom:905.117867pt;}
.yef{bottom:909.774133pt;}
.yb6{bottom:909.940800pt;}
.y46{bottom:909.940933pt;}
.y7e{bottom:910.176933pt;}
.y1a8{bottom:915.882267pt;}
.y184{bottom:924.015600pt;}
.y124{bottom:925.774133pt;}
.yb5{bottom:925.940800pt;}
.y45{bottom:925.940933pt;}
.y7d{bottom:926.176933pt;}
.y1a7{bottom:927.882267pt;}
.y1a6{bottom:939.882267pt;}
.y13{bottom:940.290267pt;}
.yee{bottom:941.774133pt;}
.yb4{bottom:941.940800pt;}
.y44{bottom:941.940933pt;}
.y7c{bottom:942.176933pt;}
.y183{bottom:942.913200pt;}
.y1a5{bottom:951.882267pt;}
.yed{bottom:957.774133pt;}
.yb3{bottom:957.940800pt;}
.y43{bottom:957.940933pt;}
.y7b{bottom:958.176933pt;}
.y182{bottom:961.578267pt;}
.y1a4{bottom:963.882267pt;}
.y12{bottom:966.956933pt;}
.y1{bottom:972.808667pt;}
.yec{bottom:973.774133pt;}
.yb2{bottom:973.940800pt;}
.y42{bottom:973.940933pt;}
.y181{bottom:974.911600pt;}
.y1a3{bottom:975.882267pt;}
.yea{bottom:1011.252267pt;}
.yeb{bottom:1011.252400pt;}
.y153{bottom:1011.273333pt;}
.y12f{bottom:1011.472800pt;}
.y41{bottom:1012.176400pt;}
.hd{height:18.031500pt;}
.hc{height:27.047250pt;}
.h8{height:28.687500pt;}
.h3{height:30.666667pt;}
.h4{height:33.468750pt;}
.h2{height:33.705729pt;}
.hb{height:34.500000pt;}
.h6{height:38.250000pt;}
.h5{height:38.520833pt;}
.h9{height:43.031250pt;}
.ha{height:43.335938pt;}
.h7{height:77.041667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w1{width:756.000000pt;}
.w0{width:756.170667pt;}
.x0{left:0.000000pt;}
.x1{left:5.920533pt;}
.xa{left:37.795333pt;}
.xf{left:56.692933pt;}
.x4{left:75.590533pt;}
.xd{left:80.923867pt;}
.x5{left:88.818933pt;}
.x12{left:94.488267pt;}
.x13{left:99.821467pt;}
.x14{left:100.923867pt;}
.x9{left:113.613200pt;}
.x15{left:149.649867pt;}
.xe{left:151.408400pt;}
.x17{left:153.166933pt;}
.x7{left:172.899600pt;}
.x3{left:210.791467pt;}
.x8{left:349.266133pt;}
.xb{left:367.187467pt;}
.x16{left:372.520800pt;}
.x2{left:386.824400pt;}
.xc{left:404.982667pt;}
.x10{left:423.880400pt;}
.x11{left:442.778000pt;}
.x6{left:750.416133pt;}
}




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