
    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_1e1fa6c62e78b8b24a17dacb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.024902;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_d2ebdfb07e7d311e2d6977e3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e9c28a1f9f8939d0221ff910.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966309;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_5056843e14e3f4f3490282a3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_a801a48209d898a4d7bea29e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_9dda41d7e181121fa0bd4f26.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_c7e9923afb9434bd9c24575b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.783691;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_b60484554f9fe4550085911b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a90e044995eaec90164eeec9.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_38434a54ee15bf1c5757250f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_39c227c10eae374963b6b000.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.715820;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_40c57f8be5f133d838059a4f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.715820;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_2b09496830e34a07cb1c40a5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.960938;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_2d3cabfbb692c55795d48f6a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.971191;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_a358d4da99e73649cd212d92.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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_eed7145514c986959a6fca37.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_4c4050cc40b72f6c46ac9e39.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_e365a0944745ed7ef1d89342.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.937500;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;}
.m2{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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-36.000000px;}
.v2{vertical-align:-30.240000px;}
.v7{vertical-align:-23.040000px;}
.v4{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:32.400000px;}
.v6{vertical-align:43.200000px;}
.v5{vertical-align:129.600000px;}
.v8{vertical-align:132.780000px;}
.lsd{letter-spacing:-0.367800px;}
.ls1f{letter-spacing:-0.223800px;}
.ls7{letter-spacing:-0.216000px;}
.ls1e{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.109200px;}
.ls19{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.072000px;}
.ls11{letter-spacing:-0.042600px;}
.ls6{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.037440px;}
.ls8{letter-spacing:0.163800px;}
.lsf{letter-spacing:0.204000px;}
.ls21{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.246816px;}
.ls5{letter-spacing:0.252000px;}
.ls18{letter-spacing:0.252720px;}
.ls14{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.339600px;}
.lse{letter-spacing:0.360000px;}
.ls3{letter-spacing:28.440000px;}
.ls1d{letter-spacing:29.109600px;}
.ls1b{letter-spacing:29.160000px;}
.ls1c{letter-spacing:29.340000px;}
.lsc{letter-spacing:30.072000px;}
.ls17{letter-spacing:32.760000px;}
.ls12{letter-spacing:35.928000px;}
.ls2{letter-spacing:41.335920px;}
.ls16{letter-spacing:64.929600px;}
.ls15{letter-spacing:64.980000px;}
.lsa{letter-spacing:178.149600px;}
.lsb{letter-spacing:178.200000px;}
.ls9{letter-spacing:205.560000px;}
.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;}
}
.ws32{word-spacing:-46.637280px;}
.ws35{word-spacing:-45.072000px;}
.ws33{word-spacing:-40.072032px;}
.ws34{word-spacing:-40.032000px;}
.ws38{word-spacing:-39.888000px;}
.ws39{word-spacing:-39.848232px;}
.ws2b{word-spacing:-36.036000px;}
.ws28{word-spacing:-36.000000px;}
.ws22{word-spacing:-33.707520px;}
.wsc{word-spacing:-30.060000px;}
.ws2f{word-spacing:-30.024000px;}
.ws1d{word-spacing:-29.696232px;}
.ws12{word-spacing:-27.036000px;}
.wse{word-spacing:-27.000000px;}
.ws36{word-spacing:-26.621280px;}
.ws2c{word-spacing:-23.976000px;}
.ws29{word-spacing:-21.641760px;}
.ws31{word-spacing:-21.312720px;}
.ws3b{word-spacing:-20.232000px;}
.ws1e{word-spacing:-20.056032px;}
.ws3a{word-spacing:-20.016000px;}
.ws2e{word-spacing:-18.000000px;}
.ws1a{word-spacing:-13.500000px;}
.ws18{word-spacing:-12.096000px;}
.ws17{word-spacing:-12.060000px;}
.ws16{word-spacing:-10.440000px;}
.ws1b{word-spacing:-6.312480px;}
.ws1{word-spacing:-5.133120px;}
.ws0{word-spacing:0.000000px;}
.ws1c{word-spacing:9.671904px;}
.ws2d{word-spacing:10.080000px;}
.ws2a{word-spacing:12.312000px;}
.ws15{word-spacing:84.672000px;}
.ws10{word-spacing:84.852000px;}
.ws14{word-spacing:90.072000px;}
.wsf{word-spacing:90.252000px;}
.ws13{word-spacing:95.256000px;}
.wsd{word-spacing:95.436000px;}
.ws11{word-spacing:95.540616px;}
.ws27{word-spacing:156.780000px;}
.ws20{word-spacing:209.232000px;}
.ws25{word-spacing:213.063840px;}
.ws24{word-spacing:213.183696px;}
.ws23{word-spacing:300.484080px;}
.ws1f{word-spacing:335.640000px;}
.ws26{word-spacing:335.700000px;}
.ws21{word-spacing:357.480000px;}
.ws30{word-spacing:472.440000px;}
.ws37{word-spacing:478.469760px;}
.wsa{word-spacing:805.480560px;}
.ws5{word-spacing:929.924880px;}
.ws4{word-spacing:989.443680px;}
.wsb{word-spacing:1054.426080px;}
.ws2{word-spacing:1084.368000px;}
.ws3{word-spacing:1130.017920px;}
.ws8{word-spacing:1154.298480px;}
.ws6{word-spacing:1283.470800px;}
.ws9{word-spacing:1303.777680px;}
.ws7{word-spacing:1317.378480px;}
.ws19{word-spacing:1359.336480px;}
._f{margin-left:-19.171152px;}
._e{margin-left:-13.982005px;}
._10{margin-left:-12.414240px;}
._d{margin-left:-10.852682px;}
._12{margin-left:-9.562320px;}
._7{margin-left:-8.537040px;}
._4{margin-left:-7.109184px;}
._9{margin-left:-5.871131px;}
._2{margin-left:-3.611520px;}
._3{margin-left:-2.510016px;}
._0{margin-left:-1.394171px;}
._1{width:1.058651px;}
._a{width:2.122560px;}
._b{width:3.483456px;}
._c{width:168.347627px;}
._6{width:685.299622px;}
._5{width:838.567776px;}
._11{width:1197.711131px;}
._8{width:1219.835136px;}
.fc1b{color:rgb(16,37,63);}
.fc17{color:rgb(23,55,94);}
.fc15{color:transparent;}
.fc16{color:rgb(38,38,38);}
.fc14{color:rgb(33,93,119);}
.fc13{color:rgb(142,180,227);}
.fc19{color:rgb(7,25,44);}
.fc12{color:rgb(255,0,128);}
.fc18{color:rgb(99,37,35);}
.fc11{color:rgb(213,237,244);}
.fc10{color:rgb(153,102,51);}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(0,0,0);}
.fc4{color:rgb(89,89,89);}
.fc5{color:rgb(255,255,255);}
.fc8{color:rgb(127,127,127);}
.fcf{color:rgb(128,0,128);}
.fcd{color:rgb(255,128,0);}
.fc9{color:rgb(234,253,193);}
.fc3{color:rgb(47,151,181);}
.fc6{color:rgb(24,75,91);}
.fce{color:rgb(0,255,255);}
.fc7{color:rgb(200,224,233);}
.fca{color:rgb(255,0,0);}
.fcb{color:rgb(255,255,0);}
.fc1a{color:rgb(22,62,80);}
.fc1{color:rgb(44,124,159);}
.fcc{color:rgb(0,255,0);}
.fsf{font-size:41.760000px;}
.fs10{font-size:48.240000px;}
.fs11{font-size:48.384000px;}
.fs12{font-size:54.000000px;}
.fs19{font-size:59.760000px;}
.fs13{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs14{font-size:72.144000px;}
.fsa{font-size:84.240000px;}
.fs1a{font-size:84.384000px;}
.fsc{font-size:95.760000px;}
.fsd{font-size:95.904000px;}
.fs9{font-size:108.000000px;}
.fsb{font-size:108.144000px;}
.fs17{font-size:118.800000px;}
.fs18{font-size:118.944000px;}
.fs7{font-size:120.240000px;}
.fs8{font-size:120.384000px;}
.fs0{font-size:126.742821px;}
.fs5{font-size:144.000000px;}
.fs16{font-size:144.144000px;}
.fs4{font-size:167.760000px;}
.fs15{font-size:167.904000px;}
.fs6{font-size:180.000000px;}
.fs1b{font-size:180.144000px;}
.fs1{font-size:192.240000px;}
.fs2{font-size:192.384000px;}
.fse{font-size:216.144000px;}
.fs1c{font-size:275.904000px;}
.y0{bottom:0.000000px;}
.y69{bottom:9.324000px;}
.y92{bottom:9.900000px;}
.y82{bottom:10.080000px;}
.y9a{bottom:10.440000px;}
.y3b{bottom:15.336000px;}
.y10b{bottom:16.410000px;}
.yc9{bottom:18.936000px;}
.y106{bottom:20.340000px;}
.y10e{bottom:20.445000px;}
.yc3{bottom:21.600000px;}
.y3d{bottom:26.892000px;}
.y107{bottom:27.360000px;}
.yb4{bottom:28.044000px;}
.y21{bottom:28.440000px;}
.y95{bottom:28.800000px;}
.yd5{bottom:29.772000px;}
.y10a{bottom:31.500000px;}
.ybd{bottom:31.536000px;}
.y108{bottom:32.940000px;}
.y10f{bottom:33.405000px;}
.y6{bottom:36.648000px;}
.y9f{bottom:37.080000px;}
.y66{bottom:38.268000px;}
.yc8{bottom:38.736000px;}
.y3c{bottom:40.680000px;}
.yc2{bottom:41.400000px;}
.ya3{bottom:47.340000px;}
.y10c{bottom:50.610000px;}
.y34{bottom:56.520000px;}
.ya4{bottom:58.320000px;}
.yc7{bottom:58.536000px;}
.y5{bottom:62.568000px;}
.y111{bottom:67.320000px;}
.yc6{bottom:78.336000px;}
.ya2{bottom:83.340000px;}
.yce{bottom:85.680000px;}
.y33{bottom:88.920000px;}
.yb3{bottom:89.028000px;}
.y99{bottom:103.680000px;}
.y32{bottom:121.356000px;}
.y54{bottom:123.228000px;}
.ycb{bottom:125.100000px;}
.y93{bottom:136.476000px;}
.y53{bottom:137.664000px;}
.yfc{bottom:144.900000px;}
.ye7{bottom:146.016000px;}
.y31{bottom:153.750000px;}
.yfd{bottom:155.625000px;}
.y52{bottom:159.630000px;}
.y51{bottom:174.030000px;}
.yf4{bottom:175.680000px;}
.y77{bottom:178.920000px;}
.ye6{bottom:182.010000px;}
.y10d{bottom:183.420000px;}
.y30{bottom:186.150000px;}
.y50{bottom:188.430000px;}
.yf1{bottom:189.000000px;}
.y20{bottom:190.110000px;}
.y105{bottom:195.480000px;}
.yfe{bottom:204.300000px;}
.yf6{bottom:204.840000px;}
.y109{bottom:209.520000px;}
.y8e{bottom:211.170000px;}
.y76{bottom:212.220000px;}
.y4f{bottom:214.560000px;}
.y68{bottom:216.930000px;}
.ye5{bottom:218.055000px;}
.y2f{bottom:218.550000px;}
.yfa{bottom:222.300000px;}
.y4e{bottom:228.990000px;}
.yf0{bottom:232.200000px;}
.y1e{bottom:239.010000px;}
.ye8{bottom:239.790000px;}
.yf5{bottom:240.690000px;}
.yf7{bottom:240.735000px;}
.yfb{bottom:240.765000px;}
.yf9{bottom:240.810000px;}
.y4d{bottom:243.390000px;}
.y8d{bottom:243.570000px;}
.y13{bottom:244.470000px;}
.y75{bottom:245.520000px;}
.y2e{bottom:250.950000px;}
.yff{bottom:252.930000px;}
.yf8{bottom:261.180000px;}
.y65{bottom:262.080000px;}
.y64{bottom:276.480000px;}
.y1d{bottom:282.885000px;}
.y2d{bottom:283.395000px;}
.y74{bottom:284.790000px;}
.y8b{bottom:285.735000px;}
.y63{bottom:290.880000px;}
.y100{bottom:301.575000px;}
.y62{bottom:305.280000px;}
.y12{bottom:316.515000px;}
.yef{bottom:318.630000px;}
.y35{bottom:319.395000px;}
.y61{bottom:319.680000px;}
.y1c{bottom:326.775000px;}
.y80{bottom:326.880000px;}
.y94{bottom:329.835000px;}
.y60{bottom:334.080000px;}
.yca{bottom:340.560000px;}
.y8a{bottom:343.335000px;}
.y8c{bottom:343.695000px;}
.y73{bottom:345.450000px;}
.ya1{bottom:346.215000px;}
.y5f{bottom:348.480000px;}
.y101{bottom:350.250000px;}
.y11{bottom:352.515000px;}
.yb2{bottom:358.815000px;}
.y7f{bottom:360.030000px;}
.yee{bottom:361.830000px;}
.y5e{bottom:362.880000px;}
.y22{bottom:364.755000px;}
.y1b{bottom:370.650000px;}
.y5d{bottom:377.280000px;}
.yab{bottom:378.615000px;}
.y72{bottom:378.750000px;}
.y88{bottom:382.935000px;}
.y2c{bottom:385.995000px;}
.y9c{bottom:387.435000px;}
.y10{bottom:388.515000px;}
.y4c{bottom:389.850000px;}
.yc5{bottom:390.675000px;}
.yb1{bottom:391.215000px;}
.y5c{bottom:391.680000px;}
.y7e{bottom:396.030000px;}
.y102{bottom:398.880000px;}
.y58{bottom:400.710000px;}
.y3a{bottom:403.275000px;}
.y4b{bottom:404.250000px;}
.y5b{bottom:406.080000px;}
.y9b{bottom:409.035000px;}
.yc4{bottom:410.475000px;}
.yaa{bottom:411.015000px;}
.y87{bottom:411.735000px;}
.yc1{bottom:411.915000px;}
.y89{bottom:412.095000px;}
.y1a{bottom:414.540000px;}
.y71{bottom:418.035000px;}
.y2b{bottom:418.395000px;}
.y4a{bottom:418.680000px;}
.y5a{bottom:420.510000px;}
.yc0{bottom:429.945000px;}
.y49{bottom:433.080000px;}
.y40{bottom:434.910000px;}
.yda{bottom:438.870000px;}
.ya9{bottom:443.445000px;}
.ycc{bottom:444.090000px;}
.y48{bottom:447.480000px;}
.y3f{bottom:447.510000px;}
.y103{bottom:447.555000px;}
.yed{bottom:448.275000px;}
.y59{bottom:449.310000px;}
.y2a{bottom:450.825000px;}
.y85{bottom:451.365000px;}
.yb0{bottom:456.045000px;}
.y19{bottom:458.430000px;}
.y3e{bottom:460.110000px;}
.yf{bottom:460.545000px;}
.y47{bottom:461.880000px;}
.yd9{bottom:467.670000px;}
.y7d{bottom:468.030000px;}
.y2{bottom:468.645000px;}
.ya8{bottom:475.845000px;}
.y46{bottom:476.280000px;}
.y98{bottom:479.445000px;}
.y84{bottom:480.165000px;}
.y86{bottom:480.525000px;}
.y29{bottom:483.225000px;}
.y70{bottom:484.635000px;}
.y45{bottom:490.680000px;}
.ydc{bottom:494.070000px;}
.y104{bottom:496.185000px;}
.yd8{bottom:496.470000px;}
.ye{bottom:496.545000px;}
.ydd{bottom:500.865000px;}
.y18{bottom:502.305000px;}
.y7c{bottom:504.075000px;}
.y44{bottom:505.080000px;}
.ydf{bottom:507.090000px;}
.ya7{bottom:508.245000px;}
.y9e{bottom:509.505000px;}
.y28{bottom:515.625000px;}
.y43{bottom:519.480000px;}
.yaf{bottom:520.845000px;}
.yb7{bottom:521.025000px;}
.ye4{bottom:532.185000px;}
.yd{bottom:532.545000px;}
.y57{bottom:533.415000px;}
.y42{bottom:533.880000px;}
.yec{bottom:534.675000px;}
.ydb{bottom:537.840000px;}
.y7b{bottom:540.075000px;}
.yd7{bottom:540.210000px;}
.y1{bottom:540.645000px;}
.ya6{bottom:541.365000px;}
.yb6{bottom:544.785000px;}
.y17{bottom:546.195000px;}
.y56{bottom:547.815000px;}
.y27{bottom:548.025000px;}
.y6f{bottom:548.355000px;}
.yde{bottom:550.830000px;}
.y83{bottom:553.245000px;}
.yb5{bottom:553.290000px;}
.ya5{bottom:553.785000px;}
.y55{bottom:562.215000px;}
.y9d{bottom:571.425000px;}
.yd4{bottom:573.045000px;}
.ye3{bottom:575.385000px;}
.yeb{bottom:577.905000px;}
.y26{bottom:580.470000px;}
.y16{bottom:590.070000px;}
.y6e{bottom:599.865000px;}
.yc{bottom:604.590000px;}
.yd3{bottom:605.490000px;}
.y7a{bottom:612.075000px;}
.ye2{bottom:618.630000px;}
.y4{bottom:623.445000px;}
.ycd{bottom:625.470000px;}
.yf3{bottom:627.630000px;}
.y8{bottom:629.430000px;}
.y36{bottom:631.590000px;}
.y6d{bottom:631.725000px;}
.y15{bottom:633.960000px;}
.yd2{bottom:637.890000px;}
.yb{bottom:640.590000px;}
.yb9{bottom:641.670000px;}
.yae{bottom:647.070000px;}
.y91{bottom:647.790000px;}
.y79{bottom:648.075000px;}
.yea{bottom:658.545000px;}
.ye1{bottom:661.830000px;}
.y6c{bottom:663.405000px;}
.y41{bottom:668.310000px;}
.yd1{bottom:670.290000px;}
.yf2{bottom:670.830000px;}
.y7{bottom:674.070000px;}
.ya{bottom:676.590000px;}
.y14{bottom:679.290000px;}
.y3{bottom:681.090000px;}
.y90{bottom:683.070000px;}
.y78{bottom:684.105000px;}
.ybf{bottom:684.210000px;}
.yd6{bottom:686.310000px;}
.ycf{bottom:687.750000px;}
.yad{bottom:690.270000px;}
.y38{bottom:691.350000px;}
.y6b{bottom:695.265000px;}
.y39{bottom:699.585000px;}
.yb8{bottom:706.470000px;}
.ye9{bottom:708.945000px;}
.ybc{bottom:712.410000px;}
.y25{bottom:712.590000px;}
.y110{bottom:714.030000px;}
.y8f{bottom:719.070000px;}
.y6a{bottom:727.170000px;}
.ybe{bottom:727.995000px;}
.yd0{bottom:732.780000px;}
.yac{bottom:733.500000px;}
.y96{bottom:733.860000px;}
.y9{bottom:736.740000px;}
.y1f{bottom:742.860000px;}
.y97{bottom:743.940000px;}
.y81{bottom:744.840000px;}
.ybb{bottom:748.440000px;}
.y24{bottom:748.620000px;}
.y37{bottom:751.860000px;}
.ya0{bottom:754.200000px;}
.yba{bottom:761.400000px;}
.ye0{bottom:765.285000px;}
.y23{bottom:766.620000px;}
.y67{bottom:769.860000px;}
.h19{height:40.964766px;}
.h1a{height:47.321367px;}
.h1b{height:47.462625px;}
.h1c{height:52.971680px;}
.h4{height:54.703125px;}
.h34{height:62.327813px;}
.h29{height:63.673594px;}
.h1d{height:65.010937px;}
.h26{height:68.938594px;}
.h39{height:69.056438px;}
.h35{height:69.086250px;}
.h2d{height:70.664062px;}
.h20{height:73.222734px;}
.h22{height:73.332844px;}
.h32{height:75.093750px;}
.h42{height:75.243937px;}
.hc{height:82.676953px;}
.h27{height:83.486953px;}
.h17{height:87.859687px;}
.h2b{height:91.295508px;}
.h15{height:93.936445px;}
.h2f{height:93.983203px;}
.h16{height:94.077703px;}
.h21{height:99.874688px;}
.h37{height:99.984375px;}
.h23{height:100.024875px;}
.h44{height:102.420000px;}
.h1{height:103.721176px;}
.h11{height:105.943359px;}
.h13{height:105.996094px;}
.h12{height:106.084617px;}
.h2e{height:106.137422px;}
.h28{height:108.843750px;}
.hb{height:112.640625px;}
.h1e{height:112.790813px;}
.h2a{height:115.908398px;}
.h43{height:116.460000px;}
.h38{height:117.843750px;}
.hd{height:117.950273px;}
.hf{height:118.008984px;}
.h10{height:118.150312px;}
.h3b{height:121.179375px;}
.h3c{height:121.324500px;}
.h9{height:125.406562px;}
.ha{height:125.556750px;}
.h46{height:128.520000px;}
.h1f{height:137.287969px;}
.h8{height:137.812500px;}
.h3e{height:137.922750px;}
.he{height:141.257812px;}
.h6{height:141.328125px;}
.h2c{height:141.469453px;}
.h14{height:145.125000px;}
.h30{height:145.270125px;}
.h31{height:150.187500px;}
.h36{height:150.337688px;}
.h5{height:164.647266px;}
.h25{height:164.788594px;}
.h45{height:167.040000px;}
.h7{height:169.070625px;}
.h33{height:174.968437px;}
.h3d{height:175.118625px;}
.h2{height:200.500313px;}
.h3{height:200.650500px;}
.h18{height:225.431438px;}
.h3a{height:232.654688px;}
.h24{height:242.240625px;}
.h3f{height:259.920000px;}
.h40{height:260.100000px;}
.h47{height:287.759250px;}
.h41{height:520.200000px;}
.h0{height:810.000000px;}
.w1{width:65.700000px;}
.w2{width:65.880000px;}
.w5{width:87.120000px;}
.w4{width:99.720000px;}
.w3{width:582.480000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x46{left:10.800000px;}
.x25{left:15.768000px;}
.x9d{left:16.890000px;}
.x6a{left:19.332000px;}
.x24{left:22.968000px;}
.x67{left:25.236000px;}
.x21{left:28.908000px;}
.x28{left:31.608000px;}
.x9{left:32.940000px;}
.x23{left:35.388000px;}
.x63{left:38.160000px;}
.x1b{left:39.564000px;}
.x7{left:40.572000px;}
.x26{left:42.588000px;}
.x91{left:44.712000px;}
.x27{left:45.828000px;}
.x19{left:50.832000px;}
.x42{left:52.236000px;}
.x22{left:53.568000px;}
.xc{left:54.612000px;}
.xb{left:55.800000px;}
.x65{left:58.680000px;}
.x44{left:60.336000px;}
.xf{left:61.488000px;}
.x64{left:64.800000px;}
.x83{left:77.076000px;}
.xd{left:85.572000px;}
.x49{left:97.884000px;}
.x72{left:105.840000px;}
.x78{left:119.448000px;}
.x34{left:127.836000px;}
.x35{left:130.716000px;}
.x37{left:132.876000px;}
.x38{left:137.196000px;}
.x3a{left:139.176000px;}
.xa{left:140.940000px;}
.x3{left:143.100000px;}
.x3b{left:144.756000px;}
.xe{left:150.015000px;}
.x36{left:151.770000px;}
.x39{left:153.210000px;}
.x70{left:158.145000px;}
.x43{left:160.275000px;}
.x5e{left:167.505000px;}
.x47{left:177.330000px;}
.x96{left:179.745000px;}
.x97{left:182.625000px;}
.x4e{left:188.895000px;}
.x56{left:191.445000px;}
.x71{left:197.565000px;}
.x55{left:204.225000px;}
.x4a{left:205.890000px;}
.x5d{left:215.280000px;}
.x85{left:230.190000px;}
.x2a{left:247.065000px;}
.x4{left:252.390000px;}
.x29{left:254.625000px;}
.x51{left:257.505000px;}
.x2b{left:259.485000px;}
.x69{left:265.530000px;}
.x84{left:271.230000px;}
.x7b{left:274.860000px;}
.x95{left:280.830000px;}
.x58{left:282.135000px;}
.x5{left:284.010000px;}
.x4b{left:298.365000px;}
.x50{left:303.630000px;}
.x17{left:306.540000px;}
.x98{left:314.820000px;}
.x52{left:317.985000px;}
.x40{left:325.875000px;}
.x9c{left:327.060000px;}
.x61{left:337.245000px;}
.x48{left:343.875000px;}
.x6b{left:345.705000px;}
.x7e{left:352.545000px;}
.x6c{left:363.885000px;}
.x41{left:369.075000px;}
.x7d{left:371.265000px;}
.x3d{left:373.065000px;}
.x82{left:386.355000px;}
.x86{left:396.150000px;}
.x1{left:412.890000px;}
.x8{left:414.360000px;}
.x53{left:415.590000px;}
.x32{left:421.095000px;}
.x6{left:423.510000px;}
.x30{left:425.595000px;}
.x9e{left:426.780000px;}
.x87{left:428.730000px;}
.x31{left:430.275000px;}
.x7f{left:432.105000px;}
.x2{left:436.650000px;}
.x80{left:450.870000px;}
.x62{left:453.570000px;}
.x92{left:456.630000px;}
.x7c{left:461.265000px;}
.x3f{left:462.390000px;}
.x6d{left:474.450000px;}
.x3c{left:489.960000px;}
.x68{left:491.295000px;}
.x18{left:492.630000px;}
.x99{left:514.440000px;}
.x2c{left:517.860000px;}
.x20{left:521.640000px;}
.x2d{left:526.500000px;}
.x8d{left:528.090000px;}
.x93{left:547.380000px;}
.x6e{left:553.830000px;}
.x6f{left:559.950000px;}
.x94{left:576.105000px;}
.x89{left:577.950000px;}
.x90{left:595.800000px;}
.x8e{left:597.600000px;}
.x66{left:604.905000px;}
.x8f{left:611.820000px;}
.x9a{left:614.160000px;}
.x88{left:615.210000px;}
.xa1{left:616.470000px;}
.x9f{left:626.400000px;}
.x5f{left:627.660000px;}
.x4c{left:628.770000px;}
.x1a{left:638.355000px;}
.x4f{left:643.215000px;}
.x45{left:647.460000px;}
.x13{left:649.185000px;}
.x7a{left:680.940000px;}
.x16{left:686.340000px;}
.x75{left:700.920000px;}
.x15{left:703.905000px;}
.x73{left:707.220000px;}
.x9b{left:713.880000px;}
.x12{left:719.205000px;}
.x14{left:721.905000px;}
.x76{left:723.420000px;}
.x33{left:724.935000px;}
.xa0{left:726.120000px;}
.x8a{left:739.470000px;}
.x74{left:755.670000px;}
.x77{left:757.110000px;}
.x54{left:758.910000px;}
.x81{left:771.990000px;}
.x5a{left:795.675000px;}
.x5c{left:821.910000px;}
.x59{left:829.515000px;}
.x5b{left:847.950000px;}
.x57{left:866.910000px;}
.x10{left:883.440000px;}
.x3e{left:885.630000px;}
.x60{left:888.330000px;}
.x79{left:891.870000px;}
.x11{left:898.635000px;}
.x2e{left:906.990000px;}
.x2f{left:915.630000px;}
.x8c{left:938.265000px;}
.x1d{left:950.790000px;}
.x1e{left:954.030000px;}
.x4d{left:956.550000px;}
.x1f{left:961.590000px;}
.x8b{left:978.225000px;}
.x1c{left:1008.930000px;}
@media print{
.v1{vertical-align:-32.000000pt;}
.v2{vertical-align:-26.880000pt;}
.v7{vertical-align:-20.480000pt;}
.v4{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:28.800000pt;}
.v6{vertical-align:38.400000pt;}
.v5{vertical-align:115.200000pt;}
.v8{vertical-align:118.026667pt;}
.lsd{letter-spacing:-0.326933pt;}
.ls1f{letter-spacing:-0.198933pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls1e{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.097067pt;}
.ls19{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls11{letter-spacing:-0.037867pt;}
.ls6{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.033280pt;}
.ls8{letter-spacing:0.145600pt;}
.lsf{letter-spacing:0.181333pt;}
.ls21{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.219392pt;}
.ls5{letter-spacing:0.224000pt;}
.ls18{letter-spacing:0.224640pt;}
.ls14{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.301867pt;}
.lse{letter-spacing:0.320000pt;}
.ls3{letter-spacing:25.280000pt;}
.ls1d{letter-spacing:25.875200pt;}
.ls1b{letter-spacing:25.920000pt;}
.ls1c{letter-spacing:26.080000pt;}
.lsc{letter-spacing:26.730667pt;}
.ls17{letter-spacing:29.120000pt;}
.ls12{letter-spacing:31.936000pt;}
.ls2{letter-spacing:36.743040pt;}
.ls16{letter-spacing:57.715200pt;}
.ls15{letter-spacing:57.760000pt;}
.lsa{letter-spacing:158.355200pt;}
.lsb{letter-spacing:158.400000pt;}
.ls9{letter-spacing:182.720000pt;}
.ws32{word-spacing:-41.455360pt;}
.ws35{word-spacing:-40.064000pt;}
.ws33{word-spacing:-35.619584pt;}
.ws34{word-spacing:-35.584000pt;}
.ws38{word-spacing:-35.456000pt;}
.ws39{word-spacing:-35.420651pt;}
.ws2b{word-spacing:-32.032000pt;}
.ws28{word-spacing:-32.000000pt;}
.ws22{word-spacing:-29.962240pt;}
.wsc{word-spacing:-26.720000pt;}
.ws2f{word-spacing:-26.688000pt;}
.ws1d{word-spacing:-26.396651pt;}
.ws12{word-spacing:-24.032000pt;}
.wse{word-spacing:-24.000000pt;}
.ws36{word-spacing:-23.663360pt;}
.ws2c{word-spacing:-21.312000pt;}
.ws29{word-spacing:-19.237120pt;}
.ws31{word-spacing:-18.944640pt;}
.ws3b{word-spacing:-17.984000pt;}
.ws1e{word-spacing:-17.827584pt;}
.ws3a{word-spacing:-17.792000pt;}
.ws2e{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-12.000000pt;}
.ws18{word-spacing:-10.752000pt;}
.ws17{word-spacing:-10.720000pt;}
.ws16{word-spacing:-9.280000pt;}
.ws1b{word-spacing:-5.611093pt;}
.ws1{word-spacing:-4.562773pt;}
.ws0{word-spacing:0.000000pt;}
.ws1c{word-spacing:8.597248pt;}
.ws2d{word-spacing:8.960000pt;}
.ws2a{word-spacing:10.944000pt;}
.ws15{word-spacing:75.264000pt;}
.ws10{word-spacing:75.424000pt;}
.ws14{word-spacing:80.064000pt;}
.wsf{word-spacing:80.224000pt;}
.ws13{word-spacing:84.672000pt;}
.wsd{word-spacing:84.832000pt;}
.ws11{word-spacing:84.924992pt;}
.ws27{word-spacing:139.360000pt;}
.ws20{word-spacing:185.984000pt;}
.ws25{word-spacing:189.390080pt;}
.ws24{word-spacing:189.496619pt;}
.ws23{word-spacing:267.096960pt;}
.ws1f{word-spacing:298.346667pt;}
.ws26{word-spacing:298.400000pt;}
.ws21{word-spacing:317.760000pt;}
.ws30{word-spacing:419.946667pt;}
.ws37{word-spacing:425.306453pt;}
.wsa{word-spacing:715.982720pt;}
.ws5{word-spacing:826.599893pt;}
.ws4{word-spacing:879.505493pt;}
.wsb{word-spacing:937.267627pt;}
.ws2{word-spacing:963.882667pt;}
.ws3{word-spacing:1004.460373pt;}
.ws8{word-spacing:1026.043093pt;}
.ws6{word-spacing:1140.862933pt;}
.ws9{word-spacing:1158.913493pt;}
.ws7{word-spacing:1171.003093pt;}
.ws19{word-spacing:1208.299093pt;}
._f{margin-left:-17.041024pt;}
._e{margin-left:-12.428449pt;}
._10{margin-left:-11.034880pt;}
._d{margin-left:-9.646828pt;}
._12{margin-left:-8.499840pt;}
._7{margin-left:-7.588480pt;}
._4{margin-left:-6.319275pt;}
._9{margin-left:-5.218783pt;}
._2{margin-left:-3.210240pt;}
._3{margin-left:-2.231125pt;}
._0{margin-left:-1.239263pt;}
._1{width:0.941023pt;}
._a{width:1.886720pt;}
._b{width:3.096405pt;}
._c{width:149.642335pt;}
._6{width:609.155220pt;}
._5{width:745.393579pt;}
._11{width:1064.632116pt;}
._8{width:1084.297899pt;}
.fsf{font-size:37.120000pt;}
.fs10{font-size:42.880000pt;}
.fs11{font-size:43.008000pt;}
.fs12{font-size:48.000000pt;}
.fs19{font-size:53.120000pt;}
.fs13{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs14{font-size:64.128000pt;}
.fsa{font-size:74.880000pt;}
.fs1a{font-size:75.008000pt;}
.fsc{font-size:85.120000pt;}
.fsd{font-size:85.248000pt;}
.fs9{font-size:96.000000pt;}
.fsb{font-size:96.128000pt;}
.fs17{font-size:105.600000pt;}
.fs18{font-size:105.728000pt;}
.fs7{font-size:106.880000pt;}
.fs8{font-size:107.008000pt;}
.fs0{font-size:112.660286pt;}
.fs5{font-size:128.000000pt;}
.fs16{font-size:128.128000pt;}
.fs4{font-size:149.120000pt;}
.fs15{font-size:149.248000pt;}
.fs6{font-size:160.000000pt;}
.fs1b{font-size:160.128000pt;}
.fs1{font-size:170.880000pt;}
.fs2{font-size:171.008000pt;}
.fse{font-size:192.128000pt;}
.fs1c{font-size:245.248000pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:8.288000pt;}
.y92{bottom:8.800000pt;}
.y82{bottom:8.960000pt;}
.y9a{bottom:9.280000pt;}
.y3b{bottom:13.632000pt;}
.y10b{bottom:14.586667pt;}
.yc9{bottom:16.832000pt;}
.y106{bottom:18.080000pt;}
.y10e{bottom:18.173333pt;}
.yc3{bottom:19.200000pt;}
.y3d{bottom:23.904000pt;}
.y107{bottom:24.320000pt;}
.yb4{bottom:24.928000pt;}
.y21{bottom:25.280000pt;}
.y95{bottom:25.600000pt;}
.yd5{bottom:26.464000pt;}
.y10a{bottom:28.000000pt;}
.ybd{bottom:28.032000pt;}
.y108{bottom:29.280000pt;}
.y10f{bottom:29.693333pt;}
.y6{bottom:32.576000pt;}
.y9f{bottom:32.960000pt;}
.y66{bottom:34.016000pt;}
.yc8{bottom:34.432000pt;}
.y3c{bottom:36.160000pt;}
.yc2{bottom:36.800000pt;}
.ya3{bottom:42.080000pt;}
.y10c{bottom:44.986667pt;}
.y34{bottom:50.240000pt;}
.ya4{bottom:51.840000pt;}
.yc7{bottom:52.032000pt;}
.y5{bottom:55.616000pt;}
.y111{bottom:59.840000pt;}
.yc6{bottom:69.632000pt;}
.ya2{bottom:74.080000pt;}
.yce{bottom:76.160000pt;}
.y33{bottom:79.040000pt;}
.yb3{bottom:79.136000pt;}
.y99{bottom:92.160000pt;}
.y32{bottom:107.872000pt;}
.y54{bottom:109.536000pt;}
.ycb{bottom:111.200000pt;}
.y93{bottom:121.312000pt;}
.y53{bottom:122.368000pt;}
.yfc{bottom:128.800000pt;}
.ye7{bottom:129.792000pt;}
.y31{bottom:136.666667pt;}
.yfd{bottom:138.333333pt;}
.y52{bottom:141.893333pt;}
.y51{bottom:154.693333pt;}
.yf4{bottom:156.160000pt;}
.y77{bottom:159.040000pt;}
.ye6{bottom:161.786667pt;}
.y10d{bottom:163.040000pt;}
.y30{bottom:165.466667pt;}
.y50{bottom:167.493333pt;}
.yf1{bottom:168.000000pt;}
.y20{bottom:168.986667pt;}
.y105{bottom:173.760000pt;}
.yfe{bottom:181.600000pt;}
.yf6{bottom:182.080000pt;}
.y109{bottom:186.240000pt;}
.y8e{bottom:187.706667pt;}
.y76{bottom:188.640000pt;}
.y4f{bottom:190.720000pt;}
.y68{bottom:192.826667pt;}
.ye5{bottom:193.826667pt;}
.y2f{bottom:194.266667pt;}
.yfa{bottom:197.600000pt;}
.y4e{bottom:203.546667pt;}
.yf0{bottom:206.400000pt;}
.y1e{bottom:212.453333pt;}
.ye8{bottom:213.146667pt;}
.yf5{bottom:213.946667pt;}
.yf7{bottom:213.986667pt;}
.yfb{bottom:214.013333pt;}
.yf9{bottom:214.053333pt;}
.y4d{bottom:216.346667pt;}
.y8d{bottom:216.506667pt;}
.y13{bottom:217.306667pt;}
.y75{bottom:218.240000pt;}
.y2e{bottom:223.066667pt;}
.yff{bottom:224.826667pt;}
.yf8{bottom:232.160000pt;}
.y65{bottom:232.960000pt;}
.y64{bottom:245.760000pt;}
.y1d{bottom:251.453333pt;}
.y2d{bottom:251.906667pt;}
.y74{bottom:253.146667pt;}
.y8b{bottom:253.986667pt;}
.y63{bottom:258.560000pt;}
.y100{bottom:268.066667pt;}
.y62{bottom:271.360000pt;}
.y12{bottom:281.346667pt;}
.yef{bottom:283.226667pt;}
.y35{bottom:283.906667pt;}
.y61{bottom:284.160000pt;}
.y1c{bottom:290.466667pt;}
.y80{bottom:290.560000pt;}
.y94{bottom:293.186667pt;}
.y60{bottom:296.960000pt;}
.yca{bottom:302.720000pt;}
.y8a{bottom:305.186667pt;}
.y8c{bottom:305.506667pt;}
.y73{bottom:307.066667pt;}
.ya1{bottom:307.746667pt;}
.y5f{bottom:309.760000pt;}
.y101{bottom:311.333333pt;}
.y11{bottom:313.346667pt;}
.yb2{bottom:318.946667pt;}
.y7f{bottom:320.026667pt;}
.yee{bottom:321.626667pt;}
.y5e{bottom:322.560000pt;}
.y22{bottom:324.226667pt;}
.y1b{bottom:329.466667pt;}
.y5d{bottom:335.360000pt;}
.yab{bottom:336.546667pt;}
.y72{bottom:336.666667pt;}
.y88{bottom:340.386667pt;}
.y2c{bottom:343.106667pt;}
.y9c{bottom:344.386667pt;}
.y10{bottom:345.346667pt;}
.y4c{bottom:346.533333pt;}
.yc5{bottom:347.266667pt;}
.yb1{bottom:347.746667pt;}
.y5c{bottom:348.160000pt;}
.y7e{bottom:352.026667pt;}
.y102{bottom:354.560000pt;}
.y58{bottom:356.186667pt;}
.y3a{bottom:358.466667pt;}
.y4b{bottom:359.333333pt;}
.y5b{bottom:360.960000pt;}
.y9b{bottom:363.586667pt;}
.yc4{bottom:364.866667pt;}
.yaa{bottom:365.346667pt;}
.y87{bottom:365.986667pt;}
.yc1{bottom:366.146667pt;}
.y89{bottom:366.306667pt;}
.y1a{bottom:368.480000pt;}
.y71{bottom:371.586667pt;}
.y2b{bottom:371.906667pt;}
.y4a{bottom:372.160000pt;}
.y5a{bottom:373.786667pt;}
.yc0{bottom:382.173333pt;}
.y49{bottom:384.960000pt;}
.y40{bottom:386.586667pt;}
.yda{bottom:390.106667pt;}
.ya9{bottom:394.173333pt;}
.ycc{bottom:394.746667pt;}
.y48{bottom:397.760000pt;}
.y3f{bottom:397.786667pt;}
.y103{bottom:397.826667pt;}
.yed{bottom:398.466667pt;}
.y59{bottom:399.386667pt;}
.y2a{bottom:400.733333pt;}
.y85{bottom:401.213333pt;}
.yb0{bottom:405.373333pt;}
.y19{bottom:407.493333pt;}
.y3e{bottom:408.986667pt;}
.yf{bottom:409.373333pt;}
.y47{bottom:410.560000pt;}
.yd9{bottom:415.706667pt;}
.y7d{bottom:416.026667pt;}
.y2{bottom:416.573333pt;}
.ya8{bottom:422.973333pt;}
.y46{bottom:423.360000pt;}
.y98{bottom:426.173333pt;}
.y84{bottom:426.813333pt;}
.y86{bottom:427.133333pt;}
.y29{bottom:429.533333pt;}
.y70{bottom:430.786667pt;}
.y45{bottom:436.160000pt;}
.ydc{bottom:439.173333pt;}
.y104{bottom:441.053333pt;}
.yd8{bottom:441.306667pt;}
.ye{bottom:441.373333pt;}
.ydd{bottom:445.213333pt;}
.y18{bottom:446.493333pt;}
.y7c{bottom:448.066667pt;}
.y44{bottom:448.960000pt;}
.ydf{bottom:450.746667pt;}
.ya7{bottom:451.773333pt;}
.y9e{bottom:452.893333pt;}
.y28{bottom:458.333333pt;}
.y43{bottom:461.760000pt;}
.yaf{bottom:462.973333pt;}
.yb7{bottom:463.133333pt;}
.ye4{bottom:473.053333pt;}
.yd{bottom:473.373333pt;}
.y57{bottom:474.146667pt;}
.y42{bottom:474.560000pt;}
.yec{bottom:475.266667pt;}
.ydb{bottom:478.080000pt;}
.y7b{bottom:480.066667pt;}
.yd7{bottom:480.186667pt;}
.y1{bottom:480.573333pt;}
.ya6{bottom:481.213333pt;}
.yb6{bottom:484.253333pt;}
.y17{bottom:485.506667pt;}
.y56{bottom:486.946667pt;}
.y27{bottom:487.133333pt;}
.y6f{bottom:487.426667pt;}
.yde{bottom:489.626667pt;}
.y83{bottom:491.773333pt;}
.yb5{bottom:491.813333pt;}
.ya5{bottom:492.253333pt;}
.y55{bottom:499.746667pt;}
.y9d{bottom:507.933333pt;}
.yd4{bottom:509.373333pt;}
.ye3{bottom:511.453333pt;}
.yeb{bottom:513.693333pt;}
.y26{bottom:515.973333pt;}
.y16{bottom:524.506667pt;}
.y6e{bottom:533.213333pt;}
.yc{bottom:537.413333pt;}
.yd3{bottom:538.213333pt;}
.y7a{bottom:544.066667pt;}
.ye2{bottom:549.893333pt;}
.y4{bottom:554.173333pt;}
.ycd{bottom:555.973333pt;}
.yf3{bottom:557.893333pt;}
.y8{bottom:559.493333pt;}
.y36{bottom:561.413333pt;}
.y6d{bottom:561.533333pt;}
.y15{bottom:563.520000pt;}
.yd2{bottom:567.013333pt;}
.yb{bottom:569.413333pt;}
.yb9{bottom:570.373333pt;}
.yae{bottom:575.173333pt;}
.y91{bottom:575.813333pt;}
.y79{bottom:576.066667pt;}
.yea{bottom:585.373333pt;}
.ye1{bottom:588.293333pt;}
.y6c{bottom:589.693333pt;}
.y41{bottom:594.053333pt;}
.yd1{bottom:595.813333pt;}
.yf2{bottom:596.293333pt;}
.y7{bottom:599.173333pt;}
.ya{bottom:601.413333pt;}
.y14{bottom:603.813333pt;}
.y3{bottom:605.413333pt;}
.y90{bottom:607.173333pt;}
.y78{bottom:608.093333pt;}
.ybf{bottom:608.186667pt;}
.yd6{bottom:610.053333pt;}
.ycf{bottom:611.333333pt;}
.yad{bottom:613.573333pt;}
.y38{bottom:614.533333pt;}
.y6b{bottom:618.013333pt;}
.y39{bottom:621.853333pt;}
.yb8{bottom:627.973333pt;}
.ye9{bottom:630.173333pt;}
.ybc{bottom:633.253333pt;}
.y25{bottom:633.413333pt;}
.y110{bottom:634.693333pt;}
.y8f{bottom:639.173333pt;}
.y6a{bottom:646.373333pt;}
.ybe{bottom:647.106667pt;}
.yd0{bottom:651.360000pt;}
.yac{bottom:652.000000pt;}
.y96{bottom:652.320000pt;}
.y9{bottom:654.880000pt;}
.y1f{bottom:660.320000pt;}
.y97{bottom:661.280000pt;}
.y81{bottom:662.080000pt;}
.ybb{bottom:665.280000pt;}
.y24{bottom:665.440000pt;}
.y37{bottom:668.320000pt;}
.ya0{bottom:670.400000pt;}
.yba{bottom:676.800000pt;}
.ye0{bottom:680.253333pt;}
.y23{bottom:681.440000pt;}
.y67{bottom:684.320000pt;}
.h19{height:36.413125pt;}
.h1a{height:42.063437pt;}
.h1b{height:42.189000pt;}
.h1c{height:47.085938pt;}
.h4{height:48.625000pt;}
.h34{height:55.402500pt;}
.h29{height:56.598750pt;}
.h1d{height:57.787500pt;}
.h26{height:61.278750pt;}
.h39{height:61.383500pt;}
.h35{height:61.410000pt;}
.h2d{height:62.812500pt;}
.h20{height:65.086875pt;}
.h22{height:65.184750pt;}
.h32{height:66.750000pt;}
.h42{height:66.883500pt;}
.hc{height:73.490625pt;}
.h27{height:74.210625pt;}
.h17{height:78.097500pt;}
.h2b{height:81.151562pt;}
.h15{height:83.499062pt;}
.h2f{height:83.540625pt;}
.h16{height:83.624625pt;}
.h21{height:88.777500pt;}
.h37{height:88.875000pt;}
.h23{height:88.911000pt;}
.h44{height:91.040000pt;}
.h1{height:92.196601pt;}
.h11{height:94.171875pt;}
.h13{height:94.218750pt;}
.h12{height:94.297438pt;}
.h2e{height:94.344375pt;}
.h28{height:96.750000pt;}
.hb{height:100.125000pt;}
.h1e{height:100.258500pt;}
.h2a{height:103.029688pt;}
.h43{height:103.520000pt;}
.h38{height:104.750000pt;}
.hd{height:104.844687pt;}
.hf{height:104.896875pt;}
.h10{height:105.022500pt;}
.h3b{height:107.715000pt;}
.h3c{height:107.844000pt;}
.h9{height:111.472500pt;}
.ha{height:111.606000pt;}
.h46{height:114.240000pt;}
.h1f{height:122.033750pt;}
.h8{height:122.500000pt;}
.h3e{height:122.598000pt;}
.he{height:125.562500pt;}
.h6{height:125.625000pt;}
.h2c{height:125.750625pt;}
.h14{height:129.000000pt;}
.h30{height:129.129000pt;}
.h31{height:133.500000pt;}
.h36{height:133.633500pt;}
.h5{height:146.353125pt;}
.h25{height:146.478750pt;}
.h45{height:148.480000pt;}
.h7{height:150.285000pt;}
.h33{height:155.527500pt;}
.h3d{height:155.661000pt;}
.h2{height:178.222500pt;}
.h3{height:178.356000pt;}
.h18{height:200.383500pt;}
.h3a{height:206.804167pt;}
.h24{height:215.325000pt;}
.h3f{height:231.040000pt;}
.h40{height:231.200000pt;}
.h47{height:255.786000pt;}
.h41{height:462.400000pt;}
.h0{height:720.000000pt;}
.w1{width:58.400000pt;}
.w2{width:58.560000pt;}
.w5{width:77.440000pt;}
.w4{width:88.640000pt;}
.w3{width:517.760000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x46{left:9.600000pt;}
.x25{left:14.016000pt;}
.x9d{left:15.013333pt;}
.x6a{left:17.184000pt;}
.x24{left:20.416000pt;}
.x67{left:22.432000pt;}
.x21{left:25.696000pt;}
.x28{left:28.096000pt;}
.x9{left:29.280000pt;}
.x23{left:31.456000pt;}
.x63{left:33.920000pt;}
.x1b{left:35.168000pt;}
.x7{left:36.064000pt;}
.x26{left:37.856000pt;}
.x91{left:39.744000pt;}
.x27{left:40.736000pt;}
.x19{left:45.184000pt;}
.x42{left:46.432000pt;}
.x22{left:47.616000pt;}
.xc{left:48.544000pt;}
.xb{left:49.600000pt;}
.x65{left:52.160000pt;}
.x44{left:53.632000pt;}
.xf{left:54.656000pt;}
.x64{left:57.600000pt;}
.x83{left:68.512000pt;}
.xd{left:76.064000pt;}
.x49{left:87.008000pt;}
.x72{left:94.080000pt;}
.x78{left:106.176000pt;}
.x34{left:113.632000pt;}
.x35{left:116.192000pt;}
.x37{left:118.112000pt;}
.x38{left:121.952000pt;}
.x3a{left:123.712000pt;}
.xa{left:125.280000pt;}
.x3{left:127.200000pt;}
.x3b{left:128.672000pt;}
.xe{left:133.346667pt;}
.x36{left:134.906667pt;}
.x39{left:136.186667pt;}
.x70{left:140.573333pt;}
.x43{left:142.466667pt;}
.x5e{left:148.893333pt;}
.x47{left:157.626667pt;}
.x96{left:159.773333pt;}
.x97{left:162.333333pt;}
.x4e{left:167.906667pt;}
.x56{left:170.173333pt;}
.x71{left:175.613333pt;}
.x55{left:181.533333pt;}
.x4a{left:183.013333pt;}
.x5d{left:191.360000pt;}
.x85{left:204.613333pt;}
.x2a{left:219.613333pt;}
.x4{left:224.346667pt;}
.x29{left:226.333333pt;}
.x51{left:228.893333pt;}
.x2b{left:230.653333pt;}
.x69{left:236.026667pt;}
.x84{left:241.093333pt;}
.x7b{left:244.320000pt;}
.x95{left:249.626667pt;}
.x58{left:250.786667pt;}
.x5{left:252.453333pt;}
.x4b{left:265.213333pt;}
.x50{left:269.893333pt;}
.x17{left:272.480000pt;}
.x98{left:279.840000pt;}
.x52{left:282.653333pt;}
.x40{left:289.666667pt;}
.x9c{left:290.720000pt;}
.x61{left:299.773333pt;}
.x48{left:305.666667pt;}
.x6b{left:307.293333pt;}
.x7e{left:313.373333pt;}
.x6c{left:323.453333pt;}
.x41{left:328.066667pt;}
.x7d{left:330.013333pt;}
.x3d{left:331.613333pt;}
.x82{left:343.426667pt;}
.x86{left:352.133333pt;}
.x1{left:367.013333pt;}
.x8{left:368.320000pt;}
.x53{left:369.413333pt;}
.x32{left:374.306667pt;}
.x6{left:376.453333pt;}
.x30{left:378.306667pt;}
.x9e{left:379.360000pt;}
.x87{left:381.093333pt;}
.x31{left:382.466667pt;}
.x7f{left:384.093333pt;}
.x2{left:388.133333pt;}
.x80{left:400.773333pt;}
.x62{left:403.173333pt;}
.x92{left:405.893333pt;}
.x7c{left:410.013333pt;}
.x3f{left:411.013333pt;}
.x6d{left:421.733333pt;}
.x3c{left:435.520000pt;}
.x68{left:436.706667pt;}
.x18{left:437.893333pt;}
.x99{left:457.280000pt;}
.x2c{left:460.320000pt;}
.x20{left:463.680000pt;}
.x2d{left:468.000000pt;}
.x8d{left:469.413333pt;}
.x93{left:486.560000pt;}
.x6e{left:492.293333pt;}
.x6f{left:497.733333pt;}
.x94{left:512.093333pt;}
.x89{left:513.733333pt;}
.x90{left:529.600000pt;}
.x8e{left:531.200000pt;}
.x66{left:537.693333pt;}
.x8f{left:543.840000pt;}
.x9a{left:545.920000pt;}
.x88{left:546.853333pt;}
.xa1{left:547.973333pt;}
.x9f{left:556.800000pt;}
.x5f{left:557.920000pt;}
.x4c{left:558.906667pt;}
.x1a{left:567.426667pt;}
.x4f{left:571.746667pt;}
.x45{left:575.520000pt;}
.x13{left:577.053333pt;}
.x7a{left:605.280000pt;}
.x16{left:610.080000pt;}
.x75{left:623.040000pt;}
.x15{left:625.693333pt;}
.x73{left:628.640000pt;}
.x9b{left:634.560000pt;}
.x12{left:639.293333pt;}
.x14{left:641.693333pt;}
.x76{left:643.040000pt;}
.x33{left:644.386667pt;}
.xa0{left:645.440000pt;}
.x8a{left:657.306667pt;}
.x74{left:671.706667pt;}
.x77{left:672.986667pt;}
.x54{left:674.586667pt;}
.x81{left:686.213333pt;}
.x5a{left:707.266667pt;}
.x5c{left:730.586667pt;}
.x59{left:737.346667pt;}
.x5b{left:753.733333pt;}
.x57{left:770.586667pt;}
.x10{left:785.280000pt;}
.x3e{left:787.226667pt;}
.x60{left:789.626667pt;}
.x79{left:792.773333pt;}
.x11{left:798.786667pt;}
.x2e{left:806.213333pt;}
.x2f{left:813.893333pt;}
.x8c{left:834.013333pt;}
.x1d{left:845.146667pt;}
.x1e{left:848.026667pt;}
.x4d{left:850.266667pt;}
.x1f{left:854.746667pt;}
.x8b{left:869.533333pt;}
.x1c{left:896.826667pt;}
}




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