
    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_a3a4235f498c374b70998dba.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_de7ee82138ead453bce4c57f.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_251a809adf2e800292c03667.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.963000;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_35d60491ccd978dcef3824f1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2af90ad99287d631fe4608dc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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_dc83624ca81918c56aeb1eb6.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_45743776cf4d6d3319a61abf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.960000;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_dc18215252c4f1528e33db85.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_13024c675deac2e160c3a043.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6bae6bb9671730cd4e345174.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.728027;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_7a25fbefd8ec1a2c25b49ce5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.959000;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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.738000px;}
.lsf{letter-spacing:-0.306600px;}
.ls3{letter-spacing:-0.106800px;}
.ls2{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.037440px;}
.ls10{letter-spacing:0.258540px;}
.ls4{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.260880px;}
.lse{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.413760px;}
.lsa{letter-spacing:0.612480px;}
.lsd{letter-spacing:0.614820px;}
.ls8{letter-spacing:0.666000px;}
.ls6{letter-spacing:0.924000px;}
.ls7{letter-spacing:1.332000px;}
.lsc{letter-spacing:14.345340px;}
.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;}
}
.ws3{word-spacing:-33.226560px;}
.ws0{word-spacing:-26.658720px;}
.ws5{word-spacing:-17.537280px;}
.ws4{word-spacing:-16.873080px;}
.ws1{word-spacing:-16.613280px;}
.ws7{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.506480px;}
.ws9{word-spacing:-16.306680px;}
.ws6{word-spacing:-13.266720px;}
.ws8{word-spacing:0.000000px;}
._25{margin-left:-2.344294px;}
._1{margin-left:-1.259196px;}
._0{width:1.075341px;}
._3{width:2.759884px;}
._2{width:3.942960px;}
._a{width:5.548108px;}
._9{width:6.635021px;}
._8{width:7.768732px;}
._d{width:8.787541px;}
._4{width:10.097740px;}
._14{width:11.119100px;}
._1d{width:12.129452px;}
._5{width:13.146997px;}
._11{width:14.460949px;}
._18{width:15.478132px;}
._6{width:18.405478px;}
._7{width:19.420954px;}
._20{width:21.274231px;}
._1a{width:22.468668px;}
._1b{width:23.547547px;}
._10{width:24.928561px;}
._f{width:26.320755px;}
._17{width:27.585640px;}
._22{width:29.284904px;}
._e{width:30.536842px;}
._1c{width:31.642656px;}
._21{width:32.949843px;}
._23{width:34.038438px;}
._19{width:35.122727px;}
._12{width:36.150402px;}
._13{width:38.067124px;}
._16{width:39.080186px;}
._15{width:40.996017px;}
._b{width:42.905615px;}
._c{width:44.398590px;}
._24{width:45.474747px;}
._2c{width:46.853838px;}
._30{width:47.983217px;}
._1f{width:50.732907px;}
._1e{width:51.931241px;}
._26{width:53.562878px;}
._27{width:54.814624px;}
._28{width:56.832165px;}
._2a{width:60.836129px;}
._2b{width:61.929292px;}
._2d{width:63.526604px;}
._2e{width:65.074240px;}
._29{width:68.425744px;}
._31{width:81.570580px;}
._2f{width:100.517121px;}
._32{width:133.800039px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:transparent;}
.fc2{color:rgb(116,34,34);}
.fc3{color:rgb(84,141,212);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:30.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-1.080000px;}
.y0{bottom:0.000000px;}
.y6a{bottom:3.420000px;}
.y68{bottom:4.560000px;}
.y65{bottom:5.585700px;}
.y9{bottom:5.646150px;}
.y7{bottom:8.466150px;}
.y63{bottom:8.555850px;}
.ye{bottom:17.819700px;}
.ya{bottom:22.355850px;}
.yc{bottom:30.780000px;}
.yd{bottom:35.280000px;}
.y8{bottom:37.950000px;}
.y66{bottom:43.596150px;}
.y5{bottom:55.116150px;}
.y64{bottom:57.450000px;}
.y61{bottom:58.535700px;}
.y6{bottom:66.450000px;}
.yd9{bottom:68.616150px;}
.y60{bottom:80.855850px;}
.y4{bottom:81.755850px;}
.y62{bottom:85.800000px;}
.y5f{bottom:92.380950px;}
.yd8{bottom:95.255850px;}
.yd7{bottom:98.494650px;}
.ya4{bottom:99.215400px;}
.y5e{bottom:109.660800px;}
.y40{bottom:111.998100px;}
.yd6{bottom:115.594650px;}
.ya3{bottom:116.495250px;}
.y112{bottom:118.114950px;}
.y14b{bottom:119.735850px;}
.y5d{bottom:126.760800px;}
.y3f{bottom:129.277950px;}
.yd5{bottom:132.874500px;}
.ya2{bottom:133.595250px;}
.y111{bottom:135.394800px;}
.y14a{bottom:137.016300px;}
.y5c{bottom:144.040650px;}
.y3e{bottom:146.557800px;}
.yd4{bottom:150.148500px;}
.ya1{bottom:150.869250px;}
.y149{bottom:154.290300px;}
.y5b{bottom:161.314650px;}
.y3d{bottom:163.831800px;}
.yd3{bottom:167.428350px;}
.ya0{bottom:168.149100px;}
.y110{bottom:170.488950px;}
.y148{bottom:171.570150px;}
.y5a{bottom:178.594500px;}
.y3c{bottom:181.111650px;}
.yd2{bottom:184.708200px;}
.y9f{bottom:185.428950px;}
.y10f{bottom:187.768800px;}
.y147{bottom:188.850000px;}
.y59{bottom:195.874350px;}
.y3b{bottom:198.211650px;}
.y9e{bottom:202.708800px;}
.y10e{bottom:205.048650px;}
.y146{bottom:206.129850px;}
.y58{bottom:213.154200px;}
.y3a{bottom:215.491500px;}
.yd1{bottom:219.808200px;}
.y9d{bottom:219.808800px;}
.y10d{bottom:222.328500px;}
.y145{bottom:223.229850px;}
.y57{bottom:230.254200px;}
.y39{bottom:232.771350px;}
.yd0{bottom:237.088050px;}
.y9c{bottom:237.088650px;}
.y10c{bottom:239.608350px;}
.y144{bottom:240.509700px;}
.y56{bottom:247.534050px;}
.y38{bottom:250.051200px;}
.ycf{bottom:254.367900px;}
.y9b{bottom:254.368500px;}
.y10b{bottom:256.888200px;}
.y143{bottom:257.790150px;}
.y37{bottom:267.331050px;}
.yce{bottom:271.692900px;}
.y9a{bottom:271.693500px;}
.y10a{bottom:274.032750px;}
.y142{bottom:275.115150px;}
.y55{bottom:283.399350px;}
.y36{bottom:284.656050px;}
.y99{bottom:288.973350px;}
.ycd{bottom:289.152600px;}
.y109{bottom:291.312600px;}
.y141{bottom:292.395000px;}
.y35{bottom:301.756050px;}
.y98{bottom:306.253200px;}
.ycc{bottom:306.432450px;}
.y108{bottom:308.592450px;}
.y140{bottom:309.674850px;}
.y34{bottom:319.035900px;}
.y54{bottom:319.759050px;}
.ycb{bottom:323.352600px;}
.y97{bottom:323.353200px;}
.y107{bottom:325.872300px;}
.y33{bottom:336.315750px;}
.y53{bottom:337.038900px;}
.yca{bottom:340.632450px;}
.y96{bottom:340.633050px;}
.y106{bottom:343.152150px;}
.y13f{bottom:344.774850px;}
.y32{bottom:353.595600px;}
.y52{bottom:354.318750px;}
.yc9{bottom:357.912300px;}
.y105{bottom:360.432000px;}
.y13e{bottom:362.054700px;}
.y51{bottom:371.598600px;}
.yc8{bottom:375.192150px;}
.y95{bottom:376.453200px;}
.y104{bottom:377.532000px;}
.y13d{bottom:379.334550px;}
.y31{bottom:388.875450px;}
.y50{bottom:388.878450px;}
.yc7{bottom:392.472000px;}
.y103{bottom:394.812450px;}
.y13c{bottom:396.614400px;}
.y30{bottom:406.155300px;}
.y4f{bottom:406.158300px;}
.y94{bottom:412.993500px;}
.y13b{bottom:413.894250px;}
.y2f{bottom:423.255300px;}
.y4e{bottom:423.258300px;}
.yc6{bottom:428.112300px;}
.y93{bottom:430.093500px;}
.y102{bottom:430.632000px;}
.y13a{bottom:430.994250px;}
.y2e{bottom:440.535150px;}
.y4d{bottom:440.538150px;}
.y92{bottom:447.373950px;}
.y139{bottom:448.274100px;}
.y2d{bottom:457.815000px;}
.y4c{bottom:457.818000px;}
.yc5{bottom:464.652000px;}
.y91{bottom:464.653800px;}
.y138{bottom:465.553950px;}
.y101{bottom:466.992300px;}
.y2c{bottom:475.094850px;}
.y4b{bottom:475.097850px;}
.yc4{bottom:481.932450px;}
.y90{bottom:481.934250px;}
.y137{bottom:482.833800px;}
.y100{bottom:484.272750px;}
.y2b{bottom:492.374700px;}
.y4a{bottom:492.377700px;}
.yc3{bottom:499.212900px;}
.y8f{bottom:499.214700px;}
.y136{bottom:500.113650px;}
.yff{bottom:501.553200px;}
.y2a{bottom:509.474700px;}
.y49{bottom:509.477700px;}
.yc2{bottom:516.312900px;}
.y8e{bottom:516.314700px;}
.y135{bottom:517.393500px;}
.yfe{bottom:518.833050px;}
.y29{bottom:526.754550px;}
.y48{bottom:526.757550px;}
.yc1{bottom:533.592750px;}
.y8d{bottom:533.594550px;}
.y134{bottom:534.493500px;}
.yfd{bottom:536.113500px;}
.y28{bottom:544.034400px;}
.y47{bottom:544.037400px;}
.yc0{bottom:550.872600px;}
.y8c{bottom:550.874400px;}
.yfc{bottom:553.423200px;}
.y27{bottom:561.344700px;}
.y46{bottom:561.347700px;}
.ybf{bottom:568.182300px;}
.y8b{bottom:568.184100px;}
.y133{bottom:569.803200px;}
.yfb{bottom:570.523200px;}
.y26{bottom:578.624550px;}
.y45{bottom:578.627550px;}
.ybe{bottom:585.462150px;}
.y132{bottom:587.083050px;}
.yfa{bottom:587.803050px;}
.y160{bottom:593.205000px;}
.y25{bottom:595.904400px;}
.y44{bottom:595.907400px;}
.ybd{bottom:602.742000px;}
.y8a{bottom:603.464550px;}
.y131{bottom:604.362900px;}
.yf9{bottom:605.082900px;}
.y24{bottom:613.004400px;}
.y43{bottom:613.007400px;}
.y89{bottom:620.744400px;}
.y130{bottom:621.642750px;}
.yf8{bottom:622.362750px;}
.y15f{bottom:628.304850px;}
.y23{bottom:630.284850px;}
.y42{bottom:630.287250px;}
.ybc{bottom:637.842000px;}
.y88{bottom:637.844400px;}
.y12f{bottom:638.922600px;}
.yf7{bottom:639.642600px;}
.y15e{bottom:645.585300px;}
.y22{bottom:647.565300px;}
.y41{bottom:647.567100px;}
.ybb{bottom:655.122450px;}
.y87{bottom:655.124250px;}
.y12e{bottom:656.022600px;}
.yf6{bottom:656.922450px;}
.yba{bottom:672.402900px;}
.y86{bottom:672.404100px;}
.y12d{bottom:673.302450px;}
.yf5{bottom:674.022450px;}
.y15d{bottom:681.045000px;}
.y21{bottom:682.484850px;}
.yb9{bottom:689.683350px;}
.y85{bottom:689.683950px;}
.y12c{bottom:690.582300px;}
.yf4{bottom:691.302300px;}
.y84{bottom:706.963800px;}
.y12b{bottom:707.862150px;}
.yf3{bottom:708.582150px;}
.y15c{bottom:716.145000px;}
.y20{bottom:716.325150px;}
.y83{bottom:724.243650px;}
.y12a{bottom:725.142000px;}
.yf2{bottom:725.862000px;}
.y82{bottom:741.343650px;}
.y129{bottom:742.242000px;}
.yf1{bottom:743.141850px;}
.y1f{bottom:751.605000px;}
.y15b{bottom:753.764700px;}
.yb8{bottom:758.623500px;}
.y81{bottom:758.624100px;}
.y128{bottom:759.521850px;}
.yf0{bottom:760.241850px;}
.y1e{bottom:768.885450px;}
.yb7{bottom:775.903350px;}
.y80{bottom:775.904550px;}
.yef{bottom:777.521700px;}
.y1d{bottom:786.165300px;}
.y15a{bottom:789.224400px;}
.y7f{bottom:793.185000px;}
.yee{bottom:794.801550px;}
.y127{bottom:794.801700px;}
.y1c{bottom:803.265300px;}
.y159{bottom:806.504850px;}
.y7e{bottom:810.465450px;}
.yb6{bottom:811.183200px;}
.yed{bottom:812.081400px;}
.y126{bottom:812.082150px;}
.y1b{bottom:820.545150px;}
.y158{bottom:823.604850px;}
.yb5{bottom:828.463650px;}
.yec{bottom:829.361250px;}
.y125{bottom:829.362000px;}
.y1a{bottom:837.870150px;}
.yb4{bottom:845.608200px;}
.y7d{bottom:845.610000px;}
.y124{bottom:846.687000px;}
.y19{bottom:855.150000px;}
.y157{bottom:858.929850px;}
.yb3{bottom:862.888650px;}
.y7c{bottom:862.890450px;}
.y123{bottom:863.787000px;}
.yeb{bottom:864.686250px;}
.y18{bottom:872.429850px;}
.y156{bottom:876.210300px;}
.yb2{bottom:880.169100px;}
.y7b{bottom:880.170900px;}
.y122{bottom:881.067450px;}
.yea{bottom:881.786250px;}
.y17{bottom:889.710300px;}
.y155{bottom:893.490150px;}
.yb1{bottom:897.448950px;}
.y7a{bottom:897.450750px;}
.y121{bottom:898.347900px;}
.ye9{bottom:899.066700px;}
.y16{bottom:906.809700px;}
.y154{bottom:910.949850px;}
.yb0{bottom:914.729400px;}
.y79{bottom:914.730600px;}
.y120{bottom:915.628350px;}
.ye8{bottom:916.346550px;}
.y15{bottom:924.090150px;}
.y153{bottom:928.049850px;}
.yaf{bottom:932.009850px;}
.y78{bottom:932.011050px;}
.y11f{bottom:932.908800px;}
.ye7{bottom:933.626400px;}
.y152{bottom:945.149850px;}
.yae{bottom:949.109250px;}
.y77{bottom:949.110450px;}
.y11e{bottom:950.189250px;}
.ye6{bottom:950.906850px;}
.y14{bottom:959.370000px;}
.y151{bottom:962.429700px;}
.yad{bottom:966.389700px;}
.y76{bottom:966.390300px;}
.y11d{bottom:967.289250px;}
.ye5{bottom:968.187300px;}
.yac{bottom:983.669550px;}
.y75{bottom:983.670150px;}
.y11c{bottom:984.569100px;}
.ye4{bottom:985.287300px;}
.y13{bottom:995.370000px;}
.y150{bottom:997.710150px;}
.yab{bottom:1000.949400px;}
.y74{bottom:1000.950000px;}
.y11b{bottom:1001.848950px;}
.ye3{bottom:1002.567750px;}
.y14f{bottom:1014.990000px;}
.y73{bottom:1018.229850px;}
.ye2{bottom:1019.848200px;}
.y72{bottom:1035.510300px;}
.ye1{bottom:1037.128650px;}
.y11a{bottom:1037.128800px;}
.y12{bottom:1037.129700px;}
.y14e{bottom:1050.269850px;}
.y71{bottom:1052.609700px;}
.ye0{bottom:1054.409100px;}
.y119{bottom:1054.409250px;}
.y14d{bottom:1067.369850px;}
.yaa{bottom:1069.889550px;}
.y70{bottom:1069.890150px;}
.ydf{bottom:1071.689550px;}
.y118{bottom:1071.689700px;}
.ya9{bottom:1087.169400px;}
.y6f{bottom:1087.170000px;}
.yde{bottom:1088.789550px;}
.y117{bottom:1088.789700px;}
.y11{bottom:1093.109550px;}
.y14c{bottom:1103.190000px;}
.ya8{bottom:1104.449250px;}
.ydd{bottom:1106.069400px;}
.y116{bottom:1106.069550px;}
.y6e{bottom:1122.479700px;}
.ydc{bottom:1123.379100px;}
.y115{bottom:1123.379250px;}
.y10{bottom:1130.940000px;}
.ya7{bottom:1139.759550px;}
.y6d{bottom:1139.760150px;}
.y114{bottom:1140.659100px;}
.ydb{bottom:1140.659550px;}
.ya6{bottom:1157.039400px;}
.y6c{bottom:1157.040000px;}
.y113{bottom:1157.938950px;}
.yda{bottom:1157.940000px;}
.ya5{bottom:1174.139400px;}
.y6b{bottom:1174.140000px;}
.yb{bottom:1191.060000px;}
.y3{bottom:1194.300000px;}
.y67{bottom:1221.600000px;}
.y69{bottom:1224.540000px;}
.y2{bottom:1232.460300px;}
.y1{bottom:1251.000000px;}
.h2{height:0.000000px;}
.h17{height:17.099400px;}
.h16{height:20.100000px;}
.h12{height:20.155078px;}
.h4{height:22.528800px;}
.h14{height:27.750000px;}
.h8{height:27.900000px;}
.ha{height:38.100000px;}
.h10{height:40.014000px;}
.h3{height:44.149219px;}
.he{height:44.282160px;}
.h7{height:44.521200px;}
.hd{height:49.083840px;}
.h11{height:49.348800px;}
.hb{height:50.580450px;}
.h5{height:53.640000px;}
.hc{height:56.146289px;}
.h15{height:57.600000px;}
.h9{height:70.958160px;}
.hf{height:98.161200px;}
.h13{height:762.750000px;}
.h6{height:830.400000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:41.700000px;}
.w2{width:49.500000px;}
.w6{width:56.850000px;}
.w3{width:74.159700px;}
.w4{width:560.310000px;}
.w7{width:762.840000px;}
.w1{width:894.000000px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x10{left:1.260000px;}
.x4{left:8.340000px;}
.x6{left:10.655850px;}
.xf{left:27.360000px;}
.x3{left:34.260000px;}
.x5{left:63.540300px;}
.x1{left:74.340300px;}
.x7{left:80.279850px;}
.x13{left:128.375895px;}
.xb{left:133.055850px;}
.xc{left:162.930045px;}
.x12{left:353.444700px;}
.xa{left:394.814850px;}
.x8{left:396.614850px;}
.x9{left:455.324550px;}
.xd{left:482.685435px;}
.x11{left:837.150000px;}
.x2{left:844.500000px;}
.xe{left:852.300000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.656000pt;}
.lsf{letter-spacing:-0.272533pt;}
.ls3{letter-spacing:-0.094933pt;}
.ls2{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.033280pt;}
.ls10{letter-spacing:0.229813pt;}
.ls4{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.231893pt;}
.lse{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.367787pt;}
.lsa{letter-spacing:0.544427pt;}
.lsd{letter-spacing:0.546507pt;}
.ls8{letter-spacing:0.592000pt;}
.ls6{letter-spacing:0.821333pt;}
.ls7{letter-spacing:1.184000pt;}
.lsc{letter-spacing:12.751413pt;}
.ws3{word-spacing:-29.534720pt;}
.ws0{word-spacing:-23.696640pt;}
.ws5{word-spacing:-15.588693pt;}
.ws4{word-spacing:-14.998293pt;}
.ws1{word-spacing:-14.767360pt;}
.ws7{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.672427pt;}
.ws9{word-spacing:-14.494827pt;}
.ws6{word-spacing:-11.792640pt;}
.ws8{word-spacing:0.000000pt;}
._25{margin-left:-2.083817pt;}
._1{margin-left:-1.119285pt;}
._0{width:0.955859pt;}
._3{width:2.453231pt;}
._2{width:3.504853pt;}
._a{width:4.931651pt;}
._9{width:5.897796pt;}
._8{width:6.905540pt;}
._d{width:7.811148pt;}
._4{width:8.975769pt;}
._14{width:9.883644pt;}
._1d{width:10.781735pt;}
._5{width:11.686219pt;}
._11{width:12.854177pt;}
._18{width:13.758339pt;}
._6{width:16.360425pt;}
._7{width:17.263070pt;}
._20{width:18.910427pt;}
._1a{width:19.972149pt;}
._1b{width:20.931153pt;}
._10{width:22.158721pt;}
._f{width:23.396226pt;}
._17{width:24.520569pt;}
._22{width:26.031026pt;}
._e{width:27.143860pt;}
._1c{width:28.126806pt;}
._21{width:29.288749pt;}
._23{width:30.256389pt;}
._19{width:31.220202pt;}
._12{width:32.133690pt;}
._13{width:33.837444pt;}
._16{width:34.737944pt;}
._15{width:36.440904pt;}
._b{width:38.138325pt;}
._c{width:39.465414pt;}
._24{width:40.421997pt;}
._2c{width:41.647856pt;}
._30{width:42.651748pt;}
._1f{width:45.095917pt;}
._1e{width:46.161103pt;}
._26{width:47.611447pt;}
._27{width:48.724110pt;}
._28{width:50.517480pt;}
._2a{width:54.076559pt;}
._2b{width:55.048260pt;}
._2d{width:56.468093pt;}
._2e{width:57.843769pt;}
._29{width:60.822883pt;}
._31{width:72.507182pt;}
._2f{width:89.348552pt;}
._32{width:118.933368pt;}
.fs2{font-size:26.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-0.960000pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:3.040000pt;}
.y68{bottom:4.053333pt;}
.y65{bottom:4.965067pt;}
.y9{bottom:5.018800pt;}
.y7{bottom:7.525467pt;}
.y63{bottom:7.605200pt;}
.ye{bottom:15.839733pt;}
.ya{bottom:19.871867pt;}
.yc{bottom:27.360000pt;}
.yd{bottom:31.360000pt;}
.y8{bottom:33.733333pt;}
.y66{bottom:38.752133pt;}
.y5{bottom:48.992133pt;}
.y64{bottom:51.066667pt;}
.y61{bottom:52.031733pt;}
.y6{bottom:59.066667pt;}
.yd9{bottom:60.992133pt;}
.y60{bottom:71.871867pt;}
.y4{bottom:72.671867pt;}
.y62{bottom:76.266667pt;}
.y5f{bottom:82.116400pt;}
.yd8{bottom:84.671867pt;}
.yd7{bottom:87.550800pt;}
.ya4{bottom:88.191467pt;}
.y5e{bottom:97.476267pt;}
.y40{bottom:99.553867pt;}
.yd6{bottom:102.750800pt;}
.ya3{bottom:103.551333pt;}
.y112{bottom:104.991067pt;}
.y14b{bottom:106.431867pt;}
.y5d{bottom:112.676267pt;}
.y3f{bottom:114.913733pt;}
.yd5{bottom:118.110667pt;}
.ya2{bottom:118.751333pt;}
.y111{bottom:120.350933pt;}
.y14a{bottom:121.792267pt;}
.y5c{bottom:128.036133pt;}
.y3e{bottom:130.273600pt;}
.yd4{bottom:133.465333pt;}
.ya1{bottom:134.106000pt;}
.y149{bottom:137.146933pt;}
.y5b{bottom:143.390800pt;}
.y3d{bottom:145.628267pt;}
.yd3{bottom:148.825200pt;}
.ya0{bottom:149.465867pt;}
.y110{bottom:151.545733pt;}
.y148{bottom:152.506800pt;}
.y5a{bottom:158.750667pt;}
.y3c{bottom:160.988133pt;}
.yd2{bottom:164.185067pt;}
.y9f{bottom:164.825733pt;}
.y10f{bottom:166.905600pt;}
.y147{bottom:167.866667pt;}
.y59{bottom:174.110533pt;}
.y3b{bottom:176.188133pt;}
.y9e{bottom:180.185600pt;}
.y10e{bottom:182.265467pt;}
.y146{bottom:183.226533pt;}
.y58{bottom:189.470400pt;}
.y3a{bottom:191.548000pt;}
.yd1{bottom:195.385067pt;}
.y9d{bottom:195.385600pt;}
.y10d{bottom:197.625333pt;}
.y145{bottom:198.426533pt;}
.y57{bottom:204.670400pt;}
.y39{bottom:206.907867pt;}
.yd0{bottom:210.744933pt;}
.y9c{bottom:210.745467pt;}
.y10c{bottom:212.985200pt;}
.y144{bottom:213.786400pt;}
.y56{bottom:220.030267pt;}
.y38{bottom:222.267733pt;}
.ycf{bottom:226.104800pt;}
.y9b{bottom:226.105333pt;}
.y10b{bottom:228.345067pt;}
.y143{bottom:229.146800pt;}
.y37{bottom:237.627600pt;}
.yce{bottom:241.504800pt;}
.y9a{bottom:241.505333pt;}
.y10a{bottom:243.584667pt;}
.y142{bottom:244.546800pt;}
.y55{bottom:251.910533pt;}
.y36{bottom:253.027600pt;}
.y99{bottom:256.865200pt;}
.ycd{bottom:257.024533pt;}
.y109{bottom:258.944533pt;}
.y141{bottom:259.906667pt;}
.y35{bottom:268.227600pt;}
.y98{bottom:272.225067pt;}
.ycc{bottom:272.384400pt;}
.y108{bottom:274.304400pt;}
.y140{bottom:275.266533pt;}
.y34{bottom:283.587467pt;}
.y54{bottom:284.230267pt;}
.ycb{bottom:287.424533pt;}
.y97{bottom:287.425067pt;}
.y107{bottom:289.664267pt;}
.y33{bottom:298.947333pt;}
.y53{bottom:299.590133pt;}
.yca{bottom:302.784400pt;}
.y96{bottom:302.784933pt;}
.y106{bottom:305.024133pt;}
.y13f{bottom:306.466533pt;}
.y32{bottom:314.307200pt;}
.y52{bottom:314.950000pt;}
.yc9{bottom:318.144267pt;}
.y105{bottom:320.384000pt;}
.y13e{bottom:321.826400pt;}
.y51{bottom:330.309867pt;}
.yc8{bottom:333.504133pt;}
.y95{bottom:334.625067pt;}
.y104{bottom:335.584000pt;}
.y13d{bottom:337.186267pt;}
.y31{bottom:345.667067pt;}
.y50{bottom:345.669733pt;}
.yc7{bottom:348.864000pt;}
.y103{bottom:350.944400pt;}
.y13c{bottom:352.546133pt;}
.y30{bottom:361.026933pt;}
.y4f{bottom:361.029600pt;}
.y94{bottom:367.105333pt;}
.y13b{bottom:367.906000pt;}
.y2f{bottom:376.226933pt;}
.y4e{bottom:376.229600pt;}
.yc6{bottom:380.544267pt;}
.y93{bottom:382.305333pt;}
.y102{bottom:382.784000pt;}
.y13a{bottom:383.106000pt;}
.y2e{bottom:391.586800pt;}
.y4d{bottom:391.589467pt;}
.y92{bottom:397.665733pt;}
.y139{bottom:398.465867pt;}
.y2d{bottom:406.946667pt;}
.y4c{bottom:406.949333pt;}
.yc5{bottom:413.024000pt;}
.y91{bottom:413.025600pt;}
.y138{bottom:413.825733pt;}
.y101{bottom:415.104267pt;}
.y2c{bottom:422.306533pt;}
.y4b{bottom:422.309200pt;}
.yc4{bottom:428.384400pt;}
.y90{bottom:428.386000pt;}
.y137{bottom:429.185600pt;}
.y100{bottom:430.464667pt;}
.y2b{bottom:437.666400pt;}
.y4a{bottom:437.669067pt;}
.yc3{bottom:443.744800pt;}
.y8f{bottom:443.746400pt;}
.y136{bottom:444.545467pt;}
.yff{bottom:445.825067pt;}
.y2a{bottom:452.866400pt;}
.y49{bottom:452.869067pt;}
.yc2{bottom:458.944800pt;}
.y8e{bottom:458.946400pt;}
.y135{bottom:459.905333pt;}
.yfe{bottom:461.184933pt;}
.y29{bottom:468.226267pt;}
.y48{bottom:468.228933pt;}
.yc1{bottom:474.304667pt;}
.y8d{bottom:474.306267pt;}
.y134{bottom:475.105333pt;}
.yfd{bottom:476.545333pt;}
.y28{bottom:483.586133pt;}
.y47{bottom:483.588800pt;}
.yc0{bottom:489.664533pt;}
.y8c{bottom:489.666133pt;}
.yfc{bottom:491.931733pt;}
.y27{bottom:498.973067pt;}
.y46{bottom:498.975733pt;}
.ybf{bottom:505.050933pt;}
.y8b{bottom:505.052533pt;}
.y133{bottom:506.491733pt;}
.yfb{bottom:507.131733pt;}
.y26{bottom:514.332933pt;}
.y45{bottom:514.335600pt;}
.ybe{bottom:520.410800pt;}
.y132{bottom:521.851600pt;}
.yfa{bottom:522.491600pt;}
.y160{bottom:527.293333pt;}
.y25{bottom:529.692800pt;}
.y44{bottom:529.695467pt;}
.ybd{bottom:535.770667pt;}
.y8a{bottom:536.412933pt;}
.y131{bottom:537.211467pt;}
.yf9{bottom:537.851467pt;}
.y24{bottom:544.892800pt;}
.y43{bottom:544.895467pt;}
.y89{bottom:551.772800pt;}
.y130{bottom:552.571333pt;}
.yf8{bottom:553.211333pt;}
.y15f{bottom:558.493200pt;}
.y23{bottom:560.253200pt;}
.y42{bottom:560.255333pt;}
.ybc{bottom:566.970667pt;}
.y88{bottom:566.972800pt;}
.y12f{bottom:567.931200pt;}
.yf7{bottom:568.571200pt;}
.y15e{bottom:573.853600pt;}
.y22{bottom:575.613600pt;}
.y41{bottom:575.615200pt;}
.ybb{bottom:582.331067pt;}
.y87{bottom:582.332667pt;}
.y12e{bottom:583.131200pt;}
.yf6{bottom:583.931067pt;}
.yba{bottom:597.691467pt;}
.y86{bottom:597.692533pt;}
.y12d{bottom:598.491067pt;}
.yf5{bottom:599.131067pt;}
.y15d{bottom:605.373333pt;}
.y21{bottom:606.653200pt;}
.yb9{bottom:613.051867pt;}
.y85{bottom:613.052400pt;}
.y12c{bottom:613.850933pt;}
.yf4{bottom:614.490933pt;}
.y84{bottom:628.412267pt;}
.y12b{bottom:629.210800pt;}
.yf3{bottom:629.850800pt;}
.y15c{bottom:636.573333pt;}
.y20{bottom:636.733467pt;}
.y83{bottom:643.772133pt;}
.y12a{bottom:644.570667pt;}
.yf2{bottom:645.210667pt;}
.y82{bottom:658.972133pt;}
.y129{bottom:659.770667pt;}
.yf1{bottom:660.570533pt;}
.y1f{bottom:668.093333pt;}
.y15b{bottom:670.013067pt;}
.yb8{bottom:674.332000pt;}
.y81{bottom:674.332533pt;}
.y128{bottom:675.130533pt;}
.yf0{bottom:675.770533pt;}
.y1e{bottom:683.453733pt;}
.yb7{bottom:689.691867pt;}
.y80{bottom:689.692933pt;}
.yef{bottom:691.130400pt;}
.y1d{bottom:698.813600pt;}
.y15a{bottom:701.532800pt;}
.y7f{bottom:705.053333pt;}
.yee{bottom:706.490267pt;}
.y127{bottom:706.490400pt;}
.y1c{bottom:714.013600pt;}
.y159{bottom:716.893200pt;}
.y7e{bottom:720.413733pt;}
.yb6{bottom:721.051733pt;}
.yed{bottom:721.850133pt;}
.y126{bottom:721.850800pt;}
.y1b{bottom:729.373467pt;}
.y158{bottom:732.093200pt;}
.yb5{bottom:736.412133pt;}
.yec{bottom:737.210000pt;}
.y125{bottom:737.210667pt;}
.y1a{bottom:744.773467pt;}
.yb4{bottom:751.651733pt;}
.y7d{bottom:751.653333pt;}
.y124{bottom:752.610667pt;}
.y19{bottom:760.133333pt;}
.y157{bottom:763.493200pt;}
.yb3{bottom:767.012133pt;}
.y7c{bottom:767.013733pt;}
.y123{bottom:767.810667pt;}
.yeb{bottom:768.610000pt;}
.y18{bottom:775.493200pt;}
.y156{bottom:778.853600pt;}
.yb2{bottom:782.372533pt;}
.y7b{bottom:782.374133pt;}
.y122{bottom:783.171067pt;}
.yea{bottom:783.810000pt;}
.y17{bottom:790.853600pt;}
.y155{bottom:794.213467pt;}
.yb1{bottom:797.732400pt;}
.y7a{bottom:797.734000pt;}
.y121{bottom:798.531467pt;}
.ye9{bottom:799.170400pt;}
.y16{bottom:806.053067pt;}
.y154{bottom:809.733200pt;}
.yb0{bottom:813.092800pt;}
.y79{bottom:813.093867pt;}
.y120{bottom:813.891867pt;}
.ye8{bottom:814.530267pt;}
.y15{bottom:821.413467pt;}
.y153{bottom:824.933200pt;}
.yaf{bottom:828.453200pt;}
.y78{bottom:828.454267pt;}
.y11f{bottom:829.252267pt;}
.ye7{bottom:829.890133pt;}
.y152{bottom:840.133200pt;}
.yae{bottom:843.652667pt;}
.y77{bottom:843.653733pt;}
.y11e{bottom:844.612667pt;}
.ye6{bottom:845.250533pt;}
.y14{bottom:852.773333pt;}
.y151{bottom:855.493067pt;}
.yad{bottom:859.013067pt;}
.y76{bottom:859.013600pt;}
.y11d{bottom:859.812667pt;}
.ye5{bottom:860.610933pt;}
.yac{bottom:874.372933pt;}
.y75{bottom:874.373467pt;}
.y11c{bottom:875.172533pt;}
.ye4{bottom:875.810933pt;}
.y13{bottom:884.773333pt;}
.y150{bottom:886.853467pt;}
.yab{bottom:889.732800pt;}
.y74{bottom:889.733333pt;}
.y11b{bottom:890.532400pt;}
.ye3{bottom:891.171333pt;}
.y14f{bottom:902.213333pt;}
.y73{bottom:905.093200pt;}
.ye2{bottom:906.531733pt;}
.y72{bottom:920.453600pt;}
.ye1{bottom:921.892133pt;}
.y11a{bottom:921.892267pt;}
.y12{bottom:921.893067pt;}
.y14e{bottom:933.573200pt;}
.y71{bottom:935.653067pt;}
.ye0{bottom:937.252533pt;}
.y119{bottom:937.252667pt;}
.y14d{bottom:948.773200pt;}
.yaa{bottom:951.012933pt;}
.y70{bottom:951.013467pt;}
.ydf{bottom:952.612933pt;}
.y118{bottom:952.613067pt;}
.ya9{bottom:966.372800pt;}
.y6f{bottom:966.373333pt;}
.yde{bottom:967.812933pt;}
.y117{bottom:967.813067pt;}
.y11{bottom:971.652933pt;}
.y14c{bottom:980.613333pt;}
.ya8{bottom:981.732667pt;}
.ydd{bottom:983.172800pt;}
.y116{bottom:983.172933pt;}
.y6e{bottom:997.759733pt;}
.ydc{bottom:998.559200pt;}
.y115{bottom:998.559333pt;}
.y10{bottom:1005.280000pt;}
.ya7{bottom:1013.119600pt;}
.y6d{bottom:1013.120133pt;}
.y114{bottom:1013.919200pt;}
.ydb{bottom:1013.919600pt;}
.ya6{bottom:1028.479467pt;}
.y6c{bottom:1028.480000pt;}
.y113{bottom:1029.279067pt;}
.yda{bottom:1029.280000pt;}
.ya5{bottom:1043.679467pt;}
.y6b{bottom:1043.680000pt;}
.yb{bottom:1058.720000pt;}
.y3{bottom:1061.600000pt;}
.y67{bottom:1085.866667pt;}
.y69{bottom:1088.480000pt;}
.y2{bottom:1095.520267pt;}
.y1{bottom:1112.000000pt;}
.h2{height:0.000000pt;}
.h17{height:15.199467pt;}
.h16{height:17.866667pt;}
.h12{height:17.915625pt;}
.h4{height:20.025600pt;}
.h14{height:24.666667pt;}
.h8{height:24.800000pt;}
.ha{height:33.866667pt;}
.h10{height:35.568000pt;}
.h3{height:39.243750pt;}
.he{height:39.361920pt;}
.h7{height:39.574400pt;}
.hd{height:43.630080pt;}
.h11{height:43.865600pt;}
.hb{height:44.960400pt;}
.h5{height:47.680000pt;}
.hc{height:49.907812pt;}
.h15{height:51.200000pt;}
.h9{height:63.073920pt;}
.hf{height:87.254400pt;}
.h13{height:678.000000pt;}
.h6{height:738.133333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:37.066667pt;}
.w2{width:44.000000pt;}
.w6{width:50.533333pt;}
.w3{width:65.919733pt;}
.w4{width:498.053333pt;}
.w7{width:678.080000pt;}
.w1{width:794.666667pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x10{left:1.120000pt;}
.x4{left:7.413333pt;}
.x6{left:9.471867pt;}
.xf{left:24.320000pt;}
.x3{left:30.453333pt;}
.x5{left:56.480267pt;}
.x1{left:66.080267pt;}
.x7{left:71.359867pt;}
.x13{left:114.111907pt;}
.xb{left:118.271867pt;}
.xc{left:144.826707pt;}
.x12{left:314.173067pt;}
.xa{left:350.946533pt;}
.x8{left:352.546533pt;}
.x9{left:404.732933pt;}
.xd{left:429.053720pt;}
.x11{left:744.133333pt;}
.x2{left:750.666667pt;}
.xe{left:757.600000pt;}
}




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