
    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_9121e056df7d17a9ef86d44b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_246fefaf654d28b4d9961e69.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.745117;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_0f2eb897e3ab8d00307cbd1c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.761230;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_25195ed5775b1a503a9e9fee.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.166000;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_178ce41ecd420ae372e3c992.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.713000;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_366d9191788ed453f71da305.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.905000;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_9a33787325df1eeebe90ed2a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.981000;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_25195ed5775b1a503a9e9fee.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.166000;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_178ce41ecd420ae372e3c992.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.713000;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_366d9191788ed453f71da305.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.905000;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_930caa275f6567aaec6b3883.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.047000;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_f948cc8097db614aa567d14a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.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:ffd;src:url('chunks/assets/font_25195ed5775b1a503a9e9fee.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.166000;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_1f3ab35d7fe49c18acb44b1b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.807000;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_366d9191788ed453f71da305.woff2')format("woff");}.fff{font-family:fff;line-height:0.905000;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:ff10;src:url('chunks/assets/font_43c2dabb80139fb215c84da4.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.169000;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:ff11;src:url('chunks/assets/font_bcf94b68e80187739fb2e563.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.993000;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:ff12;src:url('chunks/assets/font_366d9191788ed453f71da305.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.905000;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:ff13;src:url('chunks/assets/font_178ce41ecd420ae372e3c992.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.713000;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:ff14;src:url('chunks/assets/font_366d9191788ed453f71da305.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.905000;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:ff15;src:url('chunks/assets/font_43c2dabb80139fb215c84da4.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.169000;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:ff16;src:url('chunks/assets/font_bcf94b68e80187739fb2e563.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.993000;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);}
.m1{transform:matrix(0.250000,-0.000262,0.000262,0.250000,0,0);-ms-transform:matrix(0.250000,-0.000262,0.000262,0.250000,0,0);-webkit-transform:matrix(0.250000,-0.000262,0.000262,0.250000,0,0);}
.m2{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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-7.800600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.024000px;}
.v1{vertical-align:19.980000px;}
.v4{vertical-align:34.200000px;}
.lsb{letter-spacing:-4.032000px;}
.lsa{letter-spacing:-2.352000px;}
.ls9{letter-spacing:-2.016000px;}
.ls8{letter-spacing:-1.932000px;}
.lsc{letter-spacing:-1.680000px;}
.ls7{letter-spacing:-1.512000px;}
.ls6{letter-spacing:-1.260000px;}
.lsd{letter-spacing:-1.056000px;}
.ls3{letter-spacing:-0.540000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:1.399200px;}
.ls2{letter-spacing:19.764000px;}
.ls5{letter-spacing:177.236400px;}
.ls4{letter-spacing:178.244400px;}
.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;}
}
.ws15{word-spacing:-22.848000px;}
.ws10{word-spacing:-19.764000px;}
.ws4{word-spacing:-15.120000px;}
.ws1c{word-spacing:-13.056000px;}
.ws3b{word-spacing:-12.000000px;}
.ws3{word-spacing:-11.760000px;}
.ws2{word-spacing:-11.130000px;}
.ws31{word-spacing:-10.404000px;}
.wsf{word-spacing:-10.260000px;}
.wsa{word-spacing:-1.554000px;}
.ws1{word-spacing:-1.399200px;}
.ws0{word-spacing:0.000000px;}
.ws11{word-spacing:0.540000px;}
.wsb{word-spacing:1.932000px;}
.ws9{word-spacing:2.394000px;}
.wsd{word-spacing:4.662000px;}
.ws8{word-spacing:11.172000px;}
.wse{word-spacing:16.548000px;}
.ws7{word-spacing:19.656000px;}
.ws5{word-spacing:22.428000px;}
.wsc{word-spacing:22.680000px;}
.ws6{word-spacing:38.514000px;}
.ws39{word-spacing:52.916400px;}
.ws41{word-spacing:54.180000px;}
.ws42{word-spacing:54.679800px;}
.ws40{word-spacing:55.603800px;}
.ws38{word-spacing:56.024400px;}
.ws3f{word-spacing:61.147800px;}
.ws3e{word-spacing:61.651800px;}
.ws30{word-spacing:63.416400px;}
.ws21{word-spacing:63.835800px;}
.ws2e{word-spacing:65.180400px;}
.ws2d{word-spacing:65.516400px;}
.ws2c{word-spacing:65.600400px;}
.ws2f{word-spacing:66.524400px;}
.ws20{word-spacing:66.943800px;}
.ws3a{word-spacing:66.948000px;}
.ws2b{word-spacing:67.532400px;}
.ws43{word-spacing:68.287800px;}
.ws37{word-spacing:68.456400px;}
.ws35{word-spacing:68.876400px;}
.ws34{word-spacing:68.960400px;}
.ws32{word-spacing:69.380400px;}
.ws25{word-spacing:69.631800px;}
.ws3c{word-spacing:69.632400px;}
.ws3d{word-spacing:70.640400px;}
.ws36{word-spacing:71.228400px;}
.ws29{word-spacing:71.816400px;}
.ws28{word-spacing:72.152400px;}
.ws27{word-spacing:72.235800px;}
.ws26{word-spacing:72.571800px;}
.ws2a{word-spacing:72.656400px;}
.ws24{word-spacing:77.443800px;}
.ws22{word-spacing:77.863800px;}
.ws33{word-spacing:81.392400px;}
.ws23{word-spacing:81.559800px;}
.ws1e{word-spacing:101.719800px;}
.ws1a{word-spacing:101.720400px;}
.ws1d{word-spacing:102.055800px;}
.ws16{word-spacing:103.404000px;}
.ws19{word-spacing:103.484400px;}
.ws18{word-spacing:103.904400px;}
.ws1b{word-spacing:107.268000px;}
.ws1f{word-spacing:107.851800px;}
.ws14{word-spacing:107.940000px;}
.ws17{word-spacing:109.700400px;}
.ws12{word-spacing:116.168400px;}
.ws13{word-spacing:119.864400px;}
._e{margin-left:-19.614600px;}
._3{margin-left:-5.880000px;}
._2{margin-left:-3.810000px;}
._1{margin-left:-2.368800px;}
._0{margin-left:-1.236000px;}
._4{width:1.018800px;}
._5{width:2.444400px;}
._9{width:3.571200px;}
._6{width:5.410200px;}
._7{width:6.506400px;}
._12{width:7.579200px;}
._b{width:8.625600px;}
._a{width:9.678600px;}
._8{width:12.393000px;}
._11{width:13.724400px;}
._c{width:16.254000px;}
._f{width:18.278400px;}
._d{width:19.769400px;}
._10{width:21.097200px;}
._13{width:30.240000px;}
._16{width:77.112000px;}
._15{width:81.564000px;}
._14{width:89.376000px;}
.fc4{color:rgb(112,111,111);}
.fc3{color:transparent;}
.fc2{color:rgb(29,29,27);}
.fc1{color:rgb(0,150,0);}
.fc0{color:rgb(255,239,0);}
.fs5{font-size:30.000000px;}
.fs3{font-size:34.980000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs8{font-size:84.000000px;}
.fs1{font-size:110.286661px;}
.fs9{font-size:216.000000px;}
.fs0{font-size:495.818400px;}
.y0{bottom:0.000000px;}
.y3{bottom:17.847000px;}
.y8{bottom:24.075300px;}
.y53{bottom:56.038650px;}
.y52{bottom:71.043150px;}
.ye3{bottom:78.925350px;}
.y103{bottom:79.540650px;}
.y102{bottom:85.990650px;}
.y51{bottom:86.047650px;}
.ye2{bottom:93.925350px;}
.y50{bottom:101.052150px;}
.ye1{bottom:101.875500px;}
.y101{bottom:122.523300px;}
.y100{bottom:128.973300px;}
.y11e{bottom:133.935600px;}
.yc7{bottom:138.273450px;}
.ye0{bottom:138.408000px;}
.y4b{bottom:138.747150px;}
.y5f{bottom:138.852150px;}
.y138{bottom:147.656100px;}
.y11d{bottom:148.938600px;}
.yc6{bottom:153.273450px;}
.ydf{bottom:153.408000px;}
.y4a{bottom:153.751650px;}
.y5e{bottom:153.856650px;}
.yde{bottom:161.358150px;}
.y11c{bottom:163.938600px;}
.y8a{bottom:164.699700px;}
.yff{bottom:165.505800px;}
.y49{bottom:168.756150px;}
.y5d{bottom:168.861150px;}
.yc5{bottom:169.773450px;}
.yfe{bottom:171.955950px;}
.yc4{bottom:177.723450px;}
.y11b{bottom:180.438600px;}
.y89{bottom:182.695200px;}
.y48{bottom:183.760650px;}
.y5c{bottom:183.865650px;}
.y137{bottom:184.188750px;}
.y11a{bottom:188.388600px;}
.ydd{bottom:197.890650px;}
.y47{bottom:198.765150px;}
.y5b{bottom:198.870150px;}
.y88{bottom:200.690700px;}
.ydc{bottom:204.340650px;}
.yfd{bottom:208.488450px;}
.y46{bottom:213.769650px;}
.y5a{bottom:213.874650px;}
.yc3{bottom:214.256100px;}
.yfc{bottom:214.938600px;}
.y87{bottom:218.686200px;}
.y136{bottom:220.721400px;}
.y119{bottom:224.921100px;}
.y45{bottom:228.774150px;}
.y59{bottom:228.879150px;}
.yc2{bottom:229.256100px;}
.y135{bottom:235.721400px;}
.y118{bottom:239.921100px;}
.ydb{bottom:240.873300px;}
.y44{bottom:243.778650px;}
.y58{bottom:243.883650px;}
.yc1{bottom:245.756100px;}
.yda{bottom:247.323300px;}
.y117{bottom:247.871250px;}
.yfb{bottom:251.471100px;}
.y134{bottom:252.221400px;}
.yc0{bottom:253.706100px;}
.y86{bottom:254.690700px;}
.yfa{bottom:257.921100px;}
.y43{bottom:258.783150px;}
.y57{bottom:258.888150px;}
.y133{bottom:268.721400px;}
.y85{bottom:272.686200px;}
.y42{bottom:273.787650px;}
.y56{bottom:273.892650px;}
.yd9{bottom:283.855950px;}
.y116{bottom:284.403750px;}
.y41{bottom:288.792150px;}
.y55{bottom:288.897150px;}
.ybf{bottom:290.238750px;}
.yd8{bottom:290.305950px;}
.y84{bottom:290.681700px;}
.yf9{bottom:294.453750px;}
.y115{bottom:299.403750px;}
.y40{bottom:303.796650px;}
.y54{bottom:303.901650px;}
.ybe{bottom:305.238750px;}
.y132{bottom:305.254050px;}
.y83{bottom:308.677200px;}
.yf8{bottom:309.453750px;}
.ya9{bottom:310.294800px;}
.ybd{bottom:313.188750px;}
.y114{bottom:315.903750px;}
.yf7{bottom:317.403750px;}
.y3f{bottom:318.801150px;}
.y131{bottom:321.754050px;}
.y113{bottom:323.846400px;}
.ya8{bottom:325.299300px;}
.y82{bottom:326.672700px;}
.yd7{bottom:326.838600px;}
.yd6{bottom:333.288600px;}
.y3e{bottom:333.805650px;}
.y81{bottom:344.668200px;}
.y3d{bottom:348.810150px;}
.ybc{bottom:349.721400px;}
.yf6{bottom:353.936400px;}
.ybb{bottom:356.171400px;}
.y130{bottom:358.286550px;}
.y112{bottom:360.386400px;}
.y80{bottom:362.663700px;}
.y3c{bottom:363.814650px;}
.y16{bottom:368.913750px;}
.yf5{bottom:368.936400px;}
.yd5{bottom:369.821250px;}
.y12f{bottom:373.286550px;}
.yd4{bottom:376.271250px;}
.yf4{bottom:376.886550px;}
.y3b{bottom:378.819150px;}
.y7f{bottom:380.659200px;}
.ya7{bottom:380.807700px;}
.y12e{bottom:381.236550px;}
.y15{bottom:383.918250px;}
.yba{bottom:392.704050px;}
.y3a{bottom:393.823650px;}
.y111{bottom:396.919050px;}
.y7e{bottom:398.654700px;}
.ya6{bottom:398.803200px;}
.y14{bottom:398.922750px;}
.y110{bottom:403.369200px;}
.yb9{bottom:407.704050px;}
.y39{bottom:408.828150px;}
.yd3{bottom:412.803900px;}
.yf3{bottom:413.419050px;}
.y13{bottom:413.927250px;}
.yb8{bottom:415.646700px;}
.ya5{bottom:416.798700px;}
.y12d{bottom:417.769200px;}
.yd2{bottom:419.253900px;}
.y38{bottom:423.832650px;}
.y12c{bottom:424.219200px;}
.yf2{bottom:428.419050px;}
.y7d{bottom:434.659200px;}
.ya4{bottom:434.794200px;}
.yf1{bottom:436.369200px;}
.y37{bottom:438.837150px;}
.y10f{bottom:439.901700px;}
.yb7{bottom:452.186700px;}
.y7c{bottom:452.654700px;}
.ya3{bottom:452.789700px;}
.y36{bottom:453.841650px;}
.y10e{bottom:454.901700px;}
.yd1{bottom:455.786550px;}
.y12b{bottom:460.748850px;}
.yd0{bottom:462.236550px;}
.y10d{bottom:462.851700px;}
.y35{bottom:468.846150px;}
.y7b{bottom:470.650200px;}
.ya2{bottom:470.785200px;}
.yf0{bottom:472.901700px;}
.y12a{bottom:475.751850px;}
.y34{bottom:483.850650px;}
.yef{bottom:487.901700px;}
.y7a{bottom:488.645700px;}
.yb6{bottom:488.719200px;}
.ya1{bottom:488.780700px;}
.y129{bottom:490.751850px;}
.y128{bottom:498.701850px;}
.ycf{bottom:498.769200px;}
.y33{bottom:498.855150px;}
.y10c{bottom:499.384350px;}
.y12{bottom:501.404700px;}
.yee{bottom:504.401700px;}
.yb5{bottom:505.219200px;}
.y79{bottom:506.641200px;}
.ya0{bottom:506.776200px;}
.yed{bottom:512.351700px;}
.y32{bottom:513.859650px;}
.y10b{bottom:514.384350px;}
.y11{bottom:516.409200px;}
.y78{bottom:524.636700px;}
.y9f{bottom:524.771700px;}
.y31{bottom:528.864150px;}
.y10a{bottom:530.884350px;}
.y10{bottom:531.413700px;}
.y127{bottom:535.234500px;}
.y109{bottom:538.834350px;}
.y126{bottom:541.684500px;}
.yb4{bottom:541.751850px;}
.y77{bottom:542.632200px;}
.y9e{bottom:542.767200px;}
.y30{bottom:543.868650px;}
.yf{bottom:546.418200px;}
.yec{bottom:548.884350px;}
.yb3{bottom:556.751850px;}
.yce{bottom:558.251850px;}
.y2f{bottom:558.873150px;}
.y76{bottom:560.627700px;}
.y9d{bottom:560.762700px;}
.ye{bottom:561.422700px;}
.yeb{bottom:563.884350px;}
.yb2{bottom:564.701850px;}
.yea{bottom:571.834350px;}
.y2e{bottom:573.877650px;}
.y108{bottom:575.367000px;}
.yd{bottom:576.427200px;}
.y125{bottom:578.217150px;}
.y75{bottom:578.623200px;}
.y9c{bottom:578.758200px;}
.y7{bottom:583.197750px;}
.y2d{bottom:588.882150px;}
.y107{bottom:590.367000px;}
.y124{bottom:594.717150px;}
.ycd{bottom:594.784350px;}
.y74{bottom:596.618700px;}
.y106{bottom:598.317000px;}
.yb1{bottom:601.234500px;}
.y2c{bottom:603.886650px;}
.ye9{bottom:608.367000px;}
.y2{bottom:611.487000px;}
.y73{bottom:614.614200px;}
.y9b{bottom:614.762700px;}
.ye8{bottom:614.817000px;}
.yb0{bottom:616.234500px;}
.y2b{bottom:618.891150px;}
.yaf{bottom:624.184500px;}
.y1{bottom:629.667000px;}
.y123{bottom:631.249800px;}
.y72{bottom:632.609700px;}
.y9a{bottom:632.758200px;}
.y2a{bottom:633.895650px;}
.y105{bottom:634.849650px;}
.ycc{bottom:637.767000px;}
.y122{bottom:647.749800px;}
.y29{bottom:648.900150px;}
.y104{bottom:649.849650px;}
.y99{bottom:650.753700px;}
.ye7{bottom:651.349650px;}
.y4{bottom:651.447000px;}
.yae{bottom:658.771800px;}
.y28{bottom:663.904650px;}
.y4f{bottom:663.915150px;}
.y121{bottom:664.249800px;}
.ye6{bottom:666.349650px;}
.y71{bottom:668.614200px;}
.y98{bottom:668.749200px;}
.ycb{bottom:674.299650px;}
.y27{bottom:678.909150px;}
.y4e{bottom:678.919650px;}
.y70{bottom:686.609700px;}
.y97{bottom:686.744700px;}
.yca{bottom:689.299650px;}
.y26{bottom:693.913650px;}
.yc9{bottom:697.242300px;}
.yad{bottom:697.249800px;}
.y120{bottom:700.782450px;}
.y6f{bottom:704.605200px;}
.y96{bottom:704.740200px;}
.y25{bottom:708.918150px;}
.ye5{bottom:710.832300px;}
.y11f{bottom:717.282450px;}
.y6e{bottom:722.600700px;}
.y95{bottom:722.735700px;}
.y24{bottom:723.922650px;}
.ye4{bottom:725.832300px;}
.yc8{bottom:733.782300px;}
.yac{bottom:733.782450px;}
.y23{bottom:738.927150px;}
.y6d{bottom:740.596200px;}
.y94{bottom:740.731200px;}
.y6c{bottom:758.591700px;}
.y93{bottom:758.726700px;}
.y22{bottom:771.368850px;}
.y6b{bottom:776.587200px;}
.y92{bottom:776.722200px;}
.y21{bottom:786.373350px;}
.y6a{bottom:794.582700px;}
.y20{bottom:801.377850px;}
.y69{bottom:812.578200px;}
.y91{bottom:812.726700px;}
.y1f{bottom:816.382350px;}
.y68{bottom:830.573700px;}
.y90{bottom:830.722200px;}
.y1e{bottom:831.386850px;}
.y1d{bottom:846.391350px;}
.y67{bottom:848.569200px;}
.y8f{bottom:848.717700px;}
.y1c{bottom:861.395850px;}
.y66{bottom:866.564700px;}
.y8e{bottom:866.713200px;}
.y1b{bottom:876.400350px;}
.y65{bottom:884.560200px;}
.y8d{bottom:884.708700px;}
.y1a{bottom:891.404850px;}
.y64{bottom:902.555700px;}
.y8c{bottom:902.704200px;}
.y19{bottom:906.409350px;}
.y63{bottom:920.551200px;}
.y8b{bottom:920.699700px;}
.y18{bottom:921.413850px;}
.y17{bottom:936.418350px;}
.yc{bottom:979.346550px;}
.y4d{bottom:994.346850px;}
.yb{bottom:994.351050px;}
.y4c{bottom:1009.351350px;}
.ya{bottom:1009.355550px;}
.yaa{bottom:1031.344050px;}
.y62{bottom:1055.157000px;}
.yab{bottom:1071.219750px;}
.y61{bottom:1074.655500px;}
.y60{bottom:1094.155500px;}
.y6{bottom:1110.127650px;}
.y5{bottom:1128.127650px;}
.y9{bottom:1143.779550px;}
.h7{height:22.500000px;}
.h12{height:27.000000px;}
.h8{height:31.500000px;}
.h9{height:31.542000px;}
.h6{height:33.600000px;}
.ha{height:38.766000px;}
.hc{height:44.118000px;}
.h5{height:44.304000px;}
.h10{height:44.448000px;}
.h4{height:46.044199px;}
.hb{height:52.866000px;}
.hd{height:66.612000px;}
.h3{height:76.575992px;}
.hf{height:77.784000px;}
.h14{height:78.647400px;}
.h11{height:78.648000px;}
.h13{height:78.677400px;}
.he{height:162.000000px;}
.h2{height:344.264534px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:892.912500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:24.361800px;}
.x6{left:55.275600px;}
.xb{left:127.559100px;}
.x4{left:130.573350px;}
.x11{left:184.867050px;}
.x7{left:299.055150px;}
.xe{left:316.131450px;}
.xf{left:420.944850px;}
.x10{left:478.252950px;}
.xc{left:493.233600px;}
.xd{left:501.732300px;}
.x8{left:542.833650px;}
.x12{left:550.536450px;}
.xa{left:604.290300px;}
.x9{left:861.909600px;}
.x3{left:1112.088150px;}
.x2{left:1581.348150px;}
.x1{left:1583.148000px;}
@media print{
.v3{vertical-align:-6.933867pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.688000pt;}
.v1{vertical-align:17.760000pt;}
.v4{vertical-align:30.400000pt;}
.lsb{letter-spacing:-3.584000pt;}
.lsa{letter-spacing:-2.090667pt;}
.ls9{letter-spacing:-1.792000pt;}
.ls8{letter-spacing:-1.717333pt;}
.lsc{letter-spacing:-1.493333pt;}
.ls7{letter-spacing:-1.344000pt;}
.ls6{letter-spacing:-1.120000pt;}
.lsd{letter-spacing:-0.938667pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:1.243733pt;}
.ls2{letter-spacing:17.568000pt;}
.ls5{letter-spacing:157.543467pt;}
.ls4{letter-spacing:158.439467pt;}
.ws15{word-spacing:-20.309333pt;}
.ws10{word-spacing:-17.568000pt;}
.ws4{word-spacing:-13.440000pt;}
.ws1c{word-spacing:-11.605333pt;}
.ws3b{word-spacing:-10.666667pt;}
.ws3{word-spacing:-10.453333pt;}
.ws2{word-spacing:-9.893333pt;}
.ws31{word-spacing:-9.248000pt;}
.wsf{word-spacing:-9.120000pt;}
.wsa{word-spacing:-1.381333pt;}
.ws1{word-spacing:-1.243733pt;}
.ws0{word-spacing:0.000000pt;}
.ws11{word-spacing:0.480000pt;}
.wsb{word-spacing:1.717333pt;}
.ws9{word-spacing:2.128000pt;}
.wsd{word-spacing:4.144000pt;}
.ws8{word-spacing:9.930667pt;}
.wse{word-spacing:14.709333pt;}
.ws7{word-spacing:17.472000pt;}
.ws5{word-spacing:19.936000pt;}
.wsc{word-spacing:20.160000pt;}
.ws6{word-spacing:34.234667pt;}
.ws39{word-spacing:47.036800pt;}
.ws41{word-spacing:48.160000pt;}
.ws42{word-spacing:48.604267pt;}
.ws40{word-spacing:49.425600pt;}
.ws38{word-spacing:49.799467pt;}
.ws3f{word-spacing:54.353600pt;}
.ws3e{word-spacing:54.801600pt;}
.ws30{word-spacing:56.370133pt;}
.ws21{word-spacing:56.742933pt;}
.ws2e{word-spacing:57.938133pt;}
.ws2d{word-spacing:58.236800pt;}
.ws2c{word-spacing:58.311467pt;}
.ws2f{word-spacing:59.132800pt;}
.ws20{word-spacing:59.505600pt;}
.ws3a{word-spacing:59.509333pt;}
.ws2b{word-spacing:60.028800pt;}
.ws43{word-spacing:60.700267pt;}
.ws37{word-spacing:60.850133pt;}
.ws35{word-spacing:61.223467pt;}
.ws34{word-spacing:61.298133pt;}
.ws32{word-spacing:61.671467pt;}
.ws25{word-spacing:61.894933pt;}
.ws3c{word-spacing:61.895467pt;}
.ws3d{word-spacing:62.791467pt;}
.ws36{word-spacing:63.314133pt;}
.ws29{word-spacing:63.836800pt;}
.ws28{word-spacing:64.135467pt;}
.ws27{word-spacing:64.209600pt;}
.ws26{word-spacing:64.508267pt;}
.ws2a{word-spacing:64.583467pt;}
.ws24{word-spacing:68.838933pt;}
.ws22{word-spacing:69.212267pt;}
.ws33{word-spacing:72.348800pt;}
.ws23{word-spacing:72.497600pt;}
.ws1e{word-spacing:90.417600pt;}
.ws1a{word-spacing:90.418133pt;}
.ws1d{word-spacing:90.716267pt;}
.ws16{word-spacing:91.914667pt;}
.ws19{word-spacing:91.986133pt;}
.ws18{word-spacing:92.359467pt;}
.ws1b{word-spacing:95.349333pt;}
.ws1f{word-spacing:95.868267pt;}
.ws14{word-spacing:95.946667pt;}
.ws17{word-spacing:97.511467pt;}
.ws12{word-spacing:103.260800pt;}
.ws13{word-spacing:106.546133pt;}
._e{margin-left:-17.435200pt;}
._3{margin-left:-5.226667pt;}
._2{margin-left:-3.386667pt;}
._1{margin-left:-2.105600pt;}
._0{margin-left:-1.098667pt;}
._4{width:0.905600pt;}
._5{width:2.172800pt;}
._9{width:3.174400pt;}
._6{width:4.809067pt;}
._7{width:5.783467pt;}
._12{width:6.737067pt;}
._b{width:7.667200pt;}
._a{width:8.603200pt;}
._8{width:11.016000pt;}
._11{width:12.199467pt;}
._c{width:14.448000pt;}
._f{width:16.247467pt;}
._d{width:17.572800pt;}
._10{width:18.753067pt;}
._13{width:26.880000pt;}
._16{width:68.544000pt;}
._15{width:72.501333pt;}
._14{width:79.445333pt;}
.fs5{font-size:26.666667pt;}
.fs3{font-size:31.093333pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs8{font-size:74.666667pt;}
.fs1{font-size:98.032587pt;}
.fs9{font-size:192.000000pt;}
.fs0{font-size:440.727467pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:15.864000pt;}
.y8{bottom:21.400267pt;}
.y53{bottom:49.812133pt;}
.y52{bottom:63.149467pt;}
.ye3{bottom:70.155867pt;}
.y103{bottom:70.702800pt;}
.y102{bottom:76.436133pt;}
.y51{bottom:76.486800pt;}
.ye2{bottom:83.489200pt;}
.y50{bottom:89.824133pt;}
.ye1{bottom:90.556000pt;}
.y101{bottom:108.909600pt;}
.y100{bottom:114.642933pt;}
.y11e{bottom:119.053867pt;}
.yc7{bottom:122.909733pt;}
.ye0{bottom:123.029333pt;}
.y4b{bottom:123.330800pt;}
.y5f{bottom:123.424133pt;}
.y138{bottom:131.249867pt;}
.y11d{bottom:132.389867pt;}
.yc6{bottom:136.243067pt;}
.ydf{bottom:136.362667pt;}
.y4a{bottom:136.668133pt;}
.y5e{bottom:136.761467pt;}
.yde{bottom:143.429467pt;}
.y11c{bottom:145.723200pt;}
.y8a{bottom:146.399733pt;}
.yff{bottom:147.116267pt;}
.y49{bottom:150.005467pt;}
.y5d{bottom:150.098800pt;}
.yc5{bottom:150.909733pt;}
.yfe{bottom:152.849733pt;}
.yc4{bottom:157.976400pt;}
.y11b{bottom:160.389867pt;}
.y89{bottom:162.395733pt;}
.y48{bottom:163.342800pt;}
.y5c{bottom:163.436133pt;}
.y137{bottom:163.723333pt;}
.y11a{bottom:167.456533pt;}
.ydd{bottom:175.902800pt;}
.y47{bottom:176.680133pt;}
.y5b{bottom:176.773467pt;}
.y88{bottom:178.391733pt;}
.ydc{bottom:181.636133pt;}
.yfd{bottom:185.323067pt;}
.y46{bottom:190.017467pt;}
.y5a{bottom:190.110800pt;}
.yc3{bottom:190.449867pt;}
.yfc{bottom:191.056533pt;}
.y87{bottom:194.387733pt;}
.y136{bottom:196.196800pt;}
.y119{bottom:199.929867pt;}
.y45{bottom:203.354800pt;}
.y59{bottom:203.448133pt;}
.yc2{bottom:203.783200pt;}
.y135{bottom:209.530133pt;}
.y118{bottom:213.263200pt;}
.ydb{bottom:214.109600pt;}
.y44{bottom:216.692133pt;}
.y58{bottom:216.785467pt;}
.yc1{bottom:218.449867pt;}
.yda{bottom:219.842933pt;}
.y117{bottom:220.330000pt;}
.yfb{bottom:223.529867pt;}
.y134{bottom:224.196800pt;}
.yc0{bottom:225.516533pt;}
.y86{bottom:226.391733pt;}
.yfa{bottom:229.263200pt;}
.y43{bottom:230.029467pt;}
.y57{bottom:230.122800pt;}
.y133{bottom:238.863467pt;}
.y85{bottom:242.387733pt;}
.y42{bottom:243.366800pt;}
.y56{bottom:243.460133pt;}
.yd9{bottom:252.316400pt;}
.y116{bottom:252.803333pt;}
.y41{bottom:256.704133pt;}
.y55{bottom:256.797467pt;}
.ybf{bottom:257.990000pt;}
.yd8{bottom:258.049733pt;}
.y84{bottom:258.383733pt;}
.yf9{bottom:261.736667pt;}
.y115{bottom:266.136667pt;}
.y40{bottom:270.041467pt;}
.y54{bottom:270.134800pt;}
.ybe{bottom:271.323333pt;}
.y132{bottom:271.336933pt;}
.y83{bottom:274.379733pt;}
.yf8{bottom:275.070000pt;}
.ya9{bottom:275.817600pt;}
.ybd{bottom:278.390000pt;}
.y114{bottom:280.803333pt;}
.yf7{bottom:282.136667pt;}
.y3f{bottom:283.378800pt;}
.y131{bottom:286.003600pt;}
.y113{bottom:287.863467pt;}
.ya8{bottom:289.154933pt;}
.y82{bottom:290.375733pt;}
.yd7{bottom:290.523200pt;}
.yd6{bottom:296.256533pt;}
.y3e{bottom:296.716133pt;}
.y81{bottom:306.371733pt;}
.y3d{bottom:310.053467pt;}
.ybc{bottom:310.863467pt;}
.yf6{bottom:314.610133pt;}
.ybb{bottom:316.596800pt;}
.y130{bottom:318.476933pt;}
.y112{bottom:320.343467pt;}
.y80{bottom:322.367733pt;}
.y3c{bottom:323.390800pt;}
.y16{bottom:327.923333pt;}
.yf5{bottom:327.943467pt;}
.yd5{bottom:328.730000pt;}
.y12f{bottom:331.810267pt;}
.yd4{bottom:334.463333pt;}
.yf4{bottom:335.010267pt;}
.y3b{bottom:336.728133pt;}
.y7f{bottom:338.363733pt;}
.ya7{bottom:338.495733pt;}
.y12e{bottom:338.876933pt;}
.y15{bottom:341.260667pt;}
.yba{bottom:349.070267pt;}
.y3a{bottom:350.065467pt;}
.y111{bottom:352.816933pt;}
.y7e{bottom:354.359733pt;}
.ya6{bottom:354.491733pt;}
.y14{bottom:354.598000pt;}
.y110{bottom:358.550400pt;}
.yb9{bottom:362.403600pt;}
.y39{bottom:363.402800pt;}
.yd3{bottom:366.936800pt;}
.yf3{bottom:367.483600pt;}
.y13{bottom:367.935333pt;}
.yb8{bottom:369.463733pt;}
.ya5{bottom:370.487733pt;}
.y12d{bottom:371.350400pt;}
.yd2{bottom:372.670133pt;}
.y38{bottom:376.740133pt;}
.y12c{bottom:377.083733pt;}
.yf2{bottom:380.816933pt;}
.y7d{bottom:386.363733pt;}
.ya4{bottom:386.483733pt;}
.yf1{bottom:387.883733pt;}
.y37{bottom:390.077467pt;}
.y10f{bottom:391.023733pt;}
.yb7{bottom:401.943733pt;}
.y7c{bottom:402.359733pt;}
.ya3{bottom:402.479733pt;}
.y36{bottom:403.414800pt;}
.y10e{bottom:404.357067pt;}
.yd1{bottom:405.143600pt;}
.y12b{bottom:409.554533pt;}
.yd0{bottom:410.876933pt;}
.y10d{bottom:411.423733pt;}
.y35{bottom:416.752133pt;}
.y7b{bottom:418.355733pt;}
.ya2{bottom:418.475733pt;}
.yf0{bottom:420.357067pt;}
.y12a{bottom:422.890533pt;}
.y34{bottom:430.089467pt;}
.yef{bottom:433.690400pt;}
.y7a{bottom:434.351733pt;}
.yb6{bottom:434.417067pt;}
.ya1{bottom:434.471733pt;}
.y129{bottom:436.223867pt;}
.y128{bottom:443.290533pt;}
.ycf{bottom:443.350400pt;}
.y33{bottom:443.426800pt;}
.y10c{bottom:443.897200pt;}
.y12{bottom:445.693067pt;}
.yee{bottom:448.357067pt;}
.yb5{bottom:449.083733pt;}
.y79{bottom:450.347733pt;}
.ya0{bottom:450.467733pt;}
.yed{bottom:455.423733pt;}
.y32{bottom:456.764133pt;}
.y10b{bottom:457.230533pt;}
.y11{bottom:459.030400pt;}
.y78{bottom:466.343733pt;}
.y9f{bottom:466.463733pt;}
.y31{bottom:470.101467pt;}
.y10a{bottom:471.897200pt;}
.y10{bottom:472.367733pt;}
.y127{bottom:475.764000pt;}
.y109{bottom:478.963867pt;}
.y126{bottom:481.497333pt;}
.yb4{bottom:481.557200pt;}
.y77{bottom:482.339733pt;}
.y9e{bottom:482.459733pt;}
.y30{bottom:483.438800pt;}
.yf{bottom:485.705067pt;}
.yec{bottom:487.897200pt;}
.yb3{bottom:494.890533pt;}
.yce{bottom:496.223867pt;}
.y2f{bottom:496.776133pt;}
.y76{bottom:498.335733pt;}
.y9d{bottom:498.455733pt;}
.ye{bottom:499.042400pt;}
.yeb{bottom:501.230533pt;}
.yb2{bottom:501.957200pt;}
.yea{bottom:508.297200pt;}
.y2e{bottom:510.113467pt;}
.y108{bottom:511.437333pt;}
.yd{bottom:512.379733pt;}
.y125{bottom:513.970800pt;}
.y75{bottom:514.331733pt;}
.y9c{bottom:514.451733pt;}
.y7{bottom:518.398000pt;}
.y2d{bottom:523.450800pt;}
.y107{bottom:524.770667pt;}
.y124{bottom:528.637467pt;}
.ycd{bottom:528.697200pt;}
.y74{bottom:530.327733pt;}
.y106{bottom:531.837333pt;}
.yb1{bottom:534.430667pt;}
.y2c{bottom:536.788133pt;}
.ye9{bottom:540.770667pt;}
.y2{bottom:543.544000pt;}
.y73{bottom:546.323733pt;}
.y9b{bottom:546.455733pt;}
.ye8{bottom:546.504000pt;}
.yb0{bottom:547.764000pt;}
.y2b{bottom:550.125467pt;}
.yaf{bottom:554.830667pt;}
.y1{bottom:559.704000pt;}
.y123{bottom:561.110933pt;}
.y72{bottom:562.319733pt;}
.y9a{bottom:562.451733pt;}
.y2a{bottom:563.462800pt;}
.y105{bottom:564.310800pt;}
.ycc{bottom:566.904000pt;}
.y122{bottom:575.777600pt;}
.y29{bottom:576.800133pt;}
.y104{bottom:577.644133pt;}
.y99{bottom:578.447733pt;}
.ye7{bottom:578.977467pt;}
.y4{bottom:579.064000pt;}
.yae{bottom:585.574933pt;}
.y28{bottom:590.137467pt;}
.y4f{bottom:590.146800pt;}
.y121{bottom:590.444267pt;}
.ye6{bottom:592.310800pt;}
.y71{bottom:594.323733pt;}
.y98{bottom:594.443733pt;}
.ycb{bottom:599.377467pt;}
.y27{bottom:603.474800pt;}
.y4e{bottom:603.484133pt;}
.y70{bottom:610.319733pt;}
.y97{bottom:610.439733pt;}
.yca{bottom:612.710800pt;}
.y26{bottom:616.812133pt;}
.yc9{bottom:619.770933pt;}
.yad{bottom:619.777600pt;}
.y120{bottom:622.917733pt;}
.y6f{bottom:626.315733pt;}
.y96{bottom:626.435733pt;}
.y25{bottom:630.149467pt;}
.ye5{bottom:631.850933pt;}
.y11f{bottom:637.584400pt;}
.y6e{bottom:642.311733pt;}
.y95{bottom:642.431733pt;}
.y24{bottom:643.486800pt;}
.ye4{bottom:645.184267pt;}
.yc8{bottom:652.250933pt;}
.yac{bottom:652.251067pt;}
.y23{bottom:656.824133pt;}
.y6d{bottom:658.307733pt;}
.y94{bottom:658.427733pt;}
.y6c{bottom:674.303733pt;}
.y93{bottom:674.423733pt;}
.y22{bottom:685.661200pt;}
.y6b{bottom:690.299733pt;}
.y92{bottom:690.419733pt;}
.y21{bottom:698.998533pt;}
.y6a{bottom:706.295733pt;}
.y20{bottom:712.335867pt;}
.y69{bottom:722.291733pt;}
.y91{bottom:722.423733pt;}
.y1f{bottom:725.673200pt;}
.y68{bottom:738.287733pt;}
.y90{bottom:738.419733pt;}
.y1e{bottom:739.010533pt;}
.y1d{bottom:752.347867pt;}
.y67{bottom:754.283733pt;}
.y8f{bottom:754.415733pt;}
.y1c{bottom:765.685200pt;}
.y66{bottom:770.279733pt;}
.y8e{bottom:770.411733pt;}
.y1b{bottom:779.022533pt;}
.y65{bottom:786.275733pt;}
.y8d{bottom:786.407733pt;}
.y1a{bottom:792.359867pt;}
.y64{bottom:802.271733pt;}
.y8c{bottom:802.403733pt;}
.y19{bottom:805.697200pt;}
.y63{bottom:818.267733pt;}
.y8b{bottom:818.399733pt;}
.y18{bottom:819.034533pt;}
.y17{bottom:832.371867pt;}
.yc{bottom:870.530267pt;}
.y4d{bottom:883.863867pt;}
.yb{bottom:883.867600pt;}
.y4c{bottom:897.201200pt;}
.ya{bottom:897.204933pt;}
.yaa{bottom:916.750267pt;}
.y62{bottom:937.917333pt;}
.yab{bottom:952.195333pt;}
.y61{bottom:955.249333pt;}
.y60{bottom:972.582667pt;}
.y6{bottom:986.780133pt;}
.y5{bottom:1002.780133pt;}
.y9{bottom:1016.692933pt;}
.h7{height:20.000000pt;}
.h12{height:24.000000pt;}
.h8{height:28.000000pt;}
.h9{height:28.037333pt;}
.h6{height:29.866667pt;}
.ha{height:34.458667pt;}
.hc{height:39.216000pt;}
.h5{height:39.381333pt;}
.h10{height:39.509333pt;}
.h4{height:40.928177pt;}
.hb{height:46.992000pt;}
.hd{height:59.210667pt;}
.h3{height:68.067548pt;}
.hf{height:69.141333pt;}
.h14{height:69.908800pt;}
.h11{height:69.909333pt;}
.h13{height:69.935467pt;}
.he{height:144.000000pt;}
.h2{height:306.012919pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:793.700000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:21.654933pt;}
.x6{left:49.133867pt;}
.xb{left:113.385867pt;}
.x4{left:116.065200pt;}
.x11{left:164.326267pt;}
.x7{left:265.826800pt;}
.xe{left:281.005733pt;}
.xf{left:374.173200pt;}
.x10{left:425.113733pt;}
.xc{left:438.429867pt;}
.xd{left:445.984267pt;}
.x8{left:482.518800pt;}
.x12{left:489.365733pt;}
.xa{left:537.146933pt;}
.x9{left:766.141867pt;}
.x3{left:988.522800pt;}
.x2{left:1405.642800pt;}
.x1{left:1407.242667pt;}
}




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