
    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_0ae94af0c95eb844e437693a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.734863;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_c572d1e9e63c0e1d08774306.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.114000;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_184f7bdbf5826db04db80028.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.890000;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_8c3e34738d8cf9bce6603c5b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.769531;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_184f7bdbf5826db04db80028.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_e84e219e4ae7131a5f3fbe85.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.117000;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_acb10f2b755566ef1c10c255.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.110000;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_001f741fc136666b6411daac.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.110000;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_e2ffff263f4159e5fb536c5b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.950000;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);}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-1.569600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:72.000000px;}
.lsc{letter-spacing:-6.552000px;}
.ls20{letter-spacing:-4.896000px;}
.ls1f{letter-spacing:-3.600000px;}
.ls7{letter-spacing:-2.952000px;}
.ls1e{letter-spacing:-2.880000px;}
.ls8{letter-spacing:-2.664000px;}
.ls23{letter-spacing:-2.448000px;}
.ls1d{letter-spacing:-2.400000px;}
.lsa{letter-spacing:-2.232000px;}
.lse{letter-spacing:-2.160000px;}
.ls22{letter-spacing:-1.728000px;}
.ls19{letter-spacing:-1.656000px;}
.ls15{letter-spacing:-1.602312px;}
.ls4{letter-spacing:-1.584000px;}
.ls1c{letter-spacing:-1.440000px;}
.ls11{letter-spacing:-1.296000px;}
.ls18{letter-spacing:-1.092000px;}
.ls12{letter-spacing:-1.080000px;}
.ls21{letter-spacing:-1.008000px;}
.lsd{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.864000px;}
.ls9{letter-spacing:-0.792000px;}
.ls1b{letter-spacing:-0.780000px;}
.lsf{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.648000px;}
.ls0{letter-spacing:-0.600000px;}
.ls14{letter-spacing:-0.595429px;}
.ls17{letter-spacing:-0.576000px;}
.ls16{letter-spacing:-0.549682px;}
.ls13{letter-spacing:-0.520751px;}
.ls1a{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.432000px;}
.ls25{letter-spacing:-0.288000px;}
.ls26{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.216000px;}
.ls24{letter-spacing:0.288000px;}
.ls3{letter-spacing:6.480000px;}
.ls2{letter-spacing:6927.300000px;}
.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;}
}
.ws0{word-spacing:-41.496000px;}
.ws19{word-spacing:-37.050000px;}
.ws2{word-spacing:-33.156000px;}
.ws27{word-spacing:-26.676000px;}
.ws14{word-spacing:-21.168000px;}
.ws42{word-spacing:-20.952000px;}
.ws36{word-spacing:-20.664000px;}
.ws31{word-spacing:-20.592000px;}
.ws4{word-spacing:-20.304000px;}
.ws2c{word-spacing:-20.232000px;}
.ws29{word-spacing:-20.088000px;}
.ws6{word-spacing:-19.872000px;}
.ws32{word-spacing:-19.728000px;}
.ws3{word-spacing:-19.584000px;}
.ws24{word-spacing:-19.512000px;}
.ws3d{word-spacing:-19.440000px;}
.ws40{word-spacing:-19.008000px;}
.ws3f{word-spacing:-18.720000px;}
.ws3e{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.216000px;}
.ws2b{word-spacing:-17.640000px;}
.ws38{word-spacing:-16.272000px;}
.ws33{word-spacing:-15.240000px;}
.ws3b{word-spacing:-12.816000px;}
.ws1a{word-spacing:-11.776993px;}
.ws18{word-spacing:-10.443950px;}
.ws1b{word-spacing:-10.174681px;}
.ws1c{word-spacing:-9.894269px;}
.ws23{word-spacing:-3.240000px;}
.ws26{word-spacing:-2.160000px;}
.ws28{word-spacing:-2.052000px;}
.ws2d{word-spacing:-1.944000px;}
.ws1e{word-spacing:-1.268496px;}
.ws1d{word-spacing:-1.226213px;}
.ws21{word-spacing:-0.845664px;}
.ws20{word-spacing:-0.761098px;}
.ws41{word-spacing:-0.288000px;}
.ws13{word-spacing:-0.216000px;}
.ws2a{word-spacing:-0.144000px;}
.ws8{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.ws43{word-spacing:0.288000px;}
.wse{word-spacing:0.432000px;}
.ws2e{word-spacing:0.504000px;}
.ws1f{word-spacing:0.520751px;}
.ws7{word-spacing:0.576000px;}
.ws22{word-spacing:0.595429px;}
.ws12{word-spacing:0.720000px;}
.ws2f{word-spacing:0.780000px;}
.wsc{word-spacing:0.792000px;}
.ws9{word-spacing:0.864000px;}
.ws10{word-spacing:0.936000px;}
.ws39{word-spacing:1.008000px;}
.ws15{word-spacing:1.080000px;}
.ws25{word-spacing:1.092000px;}
.ws30{word-spacing:1.440000px;}
.ws11{word-spacing:2.160000px;}
.wsd{word-spacing:2.232000px;}
.wsb{word-spacing:2.664000px;}
.ws34{word-spacing:2.880000px;}
.wsa{word-spacing:2.952000px;}
.ws35{word-spacing:3.600000px;}
.wsf{word-spacing:6.552000px;}
.ws17{word-spacing:99.504000px;}
.ws3a{word-spacing:99.720000px;}
.ws37{word-spacing:195.696000px;}
.ws3c{word-spacing:6927.256800px;}
.ws16{word-spacing:6927.263400px;}
._4{margin-left:-6595.356000px;}
._1c{margin-left:-20.304000px;}
._2a{margin-left:-18.049200px;}
._24{margin-left:-16.866000px;}
._8{margin-left:-15.552000px;}
._25{margin-left:-12.744000px;}
._17{margin-left:-9.981600px;}
._23{margin-left:-8.935200px;}
._0{margin-left:-7.920000px;}
._3{margin-left:-6.720000px;}
._29{margin-left:-5.706000px;}
._6{margin-left:-4.680000px;}
._2{margin-left:-2.856000px;}
._1{margin-left:-1.782000px;}
._7{width:1.080000px;}
._9{width:2.118000px;}
._27{width:3.723600px;}
._31{width:4.981200px;}
._28{width:9.536400px;}
._3e{width:12.177600px;}
._1e{width:14.184000px;}
._26{width:15.738000px;}
._2d{width:16.881600px;}
._37{width:23.007600px;}
._35{width:32.949600px;}
._f{width:37.173600px;}
._e{width:39.240000px;}
._34{width:40.896000px;}
._d{width:41.976000px;}
._1a{width:43.206000px;}
._3b{width:45.291600px;}
._36{width:46.656000px;}
._2b{width:49.461600px;}
._21{width:53.829600px;}
._18{width:54.945600px;}
._a{width:57.600000px;}
._12{width:71.241600px;}
._10{width:74.016000px;}
._2f{width:76.176000px;}
._2e{width:77.616000px;}
._2c{width:83.121600px;}
._b{width:90.243600px;}
._13{width:97.245600px;}
._c{width:98.856000px;}
._19{width:100.005600px;}
._38{width:101.013600px;}
._11{width:103.707600px;}
._30{width:106.965600px;}
._3c{width:112.608000px;}
._15{width:127.797600px;}
._1f{width:132.219600px;}
._33{width:136.983600px;}
._3d{width:139.419600px;}
._22{width:140.739600px;}
._1b{width:152.496000px;}
._3a{width:160.293600px;}
._1d{width:173.664000px;}
._14{width:183.417600px;}
._16{width:188.265600px;}
._5{width:194.832000px;}
._32{width:196.610400px;}
._39{width:2338.602000px;}
._20{width:5501.716224px;}
.fc6{color:rgb(33,94,158);}
.fc5{color:rgb(0,77,109);}
.fc4{color:rgb(27,38,48);}
.fc3{color:transparent;}
.fc2{color:rgb(0,169,183);}
.fc1{color:rgb(2,77,113);}
.fc7{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:30.000000px;}
.fs5{font-size:36.000000px;}
.fs9{font-size:40.057800px;}
.fsa{font-size:42.283200px;}
.fsb{font-size:45.802200px;}
.fsd{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs7{font-size:72.000000px;}
.fsc{font-size:84.000000px;}
.fs6{font-size:108.000000px;}
.fs8{font-size:150.000000px;}
.fs2{font-size:168.000000px;}
.fs1{font-size:198.000000px;}
.y0{bottom:0.000000px;}
.ya9{bottom:5.834700px;}
.y7{bottom:14.834700px;}
.yb2{bottom:23.834700px;}
.y50{bottom:32.834700px;}
.y81{bottom:32.870700px;}
.y89{bottom:41.834700px;}
.yd2{bottom:47.834700px;}
.y8b{bottom:50.834700px;}
.y88{bottom:59.834700px;}
.y39{bottom:68.834700px;}
.y80{bottom:68.864700px;}
.ye4{bottom:74.834700px;}
.y57{bottom:77.834700px;}
.yd1{bottom:83.834700px;}
.y8a{bottom:86.834700px;}
.y8{bottom:86.835300px;}
.yb0{bottom:95.834700px;}
.yaa{bottom:104.834700px;}
.y7f{bottom:104.858700px;}
.y2a{bottom:113.834700px;}
.yd0{bottom:119.834700px;}
.y102{bottom:122.834550px;}
.y49{bottom:122.834700px;}
.y1{bottom:129.481950px;}
.y38{bottom:131.834700px;}
.y29{bottom:140.834700px;}
.y7e{bottom:140.852700px;}
.y56{bottom:149.834700px;}
.y101{bottom:158.834550px;}
.y48{bottom:158.834700px;}
.y28{bottom:167.834700px;}
.y90{bottom:176.834700px;}
.y7d{bottom:176.846700px;}
.y55{bottom:185.834700px;}
.ycf{bottom:191.834700px;}
.ya4{bottom:194.834550px;}
.y27{bottom:194.834700px;}
.yfa{bottom:203.834550px;}
.y37{bottom:203.834700px;}
.y6b{bottom:212.834700px;}
.y7c{bottom:212.840700px;}
.y26{bottom:221.834700px;}
.y67{bottom:221.842767px;}
.yce{bottom:227.834700px;}
.ya3{bottom:230.834550px;}
.y59{bottom:230.834700px;}
.y7b{bottom:230.838733px;}
.y74{bottom:231.227100px;}
.y6c{bottom:231.466834px;}
.yf9{bottom:239.834550px;}
.y36{bottom:239.834700px;}
.y66{bottom:239.838733px;}
.y73{bottom:244.013372px;}
.y65{bottom:244.268072px;}
.y25{bottom:248.834700px;}
.y72{bottom:256.814611px;}
.y64{bottom:257.069311px;}
.y54{bottom:257.834700px;}
.ycd{bottom:263.834700px;}
.ya2{bottom:266.834550px;}
.y47{bottom:266.834700px;}
.y71{bottom:269.615850px;}
.y63{bottom:269.870550px;}
.yf8{bottom:275.834550px;}
.y24{bottom:275.834700px;}
.y8f{bottom:284.834700px;}
.ya7{bottom:293.834700px;}
.ya1{bottom:302.834550px;}
.y23{bottom:302.834700px;}
.yf7{bottom:311.834550px;}
.y51{bottom:311.834700px;}
.yb4{bottom:320.834700px;}
.y22{bottom:329.834700px;}
.ycc{bottom:335.834700px;}
.ya0{bottom:338.834550px;}
.y46{bottom:338.834700px;}
.y35{bottom:347.834700px;}
.y21{bottom:356.834700px;}
.ya8{bottom:365.834700px;}
.ycb{bottom:371.834700px;}
.y9f{bottom:374.834550px;}
.y45{bottom:374.834700px;}
.yf6{bottom:383.834550px;}
.y20{bottom:383.834700px;}
.y8e{bottom:392.834700px;}
.yab{bottom:401.834700px;}
.y9e{bottom:410.834550px;}
.y1f{bottom:410.834700px;}
.yf5{bottom:419.834550px;}
.y34{bottom:419.834700px;}
.yda{bottom:428.834700px;}
.y1e{bottom:437.834700px;}
.yca{bottom:443.834700px;}
.y9d{bottom:446.834550px;}
.y44{bottom:446.834700px;}
.y33{bottom:455.834700px;}
.y1d{bottom:464.834700px;}
.yb3{bottom:473.834700px;}
.yc9{bottom:479.834700px;}
.y9c{bottom:482.834550px;}
.y43{bottom:482.834700px;}
.yf4{bottom:491.834550px;}
.y1c{bottom:491.834700px;}
.y87{bottom:500.834700px;}
.y6d{bottom:509.834700px;}
.yc8{bottom:515.834700px;}
.y9b{bottom:518.834550px;}
.y1b{bottom:518.834700px;}
.y76{bottom:518.838733px;}
.yaf{bottom:527.834700px;}
.y5a{bottom:527.838733px;}
.y61{bottom:536.834700px;}
.y1a{bottom:545.834700px;}
.y62{bottom:550.300472px;}
.yc7{bottom:551.834700px;}
.y100{bottom:554.834550px;}
.y42{bottom:554.834700px;}
.y5c{bottom:563.101711px;}
.yf3{bottom:563.834550px;}
.y32{bottom:563.834700px;}
.y19{bottom:572.834700px;}
.yc4{bottom:572.840700px;}
.y5b{bottom:575.902950px;}
.yb1{bottom:581.834700px;}
.yc6{bottom:587.834700px;}
.yff{bottom:590.834550px;}
.y58{bottom:590.834700px;}
.yf2{bottom:599.834550px;}
.y18{bottom:599.834700px;}
.yc3{bottom:608.840700px;}
.ye3{bottom:617.834700px;}
.yfe{bottom:626.834550px;}
.y17{bottom:626.834700px;}
.yf1{bottom:635.834550px;}
.ya5{bottom:635.834700px;}
.y8d{bottom:644.834700px;}
.yc2{bottom:644.840700px;}
.y16{bottom:653.834700px;}
.yc5{bottom:659.834700px;}
.yfd{bottom:662.834550px;}
.y41{bottom:662.834700px;}
.yf0{bottom:671.834550px;}
.yae{bottom:671.834700px;}
.y15{bottom:680.834700px;}
.yc1{bottom:680.840700px;}
.y31{bottom:689.834700px;}
.y40{bottom:698.834700px;}
.yef{bottom:707.834550px;}
.y14{bottom:707.834700px;}
.y8c{bottom:716.834700px;}
.yc0{bottom:716.840700px;}
.y30{bottom:725.834700px;}
.yfc{bottom:734.834550px;}
.y13{bottom:734.834700px;}
.yee{bottom:743.834550px;}
.yad{bottom:743.834700px;}
.y86{bottom:752.834700px;}
.ybf{bottom:752.840700px;}
.y12{bottom:761.834700px;}
.yfb{bottom:770.834550px;}
.y3f{bottom:770.834700px;}
.yed{bottom:779.834550px;}
.yac{bottom:779.834700px;}
.y11{bottom:788.834700px;}
.ybe{bottom:788.840700px;}
.y2f{bottom:797.834700px;}
.y9a{bottom:806.834550px;}
.y3e{bottom:806.834700px;}
.yec{bottom:815.834550px;}
.y10{bottom:815.834700px;}
.y4f{bottom:824.834700px;}
.ybd{bottom:824.840700px;}
.y2e{bottom:833.834700px;}
.y75{bottom:833.838733px;}
.y99{bottom:842.834550px;}
.yf{bottom:842.834700px;}
.y77{bottom:851.834550px;}
.y5d{bottom:851.834700px;}
.y4e{bottom:860.834700px;}
.ybc{bottom:860.840700px;}
.y70{bottom:865.692272px;}
.y60{bottom:865.946972px;}
.y6a{bottom:865.947122px;}
.y7a{bottom:867.545972px;}
.ye{bottom:869.834700px;}
.y6f{bottom:878.493511px;}
.y5f{bottom:878.748211px;}
.y69{bottom:878.748361px;}
.y98{bottom:878.834550px;}
.y3d{bottom:878.834700px;}
.y79{bottom:880.347211px;}
.yeb{bottom:887.834550px;}
.y6{bottom:887.834700px;}
.y6e{bottom:891.294750px;}
.y5e{bottom:891.549450px;}
.y68{bottom:891.549600px;}
.y78{bottom:893.148450px;}
.yd{bottom:896.834700px;}
.y2d{bottom:905.834700px;}
.y97{bottom:914.834550px;}
.y53{bottom:914.834700px;}
.y85{bottom:914.858700px;}
.yea{bottom:923.834550px;}
.yc{bottom:923.834700px;}
.yd9{bottom:929.834550px;}
.ybb{bottom:929.834700px;}
.y4d{bottom:932.834700px;}
.y92{bottom:941.834700px;}
.y96{bottom:950.834550px;}
.y5{bottom:950.834700px;}
.y84{bottom:950.852700px;}
.ye9{bottom:959.834550px;}
.ye0{bottom:959.834700px;}
.yd8{bottom:965.834550px;}
.yba{bottom:965.834700px;}
.y4c{bottom:968.834700px;}
.yb{bottom:977.834700px;}
.ydc{bottom:986.834550px;}
.y3c{bottom:986.834700px;}
.y83{bottom:986.846700px;}
.ydf{bottom:995.834700px;}
.yd7{bottom:1001.834550px;}
.yb9{bottom:1001.834700px;}
.ya{bottom:1004.834700px;}
.y4{bottom:1013.834700px;}
.y95{bottom:1022.834550px;}
.y3b{bottom:1022.834700px;}
.y82{bottom:1022.840700px;}
.ye8{bottom:1031.834550px;}
.y9{bottom:1031.834700px;}
.yb8{bottom:1037.834700px;}
.y4b{bottom:1040.834700px;}
.y2c{bottom:1049.834700px;}
.y94{bottom:1058.834550px;}
.y3a{bottom:1058.834700px;}
.y3{bottom:1067.821200px;}
.ye7{bottom:1067.834550px;}
.yde{bottom:1067.834700px;}
.yd6{bottom:1073.834550px;}
.yb7{bottom:1073.834700px;}
.ye2{bottom:1085.834700px;}
.ydb{bottom:1094.834550px;}
.y52{bottom:1094.834700px;}
.ya6{bottom:1094.843700px;}
.ye6{bottom:1103.834550px;}
.yd5{bottom:1109.834550px;}
.yb6{bottom:1109.834700px;}
.y4a{bottom:1112.834700px;}
.y2b{bottom:1121.834700px;}
.y93{bottom:1130.834550px;}
.y2{bottom:1130.834700px;}
.ye5{bottom:1139.834550px;}
.ydd{bottom:1139.834700px;}
.yd4{bottom:1145.834550px;}
.ye1{bottom:1157.834700px;}
.y91{bottom:1162.030500px;}
.yd3{bottom:1181.834550px;}
.yb5{bottom:1181.834700px;}
.h6{height:27.351562px;}
.hc{height:36.052020px;}
.h11{height:36.468750px;}
.h5{height:38.340000px;}
.hd{height:38.604562px;}
.hf{height:38.644272px;}
.he{height:41.221980px;}
.h2{height:43.505859px;}
.hb{height:54.000000px;}
.h9{height:64.800000px;}
.h8{height:65.304000px;}
.h10{height:76.188000px;}
.h7{height:98.604000px;}
.h12{height:126.000000px;}
.ha{height:136.950000px;}
.h4{height:153.384000px;}
.h3{height:180.774000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1785.750000px;}
.w2{width:1785.825000px;}
.x0{left:0.000000px;}
.x2f{left:14.134950px;}
.x1{left:17.738550px;}
.x4{left:22.711650px;}
.x29{left:54.000000px;}
.x2{left:55.155000px;}
.x14{left:63.000000px;}
.x24{left:64.538400px;}
.x2a{left:66.413400px;}
.x5{left:67.634700px;}
.x1e{left:68.818050px;}
.x33{left:71.476800px;}
.x1f{left:73.923000px;}
.x34{left:75.428400px;}
.x32{left:76.913400px;}
.x30{left:87.153450px;}
.x21{left:88.913400px;}
.x20{left:105.413400px;}
.xa{left:218.674800px;}
.x11{left:369.831750px;}
.x10{left:521.085600px;}
.xd{left:672.339600px;}
.xb{left:823.593600px;}
.x7{left:825.408000px;}
.x25{left:903.413400px;}
.x23{left:908.785650px;}
.x28{left:910.909500px;}
.x2e{left:913.913400px;}
.x26{left:916.074450px;}
.x2d{left:918.788400px;}
.x27{left:946.914450px;}
.x22{left:958.275000px;}
.x6{left:960.408000px;}
.x9{left:961.913400px;}
.x2c{left:966.501900px;}
.x2b{left:967.920000px;}
.x1b{left:972.348300px;}
.x13{left:974.847600px;}
.x31{left:979.899450px;}
.x19{left:987.489300px;}
.x1a{left:1002.903300px;}
.x15{left:1003.913400px;}
.x17{left:1006.494300px;}
.x16{left:1029.090300px;}
.x18{left:1031.022300px;}
.xe{left:1126.101450px;}
.x1d{left:1165.913400px;}
.xc{left:1277.355450px;}
.x1c{left:1408.077300px;}
.xf{left:1428.609300px;}
.x12{left:1579.863450px;}
.x3{left:1600.154700px;}
.x8{left:1718.316000px;}
@media print{
.v1{vertical-align:-1.395200pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:64.000000pt;}
.lsc{letter-spacing:-5.824000pt;}
.ls20{letter-spacing:-4.352000pt;}
.ls1f{letter-spacing:-3.200000pt;}
.ls7{letter-spacing:-2.624000pt;}
.ls1e{letter-spacing:-2.560000pt;}
.ls8{letter-spacing:-2.368000pt;}
.ls23{letter-spacing:-2.176000pt;}
.ls1d{letter-spacing:-2.133333pt;}
.lsa{letter-spacing:-1.984000pt;}
.lse{letter-spacing:-1.920000pt;}
.ls22{letter-spacing:-1.536000pt;}
.ls19{letter-spacing:-1.472000pt;}
.ls15{letter-spacing:-1.424277pt;}
.ls4{letter-spacing:-1.408000pt;}
.ls1c{letter-spacing:-1.280000pt;}
.ls11{letter-spacing:-1.152000pt;}
.ls18{letter-spacing:-0.970667pt;}
.ls12{letter-spacing:-0.960000pt;}
.ls21{letter-spacing:-0.896000pt;}
.lsd{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.768000pt;}
.ls9{letter-spacing:-0.704000pt;}
.ls1b{letter-spacing:-0.693333pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls0{letter-spacing:-0.533333pt;}
.ls14{letter-spacing:-0.529270pt;}
.ls17{letter-spacing:-0.512000pt;}
.ls16{letter-spacing:-0.488606pt;}
.ls13{letter-spacing:-0.462890pt;}
.ls1a{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.384000pt;}
.ls25{letter-spacing:-0.256000pt;}
.ls26{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.192000pt;}
.ls24{letter-spacing:0.256000pt;}
.ls3{letter-spacing:5.760000pt;}
.ls2{letter-spacing:6157.600000pt;}
.ws0{word-spacing:-36.885333pt;}
.ws19{word-spacing:-32.933333pt;}
.ws2{word-spacing:-29.472000pt;}
.ws27{word-spacing:-23.712000pt;}
.ws14{word-spacing:-18.816000pt;}
.ws42{word-spacing:-18.624000pt;}
.ws36{word-spacing:-18.368000pt;}
.ws31{word-spacing:-18.304000pt;}
.ws4{word-spacing:-18.048000pt;}
.ws2c{word-spacing:-17.984000pt;}
.ws29{word-spacing:-17.856000pt;}
.ws6{word-spacing:-17.664000pt;}
.ws32{word-spacing:-17.536000pt;}
.ws3{word-spacing:-17.408000pt;}
.ws24{word-spacing:-17.344000pt;}
.ws3d{word-spacing:-17.280000pt;}
.ws40{word-spacing:-16.896000pt;}
.ws3f{word-spacing:-16.640000pt;}
.ws3e{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.192000pt;}
.ws2b{word-spacing:-15.680000pt;}
.ws38{word-spacing:-14.464000pt;}
.ws33{word-spacing:-13.546667pt;}
.ws3b{word-spacing:-11.392000pt;}
.ws1a{word-spacing:-10.468438pt;}
.ws18{word-spacing:-9.283511pt;}
.ws1b{word-spacing:-9.044161pt;}
.ws1c{word-spacing:-8.794906pt;}
.ws23{word-spacing:-2.880000pt;}
.ws26{word-spacing:-1.920000pt;}
.ws28{word-spacing:-1.824000pt;}
.ws2d{word-spacing:-1.728000pt;}
.ws1e{word-spacing:-1.127552pt;}
.ws1d{word-spacing:-1.089967pt;}
.ws21{word-spacing:-0.751701pt;}
.ws20{word-spacing:-0.676531pt;}
.ws41{word-spacing:-0.256000pt;}
.ws13{word-spacing:-0.192000pt;}
.ws2a{word-spacing:-0.128000pt;}
.ws8{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.ws43{word-spacing:0.256000pt;}
.wse{word-spacing:0.384000pt;}
.ws2e{word-spacing:0.448000pt;}
.ws1f{word-spacing:0.462890pt;}
.ws7{word-spacing:0.512000pt;}
.ws22{word-spacing:0.529270pt;}
.ws12{word-spacing:0.640000pt;}
.ws2f{word-spacing:0.693333pt;}
.wsc{word-spacing:0.704000pt;}
.ws9{word-spacing:0.768000pt;}
.ws10{word-spacing:0.832000pt;}
.ws39{word-spacing:0.896000pt;}
.ws15{word-spacing:0.960000pt;}
.ws25{word-spacing:0.970667pt;}
.ws30{word-spacing:1.280000pt;}
.ws11{word-spacing:1.920000pt;}
.wsd{word-spacing:1.984000pt;}
.wsb{word-spacing:2.368000pt;}
.ws34{word-spacing:2.560000pt;}
.wsa{word-spacing:2.624000pt;}
.ws35{word-spacing:3.200000pt;}
.wsf{word-spacing:5.824000pt;}
.ws17{word-spacing:88.448000pt;}
.ws3a{word-spacing:88.640000pt;}
.ws37{word-spacing:173.952000pt;}
.ws3c{word-spacing:6157.561600pt;}
.ws16{word-spacing:6157.567467pt;}
._4{margin-left:-5862.538667pt;}
._1c{margin-left:-18.048000pt;}
._2a{margin-left:-16.043733pt;}
._24{margin-left:-14.992000pt;}
._8{margin-left:-13.824000pt;}
._25{margin-left:-11.328000pt;}
._17{margin-left:-8.872533pt;}
._23{margin-left:-7.942400pt;}
._0{margin-left:-7.040000pt;}
._3{margin-left:-5.973333pt;}
._29{margin-left:-5.072000pt;}
._6{margin-left:-4.160000pt;}
._2{margin-left:-2.538667pt;}
._1{margin-left:-1.584000pt;}
._7{width:0.960000pt;}
._9{width:1.882667pt;}
._27{width:3.309867pt;}
._31{width:4.427733pt;}
._28{width:8.476800pt;}
._3e{width:10.824533pt;}
._1e{width:12.608000pt;}
._26{width:13.989333pt;}
._2d{width:15.005867pt;}
._37{width:20.451200pt;}
._35{width:29.288533pt;}
._f{width:33.043200pt;}
._e{width:34.880000pt;}
._34{width:36.352000pt;}
._d{width:37.312000pt;}
._1a{width:38.405333pt;}
._3b{width:40.259200pt;}
._36{width:41.472000pt;}
._2b{width:43.965867pt;}
._21{width:47.848533pt;}
._18{width:48.840533pt;}
._a{width:51.200000pt;}
._12{width:63.325867pt;}
._10{width:65.792000pt;}
._2f{width:67.712000pt;}
._2e{width:68.992000pt;}
._2c{width:73.885867pt;}
._b{width:80.216533pt;}
._13{width:86.440533pt;}
._c{width:87.872000pt;}
._19{width:88.893867pt;}
._38{width:89.789867pt;}
._11{width:92.184533pt;}
._30{width:95.080533pt;}
._3c{width:100.096000pt;}
._15{width:113.597867pt;}
._1f{width:117.528533pt;}
._33{width:121.763200pt;}
._3d{width:123.928533pt;}
._22{width:125.101867pt;}
._1b{width:135.552000pt;}
._3a{width:142.483200pt;}
._1d{width:154.368000pt;}
._14{width:163.037867pt;}
._16{width:167.347200pt;}
._5{width:173.184000pt;}
._32{width:174.764800pt;}
._39{width:2078.757333pt;}
._20{width:4890.414421pt;}
.fs4{font-size:26.666667pt;}
.fs5{font-size:32.000000pt;}
.fs9{font-size:35.606933pt;}
.fsa{font-size:37.585067pt;}
.fsb{font-size:40.713067pt;}
.fsd{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs7{font-size:64.000000pt;}
.fsc{font-size:74.666667pt;}
.fs6{font-size:96.000000pt;}
.fs8{font-size:133.333333pt;}
.fs2{font-size:149.333333pt;}
.fs1{font-size:176.000000pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:5.186400pt;}
.y7{bottom:13.186400pt;}
.yb2{bottom:21.186400pt;}
.y50{bottom:29.186400pt;}
.y81{bottom:29.218400pt;}
.y89{bottom:37.186400pt;}
.yd2{bottom:42.519733pt;}
.y8b{bottom:45.186400pt;}
.y88{bottom:53.186400pt;}
.y39{bottom:61.186400pt;}
.y80{bottom:61.213067pt;}
.ye4{bottom:66.519733pt;}
.y57{bottom:69.186400pt;}
.yd1{bottom:74.519733pt;}
.y8a{bottom:77.186400pt;}
.y8{bottom:77.186933pt;}
.yb0{bottom:85.186400pt;}
.yaa{bottom:93.186400pt;}
.y7f{bottom:93.207733pt;}
.y2a{bottom:101.186400pt;}
.yd0{bottom:106.519733pt;}
.y102{bottom:109.186267pt;}
.y49{bottom:109.186400pt;}
.y1{bottom:115.095067pt;}
.y38{bottom:117.186400pt;}
.y29{bottom:125.186400pt;}
.y7e{bottom:125.202400pt;}
.y56{bottom:133.186400pt;}
.y101{bottom:141.186267pt;}
.y48{bottom:141.186400pt;}
.y28{bottom:149.186400pt;}
.y90{bottom:157.186400pt;}
.y7d{bottom:157.197067pt;}
.y55{bottom:165.186400pt;}
.ycf{bottom:170.519733pt;}
.ya4{bottom:173.186267pt;}
.y27{bottom:173.186400pt;}
.yfa{bottom:181.186267pt;}
.y37{bottom:181.186400pt;}
.y6b{bottom:189.186400pt;}
.y7c{bottom:189.191733pt;}
.y26{bottom:197.186400pt;}
.y67{bottom:197.193570pt;}
.yce{bottom:202.519733pt;}
.ya3{bottom:205.186267pt;}
.y59{bottom:205.186400pt;}
.y7b{bottom:205.189985pt;}
.y74{bottom:205.535200pt;}
.y6c{bottom:205.748297pt;}
.yf9{bottom:213.186267pt;}
.y36{bottom:213.186400pt;}
.y66{bottom:213.189985pt;}
.y73{bottom:216.900775pt;}
.y65{bottom:217.127175pt;}
.y25{bottom:221.186400pt;}
.y72{bottom:228.279654pt;}
.y64{bottom:228.506054pt;}
.y54{bottom:229.186400pt;}
.ycd{bottom:234.519733pt;}
.ya2{bottom:237.186267pt;}
.y47{bottom:237.186400pt;}
.y71{bottom:239.658533pt;}
.y63{bottom:239.884933pt;}
.yf8{bottom:245.186267pt;}
.y24{bottom:245.186400pt;}
.y8f{bottom:253.186400pt;}
.ya7{bottom:261.186400pt;}
.ya1{bottom:269.186267pt;}
.y23{bottom:269.186400pt;}
.yf7{bottom:277.186267pt;}
.y51{bottom:277.186400pt;}
.yb4{bottom:285.186400pt;}
.y22{bottom:293.186400pt;}
.ycc{bottom:298.519733pt;}
.ya0{bottom:301.186267pt;}
.y46{bottom:301.186400pt;}
.y35{bottom:309.186400pt;}
.y21{bottom:317.186400pt;}
.ya8{bottom:325.186400pt;}
.ycb{bottom:330.519733pt;}
.y9f{bottom:333.186267pt;}
.y45{bottom:333.186400pt;}
.yf6{bottom:341.186267pt;}
.y20{bottom:341.186400pt;}
.y8e{bottom:349.186400pt;}
.yab{bottom:357.186400pt;}
.y9e{bottom:365.186267pt;}
.y1f{bottom:365.186400pt;}
.yf5{bottom:373.186267pt;}
.y34{bottom:373.186400pt;}
.yda{bottom:381.186400pt;}
.y1e{bottom:389.186400pt;}
.yca{bottom:394.519733pt;}
.y9d{bottom:397.186267pt;}
.y44{bottom:397.186400pt;}
.y33{bottom:405.186400pt;}
.y1d{bottom:413.186400pt;}
.yb3{bottom:421.186400pt;}
.yc9{bottom:426.519733pt;}
.y9c{bottom:429.186267pt;}
.y43{bottom:429.186400pt;}
.yf4{bottom:437.186267pt;}
.y1c{bottom:437.186400pt;}
.y87{bottom:445.186400pt;}
.y6d{bottom:453.186400pt;}
.yc8{bottom:458.519733pt;}
.y9b{bottom:461.186267pt;}
.y1b{bottom:461.186400pt;}
.y76{bottom:461.189985pt;}
.yaf{bottom:469.186400pt;}
.y5a{bottom:469.189985pt;}
.y61{bottom:477.186400pt;}
.y1a{bottom:485.186400pt;}
.y62{bottom:489.155975pt;}
.yc7{bottom:490.519733pt;}
.y100{bottom:493.186267pt;}
.y42{bottom:493.186400pt;}
.y5c{bottom:500.534854pt;}
.yf3{bottom:501.186267pt;}
.y32{bottom:501.186400pt;}
.y19{bottom:509.186400pt;}
.yc4{bottom:509.191733pt;}
.y5b{bottom:511.913733pt;}
.yb1{bottom:517.186400pt;}
.yc6{bottom:522.519733pt;}
.yff{bottom:525.186267pt;}
.y58{bottom:525.186400pt;}
.yf2{bottom:533.186267pt;}
.y18{bottom:533.186400pt;}
.yc3{bottom:541.191733pt;}
.ye3{bottom:549.186400pt;}
.yfe{bottom:557.186267pt;}
.y17{bottom:557.186400pt;}
.yf1{bottom:565.186267pt;}
.ya5{bottom:565.186400pt;}
.y8d{bottom:573.186400pt;}
.yc2{bottom:573.191733pt;}
.y16{bottom:581.186400pt;}
.yc5{bottom:586.519733pt;}
.yfd{bottom:589.186267pt;}
.y41{bottom:589.186400pt;}
.yf0{bottom:597.186267pt;}
.yae{bottom:597.186400pt;}
.y15{bottom:605.186400pt;}
.yc1{bottom:605.191733pt;}
.y31{bottom:613.186400pt;}
.y40{bottom:621.186400pt;}
.yef{bottom:629.186267pt;}
.y14{bottom:629.186400pt;}
.y8c{bottom:637.186400pt;}
.yc0{bottom:637.191733pt;}
.y30{bottom:645.186400pt;}
.yfc{bottom:653.186267pt;}
.y13{bottom:653.186400pt;}
.yee{bottom:661.186267pt;}
.yad{bottom:661.186400pt;}
.y86{bottom:669.186400pt;}
.ybf{bottom:669.191733pt;}
.y12{bottom:677.186400pt;}
.yfb{bottom:685.186267pt;}
.y3f{bottom:685.186400pt;}
.yed{bottom:693.186267pt;}
.yac{bottom:693.186400pt;}
.y11{bottom:701.186400pt;}
.ybe{bottom:701.191733pt;}
.y2f{bottom:709.186400pt;}
.y9a{bottom:717.186267pt;}
.y3e{bottom:717.186400pt;}
.yec{bottom:725.186267pt;}
.y10{bottom:725.186400pt;}
.y4f{bottom:733.186400pt;}
.ybd{bottom:733.191733pt;}
.y2e{bottom:741.186400pt;}
.y75{bottom:741.189985pt;}
.y99{bottom:749.186267pt;}
.yf{bottom:749.186400pt;}
.y77{bottom:757.186267pt;}
.y5d{bottom:757.186400pt;}
.y4e{bottom:765.186400pt;}
.ybc{bottom:765.191733pt;}
.y70{bottom:769.504242pt;}
.y60{bottom:769.730642pt;}
.y6a{bottom:769.730775pt;}
.y7a{bottom:771.151975pt;}
.ye{bottom:773.186400pt;}
.y6f{bottom:780.883121pt;}
.y5f{bottom:781.109521pt;}
.y69{bottom:781.109654pt;}
.y98{bottom:781.186267pt;}
.y3d{bottom:781.186400pt;}
.y79{bottom:782.530854pt;}
.yeb{bottom:789.186267pt;}
.y6{bottom:789.186400pt;}
.y6e{bottom:792.262000pt;}
.y5e{bottom:792.488400pt;}
.y68{bottom:792.488533pt;}
.y78{bottom:793.909733pt;}
.yd{bottom:797.186400pt;}
.y2d{bottom:805.186400pt;}
.y97{bottom:813.186267pt;}
.y53{bottom:813.186400pt;}
.y85{bottom:813.207733pt;}
.yea{bottom:821.186267pt;}
.yc{bottom:821.186400pt;}
.yd9{bottom:826.519600pt;}
.ybb{bottom:826.519733pt;}
.y4d{bottom:829.186400pt;}
.y92{bottom:837.186400pt;}
.y96{bottom:845.186267pt;}
.y5{bottom:845.186400pt;}
.y84{bottom:845.202400pt;}
.ye9{bottom:853.186267pt;}
.ye0{bottom:853.186400pt;}
.yd8{bottom:858.519600pt;}
.yba{bottom:858.519733pt;}
.y4c{bottom:861.186400pt;}
.yb{bottom:869.186400pt;}
.ydc{bottom:877.186267pt;}
.y3c{bottom:877.186400pt;}
.y83{bottom:877.197067pt;}
.ydf{bottom:885.186400pt;}
.yd7{bottom:890.519600pt;}
.yb9{bottom:890.519733pt;}
.ya{bottom:893.186400pt;}
.y4{bottom:901.186400pt;}
.y95{bottom:909.186267pt;}
.y3b{bottom:909.186400pt;}
.y82{bottom:909.191733pt;}
.ye8{bottom:917.186267pt;}
.y9{bottom:917.186400pt;}
.yb8{bottom:922.519733pt;}
.y4b{bottom:925.186400pt;}
.y2c{bottom:933.186400pt;}
.y94{bottom:941.186267pt;}
.y3a{bottom:941.186400pt;}
.y3{bottom:949.174400pt;}
.ye7{bottom:949.186267pt;}
.yde{bottom:949.186400pt;}
.yd6{bottom:954.519600pt;}
.yb7{bottom:954.519733pt;}
.ye2{bottom:965.186400pt;}
.ydb{bottom:973.186267pt;}
.y52{bottom:973.186400pt;}
.ya6{bottom:973.194400pt;}
.ye6{bottom:981.186267pt;}
.yd5{bottom:986.519600pt;}
.yb6{bottom:986.519733pt;}
.y4a{bottom:989.186400pt;}
.y2b{bottom:997.186400pt;}
.y93{bottom:1005.186267pt;}
.y2{bottom:1005.186400pt;}
.ye5{bottom:1013.186267pt;}
.ydd{bottom:1013.186400pt;}
.yd4{bottom:1018.519600pt;}
.ye1{bottom:1029.186400pt;}
.y91{bottom:1032.916000pt;}
.yd3{bottom:1050.519600pt;}
.yb5{bottom:1050.519733pt;}
.h6{height:24.312500pt;}
.hc{height:32.046240pt;}
.h11{height:32.416667pt;}
.h5{height:34.080000pt;}
.hd{height:34.315166pt;}
.hf{height:34.350464pt;}
.he{height:36.641760pt;}
.h2{height:38.671875pt;}
.hb{height:48.000000pt;}
.h9{height:57.600000pt;}
.h8{height:58.048000pt;}
.h10{height:67.722667pt;}
.h7{height:87.648000pt;}
.h12{height:112.000000pt;}
.ha{height:121.733333pt;}
.h4{height:136.341333pt;}
.h3{height:160.688000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1587.333333pt;}
.w2{width:1587.400000pt;}
.x0{left:0.000000pt;}
.x2f{left:12.564400pt;}
.x1{left:15.767600pt;}
.x4{left:20.188133pt;}
.x29{left:48.000000pt;}
.x2{left:49.026667pt;}
.x14{left:56.000000pt;}
.x24{left:57.367467pt;}
.x2a{left:59.034133pt;}
.x5{left:60.119733pt;}
.x1e{left:61.171600pt;}
.x33{left:63.534933pt;}
.x1f{left:65.709333pt;}
.x34{left:67.047467pt;}
.x32{left:68.367467pt;}
.x30{left:77.469733pt;}
.x21{left:79.034133pt;}
.x20{left:93.700800pt;}
.xa{left:194.377600pt;}
.x11{left:328.739333pt;}
.x10{left:463.187200pt;}
.xd{left:597.635200pt;}
.xb{left:732.083200pt;}
.x7{left:733.696000pt;}
.x25{left:803.034133pt;}
.x23{left:807.809467pt;}
.x28{left:809.697333pt;}
.x2e{left:812.367467pt;}
.x26{left:814.288400pt;}
.x2d{left:816.700800pt;}
.x27{left:841.701733pt;}
.x22{left:851.800000pt;}
.x6{left:853.696000pt;}
.x9{left:855.034133pt;}
.x2c{left:859.112800pt;}
.x2b{left:860.373333pt;}
.x1b{left:864.309600pt;}
.x13{left:866.531200pt;}
.x31{left:871.021733pt;}
.x19{left:877.768267pt;}
.x1a{left:891.469600pt;}
.x15{left:892.367467pt;}
.x17{left:894.661600pt;}
.x16{left:914.746933pt;}
.x18{left:916.464267pt;}
.xe{left:1000.979067pt;}
.x1d{left:1036.367467pt;}
.xc{left:1135.427067pt;}
.x1c{left:1251.624267pt;}
.xf{left:1269.874933pt;}
.x12{left:1404.323067pt;}
.x3{left:1422.359733pt;}
.x8{left:1527.392000pt;}
}




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