
    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_4d60736ec820516b6e5a8dcf.woff')format("woff");}.ff1{font-family:ff1;line-height:0.952000;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_4d60736ec820516b6e5a8dcf.woff')format("woff");}.ff2{font-family:ff2;line-height:0.952000;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_73bf7b62eac4dd9adbc1c1f1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.034000;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_39b936b5208ea84398d39d92.woff')format("woff");}.ff4{font-family:ff4;line-height:1.034000;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_4d60736ec820516b6e5a8dcf.woff')format("woff");}.ff5{font-family:ff5;line-height:0.952000;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_4d60736ec820516b6e5a8dcf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_36887d894dd5f8cf4a1757d3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.925781;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_0b51534eee6adebf448174ed.woff')format("woff");}.ff8{font-family:ff8;line-height:0.722000;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_6f32d04848f0ef1b7d2ee3d7.woff')format("woff");}.ff9{font-family:ff9;line-height:0.957000;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_70b18c884ce0cf6e29231330.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4109b3d51c7c5c764f3c9ed3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.957000;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_19777058285ffa70f309bff3.woff')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_036a075c5ef23d483a9ca1d3.woff')format("woff");}.ffd{font-family:ffd;line-height:0.696289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_073010d54af5598b026d9965.woff')format("woff");}.ffe{font-family:ffe;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_06c7364ecae7dc192ff8e409.woff')format("woff");}.fff{font-family:fff;line-height:0.666504;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;}
