
    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_74511e5f8d23577d840865a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.978000;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_cdac6ef0eb416aadd182ca5e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984027;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_452a228fbbf28ba8e1f71b14.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966000;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_9fec282507c6338def91a884.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_7c3380cd304533bcae3305ce.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.089355;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_804edf3d884e44a0d97b3f2a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.066406;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_bcff3f974ea97603e5288729.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_c72824d0df18d410c95b022b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_153e1dcc270fab9372b168ac.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_b934bcf887cfdc78432ba00e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.953125;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_4e29ad2bc1cbab18c572ceee.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_777d2138897272d330cb3697.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.008301;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_a658b285c4e4cd329c97e991.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.995605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.vc{vertical-align:-23.031373px;}
.v3{vertical-align:-21.602083px;}
.v1{vertical-align:-19.442137px;}
.v12{vertical-align:-17.284524px;}
.v5{vertical-align:-14.399228px;}
.v8{vertical-align:-10.779478px;}
.v9{vertical-align:-2.868724px;}
.v6{vertical-align:-1.434362px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.868724px;}
.v7{vertical-align:15.080152px;}
.vf{vertical-align:16.537012px;}
.v2{vertical-align:19.442137px;}
.vb{vertical-align:41.758991px;}
.va{vertical-align:48.948441px;}
.vd{vertical-align:53.317456px;}
.ve{vertical-align:56.916000px;}
.v11{vertical-align:64.084972px;}
.v10{vertical-align:72.022250px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.112015px;}
.ls1{letter-spacing:0.190080px;}
.ls10{letter-spacing:0.216953px;}
.ls1e{letter-spacing:0.249714px;}
.ls11{letter-spacing:0.293762px;}
.ls1f{letter-spacing:0.404669px;}
.ls1d{letter-spacing:2.667406px;}
.ls16{letter-spacing:5.616276px;}
.ls1b{letter-spacing:14.538486px;}
.lsd{letter-spacing:16.581913px;}
.lsb{letter-spacing:16.582257px;}
.lsc{letter-spacing:16.599423px;}
.lsf{letter-spacing:18.484389px;}
.lse{letter-spacing:18.499791px;}
.ls1a{letter-spacing:22.446007px;}
.ls18{letter-spacing:23.437503px;}
.ls17{letter-spacing:29.388517px;}
.ls12{letter-spacing:30.733411px;}
.ls3{letter-spacing:33.090989px;}
.ls2{letter-spacing:33.127217px;}
.ls7{letter-spacing:35.622597px;}
.ls9{letter-spacing:35.657045px;}
.ls8{letter-spacing:35.664835px;}
.lsa{letter-spacing:54.239913px;}
.ls6{letter-spacing:61.016895px;}
.ls4{letter-spacing:61.033376px;}
.ls5{letter-spacing:61.085206px;}
.ls21{letter-spacing:84.793227px;}
.ls22{letter-spacing:88.553019px;}
.ls1c{letter-spacing:88.567321px;}
.ls15{letter-spacing:89.307698px;}
.ls23{letter-spacing:113.205261px;}
.ls13{letter-spacing:143.535705px;}
.ls14{letter-spacing:153.648029px;}
.ls20{letter-spacing:666.315287px;}
.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;}
}
.ws13{word-spacing:-84.240136px;}
.ws35{word-spacing:-73.440459px;}
.ws11{word-spacing:-67.352368px;}
.ws49{word-spacing:-35.028000px;}
.ws30{word-spacing:-29.223360px;}
.ws2b{word-spacing:-26.421120px;}
.ws16{word-spacing:-23.418720px;}
.ws2c{word-spacing:-21.478998px;}
.ws4{word-spacing:-20.908759px;}
.ws2a{word-spacing:-20.636769px;}
.ws18{word-spacing:-20.416320px;}
.ws17{word-spacing:-20.343007px;}
.ws12{word-spacing:-19.038271px;}
.ws3a{word-spacing:-18.532830px;}
.ws40{word-spacing:-18.360115px;}
.ws27{word-spacing:-17.550822px;}
.ws1c{word-spacing:-16.156901px;}
.ws2f{word-spacing:-16.012800px;}
.ws1b{word-spacing:-15.955404px;}
.ws1a{word-spacing:-15.840092px;}
.ws3{word-spacing:-15.357020px;}
.ws7{word-spacing:-15.206400px;}
.ws1{word-spacing:-13.400640px;}
.ws20{word-spacing:-11.879969px;}
.ws25{word-spacing:-8.775360px;}
.ws38{word-spacing:-4.970168px;}
.ws14{word-spacing:-1.516320px;}
.ws41{word-spacing:-1.348469px;}
.ws32{word-spacing:-1.330560px;}
.ws8{word-spacing:-1.235518px;}
.ws3e{word-spacing:-1.095122px;}
.wsf{word-spacing:-0.665279px;}
.ws42{word-spacing:-0.505441px;}
.ws37{word-spacing:-0.421201px;}
.wsc{word-spacing:-0.380159px;}
.ws3d{word-spacing:-0.252720px;}
.wsa{word-spacing:-0.210240px;}
.ws43{word-spacing:-0.160903px;}
.ws3c{word-spacing:-0.160871px;}
.ws0{word-spacing:0.000000px;}
.ws9{word-spacing:0.105120px;}
.wsb{word-spacing:0.160919px;}
.ws3f{word-spacing:0.252720px;}
.ws3b{word-spacing:0.336961px;}
.ws29{word-spacing:0.514083px;}
.ws1f{word-spacing:0.561347px;}
.ws10{word-spacing:0.589681px;}
.ws28{word-spacing:0.734405px;}
.ws48{word-spacing:1.248488px;}
.ws4b{word-spacing:4.039225px;}
.ws1e{word-spacing:4.626749px;}
.wse{word-spacing:4.847030px;}
.ws23{word-spacing:5.361154px;}
.ws5{word-spacing:5.512309px;}
.wsd{word-spacing:9.218862px;}
.ws24{word-spacing:10.388264px;}
.ws39{word-spacing:11.035458px;}
.ws44{word-spacing:11.222684px;}
.ws45{word-spacing:12.467540px;}
.ws1d{word-spacing:12.712038px;}
.ws47{word-spacing:12.720261px;}
.ws4c{word-spacing:13.003441px;}
.ws46{word-spacing:13.478422px;}
.ws36{word-spacing:14.405063px;}
.ws4a{word-spacing:14.631263px;}
.ws15{word-spacing:22.913280px;}
.ws22{word-spacing:54.171322px;}
.ws2{word-spacing:84.472432px;}
.ws31{word-spacing:99.338397px;}
.ws26{word-spacing:283.459041px;}
.ws19{word-spacing:303.689912px;}
.ws21{word-spacing:360.528260px;}
.ws2e{word-spacing:449.526262px;}
.ws2d{word-spacing:589.062249px;}
.ws6{word-spacing:601.849123px;}
.ws33{word-spacing:1101.608814px;}
.ws34{word-spacing:1133.496847px;}
._12{margin-left:-2958.961047px;}
._13{margin-left:-2495.863473px;}
._8{margin-left:-1148.278297px;}
._d{margin-left:-639.550057px;}
._6{margin-left:-13.326480px;}
._4{margin-left:-10.108800px;}
._1a{margin-left:-8.530560px;}
._3{margin-left:-7.076160px;}
._9{margin-left:-5.692291px;}
._0{margin-left:-4.296240px;}
._5{margin-left:-2.802960px;}
._1{margin-left:-1.432080px;}
._2{width:1.179360px;}
._14{width:2.188800px;}
._16{width:3.575197px;}
._22{width:8.042412px;}
._21{width:10.880868px;}
._1d{width:12.376908px;}
._20{width:13.740033px;}
._1e{width:15.653380px;}
._15{width:17.453023px;}
._17{width:19.755484px;}
._18{width:21.921968px;}
._b{width:24.520272px;}
._c{width:27.384432px;}
._10{width:29.462342px;}
._1f{width:33.660022px;}
._23{width:34.846351px;}
._f{width:36.596811px;}
._24{width:39.661920px;}
._7{width:113.319360px;}
._11{width:183.986304px;}
._a{width:389.769986px;}
._1c{width:682.571969px;}
._1b{width:688.437418px;}
._19{width:1046.640151px;}
._e{width:1786.947322px;}
._25{width:1824.462720px;}
.fcb{color:rgb(255,0,0);}
.fc9{color:rgb(150,90,80);}
.fc8{color:rgb(222,172,67);}
.fc7{color:rgb(119,137,53);}
.fca{color:rgb(166,187,200);}
.fc6{color:transparent;}
.fcc{color:rgb(40,228,255);}
.fc5{color:rgb(68,114,196);}
.fc3{color:rgb(23,156,125);}
.fc2{color:rgb(0,91,127);}
.fc4{color:rgb(31,31,31);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs12{font-size:31.680000px;}
.fs10{font-size:43.919769px;}
.fs2{font-size:47.520000px;}
.fs11{font-size:47.520644px;}
.fs4{font-size:52.560000px;}
.fsf{font-size:53.999861px;}
.fs6{font-size:55.440506px;}
.fs14{font-size:57.600000px;}
.fse{font-size:57.600736px;}
.fs16{font-size:61.200137px;}
.fs13{font-size:63.360000px;}
.fsd{font-size:63.360367px;}
.fs9{font-size:69.119999px;}
.fsc{font-size:73.440000px;}
.fs7{font-size:73.440459px;}
.fs0{font-size:84.240000px;}
.fsb{font-size:84.240136px;}
.fs8{font-size:95.039814px;}
.fsa{font-size:95.040000px;}
.fs5{font-size:105.120000px;}
.fs3{font-size:126.000000px;}
.fs1{font-size:147.600000px;}
.fs15{font-size:315.360000px;}
.fs17{font-size:347.040000px;}
.y0{bottom:0.000000px;}
.y7{bottom:109.078240px;}
.y9{bottom:122.043042px;}
.y6{bottom:123.297115px;}
.y29{bottom:139.496334px;}
.yd5{bottom:162.906517px;}
.yb{bottom:174.413111px;}
.y3{bottom:174.960365px;}
.ya9{bottom:175.132441px;}
.y28{bottom:177.486442px;}
.yab{bottom:177.656077px;}
.yd2{bottom:181.629336px;}
.yb7{bottom:183.957265px;}
.y66{bottom:190.254227px;}
.ydc{bottom:192.417889px;}
.yd4{bottom:193.129239px;}
.yac{bottom:195.832466px;}
.ya8{bottom:201.416440px;}
.y23{bottom:203.220162px;}
.y9d{bottom:211.318198px;}
.y27{bottom:215.290252px;}
.ydb{bottom:216.712801px;}
.y7a{bottom:221.940388px;}
.y72{bottom:222.288133px;}
.y39{bottom:224.994116px;}
.y9c{bottom:225.361221px;}
.ya7{bottom:227.694803px;}
.y3a{bottom:234.539482px;}
.y22{bottom:241.023862px;}
.y2{bottom:241.194091px;}
.y65{bottom:245.163625px;}
.y48{bottom:245.698233px;}
.ye{bottom:250.913862px;}
.y14{bottom:251.101584px;}
.y26{bottom:253.075766px;}
.yd3{bottom:254.875337px;}
.y42{bottom:255.596107px;}
.yb5{bottom:257.934488px;}
.y7b{bottom:263.525777px;}
.yda{bottom:266.937589px;}
.y4c{bottom:269.997925px;}
.y47{bottom:271.971388px;}
.y1{bottom:274.489946px;}
.yd{bottom:277.197861px;}
.y13{bottom:277.379101px;}
.y64{bottom:277.738565px;}
.y80{bottom:278.452914px;}
.y21{bottom:278.999786px;}
.ydd{bottom:281.697109px;}
.y9b{bottom:286.383131px;}
.y25{bottom:291.061983px;}
.y2d{bottom:292.681466px;}
.y5{bottom:296.639108px;}
.y4b{bottom:303.117606px;}
.y63{bottom:306.179288px;}
.y40{bottom:308.873275px;}
.y46{bottom:312.124699px;}
.ybe{bottom:315.536547px;}
.yae{bottom:316.256787px;}
.yde{bottom:317.512818px;}
.y5d{bottom:318.425355px;}
.yd9{bottom:319.680202px;}
.y20{bottom:320.400040px;}
.yaf{bottom:320.403054px;}
.ybc{bottom:320.405077px;}
.y17{bottom:320.754900px;}
.ybf{bottom:320.942869px;}
.ybd{bottom:321.837155px;}
.yc0{bottom:322.555500px;}
.y3f{bottom:323.092640px;}
.y24{bottom:328.863110px;}
.ya5{bottom:331.917259px;}
.y4a{bottom:336.232800px;}
.y3e{bottom:337.317572px;}
.yba{bottom:337.499663px;}
.yb8{bottom:338.945031px;}
.y4{bottom:341.472586px;}
.y62{bottom:344.884348px;}
.yb2{bottom:345.780440px;}
.y45{bottom:347.394005px;}
.y6f{bottom:351.352803px;}
.y5c{bottom:352.626672px;}
.yb0{bottom:353.517153px;}
.yc1{bottom:356.394906px;}
.y75{bottom:356.762908px;}
.y12{bottom:358.555422px;}
.yc{bottom:359.640195px;}
.yc7{bottom:361.084205px;}
.y9a{bottom:362.160182px;}
.ybb{bottom:363.070092px;}
.y3d{bottom:363.414383px;}
.y44{bottom:368.273398px;}
.ya4{bottom:369.903445px;}
.yd8{bottom:372.418946px;}
.y4e{bottom:372.953050px;}
.y7f{bottom:375.839776px;}
.y32{bottom:378.896783px;}
.y1f{bottom:378.900020px;}
.y31{bottom:379.434655px;}
.y71{bottom:380.362357px;}
.y90{bottom:381.053272px;}
.y61{bottom:381.427203px;}
.y5b{bottom:386.816412px;}
.y74{bottom:388.430276px;}
.yf{bottom:389.154575px;}
.yb9{bottom:389.350092px;}
.yb1{bottom:390.595966px;}
.y51{bottom:394.020565px;}
.y4d{bottom:395.096364px;}
.y99{bottom:395.640172px;}
.y41{bottom:396.181136px;}
.y8f{bottom:399.058834px;}
.y98{bottom:399.961308px;}
.yd7{bottom:400.136137px;}
.y1c{bottom:403.743055px;}
.y38{bottom:413.816162px;}
.y5f{bottom:418.492818px;}
.y73{bottom:419.940010px;}
.y5a{bottom:421.017765px;}
.yc6{bottom:421.203394px;}
.y7e{bottom:422.098638px;}
.yb6{bottom:424.083972px;}
.yc8{bottom:427.165582px;}
.y2c{bottom:428.580243px;}
.y1b{bottom:430.020571px;}
.y97{bottom:437.937232px;}
.yd6{bottom:439.029010px;}
.y37{bottom:439.915635px;}
.y49{bottom:440.993544px;}
.ya3{bottom:445.680496px;}
.y2b{bottom:454.856390px;}
.y59{bottom:455.219117px;}
.y1a{bottom:456.298052px;}
.y60{bottom:459.360010px;}
.y96{bottom:471.422200px;}
.y7d{bottom:475.197751px;}
.y95{bottom:475.738359px;}
.y57{bottom:480.245035px;}
.yc5{bottom:481.322582px;}
.y19{bottom:482.575533px;}
.ya2{bottom:483.481622px;}
.yc9{bottom:485.815328px;}
.y58{bottom:489.420434px;}
.yad{bottom:494.454338px;}
.yc2{bottom:495.008661px;}
.y6e{bottom:496.260010px;}
.y5e{bottom:496.972095px;}
.y9f{bottom:497.520346px;}
.y4f{bottom:498.237527px;}
.yd1{bottom:508.135684px;}
.y94{bottom:510.300246px;}
.yb3{bottom:514.257799px;}
.yce{bottom:515.520358px;}
.ycb{bottom:516.965766px;}
.y77{bottom:518.403625px;}
.ya1{bottom:521.282749px;}
.y9e{bottom:523.796466px;}
.y93{bottom:524.336867px;}
.y1e{bottom:529.212255px;}
.y70{bottom:529.369939px;}
.ycc{bottom:532.812602px;}
.yd0{bottom:539.829358px;}
.y68{bottom:540.001456px;}
.y56{bottom:540.896462px;}
.yc4{bottom:541.615787px;}
.y76{bottom:546.844348px;}
.ycd{bottom:547.030092px;}
.y78{bottom:547.200733px;}
.yca{bottom:548.449194px;}
.y8e{bottom:550.619431px;}
.y67{bottom:566.280010px;}
.y55{bottom:567.185556px;}
.y8a{bottom:569.154986px;}
.ycf{bottom:571.312807px;}
.y86{bottom:571.673541px;}
.y3b{bottom:576.178370px;}
.y7c{bottom:576.187926px;}
.y1d{bottom:580.153518px;}
.y2f{bottom:581.216639px;}
.y35{bottom:581.754673px;}
.y33{bottom:583.556806px;}
.y8c{bottom:583.743625px;}
.y88{bottom:584.646480px;}
.y92{bottom:585.182662px;}
.y81{bottom:585.905757px;}
.y84{bottom:587.711541px;}
.y54{bottom:593.463037px;}
.ya0{bottom:597.059800px;}
.y16{bottom:597.778829px;}
.y18{bottom:599.577071px;}
.y34{bottom:600.657597px;}
.yc3{bottom:601.734958px;}
.y8d{bottom:603.180644px;}
.y30{bottom:606.954887px;}
.y2e{bottom:607.501733px;}
.y43{bottom:607.860323px;}
.y3c{bottom:608.577532px;}
.y36{bottom:608.756813px;}
.yb4{bottom:610.382894px;}
.y8b{bottom:612.184330px;}
.y83{bottom:612.540733px;}
.y87{bottom:613.087203px;}
.y53{bottom:619.740010px;}
.y10{bottom:622.617730px;}
.y91{bottom:622.983789px;}
.y15{bottom:624.056310px;}
.y79{bottom:625.680536px;}
.y52{bottom:629.456764px;}
.y2a{bottom:631.073522px;}
.y11{bottom:631.620002px;}
.y6d{bottom:636.839661px;}
.y6a{bottom:637.372088px;}
.ya6{bottom:640.259485px;}
.y50{bottom:640.618075px;}
.y69{bottom:650.334244px;}
.y6c{bottom:663.112816px;}
.y89{bottom:663.292095px;}
.y85{bottom:665.810649px;}
.y82{bottom:669.065776px;}
.y6b{bottom:689.404336px;}
.ya{bottom:694.802521px;}
.y8{bottom:729.369015px;}
.yaa{bottom:730.975297px;}
.h21{height:34.735549px;}
.h4{height:35.640000px;}
.h6{height:40.050720px;}
.ha{height:40.524627px;}
.h8{height:41.252281px;}
.h2a{height:43.891200px;}
.h1c{height:43.993380px;}
.h1b{height:44.704981px;}
.h1f{height:45.509648px;}
.h23{height:46.313706px;}
.h1d{height:48.544370px;}
.h3a{height:53.610101px;}
.h19{height:53.681820px;}
.h2f{height:54.399056px;}
.h22{height:55.409384px;}
.h46{height:55.959632px;}
.h1a{height:55.961280px;}
.h45{height:56.014697px;}
.hd{height:56.550544px;}
.h2d{height:56.909184px;}
.hc{height:58.252499px;}
.h33{height:61.246857px;}
.h38{height:61.493654px;}
.h32{height:61.575920px;}
.h1e{height:61.893668px;}
.h31{height:63.020053px;}
.h15{height:64.175406px;}
.h42{height:64.181859px;}
.h17{height:64.186879px;}
.h2{height:64.190880px;}
.h16{height:64.195476px;}
.h14{height:64.199569px;}
.h13{height:64.205964px;}
.h43{height:64.208822px;}
.h9{height:64.224542px;}
.h44{height:64.242242px;}
.h11{height:69.391167px;}
.he{height:69.470020px;}
.h35{height:70.995349px;}
.h3d{height:72.387205px;}
.h3b{height:72.400352px;}
.h25{height:72.409865px;}
.h3e{height:72.412731px;}
.h24{height:72.414158px;}
.h18{height:72.420480px;}
.h3c{height:72.425808px;}
.h3f{height:72.438257px;}
.h26{height:72.452024px;}
.hf{height:72.478286px;}
.h2e{height:74.511371px;}
.h36{height:78.511491px;}
.h41{height:78.840000px;}
.hb{height:80.097030px;}
.h7{height:80.101440px;}
.h10{height:83.113431px;}
.h12{height:83.787675px;}
.h37{height:88.279893px;}
.h2c{height:88.957492px;}
.h27{height:94.529346px;}
.h5{height:96.012000px;}
.h28{height:109.278736px;}
.h3{height:112.471200px;}
.h29{height:112.877280px;}
.h20{height:121.134258px;}
.h30{height:128.931434px;}
.h34{height:135.080321px;}
.h39{height:135.085468px;}
.h2b{height:240.304320px;}
.h40{height:264.444480px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x70{left:42.484661px;}
.x2{left:46.789201px;}
.x10{left:48.239205px;}
.x1{left:50.228101px;}
.x16{left:51.662899px;}
.x1c{left:61.203369px;}
.x1b{left:70.024834px;}
.x62{left:72.177924px;}
.x1d{left:76.506117px;}
.x3e{left:81.187916px;}
.x68{left:94.502793px;}
.x75{left:98.102901px;}
.x42{left:99.720723px;}
.x63{left:101.875860px;}
.x3f{left:103.688639px;}
.x43{left:106.207202px;}
.x40{left:108.369361px;}
.x41{left:110.151361px;}
.x83{left:114.291724px;}
.x57{left:118.253521px;}
.x79{left:121.676398px;}
.x38{left:126.545756px;}
.x32{left:129.052442px;}
.x50{left:130.133521px;}
.x7{left:138.238755px;}
.x7d{left:139.682883px;}
.x4{left:144.001255px;}
.x56{left:154.796404px;}
.x7e{left:161.284614px;}
.x3d{left:166.134049px;}
.x6{left:167.939473px;}
.x3c{left:179.997886px;}
.xf{left:184.858934px;}
.xe{left:188.281385px;}
.x6e{left:190.264675px;}
.x78{left:191.712592px;}
.x3b{left:194.755046px;}
.x58{left:196.566488px;}
.x8a{left:197.809551px;}
.xd{left:203.583819px;}
.x8{left:205.744455px;}
.x20{left:207.178844px;}
.x7f{left:215.454597px;}
.x1e{left:230.577239px;}
.x74{left:232.199884px;}
.x47{left:235.613883px;}
.x11{left:238.136214px;}
.x6b{left:239.218552px;}
.x64{left:243.002769px;}
.x21{left:245.880302px;}
.x44{left:247.674235px;}
.x1f{left:263.523246px;}
.x46{left:265.327916px;}
.x67{left:268.923509px;}
.x71{left:272.165396px;}
.x45{left:278.633512px;}
.x72{left:285.657587px;}
.x73{left:302.224704px;}
.x14{left:314.098551px;}
.x7b{left:317.331000px;}
.x7c{left:324.182533px;}
.x36{left:328.321543px;}
.x65{left:331.016846px;}
.x53{left:346.673533px;}
.x69{left:354.956180px;}
.x35{left:364.145275px;}
.x82{left:370.442898px;}
.x7a{left:375.120734px;}
.x54{left:398.346363px;}
.x52{left:402.653156px;}
.x3a{left:407.697831px;}
.x2e{left:419.398925px;}
.x2a{left:422.641248px;}
.x5{left:425.879109px;}
.x17{left:429.303880px;}
.x60{left:433.800411px;}
.x5b{left:441.532084px;}
.x2d{left:446.945079px;}
.x27{left:448.926341px;}
.x48{left:451.802883px;}
.x51{left:455.930639px;}
.x29{left:457.927081px;}
.x55{left:491.043424px;}
.x12{left:494.283598px;}
.x3{left:508.499639px;}
.x5a{left:514.071361px;}
.x13{left:516.946502px;}
.x2b{left:520.744142px;}
.x15{left:536.949021px;}
.x89{left:544.151530px;}
.x4f{left:558.528837px;}
.x86{left:568.068490px;}
.x59{left:569.170807px;}
.x84{left:579.947021px;}
.x5f{left:592.742401px;}
.x66{left:594.006276px;}
.x8c{left:599.225100px;}
.x85{left:605.333510px;}
.x8b{left:610.192419px;}
.x5c{left:616.690771px;}
.x2c{left:635.948310px;}
.x9{left:653.766705px;}
.x37{left:659.519689px;}
.x61{left:660.606471px;}
.x28{left:666.717348px;}
.x39{left:678.956903px;}
.x33{left:687.787139px;}
.xc{left:700.203504px;}
.x5e{left:709.919236px;}
.xa{left:723.240032px;}
.x6c{left:745.565930px;}
.x6f{left:749.528622px;}
.x77{left:750.603051px;}
.x81{left:753.841816px;}
.x80{left:760.858531px;}
.x4c{left:764.827207px;}
.x4d{left:766.440000px;}
.x25{left:812.881090px;}
.x76{left:819.535311px;}
.x18{left:824.219352px;}
.x26{left:826.929530px;}
.x1a{left:829.627952px;}
.x30{left:835.196389px;}
.x22{left:840.064323px;}
.x19{left:842.758048px;}
.x31{left:854.107222px;}
.x4b{left:869.933533px;}
.x4a{left:906.837145px;}
.x6d{left:912.060933px;}
.x49{left:941.941400px;}
.x4e{left:949.470122px;}
.x6a{left:953.831764px;}
.x87{left:1024.210469px;}
.x2f{left:1028.885760px;}
.x34{left:1034.112377px;}
.x5d{left:1036.981446px;}
.xb{left:1041.662109px;}
.x88{left:1045.970306px;}
.x23{left:1078.207133px;}
.x24{left:1107.544774px;}
@media print{
.vc{vertical-align:-20.472332pt;}
.v3{vertical-align:-19.201852pt;}
.v1{vertical-align:-17.281899pt;}
.v12{vertical-align:-15.364022pt;}
.v5{vertical-align:-12.799314pt;}
.v8{vertical-align:-9.581758pt;}
.v9{vertical-align:-2.549977pt;}
.v6{vertical-align:-1.274988pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.549977pt;}
.v7{vertical-align:13.404579pt;}
.vf{vertical-align:14.699566pt;}
.v2{vertical-align:17.281899pt;}
.vb{vertical-align:37.119103pt;}
.va{vertical-align:43.509726pt;}
.vd{vertical-align:47.393294pt;}
.ve{vertical-align:50.592000pt;}
.v11{vertical-align:56.964419pt;}
.v10{vertical-align:64.019778pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.099569pt;}
.ls1{letter-spacing:0.168960pt;}
.ls10{letter-spacing:0.192848pt;}
.ls1e{letter-spacing:0.221968pt;}
.ls11{letter-spacing:0.261122pt;}
.ls1f{letter-spacing:0.359706pt;}
.ls1d{letter-spacing:2.371028pt;}
.ls16{letter-spacing:4.992246pt;}
.ls1b{letter-spacing:12.923099pt;}
.lsd{letter-spacing:14.739479pt;}
.lsb{letter-spacing:14.739784pt;}
.lsc{letter-spacing:14.755043pt;}
.lsf{letter-spacing:16.430568pt;}
.lse{letter-spacing:16.444259pt;}
.ls1a{letter-spacing:19.952006pt;}
.ls18{letter-spacing:20.833336pt;}
.ls17{letter-spacing:26.123126pt;}
.ls12{letter-spacing:27.318587pt;}
.ls3{letter-spacing:29.414212pt;}
.ls2{letter-spacing:29.446415pt;}
.ls7{letter-spacing:31.664531pt;}
.ls9{letter-spacing:31.695151pt;}
.ls8{letter-spacing:31.702076pt;}
.lsa{letter-spacing:48.213256pt;}
.ls6{letter-spacing:54.237240pt;}
.ls4{letter-spacing:54.251890pt;}
.ls5{letter-spacing:54.297961pt;}
.ls21{letter-spacing:75.371757pt;}
.ls22{letter-spacing:78.713795pt;}
.ls1c{letter-spacing:78.726507pt;}
.ls15{letter-spacing:79.384621pt;}
.ls23{letter-spacing:100.626899pt;}
.ls13{letter-spacing:127.587293pt;}
.ls14{letter-spacing:136.576025pt;}
.ls20{letter-spacing:592.280255pt;}
.ws13{word-spacing:-74.880121pt;}
.ws35{word-spacing:-65.280408pt;}
.ws11{word-spacing:-59.868772pt;}
.ws49{word-spacing:-31.136000pt;}
.ws30{word-spacing:-25.976320pt;}
.ws2b{word-spacing:-23.485440pt;}
.ws16{word-spacing:-20.816640pt;}
.ws2c{word-spacing:-19.092443pt;}
.ws4{word-spacing:-18.585564pt;}
.ws2a{word-spacing:-18.343795pt;}
.ws18{word-spacing:-18.147840pt;}
.ws17{word-spacing:-18.082673pt;}
.ws12{word-spacing:-16.922907pt;}
.ws3a{word-spacing:-16.473627pt;}
.ws40{word-spacing:-16.320102pt;}
.ws27{word-spacing:-15.600730pt;}
.ws1c{word-spacing:-14.361690pt;}
.ws2f{word-spacing:-14.233600pt;}
.ws1b{word-spacing:-14.182581pt;}
.ws1a{word-spacing:-14.080082pt;}
.ws3{word-spacing:-13.650685pt;}
.ws7{word-spacing:-13.516800pt;}
.ws1{word-spacing:-11.911680pt;}
.ws20{word-spacing:-10.559973pt;}
.ws25{word-spacing:-7.800320pt;}
.ws38{word-spacing:-4.417927pt;}
.ws14{word-spacing:-1.347840pt;}
.ws41{word-spacing:-1.198639pt;}
.ws32{word-spacing:-1.182720pt;}
.ws8{word-spacing:-1.098238pt;}
.ws3e{word-spacing:-0.973442pt;}
.wsf{word-spacing:-0.591359pt;}
.ws42{word-spacing:-0.449281pt;}
.ws37{word-spacing:-0.374401pt;}
.wsc{word-spacing:-0.337919pt;}
.ws3d{word-spacing:-0.224640pt;}
.wsa{word-spacing:-0.186880pt;}
.ws43{word-spacing:-0.143024pt;}
.ws3c{word-spacing:-0.142997pt;}
.ws0{word-spacing:0.000000pt;}
.ws9{word-spacing:0.093440pt;}
.wsb{word-spacing:0.143039pt;}
.ws3f{word-spacing:0.224640pt;}
.ws3b{word-spacing:0.299520pt;}
.ws29{word-spacing:0.456963pt;}
.ws1f{word-spacing:0.498975pt;}
.ws10{word-spacing:0.524161pt;}
.ws28{word-spacing:0.652804pt;}
.ws48{word-spacing:1.109767pt;}
.ws4b{word-spacing:3.590422pt;}
.ws1e{word-spacing:4.112666pt;}
.wse{word-spacing:4.308472pt;}
.ws23{word-spacing:4.765470pt;}
.ws5{word-spacing:4.899830pt;}
.wsd{word-spacing:8.194544pt;}
.ws24{word-spacing:9.234013pt;}
.ws39{word-spacing:9.809296pt;}
.ws44{word-spacing:9.975719pt;}
.ws45{word-spacing:11.082258pt;}
.ws1d{word-spacing:11.299589pt;}
.ws47{word-spacing:11.306898pt;}
.ws4c{word-spacing:11.558614pt;}
.ws46{word-spacing:11.980819pt;}
.ws36{word-spacing:12.804501pt;}
.ws4a{word-spacing:13.005567pt;}
.ws15{word-spacing:20.367360pt;}
.ws22{word-spacing:48.152287pt;}
.ws2{word-spacing:75.086606pt;}
.ws31{word-spacing:88.300797pt;}
.ws26{word-spacing:251.963592pt;}
.ws19{word-spacing:269.946589pt;}
.ws21{word-spacing:320.469565pt;}
.ws2e{word-spacing:399.578900pt;}
.ws2d{word-spacing:523.610888pt;}
.ws6{word-spacing:534.976998pt;}
.ws33{word-spacing:979.207835pt;}
.ws34{word-spacing:1007.552753pt;}
._12{margin-left:-2630.187598pt;}
._13{margin-left:-2218.545310pt;}
._8{margin-left:-1020.691819pt;}
._d{margin-left:-568.488939pt;}
._6{margin-left:-11.845760pt;}
._4{margin-left:-8.985600pt;}
._1a{margin-left:-7.582720pt;}
._3{margin-left:-6.289920pt;}
._9{margin-left:-5.059814pt;}
._0{margin-left:-3.818880pt;}
._5{margin-left:-2.491520pt;}
._1{margin-left:-1.272960pt;}
._2{width:1.048320pt;}
._14{width:1.945600pt;}
._16{width:3.177953pt;}
._22{width:7.148811pt;}
._21{width:9.671883pt;}
._1d{width:11.001696pt;}
._20{width:12.213363pt;}
._1e{width:13.914115pt;}
._15{width:15.513798pt;}
._17{width:17.560430pt;}
._18{width:19.486194pt;}
._b{width:21.795797pt;}
._c{width:24.341717pt;}
._10{width:26.188749pt;}
._1f{width:29.920020pt;}
._23{width:30.974534pt;}
._f{width:32.530499pt;}
._24{width:35.255040pt;}
._7{width:100.728320pt;}
._11{width:163.543382pt;}
._a{width:346.462210pt;}
._1c{width:606.730639pt;}
._1b{width:611.944371pt;}
._19{width:930.346801pt;}
._e{width:1588.397620pt;}
._25{width:1621.744640pt;}
.fs12{font-size:28.160000pt;}
.fs10{font-size:39.039794pt;}
.fs2{font-size:42.240000pt;}
.fs11{font-size:42.240573pt;}
.fs4{font-size:46.720000pt;}
.fsf{font-size:47.999876pt;}
.fs6{font-size:49.280450pt;}
.fs14{font-size:51.200000pt;}
.fse{font-size:51.200654pt;}
.fs16{font-size:54.400122pt;}
.fs13{font-size:56.320000pt;}
.fsd{font-size:56.320326pt;}
.fs9{font-size:61.439999pt;}
.fsc{font-size:65.280000pt;}
.fs7{font-size:65.280408pt;}
.fs0{font-size:74.880000pt;}
.fsb{font-size:74.880121pt;}
.fs8{font-size:84.479834pt;}
.fsa{font-size:84.480000pt;}
.fs5{font-size:93.440000pt;}
.fs3{font-size:112.000000pt;}
.fs1{font-size:131.200000pt;}
.fs15{font-size:280.320000pt;}
.fs17{font-size:308.480000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:96.958435pt;}
.y9{bottom:108.482704pt;}
.y6{bottom:109.597435pt;}
.y29{bottom:123.996741pt;}
.yd5{bottom:144.805793pt;}
.yb{bottom:155.033877pt;}
.y3{bottom:155.520325pt;}
.ya9{bottom:155.673281pt;}
.y28{bottom:157.765726pt;}
.yab{bottom:157.916513pt;}
.yd2{bottom:161.448298pt;}
.yb7{bottom:163.517569pt;}
.y66{bottom:169.114869pt;}
.ydc{bottom:171.038124pt;}
.yd4{bottom:171.670435pt;}
.yac{bottom:174.073303pt;}
.ya8{bottom:179.036836pt;}
.y23{bottom:180.640144pt;}
.y9d{bottom:187.838398pt;}
.y27{bottom:191.369113pt;}
.ydb{bottom:192.633601pt;}
.y7a{bottom:197.280345pt;}
.y72{bottom:197.589452pt;}
.y39{bottom:199.994770pt;}
.y9c{bottom:200.321085pt;}
.ya7{bottom:202.395381pt;}
.y3a{bottom:208.479540pt;}
.y22{bottom:214.243433pt;}
.y2{bottom:214.394748pt;}
.y65{bottom:217.923222pt;}
.y48{bottom:218.398429pt;}
.ye{bottom:223.034544pt;}
.y14{bottom:223.201408pt;}
.y26{bottom:224.956237pt;}
.yd3{bottom:226.555855pt;}
.y42{bottom:227.196540pt;}
.yb5{bottom:229.275100pt;}
.y7b{bottom:234.245135pt;}
.yda{bottom:237.277857pt;}
.y4c{bottom:239.998156pt;}
.y47{bottom:241.752345pt;}
.y1{bottom:243.991063pt;}
.yd{bottom:246.398098pt;}
.y13{bottom:246.559201pt;}
.y64{bottom:246.878724pt;}
.y80{bottom:247.513701pt;}
.y21{bottom:247.999810pt;}
.ydd{bottom:250.397430pt;}
.y9b{bottom:254.562783pt;}
.y25{bottom:258.721763pt;}
.y2d{bottom:260.161303pt;}
.y5{bottom:263.679207pt;}
.y4b{bottom:269.437872pt;}
.y63{bottom:272.159367pt;}
.y40{bottom:274.554022pt;}
.y46{bottom:277.444177pt;}
.ybe{bottom:280.476931pt;}
.yae{bottom:281.117144pt;}
.yde{bottom:282.233616pt;}
.y5d{bottom:283.044760pt;}
.yd9{bottom:284.160180pt;}
.y20{bottom:284.800036pt;}
.yaf{bottom:284.802714pt;}
.ybc{bottom:284.804513pt;}
.y17{bottom:285.115466pt;}
.ybf{bottom:285.282550pt;}
.ybd{bottom:286.077471pt;}
.yc0{bottom:286.716000pt;}
.y3f{bottom:287.193458pt;}
.y24{bottom:292.322765pt;}
.ya5{bottom:295.037564pt;}
.y4a{bottom:298.873600pt;}
.y3e{bottom:299.837842pt;}
.yba{bottom:299.999701pt;}
.yb8{bottom:301.284472pt;}
.y4{bottom:303.531187pt;}
.y62{bottom:306.563865pt;}
.yb2{bottom:307.360391pt;}
.y45{bottom:308.794671pt;}
.y6f{bottom:312.313603pt;}
.y5c{bottom:313.445931pt;}
.yb0{bottom:314.237469pt;}
.yc1{bottom:316.795472pt;}
.y75{bottom:317.122585pt;}
.y12{bottom:318.715931pt;}
.yc{bottom:319.680173pt;}
.yc7{bottom:320.963737pt;}
.y9a{bottom:321.920161pt;}
.ybb{bottom:322.728971pt;}
.y3d{bottom:323.035007pt;}
.y44{bottom:327.354132pt;}
.ya4{bottom:328.803062pt;}
.yd8{bottom:331.039063pt;}
.y4e{bottom:331.513822pt;}
.y7f{bottom:334.079801pt;}
.y32{bottom:336.797140pt;}
.y1f{bottom:336.800018pt;}
.y31{bottom:337.275249pt;}
.y71{bottom:338.099873pt;}
.y90{bottom:338.714019pt;}
.y61{bottom:339.046403pt;}
.y5b{bottom:343.836811pt;}
.y74{bottom:345.271356pt;}
.yf{bottom:345.915177pt;}
.yb9{bottom:346.088971pt;}
.yb1{bottom:347.196414pt;}
.y51{bottom:350.240502pt;}
.y4d{bottom:351.196768pt;}
.y99{bottom:351.680153pt;}
.y41{bottom:352.161010pt;}
.y8f{bottom:354.718964pt;}
.y98{bottom:355.521163pt;}
.yd7{bottom:355.676566pt;}
.y1c{bottom:358.882715pt;}
.y38{bottom:367.836589pt;}
.y5f{bottom:371.993616pt;}
.y73{bottom:373.280009pt;}
.y5a{bottom:374.238013pt;}
.yc6{bottom:374.403016pt;}
.y7e{bottom:375.198789pt;}
.yb6{bottom:376.963530pt;}
.yc8{bottom:379.702740pt;}
.y2c{bottom:380.960216pt;}
.y1b{bottom:382.240508pt;}
.y97{bottom:389.277540pt;}
.yd6{bottom:390.248009pt;}
.y37{bottom:391.036120pt;}
.y49{bottom:391.994261pt;}
.ya3{bottom:396.160441pt;}
.y2b{bottom:404.316791pt;}
.y59{bottom:404.639215pt;}
.y1a{bottom:405.598268pt;}
.y60{bottom:408.320009pt;}
.y96{bottom:419.041956pt;}
.y7d{bottom:422.398000pt;}
.y95{bottom:422.878541pt;}
.y57{bottom:426.884475pt;}
.yc5{bottom:427.842295pt;}
.y19{bottom:428.956029pt;}
.ya2{bottom:429.761442pt;}
.yc9{bottom:431.835847pt;}
.y58{bottom:435.040386pt;}
.yad{bottom:439.514967pt;}
.yc2{bottom:440.007698pt;}
.y6e{bottom:441.120009pt;}
.y5e{bottom:441.752973pt;}
.y9f{bottom:442.240308pt;}
.y4f{bottom:442.877802pt;}
.yd1{bottom:451.676164pt;}
.y94{bottom:453.600219pt;}
.yb3{bottom:457.118044pt;}
.yce{bottom:458.240318pt;}
.ycb{bottom:459.525125pt;}
.y77{bottom:460.803222pt;}
.ya1{bottom:463.362444pt;}
.y9e{bottom:465.596858pt;}
.y93{bottom:466.077215pt;}
.y1e{bottom:470.410894pt;}
.y70{bottom:470.551057pt;}
.ycc{bottom:473.611202pt;}
.yd0{bottom:479.848318pt;}
.y68{bottom:480.001294pt;}
.y56{bottom:480.796855pt;}
.yc4{bottom:481.436255pt;}
.y76{bottom:486.083865pt;}
.ycd{bottom:486.248971pt;}
.y78{bottom:486.400652pt;}
.yca{bottom:487.510395pt;}
.y8e{bottom:489.439494pt;}
.y67{bottom:503.360009pt;}
.y55{bottom:504.164938pt;}
.y8a{bottom:505.915543pt;}
.ycf{bottom:507.833606pt;}
.y86{bottom:508.154258pt;}
.y3b{bottom:512.158551pt;}
.y7c{bottom:512.167046pt;}
.y1d{bottom:515.692016pt;}
.y2f{bottom:516.637013pt;}
.y35{bottom:517.115265pt;}
.y33{bottom:518.717161pt;}
.y8c{bottom:518.883222pt;}
.y88{bottom:519.685760pt;}
.y92{bottom:520.162366pt;}
.y81{bottom:520.805118pt;}
.y84{bottom:522.410258pt;}
.y54{bottom:527.522699pt;}
.ya0{bottom:530.719822pt;}
.y16{bottom:531.358959pt;}
.y18{bottom:532.957396pt;}
.y34{bottom:533.917864pt;}
.yc3{bottom:534.875518pt;}
.y8d{bottom:536.160573pt;}
.y30{bottom:539.515455pt;}
.y2e{bottom:540.001540pt;}
.y43{bottom:540.320287pt;}
.y3c{bottom:540.957806pt;}
.y36{bottom:541.117167pt;}
.yb4{bottom:542.562572pt;}
.y8b{bottom:544.163849pt;}
.y83{bottom:544.480652pt;}
.y87{bottom:544.966403pt;}
.y53{bottom:550.880009pt;}
.y10{bottom:553.437982pt;}
.y91{bottom:553.763368pt;}
.y15{bottom:554.716720pt;}
.y79{bottom:556.160476pt;}
.y52{bottom:559.517124pt;}
.y2a{bottom:560.954242pt;}
.y11{bottom:561.440002pt;}
.y6d{bottom:566.079698pt;}
.y6a{bottom:566.552967pt;}
.ya6{bottom:569.119542pt;}
.y50{bottom:569.438289pt;}
.y69{bottom:578.074883pt;}
.y6c{bottom:589.433614pt;}
.y89{bottom:589.592973pt;}
.y85{bottom:591.831688pt;}
.y82{bottom:594.725134pt;}
.y6b{bottom:612.803854pt;}
.ya{bottom:617.602241pt;}
.y8{bottom:648.328013pt;}
.yaa{bottom:649.755819pt;}
.h21{height:30.876044pt;}
.h4{height:31.680000pt;}
.h6{height:35.600640pt;}
.ha{height:36.021891pt;}
.h8{height:36.668694pt;}
.h2a{height:39.014400pt;}
.h1c{height:39.105227pt;}
.h1b{height:39.737761pt;}
.h1f{height:40.453021pt;}
.h23{height:41.167739pt;}
.h1d{height:43.150551pt;}
.h3a{height:47.653423pt;}
.h19{height:47.717173pt;}
.h2f{height:48.354716pt;}
.h22{height:49.252786pt;}
.h46{height:49.741895pt;}
.h1a{height:49.743360pt;}
.h45{height:49.790842pt;}
.hd{height:50.267151pt;}
.h2d{height:50.585941pt;}
.hc{height:51.779999pt;}
.h33{height:54.441651pt;}
.h38{height:54.661026pt;}
.h32{height:54.734151pt;}
.h1e{height:55.016594pt;}
.h31{height:56.017825pt;}
.h15{height:57.044805pt;}
.h42{height:57.050541pt;}
.h17{height:57.055003pt;}
.h2{height:57.058560pt;}
.h16{height:57.062645pt;}
.h14{height:57.066284pt;}
.h13{height:57.071968pt;}
.h43{height:57.074509pt;}
.h9{height:57.088482pt;}
.h44{height:57.104215pt;}
.h11{height:61.681037pt;}
.he{height:61.751129pt;}
.h35{height:63.106977pt;}
.h3d{height:64.344182pt;}
.h3b{height:64.355869pt;}
.h25{height:64.364325pt;}
.h3e{height:64.366872pt;}
.h24{height:64.368141pt;}
.h18{height:64.373760pt;}
.h3c{height:64.378496pt;}
.h3f{height:64.389562pt;}
.h26{height:64.401799pt;}
.hf{height:64.425143pt;}
.h2e{height:66.232330pt;}
.h36{height:69.787992pt;}
.h41{height:70.080000pt;}
.hb{height:71.197360pt;}
.h7{height:71.201280pt;}
.h10{height:73.878605pt;}
.h12{height:74.477933pt;}
.h37{height:78.471016pt;}
.h2c{height:79.073326pt;}
.h27{height:84.026085pt;}
.h5{height:85.344000pt;}
.h28{height:97.136654pt;}
.h3{height:99.974400pt;}
.h29{height:100.335360pt;}
.h20{height:107.674896pt;}
.h30{height:114.605719pt;}
.h34{height:120.071397pt;}
.h39{height:120.075971pt;}
.h2b{height:213.603840pt;}
.h40{height:235.061760pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x70{left:37.764143pt;}
.x2{left:41.590401pt;}
.x10{left:42.879294pt;}
.x1{left:44.647201pt;}
.x16{left:45.922577pt;}
.x1c{left:54.402995pt;}
.x1b{left:62.244297pt;}
.x62{left:64.158154pt;}
.x1d{left:68.005437pt;}
.x3e{left:72.167036pt;}
.x68{left:84.002483pt;}
.x75{left:87.202579pt;}
.x42{left:88.640643pt;}
.x63{left:90.556320pt;}
.x3f{left:92.167679pt;}
.x43{left:94.406402pt;}
.x40{left:96.328321pt;}
.x41{left:97.912321pt;}
.x83{left:101.592644pt;}
.x57{left:105.114241pt;}
.x79{left:108.156798pt;}
.x38{left:112.485116pt;}
.x32{left:114.713282pt;}
.x50{left:115.674241pt;}
.x7{left:122.878894pt;}
.x7d{left:124.162563pt;}
.x4{left:128.001116pt;}
.x56{left:137.596803pt;}
.x7e{left:143.364101pt;}
.x3d{left:147.674710pt;}
.x6{left:149.279532pt;}
.x3c{left:159.998121pt;}
.xf{left:164.319053pt;}
.xe{left:167.361231pt;}
.x6e{left:169.124156pt;}
.x78{left:170.411193pt;}
.x3b{left:173.115597pt;}
.x58{left:174.725767pt;}
.x8a{left:175.830712pt;}
.xd{left:180.963395pt;}
.x8{left:182.883960pt;}
.x20{left:184.158973pt;}
.x7f{left:191.515198pt;}
.x1e{left:204.957546pt;}
.x74{left:206.399897pt;}
.x47{left:209.434563pt;}
.x11{left:211.676635pt;}
.x6b{left:212.638713pt;}
.x64{left:216.002462pt;}
.x21{left:218.560269pt;}
.x44{left:220.154876pt;}
.x1f{left:234.242886pt;}
.x46{left:235.847036pt;}
.x67{left:239.043119pt;}
.x71{left:241.924796pt;}
.x45{left:247.674233pt;}
.x72{left:253.917855pt;}
.x73{left:268.644182pt;}
.x14{left:279.198712pt;}
.x7b{left:282.072000pt;}
.x7c{left:288.162252pt;}
.x36{left:291.841371pt;}
.x65{left:294.237196pt;}
.x53{left:308.154252pt;}
.x69{left:315.516605pt;}
.x35{left:323.684689pt;}
.x82{left:329.282576pt;}
.x7a{left:333.440653pt;}
.x54{left:354.085656pt;}
.x52{left:357.913916pt;}
.x3a{left:362.398072pt;}
.x2e{left:372.799044pt;}
.x2a{left:375.681109pt;}
.x5{left:378.559208pt;}
.x17{left:381.603449pt;}
.x60{left:385.600365pt;}
.x5b{left:392.472964pt;}
.x2d{left:397.284514pt;}
.x27{left:399.045637pt;}
.x48{left:401.602563pt;}
.x51{left:405.271679pt;}
.x29{left:407.046294pt;}
.x55{left:436.483043pt;}
.x12{left:439.363198pt;}
.x3{left:451.999679pt;}
.x5a{left:456.952321pt;}
.x13{left:459.508002pt;}
.x2b{left:462.883682pt;}
.x15{left:477.288019pt;}
.x89{left:483.690249pt;}
.x4f{left:496.470077pt;}
.x86{left:504.949769pt;}
.x59{left:505.929606pt;}
.x84{left:515.508463pt;}
.x5f{left:526.882134pt;}
.x66{left:528.005579pt;}
.x8c{left:532.644534pt;}
.x85{left:538.074231pt;}
.x8b{left:542.393262pt;}
.x5c{left:548.169574pt;}
.x2c{left:565.287387pt;}
.x9{left:581.125960pt;}
.x37{left:586.239723pt;}
.x61{left:587.205752pt;}
.x28{left:592.637643pt;}
.x39{left:603.517247pt;}
.x33{left:611.366346pt;}
.xc{left:622.403114pt;}
.x5e{left:631.039321pt;}
.xa{left:642.880028pt;}
.x6c{left:662.725271pt;}
.x6f{left:666.247664pt;}
.x77{left:667.202712pt;}
.x81{left:670.081614pt;}
.x80{left:676.318694pt;}
.x4c{left:679.846406pt;}
.x4d{left:681.280000pt;}
.x25{left:722.560969pt;}
.x76{left:728.475832pt;}
.x18{left:732.639424pt;}
.x26{left:735.048471pt;}
.x1a{left:737.447068pt;}
.x30{left:742.396790pt;}
.x22{left:746.723842pt;}
.x19{left:749.118265pt;}
.x31{left:759.206420pt;}
.x4b{left:773.274252pt;}
.x4a{left:806.077462pt;}
.x6d{left:810.720829pt;}
.x49{left:837.281244pt;}
.x4e{left:843.973442pt;}
.x6a{left:847.850456pt;}
.x87{left:910.409306pt;}
.x2f{left:914.565120pt;}
.x34{left:919.211002pt;}
.x5d{left:921.761285pt;}
.xb{left:925.921875pt;}
.x88{left:929.751383pt;}
.x23{left:958.406341pt;}
.x24{left:984.484244pt;}
}




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