
    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_d92339d4583174380518c56e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_dd175a48f609ccebdc028576.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.907000;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_2ae18b4a450cea43edf9df4d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_2a1fab2527a86997a46b380d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6fee551a9411152183dce1cc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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_6e51efa4fea3e5e9ab7cd1d6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.915000;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_21e2ae61b56c21694d4d5799.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.851000;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_e1163f37faefd4d70b2a9848.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900000;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_e03cb3c80df0f3fd02646c8c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_a8a59d4ef5213d858d42e5ff.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_89c620aabc52556c9eb656f8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5200e794ef6d72974f1344ef.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.684000;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_214a279f7c716e24b0db6d0b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e03cb3c80df0f3fd02646c8c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a8a59d4ef5213d858d42e5ff.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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);}
.v1{vertical-align:-14.610000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.001620px;}
.lsa{letter-spacing:0.002338px;}
.lsb{letter-spacing:0.003269px;}
.ls1{letter-spacing:0.003810px;}
.ls9{letter-spacing:16.602538px;}
.ls8{letter-spacing:16.605269px;}
.ls4{letter-spacing:31.377810px;}
.ls6{letter-spacing:31.381620px;}
.ls2{letter-spacing:31.382190px;}
.ls0{letter-spacing:31.383810px;}
.ls5{letter-spacing:62.764380px;}
.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;}
}
.ws35{word-spacing:-59.775600px;}
.ws32{word-spacing:-29.887800px;}
.ws2c{word-spacing:-20.016000px;}
.ws33{word-spacing:-16.612303px;}
.ws0{word-spacing:-16.175590px;}
.ws4a{word-spacing:-14.585246px;}
.ws45{word-spacing:-12.971305px;}
.ws23{word-spacing:-11.895344px;}
.ws1b{word-spacing:-11.058486px;}
.ws30{word-spacing:-10.221628px;}
.ws1f{word-spacing:-10.161852px;}
.ws3{word-spacing:-9.982525px;}
.ws2f{word-spacing:-9.922750px;}
.ws37{word-spacing:-8.787013px;}
.ws4b{word-spacing:-8.547911px;}
.ws43{word-spacing:-8.488135px;}
.ws3c{word-spacing:-7.830604px;}
.ws21{word-spacing:-6.575316px;}
.ws36{word-spacing:-6.515540px;}
.ws47{word-spacing:-4.303843px;}
.ws2e{word-spacing:-3.526760px;}
.ws3b{word-spacing:-1.494390px;}
.ws20{word-spacing:-1.195512px;}
.ws2{word-spacing:-0.071731px;}
.ws7{word-spacing:-0.059776px;}
.ws31{word-spacing:-0.041843px;}
.wsd{word-spacing:0.000000px;}
.ws44{word-spacing:2.032370px;}
.ws34{word-spacing:13.210408px;}
.ws3d{word-spacing:19.546621px;}
.ws1c{word-spacing:19.877621px;}
.ws22{word-spacing:22.834279px;}
.ws1{word-spacing:23.312640px;}
.ws4c{word-spacing:25.524181px;}
.ws4{word-spacing:26.827469px;}
.ws4d{word-spacing:30.963761px;}
.ws38{word-spacing:31.318514px;}
.ws27{word-spacing:31.318994px;}
.ws1e{word-spacing:31.319084px;}
.ws3a{word-spacing:31.319564px;}
.ws11{word-spacing:31.320134px;}
.wsc{word-spacing:31.320614px;}
.ws14{word-spacing:31.320704px;}
.wsa{word-spacing:31.321094px;}
.ws46{word-spacing:31.321184px;}
.wsb{word-spacing:31.321274px;}
.ws17{word-spacing:31.321664px;}
.wsf{word-spacing:31.321754px;}
.ws1a{word-spacing:31.321844px;}
.ws10{word-spacing:31.322234px;}
.ws6{word-spacing:31.322324px;}
.ws5{word-spacing:31.322414px;}
.ws39{word-spacing:31.322714px;}
.ws25{word-spacing:31.322894px;}
.ws16{word-spacing:31.323374px;}
.ws8{word-spacing:31.323464px;}
.wse{word-spacing:31.323944px;}
.ws13{word-spacing:31.324424px;}
.ws15{word-spacing:31.324514px;}
.ws12{word-spacing:31.324994px;}
.ws19{word-spacing:31.325084px;}
.ws26{word-spacing:31.325564px;}
.ws1d{word-spacing:31.326044px;}
.ws18{word-spacing:31.326614px;}
.ws24{word-spacing:31.327274px;}
.ws48{word-spacing:36.582667px;}
.ws3e{word-spacing:41.842920px;}
.ws2b{word-spacing:60.684000px;}
.ws9{word-spacing:62.704604px;}
.ws2d{word-spacing:65.892000px;}
.ws3f{word-spacing:75.974788px;}
.ws41{word-spacing:76.034563px;}
.ws40{word-spacing:95.880062px;}
.ws42{word-spacing:95.939838px;}
.ws4e{word-spacing:101.917398px;}
.ws49{word-spacing:112.975884px;}
.ws28{word-spacing:156.851174px;}
.ws2a{word-spacing:169.464000px;}
.ws29{word-spacing:407.908694px;}
._3{margin-left:-10.845702px;}
._4{margin-left:-5.810227px;}
._c{margin-left:-4.232074px;}
._0{margin-left:-2.685602px;}
._6{margin-left:-1.673717px;}
._5{width:1.673717px;}
._1{width:2.685602px;}
._19{width:3.756158px;}
._7{width:10.102076px;}
._1a{width:14.329837px;}
._42{width:17.825123px;}
._25{width:19.905275px;}
._a{width:23.578748px;}
._8{width:26.301264px;}
._18{width:27.389219px;}
._13{width:31.382190px;}
._d{width:36.642443px;}
._43{width:38.686807px;}
._2{width:41.936714px;}
._1b{width:44.245938px;}
._b{width:52.239575px;}
._20{width:55.890186px;}
._1e{width:57.862781px;}
._1f{width:60.301586px;}
._9{width:62.769720px;}
._6f{width:65.215180px;}
._1d{width:66.231365px;}
._4d{width:70.594984px;}
._39{width:72.029598px;}
._46{width:76.452992px;}
._74{width:77.469178px;}
._45{width:79.322221px;}
._70{width:85.036691px;}
._5d{width:87.212600px;}
._11{width:94.141230px;}
._4b{width:96.059389px;}
._7f{width:101.666302px;}
._23{width:105.862588px;}
._7a{width:107.165657px;}
._81{width:108.193836px;}
._80{width:111.653126px;}
._63{width:112.736782px;}
._58{width:117.100400px;}
._48{width:122.958409px;}
._f{width:125.528760px;}
._75{width:132.116070px;}
._38{width:136.535165px;}
._8a{width:139.336924px;}
._4f{width:142.863684px;}
._67{width:146.928425px;}
._37{width:154.826498px;}
._e{width:156.910950px;}
._7c{width:161.382126px;}
._85{width:162.485470px;}
._22{width:173.349240px;}
._73{width:177.736847px;}
._83{width:178.820502px;}
._72{width:180.880966px;}
._87{width:184.132836px;}
._10{width:188.293140px;}
._4c{width:189.369101px;}
._47{width:194.748905px;}
._8b{width:207.835462px;}
._27{width:209.095049px;}
._64{width:219.256901px;}
._3d{width:223.381417px;}
._7e{width:234.260576px;}
._86{width:237.914582px;}
._24{width:238.982849px;}
._57{width:244.482204px;}
._6c{width:246.992779px;}
._36{width:248.212279px;}
._90{width:249.324028px;}
._12{width:251.057520px;}
._2f{width:252.253032px;}
._88{width:255.070180px;}
._76{width:260.382514px;}
._61{width:262.175782px;}
._35{width:272.230076px;}
._16{width:282.439710px;}
._8c{width:290.756213px;}
._94{width:293.019991px;}
._84{width:299.543226px;}
._54{width:313.044817px;}
._34{width:315.682638px;}
._3a{width:319.209398px;}
._26{width:324.461957px;}
._4a{width:332.890316px;}
._2a{width:340.601369px;}
._66{width:341.976208px;}
._7d{width:343.889027px;}
._3b{width:345.929092px;}
._30{width:349.687260px;}
._3f{width:354.895432px;}
._40{width:356.509373px;}
._33{width:363.682445px;}
._5f{width:370.668496px;}
._50{width:372.521539px;}
._41{width:374.980033px;}
._82{width:378.379548px;}
._89{width:381.069450px;}
._31{width:383.042045px;}
._68{width:394.758062px;}
._92{width:406.593631px;}
._14{width:407.968470px;}
._69{width:410.060616px;}
._53{width:418.369424px;}
._95{width:421.126796px;}
._5a{width:426.498906px;}
._6b{width:428.842148px;}
._77{width:429.965891px;}
._60{width:433.612202px;}
._6a{width:435.823900px;}
._59{width:437.617168px;}
._8e{width:439.290884px;}
._32{width:442.518767px;}
._3c{width:445.208669px;}
._52{width:448.444246px;}
._49{width:451.783985px;}
._91{width:457.522442px;}
._6d{width:461.838280px;}
._5e{width:462.842471px;}
._65{width:465.759481px;}
._93{width:473.004323px;}
._62{width:474.797591px;}
._51{width:481.432682px;}
._3e{width:482.568419px;}
._5c{width:492.909598px;}
._55{width:494.045334px;}
._29{width:495.300622px;}
._79{width:501.947707px;}
._71{width:504.147410px;}
._78{width:515.923204px;}
._5b{width:522.618071px;}
._17{width:533.497230px;}
._56{width:535.768703px;}
._8d{width:540.251873px;}
._2c{width:541.985365px;}
._2b{width:546.121876px;}
._7b{width:552.625422px;}
._8f{width:555.673978px;}
._4e{width:560.157148px;}
._21{width:568.226854px;}
._2e{width:596.799590px;}
._28{width:599.967697px;}
._2d{width:610.069774px;}
._44{width:627.225371px;}
._6e{width:700.032052px;}
._1c{width:769.670626px;}
._15{width:972.847890px;}
.fc7{color:transparent;}
.fc5{color:rgb(0,0,207);}
.fc4{color:rgb(207,92,0);}
.fc3{color:rgb(79,153,5);}
.fc2{color:rgb(33,74,135);}
.fc6{color:rgb(255,0,0);}
.fc1{color:rgb(143,89,3);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y92{bottom:5.580000px;}
.y98{bottom:15.135000px;}
.y97{bottom:36.735000px;}
.y8f{bottom:48.780000px;}
.y1e{bottom:63.168000px;}
.y9c{bottom:79.185000px;}
.y90{bottom:84.195000px;}
.y9a{bottom:104.775000px;}
.y14c{bottom:113.514000px;}
.yb1{bottom:113.728500px;}
.y125{bottom:114.819000px;}
.y6f{bottom:115.719000px;}
.yd4{bottom:118.494000px;}
.yfb{bottom:120.459000px;}
.y46{bottom:124.060500px;}
.y160{bottom:124.978500px;}
.y99{bottom:126.375000px;}
.y14b{bottom:131.446500px;}
.yb0{bottom:131.661000px;}
.y124{bottom:132.751500px;}
.y6e{bottom:133.651500px;}
.y1d{bottom:135.121500px;}
.yd3{bottom:136.426500px;}
.y9b{bottom:137.685000px;}
.yfa{bottom:138.391500px;}
.y15f{bottom:142.911000px;}
.y14a{bottom:149.380500px;}
.yaf{bottom:149.593500px;}
.y123{bottom:150.685500px;}
.y6d{bottom:151.585500px;}
.y1c{bottom:153.054000px;}
.yd2{bottom:154.359000px;}
.yf9{bottom:156.325500px;}
.y45{bottom:159.927000px;}
.y15e{bottom:160.845000px;}
.y127{bottom:163.630500px;}
.y149{bottom:167.313000px;}
.y122{bottom:168.618000px;}
.y6c{bottom:169.518000px;}
.y93{bottom:170.640000px;}
.y1b{bottom:170.986500px;}
.yd1{bottom:172.291500px;}
.yf8{bottom:174.258000px;}
.y44{bottom:177.859500px;}
.y15d{bottom:178.777500px;}
.yae{bottom:184.108500px;}
.y121{bottom:186.550500px;}
.yd0{bottom:190.225500px;}
.yf7{bottom:192.190500px;}
.y148{bottom:192.747000px;}
.y96{bottom:194.415000px;}
.y43{bottom:195.792000px;}
.y15c{bottom:196.710000px;}
.yad{bottom:202.041000px;}
.y120{bottom:204.483000px;}
.ycf{bottom:208.158000px;}
.y6b{bottom:209.356500px;}
.yf6{bottom:210.123000px;}
.y1a{bottom:212.968500px;}
.y42{bottom:213.724500px;}
.y15b{bottom:214.642500px;}
.y95{bottom:216.015000px;}
.yac{bottom:219.973500px;}
.y11f{bottom:222.415500px;}
.yce{bottom:226.090500px;}
.y6a{bottom:227.289000px;}
.yf5{bottom:228.055500px;}
.y147{bottom:228.609000px;}
.y19{bottom:230.901000px;}
.y41{bottom:231.657000px;}
.yab{bottom:237.906000px;}
.y11e{bottom:240.348000px;}
.ycd{bottom:244.023000px;}
.y69{bottom:245.223000px;}
.y146{bottom:246.541500px;}
.y40{bottom:249.589500px;}
.y15a{bottom:250.507500px;}
.y128{bottom:251.290500px;}
.yf4{bottom:253.489500px;}
.y11d{bottom:258.282000px;}
.ycc{bottom:261.955500px;}
.y68{bottom:263.155500px;}
.y145{bottom:264.474000px;}
.y18{bottom:266.766000px;}
.y3f{bottom:267.523500px;}
.y159{bottom:268.441500px;}
.yaa{bottom:272.503500px;}
.ycb{bottom:279.888000px;}
.y17{bottom:284.698500px;}
.y3e{bottom:285.456000px;}
.yf3{bottom:293.088000px;}
.y67{bottom:295.044000px;}
.yca{bottom:297.822000px;}
.y3d{bottom:303.388500px;}
.y158{bottom:304.306500px;}
.y11c{bottom:307.843500px;}
.yf2{bottom:311.020500px;}
.y66{bottom:312.976500px;}
.y144{bottom:314.719500px;}
.yc9{bottom:315.754500px;}
.ya9{bottom:317.019000px;}
.y16{bottom:320.565000px;}
.y3c{bottom:321.321000px;}
.y157{bottom:322.239000px;}
.y11b{bottom:325.776000px;}
.y143{bottom:332.652000px;}
.yc8{bottom:333.687000px;}
.ya8{bottom:334.951500px;}
.y15{bottom:338.497500px;}
.y3b{bottom:339.253500px;}
.y186{bottom:341.940000px;}
.y11a{bottom:343.710000px;}
.y65{bottom:348.589500px;}
.y142{bottom:350.584500px;}
.yc7{bottom:351.619500px;}
.y14{bottom:356.430000px;}
.y156{bottom:358.104000px;}
.yf1{bottom:359.190000px;}
.y185{bottom:359.872500px;}
.y119{bottom:361.642500px;}
.y141{bottom:368.517000px;}
.yc6{bottom:369.552000px;}
.y91{bottom:369.555000px;}
.y13{bottom:374.362500px;}
.y155{bottom:376.038000px;}
.yf0{bottom:377.122500px;}
.y3a{bottom:377.716500px;}
.ya7{bottom:379.200000px;}
.yc5{bottom:387.484500px;}
.y12{bottom:392.295000px;}
.y64{bottom:394.656000px;}
.yef{bottom:395.055000px;}
.y118{bottom:405.228000px;}
.yc4{bottom:405.418500px;}
.y11{bottom:410.229000px;}
.y184{bottom:410.634000px;}
.y154{bottom:411.903000px;}
.y63{bottom:412.590000px;}
.yee{bottom:412.987500px;}
.ya6{bottom:413.715000px;}
.y140{bottom:422.316000px;}
.yc3{bottom:423.351000px;}
.y9d{bottom:424.620000px;}
.y183{bottom:428.566500px;}
.y153{bottom:429.835500px;}
.y62{bottom:430.522500px;}
.yed{bottom:430.921500px;}
.y39{bottom:431.515500px;}
.ya5{bottom:431.647500px;}
.y13f{bottom:440.248500px;}
.y117{bottom:441.012000px;}
.yc2{bottom:441.283500px;}
.y10{bottom:446.094000px;}
.y182{bottom:446.499000px;}
.y152{bottom:447.768000px;}
.y61{bottom:448.455000px;}
.yec{bottom:448.854000px;}
.y13e{bottom:458.181000px;}
.y116{bottom:458.944500px;}
.yc1{bottom:459.216000px;}
.y181{bottom:464.433000px;}
.y151{bottom:465.700500px;}
.y38{bottom:467.380500px;}
.ya4{bottom:471.588000px;}
.y115{bottom:476.877000px;}
.yc0{bottom:477.148500px;}
.yf{bottom:478.846500px;}
.y180{bottom:482.365500px;}
.y60{bottom:484.068000px;}
.y37{bottom:485.313000px;}
.ya3{bottom:489.520500px;}
.yeb{bottom:491.014500px;}
.ybf{bottom:495.082500px;}
.y17f{bottom:500.298000px;}
.y150{bottom:501.567000px;}
.y36{bottom:503.245500px;}
.ya2{bottom:507.453000px;}
.yea{bottom:508.947000px;}
.ybe{bottom:513.015000px;}
.y114{bottom:513.427500px;}
.y17e{bottom:518.230500px;}
.y14f{bottom:519.499500px;}
.y35{bottom:521.178000px;}
.ye{bottom:523.498500px;}
.y8d{bottom:524.167500px;}
.ya1{bottom:525.387000px;}
.y13d{bottom:529.912500px;}
.ybd{bottom:530.947500px;}
.y17d{bottom:536.163000px;}
.y5f{bottom:540.928500px;}
.yd{bottom:541.431000px;}
.ye9{bottom:544.813500px;}
.ybc{bottom:548.880000px;}
.y14e{bottom:553.152000px;}
.y17c{bottom:554.095500px;}
.y34{bottom:557.044500px;}
.y5e{bottom:558.861000px;}
.yc{bottom:559.363500px;}
.ye8{bottom:562.746000px;}
.y8c{bottom:562.938000px;}
.y13c{bottom:565.777500px;}
.y113{bottom:570.385500px;}
.y14d{bottom:571.084500px;}
.y17b{bottom:572.029500px;}
.ya0{bottom:573.046500px;}
.ybb{bottom:574.314000px;}
.y33{bottom:574.977000px;}
.y5d{bottom:576.793500px;}
.y8b{bottom:580.872000px;}
.y13b{bottom:583.710000px;}
.y112{bottom:588.318000px;}
.y17a{bottom:589.962000px;}
.y9f{bottom:590.979000px;}
.yb{bottom:592.116000px;}
.y32{bottom:592.909500px;}
.y5c{bottom:594.726000px;}
.ye7{bottom:598.611000px;}
.y8a{bottom:598.804500px;}
.y13a{bottom:601.642500px;}
.y111{bottom:606.250500px;}
.y179{bottom:607.894500px;}
.y9e{bottom:608.911500px;}
.yba{bottom:610.176000px;}
.y5b{bottom:612.658500px;}
.ye6{bottom:616.543500px;}
.y89{bottom:616.737000px;}
.y139{bottom:619.576500px;}
.y110{bottom:624.183000px;}
.y178{bottom:625.827000px;}
.yb9{bottom:628.108500px;}
.y31{bottom:628.774500px;}
.y126{bottom:631.764000px;}
.y88{bottom:634.669500px;}
.ya{bottom:636.768000px;}
.y138{bottom:637.509000px;}
.y8e{bottom:642.001500px;}
.y10f{bottom:642.115500px;}
.y177{bottom:643.759500px;}
.yb8{bottom:646.041000px;}
.y5a{bottom:648.525000px;}
.ye5{bottom:652.410000px;}
.y87{bottom:652.602000px;}
.y9{bottom:654.702000px;}
.y137{bottom:655.441500px;}
.y10e{bottom:660.049500px;}
.y176{bottom:661.692000px;}
.y30{bottom:664.641000px;}
.y59{bottom:666.457500px;}
.ye4{bottom:670.342500px;}
.y86{bottom:670.536000px;}
.y10d{bottom:677.982000px;}
.y175{bottom:679.626000px;}
.y58{bottom:684.390000px;}
.ye3{bottom:688.275000px;}
.y85{bottom:688.468500px;}
.y8{bottom:688.879500px;}
.y136{bottom:691.306500px;}
.y10c{bottom:695.914500px;}
.yb7{bottom:696.286500px;}
.y174{bottom:697.558500px;}
.y2f{bottom:700.506000px;}
.y57{bottom:702.322500px;}
.ye2{bottom:706.207500px;}
.y84{bottom:706.401000px;}
.y135{bottom:709.239000px;}
.y10b{bottom:713.847000px;}
.yb6{bottom:714.219000px;}
.y173{bottom:715.491000px;}
.y83{bottom:724.333500px;}
.y7{bottom:725.028000px;}
.y134{bottom:727.173000px;}
.y94{bottom:729.661500px;}
.y10a{bottom:731.779500px;}
.yb5{bottom:732.151500px;}
.y172{bottom:733.423500px;}
.y2e{bottom:736.371000px;}
.y56{bottom:738.187500px;}
.ye1{bottom:742.072500px;}
.y82{bottom:742.266000px;}
.y133{bottom:745.105500px;}
.y109{bottom:749.712000px;}
.yb4{bottom:750.084000px;}
.y171{bottom:751.356000px;}
.y2d{bottom:754.305000px;}
.y55{bottom:756.121500px;}
.ye0{bottom:760.006500px;}
.y81{bottom:760.198500px;}
.y132{bottom:763.038000px;}
.y108{bottom:767.646000px;}
.y170{bottom:769.290000px;}
.y2c{bottom:772.237500px;}
.y54{bottom:774.054000px;}
.y6{bottom:775.080000px;}
.y80{bottom:778.132500px;}
.y131{bottom:780.970500px;}
.y107{bottom:785.578500px;}
.y16f{bottom:787.222500px;}
.y2b{bottom:790.170000px;}
.y53{bottom:791.986500px;}
.ydf{bottom:794.362500px;}
.y7f{bottom:796.065000px;}
.y106{bottom:803.511000px;}
.yb3{bottom:803.883000px;}
.y16e{bottom:805.155000px;}
.y2a{bottom:808.102500px;}
.y5{bottom:811.230000px;}
.yde{bottom:812.295000px;}
.y7e{bottom:813.997500px;}
.y130{bottom:816.753000px;}
.y105{bottom:821.443500px;}
.yb2{bottom:821.815500px;}
.y16d{bottom:823.087500px;}
.y52{bottom:827.851500px;}
.ydd{bottom:830.229000px;}
.y7d{bottom:831.930000px;}
.y12f{bottom:834.685500px;}
.y104{bottom:839.376000px;}
.y16c{bottom:841.020000px;}
.y51{bottom:845.784000px;}
.ydc{bottom:848.161500px;}
.y7c{bottom:849.862500px;}
.y103{bottom:857.308500px;}
.y16b{bottom:858.952500px;}
.y12e{bottom:861.585000px;}
.y29{bottom:861.901500px;}
.y50{bottom:863.718000px;}
.y7b{bottom:867.795000px;}
.y102{bottom:875.242500px;}
.y4{bottom:876.070500px;}
.y16a{bottom:876.886500px;}
.y12d{bottom:879.517500px;}
.y4f{bottom:881.650500px;}
.ydb{bottom:884.026500px;}
.y7a{bottom:885.729000px;}
.y101{bottom:893.175000px;}
.y169{bottom:894.819000px;}
.y28{bottom:897.766500px;}
.y4e{bottom:899.583000px;}
.y79{bottom:903.661500px;}
.y100{bottom:911.107500px;}
.y168{bottom:912.751500px;}
.y27{bottom:915.699000px;}
.y3{bottom:917.512500px;}
.y12c{bottom:921.361500px;}
.y78{bottom:921.594000px;}
.yda{bottom:928.858500px;}
.yff{bottom:929.040000px;}
.y4d{bottom:930.192000px;}
.y167{bottom:930.684000px;}
.y26{bottom:933.631500px;}
.y12b{bottom:939.294000px;}
.y77{bottom:939.526500px;}
.yd9{bottom:946.791000px;}
.yfe{bottom:946.972500px;}
.y4c{bottom:948.126000px;}
.y166{bottom:948.616500px;}
.y25{bottom:951.565500px;}
.y12a{bottom:957.226500px;}
.y76{bottom:957.459000px;}
.yfd{bottom:964.905000px;}
.y165{bottom:966.549000px;}
.y2{bottom:969.414000px;}
.y24{bottom:969.498000px;}
.y129{bottom:975.159000px;}
.y75{bottom:975.391500px;}
.yfc{bottom:982.839000px;}
.y164{bottom:984.483000px;}
.y23{bottom:987.430500px;}
.y4b{bottom:988.855500px;}
.y74{bottom:993.325500px;}
.yd8{bottom:1000.771500px;}
.y1{bottom:1002.291000px;}
.y22{bottom:1005.363000px;}
.y4a{bottom:1006.789500px;}
.y163{bottom:1009.917000px;}
.y73{bottom:1011.258000px;}
.yd7{bottom:1018.704000px;}
.y21{bottom:1023.295500px;}
.y49{bottom:1024.722000px;}
.y72{bottom:1029.190500px;}
.yd6{bottom:1036.636500px;}
.y20{bottom:1041.228000px;}
.y48{bottom:1042.654500px;}
.y71{bottom:1047.123000px;}
.y162{bottom:1049.514000px;}
.y1f{bottom:1059.162000px;}
.y47{bottom:1060.587000px;}
.yd5{bottom:1062.070500px;}
.y70{bottom:1065.055500px;}
.y161{bottom:1067.446500px;}
.h6{height:37.240199px;}
.h5{height:41.484266px;}
.h7{height:41.842920px;}
.h4{height:44.831700px;}
.h3{height:50.211840px;}
.h2{height:51.216077px;}
.h1{height:73.027727px;}
.h9{height:75.093750px;}
.hb{height:244.080000px;}
.ha{height:420.300000px;}
.h8{height:438.000000px;}
.h0{height:1188.000000px;}
.w3{width:195.480000px;}
.w2{width:324.000000px;}
.w4{width:329.400000px;}
.w1{width:654.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1a{left:10.095000px;}
.x16{left:14.040000px;}
.x1d{left:19.440000px;}
.x19{left:22.860000px;}
.x18{left:32.400000px;}
.x1c{left:39.480000px;}
.x20{left:52.770000px;}
.x13{left:57.240000px;}
.x12{left:77.895000px;}
.x14{left:105.870000px;}
.x5{left:108.000000px;}
.x9{left:123.691500px;}
.x23{left:139.381500px;}
.x15{left:143.385000px;}
.x1{left:163.158000px;}
.x17{left:191.160000px;}
.x22{left:198.763500px;}
.x24{left:209.992500px;}
.x2{left:230.871000px;}
.x7{left:241.374000px;}
.x25{left:243.034500px;}
.xf{left:249.220500px;}
.x21{left:251.985000px;}
.xd{left:264.910500px;}
.x11{left:272.757000px;}
.xe{left:288.448500px;}
.xa{left:304.138500px;}
.xc{left:311.985000px;}
.x3{left:319.149000px;}
.x29{left:338.313000px;}
.x10{left:343.366500px;}
.x26{left:359.317500px;}
.xb{left:366.903000px;}
.x1f{left:386.640000px;}
.x6{left:406.131000px;}
.x1e{left:407.295000px;}
.x27{left:413.977500px;}
.x4{left:418.029000px;}
.x1b{left:432.000000px;}
.x28{left:451.528500px;}
.x8{left:455.263500px;}
@media print{
.v1{vertical-align:-12.986667pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.001440pt;}
.lsa{letter-spacing:0.002079pt;}
.lsb{letter-spacing:0.002906pt;}
.ls1{letter-spacing:0.003387pt;}
.ls9{letter-spacing:14.757812pt;}
.ls8{letter-spacing:14.760239pt;}
.ls4{letter-spacing:27.891387pt;}
.ls6{letter-spacing:27.894773pt;}
.ls2{letter-spacing:27.895280pt;}
.ls0{letter-spacing:27.896720pt;}
.ls5{letter-spacing:55.790560pt;}
.ws35{word-spacing:-53.133867pt;}
.ws32{word-spacing:-26.566933pt;}
.ws2c{word-spacing:-17.792000pt;}
.ws33{word-spacing:-14.766491pt;}
.ws0{word-spacing:-14.378302pt;}
.ws4a{word-spacing:-12.964663pt;}
.ws45{word-spacing:-11.530049pt;}
.ws23{word-spacing:-10.573639pt;}
.ws1b{word-spacing:-9.829765pt;}
.ws30{word-spacing:-9.085891pt;}
.ws1f{word-spacing:-9.032757pt;}
.ws3{word-spacing:-8.873356pt;}
.ws2f{word-spacing:-8.820222pt;}
.ws37{word-spacing:-7.810678pt;}
.ws4b{word-spacing:-7.598143pt;}
.ws43{word-spacing:-7.545009pt;}
.ws3c{word-spacing:-6.960537pt;}
.ws21{word-spacing:-5.844725pt;}
.ws36{word-spacing:-5.791591pt;}
.ws47{word-spacing:-3.825638pt;}
.ws2e{word-spacing:-3.134898pt;}
.ws3b{word-spacing:-1.328347pt;}
.ws20{word-spacing:-1.062677pt;}
.ws2{word-spacing:-0.063761pt;}
.ws7{word-spacing:-0.053134pt;}
.ws31{word-spacing:-0.037194pt;}
.wsd{word-spacing:0.000000pt;}
.ws44{word-spacing:1.806551pt;}
.ws34{word-spacing:11.742585pt;}
.ws3d{word-spacing:17.374774pt;}
.ws1c{word-spacing:17.668996pt;}
.ws22{word-spacing:20.297137pt;}
.ws1{word-spacing:20.722347pt;}
.ws4c{word-spacing:22.688161pt;}
.ws4{word-spacing:23.846639pt;}
.ws4d{word-spacing:27.523343pt;}
.ws38{word-spacing:27.838679pt;}
.ws27{word-spacing:27.839106pt;}
.ws1e{word-spacing:27.839186pt;}
.ws3a{word-spacing:27.839613pt;}
.ws11{word-spacing:27.840119pt;}
.wsc{word-spacing:27.840546pt;}
.ws14{word-spacing:27.840626pt;}
.wsa{word-spacing:27.840973pt;}
.ws46{word-spacing:27.841053pt;}
.wsb{word-spacing:27.841133pt;}
.ws17{word-spacing:27.841479pt;}
.wsf{word-spacing:27.841559pt;}
.ws1a{word-spacing:27.841639pt;}
.ws10{word-spacing:27.841986pt;}
.ws6{word-spacing:27.842066pt;}
.ws5{word-spacing:27.842146pt;}
.ws39{word-spacing:27.842413pt;}
.ws25{word-spacing:27.842573pt;}
.ws16{word-spacing:27.842999pt;}
.ws8{word-spacing:27.843079pt;}
.wse{word-spacing:27.843506pt;}
.ws13{word-spacing:27.843933pt;}
.ws15{word-spacing:27.844013pt;}
.ws12{word-spacing:27.844439pt;}
.ws19{word-spacing:27.844519pt;}
.ws26{word-spacing:27.844946pt;}
.ws1d{word-spacing:27.845373pt;}
.ws18{word-spacing:27.845879pt;}
.ws24{word-spacing:27.846466pt;}
.ws48{word-spacing:32.517926pt;}
.ws3e{word-spacing:37.193707pt;}
.ws2b{word-spacing:53.941333pt;}
.ws9{word-spacing:55.737426pt;}
.ws2d{word-spacing:58.570667pt;}
.ws3f{word-spacing:67.533145pt;}
.ws41{word-spacing:67.586278pt;}
.ws40{word-spacing:85.226722pt;}
.ws42{word-spacing:85.279856pt;}
.ws4e{word-spacing:90.593243pt;}
.ws49{word-spacing:100.423008pt;}
.ws28{word-spacing:139.423266pt;}
.ws2a{word-spacing:150.634667pt;}
.ws29{word-spacing:362.585506pt;}
._3{margin-left:-9.640624pt;}
._4{margin-left:-5.164646pt;}
._c{margin-left:-3.761843pt;}
._0{margin-left:-2.387202pt;}
._6{margin-left:-1.487748pt;}
._5{width:1.487748pt;}
._1{width:2.387202pt;}
._19{width:3.338807pt;}
._7{width:8.979623pt;}
._1a{width:12.737633pt;}
._42{width:15.844554pt;}
._25{width:17.693578pt;}
._a{width:20.958887pt;}
._8{width:23.378901pt;}
._18{width:24.345972pt;}
._13{width:27.895280pt;}
._d{width:32.571060pt;}
._43{width:34.388273pt;}
._2{width:37.277079pt;}
._1b{width:39.329723pt;}
._b{width:46.435178pt;}
._20{width:49.680165pt;}
._1e{width:51.433583pt;}
._1f{width:53.601410pt;}
._9{width:55.795307pt;}
._6f{width:57.969049pt;}
._1d{width:58.872324pt;}
._4d{width:62.751097pt;}
._39{width:64.026309pt;}
._46{width:67.958215pt;}
._74{width:68.861491pt;}
._45{width:70.508641pt;}
._70{width:75.588170pt;}
._5d{width:77.522311pt;}
._11{width:83.681093pt;}
._4b{width:85.386124pt;}
._7f{width:90.370046pt;}
._23{width:94.100078pt;}
._7a{width:95.258362pt;}
._81{width:96.172299pt;}
._80{width:99.247223pt;}
._63{width:100.210473pt;}
._58{width:104.089245pt;}
._48{width:109.296364pt;}
._f{width:111.581120pt;}
._75{width:117.436507pt;}
._38{width:121.364591pt;}
._8a{width:123.855043pt;}
._4f{width:126.989941pt;}
._67{width:130.603044pt;}
._37{width:137.623554pt;}
._e{width:139.476400pt;}
._7c{width:143.450779pt;}
._85{width:144.431529pt;}
._22{width:154.088213pt;}
._73{width:157.988308pt;}
._83{width:158.951557pt;}
._72{width:160.783081pt;}
._87{width:163.673632pt;}
._10{width:167.371680pt;}
._4c{width:168.328090pt;}
._47{width:173.110138pt;}
._8b{width:184.742633pt;}
._27{width:185.862266pt;}
._64{width:194.895023pt;}
._3d{width:198.561260pt;}
._7e{width:208.231623pt;}
._86{width:211.479629pt;}
._24{width:212.429199pt;}
._57{width:217.317515pt;}
._6c{width:219.549137pt;}
._36{width:220.633137pt;}
._90{width:221.621358pt;}
._12{width:223.162240pt;}
._2f{width:224.224917pt;}
._88{width:226.729049pt;}
._76{width:231.451123pt;}
._61{width:233.045139pt;}
._35{width:241.982290pt;}
._16{width:251.057520pt;}
._8c{width:258.449967pt;}
._94{width:260.462214pt;}
._84{width:266.260645pt;}
._54{width:278.262060pt;}
._34{width:280.606789pt;}
._3a{width:283.741687pt;}
._26{width:288.410628pt;}
._4a{width:295.902503pt;}
._2a{width:302.756772pt;}
._66{width:303.978851pt;}
._7d{width:305.679135pt;}
._3b{width:307.492526pt;}
._30{width:310.833120pt;}
._3f{width:315.462606pt;}
._40{width:316.897220pt;}
._33{width:323.273284pt;}
._5f{width:329.483107pt;}
._50{width:331.130257pt;}
._41{width:333.315585pt;}
._82{width:336.337376pt;}
._89{width:338.728400pt;}
._31{width:340.481818pt;}
._68{width:350.896055pt;}
._92{width:361.416561pt;}
._14{width:362.638640pt;}
._69{width:364.498325pt;}
._53{width:371.883933pt;}
._95{width:374.334930pt;}
._5a{width:379.110139pt;}
._6b{width:381.193021pt;}
._77{width:382.191903pt;}
._60{width:385.433069pt;}
._6a{width:387.399022pt;}
._59{width:388.993038pt;}
._8e{width:390.480786pt;}
._32{width:393.350015pt;}
._3c{width:395.741039pt;}
._52{width:398.617107pt;}
._49{width:401.585764pt;}
._91{width:406.686615pt;}
._6d{width:410.522915pt;}
._5e{width:411.415530pt;}
._65{width:414.008428pt;}
._93{width:420.448287pt;}
._62{width:422.042303pt;}
._51{width:427.940162pt;}
._3e{width:428.949706pt;}
._5c{width:438.141865pt;}
._55{width:439.151408pt;}
._29{width:440.267219pt;}
._79{width:446.175740pt;}
._71{width:448.131031pt;}
._78{width:458.598403pt;}
._5b{width:464.549396pt;}
._17{width:474.219760pt;}
._56{width:476.238847pt;}
._8d{width:480.223887pt;}
._2c{width:481.764769pt;}
._2b{width:485.441667pt;}
._7b{width:491.222597pt;}
._8f{width:493.932425pt;}
._4e{width:497.917465pt;}
._21{width:505.090537pt;}
._2e{width:530.488525pt;}
._28{width:533.304620pt;}
._2d{width:542.284243pt;}
._44{width:557.533663pt;}
._6e{width:622.250713pt;}
._1c{width:684.151667pt;}
._15{width:864.753680pt;}
.fs4{font-size:37.193600pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:4.960000pt;}
.y98{bottom:13.453333pt;}
.y97{bottom:32.653333pt;}
.y8f{bottom:43.360000pt;}
.y1e{bottom:56.149333pt;}
.y9c{bottom:70.386667pt;}
.y90{bottom:74.840000pt;}
.y9a{bottom:93.133333pt;}
.y14c{bottom:100.901333pt;}
.yb1{bottom:101.092000pt;}
.y125{bottom:102.061333pt;}
.y6f{bottom:102.861333pt;}
.yd4{bottom:105.328000pt;}
.yfb{bottom:107.074667pt;}
.y46{bottom:110.276000pt;}
.y160{bottom:111.092000pt;}
.y99{bottom:112.333333pt;}
.y14b{bottom:116.841333pt;}
.yb0{bottom:117.032000pt;}
.y124{bottom:118.001333pt;}
.y6e{bottom:118.801333pt;}
.y1d{bottom:120.108000pt;}
.yd3{bottom:121.268000pt;}
.y9b{bottom:122.386667pt;}
.yfa{bottom:123.014667pt;}
.y15f{bottom:127.032000pt;}
.y14a{bottom:132.782667pt;}
.yaf{bottom:132.972000pt;}
.y123{bottom:133.942667pt;}
.y6d{bottom:134.742667pt;}
.y1c{bottom:136.048000pt;}
.yd2{bottom:137.208000pt;}
.yf9{bottom:138.956000pt;}
.y45{bottom:142.157333pt;}
.y15e{bottom:142.973333pt;}
.y127{bottom:145.449333pt;}
.y149{bottom:148.722667pt;}
.y122{bottom:149.882667pt;}
.y6c{bottom:150.682667pt;}
.y93{bottom:151.680000pt;}
.y1b{bottom:151.988000pt;}
.yd1{bottom:153.148000pt;}
.yf8{bottom:154.896000pt;}
.y44{bottom:158.097333pt;}
.y15d{bottom:158.913333pt;}
.yae{bottom:163.652000pt;}
.y121{bottom:165.822667pt;}
.yd0{bottom:169.089333pt;}
.yf7{bottom:170.836000pt;}
.y148{bottom:171.330667pt;}
.y96{bottom:172.813333pt;}
.y43{bottom:174.037333pt;}
.y15c{bottom:174.853333pt;}
.yad{bottom:179.592000pt;}
.y120{bottom:181.762667pt;}
.ycf{bottom:185.029333pt;}
.y6b{bottom:186.094667pt;}
.yf6{bottom:186.776000pt;}
.y1a{bottom:189.305333pt;}
.y42{bottom:189.977333pt;}
.y15b{bottom:190.793333pt;}
.y95{bottom:192.013333pt;}
.yac{bottom:195.532000pt;}
.y11f{bottom:197.702667pt;}
.yce{bottom:200.969333pt;}
.y6a{bottom:202.034667pt;}
.yf5{bottom:202.716000pt;}
.y147{bottom:203.208000pt;}
.y19{bottom:205.245333pt;}
.y41{bottom:205.917333pt;}
.yab{bottom:211.472000pt;}
.y11e{bottom:213.642667pt;}
.ycd{bottom:216.909333pt;}
.y69{bottom:217.976000pt;}
.y146{bottom:219.148000pt;}
.y40{bottom:221.857333pt;}
.y15a{bottom:222.673333pt;}
.y128{bottom:223.369333pt;}
.yf4{bottom:225.324000pt;}
.y11d{bottom:229.584000pt;}
.ycc{bottom:232.849333pt;}
.y68{bottom:233.916000pt;}
.y145{bottom:235.088000pt;}
.y18{bottom:237.125333pt;}
.y3f{bottom:237.798667pt;}
.y159{bottom:238.614667pt;}
.yaa{bottom:242.225333pt;}
.ycb{bottom:248.789333pt;}
.y17{bottom:253.065333pt;}
.y3e{bottom:253.738667pt;}
.yf3{bottom:260.522667pt;}
.y67{bottom:262.261333pt;}
.yca{bottom:264.730667pt;}
.y3d{bottom:269.678667pt;}
.y158{bottom:270.494667pt;}
.y11c{bottom:273.638667pt;}
.yf2{bottom:276.462667pt;}
.y66{bottom:278.201333pt;}
.y144{bottom:279.750667pt;}
.yc9{bottom:280.670667pt;}
.ya9{bottom:281.794667pt;}
.y16{bottom:284.946667pt;}
.y3c{bottom:285.618667pt;}
.y157{bottom:286.434667pt;}
.y11b{bottom:289.578667pt;}
.y143{bottom:295.690667pt;}
.yc8{bottom:296.610667pt;}
.ya8{bottom:297.734667pt;}
.y15{bottom:300.886667pt;}
.y3b{bottom:301.558667pt;}
.y186{bottom:303.946667pt;}
.y11a{bottom:305.520000pt;}
.y65{bottom:309.857333pt;}
.y142{bottom:311.630667pt;}
.yc7{bottom:312.550667pt;}
.y14{bottom:316.826667pt;}
.y156{bottom:318.314667pt;}
.yf1{bottom:319.280000pt;}
.y185{bottom:319.886667pt;}
.y119{bottom:321.460000pt;}
.y141{bottom:327.570667pt;}
.yc6{bottom:328.490667pt;}
.y91{bottom:328.493333pt;}
.y13{bottom:332.766667pt;}
.y155{bottom:334.256000pt;}
.yf0{bottom:335.220000pt;}
.y3a{bottom:335.748000pt;}
.ya7{bottom:337.066667pt;}
.yc5{bottom:344.430667pt;}
.y12{bottom:348.706667pt;}
.y64{bottom:350.805333pt;}
.yef{bottom:351.160000pt;}
.y118{bottom:360.202667pt;}
.yc4{bottom:360.372000pt;}
.y11{bottom:364.648000pt;}
.y184{bottom:365.008000pt;}
.y154{bottom:366.136000pt;}
.y63{bottom:366.746667pt;}
.yee{bottom:367.100000pt;}
.ya6{bottom:367.746667pt;}
.y140{bottom:375.392000pt;}
.yc3{bottom:376.312000pt;}
.y9d{bottom:377.440000pt;}
.y183{bottom:380.948000pt;}
.y153{bottom:382.076000pt;}
.y62{bottom:382.686667pt;}
.yed{bottom:383.041333pt;}
.y39{bottom:383.569333pt;}
.ya5{bottom:383.686667pt;}
.y13f{bottom:391.332000pt;}
.y117{bottom:392.010667pt;}
.yc2{bottom:392.252000pt;}
.y10{bottom:396.528000pt;}
.y182{bottom:396.888000pt;}
.y152{bottom:398.016000pt;}
.y61{bottom:398.626667pt;}
.yec{bottom:398.981333pt;}
.y13e{bottom:407.272000pt;}
.y116{bottom:407.950667pt;}
.yc1{bottom:408.192000pt;}
.y181{bottom:412.829333pt;}
.y151{bottom:413.956000pt;}
.y38{bottom:415.449333pt;}
.ya4{bottom:419.189333pt;}
.y115{bottom:423.890667pt;}
.yc0{bottom:424.132000pt;}
.yf{bottom:425.641333pt;}
.y180{bottom:428.769333pt;}
.y60{bottom:430.282667pt;}
.y37{bottom:431.389333pt;}
.ya3{bottom:435.129333pt;}
.yeb{bottom:436.457333pt;}
.ybf{bottom:440.073333pt;}
.y17f{bottom:444.709333pt;}
.y150{bottom:445.837333pt;}
.y36{bottom:447.329333pt;}
.ya2{bottom:451.069333pt;}
.yea{bottom:452.397333pt;}
.ybe{bottom:456.013333pt;}
.y114{bottom:456.380000pt;}
.y17e{bottom:460.649333pt;}
.y14f{bottom:461.777333pt;}
.y35{bottom:463.269333pt;}
.ye{bottom:465.332000pt;}
.y8d{bottom:465.926667pt;}
.ya1{bottom:467.010667pt;}
.y13d{bottom:471.033333pt;}
.ybd{bottom:471.953333pt;}
.y17d{bottom:476.589333pt;}
.y5f{bottom:480.825333pt;}
.yd{bottom:481.272000pt;}
.ye9{bottom:484.278667pt;}
.ybc{bottom:487.893333pt;}
.y14e{bottom:491.690667pt;}
.y17c{bottom:492.529333pt;}
.y34{bottom:495.150667pt;}
.y5e{bottom:496.765333pt;}
.yc{bottom:497.212000pt;}
.ye8{bottom:500.218667pt;}
.y8c{bottom:500.389333pt;}
.y13c{bottom:502.913333pt;}
.y113{bottom:507.009333pt;}
.y14d{bottom:507.630667pt;}
.y17b{bottom:508.470667pt;}
.ya0{bottom:509.374667pt;}
.ybb{bottom:510.501333pt;}
.y33{bottom:511.090667pt;}
.y5d{bottom:512.705333pt;}
.y8b{bottom:516.330667pt;}
.y13b{bottom:518.853333pt;}
.y112{bottom:522.949333pt;}
.y17a{bottom:524.410667pt;}
.y9f{bottom:525.314667pt;}
.yb{bottom:526.325333pt;}
.y32{bottom:527.030667pt;}
.y5c{bottom:528.645333pt;}
.ye7{bottom:532.098667pt;}
.y8a{bottom:532.270667pt;}
.y13a{bottom:534.793333pt;}
.y111{bottom:538.889333pt;}
.y179{bottom:540.350667pt;}
.y9e{bottom:541.254667pt;}
.yba{bottom:542.378667pt;}
.y5b{bottom:544.585333pt;}
.ye6{bottom:548.038667pt;}
.y89{bottom:548.210667pt;}
.y139{bottom:550.734667pt;}
.y110{bottom:554.829333pt;}
.y178{bottom:556.290667pt;}
.yb9{bottom:558.318667pt;}
.y31{bottom:558.910667pt;}
.y126{bottom:561.568000pt;}
.y88{bottom:564.150667pt;}
.ya{bottom:566.016000pt;}
.y138{bottom:566.674667pt;}
.y8e{bottom:570.668000pt;}
.y10f{bottom:570.769333pt;}
.y177{bottom:572.230667pt;}
.yb8{bottom:574.258667pt;}
.y5a{bottom:576.466667pt;}
.ye5{bottom:579.920000pt;}
.y87{bottom:580.090667pt;}
.y9{bottom:581.957333pt;}
.y137{bottom:582.614667pt;}
.y10e{bottom:586.710667pt;}
.y176{bottom:588.170667pt;}
.y30{bottom:590.792000pt;}
.y59{bottom:592.406667pt;}
.ye4{bottom:595.860000pt;}
.y86{bottom:596.032000pt;}
.y10d{bottom:602.650667pt;}
.y175{bottom:604.112000pt;}
.y58{bottom:608.346667pt;}
.ye3{bottom:611.800000pt;}
.y85{bottom:611.972000pt;}
.y8{bottom:612.337333pt;}
.y136{bottom:614.494667pt;}
.y10c{bottom:618.590667pt;}
.yb7{bottom:618.921333pt;}
.y174{bottom:620.052000pt;}
.y2f{bottom:622.672000pt;}
.y57{bottom:624.286667pt;}
.ye2{bottom:627.740000pt;}
.y84{bottom:627.912000pt;}
.y135{bottom:630.434667pt;}
.y10b{bottom:634.530667pt;}
.yb6{bottom:634.861333pt;}
.y173{bottom:635.992000pt;}
.y83{bottom:643.852000pt;}
.y7{bottom:644.469333pt;}
.y134{bottom:646.376000pt;}
.y94{bottom:648.588000pt;}
.y10a{bottom:650.470667pt;}
.yb5{bottom:650.801333pt;}
.y172{bottom:651.932000pt;}
.y2e{bottom:654.552000pt;}
.y56{bottom:656.166667pt;}
.ye1{bottom:659.620000pt;}
.y82{bottom:659.792000pt;}
.y133{bottom:662.316000pt;}
.y109{bottom:666.410667pt;}
.yb4{bottom:666.741333pt;}
.y171{bottom:667.872000pt;}
.y2d{bottom:670.493333pt;}
.y55{bottom:672.108000pt;}
.ye0{bottom:675.561333pt;}
.y81{bottom:675.732000pt;}
.y132{bottom:678.256000pt;}
.y108{bottom:682.352000pt;}
.y170{bottom:683.813333pt;}
.y2c{bottom:686.433333pt;}
.y54{bottom:688.048000pt;}
.y6{bottom:688.960000pt;}
.y80{bottom:691.673333pt;}
.y131{bottom:694.196000pt;}
.y107{bottom:698.292000pt;}
.y16f{bottom:699.753333pt;}
.y2b{bottom:702.373333pt;}
.y53{bottom:703.988000pt;}
.ydf{bottom:706.100000pt;}
.y7f{bottom:707.613333pt;}
.y106{bottom:714.232000pt;}
.yb3{bottom:714.562667pt;}
.y16e{bottom:715.693333pt;}
.y2a{bottom:718.313333pt;}
.y5{bottom:721.093333pt;}
.yde{bottom:722.040000pt;}
.y7e{bottom:723.553333pt;}
.y130{bottom:726.002667pt;}
.y105{bottom:730.172000pt;}
.yb2{bottom:730.502667pt;}
.y16d{bottom:731.633333pt;}
.y52{bottom:735.868000pt;}
.ydd{bottom:737.981333pt;}
.y7d{bottom:739.493333pt;}
.y12f{bottom:741.942667pt;}
.y104{bottom:746.112000pt;}
.y16c{bottom:747.573333pt;}
.y51{bottom:751.808000pt;}
.ydc{bottom:753.921333pt;}
.y7c{bottom:755.433333pt;}
.y103{bottom:762.052000pt;}
.y16b{bottom:763.513333pt;}
.y12e{bottom:765.853333pt;}
.y29{bottom:766.134667pt;}
.y50{bottom:767.749333pt;}
.y7b{bottom:771.373333pt;}
.y102{bottom:777.993333pt;}
.y4{bottom:778.729333pt;}
.y16a{bottom:779.454667pt;}
.y12d{bottom:781.793333pt;}
.y4f{bottom:783.689333pt;}
.ydb{bottom:785.801333pt;}
.y7a{bottom:787.314667pt;}
.y101{bottom:793.933333pt;}
.y169{bottom:795.394667pt;}
.y28{bottom:798.014667pt;}
.y4e{bottom:799.629333pt;}
.y79{bottom:803.254667pt;}
.y100{bottom:809.873333pt;}
.y168{bottom:811.334667pt;}
.y27{bottom:813.954667pt;}
.y3{bottom:815.566667pt;}
.y12c{bottom:818.988000pt;}
.y78{bottom:819.194667pt;}
.yda{bottom:825.652000pt;}
.yff{bottom:825.813333pt;}
.y4d{bottom:826.837333pt;}
.y167{bottom:827.274667pt;}
.y26{bottom:829.894667pt;}
.y12b{bottom:834.928000pt;}
.y77{bottom:835.134667pt;}
.yd9{bottom:841.592000pt;}
.yfe{bottom:841.753333pt;}
.y4c{bottom:842.778667pt;}
.y166{bottom:843.214667pt;}
.y25{bottom:845.836000pt;}
.y12a{bottom:850.868000pt;}
.y76{bottom:851.074667pt;}
.yfd{bottom:857.693333pt;}
.y165{bottom:859.154667pt;}
.y2{bottom:861.701333pt;}
.y24{bottom:861.776000pt;}
.y129{bottom:866.808000pt;}
.y75{bottom:867.014667pt;}
.yfc{bottom:873.634667pt;}
.y164{bottom:875.096000pt;}
.y23{bottom:877.716000pt;}
.y4b{bottom:878.982667pt;}
.y74{bottom:882.956000pt;}
.yd8{bottom:889.574667pt;}
.y1{bottom:890.925333pt;}
.y22{bottom:893.656000pt;}
.y4a{bottom:894.924000pt;}
.y163{bottom:897.704000pt;}
.y73{bottom:898.896000pt;}
.yd7{bottom:905.514667pt;}
.y21{bottom:909.596000pt;}
.y49{bottom:910.864000pt;}
.y72{bottom:914.836000pt;}
.yd6{bottom:921.454667pt;}
.y20{bottom:925.536000pt;}
.y48{bottom:926.804000pt;}
.y71{bottom:930.776000pt;}
.y162{bottom:932.901333pt;}
.y1f{bottom:941.477333pt;}
.y47{bottom:942.744000pt;}
.yd5{bottom:944.062667pt;}
.y70{bottom:946.716000pt;}
.y161{bottom:948.841333pt;}
.h6{height:33.102399pt;}
.h5{height:36.874903pt;}
.h7{height:37.193707pt;}
.h4{height:39.850400pt;}
.h3{height:44.632747pt;}
.h2{height:45.525402pt;}
.h1{height:64.913535pt;}
.h9{height:66.750000pt;}
.hb{height:216.960000pt;}
.ha{height:373.600000pt;}
.h8{height:389.333333pt;}
.h0{height:1056.000000pt;}
.w3{width:173.760000pt;}
.w2{width:288.000000pt;}
.w4{width:292.800000pt;}
.w1{width:581.333333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:8.973333pt;}
.x16{left:12.480000pt;}
.x1d{left:17.280000pt;}
.x19{left:20.320000pt;}
.x18{left:28.800000pt;}
.x1c{left:35.093333pt;}
.x20{left:46.906667pt;}
.x13{left:50.880000pt;}
.x12{left:69.240000pt;}
.x14{left:94.106667pt;}
.x5{left:96.000000pt;}
.x9{left:109.948000pt;}
.x23{left:123.894667pt;}
.x15{left:127.453333pt;}
.x1{left:145.029333pt;}
.x17{left:169.920000pt;}
.x22{left:176.678667pt;}
.x24{left:186.660000pt;}
.x2{left:205.218667pt;}
.x7{left:214.554667pt;}
.x25{left:216.030667pt;}
.xf{left:221.529333pt;}
.x21{left:223.986667pt;}
.xd{left:235.476000pt;}
.x11{left:242.450667pt;}
.xe{left:256.398667pt;}
.xa{left:270.345333pt;}
.xc{left:277.320000pt;}
.x3{left:283.688000pt;}
.x29{left:300.722667pt;}
.x10{left:305.214667pt;}
.x26{left:319.393333pt;}
.xb{left:326.136000pt;}
.x1f{left:343.680000pt;}
.x6{left:361.005333pt;}
.x1e{left:362.040000pt;}
.x27{left:367.980000pt;}
.x4{left:371.581333pt;}
.x1b{left:384.000000pt;}
.x28{left:401.358667pt;}
.x8{left:404.678667pt;}
}




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