.m1{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);}
.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);}
.v2{vertical-align:-19.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.200000px;}
.v1{vertical-align:27.000000px;}
.ls11{letter-spacing:-1.440000px;}
.ls15{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-0.960000px;}
.ls17{letter-spacing:-0.810000px;}
.ls1f{letter-spacing:-0.768000px;}
.ls1a{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.480000px;}
.ls16{letter-spacing:-0.270000px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.002400px;}
.lsc{letter-spacing:0.003000px;}
.lse{letter-spacing:0.005400px;}
.ls13{letter-spacing:0.045000px;}
.ls12{letter-spacing:0.054000px;}
.ls9{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.162000px;}
.ls7{letter-spacing:0.189000px;}
.ls3{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.217200px;}
.ls2{letter-spacing:0.270000px;}
.ls0{letter-spacing:0.297000px;}
.ls5{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.378000px;}
.ls1{letter-spacing:0.432000px;}
.ls19{letter-spacing:0.480000px;}
.ls14{letter-spacing:0.486000px;}
.ls6{letter-spacing:0.540000px;}
.ls20{letter-spacing:0.553800px;}
.ls1c{letter-spacing:0.594000px;}
.ls21{letter-spacing:0.621000px;}
.ls1e{letter-spacing:0.645000px;}
.ls1d{letter-spacing:0.646200px;}
.ls22{letter-spacing:0.648000px;}
.lsb{letter-spacing:0.702000px;}
.ls18{letter-spacing:196.286400px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(23,111,192),0 0.015em rgb(23,111,192),0.015em 0 rgb(23,111,192),0 -0.015em  rgb(23,111,192);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(23,111,192);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1b{word-spacing:-208.622400px;}
.ws1f{word-spacing:-14.580000px;}
.ws15{word-spacing:-13.932000px;}
.wsb{word-spacing:-13.878000px;}
.ws10{word-spacing:-12.336000px;}
.ws0{word-spacing:-9.828000px;}
.ws12{word-spacing:-7.191888px;}
.ws7{word-spacing:-0.702000px;}
.ws22{word-spacing:-0.648000px;}
.ws20{word-spacing:-0.594000px;}
.ws6{word-spacing:-0.540000px;}
.ws17{word-spacing:-0.486000px;}
.ws1d{word-spacing:-0.480000px;}
.ws3{word-spacing:-0.432000px;}
.wsa{word-spacing:-0.378000px;}
.ws2{word-spacing:-0.324000px;}
.ws4{word-spacing:-0.270000px;}
.ws5{word-spacing:-0.216000px;}
.ws8{word-spacing:-0.162000px;}
.ws9{word-spacing:-0.108000px;}
.wsc{word-spacing:-0.054000px;}
.ws11{word-spacing:-0.048000px;}
.ws1{word-spacing:0.000000px;}
.ws18{word-spacing:0.270000px;}
.wsf{word-spacing:0.480000px;}
.ws1e{word-spacing:0.540000px;}
.ws21{word-spacing:0.768000px;}
.ws19{word-spacing:0.810000px;}
.ws13{word-spacing:0.960000px;}
.ws16{word-spacing:1.080000px;}
.ws14{word-spacing:1.440000px;}
.ws1c{word-spacing:159.134400px;}
.ws1a{word-spacing:183.902400px;}
.wsd{word-spacing:452.938200px;}
.wse{word-spacing:745.210200px;}
._1c{margin-left:-196.286400px;}
._7{margin-left:-13.548000px;}
._30{margin-left:-12.416400px;}
._1{margin-left:-4.428000px;}
._4{margin-left:-3.292200px;}
._2{margin-left:-1.872000px;}
._0{width:1.680000px;}
._3{width:3.153600px;}
._5{width:4.935600px;}
._6{width:6.220800px;}
._2f{width:7.344000px;}
._31{width:8.532000px;}
._17{width:17.269200px;}
._8{width:23.112000px;}
._19{width:53.247000px;}
._24{width:69.423000px;}
._11{width:85.753800px;}
._1a{width:94.239000px;}
._2c{width:140.679000px;}
._16{width:144.025800px;}
._29{width:146.654400px;}
._20{width:171.470400px;}
._e{width:174.265800px;}
._1e{width:196.286400px;}
._2a{width:211.575000px;}
._c{width:219.337800px;}
._2b{width:249.831000px;}
._f{width:264.553800px;}
._12{width:268.105800px;}
._22{width:317.847000px;}
._21{width:326.535000px;}
._13{width:375.769200px;}
._14{width:391.945800px;}
._15{width:395.593800px;}
._1d{width:412.551000px;}
._d{width:437.161800px;}
._9{width:440.281800px;}
._2e{width:441.975000px;}
._10{width:444.121800px;}
._26{width:536.871000px;}
._18{width:548.682000px;}
._b{width:553.273800px;}
._2d{width:604.455000px;}
._27{width:615.879000px;}
._25{width:669.831000px;}
._23{width:749.271000px;}
._a{width:825.529800px;}
._1f{width:907.362000px;}
._28{width:1098.882000px;}
._1b{width:1148.679000px;}
.fc3{color:transparent;}
.fc2{color:rgb(23,111,192);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:27.984000px;}
.fs5{font-size:39.064800px;}
.fs3{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:78.000000px;}
.y162{bottom:-0.353250px;}
.y0{bottom:0.000000px;}
.y1{bottom:45.610500px;}
.y21{bottom:76.110300px;}
.y160{bottom:76.653900px;}
.y79{bottom:79.285950px;}
.ye9{bottom:80.413350px;}
.y12b{bottom:80.789400px;}
.yb0{bottom:81.018150px;}
.y42{bottom:81.529500px;}
.y108{bottom:81.845850px;}
.y150{bottom:84.693900px;}
.y15f{bottom:91.053900px;}
.y20{bottom:94.110300px;}
.y12a{bottom:94.289400px;}
.y107{bottom:95.345850px;}
.y77{bottom:98.719800px;}
.ye8{bottom:100.092300px;}
.y40{bottom:102.664200px;}
.y15e{bottom:105.850800px;}
.y14f{bottom:106.253850px;}
.yae{bottom:107.022300px;}
.y106{bottom:108.845850px;}
.y36{bottom:112.110300px;}
.y76{bottom:112.219800px;}
.ye7{bottom:113.592300px;}
.y129{bottom:115.424100px;}
.y3f{bottom:116.164200px;}
.y15d{bottom:119.350800px;}
.yad{bottom:120.522300px;}
.y105{bottom:122.345850px;}
.y75{bottom:125.719800px;}
.ye4{bottom:126.950550px;}
.y14e{bottom:127.813800px;}
.y128{bottom:128.924100px;}
.y3e{bottom:129.664200px;}
.y35{bottom:130.110300px;}
.y15c{bottom:132.850800px;}
.yac{bottom:134.022300px;}
.y104{bottom:135.845850px;}
.y74{bottom:139.219800px;}
.ye3{bottom:140.450550px;}
.yf7{bottom:142.661250px;}
.y3d{bottom:143.164200px;}
.y15b{bottom:146.350800px;}
.yab{bottom:147.522300px;}
.yaf{bottom:147.590700px;}
.y1f{bottom:148.110300px;}
.y14d{bottom:149.373750px;}
.y127{bottom:150.058950px;}
.y73{bottom:152.719800px;}
.y78{bottom:152.788200px;}
.ye2{bottom:153.950550px;}
.y3c{bottom:156.664200px;}
.y41{bottom:156.732600px;}
.y103{bottom:156.980550px;}
.y126{bottom:163.558950px;}
.y1e{bottom:166.110300px;}
.yf6{bottom:167.166150px;}
.ye1{bottom:167.450550px;}
.ye6{bottom:167.518950px;}
.y102{bottom:170.480550px;}
.y14c{bottom:170.933550px;}
.y72{bottom:172.222050px;}
.yaa{bottom:173.312850px;}
.y3b{bottom:177.867300px;}
.y15a{bottom:178.848750px;}
.yf5{bottom:180.666150px;}
.ye0{bottom:180.950550px;}
.ye5{bottom:181.018950px;}
.y101{bottom:183.980550px;}
.y1d{bottom:184.110300px;}
.y14b{bottom:184.433550px;}
.y125{bottom:184.693650px;}
.y71{bottom:185.722050px;}
.ya9{bottom:186.812850px;}
.y159{bottom:192.348750px;}
.yf4{bottom:194.166150px;}
.y100{bottom:197.480550px;}
.y3a{bottom:199.070400px;}
.y34{bottom:202.110300px;}
.ya6{bottom:202.934850px;}
.ydf{bottom:203.977200px;}
.y6e{bottom:205.156050px;}
.y124{bottom:205.828350px;}
.y158{bottom:205.848750px;}
.y14a{bottom:205.993500px;}
.yff{bottom:210.980550px;}
.y39{bottom:212.570400px;}
.yf3{bottom:215.300850px;}
.ya5{bottom:216.434850px;}
.yde{bottom:217.477200px;}
.y6d{bottom:218.656050px;}
.y70{bottom:218.724300px;}
.y149{bottom:219.493500px;}
.y1c{bottom:220.110300px;}
.y123{bottom:226.963050px;}
.yf2{bottom:228.800850px;}
.ya4{bottom:229.934850px;}
.ydd{bottom:230.977200px;}
.yfe{bottom:232.115250px;}
.y6c{bottom:232.156050px;}
.y6f{bottom:232.224300px;}
.y38{bottom:233.773350px;}
.y33{bottom:238.110300px;}
.y157{bottom:238.346550px;}
.y122{bottom:240.463050px;}
.y148{bottom:241.053450px;}
.yf1{bottom:242.300850px;}
.ya3{bottom:243.434850px;}
.ydc{bottom:244.477200px;}
.y6b{bottom:251.658300px;}
.yfb{bottom:253.318350px;}
.yf0{bottom:255.800850px;}
.y1b{bottom:256.110300px;}
.ya2{bottom:256.934850px;}
.ya8{bottom:257.003250px;}
.ydb{bottom:257.977200px;}
.yfd{bottom:260.068350px;}
.y121{bottom:261.597900px;}
.y147{bottom:262.613400px;}
.y18d{bottom:262.646250px;}
.y161{bottom:263.140500px;}
.yf9{bottom:266.818350px;}
.ya1{bottom:270.434850px;}
.ya7{bottom:270.503250px;}
.y69{bottom:271.092150px;}
.yda{bottom:271.477200px;}
.yfc{bottom:273.568350px;}
.y1a{bottom:274.110300px;}
.y146{bottom:276.113400px;}
.yef{bottom:276.935550px;}
.y18c{bottom:277.046250px;}
.y156{bottom:278.846550px;}
.yfa{bottom:280.318350px;}
.y120{bottom:282.732600px;}
.y68{bottom:284.592150px;}
.yd9{bottom:284.977200px;}
.yee{bottom:290.435550px;}
.ya0{bottom:291.425400px;}
.y19{bottom:292.110300px;}
.y155{bottom:292.346550px;}
.y11f{bottom:296.232600px;}
.y145{bottom:297.673350px;}
.y67{bottom:298.092150px;}
.yd8{bottom:298.477200px;}
.yf8{bottom:301.521450px;}
.yed{bottom:303.935550px;}
.y18b{bottom:303.966000px;}
.y9f{bottom:309.725400px;}
.y11e{bottom:309.732600px;}
.y18{bottom:310.110300px;}
.y144{bottom:311.173350px;}
.y66{bottom:311.592150px;}
.y6a{bottom:311.660550px;}
.yd7{bottom:311.977200px;}
.yec{bottom:317.435550px;}
.y18a{bottom:317.466000px;}
.y9e{bottom:318.425400px;}
.yd6{bottom:325.477200px;}
.y17{bottom:328.110300px;}
.y11d{bottom:330.867300px;}
.y189{bottom:330.966000px;}
.y65{bottom:331.094400px;}
.y143{bottom:332.733300px;}
.yd5{bottom:334.177350px;}
.y9d{bottom:336.725400px;}
.yeb{bottom:338.570400px;}
.y188{bottom:344.466000px;}
.y154{bottom:344.598600px;}
.y9c{bottom:345.425400px;}
.y16{bottom:346.110300px;}
.y63{bottom:350.528400px;}
.y11a{bottom:352.070400px;}
.yd4{bottom:352.335600px;}
.y142{bottom:354.293250px;}
.y187{bottom:357.966000px;}
.y153{bottom:358.098600px;}
.y11c{bottom:358.820400px;}
.y9b{bottom:358.925400px;}
.yea{bottom:359.773350px;}
.y173{bottom:363.152850px;}
.y62{bottom:364.028400px;}
.y15{bottom:364.110300px;}
.y118{bottom:365.570400px;}
.yd3{bottom:365.835600px;}
.y141{bottom:367.793250px;}
.y186{bottom:371.466000px;}
.y152{bottom:371.598600px;}
.y11b{bottom:372.320400px;}
.y9a{bottom:377.225400px;}
.y61{bottom:377.528400px;}
.y172{bottom:377.552850px;}
.y119{bottom:379.070400px;}
.yd2{bottom:379.335600px;}
.y14{bottom:382.110300px;}
.y185{bottom:384.966000px;}
.y99{bottom:385.925400px;}
.y140{bottom:389.353200px;}
.y60{bottom:391.028400px;}
.yd1{bottom:392.835600px;}
.y13{bottom:400.110300px;}
.y117{bottom:400.273350px;}
.y13f{bottom:402.853200px;}
.y98{bottom:404.225400px;}
.y5f{bottom:404.528400px;}
.y64{bottom:404.596650px;}
.y151{bottom:405.844500px;}
.yd0{bottom:406.335600px;}
.y171{bottom:409.669650px;}
.y184{bottom:411.966000px;}
.y116{bottom:413.773350px;}
.y13e{bottom:416.353200px;}
.y12{bottom:418.110300px;}
.ycf{bottom:419.835600px;}
.y93{bottom:420.347550px;}
.y97{bottom:420.415800px;}
.y170{bottom:423.169650px;}
.y5e{bottom:424.030650px;}
.y183{bottom:425.466000px;}
.yca{bottom:433.267200px;}
.yce{bottom:433.335600px;}
.y92{bottom:433.847550px;}
.y96{bottom:433.915800px;}
.y11{bottom:436.110300px;}
.y16f{bottom:436.669650px;}
.y13d{bottom:437.913000px;}
.y5b{bottom:443.464650px;}
.yc9{bottom:446.767200px;}
.ycd{bottom:446.835600px;}
.y91{bottom:447.347550px;}
.y95{bottom:447.415800px;}
.y182{bottom:447.959850px;}
.y16e{bottom:450.169650px;}
.y13c{bottom:451.413000px;}
.y10{bottom:454.110300px;}
.y5a{bottom:456.964650px;}
.yc8{bottom:460.267200px;}
.ycc{bottom:460.335600px;}
.y90{bottom:460.847550px;}
.y94{bottom:460.915800px;}
.y181{bottom:461.459850px;}
.y3{bottom:462.829650px;}
.y23{bottom:463.008150px;}
.y16d{bottom:463.669650px;}
.y59{bottom:470.464650px;}
.y5d{bottom:470.532900px;}
.yf{bottom:472.110300px;}
.y13b{bottom:472.972950px;}
.yc7{bottom:473.767200px;}
.ycb{bottom:473.835600px;}
.y180{bottom:474.959850px;}
.y16c{bottom:477.169650px;}
.y8f{bottom:481.837950px;}
.y58{bottom:483.964650px;}
.y5c{bottom:484.032900px;}
.y13a{bottom:486.472950px;}
.y17f{bottom:488.459850px;}
.ye{bottom:490.110300px;}
.y16b{bottom:490.669650px;}
.yc6{bottom:491.993850px;}
.y8e{bottom:495.337950px;}
.y17e{bottom:501.959850px;}
.y57{bottom:503.466900px;}
.y16a{bottom:504.169650px;}
.y137{bottom:508.032900px;}
.yd{bottom:508.110150px;}
.y32{bottom:508.110300px;}
.yc4{bottom:510.152250px;}
.y139{bottom:514.782900px;}
.y17d{bottom:515.459850px;}
.y8c{bottom:516.260100px;}
.y169{bottom:517.669650px;}
.y115{bottom:520.823850px;}
.y135{bottom:521.532900px;}
.y56{bottom:522.900750px;}
.yc3{bottom:523.652250px;}
.yc{bottom:526.110150px;}
.y31{bottom:526.110300px;}
.y138{bottom:528.282900px;}
.y17c{bottom:528.959850px;}
.y8b{bottom:529.760100px;}
.y168{bottom:531.169650px;}
.y136{bottom:535.032900px;}
.y55{bottom:536.400750px;}
.yc2{bottom:537.152250px;}
.y114{bottom:541.958700px;}
.y17b{bottom:542.459850px;}
.y8a{bottom:543.260100px;}
.yb{bottom:544.110150px;}
.y30{bottom:544.110300px;}
.y167{bottom:544.669650px;}
.y52{bottom:549.832500px;}
.y54{bottom:549.900750px;}
.yc1{bottom:550.652250px;}
.yc5{bottom:550.720500px;}
.y17a{bottom:555.959850px;}
.y134{bottom:556.661250px;}
.y89{bottom:556.760100px;}
.y2f{bottom:562.110300px;}
.y113{bottom:563.093400px;}
.y51{bottom:563.332500px;}
.y53{bottom:563.400750px;}
.yc0{bottom:568.878900px;}
.y179{bottom:569.459850px;}
.y88{bottom:570.260100px;}
.y8d{bottom:570.328350px;}
.y166{bottom:571.669650px;}
.y133{bottom:573.161250px;}
.y112{bottom:576.593400px;}
.ya{bottom:580.110150px;}
.y2e{bottom:580.110300px;}
.y50{bottom:582.834750px;}
.y178{bottom:582.959850px;}
.y165{bottom:585.169650px;}
.ybe{bottom:587.037300px;}
.y111{bottom:590.093400px;}
.y87{bottom:591.250500px;}
.y177{bottom:596.459850px;}
.y2d{bottom:598.110300px;}
.ybd{bottom:600.537300px;}
.y4e{bottom:602.268750px;}
.y164{bottom:605.915550px;}
.y110{bottom:611.228100px;}
.y85{bottom:612.172650px;}
.ybc{bottom:614.037300px;}
.ybf{bottom:614.105550px;}
.y4d{bottom:615.768750px;}
.y2c{bottom:616.110300px;}
.y163{bottom:619.415550px;}
.y176{bottom:623.459850px;}
.y9{bottom:624.268650px;}
.y10f{bottom:624.728100px;}
.y84{bottom:625.672650px;}
.y4c{bottom:629.268750px;}
.y4f{bottom:629.337000px;}
.ybb{bottom:632.263950px;}
.y132{bottom:633.432150px;}
.y2b{bottom:634.110300px;}
.y175{bottom:636.959850px;}
.y83{bottom:639.172650px;}
.y8{bottom:642.268650px;}
.y10e{bottom:645.862950px;}
.y4b{bottom:648.771000px;}
.yb9{bottom:650.422200px;}
.y2a{bottom:652.110300px;}
.y82{bottom:652.672650px;}
.y86{bottom:652.740900px;}
.y131{bottom:654.991950px;}
.y174{bottom:658.461750px;}
.y10d{bottom:659.362950px;}
.y7{bottom:660.268650px;}
.yb8{bottom:663.922200px;}
.y49{bottom:668.204850px;}
.y29{bottom:670.110300px;}
.y10c{bottom:672.862950px;}
.y81{bottom:673.663050px;}
.y130{bottom:676.551900px;}
.yb7{bottom:677.422200px;}
.yba{bottom:677.490600px;}
.y48{bottom:681.704850px;}
.y80{bottom:687.163050px;}
.y28{bottom:688.110300px;}
.y10b{bottom:693.997650px;}
.y47{bottom:695.204850px;}
.yb6{bottom:695.648850px;}
.y12f{bottom:698.111850px;}
.y2{bottom:704.520150px;}
.y27{bottom:706.110300px;}
.y10a{bottom:707.497650px;}
.y7d{bottom:708.229500px;}
.y7f{bottom:708.297750px;}
.y46{bottom:708.704850px;}
.yb4{bottom:713.807250px;}
.y12e{bottom:719.671800px;}
.y109{bottom:720.997650px;}
.y7c{bottom:721.729500px;}
.y7e{bottom:721.797750px;}
.y45{bottom:722.204850px;}
.y4a{bottom:722.273250px;}
.y26{bottom:724.110300px;}
.yb3{bottom:727.307250px;}
.yb5{bottom:727.375650px;}
.y12d{bottom:741.231750px;}
.y25{bottom:742.110300px;}
.y44{bottom:742.132350px;}
.y7b{bottom:742.507350px;}
.yb2{bottom:745.533900px;}
.y6{bottom:754.839600px;}
.y24{bottom:760.110300px;}
.y12c{bottom:762.859950px;}
.y43{bottom:762.910200px;}
.y7a{bottom:763.285200px;}
.yb1{bottom:763.760550px;}
.y5{bottom:768.339600px;}
.y37{bottom:784.747950px;}
.y4{bottom:795.339600px;}
.y22{bottom:796.747950px;}
.ha{height:22.639056px;}
.he{height:26.036842px;}
.h5{height:33.978000px;}
.h8{height:36.576000px;}
.h2{height:38.304000px;}
.h7{height:38.832000px;}
.hc{height:41.148000px;}
.hb{height:41.839056px;}
.h6{height:43.092000px;}
.h4{height:43.686000px;}
.hd{height:54.964500px;}
.h3{height:62.244000px;}
.h9{height:90.576000px;}
.h0{height:850.393500px;}
.h1{height:850.500000px;}
.w2{width:47.272500px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.xa{left:36.097500px;}
.x25{left:37.396650px;}
.x7{left:63.779550px;}
.xd{left:68.031450px;}
.x34{left:70.880250px;}
.x32{left:78.023550px;}
.x8{left:85.039350px;}
.xb{left:90.111900px;}
.x33{left:93.543300px;}
.x14{left:97.795350px;}
.x2{left:99.608100px;}
.x6{left:106.299300px;}
.x23{left:115.803750px;}
.xc{left:130.544850px;}
.x27{left:138.081300px;}
.x2f{left:147.573300px;}
.x2c{left:151.395150px;}
.x1e{left:157.929150px;}
.x20{left:163.204950px;}
.x30{left:179.355000px;}
.x16{left:183.158850px;}
.x9{left:189.133950px;}
.x24{left:190.587000px;}
.x15{left:194.186550px;}
.x28{left:197.798700px;}
.x17{left:202.370550px;}
.x26{left:222.495000px;}
.x2b{left:239.624700px;}
.x1b{left:243.273600px;}
.x1d{left:246.452550px;}
.xf{left:263.622000px;}
.x10{left:284.881950px;}
.x1c{left:287.818800px;}
.x1{left:302.675700px;}
.x5{left:319.022250px;}
.x29{left:329.173800px;}
.x22{left:335.024850px;}
.x2e{left:339.923850px;}
.x31{left:341.387850px;}
.x2d{left:346.991700px;}
.x19{left:355.603800px;}
.x1f{left:363.559650px;}
.x21{left:366.901350px;}
.x18{left:372.763200px;}
.x2a{left:376.387350px;}
.x1a{left:380.953200px;}
.x4{left:382.659150px;}
.x11{left:391.181100px;}
.x12{left:446.456700px;}
.xe{left:476.220450px;}
.x13{left:501.732300px;}
.x3{left:592.254900px;}
@media print{
.v2{vertical-align:-17.066667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.066667pt;}
.v1{vertical-align:24.000000pt;}
.ls11{letter-spacing:-1.280000pt;}
.ls15{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.853333pt;}
.ls17{letter-spacing:-0.720000pt;}
.ls1f{letter-spacing:-0.682667pt;}
.ls1a{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.426667pt;}
.ls16{letter-spacing:-0.240000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.002133pt;}
.lsc{letter-spacing:0.002667pt;}
.lse{letter-spacing:0.004800pt;}
.ls13{letter-spacing:0.040000pt;}
.ls12{letter-spacing:0.048000pt;}
.ls9{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.144000pt;}
.ls7{letter-spacing:0.168000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.193067pt;}
.ls2{letter-spacing:0.240000pt;}
.ls0{letter-spacing:0.264000pt;}
.ls5{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.336000pt;}
.ls1{letter-spacing:0.384000pt;}
.ls19{letter-spacing:0.426667pt;}
.ls14{letter-spacing:0.432000pt;}
.ls6{letter-spacing:0.480000pt;}
.ls20{letter-spacing:0.492267pt;}
.ls1c{letter-spacing:0.528000pt;}
.ls21{letter-spacing:0.552000pt;}
.ls1e{letter-spacing:0.573333pt;}
.ls1d{letter-spacing:0.574400pt;}
.ls22{letter-spacing:0.576000pt;}
.lsb{letter-spacing:0.624000pt;}
.ls18{letter-spacing:174.476800pt;}
.ws1b{word-spacing:-185.442133pt;}
.ws1f{word-spacing:-12.960000pt;}
.ws15{word-spacing:-12.384000pt;}
.wsb{word-spacing:-12.336000pt;}
.ws10{word-spacing:-10.965333pt;}
.ws0{word-spacing:-8.736000pt;}
.ws12{word-spacing:-6.392789pt;}
.ws7{word-spacing:-0.624000pt;}
.ws22{word-spacing:-0.576000pt;}
.ws20{word-spacing:-0.528000pt;}
.ws6{word-spacing:-0.480000pt;}
.ws17{word-spacing:-0.432000pt;}
.ws1d{word-spacing:-0.426667pt;}
.ws3{word-spacing:-0.384000pt;}
.wsa{word-spacing:-0.336000pt;}
.ws2{word-spacing:-0.288000pt;}
.ws4{word-spacing:-0.240000pt;}
.ws5{word-spacing:-0.192000pt;}
.ws8{word-spacing:-0.144000pt;}
.ws9{word-spacing:-0.096000pt;}
.wsc{word-spacing:-0.048000pt;}
.ws11{word-spacing:-0.042667pt;}
.ws1{word-spacing:0.000000pt;}
.ws18{word-spacing:0.240000pt;}
.wsf{word-spacing:0.426667pt;}
.ws1e{word-spacing:0.480000pt;}
.ws21{word-spacing:0.682667pt;}
.ws19{word-spacing:0.720000pt;}
.ws13{word-spacing:0.853333pt;}
.ws16{word-spacing:0.960000pt;}
.ws14{word-spacing:1.280000pt;}
.ws1c{word-spacing:141.452800pt;}
.ws1a{word-spacing:163.468800pt;}
.wsd{word-spacing:402.611733pt;}
.wse{word-spacing:662.409067pt;}
._1c{margin-left:-174.476800pt;}
._7{margin-left:-12.042667pt;}
._30{margin-left:-11.036800pt;}
._1{margin-left:-3.936000pt;}
._4{margin-left:-2.926400pt;}
._2{margin-left:-1.664000pt;}
._0{width:1.493333pt;}
._3{width:2.803200pt;}
._5{width:4.387200pt;}
._6{width:5.529600pt;}
._2f{width:6.528000pt;}
._31{width:7.584000pt;}
._17{width:15.350400pt;}
._8{width:20.544000pt;}
._19{width:47.330667pt;}
._24{width:61.709333pt;}
._11{width:76.225600pt;}
._1a{width:83.768000pt;}
._2c{width:125.048000pt;}
._16{width:128.022933pt;}
._29{width:130.359467pt;}
._20{width:152.418133pt;}
._e{width:154.902933pt;}
._1e{width:174.476800pt;}
._2a{width:188.066667pt;}
._c{width:194.966933pt;}
._2b{width:222.072000pt;}
._f{width:235.158933pt;}
._12{width:238.316267pt;}
._22{width:282.530667pt;}
._21{width:290.253333pt;}
._13{width:334.017067pt;}
._14{width:348.396267pt;}
._15{width:351.638933pt;}
._1d{width:366.712000pt;}
._d{width:388.588267pt;}
._9{width:391.361600pt;}
._2e{width:392.866667pt;}
._10{width:394.774933pt;}
._26{width:477.218667pt;}
._18{width:487.717333pt;}
._b{width:491.798933pt;}
._2d{width:537.293333pt;}
._27{width:547.448000pt;}
._25{width:595.405333pt;}
._23{width:666.018667pt;}
._a{width:733.804267pt;}
._1f{width:806.544000pt;}
._28{width:976.784000pt;}
._1b{width:1021.048000pt;}
.fs4{font-size:24.874667pt;}
.fs5{font-size:34.724267pt;}
.fs3{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:69.333333pt;}
.y162{bottom:-0.314000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:40.542667pt;}
.y21{bottom:67.653600pt;}
.y160{bottom:68.136800pt;}
.y79{bottom:70.476400pt;}
.ye9{bottom:71.478533pt;}
.y12b{bottom:71.812800pt;}
.yb0{bottom:72.016133pt;}
.y42{bottom:72.470667pt;}
.y108{bottom:72.751867pt;}
.y150{bottom:75.283467pt;}
.y15f{bottom:80.936800pt;}
.y20{bottom:83.653600pt;}
.y12a{bottom:83.812800pt;}
.y107{bottom:84.751867pt;}
.y77{bottom:87.750933pt;}
.ye8{bottom:88.970933pt;}
.y40{bottom:91.257067pt;}
.y15e{bottom:94.089600pt;}
.y14f{bottom:94.447867pt;}
.yae{bottom:95.130933pt;}
.y106{bottom:96.751867pt;}
.y36{bottom:99.653600pt;}
.y76{bottom:99.750933pt;}
.ye7{bottom:100.970933pt;}
.y129{bottom:102.599200pt;}
.y3f{bottom:103.257067pt;}
.y15d{bottom:106.089600pt;}
.yad{bottom:107.130933pt;}
.y105{bottom:108.751867pt;}
.y75{bottom:111.750933pt;}
.ye4{bottom:112.844933pt;}
.y14e{bottom:113.612267pt;}
.y128{bottom:114.599200pt;}
.y3e{bottom:115.257067pt;}
.y35{bottom:115.653600pt;}
.y15c{bottom:118.089600pt;}
.yac{bottom:119.130933pt;}
.y104{bottom:120.751867pt;}
.y74{bottom:123.750933pt;}
.ye3{bottom:124.844933pt;}
.yf7{bottom:126.810000pt;}
.y3d{bottom:127.257067pt;}
.y15b{bottom:130.089600pt;}
.yab{bottom:131.130933pt;}
.yaf{bottom:131.191733pt;}
.y1f{bottom:131.653600pt;}
.y14d{bottom:132.776667pt;}
.y127{bottom:133.385733pt;}
.y73{bottom:135.750933pt;}
.y78{bottom:135.811733pt;}
.ye2{bottom:136.844933pt;}
.y3c{bottom:139.257067pt;}
.y41{bottom:139.317867pt;}
.y103{bottom:139.538267pt;}
.y126{bottom:145.385733pt;}
.y1e{bottom:147.653600pt;}
.yf6{bottom:148.592133pt;}
.ye1{bottom:148.844933pt;}
.ye6{bottom:148.905733pt;}
.y102{bottom:151.538267pt;}
.y14c{bottom:151.940933pt;}
.y72{bottom:153.086267pt;}
.yaa{bottom:154.055867pt;}
.y3b{bottom:158.104267pt;}
.y15a{bottom:158.976667pt;}
.yf5{bottom:160.592133pt;}
.ye0{bottom:160.844933pt;}
.ye5{bottom:160.905733pt;}
.y101{bottom:163.538267pt;}
.y1d{bottom:163.653600pt;}
.y14b{bottom:163.940933pt;}
.y125{bottom:164.172133pt;}
.y71{bottom:165.086267pt;}
.ya9{bottom:166.055867pt;}
.y159{bottom:170.976667pt;}
.yf4{bottom:172.592133pt;}
.y100{bottom:175.538267pt;}
.y3a{bottom:176.951467pt;}
.y34{bottom:179.653600pt;}
.ya6{bottom:180.386533pt;}
.ydf{bottom:181.313067pt;}
.y6e{bottom:182.360933pt;}
.y124{bottom:182.958533pt;}
.y158{bottom:182.976667pt;}
.y14a{bottom:183.105333pt;}
.yff{bottom:187.538267pt;}
.y39{bottom:188.951467pt;}
.yf3{bottom:191.378533pt;}
.ya5{bottom:192.386533pt;}
.yde{bottom:193.313067pt;}
.y6d{bottom:194.360933pt;}
.y70{bottom:194.421600pt;}
.y149{bottom:195.105333pt;}
.y1c{bottom:195.653600pt;}
.y123{bottom:201.744933pt;}
.yf2{bottom:203.378533pt;}
.ya4{bottom:204.386533pt;}
.ydd{bottom:205.313067pt;}
.yfe{bottom:206.324667pt;}
.y6c{bottom:206.360933pt;}
.y6f{bottom:206.421600pt;}
.y38{bottom:207.798533pt;}
.y33{bottom:211.653600pt;}
.y157{bottom:211.863600pt;}
.y122{bottom:213.744933pt;}
.y148{bottom:214.269733pt;}
.yf1{bottom:215.378533pt;}
.ya3{bottom:216.386533pt;}
.ydc{bottom:217.313067pt;}
.y6b{bottom:223.696267pt;}
.yfb{bottom:225.171867pt;}
.yf0{bottom:227.378533pt;}
.y1b{bottom:227.653600pt;}
.ya2{bottom:228.386533pt;}
.ya8{bottom:228.447333pt;}
.ydb{bottom:229.313067pt;}
.yfd{bottom:231.171867pt;}
.y121{bottom:232.531467pt;}
.y147{bottom:233.434133pt;}
.y18d{bottom:233.463333pt;}
.y161{bottom:233.902667pt;}
.yf9{bottom:237.171867pt;}
.ya1{bottom:240.386533pt;}
.ya7{bottom:240.447333pt;}
.y69{bottom:240.970800pt;}
.yda{bottom:241.313067pt;}
.yfc{bottom:243.171867pt;}
.y1a{bottom:243.653600pt;}
.y146{bottom:245.434133pt;}
.yef{bottom:246.164933pt;}
.y18c{bottom:246.263333pt;}
.y156{bottom:247.863600pt;}
.yfa{bottom:249.171867pt;}
.y120{bottom:251.317867pt;}
.y68{bottom:252.970800pt;}
.yd9{bottom:253.313067pt;}
.yee{bottom:258.164933pt;}
.ya0{bottom:259.044800pt;}
.y19{bottom:259.653600pt;}
.y155{bottom:259.863600pt;}
.y11f{bottom:263.317867pt;}
.y145{bottom:264.598533pt;}
.y67{bottom:264.970800pt;}
.yd8{bottom:265.313067pt;}
.yf8{bottom:268.019067pt;}
.yed{bottom:270.164933pt;}
.y18b{bottom:270.192000pt;}
.y9f{bottom:275.311467pt;}
.y11e{bottom:275.317867pt;}
.y18{bottom:275.653600pt;}
.y144{bottom:276.598533pt;}
.y66{bottom:276.970800pt;}
.y6a{bottom:277.031600pt;}
.yd7{bottom:277.313067pt;}
.yec{bottom:282.164933pt;}
.y18a{bottom:282.192000pt;}
.y9e{bottom:283.044800pt;}
.yd6{bottom:289.313067pt;}
.y17{bottom:291.653600pt;}
.y11d{bottom:294.104267pt;}
.y189{bottom:294.192000pt;}
.y65{bottom:294.306133pt;}
.y143{bottom:295.762933pt;}
.yd5{bottom:297.046533pt;}
.y9d{bottom:299.311467pt;}
.yeb{bottom:300.951467pt;}
.y188{bottom:306.192000pt;}
.y154{bottom:306.309867pt;}
.y9c{bottom:307.044800pt;}
.y16{bottom:307.653600pt;}
.y63{bottom:311.580800pt;}
.y11a{bottom:312.951467pt;}
.yd4{bottom:313.187200pt;}
.y142{bottom:314.927333pt;}
.y187{bottom:318.192000pt;}
.y153{bottom:318.309867pt;}
.y11c{bottom:318.951467pt;}
.y9b{bottom:319.044800pt;}
.yea{bottom:319.798533pt;}
.y173{bottom:322.802533pt;}
.y62{bottom:323.580800pt;}
.y15{bottom:323.653600pt;}
.y118{bottom:324.951467pt;}
.yd3{bottom:325.187200pt;}
.y141{bottom:326.927333pt;}
.y186{bottom:330.192000pt;}
.y152{bottom:330.309867pt;}
.y11b{bottom:330.951467pt;}
.y9a{bottom:335.311467pt;}
.y61{bottom:335.580800pt;}
.y172{bottom:335.602533pt;}
.y119{bottom:336.951467pt;}
.yd2{bottom:337.187200pt;}
.y14{bottom:339.653600pt;}
.y185{bottom:342.192000pt;}
.y99{bottom:343.044800pt;}
.y140{bottom:346.091733pt;}
.y60{bottom:347.580800pt;}
.yd1{bottom:349.187200pt;}
.y13{bottom:355.653600pt;}
.y117{bottom:355.798533pt;}
.y13f{bottom:358.091733pt;}
.y98{bottom:359.311467pt;}
.y5f{bottom:359.580800pt;}
.y64{bottom:359.641467pt;}
.y151{bottom:360.750667pt;}
.yd0{bottom:361.187200pt;}
.y171{bottom:364.150800pt;}
.y184{bottom:366.192000pt;}
.y116{bottom:367.798533pt;}
.y13e{bottom:370.091733pt;}
.y12{bottom:371.653600pt;}
.ycf{bottom:373.187200pt;}
.y93{bottom:373.642267pt;}
.y97{bottom:373.702933pt;}
.y170{bottom:376.150800pt;}
.y5e{bottom:376.916133pt;}
.y183{bottom:378.192000pt;}
.yca{bottom:385.126400pt;}
.yce{bottom:385.187200pt;}
.y92{bottom:385.642267pt;}
.y96{bottom:385.702933pt;}
.y11{bottom:387.653600pt;}
.y16f{bottom:388.150800pt;}
.y13d{bottom:389.256000pt;}
.y5b{bottom:394.190800pt;}
.yc9{bottom:397.126400pt;}
.ycd{bottom:397.187200pt;}
.y91{bottom:397.642267pt;}
.y95{bottom:397.702933pt;}
.y182{bottom:398.186533pt;}
.y16e{bottom:400.150800pt;}
.y13c{bottom:401.256000pt;}
.y10{bottom:403.653600pt;}
.y5a{bottom:406.190800pt;}
.yc8{bottom:409.126400pt;}
.ycc{bottom:409.187200pt;}
.y90{bottom:409.642267pt;}
.y94{bottom:409.702933pt;}
.y181{bottom:410.186533pt;}
.y3{bottom:411.404133pt;}
.y23{bottom:411.562800pt;}
.y16d{bottom:412.150800pt;}
.y59{bottom:418.190800pt;}
.y5d{bottom:418.251467pt;}
.yf{bottom:419.653600pt;}
.y13b{bottom:420.420400pt;}
.yc7{bottom:421.126400pt;}
.ycb{bottom:421.187200pt;}
.y180{bottom:422.186533pt;}
.y16c{bottom:424.150800pt;}
.y8f{bottom:428.300400pt;}
.y58{bottom:430.190800pt;}
.y5c{bottom:430.251467pt;}
.y13a{bottom:432.420400pt;}
.y17f{bottom:434.186533pt;}
.ye{bottom:435.653600pt;}
.y16b{bottom:436.150800pt;}
.yc6{bottom:437.327867pt;}
.y8e{bottom:440.300400pt;}
.y17e{bottom:446.186533pt;}
.y57{bottom:447.526133pt;}
.y16a{bottom:448.150800pt;}
.y137{bottom:451.584800pt;}
.yd{bottom:451.653467pt;}
.y32{bottom:451.653600pt;}
.yc4{bottom:453.468667pt;}
.y139{bottom:457.584800pt;}
.y17d{bottom:458.186533pt;}
.y8c{bottom:458.897867pt;}
.y169{bottom:460.150800pt;}
.y115{bottom:462.954533pt;}
.y135{bottom:463.584800pt;}
.y56{bottom:464.800667pt;}
.yc3{bottom:465.468667pt;}
.yc{bottom:467.653467pt;}
.y31{bottom:467.653600pt;}
.y138{bottom:469.584800pt;}
.y17c{bottom:470.186533pt;}
.y8b{bottom:470.897867pt;}
.y168{bottom:472.150800pt;}
.y136{bottom:475.584800pt;}
.y55{bottom:476.800667pt;}
.yc2{bottom:477.468667pt;}
.y114{bottom:481.741067pt;}
.y17b{bottom:482.186533pt;}
.y8a{bottom:482.897867pt;}
.yb{bottom:483.653467pt;}
.y30{bottom:483.653600pt;}
.y167{bottom:484.150800pt;}
.y52{bottom:488.740000pt;}
.y54{bottom:488.800667pt;}
.yc1{bottom:489.468667pt;}
.yc5{bottom:489.529333pt;}
.y17a{bottom:494.186533pt;}
.y134{bottom:494.810000pt;}
.y89{bottom:494.897867pt;}
.y2f{bottom:499.653600pt;}
.y113{bottom:500.527467pt;}
.y51{bottom:500.740000pt;}
.y53{bottom:500.800667pt;}
.yc0{bottom:505.670133pt;}
.y179{bottom:506.186533pt;}
.y88{bottom:506.897867pt;}
.y8d{bottom:506.958533pt;}
.y166{bottom:508.150800pt;}
.y133{bottom:509.476667pt;}
.y112{bottom:512.527467pt;}
.ya{bottom:515.653467pt;}
.y2e{bottom:515.653600pt;}
.y50{bottom:518.075333pt;}
.y178{bottom:518.186533pt;}
.y165{bottom:520.150800pt;}
.ybe{bottom:521.810933pt;}
.y111{bottom:524.527467pt;}
.y87{bottom:525.556000pt;}
.y177{bottom:530.186533pt;}
.y2d{bottom:531.653600pt;}
.ybd{bottom:533.810933pt;}
.y4e{bottom:535.350000pt;}
.y164{bottom:538.591600pt;}
.y110{bottom:543.313867pt;}
.y85{bottom:544.153467pt;}
.ybc{bottom:545.810933pt;}
.ybf{bottom:545.871600pt;}
.y4d{bottom:547.350000pt;}
.y2c{bottom:547.653600pt;}
.y163{bottom:550.591600pt;}
.y176{bottom:554.186533pt;}
.y9{bottom:554.905467pt;}
.y10f{bottom:555.313867pt;}
.y84{bottom:556.153467pt;}
.y4c{bottom:559.350000pt;}
.y4f{bottom:559.410667pt;}
.ybb{bottom:562.012400pt;}
.y132{bottom:563.050800pt;}
.y2b{bottom:563.653600pt;}
.y175{bottom:566.186533pt;}
.y83{bottom:568.153467pt;}
.y8{bottom:570.905467pt;}
.y10e{bottom:574.100400pt;}
.y4b{bottom:576.685333pt;}
.yb9{bottom:578.153067pt;}
.y2a{bottom:579.653600pt;}
.y82{bottom:580.153467pt;}
.y86{bottom:580.214133pt;}
.y131{bottom:582.215067pt;}
.y174{bottom:585.299333pt;}
.y10d{bottom:586.100400pt;}
.y7{bottom:586.905467pt;}
.yb8{bottom:590.153067pt;}
.y49{bottom:593.959867pt;}
.y29{bottom:595.653600pt;}
.y10c{bottom:598.100400pt;}
.y81{bottom:598.811600pt;}
.y130{bottom:601.379467pt;}
.yb7{bottom:602.153067pt;}
.yba{bottom:602.213867pt;}
.y48{bottom:605.959867pt;}
.y80{bottom:610.811600pt;}
.y28{bottom:611.653600pt;}
.y10b{bottom:616.886800pt;}
.y47{bottom:617.959867pt;}
.yb6{bottom:618.354533pt;}
.y12f{bottom:620.543867pt;}
.y2{bottom:626.240133pt;}
.y27{bottom:627.653600pt;}
.y10a{bottom:628.886800pt;}
.y7d{bottom:629.537333pt;}
.y7f{bottom:629.598000pt;}
.y46{bottom:629.959867pt;}
.yb4{bottom:634.495333pt;}
.y12e{bottom:639.708267pt;}
.y109{bottom:640.886800pt;}
.y7c{bottom:641.537333pt;}
.y7e{bottom:641.598000pt;}
.y45{bottom:641.959867pt;}
.y4a{bottom:642.020667pt;}
.y26{bottom:643.653600pt;}
.yb3{bottom:646.495333pt;}
.yb5{bottom:646.556133pt;}
.y12d{bottom:658.872667pt;}
.y25{bottom:659.653600pt;}
.y44{bottom:659.673200pt;}
.y7b{bottom:660.006533pt;}
.yb2{bottom:662.696800pt;}
.y6{bottom:670.968533pt;}
.y24{bottom:675.653600pt;}
.y12c{bottom:678.097733pt;}
.y43{bottom:678.142400pt;}
.y7a{bottom:678.475733pt;}
.yb1{bottom:678.898267pt;}
.y5{bottom:682.968533pt;}
.y37{bottom:697.553733pt;}
.y4{bottom:706.968533pt;}
.y22{bottom:708.220400pt;}
.ha{height:20.123605pt;}
.he{height:23.143859pt;}
.h5{height:30.202667pt;}
.h8{height:32.512000pt;}
.h2{height:34.048000pt;}
.h7{height:34.517333pt;}
.hc{height:36.576000pt;}
.hb{height:37.190272pt;}
.h6{height:38.304000pt;}
.h4{height:38.832000pt;}
.hd{height:48.857333pt;}
.h3{height:55.328000pt;}
.h9{height:80.512000pt;}
.h0{height:755.905333pt;}
.h1{height:756.000000pt;}
.w2{width:42.020000pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.xa{left:32.086667pt;}
.x25{left:33.241467pt;}
.x7{left:56.692933pt;}
.xd{left:60.472400pt;}
.x34{left:63.004667pt;}
.x32{left:69.354267pt;}
.x8{left:75.590533pt;}
.xb{left:80.099467pt;}
.x33{left:83.149600pt;}
.x14{left:86.929200pt;}
.x2{left:88.540533pt;}
.x6{left:94.488267pt;}
.x23{left:102.936667pt;}
.xc{left:116.039867pt;}
.x27{left:122.738933pt;}
.x2f{left:131.176267pt;}
.x2c{left:134.573467pt;}
.x1e{left:140.381467pt;}
.x20{left:145.071067pt;}
.x30{left:159.426667pt;}
.x16{left:162.807867pt;}
.x9{left:168.119067pt;}
.x24{left:169.410667pt;}
.x15{left:172.610267pt;}
.x28{left:175.821067pt;}
.x17{left:179.884933pt;}
.x26{left:197.773333pt;}
.x2b{left:212.999733pt;}
.x1b{left:216.243200pt;}
.x1d{left:219.068933pt;}
.xf{left:234.330667pt;}
.x10{left:253.228400pt;}
.x1c{left:255.838933pt;}
.x1{left:269.045067pt;}
.x5{left:283.575333pt;}
.x29{left:292.598933pt;}
.x22{left:297.799867pt;}
.x2e{left:302.154533pt;}
.x31{left:303.455867pt;}
.x2d{left:308.437067pt;}
.x19{left:316.092267pt;}
.x1f{left:323.164133pt;}
.x21{left:326.134533pt;}
.x18{left:331.345067pt;}
.x2a{left:334.566533pt;}
.x1a{left:338.625067pt;}
.x4{left:340.141467pt;}
.x11{left:347.716533pt;}
.x12{left:396.850400pt;}
.xe{left:423.307067pt;}
.x13{left:445.984267pt;}
.x3{left:526.448800pt;}
}




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