
    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_77268dcab80129c1db445bc3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_6952fcc88eddc42d089115b1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_e326d440ebf62dce18d13f87.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_f4c9814e44edd8e01ebd04fc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.182129;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_4bd35f3a7a24a2dba000050a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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.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;}
.ls23{letter-spacing:-4.761000px;}
.ls3d{letter-spacing:-4.416000px;}
.ls5f{letter-spacing:-4.221000px;}
.ls50{letter-spacing:-4.140000px;}
.ls53{letter-spacing:-3.864000px;}
.ls68{letter-spacing:-3.465000px;}
.ls4b{letter-spacing:-3.312000px;}
.ls13{letter-spacing:-3.036000px;}
.ls15{letter-spacing:-2.967000px;}
.ls10{letter-spacing:-2.691000px;}
.ls1{letter-spacing:-2.550000px;}
.ls14{letter-spacing:-2.484000px;}
.ls48{letter-spacing:-2.415000px;}
.ls36{letter-spacing:-2.208000px;}
.ls32{letter-spacing:-2.109000px;}
.ls45{letter-spacing:-2.025000px;}
.ls17{letter-spacing:-1.863000px;}
.ls2b{letter-spacing:-1.794000px;}
.ls2a{letter-spacing:-1.656000px;}
.ls1b{letter-spacing:-1.587000px;}
.ls30{letter-spacing:-1.518000px;}
.ls2c{letter-spacing:-1.449000px;}
.ls35{letter-spacing:-1.380000px;}
.ls4c{letter-spacing:-1.311000px;}
.ls6e{letter-spacing:-1.260000px;}
.lsf{letter-spacing:-1.215000px;}
.ls11{letter-spacing:-1.173000px;}
.ls4d{letter-spacing:-1.104000px;}
.ls25{letter-spacing:-1.035000px;}
.ls16{letter-spacing:-0.972000px;}
.ls49{letter-spacing:-0.966000px;}
.ls66{letter-spacing:-0.945000px;}
.ls46{letter-spacing:-0.897000px;}
.ls5d{letter-spacing:-0.882000px;}
.lse{letter-spacing:-0.855000px;}
.ls3c{letter-spacing:-0.828000px;}
.ls2d{letter-spacing:-0.759000px;}
.ls1a{letter-spacing:-0.750000px;}
.ls70{letter-spacing:-0.720000px;}
.ls63{letter-spacing:-0.693000px;}
.ls2e{letter-spacing:-0.690000px;}
.ls65{letter-spacing:-0.630000px;}
.ls31{letter-spacing:-0.627000px;}
.ls3b{letter-spacing:-0.621000px;}
.ls51{letter-spacing:-0.570000px;}
.ls58{letter-spacing:-0.567000px;}
.ls67{letter-spacing:-0.504000px;}
.ls33{letter-spacing:-0.483000px;}
.ls7{letter-spacing:-0.420000px;}
.ls2f{letter-spacing:-0.414000px;}
.ls5e{letter-spacing:-0.378000px;}
.ls6d{letter-spacing:-0.360000px;}
.ls4e{letter-spacing:-0.345000px;}
.ls61{letter-spacing:-0.315000px;}
.lsd{letter-spacing:-0.300000px;}
.ls4f{letter-spacing:-0.276000px;}
.ls60{letter-spacing:-0.252000px;}
.ls20{letter-spacing:-0.240000px;}
.ls22{letter-spacing:-0.207000px;}
.ls69{letter-spacing:-0.189000px;}
.ls8{letter-spacing:-0.180000px;}
.ls39{letter-spacing:-0.171000px;}
.ls12{letter-spacing:-0.138000px;}
.ls21{letter-spacing:-0.060000px;}
.ls5{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.009000px;}
.ls1f{letter-spacing:0.018000px;}
.ls47{letter-spacing:0.414000px;}
.ls29{letter-spacing:0.552000px;}
.ls1d{letter-spacing:0.621000px;}
.ls3a{letter-spacing:0.828000px;}
.ls54{letter-spacing:0.966000px;}
.ls1c{letter-spacing:1.104000px;}
.ls42{letter-spacing:1.119000px;}
.ls6c{letter-spacing:1.140000px;}
.ls59{letter-spacing:1.197000px;}
.ls3{letter-spacing:1.260000px;}
.ls62{letter-spacing:1.323000px;}
.ls6b{letter-spacing:1.440000px;}
.ls55{letter-spacing:1.587000px;}
.ls43{letter-spacing:1.629000px;}
.ls4a{letter-spacing:1.725000px;}
.ls3f{letter-spacing:1.794000px;}
.ls4{letter-spacing:1.953000px;}
.ls44{letter-spacing:2.385000px;}
.ls19{letter-spacing:2.400000px;}
.ls6f{letter-spacing:3.120000px;}
.ls41{letter-spacing:3.387000px;}
.ls9{letter-spacing:3.696000px;}
.ls6a{letter-spacing:3.720000px;}
.lsc{letter-spacing:4.200000px;}
.ls28{letter-spacing:4.635000px;}
.ls64{letter-spacing:5.607000px;}
.lsa{letter-spacing:5.760000px;}
.ls57{letter-spacing:5.859000px;}
.ls6{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls5c{letter-spacing:6.300000px;}
.ls56{letter-spacing:6.867000px;}
.ls5a{letter-spacing:7.560000px;}
.ls52{letter-spacing:466.721400px;}
.ls37{letter-spacing:467.096400px;}
.ls5b{letter-spacing:467.321400px;}
.ls18{letter-spacing:467.959200px;}
.ls24{letter-spacing:468.484200px;}
.ls27{letter-spacing:468.896400px;}
.ls40{letter-spacing:469.946400px;}
.ls0{letter-spacing:471.326400px;}
.ls34{letter-spacing:952.524000px;}
.lsb{letter-spacing:953.022000px;}
.ls1e{letter-spacing:955.644000px;}
.ls26{letter-spacing:959.694000px;}
.ls3e{letter-spacing:961.674000px;}
.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;}
}
.ws53{word-spacing:-24.570000px;}
.ws2{word-spacing:-22.740000px;}
.ws3{word-spacing:-22.620000px;}
.ws4f{word-spacing:-21.789000px;}
.wsb{word-spacing:-21.546000px;}
.ws32{word-spacing:-21.075000px;}
.ws52{word-spacing:-20.976000px;}
.ws6a{word-spacing:-20.580000px;}
.ws17{word-spacing:-20.325000px;}
.ws22{word-spacing:-19.941000px;}
.ws3a{word-spacing:-19.050000px;}
.ws51{word-spacing:-18.906000px;}
.ws42{word-spacing:-18.561000px;}
.ws0{word-spacing:-18.525000px;}
.ws21{word-spacing:-18.354000px;}
.ws5c{word-spacing:-17.325000px;}
.ws33{word-spacing:-17.043000px;}
.ws1c{word-spacing:-16.860000px;}
.ws44{word-spacing:-16.698000px;}
.ws25{word-spacing:-16.353000px;}
.ws3e{word-spacing:-16.215000px;}
.ws3b{word-spacing:-16.146000px;}
.ws3c{word-spacing:-16.077000px;}
.ws41{word-spacing:-16.008000px;}
.ws43{word-spacing:-15.939000px;}
.ws3d{word-spacing:-15.870000px;}
.ws40{word-spacing:-15.732000px;}
.ws3f{word-spacing:-15.663000px;}
.ws26{word-spacing:-15.594000px;}
.ws4e{word-spacing:-15.525000px;}
.ws23{word-spacing:-15.387000px;}
.ws24{word-spacing:-15.249000px;}
.ws5a{word-spacing:-14.679000px;}
.ws1d{word-spacing:-14.628000px;}
.wsc{word-spacing:-14.559000px;}
.ws6c{word-spacing:-14.100000px;}
.ws6b{word-spacing:-13.560000px;}
.ws5b{word-spacing:-13.482000px;}
.ws1{word-spacing:-13.062000px;}
.ws59{word-spacing:-7.560000px;}
.ws5d{word-spacing:-6.300000px;}
.ws5{word-spacing:-6.000000px;}
.ws56{word-spacing:-5.859000px;}
.ws64{word-spacing:-5.607000px;}
.wsd{word-spacing:-4.200000px;}
.ws9{word-spacing:-3.696000px;}
.ws70{word-spacing:-3.120000px;}
.ws18{word-spacing:-2.400000px;}
.ws6{word-spacing:-1.953000px;}
.ws39{word-spacing:-1.794000px;}
.ws48{word-spacing:-1.725000px;}
.ws6d{word-spacing:-1.440000px;}
.ws62{word-spacing:-1.323000px;}
.wsa{word-spacing:-1.260000px;}
.ws58{word-spacing:-1.197000px;}
.ws6e{word-spacing:-1.140000px;}
.ws1a{word-spacing:-1.104000px;}
.ws54{word-spacing:-0.966000px;}
.ws35{word-spacing:-0.828000px;}
.ws1b{word-spacing:-0.621000px;}
.ws50{word-spacing:-0.552000px;}
.ws45{word-spacing:-0.414000px;}
.ws4{word-spacing:0.000000px;}
.ws1f{word-spacing:0.060000px;}
.ws12{word-spacing:0.138000px;}
.ws34{word-spacing:0.171000px;}
.ws8{word-spacing:0.180000px;}
.ws69{word-spacing:0.189000px;}
.ws20{word-spacing:0.207000px;}
.ws1e{word-spacing:0.240000px;}
.ws60{word-spacing:0.252000px;}
.ws4b{word-spacing:0.276000px;}
.wse{word-spacing:0.300000px;}
.ws61{word-spacing:0.315000px;}
.ws4d{word-spacing:0.345000px;}
.ws6f{word-spacing:0.360000px;}
.ws5e{word-spacing:0.378000px;}
.ws2a{word-spacing:0.414000px;}
.ws7{word-spacing:0.420000px;}
.ws2f{word-spacing:0.483000px;}
.ws67{word-spacing:0.504000px;}
.ws57{word-spacing:0.567000px;}
.ws4c{word-spacing:0.570000px;}
.ws36{word-spacing:0.621000px;}
.ws2d{word-spacing:0.627000px;}
.ws65{word-spacing:0.630000px;}
.ws2b{word-spacing:0.690000px;}
.ws63{word-spacing:0.693000px;}
.ws29{word-spacing:0.759000px;}
.ws37{word-spacing:0.828000px;}
.wsf{word-spacing:0.855000px;}
.ws66{word-spacing:0.945000px;}
.ws15{word-spacing:0.972000px;}
.ws27{word-spacing:1.035000px;}
.ws11{word-spacing:1.173000px;}
.ws55{word-spacing:1.311000px;}
.ws30{word-spacing:1.380000px;}
.ws28{word-spacing:1.449000px;}
.ws2c{word-spacing:1.518000px;}
.ws19{word-spacing:1.587000px;}
.ws46{word-spacing:1.794000px;}
.ws16{word-spacing:1.863000px;}
.ws2e{word-spacing:2.109000px;}
.ws31{word-spacing:2.208000px;}
.ws47{word-spacing:2.415000px;}
.ws4a{word-spacing:2.484000px;}
.ws10{word-spacing:2.691000px;}
.ws14{word-spacing:2.967000px;}
.ws13{word-spacing:3.036000px;}
.ws49{word-spacing:3.312000px;}
.ws68{word-spacing:3.465000px;}
.ws5f{word-spacing:4.221000px;}
.ws38{word-spacing:4.416000px;}
._19{margin-left:-10.287900px;}
._18{margin-left:-8.490900px;}
._5{margin-left:-6.980400px;}
._8{margin-left:-5.811300px;}
._4{margin-left:-4.718700px;}
._12{margin-left:-3.516300px;}
._6{margin-left:-2.263500px;}
._3{margin-left:-1.012500px;}
._0{width:1.762500px;}
._9{width:3.315600px;}
._a{width:4.329000px;}
._1{width:5.649000px;}
._2{width:6.936000px;}
._7{width:8.061000px;}
._c{width:9.135000px;}
._14{width:10.143000px;}
._e{width:11.350500px;}
._d{width:12.381000px;}
._1c{width:13.955700px;}
._15{width:17.404200px;}
._1b{width:18.816300px;}
._13{width:19.852500px;}
._1d{width:20.892000px;}
._16{width:22.567500px;}
._11{width:23.847000px;}
._17{width:25.431000px;}
._1a{width:27.532500px;}
._10{width:71.442000px;}
._b{width:253.008000px;}
._f{width:578.400000px;}
.fc0{color:rgb(36,31,31);}
.fs3{font-size:42.000000px;}
.fsa{font-size:48.000000px;}
.fs7{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.000000px;}
.fs8{font-size:81.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y1e{bottom:106.299150px;}
.y1d{bottom:126.355350px;}
.y4e{bottom:126.549150px;}
.yea{bottom:126.663900px;}
.y14f{bottom:126.721650px;}
.y3e{bottom:127.124550px;}
.y6d{bottom:127.962450px;}
.y12a{bottom:128.294700px;}
.y10b{bottom:128.325150px;}
.y1c{bottom:146.411250px;}
.y52{bottom:146.799150px;}
.ye9{bottom:147.028350px;}
.y14e{bottom:147.144000px;}
.y129{bottom:158.794500px;}
.y10a{bottom:158.854500px;}
.y1b{bottom:166.467000px;}
.yc5{bottom:167.049000px;}
.ye8{bottom:167.392500px;}
.y14d{bottom:167.566500px;}
.y3d{bottom:169.209000px;}
.yba{bottom:170.697000px;}
.y6c{bottom:170.886000px;}
.y128{bottom:180.790500px;}
.y109{bottom:180.880500px;}
.y1a{bottom:186.523500px;}
.yc4{bottom:187.299000px;}
.y86{bottom:187.674000px;}
.ye7{bottom:187.758000px;}
.yb9{bottom:190.947000px;}
.y3c{bottom:193.785000px;}
.y14c{bottom:196.492500px;}
.y127{bottom:202.785000px;}
.yc3{bottom:207.549000px;}
.y85{bottom:207.924000px;}
.ye6{bottom:208.122000px;}
.yb8{bottom:211.197000px;}
.y108{bottom:211.410000px;}
.y19{bottom:219.336000px;}
.yc2{bottom:227.799000px;}
.y84{bottom:228.174000px;}
.ye5{bottom:228.486000px;}
.yb7{bottom:231.447000px;}
.y126{bottom:233.284500px;}
.y14b{bottom:233.923500px;}
.y6b{bottom:234.567000px;}
.yc1{bottom:248.049000px;}
.y83{bottom:248.424000px;}
.yb6{bottom:251.697000px;}
.y14a{bottom:253.296000px;}
.y125{bottom:255.280500px;}
.y6a{bottom:256.230000px;}
.y3b{bottom:256.627500px;}
.y107{bottom:263.950500px;}
.yc0{bottom:268.299000px;}
.y82{bottom:268.674000px;}
.y18{bottom:269.155500px;}
.ye4{bottom:270.111000px;}
.yb5{bottom:271.947000px;}
.y149{bottom:272.668500px;}
.y3a{bottom:277.453500px;}
.y69{bottom:277.893000px;}
.y124{bottom:285.780000px;}
.y106{bottom:285.976500px;}
.ybf{bottom:288.549000px;}
.y81{bottom:288.924000px;}
.y17{bottom:290.712000px;}
.y148{bottom:292.039500px;}
.yb4{bottom:292.197000px;}
.y39{bottom:298.278000px;}
.y68{bottom:299.556000px;}
.y123{bottom:307.774500px;}
.y105{bottom:308.002500px;}
.ybe{bottom:308.799000px;}
.y80{bottom:309.174000px;}
.y147{bottom:311.412000px;}
.y16{bottom:312.267000px;}
.yb3{bottom:312.447000px;}
.y38{bottom:319.104000px;}
.y67{bottom:321.219000px;}
.ybd{bottom:329.049000px;}
.y7f{bottom:329.424000px;}
.y104{bottom:330.028500px;}
.y146{bottom:330.784500px;}
.ye3{bottom:332.493000px;}
.yb2{bottom:332.697000px;}
.y15{bottom:333.823500px;}
.y122{bottom:338.274000px;}
.y37{bottom:339.928500px;}
.y66{bottom:342.882000px;}
.ybc{bottom:349.299000px;}
.y7e{bottom:349.674000px;}
.y51{bottom:349.875000px;}
.y145{bottom:350.157000px;}
.y103{bottom:352.054500px;}
.ye2{bottom:352.858500px;}
.yb1{bottom:352.947000px;}
.y121{bottom:360.270000px;}
.y36{bottom:360.754500px;}
.y65{bottom:364.545000px;}
.y144{bottom:369.529500px;}
.y7d{bottom:369.924000px;}
.y50{bottom:370.125000px;}
.yb0{bottom:373.197000px;}
.ye1{bottom:373.222500px;}
.y102{bottom:374.080500px;}
.y14{bottom:376.639500px;}
.y35{bottom:381.579000px;}
.y120{bottom:382.266000px;}
.y143{bottom:388.902000px;}
.y7c{bottom:390.174000px;}
.y4f{bottom:390.375000px;}
.ybb{bottom:390.808500px;}
.yaf{bottom:393.447000px;}
.ye0{bottom:393.586500px;}
.y101{bottom:396.105000px;}
.y13{bottom:396.694500px;}
.y34{bottom:402.405000px;}
.y64{bottom:407.469000px;}
.y142{bottom:408.274500px;}
.y7b{bottom:410.424000px;}
.y11f{bottom:412.765500px;}
.yae{bottom:413.697000px;}
.ydf{bottom:413.952000px;}
.y12{bottom:416.751000px;}
.y100{bottom:418.131000px;}
.y33{bottom:423.229500px;}
.y141{bottom:427.647000px;}
.y7a{bottom:430.674000px;}
.yad{bottom:433.947000px;}
.yde{bottom:434.316000px;}
.y11e{bottom:434.760000px;}
.y11{bottom:436.807500px;}
.yff{bottom:440.157000px;}
.y32{bottom:444.055500px;}
.y140{bottom:447.019500px;}
.y79{bottom:450.924000px;}
.yc8{bottom:451.257000px;}
.yac{bottom:454.197000px;}
.ydd{bottom:454.680000px;}
.y10{bottom:456.862500px;}
.yfe{bottom:462.183000px;}
.y31{bottom:464.880000px;}
.y11d{bottom:465.259500px;}
.y13f{bottom:466.392000px;}
.y63{bottom:471.150000px;}
.y78{bottom:471.174000px;}
.yc7{bottom:471.507000px;}
.yab{bottom:474.447000px;}
.ydc{bottom:475.045500px;}
.yf{bottom:476.919000px;}
.yfd{bottom:484.209000px;}
.y30{bottom:485.706000px;}
.y13e{bottom:485.764500px;}
.y11c{bottom:487.255500px;}
.y77{bottom:491.424000px;}
.yc6{bottom:491.757000px;}
.y62{bottom:492.813000px;}
.yaa{bottom:494.697000px;}
.ydb{bottom:495.409500px;}
.ye{bottom:496.975500px;}
.y13d{bottom:505.137000px;}
.yfc{bottom:506.235000px;}
.y2f{bottom:506.530500px;}
.y11b{bottom:509.251500px;}
.y76{bottom:511.674000px;}
.y61{bottom:514.476000px;}
.ya9{bottom:514.947000px;}
.yda{bottom:515.775000px;}
.yd{bottom:517.032000px;}
.y13c{bottom:524.509500px;}
.y2e{bottom:527.356500px;}
.yfb{bottom:528.261000px;}
.y11a{bottom:531.246000px;}
.y75{bottom:531.924000px;}
.ya8{bottom:535.197000px;}
.y60{bottom:536.139000px;}
.yc{bottom:537.087000px;}
.y13b{bottom:543.882000px;}
.y2d{bottom:548.181000px;}
.yfa{bottom:550.287000px;}
.y97{bottom:551.697000px;}
.y74{bottom:552.174000px;}
.ya7{bottom:555.447000px;}
.yd9{bottom:556.503000px;}
.y119{bottom:561.745500px;}
.y13a{bottom:563.253000px;}
.y2c{bottom:569.007000px;}
.yb{bottom:569.899500px;}
.y96{bottom:571.947000px;}
.yf9{bottom:572.313000px;}
.y73{bottom:572.424000px;}
.ya6{bottom:575.697000px;}
.yd8{bottom:576.868500px;}
.y5f{bottom:579.061500px;}
.y139{bottom:582.625500px;}
.y118{bottom:583.741500px;}
.y2b{bottom:589.831500px;}
.y95{bottom:592.197000px;}
.y72{bottom:592.674000px;}
.yf8{bottom:594.339000px;}
.ya5{bottom:595.947000px;}
.yd7{bottom:597.232500px;}
.y138{bottom:601.998000px;}
.y2a{bottom:610.657500px;}
.y94{bottom:612.447000px;}
.y71{bottom:612.924000px;}
.y117{bottom:614.241000px;}
.ya4{bottom:616.197000px;}
.yf7{bottom:616.365000px;}
.yd6{bottom:617.598000px;}
.y4d{bottom:619.201500px;}
.y137{bottom:621.370500px;}
.ya{bottom:628.222500px;}
.y29{bottom:631.483500px;}
.y93{bottom:632.697000px;}
.y70{bottom:633.174000px;}
.y116{bottom:636.237000px;}
.ya3{bottom:636.447000px;}
.yd5{bottom:637.962000px;}
.yf6{bottom:638.391000px;}
.y4c{bottom:639.451500px;}
.y136{bottom:640.743000px;}
.y5e{bottom:642.742500px;}
.y28{bottom:652.308000px;}
.y92{bottom:652.947000px;}
.y9{bottom:655.779000px;}
.ya2{bottom:656.697000px;}
.y115{bottom:658.231500px;}
.yd4{bottom:658.326000px;}
.y4b{bottom:659.701500px;}
.y135{bottom:660.115500px;}
.yf5{bottom:660.417000px;}
.y5d{bottom:664.405500px;}
.y91{bottom:673.197000px;}
.y6f{bottom:674.683500px;}
.ya1{bottom:676.947000px;}
.yd3{bottom:678.691500px;}
.y134{bottom:679.488000px;}
.y4a{bottom:679.951500px;}
.y114{bottom:680.227500px;}
.yf4{bottom:682.443000px;}
.y5c{bottom:686.070000px;}
.y90{bottom:693.447000px;}
.y27{bottom:694.393500px;}
.ya0{bottom:697.197000px;}
.y6e{bottom:698.683500px;}
.y133{bottom:698.860500px;}
.yd2{bottom:699.055500px;}
.y49{bottom:700.201500px;}
.yf3{bottom:704.469000px;}
.y8{bottom:704.595000px;}
.y5b{bottom:707.733000px;}
.y113{bottom:710.727000px;}
.y8f{bottom:713.697000px;}
.y9f{bottom:717.447000px;}
.y132{bottom:718.233000px;}
.yd1{bottom:719.419500px;}
.y48{bottom:720.451500px;}
.yf2{bottom:726.495000px;}
.y5a{bottom:729.396000px;}
.y112{bottom:732.723000px;}
.y8e{bottom:733.947000px;}
.y7{bottom:736.651500px;}
.y131{bottom:737.605500px;}
.y9e{bottom:737.697000px;}
.yd0{bottom:739.785000px;}
.y47{bottom:740.701500px;}
.yf1{bottom:748.519500px;}
.y59{bottom:751.059000px;}
.y8d{bottom:754.197000px;}
.y130{bottom:756.978000px;}
.y9d{bottom:757.947000px;}
.ycf{bottom:760.149000px;}
.y46{bottom:760.951500px;}
.y111{bottom:763.222500px;}
.y6{bottom:768.706500px;}
.yf0{bottom:770.545500px;}
.y58{bottom:772.722000px;}
.y8c{bottom:774.447000px;}
.y12f{bottom:776.350500px;}
.y26{bottom:778.062000px;}
.y9c{bottom:778.197000px;}
.yce{bottom:780.514500px;}
.y45{bottom:781.201500px;}
.y110{bottom:785.217000px;}
.yef{bottom:792.571500px;}
.y57{bottom:794.385000px;}
.y8b{bottom:794.697000px;}
.y12e{bottom:795.723000px;}
.y9b{bottom:798.447000px;}
.y25{bottom:799.636500px;}
.ycd{bottom:800.878500px;}
.y44{bottom:801.451500px;}
.y10f{bottom:807.213000px;}
.yee{bottom:814.597500px;}
.y8a{bottom:814.947000px;}
.y56{bottom:816.048000px;}
.y9a{bottom:818.697000px;}
.y24{bottom:821.212500px;}
.ycc{bottom:821.242500px;}
.y43{bottom:821.701500px;}
.y12d{bottom:827.851500px;}
.y10e{bottom:829.209000px;}
.y5{bottom:830.527500px;}
.y89{bottom:835.197000px;}
.yed{bottom:836.623500px;}
.y55{bottom:837.712500px;}
.y99{bottom:838.947000px;}
.ycb{bottom:841.608000px;}
.y42{bottom:841.951500px;}
.y4{bottom:852.082500px;}
.yec{bottom:858.649500px;}
.y98{bottom:859.197000px;}
.y54{bottom:859.375500px;}
.y10d{bottom:859.708500px;}
.yca{bottom:861.972000px;}
.y41{bottom:862.201500px;}
.y23{bottom:864.046500px;}
.y12c{bottom:873.034500px;}
.y88{bottom:876.706500px;}
.yeb{bottom:880.675500px;}
.y53{bottom:881.038500px;}
.y10c{bottom:881.703000px;}
.y3{bottom:882.142500px;}
.yc9{bottom:882.336000px;}
.y40{bottom:882.451500px;}
.y22{bottom:884.122500px;}
.y12b{bottom:900.207000px;}
.y87{bottom:900.706500px;}
.y3f{bottom:902.701500px;}
.y2{bottom:903.699000px;}
.y21{bottom:904.198500px;}
.y20{bottom:948.189000px;}
.y1f{bottom:966.189000px;}
.hb{height:40.757812px;}
.h7{height:41.396484px;}
.h4{height:50.947266px;}
.h3{height:53.494629px;}
.hc{height:55.488281px;}
.hd{height:58.262695px;}
.h9{height:58.589355px;}
.h2{height:63.684082px;}
.ha{height:63.811523px;}
.h8{height:68.778809px;}
.h6{height:71.326172px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:82.464900px;}
.x1{left:83.686650px;}
.x5{left:85.405200px;}
.x4{left:105.024900px;}
.x6{left:106.366800px;}
.xa{left:201.100500px;}
.x9{left:202.458000px;}
.x7{left:212.665500px;}
.x3{left:231.880500px;}
.x2{left:233.344500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls23{letter-spacing:-4.232000pt;}
.ls3d{letter-spacing:-3.925333pt;}
.ls5f{letter-spacing:-3.752000pt;}
.ls50{letter-spacing:-3.680000pt;}
.ls53{letter-spacing:-3.434667pt;}
.ls68{letter-spacing:-3.080000pt;}
.ls4b{letter-spacing:-2.944000pt;}
.ls13{letter-spacing:-2.698667pt;}
.ls15{letter-spacing:-2.637333pt;}
.ls10{letter-spacing:-2.392000pt;}
.ls1{letter-spacing:-2.266667pt;}
.ls14{letter-spacing:-2.208000pt;}
.ls48{letter-spacing:-2.146667pt;}
.ls36{letter-spacing:-1.962667pt;}
.ls32{letter-spacing:-1.874667pt;}
.ls45{letter-spacing:-1.800000pt;}
.ls17{letter-spacing:-1.656000pt;}
.ls2b{letter-spacing:-1.594667pt;}
.ls2a{letter-spacing:-1.472000pt;}
.ls1b{letter-spacing:-1.410667pt;}
.ls30{letter-spacing:-1.349333pt;}
.ls2c{letter-spacing:-1.288000pt;}
.ls35{letter-spacing:-1.226667pt;}
.ls4c{letter-spacing:-1.165333pt;}
.ls6e{letter-spacing:-1.120000pt;}
.lsf{letter-spacing:-1.080000pt;}
.ls11{letter-spacing:-1.042667pt;}
.ls4d{letter-spacing:-0.981333pt;}
.ls25{letter-spacing:-0.920000pt;}
.ls16{letter-spacing:-0.864000pt;}
.ls49{letter-spacing:-0.858667pt;}
.ls66{letter-spacing:-0.840000pt;}
.ls46{letter-spacing:-0.797333pt;}
.ls5d{letter-spacing:-0.784000pt;}
.lse{letter-spacing:-0.760000pt;}
.ls3c{letter-spacing:-0.736000pt;}
.ls2d{letter-spacing:-0.674667pt;}
.ls1a{letter-spacing:-0.666667pt;}
.ls70{letter-spacing:-0.640000pt;}
.ls63{letter-spacing:-0.616000pt;}
.ls2e{letter-spacing:-0.613333pt;}
.ls65{letter-spacing:-0.560000pt;}
.ls31{letter-spacing:-0.557333pt;}
.ls3b{letter-spacing:-0.552000pt;}
.ls51{letter-spacing:-0.506667pt;}
.ls58{letter-spacing:-0.504000pt;}
.ls67{letter-spacing:-0.448000pt;}
.ls33{letter-spacing:-0.429333pt;}
.ls7{letter-spacing:-0.373333pt;}
.ls2f{letter-spacing:-0.368000pt;}
.ls5e{letter-spacing:-0.336000pt;}
.ls6d{letter-spacing:-0.320000pt;}
.ls4e{letter-spacing:-0.306667pt;}
.ls61{letter-spacing:-0.280000pt;}
.lsd{letter-spacing:-0.266667pt;}
.ls4f{letter-spacing:-0.245333pt;}
.ls60{letter-spacing:-0.224000pt;}
.ls20{letter-spacing:-0.213333pt;}
.ls22{letter-spacing:-0.184000pt;}
.ls69{letter-spacing:-0.168000pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls39{letter-spacing:-0.152000pt;}
.ls12{letter-spacing:-0.122667pt;}
.ls21{letter-spacing:-0.053333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.008000pt;}
.ls1f{letter-spacing:0.016000pt;}
.ls47{letter-spacing:0.368000pt;}
.ls29{letter-spacing:0.490667pt;}
.ls1d{letter-spacing:0.552000pt;}
.ls3a{letter-spacing:0.736000pt;}
.ls54{letter-spacing:0.858667pt;}
.ls1c{letter-spacing:0.981333pt;}
.ls42{letter-spacing:0.994667pt;}
.ls6c{letter-spacing:1.013333pt;}
.ls59{letter-spacing:1.064000pt;}
.ls3{letter-spacing:1.120000pt;}
.ls62{letter-spacing:1.176000pt;}
.ls6b{letter-spacing:1.280000pt;}
.ls55{letter-spacing:1.410667pt;}
.ls43{letter-spacing:1.448000pt;}
.ls4a{letter-spacing:1.533333pt;}
.ls3f{letter-spacing:1.594667pt;}
.ls4{letter-spacing:1.736000pt;}
.ls44{letter-spacing:2.120000pt;}
.ls19{letter-spacing:2.133333pt;}
.ls6f{letter-spacing:2.773333pt;}
.ls41{letter-spacing:3.010667pt;}
.ls9{letter-spacing:3.285333pt;}
.ls6a{letter-spacing:3.306667pt;}
.lsc{letter-spacing:3.733333pt;}
.ls28{letter-spacing:4.120000pt;}
.ls64{letter-spacing:4.984000pt;}
.lsa{letter-spacing:5.120000pt;}
.ls57{letter-spacing:5.208000pt;}
.ls6{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls5c{letter-spacing:5.600000pt;}
.ls56{letter-spacing:6.104000pt;}
.ls5a{letter-spacing:6.720000pt;}
.ls52{letter-spacing:414.863467pt;}
.ls37{letter-spacing:415.196800pt;}
.ls5b{letter-spacing:415.396800pt;}
.ls18{letter-spacing:415.963733pt;}
.ls24{letter-spacing:416.430400pt;}
.ls27{letter-spacing:416.796800pt;}
.ls40{letter-spacing:417.730133pt;}
.ls0{letter-spacing:418.956800pt;}
.ls34{letter-spacing:846.688000pt;}
.lsb{letter-spacing:847.130667pt;}
.ls1e{letter-spacing:849.461333pt;}
.ls26{letter-spacing:853.061333pt;}
.ls3e{letter-spacing:854.821333pt;}
.ws53{word-spacing:-21.840000pt;}
.ws2{word-spacing:-20.213333pt;}
.ws3{word-spacing:-20.106667pt;}
.ws4f{word-spacing:-19.368000pt;}
.wsb{word-spacing:-19.152000pt;}
.ws32{word-spacing:-18.733333pt;}
.ws52{word-spacing:-18.645333pt;}
.ws6a{word-spacing:-18.293333pt;}
.ws17{word-spacing:-18.066667pt;}
.ws22{word-spacing:-17.725333pt;}
.ws3a{word-spacing:-16.933333pt;}
.ws51{word-spacing:-16.805333pt;}
.ws42{word-spacing:-16.498667pt;}
.ws0{word-spacing:-16.466667pt;}
.ws21{word-spacing:-16.314667pt;}
.ws5c{word-spacing:-15.400000pt;}
.ws33{word-spacing:-15.149333pt;}
.ws1c{word-spacing:-14.986667pt;}
.ws44{word-spacing:-14.842667pt;}
.ws25{word-spacing:-14.536000pt;}
.ws3e{word-spacing:-14.413333pt;}
.ws3b{word-spacing:-14.352000pt;}
.ws3c{word-spacing:-14.290667pt;}
.ws41{word-spacing:-14.229333pt;}
.ws43{word-spacing:-14.168000pt;}
.ws3d{word-spacing:-14.106667pt;}
.ws40{word-spacing:-13.984000pt;}
.ws3f{word-spacing:-13.922667pt;}
.ws26{word-spacing:-13.861333pt;}
.ws4e{word-spacing:-13.800000pt;}
.ws23{word-spacing:-13.677333pt;}
.ws24{word-spacing:-13.554667pt;}
.ws5a{word-spacing:-13.048000pt;}
.ws1d{word-spacing:-13.002667pt;}
.wsc{word-spacing:-12.941333pt;}
.ws6c{word-spacing:-12.533333pt;}
.ws6b{word-spacing:-12.053333pt;}
.ws5b{word-spacing:-11.984000pt;}
.ws1{word-spacing:-11.610667pt;}
.ws59{word-spacing:-6.720000pt;}
.ws5d{word-spacing:-5.600000pt;}
.ws5{word-spacing:-5.333333pt;}
.ws56{word-spacing:-5.208000pt;}
.ws64{word-spacing:-4.984000pt;}
.wsd{word-spacing:-3.733333pt;}
.ws9{word-spacing:-3.285333pt;}
.ws70{word-spacing:-2.773333pt;}
.ws18{word-spacing:-2.133333pt;}
.ws6{word-spacing:-1.736000pt;}
.ws39{word-spacing:-1.594667pt;}
.ws48{word-spacing:-1.533333pt;}
.ws6d{word-spacing:-1.280000pt;}
.ws62{word-spacing:-1.176000pt;}
.wsa{word-spacing:-1.120000pt;}
.ws58{word-spacing:-1.064000pt;}
.ws6e{word-spacing:-1.013333pt;}
.ws1a{word-spacing:-0.981333pt;}
.ws54{word-spacing:-0.858667pt;}
.ws35{word-spacing:-0.736000pt;}
.ws1b{word-spacing:-0.552000pt;}
.ws50{word-spacing:-0.490667pt;}
.ws45{word-spacing:-0.368000pt;}
.ws4{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.053333pt;}
.ws12{word-spacing:0.122667pt;}
.ws34{word-spacing:0.152000pt;}
.ws8{word-spacing:0.160000pt;}
.ws69{word-spacing:0.168000pt;}
.ws20{word-spacing:0.184000pt;}
.ws1e{word-spacing:0.213333pt;}
.ws60{word-spacing:0.224000pt;}
.ws4b{word-spacing:0.245333pt;}
.wse{word-spacing:0.266667pt;}
.ws61{word-spacing:0.280000pt;}
.ws4d{word-spacing:0.306667pt;}
.ws6f{word-spacing:0.320000pt;}
.ws5e{word-spacing:0.336000pt;}
.ws2a{word-spacing:0.368000pt;}
.ws7{word-spacing:0.373333pt;}
.ws2f{word-spacing:0.429333pt;}
.ws67{word-spacing:0.448000pt;}
.ws57{word-spacing:0.504000pt;}
.ws4c{word-spacing:0.506667pt;}
.ws36{word-spacing:0.552000pt;}
.ws2d{word-spacing:0.557333pt;}
.ws65{word-spacing:0.560000pt;}
.ws2b{word-spacing:0.613333pt;}
.ws63{word-spacing:0.616000pt;}
.ws29{word-spacing:0.674667pt;}
.ws37{word-spacing:0.736000pt;}
.wsf{word-spacing:0.760000pt;}
.ws66{word-spacing:0.840000pt;}
.ws15{word-spacing:0.864000pt;}
.ws27{word-spacing:0.920000pt;}
.ws11{word-spacing:1.042667pt;}
.ws55{word-spacing:1.165333pt;}
.ws30{word-spacing:1.226667pt;}
.ws28{word-spacing:1.288000pt;}
.ws2c{word-spacing:1.349333pt;}
.ws19{word-spacing:1.410667pt;}
.ws46{word-spacing:1.594667pt;}
.ws16{word-spacing:1.656000pt;}
.ws2e{word-spacing:1.874667pt;}
.ws31{word-spacing:1.962667pt;}
.ws47{word-spacing:2.146667pt;}
.ws4a{word-spacing:2.208000pt;}
.ws10{word-spacing:2.392000pt;}
.ws14{word-spacing:2.637333pt;}
.ws13{word-spacing:2.698667pt;}
.ws49{word-spacing:2.944000pt;}
.ws68{word-spacing:3.080000pt;}
.ws5f{word-spacing:3.752000pt;}
.ws38{word-spacing:3.925333pt;}
._19{margin-left:-9.144800pt;}
._18{margin-left:-7.547467pt;}
._5{margin-left:-6.204800pt;}
._8{margin-left:-5.165600pt;}
._4{margin-left:-4.194400pt;}
._12{margin-left:-3.125600pt;}
._6{margin-left:-2.012000pt;}
._3{margin-left:-0.900000pt;}
._0{width:1.566667pt;}
._9{width:2.947200pt;}
._a{width:3.848000pt;}
._1{width:5.021333pt;}
._2{width:6.165333pt;}
._7{width:7.165333pt;}
._c{width:8.120000pt;}
._14{width:9.016000pt;}
._e{width:10.089333pt;}
._d{width:11.005333pt;}
._1c{width:12.405067pt;}
._15{width:15.470400pt;}
._1b{width:16.725600pt;}
._13{width:17.646667pt;}
._1d{width:18.570667pt;}
._16{width:20.060000pt;}
._11{width:21.197333pt;}
._17{width:22.605333pt;}
._1a{width:24.473333pt;}
._10{width:63.504000pt;}
._b{width:224.896000pt;}
._f{width:514.133333pt;}
.fs3{font-size:37.333333pt;}
.fsa{font-size:42.666667pt;}
.fs7{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:66.666667pt;}
.fs8{font-size:72.000000pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y1e{bottom:94.488133pt;}
.y1d{bottom:112.315867pt;}
.y4e{bottom:112.488133pt;}
.yea{bottom:112.590133pt;}
.y14f{bottom:112.641467pt;}
.y3e{bottom:112.999600pt;}
.y6d{bottom:113.744400pt;}
.y12a{bottom:114.039733pt;}
.y10b{bottom:114.066800pt;}
.y1c{bottom:130.143333pt;}
.y52{bottom:130.488133pt;}
.ye9{bottom:130.691867pt;}
.y14e{bottom:130.794667pt;}
.y129{bottom:141.150667pt;}
.y10a{bottom:141.204000pt;}
.y1b{bottom:147.970667pt;}
.yc5{bottom:148.488000pt;}
.ye8{bottom:148.793333pt;}
.y14d{bottom:148.948000pt;}
.y3d{bottom:150.408000pt;}
.yba{bottom:151.730667pt;}
.y6c{bottom:151.898667pt;}
.y128{bottom:160.702667pt;}
.y109{bottom:160.782667pt;}
.y1a{bottom:165.798667pt;}
.yc4{bottom:166.488000pt;}
.y86{bottom:166.821333pt;}
.ye7{bottom:166.896000pt;}
.yb9{bottom:169.730667pt;}
.y3c{bottom:172.253333pt;}
.y14c{bottom:174.660000pt;}
.y127{bottom:180.253333pt;}
.yc3{bottom:184.488000pt;}
.y85{bottom:184.821333pt;}
.ye6{bottom:184.997333pt;}
.yb8{bottom:187.730667pt;}
.y108{bottom:187.920000pt;}
.y19{bottom:194.965333pt;}
.yc2{bottom:202.488000pt;}
.y84{bottom:202.821333pt;}
.ye5{bottom:203.098667pt;}
.yb7{bottom:205.730667pt;}
.y126{bottom:207.364000pt;}
.y14b{bottom:207.932000pt;}
.y6b{bottom:208.504000pt;}
.yc1{bottom:220.488000pt;}
.y83{bottom:220.821333pt;}
.yb6{bottom:223.730667pt;}
.y14a{bottom:225.152000pt;}
.y125{bottom:226.916000pt;}
.y6a{bottom:227.760000pt;}
.y3b{bottom:228.113333pt;}
.y107{bottom:234.622667pt;}
.yc0{bottom:238.488000pt;}
.y82{bottom:238.821333pt;}
.y18{bottom:239.249333pt;}
.ye4{bottom:240.098667pt;}
.yb5{bottom:241.730667pt;}
.y149{bottom:242.372000pt;}
.y3a{bottom:246.625333pt;}
.y69{bottom:247.016000pt;}
.y124{bottom:254.026667pt;}
.y106{bottom:254.201333pt;}
.ybf{bottom:256.488000pt;}
.y81{bottom:256.821333pt;}
.y17{bottom:258.410667pt;}
.y148{bottom:259.590667pt;}
.yb4{bottom:259.730667pt;}
.y39{bottom:265.136000pt;}
.y68{bottom:266.272000pt;}
.y123{bottom:273.577333pt;}
.y105{bottom:273.780000pt;}
.ybe{bottom:274.488000pt;}
.y80{bottom:274.821333pt;}
.y147{bottom:276.810667pt;}
.y16{bottom:277.570667pt;}
.yb3{bottom:277.730667pt;}
.y38{bottom:283.648000pt;}
.y67{bottom:285.528000pt;}
.ybd{bottom:292.488000pt;}
.y7f{bottom:292.821333pt;}
.y104{bottom:293.358667pt;}
.y146{bottom:294.030667pt;}
.ye3{bottom:295.549333pt;}
.yb2{bottom:295.730667pt;}
.y15{bottom:296.732000pt;}
.y122{bottom:300.688000pt;}
.y37{bottom:302.158667pt;}
.y66{bottom:304.784000pt;}
.ybc{bottom:310.488000pt;}
.y7e{bottom:310.821333pt;}
.y51{bottom:311.000000pt;}
.y145{bottom:311.250667pt;}
.y103{bottom:312.937333pt;}
.ye2{bottom:313.652000pt;}
.yb1{bottom:313.730667pt;}
.y121{bottom:320.240000pt;}
.y36{bottom:320.670667pt;}
.y65{bottom:324.040000pt;}
.y144{bottom:328.470667pt;}
.y7d{bottom:328.821333pt;}
.y50{bottom:329.000000pt;}
.yb0{bottom:331.730667pt;}
.ye1{bottom:331.753333pt;}
.y102{bottom:332.516000pt;}
.y14{bottom:334.790667pt;}
.y35{bottom:339.181333pt;}
.y120{bottom:339.792000pt;}
.y143{bottom:345.690667pt;}
.y7c{bottom:346.821333pt;}
.y4f{bottom:347.000000pt;}
.ybb{bottom:347.385333pt;}
.yaf{bottom:349.730667pt;}
.ye0{bottom:349.854667pt;}
.y101{bottom:352.093333pt;}
.y13{bottom:352.617333pt;}
.y34{bottom:357.693333pt;}
.y64{bottom:362.194667pt;}
.y142{bottom:362.910667pt;}
.y7b{bottom:364.821333pt;}
.y11f{bottom:366.902667pt;}
.yae{bottom:367.730667pt;}
.ydf{bottom:367.957333pt;}
.y12{bottom:370.445333pt;}
.y100{bottom:371.672000pt;}
.y33{bottom:376.204000pt;}
.y141{bottom:380.130667pt;}
.y7a{bottom:382.821333pt;}
.yad{bottom:385.730667pt;}
.yde{bottom:386.058667pt;}
.y11e{bottom:386.453333pt;}
.y11{bottom:388.273333pt;}
.yff{bottom:391.250667pt;}
.y32{bottom:394.716000pt;}
.y140{bottom:397.350667pt;}
.y79{bottom:400.821333pt;}
.yc8{bottom:401.117333pt;}
.yac{bottom:403.730667pt;}
.ydd{bottom:404.160000pt;}
.y10{bottom:406.100000pt;}
.yfe{bottom:410.829333pt;}
.y31{bottom:413.226667pt;}
.y11d{bottom:413.564000pt;}
.y13f{bottom:414.570667pt;}
.y63{bottom:418.800000pt;}
.y78{bottom:418.821333pt;}
.yc7{bottom:419.117333pt;}
.yab{bottom:421.730667pt;}
.ydc{bottom:422.262667pt;}
.yf{bottom:423.928000pt;}
.yfd{bottom:430.408000pt;}
.y30{bottom:431.738667pt;}
.y13e{bottom:431.790667pt;}
.y11c{bottom:433.116000pt;}
.y77{bottom:436.821333pt;}
.yc6{bottom:437.117333pt;}
.y62{bottom:438.056000pt;}
.yaa{bottom:439.730667pt;}
.ydb{bottom:440.364000pt;}
.ye{bottom:441.756000pt;}
.y13d{bottom:449.010667pt;}
.yfc{bottom:449.986667pt;}
.y2f{bottom:450.249333pt;}
.y11b{bottom:452.668000pt;}
.y76{bottom:454.821333pt;}
.y61{bottom:457.312000pt;}
.ya9{bottom:457.730667pt;}
.yda{bottom:458.466667pt;}
.yd{bottom:459.584000pt;}
.y13c{bottom:466.230667pt;}
.y2e{bottom:468.761333pt;}
.yfb{bottom:469.565333pt;}
.y11a{bottom:472.218667pt;}
.y75{bottom:472.821333pt;}
.ya8{bottom:475.730667pt;}
.y60{bottom:476.568000pt;}
.yc{bottom:477.410667pt;}
.y13b{bottom:483.450667pt;}
.y2d{bottom:487.272000pt;}
.yfa{bottom:489.144000pt;}
.y97{bottom:490.397333pt;}
.y74{bottom:490.821333pt;}
.ya7{bottom:493.730667pt;}
.yd9{bottom:494.669333pt;}
.y119{bottom:499.329333pt;}
.y13a{bottom:500.669333pt;}
.y2c{bottom:505.784000pt;}
.yb{bottom:506.577333pt;}
.y96{bottom:508.397333pt;}
.yf9{bottom:508.722667pt;}
.y73{bottom:508.821333pt;}
.ya6{bottom:511.730667pt;}
.yd8{bottom:512.772000pt;}
.y5f{bottom:514.721333pt;}
.y139{bottom:517.889333pt;}
.y118{bottom:518.881333pt;}
.y2b{bottom:524.294667pt;}
.y95{bottom:526.397333pt;}
.y72{bottom:526.821333pt;}
.yf8{bottom:528.301333pt;}
.ya5{bottom:529.730667pt;}
.yd7{bottom:530.873333pt;}
.y138{bottom:535.109333pt;}
.y2a{bottom:542.806667pt;}
.y94{bottom:544.397333pt;}
.y71{bottom:544.821333pt;}
.y117{bottom:545.992000pt;}
.ya4{bottom:547.730667pt;}
.yf7{bottom:547.880000pt;}
.yd6{bottom:548.976000pt;}
.y4d{bottom:550.401333pt;}
.y137{bottom:552.329333pt;}
.ya{bottom:558.420000pt;}
.y29{bottom:561.318667pt;}
.y93{bottom:562.397333pt;}
.y70{bottom:562.821333pt;}
.y116{bottom:565.544000pt;}
.ya3{bottom:565.730667pt;}
.yd5{bottom:567.077333pt;}
.yf6{bottom:567.458667pt;}
.y4c{bottom:568.401333pt;}
.y136{bottom:569.549333pt;}
.y5e{bottom:571.326667pt;}
.y28{bottom:579.829333pt;}
.y92{bottom:580.397333pt;}
.y9{bottom:582.914667pt;}
.ya2{bottom:583.730667pt;}
.y115{bottom:585.094667pt;}
.yd4{bottom:585.178667pt;}
.y4b{bottom:586.401333pt;}
.y135{bottom:586.769333pt;}
.yf5{bottom:587.037333pt;}
.y5d{bottom:590.582667pt;}
.y91{bottom:598.397333pt;}
.y6f{bottom:599.718667pt;}
.ya1{bottom:601.730667pt;}
.yd3{bottom:603.281333pt;}
.y134{bottom:603.989333pt;}
.y4a{bottom:604.401333pt;}
.y114{bottom:604.646667pt;}
.yf4{bottom:606.616000pt;}
.y5c{bottom:609.840000pt;}
.y90{bottom:616.397333pt;}
.y27{bottom:617.238667pt;}
.ya0{bottom:619.730667pt;}
.y6e{bottom:621.052000pt;}
.y133{bottom:621.209333pt;}
.yd2{bottom:621.382667pt;}
.y49{bottom:622.401333pt;}
.yf3{bottom:626.194667pt;}
.y8{bottom:626.306667pt;}
.y5b{bottom:629.096000pt;}
.y113{bottom:631.757333pt;}
.y8f{bottom:634.397333pt;}
.y9f{bottom:637.730667pt;}
.y132{bottom:638.429333pt;}
.yd1{bottom:639.484000pt;}
.y48{bottom:640.401333pt;}
.yf2{bottom:645.773333pt;}
.y5a{bottom:648.352000pt;}
.y112{bottom:651.309333pt;}
.y8e{bottom:652.397333pt;}
.y7{bottom:654.801333pt;}
.y131{bottom:655.649333pt;}
.y9e{bottom:655.730667pt;}
.yd0{bottom:657.586667pt;}
.y47{bottom:658.401333pt;}
.yf1{bottom:665.350667pt;}
.y59{bottom:667.608000pt;}
.y8d{bottom:670.397333pt;}
.y130{bottom:672.869333pt;}
.y9d{bottom:673.730667pt;}
.ycf{bottom:675.688000pt;}
.y46{bottom:676.401333pt;}
.y111{bottom:678.420000pt;}
.y6{bottom:683.294667pt;}
.yf0{bottom:684.929333pt;}
.y58{bottom:686.864000pt;}
.y8c{bottom:688.397333pt;}
.y12f{bottom:690.089333pt;}
.y26{bottom:691.610667pt;}
.y9c{bottom:691.730667pt;}
.yce{bottom:693.790667pt;}
.y45{bottom:694.401333pt;}
.y110{bottom:697.970667pt;}
.yef{bottom:704.508000pt;}
.y57{bottom:706.120000pt;}
.y8b{bottom:706.397333pt;}
.y12e{bottom:707.309333pt;}
.y9b{bottom:709.730667pt;}
.y25{bottom:710.788000pt;}
.ycd{bottom:711.892000pt;}
.y44{bottom:712.401333pt;}
.y10f{bottom:717.522667pt;}
.yee{bottom:724.086667pt;}
.y8a{bottom:724.397333pt;}
.y56{bottom:725.376000pt;}
.y9a{bottom:727.730667pt;}
.y24{bottom:729.966667pt;}
.ycc{bottom:729.993333pt;}
.y43{bottom:730.401333pt;}
.y12d{bottom:735.868000pt;}
.y10e{bottom:737.074667pt;}
.y5{bottom:738.246667pt;}
.y89{bottom:742.397333pt;}
.yed{bottom:743.665333pt;}
.y55{bottom:744.633333pt;}
.y99{bottom:745.730667pt;}
.ycb{bottom:748.096000pt;}
.y42{bottom:748.401333pt;}
.y4{bottom:757.406667pt;}
.yec{bottom:763.244000pt;}
.y98{bottom:763.730667pt;}
.y54{bottom:763.889333pt;}
.y10d{bottom:764.185333pt;}
.yca{bottom:766.197333pt;}
.y41{bottom:766.401333pt;}
.y23{bottom:768.041333pt;}
.y12c{bottom:776.030667pt;}
.y88{bottom:779.294667pt;}
.yeb{bottom:782.822667pt;}
.y53{bottom:783.145333pt;}
.y10c{bottom:783.736000pt;}
.y3{bottom:784.126667pt;}
.yc9{bottom:784.298667pt;}
.y40{bottom:784.401333pt;}
.y22{bottom:785.886667pt;}
.y12b{bottom:800.184000pt;}
.y87{bottom:800.628000pt;}
.y3f{bottom:802.401333pt;}
.y2{bottom:803.288000pt;}
.y21{bottom:803.732000pt;}
.y20{bottom:842.834667pt;}
.y1f{bottom:858.834667pt;}
.hb{height:36.229167pt;}
.h7{height:36.796875pt;}
.h4{height:45.286458pt;}
.h3{height:47.550781pt;}
.hc{height:49.322917pt;}
.hd{height:51.789062pt;}
.h9{height:52.079427pt;}
.h2{height:56.608073pt;}
.ha{height:56.721354pt;}
.h8{height:61.136719pt;}
.h6{height:63.401042pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:73.302133pt;}
.x1{left:74.388133pt;}
.x5{left:75.915733pt;}
.x4{left:93.355467pt;}
.x6{left:94.548267pt;}
.xa{left:178.756000pt;}
.x9{left:179.962667pt;}
.x7{left:189.036000pt;}
.x3{left:206.116000pt;}
.x2{left:207.417333pt;}
}




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